diff --git a/grammar.js b/grammar.js index e9b5ab8..fb149f5 100644 --- a/grammar.js +++ b/grammar.js @@ -43,7 +43,7 @@ module.exports = grammar({ [$.ctrl_if_parenthesized], [$.ctrl_try_parenthesized], [$.expr_binary_parenthesized], - [$.list_body, $.val_table], + [$.list_body, $._table_head], [$.parameter, $.param_type, $.param_value], [$.pipeline], [$.pipeline_parenthesized], @@ -54,7 +54,7 @@ module.exports = grammar({ nu_script: ($) => seq(optional($.shebang), optional($._block_body)), - shebang: (_$) => seq(repeat(_$._newline), "#!", /.*\r?\n?/), + shebang: ($) => seq(repeat($._newline), "#!", /.*\r?\n?/), ...block_body_rules(), @@ -1180,12 +1180,17 @@ module.exports = grammar({ _table_head_separator: (_$) => token(prec(PREC().higher, seq(/\s*/, PUNC().semicolon))), - val_table: ($) => + _table_head: ($) => seq( - BRACK().open_brack, repeat($._newline), field("head", $.val_list), alias($._table_head_separator, PUNC().semicolon), + ), + + val_table: ($) => + seq( + BRACK().open_brack, + $._table_head, optional( general_body_rules("row", $.val_list, $._entry_separator, $._newline), ), diff --git a/src/grammar.json b/src/grammar.json index 8ccf1da..03182b3 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -14796,13 +14796,9 @@ } } }, - "val_table": { + "_table_head": { "type": "SEQ", "members": [ - { - "type": "STRING", - "value": "[" - }, { "type": "REPEAT", "content": { @@ -14826,6 +14822,19 @@ }, "named": false, "value": ";" + } + ] + }, + "val_table": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "SYMBOL", + "name": "_table_head" }, { "type": "CHOICE", @@ -16600,7 +16609,7 @@ ], [ "list_body", - "val_table" + "_table_head" ], [ "parameter", diff --git a/src/parser.c b/src/parser.c index 2690d5a..e6c5a3a 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,15 +13,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 7954 -#define LARGE_STATE_COUNT 1749 -#define SYMBOL_COUNT 524 +#define STATE_COUNT 7389 +#define LARGE_STATE_COUNT 1669 +#define SYMBOL_COUNT 525 #define ALIAS_COUNT 4 #define TOKEN_COUNT 314 #define EXTERNAL_TOKEN_COUNT 3 #define FIELD_COUNT 71 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 280 +#define PRODUCTION_ID_COUNT 276 enum ts_symbol_identifiers { sym_identifier = 1, @@ -484,73 +484,74 @@ enum ts_symbol_identifiers { sym_record_body = 458, sym_record_entry = 459, sym__record_key = 460, - sym_val_table = 461, - sym_val_closure = 462, - sym_cell_path = 463, - sym_path = 464, - sym_env_var = 465, - sym_command = 466, - sym__command_parenthesized = 467, - sym__cmd_arg = 468, - sym_redirection = 469, - sym__flag = 470, - sym__flags_parenthesized = 471, - sym_short_flag = 472, - sym_long_flag = 473, - sym_unquoted = 474, - sym__unquoted_in_list = 475, - sym__unquoted_in_record = 476, - sym__unquoted_with_expr = 477, - sym__unquoted_in_list_with_expr = 478, - sym__unquoted_in_record_with_expr = 479, - sym__unquoted_anonymous_prefix = 480, - sym_comment = 481, - aux_sym_shebang_repeat1 = 482, - aux_sym_pipeline_repeat1 = 483, - aux_sym_pipeline_parenthesized_repeat1 = 484, - aux_sym__block_body_repeat1 = 485, - aux_sym__block_body_repeat2 = 486, - aux_sym_attribute_list_repeat1 = 487, - aux_sym_attribute_repeat1 = 488, - aux_sym_decl_def_repeat1 = 489, - aux_sym__multiple_types_repeat1 = 490, - aux_sym__multiple_types_repeat2 = 491, - aux_sym_parameter_parens_repeat1 = 492, - aux_sym_parameter_repeat1 = 493, - aux_sym_parameter_repeat2 = 494, - aux_sym_collection_type_repeat1 = 495, - aux_sym_ctrl_do_repeat1 = 496, - aux_sym_ctrl_do_repeat2 = 497, - aux_sym_ctrl_do_parenthesized_repeat1 = 498, - aux_sym_ctrl_do_parenthesized_repeat2 = 499, - aux_sym_ctrl_do_parenthesized_repeat3 = 500, - aux_sym_ctrl_match_repeat1 = 501, - aux_sym_match_pattern_repeat1 = 502, - aux_sym__match_pattern_list_repeat1 = 503, - aux_sym__match_pattern_record_repeat1 = 504, - aux_sym_pipe_element_repeat1 = 505, - aux_sym_pipe_element_repeat2 = 506, - aux_sym_pipe_element_parenthesized_repeat1 = 507, - aux_sym_overlay_hide_repeat1 = 508, - aux_sym_command_list_repeat1 = 509, - aux_sym__parenthesized_body_repeat1 = 510, - aux_sym__parenthesized_body_repeat2 = 511, - aux_sym_val_binary_repeat1 = 512, - aux_sym__str_double_quotes_repeat1 = 513, - aux_sym__inter_single_quotes_repeat1 = 514, - aux_sym__inter_double_quotes_repeat1 = 515, - aux_sym_list_body_repeat1 = 516, - aux_sym_record_body_repeat1 = 517, - aux_sym_val_table_repeat1 = 518, - aux_sym_cell_path_repeat1 = 519, - aux_sym__command_parenthesized_repeat1 = 520, - aux_sym__unquoted_with_expr_repeat1 = 521, - aux_sym__unquoted_in_list_with_expr_repeat1 = 522, - aux_sym__unquoted_in_record_with_expr_repeat1 = 523, - anon_alias_sym__head = 524, - anon_alias_sym__prefix = 525, - anon_alias_sym__unit = 526, - anon_alias_sym_quoted = 527, + sym__table_head = 461, + sym_val_table = 462, + sym_val_closure = 463, + sym_cell_path = 464, + sym_path = 465, + sym_env_var = 466, + sym_command = 467, + sym__command_parenthesized = 468, + sym__cmd_arg = 469, + sym_redirection = 470, + sym__flag = 471, + sym__flags_parenthesized = 472, + sym_short_flag = 473, + sym_long_flag = 474, + sym_unquoted = 475, + sym__unquoted_in_list = 476, + sym__unquoted_in_record = 477, + sym__unquoted_with_expr = 478, + sym__unquoted_in_list_with_expr = 479, + sym__unquoted_in_record_with_expr = 480, + sym__unquoted_anonymous_prefix = 481, + sym_comment = 482, + aux_sym_shebang_repeat1 = 483, + aux_sym_pipeline_repeat1 = 484, + aux_sym_pipeline_parenthesized_repeat1 = 485, + aux_sym__block_body_repeat1 = 486, + aux_sym__block_body_repeat2 = 487, + aux_sym_attribute_list_repeat1 = 488, + aux_sym_attribute_repeat1 = 489, + aux_sym_decl_def_repeat1 = 490, + aux_sym__multiple_types_repeat1 = 491, + aux_sym__multiple_types_repeat2 = 492, + aux_sym_parameter_parens_repeat1 = 493, + aux_sym_parameter_repeat1 = 494, + aux_sym_parameter_repeat2 = 495, + aux_sym_collection_type_repeat1 = 496, + aux_sym_ctrl_do_repeat1 = 497, + aux_sym_ctrl_do_repeat2 = 498, + aux_sym_ctrl_do_parenthesized_repeat1 = 499, + aux_sym_ctrl_do_parenthesized_repeat2 = 500, + aux_sym_ctrl_do_parenthesized_repeat3 = 501, + aux_sym_ctrl_match_repeat1 = 502, + aux_sym_match_pattern_repeat1 = 503, + aux_sym__match_pattern_list_repeat1 = 504, + aux_sym__match_pattern_record_repeat1 = 505, + aux_sym_pipe_element_repeat1 = 506, + aux_sym_pipe_element_repeat2 = 507, + aux_sym_pipe_element_parenthesized_repeat1 = 508, + aux_sym_overlay_hide_repeat1 = 509, + aux_sym_command_list_repeat1 = 510, + aux_sym__parenthesized_body_repeat1 = 511, + aux_sym__parenthesized_body_repeat2 = 512, + aux_sym_val_binary_repeat1 = 513, + aux_sym__str_double_quotes_repeat1 = 514, + aux_sym__inter_single_quotes_repeat1 = 515, + aux_sym__inter_double_quotes_repeat1 = 516, + aux_sym_list_body_repeat1 = 517, + aux_sym_record_body_repeat1 = 518, + aux_sym_val_table_repeat1 = 519, + aux_sym_cell_path_repeat1 = 520, + aux_sym__command_parenthesized_repeat1 = 521, + aux_sym__unquoted_with_expr_repeat1 = 522, + aux_sym__unquoted_in_list_with_expr_repeat1 = 523, + aux_sym__unquoted_in_record_with_expr_repeat1 = 524, + anon_alias_sym__head = 525, + anon_alias_sym__prefix = 526, + anon_alias_sym__unit = 527, + anon_alias_sym_quoted = 528, }; static const char * const ts_symbol_names[] = { @@ -1015,6 +1016,7 @@ static const char * const ts_symbol_names[] = { [sym_record_body] = "record_body", [sym_record_entry] = "record_entry", [sym__record_key] = "identifier", + [sym__table_head] = "_table_head", [sym_val_table] = "val_table", [sym_val_closure] = "val_closure", [sym_cell_path] = "cell_path", @@ -1546,6 +1548,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_record_body] = sym_record_body, [sym_record_entry] = sym_record_entry, [sym__record_key] = sym_identifier, + [sym__table_head] = sym__table_head, [sym_val_table] = sym_val_table, [sym_val_closure] = sym_val_closure, [sym_cell_path] = sym_cell_path, @@ -3460,6 +3463,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__table_head] = { + .visible = false, + .named = true, + }, [sym_val_table] = { .visible = true, .named = true, @@ -3928,232 +3935,228 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [48] = {.index = 92, .length = 1}, [49] = {.index = 93, .length = 1}, [51] = {.index = 94, .length = 1}, - [52] = {.index = 95, .length = 2}, - [53] = {.index = 97, .length = 2}, - [54] = {.index = 99, .length = 6}, - [55] = {.index = 105, .length = 1}, - [56] = {.index = 106, .length = 2}, - [57] = {.index = 108, .length = 2}, - [58] = {.index = 110, .length = 1}, - [59] = {.index = 111, .length = 4}, - [60] = {.index = 115, .length = 1}, + [52] = {.index = 95, .length = 1}, + [53] = {.index = 96, .length = 2}, + [54] = {.index = 98, .length = 2}, + [55] = {.index = 100, .length = 6}, + [56] = {.index = 106, .length = 1}, + [57] = {.index = 107, .length = 2}, + [58] = {.index = 109, .length = 2}, + [59] = {.index = 111, .length = 1}, + [60] = {.index = 112, .length = 4}, [61] = {.index = 116, .length = 1}, [62] = {.index = 117, .length = 1}, [63] = {.index = 118, .length = 1}, - [64] = {.index = 119, .length = 3}, - [65] = {.index = 122, .length = 1}, - [66] = {.index = 123, .length = 2}, - [67] = {.index = 125, .length = 1}, + [64] = {.index = 119, .length = 1}, + [65] = {.index = 120, .length = 3}, + [66] = {.index = 123, .length = 1}, + [67] = {.index = 124, .length = 2}, [68] = {.index = 126, .length = 1}, - [69] = {.index = 127, .length = 2}, - [70] = {.index = 129, .length = 7}, - [71] = {.index = 136, .length = 1}, + [69] = {.index = 127, .length = 1}, + [70] = {.index = 128, .length = 2}, + [71] = {.index = 130, .length = 7}, [72] = {.index = 137, .length = 1}, - [73] = {.index = 138, .length = 2}, - [74] = {.index = 140, .length = 5}, - [75] = {.index = 145, .length = 1}, + [73] = {.index = 138, .length = 1}, + [74] = {.index = 139, .length = 2}, + [75] = {.index = 141, .length = 5}, [76] = {.index = 146, .length = 1}, [77] = {.index = 147, .length = 1}, - [78] = {.index = 148, .length = 10}, - [79] = {.index = 158, .length = 3}, - [80] = {.index = 158, .length = 3}, - [81] = {.index = 161, .length = 2}, - [82] = {.index = 161, .length = 2}, - [83] = {.index = 161, .length = 2}, - [84] = {.index = 161, .length = 2}, - [85] = {.index = 163, .length = 4}, - [86] = {.index = 167, .length = 4}, - [87] = {.index = 171, .length = 2}, - [88] = {.index = 173, .length = 4}, - [89] = {.index = 177, .length = 4}, - [90] = {.index = 181, .length = 1}, + [78] = {.index = 148, .length = 1}, + [79] = {.index = 149, .length = 10}, + [80] = {.index = 159, .length = 3}, + [81] = {.index = 159, .length = 3}, + [82] = {.index = 162, .length = 2}, + [83] = {.index = 162, .length = 2}, + [84] = {.index = 162, .length = 2}, + [85] = {.index = 162, .length = 2}, + [86] = {.index = 164, .length = 4}, + [87] = {.index = 168, .length = 4}, + [88] = {.index = 172, .length = 2}, + [89] = {.index = 174, .length = 4}, + [90] = {.index = 178, .length = 4}, [91] = {.index = 182, .length = 1}, [92] = {.index = 183, .length = 1}, [93] = {.index = 184, .length = 1}, - [94] = {.index = 184, .length = 1}, + [94] = {.index = 185, .length = 1}, [95] = {.index = 185, .length = 1}, - [96] = {.index = 186, .length = 5}, - [97] = {.index = 191, .length = 5}, - [98] = {.index = 196, .length = 1}, - [99] = {.index = 196, .length = 1}, + [96] = {.index = 186, .length = 1}, + [97] = {.index = 187, .length = 5}, + [98] = {.index = 192, .length = 5}, + [99] = {.index = 197, .length = 1}, [100] = {.index = 197, .length = 1}, - [102] = {.index = 198, .length = 2}, - [103] = {.index = 200, .length = 1}, - [104] = {.index = 201, .length = 4}, - [105] = {.index = 205, .length = 1}, - [106] = {.index = 206, .length = 1}, - [107] = {.index = 207, .length = 1}, - [108] = {.index = 208, .length = 2}, - [109] = {.index = 210, .length = 1}, - [110] = {.index = 207, .length = 1}, - [111] = {.index = 211, .length = 2}, - [112] = {.index = 213, .length = 1}, - [113] = {.index = 214, .length = 2}, - [114] = {.index = 216, .length = 2}, - [115] = {.index = 218, .length = 1}, - [116] = {.index = 211, .length = 2}, - [117] = {.index = 219, .length = 2}, - [118] = {.index = 219, .length = 2}, - [119] = {.index = 219, .length = 2}, - [120] = {.index = 219, .length = 2}, - [121] = {.index = 221, .length = 2}, - [122] = {.index = 223, .length = 1}, - [123] = {.index = 224, .length = 9}, - [124] = {.index = 233, .length = 2}, - [125] = {.index = 235, .length = 1}, - [126] = {.index = 236, .length = 2}, - [127] = {.index = 238, .length = 1}, + [101] = {.index = 198, .length = 2}, + [102] = {.index = 200, .length = 1}, + [103] = {.index = 201, .length = 2}, + [105] = {.index = 203, .length = 1}, + [106] = {.index = 204, .length = 2}, + [107] = {.index = 206, .length = 1}, + [108] = {.index = 207, .length = 4}, + [109] = {.index = 211, .length = 1}, + [110] = {.index = 212, .length = 1}, + [111] = {.index = 213, .length = 1}, + [112] = {.index = 214, .length = 2}, + [113] = {.index = 216, .length = 1}, + [114] = {.index = 213, .length = 1}, + [115] = {.index = 217, .length = 2}, + [116] = {.index = 219, .length = 1}, + [117] = {.index = 220, .length = 2}, + [118] = {.index = 222, .length = 2}, + [119] = {.index = 224, .length = 1}, + [120] = {.index = 217, .length = 2}, + [121] = {.index = 225, .length = 2}, + [122] = {.index = 225, .length = 2}, + [123] = {.index = 225, .length = 2}, + [124] = {.index = 225, .length = 2}, + [125] = {.index = 227, .length = 2}, + [126] = {.index = 229, .length = 1}, + [127] = {.index = 230, .length = 9}, [128] = {.index = 239, .length = 2}, - [129] = {.index = 239, .length = 2}, - [130] = {.index = 239, .length = 2}, - [131] = {.index = 239, .length = 2}, - [132] = {.index = 241, .length = 4}, - [133] = {.index = 245, .length = 5}, - [134] = {.index = 250, .length = 5}, - [135] = {.index = 255, .length = 2}, - [136] = {.index = 257, .length = 1}, - [137] = {.index = 258, .length = 5}, - [138] = {.index = 263, .length = 2}, - [139] = {.index = 263, .length = 2}, - [140] = {.index = 265, .length = 6}, - [141] = {.index = 271, .length = 3}, - [142] = {.index = 274, .length = 3}, - [143] = {.index = 277, .length = 6}, - [144] = {.index = 283, .length = 2}, - [145] = {.index = 283, .length = 2}, - [146] = {.index = 285, .length = 2}, - [147] = {.index = 287, .length = 1}, - [148] = {.index = 288, .length = 2}, - [149] = {.index = 290, .length = 1}, + [129] = {.index = 241, .length = 1}, + [130] = {.index = 242, .length = 2}, + [131] = {.index = 244, .length = 1}, + [132] = {.index = 245, .length = 2}, + [133] = {.index = 245, .length = 2}, + [134] = {.index = 245, .length = 2}, + [135] = {.index = 245, .length = 2}, + [136] = {.index = 247, .length = 4}, + [137] = {.index = 251, .length = 5}, + [138] = {.index = 256, .length = 5}, + [139] = {.index = 261, .length = 2}, + [140] = {.index = 263, .length = 1}, + [141] = {.index = 264, .length = 5}, + [142] = {.index = 269, .length = 2}, + [143] = {.index = 269, .length = 2}, + [144] = {.index = 271, .length = 6}, + [145] = {.index = 277, .length = 3}, + [146] = {.index = 280, .length = 3}, + [147] = {.index = 283, .length = 6}, + [148] = {.index = 289, .length = 2}, + [149] = {.index = 289, .length = 2}, [150] = {.index = 291, .length = 2}, - [151] = {.index = 293, .length = 2}, - [152] = {.index = 295, .length = 3}, - [153] = {.index = 295, .length = 3}, - [154] = {.index = 298, .length = 3}, - [155] = {.index = 298, .length = 3}, - [156] = {.index = 301, .length = 5}, - [157] = {.index = 306, .length = 3}, - [158] = {.index = 309, .length = 3}, - [159] = {.index = 312, .length = 1}, - [160] = {.index = 313, .length = 1}, - [161] = {.index = 314, .length = 3}, - [162] = {.index = 317, .length = 1}, - [163] = {.index = 318, .length = 4}, - [164] = {.index = 322, .length = 3}, - [165] = {.index = 322, .length = 3}, - [166] = {.index = 322, .length = 3}, - [167] = {.index = 322, .length = 3}, - [168] = {.index = 322, .length = 3}, - [169] = {.index = 322, .length = 3}, - [170] = {.index = 322, .length = 3}, - [171] = {.index = 322, .length = 3}, - [172] = {.index = 325, .length = 6}, - [173] = {.index = 331, .length = 5}, - [174] = {.index = 336, .length = 2}, - [175] = {.index = 338, .length = 1}, - [176] = {.index = 339, .length = 2}, - [177] = {.index = 341, .length = 2}, - [178] = {.index = 343, .length = 3}, - [179] = {.index = 346, .length = 6}, - [180] = {.index = 352, .length = 2}, - [181] = {.index = 354, .length = 3}, - [182] = {.index = 357, .length = 2}, - [184] = {.index = 359, .length = 2}, - [185] = {.index = 361, .length = 2}, - [186] = {.index = 363, .length = 2}, - [187] = {.index = 365, .length = 9}, - [188] = {.index = 374, .length = 9}, - [189] = {.index = 383, .length = 3}, - [190] = {.index = 383, .length = 3}, - [191] = {.index = 386, .length = 1}, - [192] = {.index = 387, .length = 1}, - [193] = {.index = 388, .length = 2}, - [194] = {.index = 390, .length = 2}, - [195] = {.index = 392, .length = 1}, - [196] = {.index = 393, .length = 4}, - [197] = {.index = 397, .length = 6}, - [198] = {.index = 403, .length = 1}, - [199] = {.index = 404, .length = 1}, - [200] = {.index = 403, .length = 1}, - [201] = {.index = 404, .length = 1}, - [202] = {.index = 405, .length = 6}, - [203] = {.index = 411, .length = 2}, - [204] = {.index = 413, .length = 1}, - [205] = {.index = 414, .length = 2}, - [206] = {.index = 416, .length = 2}, - [207] = {.index = 418, .length = 6}, - [208] = {.index = 424, .length = 3}, - [209] = {.index = 427, .length = 2}, - [210] = {.index = 429, .length = 3}, - [211] = {.index = 432, .length = 3}, - [212] = {.index = 435, .length = 3}, - [213] = {.index = 438, .length = 3}, - [214] = {.index = 441, .length = 3}, - [215] = {.index = 444, .length = 3}, - [216] = {.index = 447, .length = 3}, - [217] = {.index = 450, .length = 2}, - [218] = {.index = 452, .length = 2}, - [219] = {.index = 454, .length = 9}, - [220] = {.index = 463, .length = 2}, - [221] = {.index = 465, .length = 1}, - [222] = {.index = 466, .length = 5}, - [223] = {.index = 471, .length = 1}, - [224] = {.index = 471, .length = 1}, - [225] = {.index = 472, .length = 4}, - [226] = {.index = 472, .length = 4}, - [227] = {.index = 476, .length = 3}, - [228] = {.index = 479, .length = 2}, - [229] = {.index = 481, .length = 3}, - [230] = {.index = 484, .length = 3}, - [231] = {.index = 487, .length = 3}, - [232] = {.index = 490, .length = 3}, - [233] = {.index = 493, .length = 3}, - [234] = {.index = 496, .length = 3}, - [235] = {.index = 499, .length = 3}, - [236] = {.index = 502, .length = 3}, - [237] = {.index = 505, .length = 3}, - [238] = {.index = 508, .length = 2}, - [239] = {.index = 510, .length = 2}, - [240] = {.index = 512, .length = 6}, - [241] = {.index = 518, .length = 2}, - [242] = {.index = 520, .length = 2}, - [243] = {.index = 518, .length = 2}, - [244] = {.index = 520, .length = 2}, - [245] = {.index = 522, .length = 4}, - [246] = {.index = 522, .length = 4}, - [247] = {.index = 526, .length = 3}, - [248] = {.index = 529, .length = 3}, - [249] = {.index = 532, .length = 3}, - [250] = {.index = 535, .length = 3}, - [251] = {.index = 538, .length = 3}, - [252] = {.index = 541, .length = 3}, - [253] = {.index = 544, .length = 3}, - [254] = {.index = 547, .length = 3}, - [255] = {.index = 550, .length = 2}, - [256] = {.index = 552, .length = 3}, - [257] = {.index = 555, .length = 3}, - [258] = {.index = 552, .length = 3}, - [259] = {.index = 555, .length = 3}, - [260] = {.index = 558, .length = 2}, - [261] = {.index = 558, .length = 2}, - [262] = {.index = 560, .length = 5}, - [263] = {.index = 560, .length = 5}, - [264] = {.index = 565, .length = 3}, - [265] = {.index = 568, .length = 3}, - [266] = {.index = 571, .length = 3}, - [267] = {.index = 574, .length = 3}, - [268] = {.index = 577, .length = 3}, - [269] = {.index = 580, .length = 3}, - [270] = {.index = 583, .length = 3}, - [271] = {.index = 583, .length = 3}, - [272] = {.index = 586, .length = 5}, - [273] = {.index = 586, .length = 5}, - [274] = {.index = 591, .length = 6}, - [275] = {.index = 591, .length = 6}, - [276] = {.index = 597, .length = 3}, - [277] = {.index = 600, .length = 3}, - [278] = {.index = 603, .length = 6}, - [279] = {.index = 603, .length = 6}, + [151] = {.index = 293, .length = 3}, + [152] = {.index = 296, .length = 2}, + [153] = {.index = 298, .length = 2}, + [154] = {.index = 300, .length = 3}, + [155] = {.index = 300, .length = 3}, + [156] = {.index = 303, .length = 3}, + [157] = {.index = 303, .length = 3}, + [158] = {.index = 306, .length = 5}, + [159] = {.index = 311, .length = 3}, + [160] = {.index = 314, .length = 3}, + [161] = {.index = 317, .length = 1}, + [162] = {.index = 318, .length = 1}, + [163] = {.index = 319, .length = 3}, + [164] = {.index = 322, .length = 1}, + [165] = {.index = 323, .length = 4}, + [166] = {.index = 327, .length = 3}, + [167] = {.index = 327, .length = 3}, + [168] = {.index = 327, .length = 3}, + [169] = {.index = 327, .length = 3}, + [170] = {.index = 327, .length = 3}, + [171] = {.index = 327, .length = 3}, + [172] = {.index = 327, .length = 3}, + [173] = {.index = 327, .length = 3}, + [174] = {.index = 330, .length = 6}, + [175] = {.index = 336, .length = 5}, + [176] = {.index = 341, .length = 2}, + [177] = {.index = 343, .length = 1}, + [178] = {.index = 344, .length = 2}, + [179] = {.index = 346, .length = 2}, + [180] = {.index = 348, .length = 3}, + [181] = {.index = 351, .length = 6}, + [182] = {.index = 357, .length = 3}, + [184] = {.index = 360, .length = 2}, + [185] = {.index = 362, .length = 2}, + [186] = {.index = 364, .length = 2}, + [187] = {.index = 366, .length = 9}, + [188] = {.index = 375, .length = 9}, + [189] = {.index = 384, .length = 3}, + [190] = {.index = 384, .length = 3}, + [191] = {.index = 387, .length = 1}, + [192] = {.index = 388, .length = 1}, + [193] = {.index = 389, .length = 2}, + [194] = {.index = 391, .length = 2}, + [195] = {.index = 393, .length = 1}, + [196] = {.index = 394, .length = 4}, + [197] = {.index = 398, .length = 6}, + [198] = {.index = 404, .length = 1}, + [199] = {.index = 405, .length = 1}, + [200] = {.index = 404, .length = 1}, + [201] = {.index = 405, .length = 1}, + [202] = {.index = 406, .length = 6}, + [203] = {.index = 412, .length = 2}, + [204] = {.index = 414, .length = 1}, + [205] = {.index = 415, .length = 2}, + [206] = {.index = 417, .length = 2}, + [207] = {.index = 419, .length = 6}, + [208] = {.index = 425, .length = 3}, + [209] = {.index = 428, .length = 3}, + [210] = {.index = 431, .length = 3}, + [211] = {.index = 434, .length = 3}, + [212] = {.index = 437, .length = 3}, + [213] = {.index = 440, .length = 3}, + [214] = {.index = 443, .length = 2}, + [215] = {.index = 445, .length = 2}, + [216] = {.index = 447, .length = 9}, + [217] = {.index = 456, .length = 2}, + [218] = {.index = 458, .length = 1}, + [219] = {.index = 459, .length = 5}, + [220] = {.index = 464, .length = 1}, + [221] = {.index = 464, .length = 1}, + [222] = {.index = 465, .length = 4}, + [223] = {.index = 465, .length = 4}, + [224] = {.index = 469, .length = 3}, + [225] = {.index = 472, .length = 2}, + [226] = {.index = 474, .length = 3}, + [227] = {.index = 477, .length = 3}, + [228] = {.index = 480, .length = 3}, + [229] = {.index = 483, .length = 3}, + [230] = {.index = 486, .length = 3}, + [231] = {.index = 489, .length = 3}, + [232] = {.index = 492, .length = 3}, + [233] = {.index = 495, .length = 3}, + [234] = {.index = 498, .length = 2}, + [235] = {.index = 500, .length = 2}, + [236] = {.index = 502, .length = 6}, + [237] = {.index = 508, .length = 2}, + [238] = {.index = 510, .length = 2}, + [239] = {.index = 508, .length = 2}, + [240] = {.index = 510, .length = 2}, + [241] = {.index = 512, .length = 4}, + [242] = {.index = 512, .length = 4}, + [243] = {.index = 516, .length = 3}, + [244] = {.index = 519, .length = 3}, + [245] = {.index = 522, .length = 3}, + [246] = {.index = 525, .length = 3}, + [247] = {.index = 528, .length = 3}, + [248] = {.index = 531, .length = 3}, + [249] = {.index = 534, .length = 3}, + [250] = {.index = 537, .length = 3}, + [251] = {.index = 540, .length = 2}, + [252] = {.index = 542, .length = 3}, + [253] = {.index = 545, .length = 3}, + [254] = {.index = 542, .length = 3}, + [255] = {.index = 545, .length = 3}, + [256] = {.index = 548, .length = 2}, + [257] = {.index = 548, .length = 2}, + [258] = {.index = 550, .length = 5}, + [259] = {.index = 550, .length = 5}, + [260] = {.index = 555, .length = 3}, + [261] = {.index = 558, .length = 3}, + [262] = {.index = 561, .length = 3}, + [263] = {.index = 564, .length = 3}, + [264] = {.index = 567, .length = 3}, + [265] = {.index = 570, .length = 3}, + [266] = {.index = 573, .length = 3}, + [267] = {.index = 573, .length = 3}, + [268] = {.index = 576, .length = 5}, + [269] = {.index = 576, .length = 5}, + [270] = {.index = 581, .length = 6}, + [271] = {.index = 581, .length = 6}, + [272] = {.index = 587, .length = 3}, + [273] = {.index = 590, .length = 3}, + [274] = {.index = 593, .length = 6}, + [275] = {.index = 593, .length = 6}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -4296,60 +4299,62 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [93] = {field_command_list, 0}, [94] = - {field_entry, 1}, + {field_head, 1, .inherited = true}, [95] = + {field_entry, 1}, + [96] = {field_entry, 0, .inherited = true}, {field_entry, 1}, - [97] = + [98] = {field_entry, 0, .inherited = true}, {field_entry, 1, .inherited = true}, - [99] = + [100] = {field_arg, 1, .inherited = true}, {field_arg_spread, 1, .inherited = true}, {field_arg_str, 1, .inherited = true}, {field_flag, 1, .inherited = true}, {field_head, 1, .inherited = true}, {field_redir, 1, .inherited = true}, - [105] = - {field_error_record, 2}, [106] = + {field_error_record, 2}, + [107] = {field_body, 2}, {field_condition, 1}, - [108] = + [109] = {field_condition, 1}, {field_then_branch, 2}, - [110] = - {field_param_name, 0}, [111] = + {field_param_name, 0}, + [112] = {field_param_name, 0, .inherited = true}, {field_param_optional, 0, .inherited = true}, {field_param_rest, 0, .inherited = true}, {field_param_short_flag, 0, .inherited = true}, - [115] = - {field_param_rest, 0}, [116] = - {field_param_optional, 0}, + {field_param_rest, 0}, [117] = - {field_param_long_flag, 0}, + {field_param_optional, 0}, [118] = - {field_param_short_flag, 0}, + {field_param_long_flag, 0}, [119] = + {field_param_short_flag, 0}, + [120] = {field_dollar_name, 2, .inherited = true}, {field_var_name, 2, .inherited = true}, {field_variable, 2}, - [122] = - {field_overlay, 2}, [123] = + {field_overlay, 2}, + [124] = {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [125] = - {field_digit, 0}, [126] = - {field_expr, 1, .inherited = true}, + {field_digit, 0}, [127] = + {field_expr, 1, .inherited = true}, + [128] = {field_expr, 0, .inherited = true}, {field_expr, 1, .inherited = true}, - [129] = + [130] = {field_arg, 2, .inherited = true}, {field_arg_spread, 2, .inherited = true}, {field_arg_str, 2, .inherited = true}, @@ -4357,26 +4362,26 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_head, 0}, {field_head, 1}, {field_redir, 2, .inherited = true}, - [136] = - {field_arg, 0}, [137] = - {field_arg_spread, 0}, + {field_arg, 0}, [138] = {field_arg_spread, 0}, + [139] = + {field_arg_spread, 0}, {field_name, 0, .inherited = true}, - [140] = + [141] = {field_arg, 1, .inherited = true}, {field_arg_spread, 1, .inherited = true}, {field_arg_str, 1, .inherited = true}, {field_flag, 1, .inherited = true}, {field_redir, 1, .inherited = true}, - [145] = - {field_redir, 0}, [146] = - {field_flag, 0}, + {field_redir, 0}, [147] = - {field_arg_str, 0}, + {field_flag, 0}, [148] = + {field_arg_str, 0}, + [149] = {field_arg, 0, .inherited = true}, {field_arg, 1, .inherited = true}, {field_arg_spread, 0, .inherited = true}, @@ -4387,105 +4392,113 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_flag, 1, .inherited = true}, {field_redir, 0, .inherited = true}, {field_redir, 1, .inherited = true}, - [158] = + [159] = {field_lhs, 0}, {field_opr, 1}, {field_rhs, 2}, - [161] = + [162] = {field_end, 2}, {field_start, 0}, - [163] = + [164] = {field_name, 2}, {field_quoted_name, 2, .inherited = true}, {field_signature, 3}, {field_unquoted_name, 2, .inherited = true}, - [167] = + [168] = {field_body, 3}, {field_name, 2}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [171] = + [172] = {field_import_pattern, 3}, {field_module, 2}, - [173] = + [174] = {field_name, 1}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, {field_value, 3}, - [177] = + [178] = {field_dollar_name, 0, .inherited = true}, {field_name, 0}, {field_value, 2}, {field_var_name, 0, .inherited = true}, - [181] = - {field_flat_type, 0}, [182] = - {field_type, 1, .inherited = true}, + {field_flat_type, 0}, [183] = - {field_type, 0}, + {field_type, 1, .inherited = true}, [184] = - {field_value, 2}, + {field_type, 0}, [185] = - {field_type, 0, .inherited = true}, + {field_value, 2}, [186] = + {field_type, 0, .inherited = true}, + [187] = {field_body, 3}, {field_name, 1}, {field_parameters, 2}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [191] = + [192] = {field_body, 3}, {field_name, 1}, {field_quoted_name, 1, .inherited = true}, {field_signature, 2}, {field_unquoted_name, 1, .inherited = true}, - [196] = - {field_raw_path, 1}, [197] = - {field_head, 1}, + {field_raw_path, 1}, [198] = + {field_head, 1, .inherited = true}, + {field_row, 2}, + [200] = + {field_row, 0}, + [201] = + {field_row, 0, .inherited = true}, + {field_row, 1, .inherited = true}, + [203] = + {field_head, 1}, + [204] = {field_entry, 1, .inherited = true}, {field_entry, 2}, - [200] = + [206] = {field_try_branch, 2}, - [201] = + [207] = {field_lhs, 2, .inherited = true}, {field_opr, 2, .inherited = true}, {field_predicate, 2}, {field_rhs, 2, .inherited = true}, - [205] = + [211] = {field_predicate, 2}, - [206] = + [212] = {field_error_record, 3}, - [207] = + [213] = {field_scrutinee, 1}, - [208] = + [214] = {field_entry, 0, .inherited = true}, {field_rest, 0, .inherited = true}, - [210] = + [216] = {field_entry, 0, .inherited = true}, - [211] = + [217] = {field_key, 0}, {field_value, 2}, - [213] = + [219] = {field_name, 0}, - [214] = + [220] = {field_param_name, 0}, {field_param_name, 1}, - [216] = + [222] = {field_flag_capsule, 1}, {field_param_long_flag, 0}, - [218] = + [224] = {field_parameters, 1}, - [219] = + [225] = {field_end, 3}, {field_step, 1}, - [221] = + [227] = {field_catch_branch, 3}, {field_try_branch, 1}, - [223] = + [229] = {field_overlay, 3}, - [224] = + [230] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 2, .inherited = true}, @@ -4495,187 +4508,178 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 2}, {field_rhs, 2, .inherited = true}, - [233] = + [239] = {field_digit, 0}, {field_digit, 1}, - [235] = + [241] = {field_digit, 2, .inherited = true}, - [236] = + [242] = {field_digit, 0, .inherited = true}, {field_digit, 1, .inherited = true}, - [238] = + [244] = {field_file_path, 2}, - [239] = + [245] = {field_start, 0}, {field_step, 2}, - [241] = + [247] = {field_name, 2}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, {field_value, 4}, - [245] = + [251] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [250] = + [256] = {field_body, 4}, {field_name, 2}, {field_quoted_name, 2, .inherited = true}, {field_signature, 3}, {field_unquoted_name, 2, .inherited = true}, - [255] = + [261] = {field_completion, 2}, {field_type, 1, .inherited = true}, - [257] = + [263] = {field_type, 2, .inherited = true}, - [258] = + [264] = {field_dollar_name, 0, .inherited = true}, {field_name, 0}, {field_type, 1}, {field_value, 3}, {field_var_name, 0, .inherited = true}, - [263] = + [269] = {field_name, 1}, {field_value, 3}, - [265] = + [271] = {field_body, 4}, {field_name, 1}, {field_parameters, 2}, {field_quoted_name, 1, .inherited = true}, {field_return_type, 3}, {field_unquoted_name, 1, .inherited = true}, - [271] = + [277] = {field_cmd, 1}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [274] = + [280] = {field_cmd, 0}, {field_quoted_name, 0, .inherited = true}, {field_unquoted_name, 0, .inherited = true}, - [277] = + [283] = {field_cmd, 0, .inherited = true}, {field_cmd, 1, .inherited = true}, {field_quoted_name, 0, .inherited = true}, {field_quoted_name, 1, .inherited = true}, {field_unquoted_name, 0, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, - [283] = + [289] = {field_protected_path, 1}, {field_protected_path, 2}, - [285] = - {field_head, 1}, - {field_row, 3}, - [287] = - {field_row, 0}, - [288] = - {field_row, 0, .inherited = true}, - {field_row, 1, .inherited = true}, - [290] = - {field_head, 2}, [291] = + {field_head, 1, .inherited = true}, + {field_row, 3}, + [293] = + {field_head, 1, .inherited = true}, + {field_row, 2, .inherited = true}, + {field_row, 3}, + [296] = {field_condition, 1}, {field_then_branch, 3}, - [293] = + [298] = {field_condition, 2}, {field_then_branch, 3}, - [295] = + [300] = {field_lhs, 0}, {field_opr, 1}, {field_rhs, 3}, - [298] = + [303] = {field_lhs, 0}, {field_opr, 2}, {field_rhs, 3}, - [301] = + [306] = {field_body, 4}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 3}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [306] = + [311] = {field_condition, 1}, {field_else_branch, 4}, {field_then_branch, 2}, - [309] = + [314] = {field_condition, 1}, {field_else_block, 4}, {field_then_branch, 2}, - [312] = + [317] = {field_name, 2}, - [313] = + [318] = {field_param_value, 1}, - [314] = + [319] = {field_key, 0}, {field_key, 1}, {field_value, 3}, - [317] = + [322] = {field_parameters, 2}, - [318] = + [323] = {field_overlay, 2}, {field_quoted_name, 4, .inherited = true}, {field_rename, 4}, {field_unquoted_name, 4, .inherited = true}, - [322] = + [327] = {field_end, 4}, {field_start, 0}, {field_step, 2}, - [325] = + [330] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, {field_quoted_name, 2, .inherited = true}, {field_return_type, 4}, {field_unquoted_name, 2, .inherited = true}, - [331] = + [336] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, {field_quoted_name, 3, .inherited = true}, {field_unquoted_name, 3, .inherited = true}, - [336] = + [341] = {field_completion, 3}, {field_type, 2, .inherited = true}, - [338] = + [343] = {field_type, 3, .inherited = true}, - [339] = + [344] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [341] = + [346] = {field_type, 0, .inherited = true}, {field_type, 2, .inherited = true}, - [343] = + [348] = {field_cmd, 2}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [346] = + [351] = {field_cmd, 1, .inherited = true}, {field_cmd, 2}, {field_quoted_name, 1, .inherited = true}, {field_quoted_name, 2, .inherited = true}, {field_unquoted_name, 1, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, - [352] = - {field_head, 1}, - {field_row, 4}, - [354] = - {field_head, 1}, - {field_row, 3, .inherited = true}, - {field_row, 4}, [357] = - {field_head, 2}, + {field_head, 1, .inherited = true}, + {field_row, 3, .inherited = true}, {field_row, 4}, - [359] = + [360] = {field_condition, 2}, {field_then_branch, 4}, - [361] = + [362] = {field_catch_branch, 4}, {field_try_branch, 1}, - [363] = + [364] = {field_catch_branch, 4}, {field_try_branch, 2}, - [365] = + [366] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 3, .inherited = true}, @@ -4685,7 +4689,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [374] = + [375] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 3, .inherited = true}, @@ -4695,105 +4699,94 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 3}, {field_rhs, 3, .inherited = true}, - [383] = + [384] = {field_lhs, 0}, {field_opr, 2}, {field_rhs, 4}, - [386] = - {field_rest, 1}, [387] = - {field_entry, 1, .inherited = true}, + {field_rest, 1}, [388] = + {field_entry, 1, .inherited = true}, + [389] = {field_default_pattern, 0}, {field_expression, 2}, - [390] = + [391] = {field_expression, 2}, {field_pattern, 0}, - [392] = - {field_param_value, 2}, [393] = + {field_param_value, 2}, + [394] = {field_overlay, 3}, {field_quoted_name, 5, .inherited = true}, {field_rename, 5}, {field_unquoted_name, 5, .inherited = true}, - [397] = + [398] = {field_body, 6}, {field_name, 3}, {field_parameters, 4}, {field_quoted_name, 3, .inherited = true}, {field_return_type, 5}, {field_unquoted_name, 3, .inherited = true}, - [403] = - {field_key, 2}, [404] = - {field_key, 0}, + {field_key, 2}, [405] = + {field_key, 0}, + [406] = {field_completion, 0, .inherited = true}, {field_completion, 1, .inherited = true}, {field_key, 0, .inherited = true}, {field_key, 1, .inherited = true}, {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [411] = + [412] = {field_inner, 2}, {field_type, 2, .inherited = true}, - [413] = - {field_completion, 2}, [414] = + {field_completion, 2}, + [415] = {field_completion, 4}, {field_type, 3, .inherited = true}, - [416] = + [417] = {field_type, 1, .inherited = true}, {field_type, 2, .inherited = true}, - [418] = + [419] = {field_cmd, 2, .inherited = true}, {field_cmd, 3}, {field_quoted_name, 2, .inherited = true}, {field_quoted_name, 3, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, {field_unquoted_name, 3, .inherited = true}, - [424] = - {field_head, 1}, - {field_row, 4, .inherited = true}, - {field_row, 5}, - [427] = - {field_head, 2}, - {field_row, 5}, - [429] = - {field_head, 2}, - {field_row, 4, .inherited = true}, - {field_row, 5}, - [432] = + [425] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 2}, - [435] = + [428] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 2}, - [438] = + [431] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 3}, - [441] = + [434] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 3}, - [444] = + [437] = {field_condition, 2}, {field_else_branch, 5}, {field_then_branch, 3}, - [447] = + [440] = {field_condition, 2}, {field_else_block, 5}, {field_then_branch, 3}, - [450] = + [443] = {field_catch_branch, 5}, {field_try_branch, 1}, - [452] = + [445] = {field_catch_branch, 5}, {field_try_branch, 2}, - [454] = + [447] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 4, .inherited = true}, @@ -4803,193 +4796,189 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 4}, {field_rhs, 4, .inherited = true}, - [463] = + [456] = {field_entry, 1, .inherited = true}, {field_rest, 2}, - [465] = + [458] = {field_param_value, 3}, - [466] = + [459] = {field_body, 6}, {field_name, 4}, {field_parameters, 5}, {field_quoted_name, 4, .inherited = true}, {field_unquoted_name, 4, .inherited = true}, - [471] = + [464] = {field_key, 3}, - [472] = + [465] = {field_completion, 2, .inherited = true}, {field_key, 2, .inherited = true}, {field_key, 3}, {field_type, 2, .inherited = true}, - [476] = + [469] = {field_completion, 3}, {field_inner, 2}, {field_type, 2, .inherited = true}, - [479] = + [472] = {field_type, 2, .inherited = true}, {field_type, 3, .inherited = true}, - [481] = - {field_head, 2}, - {field_row, 5, .inherited = true}, - {field_row, 6}, - [484] = + [474] = {field_condition, 1}, {field_else_branch, 6}, {field_then_branch, 2}, - [487] = + [477] = {field_condition, 1}, {field_else_block, 6}, {field_then_branch, 2}, - [490] = + [480] = {field_condition, 1}, {field_else_branch, 6}, {field_then_branch, 3}, - [493] = + [483] = {field_condition, 1}, {field_else_block, 6}, {field_then_branch, 3}, - [496] = + [486] = {field_condition, 2}, {field_else_branch, 6}, {field_then_branch, 3}, - [499] = + [489] = {field_condition, 2}, {field_else_block, 6}, {field_then_branch, 3}, - [502] = + [492] = {field_condition, 2}, {field_else_branch, 6}, {field_then_branch, 4}, - [505] = + [495] = {field_condition, 2}, {field_else_block, 6}, {field_then_branch, 4}, - [508] = + [498] = {field_catch_branch, 6}, {field_try_branch, 1}, - [510] = + [500] = {field_catch_branch, 6}, {field_try_branch, 2}, - [512] = + [502] = {field_body, 7}, {field_name, 4}, {field_parameters, 5}, {field_quoted_name, 4, .inherited = true}, {field_return_type, 6}, {field_unquoted_name, 4, .inherited = true}, - [518] = + [508] = {field_key, 2}, {field_type, 4, .inherited = true}, - [520] = + [510] = {field_key, 0}, {field_type, 2, .inherited = true}, - [522] = + [512] = {field_completion, 3, .inherited = true}, {field_key, 3, .inherited = true}, {field_key, 4}, {field_type, 3, .inherited = true}, - [526] = + [516] = {field_condition, 1}, {field_else_branch, 7}, {field_then_branch, 2}, - [529] = + [519] = {field_condition, 1}, {field_else_block, 7}, {field_then_branch, 2}, - [532] = + [522] = {field_condition, 1}, {field_else_branch, 7}, {field_then_branch, 3}, - [535] = + [525] = {field_condition, 1}, {field_else_block, 7}, {field_then_branch, 3}, - [538] = + [528] = {field_condition, 2}, {field_else_branch, 7}, {field_then_branch, 3}, - [541] = + [531] = {field_condition, 2}, {field_else_block, 7}, {field_then_branch, 3}, - [544] = + [534] = {field_condition, 2}, {field_else_branch, 7}, {field_then_branch, 4}, - [547] = + [537] = {field_condition, 2}, {field_else_block, 7}, {field_then_branch, 4}, - [550] = + [540] = {field_catch_branch, 7}, {field_try_branch, 2}, - [552] = + [542] = {field_completion, 5}, {field_key, 2}, {field_type, 4, .inherited = true}, - [555] = + [545] = {field_completion, 3}, {field_key, 0}, {field_type, 2, .inherited = true}, - [558] = + [548] = {field_key, 3}, {field_type, 5, .inherited = true}, - [560] = + [550] = {field_completion, 2, .inherited = true}, {field_key, 2, .inherited = true}, {field_key, 3}, {field_type, 2, .inherited = true}, {field_type, 5, .inherited = true}, - [565] = + [555] = {field_condition, 1}, {field_else_branch, 8}, {field_then_branch, 3}, - [568] = + [558] = {field_condition, 1}, {field_else_block, 8}, {field_then_branch, 3}, - [571] = + [561] = {field_condition, 2}, {field_else_branch, 8}, {field_then_branch, 3}, - [574] = + [564] = {field_condition, 2}, {field_else_block, 8}, {field_then_branch, 3}, - [577] = + [567] = {field_condition, 2}, {field_else_branch, 8}, {field_then_branch, 4}, - [580] = + [570] = {field_condition, 2}, {field_else_block, 8}, {field_then_branch, 4}, - [583] = + [573] = {field_completion, 6}, {field_key, 3}, {field_type, 5, .inherited = true}, - [586] = + [576] = {field_completion, 3, .inherited = true}, {field_key, 3, .inherited = true}, {field_key, 4}, {field_type, 3, .inherited = true}, {field_type, 6, .inherited = true}, - [591] = + [581] = {field_completion, 2, .inherited = true}, {field_completion, 6}, {field_key, 2, .inherited = true}, {field_key, 3}, {field_type, 2, .inherited = true}, {field_type, 5, .inherited = true}, - [597] = + [587] = {field_condition, 2}, {field_else_branch, 9}, {field_then_branch, 4}, - [600] = + [590] = {field_condition, 2}, {field_else_block, 9}, {field_then_branch, 4}, - [603] = + [593] = {field_completion, 3, .inherited = true}, {field_completion, 7}, {field_key, 3, .inherited = true}, @@ -5021,94 +5010,94 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [50] = { [1] = anon_alias_sym__unit, }, - [77] = { + [78] = { [0] = sym_val_string, }, - [80] = { + [81] = { [2] = sym_val_string, }, - [82] = { + [83] = { [2] = sym_val_number, }, - [83] = { + [84] = { [0] = sym_val_number, }, - [84] = { + [85] = { [0] = sym_val_number, [2] = sym_val_number, }, - [94] = { + [95] = { [2] = sym_val_string, }, - [99] = { + [100] = { [1] = anon_alias_sym_quoted, }, - [101] = { + [104] = { [0] = anon_alias_sym__head, }, - [110] = { + [114] = { [1] = sym_val_string, }, - [111] = { + [115] = { [0] = sym_identifier, }, - [118] = { + [122] = { [3] = sym_val_number, }, - [119] = { + [123] = { [1] = sym_val_number, }, - [120] = { + [124] = { [1] = sym_val_number, [3] = sym_val_number, }, - [129] = { + [133] = { [2] = sym_val_number, }, - [130] = { + [134] = { [0] = sym_val_number, }, - [131] = { + [135] = { [0] = sym_val_number, [2] = sym_val_number, }, - [139] = { + [143] = { [3] = sym_val_string, }, - [145] = { + [149] = { [1] = anon_alias_sym_quoted, }, - [153] = { + [155] = { [3] = sym_val_string, }, - [155] = { + [157] = { [3] = sym_val_string, }, - [161] = { + [163] = { [0] = sym_identifier, }, - [165] = { + [167] = { [4] = sym_val_number, }, - [166] = { + [168] = { [2] = sym_val_number, }, - [167] = { + [169] = { [2] = sym_val_number, [4] = sym_val_number, }, - [168] = { + [170] = { [0] = sym_val_number, }, - [169] = { + [171] = { [0] = sym_val_number, [4] = sym_val_number, }, - [170] = { + [172] = { [0] = sym_val_number, [2] = sym_val_number, }, - [171] = { + [173] = { [0] = sym_val_number, [2] = sym_val_number, [4] = sym_val_number, @@ -5125,43 +5114,43 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [201] = { [0] = sym_identifier, }, - [224] = { + [221] = { [3] = sym_identifier, }, - [226] = { + [223] = { [3] = sym_identifier, }, - [243] = { + [239] = { [2] = sym_identifier, }, - [244] = { + [240] = { [0] = sym_identifier, }, - [246] = { + [242] = { [4] = sym_identifier, }, - [258] = { + [254] = { [2] = sym_identifier, }, - [259] = { + [255] = { [0] = sym_identifier, }, - [261] = { + [257] = { [3] = sym_identifier, }, - [263] = { + [259] = { [3] = sym_identifier, }, - [271] = { + [267] = { [3] = sym_identifier, }, - [273] = { + [269] = { [4] = sym_identifier, }, - [275] = { + [271] = { [3] = sym_identifier, }, - [279] = { + [275] = { [4] = sym_identifier, }, }; @@ -5201,12 +5190,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 4, - [5] = 3, + [4] = 3, + [5] = 5, [6] = 3, - [7] = 4, + [7] = 5, [8] = 3, - [9] = 4, + [9] = 5, [10] = 3, [11] = 3, [12] = 3, @@ -5237,11 +5226,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [37] = 35, [38] = 35, [39] = 39, - [40] = 39, - [41] = 41, - [42] = 41, - [43] = 41, - [44] = 41, + [40] = 40, + [41] = 39, + [42] = 40, + [43] = 39, + [44] = 39, [45] = 45, [46] = 45, [47] = 45, @@ -5256,88 +5245,88 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [56] = 45, [57] = 45, [58] = 58, - [59] = 58, + [59] = 59, [60] = 58, - [61] = 61, + [61] = 59, [62] = 58, [63] = 58, - [64] = 64, - [65] = 58, - [66] = 64, - [67] = 67, - [68] = 58, + [64] = 58, + [65] = 59, + [66] = 58, + [67] = 58, + [68] = 68, [69] = 58, - [70] = 58, - [71] = 61, + [70] = 59, + [71] = 58, [72] = 58, - [73] = 58, - [74] = 61, + [73] = 73, + [74] = 74, [75] = 58, [76] = 58, [77] = 58, [78] = 58, - [79] = 61, - [80] = 64, - [81] = 81, - [82] = 58, - [83] = 61, - [84] = 58, - [85] = 61, + [79] = 58, + [80] = 74, + [81] = 59, + [82] = 59, + [83] = 59, + [84] = 68, + [85] = 68, [86] = 58, - [87] = 61, - [88] = 64, - [89] = 58, - [90] = 81, - [91] = 61, - [92] = 61, + [87] = 58, + [88] = 68, + [89] = 59, + [90] = 68, + [91] = 58, + [92] = 59, [93] = 58, - [94] = 61, - [95] = 64, + [94] = 59, + [95] = 58, [96] = 58, [97] = 97, [98] = 98, - [99] = 99, + [99] = 97, [100] = 100, - [101] = 100, + [101] = 101, [102] = 102, - [103] = 103, - [104] = 98, - [105] = 99, - [106] = 97, - [107] = 102, - [108] = 99, + [103] = 101, + [104] = 104, + [105] = 100, + [106] = 102, + [107] = 104, + [108] = 97, [109] = 102, - [110] = 99, + [110] = 97, [111] = 102, - [112] = 99, + [112] = 101, [113] = 102, - [114] = 99, - [115] = 102, - [116] = 99, - [117] = 102, - [118] = 99, - [119] = 102, - [120] = 99, - [121] = 102, - [122] = 99, - [123] = 102, - [124] = 99, - [125] = 102, - [126] = 99, - [127] = 100, + [114] = 102, + [115] = 97, + [116] = 102, + [117] = 97, + [118] = 102, + [119] = 97, + [120] = 102, + [121] = 97, + [122] = 102, + [123] = 97, + [124] = 102, + [125] = 97, + [126] = 102, + [127] = 97, [128] = 102, - [129] = 99, - [130] = 102, + [129] = 97, + [130] = 97, [131] = 131, - [132] = 131, + [132] = 132, [133] = 133, [134] = 134, - [135] = 134, - [136] = 131, - [137] = 137, - [138] = 138, - [139] = 139, - [140] = 134, + [135] = 135, + [136] = 134, + [137] = 134, + [138] = 135, + [139] = 135, + [140] = 140, [141] = 141, [142] = 142, [143] = 143, @@ -5355,81 +5344,81 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [155] = 155, [156] = 156, [157] = 157, - [158] = 155, + [158] = 158, [159] = 159, - [160] = 160, - [161] = 156, - [162] = 155, - [163] = 163, - [164] = 157, - [165] = 165, + [160] = 159, + [161] = 161, + [162] = 162, + [163] = 159, + [164] = 164, + [165] = 159, [166] = 166, - [167] = 157, - [168] = 159, - [169] = 160, - [170] = 156, - [171] = 157, - [172] = 159, - [173] = 160, - [174] = 163, - [175] = 175, - [176] = 176, - [177] = 159, - [178] = 156, - [179] = 155, - [180] = 165, - [181] = 166, - [182] = 175, - [183] = 176, - [184] = 160, + [167] = 167, + [168] = 162, + [169] = 162, + [170] = 167, + [171] = 166, + [172] = 167, + [173] = 155, + [174] = 156, + [175] = 164, + [176] = 167, + [177] = 157, + [178] = 166, + [179] = 166, + [180] = 161, + [181] = 155, + [182] = 155, + [183] = 158, + [184] = 162, [185] = 185, [186] = 186, [187] = 185, - [188] = 188, + [188] = 185, [189] = 189, [190] = 185, - [191] = 186, - [192] = 185, + [191] = 191, + [192] = 186, [193] = 193, [194] = 193, - [195] = 195, - [196] = 195, - [197] = 193, + [195] = 193, + [196] = 196, + [197] = 196, [198] = 198, [199] = 199, [200] = 200, [201] = 201, [202] = 202, [203] = 203, - [204] = 204, + [204] = 202, [205] = 203, - [206] = 204, + [206] = 206, [207] = 207, [208] = 208, [209] = 209, [210] = 210, - [211] = 211, + [211] = 210, [212] = 212, [213] = 213, [214] = 214, [215] = 215, [216] = 216, - [217] = 210, + [217] = 217, [218] = 218, [219] = 219, [220] = 220, [221] = 221, [222] = 222, - [223] = 223, - [224] = 224, - [225] = 225, - [226] = 226, - [227] = 227, - [228] = 228, + [223] = 212, + [224] = 213, + [225] = 217, + [226] = 198, + [227] = 215, + [228] = 216, [229] = 229, - [230] = 230, + [230] = 214, [231] = 231, - [232] = 232, + [232] = 219, [233] = 233, [234] = 234, [235] = 235, @@ -5438,395 +5427,395 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [238] = 238, [239] = 239, [240] = 240, - [241] = 241, + [241] = 199, [242] = 242, [243] = 243, [244] = 244, [245] = 245, [246] = 246, - [247] = 220, - [248] = 212, - [249] = 224, - [250] = 211, - [251] = 225, - [252] = 226, - [253] = 227, - [254] = 228, - [255] = 229, - [256] = 230, - [257] = 231, - [258] = 232, - [259] = 233, + [247] = 247, + [248] = 248, + [249] = 249, + [250] = 250, + [251] = 251, + [252] = 252, + [253] = 253, + [254] = 254, + [255] = 255, + [256] = 256, + [257] = 199, + [258] = 220, + [259] = 234, [260] = 234, - [261] = 235, - [262] = 236, - [263] = 237, - [264] = 238, - [265] = 239, - [266] = 240, - [267] = 241, - [268] = 242, - [269] = 243, - [270] = 244, - [271] = 221, + [261] = 221, + [262] = 235, + [263] = 236, + [264] = 237, + [265] = 238, + [266] = 239, + [267] = 240, + [268] = 268, + [269] = 242, + [270] = 243, + [271] = 244, [272] = 245, [273] = 246, - [274] = 213, - [275] = 275, - [276] = 276, - [277] = 277, - [278] = 199, - [279] = 214, - [280] = 219, - [281] = 281, - [282] = 218, - [283] = 224, - [284] = 225, - [285] = 226, - [286] = 227, - [287] = 228, - [288] = 198, - [289] = 229, - [290] = 230, - [291] = 231, - [292] = 232, - [293] = 233, - [294] = 234, - [295] = 235, - [296] = 236, - [297] = 237, - [298] = 238, - [299] = 239, - [300] = 240, - [301] = 241, - [302] = 302, - [303] = 242, - [304] = 243, - [305] = 244, - [306] = 221, - [307] = 245, - [308] = 215, - [309] = 246, + [274] = 247, + [275] = 248, + [276] = 249, + [277] = 250, + [278] = 251, + [279] = 252, + [280] = 253, + [281] = 254, + [282] = 255, + [283] = 256, + [284] = 221, + [285] = 235, + [286] = 236, + [287] = 237, + [288] = 218, + [289] = 289, + [290] = 238, + [291] = 239, + [292] = 240, + [293] = 268, + [294] = 242, + [295] = 243, + [296] = 244, + [297] = 245, + [298] = 246, + [299] = 247, + [300] = 248, + [301] = 249, + [302] = 250, + [303] = 251, + [304] = 252, + [305] = 253, + [306] = 254, + [307] = 255, + [308] = 256, + [309] = 309, [310] = 310, - [311] = 216, + [311] = 311, [312] = 312, [313] = 313, - [314] = 198, + [314] = 268, [315] = 315, - [316] = 276, - [317] = 200, - [318] = 318, - [319] = 302, - [320] = 313, + [316] = 311, + [317] = 317, + [318] = 313, + [319] = 309, + [320] = 141, [321] = 321, - [322] = 322, - [323] = 141, - [324] = 312, - [325] = 325, - [326] = 310, - [327] = 327, - [328] = 222, + [322] = 200, + [323] = 229, + [324] = 324, + [325] = 231, + [326] = 326, + [327] = 222, + [328] = 328, [329] = 329, - [330] = 275, + [330] = 330, [331] = 331, - [332] = 332, - [333] = 223, + [332] = 310, + [333] = 333, [334] = 334, [335] = 335, [336] = 336, - [337] = 337, - [338] = 338, + [337] = 289, + [338] = 329, [339] = 339, - [340] = 327, - [341] = 339, - [342] = 339, + [340] = 141, + [341] = 341, + [342] = 342, [343] = 343, [344] = 344, - [345] = 343, + [345] = 342, [346] = 346, - [347] = 141, - [348] = 339, - [349] = 349, - [350] = 350, - [351] = 343, - [352] = 352, - [353] = 343, - [354] = 354, - [355] = 344, - [356] = 344, - [357] = 335, - [358] = 142, - [359] = 143, - [360] = 360, - [361] = 315, - [362] = 331, - [363] = 318, - [364] = 334, - [365] = 336, - [366] = 337, - [367] = 339, - [368] = 343, - [369] = 369, - [370] = 370, - [371] = 371, - [372] = 315, - [373] = 147, - [374] = 144, - [375] = 145, - [376] = 146, - [377] = 148, - [378] = 142, - [379] = 149, - [380] = 318, - [381] = 143, - [382] = 338, - [383] = 360, + [347] = 343, + [348] = 143, + [349] = 142, + [350] = 328, + [351] = 346, + [352] = 326, + [353] = 346, + [354] = 330, + [355] = 331, + [356] = 343, + [357] = 357, + [358] = 342, + [359] = 343, + [360] = 342, + [361] = 334, + [362] = 362, + [363] = 324, + [364] = 364, + [365] = 343, + [366] = 336, + [367] = 367, + [368] = 342, + [369] = 145, + [370] = 362, + [371] = 148, + [372] = 364, + [373] = 373, + [374] = 374, + [375] = 143, + [376] = 376, + [377] = 142, + [378] = 378, + [379] = 379, + [380] = 334, + [381] = 146, + [382] = 144, + [383] = 147, [384] = 384, - [385] = 385, - [386] = 386, - [387] = 369, - [388] = 315, - [389] = 385, + [385] = 149, + [386] = 336, + [387] = 141, + [388] = 388, + [389] = 389, [390] = 390, - [391] = 391, - [392] = 141, - [393] = 393, + [391] = 384, + [392] = 147, + [393] = 145, [394] = 394, [395] = 395, - [396] = 396, - [397] = 397, + [396] = 373, + [397] = 151, [398] = 398, - [399] = 399, - [400] = 400, - [401] = 401, - [402] = 402, - [403] = 371, - [404] = 404, - [405] = 147, + [399] = 376, + [400] = 148, + [401] = 378, + [402] = 374, + [403] = 379, + [404] = 334, + [405] = 405, [406] = 406, - [407] = 315, - [408] = 146, - [409] = 148, - [410] = 360, - [411] = 370, - [412] = 412, - [413] = 413, - [414] = 338, - [415] = 415, + [407] = 407, + [408] = 141, + [409] = 409, + [410] = 410, + [411] = 411, + [412] = 334, + [413] = 362, + [414] = 150, + [415] = 364, [416] = 416, - [417] = 318, - [418] = 418, - [419] = 384, - [420] = 152, - [421] = 144, - [422] = 318, - [423] = 423, + [417] = 417, + [418] = 336, + [419] = 149, + [420] = 420, + [421] = 336, + [422] = 146, + [423] = 144, [424] = 424, [425] = 425, [426] = 426, - [427] = 145, - [428] = 428, - [429] = 429, - [430] = 151, - [431] = 150, - [432] = 141, - [433] = 386, - [434] = 434, - [435] = 435, - [436] = 149, - [437] = 412, - [438] = 401, - [439] = 439, - [440] = 434, - [441] = 441, - [442] = 442, - [443] = 142, - [444] = 143, - [445] = 150, - [446] = 142, - [447] = 153, - [448] = 143, - [449] = 152, - [450] = 151, + [427] = 152, + [428] = 362, + [429] = 336, + [430] = 143, + [431] = 142, + [432] = 432, + [433] = 411, + [434] = 150, + [435] = 143, + [436] = 153, + [437] = 142, + [438] = 151, + [439] = 152, + [440] = 394, + [441] = 416, + [442] = 426, + [443] = 388, + [444] = 390, + [445] = 410, + [446] = 398, + [447] = 405, + [448] = 379, + [449] = 407, + [450] = 389, [451] = 451, [452] = 452, [453] = 453, - [454] = 400, - [455] = 416, - [456] = 415, - [457] = 315, - [458] = 360, - [459] = 338, - [460] = 360, - [461] = 338, - [462] = 371, - [463] = 384, - [464] = 385, + [454] = 409, + [455] = 455, + [456] = 456, + [457] = 457, + [458] = 424, + [459] = 459, + [460] = 406, + [461] = 334, + [462] = 362, + [463] = 364, + [464] = 395, [465] = 465, - [466] = 318, - [467] = 467, - [468] = 468, - [469] = 469, + [466] = 364, + [467] = 425, + [468] = 373, + [469] = 417, [470] = 470, - [471] = 428, + [471] = 376, [472] = 472, - [473] = 435, - [474] = 393, - [475] = 424, - [476] = 390, - [477] = 391, - [478] = 395, - [479] = 396, - [480] = 398, - [481] = 399, - [482] = 402, - [483] = 404, - [484] = 413, - [485] = 418, - [486] = 429, - [487] = 394, - [488] = 397, - [489] = 406, - [490] = 423, - [491] = 425, - [492] = 426, - [493] = 370, - [494] = 494, - [495] = 149, - [496] = 496, + [473] = 378, + [474] = 474, + [475] = 420, + [476] = 476, + [477] = 477, + [478] = 145, + [479] = 479, + [480] = 334, + [481] = 146, + [482] = 144, + [483] = 147, + [484] = 145, + [485] = 455, + [486] = 456, + [487] = 457, + [488] = 459, + [489] = 336, + [490] = 490, + [491] = 491, + [492] = 492, + [493] = 465, + [494] = 470, + [495] = 495, + [496] = 451, [497] = 497, [498] = 498, - [499] = 147, - [500] = 146, - [501] = 148, - [502] = 149, - [503] = 503, + [499] = 499, + [500] = 500, + [501] = 364, + [502] = 373, + [503] = 452, [504] = 504, - [505] = 452, - [506] = 506, - [507] = 507, - [508] = 508, + [505] = 376, + [506] = 153, + [507] = 378, + [508] = 379, [509] = 509, [510] = 510, - [511] = 360, - [512] = 338, - [513] = 371, - [514] = 144, - [515] = 384, - [516] = 145, - [517] = 385, - [518] = 370, - [519] = 371, - [520] = 384, - [521] = 521, - [522] = 370, - [523] = 315, - [524] = 453, - [525] = 318, - [526] = 467, - [527] = 468, - [528] = 469, - [529] = 470, - [530] = 472, - [531] = 153, - [532] = 144, - [533] = 145, - [534] = 534, - [535] = 441, - [536] = 439, - [537] = 442, - [538] = 465, - [539] = 451, - [540] = 540, - [541] = 541, - [542] = 542, + [511] = 511, + [512] = 453, + [513] = 373, + [514] = 514, + [515] = 149, + [516] = 376, + [517] = 149, + [518] = 378, + [519] = 148, + [520] = 379, + [521] = 472, + [522] = 474, + [523] = 148, + [524] = 432, + [525] = 147, + [526] = 526, + [527] = 146, + [528] = 528, + [529] = 529, + [530] = 144, + [531] = 362, + [532] = 491, + [533] = 150, + [534] = 509, + [535] = 334, + [536] = 495, + [537] = 510, + [538] = 479, + [539] = 526, + [540] = 511, + [541] = 150, + [542] = 152, [543] = 543, - [544] = 147, - [545] = 545, - [546] = 146, - [547] = 148, - [548] = 548, - [549] = 385, - [550] = 503, - [551] = 551, - [552] = 504, - [553] = 553, - [554] = 554, - [555] = 555, - [556] = 508, - [557] = 542, - [558] = 150, - [559] = 509, - [560] = 510, - [561] = 315, - [562] = 152, - [563] = 496, - [564] = 151, - [565] = 385, - [566] = 370, - [567] = 540, - [568] = 371, - [569] = 152, - [570] = 507, - [571] = 497, - [572] = 151, + [544] = 336, + [545] = 498, + [546] = 546, + [547] = 490, + [548] = 504, + [549] = 549, + [550] = 373, + [551] = 362, + [552] = 151, + [553] = 152, + [554] = 528, + [555] = 529, + [556] = 376, + [557] = 514, + [558] = 558, + [559] = 378, + [560] = 379, + [561] = 492, + [562] = 500, + [563] = 477, + [564] = 497, + [565] = 151, + [566] = 566, + [567] = 567, + [568] = 499, + [569] = 364, + [570] = 570, + [571] = 571, + [572] = 572, [573] = 573, - [574] = 543, - [575] = 541, - [576] = 506, - [577] = 494, - [578] = 498, - [579] = 545, - [580] = 548, - [581] = 521, - [582] = 360, - [583] = 384, - [584] = 338, - [585] = 150, - [586] = 318, - [587] = 587, - [588] = 588, - [589] = 589, - [590] = 153, - [591] = 553, - [592] = 554, + [574] = 574, + [575] = 575, + [576] = 362, + [577] = 364, + [578] = 578, + [579] = 579, + [580] = 580, + [581] = 581, + [582] = 582, + [583] = 583, + [584] = 584, + [585] = 585, + [586] = 373, + [587] = 376, + [588] = 378, + [589] = 379, + [590] = 590, + [591] = 153, + [592] = 592, [593] = 593, - [594] = 360, + [594] = 594, [595] = 595, - [596] = 338, + [596] = 596, [597] = 597, [598] = 598, [599] = 599, - [600] = 441, - [601] = 442, - [602] = 153, - [603] = 371, - [604] = 384, - [605] = 147, - [606] = 385, - [607] = 370, - [608] = 146, - [609] = 148, - [610] = 149, + [600] = 465, + [601] = 470, + [602] = 602, + [603] = 603, + [604] = 604, + [605] = 605, + [606] = 606, + [607] = 607, + [608] = 608, + [609] = 609, + [610] = 610, [611] = 611, [612] = 612, - [613] = 555, + [613] = 613, [614] = 614, [615] = 615, [616] = 616, [617] = 617, [618] = 618, - [619] = 619, + [619] = 153, [620] = 620, [621] = 621, [622] = 622, [623] = 623, [624] = 624, - [625] = 625, - [626] = 626, - [627] = 627, - [628] = 628, - [629] = 629, + [625] = 543, + [626] = 146, + [627] = 144, + [628] = 147, + [629] = 145, [630] = 630, [631] = 631, [632] = 632, @@ -5837,1539 +5826,1539 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [637] = 637, [638] = 638, [639] = 639, - [640] = 640, - [641] = 587, + [640] = 546, + [641] = 558, [642] = 642, [643] = 643, [644] = 644, [645] = 645, [646] = 646, - [647] = 647, - [648] = 648, - [649] = 649, - [650] = 650, - [651] = 651, - [652] = 652, - [653] = 653, - [654] = 654, - [655] = 655, - [656] = 656, - [657] = 657, - [658] = 658, - [659] = 659, - [660] = 660, - [661] = 661, - [662] = 662, - [663] = 663, - [664] = 664, - [665] = 665, - [666] = 666, - [667] = 667, - [668] = 668, - [669] = 669, - [670] = 670, - [671] = 671, - [672] = 672, - [673] = 673, - [674] = 674, - [675] = 659, - [676] = 626, - [677] = 627, - [678] = 628, - [679] = 629, - [680] = 630, - [681] = 631, - [682] = 593, - [683] = 149, - [684] = 633, - [685] = 634, - [686] = 686, - [687] = 146, - [688] = 635, - [689] = 636, - [690] = 637, - [691] = 640, - [692] = 612, - [693] = 148, + [647] = 566, + [648] = 639, + [649] = 622, + [650] = 378, + [651] = 379, + [652] = 593, + [653] = 594, + [654] = 623, + [655] = 595, + [656] = 596, + [657] = 597, + [658] = 598, + [659] = 602, + [660] = 603, + [661] = 604, + [662] = 373, + [663] = 605, + [664] = 618, + [665] = 606, + [666] = 607, + [667] = 630, + [668] = 608, + [669] = 146, + [670] = 612, + [671] = 144, + [672] = 147, + [673] = 145, + [674] = 631, + [675] = 376, + [676] = 676, + [677] = 677, + [678] = 632, + [679] = 633, + [680] = 635, + [681] = 636, + [682] = 616, + [683] = 620, + [684] = 621, + [685] = 644, + [686] = 571, + [687] = 572, + [688] = 573, + [689] = 574, + [690] = 575, + [691] = 578, + [692] = 579, + [693] = 637, [694] = 638, - [695] = 642, - [696] = 595, - [697] = 643, - [698] = 618, - [699] = 371, - [700] = 644, - [701] = 384, - [702] = 646, - [703] = 441, - [704] = 647, - [705] = 648, - [706] = 649, - [707] = 650, - [708] = 651, - [709] = 652, - [710] = 653, - [711] = 654, - [712] = 655, - [713] = 656, - [714] = 658, - [715] = 624, - [716] = 625, - [717] = 661, - [718] = 662, - [719] = 663, - [720] = 664, - [721] = 588, - [722] = 666, - [723] = 667, - [724] = 668, - [725] = 669, - [726] = 670, - [727] = 385, - [728] = 672, - [729] = 673, - [730] = 589, - [731] = 665, - [732] = 645, - [733] = 597, - [734] = 442, - [735] = 598, - [736] = 370, - [737] = 599, - [738] = 632, - [739] = 199, - [740] = 740, - [741] = 147, - [742] = 614, - [743] = 615, - [744] = 744, - [745] = 616, - [746] = 617, - [747] = 619, - [748] = 620, - [749] = 621, - [750] = 622, - [751] = 660, - [752] = 216, - [753] = 200, - [754] = 754, - [755] = 215, - [756] = 216, - [757] = 215, - [758] = 216, - [759] = 312, - [760] = 222, - [761] = 215, - [762] = 215, - [763] = 216, - [764] = 331, - [765] = 216, - [766] = 222, - [767] = 336, - [768] = 337, - [769] = 312, - [770] = 222, - [771] = 222, + [695] = 570, + [696] = 580, + [697] = 581, + [698] = 698, + [699] = 617, + [700] = 582, + [701] = 642, + [702] = 583, + [703] = 645, + [704] = 646, + [705] = 599, + [706] = 613, + [707] = 584, + [708] = 585, + [709] = 465, + [710] = 590, + [711] = 592, + [712] = 470, + [713] = 615, + [714] = 198, + [715] = 643, + [716] = 200, + [717] = 717, + [718] = 216, + [719] = 215, + [720] = 229, + [721] = 215, + [722] = 216, + [723] = 216, + [724] = 216, + [725] = 215, + [726] = 231, + [727] = 215, + [728] = 326, + [729] = 329, + [730] = 215, + [731] = 231, + [732] = 732, + [733] = 216, + [734] = 330, + [735] = 229, + [736] = 331, + [737] = 229, + [738] = 738, + [739] = 229, + [740] = 231, + [741] = 732, + [742] = 231, + [743] = 216, + [744] = 329, + [745] = 329, + [746] = 231, + [747] = 330, + [748] = 738, + [749] = 738, + [750] = 750, + [751] = 215, + [752] = 752, + [753] = 326, + [754] = 331, + [755] = 331, + [756] = 756, + [757] = 330, + [758] = 326, + [759] = 326, + [760] = 330, + [761] = 738, + [762] = 229, + [763] = 331, + [764] = 329, + [765] = 765, + [766] = 329, + [767] = 198, + [768] = 768, + [769] = 330, + [770] = 229, + [771] = 331, [772] = 772, - [773] = 312, - [774] = 312, - [775] = 215, - [776] = 334, - [777] = 334, - [778] = 772, - [779] = 772, - [780] = 334, - [781] = 312, - [782] = 336, - [783] = 772, - [784] = 337, - [785] = 336, - [786] = 337, - [787] = 787, - [788] = 334, - [789] = 215, - [790] = 790, - [791] = 331, - [792] = 331, - [793] = 793, - [794] = 331, - [795] = 336, - [796] = 790, - [797] = 337, - [798] = 798, - [799] = 216, - [800] = 222, - [801] = 801, - [802] = 199, - [803] = 337, - [804] = 804, - [805] = 331, + [773] = 773, + [774] = 774, + [775] = 775, + [776] = 326, + [777] = 777, + [778] = 778, + [779] = 231, + [780] = 780, + [781] = 781, + [782] = 782, + [783] = 738, + [784] = 773, + [785] = 326, + [786] = 786, + [787] = 774, + [788] = 329, + [789] = 768, + [790] = 330, + [791] = 200, + [792] = 792, + [793] = 772, + [794] = 775, + [795] = 795, + [796] = 331, + [797] = 738, + [798] = 526, + [799] = 799, + [800] = 799, + [801] = 799, + [802] = 799, + [803] = 799, + [804] = 799, + [805] = 805, [806] = 806, - [807] = 222, - [808] = 808, - [809] = 312, - [810] = 810, - [811] = 811, - [812] = 812, - [813] = 336, - [814] = 772, - [815] = 334, - [816] = 816, - [817] = 817, - [818] = 818, - [819] = 819, - [820] = 817, - [821] = 200, - [822] = 801, - [823] = 823, - [824] = 819, - [825] = 337, - [826] = 772, - [827] = 827, - [828] = 828, - [829] = 331, - [830] = 334, - [831] = 336, - [832] = 804, - [833] = 812, - [834] = 540, - [835] = 835, + [807] = 799, + [808] = 799, + [809] = 799, + [810] = 799, + [811] = 806, + [812] = 799, + [813] = 799, + [814] = 799, + [815] = 805, + [816] = 805, + [817] = 806, + [818] = 799, + [819] = 799, + [820] = 799, + [821] = 799, + [822] = 805, + [823] = 806, + [824] = 824, + [825] = 825, + [826] = 824, + [827] = 806, + [828] = 825, + [829] = 825, + [830] = 805, + [831] = 825, + [832] = 825, + [833] = 824, + [834] = 806, + [835] = 805, [836] = 836, - [837] = 835, - [838] = 835, - [839] = 835, - [840] = 836, - [841] = 836, - [842] = 836, + [837] = 837, + [838] = 838, + [839] = 839, + [840] = 840, + [841] = 841, + [842] = 842, [843] = 843, [844] = 844, - [845] = 843, + [845] = 845, [846] = 846, - [847] = 844, - [848] = 843, - [849] = 846, - [850] = 844, - [851] = 843, - [852] = 835, - [853] = 844, - [854] = 836, - [855] = 843, - [856] = 844, - [857] = 843, - [858] = 843, - [859] = 843, - [860] = 843, - [861] = 843, - [862] = 843, - [863] = 843, - [864] = 843, - [865] = 843, - [866] = 843, - [867] = 843, - [868] = 843, - [869] = 846, - [870] = 836, - [871] = 835, + [847] = 847, + [848] = 848, + [849] = 849, + [850] = 850, + [851] = 851, + [852] = 852, + [853] = 853, + [854] = 854, + [855] = 855, + [856] = 856, + [857] = 857, + [858] = 858, + [859] = 859, + [860] = 860, + [861] = 861, + [862] = 862, + [863] = 863, + [864] = 864, + [865] = 865, + [866] = 866, + [867] = 867, + [868] = 868, + [869] = 869, + [870] = 870, + [871] = 871, [872] = 872, [873] = 873, - [874] = 872, - [875] = 872, - [876] = 872, - [877] = 872, - [878] = 872, - [879] = 872, - [880] = 872, - [881] = 872, - [882] = 872, - [883] = 872, - [884] = 872, - [885] = 872, - [886] = 872, - [887] = 872, - [888] = 872, - [889] = 872, - [890] = 872, - [891] = 891, - [892] = 892, - [893] = 893, - [894] = 894, - [895] = 895, - [896] = 896, - [897] = 897, - [898] = 898, - [899] = 899, - [900] = 895, - [901] = 896, - [902] = 897, - [903] = 898, - [904] = 899, + [874] = 874, + [875] = 875, + [876] = 876, + [877] = 877, + [878] = 878, + [879] = 879, + [880] = 880, + [881] = 881, + [882] = 882, + [883] = 883, + [884] = 884, + [885] = 885, + [886] = 886, + [887] = 887, + [888] = 875, + [889] = 876, + [890] = 877, + [891] = 878, + [892] = 879, + [893] = 880, + [894] = 881, + [895] = 882, + [896] = 883, + [897] = 884, + [898] = 885, + [899] = 886, + [900] = 887, + [901] = 901, + [902] = 902, + [903] = 903, + [904] = 904, [905] = 905, - [906] = 906, - [907] = 907, - [908] = 908, - [909] = 909, - [910] = 910, - [911] = 911, - [912] = 912, - [913] = 913, - [914] = 914, - [915] = 915, - [916] = 916, - [917] = 917, - [918] = 918, - [919] = 919, - [920] = 920, - [921] = 906, - [922] = 907, - [923] = 908, - [924] = 909, - [925] = 910, - [926] = 920, - [927] = 927, - [928] = 928, - [929] = 929, - [930] = 930, - [931] = 931, - [932] = 932, - [933] = 891, - [934] = 934, - [935] = 935, - [936] = 936, - [937] = 937, - [938] = 938, - [939] = 939, - [940] = 940, - [941] = 941, - [942] = 942, - [943] = 943, - [944] = 944, - [945] = 945, - [946] = 946, - [947] = 947, - [948] = 948, - [949] = 949, - [950] = 950, - [951] = 951, - [952] = 952, - [953] = 953, - [954] = 954, - [955] = 955, - [956] = 956, - [957] = 911, - [958] = 958, - [959] = 892, - [960] = 893, - [961] = 894, - [962] = 895, - [963] = 896, - [964] = 897, - [965] = 898, - [966] = 899, - [967] = 913, - [968] = 914, - [969] = 915, - [970] = 916, - [971] = 917, - [972] = 918, - [973] = 919, - [974] = 927, - [975] = 928, - [976] = 929, - [977] = 930, - [978] = 931, - [979] = 932, - [980] = 891, - [981] = 958, - [982] = 927, - [983] = 934, - [984] = 928, - [985] = 935, - [986] = 929, - [987] = 936, - [988] = 937, - [989] = 938, - [990] = 939, - [991] = 940, - [992] = 930, - [993] = 931, - [994] = 941, - [995] = 942, - [996] = 943, - [997] = 944, - [998] = 932, - [999] = 918, - [1000] = 934, - [1001] = 935, - [1002] = 936, - [1003] = 945, - [1004] = 946, - [1005] = 947, - [1006] = 937, - [1007] = 948, - [1008] = 949, - [1009] = 950, - [1010] = 938, - [1011] = 951, - [1012] = 952, - [1013] = 920, - [1014] = 939, - [1015] = 906, - [1016] = 907, - [1017] = 940, - [1018] = 908, - [1019] = 909, - [1020] = 910, - [1021] = 941, - [1022] = 942, - [1023] = 943, - [1024] = 944, - [1025] = 954, - [1026] = 955, - [1027] = 956, - [1028] = 913, - [1029] = 914, - [1030] = 915, - [1031] = 916, - [1032] = 917, - [1033] = 945, - [1034] = 946, - [1035] = 947, - [1036] = 948, - [1037] = 949, - [1038] = 950, - [1039] = 951, - [1040] = 952, - [1041] = 892, - [1042] = 893, - [1043] = 894, - [1044] = 954, - [1045] = 955, - [1046] = 956, - [1047] = 911, - [1048] = 958, - [1049] = 919, - [1050] = 1050, - [1051] = 1051, - [1052] = 1052, - [1053] = 1053, - [1054] = 1054, - [1055] = 215, - [1056] = 215, - [1057] = 1054, - [1058] = 1058, - [1059] = 1051, - [1060] = 1060, - [1061] = 1061, - [1062] = 1062, - [1063] = 1054, - [1064] = 1058, - [1065] = 1051, - [1066] = 1060, - [1067] = 1061, - [1068] = 1062, - [1069] = 1069, - [1070] = 1070, - [1071] = 1071, - [1072] = 1072, - [1073] = 1073, - [1074] = 1052, - [1075] = 1053, - [1076] = 1069, - [1077] = 1070, - [1078] = 1071, - [1079] = 1072, - [1080] = 1073, - [1081] = 1052, - [1082] = 1053, - [1083] = 216, - [1084] = 1054, - [1085] = 1058, - [1086] = 1051, - [1087] = 1060, - [1088] = 1061, - [1089] = 1062, - [1090] = 1069, - [1091] = 1070, - [1092] = 1071, - [1093] = 1072, - [1094] = 1073, - [1095] = 1052, - [1096] = 1053, - [1097] = 1058, - [1098] = 1071, - [1099] = 1072, - [1100] = 1061, - [1101] = 1062, - [1102] = 1102, - [1103] = 1069, - [1104] = 1070, - [1105] = 216, - [1106] = 1071, - [1107] = 1072, - [1108] = 215, - [1109] = 1073, - [1110] = 1052, - [1111] = 1073, - [1112] = 1053, - [1113] = 1102, - [1114] = 1054, - [1115] = 1058, - [1116] = 1051, - [1117] = 1060, - [1118] = 1061, - [1119] = 1062, - [1120] = 1069, - [1121] = 1070, - [1122] = 1071, - [1123] = 1072, - [1124] = 1073, - [1125] = 1052, - [1126] = 1053, - [1127] = 1070, - [1128] = 216, - [1129] = 1054, - [1130] = 1058, - [1131] = 1051, - [1132] = 1060, - [1133] = 1061, - [1134] = 1062, - [1135] = 1069, - [1136] = 1060, - [1137] = 215, - [1138] = 216, - [1139] = 312, - [1140] = 312, - [1141] = 312, - [1142] = 222, + [906] = 839, + [907] = 840, + [908] = 841, + [909] = 842, + [910] = 843, + [911] = 844, + [912] = 845, + [913] = 846, + [914] = 838, + [915] = 847, + [916] = 848, + [917] = 849, + [918] = 850, + [919] = 851, + [920] = 852, + [921] = 905, + [922] = 854, + [923] = 855, + [924] = 856, + [925] = 857, + [926] = 858, + [927] = 859, + [928] = 860, + [929] = 861, + [930] = 862, + [931] = 863, + [932] = 864, + [933] = 865, + [934] = 866, + [935] = 867, + [936] = 868, + [937] = 869, + [938] = 870, + [939] = 871, + [940] = 875, + [941] = 876, + [942] = 877, + [943] = 878, + [944] = 879, + [945] = 880, + [946] = 881, + [947] = 882, + [948] = 883, + [949] = 884, + [950] = 885, + [951] = 886, + [952] = 887, + [953] = 901, + [954] = 902, + [955] = 903, + [956] = 904, + [957] = 905, + [958] = 839, + [959] = 840, + [960] = 841, + [961] = 842, + [962] = 843, + [963] = 844, + [964] = 845, + [965] = 846, + [966] = 838, + [967] = 847, + [968] = 848, + [969] = 849, + [970] = 850, + [971] = 851, + [972] = 852, + [973] = 853, + [974] = 854, + [975] = 855, + [976] = 856, + [977] = 857, + [978] = 858, + [979] = 859, + [980] = 860, + [981] = 861, + [982] = 862, + [983] = 863, + [984] = 864, + [985] = 865, + [986] = 866, + [987] = 867, + [988] = 868, + [989] = 869, + [990] = 870, + [991] = 871, + [992] = 901, + [993] = 902, + [994] = 903, + [995] = 904, + [996] = 853, + [997] = 997, + [998] = 998, + [999] = 999, + [1000] = 1000, + [1001] = 1001, + [1002] = 1002, + [1003] = 1003, + [1004] = 998, + [1005] = 1005, + [1006] = 1006, + [1007] = 1007, + [1008] = 1008, + [1009] = 1009, + [1010] = 1010, + [1011] = 1002, + [1012] = 999, + [1013] = 1013, + [1014] = 215, + [1015] = 1000, + [1016] = 1001, + [1017] = 1017, + [1018] = 1000, + [1019] = 1001, + [1020] = 1017, + [1021] = 1003, + [1022] = 998, + [1023] = 1005, + [1024] = 1006, + [1025] = 1007, + [1026] = 1008, + [1027] = 1009, + [1028] = 1010, + [1029] = 1002, + [1030] = 999, + [1031] = 216, + [1032] = 215, + [1033] = 216, + [1034] = 215, + [1035] = 216, + [1036] = 1000, + [1037] = 1001, + [1038] = 1017, + [1039] = 1003, + [1040] = 998, + [1041] = 1005, + [1042] = 1006, + [1043] = 1003, + [1044] = 1000, + [1045] = 1001, + [1046] = 1017, + [1047] = 1003, + [1048] = 1005, + [1049] = 1006, + [1050] = 1007, + [1051] = 1008, + [1052] = 1009, + [1053] = 1010, + [1054] = 1002, + [1055] = 999, + [1056] = 998, + [1057] = 1005, + [1058] = 1006, + [1059] = 1000, + [1060] = 1001, + [1061] = 1017, + [1062] = 1003, + [1063] = 998, + [1064] = 1005, + [1065] = 1006, + [1066] = 1007, + [1067] = 1008, + [1068] = 1009, + [1069] = 1010, + [1070] = 1002, + [1071] = 999, + [1072] = 1007, + [1073] = 1008, + [1074] = 1009, + [1075] = 1010, + [1076] = 1002, + [1077] = 999, + [1078] = 1013, + [1079] = 1007, + [1080] = 1008, + [1081] = 1009, + [1082] = 1010, + [1083] = 1017, + [1084] = 1084, + [1085] = 229, + [1086] = 231, + [1087] = 1084, + [1088] = 229, + [1089] = 231, + [1090] = 1084, + [1091] = 215, + [1092] = 216, + [1093] = 229, + [1094] = 231, + [1095] = 330, + [1096] = 1096, + [1097] = 326, + [1098] = 329, + [1099] = 1099, + [1100] = 1096, + [1101] = 331, + [1102] = 215, + [1103] = 216, + [1104] = 329, + [1105] = 229, + [1106] = 738, + [1107] = 231, + [1108] = 330, + [1109] = 738, + [1110] = 1099, + [1111] = 1111, + [1112] = 326, + [1113] = 738, + [1114] = 1111, + [1115] = 329, + [1116] = 331, + [1117] = 330, + [1118] = 1084, + [1119] = 326, + [1120] = 331, + [1121] = 326, + [1122] = 331, + [1123] = 329, + [1124] = 330, + [1125] = 1084, + [1126] = 738, + [1127] = 229, + [1128] = 1128, + [1129] = 231, + [1130] = 1130, + [1131] = 1131, + [1132] = 1132, + [1133] = 1131, + [1134] = 738, + [1135] = 1135, + [1136] = 1136, + [1137] = 1137, + [1138] = 1136, + [1139] = 1139, + [1140] = 198, + [1141] = 1141, + [1142] = 329, [1143] = 1143, - [1144] = 1143, - [1145] = 222, - [1146] = 1143, - [1147] = 222, - [1148] = 312, - [1149] = 772, - [1150] = 331, - [1151] = 331, - [1152] = 334, - [1153] = 772, - [1154] = 772, - [1155] = 337, - [1156] = 334, + [1144] = 330, + [1145] = 331, + [1146] = 326, + [1147] = 1147, + [1148] = 1148, + [1149] = 1149, + [1150] = 1150, + [1151] = 1151, + [1152] = 1152, + [1153] = 200, + [1154] = 1150, + [1155] = 1152, + [1156] = 1156, [1157] = 1157, - [1158] = 1158, + [1158] = 1156, [1159] = 1159, - [1160] = 331, - [1161] = 336, - [1162] = 215, - [1163] = 334, - [1164] = 336, - [1165] = 337, - [1166] = 336, - [1167] = 216, - [1168] = 1157, - [1169] = 1159, - [1170] = 1143, - [1171] = 222, - [1172] = 1158, - [1173] = 337, - [1174] = 772, - [1175] = 1175, - [1176] = 222, - [1177] = 331, - [1178] = 312, - [1179] = 1143, - [1180] = 334, - [1181] = 336, - [1182] = 337, - [1183] = 1183, - [1184] = 772, - [1185] = 1185, - [1186] = 336, - [1187] = 337, - [1188] = 331, + [1160] = 1160, + [1161] = 1159, + [1162] = 1156, + [1163] = 1160, + [1164] = 1157, + [1165] = 1157, + [1166] = 1160, + [1167] = 1167, + [1168] = 805, + [1169] = 805, + [1170] = 1167, + [1171] = 1171, + [1172] = 1172, + [1173] = 805, + [1174] = 806, + [1175] = 141, + [1176] = 1176, + [1177] = 806, + [1178] = 1178, + [1179] = 1179, + [1180] = 806, + [1181] = 1179, + [1182] = 1178, + [1183] = 1176, + [1184] = 1172, + [1185] = 805, + [1186] = 806, + [1187] = 210, + [1188] = 143, [1189] = 1189, - [1190] = 1190, - [1191] = 1191, - [1192] = 1192, - [1193] = 1193, - [1194] = 1185, - [1195] = 1195, - [1196] = 1191, - [1197] = 1197, - [1198] = 334, - [1199] = 1199, - [1200] = 1200, - [1201] = 1201, - [1202] = 199, - [1203] = 200, - [1204] = 1204, - [1205] = 1205, - [1206] = 1206, - [1207] = 1205, - [1208] = 1204, - [1209] = 1209, - [1210] = 1210, + [1190] = 142, + [1191] = 1189, + [1192] = 146, + [1193] = 147, + [1194] = 214, + [1195] = 145, + [1196] = 806, + [1197] = 213, + [1198] = 215, + [1199] = 216, + [1200] = 210, + [1201] = 805, + [1202] = 144, + [1203] = 141, + [1204] = 149, + [1205] = 148, + [1206] = 212, + [1207] = 1207, + [1208] = 215, + [1209] = 214, + [1210] = 216, [1211] = 1211, - [1212] = 1210, - [1213] = 1209, - [1214] = 1211, - [1215] = 1210, - [1216] = 1209, - [1217] = 1211, - [1218] = 1218, - [1219] = 1219, - [1220] = 1220, - [1221] = 1221, - [1222] = 1222, - [1223] = 1222, - [1224] = 1224, - [1225] = 1225, - [1226] = 836, - [1227] = 141, - [1228] = 835, - [1229] = 836, - [1230] = 835, - [1231] = 836, - [1232] = 1219, - [1233] = 1224, - [1234] = 1218, - [1235] = 1220, - [1236] = 1221, - [1237] = 835, - [1238] = 143, - [1239] = 210, - [1240] = 836, - [1241] = 1241, - [1242] = 1241, - [1243] = 835, - [1244] = 142, - [1245] = 213, - [1246] = 210, - [1247] = 835, - [1248] = 147, - [1249] = 146, - [1250] = 148, - [1251] = 149, - [1252] = 141, - [1253] = 215, - [1254] = 216, - [1255] = 144, - [1256] = 836, - [1257] = 145, - [1258] = 211, - [1259] = 214, - [1260] = 1260, - [1261] = 214, - [1262] = 1262, - [1263] = 1263, - [1264] = 1260, - [1265] = 1265, - [1266] = 312, - [1267] = 1262, - [1268] = 1265, - [1269] = 216, - [1270] = 1270, - [1271] = 327, - [1272] = 1263, - [1273] = 335, - [1274] = 222, - [1275] = 1263, - [1276] = 1260, - [1277] = 1265, - [1278] = 1262, - [1279] = 1265, - [1280] = 1270, - [1281] = 214, - [1282] = 1263, - [1283] = 1260, - [1284] = 1262, - [1285] = 1265, - [1286] = 150, - [1287] = 213, - [1288] = 1263, - [1289] = 216, - [1290] = 1262, - [1291] = 1265, - [1292] = 1263, - [1293] = 1260, - [1294] = 1262, - [1295] = 1265, - [1296] = 215, - [1297] = 1260, - [1298] = 1262, - [1299] = 1265, - [1300] = 1263, - [1301] = 1260, - [1302] = 1262, - [1303] = 1265, - [1304] = 223, - [1305] = 1263, - [1306] = 1260, - [1307] = 1262, - [1308] = 1265, - [1309] = 1263, - [1310] = 1260, - [1311] = 1262, - [1312] = 1265, - [1313] = 1260, - [1314] = 152, - [1315] = 1263, - [1316] = 1262, - [1317] = 210, - [1318] = 151, + [1212] = 1212, + [1213] = 143, + [1214] = 212, + [1215] = 1215, + [1216] = 1216, + [1217] = 142, + [1218] = 1212, + [1219] = 1215, + [1220] = 1216, + [1221] = 210, + [1222] = 1212, + [1223] = 1223, + [1224] = 1207, + [1225] = 1207, + [1226] = 1223, + [1227] = 213, + [1228] = 229, + [1229] = 214, + [1230] = 1212, + [1231] = 231, + [1232] = 1215, + [1233] = 1216, + [1234] = 310, + [1235] = 1207, + [1236] = 1236, + [1237] = 311, + [1238] = 313, + [1239] = 222, + [1240] = 150, + [1241] = 151, + [1242] = 152, + [1243] = 328, + [1244] = 1212, + [1245] = 1215, + [1246] = 1216, + [1247] = 1207, + [1248] = 1215, + [1249] = 1212, + [1250] = 1215, + [1251] = 1216, + [1252] = 1207, + [1253] = 1212, + [1254] = 1215, + [1255] = 1216, + [1256] = 1207, + [1257] = 1207, + [1258] = 1212, + [1259] = 1215, + [1260] = 1216, + [1261] = 1207, + [1262] = 1212, + [1263] = 1215, + [1264] = 1216, + [1265] = 1212, + [1266] = 1215, + [1267] = 1216, + [1268] = 1207, + [1269] = 1212, + [1270] = 1215, + [1271] = 1216, + [1272] = 1207, + [1273] = 1212, + [1274] = 1216, + [1275] = 324, + [1276] = 215, + [1277] = 216, + [1278] = 1216, + [1279] = 216, + [1280] = 141, + [1281] = 1281, + [1282] = 326, + [1283] = 310, + [1284] = 143, + [1285] = 329, + [1286] = 330, + [1287] = 331, + [1288] = 1288, + [1289] = 1289, + [1290] = 215, + [1291] = 311, + [1292] = 334, + [1293] = 1236, + [1294] = 229, + [1295] = 210, + [1296] = 328, + [1297] = 313, + [1298] = 222, + [1299] = 149, + [1300] = 148, + [1301] = 141, + [1302] = 336, + [1303] = 311, + [1304] = 313, + [1305] = 222, + [1306] = 146, + [1307] = 231, + [1308] = 144, + [1309] = 147, + [1310] = 310, + [1311] = 145, + [1312] = 153, + [1313] = 212, + [1314] = 324, + [1315] = 229, + [1316] = 213, + [1317] = 231, + [1318] = 142, [1319] = 215, - [1320] = 1262, - [1321] = 1321, - [1322] = 1263, - [1323] = 143, - [1324] = 302, - [1325] = 142, - [1326] = 1260, - [1327] = 1327, - [1328] = 211, - [1329] = 313, - [1330] = 275, - [1331] = 1263, - [1332] = 1327, - [1333] = 141, - [1334] = 331, - [1335] = 327, - [1336] = 335, - [1337] = 334, - [1338] = 302, - [1339] = 147, - [1340] = 142, - [1341] = 143, - [1342] = 336, - [1343] = 313, - [1344] = 275, - [1345] = 223, - [1346] = 337, - [1347] = 215, - [1348] = 315, - [1349] = 210, - [1350] = 146, - [1351] = 302, - [1352] = 153, - [1353] = 313, - [1354] = 275, - [1355] = 223, - [1356] = 141, - [1357] = 148, - [1358] = 149, - [1359] = 312, - [1360] = 318, - [1361] = 1361, - [1362] = 222, - [1363] = 312, - [1364] = 222, - [1365] = 211, - [1366] = 144, - [1367] = 145, - [1368] = 213, - [1369] = 1369, - [1370] = 1370, - [1371] = 216, - [1372] = 142, - [1373] = 143, - [1374] = 211, - [1375] = 222, - [1376] = 216, - [1377] = 1377, - [1378] = 213, - [1379] = 338, - [1380] = 318, - [1381] = 150, - [1382] = 335, - [1383] = 147, - [1384] = 336, - [1385] = 214, - [1386] = 331, - [1387] = 151, - [1388] = 152, - [1389] = 334, - [1390] = 146, - [1391] = 336, - [1392] = 337, - [1393] = 337, - [1394] = 1394, - [1395] = 1321, - [1396] = 334, - [1397] = 141, - [1398] = 315, - [1399] = 148, - [1400] = 312, - [1401] = 149, - [1402] = 360, - [1403] = 215, - [1404] = 144, - [1405] = 145, - [1406] = 327, - [1407] = 331, - [1408] = 1408, - [1409] = 222, - [1410] = 370, - [1411] = 334, - [1412] = 275, - [1413] = 223, - [1414] = 152, - [1415] = 1408, - [1416] = 318, - [1417] = 384, - [1418] = 151, - [1419] = 145, - [1420] = 336, - [1421] = 147, - [1422] = 360, - [1423] = 146, - [1424] = 369, - [1425] = 148, - [1426] = 302, - [1427] = 331, - [1428] = 315, - [1429] = 313, - [1430] = 1430, - [1431] = 149, - [1432] = 1327, - [1433] = 315, - [1434] = 338, - [1435] = 1370, - [1436] = 1436, - [1437] = 142, - [1438] = 385, - [1439] = 312, - [1440] = 143, - [1441] = 1430, - [1442] = 216, - [1443] = 215, - [1444] = 337, - [1445] = 318, - [1446] = 1430, - [1447] = 1361, - [1448] = 371, - [1449] = 386, - [1450] = 150, - [1451] = 144, - [1452] = 153, - [1453] = 371, - [1454] = 1327, - [1455] = 412, - [1456] = 423, - [1457] = 390, - [1458] = 425, - [1459] = 426, - [1460] = 428, - [1461] = 144, - [1462] = 145, - [1463] = 141, - [1464] = 391, - [1465] = 395, - [1466] = 396, - [1467] = 398, - [1468] = 399, - [1469] = 402, - [1470] = 315, - [1471] = 404, - [1472] = 413, - [1473] = 418, - [1474] = 429, - [1475] = 394, - [1476] = 397, - [1477] = 406, - [1478] = 412, - [1479] = 423, - [1480] = 425, - [1481] = 426, - [1482] = 439, - [1483] = 465, - [1484] = 435, - [1485] = 390, - [1486] = 391, - [1487] = 395, - [1488] = 318, - [1489] = 386, - [1490] = 396, - [1491] = 398, - [1492] = 399, - [1493] = 318, - [1494] = 404, - [1495] = 360, - [1496] = 413, - [1497] = 150, - [1498] = 418, - [1499] = 338, - [1500] = 360, - [1501] = 429, - [1502] = 338, - [1503] = 152, - [1504] = 151, - [1505] = 394, - [1506] = 369, - [1507] = 331, - [1508] = 315, - [1509] = 334, - [1510] = 336, - [1511] = 337, - [1512] = 393, - [1513] = 397, - [1514] = 147, - [1515] = 384, - [1516] = 1436, - [1517] = 385, - [1518] = 424, - [1519] = 146, - [1520] = 148, - [1521] = 406, - [1522] = 149, - [1523] = 370, - [1524] = 1430, - [1525] = 312, - [1526] = 222, - [1527] = 402, - [1528] = 428, - [1529] = 435, + [1320] = 151, + [1321] = 150, + [1322] = 329, + [1323] = 149, + [1324] = 148, + [1325] = 152, + [1326] = 326, + [1327] = 336, + [1328] = 324, + [1329] = 144, + [1330] = 143, + [1331] = 213, + [1332] = 142, + [1333] = 229, + [1334] = 141, + [1335] = 364, + [1336] = 328, + [1337] = 147, + [1338] = 330, + [1339] = 1339, + [1340] = 146, + [1341] = 334, + [1342] = 331, + [1343] = 1343, + [1344] = 145, + [1345] = 1211, + [1346] = 326, + [1347] = 214, + [1348] = 216, + [1349] = 329, + [1350] = 231, + [1351] = 330, + [1352] = 331, + [1353] = 212, + [1354] = 1354, + [1355] = 362, + [1356] = 330, + [1357] = 326, + [1358] = 378, + [1359] = 146, + [1360] = 373, + [1361] = 144, + [1362] = 231, + [1363] = 329, + [1364] = 147, + [1365] = 384, + [1366] = 145, + [1367] = 143, + [1368] = 334, + [1369] = 142, + [1370] = 336, + [1371] = 362, + [1372] = 1372, + [1373] = 1372, + [1374] = 150, + [1375] = 334, + [1376] = 1281, + [1377] = 374, + [1378] = 148, + [1379] = 1236, + [1380] = 1288, + [1381] = 311, + [1382] = 313, + [1383] = 379, + [1384] = 1339, + [1385] = 153, + [1386] = 310, + [1387] = 364, + [1388] = 336, + [1389] = 376, + [1390] = 222, + [1391] = 1391, + [1392] = 149, + [1393] = 215, + [1394] = 216, + [1395] = 1372, + [1396] = 229, + [1397] = 151, + [1398] = 152, + [1399] = 331, + [1400] = 336, + [1401] = 147, + [1402] = 330, + [1403] = 331, + [1404] = 145, + [1405] = 149, + [1406] = 148, + [1407] = 364, + [1408] = 141, + [1409] = 389, + [1410] = 411, + [1411] = 373, + [1412] = 231, + [1413] = 334, + [1414] = 416, + [1415] = 1236, + [1416] = 388, + [1417] = 407, + [1418] = 384, + [1419] = 376, + [1420] = 424, + [1421] = 336, + [1422] = 378, + [1423] = 390, + [1424] = 410, + [1425] = 398, + [1426] = 379, + [1427] = 364, + [1428] = 144, + [1429] = 406, + [1430] = 229, + [1431] = 150, + [1432] = 395, + [1433] = 362, + [1434] = 374, + [1435] = 151, + [1436] = 405, + [1437] = 420, + [1438] = 407, + [1439] = 152, + [1440] = 334, + [1441] = 389, + [1442] = 1391, + [1443] = 388, + [1444] = 326, + [1445] = 420, + [1446] = 362, + [1447] = 1372, + [1448] = 452, + [1449] = 329, + [1450] = 390, + [1451] = 453, + [1452] = 410, + [1453] = 146, + [1454] = 398, + [1455] = 405, + [1456] = 416, + [1457] = 389, + [1458] = 407, + [1459] = 141, + [1460] = 388, + [1461] = 395, + [1462] = 455, + [1463] = 456, + [1464] = 457, + [1465] = 334, + [1466] = 459, + [1467] = 329, + [1468] = 334, + [1469] = 362, + [1470] = 451, + [1471] = 376, + [1472] = 330, + [1473] = 153, + [1474] = 376, + [1475] = 326, + [1476] = 331, + [1477] = 378, + [1478] = 373, + [1479] = 143, + [1480] = 364, + [1481] = 153, + [1482] = 411, + [1483] = 141, + [1484] = 151, + [1485] = 420, + [1486] = 406, + [1487] = 452, + [1488] = 152, + [1489] = 424, + [1490] = 142, + [1491] = 453, + [1492] = 470, + [1493] = 362, + [1494] = 416, + [1495] = 364, + [1496] = 379, + [1497] = 406, + [1498] = 379, + [1499] = 633, + [1500] = 395, + [1501] = 424, + [1502] = 390, + [1503] = 328, + [1504] = 150, + [1505] = 373, + [1506] = 410, + [1507] = 324, + [1508] = 378, + [1509] = 411, + [1510] = 465, + [1511] = 465, + [1512] = 336, + [1513] = 336, + [1514] = 470, + [1515] = 398, + [1516] = 1516, + [1517] = 405, + [1518] = 632, + [1519] = 1516, + [1520] = 373, + [1521] = 147, + [1522] = 145, + [1523] = 145, + [1524] = 153, + [1525] = 146, + [1526] = 510, + [1527] = 1527, + [1528] = 376, + [1529] = 142, [1530] = 143, - [1531] = 390, - [1532] = 315, - [1533] = 391, - [1534] = 395, - [1535] = 396, - [1536] = 398, - [1537] = 399, - [1538] = 402, - [1539] = 404, - [1540] = 413, - [1541] = 418, - [1542] = 429, - [1543] = 442, - [1544] = 394, - [1545] = 153, - [1546] = 152, - [1547] = 397, - [1548] = 406, - [1549] = 412, - [1550] = 423, - [1551] = 425, - [1552] = 426, - [1553] = 393, - [1554] = 151, - [1555] = 371, - [1556] = 424, - [1557] = 153, - [1558] = 384, - [1559] = 424, - [1560] = 1560, - [1561] = 338, - [1562] = 385, - [1563] = 371, - [1564] = 142, - [1565] = 370, - [1566] = 384, - [1567] = 385, - [1568] = 370, - [1569] = 467, - [1570] = 141, - [1571] = 360, - [1572] = 335, - [1573] = 338, - [1574] = 441, - [1575] = 468, - [1576] = 469, - [1577] = 470, - [1578] = 327, - [1579] = 435, - [1580] = 318, - [1581] = 442, - [1582] = 150, - [1583] = 439, - [1584] = 318, - [1585] = 331, - [1586] = 141, - [1587] = 472, - [1588] = 441, - [1589] = 334, - [1590] = 644, - [1591] = 646, - [1592] = 393, - [1593] = 315, - [1594] = 428, - [1595] = 336, - [1596] = 465, - [1597] = 337, - [1598] = 360, - [1599] = 371, - [1600] = 148, - [1601] = 315, - [1602] = 542, - [1603] = 497, + [1531] = 1531, + [1532] = 146, + [1533] = 1533, + [1534] = 453, + [1535] = 511, + [1536] = 364, + [1537] = 336, + [1538] = 362, + [1539] = 490, + [1540] = 144, + [1541] = 373, + [1542] = 497, + [1543] = 149, + [1544] = 376, + [1545] = 362, + [1546] = 452, + [1547] = 509, + [1548] = 451, + [1549] = 379, + [1550] = 500, + [1551] = 477, + [1552] = 1552, + [1553] = 1553, + [1554] = 198, + [1555] = 148, + [1556] = 1556, + [1557] = 1557, + [1558] = 364, + [1559] = 142, + [1560] = 378, + [1561] = 374, + [1562] = 144, + [1563] = 1563, + [1564] = 479, + [1565] = 504, + [1566] = 459, + [1567] = 334, + [1568] = 529, + [1569] = 455, + [1570] = 456, + [1571] = 457, + [1572] = 379, + [1573] = 147, + [1574] = 470, + [1575] = 1575, + [1576] = 465, + [1577] = 384, + [1578] = 143, + [1579] = 378, + [1580] = 1533, + [1581] = 1581, + [1582] = 1582, + [1583] = 1552, + [1584] = 1584, + [1585] = 451, + [1586] = 1586, + [1587] = 1587, + [1588] = 376, + [1589] = 1589, + [1590] = 362, + [1591] = 364, + [1592] = 150, + [1593] = 149, + [1594] = 148, + [1595] = 1595, + [1596] = 151, + [1597] = 497, + [1598] = 152, + [1599] = 200, + [1600] = 378, + [1601] = 1601, + [1602] = 1602, + [1603] = 1603, [1604] = 1604, - [1605] = 338, - [1606] = 384, + [1605] = 1605, + [1606] = 1606, [1607] = 1607, - [1608] = 146, - [1609] = 496, - [1610] = 468, - [1611] = 385, - [1612] = 318, - [1613] = 386, - [1614] = 370, - [1615] = 469, - [1616] = 144, - [1617] = 1560, - [1618] = 470, - [1619] = 145, - [1620] = 142, + [1608] = 1608, + [1609] = 1609, + [1610] = 1610, + [1611] = 1611, + [1612] = 1612, + [1613] = 1613, + [1614] = 1614, + [1615] = 1615, + [1616] = 376, + [1617] = 504, + [1618] = 509, + [1619] = 379, + [1620] = 543, [1621] = 1621, - [1622] = 371, - [1623] = 369, - [1624] = 548, - [1625] = 149, - [1626] = 441, - [1627] = 442, - [1628] = 142, - [1629] = 143, - [1630] = 541, - [1631] = 148, - [1632] = 153, - [1633] = 149, - [1634] = 147, - [1635] = 545, - [1636] = 1636, - [1637] = 1637, - [1638] = 1638, - [1639] = 384, - [1640] = 360, - [1641] = 1641, - [1642] = 1642, - [1643] = 467, - [1644] = 494, - [1645] = 360, - [1646] = 385, - [1647] = 1647, - [1648] = 439, - [1649] = 146, - [1650] = 143, - [1651] = 370, - [1652] = 506, - [1653] = 199, - [1654] = 465, - [1655] = 338, - [1656] = 521, - [1657] = 147, - [1658] = 472, - [1659] = 503, - [1660] = 385, - [1661] = 318, - [1662] = 545, - [1663] = 548, - [1664] = 521, - [1665] = 1665, - [1666] = 1666, - [1667] = 1667, - [1668] = 467, + [1622] = 1531, + [1623] = 1533, + [1624] = 379, + [1625] = 1625, + [1626] = 1626, + [1627] = 334, + [1628] = 1628, + [1629] = 511, + [1630] = 543, + [1631] = 146, + [1632] = 144, + [1633] = 147, + [1634] = 145, + [1635] = 529, + [1636] = 490, + [1637] = 459, + [1638] = 500, + [1639] = 1639, + [1640] = 336, + [1641] = 334, + [1642] = 477, + [1643] = 490, + [1644] = 455, + [1645] = 456, + [1646] = 457, + [1647] = 1556, + [1648] = 1557, + [1649] = 336, + [1650] = 479, + [1651] = 149, + [1652] = 148, + [1653] = 529, + [1654] = 500, + [1655] = 477, + [1656] = 1531, + [1657] = 1553, + [1658] = 1556, + [1659] = 1557, + [1660] = 1527, + [1661] = 479, + [1662] = 378, + [1663] = 373, + [1664] = 373, + [1665] = 384, + [1666] = 1639, + [1667] = 374, + [1668] = 510, [1669] = 1669, - [1670] = 1670, - [1671] = 496, - [1672] = 1672, - [1673] = 541, + [1670] = 152, + [1671] = 1671, + [1672] = 147, + [1673] = 1673, [1674] = 1674, [1675] = 1675, - [1676] = 1676, + [1676] = 632, [1677] = 1677, - [1678] = 1678, + [1678] = 379, [1679] = 1679, - [1680] = 1680, + [1680] = 612, [1681] = 1681, [1682] = 1682, [1683] = 1683, [1684] = 1684, - [1685] = 1685, - [1686] = 1686, + [1685] = 336, + [1686] = 633, [1687] = 1687, - [1688] = 1688, - [1689] = 1636, - [1690] = 1637, - [1691] = 360, + [1688] = 1626, + [1689] = 1689, + [1690] = 153, + [1691] = 1691, [1692] = 150, - [1693] = 494, - [1694] = 338, - [1695] = 497, - [1696] = 1621, - [1697] = 152, - [1698] = 151, - [1699] = 503, - [1700] = 370, - [1701] = 371, - [1702] = 506, - [1703] = 587, - [1704] = 1704, - [1705] = 545, - [1706] = 542, + [1693] = 1626, + [1694] = 635, + [1695] = 411, + [1696] = 416, + [1697] = 1697, + [1698] = 405, + [1699] = 420, + [1700] = 407, + [1701] = 1701, + [1702] = 145, + [1703] = 1587, + [1704] = 362, + [1705] = 1705, + [1706] = 1706, [1707] = 1707, - [1708] = 587, - [1709] = 548, - [1710] = 521, - [1711] = 468, - [1712] = 469, - [1713] = 470, - [1714] = 1714, - [1715] = 385, - [1716] = 384, - [1717] = 1717, - [1718] = 1607, - [1719] = 386, - [1720] = 369, - [1721] = 496, - [1722] = 1604, - [1723] = 1636, - [1724] = 1637, - [1725] = 1641, - [1726] = 1647, - [1727] = 315, - [1728] = 1641, - [1729] = 1647, - [1730] = 1730, - [1731] = 144, - [1732] = 145, - [1733] = 147, - [1734] = 146, - [1735] = 200, - [1736] = 148, - [1737] = 149, - [1738] = 1666, - [1739] = 318, - [1740] = 315, - [1741] = 371, - [1742] = 1742, - [1743] = 384, - [1744] = 542, - [1745] = 144, - [1746] = 145, - [1747] = 370, - [1748] = 472, - [1749] = 663, + [1708] = 616, + [1709] = 395, + [1710] = 364, + [1711] = 1711, + [1712] = 1712, + [1713] = 1713, + [1714] = 1639, + [1715] = 1639, + [1716] = 617, + [1717] = 406, + [1718] = 1718, + [1719] = 1719, + [1720] = 1720, + [1721] = 1721, + [1722] = 636, + [1723] = 150, + [1724] = 1595, + [1725] = 635, + [1726] = 1726, + [1727] = 1727, + [1728] = 590, + [1729] = 1729, + [1730] = 490, + [1731] = 639, + [1732] = 1584, + [1733] = 590, + [1734] = 1734, + [1735] = 529, + [1736] = 621, + [1737] = 1737, + [1738] = 500, + [1739] = 477, + [1740] = 1740, + [1741] = 643, + [1742] = 644, + [1743] = 1743, + [1744] = 1744, + [1745] = 1745, + [1746] = 1746, + [1747] = 1589, + [1748] = 362, + [1749] = 1749, [1750] = 1750, - [1751] = 1751, - [1752] = 148, - [1753] = 1714, - [1754] = 371, - [1755] = 1755, - [1756] = 1714, - [1757] = 636, - [1758] = 384, - [1759] = 153, - [1760] = 648, - [1761] = 1761, - [1762] = 385, - [1763] = 370, - [1764] = 1666, + [1751] = 364, + [1752] = 410, + [1753] = 479, + [1754] = 1754, + [1755] = 571, + [1756] = 572, + [1757] = 424, + [1758] = 1758, + [1759] = 573, + [1760] = 574, + [1761] = 575, + [1762] = 578, + [1763] = 1763, + [1764] = 579, [1765] = 1765, - [1766] = 149, - [1767] = 649, - [1768] = 650, - [1769] = 1769, - [1770] = 651, - [1771] = 428, + [1766] = 636, + [1767] = 592, + [1768] = 1768, + [1769] = 470, + [1770] = 593, + [1771] = 594, [1772] = 1772, - [1773] = 667, + [1773] = 595, [1774] = 1774, - [1775] = 1775, - [1776] = 1776, - [1777] = 396, - [1778] = 398, - [1779] = 399, - [1780] = 1780, - [1781] = 441, - [1782] = 402, - [1783] = 1783, - [1784] = 668, - [1785] = 589, - [1786] = 665, - [1787] = 647, - [1788] = 1788, - [1789] = 1789, - [1790] = 614, - [1791] = 652, - [1792] = 435, - [1793] = 653, - [1794] = 1794, + [1775] = 639, + [1776] = 620, + [1777] = 1777, + [1778] = 1778, + [1779] = 398, + [1780] = 465, + [1781] = 1626, + [1782] = 1782, + [1783] = 389, + [1784] = 592, + [1785] = 1785, + [1786] = 1786, + [1787] = 1787, + [1788] = 388, + [1789] = 596, + [1790] = 597, + [1791] = 1791, + [1792] = 598, + [1793] = 593, + [1794] = 594, [1795] = 1795, - [1796] = 654, - [1797] = 648, - [1798] = 615, + [1796] = 643, + [1797] = 595, + [1798] = 1798, [1799] = 1799, - [1800] = 1800, - [1801] = 616, - [1802] = 617, - [1803] = 1795, - [1804] = 619, - [1805] = 442, + [1800] = 146, + [1801] = 1621, + [1802] = 1802, + [1803] = 596, + [1804] = 597, + [1805] = 598, [1806] = 1806, - [1807] = 1672, - [1808] = 620, - [1809] = 621, - [1810] = 622, - [1811] = 649, - [1812] = 650, - [1813] = 152, - [1814] = 151, - [1815] = 391, - [1816] = 395, - [1817] = 1817, - [1818] = 624, - [1819] = 625, - [1820] = 626, - [1821] = 627, - [1822] = 628, - [1823] = 629, - [1824] = 630, - [1825] = 651, - [1826] = 652, - [1827] = 1670, - [1828] = 653, - [1829] = 654, + [1807] = 644, + [1808] = 1808, + [1809] = 1809, + [1810] = 623, + [1811] = 630, + [1812] = 602, + [1813] = 603, + [1814] = 604, + [1815] = 602, + [1816] = 603, + [1817] = 604, + [1818] = 605, + [1819] = 605, + [1820] = 334, + [1821] = 606, + [1822] = 607, + [1823] = 608, + [1824] = 571, + [1825] = 572, + [1826] = 606, + [1827] = 607, + [1828] = 608, + [1829] = 573, [1830] = 1830, - [1831] = 655, - [1832] = 656, - [1833] = 318, - [1834] = 658, - [1835] = 659, - [1836] = 660, - [1837] = 661, - [1838] = 662, - [1839] = 1839, - [1840] = 631, - [1841] = 664, - [1842] = 588, - [1843] = 666, - [1844] = 667, - [1845] = 668, - [1846] = 669, - [1847] = 587, - [1848] = 669, - [1849] = 670, - [1850] = 1850, + [1831] = 631, + [1832] = 373, + [1833] = 584, + [1834] = 574, + [1835] = 575, + [1836] = 144, + [1837] = 578, + [1838] = 1838, + [1839] = 579, + [1840] = 1840, + [1841] = 543, + [1842] = 580, + [1843] = 581, + [1844] = 1844, + [1845] = 376, + [1846] = 582, + [1847] = 583, + [1848] = 1848, + [1849] = 1849, + [1850] = 1706, [1851] = 1851, - [1852] = 672, - [1853] = 673, - [1854] = 1666, - [1855] = 1742, + [1852] = 336, + [1853] = 1581, + [1854] = 1854, + [1855] = 1855, [1856] = 1856, - [1857] = 1857, - [1858] = 150, - [1859] = 1859, - [1860] = 589, - [1861] = 665, - [1862] = 1862, - [1863] = 1863, - [1864] = 670, - [1865] = 1865, - [1866] = 1866, + [1857] = 1621, + [1858] = 580, + [1859] = 581, + [1860] = 1860, + [1861] = 1621, + [1862] = 585, + [1863] = 584, + [1864] = 585, + [1865] = 582, + [1866] = 583, [1867] = 1867, - [1868] = 1868, - [1869] = 1869, + [1868] = 151, + [1869] = 378, [1870] = 1870, - [1871] = 1704, - [1872] = 1872, - [1873] = 1873, - [1874] = 1714, - [1875] = 1875, - [1876] = 1876, - [1877] = 425, - [1878] = 635, - [1879] = 637, - [1880] = 1880, - [1881] = 647, - [1882] = 655, - [1883] = 1883, - [1884] = 1884, - [1885] = 640, + [1871] = 152, + [1872] = 1765, + [1873] = 151, + [1874] = 390, + [1875] = 622, + [1876] = 633, + [1877] = 451, + [1878] = 1878, + [1879] = 145, + [1880] = 1749, + [1881] = 1881, + [1882] = 455, + [1883] = 456, + [1884] = 630, + [1885] = 585, [1886] = 1886, - [1887] = 360, + [1887] = 1887, [1888] = 1888, - [1889] = 1730, - [1890] = 656, + [1889] = 1705, + [1890] = 470, [1891] = 1891, [1892] = 1892, - [1893] = 338, - [1894] = 1894, - [1895] = 1895, - [1896] = 147, - [1897] = 1897, - [1898] = 1898, - [1899] = 1704, - [1900] = 1900, - [1901] = 1704, - [1902] = 633, - [1903] = 404, - [1904] = 413, - [1905] = 1905, - [1906] = 418, - [1907] = 429, - [1908] = 1908, - [1909] = 394, - [1910] = 397, - [1911] = 1911, - [1912] = 390, - [1913] = 658, - [1914] = 664, - [1915] = 1915, - [1916] = 1916, - [1917] = 1917, - [1918] = 663, - [1919] = 1667, - [1920] = 393, - [1921] = 426, - [1922] = 1922, - [1923] = 642, - [1924] = 659, - [1925] = 634, - [1926] = 660, - [1927] = 542, - [1928] = 661, - [1929] = 614, - [1930] = 315, - [1931] = 545, - [1932] = 1932, - [1933] = 548, - [1934] = 521, - [1935] = 615, - [1936] = 616, - [1937] = 617, - [1938] = 619, - [1939] = 1939, + [1893] = 1720, + [1894] = 373, + [1895] = 465, + [1896] = 376, + [1897] = 378, + [1898] = 379, + [1899] = 607, + [1900] = 583, + [1901] = 574, + [1902] = 631, + [1903] = 1854, + [1904] = 616, + [1905] = 457, + [1906] = 617, + [1907] = 146, + [1908] = 603, + [1909] = 1798, + [1910] = 1799, + [1911] = 497, + [1912] = 631, + [1913] = 575, + [1914] = 1615, + [1915] = 153, + [1916] = 1621, + [1917] = 623, + [1918] = 1918, + [1919] = 578, + [1920] = 1920, + [1921] = 1855, + [1922] = 529, + [1923] = 490, + [1924] = 579, + [1925] = 605, + [1926] = 620, + [1927] = 584, + [1928] = 1626, + [1929] = 1628, + [1930] = 621, + [1931] = 622, + [1932] = 606, + [1933] = 630, + [1934] = 608, + [1935] = 144, + [1936] = 1936, + [1937] = 465, + [1938] = 1938, + [1939] = 504, [1940] = 1940, - [1941] = 1941, - [1942] = 620, - [1943] = 621, - [1944] = 1817, - [1945] = 622, - [1946] = 1946, - [1947] = 1947, + [1941] = 509, + [1942] = 643, + [1943] = 1943, + [1944] = 479, + [1945] = 1808, + [1946] = 1809, + [1947] = 147, [1948] = 1948, - [1949] = 588, - [1950] = 624, - [1951] = 625, - [1952] = 626, - [1953] = 627, - [1954] = 628, - [1955] = 629, - [1956] = 630, - [1957] = 360, - [1958] = 672, - [1959] = 318, - [1960] = 1960, - [1961] = 338, - [1962] = 406, - [1963] = 673, - [1964] = 150, - [1965] = 496, - [1966] = 1966, - [1967] = 424, - [1968] = 643, - [1969] = 662, - [1970] = 1970, - [1971] = 646, - [1972] = 666, - [1973] = 1973, - [1974] = 412, - [1975] = 423, - [1976] = 152, - [1977] = 151, - [1978] = 1978, - [1979] = 1979, - [1980] = 644, - [1981] = 146, - [1982] = 1982, - [1983] = 665, - [1984] = 1984, + [1949] = 1949, + [1950] = 510, + [1951] = 597, + [1952] = 362, + [1953] = 373, + [1954] = 1860, + [1955] = 1955, + [1956] = 1956, + [1957] = 452, + [1958] = 1891, + [1959] = 500, + [1960] = 477, + [1961] = 604, + [1962] = 571, + [1963] = 572, + [1964] = 1964, + [1965] = 376, + [1966] = 153, + [1967] = 1689, + [1968] = 511, + [1969] = 1969, + [1970] = 644, + [1971] = 1754, + [1972] = 378, + [1973] = 364, + [1974] = 580, + [1975] = 581, + [1976] = 1601, + [1977] = 1977, + [1978] = 479, + [1979] = 632, + [1980] = 379, + [1981] = 612, + [1982] = 598, + [1983] = 470, + [1984] = 635, [1985] = 1985, - [1986] = 1986, - [1987] = 640, - [1988] = 1988, - [1989] = 1989, + [1986] = 590, + [1987] = 1683, + [1988] = 1691, + [1989] = 1711, [1990] = 1990, [1991] = 1991, - [1992] = 1992, + [1992] = 612, [1993] = 1993, [1994] = 1994, - [1995] = 1995, - [1996] = 1996, - [1997] = 1997, - [1998] = 1998, - [1999] = 1999, - [2000] = 2000, - [2001] = 496, - [2002] = 644, - [2003] = 631, - [2004] = 2004, - [2005] = 646, - [2006] = 647, - [2007] = 614, - [2008] = 1674, - [2009] = 149, - [2010] = 633, - [2011] = 634, - [2012] = 648, - [2013] = 615, - [2014] = 616, - [2015] = 617, - [2016] = 619, - [2017] = 635, - [2018] = 636, - [2019] = 637, - [2020] = 620, - [2021] = 621, - [2022] = 622, - [2023] = 649, - [2024] = 650, + [1995] = 459, + [1996] = 616, + [1997] = 617, + [1998] = 1586, + [1999] = 636, + [2000] = 573, + [2001] = 602, + [2002] = 592, + [2003] = 582, + [2004] = 453, + [2005] = 593, + [2006] = 594, + [2007] = 595, + [2008] = 2008, + [2009] = 639, + [2010] = 2010, + [2011] = 2011, + [2012] = 620, + [2013] = 621, + [2014] = 622, + [2015] = 2015, + [2016] = 596, + [2017] = 2017, + [2018] = 2018, + [2019] = 1920, + [2020] = 1891, + [2021] = 1920, + [2022] = 623, + [2023] = 2023, + [2024] = 2024, [2025] = 2025, - [2026] = 640, - [2027] = 624, - [2028] = 625, - [2029] = 626, - [2030] = 627, - [2031] = 628, - [2032] = 629, - [2033] = 630, - [2034] = 651, - [2035] = 652, - [2036] = 653, - [2037] = 654, - [2038] = 655, - [2039] = 656, - [2040] = 658, - [2041] = 659, - [2042] = 660, - [2043] = 661, - [2044] = 662, - [2045] = 663, - [2046] = 664, - [2047] = 588, - [2048] = 666, - [2049] = 667, - [2050] = 668, + [2026] = 2026, + [2027] = 2027, + [2028] = 2028, + [2029] = 2029, + [2030] = 2030, + [2031] = 2031, + [2032] = 2032, + [2033] = 2033, + [2034] = 2034, + [2035] = 2035, + [2036] = 2036, + [2037] = 2037, + [2038] = 2038, + [2039] = 2039, + [2040] = 2040, + [2041] = 2041, + [2042] = 1531, + [2043] = 1533, + [2044] = 2044, + [2045] = 373, + [2046] = 2046, + [2047] = 2047, + [2048] = 2048, + [2049] = 2049, + [2050] = 2050, [2051] = 2051, - [2052] = 146, - [2053] = 1714, - [2054] = 642, + [2052] = 2052, + [2053] = 2053, + [2054] = 2054, [2055] = 2055, - [2056] = 1905, - [2057] = 1908, - [2058] = 643, - [2059] = 1892, - [2060] = 1897, - [2061] = 371, + [2056] = 511, + [2057] = 2057, + [2058] = 2058, + [2059] = 1614, + [2060] = 2060, + [2061] = 2061, [2062] = 2062, - [2063] = 548, - [2064] = 468, - [2065] = 465, - [2066] = 1769, - [2067] = 2062, + [2063] = 2063, + [2064] = 2064, + [2065] = 2065, + [2066] = 2066, + [2067] = 2067, [2068] = 2068, - [2069] = 384, - [2070] = 521, - [2071] = 385, - [2072] = 469, - [2073] = 370, - [2074] = 470, - [2075] = 545, - [2076] = 1911, - [2077] = 1915, - [2078] = 441, - [2079] = 1856, + [2069] = 2069, + [2070] = 2070, + [2071] = 376, + [2072] = 2072, + [2073] = 2073, + [2074] = 2074, + [2075] = 2075, + [2076] = 2076, + [2077] = 2077, + [2078] = 2078, + [2079] = 1556, [2080] = 2080, - [2081] = 442, - [2082] = 631, - [2083] = 1688, - [2084] = 467, + [2081] = 2081, + [2082] = 2082, + [2083] = 2083, + [2084] = 1557, [2085] = 2085, - [2086] = 360, + [2086] = 378, [2087] = 2087, - [2088] = 1895, - [2089] = 439, - [2090] = 472, - [2091] = 148, - [2092] = 642, - [2093] = 2025, - [2094] = 1761, - [2095] = 2095, - [2096] = 541, - [2097] = 153, - [2098] = 1665, - [2099] = 633, - [2100] = 1669, - [2101] = 634, - [2102] = 494, - [2103] = 497, + [2088] = 2088, + [2089] = 2089, + [2090] = 2090, + [2091] = 2091, + [2092] = 1602, + [2093] = 379, + [2094] = 1603, + [2095] = 1604, + [2096] = 1612, + [2097] = 2097, + [2098] = 2098, + [2099] = 2099, + [2100] = 2100, + [2101] = 2101, + [2102] = 2062, + [2103] = 1605, [2104] = 2104, - [2105] = 1939, - [2106] = 503, - [2107] = 1940, - [2108] = 643, - [2109] = 371, - [2110] = 442, - [2111] = 506, - [2112] = 669, - [2113] = 670, - [2114] = 1704, - [2115] = 384, - [2116] = 1755, - [2117] = 672, - [2118] = 673, - [2119] = 385, - [2120] = 635, - [2121] = 370, - [2122] = 153, - [2123] = 441, - [2124] = 636, - [2125] = 637, + [2105] = 2105, + [2106] = 2106, + [2107] = 2107, + [2108] = 2108, + [2109] = 336, + [2110] = 2110, + [2111] = 1639, + [2112] = 2029, + [2113] = 2113, + [2114] = 2114, + [2115] = 2115, + [2116] = 1606, + [2117] = 510, + [2118] = 1607, + [2119] = 1608, + [2120] = 1609, + [2121] = 1611, + [2122] = 2122, + [2123] = 2123, + [2124] = 2124, + [2125] = 2125, [2126] = 2126, - [2127] = 589, - [2128] = 2128, + [2127] = 529, + [2128] = 1610, [2129] = 2129, [2130] = 2130, - [2131] = 542, - [2132] = 338, - [2133] = 1946, - [2134] = 1947, - [2135] = 147, - [2136] = 2062, - [2137] = 2025, - [2138] = 496, + [2131] = 2131, + [2132] = 497, + [2133] = 2133, + [2134] = 490, + [2135] = 2135, + [2136] = 2113, + [2137] = 2137, + [2138] = 2114, [2139] = 2139, [2140] = 2140, [2141] = 2141, - [2142] = 2142, + [2142] = 1613, [2143] = 2143, [2144] = 2144, [2145] = 2145, [2146] = 2146, [2147] = 2147, - [2148] = 1636, - [2149] = 1680, + [2148] = 2148, + [2149] = 2149, [2150] = 2150, [2151] = 2151, [2152] = 2152, - [2153] = 1637, + [2153] = 2153, [2154] = 2154, - [2155] = 2155, + [2155] = 504, [2156] = 2156, - [2157] = 2157, - [2158] = 1675, - [2159] = 545, - [2160] = 542, + [2157] = 509, + [2158] = 500, + [2159] = 2159, + [2160] = 2160, [2161] = 2161, [2162] = 2162, - [2163] = 2163, + [2163] = 479, [2164] = 2164, [2165] = 2165, [2166] = 2166, [2167] = 2167, [2168] = 2168, [2169] = 2169, - [2170] = 548, - [2171] = 521, - [2172] = 2172, + [2170] = 2170, + [2171] = 2171, + [2172] = 477, [2173] = 2173, [2174] = 2174, [2175] = 2175, @@ -7379,58 +7368,58 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2179] = 2179, [2180] = 2180, [2181] = 2181, - [2182] = 1686, + [2182] = 2182, [2183] = 2183, [2184] = 2184, [2185] = 2185, [2186] = 2186, - [2187] = 1687, - [2188] = 1681, + [2187] = 2187, + [2188] = 2188, [2189] = 2189, [2190] = 2190, [2191] = 2191, [2192] = 2192, [2193] = 2193, - [2194] = 541, - [2195] = 2195, + [2194] = 1621, + [2195] = 1626, [2196] = 2196, [2197] = 2197, [2198] = 2198, [2199] = 2199, [2200] = 2200, - [2201] = 1641, - [2202] = 1647, + [2201] = 2201, + [2202] = 2202, [2203] = 2203, [2204] = 2204, [2205] = 2205, [2206] = 2206, - [2207] = 1676, - [2208] = 370, - [2209] = 1682, + [2207] = 2207, + [2208] = 2208, + [2209] = 2209, [2210] = 2210, - [2211] = 2211, + [2211] = 543, [2212] = 2212, [2213] = 2213, [2214] = 2214, - [2215] = 371, - [2216] = 1677, + [2215] = 2215, + [2216] = 2216, [2217] = 2217, [2218] = 2218, - [2219] = 496, + [2219] = 2219, [2220] = 2220, - [2221] = 1678, + [2221] = 1639, [2222] = 2222, - [2223] = 506, + [2223] = 2223, [2224] = 2224, [2225] = 2225, [2226] = 2226, [2227] = 2227, [2228] = 2228, - [2229] = 384, + [2229] = 2229, [2230] = 2230, [2231] = 2231, [2232] = 2232, - [2233] = 2210, + [2233] = 2233, [2234] = 2234, [2235] = 2235, [2236] = 2236, @@ -7438,48 +7427,48 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2238] = 2238, [2239] = 2239, [2240] = 2240, - [2241] = 1679, + [2241] = 2241, [2242] = 2242, [2243] = 2243, [2244] = 2244, [2245] = 2245, [2246] = 2246, - [2247] = 2162, - [2248] = 318, + [2247] = 2247, + [2248] = 2248, [2249] = 2249, [2250] = 2250, [2251] = 2251, - [2252] = 494, + [2252] = 2252, [2253] = 2253, [2254] = 2254, [2255] = 2255, [2256] = 2256, - [2257] = 2189, + [2257] = 2257, [2258] = 2258, [2259] = 2259, - [2260] = 497, + [2260] = 2260, [2261] = 2261, [2262] = 2262, [2263] = 2263, [2264] = 2264, - [2265] = 1683, + [2265] = 2265, [2266] = 2266, [2267] = 2267, - [2268] = 1666, - [2269] = 2246, + [2268] = 2268, + [2269] = 2269, [2270] = 2270, [2271] = 2271, [2272] = 2272, [2273] = 2273, [2274] = 2274, - [2275] = 503, + [2275] = 2275, [2276] = 2276, [2277] = 2277, [2278] = 2278, - [2279] = 1684, - [2280] = 1685, + [2279] = 2279, + [2280] = 2280, [2281] = 2281, - [2282] = 385, + [2282] = 2177, [2283] = 2283, [2284] = 2284, [2285] = 2285, @@ -7492,5665 +7481,5100 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2292] = 2292, [2293] = 2293, [2294] = 2294, - [2295] = 2295, - [2296] = 2296, - [2297] = 2297, - [2298] = 2298, - [2299] = 2299, - [2300] = 2300, + [2295] = 2281, + [2296] = 2177, + [2297] = 2206, + [2298] = 2252, + [2299] = 2177, + [2300] = 2177, [2301] = 2301, - [2302] = 2302, - [2303] = 2303, - [2304] = 2304, - [2305] = 2305, - [2306] = 2306, - [2307] = 2307, - [2308] = 2308, + [2302] = 1964, + [2303] = 1990, + [2304] = 571, + [2305] = 572, + [2306] = 573, + [2307] = 2274, + [2308] = 584, [2309] = 2309, - [2310] = 2310, - [2311] = 2311, - [2312] = 2312, - [2313] = 2313, - [2314] = 2314, - [2315] = 2315, - [2316] = 2316, - [2317] = 2317, - [2318] = 2318, - [2319] = 2319, - [2320] = 2320, - [2321] = 2321, - [2322] = 2322, - [2323] = 2323, - [2324] = 1704, - [2325] = 2325, - [2326] = 1666, - [2327] = 2327, - [2328] = 2328, - [2329] = 2329, - [2330] = 2330, - [2331] = 2331, - [2332] = 2332, - [2333] = 2333, - [2334] = 2334, - [2335] = 2335, - [2336] = 2336, + [2310] = 1993, + [2311] = 2275, + [2312] = 644, + [2313] = 585, + [2314] = 1994, + [2315] = 2276, + [2316] = 2008, + [2317] = 2011, + [2318] = 1938, + [2319] = 2015, + [2320] = 2277, + [2321] = 590, + [2322] = 1956, + [2323] = 1940, + [2324] = 2278, + [2325] = 1948, + [2326] = 1878, + [2327] = 2270, + [2328] = 2017, + [2329] = 2279, + [2330] = 582, + [2331] = 210, + [2332] = 583, + [2333] = 1881, + [2334] = 635, + [2335] = 2280, + [2336] = 141, [2337] = 2337, - [2338] = 2338, - [2339] = 2339, - [2340] = 2340, - [2341] = 2341, - [2342] = 2342, - [2343] = 2343, - [2344] = 2344, - [2345] = 2345, - [2346] = 2341, - [2347] = 2347, - [2348] = 2348, - [2349] = 2349, - [2350] = 2350, - [2351] = 2351, - [2352] = 2352, - [2353] = 2353, - [2354] = 2329, - [2355] = 2355, - [2356] = 2356, - [2357] = 2357, - [2358] = 2358, - [2359] = 2359, - [2360] = 2329, - [2361] = 2338, - [2362] = 2362, - [2363] = 2363, - [2364] = 2364, - [2365] = 2329, - [2366] = 2366, - [2367] = 2367, - [2368] = 2368, + [2338] = 2018, + [2339] = 1886, + [2340] = 1955, + [2341] = 2309, + [2342] = 592, + [2343] = 2271, + [2344] = 630, + [2345] = 643, + [2346] = 2337, + [2347] = 593, + [2348] = 594, + [2349] = 1887, + [2350] = 633, + [2351] = 580, + [2352] = 581, + [2353] = 608, + [2354] = 2354, + [2355] = 595, + [2356] = 2176, + [2357] = 616, + [2358] = 617, + [2359] = 479, + [2360] = 1888, + [2361] = 632, + [2362] = 1969, + [2363] = 1918, + [2364] = 324, + [2365] = 574, + [2366] = 575, + [2367] = 2272, + [2368] = 578, [2369] = 2369, - [2370] = 2370, - [2371] = 2371, - [2372] = 2328, - [2373] = 2373, - [2374] = 2374, - [2375] = 2375, - [2376] = 2376, - [2377] = 587, - [2378] = 2378, - [2379] = 2379, - [2380] = 2380, - [2381] = 2381, - [2382] = 2329, - [2383] = 2383, - [2384] = 2384, - [2385] = 2385, - [2386] = 2386, - [2387] = 2387, - [2388] = 2388, - [2389] = 2389, - [2390] = 2390, - [2391] = 2391, - [2392] = 2392, - [2393] = 2393, - [2394] = 2394, - [2395] = 2395, + [2370] = 2354, + [2371] = 328, + [2372] = 636, + [2373] = 1985, + [2374] = 2273, + [2375] = 612, + [2376] = 631, + [2377] = 639, + [2378] = 620, + [2379] = 621, + [2380] = 1991, + [2381] = 622, + [2382] = 623, + [2383] = 602, + [2384] = 2369, + [2385] = 603, + [2386] = 604, + [2387] = 579, + [2388] = 605, + [2389] = 606, + [2390] = 607, + [2391] = 596, + [2392] = 597, + [2393] = 598, + [2394] = 1977, + [2395] = 2010, [2396] = 2396, - [2397] = 2397, - [2398] = 1714, - [2399] = 2399, + [2397] = 215, + [2398] = 2398, + [2399] = 215, [2400] = 2400, - [2401] = 2401, - [2402] = 2402, - [2403] = 2403, - [2404] = 2404, + [2401] = 212, + [2402] = 328, + [2403] = 141, + [2404] = 214, [2405] = 2405, - [2406] = 2406, - [2407] = 2407, + [2406] = 324, + [2407] = 2396, [2408] = 2408, - [2409] = 2409, - [2410] = 2410, + [2409] = 143, + [2410] = 213, [2411] = 2411, - [2412] = 2412, - [2413] = 2413, - [2414] = 2414, + [2412] = 216, + [2413] = 216, + [2414] = 2405, [2415] = 2415, - [2416] = 2416, + [2416] = 142, [2417] = 2417, - [2418] = 670, - [2419] = 327, - [2420] = 653, - [2421] = 654, - [2422] = 335, - [2423] = 655, - [2424] = 656, - [2425] = 635, - [2426] = 637, - [2427] = 620, - [2428] = 658, - [2429] = 659, - [2430] = 621, - [2431] = 660, - [2432] = 661, - [2433] = 662, - [2434] = 622, - [2435] = 2068, - [2436] = 663, - [2437] = 141, - [2438] = 664, - [2439] = 588, - [2440] = 666, - [2441] = 667, - [2442] = 668, - [2443] = 649, + [2418] = 2398, + [2419] = 2408, + [2420] = 2415, + [2421] = 2411, + [2422] = 2400, + [2423] = 2423, + [2424] = 145, + [2425] = 142, + [2426] = 313, + [2427] = 149, + [2428] = 143, + [2429] = 2429, + [2430] = 148, + [2431] = 229, + [2432] = 146, + [2433] = 222, + [2434] = 144, + [2435] = 147, + [2436] = 231, + [2437] = 231, + [2438] = 311, + [2439] = 229, + [2440] = 2440, + [2441] = 310, + [2442] = 214, + [2443] = 326, [2444] = 2444, - [2445] = 496, - [2446] = 650, - [2447] = 633, - [2448] = 634, - [2449] = 210, - [2450] = 2128, - [2451] = 614, - [2452] = 2129, - [2453] = 2453, - [2454] = 672, - [2455] = 673, - [2456] = 648, - [2457] = 589, - [2458] = 665, - [2459] = 644, - [2460] = 2126, - [2461] = 2353, - [2462] = 2130, - [2463] = 2367, - [2464] = 1984, - [2465] = 2369, - [2466] = 1985, - [2467] = 2371, - [2468] = 1986, - [2469] = 2378, - [2470] = 631, - [2471] = 1988, - [2472] = 2380, - [2473] = 1989, - [2474] = 2393, - [2475] = 1990, - [2476] = 2405, - [2477] = 1991, - [2478] = 1992, - [2479] = 1993, - [2480] = 2411, - [2481] = 1994, - [2482] = 2414, - [2483] = 1995, - [2484] = 2293, - [2485] = 1997, - [2486] = 2298, - [2487] = 647, - [2488] = 1998, - [2489] = 615, - [2490] = 616, - [2491] = 617, - [2492] = 1999, - [2493] = 619, - [2494] = 2000, - [2495] = 640, - [2496] = 624, - [2497] = 625, - [2498] = 626, - [2499] = 627, - [2500] = 628, - [2501] = 629, - [2502] = 2444, - [2503] = 630, - [2504] = 2080, - [2505] = 2505, - [2506] = 2453, - [2507] = 651, - [2508] = 652, - [2509] = 643, - [2510] = 2095, - [2511] = 2104, - [2512] = 2505, - [2513] = 642, - [2514] = 646, - [2515] = 669, - [2516] = 2516, - [2517] = 2516, - [2518] = 2051, - [2519] = 2055, - [2520] = 636, - [2521] = 2521, + [2445] = 146, + [2446] = 324, + [2447] = 144, + [2448] = 215, + [2449] = 147, + [2450] = 216, + [2451] = 328, + [2452] = 329, + [2453] = 145, + [2454] = 330, + [2455] = 331, + [2456] = 310, + [2457] = 334, + [2458] = 336, + [2459] = 2459, + [2460] = 2460, + [2461] = 326, + [2462] = 329, + [2463] = 1339, + [2464] = 148, + [2465] = 330, + [2466] = 331, + [2467] = 311, + [2468] = 2468, + [2469] = 150, + [2470] = 2470, + [2471] = 2471, + [2472] = 2472, + [2473] = 141, + [2474] = 2470, + [2475] = 2471, + [2476] = 2472, + [2477] = 2468, + [2478] = 2444, + [2479] = 2459, + [2480] = 152, + [2481] = 313, + [2482] = 222, + [2483] = 151, + [2484] = 149, + [2485] = 2485, + [2486] = 2486, + [2487] = 151, + [2488] = 152, + [2489] = 229, + [2490] = 2490, + [2491] = 2491, + [2492] = 580, + [2493] = 581, + [2494] = 231, + [2495] = 324, + [2496] = 215, + [2497] = 582, + [2498] = 583, + [2499] = 2499, + [2500] = 2500, + [2501] = 452, + [2502] = 2491, + [2503] = 584, + [2504] = 585, + [2505] = 453, + [2506] = 2506, + [2507] = 142, + [2508] = 2508, + [2509] = 328, + [2510] = 2510, + [2511] = 146, + [2512] = 141, + [2513] = 1626, + [2514] = 144, + [2515] = 2515, + [2516] = 362, + [2517] = 2500, + [2518] = 2518, + [2519] = 147, + [2520] = 145, + [2521] = 143, [2522] = 2522, - [2523] = 215, - [2524] = 216, + [2523] = 2523, + [2524] = 210, [2525] = 2525, [2526] = 2526, - [2527] = 215, - [2528] = 211, - [2529] = 213, - [2530] = 216, - [2531] = 2531, - [2532] = 214, - [2533] = 335, - [2534] = 143, - [2535] = 2521, - [2536] = 327, - [2537] = 141, - [2538] = 2522, - [2539] = 2539, - [2540] = 2540, - [2541] = 2540, - [2542] = 2531, - [2543] = 2543, - [2544] = 2539, - [2545] = 2543, - [2546] = 2526, - [2547] = 142, - [2548] = 312, - [2549] = 313, - [2550] = 275, - [2551] = 223, - [2552] = 2552, - [2553] = 2553, - [2554] = 2554, - [2555] = 222, - [2556] = 144, - [2557] = 302, - [2558] = 142, - [2559] = 145, - [2560] = 143, - [2561] = 214, - [2562] = 147, - [2563] = 146, - [2564] = 148, - [2565] = 149, - [2566] = 222, - [2567] = 312, - [2568] = 2568, - [2569] = 335, - [2570] = 141, - [2571] = 146, - [2572] = 336, - [2573] = 152, - [2574] = 337, - [2575] = 148, - [2576] = 151, - [2577] = 275, - [2578] = 315, - [2579] = 1408, - [2580] = 223, - [2581] = 215, - [2582] = 318, - [2583] = 149, - [2584] = 334, - [2585] = 144, - [2586] = 145, - [2587] = 331, - [2588] = 147, - [2589] = 2589, - [2590] = 2590, - [2591] = 2591, - [2592] = 2592, - [2593] = 2593, - [2594] = 2568, - [2595] = 2590, - [2596] = 2591, - [2597] = 216, - [2598] = 2592, - [2599] = 327, - [2600] = 2589, - [2601] = 302, + [2527] = 153, + [2528] = 2528, + [2529] = 364, + [2530] = 2525, + [2531] = 2506, + [2532] = 2526, + [2533] = 2528, + [2534] = 2499, + [2535] = 2486, + [2536] = 2536, + [2537] = 2537, + [2538] = 2538, + [2539] = 1621, + [2540] = 2525, + [2541] = 2526, + [2542] = 2525, + [2543] = 2526, + [2544] = 150, + [2545] = 2518, + [2546] = 2490, + [2547] = 2485, + [2548] = 2500, + [2549] = 2508, + [2550] = 2538, + [2551] = 2551, + [2552] = 407, + [2553] = 2522, + [2554] = 334, + [2555] = 2537, + [2556] = 2556, + [2557] = 2523, + [2558] = 583, + [2559] = 452, + [2560] = 581, + [2561] = 411, + [2562] = 149, + [2563] = 584, + [2564] = 1621, + [2565] = 395, + [2566] = 2566, + [2567] = 585, + [2568] = 144, + [2569] = 141, + [2570] = 148, + [2571] = 384, + [2572] = 580, + [2573] = 336, + [2574] = 1626, + [2575] = 2575, + [2576] = 2576, + [2577] = 453, + [2578] = 582, + [2579] = 634, + [2580] = 146, + [2581] = 2581, + [2582] = 2582, + [2583] = 212, + [2584] = 424, + [2585] = 143, + [2586] = 374, + [2587] = 147, + [2588] = 2588, + [2589] = 144, + [2590] = 416, + [2591] = 142, + [2592] = 213, + [2593] = 147, + [2594] = 326, + [2595] = 388, + [2596] = 2596, + [2597] = 145, + [2598] = 2510, + [2599] = 229, + [2600] = 146, + [2601] = 153, [2602] = 2602, - [2603] = 313, - [2604] = 336, - [2605] = 334, - [2606] = 150, - [2607] = 337, - [2608] = 331, - [2609] = 2593, - [2610] = 2610, - [2611] = 2611, - [2612] = 153, - [2613] = 147, - [2614] = 2614, - [2615] = 2615, - [2616] = 360, - [2617] = 338, - [2618] = 146, - [2619] = 2619, - [2620] = 141, - [2621] = 2621, - [2622] = 2622, - [2623] = 2623, - [2624] = 327, - [2625] = 2625, - [2626] = 2626, - [2627] = 2627, - [2628] = 335, - [2629] = 2626, - [2630] = 142, - [2631] = 143, - [2632] = 2632, - [2633] = 2633, - [2634] = 1704, - [2635] = 148, - [2636] = 2611, - [2637] = 2637, - [2638] = 149, - [2639] = 1714, - [2640] = 2623, - [2641] = 2637, - [2642] = 2642, - [2643] = 2643, + [2603] = 329, + [2604] = 2576, + [2605] = 2575, + [2606] = 2606, + [2607] = 334, + [2608] = 2536, + [2609] = 390, + [2610] = 410, + [2611] = 398, + [2612] = 210, + [2613] = 373, + [2614] = 330, + [2615] = 2515, + [2616] = 405, + [2617] = 420, + [2618] = 2618, + [2619] = 389, + [2620] = 376, + [2621] = 331, + [2622] = 378, + [2623] = 231, + [2624] = 379, + [2625] = 336, + [2626] = 145, + [2627] = 2551, + [2628] = 406, + [2629] = 2629, + [2630] = 336, + [2631] = 2631, + [2632] = 198, + [2633] = 336, + [2634] = 407, + [2635] = 152, + [2636] = 146, + [2637] = 213, + [2638] = 144, + [2639] = 147, + [2640] = 2640, + [2641] = 2641, + [2642] = 145, + [2643] = 2640, [2644] = 2644, - [2645] = 150, - [2646] = 665, - [2647] = 2647, - [2648] = 2637, - [2649] = 2649, - [2650] = 152, - [2651] = 151, - [2652] = 210, - [2653] = 222, - [2654] = 2627, - [2655] = 2622, - [2656] = 2615, - [2657] = 2610, - [2658] = 2619, - [2659] = 2644, - [2660] = 465, - [2661] = 669, - [2662] = 670, - [2663] = 2622, - [2664] = 2610, - [2665] = 2622, - [2666] = 2610, - [2667] = 215, - [2668] = 672, - [2669] = 673, - [2670] = 439, - [2671] = 2625, - [2672] = 2672, - [2673] = 2672, - [2674] = 2649, - [2675] = 589, - [2676] = 312, - [2677] = 222, - [2678] = 397, - [2679] = 406, - [2680] = 315, - [2681] = 412, - [2682] = 423, + [2645] = 2631, + [2646] = 2644, + [2647] = 389, + [2648] = 326, + [2649] = 420, + [2650] = 329, + [2651] = 2582, + [2652] = 143, + [2653] = 330, + [2654] = 410, + [2655] = 331, + [2656] = 142, + [2657] = 362, + [2658] = 364, + [2659] = 150, + [2660] = 149, + [2661] = 141, + [2662] = 212, + [2663] = 148, + [2664] = 151, + [2665] = 398, + [2666] = 698, + [2667] = 416, + [2668] = 405, + [2669] = 334, + [2670] = 215, + [2671] = 334, + [2672] = 388, + [2673] = 216, + [2674] = 362, + [2675] = 364, + [2676] = 390, + [2677] = 2677, + [2678] = 146, + [2679] = 2679, + [2680] = 2680, + [2681] = 2681, + [2682] = 388, [2683] = 2683, - [2684] = 425, - [2685] = 369, - [2686] = 426, - [2687] = 657, - [2688] = 2688, - [2689] = 2689, - [2690] = 393, - [2691] = 146, - [2692] = 147, - [2693] = 1704, - [2694] = 465, - [2695] = 2695, - [2696] = 2632, - [2697] = 1714, - [2698] = 2633, - [2699] = 148, - [2700] = 672, - [2701] = 371, - [2702] = 673, - [2703] = 331, + [2684] = 144, + [2685] = 2685, + [2686] = 142, + [2687] = 390, + [2688] = 405, + [2689] = 373, + [2690] = 147, + [2691] = 2691, + [2692] = 1553, + [2693] = 376, + [2694] = 149, + [2695] = 148, + [2696] = 2683, + [2697] = 378, + [2698] = 150, + [2699] = 379, + [2700] = 470, + [2701] = 634, + [2702] = 2702, + [2703] = 453, [2704] = 2704, - [2705] = 402, - [2706] = 210, - [2707] = 384, - [2708] = 589, - [2709] = 385, - [2710] = 370, - [2711] = 334, - [2712] = 318, - [2713] = 211, - [2714] = 315, - [2715] = 2715, - [2716] = 149, + [2705] = 420, + [2706] = 200, + [2707] = 416, + [2708] = 459, + [2709] = 1236, + [2710] = 151, + [2711] = 152, + [2712] = 407, + [2713] = 198, + [2714] = 410, + [2715] = 216, + [2716] = 398, [2717] = 2717, - [2718] = 336, - [2719] = 665, - [2720] = 404, - [2721] = 399, - [2722] = 2722, - [2723] = 428, - [2724] = 146, - [2725] = 337, - [2726] = 435, - [2727] = 2715, - [2728] = 2728, - [2729] = 2717, - [2730] = 390, - [2731] = 2614, - [2732] = 312, - [2733] = 213, - [2734] = 413, - [2735] = 2735, - [2736] = 153, - [2737] = 142, - [2738] = 318, - [2739] = 391, - [2740] = 418, - [2741] = 148, + [2718] = 2680, + [2719] = 2681, + [2720] = 362, + [2721] = 452, + [2722] = 364, + [2723] = 229, + [2724] = 362, + [2725] = 2725, + [2726] = 141, + [2727] = 455, + [2728] = 456, + [2729] = 465, + [2730] = 231, + [2731] = 379, + [2732] = 364, + [2733] = 145, + [2734] = 153, + [2735] = 457, + [2736] = 215, + [2737] = 216, + [2738] = 373, + [2739] = 2717, + [2740] = 198, + [2741] = 376, [2742] = 143, - [2743] = 141, - [2744] = 429, - [2745] = 669, - [2746] = 670, - [2747] = 2621, - [2748] = 394, - [2749] = 386, - [2750] = 395, - [2751] = 396, - [2752] = 424, - [2753] = 149, - [2754] = 144, - [2755] = 398, - [2756] = 439, - [2757] = 2647, - [2758] = 145, - [2759] = 147, - [2760] = 2642, - [2761] = 2643, - [2762] = 2762, - [2763] = 149, - [2764] = 147, - [2765] = 146, - [2766] = 148, - [2767] = 2767, - [2768] = 199, - [2769] = 390, - [2770] = 2770, - [2771] = 391, - [2772] = 395, - [2773] = 396, - [2774] = 398, - [2775] = 399, - [2776] = 402, - [2777] = 404, - [2778] = 360, - [2779] = 413, - [2780] = 418, - [2781] = 429, - [2782] = 338, - [2783] = 394, - [2784] = 397, - [2785] = 406, - [2786] = 412, - [2787] = 423, - [2788] = 425, - [2789] = 426, - [2790] = 2790, - [2791] = 336, - [2792] = 215, - [2793] = 315, - [2794] = 216, - [2795] = 360, - [2796] = 338, - [2797] = 318, - [2798] = 318, - [2799] = 2770, - [2800] = 2800, - [2801] = 2801, - [2802] = 2800, - [2803] = 142, - [2804] = 143, - [2805] = 686, - [2806] = 144, - [2807] = 145, - [2808] = 211, - [2809] = 150, - [2810] = 2801, - [2811] = 152, - [2812] = 151, - [2813] = 331, - [2814] = 337, - [2815] = 2683, - [2816] = 141, - [2817] = 334, - [2818] = 213, - [2819] = 315, - [2820] = 146, - [2821] = 384, - [2822] = 215, - [2823] = 216, - [2824] = 371, + [2743] = 378, + [2744] = 389, + [2745] = 490, + [2746] = 150, + [2747] = 2747, + [2748] = 504, + [2749] = 146, + [2750] = 144, + [2751] = 147, + [2752] = 145, + [2753] = 153, + [2754] = 698, + [2755] = 509, + [2756] = 452, + [2757] = 453, + [2758] = 334, + [2759] = 543, + [2760] = 529, + [2761] = 151, + [2762] = 497, + [2763] = 216, + [2764] = 2764, + [2765] = 152, + [2766] = 510, + [2767] = 200, + [2768] = 334, + [2769] = 336, + [2770] = 511, + [2771] = 2771, + [2772] = 529, + [2773] = 500, + [2774] = 477, + [2775] = 479, + [2776] = 2776, + [2777] = 336, + [2778] = 198, + [2779] = 200, + [2780] = 459, + [2781] = 1581, + [2782] = 149, + [2783] = 373, + [2784] = 465, + [2785] = 376, + [2786] = 455, + [2787] = 456, + [2788] = 457, + [2789] = 378, + [2790] = 379, + [2791] = 326, + [2792] = 336, + [2793] = 373, + [2794] = 1236, + [2795] = 329, + [2796] = 376, + [2797] = 2797, + [2798] = 330, + [2799] = 378, + [2800] = 331, + [2801] = 379, + [2802] = 143, + [2803] = 334, + [2804] = 229, + [2805] = 500, + [2806] = 231, + [2807] = 479, + [2808] = 470, + [2809] = 142, + [2810] = 148, + [2811] = 215, + [2812] = 477, + [2813] = 1639, + [2814] = 200, + [2815] = 578, + [2816] = 579, + [2817] = 150, + [2818] = 144, + [2819] = 631, + [2820] = 2820, + [2821] = 1621, + [2822] = 580, + [2823] = 635, + [2824] = 2824, [2825] = 2825, - [2826] = 384, - [2827] = 2827, - [2828] = 385, - [2829] = 370, - [2830] = 465, - [2831] = 385, - [2832] = 370, - [2833] = 200, - [2834] = 418, - [2835] = 397, - [2836] = 441, - [2837] = 144, - [2838] = 2838, + [2826] = 147, + [2827] = 145, + [2828] = 2828, + [2829] = 2829, + [2830] = 147, + [2831] = 630, + [2832] = 152, + [2833] = 2833, + [2834] = 1626, + [2835] = 149, + [2836] = 336, + [2837] = 148, + [2838] = 362, [2839] = 2839, - [2840] = 145, - [2841] = 442, - [2842] = 2842, - [2843] = 468, - [2844] = 469, - [2845] = 470, - [2846] = 2838, - [2847] = 2839, - [2848] = 2825, - [2849] = 406, - [2850] = 2850, - [2851] = 412, - [2852] = 199, - [2853] = 657, - [2854] = 472, - [2855] = 2855, - [2856] = 150, - [2857] = 1604, - [2858] = 423, - [2859] = 152, - [2860] = 394, - [2861] = 153, - [2862] = 371, - [2863] = 1327, - [2864] = 199, - [2865] = 439, - [2866] = 390, - [2867] = 360, - [2868] = 2842, - [2869] = 2869, - [2870] = 141, - [2871] = 216, - [2872] = 338, - [2873] = 312, - [2874] = 142, - [2875] = 143, - [2876] = 360, - [2877] = 425, - [2878] = 426, - [2879] = 222, - [2880] = 147, - [2881] = 2881, - [2882] = 2882, - [2883] = 429, - [2884] = 148, - [2885] = 149, - [2886] = 391, - [2887] = 395, - [2888] = 396, - [2889] = 398, - [2890] = 399, - [2891] = 2891, - [2892] = 402, - [2893] = 338, - [2894] = 404, - [2895] = 413, - [2896] = 151, - [2897] = 439, - [2898] = 222, - [2899] = 146, - [2900] = 148, - [2901] = 1327, - [2902] = 149, - [2903] = 315, - [2904] = 2904, - [2905] = 318, - [2906] = 468, - [2907] = 150, - [2908] = 469, - [2909] = 465, - [2910] = 541, - [2911] = 215, - [2912] = 470, - [2913] = 548, - [2914] = 216, - [2915] = 587, - [2916] = 494, - [2917] = 497, - [2918] = 152, - [2919] = 200, - [2920] = 151, - [2921] = 503, - [2922] = 506, - [2923] = 315, - [2924] = 521, - [2925] = 545, - [2926] = 1742, - [2927] = 318, - [2928] = 2928, - [2929] = 200, - [2930] = 153, - [2931] = 2931, - [2932] = 147, - [2933] = 312, - [2934] = 542, - [2935] = 199, - [2936] = 142, - [2937] = 143, - [2938] = 441, - [2939] = 315, - [2940] = 371, - [2941] = 144, - [2942] = 145, - [2943] = 384, - [2944] = 545, - [2945] = 496, - [2946] = 548, - [2947] = 521, - [2948] = 385, - [2949] = 1666, - [2950] = 370, - [2951] = 331, - [2952] = 318, - [2953] = 496, - [2954] = 371, - [2955] = 2955, - [2956] = 334, - [2957] = 384, - [2958] = 686, - [2959] = 336, - [2960] = 442, - [2961] = 385, - [2962] = 337, - [2963] = 370, + [2840] = 362, + [2841] = 1808, + [2842] = 231, + [2843] = 2829, + [2844] = 364, + [2845] = 364, + [2846] = 2846, + [2847] = 2847, + [2848] = 2848, + [2849] = 620, + [2850] = 632, + [2851] = 336, + [2852] = 584, + [2853] = 585, + [2854] = 581, + [2855] = 198, + [2856] = 622, + [2857] = 543, + [2858] = 2847, + [2859] = 2859, + [2860] = 612, + [2861] = 145, + [2862] = 582, + [2863] = 633, + [2864] = 583, + [2865] = 334, + [2866] = 146, + [2867] = 229, + [2868] = 2820, + [2869] = 616, + [2870] = 2859, + [2871] = 617, + [2872] = 636, + [2873] = 634, + [2874] = 1809, + [2875] = 362, + [2876] = 623, + [2877] = 334, + [2878] = 146, + [2879] = 326, + [2880] = 153, + [2881] = 639, + [2882] = 621, + [2883] = 329, + [2884] = 643, + [2885] = 151, + [2886] = 330, + [2887] = 644, + [2888] = 331, + [2889] = 571, + [2890] = 572, + [2891] = 1798, + [2892] = 2828, + [2893] = 2839, + [2894] = 573, + [2895] = 574, + [2896] = 575, + [2897] = 1799, + [2898] = 364, + [2899] = 144, + [2900] = 607, + [2901] = 376, + [2902] = 639, + [2903] = 643, + [2904] = 644, + [2905] = 465, + [2906] = 571, + [2907] = 572, + [2908] = 470, + [2909] = 573, + [2910] = 379, + [2911] = 574, + [2912] = 575, + [2913] = 578, + [2914] = 362, + [2915] = 579, + [2916] = 364, + [2917] = 198, + [2918] = 384, + [2919] = 373, + [2920] = 376, + [2921] = 378, + [2922] = 379, + [2923] = 150, + [2924] = 374, + [2925] = 590, + [2926] = 151, + [2927] = 152, + [2928] = 529, + [2929] = 698, + [2930] = 500, + [2931] = 477, + [2932] = 2932, + [2933] = 2933, + [2934] = 2825, + [2935] = 479, + [2936] = 146, + [2937] = 144, + [2938] = 147, + [2939] = 145, + [2940] = 200, + [2941] = 153, + [2942] = 2942, + [2943] = 2943, + [2944] = 2944, + [2945] = 2945, + [2946] = 1339, + [2947] = 592, + [2948] = 543, + [2949] = 2949, + [2950] = 593, + [2951] = 594, + [2952] = 2952, + [2953] = 595, + [2954] = 2954, + [2955] = 362, + [2956] = 364, + [2957] = 596, + [2958] = 597, + [2959] = 598, + [2960] = 326, + [2961] = 329, + [2962] = 330, + [2963] = 331, [2964] = 2964, - [2965] = 472, - [2966] = 1947, - [2967] = 338, - [2968] = 2968, - [2969] = 2969, - [2970] = 654, - [2971] = 200, - [2972] = 2972, - [2973] = 2973, - [2974] = 640, - [2975] = 646, - [2976] = 669, - [2977] = 2977, - [2978] = 147, - [2979] = 670, - [2980] = 1714, - [2981] = 2972, - [2982] = 655, - [2983] = 650, - [2984] = 631, - [2985] = 659, - [2986] = 336, - [2987] = 1946, - [2988] = 633, - [2989] = 318, - [2990] = 360, - [2991] = 651, - [2992] = 146, - [2993] = 668, - [2994] = 660, - [2995] = 634, - [2996] = 657, - [2997] = 2973, - [2998] = 661, - [2999] = 360, - [3000] = 144, - [3001] = 145, - [3002] = 672, - [3003] = 148, - [3004] = 2969, - [3005] = 647, - [3006] = 673, - [3007] = 1939, - [3008] = 662, - [3009] = 337, - [3010] = 663, - [3011] = 149, - [3012] = 338, - [3013] = 664, - [3014] = 334, - [3015] = 643, - [3016] = 146, - [3017] = 666, - [3018] = 148, - [3019] = 150, - [3020] = 636, - [3021] = 656, - [3022] = 648, - [3023] = 2968, - [3024] = 635, - [3025] = 637, - [3026] = 152, - [3027] = 151, - [3028] = 652, - [3029] = 222, - [3030] = 149, - [3031] = 1704, - [3032] = 312, - [3033] = 667, - [3034] = 644, - [3035] = 589, - [3036] = 1940, - [3037] = 338, + [2965] = 632, + [2966] = 373, + [2967] = 633, + [2968] = 602, + [2969] = 603, + [2970] = 376, + [2971] = 635, + [2972] = 378, + [2973] = 604, + [2974] = 379, + [2975] = 605, + [2976] = 606, + [2977] = 608, + [2978] = 636, + [2979] = 373, + [2980] = 378, + [2981] = 2848, + [2982] = 633, + [2983] = 374, + [2984] = 2846, + [2985] = 153, + [2986] = 384, + [2987] = 373, + [2988] = 146, + [2989] = 376, + [2990] = 639, + [2991] = 574, + [2992] = 378, + [2993] = 379, + [2994] = 635, + [2995] = 376, + [2996] = 572, + [2997] = 590, + [2998] = 378, + [2999] = 2833, + [3000] = 3000, + [3001] = 643, + [3002] = 636, + [3003] = 379, + [3004] = 145, + [3005] = 575, + [3006] = 592, + [3007] = 593, + [3008] = 594, + [3009] = 595, + [3010] = 3010, + [3011] = 144, + [3012] = 3012, + [3013] = 644, + [3014] = 465, + [3015] = 147, + [3016] = 336, + [3017] = 373, + [3018] = 632, + [3019] = 3019, + [3020] = 597, + [3021] = 598, + [3022] = 3022, + [3023] = 578, + [3024] = 3024, + [3025] = 579, + [3026] = 470, + [3027] = 573, + [3028] = 3028, + [3029] = 334, + [3030] = 602, + [3031] = 603, + [3032] = 604, + [3033] = 3033, + [3034] = 605, + [3035] = 606, + [3036] = 607, + [3037] = 608, [3038] = 3038, - [3039] = 665, - [3040] = 147, - [3041] = 315, - [3042] = 649, - [3043] = 658, - [3044] = 199, - [3045] = 642, - [3046] = 3046, - [3047] = 153, - [3048] = 653, - [3049] = 318, - [3050] = 3050, - [3051] = 3046, - [3052] = 3052, - [3053] = 360, - [3054] = 587, - [3055] = 315, - [3056] = 3056, - [3057] = 331, - [3058] = 3058, - [3059] = 3052, - [3060] = 588, + [3039] = 3039, + [3040] = 3040, + [3041] = 3041, + [3042] = 571, + [3043] = 3043, + [3044] = 200, + [3045] = 3045, + [3046] = 596, + [3047] = 407, + [3048] = 141, + [3049] = 389, + [3050] = 424, + [3051] = 3010, + [3052] = 390, + [3053] = 406, + [3054] = 410, + [3055] = 398, + [3056] = 388, + [3057] = 3057, + [3058] = 405, + [3059] = 395, + [3060] = 411, [3061] = 334, - [3062] = 3056, - [3063] = 648, - [3064] = 649, - [3065] = 650, - [3066] = 360, - [3067] = 651, - [3068] = 652, - [3069] = 653, - [3070] = 338, - [3071] = 654, - [3072] = 655, - [3073] = 656, - [3074] = 658, - [3075] = 659, - [3076] = 331, - [3077] = 660, - [3078] = 661, - [3079] = 662, - [3080] = 663, - [3081] = 336, - [3082] = 337, - [3083] = 664, - [3084] = 588, - [3085] = 666, - [3086] = 667, - [3087] = 668, - [3088] = 371, - [3089] = 199, - [3090] = 384, - [3091] = 615, - [3092] = 386, - [3093] = 385, - [3094] = 370, - [3095] = 3095, - [3096] = 616, + [3062] = 420, + [3063] = 336, + [3064] = 362, + [3065] = 364, + [3066] = 416, + [3067] = 3067, + [3068] = 3068, + [3069] = 3069, + [3070] = 3070, + [3071] = 510, + [3072] = 500, + [3073] = 3073, + [3074] = 3074, + [3075] = 3075, + [3076] = 477, + [3077] = 3077, + [3078] = 3078, + [3079] = 3079, + [3080] = 511, + [3081] = 3070, + [3082] = 497, + [3083] = 3083, + [3084] = 3077, + [3085] = 3078, + [3086] = 3074, + [3087] = 3083, + [3088] = 3075, + [3089] = 3089, + [3090] = 3090, + [3091] = 362, + [3092] = 490, + [3093] = 479, + [3094] = 364, + [3095] = 143, + [3096] = 3067, [3097] = 3097, - [3098] = 617, - [3099] = 619, - [3100] = 369, - [3101] = 620, - [3102] = 621, - [3103] = 622, - [3104] = 371, - [3105] = 624, - [3106] = 625, - [3107] = 384, - [3108] = 626, - [3109] = 614, - [3110] = 370, - [3111] = 627, - [3112] = 628, - [3113] = 629, - [3114] = 630, - [3115] = 3115, - [3116] = 3116, - [3117] = 200, - [3118] = 360, - [3119] = 338, - [3120] = 371, - [3121] = 384, - [3122] = 385, - [3123] = 370, - [3124] = 3124, - [3125] = 3125, - [3126] = 3126, - [3127] = 441, - [3128] = 442, - [3129] = 3129, - [3130] = 686, - [3131] = 150, - [3132] = 152, - [3133] = 151, - [3134] = 587, - [3135] = 545, - [3136] = 548, - [3137] = 521, - [3138] = 496, - [3139] = 1408, - [3140] = 147, - [3141] = 146, - [3142] = 148, - [3143] = 149, - [3144] = 3144, - [3145] = 3145, - [3146] = 644, - [3147] = 153, - [3148] = 646, - [3149] = 647, - [3150] = 385, - [3151] = 660, - [3152] = 3152, - [3153] = 614, - [3154] = 624, - [3155] = 3058, - [3156] = 649, - [3157] = 625, - [3158] = 650, - [3159] = 371, - [3160] = 3160, - [3161] = 3161, - [3162] = 384, - [3163] = 651, - [3164] = 652, - [3165] = 318, - [3166] = 653, - [3167] = 654, - [3168] = 655, - [3169] = 3050, - [3170] = 656, - [3171] = 658, - [3172] = 659, - [3173] = 3173, - [3174] = 661, - [3175] = 662, - [3176] = 663, - [3177] = 664, - [3178] = 588, - [3179] = 441, - [3180] = 666, - [3181] = 667, - [3182] = 668, - [3183] = 442, - [3184] = 371, - [3185] = 384, - [3186] = 2977, - [3187] = 385, - [3188] = 370, - [3189] = 626, - [3190] = 200, - [3191] = 627, - [3192] = 622, - [3193] = 3193, - [3194] = 385, - [3195] = 628, - [3196] = 629, - [3197] = 386, - [3198] = 630, - [3199] = 648, - [3200] = 369, - [3201] = 620, - [3202] = 3202, - [3203] = 3203, - [3204] = 3204, - [3205] = 3205, - [3206] = 615, - [3207] = 370, - [3208] = 147, - [3209] = 146, - [3210] = 148, - [3211] = 3211, - [3212] = 149, - [3213] = 3213, - [3214] = 3214, - [3215] = 644, - [3216] = 621, - [3217] = 646, - [3218] = 616, - [3219] = 617, - [3220] = 153, - [3221] = 3221, - [3222] = 315, - [3223] = 647, - [3224] = 619, - [3225] = 3225, - [3226] = 315, - [3227] = 435, - [3228] = 426, - [3229] = 398, - [3230] = 425, - [3231] = 402, - [3232] = 404, - [3233] = 424, - [3234] = 428, - [3235] = 390, - [3236] = 406, - [3237] = 413, - [3238] = 418, - [3239] = 395, - [3240] = 318, - [3241] = 141, - [3242] = 360, - [3243] = 399, - [3244] = 391, - [3245] = 412, - [3246] = 423, - [3247] = 338, - [3248] = 3152, - [3249] = 429, - [3250] = 394, - [3251] = 393, - [3252] = 397, - [3253] = 396, - [3254] = 3254, - [3255] = 3255, - [3256] = 3256, - [3257] = 142, - [3258] = 506, - [3259] = 3259, - [3260] = 3260, - [3261] = 3261, - [3262] = 3262, - [3263] = 503, - [3264] = 3259, - [3265] = 497, - [3266] = 496, - [3267] = 541, - [3268] = 3268, - [3269] = 3269, - [3270] = 3270, - [3271] = 3271, - [3272] = 3272, - [3273] = 3260, - [3274] = 371, - [3275] = 3270, - [3276] = 548, - [3277] = 521, - [3278] = 3278, - [3279] = 542, - [3280] = 143, - [3281] = 3255, - [3282] = 384, - [3283] = 3268, - [3284] = 385, - [3285] = 370, - [3286] = 3261, - [3287] = 360, - [3288] = 3288, - [3289] = 3262, - [3290] = 338, + [3098] = 504, + [3099] = 142, + [3100] = 3068, + [3101] = 373, + [3102] = 376, + [3103] = 509, + [3104] = 378, + [3105] = 3105, + [3106] = 379, + [3107] = 3097, + [3108] = 3069, + [3109] = 529, + [3110] = 3105, + [3111] = 3089, + [3112] = 497, + [3113] = 378, + [3114] = 379, + [3115] = 511, + [3116] = 1553, + [3117] = 504, + [3118] = 144, + [3119] = 529, + [3120] = 500, + [3121] = 477, + [3122] = 149, + [3123] = 148, + [3124] = 1527, + [3125] = 147, + [3126] = 490, + [3127] = 510, + [3128] = 373, + [3129] = 145, + [3130] = 146, + [3131] = 1639, + [3132] = 479, + [3133] = 376, + [3134] = 509, + [3135] = 529, + [3136] = 2196, + [3137] = 2197, + [3138] = 2198, + [3139] = 2199, + [3140] = 2200, + [3141] = 2201, + [3142] = 2202, + [3143] = 2203, + [3144] = 2204, + [3145] = 2205, + [3146] = 2207, + [3147] = 2208, + [3148] = 2209, + [3149] = 2222, + [3150] = 2210, + [3151] = 2212, + [3152] = 2213, + [3153] = 2227, + [3154] = 2231, + [3155] = 2214, + [3156] = 2215, + [3157] = 2216, + [3158] = 151, + [3159] = 2217, + [3160] = 152, + [3161] = 2223, + [3162] = 2224, + [3163] = 2225, + [3164] = 2226, + [3165] = 2228, + [3166] = 2229, + [3167] = 2301, + [3168] = 2230, + [3169] = 2232, + [3170] = 2233, + [3171] = 2235, + [3172] = 2236, + [3173] = 2237, + [3174] = 2238, + [3175] = 2240, + [3176] = 2241, + [3177] = 2243, + [3178] = 2244, + [3179] = 2245, + [3180] = 2247, + [3181] = 2248, + [3182] = 2249, + [3183] = 2250, + [3184] = 2251, + [3185] = 2254, + [3186] = 2255, + [3187] = 2256, + [3188] = 2258, + [3189] = 2261, + [3190] = 2263, + [3191] = 2264, + [3192] = 2265, + [3193] = 2266, + [3194] = 2267, + [3195] = 2268, + [3196] = 2269, + [3197] = 2283, + [3198] = 2284, + [3199] = 2193, + [3200] = 2286, + [3201] = 2287, + [3202] = 2288, + [3203] = 2289, + [3204] = 2290, + [3205] = 2291, + [3206] = 2292, + [3207] = 2293, + [3208] = 2294, + [3209] = 2270, + [3210] = 2271, + [3211] = 2176, + [3212] = 2272, + [3213] = 2273, + [3214] = 2274, + [3215] = 2275, + [3216] = 2276, + [3217] = 2277, + [3218] = 2278, + [3219] = 2279, + [3220] = 2280, + [3221] = 2234, + [3222] = 2239, + [3223] = 479, + [3224] = 2242, + [3225] = 1639, + [3226] = 3226, + [3227] = 2246, + [3228] = 500, + [3229] = 2253, + [3230] = 477, + [3231] = 2257, + [3232] = 2259, + [3233] = 210, + [3234] = 2262, + [3235] = 150, + [3236] = 543, + [3237] = 2220, + [3238] = 1639, + [3239] = 2178, + [3240] = 2179, + [3241] = 2180, + [3242] = 1589, + [3243] = 2181, + [3244] = 2182, + [3245] = 2183, + [3246] = 2184, + [3247] = 2185, + [3248] = 2186, + [3249] = 2187, + [3250] = 2188, + [3251] = 2189, + [3252] = 1581, + [3253] = 2190, + [3254] = 1705, + [3255] = 2191, + [3256] = 490, + [3257] = 2192, + [3258] = 2285, + [3259] = 1626, + [3260] = 631, + [3261] = 584, + [3262] = 636, + [3263] = 580, + [3264] = 581, + [3265] = 612, + [3266] = 1798, + [3267] = 210, + [3268] = 1683, + [3269] = 1691, + [3270] = 639, + [3271] = 2270, + [3272] = 2271, + [3273] = 2176, + [3274] = 2272, + [3275] = 2273, + [3276] = 2274, + [3277] = 2275, + [3278] = 2276, + [3279] = 2277, + [3280] = 2278, + [3281] = 2279, + [3282] = 2280, + [3283] = 1809, + [3284] = 1799, + [3285] = 616, + [3286] = 582, + [3287] = 583, + [3288] = 617, + [3289] = 643, + [3290] = 630, [3291] = 3291, - [3292] = 3292, - [3293] = 3256, - [3294] = 3292, - [3295] = 3272, - [3296] = 494, - [3297] = 3269, - [3298] = 3291, - [3299] = 545, - [3300] = 1604, - [3301] = 149, - [3302] = 506, - [3303] = 1607, - [3304] = 541, - [3305] = 542, - [3306] = 545, - [3307] = 503, - [3308] = 1666, - [3309] = 548, - [3310] = 521, - [3311] = 144, - [3312] = 494, - [3313] = 370, - [3314] = 497, - [3315] = 496, - [3316] = 384, - [3317] = 145, - [3318] = 371, - [3319] = 385, - [3320] = 147, - [3321] = 146, - [3322] = 148, - [3323] = 2331, - [3324] = 2368, - [3325] = 2386, - [3326] = 2334, - [3327] = 2410, - [3328] = 2406, - [3329] = 2363, - [3330] = 2297, - [3331] = 2345, - [3332] = 2370, - [3333] = 2404, - [3334] = 2415, - [3335] = 2321, - [3336] = 2355, - [3337] = 2358, - [3338] = 2373, - [3339] = 2383, - [3340] = 2388, - [3341] = 2403, - [3342] = 2292, - [3343] = 2412, - [3344] = 2384, - [3345] = 2416, - [3346] = 2399, - [3347] = 2385, - [3348] = 2374, - [3349] = 2392, - [3350] = 2413, - [3351] = 2325, - [3352] = 2343, - [3353] = 2376, - [3354] = 2315, - [3355] = 2327, - [3356] = 2303, - [3357] = 2318, - [3358] = 2359, - [3359] = 2391, - [3360] = 2394, - [3361] = 2333, - [3362] = 2381, - [3363] = 2387, - [3364] = 2306, - [3365] = 2337, - [3366] = 2351, - [3367] = 2396, - [3368] = 2408, - [3369] = 2307, - [3370] = 2310, - [3371] = 2389, - [3372] = 2397, - [3373] = 2402, - [3374] = 2409, - [3375] = 2356, - [3376] = 2299, - [3377] = 2305, - [3378] = 2308, - [3379] = 2316, - [3380] = 2335, - [3381] = 2347, - [3382] = 2364, - [3383] = 2375, - [3384] = 152, - [3385] = 2366, - [3386] = 2417, - [3387] = 2362, - [3388] = 2332, - [3389] = 2302, - [3390] = 2353, - [3391] = 2367, - [3392] = 2369, - [3393] = 2371, - [3394] = 2378, - [3395] = 2380, - [3396] = 2393, - [3397] = 2405, - [3398] = 2411, - [3399] = 2414, - [3400] = 2293, - [3401] = 2298, - [3402] = 1742, - [3403] = 2340, - [3404] = 3404, - [3405] = 2357, - [3406] = 150, - [3407] = 2309, - [3408] = 2323, - [3409] = 587, - [3410] = 2312, - [3411] = 542, - [3412] = 2390, - [3413] = 2294, - [3414] = 2296, - [3415] = 210, - [3416] = 2400, - [3417] = 2295, - [3418] = 1666, - [3419] = 2395, - [3420] = 2401, - [3421] = 1666, - [3422] = 2349, - [3423] = 545, - [3424] = 1769, - [3425] = 1730, - [3426] = 2339, - [3427] = 548, - [3428] = 521, - [3429] = 2336, - [3430] = 2379, - [3431] = 2319, - [3432] = 2344, - [3433] = 2322, - [3434] = 2330, - [3435] = 2407, - [3436] = 2317, - [3437] = 496, - [3438] = 2350, - [3439] = 2311, - [3440] = 2300, - [3441] = 2304, - [3442] = 2320, - [3443] = 2348, - [3444] = 2342, - [3445] = 2313, - [3446] = 151, - [3447] = 1946, - [3448] = 3448, - [3449] = 672, - [3450] = 673, - [3451] = 1911, - [3452] = 1915, - [3453] = 1714, - [3454] = 213, - [3455] = 1895, - [3456] = 648, - [3457] = 3278, - [3458] = 3271, - [3459] = 3459, - [3460] = 649, - [3461] = 589, - [3462] = 665, - [3463] = 211, - [3464] = 643, - [3465] = 2353, - [3466] = 2367, - [3467] = 2369, - [3468] = 2371, - [3469] = 2378, - [3470] = 2380, - [3471] = 2393, - [3472] = 2405, - [3473] = 2411, - [3474] = 2414, - [3475] = 2293, - [3476] = 2298, - [3477] = 644, - [3478] = 651, - [3479] = 633, - [3480] = 634, - [3481] = 1905, - [3482] = 1908, - [3483] = 1769, - [3484] = 652, - [3485] = 650, - [3486] = 147, - [3487] = 146, - [3488] = 148, - [3489] = 635, - [3490] = 153, - [3491] = 149, - [3492] = 653, - [3493] = 654, - [3494] = 636, - [3495] = 637, - [3496] = 655, - [3497] = 631, - [3498] = 656, - [3499] = 658, - [3500] = 659, - [3501] = 660, - [3502] = 661, - [3503] = 662, - [3504] = 663, - [3505] = 1939, - [3506] = 1940, - [3507] = 664, - [3508] = 669, - [3509] = 588, - [3510] = 642, - [3511] = 666, - [3512] = 667, - [3513] = 668, - [3514] = 1947, - [3515] = 646, - [3516] = 1704, - [3517] = 670, - [3518] = 647, - [3519] = 210, - [3520] = 640, - [3521] = 3521, - [3522] = 3522, - [3523] = 215, - [3524] = 3524, - [3525] = 3525, - [3526] = 3526, - [3527] = 214, - [3528] = 211, - [3529] = 3529, - [3530] = 1321, - [3531] = 216, - [3532] = 3532, - [3533] = 3533, - [3534] = 3526, - [3535] = 3535, - [3536] = 3526, - [3537] = 213, - [3538] = 313, - [3539] = 275, - [3540] = 223, - [3541] = 3541, - [3542] = 3542, - [3543] = 3543, - [3544] = 222, - [3545] = 3545, - [3546] = 3542, - [3547] = 3547, - [3548] = 216, - [3549] = 312, - [3550] = 215, - [3551] = 3551, - [3552] = 1327, - [3553] = 3553, - [3554] = 1361, - [3555] = 3553, - [3556] = 1370, - [3557] = 3545, - [3558] = 3551, - [3559] = 302, - [3560] = 336, - [3561] = 222, - [3562] = 337, - [3563] = 318, - [3564] = 312, - [3565] = 331, - [3566] = 1327, - [3567] = 334, - [3568] = 315, - [3569] = 3569, - [3570] = 3570, - [3571] = 3571, - [3572] = 338, - [3573] = 336, - [3574] = 337, - [3575] = 3575, - [3576] = 3570, - [3577] = 331, - [3578] = 3578, - [3579] = 216, - [3580] = 3580, - [3581] = 3575, - [3582] = 3582, - [3583] = 3583, - [3584] = 3584, - [3585] = 334, - [3586] = 3571, - [3587] = 3580, - [3588] = 3582, - [3589] = 3580, - [3590] = 3575, - [3591] = 3582, - [3592] = 3569, - [3593] = 3583, - [3594] = 3584, - [3595] = 3595, - [3596] = 3571, - [3597] = 657, - [3598] = 360, - [3599] = 3599, - [3600] = 315, - [3601] = 3569, - [3602] = 318, - [3603] = 3595, - [3604] = 3583, - [3605] = 3584, - [3606] = 3595, - [3607] = 686, - [3608] = 370, - [3609] = 3609, - [3610] = 338, - [3611] = 3611, - [3612] = 386, - [3613] = 360, - [3614] = 385, - [3615] = 371, - [3616] = 3616, - [3617] = 384, - [3618] = 3618, - [3619] = 369, - [3620] = 386, - [3621] = 2977, - [3622] = 369, - [3623] = 384, - [3624] = 385, - [3625] = 318, - [3626] = 315, - [3627] = 370, - [3628] = 3628, - [3629] = 199, - [3630] = 216, - [3631] = 371, - [3632] = 215, - [3633] = 222, - [3634] = 315, - [3635] = 338, - [3636] = 312, - [3637] = 200, - [3638] = 215, - [3639] = 318, - [3640] = 216, - [3641] = 360, - [3642] = 312, - [3643] = 1669, - [3644] = 542, - [3645] = 472, - [3646] = 506, - [3647] = 503, - [3648] = 360, - [3649] = 497, - [3650] = 545, - [3651] = 336, - [3652] = 468, - [3653] = 469, - [3654] = 467, - [3655] = 470, - [3656] = 1674, - [3657] = 496, - [3658] = 337, - [3659] = 521, - [3660] = 1665, + [3292] = 1855, + [3293] = 1860, + [3294] = 1705, + [3295] = 1808, + [3296] = 620, + [3297] = 621, + [3298] = 644, + [3299] = 622, + [3300] = 3300, + [3301] = 146, + [3302] = 1720, + [3303] = 144, + [3304] = 571, + [3305] = 212, + [3306] = 572, + [3307] = 147, + [3308] = 632, + [3309] = 573, + [3310] = 633, + [3311] = 574, + [3312] = 575, + [3313] = 578, + [3314] = 579, + [3315] = 153, + [3316] = 145, + [3317] = 623, + [3318] = 213, + [3319] = 1621, + [3320] = 3073, + [3321] = 3079, + [3322] = 635, + [3323] = 585, + [3324] = 3324, + [3325] = 3325, + [3326] = 3326, + [3327] = 213, + [3328] = 214, + [3329] = 3329, + [3330] = 212, + [3331] = 216, + [3332] = 1211, + [3333] = 3333, + [3334] = 3334, + [3335] = 3329, + [3336] = 3336, + [3337] = 3337, + [3338] = 3338, + [3339] = 3329, + [3340] = 215, + [3341] = 3341, + [3342] = 1236, + [3343] = 229, + [3344] = 1281, + [3345] = 310, + [3346] = 311, + [3347] = 313, + [3348] = 222, + [3349] = 3349, + [3350] = 3350, + [3351] = 231, + [3352] = 3352, + [3353] = 3353, + [3354] = 1288, + [3355] = 3341, + [3356] = 216, + [3357] = 215, + [3358] = 3358, + [3359] = 3350, + [3360] = 3360, + [3361] = 3349, + [3362] = 3358, + [3363] = 1236, + [3364] = 229, + [3365] = 336, + [3366] = 331, + [3367] = 231, + [3368] = 334, + [3369] = 326, + [3370] = 330, + [3371] = 329, + [3372] = 3372, + [3373] = 329, + [3374] = 331, + [3375] = 3375, + [3376] = 326, + [3377] = 3377, + [3378] = 364, + [3379] = 3379, + [3380] = 3380, + [3381] = 216, + [3382] = 634, + [3383] = 336, + [3384] = 3384, + [3385] = 3385, + [3386] = 334, + [3387] = 3387, + [3388] = 3372, + [3389] = 3389, + [3390] = 3389, + [3391] = 3391, + [3392] = 3384, + [3393] = 3385, + [3394] = 3387, + [3395] = 3372, + [3396] = 3380, + [3397] = 3397, + [3398] = 3379, + [3399] = 3389, + [3400] = 3391, + [3401] = 3384, + [3402] = 3385, + [3403] = 3387, + [3404] = 362, + [3405] = 3380, + [3406] = 3397, + [3407] = 3391, + [3408] = 330, + [3409] = 3397, + [3410] = 3410, + [3411] = 376, + [3412] = 384, + [3413] = 3413, + [3414] = 378, + [3415] = 374, + [3416] = 362, + [3417] = 364, + [3418] = 3418, + [3419] = 3419, + [3420] = 379, + [3421] = 698, + [3422] = 373, + [3423] = 216, + [3424] = 373, + [3425] = 384, + [3426] = 376, + [3427] = 374, + [3428] = 378, + [3429] = 379, + [3430] = 334, + [3431] = 215, + [3432] = 2848, + [3433] = 336, + [3434] = 3434, + [3435] = 198, + [3436] = 215, + [3437] = 216, + [3438] = 200, + [3439] = 231, + [3440] = 334, + [3441] = 364, + [3442] = 362, + [3443] = 229, + [3444] = 336, + [3445] = 376, + [3446] = 231, + [3447] = 3447, + [3448] = 500, + [3449] = 330, + [3450] = 378, + [3451] = 477, + [3452] = 326, + [3453] = 497, + [3454] = 529, + [3455] = 490, + [3456] = 504, + [3457] = 509, + [3458] = 479, + [3459] = 362, + [3460] = 510, + [3461] = 329, + [3462] = 1628, + [3463] = 451, + [3464] = 1586, + [3465] = 1601, + [3466] = 1615, + [3467] = 364, + [3468] = 373, + [3469] = 229, + [3470] = 459, + [3471] = 455, + [3472] = 456, + [3473] = 457, + [3474] = 331, + [3475] = 379, + [3476] = 511, + [3477] = 2285, + [3478] = 2256, + [3479] = 2258, + [3480] = 2240, + [3481] = 2180, + [3482] = 529, + [3483] = 2181, + [3484] = 2261, + [3485] = 2182, + [3486] = 2183, + [3487] = 2184, + [3488] = 2241, + [3489] = 2263, + [3490] = 2185, + [3491] = 2264, + [3492] = 500, + [3493] = 477, + [3494] = 2186, + [3495] = 2187, + [3496] = 2227, + [3497] = 2265, + [3498] = 2243, + [3499] = 2188, + [3500] = 2266, + [3501] = 331, + [3502] = 2220, + [3503] = 2189, + [3504] = 2190, + [3505] = 2191, + [3506] = 2192, + [3507] = 3507, + [3508] = 2193, + [3509] = 2222, + [3510] = 2196, + [3511] = 2197, + [3512] = 2198, + [3513] = 2244, + [3514] = 2199, + [3515] = 2267, + [3516] = 2200, + [3517] = 2268, + [3518] = 2201, + [3519] = 2202, + [3520] = 2203, + [3521] = 2269, + [3522] = 2204, + [3523] = 3507, + [3524] = 2205, + [3525] = 2207, + [3526] = 2208, + [3527] = 2209, + [3528] = 2210, + [3529] = 2231, + [3530] = 2212, + [3531] = 2213, + [3532] = 326, + [3533] = 2214, + [3534] = 336, + [3535] = 2215, + [3536] = 373, + [3537] = 497, + [3538] = 2234, + [3539] = 2216, + [3540] = 376, + [3541] = 2245, + [3542] = 2217, + [3543] = 2238, + [3544] = 2242, + [3545] = 2246, + [3546] = 2253, + [3547] = 510, + [3548] = 329, + [3549] = 2247, + [3550] = 479, + [3551] = 3507, + [3552] = 2248, + [3553] = 3507, + [3554] = 2178, + [3555] = 2249, + [3556] = 2257, + [3557] = 2259, + [3558] = 330, + [3559] = 378, + [3560] = 504, + [3561] = 379, + [3562] = 2262, + [3563] = 3507, + [3564] = 511, + [3565] = 2223, + [3566] = 2224, + [3567] = 2225, + [3568] = 2226, + [3569] = 2228, + [3570] = 490, + [3571] = 2250, + [3572] = 3507, + [3573] = 2251, + [3574] = 2254, + [3575] = 509, + [3576] = 2255, + [3577] = 2229, + [3578] = 2283, + [3579] = 2284, + [3580] = 3507, + [3581] = 1639, + [3582] = 2301, + [3583] = 2230, + [3584] = 2232, + [3585] = 2233, + [3586] = 2294, + [3587] = 2286, + [3588] = 2287, + [3589] = 2288, + [3590] = 2235, + [3591] = 2289, + [3592] = 2290, + [3593] = 2291, + [3594] = 2179, + [3595] = 2236, + [3596] = 2292, + [3597] = 2237, + [3598] = 2293, + [3599] = 2239, + [3600] = 3600, + [3601] = 144, + [3602] = 146, + [3603] = 3603, + [3604] = 3604, + [3605] = 3604, + [3606] = 3606, + [3607] = 1639, + [3608] = 3606, + [3609] = 147, + [3610] = 3606, + [3611] = 3604, + [3612] = 145, + [3613] = 2275, + [3614] = 3614, + [3615] = 3614, + [3616] = 2270, + [3617] = 2271, + [3618] = 2176, + [3619] = 2272, + [3620] = 2273, + [3621] = 2274, + [3622] = 2275, + [3623] = 2276, + [3624] = 3614, + [3625] = 3614, + [3626] = 2277, + [3627] = 2278, + [3628] = 2279, + [3629] = 2280, + [3630] = 3614, + [3631] = 2270, + [3632] = 2271, + [3633] = 2176, + [3634] = 2272, + [3635] = 2273, + [3636] = 2274, + [3637] = 2276, + [3638] = 2277, + [3639] = 2278, + [3640] = 2279, + [3641] = 2280, + [3642] = 3614, + [3643] = 3614, + [3644] = 3614, + [3645] = 3645, + [3646] = 3646, + [3647] = 3647, + [3648] = 3648, + [3649] = 3645, + [3650] = 3650, + [3651] = 3651, + [3652] = 3652, + [3653] = 3653, + [3654] = 3654, + [3655] = 3655, + [3656] = 3656, + [3657] = 3657, + [3658] = 3658, + [3659] = 3659, + [3660] = 3660, [3661] = 3661, - [3662] = 548, - [3663] = 385, - [3664] = 371, - [3665] = 494, - [3666] = 1688, - [3667] = 338, - [3668] = 222, - [3669] = 331, - [3670] = 334, - [3671] = 541, - [3672] = 370, - [3673] = 384, - [3674] = 1666, - [3675] = 541, - [3676] = 494, - [3677] = 497, - [3678] = 503, - [3679] = 506, - [3680] = 337, - [3681] = 542, - [3682] = 545, - [3683] = 548, - [3684] = 521, - [3685] = 496, - [3686] = 331, - [3687] = 334, - [3688] = 318, - [3689] = 371, - [3690] = 384, - [3691] = 385, - [3692] = 370, - [3693] = 3693, - [3694] = 2339, - [3695] = 2336, - [3696] = 2379, - [3697] = 2319, - [3698] = 2344, - [3699] = 2322, - [3700] = 2330, - [3701] = 2407, - [3702] = 2317, - [3703] = 2311, - [3704] = 2300, - [3705] = 2342, - [3706] = 2313, - [3707] = 2335, - [3708] = 2362, - [3709] = 2389, - [3710] = 2366, - [3711] = 2417, - [3712] = 2332, - [3713] = 2302, - [3714] = 2340, - [3715] = 2357, - [3716] = 2309, - [3717] = 2323, - [3718] = 2312, - [3719] = 2390, - [3720] = 2294, - [3721] = 2296, - [3722] = 2400, - [3723] = 2295, - [3724] = 2395, - [3725] = 2401, - [3726] = 2349, - [3727] = 2350, - [3728] = 2304, - [3729] = 2320, - [3730] = 2348, - [3731] = 2368, - [3732] = 2386, - [3733] = 2334, - [3734] = 2410, - [3735] = 2406, - [3736] = 2363, - [3737] = 2297, - [3738] = 2345, - [3739] = 2370, - [3740] = 2404, - [3741] = 2321, - [3742] = 2355, - [3743] = 2358, - [3744] = 2373, - [3745] = 2383, - [3746] = 2388, - [3747] = 2403, - [3748] = 2292, - [3749] = 2412, - [3750] = 2384, - [3751] = 2416, - [3752] = 2399, - [3753] = 2385, - [3754] = 2374, - [3755] = 2392, - [3756] = 2413, - [3757] = 2325, - [3758] = 2343, - [3759] = 2376, - [3760] = 2315, - [3761] = 2327, - [3762] = 2303, - [3763] = 2318, - [3764] = 2359, - [3765] = 2391, - [3766] = 2394, - [3767] = 2333, - [3768] = 2381, - [3769] = 2387, - [3770] = 2306, - [3771] = 2337, - [3772] = 2351, - [3773] = 2396, - [3774] = 2408, - [3775] = 2307, - [3776] = 2310, - [3777] = 2397, - [3778] = 2402, - [3779] = 2409, - [3780] = 2356, - [3781] = 2299, - [3782] = 2305, - [3783] = 2308, - [3784] = 2316, - [3785] = 2331, - [3786] = 2347, - [3787] = 2364, - [3788] = 2375, - [3789] = 3693, - [3790] = 3693, - [3791] = 336, - [3792] = 3693, - [3793] = 3693, - [3794] = 3693, - [3795] = 3693, - [3796] = 2415, - [3797] = 148, - [3798] = 1666, - [3799] = 146, - [3800] = 149, - [3801] = 147, - [3802] = 3802, - [3803] = 3803, - [3804] = 3804, - [3805] = 3805, - [3806] = 3804, - [3807] = 3803, - [3808] = 3804, - [3809] = 3803, - [3810] = 2380, - [3811] = 2298, - [3812] = 3812, - [3813] = 3812, - [3814] = 3812, - [3815] = 3812, - [3816] = 2353, - [3817] = 2367, - [3818] = 2369, - [3819] = 2371, - [3820] = 2380, - [3821] = 2393, - [3822] = 2405, - [3823] = 2411, - [3824] = 2414, - [3825] = 2293, - [3826] = 2298, - [3827] = 3812, - [3828] = 3812, - [3829] = 3812, - [3830] = 3812, - [3831] = 2353, - [3832] = 2367, - [3833] = 2369, - [3834] = 2371, - [3835] = 2378, - [3836] = 2393, - [3837] = 2405, - [3838] = 2411, - [3839] = 2414, - [3840] = 2293, - [3841] = 2378, - [3842] = 3842, - [3843] = 3843, - [3844] = 3843, - [3845] = 3845, - [3846] = 3846, - [3847] = 3847, - [3848] = 3848, - [3849] = 3849, - [3850] = 3843, - [3851] = 3843, - [3852] = 3843, - [3853] = 3853, - [3854] = 3854, - [3855] = 3855, - [3856] = 3842, - [3857] = 3843, - [3858] = 3858, - [3859] = 3859, - [3860] = 3860, + [3662] = 3662, + [3663] = 3663, + [3664] = 3664, + [3665] = 3665, + [3666] = 3666, + [3667] = 3667, + [3668] = 3668, + [3669] = 3653, + [3670] = 3670, + [3671] = 3671, + [3672] = 3672, + [3673] = 3653, + [3674] = 3674, + [3675] = 3653, + [3676] = 3676, + [3677] = 3653, + [3678] = 3678, + [3679] = 3653, + [3680] = 3680, + [3681] = 3681, + [3682] = 3668, + [3683] = 3670, + [3684] = 3678, + [3685] = 3685, + [3686] = 3686, + [3687] = 3687, + [3688] = 3688, + [3689] = 3689, + [3690] = 3687, + [3691] = 3688, + [3692] = 3692, + [3693] = 3686, + [3694] = 3689, + [3695] = 3685, + [3696] = 153, + [3697] = 3692, + [3698] = 210, + [3699] = 212, + [3700] = 213, + [3701] = 214, + [3702] = 210, + [3703] = 1626, + [3704] = 142, + [3705] = 213, + [3706] = 210, + [3707] = 141, + [3708] = 215, + [3709] = 214, + [3710] = 216, + [3711] = 324, + [3712] = 313, + [3713] = 311, + [3714] = 222, + [3715] = 143, + [3716] = 310, + [3717] = 1621, + [3718] = 212, + [3719] = 328, + [3720] = 1236, + [3721] = 231, + [3722] = 216, + [3723] = 212, + [3724] = 210, + [3725] = 229, + [3726] = 310, + [3727] = 313, + [3728] = 213, + [3729] = 222, + [3730] = 311, + [3731] = 214, + [3732] = 215, + [3733] = 334, + [3734] = 330, + [3735] = 336, + [3736] = 1236, + [3737] = 213, + [3738] = 326, + [3739] = 331, + [3740] = 216, + [3741] = 212, + [3742] = 214, + [3743] = 231, + [3744] = 215, + [3745] = 310, + [3746] = 311, + [3747] = 313, + [3748] = 222, + [3749] = 229, + [3750] = 329, + [3751] = 336, + [3752] = 329, + [3753] = 330, + [3754] = 364, + [3755] = 334, + [3756] = 216, + [3757] = 229, + [3758] = 210, + [3759] = 310, + [3760] = 311, + [3761] = 313, + [3762] = 222, + [3763] = 198, + [3764] = 215, + [3765] = 141, + [3766] = 231, + [3767] = 362, + [3768] = 326, + [3769] = 331, + [3770] = 1236, + [3771] = 200, + [3772] = 362, + [3773] = 364, + [3774] = 395, + [3775] = 324, + [3776] = 326, + [3777] = 424, + [3778] = 390, + [3779] = 410, + [3780] = 411, + [3781] = 416, + [3782] = 328, + [3783] = 212, + [3784] = 406, + [3785] = 329, + [3786] = 384, + [3787] = 231, + [3788] = 398, + [3789] = 214, + [3790] = 405, + [3791] = 379, + [3792] = 334, + [3793] = 420, + [3794] = 376, + [3795] = 141, + [3796] = 407, + [3797] = 374, + [3798] = 389, + [3799] = 331, + [3800] = 373, + [3801] = 213, + [3802] = 330, + [3803] = 336, + [3804] = 1236, + [3805] = 215, + [3806] = 149, + [3807] = 148, + [3808] = 388, + [3809] = 378, + [3810] = 216, + [3811] = 229, + [3812] = 151, + [3813] = 362, + [3814] = 152, + [3815] = 364, + [3816] = 1339, + [3817] = 231, + [3818] = 313, + [3819] = 1621, + [3820] = 142, + [3821] = 326, + [3822] = 329, + [3823] = 374, + [3824] = 222, + [3825] = 334, + [3826] = 336, + [3827] = 331, + [3828] = 324, + [3829] = 376, + [3830] = 289, + [3831] = 310, + [3832] = 328, + [3833] = 143, + [3834] = 384, + [3835] = 373, + [3836] = 334, + [3837] = 311, + [3838] = 229, + [3839] = 1626, + [3840] = 378, + [3841] = 336, + [3842] = 150, + [3843] = 379, + [3844] = 141, + [3845] = 330, + [3846] = 364, + [3847] = 364, + [3848] = 326, + [3849] = 146, + [3850] = 328, + [3851] = 149, + [3852] = 144, + [3853] = 373, + [3854] = 142, + [3855] = 147, + [3856] = 329, + [3857] = 148, + [3858] = 145, + [3859] = 336, + [3860] = 334, [3861] = 3861, - [3862] = 3862, - [3863] = 3863, - [3864] = 3864, - [3865] = 3865, + [3862] = 362, + [3863] = 330, + [3864] = 334, + [3865] = 376, [3866] = 3866, [3867] = 3867, [3868] = 3868, [3869] = 3869, - [3870] = 3870, - [3871] = 3871, - [3872] = 3872, - [3873] = 3873, - [3874] = 3874, - [3875] = 3875, - [3876] = 3876, - [3877] = 3855, - [3878] = 3878, - [3879] = 3879, - [3880] = 3845, - [3881] = 3846, - [3882] = 3882, - [3883] = 3883, - [3884] = 3882, - [3885] = 3885, - [3886] = 3883, - [3887] = 3887, - [3888] = 3888, - [3889] = 3885, - [3890] = 3890, - [3891] = 3888, - [3892] = 153, - [3893] = 3887, - [3894] = 3890, - [3895] = 210, - [3896] = 214, - [3897] = 210, - [3898] = 213, - [3899] = 211, - [3900] = 143, - [3901] = 1704, - [3902] = 211, - [3903] = 141, - [3904] = 1714, - [3905] = 327, - [3906] = 215, - [3907] = 335, - [3908] = 216, - [3909] = 213, - [3910] = 302, - [3911] = 313, - [3912] = 275, - [3913] = 223, - [3914] = 214, - [3915] = 142, - [3916] = 210, - [3917] = 216, - [3918] = 275, - [3919] = 213, - [3920] = 214, - [3921] = 223, - [3922] = 1327, - [3923] = 211, - [3924] = 312, - [3925] = 215, - [3926] = 210, - [3927] = 313, - [3928] = 302, - [3929] = 222, - [3930] = 215, - [3931] = 302, - [3932] = 313, - [3933] = 275, - [3934] = 223, - [3935] = 312, - [3936] = 216, - [3937] = 222, - [3938] = 334, - [3939] = 318, - [3940] = 336, - [3941] = 337, - [3942] = 1327, - [3943] = 315, - [3944] = 213, - [3945] = 211, - [3946] = 214, - [3947] = 331, - [3948] = 223, - [3949] = 1327, - [3950] = 222, - [3951] = 331, - [3952] = 313, - [3953] = 334, - [3954] = 210, - [3955] = 216, - [3956] = 312, - [3957] = 141, - [3958] = 315, - [3959] = 336, - [3960] = 337, - [3961] = 215, - [3962] = 275, - [3963] = 318, - [3964] = 338, - [3965] = 302, - [3966] = 199, - [3967] = 360, - [3968] = 334, - [3969] = 429, - [3970] = 394, - [3971] = 397, - [3972] = 386, - [3973] = 390, - [3974] = 393, - [3975] = 428, - [3976] = 406, - [3977] = 412, - [3978] = 423, - [3979] = 315, - [3980] = 425, - [3981] = 426, - [3982] = 369, - [3983] = 318, - [3984] = 1327, - [3985] = 200, - [3986] = 385, - [3987] = 370, - [3988] = 435, - [3989] = 222, - [3990] = 312, - [3991] = 391, - [3992] = 336, - [3993] = 327, - [3994] = 141, - [3995] = 145, - [3996] = 395, - [3997] = 211, - [3998] = 424, - [3999] = 216, - [4000] = 144, - [4001] = 213, - [4002] = 360, - [4003] = 337, - [4004] = 338, - [4005] = 331, - [4006] = 396, - [4007] = 214, - [4008] = 398, - [4009] = 399, - [4010] = 402, - [4011] = 384, - [4012] = 335, - [4013] = 404, - [4014] = 413, - [4015] = 371, - [4016] = 418, - [4017] = 215, - [4018] = 150, - [4019] = 318, - [4020] = 1704, - [4021] = 1408, - [4022] = 312, - [4023] = 338, - [4024] = 337, - [4025] = 222, - [4026] = 302, - [4027] = 315, - [4028] = 371, - [4029] = 313, - [4030] = 384, - [4031] = 152, - [4032] = 385, - [4033] = 318, - [4034] = 151, - [4035] = 370, - [4036] = 327, - [4037] = 1714, - [4038] = 143, - [4039] = 369, - [4040] = 334, - [4041] = 360, - [4042] = 276, - [4043] = 275, - [4044] = 331, - [4045] = 315, - [4046] = 223, - [4047] = 142, - [4048] = 386, - [4049] = 335, - [4050] = 336, - [4051] = 141, - [4052] = 472, + [3870] = 143, + [3871] = 331, + [3872] = 378, + [3873] = 1339, + [3874] = 324, + [3875] = 379, + [3876] = 384, + [3877] = 141, + [3878] = 336, + [3879] = 362, + [3880] = 3880, + [3881] = 451, + [3882] = 459, + [3883] = 455, + [3884] = 456, + [3885] = 457, + [3886] = 374, + [3887] = 455, + [3888] = 142, + [3889] = 364, + [3890] = 406, + [3891] = 148, + [3892] = 146, + [3893] = 3893, + [3894] = 384, + [3895] = 3895, + [3896] = 394, + [3897] = 364, + [3898] = 490, + [3899] = 334, + [3900] = 3900, + [3901] = 504, + [3902] = 376, + [3903] = 143, + [3904] = 362, + [3905] = 2515, + [3906] = 509, + [3907] = 378, + [3908] = 459, + [3909] = 424, + [3910] = 456, + [3911] = 457, + [3912] = 426, + [3913] = 3913, + [3914] = 500, + [3915] = 529, + [3916] = 3916, + [3917] = 477, + [3918] = 510, + [3919] = 388, + [3920] = 411, + [3921] = 149, + [3922] = 2510, + [3923] = 3880, + [3924] = 511, + [3925] = 150, + [3926] = 2551, + [3927] = 416, + [3928] = 376, + [3929] = 2522, + [3930] = 362, + [3931] = 151, + [3932] = 2536, + [3933] = 409, + [3934] = 373, + [3935] = 152, + [3936] = 390, + [3937] = 410, + [3938] = 3861, + [3939] = 398, + [3940] = 2523, + [3941] = 405, + [3942] = 3942, + [3943] = 420, + [3944] = 407, + [3945] = 378, + [3946] = 389, + [3947] = 216, + [3948] = 336, + [3949] = 395, + [3950] = 379, + [3951] = 374, + [3952] = 479, + [3953] = 373, + [3954] = 451, + [3955] = 141, + [3956] = 144, + [3957] = 145, + [3958] = 3866, + [3959] = 379, + [3960] = 497, + [3961] = 147, + [3962] = 3962, + [3963] = 2537, + [3964] = 384, + [3965] = 407, + [3966] = 389, + [3967] = 374, + [3968] = 3962, + [3969] = 529, + [3970] = 504, + [3971] = 509, + [3972] = 334, + [3973] = 364, + [3974] = 479, + [3975] = 500, + [3976] = 373, + [3977] = 477, + [3978] = 416, + [3979] = 376, + [3980] = 452, + [3981] = 378, + [3982] = 379, + [3983] = 146, + [3984] = 144, + [3985] = 147, + [3986] = 145, + [3987] = 3893, + [3988] = 406, + [3989] = 465, + [3990] = 510, + [3991] = 151, + [3992] = 152, + [3993] = 3895, + [3994] = 453, + [3995] = 3995, + [3996] = 150, + [3997] = 511, + [3998] = 153, + [3999] = 3999, + [4000] = 543, + [4001] = 395, + [4002] = 373, + [4003] = 394, + [4004] = 420, + [4005] = 4005, + [4006] = 4006, + [4007] = 409, + [4008] = 336, + [4009] = 376, + [4010] = 3942, + [4011] = 411, + [4012] = 378, + [4013] = 379, + [4014] = 1639, + [4015] = 426, + [4016] = 388, + [4017] = 3913, + [4018] = 3995, + [4019] = 424, + [4020] = 3995, + [4021] = 470, + [4022] = 4022, + [4023] = 390, + [4024] = 410, + [4025] = 4025, + [4026] = 398, + [4027] = 451, + [4028] = 455, + [4029] = 456, + [4030] = 457, + [4031] = 459, + [4032] = 497, + [4033] = 3995, + [4034] = 490, + [4035] = 362, + [4036] = 405, + [4037] = 4037, + [4038] = 4038, + [4039] = 4039, + [4040] = 4040, + [4041] = 497, + [4042] = 378, + [4043] = 4043, + [4044] = 4044, + [4045] = 364, + [4046] = 4046, + [4047] = 4047, + [4048] = 4048, + [4049] = 456, + [4050] = 411, + [4051] = 4051, + [4052] = 4052, [4053] = 4053, - [4054] = 327, - [4055] = 360, - [4056] = 384, + [4054] = 4054, + [4055] = 4055, + [4056] = 4056, [4057] = 4057, - [4058] = 146, - [4059] = 1408, - [4060] = 149, - [4061] = 141, - [4062] = 369, - [4063] = 4063, - [4064] = 331, - [4065] = 336, - [4066] = 337, - [4067] = 315, - [4068] = 370, + [4058] = 4058, + [4059] = 631, + [4060] = 4060, + [4061] = 4061, + [4062] = 4062, + [4063] = 479, + [4064] = 4064, + [4065] = 334, + [4066] = 4066, + [4067] = 4067, + [4068] = 4068, [4069] = 4069, - [4070] = 144, - [4071] = 145, - [4072] = 338, + [4070] = 4070, + [4071] = 4071, + [4072] = 4072, [4073] = 4073, - [4074] = 142, - [4075] = 318, - [4076] = 315, - [4077] = 147, - [4078] = 371, - [4079] = 143, - [4080] = 148, - [4081] = 386, - [4082] = 318, - [4083] = 335, - [4084] = 334, - [4085] = 385, - [4086] = 4086, - [4087] = 467, - [4088] = 360, - [4089] = 468, - [4090] = 469, - [4091] = 470, - [4092] = 338, - [4093] = 147, + [4074] = 4074, + [4075] = 4075, + [4076] = 4076, + [4077] = 4077, + [4078] = 4078, + [4079] = 4079, + [4080] = 4080, + [4081] = 4081, + [4082] = 4082, + [4083] = 4083, + [4084] = 4084, + [4085] = 1531, + [4086] = 1533, + [4087] = 4087, + [4088] = 4088, + [4089] = 4089, + [4090] = 4090, + [4091] = 4091, + [4092] = 4092, + [4093] = 4093, [4094] = 4094, - [4095] = 393, - [4096] = 435, - [4097] = 371, - [4098] = 426, - [4099] = 391, - [4100] = 2621, - [4101] = 395, - [4102] = 548, - [4103] = 521, - [4104] = 542, - [4105] = 4069, - [4106] = 150, - [4107] = 142, - [4108] = 4073, - [4109] = 318, - [4110] = 4110, - [4111] = 360, - [4112] = 386, - [4113] = 400, - [4114] = 2633, - [4115] = 416, + [4095] = 4095, + [4096] = 4096, + [4097] = 4097, + [4098] = 4098, + [4099] = 4099, + [4100] = 4100, + [4101] = 4101, + [4102] = 4102, + [4103] = 4103, + [4104] = 4104, + [4105] = 4105, + [4106] = 4106, + [4107] = 336, + [4108] = 4108, + [4109] = 4109, + [4110] = 4025, + [4111] = 4111, + [4112] = 4112, + [4113] = 4113, + [4114] = 4114, + [4115] = 4115, [4116] = 4116, [4117] = 4117, - [4118] = 338, - [4119] = 2614, + [4118] = 4118, + [4119] = 4119, [4120] = 4120, - [4121] = 152, - [4122] = 151, - [4123] = 4063, - [4124] = 2632, - [4125] = 424, - [4126] = 143, - [4127] = 467, - [4128] = 141, - [4129] = 496, - [4130] = 396, - [4131] = 398, - [4132] = 399, - [4133] = 371, - [4134] = 384, - [4135] = 385, - [4136] = 384, - [4137] = 545, - [4138] = 402, - [4139] = 360, - [4140] = 415, - [4141] = 338, - [4142] = 144, - [4143] = 145, + [4121] = 4121, + [4122] = 4122, + [4123] = 4123, + [4124] = 4124, + [4125] = 4125, + [4126] = 4126, + [4127] = 623, + [4128] = 4128, + [4129] = 153, + [4130] = 4130, + [4131] = 379, + [4132] = 632, + [4133] = 612, + [4134] = 633, + [4135] = 529, + [4136] = 490, + [4137] = 635, + [4138] = 457, + [4139] = 1527, + [4140] = 4140, + [4141] = 4141, + [4142] = 4142, + [4143] = 4143, [4144] = 4144, - [4145] = 541, - [4146] = 369, - [4147] = 404, - [4148] = 385, - [4149] = 494, - [4150] = 497, - [4151] = 503, - [4152] = 2647, - [4153] = 506, - [4154] = 413, - [4155] = 418, - [4156] = 428, - [4157] = 429, - [4158] = 394, - [4159] = 397, - [4160] = 315, - [4161] = 406, - [4162] = 390, - [4163] = 472, - [4164] = 370, - [4165] = 468, - [4166] = 469, - [4167] = 470, - [4168] = 412, - [4169] = 423, - [4170] = 146, - [4171] = 148, - [4172] = 216, - [4173] = 2642, - [4174] = 425, - [4175] = 2643, - [4176] = 4176, - [4177] = 149, - [4178] = 370, - [4179] = 146, - [4180] = 385, - [4181] = 370, - [4182] = 4182, - [4183] = 426, - [4184] = 413, - [4185] = 429, - [4186] = 4120, - [4187] = 147, + [4145] = 4145, + [4146] = 4146, + [4147] = 362, + [4148] = 500, + [4149] = 477, + [4150] = 4150, + [4151] = 4151, + [4152] = 616, + [4153] = 617, + [4154] = 465, + [4155] = 4155, + [4156] = 4156, + [4157] = 636, + [4158] = 455, + [4159] = 4159, + [4160] = 336, + [4161] = 504, + [4162] = 509, + [4163] = 639, + [4164] = 620, + [4165] = 4165, + [4166] = 4166, + [4167] = 4167, + [4168] = 621, + [4169] = 622, + [4170] = 4170, + [4171] = 470, + [4172] = 1556, + [4173] = 1557, + [4174] = 4083, + [4175] = 4175, + [4176] = 630, + [4177] = 643, + [4178] = 459, + [4179] = 644, + [4180] = 510, + [4181] = 4181, + [4182] = 376, + [4183] = 4183, + [4184] = 451, + [4185] = 4185, + [4186] = 4186, + [4187] = 4187, [4188] = 4188, [4189] = 4189, - [4190] = 442, - [4191] = 4144, - [4192] = 396, - [4193] = 4182, - [4194] = 148, - [4195] = 384, - [4196] = 149, - [4197] = 399, - [4198] = 1666, + [4190] = 4190, + [4191] = 4191, + [4192] = 4192, + [4193] = 424, + [4194] = 416, + [4195] = 406, + [4196] = 388, + [4197] = 390, + [4198] = 410, [4199] = 398, - [4200] = 425, - [4201] = 394, - [4202] = 542, - [4203] = 418, - [4204] = 360, - [4205] = 152, - [4206] = 386, - [4207] = 541, - [4208] = 397, - [4209] = 385, - [4210] = 370, - [4211] = 4182, - [4212] = 441, - [4213] = 151, - [4214] = 494, - [4215] = 497, - [4216] = 404, - [4217] = 153, - [4218] = 4117, - [4219] = 369, - [4220] = 338, - [4221] = 4182, - [4222] = 402, - [4223] = 371, + [4200] = 405, + [4201] = 420, + [4202] = 407, + [4203] = 389, + [4204] = 395, + [4205] = 4205, + [4206] = 4206, + [4207] = 4207, + [4208] = 4208, + [4209] = 4209, + [4210] = 4210, + [4211] = 4211, + [4212] = 453, + [4213] = 4213, + [4214] = 4214, + [4215] = 571, + [4216] = 572, + [4217] = 1639, + [4218] = 4218, + [4219] = 573, + [4220] = 574, + [4221] = 575, + [4222] = 578, + [4223] = 579, [4224] = 4224, - [4225] = 400, - [4226] = 371, - [4227] = 503, - [4228] = 406, - [4229] = 390, - [4230] = 150, + [4225] = 452, + [4226] = 373, + [4227] = 4227, + [4228] = 4228, + [4229] = 1553, + [4230] = 4230, [4231] = 4231, [4232] = 4232, - [4233] = 506, - [4234] = 391, - [4235] = 395, - [4236] = 467, - [4237] = 468, - [4238] = 469, - [4239] = 470, - [4240] = 472, - [4241] = 415, - [4242] = 465, - [4243] = 428, - [4244] = 4110, - [4245] = 4245, - [4246] = 416, - [4247] = 545, - [4248] = 4116, - [4249] = 439, - [4250] = 318, - [4251] = 384, - [4252] = 424, - [4253] = 435, - [4254] = 412, - [4255] = 423, - [4256] = 315, - [4257] = 496, - [4258] = 587, - [4259] = 548, - [4260] = 521, - [4261] = 393, - [4262] = 637, + [4233] = 4233, + [4234] = 4234, + [4235] = 511, + [4236] = 4236, + [4237] = 4237, + [4238] = 4238, + [4239] = 4239, + [4240] = 1533, + [4241] = 451, + [4242] = 4242, + [4243] = 490, + [4244] = 1854, + [4245] = 479, + [4246] = 364, + [4247] = 4189, + [4248] = 4166, + [4249] = 373, + [4250] = 1639, + [4251] = 4251, + [4252] = 4128, + [4253] = 497, + [4254] = 1531, + [4255] = 1626, + [4256] = 1621, + [4257] = 459, + [4258] = 4206, + [4259] = 453, + [4260] = 216, + [4261] = 4261, + [4262] = 215, [4263] = 4263, [4264] = 4264, - [4265] = 648, + [4265] = 4265, [4266] = 4266, - [4267] = 4267, - [4268] = 4268, - [4269] = 4269, + [4267] = 4210, + [4268] = 1527, + [4269] = 4099, [4270] = 4270, [4271] = 4271, - [4272] = 4272, - [4273] = 4273, - [4274] = 4274, - [4275] = 4275, - [4276] = 4276, + [4272] = 4265, + [4273] = 4214, + [4274] = 376, + [4275] = 470, + [4276] = 4183, [4277] = 4277, [4278] = 4278, [4279] = 4279, [4280] = 4280, - [4281] = 1636, - [4282] = 1637, + [4281] = 4279, + [4282] = 4282, [4283] = 4283, - [4284] = 4284, - [4285] = 4285, - [4286] = 4286, - [4287] = 4287, - [4288] = 4288, - [4289] = 4289, + [4284] = 529, + [4285] = 543, + [4286] = 4280, + [4287] = 153, + [4288] = 336, + [4289] = 4283, [4290] = 4290, - [4291] = 4291, - [4292] = 4292, - [4293] = 4293, - [4294] = 4294, - [4295] = 4295, - [4296] = 4296, - [4297] = 4297, - [4298] = 4298, - [4299] = 1641, - [4300] = 1647, - [4301] = 636, - [4302] = 4302, - [4303] = 442, - [4304] = 4304, - [4305] = 4305, - [4306] = 4306, - [4307] = 4307, - [4308] = 4308, - [4309] = 4309, + [4291] = 4218, + [4292] = 4117, + [4293] = 1589, + [4294] = 452, + [4295] = 1581, + [4296] = 500, + [4297] = 378, + [4298] = 1556, + [4299] = 1553, + [4300] = 4145, + [4301] = 379, + [4302] = 455, + [4303] = 4130, + [4304] = 4140, + [4305] = 4151, + [4306] = 4165, + [4307] = 456, + [4308] = 465, + [4309] = 457, [4310] = 4310, - [4311] = 4311, - [4312] = 4312, - [4313] = 644, - [4314] = 4314, - [4315] = 4315, - [4316] = 4316, - [4317] = 4317, - [4318] = 315, - [4319] = 4319, - [4320] = 4320, - [4321] = 4321, - [4322] = 649, - [4323] = 4323, + [4311] = 477, + [4312] = 4066, + [4313] = 362, + [4314] = 4044, + [4315] = 4109, + [4316] = 504, + [4317] = 510, + [4318] = 4143, + [4319] = 1557, + [4320] = 511, + [4321] = 509, + [4322] = 4116, + [4323] = 4190, [4324] = 4324, - [4325] = 4325, - [4326] = 4326, - [4327] = 635, - [4328] = 4328, + [4325] = 4146, + [4326] = 500, + [4327] = 4290, + [4328] = 2522, [4329] = 4329, - [4330] = 4330, + [4330] = 621, [4331] = 4331, - [4332] = 631, - [4333] = 506, + [4332] = 1589, + [4333] = 4333, [4334] = 4334, - [4335] = 4335, - [4336] = 643, - [4337] = 4232, - [4338] = 467, - [4339] = 318, + [4335] = 617, + [4336] = 580, + [4337] = 4337, + [4338] = 596, + [4339] = 597, [4340] = 4340, - [4341] = 4341, - [4342] = 646, - [4343] = 4343, - [4344] = 496, - [4345] = 4345, - [4346] = 1666, - [4347] = 371, + [4341] = 376, + [4342] = 4342, + [4343] = 598, + [4344] = 4344, + [4345] = 378, + [4346] = 2523, + [4347] = 4347, [4348] = 4348, [4349] = 4349, - [4350] = 439, - [4351] = 4351, - [4352] = 650, - [4353] = 338, + [4350] = 2510, + [4351] = 643, + [4352] = 573, + [4353] = 4353, [4354] = 4354, - [4355] = 4355, - [4356] = 545, - [4357] = 542, - [4358] = 468, - [4359] = 469, - [4360] = 470, - [4361] = 503, - [4362] = 4362, - [4363] = 465, - [4364] = 4364, + [4355] = 529, + [4356] = 590, + [4357] = 4349, + [4358] = 4263, + [4359] = 1808, + [4360] = 1809, + [4361] = 543, + [4362] = 575, + [4363] = 4363, + [4364] = 2551, [4365] = 4365, - [4366] = 651, - [4367] = 548, - [4368] = 384, - [4369] = 318, - [4370] = 360, - [4371] = 521, - [4372] = 647, - [4373] = 4373, - [4374] = 4374, - [4375] = 4375, + [4366] = 4366, + [4367] = 635, + [4368] = 1854, + [4369] = 2523, + [4370] = 4370, + [4371] = 644, + [4372] = 229, + [4373] = 477, + [4374] = 2551, + [4375] = 620, [4376] = 4376, - [4377] = 385, - [4378] = 4378, - [4379] = 4378, + [4377] = 4377, + [4378] = 1626, + [4379] = 622, [4380] = 4380, - [4381] = 4381, + [4381] = 1621, [4382] = 4382, - [4383] = 4383, - [4384] = 4384, - [4385] = 633, - [4386] = 634, - [4387] = 1607, - [4388] = 441, - [4389] = 652, + [4383] = 623, + [4384] = 2515, + [4385] = 4385, + [4386] = 215, + [4387] = 504, + [4388] = 581, + [4389] = 1639, [4390] = 4390, - [4391] = 370, - [4392] = 4392, - [4393] = 653, + [4391] = 4391, + [4392] = 584, + [4393] = 585, [4394] = 4394, [4395] = 4395, [4396] = 4396, - [4397] = 654, + [4397] = 231, [4398] = 4398, - [4399] = 4399, - [4400] = 4400, - [4401] = 4401, + [4399] = 595, + [4400] = 578, + [4401] = 1798, [4402] = 4402, [4403] = 4403, - [4404] = 655, - [4405] = 656, - [4406] = 4406, - [4407] = 4407, + [4404] = 4324, + [4405] = 1799, + [4406] = 612, + [4407] = 570, [4408] = 4408, - [4409] = 4409, - [4410] = 4410, - [4411] = 428, - [4412] = 435, - [4413] = 390, - [4414] = 391, - [4415] = 395, - [4416] = 396, - [4417] = 398, - [4418] = 399, - [4419] = 402, - [4420] = 404, - [4421] = 413, - [4422] = 418, - [4423] = 429, - [4424] = 394, - [4425] = 397, - [4426] = 406, - [4427] = 412, - [4428] = 423, - [4429] = 425, - [4430] = 426, - [4431] = 393, - [4432] = 4432, + [4409] = 615, + [4410] = 2510, + [4411] = 592, + [4412] = 490, + [4413] = 4413, + [4414] = 4414, + [4415] = 4415, + [4416] = 4416, + [4417] = 1720, + [4418] = 593, + [4419] = 4419, + [4420] = 4420, + [4421] = 4421, + [4422] = 4422, + [4423] = 594, + [4424] = 4424, + [4425] = 4261, + [4426] = 2515, + [4427] = 4427, + [4428] = 4428, + [4429] = 602, + [4430] = 336, + [4431] = 4431, + [4432] = 1855, [4433] = 4433, - [4434] = 658, - [4435] = 659, - [4436] = 660, - [4437] = 661, - [4438] = 662, - [4439] = 4439, - [4440] = 663, - [4441] = 4441, - [4442] = 4442, - [4443] = 4443, - [4444] = 4444, - [4445] = 664, - [4446] = 588, + [4434] = 4242, + [4435] = 373, + [4436] = 603, + [4437] = 492, + [4438] = 495, + [4439] = 510, + [4440] = 2417, + [4441] = 631, + [4442] = 479, + [4443] = 574, + [4444] = 379, + [4445] = 210, + [4446] = 633, [4447] = 4447, - [4448] = 666, - [4449] = 4449, - [4450] = 4450, - [4451] = 642, - [4452] = 4452, - [4453] = 4453, - [4454] = 472, + [4448] = 1683, + [4449] = 511, + [4450] = 1691, + [4451] = 616, + [4452] = 4270, + [4453] = 579, + [4454] = 4277, [4455] = 4455, - [4456] = 667, - [4457] = 668, - [4458] = 4458, - [4459] = 4459, - [4460] = 4460, - [4461] = 4461, - [4462] = 4462, - [4463] = 541, - [4464] = 4464, - [4465] = 4465, - [4466] = 4466, + [4456] = 632, + [4457] = 639, + [4458] = 498, + [4459] = 618, + [4460] = 1860, + [4461] = 582, + [4462] = 499, + [4463] = 2522, + [4464] = 4282, + [4465] = 604, + [4466] = 605, [4467] = 4467, - [4468] = 153, - [4469] = 4469, + [4468] = 636, + [4469] = 606, [4470] = 4470, [4471] = 4471, - [4472] = 4472, - [4473] = 4473, - [4474] = 424, - [4475] = 4475, - [4476] = 4476, - [4477] = 4477, - [4478] = 494, - [4479] = 1604, - [4480] = 497, - [4481] = 640, + [4472] = 630, + [4473] = 607, + [4474] = 608, + [4475] = 509, + [4476] = 571, + [4477] = 572, + [4478] = 583, + [4479] = 1581, + [4480] = 4480, + [4481] = 216, [4482] = 4482, - [4483] = 4316, - [4484] = 4484, - [4485] = 4345, - [4486] = 1742, - [4487] = 545, - [4488] = 4329, - [4489] = 4296, - [4490] = 542, - [4491] = 4305, - [4492] = 318, - [4493] = 4325, + [4483] = 4483, + [4484] = 497, + [4485] = 4485, + [4486] = 4486, + [4487] = 1855, + [4488] = 1860, + [4489] = 4329, + [4490] = 2523, + [4491] = 1683, + [4492] = 1691, + [4493] = 4493, [4494] = 4494, - [4495] = 467, - [4496] = 439, - [4497] = 548, - [4498] = 541, - [4499] = 465, - [4500] = 521, - [4501] = 4501, - [4502] = 384, - [4503] = 371, - [4504] = 4326, - [4505] = 4505, - [4506] = 441, - [4507] = 4507, - [4508] = 506, - [4509] = 494, - [4510] = 4510, - [4511] = 1641, - [4512] = 4512, - [4513] = 4376, - [4514] = 4510, - [4515] = 4515, - [4516] = 360, - [4517] = 1607, - [4518] = 442, - [4519] = 497, - [4520] = 472, - [4521] = 4521, - [4522] = 4398, - [4523] = 503, - [4524] = 153, - [4525] = 4400, - [4526] = 4526, - [4527] = 4455, - [4528] = 1604, - [4529] = 468, - [4530] = 4530, - [4531] = 1647, - [4532] = 338, - [4533] = 4533, - [4534] = 4354, - [4535] = 4466, - [4536] = 587, - [4537] = 215, - [4538] = 469, - [4539] = 1666, - [4540] = 4472, - [4541] = 4541, + [4495] = 632, + [4496] = 612, + [4497] = 633, + [4498] = 580, + [4499] = 581, + [4500] = 590, + [4501] = 582, + [4502] = 583, + [4503] = 212, + [4504] = 616, + [4505] = 617, + [4506] = 636, + [4507] = 584, + [4508] = 585, + [4509] = 592, + [4510] = 593, + [4511] = 594, + [4512] = 595, + [4513] = 1798, + [4514] = 1799, + [4515] = 639, + [4516] = 621, + [4517] = 596, + [4518] = 597, + [4519] = 598, + [4520] = 643, + [4521] = 1808, + [4522] = 1809, + [4523] = 213, + [4524] = 644, + [4525] = 602, + [4526] = 603, + [4527] = 604, + [4528] = 605, + [4529] = 606, + [4530] = 607, + [4531] = 608, + [4532] = 571, + [4533] = 572, + [4534] = 573, + [4535] = 574, + [4536] = 575, + [4537] = 578, + [4538] = 579, + [4539] = 620, + [4540] = 622, + [4541] = 623, [4542] = 4542, - [4543] = 4476, - [4544] = 4544, - [4545] = 4515, - [4546] = 4373, - [4547] = 4375, - [4548] = 4381, - [4549] = 4273, - [4550] = 4394, + [4543] = 4543, + [4544] = 4427, + [4545] = 4431, + [4546] = 4467, + [4547] = 4395, + [4548] = 4398, + [4549] = 4482, + [4550] = 4390, [4551] = 4551, - [4552] = 370, - [4553] = 4274, - [4554] = 1704, - [4555] = 4555, - [4556] = 1636, - [4557] = 4288, - [4558] = 1637, - [4559] = 4512, - [4560] = 470, - [4561] = 1856, - [4562] = 385, - [4563] = 1714, - [4564] = 4494, - [4565] = 1730, - [4566] = 216, - [4567] = 496, - [4568] = 648, - [4569] = 624, - [4570] = 625, - [4571] = 626, - [4572] = 1666, + [4552] = 4552, + [4553] = 4553, + [4554] = 214, + [4555] = 630, + [4556] = 229, + [4557] = 4557, + [4558] = 231, + [4559] = 326, + [4560] = 329, + [4561] = 330, + [4562] = 331, + [4563] = 4563, + [4564] = 631, + [4565] = 2515, + [4566] = 4566, + [4567] = 4567, + [4568] = 2551, + [4569] = 2522, + [4570] = 214, + [4571] = 4571, + [4572] = 4572, [4573] = 4573, - [4574] = 4574, - [4575] = 627, - [4576] = 628, - [4577] = 629, - [4578] = 630, - [4579] = 2614, - [4580] = 655, - [4581] = 666, - [4582] = 651, + [4574] = 2429, + [4575] = 4575, + [4576] = 210, + [4577] = 570, + [4578] = 615, + [4579] = 4414, + [4580] = 4580, + [4581] = 4571, + [4582] = 4572, [4583] = 4583, - [4584] = 4501, - [4585] = 4585, + [4584] = 546, + [4585] = 558, [4586] = 4586, [4587] = 4587, [4588] = 4588, - [4589] = 667, - [4590] = 635, - [4591] = 656, - [4592] = 653, - [4593] = 637, - [4594] = 4521, - [4595] = 2621, - [4596] = 589, - [4597] = 4551, + [4589] = 4493, + [4590] = 4494, + [4591] = 4591, + [4592] = 210, + [4593] = 4344, + [4594] = 4594, + [4595] = 618, + [4596] = 4480, + [4597] = 4597, [4598] = 4598, - [4599] = 665, - [4600] = 4600, + [4599] = 4599, + [4600] = 2440, [4601] = 4601, - [4602] = 668, - [4603] = 642, - [4604] = 4541, - [4605] = 545, + [4602] = 566, + [4603] = 4603, + [4604] = 4604, + [4605] = 4605, [4606] = 4606, - [4607] = 548, - [4608] = 521, - [4609] = 4609, - [4610] = 1730, - [4611] = 4611, - [4612] = 4612, - [4613] = 2642, - [4614] = 2643, - [4615] = 640, - [4616] = 658, - [4617] = 659, - [4618] = 4618, - [4619] = 2647, - [4620] = 652, - [4621] = 660, - [4622] = 620, - [4623] = 215, - [4624] = 621, - [4625] = 669, - [4626] = 661, - [4627] = 216, - [4628] = 312, - [4629] = 670, + [4607] = 214, + [4608] = 395, + [4609] = 424, + [4610] = 411, + [4611] = 416, + [4612] = 406, + [4613] = 388, + [4614] = 390, + [4615] = 410, + [4616] = 398, + [4617] = 405, + [4618] = 420, + [4619] = 407, + [4620] = 389, + [4621] = 4621, + [4622] = 4622, + [4623] = 2510, + [4624] = 1339, + [4625] = 4625, + [4626] = 4626, + [4627] = 4627, + [4628] = 4628, + [4629] = 4629, [4630] = 4630, - [4631] = 4631, + [4631] = 141, [4632] = 4632, - [4633] = 4633, - [4634] = 496, - [4635] = 622, - [4636] = 222, + [4633] = 4344, + [4634] = 4634, + [4635] = 4573, + [4636] = 4636, [4637] = 4637, - [4638] = 643, - [4639] = 649, - [4640] = 662, - [4641] = 597, - [4642] = 598, + [4638] = 4638, + [4639] = 4639, + [4640] = 4640, + [4641] = 4641, + [4642] = 4642, [4643] = 4643, [4644] = 4644, [4645] = 4645, - [4646] = 371, - [4647] = 4507, + [4646] = 4646, + [4647] = 4647, [4648] = 4648, - [4649] = 384, - [4650] = 4650, - [4651] = 2614, - [4652] = 385, - [4653] = 370, - [4654] = 4542, + [4649] = 4626, + [4650] = 4627, + [4651] = 4651, + [4652] = 4628, + [4653] = 4653, + [4654] = 4654, [4655] = 4655, - [4656] = 1940, + [4656] = 4656, [4657] = 4657, [4658] = 4658, - [4659] = 587, - [4660] = 2525, + [4659] = 4659, + [4660] = 4660, [4661] = 4661, - [4662] = 654, - [4663] = 1895, + [4662] = 4662, + [4663] = 4663, [4664] = 4664, - [4665] = 1856, - [4666] = 2621, + [4665] = 4665, + [4666] = 4666, [4667] = 4667, [4668] = 4668, [4669] = 4669, - [4670] = 210, - [4671] = 542, - [4672] = 541, - [4673] = 663, - [4674] = 599, + [4670] = 4670, + [4671] = 4671, + [4672] = 4672, + [4673] = 4673, + [4674] = 4674, [4675] = 4675, - [4676] = 2642, - [4677] = 2643, + [4676] = 4676, + [4677] = 4677, [4678] = 4678, [4679] = 4679, - [4680] = 1905, - [4681] = 1908, + [4680] = 4680, + [4681] = 4681, [4682] = 4682, - [4683] = 664, + [4683] = 4683, [4684] = 4684, - [4685] = 2647, + [4685] = 4685, [4686] = 4686, [4687] = 4687, - [4688] = 1911, - [4689] = 1915, - [4690] = 4690, - [4691] = 1946, + [4688] = 4688, + [4689] = 4689, + [4690] = 4573, + [4691] = 4691, [4692] = 4692, - [4693] = 4693, - [4694] = 4694, - [4695] = 494, - [4696] = 497, - [4697] = 4697, - [4698] = 1947, - [4699] = 4699, - [4700] = 503, - [4701] = 507, - [4702] = 4702, - [4703] = 672, - [4704] = 644, - [4705] = 508, - [4706] = 631, - [4707] = 4707, - [4708] = 4708, - [4709] = 646, - [4710] = 673, - [4711] = 506, + [4693] = 1689, + [4694] = 1711, + [4695] = 1720, + [4696] = 4333, + [4697] = 4413, + [4698] = 4415, + [4699] = 4416, + [4700] = 4385, + [4701] = 4334, + [4702] = 4391, + [4703] = 4396, + [4704] = 4348, + [4705] = 4408, + [4706] = 4382, + [4707] = 4455, + [4708] = 2417, + [4709] = 635, + [4710] = 4710, + [4711] = 4711, [4712] = 4712, - [4713] = 650, - [4714] = 509, - [4715] = 510, - [4716] = 1704, - [4717] = 647, - [4718] = 4482, - [4719] = 636, - [4720] = 614, - [4721] = 4573, - [4722] = 1742, - [4723] = 1714, - [4724] = 4724, - [4725] = 633, - [4726] = 634, - [4727] = 588, - [4728] = 318, - [4729] = 4555, - [4730] = 615, - [4731] = 616, - [4732] = 617, - [4733] = 619, - [4734] = 1939, + [4713] = 4713, + [4714] = 310, + [4715] = 4606, + [4716] = 1339, + [4717] = 4717, + [4718] = 326, + [4719] = 4344, + [4720] = 4720, + [4721] = 215, + [4722] = 310, + [4723] = 311, + [4724] = 313, + [4725] = 222, + [4726] = 2602, + [4727] = 329, + [4728] = 4728, + [4729] = 330, + [4730] = 4567, + [4731] = 331, + [4732] = 4732, + [4733] = 4733, + [4734] = 4734, [4735] = 4735, - [4736] = 4736, - [4737] = 4737, - [4738] = 4738, - [4739] = 553, - [4740] = 4618, - [4741] = 554, + [4736] = 4710, + [4737] = 215, + [4738] = 213, + [4739] = 4621, + [4740] = 4551, + [4741] = 4741, [4742] = 4742, [4743] = 4743, [4744] = 4744, - [4745] = 4745, - [4746] = 4746, - [4747] = 4747, + [4745] = 1689, + [4746] = 1711, + [4747] = 311, [4748] = 4748, - [4749] = 4644, - [4750] = 4679, - [4751] = 4751, - [4752] = 4686, - [4753] = 599, - [4754] = 4675, - [4755] = 4687, - [4756] = 637, - [4757] = 210, - [4758] = 4758, - [4759] = 4759, - [4760] = 4692, + [4749] = 1211, + [4750] = 313, + [4751] = 222, + [4752] = 580, + [4753] = 581, + [4754] = 4542, + [4755] = 4552, + [4756] = 4756, + [4757] = 4543, + [4758] = 582, + [4759] = 583, + [4760] = 4760, [4761] = 4761, - [4762] = 4693, - [4763] = 2525, - [4764] = 4764, - [4765] = 4765, + [4762] = 584, + [4763] = 585, + [4764] = 4622, + [4765] = 4580, [4766] = 4766, - [4767] = 1905, - [4768] = 1908, - [4769] = 214, - [4770] = 393, - [4771] = 428, - [4772] = 424, - [4773] = 435, - [4774] = 390, - [4775] = 391, - [4776] = 395, - [4777] = 396, - [4778] = 398, - [4779] = 399, - [4780] = 402, - [4781] = 404, - [4782] = 413, - [4783] = 418, - [4784] = 429, - [4785] = 394, - [4786] = 397, - [4787] = 406, - [4788] = 412, - [4789] = 423, - [4790] = 425, - [4791] = 426, - [4792] = 4792, + [4767] = 143, + [4768] = 142, + [4769] = 4583, + [4770] = 4770, + [4771] = 4771, + [4772] = 4772, + [4773] = 4773, + [4774] = 4774, + [4775] = 4775, + [4776] = 3012, + [4777] = 4777, + [4778] = 310, + [4779] = 4779, + [4780] = 4780, + [4781] = 4575, + [4782] = 2417, + [4783] = 4783, + [4784] = 4784, + [4785] = 4711, + [4786] = 4586, + [4787] = 215, + [4788] = 4553, + [4789] = 4789, + [4790] = 4790, + [4791] = 4791, + [4792] = 4603, [4793] = 4793, [4794] = 4794, [4795] = 4795, [4796] = 4796, - [4797] = 4797, - [4798] = 312, - [4799] = 1911, - [4800] = 1915, - [4801] = 4801, - [4802] = 4802, + [4797] = 4597, + [4798] = 4598, + [4799] = 4799, + [4800] = 4599, + [4801] = 4601, + [4802] = 590, [4803] = 4803, - [4804] = 2614, + [4804] = 4804, [4805] = 4805, [4806] = 4806, - [4807] = 222, - [4808] = 4808, - [4809] = 4809, - [4810] = 4810, - [4811] = 331, - [4812] = 4812, - [4813] = 334, + [4807] = 4807, + [4808] = 212, + [4809] = 4744, + [4810] = 592, + [4811] = 593, + [4812] = 594, + [4813] = 595, [4814] = 4814, [4815] = 4815, - [4816] = 336, - [4817] = 4817, - [4818] = 337, - [4819] = 4819, - [4820] = 4820, - [4821] = 597, - [4822] = 2553, - [4823] = 4823, - [4824] = 4824, - [4825] = 555, - [4826] = 4826, - [4827] = 4827, - [4828] = 4828, - [4829] = 4829, - [4830] = 4694, - [4831] = 4697, + [4816] = 4816, + [4817] = 596, + [4818] = 597, + [4819] = 598, + [4820] = 213, + [4821] = 602, + [4822] = 603, + [4823] = 4333, + [4824] = 604, + [4825] = 605, + [4826] = 606, + [4827] = 607, + [4828] = 608, + [4829] = 4413, + [4830] = 4415, + [4831] = 4416, [4832] = 4832, [4833] = 4833, - [4834] = 4834, - [4835] = 4835, - [4836] = 4836, - [4837] = 4837, + [4834] = 4385, + [4835] = 4334, + [4836] = 4391, + [4837] = 4396, [4838] = 4838, [4839] = 4839, - [4840] = 4840, - [4841] = 4841, - [4842] = 4842, + [4840] = 4348, + [4841] = 4408, + [4842] = 4382, [4843] = 4843, - [4844] = 4844, + [4844] = 216, [4845] = 4845, [4846] = 4846, - [4847] = 4847, - [4848] = 4848, + [4847] = 4455, + [4848] = 216, [4849] = 4849, - [4850] = 644, - [4851] = 631, + [4850] = 4850, + [4851] = 4741, [4852] = 4852, [4853] = 4853, - [4854] = 2554, + [4854] = 4854, [4855] = 4855, - [4856] = 646, - [4857] = 669, - [4858] = 670, + [4856] = 4856, + [4857] = 216, + [4858] = 4604, [4859] = 4859, - [4860] = 2642, - [4861] = 647, - [4862] = 614, - [4863] = 672, - [4864] = 673, - [4865] = 4865, - [4866] = 4866, - [4867] = 2643, - [4868] = 4868, - [4869] = 4618, - [4870] = 211, - [4871] = 141, - [4872] = 4872, - [4873] = 633, - [4874] = 634, - [4875] = 210, - [4876] = 648, - [4877] = 4737, - [4878] = 4712, - [4879] = 589, - [4880] = 665, - [4881] = 615, - [4882] = 616, - [4883] = 617, - [4884] = 619, - [4885] = 1939, - [4886] = 1940, + [4860] = 4860, + [4861] = 4566, + [4862] = 4862, + [4863] = 212, + [4864] = 4563, + [4865] = 311, + [4866] = 313, + [4867] = 222, + [4868] = 216, + [4869] = 4869, + [4870] = 4799, + [4871] = 2440, + [4872] = 4741, + [4873] = 4873, + [4874] = 4874, + [4875] = 215, + [4876] = 4876, + [4877] = 4573, + [4878] = 4878, + [4879] = 4879, + [4880] = 4605, + [4881] = 2429, + [4882] = 4882, + [4883] = 4883, + [4884] = 4884, + [4885] = 4885, + [4886] = 4886, [4887] = 4887, [4888] = 4888, - [4889] = 636, - [4890] = 620, - [4891] = 621, - [4892] = 622, - [4893] = 649, + [4889] = 4889, + [4890] = 1236, + [4891] = 4891, + [4892] = 4892, + [4893] = 4893, [4894] = 4894, - [4895] = 643, - [4896] = 1946, - [4897] = 1947, - [4898] = 213, - [4899] = 650, - [4900] = 624, - [4901] = 625, - [4902] = 626, - [4903] = 627, - [4904] = 628, - [4905] = 629, - [4906] = 630, - [4907] = 651, - [4908] = 652, - [4909] = 4909, - [4910] = 4910, - [4911] = 653, - [4912] = 654, - [4913] = 4913, - [4914] = 655, - [4915] = 656, - [4916] = 658, - [4917] = 659, - [4918] = 660, - [4919] = 661, - [4920] = 662, - [4921] = 663, - [4922] = 4909, - [4923] = 4910, - [4924] = 4913, - [4925] = 664, - [4926] = 588, - [4927] = 666, - [4928] = 4738, - [4929] = 4929, - [4930] = 667, - [4931] = 668, - [4932] = 4932, - [4933] = 1408, - [4934] = 214, - [4935] = 4852, - [4936] = 4852, - [4937] = 4937, - [4938] = 214, - [4939] = 598, - [4940] = 4940, - [4941] = 4941, - [4942] = 4942, - [4943] = 2647, - [4944] = 4887, - [4945] = 4945, + [4895] = 215, + [4896] = 229, + [4897] = 4806, + [4898] = 324, + [4899] = 4899, + [4900] = 4900, + [4901] = 229, + [4902] = 3012, + [4903] = 328, + [4904] = 4891, + [4905] = 231, + [4906] = 4906, + [4907] = 231, + [4908] = 324, + [4909] = 328, + [4910] = 4891, + [4911] = 1288, + [4912] = 141, + [4913] = 324, + [4914] = 231, + [4915] = 4795, + [4916] = 4916, + [4917] = 4917, + [4918] = 216, + [4919] = 4919, + [4920] = 1281, + [4921] = 4921, + [4922] = 229, + [4923] = 2429, + [4924] = 141, + [4925] = 215, + [4926] = 231, + [4927] = 4917, + [4928] = 216, + [4929] = 4899, + [4930] = 229, + [4931] = 4931, + [4932] = 4846, + [4933] = 4849, + [4934] = 4934, + [4935] = 4891, + [4936] = 4899, + [4937] = 214, + [4938] = 4573, + [4939] = 2440, + [4940] = 328, + [4941] = 416, + [4942] = 215, + [4943] = 143, + [4944] = 142, + [4945] = 1799, [4946] = 4946, - [4947] = 4888, - [4948] = 4948, - [4949] = 642, + [4947] = 4947, + [4948] = 424, + [4949] = 4949, [4950] = 4950, - [4951] = 4630, - [4952] = 4655, - [4953] = 4735, - [4954] = 4657, - [4955] = 4600, - [4956] = 4606, - [4957] = 4609, - [4958] = 4611, - [4959] = 4669, - [4960] = 4643, - [4961] = 4645, - [4962] = 4574, - [4963] = 635, - [4964] = 4964, - [4965] = 4965, - [4966] = 4966, - [4967] = 1755, - [4968] = 1761, - [4969] = 1895, - [4970] = 4970, - [4971] = 4971, - [4972] = 4972, + [4951] = 406, + [4952] = 334, + [4953] = 4953, + [4954] = 4954, + [4955] = 4931, + [4956] = 324, + [4957] = 1720, + [4958] = 216, + [4959] = 330, + [4960] = 4946, + [4961] = 4947, + [4962] = 331, + [4963] = 4946, + [4964] = 395, + [4965] = 328, + [4966] = 411, + [4967] = 1855, + [4968] = 1860, + [4969] = 4969, + [4970] = 1339, + [4971] = 4947, + [4972] = 326, [4973] = 4973, - [4974] = 640, - [4975] = 4975, - [4976] = 4976, - [4977] = 4977, - [4978] = 2621, - [4979] = 626, - [4980] = 313, - [4981] = 275, - [4982] = 4982, - [4983] = 4983, - [4984] = 4984, - [4985] = 4985, - [4986] = 4986, - [4987] = 223, - [4988] = 4988, - [4989] = 4989, - [4990] = 4990, - [4991] = 331, - [4992] = 670, - [4993] = 4993, - [4994] = 4994, - [4995] = 2553, - [4996] = 334, - [4997] = 336, - [4998] = 4812, - [4999] = 4999, - [5000] = 213, - [5001] = 5001, - [5002] = 337, - [5003] = 5003, - [5004] = 4866, - [5005] = 215, - [5006] = 4945, - [5007] = 1321, - [5008] = 4946, - [5009] = 4990, - [5010] = 4990, - [5011] = 615, + [4974] = 4953, + [4975] = 4954, + [4976] = 4949, + [4977] = 4950, + [4978] = 4953, + [4979] = 4954, + [4980] = 4949, + [4981] = 4953, + [4982] = 4954, + [4983] = 289, + [4984] = 229, + [4985] = 4949, + [4986] = 330, + [4987] = 4950, + [4988] = 4950, + [4989] = 4949, + [4990] = 4950, + [4991] = 1808, + [4992] = 1809, + [4993] = 2423, + [4994] = 4949, + [4995] = 4950, + [4996] = 388, + [4997] = 4949, + [4998] = 4950, + [4999] = 390, + [5000] = 410, + [5001] = 398, + [5002] = 4949, + [5003] = 4950, + [5004] = 405, + [5005] = 420, + [5006] = 407, + [5007] = 389, + [5008] = 311, + [5009] = 4949, + [5010] = 4950, + [5011] = 326, [5012] = 5012, - [5013] = 216, - [5014] = 5014, - [5015] = 616, - [5016] = 5016, - [5017] = 617, - [5018] = 619, - [5019] = 5019, - [5020] = 5020, - [5021] = 5021, - [5022] = 5022, - [5023] = 5023, - [5024] = 216, + [5013] = 5012, + [5014] = 4950, + [5015] = 330, + [5016] = 4949, + [5017] = 4950, + [5018] = 580, + [5019] = 4949, + [5020] = 4950, + [5021] = 329, + [5022] = 4950, + [5023] = 143, + [5024] = 581, [5025] = 5025, - [5026] = 5026, - [5027] = 620, - [5028] = 621, - [5029] = 622, - [5030] = 4759, - [5031] = 1408, - [5032] = 5032, + [5026] = 313, + [5027] = 5027, + [5028] = 330, + [5029] = 222, + [5030] = 331, + [5031] = 231, + [5032] = 142, [5033] = 5033, - [5034] = 5034, - [5035] = 5012, - [5036] = 5036, - [5037] = 672, - [5038] = 5038, + [5034] = 329, + [5035] = 5035, + [5036] = 331, + [5037] = 3090, + [5038] = 336, [5039] = 5039, - [5040] = 673, - [5041] = 5041, - [5042] = 5042, - [5043] = 5043, - [5044] = 1761, - [5045] = 5045, - [5046] = 5046, - [5047] = 4797, - [5048] = 4736, - [5049] = 3213, - [5050] = 215, - [5051] = 142, - [5052] = 143, - [5053] = 4940, - [5054] = 5054, - [5055] = 4843, - [5056] = 4764, - [5057] = 211, - [5058] = 211, - [5059] = 4765, - [5060] = 4941, - [5061] = 313, - [5062] = 5062, + [5040] = 5040, + [5041] = 582, + [5042] = 5025, + [5043] = 198, + [5044] = 583, + [5045] = 145, + [5046] = 4949, + [5047] = 229, + [5048] = 336, + [5049] = 326, + [5050] = 326, + [5051] = 584, + [5052] = 146, + [5053] = 4900, + [5054] = 585, + [5055] = 5055, + [5056] = 331, + [5057] = 5057, + [5058] = 141, + [5059] = 5059, + [5060] = 1683, + [5061] = 1691, + [5062] = 4973, [5063] = 5063, - [5064] = 4937, - [5065] = 5036, - [5066] = 275, - [5067] = 213, - [5068] = 2554, - [5069] = 223, - [5070] = 5070, - [5071] = 5071, - [5072] = 5072, - [5073] = 5073, + [5064] = 329, + [5065] = 144, + [5066] = 231, + [5067] = 1798, + [5068] = 310, + [5069] = 147, + [5070] = 1339, + [5071] = 334, + [5072] = 329, + [5073] = 4949, [5074] = 5074, - [5075] = 5075, - [5076] = 216, - [5077] = 5077, - [5078] = 2695, - [5079] = 4964, - [5080] = 5080, - [5081] = 215, - [5082] = 1755, + [5075] = 364, + [5076] = 364, + [5077] = 215, + [5078] = 331, + [5079] = 5033, + [5080] = 334, + [5081] = 143, + [5082] = 5082, [5083] = 5083, - [5084] = 5084, + [5084] = 5082, [5085] = 5085, - [5086] = 5086, + [5086] = 5074, [5087] = 5087, - [5088] = 614, - [5089] = 4630, - [5090] = 302, - [5091] = 4761, - [5092] = 4655, - [5093] = 4735, - [5094] = 4657, - [5095] = 5095, - [5096] = 4600, - [5097] = 4606, - [5098] = 4609, - [5099] = 4611, - [5100] = 5100, - [5101] = 4669, - [5102] = 4643, - [5103] = 4645, - [5104] = 5104, - [5105] = 4574, - [5106] = 4618, - [5107] = 4766, - [5108] = 669, - [5109] = 302, - [5110] = 5110, - [5111] = 4993, - [5112] = 5112, - [5113] = 2525, - [5114] = 5114, - [5115] = 4929, - [5116] = 4795, - [5117] = 5117, - [5118] = 5118, - [5119] = 5119, - [5120] = 5120, - [5121] = 5121, - [5122] = 5122, - [5123] = 5123, - [5124] = 5124, - [5125] = 215, - [5126] = 302, - [5127] = 4824, - [5128] = 5128, - [5129] = 5129, - [5130] = 4932, - [5131] = 5131, - [5132] = 313, - [5133] = 216, - [5134] = 4852, - [5135] = 624, - [5136] = 625, - [5137] = 275, - [5138] = 223, - [5139] = 5139, - [5140] = 5140, - [5141] = 5141, - [5142] = 5142, - [5143] = 5119, - [5144] = 5144, + [5088] = 149, + [5089] = 5089, + [5090] = 5083, + [5091] = 329, + [5092] = 5089, + [5093] = 5074, + [5094] = 5082, + [5095] = 148, + [5096] = 326, + [5097] = 146, + [5098] = 5089, + [5099] = 5082, + [5100] = 149, + [5101] = 148, + [5102] = 5089, + [5103] = 5082, + [5104] = 336, + [5105] = 5089, + [5106] = 5082, + [5107] = 5089, + [5108] = 5082, + [5109] = 5089, + [5110] = 5082, + [5111] = 5111, + [5112] = 5089, + [5113] = 5082, + [5114] = 5087, + [5115] = 144, + [5116] = 5089, + [5117] = 5082, + [5118] = 5087, + [5119] = 5089, + [5120] = 5082, + [5121] = 5082, + [5122] = 5089, + [5123] = 5082, + [5124] = 5089, + [5125] = 5082, + [5126] = 145, + [5127] = 5085, + [5128] = 5089, + [5129] = 5089, + [5130] = 5089, + [5131] = 5089, + [5132] = 142, + [5133] = 329, + [5134] = 1527, + [5135] = 5082, + [5136] = 330, + [5137] = 5085, + [5138] = 331, + [5139] = 330, + [5140] = 336, + [5141] = 5083, + [5142] = 229, + [5143] = 147, + [5144] = 5082, [5145] = 5145, - [5146] = 627, - [5147] = 628, - [5148] = 629, - [5149] = 630, - [5150] = 5150, - [5151] = 4942, - [5152] = 5152, - [5153] = 4844, - [5154] = 5154, - [5155] = 5155, - [5156] = 589, - [5157] = 665, - [5158] = 5158, - [5159] = 5042, - [5160] = 214, - [5161] = 215, - [5162] = 5162, - [5163] = 141, - [5164] = 5164, - [5165] = 5165, - [5166] = 5063, - [5167] = 312, - [5168] = 5168, - [5169] = 141, - [5170] = 327, - [5171] = 335, - [5172] = 1370, - [5173] = 5173, - [5174] = 215, - [5175] = 1327, - [5176] = 5168, + [5146] = 5027, + [5147] = 326, + [5148] = 5148, + [5149] = 200, + [5150] = 1553, + [5151] = 1339, + [5152] = 5082, + [5153] = 4969, + [5154] = 5145, + [5155] = 5085, + [5156] = 5074, + [5157] = 5087, + [5158] = 5082, + [5159] = 5055, + [5160] = 5057, + [5161] = 5089, + [5162] = 362, + [5163] = 362, + [5164] = 5145, + [5165] = 5089, + [5166] = 216, + [5167] = 5148, + [5168] = 334, + [5169] = 5083, + [5170] = 5148, + [5171] = 5171, + [5172] = 5059, + [5173] = 3090, + [5174] = 231, + [5175] = 3336, + [5176] = 5089, [5177] = 5177, - [5178] = 312, - [5179] = 5039, - [5180] = 327, - [5181] = 3213, - [5182] = 222, - [5183] = 5183, - [5184] = 5168, - [5185] = 312, - [5186] = 5186, - [5187] = 5186, + [5178] = 5178, + [5179] = 398, + [5180] = 529, + [5181] = 5177, + [5182] = 5182, + [5183] = 1527, + [5184] = 5184, + [5185] = 5185, + [5186] = 3090, + [5187] = 5187, [5188] = 5188, - [5189] = 222, - [5190] = 2554, - [5191] = 216, - [5192] = 5188, - [5193] = 222, - [5194] = 1361, - [5195] = 216, - [5196] = 312, - [5197] = 335, - [5198] = 5168, - [5199] = 5188, - [5200] = 2553, - [5201] = 4852, - [5202] = 327, + [5189] = 5189, + [5190] = 5190, + [5191] = 5191, + [5192] = 5177, + [5193] = 5193, + [5194] = 424, + [5195] = 5195, + [5196] = 5196, + [5197] = 5197, + [5198] = 5198, + [5199] = 5178, + [5200] = 5177, + [5201] = 364, + [5202] = 5202, [5203] = 5203, - [5204] = 5204, + [5204] = 5184, [5205] = 5205, [5206] = 5206, - [5207] = 335, - [5208] = 5062, - [5209] = 222, - [5210] = 216, - [5211] = 5211, - [5212] = 5212, - [5213] = 142, - [5214] = 1915, - [5215] = 5215, - [5216] = 215, - [5217] = 1895, - [5218] = 5218, - [5219] = 5219, - [5220] = 428, - [5221] = 337, - [5222] = 391, - [5223] = 5215, - [5224] = 5218, - [5225] = 418, - [5226] = 429, - [5227] = 334, - [5228] = 394, - [5229] = 5229, - [5230] = 5215, - [5231] = 5218, - [5232] = 397, - [5233] = 5233, - [5234] = 406, - [5235] = 412, - [5236] = 5215, - [5237] = 5218, - [5238] = 424, - [5239] = 423, - [5240] = 5215, - [5241] = 5218, - [5242] = 669, - [5243] = 315, - [5244] = 337, - [5245] = 5215, - [5246] = 5218, - [5247] = 670, - [5248] = 331, - [5249] = 5215, - [5250] = 5218, - [5251] = 425, - [5252] = 5215, - [5253] = 5218, - [5254] = 5215, - [5255] = 5229, - [5256] = 5215, - [5257] = 5218, - [5258] = 336, - [5259] = 5218, - [5260] = 336, - [5261] = 5261, - [5262] = 149, - [5263] = 395, - [5264] = 396, - [5265] = 335, - [5266] = 5266, - [5267] = 435, - [5268] = 143, - [5269] = 398, - [5270] = 5211, - [5271] = 315, - [5272] = 5212, - [5273] = 313, - [5274] = 337, - [5275] = 318, - [5276] = 1940, - [5277] = 426, - [5278] = 5233, - [5279] = 275, - [5280] = 3288, - [5281] = 147, - [5282] = 5229, - [5283] = 5283, - [5284] = 1946, - [5285] = 337, - [5286] = 5286, - [5287] = 5233, - [5288] = 1408, - [5289] = 5289, - [5290] = 5261, - [5291] = 1947, - [5292] = 399, - [5293] = 589, - [5294] = 331, - [5295] = 223, - [5296] = 665, - [5297] = 402, + [5207] = 5185, + [5208] = 5177, + [5209] = 5187, + [5210] = 5196, + [5211] = 479, + [5212] = 5188, + [5213] = 5189, + [5214] = 5191, + [5215] = 5177, + [5216] = 5195, + [5217] = 5196, + [5218] = 5193, + [5219] = 5197, + [5220] = 5177, + [5221] = 5198, + [5222] = 364, + [5223] = 5202, + [5224] = 5203, + [5225] = 5177, + [5226] = 5205, + [5227] = 5206, + [5228] = 5177, + [5229] = 150, + [5230] = 388, + [5231] = 5177, + [5232] = 374, + [5233] = 5177, + [5234] = 5177, + [5235] = 5197, + [5236] = 453, + [5237] = 5177, + [5238] = 149, + [5239] = 5239, + [5240] = 5177, + [5241] = 148, + [5242] = 405, + [5243] = 5177, + [5244] = 5177, + [5245] = 5177, + [5246] = 5177, + [5247] = 5177, + [5248] = 5177, + [5249] = 5177, + [5250] = 5177, + [5251] = 5177, + [5252] = 5177, + [5253] = 5177, + [5254] = 420, + [5255] = 5198, + [5256] = 5202, + [5257] = 5203, + [5258] = 5178, + [5259] = 5259, + [5260] = 5177, + [5261] = 407, + [5262] = 378, + [5263] = 5205, + [5264] = 389, + [5265] = 152, + [5266] = 5206, + [5267] = 379, + [5268] = 5177, + [5269] = 634, + [5270] = 5195, + [5271] = 490, + [5272] = 5272, + [5273] = 477, + [5274] = 5274, + [5275] = 326, + [5276] = 5190, + [5277] = 5177, + [5278] = 362, + [5279] = 5177, + [5280] = 1639, + [5281] = 5191, + [5282] = 1553, + [5283] = 331, + [5284] = 329, + [5285] = 3090, + [5286] = 390, + [5287] = 362, + [5288] = 5177, + [5289] = 334, + [5290] = 5290, + [5291] = 5291, + [5292] = 378, + [5293] = 410, + [5294] = 150, + [5295] = 5290, + [5296] = 5291, + [5297] = 5184, [5298] = 5298, - [5299] = 336, - [5300] = 1939, - [5301] = 331, - [5302] = 5283, - [5303] = 1908, - [5304] = 336, - [5305] = 331, - [5306] = 5306, - [5307] = 5211, - [5308] = 672, - [5309] = 5309, - [5310] = 5310, - [5311] = 5164, - [5312] = 302, - [5313] = 393, - [5314] = 334, - [5315] = 1408, - [5316] = 5212, - [5317] = 276, - [5318] = 5318, - [5319] = 142, - [5320] = 334, - [5321] = 143, - [5322] = 141, - [5323] = 404, - [5324] = 222, - [5325] = 1905, - [5326] = 5326, - [5327] = 148, - [5328] = 413, - [5329] = 222, - [5330] = 146, - [5331] = 5215, - [5332] = 318, - [5333] = 199, - [5334] = 312, - [5335] = 390, - [5336] = 334, - [5337] = 5218, - [5338] = 5326, - [5339] = 5211, - [5340] = 327, - [5341] = 5215, - [5342] = 1911, - [5343] = 5173, - [5344] = 5218, + [5299] = 141, + [5300] = 5185, + [5301] = 395, + [5302] = 5187, + [5303] = 5188, + [5304] = 5189, + [5305] = 5298, + [5306] = 5259, + [5307] = 373, + [5308] = 5272, + [5309] = 5239, + [5310] = 1589, + [5311] = 373, + [5312] = 5111, + [5313] = 5177, + [5314] = 231, + [5315] = 5298, + [5316] = 411, + [5317] = 5259, + [5318] = 151, + [5319] = 152, + [5320] = 229, + [5321] = 336, + [5322] = 416, + [5323] = 452, + [5324] = 376, + [5325] = 1581, + [5326] = 5182, + [5327] = 5182, + [5328] = 500, + [5329] = 5290, + [5330] = 5291, + [5331] = 5190, + [5332] = 5272, + [5333] = 5177, + [5334] = 5239, + [5335] = 406, + [5336] = 384, + [5337] = 5337, + [5338] = 5193, + [5339] = 376, + [5340] = 330, + [5341] = 151, + [5342] = 379, + [5343] = 379, + [5344] = 5344, [5345] = 5345, - [5346] = 5212, - [5347] = 673, - [5348] = 5215, - [5349] = 312, - [5350] = 5218, - [5351] = 2552, + [5346] = 390, + [5347] = 410, + [5348] = 336, + [5349] = 398, + [5350] = 329, + [5351] = 5111, [5352] = 5352, - [5353] = 334, - [5354] = 5352, - [5355] = 5355, - [5356] = 5352, - [5357] = 5357, - [5358] = 5358, - [5359] = 148, + [5353] = 5344, + [5354] = 543, + [5355] = 389, + [5356] = 376, + [5357] = 424, + [5358] = 150, + [5359] = 500, [5360] = 5360, - [5361] = 5355, - [5362] = 337, - [5363] = 5352, - [5364] = 334, - [5365] = 5355, - [5366] = 5355, - [5367] = 5352, - [5368] = 5355, - [5369] = 5355, - [5370] = 5352, - [5371] = 5298, - [5372] = 337, - [5373] = 5355, - [5374] = 5352, - [5375] = 5352, - [5376] = 5357, - [5377] = 5355, - [5378] = 5352, - [5379] = 5379, - [5380] = 5355, - [5381] = 5352, - [5382] = 5355, + [5361] = 5361, + [5362] = 3300, + [5363] = 2702, + [5364] = 5364, + [5365] = 5365, + [5366] = 330, + [5367] = 1130, + [5368] = 334, + [5369] = 378, + [5370] = 698, + [5371] = 384, + [5372] = 5372, + [5373] = 378, + [5374] = 5374, + [5375] = 5375, + [5376] = 388, + [5377] = 373, + [5378] = 477, + [5379] = 584, + [5380] = 405, + [5381] = 420, + [5382] = 585, [5383] = 5352, - [5384] = 5355, - [5385] = 5352, - [5386] = 143, - [5387] = 5355, - [5388] = 5358, - [5389] = 5355, - [5390] = 1408, - [5391] = 5355, - [5392] = 5355, - [5393] = 5355, - [5394] = 222, - [5395] = 215, - [5396] = 5379, - [5397] = 1607, - [5398] = 145, - [5399] = 5286, - [5400] = 5289, - [5401] = 5360, - [5402] = 5402, - [5403] = 5403, - [5404] = 5358, - [5405] = 5360, - [5406] = 5358, - [5407] = 5407, - [5408] = 5360, - [5409] = 5409, - [5410] = 312, - [5411] = 5357, - [5412] = 5402, - [5413] = 5355, - [5414] = 1604, - [5415] = 338, - [5416] = 5379, - [5417] = 147, - [5418] = 5352, - [5419] = 315, - [5420] = 5357, - [5421] = 5352, - [5422] = 3533, - [5423] = 331, - [5424] = 5352, - [5425] = 144, - [5426] = 216, - [5427] = 5352, - [5428] = 5409, - [5429] = 5409, - [5430] = 5402, - [5431] = 5352, - [5432] = 142, - [5433] = 338, - [5434] = 336, - [5435] = 146, - [5436] = 5355, - [5437] = 200, - [5438] = 315, - [5439] = 360, - [5440] = 144, - [5441] = 145, - [5442] = 318, - [5443] = 331, - [5444] = 5379, - [5445] = 149, - [5446] = 360, - [5447] = 336, - [5448] = 5318, - [5449] = 5355, - [5450] = 3288, - [5451] = 5352, - [5452] = 5345, - [5453] = 5309, - [5454] = 318, - [5455] = 5455, - [5456] = 5456, - [5457] = 5457, - [5458] = 5458, - [5459] = 5459, - [5460] = 394, - [5461] = 5456, - [5462] = 418, - [5463] = 5458, - [5464] = 370, - [5465] = 5465, - [5466] = 5458, - [5467] = 395, + [5384] = 146, + [5385] = 379, + [5386] = 144, + [5387] = 147, + [5388] = 395, + [5389] = 395, + [5390] = 145, + [5391] = 5391, + [5392] = 152, + [5393] = 1581, + [5394] = 1639, + [5395] = 411, + [5396] = 416, + [5397] = 373, + [5398] = 407, + [5399] = 2677, + [5400] = 362, + [5401] = 411, + [5402] = 364, + [5403] = 406, + [5404] = 490, + [5405] = 334, + [5406] = 143, + [5407] = 142, + [5408] = 326, + [5409] = 198, + [5410] = 1589, + [5411] = 479, + [5412] = 374, + [5413] = 141, + [5414] = 409, + [5415] = 384, + [5416] = 331, + [5417] = 374, + [5418] = 153, + [5419] = 376, + [5420] = 394, + [5421] = 2704, + [5422] = 426, + [5423] = 2691, + [5424] = 453, + [5425] = 580, + [5426] = 581, + [5427] = 336, + [5428] = 2848, + [5429] = 452, + [5430] = 529, + [5431] = 582, + [5432] = 583, + [5433] = 1339, + [5434] = 151, + [5435] = 5435, + [5436] = 5436, + [5437] = 3010, + [5438] = 200, + [5439] = 5439, + [5440] = 5440, + [5441] = 5441, + [5442] = 5442, + [5443] = 5443, + [5444] = 612, + [5445] = 5439, + [5446] = 5440, + [5447] = 5441, + [5448] = 5448, + [5449] = 5449, + [5450] = 5439, + [5451] = 5440, + [5452] = 5452, + [5453] = 5441, + [5454] = 636, + [5455] = 479, + [5456] = 5440, + [5457] = 632, + [5458] = 5440, + [5459] = 5440, + [5460] = 5439, + [5461] = 529, + [5462] = 490, + [5463] = 5439, + [5464] = 334, + [5465] = 5441, + [5466] = 5442, + [5467] = 5452, [5468] = 5468, - [5469] = 5458, - [5470] = 5470, - [5471] = 5458, - [5472] = 5457, - [5473] = 5473, - [5474] = 5458, - [5475] = 5458, - [5476] = 5458, - [5477] = 5458, - [5478] = 5458, - [5479] = 5458, - [5480] = 5458, - [5481] = 5458, - [5482] = 5458, - [5483] = 5458, - [5484] = 5458, - [5485] = 5458, - [5486] = 404, - [5487] = 5458, - [5488] = 336, - [5489] = 5489, - [5490] = 5490, - [5491] = 5458, - [5492] = 397, - [5493] = 399, - [5494] = 5494, - [5495] = 435, - [5496] = 5458, - [5497] = 393, - [5498] = 384, - [5499] = 5468, - [5500] = 5500, - [5501] = 338, - [5502] = 1607, - [5503] = 545, - [5504] = 337, - [5505] = 521, - [5506] = 384, - [5507] = 3288, - [5508] = 5470, - [5509] = 5470, - [5510] = 5458, - [5511] = 5511, - [5512] = 5473, - [5513] = 222, - [5514] = 5490, - [5515] = 5500, - [5516] = 5516, - [5517] = 331, - [5518] = 386, - [5519] = 151, - [5520] = 5520, - [5521] = 5521, - [5522] = 5457, - [5523] = 5459, - [5524] = 5459, - [5525] = 5458, - [5526] = 5526, - [5527] = 406, + [5469] = 5440, + [5470] = 500, + [5471] = 477, + [5472] = 5441, + [5473] = 2551, + [5474] = 639, + [5475] = 5441, + [5476] = 2522, + [5477] = 364, + [5478] = 1855, + [5479] = 1860, + [5480] = 336, + [5481] = 643, + [5482] = 1720, + [5483] = 451, + [5484] = 633, + [5485] = 459, + [5486] = 5443, + [5487] = 5448, + [5488] = 5449, + [5489] = 5439, + [5490] = 2536, + [5491] = 470, + [5492] = 635, + [5493] = 5493, + [5494] = 2537, + [5495] = 5442, + [5496] = 5439, + [5497] = 644, + [5498] = 5498, + [5499] = 571, + [5500] = 572, + [5501] = 5441, + [5502] = 5442, + [5503] = 2771, + [5504] = 5452, + [5505] = 1683, + [5506] = 573, + [5507] = 1691, + [5508] = 5508, + [5509] = 574, + [5510] = 5510, + [5511] = 5440, + [5512] = 5512, + [5513] = 5513, + [5514] = 616, + [5515] = 575, + [5516] = 2776, + [5517] = 5517, + [5518] = 5518, + [5519] = 5452, + [5520] = 4365, + [5521] = 578, + [5522] = 4366, + [5523] = 5441, + [5524] = 5524, + [5525] = 5440, + [5526] = 617, + [5527] = 5441, [5528] = 5528, - [5529] = 424, - [5530] = 5530, - [5531] = 542, - [5532] = 5521, - [5533] = 439, - [5534] = 150, - [5535] = 5535, - [5536] = 315, - [5537] = 3288, - [5538] = 413, - [5539] = 429, - [5540] = 385, - [5541] = 5456, - [5542] = 390, - [5543] = 5458, - [5544] = 5465, - [5545] = 5545, - [5546] = 360, - [5547] = 428, + [5529] = 5439, + [5530] = 579, + [5531] = 620, + [5532] = 5442, + [5533] = 5452, + [5534] = 362, + [5535] = 5510, + [5536] = 452, + [5537] = 5440, + [5538] = 5441, + [5539] = 5439, + [5540] = 373, + [5541] = 364, + [5542] = 453, + [5543] = 1553, + [5544] = 376, + [5545] = 334, + [5546] = 378, + [5547] = 379, [5548] = 5548, - [5549] = 412, - [5550] = 370, - [5551] = 5551, - [5552] = 396, - [5553] = 5528, - [5554] = 496, - [5555] = 5473, - [5556] = 5458, - [5557] = 465, - [5558] = 5558, - [5559] = 144, - [5560] = 1730, - [5561] = 5511, - [5562] = 334, - [5563] = 5458, - [5564] = 1666, - [5565] = 5458, + [5549] = 465, + [5550] = 5439, + [5551] = 5440, + [5552] = 1798, + [5553] = 5442, + [5554] = 1799, + [5555] = 5555, + [5556] = 459, + [5557] = 5557, + [5558] = 455, + [5559] = 456, + [5560] = 457, + [5561] = 336, + [5562] = 630, + [5563] = 5452, + [5564] = 5440, + [5565] = 2510, [5566] = 5566, - [5567] = 5455, - [5568] = 5516, - [5569] = 5526, - [5570] = 360, - [5571] = 5494, - [5572] = 312, - [5573] = 151, - [5574] = 5516, - [5575] = 423, - [5576] = 1742, - [5577] = 5545, - [5578] = 5458, - [5579] = 5551, - [5580] = 425, - [5581] = 402, + [5567] = 455, + [5568] = 5441, + [5569] = 456, + [5570] = 362, + [5571] = 5571, + [5572] = 2691, + [5573] = 5442, + [5574] = 3300, + [5575] = 5510, + [5576] = 5576, + [5577] = 5577, + [5578] = 5452, + [5579] = 5440, + [5580] = 621, + [5581] = 457, [5582] = 5582, - [5583] = 5458, - [5584] = 145, - [5585] = 391, - [5586] = 5548, - [5587] = 371, - [5588] = 5530, - [5589] = 398, - [5590] = 5535, - [5591] = 5528, - [5592] = 318, - [5593] = 5566, - [5594] = 5558, - [5595] = 5521, - [5596] = 5489, - [5597] = 426, - [5598] = 1604, - [5599] = 5468, - [5600] = 5490, - [5601] = 5494, - [5602] = 141, - [5603] = 5458, - [5604] = 5458, - [5605] = 371, - [5606] = 5511, - [5607] = 5545, - [5608] = 5548, - [5609] = 5500, - [5610] = 5407, - [5611] = 338, - [5612] = 657, - [5613] = 548, - [5614] = 5558, - [5615] = 5566, - [5616] = 5455, - [5617] = 5465, - [5618] = 385, - [5619] = 5530, - [5620] = 5458, - [5621] = 5535, - [5622] = 5526, - [5623] = 5458, - [5624] = 152, - [5625] = 5551, - [5626] = 150, - [5627] = 5489, - [5628] = 152, - [5629] = 369, - [5630] = 393, - [5631] = 5631, - [5632] = 1742, - [5633] = 147, - [5634] = 371, - [5635] = 465, - [5636] = 150, - [5637] = 390, - [5638] = 385, - [5639] = 5407, - [5640] = 1730, - [5641] = 1408, - [5642] = 5642, - [5643] = 331, - [5644] = 338, - [5645] = 334, - [5646] = 587, - [5647] = 370, - [5648] = 413, - [5649] = 151, - [5650] = 315, - [5651] = 371, - [5652] = 2855, - [5653] = 3459, - [5654] = 146, - [5655] = 148, - [5656] = 418, - [5657] = 386, - [5658] = 673, - [5659] = 142, - [5660] = 143, + [5583] = 5439, + [5584] = 5584, + [5585] = 2515, + [5586] = 451, + [5587] = 5439, + [5588] = 1808, + [5589] = 1809, + [5590] = 4025, + [5591] = 3942, + [5592] = 5442, + [5593] = 5452, + [5594] = 5439, + [5595] = 5440, + [5596] = 5440, + [5597] = 1527, + [5598] = 5441, + [5599] = 5599, + [5600] = 459, + [5601] = 5441, + [5602] = 5452, + [5603] = 1132, + [5604] = 1553, + [5605] = 622, + [5606] = 5606, + [5607] = 3913, + [5608] = 2523, + [5609] = 5442, + [5610] = 334, + [5611] = 5439, + [5612] = 5612, + [5613] = 5613, + [5614] = 5510, + [5615] = 5442, + [5616] = 5616, + [5617] = 623, + [5618] = 153, + [5619] = 5452, + [5620] = 5440, + [5621] = 2677, + [5622] = 631, + [5623] = 5441, + [5624] = 5439, + [5625] = 142, + [5626] = 143, + [5627] = 1527, + [5628] = 417, + [5629] = 5440, + [5630] = 455, + [5631] = 5452, + [5632] = 456, + [5633] = 5439, + [5634] = 5441, + [5635] = 5440, + [5636] = 457, + [5637] = 5528, + [5638] = 336, + [5639] = 5528, + [5640] = 5528, + [5641] = 5616, + [5642] = 5441, + [5643] = 425, + [5644] = 5442, + [5645] = 5645, + [5646] = 510, + [5647] = 5647, + [5648] = 379, + [5649] = 5649, + [5650] = 5650, + [5651] = 336, + [5652] = 5652, + [5653] = 5653, + [5654] = 5654, + [5655] = 5645, + [5656] = 511, + [5657] = 5657, + [5658] = 5658, + [5659] = 373, + [5660] = 5660, [5661] = 5661, - [5662] = 548, - [5663] = 424, - [5664] = 429, - [5665] = 394, + [5662] = 5662, + [5663] = 5663, + [5664] = 497, + [5665] = 5649, [5666] = 5666, - [5667] = 521, - [5668] = 5668, - [5669] = 397, - [5670] = 370, - [5671] = 141, - [5672] = 5672, - [5673] = 5661, - [5674] = 5631, - [5675] = 149, - [5676] = 670, - [5677] = 384, - [5678] = 669, - [5679] = 395, - [5680] = 424, - [5681] = 360, - [5682] = 404, - [5683] = 672, - [5684] = 391, - [5685] = 385, - [5686] = 686, - [5687] = 396, - [5688] = 435, - [5689] = 369, - [5690] = 402, - [5691] = 400, - [5692] = 386, - [5693] = 384, - [5694] = 369, - [5695] = 665, - [5696] = 496, - [5697] = 1183, - [5698] = 406, - [5699] = 2869, - [5700] = 412, - [5701] = 423, - [5702] = 318, - [5703] = 398, - [5704] = 425, + [5667] = 4651, + [5668] = 4642, + [5669] = 4653, + [5670] = 5670, + [5671] = 5652, + [5672] = 411, + [5673] = 5673, + [5674] = 5674, + [5675] = 4654, + [5676] = 529, + [5677] = 490, + [5678] = 5678, + [5679] = 5650, + [5680] = 5517, + [5681] = 5653, + [5682] = 479, + [5683] = 5683, + [5684] = 4655, + [5685] = 5513, + [5686] = 5557, + [5687] = 5687, + [5688] = 5688, + [5689] = 1553, + [5690] = 1581, + [5691] = 4629, + [5692] = 4656, + [5693] = 5693, + [5694] = 5694, + [5695] = 4657, + [5696] = 3336, + [5697] = 4643, + [5698] = 1586, + [5699] = 5654, + [5700] = 4658, + [5701] = 4659, + [5702] = 362, + [5703] = 5703, + [5704] = 336, [5705] = 5705, - [5706] = 336, - [5707] = 2977, - [5708] = 199, - [5709] = 2827, - [5710] = 399, - [5711] = 393, + [5706] = 373, + [5707] = 4644, + [5708] = 4645, + [5709] = 5649, + [5710] = 5650, + [5711] = 5518, [5712] = 5712, - [5713] = 5713, - [5714] = 2881, - [5715] = 439, - [5716] = 5716, - [5717] = 426, - [5718] = 545, - [5719] = 542, - [5720] = 415, - [5721] = 318, - [5722] = 315, - [5723] = 1666, - [5724] = 337, - [5725] = 153, - [5726] = 428, - [5727] = 416, - [5728] = 589, - [5729] = 5729, - [5730] = 152, - [5731] = 469, - [5732] = 1939, - [5733] = 1940, - [5734] = 2647, - [5735] = 1946, - [5736] = 1947, - [5737] = 5737, - [5738] = 434, - [5739] = 3152, - [5740] = 5740, - [5741] = 2632, - [5742] = 2633, - [5743] = 1604, - [5744] = 5744, - [5745] = 4116, - [5746] = 1607, - [5747] = 5747, - [5748] = 5748, - [5749] = 5749, - [5750] = 5750, - [5751] = 360, - [5752] = 472, - [5753] = 5753, - [5754] = 1189, - [5755] = 153, - [5756] = 2827, - [5757] = 5757, - [5758] = 5758, - [5759] = 5759, - [5760] = 4633, - [5761] = 4637, - [5762] = 2855, - [5763] = 467, - [5764] = 5764, - [5765] = 441, - [5766] = 3459, - [5767] = 315, - [5768] = 4232, - [5769] = 5769, - [5770] = 5770, - [5771] = 5771, - [5772] = 5772, - [5773] = 5773, - [5774] = 5774, - [5775] = 5775, - [5776] = 5776, - [5777] = 5777, - [5778] = 4144, - [5779] = 5753, - [5780] = 315, - [5781] = 5737, - [5782] = 468, - [5783] = 631, - [5784] = 469, - [5785] = 470, - [5786] = 545, - [5787] = 542, - [5788] = 5788, - [5789] = 5789, - [5790] = 318, - [5791] = 5791, - [5792] = 548, - [5793] = 521, - [5794] = 315, - [5795] = 633, - [5796] = 634, - [5797] = 5737, - [5798] = 5773, - [5799] = 5799, - [5800] = 635, - [5801] = 636, - [5802] = 637, - [5803] = 640, - [5804] = 318, - [5805] = 5805, - [5806] = 442, - [5807] = 338, - [5808] = 5777, - [5809] = 5809, - [5810] = 5810, - [5811] = 5811, - [5812] = 642, - [5813] = 467, - [5814] = 318, - [5815] = 401, - [5816] = 142, - [5817] = 643, - [5818] = 5773, - [5819] = 1607, - [5820] = 5774, - [5821] = 5775, - [5822] = 5776, - [5823] = 5777, - [5824] = 5753, - [5825] = 5737, - [5826] = 468, - [5827] = 469, - [5828] = 470, - [5829] = 143, - [5830] = 5830, - [5831] = 5773, - [5832] = 5774, - [5833] = 5775, - [5834] = 5777, - [5835] = 5753, - [5836] = 496, - [5837] = 5737, - [5838] = 644, - [5839] = 5773, - [5840] = 646, - [5841] = 5774, - [5842] = 5775, - [5843] = 5777, - [5844] = 5753, - [5845] = 647, - [5846] = 5737, - [5847] = 360, - [5848] = 5773, - [5849] = 5774, - [5850] = 5775, - [5851] = 5777, - [5852] = 5774, - [5853] = 5753, - [5854] = 5737, - [5855] = 5855, - [5856] = 5773, - [5857] = 5774, - [5858] = 5775, - [5859] = 5753, - [5860] = 5753, - [5861] = 5737, - [5862] = 5773, - [5863] = 5774, - [5864] = 5775, - [5865] = 5777, - [5866] = 648, - [5867] = 5753, - [5868] = 5737, - [5869] = 5773, - [5870] = 5774, - [5871] = 5775, - [5872] = 5777, - [5873] = 5753, - [5874] = 338, - [5875] = 5737, - [5876] = 649, - [5877] = 5773, - [5878] = 5774, - [5879] = 5775, - [5880] = 5777, - [5881] = 5753, - [5882] = 650, - [5883] = 5737, - [5884] = 651, - [5885] = 5773, - [5886] = 5777, - [5887] = 5753, - [5888] = 652, - [5889] = 1895, - [5890] = 653, - [5891] = 5737, - [5892] = 654, - [5893] = 655, - [5894] = 5773, - [5895] = 656, - [5896] = 5777, - [5897] = 5753, - [5898] = 5737, - [5899] = 472, - [5900] = 658, - [5901] = 659, - [5902] = 5773, - [5903] = 660, - [5904] = 5777, - [5905] = 5753, - [5906] = 661, - [5907] = 5737, - [5908] = 662, - [5909] = 663, - [5910] = 5773, - [5911] = 5777, - [5912] = 5753, - [5913] = 664, - [5914] = 5737, - [5915] = 588, - [5916] = 666, - [5917] = 5773, - [5918] = 5777, - [5919] = 5753, - [5920] = 667, - [5921] = 5737, - [5922] = 668, - [5923] = 5753, - [5924] = 5737, - [5925] = 2614, - [5926] = 5775, - [5927] = 5927, + [5713] = 376, + [5714] = 334, + [5715] = 5652, + [5716] = 5653, + [5717] = 5654, + [5718] = 5645, + [5719] = 376, + [5720] = 5657, + [5721] = 5658, + [5722] = 364, + [5723] = 500, + [5724] = 477, + [5725] = 5725, + [5726] = 1615, + [5727] = 5435, + [5728] = 378, + [5729] = 4660, + [5730] = 5730, + [5731] = 379, + [5732] = 4661, + [5733] = 4662, + [5734] = 5673, + [5735] = 4663, + [5736] = 4664, + [5737] = 5674, + [5738] = 5738, + [5739] = 1589, + [5740] = 5678, + [5741] = 2691, + [5742] = 4665, + [5743] = 5743, + [5744] = 141, + [5745] = 1639, + [5746] = 472, + [5747] = 336, + [5748] = 5673, + [5749] = 5657, + [5750] = 4666, + [5751] = 5658, + [5752] = 5678, + [5753] = 4667, + [5754] = 4668, + [5755] = 336, + [5756] = 5673, + [5757] = 5673, + [5758] = 4646, + [5759] = 4669, + [5760] = 5678, + [5761] = 5738, + [5762] = 5762, + [5763] = 5688, + [5764] = 5673, + [5765] = 474, + [5766] = 5766, + [5767] = 5678, + [5768] = 5674, + [5769] = 5673, + [5770] = 5673, + [5771] = 5678, + [5772] = 149, + [5773] = 364, + [5774] = 5703, + [5775] = 4647, + [5776] = 5674, + [5777] = 5673, + [5778] = 5678, + [5779] = 4670, + [5780] = 2677, + [5781] = 4671, + [5782] = 5673, + [5783] = 4672, + [5784] = 146, + [5785] = 5678, + [5786] = 4365, + [5787] = 4648, + [5788] = 4366, + [5789] = 5673, + [5790] = 5790, + [5791] = 5678, + [5792] = 5678, + [5793] = 4673, + [5794] = 4674, + [5795] = 5673, + [5796] = 5678, + [5797] = 4675, + [5798] = 4676, + [5799] = 144, + [5800] = 5673, + [5801] = 5678, + [5802] = 5673, + [5803] = 4677, + [5804] = 5678, + [5805] = 504, + [5806] = 147, + [5807] = 5673, + [5808] = 4678, + [5809] = 5678, + [5810] = 5548, + [5811] = 4679, + [5812] = 5673, + [5813] = 4680, + [5814] = 4681, + [5815] = 5678, + [5816] = 432, + [5817] = 5817, + [5818] = 509, + [5819] = 5819, + [5820] = 4682, + [5821] = 4683, + [5822] = 4684, + [5823] = 4685, + [5824] = 145, + [5825] = 4686, + [5826] = 5705, + [5827] = 4687, + [5828] = 4688, + [5829] = 5762, + [5830] = 5743, + [5831] = 4689, + [5832] = 5647, + [5833] = 5687, + [5834] = 4691, + [5835] = 4692, + [5836] = 1589, + [5837] = 4636, + [5838] = 362, + [5839] = 1639, + [5840] = 378, + [5841] = 364, + [5842] = 1581, + [5843] = 395, + [5844] = 5678, + [5845] = 5845, + [5846] = 4637, + [5847] = 5738, + [5848] = 5762, + [5849] = 5688, + [5850] = 5703, + [5851] = 5647, + [5852] = 362, + [5853] = 5738, + [5854] = 5762, + [5855] = 5688, + [5856] = 5703, + [5857] = 4638, + [5858] = 4639, + [5859] = 5647, + [5860] = 1527, + [5861] = 5647, + [5862] = 5647, + [5863] = 4640, + [5864] = 4641, + [5865] = 5647, + [5866] = 5647, + [5867] = 5647, + [5868] = 5647, + [5869] = 5647, + [5870] = 5647, + [5871] = 5647, + [5872] = 5647, + [5873] = 5647, + [5874] = 5647, + [5875] = 5647, + [5876] = 5647, + [5877] = 5661, + [5878] = 5662, + [5879] = 5663, + [5880] = 5880, + [5881] = 5660, + [5882] = 148, + [5883] = 5883, + [5884] = 334, + [5885] = 5885, + [5886] = 5886, + [5887] = 5887, + [5888] = 5888, + [5889] = 5889, + [5890] = 376, + [5891] = 5891, + [5892] = 4638, + [5893] = 362, + [5894] = 4639, + [5895] = 4640, + [5896] = 4641, + [5897] = 364, + [5898] = 5898, + [5899] = 5899, + [5900] = 5900, + [5901] = 150, + [5902] = 5902, + [5903] = 5903, + [5904] = 5888, + [5905] = 376, + [5906] = 5906, + [5907] = 5907, + [5908] = 5908, + [5909] = 510, + [5910] = 5910, + [5911] = 5911, + [5912] = 5912, + [5913] = 1639, + [5914] = 5914, + [5915] = 5915, + [5916] = 5916, + [5917] = 5917, + [5918] = 5918, + [5919] = 5919, + [5920] = 378, + [5921] = 2949, + [5922] = 5922, + [5923] = 4642, + [5924] = 5924, + [5925] = 4643, + [5926] = 5889, + [5927] = 5845, [5928] = 5928, - [5929] = 5929, - [5930] = 371, - [5931] = 384, - [5932] = 385, - [5933] = 1604, - [5934] = 370, - [5935] = 5927, - [5936] = 5928, - [5937] = 1905, - [5938] = 1908, - [5939] = 2621, - [5940] = 5929, - [5941] = 1911, - [5942] = 1915, - [5943] = 472, - [5944] = 468, - [5945] = 470, - [5946] = 2928, - [5947] = 2931, - [5948] = 439, - [5949] = 5949, + [5929] = 504, + [5930] = 379, + [5931] = 5931, + [5932] = 5932, + [5933] = 4277, + [5934] = 5912, + [5935] = 4644, + [5936] = 5936, + [5937] = 5937, + [5938] = 479, + [5939] = 4645, + [5940] = 509, + [5941] = 4646, + [5942] = 4647, + [5943] = 5908, + [5944] = 455, + [5945] = 456, + [5946] = 1130, + [5947] = 457, + [5948] = 5948, + [5949] = 1621, [5950] = 5950, - [5951] = 5753, - [5952] = 5737, - [5953] = 200, - [5954] = 5830, - [5955] = 2642, - [5956] = 5773, - [5957] = 2643, - [5958] = 5774, - [5959] = 5775, - [5960] = 5776, - [5961] = 5777, - [5962] = 465, - [5963] = 5830, - [5964] = 5830, - [5965] = 5776, - [5966] = 5769, - [5967] = 5777, + [5951] = 5883, + [5952] = 5952, + [5953] = 5948, + [5954] = 5954, + [5955] = 5955, + [5956] = 5683, + [5957] = 5957, + [5958] = 5958, + [5959] = 528, + [5960] = 1626, + [5961] = 5961, + [5962] = 5962, + [5963] = 5931, + [5964] = 5912, + [5965] = 4648, + [5966] = 5966, + [5967] = 5967, [5968] = 5968, - [5969] = 4840, - [5970] = 4841, - [5971] = 4842, + [5969] = 5908, + [5970] = 5970, + [5971] = 5971, [5972] = 5972, [5973] = 5973, - [5974] = 424, - [5975] = 5975, - [5976] = 5976, - [5977] = 4845, - [5978] = 5978, - [5979] = 371, - [5980] = 5980, - [5981] = 5976, - [5982] = 5982, - [5983] = 5983, - [5984] = 4846, - [5985] = 5973, - [5986] = 4847, - [5987] = 4849, - [5988] = 5973, - [5989] = 4855, - [5990] = 4859, - [5991] = 5976, - [5992] = 452, - [5993] = 360, - [5994] = 5994, - [5995] = 5973, - [5996] = 5996, - [5997] = 5997, - [5998] = 318, - [5999] = 384, - [6000] = 5976, - [6001] = 5976, - [6002] = 338, - [6003] = 6003, - [6004] = 5973, - [6005] = 360, - [6006] = 6006, - [6007] = 4794, - [6008] = 4803, - [6009] = 5976, + [5974] = 4651, + [5975] = 5948, + [5976] = 5950, + [5977] = 5883, + [5978] = 5952, + [5979] = 5931, + [5980] = 4653, + [5981] = 5912, + [5982] = 5931, + [5983] = 4654, + [5984] = 5912, + [5985] = 5985, + [5986] = 5908, + [5987] = 4636, + [5988] = 5948, + [5989] = 5950, + [5990] = 5883, + [5991] = 5952, + [5992] = 5992, + [5993] = 4655, + [5994] = 4656, + [5995] = 5931, + [5996] = 5912, + [5997] = 4637, + [5998] = 4657, + [5999] = 3324, + [6000] = 514, + [6001] = 5908, + [6002] = 4658, + [6003] = 5931, + [6004] = 6004, + [6005] = 5948, + [6006] = 4659, + [6007] = 5950, + [6008] = 5883, + [6009] = 5952, [6010] = 6010, - [6011] = 4805, - [6012] = 6012, - [6013] = 5973, - [6014] = 5968, - [6015] = 6015, - [6016] = 6016, - [6017] = 385, - [6018] = 4796, - [6019] = 541, - [6020] = 5976, - [6021] = 4633, - [6022] = 4637, - [6023] = 4806, - [6024] = 5973, - [6025] = 4809, - [6026] = 5758, - [6027] = 4950, - [6028] = 5759, - [6029] = 370, - [6030] = 371, - [6031] = 5976, - [6032] = 6032, - [6033] = 1607, - [6034] = 5973, - [6035] = 4815, - [6036] = 4817, - [6037] = 6037, - [6038] = 4970, + [6011] = 497, + [6012] = 5931, + [6013] = 6013, + [6014] = 5912, + [6015] = 3325, + [6016] = 5912, + [6017] = 4660, + [6018] = 5908, + [6019] = 4661, + [6020] = 6020, + [6021] = 6021, + [6022] = 4662, + [6023] = 5948, + [6024] = 4663, + [6025] = 5950, + [6026] = 5883, + [6027] = 5952, + [6028] = 5908, + [6029] = 5936, + [6030] = 6030, + [6031] = 5931, + [6032] = 5912, + [6033] = 6033, + [6034] = 143, + [6035] = 5908, + [6036] = 6036, + [6037] = 4664, + [6038] = 4665, [6039] = 6039, - [6040] = 4971, - [6041] = 494, - [6042] = 497, - [6043] = 5976, - [6044] = 6044, - [6045] = 6045, - [6046] = 5973, - [6047] = 6047, - [6048] = 6048, - [6049] = 4972, - [6050] = 4973, - [6051] = 338, - [6052] = 6052, - [6053] = 5976, - [6054] = 4820, - [6055] = 503, - [6056] = 5973, - [6057] = 6057, - [6058] = 4801, - [6059] = 4802, - [6060] = 385, - [6061] = 506, - [6062] = 1730, - [6063] = 5976, - [6064] = 6064, - [6065] = 5973, - [6066] = 6066, - [6067] = 5973, - [6068] = 6068, - [6069] = 6069, - [6070] = 6070, - [6071] = 2827, - [6072] = 5976, - [6073] = 6073, - [6074] = 5973, - [6075] = 6075, - [6076] = 5788, - [6077] = 6077, - [6078] = 6064, - [6079] = 6066, - [6080] = 6006, - [6081] = 6010, - [6082] = 141, - [6083] = 318, - [6084] = 1666, - [6085] = 4948, - [6086] = 545, - [6087] = 542, - [6088] = 5789, - [6089] = 1742, - [6090] = 4823, - [6091] = 5982, - [6092] = 6032, - [6093] = 6064, - [6094] = 4826, - [6095] = 6069, - [6096] = 548, - [6097] = 4975, - [6098] = 6039, - [6099] = 315, - [6100] = 6052, - [6101] = 6066, - [6102] = 4976, - [6103] = 1730, - [6104] = 5976, - [6105] = 4868, - [6106] = 5757, - [6107] = 5968, - [6108] = 5976, - [6109] = 4966, - [6110] = 3533, - [6111] = 6070, - [6112] = 4853, - [6113] = 6113, - [6114] = 4865, - [6115] = 521, - [6116] = 6073, - [6117] = 1669, - [6118] = 5982, - [6119] = 6075, - [6120] = 1742, - [6121] = 4814, - [6122] = 4827, - [6123] = 370, - [6124] = 5973, - [6125] = 6125, - [6126] = 6006, - [6127] = 6127, - [6128] = 6010, - [6129] = 4828, - [6130] = 1666, - [6131] = 318, - [6132] = 147, - [6133] = 4829, - [6134] = 4833, - [6135] = 2855, - [6136] = 6012, - [6137] = 6016, - [6138] = 6044, - [6139] = 6077, - [6140] = 144, - [6141] = 145, - [6142] = 146, - [6143] = 4834, - [6144] = 148, - [6145] = 496, - [6146] = 5968, - [6147] = 6113, - [6148] = 4835, - [6149] = 6012, - [6150] = 6016, - [6151] = 6044, - [6152] = 4742, - [6153] = 4743, - [6154] = 1604, - [6155] = 5976, - [6156] = 149, - [6157] = 1688, - [6158] = 6069, - [6159] = 5976, - [6160] = 384, - [6161] = 6012, - [6162] = 6016, - [6163] = 6044, - [6164] = 6077, - [6165] = 6077, - [6166] = 5744, - [6167] = 4745, - [6168] = 5982, - [6169] = 5968, - [6170] = 6113, - [6171] = 6070, - [6172] = 4746, - [6173] = 360, - [6174] = 4837, - [6175] = 5968, - [6176] = 6113, - [6177] = 5973, - [6178] = 5968, - [6179] = 6113, - [6180] = 453, - [6181] = 4747, - [6182] = 5968, - [6183] = 6113, - [6184] = 5968, - [6185] = 6113, - [6186] = 4792, - [6187] = 6113, - [6188] = 4748, - [6189] = 5968, - [6190] = 6113, - [6191] = 6073, - [6192] = 4751, - [6193] = 5968, - [6194] = 6113, - [6195] = 6075, - [6196] = 4758, - [6197] = 5968, - [6198] = 6113, - [6199] = 451, - [6200] = 5968, - [6201] = 6113, - [6202] = 5968, - [6203] = 6113, - [6204] = 5968, - [6205] = 6113, - [6206] = 5968, - [6207] = 6113, - [6208] = 5968, - [6209] = 6113, - [6210] = 5968, - [6211] = 6113, - [6212] = 5975, - [6213] = 5980, - [6214] = 5983, - [6215] = 5973, - [6216] = 6047, - [6217] = 6113, - [6218] = 4793, - [6219] = 318, - [6220] = 338, - [6221] = 393, - [6222] = 4839, - [6223] = 4977, + [6040] = 479, + [6041] = 5948, + [6042] = 5950, + [6043] = 5883, + [6044] = 5952, + [6045] = 4666, + [6046] = 5931, + [6047] = 5912, + [6048] = 4667, + [6049] = 6049, + [6050] = 6050, + [6051] = 4629, + [6052] = 4668, + [6053] = 4669, + [6054] = 5908, + [6055] = 4670, + [6056] = 4671, + [6057] = 5948, + [6058] = 6058, + [6059] = 5950, + [6060] = 5883, + [6061] = 5952, + [6062] = 529, + [6063] = 5931, + [6064] = 5912, + [6065] = 490, + [6066] = 4672, + [6067] = 142, + [6068] = 5908, + [6069] = 4673, + [6070] = 5908, + [6071] = 4674, + [6072] = 4675, + [6073] = 5766, + [6074] = 5948, + [6075] = 5950, + [6076] = 5883, + [6077] = 5952, + [6078] = 5931, + [6079] = 5912, + [6080] = 6080, + [6081] = 3334, + [6082] = 5908, + [6083] = 5910, + [6084] = 498, + [6085] = 3338, + [6086] = 4676, + [6087] = 5948, + [6088] = 5950, + [6089] = 6089, + [6090] = 5952, + [6091] = 6091, + [6092] = 6092, + [6093] = 6093, + [6094] = 5931, + [6095] = 5948, + [6096] = 5912, + [6097] = 4677, + [6098] = 6021, + [6099] = 5908, + [6100] = 4678, + [6101] = 504, + [6102] = 5948, + [6103] = 5950, + [6104] = 5883, + [6105] = 5952, + [6106] = 509, + [6107] = 6107, + [6108] = 6108, + [6109] = 5931, + [6110] = 5950, + [6111] = 5912, + [6112] = 4679, + [6113] = 4680, + [6114] = 5908, + [6115] = 4681, + [6116] = 5948, + [6117] = 5950, + [6118] = 5883, + [6119] = 5952, + [6120] = 4682, + [6121] = 4683, + [6122] = 5931, + [6123] = 5912, + [6124] = 4684, + [6125] = 4685, + [6126] = 5908, + [6127] = 4686, + [6128] = 4687, + [6129] = 5948, + [6130] = 5950, + [6131] = 5883, + [6132] = 5952, + [6133] = 4688, + [6134] = 5931, + [6135] = 5912, + [6136] = 4689, + [6137] = 4691, + [6138] = 4692, + [6139] = 5908, + [6140] = 6140, + [6141] = 500, + [6142] = 5948, + [6143] = 5950, + [6144] = 5883, + [6145] = 5952, + [6146] = 5931, + [6147] = 5912, + [6148] = 491, + [6149] = 5908, + [6150] = 5948, + [6151] = 6151, + [6152] = 5883, + [6153] = 5952, + [6154] = 5931, + [6155] = 5912, + [6156] = 5908, + [6157] = 510, + [6158] = 5931, + [6159] = 5912, + [6160] = 5908, + [6161] = 151, + [6162] = 152, + [6163] = 5931, + [6164] = 5912, + [6165] = 5908, + [6166] = 5931, + [6167] = 5912, + [6168] = 477, + [6169] = 5908, + [6170] = 5931, + [6171] = 5912, + [6172] = 5908, + [6173] = 6173, + [6174] = 5931, + [6175] = 5912, + [6176] = 5908, + [6177] = 6089, + [6178] = 5931, + [6179] = 5912, + [6180] = 5908, + [6181] = 5931, + [6182] = 5912, + [6183] = 5908, + [6184] = 5910, + [6185] = 5931, + [6186] = 5912, + [6187] = 5908, + [6188] = 5931, + [6189] = 5912, + [6190] = 5908, + [6191] = 6191, + [6192] = 5931, + [6193] = 5912, + [6194] = 5908, + [6195] = 5931, + [6196] = 5912, + [6197] = 5908, + [6198] = 5931, + [6199] = 5912, + [6200] = 5908, + [6201] = 5931, + [6202] = 5912, + [6203] = 5908, + [6204] = 5931, + [6205] = 5912, + [6206] = 5908, + [6207] = 5912, + [6208] = 5908, + [6209] = 5912, + [6210] = 5908, + [6211] = 5912, + [6212] = 5908, + [6213] = 5912, + [6214] = 5908, + [6215] = 5912, + [6216] = 5908, + [6217] = 5912, + [6218] = 5908, + [6219] = 5912, + [6220] = 5908, + [6221] = 5931, + [6222] = 479, + [6223] = 6223, [6224] = 6224, [6225] = 6225, - [6226] = 506, + [6226] = 6226, [6227] = 6227, - [6228] = 371, - [6229] = 494, - [6230] = 384, - [6231] = 497, - [6232] = 6232, - [6233] = 587, - [6234] = 498, - [6235] = 385, + [6228] = 6228, + [6229] = 379, + [6230] = 5888, + [6231] = 6231, + [6232] = 529, + [6233] = 5889, + [6234] = 511, + [6235] = 499, [6236] = 6236, - [6237] = 1666, - [6238] = 370, - [6239] = 371, + [6237] = 6237, + [6238] = 6013, + [6239] = 6223, [6240] = 6240, [6241] = 6241, - [6242] = 6242, - [6243] = 6243, + [6242] = 5950, + [6243] = 5992, [6244] = 6244, - [6245] = 1666, - [6246] = 6246, + [6245] = 5883, + [6246] = 5952, [6247] = 6247, [6248] = 6248, - [6249] = 6249, - [6250] = 6250, - [6251] = 4814, - [6252] = 507, - [6253] = 6246, - [6254] = 508, + [6249] = 5952, + [6250] = 5948, + [6251] = 6228, + [6252] = 497, + [6253] = 2943, + [6254] = 2945, [6255] = 6255, - [6256] = 1730, - [6257] = 6257, - [6258] = 6258, - [6259] = 3535, - [6260] = 3521, + [6256] = 6240, + [6257] = 373, + [6258] = 6140, + [6259] = 6259, + [6260] = 6260, [6261] = 6261, - [6262] = 6262, - [6263] = 384, - [6264] = 6264, + [6262] = 6255, + [6263] = 6173, + [6264] = 5883, [6265] = 6265, - [6266] = 6266, + [6266] = 543, [6267] = 6267, - [6268] = 6268, + [6268] = 378, [6269] = 6269, [6270] = 6270, [6271] = 6271, [6272] = 6272, [6273] = 6273, [6274] = 6274, - [6275] = 6236, - [6276] = 6224, - [6277] = 6269, - [6278] = 6278, - [6279] = 6279, - [6280] = 385, - [6281] = 3115, - [6282] = 3116, + [6275] = 6275, + [6276] = 4630, + [6277] = 492, + [6278] = 495, + [6279] = 1639, + [6280] = 6280, + [6281] = 6281, + [6282] = 6282, [6283] = 6283, [6284] = 6284, - [6285] = 6285, - [6286] = 6286, - [6287] = 370, - [6288] = 6288, - [6289] = 6271, - [6290] = 6272, - [6291] = 6278, - [6292] = 6279, - [6293] = 6286, + [6285] = 376, + [6286] = 5948, + [6287] = 5950, + [6288] = 5883, + [6289] = 5952, + [6290] = 5931, + [6291] = 6291, + [6292] = 6227, + [6293] = 336, [6294] = 6294, - [6295] = 6295, - [6296] = 6296, - [6297] = 6225, - [6298] = 6294, - [6299] = 6299, - [6300] = 6295, - [6301] = 142, - [6302] = 6302, - [6303] = 6303, - [6304] = 6304, - [6305] = 6305, - [6306] = 6306, - [6307] = 6307, - [6308] = 541, - [6309] = 143, - [6310] = 6310, - [6311] = 545, - [6312] = 542, - [6313] = 541, - [6314] = 6314, - [6315] = 5996, - [6316] = 6316, - [6317] = 6317, + [6295] = 5950, + [6296] = 5883, + [6297] = 6297, + [6298] = 6298, + [6299] = 373, + [6300] = 459, + [6301] = 6301, + [6302] = 1581, + [6303] = 490, + [6304] = 2952, + [6305] = 5931, + [6306] = 373, + [6307] = 218, + [6308] = 6308, + [6309] = 6140, + [6310] = 6173, + [6311] = 6311, + [6312] = 5957, + [6313] = 5962, + [6314] = 5952, + [6315] = 379, + [6316] = 5966, + [6317] = 5972, [6318] = 6318, [6319] = 6319, [6320] = 6320, [6321] = 6321, - [6322] = 3529, - [6323] = 3532, - [6324] = 6324, - [6325] = 548, - [6326] = 521, + [6322] = 2954, + [6323] = 6244, + [6324] = 500, + [6325] = 6325, + [6326] = 529, [6327] = 6327, [6328] = 6328, - [6329] = 6329, + [6329] = 451, [6330] = 6330, - [6331] = 6331, - [6332] = 6332, + [6331] = 378, + [6332] = 2933, [6333] = 6333, - [6334] = 3124, - [6335] = 6232, - [6336] = 150, - [6337] = 6310, + [6334] = 5957, + [6335] = 5962, + [6336] = 5966, + [6337] = 5972, [6338] = 6338, - [6339] = 545, + [6339] = 6339, [6340] = 6340, - [6341] = 6225, - [6342] = 548, - [6343] = 521, - [6344] = 6344, - [6345] = 6345, - [6346] = 6246, - [6347] = 6236, - [6348] = 6224, - [6349] = 6269, - [6350] = 6286, - [6351] = 6294, - [6352] = 6295, - [6353] = 6306, - [6354] = 6354, + [6341] = 6341, + [6342] = 1589, + [6343] = 6343, + [6344] = 500, + [6345] = 477, + [6346] = 6247, + [6347] = 6191, + [6348] = 6226, + [6349] = 6349, + [6350] = 6259, + [6351] = 3333, + [6352] = 3337, + [6353] = 6353, + [6354] = 511, [6355] = 6355, - [6356] = 4948, - [6357] = 6273, - [6358] = 4950, - [6359] = 6274, - [6360] = 3524, - [6361] = 3525, + [6356] = 6356, + [6357] = 6247, + [6358] = 6191, + [6359] = 6226, + [6360] = 6259, + [6361] = 6361, [6362] = 6362, - [6363] = 6363, - [6364] = 6333, - [6365] = 6365, - [6366] = 6366, + [6363] = 477, + [6364] = 6338, + [6365] = 6224, + [6366] = 5950, [6367] = 6367, [6368] = 6368, [6369] = 6369, - [6370] = 6370, - [6371] = 6310, - [6372] = 6338, + [6370] = 6269, + [6371] = 6371, + [6372] = 6372, [6373] = 6373, - [6374] = 6236, - [6375] = 6224, - [6376] = 3125, - [6377] = 6225, - [6378] = 6269, - [6379] = 6068, + [6374] = 6374, + [6375] = 6375, + [6376] = 6376, + [6377] = 6270, + [6378] = 6378, + [6379] = 6379, [6380] = 6380, [6381] = 6381, - [6382] = 152, - [6383] = 151, - [6384] = 6246, - [6385] = 6236, - [6386] = 6224, - [6387] = 6269, - [6388] = 6286, - [6389] = 6294, - [6390] = 6295, - [6391] = 6306, + [6382] = 6382, + [6383] = 5918, + [6384] = 6384, + [6385] = 6376, + [6386] = 6378, + [6387] = 592, + [6388] = 6388, + [6389] = 6389, + [6390] = 6390, + [6391] = 5907, [6392] = 6392, - [6393] = 494, - [6394] = 6394, - [6395] = 6395, - [6396] = 6310, - [6397] = 4970, - [6398] = 6338, - [6399] = 497, - [6400] = 6400, - [6401] = 4971, - [6402] = 6402, - [6403] = 542, - [6404] = 4972, - [6405] = 6225, - [6406] = 6406, - [6407] = 4973, - [6408] = 6408, - [6409] = 6409, - [6410] = 545, - [6411] = 6411, - [6412] = 6412, - [6413] = 6246, - [6414] = 6236, - [6415] = 6224, - [6416] = 6269, - [6417] = 6286, - [6418] = 6294, - [6419] = 6295, - [6420] = 6306, - [6421] = 6232, - [6422] = 318, - [6423] = 6310, - [6424] = 6338, - [6425] = 472, - [6426] = 6225, - [6427] = 6427, - [6428] = 6246, - [6429] = 6236, - [6430] = 6224, - [6431] = 6269, - [6432] = 6286, - [6433] = 6294, - [6434] = 6295, - [6435] = 6306, - [6436] = 6436, - [6437] = 503, - [6438] = 6438, - [6439] = 6439, - [6440] = 6310, + [6393] = 149, + [6394] = 604, + [6395] = 605, + [6396] = 606, + [6397] = 148, + [6398] = 593, + [6399] = 594, + [6400] = 607, + [6401] = 6298, + [6402] = 608, + [6403] = 566, + [6404] = 6374, + [6405] = 6379, + [6406] = 595, + [6407] = 6381, + [6408] = 6382, + [6409] = 6367, + [6410] = 6376, + [6411] = 6378, + [6412] = 199, + [6413] = 6389, + [6414] = 309, + [6415] = 5360, + [6416] = 6416, + [6417] = 6417, + [6418] = 5900, + [6419] = 6373, + [6420] = 6420, + [6421] = 6421, + [6422] = 6422, + [6423] = 6374, + [6424] = 6424, + [6425] = 6030, + [6426] = 6381, + [6427] = 6379, + [6428] = 6328, + [6429] = 6039, + [6430] = 6381, + [6431] = 6382, + [6432] = 6376, + [6433] = 6378, + [6434] = 6434, + [6435] = 6435, + [6436] = 6389, + [6437] = 580, + [6438] = 581, + [6439] = 6382, + [6440] = 6273, [6441] = 6441, - [6442] = 6338, - [6443] = 6443, - [6444] = 4975, - [6445] = 6225, - [6446] = 6273, - [6447] = 548, - [6448] = 521, - [6449] = 4976, - [6450] = 4977, - [6451] = 4868, - [6452] = 4966, - [6453] = 4853, - [6454] = 4865, - [6455] = 6246, - [6456] = 6236, - [6457] = 6224, - [6458] = 6269, - [6459] = 6286, - [6460] = 6294, - [6461] = 6295, - [6462] = 6306, + [6442] = 6049, + [6443] = 6330, + [6444] = 5911, + [6445] = 6445, + [6446] = 6446, + [6447] = 6374, + [6448] = 6050, + [6449] = 574, + [6450] = 6450, + [6451] = 6379, + [6452] = 575, + [6453] = 6453, + [6454] = 6381, + [6455] = 6382, + [6456] = 6456, + [6457] = 6389, + [6458] = 6376, + [6459] = 6378, + [6460] = 6389, + [6461] = 1639, + [6462] = 578, [6463] = 6463, - [6464] = 6464, - [6465] = 6310, - [6466] = 6338, - [6467] = 6467, - [6468] = 6225, - [6469] = 506, - [6470] = 6470, - [6471] = 6471, - [6472] = 509, - [6473] = 6246, - [6474] = 6236, - [6475] = 6224, - [6476] = 6269, - [6477] = 6286, - [6478] = 6294, - [6479] = 6295, - [6480] = 6306, + [6464] = 6380, + [6465] = 6465, + [6466] = 6374, + [6467] = 5922, + [6468] = 2536, + [6469] = 6379, + [6470] = 590, + [6471] = 1527, + [6472] = 6382, + [6473] = 630, + [6474] = 6376, + [6475] = 6378, + [6476] = 6389, + [6477] = 479, + [6478] = 4354, + [6479] = 6479, + [6480] = 6480, [6481] = 6481, [6482] = 6482, - [6483] = 4742, - [6484] = 6310, - [6485] = 4743, - [6486] = 6338, - [6487] = 4745, - [6488] = 4746, - [6489] = 6225, - [6490] = 4747, - [6491] = 6491, - [6492] = 4748, - [6493] = 4751, - [6494] = 4758, - [6495] = 6271, - [6496] = 6272, - [6497] = 6246, - [6498] = 6236, - [6499] = 6224, - [6500] = 6269, - [6501] = 6286, - [6502] = 6294, - [6503] = 6295, - [6504] = 6306, - [6505] = 510, - [6506] = 6310, - [6507] = 6338, - [6508] = 6278, - [6509] = 6279, - [6510] = 6510, - [6511] = 4792, - [6512] = 6225, - [6513] = 6286, - [6514] = 6294, - [6515] = 4793, - [6516] = 6295, - [6517] = 4794, - [6518] = 4796, - [6519] = 4801, - [6520] = 6015, - [6521] = 6246, - [6522] = 6236, - [6523] = 6224, - [6524] = 6269, - [6525] = 6286, - [6526] = 6294, - [6527] = 6295, - [6528] = 6306, - [6529] = 4802, - [6530] = 4803, - [6531] = 6310, - [6532] = 4805, - [6533] = 6338, - [6534] = 6225, - [6535] = 6246, - [6536] = 6302, - [6537] = 6224, - [6538] = 6269, - [6539] = 6286, - [6540] = 6294, - [6541] = 6295, - [6542] = 6306, - [6543] = 4806, - [6544] = 4809, - [6545] = 6310, - [6546] = 6338, - [6547] = 6547, - [6548] = 6225, - [6549] = 4815, - [6550] = 4817, - [6551] = 6246, - [6552] = 6236, - [6553] = 6224, - [6554] = 6269, - [6555] = 6286, - [6556] = 6294, - [6557] = 6295, - [6558] = 6306, - [6559] = 6310, - [6560] = 4820, - [6561] = 6338, - [6562] = 6562, - [6563] = 6303, + [6483] = 6483, + [6484] = 362, + [6485] = 6374, + [6486] = 3019, + [6487] = 6379, + [6488] = 6488, + [6489] = 6382, + [6490] = 2537, + [6491] = 6376, + [6492] = 6378, + [6493] = 6493, + [6494] = 6389, + [6495] = 582, + [6496] = 583, + [6497] = 2515, + [6498] = 618, + [6499] = 3022, + [6500] = 6374, + [6501] = 644, + [6502] = 6374, + [6503] = 6503, + [6504] = 6379, + [6505] = 6382, + [6506] = 5899, + [6507] = 6376, + [6508] = 6378, + [6509] = 6389, + [6510] = 3024, + [6511] = 6511, + [6512] = 6374, + [6513] = 6513, + [6514] = 6379, + [6515] = 6515, + [6516] = 6382, + [6517] = 6376, + [6518] = 6378, + [6519] = 5968, + [6520] = 6389, + [6521] = 6521, + [6522] = 5970, + [6523] = 6374, + [6524] = 198, + [6525] = 6379, + [6526] = 6526, + [6527] = 6382, + [6528] = 631, + [6529] = 6376, + [6530] = 6378, + [6531] = 6291, + [6532] = 6389, + [6533] = 6533, + [6534] = 6534, + [6535] = 6151, + [6536] = 6271, + [6537] = 6374, + [6538] = 2945, + [6539] = 6091, + [6540] = 6375, + [6541] = 6379, + [6542] = 6382, + [6543] = 6376, + [6544] = 6378, + [6545] = 1132, + [6546] = 6389, + [6547] = 6092, + [6548] = 6548, + [6549] = 6353, + [6550] = 6379, + [6551] = 6374, + [6552] = 6379, + [6553] = 6382, + [6554] = 571, + [6555] = 6376, + [6556] = 6378, + [6557] = 6389, + [6558] = 572, + [6559] = 6559, + [6560] = 6560, + [6561] = 6297, + [6562] = 2943, + [6563] = 6379, [6564] = 6225, - [6565] = 6304, - [6566] = 6306, - [6567] = 6246, - [6568] = 6236, - [6569] = 6224, - [6570] = 6269, - [6571] = 6286, - [6572] = 6294, - [6573] = 6295, - [6574] = 6306, - [6575] = 6370, - [6576] = 4823, - [6577] = 4826, - [6578] = 6310, - [6579] = 6338, - [6580] = 4827, - [6581] = 6225, - [6582] = 6582, - [6583] = 6246, - [6584] = 6236, - [6585] = 6224, - [6586] = 6269, - [6587] = 6286, - [6588] = 6294, - [6589] = 6295, - [6590] = 6306, - [6591] = 6591, - [6592] = 6310, - [6593] = 6338, - [6594] = 6594, - [6595] = 4828, - [6596] = 6225, - [6597] = 6597, - [6598] = 6598, - [6599] = 6599, - [6600] = 6246, - [6601] = 6236, - [6602] = 6224, - [6603] = 6269, - [6604] = 6286, - [6605] = 6294, - [6606] = 6295, - [6607] = 6306, - [6608] = 6310, - [6609] = 6338, - [6610] = 496, - [6611] = 6225, - [6612] = 4829, - [6613] = 6246, - [6614] = 6236, - [6615] = 6224, - [6616] = 6269, - [6617] = 6286, - [6618] = 6294, - [6619] = 6295, - [6620] = 6306, - [6621] = 4833, - [6622] = 6310, - [6623] = 6338, - [6624] = 4834, - [6625] = 6225, - [6626] = 4835, - [6627] = 4837, - [6628] = 6310, - [6629] = 6338, - [6630] = 4839, - [6631] = 6225, - [6632] = 4840, - [6633] = 4841, - [6634] = 6310, - [6635] = 6338, - [6636] = 4842, - [6637] = 6225, - [6638] = 1704, - [6639] = 6310, - [6640] = 6338, - [6641] = 1742, - [6642] = 6225, - [6643] = 4845, - [6644] = 6310, - [6645] = 6338, - [6646] = 6225, - [6647] = 4846, - [6648] = 6310, - [6649] = 6338, - [6650] = 6225, - [6651] = 4847, - [6652] = 6310, - [6653] = 6338, - [6654] = 6225, - [6655] = 4849, - [6656] = 6310, - [6657] = 6338, - [6658] = 6225, - [6659] = 6310, - [6660] = 6338, - [6661] = 6225, - [6662] = 6310, - [6663] = 6338, - [6664] = 6225, - [6665] = 6310, - [6666] = 6338, - [6667] = 6225, - [6668] = 4855, - [6669] = 6310, - [6670] = 6338, - [6671] = 6225, - [6672] = 6310, - [6673] = 6338, - [6674] = 6225, - [6675] = 6310, - [6676] = 6338, - [6677] = 6225, - [6678] = 6310, - [6679] = 6338, - [6680] = 6225, - [6681] = 6338, - [6682] = 6225, - [6683] = 6338, - [6684] = 6225, - [6685] = 6338, - [6686] = 6225, - [6687] = 6338, - [6688] = 6225, - [6689] = 6338, - [6690] = 6225, - [6691] = 6338, - [6692] = 6225, - [6693] = 6338, - [6694] = 6225, - [6695] = 4859, - [6696] = 6310, - [6697] = 496, - [6698] = 6368, - [6699] = 1714, - [6700] = 6380, - [6701] = 4819, - [6702] = 360, - [6703] = 338, - [6704] = 6464, - [6705] = 6705, - [6706] = 6706, - [6707] = 6274, - [6708] = 6547, - [6709] = 6303, - [6710] = 6304, - [6711] = 467, - [6712] = 6467, - [6713] = 6713, - [6714] = 6714, - [6715] = 6715, - [6716] = 6716, - [6717] = 6717, - [6718] = 212, - [6719] = 6306, - [6720] = 6720, - [6721] = 503, - [6722] = 3126, - [6723] = 6723, - [6724] = 496, - [6725] = 3097, - [6726] = 6246, - [6727] = 315, - [6728] = 6246, - [6729] = 6236, - [6730] = 6224, - [6731] = 6269, - [6732] = 6286, - [6733] = 6294, - [6734] = 6295, - [6735] = 6306, - [6736] = 6310, - [6737] = 6737, - [6738] = 6738, - [6739] = 371, - [6740] = 6740, - [6741] = 6741, - [6742] = 6742, - [6743] = 6310, - [6744] = 6744, - [6745] = 6745, - [6746] = 6369, - [6747] = 6747, - [6748] = 468, - [6749] = 469, - [6750] = 6338, - [6751] = 470, - [6752] = 384, - [6753] = 385, - [6754] = 6754, - [6755] = 6373, - [6756] = 370, - [6757] = 6757, - [6758] = 504, - [6759] = 4542, - [6760] = 6310, - [6761] = 6338, - [6762] = 6338, - [6763] = 6763, - [6764] = 6225, - [6765] = 6491, - [6766] = 6283, - [6767] = 6284, - [6768] = 6757, - [6769] = 6716, - [6770] = 543, - [6771] = 1183, - [6772] = 6491, - [6773] = 6283, - [6774] = 6284, - [6775] = 6757, - [6776] = 6714, - [6777] = 6705, - [6778] = 6706, - [6779] = 6779, - [6780] = 6236, - [6781] = 637, - [6782] = 2643, - [6783] = 6783, - [6784] = 6784, - [6785] = 6785, - [6786] = 653, - [6787] = 6787, - [6788] = 6788, - [6789] = 654, - [6790] = 6790, - [6791] = 6791, - [6792] = 6792, - [6793] = 6793, - [6794] = 6794, - [6795] = 6582, - [6796] = 6796, - [6797] = 6797, - [6798] = 6408, - [6799] = 6411, - [6800] = 6800, - [6801] = 6713, - [6802] = 6412, - [6803] = 5716, - [6804] = 598, - [6805] = 655, + [6565] = 6565, + [6566] = 6376, + [6567] = 6378, + [6568] = 6389, + [6569] = 573, + [6570] = 579, + [6571] = 2954, + [6572] = 5985, + [6573] = 631, + [6574] = 6379, + [6575] = 6355, + [6576] = 6376, + [6577] = 6378, + [6578] = 6389, + [6579] = 616, + [6580] = 639, + [6581] = 6274, + [6582] = 6356, + [6583] = 6583, + [6584] = 635, + [6585] = 617, + [6586] = 6327, + [6587] = 6275, + [6588] = 373, + [6589] = 6381, + [6590] = 6236, + [6591] = 6311, + [6592] = 584, + [6593] = 585, + [6594] = 6533, + [6595] = 6559, + [6596] = 6596, + [6597] = 6231, + [6598] = 376, + [6599] = 6379, + [6600] = 6282, + [6601] = 378, + [6602] = 6320, + [6603] = 379, + [6604] = 2551, + [6605] = 6319, + [6606] = 6606, + [6607] = 6374, + [6608] = 6608, + [6609] = 6392, + [6610] = 623, + [6611] = 6421, + [6612] = 5345, + [6613] = 6613, + [6614] = 6526, + [6615] = 6375, + [6616] = 6616, + [6617] = 6617, + [6618] = 6618, + [6619] = 6093, + [6620] = 6321, + [6621] = 6107, + [6622] = 6533, + [6623] = 6108, + [6624] = 6624, + [6625] = 6248, + [6626] = 5967, + [6627] = 6559, + [6628] = 6628, + [6629] = 6382, + [6630] = 636, + [6631] = 6631, + [6632] = 6389, + [6633] = 4470, + [6634] = 6634, + [6635] = 6521, + [6636] = 570, + [6637] = 6534, + [6638] = 6638, + [6639] = 3028, + [6640] = 6565, + [6641] = 3041, + [6642] = 6361, + [6643] = 2523, + [6644] = 3043, + [6645] = 2952, + [6646] = 2833, + [6647] = 6647, + [6648] = 6374, + [6649] = 6367, + [6650] = 3045, + [6651] = 615, + [6652] = 6624, + [6653] = 6653, + [6654] = 6654, + [6655] = 6376, + [6656] = 6378, + [6657] = 6657, + [6658] = 6654, + [6659] = 6659, + [6660] = 6660, + [6661] = 529, + [6662] = 3038, + [6663] = 6325, + [6664] = 3039, + [6665] = 5924, + [6666] = 5937, + [6667] = 5954, + [6668] = 5973, + [6669] = 620, + [6670] = 6237, + [6671] = 6671, + [6672] = 5906, + [6673] = 621, + [6674] = 622, + [6675] = 6379, + [6676] = 6340, + [6677] = 596, + [6678] = 632, + [6679] = 597, + [6680] = 598, + [6681] = 6681, + [6682] = 4471, + [6683] = 612, + [6684] = 6333, + [6685] = 6606, + [6686] = 6686, + [6687] = 500, + [6688] = 477, + [6689] = 6417, + [6690] = 6634, + [6691] = 6691, + [6692] = 6446, + [6693] = 6261, + [6694] = 6513, + [6695] = 6420, + [6696] = 5915, + [6697] = 1553, + [6698] = 6374, + [6699] = 6608, + [6700] = 5916, + [6701] = 6606, + [6702] = 3040, + [6703] = 4376, + [6704] = 6379, + [6705] = 6376, + [6706] = 6378, + [6707] = 6389, + [6708] = 6513, + [6709] = 6339, + [6710] = 5885, + [6711] = 6379, + [6712] = 6367, + [6713] = 6422, + [6714] = 6445, + [6715] = 6660, + [6716] = 6389, + [6717] = 6265, + [6718] = 6381, + [6719] = 6719, + [6720] = 2825, + [6721] = 6382, + [6722] = 6722, + [6723] = 6020, + [6724] = 5886, + [6725] = 6033, + [6726] = 6726, + [6727] = 6036, + [6728] = 6058, + [6729] = 3000, + [6730] = 6441, + [6731] = 5887, + [6732] = 5891, + [6733] = 6392, + [6734] = 6479, + [6735] = 6376, + [6736] = 6378, + [6737] = 6080, + [6738] = 643, + [6739] = 6421, + [6740] = 6367, + [6741] = 630, + [6742] = 6660, + [6743] = 6267, + [6744] = 6367, + [6745] = 6446, + [6746] = 6660, + [6747] = 6389, + [6748] = 6367, + [6749] = 602, + [6750] = 6660, + [6751] = 6367, + [6752] = 633, + [6753] = 6660, + [6754] = 6367, + [6755] = 6660, + [6756] = 6756, + [6757] = 336, + [6758] = 6367, + [6759] = 6660, + [6760] = 6367, + [6761] = 6660, + [6762] = 6691, + [6763] = 2933, + [6764] = 6367, + [6765] = 2949, + [6766] = 6660, + [6767] = 2846, + [6768] = 6660, + [6769] = 5898, + [6770] = 5902, + [6771] = 6771, + [6772] = 6367, + [6773] = 6660, + [6774] = 603, + [6775] = 6367, + [6776] = 6660, + [6777] = 6381, + [6778] = 6367, + [6779] = 6660, + [6780] = 6367, + [6781] = 6660, + [6782] = 546, + [6783] = 6367, + [6784] = 6660, + [6785] = 558, + [6786] = 6367, + [6787] = 6660, + [6788] = 2510, + [6789] = 6272, + [6790] = 6608, + [6791] = 5903, + [6792] = 6376, + [6793] = 6283, + [6794] = 6446, + [6795] = 6362, + [6796] = 6660, + [6797] = 6378, + [6798] = 6798, + [6799] = 364, + [6800] = 6526, + [6801] = 6382, + [6802] = 6802, + [6803] = 2522, + [6804] = 6804, + [6805] = 6805, [6806] = 6806, - [6807] = 3058, - [6808] = 656, - [6809] = 6809, - [6810] = 635, - [6811] = 1666, - [6812] = 614, + [6807] = 6807, + [6808] = 637, + [6809] = 3073, + [6810] = 3079, + [6811] = 6811, + [6812] = 6812, [6813] = 6813, - [6814] = 3161, - [6815] = 6783, - [6816] = 6784, - [6817] = 3214, - [6818] = 6562, - [6819] = 6787, + [6814] = 6814, + [6815] = 200, + [6816] = 6816, + [6817] = 6817, + [6818] = 645, + [6819] = 6819, [6820] = 6820, - [6821] = 3160, - [6822] = 6790, - [6823] = 6791, - [6824] = 6792, - [6825] = 6794, - [6826] = 636, - [6827] = 144, - [6828] = 6796, - [6829] = 6797, - [6830] = 145, - [6831] = 6800, - [6832] = 5713, - [6833] = 615, - [6834] = 545, - [6835] = 6243, - [6836] = 616, - [6837] = 6837, - [6838] = 6838, - [6839] = 6809, - [6840] = 617, + [6821] = 599, + [6822] = 6822, + [6823] = 6823, + [6824] = 6824, + [6825] = 613, + [6826] = 6826, + [6827] = 376, + [6828] = 6828, + [6829] = 4480, + [6830] = 151, + [6831] = 6814, + [6832] = 6832, + [6833] = 6833, + [6834] = 6834, + [6835] = 6835, + [6836] = 6822, + [6837] = 379, + [6838] = 1589, + [6839] = 6839, + [6840] = 6840, [6841] = 6841, - [6842] = 6800, + [6842] = 6842, [6843] = 6843, - [6844] = 6787, - [6845] = 620, - [6846] = 6783, - [6847] = 6784, - [6848] = 621, - [6849] = 622, - [6850] = 6787, - [6851] = 6851, - [6852] = 6715, - [6853] = 6790, - [6854] = 6791, - [6855] = 6792, - [6856] = 6355, - [6857] = 6794, - [6858] = 6858, - [6859] = 6796, - [6860] = 6797, - [6861] = 6861, - [6862] = 6862, - [6863] = 6800, - [6864] = 6864, - [6865] = 6800, - [6866] = 658, - [6867] = 659, - [6868] = 619, - [6869] = 6869, - [6870] = 6314, - [6871] = 660, - [6872] = 6872, - [6873] = 642, - [6874] = 661, - [6875] = 6809, - [6876] = 6864, - [6877] = 662, + [6844] = 6844, + [6845] = 6845, + [6846] = 6845, + [6847] = 6847, + [6848] = 6848, + [6849] = 490, + [6850] = 6847, + [6851] = 2010, + [6852] = 6852, + [6853] = 6853, + [6854] = 6834, + [6855] = 2933, + [6856] = 6856, + [6857] = 6814, + [6858] = 6822, + [6859] = 6859, + [6860] = 1887, + [6861] = 1888, + [6862] = 638, + [6863] = 6863, + [6864] = 152, + [6865] = 6865, + [6866] = 6866, + [6867] = 6867, + [6868] = 6811, + [6869] = 646, + [6870] = 373, + [6871] = 6824, + [6872] = 6842, + [6873] = 6873, + [6874] = 6874, + [6875] = 6875, + [6876] = 6805, + [6877] = 1639, [6878] = 6878, - [6879] = 6784, - [6880] = 663, - [6881] = 6787, - [6882] = 3173, - [6883] = 6790, - [6884] = 6791, - [6885] = 6792, + [6879] = 6879, + [6880] = 6856, + [6881] = 4414, + [6882] = 6812, + [6883] = 6883, + [6884] = 1990, + [6885] = 1940, [6886] = 6886, - [6887] = 6794, - [6888] = 6888, - [6889] = 6796, - [6890] = 6797, + [6887] = 4587, + [6888] = 1705, + [6889] = 6889, + [6890] = 6890, [6891] = 6891, - [6892] = 6800, + [6892] = 479, [6893] = 6893, - [6894] = 6783, - [6895] = 6895, - [6896] = 6896, - [6897] = 6893, - [6898] = 6790, - [6899] = 6809, - [6900] = 3050, - [6901] = 6784, - [6902] = 6787, - [6903] = 6783, - [6904] = 3211, - [6905] = 6790, - [6906] = 6791, - [6907] = 6792, - [6908] = 6794, - [6909] = 6909, - [6910] = 6910, - [6911] = 6796, - [6912] = 6797, - [6913] = 6913, - [6914] = 6800, - [6915] = 664, - [6916] = 588, - [6917] = 666, - [6918] = 647, - [6919] = 6919, - [6920] = 667, - [6921] = 649, - [6922] = 6922, - [6923] = 6791, - [6924] = 318, - [6925] = 6925, - [6926] = 6809, - [6927] = 6927, - [6928] = 6928, - [6929] = 6800, - [6930] = 6240, - [6931] = 6241, - [6932] = 6784, - [6933] = 6787, - [6934] = 6790, - [6935] = 6791, - [6936] = 6792, - [6937] = 2632, - [6938] = 6794, - [6939] = 6792, - [6940] = 6796, - [6941] = 6797, - [6942] = 6800, - [6943] = 6943, - [6944] = 6316, - [6945] = 6945, - [6946] = 6794, - [6947] = 6910, - [6948] = 6317, - [6949] = 6809, - [6950] = 2647, - [6951] = 6318, - [6952] = 6927, + [6894] = 4630, + [6895] = 6839, + [6896] = 500, + [6897] = 6897, + [6898] = 6845, + [6899] = 6867, + [6900] = 6845, + [6901] = 6814, + [6902] = 477, + [6903] = 6822, + [6904] = 6847, + [6905] = 6905, + [6906] = 6906, + [6907] = 6907, + [6908] = 6908, + [6909] = 2954, + [6910] = 6811, + [6911] = 6812, + [6912] = 6493, + [6913] = 6840, + [6914] = 6905, + [6915] = 2943, + [6916] = 6916, + [6917] = 6856, + [6918] = 6845, + [6919] = 6847, + [6920] = 6920, + [6921] = 6824, + [6922] = 529, + [6923] = 6923, + [6924] = 6832, + [6925] = 6852, + [6926] = 6890, + [6927] = 6875, + [6928] = 6805, + [6929] = 2945, + [6930] = 6883, + [6931] = 2952, + [6932] = 6889, + [6933] = 6933, + [6934] = 6934, + [6935] = 6893, + [6936] = 6936, + [6937] = 6937, + [6938] = 6934, + [6939] = 1581, + [6940] = 6940, + [6941] = 6937, + [6942] = 6856, + [6943] = 6814, + [6944] = 6883, + [6945] = 6822, + [6946] = 6889, + [6947] = 6856, + [6948] = 150, + [6949] = 6883, + [6950] = 6804, + [6951] = 6874, + [6952] = 6883, [6953] = 6953, - [6954] = 6319, - [6955] = 6784, - [6956] = 6787, - [6957] = 3097, - [6958] = 6790, - [6959] = 6791, - [6960] = 6792, - [6961] = 2633, - [6962] = 6794, - [6963] = 3225, - [6964] = 6796, - [6965] = 6797, - [6966] = 6790, - [6967] = 6791, - [6968] = 6800, - [6969] = 6792, - [6970] = 6320, - [6971] = 6242, - [6972] = 6972, - [6973] = 668, - [6974] = 6244, - [6975] = 6809, - [6976] = 6928, - [6977] = 4587, - [6978] = 6321, - [6979] = 6784, - [6980] = 650, - [6981] = 6787, - [6982] = 6790, - [6983] = 6791, - [6984] = 6792, - [6985] = 6285, - [6986] = 6794, - [6987] = 6796, - [6988] = 6797, - [6989] = 6800, - [6990] = 548, - [6991] = 6288, - [6992] = 338, - [6993] = 6597, - [6994] = 6809, - [6995] = 521, - [6996] = 4588, - [6997] = 6784, - [6998] = 6787, - [6999] = 6247, - [7000] = 6324, - [7001] = 6790, - [7002] = 6791, - [7003] = 6792, - [7004] = 6794, - [7005] = 6796, - [7006] = 6797, - [7007] = 6296, - [7008] = 6800, - [7009] = 6248, - [7010] = 6249, - [7011] = 2642, - [7012] = 6809, - [7013] = 7013, + [6954] = 6845, + [6955] = 6847, + [6956] = 6875, + [6957] = 6805, + [6958] = 6958, + [6959] = 6959, + [6960] = 6811, + [6961] = 6812, + [6962] = 6853, + [6963] = 6814, + [6964] = 6964, + [6965] = 6835, + [6966] = 6847, + [6967] = 6967, + [6968] = 6822, + [6969] = 479, + [6970] = 6875, + [6971] = 6883, + [6972] = 6878, + [6973] = 642, + [6974] = 6974, + [6975] = 6889, + [6976] = 378, + [6977] = 6977, + [6978] = 1977, + [6979] = 6841, + [6980] = 6879, + [6981] = 6823, + [6982] = 6982, + [6983] = 6983, + [6984] = 6984, + [6985] = 6985, + [6986] = 6983, + [6987] = 6987, + [6988] = 6988, + [6989] = 6989, + [6990] = 6990, + [6991] = 6991, + [6992] = 6992, + [6993] = 465, + [6994] = 6994, + [6995] = 6982, + [6996] = 6983, + [6997] = 6983, + [6998] = 6985, + [6999] = 6999, + [7000] = 7000, + [7001] = 6983, + [7002] = 7002, + [7003] = 7003, + [7004] = 7004, + [7005] = 6999, + [7006] = 7006, + [7007] = 7007, + [7008] = 7008, + [7009] = 7009, + [7010] = 7010, + [7011] = 7004, + [7012] = 7012, + [7013] = 6985, [7014] = 7014, [7015] = 7015, - [7016] = 6895, - [7017] = 6784, - [7018] = 6250, - [7019] = 6787, - [7020] = 6896, - [7021] = 6790, - [7022] = 6791, - [7023] = 6792, + [7016] = 6999, + [7017] = 6990, + [7018] = 7018, + [7019] = 7019, + [7020] = 7020, + [7021] = 6985, + [7022] = 7022, + [7023] = 7023, [7024] = 7024, - [7025] = 6794, - [7026] = 6796, - [7027] = 6797, - [7028] = 640, - [7029] = 6800, - [7030] = 6913, - [7031] = 6809, - [7032] = 3056, - [7033] = 6787, - [7034] = 6790, - [7035] = 6791, - [7036] = 6792, - [7037] = 6794, + [7025] = 7004, + [7026] = 7026, + [7027] = 7023, + [7028] = 7028, + [7029] = 6990, + [7030] = 6983, + [7031] = 631, + [7032] = 7032, + [7033] = 6990, + [7034] = 7004, + [7035] = 7012, + [7036] = 7036, + [7037] = 7012, [7038] = 7038, - [7039] = 6796, - [7040] = 6797, - [7041] = 6800, - [7042] = 6783, - [7043] = 624, - [7044] = 7044, - [7045] = 625, - [7046] = 626, - [7047] = 6783, - [7048] = 642, - [7049] = 6787, - [7050] = 6790, - [7051] = 6791, - [7052] = 6792, - [7053] = 6794, - [7054] = 627, - [7055] = 6784, - [7056] = 6796, - [7057] = 6797, - [7058] = 628, - [7059] = 6800, - [7060] = 629, - [7061] = 6787, - [7062] = 630, - [7063] = 6945, - [7064] = 6809, - [7065] = 6790, - [7066] = 6791, - [7067] = 6792, - [7068] = 6794, - [7069] = 6598, - [7070] = 6796, - [7071] = 6797, - [7072] = 6800, + [7039] = 7039, + [7040] = 6984, + [7041] = 7024, + [7042] = 6985, + [7043] = 470, + [7044] = 6987, + [7045] = 7045, + [7046] = 7018, + [7047] = 6990, + [7048] = 6987, + [7049] = 7049, + [7050] = 7050, + [7051] = 6982, + [7052] = 7028, + [7053] = 7053, + [7054] = 7018, + [7055] = 6999, + [7056] = 6983, + [7057] = 7023, + [7058] = 7014, + [7059] = 6985, + [7060] = 7024, + [7061] = 7032, + [7062] = 6984, + [7063] = 7045, + [7064] = 7064, + [7065] = 7065, + [7066] = 7066, + [7067] = 6987, + [7068] = 7068, + [7069] = 6999, + [7070] = 7070, + [7071] = 6983, + [7072] = 6990, [7073] = 7073, - [7074] = 6796, - [7075] = 6381, - [7076] = 7076, - [7077] = 6910, - [7078] = 6392, - [7079] = 496, - [7080] = 6841, - [7081] = 6394, - [7082] = 6395, - [7083] = 643, - [7084] = 7084, - [7085] = 651, - [7086] = 7086, - [7087] = 6257, - [7088] = 652, - [7089] = 7089, - [7090] = 6784, - [7091] = 6740, - [7092] = 6741, - [7093] = 6299, - [7094] = 6797, - [7095] = 7095, - [7096] = 1604, - [7097] = 199, - [7098] = 7098, - [7099] = 6794, - [7100] = 646, - [7101] = 6913, - [7102] = 198, - [7103] = 310, - [7104] = 6332, - [7105] = 7105, - [7106] = 6270, - [7107] = 6438, - [7108] = 6439, - [7109] = 6784, - [7110] = 6919, - [7111] = 7111, - [7112] = 7112, - [7113] = 6354, - [7114] = 669, - [7115] = 6922, - [7116] = 7116, - [7117] = 670, - [7118] = 6443, - [7119] = 4702, - [7120] = 6919, - [7121] = 6909, - [7122] = 6327, - [7123] = 6927, - [7124] = 6928, - [7125] = 371, - [7126] = 643, - [7127] = 384, - [7128] = 385, - [7129] = 370, - [7130] = 6744, - [7131] = 6809, - [7132] = 6785, - [7133] = 6328, - [7134] = 6329, - [7135] = 7135, - [7136] = 7136, - [7137] = 3115, - [7138] = 6599, - [7139] = 6796, - [7140] = 7140, - [7141] = 1607, - [7142] = 3116, - [7143] = 6891, - [7144] = 6330, - [7145] = 6331, - [7146] = 7146, - [7147] = 7147, - [7148] = 7148, - [7149] = 7149, - [7150] = 6797, - [7151] = 644, - [7152] = 7086, - [7153] = 360, - [7154] = 6886, - [7155] = 3221, - [7156] = 672, - [7157] = 673, - [7158] = 6463, - [7159] = 7159, - [7160] = 6784, - [7161] = 6362, - [7162] = 6888, - [7163] = 4598, - [7164] = 6783, - [7165] = 7165, - [7166] = 599, - [7167] = 7167, - [7168] = 7168, - [7169] = 7169, - [7170] = 3202, + [7074] = 6990, + [7075] = 6989, + [7076] = 7023, + [7077] = 7024, + [7078] = 7078, + [7079] = 7000, + [7080] = 7053, + [7081] = 6983, + [7082] = 7006, + [7083] = 7083, + [7084] = 7018, + [7085] = 7066, + [7086] = 7014, + [7087] = 6989, + [7088] = 7065, + [7089] = 6983, + [7090] = 7090, + [7091] = 6983, + [7092] = 7092, + [7093] = 7093, + [7094] = 7004, + [7095] = 7004, + [7096] = 7012, + [7097] = 6985, + [7098] = 7007, + [7099] = 6999, + [7100] = 7023, + [7101] = 7024, + [7102] = 6990, + [7103] = 6983, + [7104] = 7004, + [7105] = 7004, + [7106] = 6990, + [7107] = 7023, + [7108] = 7012, + [7109] = 7012, + [7110] = 6985, + [7111] = 6983, + [7112] = 6984, + [7113] = 6985, + [7114] = 7026, + [7115] = 6999, + [7116] = 6990, + [7117] = 7023, + [7118] = 7028, + [7119] = 6985, + [7120] = 7120, + [7121] = 6987, + [7122] = 7024, + [7123] = 7012, + [7124] = 6984, + [7125] = 7018, + [7126] = 6999, + [7127] = 6990, + [7128] = 7012, + [7129] = 7129, + [7130] = 6983, + [7131] = 7023, + [7132] = 7026, + [7133] = 6987, + [7134] = 7026, + [7135] = 6990, + [7136] = 6983, + [7137] = 7024, + [7138] = 7138, + [7139] = 7024, + [7140] = 7004, + [7141] = 7003, + [7142] = 7018, + [7143] = 6990, + [7144] = 6984, + [7145] = 6983, + [7146] = 7068, + [7147] = 7066, + [7148] = 7004, + [7149] = 7024, + [7150] = 7024, + [7151] = 7068, + [7152] = 6983, + [7153] = 6985, + [7154] = 6983, + [7155] = 7032, + [7156] = 7000, + [7157] = 7157, + [7158] = 7158, + [7159] = 7014, + [7160] = 6988, + [7161] = 7161, + [7162] = 7162, + [7163] = 7032, + [7164] = 6999, + [7165] = 7028, + [7166] = 7022, + [7167] = 6985, + [7168] = 6983, + [7169] = 7026, + [7170] = 6987, [7171] = 7171, - [7172] = 7013, - [7173] = 3203, - [7174] = 3204, - [7175] = 6784, - [7176] = 3205, - [7177] = 1189, - [7178] = 7024, - [7179] = 7105, - [7180] = 6787, - [7181] = 7181, - [7182] = 555, - [7183] = 633, - [7184] = 6790, - [7185] = 634, - [7186] = 7186, - [7187] = 7146, - [7188] = 6922, - [7189] = 6787, - [7190] = 6791, - [7191] = 6787, - [7192] = 6790, - [7193] = 6791, - [7194] = 6792, - [7195] = 6794, - [7196] = 7116, - [7197] = 6796, - [7198] = 6797, - [7199] = 6800, - [7200] = 6790, - [7201] = 6363, - [7202] = 6791, - [7203] = 7136, - [7204] = 3124, - [7205] = 7105, - [7206] = 7206, - [7207] = 7207, - [7208] = 6785, - [7209] = 2614, - [7210] = 6792, - [7211] = 6891, - [7212] = 7112, - [7213] = 7146, - [7214] = 7147, - [7215] = 589, - [7216] = 665, - [7217] = 6481, - [7218] = 7086, - [7219] = 6794, - [7220] = 7220, - [7221] = 6792, - [7222] = 6482, - [7223] = 6895, - [7224] = 553, - [7225] = 6796, - [7226] = 6797, - [7227] = 6896, - [7228] = 7147, - [7229] = 6841, - [7230] = 6800, - [7231] = 6787, - [7232] = 6794, - [7233] = 6365, - [7234] = 631, - [7235] = 7235, - [7236] = 6400, - [7237] = 7237, - [7238] = 7238, - [7239] = 7105, - [7240] = 6402, - [7241] = 6785, - [7242] = 6366, - [7243] = 6796, - [7244] = 6891, - [7245] = 7146, - [7246] = 6406, - [7247] = 7147, - [7248] = 7086, - [7249] = 6797, - [7250] = 7105, - [7251] = 6785, - [7252] = 648, - [7253] = 3125, - [7254] = 6891, - [7255] = 7146, - [7256] = 7147, - [7257] = 7086, - [7258] = 7105, - [7259] = 6785, - [7260] = 6891, - [7261] = 7146, - [7262] = 7147, - [7263] = 7086, - [7264] = 7105, - [7265] = 6261, - [7266] = 6785, - [7267] = 6891, - [7268] = 7146, - [7269] = 6264, - [7270] = 7147, - [7271] = 7086, - [7272] = 7105, - [7273] = 6785, - [7274] = 6891, - [7275] = 7146, - [7276] = 6409, - [7277] = 7147, - [7278] = 7086, - [7279] = 7105, - [7280] = 7235, - [7281] = 6785, - [7282] = 7282, - [7283] = 6891, - [7284] = 7146, - [7285] = 7147, - [7286] = 7086, - [7287] = 7105, - [7288] = 6591, - [7289] = 6785, - [7290] = 554, - [7291] = 6891, - [7292] = 7146, - [7293] = 7147, - [7294] = 7086, - [7295] = 7105, - [7296] = 6266, - [7297] = 6785, - [7298] = 7095, - [7299] = 6267, - [7300] = 6891, - [7301] = 7146, - [7302] = 7147, - [7303] = 7086, - [7304] = 7105, - [7305] = 597, - [7306] = 6268, - [7307] = 6785, - [7308] = 7089, - [7309] = 6891, - [7310] = 7146, - [7311] = 7147, - [7312] = 7086, - [7313] = 7105, - [7314] = 6785, - [7315] = 6891, - [7316] = 7146, - [7317] = 7147, - [7318] = 7086, - [7319] = 7105, - [7320] = 6785, - [7321] = 6367, - [7322] = 6891, - [7323] = 7146, - [7324] = 7147, - [7325] = 7086, - [7326] = 7105, - [7327] = 6785, - [7328] = 6891, - [7329] = 7146, - [7330] = 6594, - [7331] = 7147, - [7332] = 7086, - [7333] = 7105, - [7334] = 6785, - [7335] = 6891, - [7336] = 7146, - [7337] = 7147, - [7338] = 7086, - [7339] = 7105, - [7340] = 6785, - [7341] = 6891, - [7342] = 7146, - [7343] = 7147, - [7344] = 7086, - [7345] = 7105, - [7346] = 6785, - [7347] = 7168, - [7348] = 6891, - [7349] = 7146, - [7350] = 7186, - [7351] = 7147, - [7352] = 7086, - [7353] = 2621, - [7354] = 6809, - [7355] = 6809, - [7356] = 6945, - [7357] = 6945, - [7358] = 6262, - [7359] = 6265, - [7360] = 6809, - [7361] = 7361, - [7362] = 3126, - [7363] = 6344, - [7364] = 6345, - [7365] = 7365, - [7366] = 6441, + [7172] = 7092, + [7173] = 7173, + [7174] = 7018, + [7175] = 7175, + [7176] = 6983, + [7177] = 6990, + [7178] = 6983, + [7179] = 7004, + [7180] = 6985, + [7181] = 6990, + [7182] = 6987, + [7183] = 7018, + [7184] = 7184, + [7185] = 465, + [7186] = 6999, + [7187] = 7023, + [7188] = 6990, + [7189] = 7157, + [7190] = 465, + [7191] = 7024, + [7192] = 7192, + [7193] = 7026, + [7194] = 6907, + [7195] = 7032, + [7196] = 7032, + [7197] = 6983, + [7198] = 7138, + [7199] = 7199, + [7200] = 7200, + [7201] = 6983, + [7202] = 7012, + [7203] = 6987, + [7204] = 6987, + [7205] = 7018, + [7206] = 7023, + [7207] = 7090, + [7208] = 7032, + [7209] = 6985, + [7210] = 7210, + [7211] = 6983, + [7212] = 6988, + [7213] = 7032, + [7214] = 6984, + [7215] = 6982, + [7216] = 6984, + [7217] = 7217, + [7218] = 6999, + [7219] = 7049, + [7220] = 7023, + [7221] = 6983, + [7222] = 7222, + [7223] = 7066, + [7224] = 7024, + [7225] = 6999, + [7226] = 7226, + [7227] = 6983, + [7228] = 6988, + [7229] = 7090, + [7230] = 6982, + [7231] = 6992, + [7232] = 7050, + [7233] = 7120, + [7234] = 7234, + [7235] = 7018, + [7236] = 7236, + [7237] = 6990, + [7238] = 6988, + [7239] = 6982, + [7240] = 6984, + [7241] = 7241, + [7242] = 6999, + [7243] = 7032, + [7244] = 6983, + [7245] = 6984, + [7246] = 6999, + [7247] = 6988, + [7248] = 6982, + [7249] = 7078, + [7250] = 7026, + [7251] = 7078, + [7252] = 7066, + [7253] = 6983, + [7254] = 7004, + [7255] = 6988, + [7256] = 6982, + [7257] = 7257, + [7258] = 7258, + [7259] = 6983, + [7260] = 6985, + [7261] = 7261, + [7262] = 7068, + [7263] = 6988, + [7264] = 6982, + [7265] = 7092, + [7266] = 6999, + [7267] = 7023, + [7268] = 7024, + [7269] = 7004, + [7270] = 7064, + [7271] = 6988, + [7272] = 6982, + [7273] = 7273, + [7274] = 7274, + [7275] = 6983, + [7276] = 7138, + [7277] = 7012, + [7278] = 6988, + [7279] = 6988, + [7280] = 6982, + [7281] = 7281, + [7282] = 7024, + [7283] = 7092, + [7284] = 6983, + [7285] = 7066, + [7286] = 6987, + [7287] = 6988, + [7288] = 6982, + [7289] = 7289, + [7290] = 7018, + [7291] = 7092, + [7292] = 6985, + [7293] = 6983, + [7294] = 6990, + [7295] = 6988, + [7296] = 6982, + [7297] = 7070, + [7298] = 7000, + [7299] = 7028, + [7300] = 6983, + [7301] = 7301, + [7302] = 7129, + [7303] = 6988, + [7304] = 6982, + [7305] = 6984, + [7306] = 7066, + [7307] = 6983, + [7308] = 6988, + [7309] = 6982, + [7310] = 630, + [7311] = 7311, + [7312] = 7312, + [7313] = 6988, + [7314] = 7314, + [7315] = 7022, + [7316] = 7171, + [7317] = 6988, + [7318] = 7318, + [7319] = 7120, + [7320] = 7320, + [7321] = 6988, + [7322] = 7322, + [7323] = 7039, + [7324] = 6983, + [7325] = 6988, + [7326] = 6988, + [7327] = 6988, + [7328] = 6988, + [7329] = 6988, + [7330] = 6988, + [7331] = 6988, + [7332] = 6988, + [7333] = 6988, + [7334] = 6988, + [7335] = 6988, + [7336] = 6988, + [7337] = 6988, + [7338] = 6988, + [7339] = 6988, + [7340] = 6988, + [7341] = 6988, + [7342] = 6988, + [7343] = 6988, + [7344] = 6988, + [7345] = 6988, + [7346] = 7004, + [7347] = 7234, + [7348] = 6983, + [7349] = 470, + [7350] = 6985, + [7351] = 6999, + [7352] = 7120, + [7353] = 6984, + [7354] = 7222, + [7355] = 7192, + [7356] = 6999, + [7357] = 7171, + [7358] = 7024, + [7359] = 7004, + [7360] = 7360, + [7361] = 7012, + [7362] = 6985, + [7363] = 7066, + [7364] = 6987, + [7365] = 6999, + [7366] = 7023, [7367] = 7367, - [7368] = 7368, - [7369] = 7369, + [7368] = 470, + [7369] = 6990, [7370] = 7370, - [7371] = 7371, - [7372] = 4810, - [7373] = 7373, + [7371] = 6983, + [7372] = 7024, + [7373] = 7018, [7374] = 7374, - [7375] = 7375, - [7376] = 7376, - [7377] = 7377, - [7378] = 7378, - [7379] = 7375, - [7380] = 7380, - [7381] = 7381, - [7382] = 496, - [7383] = 7367, - [7384] = 7384, - [7385] = 2051, - [7386] = 7386, - [7387] = 7387, + [7375] = 6990, + [7376] = 7049, + [7377] = 7014, + [7378] = 7026, + [7379] = 7379, + [7380] = 6983, + [7381] = 7090, + [7382] = 7018, + [7383] = 7360, + [7384] = 6984, + [7385] = 6987, + [7386] = 6983, + [7387] = 6990, [7388] = 7388, - [7389] = 7389, - [7390] = 7390, - [7391] = 7076, - [7392] = 7392, - [7393] = 7393, - [7394] = 7393, - [7395] = 4819, - [7396] = 7396, - [7397] = 152, - [7398] = 7398, - [7399] = 548, - [7400] = 521, - [7401] = 7401, - [7402] = 7402, - [7403] = 7403, - [7404] = 7404, - [7405] = 7392, - [7406] = 7406, - [7407] = 1666, - [7408] = 7378, - [7409] = 3125, - [7410] = 3124, - [7411] = 7411, - [7412] = 7412, - [7413] = 7413, - [7414] = 7374, - [7415] = 7415, - [7416] = 371, - [7417] = 2129, - [7418] = 370, - [7419] = 7375, - [7420] = 7420, - [7421] = 385, - [7422] = 1742, - [7423] = 7393, - [7424] = 4675, - [7425] = 7402, - [7426] = 7387, - [7427] = 7403, - [7428] = 7428, - [7429] = 7402, - [7430] = 4644, - [7431] = 7396, - [7432] = 3278, - [7433] = 3271, - [7434] = 7434, - [7435] = 7435, - [7436] = 7436, - [7437] = 3115, - [7438] = 3116, - [7439] = 7404, - [7440] = 7389, - [7441] = 2080, - [7442] = 7367, - [7443] = 7404, - [7444] = 7444, - [7445] = 7445, - [7446] = 7374, - [7447] = 7375, - [7448] = 7435, - [7449] = 638, - [7450] = 384, - [7451] = 7392, - [7452] = 7415, - [7453] = 7396, - [7454] = 7370, - [7455] = 7403, - [7456] = 7402, - [7457] = 7404, - [7458] = 7411, - [7459] = 7459, - [7460] = 1730, - [7461] = 7461, - [7462] = 7384, - [7463] = 7369, - [7464] = 7464, - [7465] = 7465, - [7466] = 7466, - [7467] = 7467, - [7468] = 7464, - [7469] = 2068, - [7470] = 7388, - [7471] = 7471, - [7472] = 1999, - [7473] = 618, - [7474] = 7373, - [7475] = 7475, - [7476] = 7367, - [7477] = 2000, - [7478] = 645, - [7479] = 7465, - [7480] = 545, - [7481] = 7403, - [7482] = 7482, - [7483] = 7411, - [7484] = 7367, - [7485] = 7485, - [7486] = 496, - [7487] = 3097, - [7488] = 7403, - [7489] = 7489, - [7490] = 542, - [7491] = 7435, - [7492] = 7406, - [7493] = 151, - [7494] = 7403, - [7495] = 7402, - [7496] = 7496, - [7497] = 7436, - [7498] = 7466, - [7499] = 7499, - [7500] = 7471, - [7501] = 7501, - [7502] = 595, - [7503] = 7503, - [7504] = 612, - [7505] = 632, - [7506] = 1769, - [7507] = 7386, - [7508] = 7459, - [7509] = 200, - [7510] = 7374, - [7511] = 7404, - [7512] = 7375, - [7513] = 150, - [7514] = 7514, - [7515] = 7515, - [7516] = 7516, - [7517] = 7517, - [7518] = 7401, - [7519] = 7374, - [7520] = 7375, - [7521] = 7521, - [7522] = 7522, - [7523] = 7523, - [7524] = 7374, - [7525] = 7402, - [7526] = 7404, - [7527] = 7435, - [7528] = 7436, - [7529] = 593, - [7530] = 7530, - [7531] = 7411, - [7532] = 7532, - [7533] = 7533, - [7534] = 7534, - [7535] = 7392, - [7536] = 7536, - [7537] = 7537, - [7538] = 7396, - [7539] = 7390, - [7540] = 7540, - [7541] = 7541, - [7542] = 7517, - [7543] = 7444, - [7544] = 7436, - [7545] = 7545, - [7546] = 7546, - [7547] = 7547, - [7548] = 7548, - [7549] = 7549, - [7550] = 7550, - [7551] = 7551, - [7552] = 7552, - [7553] = 7553, - [7554] = 7547, - [7555] = 7555, - [7556] = 7550, - [7557] = 7557, - [7558] = 7553, - [7559] = 7559, - [7560] = 7555, - [7561] = 7552, - [7562] = 7555, - [7563] = 7563, - [7564] = 7564, - [7565] = 7565, - [7566] = 7566, - [7567] = 7567, - [7568] = 7568, - [7569] = 7564, - [7570] = 7570, - [7571] = 7571, - [7572] = 7557, - [7573] = 7555, - [7574] = 7574, - [7575] = 7575, - [7576] = 7576, - [7577] = 7575, - [7578] = 7574, - [7579] = 7579, - [7580] = 7579, - [7581] = 7581, - [7582] = 7563, - [7583] = 7555, - [7584] = 7584, - [7585] = 7563, - [7586] = 7586, - [7587] = 7557, - [7588] = 7571, - [7589] = 7555, - [7590] = 7590, - [7591] = 7563, - [7592] = 441, - [7593] = 7593, - [7594] = 7553, - [7595] = 7571, - [7596] = 7596, - [7597] = 7563, - [7598] = 7598, - [7599] = 7576, - [7600] = 7600, - [7601] = 7557, - [7602] = 7574, - [7603] = 441, - [7604] = 7604, - [7605] = 7581, - [7606] = 7606, - [7607] = 7575, - [7608] = 7608, - [7609] = 7609, - [7610] = 7555, - [7611] = 7555, - [7612] = 7563, - [7613] = 7598, - [7614] = 7557, - [7615] = 7574, - [7616] = 7616, - [7617] = 7581, - [7618] = 7552, - [7619] = 7557, - [7620] = 7564, - [7621] = 7621, - [7622] = 7551, - [7623] = 7547, - [7624] = 7624, - [7625] = 7625, - [7626] = 7579, - [7627] = 7581, - [7628] = 7628, - [7629] = 7590, - [7630] = 7552, - [7631] = 7625, - [7632] = 7632, - [7633] = 7628, - [7634] = 7634, - [7635] = 7555, - [7636] = 7636, - [7637] = 642, - [7638] = 7376, - [7639] = 7557, - [7640] = 7574, - [7641] = 7575, - [7642] = 7581, - [7643] = 7563, - [7644] = 7571, - [7645] = 441, - [7646] = 7555, - [7647] = 7555, - [7648] = 7557, - [7649] = 7581, - [7650] = 7650, - [7651] = 7651, - [7652] = 7574, - [7653] = 7559, - [7654] = 7575, - [7655] = 7581, - [7656] = 7550, - [7657] = 7628, - [7658] = 7555, - [7659] = 7547, - [7660] = 7553, - [7661] = 7661, - [7662] = 7662, - [7663] = 7550, - [7664] = 7552, - [7665] = 7553, - [7666] = 7666, - [7667] = 7555, - [7668] = 7596, - [7669] = 7624, - [7670] = 7670, - [7671] = 7555, - [7672] = 7672, - [7673] = 7651, - [7674] = 7674, - [7675] = 7574, - [7676] = 7555, - [7677] = 7677, - [7678] = 7563, - [7679] = 7557, - [7680] = 7574, - [7681] = 7581, - [7682] = 7564, - [7683] = 7683, - [7684] = 7579, - [7685] = 7575, - [7686] = 7555, - [7687] = 7590, - [7688] = 7550, - [7689] = 7689, - [7690] = 7547, - [7691] = 7672, - [7692] = 7581, - [7693] = 7590, - [7694] = 7575, - [7695] = 7695, - [7696] = 7552, - [7697] = 7552, - [7698] = 7555, - [7699] = 7547, - [7700] = 7550, - [7701] = 7552, - [7702] = 7616, - [7703] = 7703, - [7704] = 7547, - [7705] = 7579, - [7706] = 7564, - [7707] = 7590, - [7708] = 7574, - [7709] = 442, - [7710] = 7703, - [7711] = 7550, - [7712] = 7555, - [7713] = 7564, - [7714] = 7714, - [7715] = 7563, - [7716] = 7555, - [7717] = 7661, - [7718] = 7552, - [7719] = 7564, - [7720] = 7579, - [7721] = 7590, - [7722] = 7571, - [7723] = 7563, - [7724] = 7724, - [7725] = 7547, - [7726] = 7584, - [7727] = 7571, - [7728] = 7728, - [7729] = 7729, - [7730] = 7616, - [7731] = 7634, - [7732] = 7557, - [7733] = 7574, - [7734] = 7579, - [7735] = 7590, - [7736] = 7581, - [7737] = 7737, - [7738] = 7563, - [7739] = 7575, - [7740] = 7616, - [7741] = 7553, - [7742] = 7742, - [7743] = 7581, - [7744] = 7555, - [7745] = 7557, - [7746] = 7574, - [7747] = 7579, - [7748] = 7590, - [7749] = 7737, - [7750] = 643, - [7751] = 7751, - [7752] = 7547, - [7753] = 7557, - [7754] = 7754, - [7755] = 7624, - [7756] = 7650, - [7757] = 7576, - [7758] = 7552, - [7759] = 7555, - [7760] = 7579, - [7761] = 7590, - [7762] = 7550, - [7763] = 7581, - [7764] = 7574, - [7765] = 7624, - [7766] = 7751, - [7767] = 7552, - [7768] = 7575, - [7769] = 7576, - [7770] = 7661, - [7771] = 7695, - [7772] = 7564, - [7773] = 7579, - [7774] = 7590, - [7775] = 7737, - [7776] = 7776, - [7777] = 7596, - [7778] = 7553, - [7779] = 7550, - [7780] = 7636, - [7781] = 7624, - [7782] = 7737, - [7783] = 7565, - [7784] = 7784, - [7785] = 7670, - [7786] = 7579, - [7787] = 7590, - [7788] = 7552, - [7789] = 7789, - [7790] = 7571, - [7791] = 7661, - [7792] = 7792, - [7793] = 7555, - [7794] = 7557, - [7795] = 7574, - [7796] = 7555, - [7797] = 7564, - [7798] = 7576, - [7799] = 7579, - [7800] = 7590, - [7801] = 7801, - [7802] = 7552, - [7803] = 7547, - [7804] = 7553, - [7805] = 7805, - [7806] = 7806, - [7807] = 7550, - [7808] = 442, - [7809] = 7809, - [7810] = 7576, - [7811] = 7555, - [7812] = 7579, - [7813] = 7590, - [7814] = 7552, - [7815] = 7555, - [7816] = 7575, - [7817] = 7608, - [7818] = 7581, - [7819] = 7737, - [7820] = 7550, - [7821] = 7563, - [7822] = 7564, - [7823] = 7571, - [7824] = 7557, - [7825] = 7579, - [7826] = 7590, - [7827] = 7576, - [7828] = 7574, - [7829] = 7575, - [7830] = 7553, - [7831] = 7581, - [7832] = 7832, - [7833] = 7672, - [7834] = 7555, - [7835] = 7579, - [7836] = 7590, - [7837] = 7837, - [7838] = 7555, - [7839] = 7608, - [7840] = 7557, - [7841] = 7574, - [7842] = 7651, - [7843] = 7552, - [7844] = 7552, - [7845] = 7579, - [7846] = 7555, - [7847] = 7847, - [7848] = 7548, - [7849] = 7598, - [7850] = 7754, - [7851] = 7576, - [7852] = 7555, - [7853] = 7586, - [7854] = 7579, - [7855] = 7564, - [7856] = 7552, - [7857] = 7555, - [7858] = 7564, - [7859] = 7563, - [7860] = 7672, - [7861] = 7806, - [7862] = 7555, - [7863] = 7579, - [7864] = 7555, - [7865] = 7557, - [7866] = 7661, - [7867] = 7552, - [7868] = 7868, - [7869] = 7574, - [7870] = 7547, - [7871] = 7555, - [7872] = 7579, - [7873] = 7579, - [7874] = 7579, - [7875] = 7579, - [7876] = 7579, - [7877] = 7579, - [7878] = 7579, - [7879] = 7579, - [7880] = 7579, - [7881] = 7579, - [7882] = 7579, - [7883] = 7579, - [7884] = 7579, - [7885] = 7579, - [7886] = 7579, - [7887] = 7579, - [7888] = 7579, - [7889] = 7579, - [7890] = 7579, - [7891] = 7579, - [7892] = 7579, - [7893] = 7575, - [7894] = 7546, - [7895] = 7754, - [7896] = 7896, - [7897] = 442, - [7898] = 7898, - [7899] = 7555, - [7900] = 7900, - [7901] = 7581, - [7902] = 7754, - [7903] = 7609, - [7904] = 7552, - [7905] = 7563, - [7906] = 7683, - [7907] = 7563, - [7908] = 7571, - [7909] = 7571, - [7910] = 7557, - [7911] = 7911, - [7912] = 7574, - [7913] = 7575, - [7914] = 7914, - [7915] = 7581, - [7916] = 7547, - [7917] = 7695, - [7918] = 7918, - [7919] = 7550, - [7920] = 7616, - [7921] = 7555, - [7922] = 7555, - [7923] = 7555, - [7924] = 7924, - [7925] = 7925, - [7926] = 7624, - [7927] = 7911, - [7928] = 7928, - [7929] = 7650, - [7930] = 7930, - [7931] = 7931, - [7932] = 7932, - [7933] = 7751, - [7934] = 7571, - [7935] = 7624, - [7936] = 7695, - [7937] = 7555, - [7938] = 7624, - [7939] = 7939, - [7940] = 7596, - [7941] = 7550, - [7942] = 7555, - [7943] = 7564, - [7944] = 7552, - [7945] = 7945, - [7946] = 7557, - [7947] = 7552, - [7948] = 7784, - [7949] = 7574, - [7950] = 7939, - [7951] = 7662, - [7952] = 7547, - [7953] = 7953, }; static TSCharacterRange aux_sym_cmd_identifier_token1_character_set_1[] = { @@ -13784,1291 +13208,1291 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4101, - '$', 2415, - '\'', 2777, - '(', 2492, - ')', 2615, - '*', 1767, - '+', 1772, - ',', 2295, - '-', 1773, - '.', 2534, - '/', 1769, - '0', 1975, - ':', 2792, - ';', 2253, - '<', 1792, - '=', 833, - '>', 1795, - '?', 2319, - '@', 2316, - '[', 2735, - ']', 2292, - '^', 2813, - '_', 2406, - '`', 454, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4102, + '$', 2416, + '\'', 2778, + '(', 2493, + ')', 2616, + '*', 1768, + '+', 1773, + ',', 2296, + '-', 1774, + '.', 2535, + '/', 1770, + '0', 1976, + ':', 2793, + ';', 2254, + '<', 1793, + '=', 834, + '>', 1796, + '?', 2320, + '@', 2317, + '[', 2736, + ']', 2293, + '^', 2814, + '_', 2407, + '`', 455, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(715); + lookahead == ' ') SKIP(716); if (lookahead == '!' || - lookahead == '&') ADVANCE(3906); + lookahead == '&') ADVANCE(3907); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2028); + lookahead == 'i') ADVANCE(2029); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2022); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1976); + lookahead == 'n') ADVANCE(2023); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1977); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(2036); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(2037); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(2250); + if (lookahead == '\n') ADVANCE(2251); END_STATE(); case 2: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1266, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '*', 2456, - '+', 2510, - ',', 2295, - '-', 2337, - '.', 2800, - '/', 2499, - '0', 2648, - ':', 2792, - ';', 2253, - '<', 2481, - '=', 834, - '>', 2314, - '?', 2458, - 'I', 1544, - 'N', 1537, - '_', 1285, - '`', 454, - 'a', 1399, - 'b', 1381, - 'c', 1301, - 'd', 1329, - 'e', 859, - 'f', 1294, - 'h', 1300, - 'i', 1278, - 'l', 1344, - 'm', 1296, - 'n', 1440, - 'o', 860, - 'r', 1330, - 's', 1428, - 't', 1447, - 'u', 1484, - 'w', 1375, - 'x', 1434, - '|', 2254, - '}', 2403, + '!', 1267, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '*', 2457, + '+', 2511, + ',', 2296, + '-', 2338, + '.', 2801, + '/', 2500, + '0', 2649, + ':', 2793, + ';', 2254, + '<', 2482, + '=', 835, + '>', 2315, + '?', 2459, + 'I', 1545, + 'N', 1538, + '_', 1286, + '`', 455, + 'a', 1400, + 'b', 1382, + 'c', 1302, + 'd', 1330, + 'e', 860, + 'f', 1295, + 'h', 1301, + 'i', 1279, + 'l', 1345, + 'm', 1297, + 'n', 1441, + 'o', 861, + 'r', 1331, + 's', 1429, + 't', 1448, + 'u', 1485, + 'w', 1376, + 'x', 1435, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(3); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 3: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1266, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '*', 2456, - '+', 2510, - ',', 2295, - '-', 2337, - '.', 2801, - '/', 2499, - '0', 2648, - ':', 2792, - ';', 2253, - '<', 2481, - '=', 834, - '>', 2314, - '?', 2458, - 'I', 1544, - 'N', 1537, - '_', 1285, - '`', 454, - 'a', 1399, - 'b', 1381, - 'c', 1301, - 'd', 1329, - 'e', 859, - 'f', 1294, - 'h', 1300, - 'i', 1278, - 'l', 1344, - 'm', 1296, - 'n', 1440, - 'o', 860, - 'r', 1330, - 's', 1428, - 't', 1447, - 'u', 1484, - 'w', 1375, - 'x', 1434, - '|', 2254, - '}', 2403, + '!', 1267, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '*', 2457, + '+', 2511, + ',', 2296, + '-', 2338, + '.', 2802, + '/', 2500, + '0', 2649, + ':', 2793, + ';', 2254, + '<', 2482, + '=', 835, + '>', 2315, + '?', 2459, + 'I', 1545, + 'N', 1538, + '_', 1286, + '`', 455, + 'a', 1400, + 'b', 1382, + 'c', 1302, + 'd', 1330, + 'e', 860, + 'f', 1295, + 'h', 1301, + 'i', 1279, + 'l', 1345, + 'm', 1297, + 'n', 1441, + 'o', 861, + 'r', 1331, + 's', 1429, + 't', 1448, + 'u', 1485, + 'w', 1376, + 'x', 1435, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(3); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 4: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1266, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '*', 2456, - '+', 2510, - ',', 2295, - '-', 2337, - '.', 1023, - '/', 2499, - '0', 2648, - ':', 2792, - ';', 2253, - '<', 2481, - '=', 834, - '>', 2314, - 'I', 1544, - 'N', 1537, - '_', 1285, - '`', 454, - 'a', 1399, - 'b', 1381, - 'c', 1301, - 'd', 1329, - 'e', 859, - 'f', 1294, - 'h', 1300, - 'i', 1278, - 'l', 1344, - 'm', 1296, - 'n', 1440, - 'o', 860, - 'r', 1330, - 's', 1428, - 't', 1447, - 'u', 1484, - 'w', 1375, - 'x', 1434, - '|', 2254, - '}', 2403, + '!', 1267, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '*', 2457, + '+', 2511, + ',', 2296, + '-', 2338, + '.', 1024, + '/', 2500, + '0', 2649, + ':', 2793, + ';', 2254, + '<', 2482, + '=', 835, + '>', 2315, + 'I', 1545, + 'N', 1538, + '_', 1286, + '`', 455, + 'a', 1400, + 'b', 1382, + 'c', 1302, + 'd', 1330, + 'e', 860, + 'f', 1295, + 'h', 1301, + 'i', 1279, + 'l', 1345, + 'm', 1297, + 'n', 1441, + 'o', 861, + 'r', 1331, + 's', 1429, + 't', 1448, + 'u', 1485, + 'w', 1376, + 'x', 1435, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(5); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 5: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1266, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '*', 2456, - '+', 2510, - ',', 2295, - '-', 2337, - '.', 1024, - '/', 2499, - '0', 2648, - ':', 2792, - ';', 2253, - '<', 2481, - '=', 834, - '>', 2314, - 'I', 1544, - 'N', 1537, - '_', 1285, - '`', 454, - 'a', 1399, - 'b', 1381, - 'c', 1301, - 'd', 1329, - 'e', 859, - 'f', 1294, - 'h', 1300, - 'i', 1278, - 'l', 1344, - 'm', 1296, - 'n', 1440, - 'o', 860, - 'r', 1330, - 's', 1428, - 't', 1447, - 'u', 1484, - 'w', 1375, - 'x', 1434, - '|', 2254, - '}', 2403, + '!', 1267, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '*', 2457, + '+', 2511, + ',', 2296, + '-', 2338, + '.', 1025, + '/', 2500, + '0', 2649, + ':', 2793, + ';', 2254, + '<', 2482, + '=', 835, + '>', 2315, + 'I', 1545, + 'N', 1538, + '_', 1286, + '`', 455, + 'a', 1400, + 'b', 1382, + 'c', 1302, + 'd', 1330, + 'e', 860, + 'f', 1295, + 'h', 1301, + 'i', 1279, + 'l', 1345, + 'm', 1297, + 'n', 1441, + 'o', 861, + 'r', 1331, + 's', 1429, + 't', 1448, + 'u', 1485, + 'w', 1376, + 'x', 1435, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(5); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 6: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '$', 2296, - '(', 2492, - '*', 2455, - '+', 2509, - '-', 2343, - '.', 2557, - '/', 2498, - '<', 2481, - '=', 3084, - '>', 2314, - '_', 3107, - 'a', 3162, - 'b', 3151, - 'e', 3163, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3176, - 's', 3205, - 'x', 3171, - '{', 2402, + '!', 3083, + '#', 4100, + '$', 2297, + '(', 2493, + '*', 2456, + '+', 2510, + '-', 2344, + '.', 2558, + '/', 2499, + '<', 2482, + '=', 3085, + '>', 2315, + '_', 3108, + 'a', 3163, + 'b', 3152, + 'e', 3164, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3177, + 's', 3206, + 'x', 3172, + '{', 2403, ); if (lookahead == '\t' || lookahead == ' ') SKIP(21); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 7: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '$', 2296, - '(', 2492, - '*', 2455, - '+', 2509, - '-', 2343, - '.', 3109, - '/', 2498, - '<', 2481, - '=', 3084, - '>', 2314, - '_', 3107, - 'a', 3162, - 'b', 3151, - 'e', 3163, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3176, - 's', 3205, - 'x', 3171, - '{', 2402, + '!', 3083, + '#', 4100, + '$', 2297, + '(', 2493, + '*', 2456, + '+', 2510, + '-', 2344, + '.', 3110, + '/', 2499, + '<', 2482, + '=', 3085, + '>', 2315, + '_', 3108, + 'a', 3163, + 'b', 3152, + 'e', 3164, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3177, + 's', 3206, + 'x', 3172, + '{', 2403, ); if (lookahead == '\t' || lookahead == ' ') SKIP(21); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 8: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 2547, - '/', 2498, - '<', 2481, - '=', 3084, - '>', 2314, - 'B', 2714, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'a', 3162, - 'b', 2717, - 'd', 3124, - 'e', 3098, - 'g', 3103, - 'h', 3125, - 'i', 3161, - 'k', 3103, - 'm', 3105, - 'n', 3168, - 'o', 3176, - 'p', 3103, - 's', 3138, - 't', 3103, - 'u', 3195, - 'w', 3154, - 'x', 3171, - '{', 2402, - 0xb5, 3195, + '!', 3083, + '#', 4100, + '(', 2493, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 2548, + '/', 2499, + '<', 2482, + '=', 3085, + '>', 2315, + 'B', 2715, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'a', 3163, + 'b', 2718, + 'd', 3125, + 'e', 3099, + 'g', 3104, + 'h', 3126, + 'i', 3162, + 'k', 3104, + 'm', 3106, + 'n', 3169, + 'o', 3177, + 'p', 3104, + 's', 3139, + 't', 3104, + 'u', 3196, + 'w', 3155, + 'x', 3172, + '{', 2403, + 0xb5, 3196, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 9: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 2547, - '/', 2498, - '<', 2481, - '=', 3084, - '>', 2314, - 'E', 3118, - 'a', 3162, - 'b', 3151, - 'e', 3114, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3176, - 's', 3205, - 'x', 3171, - '{', 2402, + '!', 3083, + '#', 4100, + '(', 2493, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 2548, + '/', 2499, + '<', 2482, + '=', 3085, + '>', 2315, + 'E', 3119, + 'a', 3163, + 'b', 3152, + 'e', 3115, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3177, + 's', 3206, + 'x', 3172, + '{', 2403, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 10: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 3076, - '/', 2498, - '<', 2481, - '=', 3084, - '>', 2314, - 'B', 2714, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - '_', 3107, - 'a', 3162, - 'b', 2717, - 'd', 3124, - 'e', 3098, - 'g', 3103, - 'h', 3125, - 'i', 3161, - 'k', 3103, - 'm', 3105, - 'n', 3168, - 'o', 3176, - 'p', 3103, - 's', 3138, - 't', 3103, - 'u', 3195, - 'w', 3154, - 'x', 3171, - '{', 2402, - 0xb5, 3195, + '!', 3083, + '#', 4100, + '(', 2493, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 3077, + '/', 2499, + '<', 2482, + '=', 3085, + '>', 2315, + 'B', 2715, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + '_', 3108, + 'a', 3163, + 'b', 2718, + 'd', 3125, + 'e', 3099, + 'g', 3104, + 'h', 3126, + 'i', 3162, + 'k', 3104, + 'm', 3106, + 'n', 3169, + 'o', 3177, + 'p', 3104, + 's', 3139, + 't', 3104, + 'u', 3196, + 'w', 3155, + 'x', 3172, + '{', 2403, + 0xb5, 3196, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 11: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 3076, - '/', 2498, - '<', 2481, - '=', 3084, - '>', 2314, - 'B', 2714, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'a', 3162, - 'b', 2717, - 'd', 3124, - 'e', 3098, - 'g', 3103, - 'h', 3125, - 'i', 3161, - 'k', 3103, - 'm', 3105, - 'n', 3168, - 'o', 3176, - 'p', 3103, - 's', 3138, - 't', 3103, - 'u', 3195, - 'w', 3154, - 'x', 3171, - '{', 2402, - 0xb5, 3195, + '!', 3083, + '#', 4100, + '(', 2493, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 3077, + '/', 2499, + '<', 2482, + '=', 3085, + '>', 2315, + 'B', 2715, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'a', 3163, + 'b', 2718, + 'd', 3125, + 'e', 3099, + 'g', 3104, + 'h', 3126, + 'i', 3162, + 'k', 3104, + 'm', 3106, + 'n', 3169, + 'o', 3177, + 'p', 3104, + 's', 3139, + 't', 3104, + 'u', 3196, + 'w', 3155, + 'x', 3172, + '{', 2403, + 0xb5, 3196, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 12: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 3076, - '/', 2498, - '<', 2481, - '=', 3084, - '>', 2314, - 'B', 2714, - 'E', 3104, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'a', 3162, - 'b', 2717, - 'd', 3124, - 'e', 3101, - 'g', 3103, - 'h', 3125, - 'i', 3161, - 'k', 3103, - 'm', 3105, - 'n', 3168, - 'o', 3176, - 'p', 3103, - 's', 3138, - 't', 3103, - 'u', 3195, - 'w', 3154, - 'x', 3171, - '{', 2402, - 0xb5, 3195, + '!', 3083, + '#', 4100, + '(', 2493, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 3077, + '/', 2499, + '<', 2482, + '=', 3085, + '>', 2315, + 'B', 2715, + 'E', 3105, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'a', 3163, + 'b', 2718, + 'd', 3125, + 'e', 3102, + 'g', 3104, + 'h', 3126, + 'i', 3162, + 'k', 3104, + 'm', 3106, + 'n', 3169, + 'o', 3177, + 'p', 3104, + 's', 3139, + 't', 3104, + 'u', 3196, + 'w', 3155, + 'x', 3172, + '{', 2403, + 0xb5, 3196, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 13: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 3076, - '/', 2498, - '<', 2481, - '=', 3084, - '>', 2314, - 'E', 3118, - '_', 3107, - 'a', 3162, - 'b', 3151, - 'e', 3114, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3176, - 's', 3205, - 'x', 3171, - '{', 2402, + '!', 3083, + '#', 4100, + '(', 2493, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 3077, + '/', 2499, + '<', 2482, + '=', 3085, + '>', 2315, + 'E', 3119, + '_', 3108, + 'a', 3163, + 'b', 3152, + 'e', 3115, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3177, + 's', 3206, + 'x', 3172, + '{', 2403, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 14: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 3076, - '/', 2498, - '<', 2481, - '=', 3084, - '>', 2314, - 'E', 3118, - 'a', 3162, - 'b', 3151, - 'e', 3114, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3176, - 's', 3205, - 'x', 3171, - '{', 2402, + '!', 3083, + '#', 4100, + '(', 2493, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 3077, + '/', 2499, + '<', 2482, + '=', 3085, + '>', 2315, + 'E', 3119, + 'a', 3163, + 'b', 3152, + 'e', 3115, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3177, + 's', 3206, + 'x', 3172, + '{', 2403, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 15: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 3076, - '/', 2498, - '<', 2481, - '=', 3084, - '>', 2314, - 'a', 3162, - 'b', 3151, - 'e', 3163, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3176, - 's', 3205, - 'x', 3171, - '{', 2402, + '!', 3083, + '#', 4100, + '(', 2493, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 3077, + '/', 2499, + '<', 2482, + '=', 3085, + '>', 2315, + 'a', 3163, + 'b', 3152, + 'e', 3164, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3177, + 's', 3206, + 'x', 3172, + '{', 2403, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 16: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 2533, - '/', 2498, - '<', 2481, - '=', 3084, - '>', 2314, - 'E', 3118, - 'a', 3162, - 'b', 3151, - 'e', 3114, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3176, - 's', 3205, - 'x', 3171, - '{', 2402, + '!', 3083, + '#', 4100, + '(', 2493, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 2534, + '/', 2499, + '<', 2482, + '=', 3085, + '>', 2315, + 'E', 3119, + 'a', 3163, + 'b', 3152, + 'e', 3115, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3177, + 's', 3206, + 'x', 3172, + '{', 2403, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 17: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - '*', 2455, - '+', 2507, - '-', 2324, - '/', 2498, - '<', 2481, - '=', 3084, - '>', 2314, - 'E', 3118, - '_', 3107, - 'a', 3162, - 'b', 3151, - 'e', 3114, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3176, - 's', 3205, - 'x', 3171, - '{', 2402, + '!', 3083, + '#', 4100, + '(', 2493, + '*', 2456, + '+', 2508, + '-', 2325, + '/', 2499, + '<', 2482, + '=', 3085, + '>', 2315, + 'E', 3119, + '_', 3108, + 'a', 3163, + 'b', 3152, + 'e', 3115, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3177, + 's', 3206, + 'x', 3172, + '{', 2403, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 18: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - '*', 2455, - '+', 2507, - '-', 2324, - '/', 2498, - '<', 2481, - '=', 3084, - '>', 2314, - 'E', 3118, - 'a', 3162, - 'b', 3151, - 'e', 3114, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3176, - 's', 3205, - 'x', 3171, - '{', 2402, + '!', 3083, + '#', 4100, + '(', 2493, + '*', 2456, + '+', 2508, + '-', 2325, + '/', 2499, + '<', 2482, + '=', 3085, + '>', 2315, + 'E', 3119, + 'a', 3163, + 'b', 3152, + 'e', 3115, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3177, + 's', 3206, + 'x', 3172, + '{', 2403, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 19: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - '*', 2455, - '+', 2507, - '-', 2324, - '/', 2498, - '<', 2481, - '=', 3084, - '>', 2314, - 'a', 3162, - 'b', 3151, - 'e', 3163, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3176, - 's', 3205, - 'x', 3171, - '{', 2402, + '!', 3083, + '#', 4100, + '(', 2493, + '*', 2456, + '+', 2508, + '-', 2325, + '/', 2499, + '<', 2482, + '=', 3085, + '>', 2315, + 'a', 3163, + 'b', 3152, + 'e', 3164, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3177, + 's', 3206, + 'x', 3172, + '{', 2403, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 20: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3301, - '#', 4105, - '(', 2492, - '*', 2457, - '+', 2512, - '-', 2347, - '/', 2500, - '<', 2482, - '=', 3303, - '>', 2315, - 'a', 3398, - 'b', 3381, - 'e', 3403, - 'h', 3337, - 'i', 3399, - 'm', 3411, - 'n', 3414, - 'o', 3425, - 's', 3461, - 'x', 3413, - '{', 2402, + '!', 3302, + '#', 4106, + '(', 2493, + '*', 2458, + '+', 2513, + '-', 2348, + '/', 2501, + '<', 2483, + '=', 3304, + '>', 2316, + 'a', 3399, + 'b', 3382, + 'e', 3404, + 'h', 3338, + 'i', 3400, + 'm', 3412, + 'n', 3415, + 'o', 3426, + 's', 3462, + 'x', 3414, + '{', 2403, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 21: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 423, - '#', 4099, - '$', 2296, - '*', 2455, - '+', 2508, - '-', 2342, - '.', 447, - '/', 2498, - '<', 2481, - '=', 425, - '>', 2314, - 'a', 526, - 'b', 509, - 'e', 531, - 'h', 455, - 'i', 528, - 'm', 541, - 'n', 539, - 'o', 554, - 's', 586, - 'x', 536, - '{', 2402, + '!', 424, + '#', 4100, + '$', 2297, + '*', 2456, + '+', 2509, + '-', 2343, + '.', 448, + '/', 2499, + '<', 2482, + '=', 426, + '>', 2315, + 'a', 527, + 'b', 510, + 'e', 532, + 'h', 456, + 'i', 529, + 'm', 542, + 'n', 540, + 'o', 555, + 's', 587, + 'x', 537, + '{', 2403, ); if (lookahead == '\t' || lookahead == ' ') SKIP(21); END_STATE(); case 22: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 423, - '#', 4099, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 425, - '>', 2314, - 'a', 526, - 'b', 509, - 'e', 391, - 'h', 455, - 'i', 528, - 'm', 541, - 'n', 539, - 'o', 386, - 's', 586, - 'x', 536, - '|', 2254, + '!', 424, + '#', 4100, + ')', 2295, + '*', 2456, + '+', 2508, + '-', 2325, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 426, + '>', 2315, + 'a', 527, + 'b', 510, + 'e', 392, + 'h', 456, + 'i', 529, + 'm', 542, + 'n', 540, + 'o', 387, + 's', 587, + 'x', 537, + '|', 2255, ); if (lookahead == '\t' || lookahead == ' ') SKIP(22); END_STATE(); case 23: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 423, - '#', 4099, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 425, - '>', 2314, - 'a', 526, - 'b', 509, - 'e', 394, - 'h', 455, - 'i', 528, - 'm', 541, - 'n', 539, - 'o', 396, - 's', 586, - 'x', 536, - '|', 2254, + '!', 424, + '#', 4100, + ')', 2295, + '*', 2456, + '+', 2508, + '-', 2325, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 426, + '>', 2315, + 'a', 527, + 'b', 510, + 'e', 395, + 'h', 456, + 'i', 529, + 'm', 542, + 'n', 540, + 'o', 397, + 's', 587, + 'x', 537, + '|', 2255, ); if (lookahead == '\t' || lookahead == ' ') SKIP(23); END_STATE(); case 24: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 423, - '#', 4099, - '*', 2455, - '+', 2507, - '-', 2324, - '/', 2498, - ':', 2792, - ';', 2253, - '<', 2481, - '=', 425, - '>', 2314, - 'a', 526, - 'b', 509, - 'e', 391, - 'h', 455, - 'i', 528, - 'm', 541, - 'n', 539, - 'o', 386, - 's', 586, - 'x', 536, - '|', 2254, - '}', 2403, + '!', 424, + '#', 4100, + '*', 2456, + '+', 2508, + '-', 2325, + '/', 2499, + ':', 2793, + ';', 2254, + '<', 2482, + '=', 426, + '>', 2315, + 'a', 527, + 'b', 510, + 'e', 392, + 'h', 456, + 'i', 529, + 'm', 542, + 'n', 540, + 'o', 387, + 's', 587, + 'x', 537, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(24); END_STATE(); case 25: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 423, - '#', 4099, - '*', 2455, - '+', 2507, - '-', 2324, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 425, - '>', 2314, - 'a', 526, - 'b', 509, - 'e', 391, - 'h', 455, - 'i', 528, - 'm', 541, - 'n', 539, - 'o', 386, - 's', 586, - 'x', 536, - '|', 2254, - '}', 2403, + '!', 424, + '#', 4100, + '*', 2456, + '+', 2508, + '-', 2325, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 426, + '>', 2315, + 'a', 527, + 'b', 510, + 'e', 392, + 'h', 456, + 'i', 529, + 'm', 542, + 'n', 540, + 'o', 387, + 's', 587, + 'x', 537, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(25); END_STATE(); case 26: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 423, - '#', 4099, - '*', 2455, - '+', 2507, - '-', 2324, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 425, - '>', 2314, - 'a', 526, - 'b', 509, - 'e', 394, - 'h', 455, - 'i', 528, - 'm', 541, - 'n', 539, - 'o', 396, - 's', 586, - 'x', 536, - '|', 2254, - '}', 2403, + '!', 424, + '#', 4100, + '*', 2456, + '+', 2508, + '-', 2325, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 426, + '>', 2315, + 'a', 527, + 'b', 510, + 'e', 395, + 'h', 456, + 'i', 529, + 'm', 542, + 'n', 540, + 'o', 397, + 's', 587, + 'x', 537, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(26); END_STATE(); case 27: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 423, - '#', 4099, - '*', 2455, - '+', 2507, - '-', 2324, - '/', 2498, - '<', 2481, - '=', 425, - '>', 2314, - 'a', 526, - 'b', 509, - 'e', 391, - 'h', 455, - 'i', 528, - 'm', 541, - 'n', 539, - 'o', 386, - 's', 586, - 'x', 536, - '|', 2254, + '!', 424, + '#', 4100, + '*', 2456, + '+', 2508, + '-', 2325, + '/', 2499, + '<', 2482, + '=', 426, + '>', 2315, + 'a', 527, + 'b', 510, + 'e', 392, + 'h', 456, + 'i', 529, + 'm', 542, + 'n', 540, + 'o', 387, + 's', 587, + 'x', 537, + '|', 2255, ); if (lookahead == '\t' || lookahead == ' ') SKIP(27); END_STATE(); case 28: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 423, - '#', 4099, - '*', 2455, - '+', 2507, - '-', 2324, - '/', 2498, - '<', 2481, - '=', 425, - '>', 2314, - 'a', 526, - 'b', 509, - 'e', 394, - 'h', 455, - 'i', 528, - 'm', 541, - 'n', 539, - 'o', 396, - 's', 586, - 'x', 536, - '|', 2254, + '!', 424, + '#', 4100, + '*', 2456, + '+', 2508, + '-', 2325, + '/', 2499, + '<', 2482, + '=', 426, + '>', 2315, + 'a', 527, + 'b', 510, + 'e', 395, + 'h', 456, + 'i', 529, + 'm', 542, + 'n', 540, + 'o', 397, + 's', 587, + 'x', 537, + '|', 2255, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); END_STATE(); case 29: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 423, - '#', 4099, - '*', 2455, - '+', 2507, - '-', 2324, - '/', 2498, - '<', 2481, - '=', 425, - '>', 2314, - 'a', 526, - 'b', 509, - 'e', 531, - 'h', 455, - 'i', 528, - 'm', 541, - 'n', 539, - 'o', 554, - 's', 586, - 'x', 536, - '{', 2402, + '!', 424, + '#', 4100, + '*', 2456, + '+', 2508, + '-', 2325, + '/', 2499, + '<', 2482, + '=', 426, + '>', 2315, + 'a', 527, + 'b', 510, + 'e', 532, + 'h', 456, + 'i', 529, + 'm', 542, + 'n', 540, + 'o', 555, + 's', 587, + 'x', 537, + '{', 2403, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); END_STATE(); case 30: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2294, - '+', 1019, - '-', 2338, - '.', 1020, - '0', 2641, - ';', 2253, - '=', 2878, - '@', 2264, - 'I', 1238, - 'N', 1235, - '[', 2291, - '^', 2813, - '_', 1036, - '`', 454, - 'a', 1130, - 'b', 1172, - 'c', 1037, - 'd', 1063, - 'e', 1138, - 'f', 1040, - 'h', 1114, - 'i', 1034, - 'l', 1076, - 'm', 1042, - 'n', 1156, - 'o', 1231, - 'r', 1064, - 's', 1152, - 't', 1167, - 'u', 1194, - 'w', 1107, - '{', 2402, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2295, + '+', 1020, + '-', 2339, + '.', 1021, + '0', 2642, + ';', 2254, + '=', 2879, + '@', 2265, + 'I', 1239, + 'N', 1236, + '[', 2292, + '^', 2814, + '_', 1037, + '`', 455, + 'a', 1131, + 'b', 1173, + 'c', 1038, + 'd', 1064, + 'e', 1139, + 'f', 1041, + 'h', 1115, + 'i', 1035, + 'l', 1077, + 'm', 1043, + 'n', 1157, + 'o', 1232, + 'r', 1065, + 's', 1153, + 't', 1168, + 'u', 1195, + 'w', 1108, + '{', 2403, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(31); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || - lookahead == '?') ADVANCE(1558); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2664); + lookahead == '?') ADVANCE(1559); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2665); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1241); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1242); END_STATE(); case 31: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2294, - '+', 1019, - '-', 2338, - '.', 1020, - '0', 2641, - ';', 2253, - '@', 2264, - 'I', 1238, - 'N', 1235, - '[', 2291, - '^', 2813, - '_', 1036, - '`', 454, - 'a', 1130, - 'b', 1172, - 'c', 1037, - 'd', 1063, - 'e', 1138, - 'f', 1040, - 'h', 1114, - 'i', 1034, - 'l', 1076, - 'm', 1042, - 'n', 1156, - 'o', 1231, - 'r', 1064, - 's', 1152, - 't', 1167, - 'u', 1194, - 'w', 1107, - '{', 2402, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2295, + '+', 1020, + '-', 2339, + '.', 1021, + '0', 2642, + ';', 2254, + '@', 2265, + 'I', 1239, + 'N', 1236, + '[', 2292, + '^', 2814, + '_', 1037, + '`', 455, + 'a', 1131, + 'b', 1173, + 'c', 1038, + 'd', 1064, + 'e', 1139, + 'f', 1041, + 'h', 1115, + 'i', 1035, + 'l', 1077, + 'm', 1043, + 'n', 1157, + 'o', 1232, + 'r', 1065, + 's', 1153, + 't', 1168, + 'u', 1195, + 'w', 1108, + '{', 2403, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(31); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || - lookahead == '?') ADVANCE(1558); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2664); + lookahead == '?') ADVANCE(1559); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2665); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1241); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1242); END_STATE(); case 32: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 1019, - '-', 2338, - '.', 1020, - '0', 2641, - ';', 2253, - '=', 2878, - 'I', 1238, - 'N', 1235, - '[', 2291, - '^', 2813, - '_', 1036, - '`', 454, - 'a', 1140, - 'b', 1188, - 'c', 1039, - 'd', 1078, - 'e', 1139, - 'f', 1041, - 'h', 1118, - 'i', 1035, - 'l', 1086, - 'm', 1052, - 'n', 1156, - 'o', 1232, - 'r', 1100, - 's', 1162, - 't', 1173, - 'u', 1203, - 'w', 1110, - '{', 2402, - '\t', 2252, - ' ', 2252, - '!', 1558, - '&', 1558, - '*', 1558, - ',', 1558, - '?', 1558, - '@', 1558, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 1020, + '-', 2339, + '.', 1021, + '0', 2642, + ';', 2254, + '=', 2879, + 'I', 1239, + 'N', 1236, + '[', 2292, + '^', 2814, + '_', 1037, + '`', 455, + 'a', 1141, + 'b', 1189, + 'c', 1040, + 'd', 1079, + 'e', 1140, + 'f', 1042, + 'h', 1119, + 'i', 1036, + 'l', 1087, + 'm', 1053, + 'n', 1157, + 'o', 1233, + 'r', 1101, + 's', 1163, + 't', 1174, + 'u', 1204, + 'w', 1111, + '{', 2403, + '\t', 2253, + ' ', 2253, + '!', 1559, + '&', 1559, + '*', 1559, + ',', 1559, + '?', 1559, + '@', 1559, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2664); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2665); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1241); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1242); END_STATE(); case 33: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 1019, - '-', 2338, - '.', 1020, - '0', 2641, - 'I', 1238, - 'N', 1235, - '[', 2291, - '^', 2813, - '_', 1036, - '`', 454, - 'a', 1140, - 'b', 1172, - 'c', 1038, - 'd', 1077, - 'e', 862, - 'f', 1041, - 'h', 1118, - 'i', 1034, - 'l', 1086, - 'm', 1043, - 'n', 1156, - 'o', 863, - 'r', 1064, - 's', 1162, - 't', 1167, - 'u', 1203, - 'w', 1113, - '{', 2402, - '|', 2254, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 1020, + '-', 2339, + '.', 1021, + '0', 2642, + 'I', 1239, + 'N', 1236, + '[', 2292, + '^', 2814, + '_', 1037, + '`', 455, + 'a', 1141, + 'b', 1173, + 'c', 1039, + 'd', 1078, + 'e', 863, + 'f', 1042, + 'h', 1119, + 'i', 1035, + 'l', 1087, + 'm', 1044, + 'n', 1157, + 'o', 864, + 'r', 1065, + 's', 1163, + 't', 1168, + 'u', 1204, + 'w', 1114, + '{', 2403, + '|', 2255, ); if (lookahead == '\t' || lookahead == ' ') SKIP(33); @@ -15076,451 +14500,451 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2664); + lookahead == '@') ADVANCE(1559); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2665); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1241); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1242); END_STATE(); case 34: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 1019, - '-', 2338, - '.', 1020, - '0', 2641, - 'I', 1544, - 'N', 1537, - '[', 2291, - '^', 2813, - '_', 1285, - '`', 454, - 'a', 1416, - 'b', 1470, - 'c', 1311, - 'd', 1341, - 'e', 1414, - 'f', 1312, - 'h', 1390, - 'i', 1279, - 'l', 1364, - 'm', 1310, - 'n', 1437, - 'o', 1531, - 'r', 1365, - 's', 1442, - 't', 1456, - 'u', 1490, - 'w', 1380, - '{', 2402, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 1020, + '-', 2339, + '.', 1021, + '0', 2642, + 'I', 1545, + 'N', 1538, + '[', 2292, + '^', 2814, + '_', 1286, + '`', 455, + 'a', 1417, + 'b', 1471, + 'c', 1312, + 'd', 1342, + 'e', 1415, + 'f', 1313, + 'h', 1391, + 'i', 1280, + 'l', 1365, + 'm', 1311, + 'n', 1438, + 'o', 1532, + 'r', 1366, + 's', 1443, + 't', 1457, + 'u', 1491, + 'w', 1381, + '{', 2403, ); if (lookahead == '\t' || lookahead == ' ') SKIP(34); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2664); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2665); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 35: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 1019, - '-', 400, - '.', 1282, - ':', 2792, - '=', 2878, - 'I', 1546, - 'N', 1538, - '[', 2735, - ']', 2292, - '_', 1285, - '`', 454, - 'a', 1416, - 'b', 1470, - 'c', 1311, - 'd', 1341, - 'e', 1414, - 'f', 1295, - 'h', 1390, - 'i', 1280, - 'l', 1364, - 'm', 1310, - 'n', 1517, - 'o', 1531, - 'r', 1365, - 's', 1442, - 't', 1471, - 'u', 1490, - 'w', 1380, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 1020, + '-', 401, + '.', 1283, + ':', 2793, + '=', 2879, + 'I', 1547, + 'N', 1539, + '[', 2736, + ']', 2293, + '_', 1286, + '`', 455, + 'a', 1417, + 'b', 1471, + 'c', 1312, + 'd', 1342, + 'e', 1415, + 'f', 1296, + 'h', 1391, + 'i', 1281, + 'l', 1365, + 'm', 1311, + 'n', 1518, + 'o', 1532, + 'r', 1366, + 's', 1443, + 't', 1472, + 'u', 1491, + 'w', 1381, ); if (lookahead == '\t' || lookahead == ' ') SKIP(36); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 36: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 1019, - '-', 400, - '.', 1282, - ':', 2792, - 'I', 1546, - 'N', 1538, - ']', 2292, - '_', 1285, - '`', 454, - 'a', 1416, - 'b', 1470, - 'c', 1311, - 'd', 1341, - 'e', 1414, - 'f', 1295, - 'h', 1390, - 'i', 1280, - 'l', 1364, - 'm', 1310, - 'n', 1517, - 'o', 1531, - 'r', 1365, - 's', 1442, - 't', 1471, - 'u', 1490, - 'w', 1380, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 1020, + '-', 401, + '.', 1283, + ':', 2793, + 'I', 1547, + 'N', 1539, + ']', 2293, + '_', 1286, + '`', 455, + 'a', 1417, + 'b', 1471, + 'c', 1312, + 'd', 1342, + 'e', 1415, + 'f', 1296, + 'h', 1391, + 'i', 1281, + 'l', 1365, + 'm', 1311, + 'n', 1518, + 'o', 1532, + 'r', 1366, + 's', 1443, + 't', 1472, + 'u', 1491, + 'w', 1381, ); if (lookahead == '\t' || lookahead == ' ') SKIP(36); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 37: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2513, - '-', 2338, - '.', 1024, - '0', 2648, - 'I', 1544, - 'N', 1537, - '_', 1285, - '`', 454, - 'a', 1400, - 'b', 1455, - 'c', 1301, - 'd', 1329, - 'e', 1412, - 'f', 1294, - 'h', 1383, - 'i', 1278, - 'l', 1344, - 'm', 1297, - 'n', 1516, - 'o', 1530, - 'r', 1330, - 's', 1429, - 't', 1447, - 'u', 1484, - 'w', 1375, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2514, + '-', 2339, + '.', 1025, + '0', 2649, + 'I', 1545, + 'N', 1538, + '_', 1286, + '`', 455, + 'a', 1401, + 'b', 1456, + 'c', 1302, + 'd', 1330, + 'e', 1413, + 'f', 1295, + 'h', 1384, + 'i', 1279, + 'l', 1345, + 'm', 1298, + 'n', 1517, + 'o', 1531, + 'r', 1331, + 's', 1430, + 't', 1448, + 'u', 1485, + 'w', 1376, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(37); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 38: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2955, - '-', 2326, - '.', 2954, - '0', 2642, - ':', 2792, - ';', 2253, - 'N', 3013, - '[', 2291, - '_', 2968, - '`', 454, - 'e', 2941, - 'f', 2981, - 'n', 3009, - 'o', 2942, - 't', 2996, - '{', 2402, - '|', 2254, - '}', 2403, - '\t', 2251, - ' ', 2251, - 'I', 3016, - 'i', 3016, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2956, + '-', 2327, + '.', 2955, + '0', 2643, + ':', 2793, + ';', 2254, + 'N', 3014, + '[', 2292, + '_', 2969, + '`', 455, + 'e', 2942, + 'f', 2982, + 'n', 3010, + 'o', 2943, + 't', 2997, + '{', 2403, + '|', 2255, + '}', 2404, + '\t', 2252, + ' ', 2252, + 'I', 3017, + 'i', 3017, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2665); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ']') ADVANCE(3036); + lookahead != ']') ADVANCE(3037); END_STATE(); case 39: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2955, - '-', 2326, - '.', 2954, - '0', 2642, - ';', 2253, - 'N', 3013, - '[', 2291, - '_', 2968, - '`', 454, - 'e', 2946, - 'f', 2981, - 'n', 3009, - 'o', 2947, - 't', 2996, - '{', 2402, - '\t', 2252, - ' ', 2252, - 'I', 3016, - 'i', 3016, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2956, + '-', 2327, + '.', 2955, + '0', 2643, + ';', 2254, + 'N', 3014, + '[', 2292, + '_', 2969, + '`', 455, + 'e', 2947, + 'f', 2982, + 'n', 3010, + 'o', 2948, + 't', 2997, + '{', 2403, + '\t', 2253, + ' ', 2253, + 'I', 3017, + 'i', 3017, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2665); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3036); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3037); END_STATE(); case 40: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2955, - '-', 2326, - '.', 2951, - '0', 2642, - 'N', 3013, - '[', 2291, - '_', 2968, - '`', 454, - 'e', 2946, - 'f', 2981, - 'n', 3009, - 'o', 2947, - 't', 2996, - '{', 2402, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2956, + '-', 2327, + '.', 2952, + '0', 2643, + 'N', 3014, + '[', 2292, + '_', 2969, + '`', 455, + 'e', 2947, + 'f', 2982, + 'n', 3010, + 'o', 2948, + 't', 2997, + '{', 2403, ); if (lookahead == '\t' || lookahead == ' ') SKIP(40); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3016); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2665); + lookahead == 'i') ADVANCE(3017); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3036); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3037); END_STATE(); case 41: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2955, - '-', 2339, - '.', 2951, - '0', 2642, - 'N', 3013, - '[', 2291, - '_', 2968, - '`', 454, - 'e', 2946, - 'f', 2981, - 'n', 2993, - 'o', 2947, - 't', 2996, - '{', 2402, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2956, + '-', 2340, + '.', 2952, + '0', 2643, + 'N', 3014, + '[', 2292, + '_', 2969, + '`', 455, + 'e', 2947, + 'f', 2982, + 'n', 2994, + 'o', 2948, + 't', 2997, + '{', 2403, ); if (lookahead == '\t' || lookahead == ' ') SKIP(41); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3016); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2665); + lookahead == 'i') ADVANCE(3017); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3036); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3037); END_STATE(); case 42: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 3548, - ',', 2295, - '-', 3547, - '.', 3549, - '0', 2643, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3559, - '`', 454, - 'e', 3538, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 3549, + ',', 2296, + '-', 3548, + '.', 3550, + '0', 2644, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3560, + '`', 455, + 'e', 3539, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, ); if (lookahead == '\t' || lookahead == ' ') SKIP(42); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3598); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); + lookahead == 'i') ADVANCE(3599); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 43: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 3816, - '-', 3815, - '.', 3814, - '0', 2645, - 'N', 3848, - '[', 2291, - '_', 3825, - '`', 454, - 'e', 3808, - 'f', 3827, - 'n', 3844, - 'o', 3809, - 't', 3837, - '{', 2402, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 3817, + '-', 3816, + '.', 3815, + '0', 2646, + 'N', 3849, + '[', 2292, + '_', 3826, + '`', 455, + 'e', 3809, + 'f', 3828, + 'n', 3845, + 'o', 3810, + 't', 3838, + '{', 2403, ); if (lookahead == '\t' || lookahead == ' ') SKIP(43); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3854); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2668); + lookahead == 'i') ADVANCE(3855); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2669); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3868); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3869); END_STATE(); case 44: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - ')', 2294, - ',', 2295, - '-', 2325, - '.', 2806, - ':', 2289, - ';', 2253, - '<', 1792, - '=', 833, - '>', 2313, - '?', 2458, - '@', 2316, - '[', 2291, - ']', 2292, - '`', 454, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + ')', 2295, + ',', 2296, + '-', 2326, + '.', 2807, + ':', 2290, + ';', 2254, + '<', 1793, + '=', 834, + '>', 2314, + '?', 2459, + '@', 2317, + '[', 2292, + ']', 2293, + '`', 455, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(45); @@ -15529,32 +14953,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && lookahead != ']' && - lookahead != '^') ADVANCE(2036); + lookahead != '^') ADVANCE(2037); END_STATE(); case 45: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - ')', 2294, - ',', 2295, - '-', 2325, - '.', 2805, - ':', 2289, - ';', 2253, - '=', 833, - '>', 2313, - '?', 2458, - '[', 2291, - ']', 2292, - '`', 454, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + ')', 2295, + ',', 2296, + '-', 2326, + '.', 2806, + ':', 2290, + ';', 2254, + '=', 834, + '>', 2314, + '?', 2459, + '[', 2292, + ']', 2293, + '`', 455, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(45); @@ -15564,641 +14988,667 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '&' || '.' < lookahead) && (lookahead < ':' || '@' < lookahead) && lookahead != ']' && - lookahead != '^') ADVANCE(2036); + lookahead != '^') ADVANCE(2037); END_STATE(); case 46: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 2955, - '-', 410, - '.', 2951, - '0', 2642, - 'N', 3013, - '[', 2291, - '_', 2407, - '`', 454, - 'e', 2946, - 'f', 2981, - 'n', 3009, - 'o', 2947, - 't', 2996, - '{', 2402, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 2956, + '-', 411, + '.', 2952, + '0', 2643, + 'N', 3014, + '[', 2292, + '_', 2408, + '`', 455, + 'e', 2947, + 'f', 2982, + 'n', 3010, + 'o', 2948, + 't', 2997, + '{', 2403, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(46); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3016); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2665); + lookahead == 'i') ADVANCE(3017); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3036); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3037); END_STATE(); case 47: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3548, - ',', 2295, - '-', 3547, - '.', 3544, - '0', 2643, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3559, - '`', 454, - 'e', 3538, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3549, + ',', 2296, + '-', 3548, + '.', 3545, + '0', 2644, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3560, + '`', 455, + 'e', 3539, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, ); if (lookahead == '\t' || lookahead == ' ') SKIP(47); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3598); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); + lookahead == 'i') ADVANCE(3599); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 48: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - '(', 2492, - ')', 2294, - '+', 3874, - ',', 2295, - '-', 2330, - '.', 3872, - ':', 2289, - '=', 833, - ']', 2292, - '_', 1977, - '|', 2254, + '#', 4100, + '$', 2297, + '(', 2493, + ')', 2295, + '+', 3875, + ',', 2296, + '-', 2331, + '.', 3873, + ':', 2290, + '=', 834, + ']', 2293, + '_', 1978, + '|', 2255, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(65); + lookahead == ' ') SKIP(66); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3906); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2591); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2036); + lookahead == '^') ADVANCE(3907); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2037); END_STATE(); case 49: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - '(', 2492, - ')', 2294, - '+', 3874, - ',', 2295, - '-', 2330, - '.', 2554, - ':', 2289, - '=', 833, - ']', 2292, - '_', 1977, - '|', 2254, + '#', 4100, + '$', 2297, + '(', 2493, + ')', 2295, + '+', 3875, + ',', 2296, + '-', 2331, + '.', 2555, + ':', 2290, + '=', 834, + ']', 2293, + '_', 1978, + '|', 2255, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(65); + lookahead == ' ') SKIP(66); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3906); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2591); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2036); + lookahead == '^') ADVANCE(3907); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2037); END_STATE(); case 50: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - '(', 2492, - ')', 2294, - ',', 2295, - '-', 2325, - '.', 2556, - ':', 2289, - '=', 833, - ']', 2292, - '|', 2254, + '#', 4100, + '$', 2297, + '(', 2493, + ')', 2295, + ',', 2296, + '-', 2326, + '.', 2557, + ':', 2290, + '=', 834, + 'E', 1964, + 'G', 1974, + 'K', 1974, + 'M', 1974, + 'P', 1974, + 'T', 1974, + ']', 2293, + 'd', 1980, + 'e', 1963, + 'g', 1973, + 'h', 2011, + 'k', 1973, + 'm', 1975, + 'n', 2015, + 'p', 1973, + 's', 1990, + 't', 1973, + 'u', 2015, + 'w', 1994, + '|', 2255, + 0xb5, 2015, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(68); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1964); + lookahead == ' ') SKIP(69); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2721); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3906); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2036); + lookahead == '^') ADVANCE(3907); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2037); END_STATE(); case 51: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - '(', 2492, - ')', 2294, - ',', 2295, - '-', 2325, - '.', 3875, - ':', 2289, - ';', 2253, - '=', 833, - '[', 2735, - ']', 2292, - '{', 2402, - '|', 2254, - '}', 2403, + '#', 4100, + '$', 2297, + '(', 2493, + ')', 2295, + ',', 2296, + '-', 2326, + '.', 2557, + ':', 2290, + '=', 834, + ']', 2293, + '|', 2255, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(66); + lookahead == ' ') SKIP(69); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1965); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3906); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - lookahead != '`') ADVANCE(2036); + lookahead == '^') ADVANCE(3907); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2037); END_STATE(); case 52: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - '(', 2492, - ')', 2294, - ',', 2295, - '-', 2325, - '.', 3875, - ':', 2289, - '=', 833, - 'E', 1963, - 'G', 1973, - 'K', 1973, - 'M', 1973, - 'P', 1973, - 'T', 1973, - ']', 2292, - '_', 1977, - 'd', 1979, - 'e', 1962, - 'g', 1972, - 'h', 2010, - 'k', 1972, - 'm', 1974, - 'n', 2014, - 'p', 1972, - 's', 1989, - 't', 1972, - 'u', 2014, - 'w', 1993, - '|', 2254, - 0xb5, 2014, + '#', 4100, + '$', 2297, + '(', 2493, + ')', 2295, + ',', 2296, + '-', 2326, + '.', 3876, + ':', 2290, + ';', 2254, + '=', 834, + '[', 2736, + ']', 2293, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(68); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2720); + lookahead == ' ') SKIP(67); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3906); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2591); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2036); + lookahead == '^') ADVANCE(3907); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + lookahead != '`') ADVANCE(2037); END_STATE(); case 53: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - '(', 2492, - ')', 2294, - ',', 2295, - '-', 2325, - '.', 3875, - ':', 2289, - '=', 833, - 'E', 1963, - 'G', 1973, - 'K', 1973, - 'M', 1973, - 'P', 1973, - 'T', 1973, - ']', 2292, - 'd', 1979, - 'e', 1962, - 'g', 1972, - 'h', 2010, - 'k', 1972, - 'm', 1974, - 'n', 2014, - 'p', 1972, - 's', 1989, - 't', 1972, - 'u', 2014, - 'w', 1993, - '|', 2254, - 0xb5, 2014, + '#', 4100, + '$', 2297, + '(', 2493, + ')', 2295, + ',', 2296, + '-', 2326, + '.', 3876, + ':', 2290, + '=', 834, + 'E', 1964, + 'G', 1974, + 'K', 1974, + 'M', 1974, + 'P', 1974, + 'T', 1974, + ']', 2293, + 'd', 1980, + 'e', 1963, + 'g', 1973, + 'h', 2011, + 'k', 1973, + 'm', 1975, + 'n', 2015, + 'p', 1973, + 's', 1990, + 't', 1973, + 'u', 2015, + 'w', 1994, + '|', 2255, + 0xb5, 2015, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(68); + lookahead == ' ') SKIP(69); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2720); + lookahead == 'b') ADVANCE(2721); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3906); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2036); + lookahead == '^') ADVANCE(3907); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2037); END_STATE(); case 54: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - '(', 2492, - ')', 2294, - ',', 2295, - '-', 2325, - '.', 3875, - ':', 2289, - '=', 833, - 'E', 1973, - 'G', 1973, - 'K', 1973, - 'M', 1973, - 'P', 1973, - 'T', 1973, - ']', 2292, - 'd', 1979, - 'e', 1972, - 'g', 1972, - 'h', 2010, - 'k', 1972, - 'm', 1974, - 'n', 2014, - 'p', 1972, - 's', 1989, - 't', 1972, - 'u', 2014, - 'w', 1993, - '|', 2254, - 0xb5, 2014, + '#', 4100, + '$', 2297, + '(', 2493, + ')', 2295, + ',', 2296, + '-', 2326, + '.', 3876, + ':', 2290, + '=', 834, + 'E', 1974, + 'G', 1974, + 'K', 1974, + 'M', 1974, + 'P', 1974, + 'T', 1974, + ']', 2293, + 'd', 1980, + 'e', 1973, + 'g', 1973, + 'h', 2011, + 'k', 1973, + 'm', 1975, + 'n', 2015, + 'p', 1973, + 's', 1990, + 't', 1973, + 'u', 2015, + 'w', 1994, + '|', 2255, + 0xb5, 2015, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(68); + lookahead == ' ') SKIP(69); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2720); + lookahead == 'b') ADVANCE(2721); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3906); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2036); + lookahead == '^') ADVANCE(3907); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2037); END_STATE(); case 55: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - '(', 2492, - ')', 2294, - ',', 2295, - '-', 2325, - '.', 3875, - ':', 2289, - '=', 833, - ']', 2292, - '_', 1977, - '|', 2254, + '#', 4100, + '$', 2297, + '(', 2493, + ')', 2295, + ',', 2296, + '-', 2326, + '.', 3876, + ':', 2290, + '=', 834, + ']', 2293, + '_', 1978, + '|', 2255, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(68); + lookahead == ' ') SKIP(69); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1964); + lookahead == 'e') ADVANCE(1965); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3906); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2591); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2036); + lookahead == '^') ADVANCE(3907); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2037); END_STATE(); case 56: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - '(', 2492, - ')', 2294, - ',', 2295, - '-', 2325, - '.', 3875, - ':', 2289, - '=', 833, - ']', 2292, - '|', 2254, + '#', 4100, + '$', 2297, + '(', 2493, + ')', 2295, + ',', 2296, + '-', 2326, + '.', 3876, + ':', 2290, + '=', 834, + ']', 2293, + '|', 2255, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(68); + lookahead == ' ') SKIP(69); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1964); + lookahead == 'e') ADVANCE(1965); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3906); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2036); + lookahead == '^') ADVANCE(3907); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2037); END_STATE(); case 57: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - '(', 2492, - ')', 2294, - ',', 2295, - '-', 2325, - '.', 2553, - ':', 2289, - '=', 833, - ']', 2292, - '|', 2254, + '#', 4100, + '$', 2297, + '(', 2493, + ')', 2295, + ',', 2296, + '-', 2326, + '.', 2554, + ':', 2290, + '=', 834, + ']', 2293, + '|', 2255, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(68); + lookahead == ' ') SKIP(69); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1964); + lookahead == 'e') ADVANCE(1965); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3906); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2036); + lookahead == '^') ADVANCE(3907); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2037); END_STATE(); case 58: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - '(', 2492, - ')', 2294, - ',', 2295, - '-', 2325, - '.', 3873, - ':', 2289, - '=', 833, - ']', 2292, - '_', 1977, - '|', 2254, + '#', 4100, + '$', 2297, + '(', 2493, + ')', 2295, + ',', 2296, + '-', 2326, + '.', 3874, + ':', 2290, + '=', 834, + ']', 2293, + '_', 1978, + '|', 2255, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(68); + lookahead == ' ') SKIP(69); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1964); + lookahead == 'e') ADVANCE(1965); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3906); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2591); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2036); + lookahead == '^') ADVANCE(3907); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2037); END_STATE(); case 59: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - '(', 2492, - ')', 2294, - ',', 2295, - '-', 2325, - '.', 3873, - ':', 2289, - '=', 833, - ']', 2292, - '|', 2254, + '#', 4100, + '$', 2297, + '(', 2493, + ')', 2295, + ',', 2296, + '-', 2326, + '.', 3874, + ':', 2290, + '=', 834, + ']', 2293, + '|', 2255, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(68); + lookahead == ' ') SKIP(69); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1964); + lookahead == 'e') ADVANCE(1965); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3906); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2036); + lookahead == '^') ADVANCE(3907); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2037); END_STATE(); case 60: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - '(', 2492, - ')', 2294, - ',', 2295, - '-', 2325, - '.', 3873, - ':', 2289, - '=', 833, - ']', 2292, - '|', 2254, + '#', 4100, + '$', 2297, + '(', 2493, + ')', 2295, + ',', 2296, + '-', 2326, + '.', 3874, + ':', 2290, + '=', 834, + ']', 2293, + '|', 2255, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(68); + lookahead == ' ') SKIP(69); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3906); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2036); + lookahead == '^') ADVANCE(3907); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2037); END_STATE(); case 61: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - '(', 2492, - ')', 2294, - '-', 2325, - ';', 2253, - '=', 427, - '[', 2291, - 'a', 527, - 'e', 395, - 'i', 495, - 'o', 396, - 'x', 536, - '{', 2402, - '|', 2254, - '}', 2403, + '#', 4100, + '$', 2297, + '(', 2493, + ')', 2295, + '-', 2326, + ';', 2254, + '=', 428, + '[', 2292, + 'a', 528, + 'e', 396, + 'i', 496, + 'o', 397, + 'x', 537, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(69); + lookahead == ' ') SKIP(70); END_STATE(); case 62: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - '(', 2492, - '.', 2557, - ';', 2253, - '_', 3107, - '\t', 2252, - ' ', 2252, - '+', 3077, - '-', 3077, + '#', 4100, + '$', 2297, + '(', 2493, + '.', 2558, + ';', 2254, + '_', 3108, + '\t', 2253, + ' ', 2253, + '+', 3078, + '-', 3078, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 63: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - '(', 2492, - '.', 3109, - ';', 2253, - '_', 3107, - '\t', 2252, - ' ', 2252, - '+', 3077, - '-', 3077, + '#', 4100, + '$', 2297, + '(', 2493, + '.', 3110, + ';', 2254, + '_', 3108, + '\t', 2253, + ' ', 2253, + '+', 3078, + '-', 3078, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 64: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - '(', 2293, - '+', 413, - '-', 2339, - '.', 444, - '0', 1975, - ':', 2289, - '=', 833, - 'N', 2022, - '_', 1976, - 'f', 1981, - 'n', 2003, - 't', 2012, - '{', 2402, + '#', 4100, + '$', 2297, + '(', 2294, + '+', 414, + '-', 2340, + '.', 445, + '0', 1976, + ':', 2290, + '=', 834, + '@', 2317, + 'N', 2023, + '_', 1977, + 'f', 1982, + 'n', 2004, + 't', 2013, + '{', 2403, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(64); + lookahead == ' ') SKIP(65); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2028); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1976); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2036); + lookahead == 'i') ADVANCE(2029); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1977); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2037); END_STATE(); case 65: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - ')', 2294, - '+', 418, - ',', 2295, - '-', 2328, - '.', 417, - ':', 2289, - '=', 833, - ']', 2292, - '|', 2254, + '#', 4100, + '$', 2297, + '(', 2294, + '+', 414, + '-', 2340, + '.', 445, + '0', 1976, + ':', 2290, + '=', 834, + 'N', 2023, + '_', 1977, + 'f', 1982, + 'n', 2004, + 't', 2013, + '{', 2403, ); if (lookahead == '\t' || lookahead == ' ') SKIP(65); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2036); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2029); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1977); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2037); END_STATE(); case 66: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - ')', 2294, - ',', 2295, - '-', 2325, - '.', 416, - ':', 2289, - ';', 2253, - '=', 833, - '[', 2291, - ']', 2292, - '{', 2402, - '|', 2254, - '}', 2403, + '#', 4100, + '$', 2297, + ')', 2295, + '+', 419, + ',', 2296, + '-', 2329, + '.', 418, + ':', 2290, + '=', 834, + ']', 2293, + '|', 2255, ); if (lookahead == '\t' || lookahead == ' ') SKIP(66); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2037); + END_STATE(); + case 67: + ADVANCE_MAP( + '\n', 2251, + '\r', 1, + '#', 4100, + '$', 2297, + ')', 2295, + ',', 2296, + '-', 2326, + '.', 417, + ':', 2290, + ';', 2254, + '=', 834, + '[', 2292, + ']', 2293, + '{', 2403, + '|', 2255, + '}', 2404, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(67); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && @@ -16206,7346 +15656,7346 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ':' || '@' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '`') ADVANCE(2036); - END_STATE(); - case 67: - ADVANCE_MAP( - '\n', 2250, - '\r', 1, - '#', 4099, - '$', 2296, - ')', 2294, - ',', 2295, - '-', 2325, - '.', 416, - ':', 2289, - '=', 833, - '?', 2319, - ']', 2292, - '|', 2254, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(68); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2036); + lookahead != '`') ADVANCE(2037); END_STATE(); case 68: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - ')', 2294, - ',', 2295, - '-', 2325, - '.', 416, - ':', 2289, - '=', 833, - ']', 2292, - '|', 2254, + '#', 4100, + '$', 2297, + ')', 2295, + ',', 2296, + '-', 2326, + '.', 417, + ':', 2290, + '=', 834, + '?', 2320, + ']', 2293, + '|', 2255, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(68); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2036); + lookahead == ' ') SKIP(69); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2037); END_STATE(); case 69: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - ')', 2294, - '-', 2325, - ';', 2253, - '=', 427, - '[', 2291, - 'a', 527, - 'e', 395, - 'i', 495, - 'o', 396, - 'x', 536, - '{', 2402, - '|', 2254, - '}', 2403, + '#', 4100, + '$', 2297, + ')', 2295, + ',', 2296, + '-', 2326, + '.', 417, + ':', 2290, + '=', 834, + ']', 2293, + '|', 2255, ); if (lookahead == '\t' || lookahead == ' ') SKIP(69); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2037); END_STATE(); case 70: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - '.', 2547, - ';', 2253, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'd', 3124, - 'e', 3099, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3195, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - 0xb5, 3195, - '\t', 2252, - ' ', 2252, - 'B', 2714, - 'b', 2714, + '#', 4100, + '$', 2297, + ')', 2295, + '-', 2326, + ';', 2254, + '=', 428, + '[', 2292, + 'a', 528, + 'e', 396, + 'i', 496, + 'o', 397, + 'x', 537, + '{', 2403, + '|', 2255, + '}', 2404, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '\t' || + lookahead == ' ') SKIP(70); END_STATE(); case 71: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - '.', 2547, - ';', 2253, - '\t', 2252, - ' ', 2252, - 'E', 3118, - 'e', 3118, + '#', 4100, + '(', 2493, + '.', 2548, + ';', 2254, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'd', 3125, + 'e', 3100, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3196, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + 0xb5, 3196, + '\t', 2253, + ' ', 2253, + 'B', 2715, + 'b', 2715, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 72: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - '.', 3076, - ';', 2253, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - '_', 3107, - 'd', 3124, - 'e', 3099, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3195, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - 0xb5, 3195, - '\t', 2252, - ' ', 2252, - 'B', 2714, - 'b', 2714, + '#', 4100, + '(', 2493, + '.', 2548, + ';', 2254, + '\t', 2253, + ' ', 2253, + 'E', 3119, + 'e', 3119, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 73: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - '.', 3076, - ';', 2253, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'd', 3124, - 'e', 3099, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3195, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - 0xb5, 3195, - '\t', 2252, - ' ', 2252, - 'B', 2714, - 'b', 2714, + '#', 4100, + '(', 2493, + '.', 3077, + ';', 2254, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + '_', 3108, + 'd', 3125, + 'e', 3100, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3196, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + 0xb5, 3196, + '\t', 2253, + ' ', 2253, + 'B', 2715, + 'b', 2715, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 74: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - '.', 3076, - ';', 2253, - 'E', 3104, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'd', 3124, - 'e', 3103, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3195, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - 0xb5, 3195, - '\t', 2252, - ' ', 2252, - 'B', 2714, - 'b', 2714, + '#', 4100, + '(', 2493, + '.', 3077, + ';', 2254, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'd', 3125, + 'e', 3100, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3196, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + 0xb5, 3196, + '\t', 2253, + ' ', 2253, + 'B', 2715, + 'b', 2715, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 75: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - '.', 3076, - ';', 2253, - '_', 3107, - '\t', 2252, - ' ', 2252, - 'E', 3118, - 'e', 3118, + '#', 4100, + '(', 2493, + '.', 3077, + ';', 2254, + 'E', 3105, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'd', 3125, + 'e', 3104, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3196, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + 0xb5, 3196, + '\t', 2253, + ' ', 2253, + 'B', 2715, + 'b', 2715, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 76: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - '.', 3076, - ';', 2253, - '\t', 2252, - ' ', 2252, - 'E', 3118, - 'e', 3118, + '#', 4100, + '(', 2493, + '.', 3077, + ';', 2254, + '_', 3108, + '\t', 2253, + ' ', 2253, + 'E', 3119, + 'e', 3119, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 77: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - '.', 3076, - ';', 2253, - '\t', 2252, - ' ', 2252, + '#', 4100, + '(', 2493, + '.', 3077, + ';', 2254, + '\t', 2253, + ' ', 2253, + 'E', 3119, + 'e', 3119, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 78: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - '.', 2533, - ';', 2253, - '\t', 2252, - ' ', 2252, - 'E', 3118, - 'e', 3118, + '#', 4100, + '(', 2493, + '.', 3077, + ';', 2254, + '\t', 2253, + ' ', 2253, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 79: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - ';', 2253, - '_', 3107, - '\t', 2252, - ' ', 2252, - 'E', 3118, - 'e', 3118, + '#', 4100, + '(', 2493, + '.', 2534, + ';', 2254, + '\t', 2253, + ' ', 2253, + 'E', 3119, + 'e', 3119, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 80: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - ';', 2253, - '\t', 2252, - ' ', 2252, - 'E', 3118, - 'e', 3118, + '#', 4100, + '(', 2493, + ';', 2254, + '_', 3108, + '\t', 2253, + ' ', 2253, + 'E', 3119, + 'e', 3119, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 81: - if (lookahead == '\n') ADVANCE(2250); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '(') ADVANCE(2492); - if (lookahead == ';') ADVANCE(2253); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2252); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + ADVANCE_MAP( + '\n', 2251, + '\r', 1, + '#', 4100, + '(', 2493, + ';', 2254, + '\t', 2253, + ' ', 2253, + 'E', 3119, + 'e', 3119, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 82: - if (lookahead == '\n') ADVANCE(2250); + if (lookahead == '\n') ADVANCE(2251); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(4099); - if (lookahead == ';') ADVANCE(2253); - if (lookahead == '=') ADVANCE(2878); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '(') ADVANCE(2493); + if (lookahead == ';') ADVANCE(2254); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2252); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2214); + lookahead == ' ') ADVANCE(2253); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 83: - if (lookahead == '\n') ADVANCE(2250); + if (lookahead == '\n') ADVANCE(2251); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(4099); - if (lookahead == ';') ADVANCE(2253); - if (lookahead == '=') ADVANCE(2878); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == ';') ADVANCE(2254); + if (lookahead == '=') ADVANCE(2879); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2252); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + lookahead == ' ') ADVANCE(2253); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2215); END_STATE(); case 84: + if (lookahead == '\n') ADVANCE(2251); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == ';') ADVANCE(2254); + if (lookahead == '=') ADVANCE(2879); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2253); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); + END_STATE(); + case 85: ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4102, - '$', 2300, - '(', 2492, - ')', 2294, - ',', 2295, - '-', 2336, - '.', 3984, - ':', 2289, - '=', 835, - ']', 2292, - '|', 2254, + '#', 4103, + '$', 2301, + '(', 2493, + ')', 2295, + ',', 2296, + '-', 2337, + '.', 3985, + ':', 2290, + '=', 836, + ']', 2293, + '|', 2255, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(68); + lookahead == ' ') SKIP(69); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4092); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4091); - END_STATE(); - case 85: - if (lookahead == '\n') ADVANCE(2250); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(4105); - if (lookahead == '(') ADVANCE(2492); - if (lookahead == ';') ADVANCE(2253); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2252); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + lookahead == '^') ADVANCE(4093); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4092); END_STATE(); case 86: - ADVANCE_MAP( - '!', 3082, - '#', 4099, - '$', 2296, - '(', 2492, - '*', 2455, - '+', 2509, - '-', 2343, - '.', 2557, - '/', 2498, - '<', 2481, - '=', 3083, - '>', 2314, - '_', 3107, - 'a', 3162, - 'b', 3151, - 'e', 3163, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3176, - 's', 3205, - 'x', 3171, - ); + if (lookahead == '\n') ADVANCE(2251); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '#') ADVANCE(4106); + if (lookahead == '(') ADVANCE(2493); + if (lookahead == ';') ADVANCE(2254); if (lookahead == '\t' || - lookahead == ' ') SKIP(101); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') ADVANCE(2253); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 87: ADVANCE_MAP( - '!', 3082, - '#', 4099, - '$', 2296, - '(', 2492, - '*', 2455, - '+', 2509, - '-', 2343, - '.', 3109, - '/', 2498, - '<', 2481, - '=', 3083, - '>', 2314, - '_', 3107, - 'a', 3162, - 'b', 3151, - 'e', 3163, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3176, - 's', 3205, - 'x', 3171, + '!', 3083, + '#', 4100, + '$', 2297, + '(', 2493, + '*', 2456, + '+', 2510, + '-', 2344, + '.', 2558, + '/', 2499, + '<', 2482, + '=', 3084, + '>', 2315, + '_', 3108, + 'a', 3163, + 'b', 3152, + 'e', 3164, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3177, + 's', 3206, + 'x', 3172, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(101); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(102); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 88: ADVANCE_MAP( - '!', 3082, - '#', 4099, - '(', 2492, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 2547, - '/', 2498, - '<', 2481, - '=', 3083, - '>', 2314, - 'B', 2714, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'a', 3162, - 'b', 2717, - 'd', 3124, - 'e', 3098, - 'g', 3103, - 'h', 3125, - 'i', 3161, - 'k', 3103, - 'm', 3105, - 'n', 3168, - 'o', 3176, - 'p', 3103, - 's', 3138, - 't', 3103, - 'u', 3195, - 'w', 3154, - 'x', 3171, - 0xb5, 3195, + '!', 3083, + '#', 4100, + '$', 2297, + '(', 2493, + '*', 2456, + '+', 2510, + '-', 2344, + '.', 3110, + '/', 2499, + '<', 2482, + '=', 3084, + '>', 2315, + '_', 3108, + 'a', 3163, + 'b', 3152, + 'e', 3164, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3177, + 's', 3206, + 'x', 3172, ); if (lookahead == '\t' || lookahead == ' ') SKIP(102); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 89: ADVANCE_MAP( - '!', 3082, - '#', 4099, - '(', 2492, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 2547, - '/', 2498, - '<', 2481, - '=', 3083, - '>', 2314, - 'E', 3118, - 'a', 3162, - 'b', 3151, - 'e', 3114, + '!', 3083, + '#', 4100, + '(', 2493, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 2548, + '/', 2499, + '<', 2482, + '=', 3084, + '>', 2315, + 'B', 2715, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'a', 3163, + 'b', 2718, + 'd', 3125, + 'e', 3099, + 'g', 3104, 'h', 3126, - 'i', 3161, - 'm', 3167, + 'i', 3162, + 'k', 3104, + 'm', 3106, 'n', 3169, - 'o', 3176, - 's', 3205, - 'x', 3171, + 'o', 3177, + 'p', 3104, + 's', 3139, + 't', 3104, + 'u', 3196, + 'w', 3155, + 'x', 3172, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(102); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(103); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 90: ADVANCE_MAP( - '!', 3082, - '#', 4099, - '(', 2492, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 3076, - '/', 2498, - '<', 2481, - '=', 3083, - '>', 2314, - 'B', 2714, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - '_', 3107, - 'a', 3162, - 'b', 2717, - 'd', 3124, - 'e', 3098, - 'g', 3103, - 'h', 3125, - 'i', 3161, - 'k', 3103, - 'm', 3105, - 'n', 3168, - 'o', 3176, - 'p', 3103, - 's', 3138, - 't', 3103, - 'u', 3195, - 'w', 3154, - 'x', 3171, - 0xb5, 3195, + '!', 3083, + '#', 4100, + '(', 2493, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 2548, + '/', 2499, + '<', 2482, + '=', 3084, + '>', 2315, + 'E', 3119, + 'a', 3163, + 'b', 3152, + 'e', 3115, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3177, + 's', 3206, + 'x', 3172, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(102); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(103); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 91: ADVANCE_MAP( - '!', 3082, - '#', 4099, - '(', 2492, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 3076, - '/', 2498, - '<', 2481, - '=', 3083, - '>', 2314, - 'B', 2714, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'a', 3162, - 'b', 2717, - 'd', 3124, - 'e', 3098, - 'g', 3103, - 'h', 3125, - 'i', 3161, - 'k', 3103, - 'm', 3105, - 'n', 3168, - 'o', 3176, - 'p', 3103, - 's', 3138, - 't', 3103, - 'u', 3195, - 'w', 3154, - 'x', 3171, - 0xb5, 3195, + '!', 3083, + '#', 4100, + '(', 2493, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 3077, + '/', 2499, + '<', 2482, + '=', 3084, + '>', 2315, + 'B', 2715, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + '_', 3108, + 'a', 3163, + 'b', 2718, + 'd', 3125, + 'e', 3099, + 'g', 3104, + 'h', 3126, + 'i', 3162, + 'k', 3104, + 'm', 3106, + 'n', 3169, + 'o', 3177, + 'p', 3104, + 's', 3139, + 't', 3104, + 'u', 3196, + 'w', 3155, + 'x', 3172, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(102); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(103); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 92: ADVANCE_MAP( - '!', 3082, - '#', 4099, - '(', 2492, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 3076, - '/', 2498, - '<', 2481, - '=', 3083, - '>', 2314, - 'B', 2714, - 'E', 3104, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'a', 3162, - 'b', 2717, - 'd', 3124, - 'e', 3101, - 'g', 3103, - 'h', 3125, - 'i', 3161, - 'k', 3103, - 'm', 3105, - 'n', 3168, - 'o', 3176, - 'p', 3103, - 's', 3138, - 't', 3103, - 'u', 3195, - 'w', 3154, - 'x', 3171, - 0xb5, 3195, + '!', 3083, + '#', 4100, + '(', 2493, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 3077, + '/', 2499, + '<', 2482, + '=', 3084, + '>', 2315, + 'B', 2715, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'a', 3163, + 'b', 2718, + 'd', 3125, + 'e', 3099, + 'g', 3104, + 'h', 3126, + 'i', 3162, + 'k', 3104, + 'm', 3106, + 'n', 3169, + 'o', 3177, + 'p', 3104, + 's', 3139, + 't', 3104, + 'u', 3196, + 'w', 3155, + 'x', 3172, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(102); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(103); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 93: ADVANCE_MAP( - '!', 3082, - '#', 4099, - '(', 2492, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 3076, - '/', 2498, - '<', 2481, - '=', 3083, - '>', 2314, - 'E', 3118, - '_', 3107, - 'a', 3162, - 'b', 3151, - 'e', 3114, + '!', 3083, + '#', 4100, + '(', 2493, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 3077, + '/', 2499, + '<', 2482, + '=', 3084, + '>', 2315, + 'B', 2715, + 'E', 3105, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'a', 3163, + 'b', 2718, + 'd', 3125, + 'e', 3102, + 'g', 3104, 'h', 3126, - 'i', 3161, - 'm', 3167, + 'i', 3162, + 'k', 3104, + 'm', 3106, 'n', 3169, - 'o', 3176, - 's', 3205, - 'x', 3171, + 'o', 3177, + 'p', 3104, + 's', 3139, + 't', 3104, + 'u', 3196, + 'w', 3155, + 'x', 3172, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(102); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(103); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 94: ADVANCE_MAP( - '!', 3082, - '#', 4099, - '(', 2492, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 3076, - '/', 2498, - '<', 2481, - '=', 3083, - '>', 2314, - 'E', 3118, - 'a', 3162, - 'b', 3151, - 'e', 3114, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3176, - 's', 3205, - 'x', 3171, + '!', 3083, + '#', 4100, + '(', 2493, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 3077, + '/', 2499, + '<', 2482, + '=', 3084, + '>', 2315, + 'E', 3119, + '_', 3108, + 'a', 3163, + 'b', 3152, + 'e', 3115, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3177, + 's', 3206, + 'x', 3172, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(102); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(103); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 95: ADVANCE_MAP( - '!', 3082, - '#', 4099, - '(', 2492, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 3076, - '/', 2498, - '<', 2481, - '=', 3083, - '>', 2314, - 'a', 3162, - 'b', 3151, - 'e', 3163, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3176, - 's', 3205, - 'x', 3171, + '!', 3083, + '#', 4100, + '(', 2493, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 3077, + '/', 2499, + '<', 2482, + '=', 3084, + '>', 2315, + 'E', 3119, + 'a', 3163, + 'b', 3152, + 'e', 3115, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3177, + 's', 3206, + 'x', 3172, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(102); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(103); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 96: ADVANCE_MAP( - '!', 3082, - '#', 4099, - '(', 2492, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 2533, - '/', 2498, - '<', 2481, - '=', 3083, - '>', 2314, - 'E', 3118, - 'a', 3162, - 'b', 3151, - 'e', 3114, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3176, - 's', 3205, - 'x', 3171, + '!', 3083, + '#', 4100, + '(', 2493, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 3077, + '/', 2499, + '<', 2482, + '=', 3084, + '>', 2315, + 'a', 3163, + 'b', 3152, + 'e', 3164, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3177, + 's', 3206, + 'x', 3172, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(102); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(103); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 97: ADVANCE_MAP( - '!', 3082, - '#', 4099, - '(', 2492, - '*', 2455, - '+', 2507, - '-', 2324, - '/', 2498, - '<', 2481, - '=', 3083, - '>', 2314, - 'E', 3118, - '_', 3107, - 'a', 3162, - 'b', 3151, - 'e', 3114, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3176, - 's', 3205, - 'x', 3171, + '!', 3083, + '#', 4100, + '(', 2493, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 2534, + '/', 2499, + '<', 2482, + '=', 3084, + '>', 2315, + 'E', 3119, + 'a', 3163, + 'b', 3152, + 'e', 3115, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3177, + 's', 3206, + 'x', 3172, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(102); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(103); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 98: ADVANCE_MAP( - '!', 3082, - '#', 4099, - '(', 2492, - '*', 2455, - '+', 2507, - '-', 2324, - '/', 2498, - '<', 2481, - '=', 3083, - '>', 2314, - 'E', 3118, - 'a', 3162, - 'b', 3151, - 'e', 3114, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3176, - 's', 3205, - 'x', 3171, + '!', 3083, + '#', 4100, + '(', 2493, + '*', 2456, + '+', 2508, + '-', 2325, + '/', 2499, + '<', 2482, + '=', 3084, + '>', 2315, + 'E', 3119, + '_', 3108, + 'a', 3163, + 'b', 3152, + 'e', 3115, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3177, + 's', 3206, + 'x', 3172, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(102); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(103); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 99: ADVANCE_MAP( - '!', 3082, - '#', 4099, - '(', 2492, - '*', 2455, - '+', 2507, - '-', 2324, - '/', 2498, - '<', 2481, - '=', 3083, - '>', 2314, - 'a', 3162, - 'b', 3151, - 'e', 3163, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3176, - 's', 3205, - 'x', 3171, + '!', 3083, + '#', 4100, + '(', 2493, + '*', 2456, + '+', 2508, + '-', 2325, + '/', 2499, + '<', 2482, + '=', 3084, + '>', 2315, + 'E', 3119, + 'a', 3163, + 'b', 3152, + 'e', 3115, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3177, + 's', 3206, + 'x', 3172, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(102); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(103); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 100: ADVANCE_MAP( - '!', 3301, - '#', 4105, - '(', 2492, - '*', 2457, - '+', 2512, - '-', 2347, - '/', 2500, + '!', 3083, + '#', 4100, + '(', 2493, + '*', 2456, + '+', 2508, + '-', 2325, + '/', 2499, '<', 2482, - '=', 3302, + '=', 3084, '>', 2315, - 'a', 3398, - 'b', 3381, - 'e', 3403, - 'h', 3337, - 'i', 3399, - 'm', 3411, - 'n', 3414, - 'o', 3425, - 's', 3461, - 'x', 3413, + 'a', 3163, + 'b', 3152, + 'e', 3164, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3177, + 's', 3206, + 'x', 3172, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(102); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + lookahead == ' ') SKIP(103); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 101: ADVANCE_MAP( - '!', 423, - '#', 4099, - '$', 2296, - '*', 2455, - '+', 2508, - '-', 2342, - '.', 447, - '/', 2498, - '<', 2481, - '=', 424, - '>', 2314, - 'a', 526, - 'b', 509, - 'e', 531, - 'h', 455, - 'i', 528, - 'm', 541, - 'n', 539, - 'o', 554, - 's', 586, - 'x', 536, + '!', 3302, + '#', 4106, + '(', 2493, + '*', 2458, + '+', 2513, + '-', 2348, + '/', 2501, + '<', 2483, + '=', 3303, + '>', 2316, + 'a', 3399, + 'b', 3382, + 'e', 3404, + 'h', 3338, + 'i', 3400, + 'm', 3412, + 'n', 3415, + 'o', 3426, + 's', 3462, + 'x', 3414, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(101); + lookahead == ' ') SKIP(103); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 102: ADVANCE_MAP( - '!', 423, - '#', 4099, - '*', 2455, - '+', 2507, - '-', 2324, - '/', 2498, - '<', 2481, - '=', 424, - '>', 2314, - 'a', 526, - 'b', 509, - 'e', 531, - 'h', 455, - 'i', 528, - 'm', 541, - 'n', 539, - 'o', 554, - 's', 586, - 'x', 536, + '!', 424, + '#', 4100, + '$', 2297, + '*', 2456, + '+', 2509, + '-', 2343, + '.', 448, + '/', 2499, + '<', 2482, + '=', 425, + '>', 2315, + 'a', 527, + 'b', 510, + 'e', 532, + 'h', 456, + 'i', 529, + 'm', 542, + 'n', 540, + 'o', 555, + 's', 587, + 'x', 537, ); if (lookahead == '\t' || lookahead == ' ') SKIP(102); END_STATE(); case 103: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - '+', 2515, - ',', 2295, - '-', 2344, - '.', 2545, - '0', 2577, - 'I', 997, - 'N', 994, - '_', 881, - '`', 454, - 'a', 940, - 'b', 963, - 'c', 894, - 'd', 908, - 'e', 946, - 'f', 895, - 'h', 933, - 'i', 880, - 'l', 918, - 'm', 896, - 'n', 985, - 'o', 991, - 'r', 909, - 's', 953, - 't', 959, - 'u', 974, - 'w', 931, - '}', 2403, + '!', 424, + '#', 4100, + '*', 2456, + '+', 2508, + '-', 2325, + '/', 2499, + '<', 2482, + '=', 425, + '>', 2315, + 'a', 527, + 'b', 510, + 'e', 532, + 'h', 456, + 'i', 529, + 'm', 542, + 'n', 540, + 'o', 555, + 's', 587, + 'x', 537, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(177); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3906); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1002); + lookahead == ' ') SKIP(103); END_STATE(); case 104: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - '+', 2515, - ',', 2295, - '-', 2344, - '.', 867, - '0', 2577, - 'I', 997, - 'N', 994, - '_', 881, - '`', 454, - 'a', 940, - 'b', 963, - 'c', 894, - 'd', 908, - 'e', 946, - 'f', 895, - 'h', 933, - 'i', 880, - 'l', 918, - 'm', 896, - 'n', 985, - 'o', 991, - 'r', 909, - 's', 953, - 't', 959, - 'u', 974, - 'w', 931, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + '+', 2516, + ',', 2296, + '-', 2345, + '.', 2546, + '0', 2578, + 'I', 998, + 'N', 995, + '_', 882, + '`', 455, + 'a', 941, + 'b', 964, + 'c', 895, + 'd', 909, + 'e', 947, + 'f', 896, + 'h', 934, + 'i', 881, + 'l', 919, + 'm', 897, + 'n', 986, + 'o', 992, + 'r', 910, + 's', 954, + 't', 960, + 'u', 975, + 'w', 932, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(177); + lookahead == ' ') SKIP(171); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3906); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2578); + lookahead == '^') ADVANCE(3907); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2579); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1002); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1003); END_STATE(); case 105: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - '+', 2515, - ',', 2783, - '-', 2344, - '.', 2545, - '0', 2577, - ':', 2289, - 'I', 997, - 'N', 994, - '[', 2291, - ']', 2292, - '_', 881, - '`', 454, - 'a', 940, - 'b', 963, - 'c', 894, - 'd', 908, - 'e', 946, - 'f', 895, - 'h', 933, - 'i', 880, - 'l', 918, - 'm', 896, - 'n', 985, - 'o', 991, - 'r', 909, - 's', 953, - 't', 959, - 'u', 974, - 'w', 931, - '}', 2403, - '\t', 2784, - ' ', 2784, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + '+', 2516, + ',', 2296, + '-', 2345, + '.', 868, + '0', 2578, + 'I', 998, + 'N', 995, + '_', 882, + '`', 455, + 'a', 941, + 'b', 964, + 'c', 895, + 'd', 909, + 'e', 947, + 'f', 896, + 'h', 934, + 'i', 881, + 'l', 919, + 'm', 897, + 'n', 986, + 'o', 992, + 'r', 910, + 's', 954, + 't', 960, + 'u', 975, + 'w', 932, + '}', 2404, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(171); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3906); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2578); + lookahead == '^') ADVANCE(3907); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2579); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1002); + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1003); END_STATE(); case 106: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - '+', 2515, - ',', 2783, - '-', 2344, - '.', 867, - '0', 2577, - 'I', 997, - 'N', 994, - '[', 2735, - ']', 2292, - '_', 881, - '`', 454, - 'a', 940, - 'b', 963, - 'c', 894, - 'd', 908, - 'e', 946, - 'f', 895, - 'h', 933, - 'i', 880, - 'l', 918, - 'm', 896, - 'n', 985, - 'o', 991, - 'r', 909, - 's', 953, - 't', 959, - 'u', 974, - 'w', 931, - '}', 2403, - '\t', 2784, - ' ', 2784, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + '+', 2516, + ',', 2784, + '-', 2345, + '.', 2546, + '0', 2578, + ':', 2290, + 'I', 998, + 'N', 995, + '[', 2292, + ']', 2293, + '_', 882, + '`', 455, + 'a', 941, + 'b', 964, + 'c', 895, + 'd', 909, + 'e', 947, + 'f', 896, + 'h', 934, + 'i', 881, + 'l', 919, + 'm', 897, + 'n', 986, + 'o', 992, + 'r', 910, + 's', 954, + 't', 960, + 'u', 975, + 'w', 932, + '}', 2404, + '\t', 2785, + ' ', 2785, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3906); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2578); + lookahead == '^') ADVANCE(3907); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2579); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1002); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1003); END_STATE(); case 107: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - '+', 2517, - ',', 2295, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + '+', 2516, + ',', 2784, '-', 2345, - '.', 2555, - '0', 2649, - 'B', 2714, - 'E', 874, - 'G', 879, - 'I', 997, - 'K', 879, - 'M', 879, - 'N', 994, - 'P', 879, - 'T', 879, - '_', 893, - '`', 454, - 'a', 940, - 'b', 2718, - 'c', 894, - 'd', 900, - 'e', 873, - 'f', 895, - 'g', 878, - 'h', 932, - 'i', 880, - 'k', 878, - 'l', 918, - 'm', 875, - 'n', 971, - 'o', 991, - 'p', 878, - 'r', 909, - 's', 921, - 't', 877, - 'u', 973, - 'w', 930, - '}', 2403, - 0xb5, 972, + '.', 868, + '0', 2578, + 'I', 998, + 'N', 995, + '[', 2736, + ']', 2293, + '_', 882, + '`', 455, + 'a', 941, + 'b', 964, + 'c', 895, + 'd', 909, + 'e', 947, + 'f', 896, + 'h', 934, + 'i', 881, + 'l', 919, + 'm', 897, + 'n', 986, + 'o', 992, + 'r', 910, + 's', 954, + 't', 960, + 'u', 975, + 'w', 932, + '}', 2404, + '\t', 2785, + ' ', 2785, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(145); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3906); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == '^') ADVANCE(3907); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2579); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1002); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1003); END_STATE(); case 108: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - '+', 2517, - ',', 2295, - '-', 2345, - '.', 2555, - '0', 2649, - 'E', 889, - 'I', 997, - 'N', 994, - '_', 893, - '`', 454, - 'a', 940, - 'b', 963, - 'c', 894, - 'd', 908, - 'e', 888, - 'f', 895, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + '+', 2518, + ',', 2296, + '-', 2346, + '.', 2556, + '0', 2650, + 'B', 2715, + 'E', 875, + 'G', 880, + 'I', 998, + 'K', 880, + 'M', 880, + 'N', 995, + 'P', 880, + 'T', 880, + '_', 894, + '`', 455, + 'a', 941, + 'b', 2719, + 'c', 895, + 'd', 901, + 'e', 874, + 'f', 896, + 'g', 879, 'h', 933, - 'i', 880, - 'l', 918, - 'm', 896, - 'n', 985, - 'o', 991, - 'r', 909, - 's', 953, - 't', 959, + 'i', 881, + 'k', 879, + 'l', 919, + 'm', 876, + 'n', 972, + 'o', 992, + 'p', 879, + 'r', 910, + 's', 922, + 't', 878, 'u', 974, 'w', 931, - '}', 2403, + '}', 2404, + 0xb5, 973, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(145); + lookahead == ' ') SKIP(146); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3906); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == '^') ADVANCE(3907); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1002); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1003); END_STATE(); case 109: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - '+', 2517, - ',', 2295, - '-', 2345, - '.', 870, - '0', 2577, - 'B', 2714, - 'E', 874, - 'G', 879, - 'I', 997, - 'K', 879, - 'M', 879, - 'N', 994, - 'P', 879, - 'T', 879, - '_', 881, - '`', 454, - 'a', 940, - 'b', 2718, - 'c', 894, - 'd', 900, - 'e', 873, - 'f', 895, - 'g', 878, - 'h', 932, - 'i', 880, - 'k', 878, - 'l', 918, - 'm', 875, - 'n', 971, - 'o', 991, - 'p', 878, - 'r', 909, - 's', 921, - 't', 877, - 'u', 973, - 'w', 930, - '}', 2403, - 0xb5, 972, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + '+', 2518, + ',', 2296, + '-', 2346, + '.', 2556, + '0', 2650, + 'E', 890, + 'I', 998, + 'N', 995, + '_', 894, + '`', 455, + 'a', 941, + 'b', 964, + 'c', 895, + 'd', 909, + 'e', 889, + 'f', 896, + 'h', 934, + 'i', 881, + 'l', 919, + 'm', 897, + 'n', 986, + 'o', 992, + 'r', 910, + 's', 954, + 't', 960, + 'u', 975, + 'w', 932, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(145); + lookahead == ' ') SKIP(146); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3906); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2578); + lookahead == '^') ADVANCE(3907); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1002); + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1003); END_STATE(); case 110: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - '+', 2517, - ',', 2295, - '-', 2345, - '.', 870, - '0', 2577, - 'E', 889, - 'I', 997, - 'N', 994, - '_', 881, - '`', 454, - 'a', 940, - 'b', 963, - 'c', 894, - 'd', 908, - 'e', 888, - 'f', 895, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + '+', 2518, + ',', 2296, + '-', 2346, + '.', 871, + '0', 2578, + 'B', 2715, + 'E', 875, + 'G', 880, + 'I', 998, + 'K', 880, + 'M', 880, + 'N', 995, + 'P', 880, + 'T', 880, + '_', 882, + '`', 455, + 'a', 941, + 'b', 2719, + 'c', 895, + 'd', 901, + 'e', 874, + 'f', 896, + 'g', 879, 'h', 933, - 'i', 880, - 'l', 918, - 'm', 896, - 'n', 985, - 'o', 991, - 'r', 909, - 's', 953, - 't', 959, + 'i', 881, + 'k', 879, + 'l', 919, + 'm', 876, + 'n', 972, + 'o', 992, + 'p', 879, + 'r', 910, + 's', 922, + 't', 878, 'u', 974, 'w', 931, - '}', 2403, + '}', 2404, + 0xb5, 973, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(145); + lookahead == ' ') SKIP(146); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3906); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2578); + lookahead == '^') ADVANCE(3907); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2579); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1002); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1003); END_STATE(); case 111: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - '+', 2517, - ',', 2295, - '-', 2345, - '.', 870, - '0', 2649, - 'B', 2714, - 'E', 874, - 'G', 879, - 'I', 997, - 'K', 879, - 'M', 879, - 'N', 994, - 'P', 879, - 'T', 879, - '_', 893, - '`', 454, - 'a', 940, - 'b', 2718, - 'c', 894, - 'd', 900, - 'e', 873, - 'f', 895, - 'g', 878, - 'h', 932, - 'i', 880, - 'k', 878, - 'l', 918, - 'm', 875, - 'n', 971, - 'o', 991, - 'p', 878, - 'r', 909, - 's', 921, - 't', 877, - 'u', 973, - 'w', 930, - '}', 2403, - 0xb5, 972, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + '+', 2518, + ',', 2296, + '-', 2346, + '.', 871, + '0', 2578, + 'E', 890, + 'I', 998, + 'N', 995, + '_', 882, + '`', 455, + 'a', 941, + 'b', 964, + 'c', 895, + 'd', 909, + 'e', 889, + 'f', 896, + 'h', 934, + 'i', 881, + 'l', 919, + 'm', 897, + 'n', 986, + 'o', 992, + 'r', 910, + 's', 954, + 't', 960, + 'u', 975, + 'w', 932, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(145); + lookahead == ' ') SKIP(146); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3906); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == '^') ADVANCE(3907); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2579); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1002); + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1003); END_STATE(); case 112: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - '+', 2517, - ',', 2295, - '-', 2345, - '.', 870, - '0', 2649, - 'B', 2714, - 'E', 879, - 'G', 879, - 'I', 997, - 'K', 879, - 'M', 879, - 'N', 994, - 'P', 879, - 'T', 879, - '_', 893, - '`', 454, - 'a', 940, - 'b', 2718, - 'c', 894, - 'd', 900, - 'e', 876, - 'f', 895, - 'g', 878, - 'h', 932, - 'i', 880, - 'k', 878, - 'l', 918, - 'm', 875, - 'n', 971, - 'o', 991, - 'p', 878, - 'r', 909, - 's', 921, - 't', 877, - 'u', 973, - 'w', 930, - '}', 2403, - 0xb5, 972, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + '+', 2518, + ',', 2296, + '-', 2346, + '.', 871, + '0', 2650, + 'B', 2715, + 'E', 875, + 'G', 880, + 'I', 998, + 'K', 880, + 'M', 880, + 'N', 995, + 'P', 880, + 'T', 880, + '_', 894, + '`', 455, + 'a', 941, + 'b', 2719, + 'c', 895, + 'd', 901, + 'e', 874, + 'f', 896, + 'g', 879, + 'h', 933, + 'i', 881, + 'k', 879, + 'l', 919, + 'm', 876, + 'n', 972, + 'o', 992, + 'p', 879, + 'r', 910, + 's', 922, + 't', 878, + 'u', 974, + 'w', 931, + '}', 2404, + 0xb5, 973, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(145); + lookahead == ' ') SKIP(146); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3906); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == '^') ADVANCE(3907); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1002); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1003); END_STATE(); case 113: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - '+', 2517, - ',', 2295, - '-', 2345, - '.', 870, - '0', 2649, - 'E', 889, - 'I', 997, - 'N', 994, - '_', 893, - '`', 454, - 'a', 940, - 'b', 963, - 'c', 894, - 'd', 908, - 'e', 888, - 'f', 895, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + '+', 2518, + ',', 2296, + '-', 2346, + '.', 871, + '0', 2650, + 'B', 2715, + 'E', 880, + 'G', 880, + 'I', 998, + 'K', 880, + 'M', 880, + 'N', 995, + 'P', 880, + 'T', 880, + '_', 894, + '`', 455, + 'a', 941, + 'b', 2719, + 'c', 895, + 'd', 901, + 'e', 877, + 'f', 896, + 'g', 879, 'h', 933, - 'i', 880, - 'l', 918, - 'm', 896, - 'n', 985, - 'o', 991, - 'r', 909, - 's', 953, - 't', 959, + 'i', 881, + 'k', 879, + 'l', 919, + 'm', 876, + 'n', 972, + 'o', 992, + 'p', 879, + 'r', 910, + 's', 922, + 't', 878, 'u', 974, 'w', 931, - '}', 2403, + '}', 2404, + 0xb5, 973, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(145); + lookahead == ' ') SKIP(146); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3906); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == '^') ADVANCE(3907); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1002); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1003); END_STATE(); case 114: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - '+', 2517, - ',', 2295, - '-', 2345, - '.', 870, - '0', 2649, - 'I', 997, - 'N', 994, - '_', 893, - '`', 454, - 'a', 940, - 'b', 963, - 'c', 894, - 'd', 908, - 'e', 946, - 'f', 895, - 'h', 933, - 'i', 880, - 'l', 918, - 'm', 896, - 'n', 985, - 'o', 991, - 'r', 909, - 's', 953, - 't', 959, - 'u', 974, - 'w', 931, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + '+', 2518, + ',', 2296, + '-', 2346, + '.', 871, + '0', 2650, + 'E', 890, + 'I', 998, + 'N', 995, + '_', 894, + '`', 455, + 'a', 941, + 'b', 964, + 'c', 895, + 'd', 909, + 'e', 889, + 'f', 896, + 'h', 934, + 'i', 881, + 'l', 919, + 'm', 897, + 'n', 986, + 'o', 992, + 'r', 910, + 's', 954, + 't', 960, + 'u', 975, + 'w', 932, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(145); + lookahead == ' ') SKIP(146); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3906); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == '^') ADVANCE(3907); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1002); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1003); END_STATE(); case 115: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - '+', 2517, - ',', 2295, - '-', 2345, - '.', 2546, - '0', 2649, - 'E', 889, - 'I', 997, - 'N', 994, - '_', 893, - '`', 454, - 'a', 940, - 'b', 963, - 'c', 894, - 'd', 908, - 'e', 888, - 'f', 895, - 'h', 933, - 'i', 880, - 'l', 918, - 'm', 896, - 'n', 985, - 'o', 991, - 'r', 909, - 's', 953, - 't', 959, - 'u', 974, - 'w', 931, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + '+', 2518, + ',', 2296, + '-', 2346, + '.', 871, + '0', 2650, + 'I', 998, + 'N', 995, + '_', 894, + '`', 455, + 'a', 941, + 'b', 964, + 'c', 895, + 'd', 909, + 'e', 947, + 'f', 896, + 'h', 934, + 'i', 881, + 'l', 919, + 'm', 897, + 'n', 986, + 'o', 992, + 'r', 910, + 's', 954, + 't', 960, + 'u', 975, + 'w', 932, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(145); + lookahead == ' ') SKIP(146); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3906); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == '^') ADVANCE(3907); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1002); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1003); END_STATE(); case 116: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - '+', 2517, - ',', 2295, - '-', 2345, - '.', 868, - '0', 2577, - 'E', 889, - 'I', 997, - 'N', 994, - '_', 881, - '`', 454, - 'a', 940, - 'b', 963, - 'c', 894, - 'd', 908, - 'e', 888, - 'f', 895, - 'h', 933, - 'i', 880, - 'l', 918, - 'm', 896, - 'n', 985, - 'o', 991, - 'r', 909, - 's', 953, - 't', 959, - 'u', 974, - 'w', 931, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + '+', 2518, + ',', 2296, + '-', 2346, + '.', 2547, + '0', 2650, + 'E', 890, + 'I', 998, + 'N', 995, + '_', 894, + '`', 455, + 'a', 941, + 'b', 964, + 'c', 895, + 'd', 909, + 'e', 889, + 'f', 896, + 'h', 934, + 'i', 881, + 'l', 919, + 'm', 897, + 'n', 986, + 'o', 992, + 'r', 910, + 's', 954, + 't', 960, + 'u', 975, + 'w', 932, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(145); + lookahead == ' ') SKIP(146); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3906); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2578); + lookahead == '^') ADVANCE(3907); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1002); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1003); END_STATE(); case 117: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - '+', 2517, - ',', 2295, - '-', 2345, - '.', 868, - '0', 2649, - 'E', 889, - 'I', 997, - 'N', 994, - '_', 893, - '`', 454, - 'a', 940, - 'b', 963, - 'c', 894, - 'd', 908, - 'e', 888, - 'f', 895, - 'h', 933, - 'i', 880, - 'l', 918, - 'm', 896, - 'n', 985, - 'o', 991, - 'r', 909, - 's', 953, - 't', 959, - 'u', 974, - 'w', 931, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + '+', 2518, + ',', 2296, + '-', 2346, + '.', 869, + '0', 2578, + 'E', 890, + 'I', 998, + 'N', 995, + '_', 882, + '`', 455, + 'a', 941, + 'b', 964, + 'c', 895, + 'd', 909, + 'e', 889, + 'f', 896, + 'h', 934, + 'i', 881, + 'l', 919, + 'm', 897, + 'n', 986, + 'o', 992, + 'r', 910, + 's', 954, + 't', 960, + 'u', 975, + 'w', 932, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(145); + lookahead == ' ') SKIP(146); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3906); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == '^') ADVANCE(3907); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2579); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1002); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1003); END_STATE(); case 118: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - '+', 2517, - ',', 2295, - '-', 2345, - '.', 868, - '0', 2649, - 'I', 997, - 'N', 994, - '_', 893, - '`', 454, - 'a', 940, - 'b', 963, - 'c', 894, - 'd', 908, - 'e', 946, - 'f', 895, - 'h', 933, - 'i', 880, - 'l', 918, - 'm', 896, - 'n', 985, - 'o', 991, - 'r', 909, - 's', 953, - 't', 959, - 'u', 974, - 'w', 931, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + '+', 2518, + ',', 2296, + '-', 2346, + '.', 869, + '0', 2650, + 'E', 890, + 'I', 998, + 'N', 995, + '_', 894, + '`', 455, + 'a', 941, + 'b', 964, + 'c', 895, + 'd', 909, + 'e', 889, + 'f', 896, + 'h', 934, + 'i', 881, + 'l', 919, + 'm', 897, + 'n', 986, + 'o', 992, + 'r', 910, + 's', 954, + 't', 960, + 'u', 975, + 'w', 932, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(145); + lookahead == ' ') SKIP(146); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3906); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == '^') ADVANCE(3907); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1002); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1003); END_STATE(); case 119: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - '+', 2517, - ',', 2783, - '-', 2345, - '.', 2555, - '0', 2649, - 'B', 2714, - 'E', 874, - 'G', 879, - 'I', 997, - 'K', 879, - 'M', 879, - 'N', 994, - 'P', 879, - 'T', 879, - '_', 893, - '`', 454, - 'a', 940, - 'b', 2718, - 'c', 894, - 'd', 900, - 'e', 873, - 'f', 895, - 'g', 878, - 'h', 932, - 'i', 880, - 'k', 878, - 'l', 918, - 'm', 875, - 'n', 971, - 'o', 991, - 'p', 878, - 'r', 909, - 's', 921, - 't', 877, - 'u', 973, - 'w', 930, - '}', 2403, - 0xb5, 972, - '\t', 2784, - ' ', 2784, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + '+', 2518, + ',', 2296, + '-', 2346, + '.', 869, + '0', 2650, + 'I', 998, + 'N', 995, + '_', 894, + '`', 455, + 'a', 941, + 'b', 964, + 'c', 895, + 'd', 909, + 'e', 947, + 'f', 896, + 'h', 934, + 'i', 881, + 'l', 919, + 'm', 897, + 'n', 986, + 'o', 992, + 'r', 910, + 's', 954, + 't', 960, + 'u', 975, + 'w', 932, + '}', 2404, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(146); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3906); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == '^') ADVANCE(3907); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1002); + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1003); END_STATE(); case 120: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - '+', 2517, - ',', 2783, - '-', 2345, - '.', 2555, - '0', 2649, - 'E', 889, - 'I', 997, - 'N', 994, - '_', 893, - '`', 454, - 'a', 940, - 'b', 963, - 'c', 894, - 'd', 908, - 'e', 888, - 'f', 895, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + '+', 2518, + ',', 2784, + '-', 2346, + '.', 2556, + '0', 2650, + 'B', 2715, + 'E', 875, + 'G', 880, + 'I', 998, + 'K', 880, + 'M', 880, + 'N', 995, + 'P', 880, + 'T', 880, + '_', 894, + '`', 455, + 'a', 941, + 'b', 2719, + 'c', 895, + 'd', 901, + 'e', 874, + 'f', 896, + 'g', 879, 'h', 933, - 'i', 880, - 'l', 918, - 'm', 896, - 'n', 985, - 'o', 991, - 'r', 909, - 's', 953, - 't', 959, + 'i', 881, + 'k', 879, + 'l', 919, + 'm', 876, + 'n', 972, + 'o', 992, + 'p', 879, + 'r', 910, + 's', 922, + 't', 878, 'u', 974, 'w', 931, - '}', 2403, - '\t', 2784, - ' ', 2784, + '}', 2404, + 0xb5, 973, + '\t', 2785, + ' ', 2785, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3906); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == '^') ADVANCE(3907); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1002); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1003); END_STATE(); case 121: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - '+', 2517, - ',', 2783, - '-', 2345, - '.', 870, - '0', 2577, - 'B', 2714, - 'E', 874, - 'G', 879, - 'I', 997, - 'K', 879, - 'M', 879, - 'N', 994, - 'P', 879, - 'T', 879, - '_', 881, - '`', 454, - 'a', 940, - 'b', 2718, - 'c', 894, - 'd', 900, - 'e', 873, - 'f', 895, - 'g', 878, - 'h', 932, - 'i', 880, - 'k', 878, - 'l', 918, - 'm', 875, - 'n', 971, - 'o', 991, - 'p', 878, - 'r', 909, - 's', 921, - 't', 877, - 'u', 973, - 'w', 930, - '}', 2403, - 0xb5, 972, - '\t', 2784, - ' ', 2784, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + '+', 2518, + ',', 2784, + '-', 2346, + '.', 2556, + '0', 2650, + 'E', 890, + 'I', 998, + 'N', 995, + '_', 894, + '`', 455, + 'a', 941, + 'b', 964, + 'c', 895, + 'd', 909, + 'e', 889, + 'f', 896, + 'h', 934, + 'i', 881, + 'l', 919, + 'm', 897, + 'n', 986, + 'o', 992, + 'r', 910, + 's', 954, + 't', 960, + 'u', 975, + 'w', 932, + '}', 2404, + '\t', 2785, + ' ', 2785, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3906); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2578); + lookahead == '^') ADVANCE(3907); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1002); + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1003); END_STATE(); case 122: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - '+', 2517, - ',', 2783, - '-', 2345, - '.', 870, - '0', 2577, - 'E', 889, - 'I', 997, - 'N', 994, - '_', 881, - '`', 454, - 'a', 940, - 'b', 963, - 'c', 894, - 'd', 908, - 'e', 888, - 'f', 895, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + '+', 2518, + ',', 2784, + '-', 2346, + '.', 871, + '0', 2578, + 'B', 2715, + 'E', 875, + 'G', 880, + 'I', 998, + 'K', 880, + 'M', 880, + 'N', 995, + 'P', 880, + 'T', 880, + '_', 882, + '`', 455, + 'a', 941, + 'b', 2719, + 'c', 895, + 'd', 901, + 'e', 874, + 'f', 896, + 'g', 879, 'h', 933, - 'i', 880, - 'l', 918, - 'm', 896, - 'n', 985, - 'o', 991, - 'r', 909, - 's', 953, - 't', 959, + 'i', 881, + 'k', 879, + 'l', 919, + 'm', 876, + 'n', 972, + 'o', 992, + 'p', 879, + 'r', 910, + 's', 922, + 't', 878, 'u', 974, 'w', 931, - '}', 2403, - '\t', 2784, - ' ', 2784, + '}', 2404, + 0xb5, 973, + '\t', 2785, + ' ', 2785, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3906); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2578); + lookahead == '^') ADVANCE(3907); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2579); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1002); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1003); END_STATE(); case 123: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - '+', 2517, - ',', 2783, - '-', 2345, - '.', 870, - '0', 2649, - 'B', 2714, - 'E', 874, - 'G', 879, - 'I', 997, - 'K', 879, - 'M', 879, - 'N', 994, - 'P', 879, - 'T', 879, - '_', 893, - '`', 454, - 'a', 940, - 'b', 2718, - 'c', 894, - 'd', 900, - 'e', 873, - 'f', 895, - 'g', 878, - 'h', 932, - 'i', 880, - 'k', 878, - 'l', 918, - 'm', 875, - 'n', 971, - 'o', 991, - 'p', 878, - 'r', 909, - 's', 921, - 't', 877, - 'u', 973, - 'w', 930, - '}', 2403, - 0xb5, 972, - '\t', 2784, - ' ', 2784, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + '+', 2518, + ',', 2784, + '-', 2346, + '.', 871, + '0', 2578, + 'E', 890, + 'I', 998, + 'N', 995, + '_', 882, + '`', 455, + 'a', 941, + 'b', 964, + 'c', 895, + 'd', 909, + 'e', 889, + 'f', 896, + 'h', 934, + 'i', 881, + 'l', 919, + 'm', 897, + 'n', 986, + 'o', 992, + 'r', 910, + 's', 954, + 't', 960, + 'u', 975, + 'w', 932, + '}', 2404, + '\t', 2785, + ' ', 2785, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3906); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == '^') ADVANCE(3907); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2579); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1002); + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1003); END_STATE(); case 124: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - '+', 2517, - ',', 2783, - '-', 2345, - '.', 870, - '0', 2649, - 'B', 2714, - 'E', 879, - 'G', 879, - 'I', 997, - 'K', 879, - 'M', 879, - 'N', 994, - 'P', 879, - 'T', 879, - '_', 893, - '`', 454, - 'a', 940, - 'b', 2718, - 'c', 894, - 'd', 900, - 'e', 876, - 'f', 895, - 'g', 878, - 'h', 932, - 'i', 880, - 'k', 878, - 'l', 918, - 'm', 875, - 'n', 971, - 'o', 991, - 'p', 878, - 'r', 909, - 's', 921, - 't', 877, - 'u', 973, - 'w', 930, - '}', 2403, - 0xb5, 972, - '\t', 2784, - ' ', 2784, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + '+', 2518, + ',', 2784, + '-', 2346, + '.', 871, + '0', 2650, + 'B', 2715, + 'E', 875, + 'G', 880, + 'I', 998, + 'K', 880, + 'M', 880, + 'N', 995, + 'P', 880, + 'T', 880, + '_', 894, + '`', 455, + 'a', 941, + 'b', 2719, + 'c', 895, + 'd', 901, + 'e', 874, + 'f', 896, + 'g', 879, + 'h', 933, + 'i', 881, + 'k', 879, + 'l', 919, + 'm', 876, + 'n', 972, + 'o', 992, + 'p', 879, + 'r', 910, + 's', 922, + 't', 878, + 'u', 974, + 'w', 931, + '}', 2404, + 0xb5, 973, + '\t', 2785, + ' ', 2785, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3906); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == '^') ADVANCE(3907); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1002); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1003); END_STATE(); case 125: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - '+', 2517, - ',', 2783, - '-', 2345, - '.', 870, - '0', 2649, - 'E', 889, - 'I', 997, - 'N', 994, - '_', 893, - '`', 454, - 'a', 940, - 'b', 963, - 'c', 894, - 'd', 908, - 'e', 888, - 'f', 895, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + '+', 2518, + ',', 2784, + '-', 2346, + '.', 871, + '0', 2650, + 'B', 2715, + 'E', 880, + 'G', 880, + 'I', 998, + 'K', 880, + 'M', 880, + 'N', 995, + 'P', 880, + 'T', 880, + '_', 894, + '`', 455, + 'a', 941, + 'b', 2719, + 'c', 895, + 'd', 901, + 'e', 877, + 'f', 896, + 'g', 879, 'h', 933, - 'i', 880, - 'l', 918, - 'm', 896, - 'n', 985, - 'o', 991, - 'r', 909, - 's', 953, - 't', 959, + 'i', 881, + 'k', 879, + 'l', 919, + 'm', 876, + 'n', 972, + 'o', 992, + 'p', 879, + 'r', 910, + 's', 922, + 't', 878, 'u', 974, 'w', 931, - '}', 2403, - '\t', 2784, - ' ', 2784, + '}', 2404, + 0xb5, 973, + '\t', 2785, + ' ', 2785, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3906); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == '^') ADVANCE(3907); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1002); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1003); END_STATE(); case 126: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - '+', 2517, - ',', 2783, - '-', 2345, - '.', 870, - '0', 2649, - 'I', 997, - 'N', 994, - '_', 893, - '`', 454, - 'a', 940, - 'b', 963, - 'c', 894, - 'd', 908, - 'e', 946, - 'f', 895, - 'h', 933, - 'i', 880, - 'l', 918, - 'm', 896, - 'n', 985, - 'o', 991, - 'r', 909, - 's', 953, - 't', 959, - 'u', 974, - 'w', 931, - '}', 2403, - '\t', 2784, - ' ', 2784, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + '+', 2518, + ',', 2784, + '-', 2346, + '.', 871, + '0', 2650, + 'E', 890, + 'I', 998, + 'N', 995, + '_', 894, + '`', 455, + 'a', 941, + 'b', 964, + 'c', 895, + 'd', 909, + 'e', 889, + 'f', 896, + 'h', 934, + 'i', 881, + 'l', 919, + 'm', 897, + 'n', 986, + 'o', 992, + 'r', 910, + 's', 954, + 't', 960, + 'u', 975, + 'w', 932, + '}', 2404, + '\t', 2785, + ' ', 2785, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3906); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == '^') ADVANCE(3907); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1002); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1003); END_STATE(); case 127: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - '+', 2517, - ',', 2783, - '-', 2345, - '.', 2546, - '0', 2649, - 'E', 889, - 'I', 997, - 'N', 994, - '_', 893, - '`', 454, - 'a', 940, - 'b', 963, - 'c', 894, - 'd', 908, - 'e', 888, - 'f', 895, - 'h', 933, - 'i', 880, - 'l', 918, - 'm', 896, - 'n', 985, - 'o', 991, - 'r', 909, - 's', 953, - 't', 959, - 'u', 974, - 'w', 931, - '}', 2403, - '\t', 2784, - ' ', 2784, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + '+', 2518, + ',', 2784, + '-', 2346, + '.', 871, + '0', 2650, + 'I', 998, + 'N', 995, + '_', 894, + '`', 455, + 'a', 941, + 'b', 964, + 'c', 895, + 'd', 909, + 'e', 947, + 'f', 896, + 'h', 934, + 'i', 881, + 'l', 919, + 'm', 897, + 'n', 986, + 'o', 992, + 'r', 910, + 's', 954, + 't', 960, + 'u', 975, + 'w', 932, + '}', 2404, + '\t', 2785, + ' ', 2785, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3906); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == '^') ADVANCE(3907); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1002); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1003); END_STATE(); case 128: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - '+', 2517, - ',', 2783, - '-', 2345, - '.', 868, - '0', 2577, - 'E', 889, - 'I', 997, - 'N', 994, - '_', 881, - '`', 454, - 'a', 940, - 'b', 963, - 'c', 894, - 'd', 908, - 'e', 888, - 'f', 895, - 'h', 933, - 'i', 880, - 'l', 918, - 'm', 896, - 'n', 985, - 'o', 991, - 'r', 909, - 's', 953, - 't', 959, - 'u', 974, - 'w', 931, - '}', 2403, - '\t', 2784, - ' ', 2784, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + '+', 2518, + ',', 2784, + '-', 2346, + '.', 2547, + '0', 2650, + 'E', 890, + 'I', 998, + 'N', 995, + '_', 894, + '`', 455, + 'a', 941, + 'b', 964, + 'c', 895, + 'd', 909, + 'e', 889, + 'f', 896, + 'h', 934, + 'i', 881, + 'l', 919, + 'm', 897, + 'n', 986, + 'o', 992, + 'r', 910, + 's', 954, + 't', 960, + 'u', 975, + 'w', 932, + '}', 2404, + '\t', 2785, + ' ', 2785, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3906); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2578); + lookahead == '^') ADVANCE(3907); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1002); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1003); END_STATE(); case 129: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - '+', 2517, - ',', 2783, - '-', 2345, - '.', 868, - '0', 2649, - 'E', 889, - 'I', 997, - 'N', 994, - '_', 893, - '`', 454, - 'a', 940, - 'b', 963, - 'c', 894, - 'd', 908, - 'e', 888, - 'f', 895, - 'h', 933, - 'i', 880, - 'l', 918, - 'm', 896, - 'n', 985, - 'o', 991, - 'r', 909, - 's', 953, - 't', 959, - 'u', 974, - 'w', 931, - '}', 2403, - '\t', 2784, - ' ', 2784, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + '+', 2518, + ',', 2784, + '-', 2346, + '.', 869, + '0', 2578, + 'E', 890, + 'I', 998, + 'N', 995, + '_', 882, + '`', 455, + 'a', 941, + 'b', 964, + 'c', 895, + 'd', 909, + 'e', 889, + 'f', 896, + 'h', 934, + 'i', 881, + 'l', 919, + 'm', 897, + 'n', 986, + 'o', 992, + 'r', 910, + 's', 954, + 't', 960, + 'u', 975, + 'w', 932, + '}', 2404, + '\t', 2785, + ' ', 2785, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3906); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == '^') ADVANCE(3907); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2579); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1002); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1003); END_STATE(); case 130: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - '+', 2517, - ',', 2783, - '-', 2345, - '.', 868, - '0', 2649, - 'I', 997, - 'N', 994, - '_', 893, - '`', 454, - 'a', 940, - 'b', 963, - 'c', 894, - 'd', 908, - 'e', 946, - 'f', 895, - 'h', 933, - 'i', 880, - 'l', 918, - 'm', 896, - 'n', 985, - 'o', 991, - 'r', 909, - 's', 953, - 't', 959, - 'u', 974, - 'w', 931, - '}', 2403, - '\t', 2784, - ' ', 2784, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + '+', 2518, + ',', 2784, + '-', 2346, + '.', 869, + '0', 2650, + 'E', 890, + 'I', 998, + 'N', 995, + '_', 894, + '`', 455, + 'a', 941, + 'b', 964, + 'c', 895, + 'd', 909, + 'e', 889, + 'f', 896, + 'h', 934, + 'i', 881, + 'l', 919, + 'm', 897, + 'n', 986, + 'o', 992, + 'r', 910, + 's', 954, + 't', 960, + 'u', 975, + 'w', 932, + '}', 2404, + '\t', 2785, + ' ', 2785, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3906); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == '^') ADVANCE(3907); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1002); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1003); END_STATE(); case 131: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 1019, - '-', 2338, - '.', 1020, - '0', 2641, - ';', 2795, - 'I', 1238, - 'N', 1235, - '[', 2291, - '^', 2813, - '_', 1036, - '`', 454, - 'a', 1140, - 'b', 1172, - 'c', 1038, - 'd', 1077, - 'e', 1139, - 'f', 1041, - 'h', 1118, - 'i', 1034, - 'l', 1086, - 'm', 1043, - 'n', 1156, - 'o', 1232, - 'r', 1064, - 's', 1162, - 't', 1167, - 'u', 1203, - 'w', 1113, - '{', 2402, - '\t', 131, - ' ', 131, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + '+', 2518, + ',', 2784, + '-', 2346, + '.', 869, + '0', 2650, + 'I', 998, + 'N', 995, + '_', 894, + '`', 455, + 'a', 941, + 'b', 964, + 'c', 895, + 'd', 909, + 'e', 947, + 'f', 896, + 'h', 934, + 'i', 881, + 'l', 919, + 'm', 897, + 'n', 986, + 'o', 992, + 'r', 910, + 's', 954, + 't', 960, + 'u', 975, + 'w', 932, + '}', 2404, + '\t', 2785, + ' ', 2785, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(422); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ',') || - lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2664); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(3907); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && - (lookahead < '&' || '.' < lookahead) && - (lookahead < '0' || '@' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1241); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1003); END_STATE(); case 132: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 1019, - '-', 2338, - '.', 1020, - '0', 2641, - 'I', 1238, - 'N', 1235, - '[', 2291, - '^', 2813, - '_', 1036, - '`', 454, - 'a', 1140, - 'b', 1188, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 1020, + '-', 2339, + '.', 1021, + '0', 2642, + ';', 2796, + 'I', 1239, + 'N', 1236, + '[', 2292, + '^', 2814, + '_', 1037, + '`', 455, + 'a', 1141, + 'b', 1173, 'c', 1039, 'd', 1078, - 'e', 1139, - 'f', 1041, - 'h', 1118, + 'e', 1140, + 'f', 1042, + 'h', 1119, 'i', 1035, - 'l', 1086, - 'm', 1052, - 'n', 1156, - 'o', 1232, - 'r', 1100, - 's', 1162, - 't', 1173, - 'u', 1203, - 'w', 1110, - '{', 2402, + 'l', 1087, + 'm', 1044, + 'n', 1157, + 'o', 1233, + 'r', 1065, + 's', 1163, + 't', 1168, + 'u', 1204, + 'w', 1114, + '{', 2403, + '\t', 132, + ' ', 132, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(132); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(423); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2664); + lookahead == '@') ADVANCE(1559); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2665); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1241); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1242); END_STATE(); case 133: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2513, - ',', 2295, - '-', 2338, - '.', 2800, - '0', 2648, - '?', 2458, - 'I', 1544, - 'N', 1537, - '_', 1285, - '`', 454, - 'a', 1400, - 'b', 1455, - 'c', 1301, - 'd', 1329, - 'e', 1412, - 'f', 1294, - 'h', 1383, - 'i', 1278, - 'l', 1344, - 'm', 1297, - 'n', 1516, - 'o', 1530, - 'r', 1330, - 's', 1429, - 't', 1447, - 'u', 1484, - 'w', 1375, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 1020, + '-', 2339, + '.', 1021, + '0', 2642, + 'I', 1239, + 'N', 1236, + '[', 2292, + '^', 2814, + '_', 1037, + '`', 455, + 'a', 1141, + 'b', 1189, + 'c', 1040, + 'd', 1079, + 'e', 1140, + 'f', 1042, + 'h', 1119, + 'i', 1036, + 'l', 1087, + 'm', 1053, + 'n', 1157, + 'o', 1233, + 'r', 1101, + 's', 1163, + 't', 1174, + 'u', 1204, + 'w', 1111, + '{', 2403, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(137); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == ' ') SKIP(133); + if (lookahead == '!' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ',') || + lookahead == '?' || + lookahead == '@') ADVANCE(1559); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2665); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '?' < lookahead) && - lookahead != '[' && + (lookahead < '&' || '.' < lookahead) && + (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1242); END_STATE(); case 134: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2513, - ',', 2295, - '-', 2338, - '.', 2800, - '0', 2648, - 'I', 1544, - 'N', 1537, - '_', 1285, - '`', 454, - 'a', 1400, - 'b', 1455, - 'c', 1301, - 'd', 1329, - 'e', 1412, - 'f', 1294, - 'h', 1383, - 'i', 1278, - 'l', 1344, - 'm', 1297, - 'n', 1516, - 'o', 1530, - 'r', 1330, - 's', 1429, - 't', 1447, - 'u', 1484, - 'w', 1375, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2514, + ',', 2296, + '-', 2339, + '.', 2801, + '0', 2649, + '?', 2459, + 'I', 1545, + 'N', 1538, + '_', 1286, + '`', 455, + 'a', 1401, + 'b', 1456, + 'c', 1302, + 'd', 1330, + 'e', 1413, + 'f', 1295, + 'h', 1384, + 'i', 1279, + 'l', 1345, + 'm', 1298, + 'n', 1517, + 'o', 1531, + 'r', 1331, + 's', 1430, + 't', 1448, + 'u', 1485, + 'w', 1376, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(138); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && + (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 135: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2513, - ',', 2295, - '-', 2338, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2514, + ',', 2296, + '-', 2339, '.', 2801, - '0', 2648, - ':', 2792, - '?', 2458, - 'I', 1544, - 'N', 1537, - '_', 1285, - '`', 454, - 'a', 1400, - 'b', 1455, - 'c', 1301, - 'd', 1329, - 'e', 1412, - 'f', 1294, - 'h', 1383, - 'i', 1278, - 'l', 1344, - 'm', 1297, - 'n', 1516, - 'o', 1530, - 'r', 1330, - 's', 1429, - 't', 1447, - 'u', 1484, - 'w', 1375, - '}', 2403, + '0', 2649, + 'I', 1545, + 'N', 1538, + '_', 1286, + '`', 455, + 'a', 1401, + 'b', 1456, + 'c', 1302, + 'd', 1330, + 'e', 1413, + 'f', 1295, + 'h', 1384, + 'i', 1279, + 'l', 1345, + 'm', 1298, + 'n', 1517, + 'o', 1531, + 'r', 1331, + 's', 1430, + 't', 1448, + 'u', 1485, + 'w', 1376, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(135); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == ' ') SKIP(139); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '?' < lookahead) && + (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 136: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2513, - ',', 2295, - '-', 2338, - '.', 2801, - '0', 2648, - ':', 2792, - 'I', 1544, - 'N', 1537, - '_', 1285, - '`', 454, - 'a', 1400, - 'b', 1455, - 'c', 1301, - 'd', 1329, - 'e', 1412, - 'f', 1294, - 'h', 1383, - 'i', 1278, - 'l', 1344, - 'm', 1297, - 'n', 1516, - 'o', 1530, - 'r', 1330, - 's', 1429, - 't', 1447, - 'u', 1484, - 'w', 1375, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2514, + ',', 2296, + '-', 2339, + '.', 2802, + '0', 2649, + ':', 2793, + '?', 2459, + 'I', 1545, + 'N', 1538, + '_', 1286, + '`', 455, + 'a', 1401, + 'b', 1456, + 'c', 1302, + 'd', 1330, + 'e', 1413, + 'f', 1295, + 'h', 1384, + 'i', 1279, + 'l', 1345, + 'm', 1298, + 'n', 1517, + 'o', 1531, + 'r', 1331, + 's', 1430, + 't', 1448, + 'u', 1485, + 'w', 1376, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(136); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && + (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 137: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2513, - ',', 2295, - '-', 2338, - '.', 2801, - '0', 2648, - '?', 2458, - 'I', 1544, - 'N', 1537, - '_', 1285, - '`', 454, - 'a', 1400, - 'b', 1455, - 'c', 1301, - 'd', 1329, - 'e', 1412, - 'f', 1294, - 'h', 1383, - 'i', 1278, - 'l', 1344, - 'm', 1297, - 'n', 1516, - 'o', 1530, - 'r', 1330, - 's', 1429, - 't', 1447, - 'u', 1484, - 'w', 1375, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2514, + ',', 2296, + '-', 2339, + '.', 2802, + '0', 2649, + ':', 2793, + 'I', 1545, + 'N', 1538, + '_', 1286, + '`', 455, + 'a', 1401, + 'b', 1456, + 'c', 1302, + 'd', 1330, + 'e', 1413, + 'f', 1295, + 'h', 1384, + 'i', 1279, + 'l', 1345, + 'm', 1298, + 'n', 1517, + 'o', 1531, + 'r', 1331, + 's', 1430, + 't', 1448, + 'u', 1485, + 'w', 1376, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(137); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '?' < lookahead) && + (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 138: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2513, - ',', 2295, - '-', 2338, - '.', 2801, - '0', 2648, - 'I', 1544, - 'N', 1537, - '_', 1285, - '`', 454, - 'a', 1400, - 'b', 1455, - 'c', 1301, - 'd', 1329, - 'e', 1412, - 'f', 1294, - 'h', 1383, - 'i', 1278, - 'l', 1344, - 'm', 1297, - 'n', 1516, - 'o', 1530, - 'r', 1330, - 's', 1429, - 't', 1447, - 'u', 1484, - 'w', 1375, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2514, + ',', 2296, + '-', 2339, + '.', 2802, + '0', 2649, + '?', 2459, + 'I', 1545, + 'N', 1538, + '_', 1286, + '`', 455, + 'a', 1401, + 'b', 1456, + 'c', 1302, + 'd', 1330, + 'e', 1413, + 'f', 1295, + 'h', 1384, + 'i', 1279, + 'l', 1345, + 'm', 1298, + 'n', 1517, + 'o', 1531, + 'r', 1331, + 's', 1430, + 't', 1448, + 'u', 1485, + 'w', 1376, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(138); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && + (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 139: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2513, - ',', 2295, - '-', 2338, - '.', 2543, - '0', 2648, - 'E', 1292, - 'I', 1544, - 'N', 1537, - '_', 1285, - '`', 454, - 'a', 1400, - 'b', 1455, - 'c', 1301, - 'd', 1329, - 'e', 1291, - 'f', 1294, - 'h', 1383, - 'i', 1278, - 'l', 1344, - 'm', 1297, - 'n', 1516, - 'o', 1530, - 'r', 1330, - 's', 1429, - 't', 1447, - 'u', 1484, - 'w', 1375, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2514, + ',', 2296, + '-', 2339, + '.', 2802, + '0', 2649, + 'I', 1545, + 'N', 1538, + '_', 1286, + '`', 455, + 'a', 1401, + 'b', 1456, + 'c', 1302, + 'd', 1330, + 'e', 1413, + 'f', 1295, + 'h', 1384, + 'i', 1279, + 'l', 1345, + 'm', 1298, + 'n', 1517, + 'o', 1531, + 'r', 1331, + 's', 1430, + 't', 1448, + 'u', 1485, + 'w', 1376, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(145); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == ' ') SKIP(139); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 140: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2513, - ',', 2295, - '-', 2338, - '.', 1023, - '0', 2648, - 'E', 1292, - 'I', 1544, - 'N', 1537, - '_', 1285, - '`', 454, - 'a', 1400, - 'b', 1455, - 'c', 1301, - 'd', 1329, - 'e', 1291, - 'f', 1294, - 'h', 1383, - 'i', 1278, - 'l', 1344, - 'm', 1297, - 'n', 1516, - 'o', 1530, - 'r', 1330, - 's', 1429, - 't', 1447, - 'u', 1484, - 'w', 1375, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2514, + ',', 2296, + '-', 2339, + '.', 2544, + '0', 2649, + 'E', 1293, + 'I', 1545, + 'N', 1538, + '_', 1286, + '`', 455, + 'a', 1401, + 'b', 1456, + 'c', 1302, + 'd', 1330, + 'e', 1292, + 'f', 1295, + 'h', 1384, + 'i', 1279, + 'l', 1345, + 'm', 1298, + 'n', 1517, + 'o', 1531, + 'r', 1331, + 's', 1430, + 't', 1448, + 'u', 1485, + 'w', 1376, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(145); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == ' ') SKIP(146); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 141: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2513, - ',', 2295, - '-', 2338, - '.', 1023, - '0', 2648, - 'I', 1544, - 'N', 1537, - '_', 1285, - '`', 454, - 'a', 1400, - 'b', 1455, - 'c', 1301, - 'd', 1329, - 'e', 1412, - 'f', 1294, - 'h', 1383, - 'i', 1278, - 'l', 1344, - 'm', 1297, - 'n', 1516, - 'o', 1530, - 'r', 1330, - 's', 1429, - 't', 1447, - 'u', 1484, - 'w', 1375, - '}', 2403, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(145); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2514, + ',', 2296, + '-', 2339, + '.', 1024, + '0', 2649, + 'E', 1293, + 'I', 1545, + 'N', 1538, + '_', 1286, + '`', 455, + 'a', 1401, + 'b', 1456, + 'c', 1302, + 'd', 1330, + 'e', 1292, + 'f', 1295, + 'h', 1384, + 'i', 1279, + 'l', 1345, + 'm', 1298, + 'n', 1517, + 'o', 1531, + 'r', 1331, + 's', 1430, + 't', 1448, + 'u', 1485, + 'w', 1376, + '}', 2404, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(146); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 142: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2513, - ',', 2295, - '-', 2338, - '.', 1023, - '0', 2576, - 'E', 1292, - 'I', 1544, - 'N', 1537, - '_', 1290, - '`', 454, - 'a', 1400, - 'b', 1455, - 'c', 1301, - 'd', 1329, - 'e', 1291, - 'f', 1294, - 'h', 1383, - 'i', 1278, - 'l', 1344, - 'm', 1297, - 'n', 1516, - 'o', 1530, - 'r', 1330, - 's', 1429, - 't', 1447, - 'u', 1484, - 'w', 1375, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2514, + ',', 2296, + '-', 2339, + '.', 1024, + '0', 2649, + 'I', 1545, + 'N', 1538, + '_', 1286, + '`', 455, + 'a', 1401, + 'b', 1456, + 'c', 1302, + 'd', 1330, + 'e', 1413, + 'f', 1295, + 'h', 1384, + 'i', 1279, + 'l', 1345, + 'm', 1298, + 'n', 1517, + 'o', 1531, + 'r', 1331, + 's', 1430, + 't', 1448, + 'u', 1485, + 'w', 1376, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(145); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2578); + lookahead == ' ') SKIP(146); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 143: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2513, - ',', 2295, - '-', 2338, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2514, + ',', 2296, + '-', 2339, '.', 1024, - '0', 2648, - ':', 2792, - 'I', 1544, - 'N', 1537, - '_', 1285, - '`', 454, - 'a', 1400, - 'b', 1455, - 'c', 1301, - 'd', 1329, - 'e', 1412, - 'f', 1294, - 'h', 1383, - 'i', 1278, - 'l', 1344, - 'm', 1297, - 'n', 1516, - 'o', 1530, - 'r', 1330, - 's', 1429, - 't', 1447, - 'u', 1484, - 'w', 1375, - '}', 2403, + '0', 2577, + 'E', 1293, + 'I', 1545, + 'N', 1538, + '_', 1291, + '`', 455, + 'a', 1401, + 'b', 1456, + 'c', 1302, + 'd', 1330, + 'e', 1292, + 'f', 1295, + 'h', 1384, + 'i', 1279, + 'l', 1345, + 'm', 1298, + 'n', 1517, + 'o', 1531, + 'r', 1331, + 's', 1430, + 't', 1448, + 'u', 1485, + 'w', 1376, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(143); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == ' ') SKIP(146); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2579); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 144: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2513, - ',', 2295, - '-', 2338, - '.', 1024, - '0', 2648, - 'E', 1292, - 'I', 1544, - 'N', 1537, - '_', 1285, - '`', 454, - 'a', 1400, - 'b', 1455, - 'c', 1301, - 'd', 1329, - 'e', 1291, - 'f', 1294, - 'h', 1383, - 'i', 1278, - 'l', 1344, - 'm', 1297, - 'n', 1516, - 'o', 1530, - 'r', 1330, - 's', 1429, - 't', 1447, - 'u', 1484, - 'w', 1375, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2514, + ',', 2296, + '-', 2339, + '.', 1025, + '0', 2649, + ':', 2793, + 'I', 1545, + 'N', 1538, + '_', 1286, + '`', 455, + 'a', 1401, + 'b', 1456, + 'c', 1302, + 'd', 1330, + 'e', 1413, + 'f', 1295, + 'h', 1384, + 'i', 1279, + 'l', 1345, + 'm', 1298, + 'n', 1517, + 'o', 1531, + 'r', 1331, + 's', 1430, + 't', 1448, + 'u', 1485, + 'w', 1376, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(145); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == ' ') SKIP(144); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 145: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2513, - ',', 2295, - '-', 2338, - '.', 1024, - '0', 2648, - 'I', 1544, - 'N', 1537, - '_', 1285, - '`', 454, - 'a', 1400, - 'b', 1455, - 'c', 1301, - 'd', 1329, - 'e', 1412, - 'f', 1294, - 'h', 1383, - 'i', 1278, - 'l', 1344, - 'm', 1297, - 'n', 1516, - 'o', 1530, - 'r', 1330, - 's', 1429, - 't', 1447, - 'u', 1484, - 'w', 1375, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2514, + ',', 2296, + '-', 2339, + '.', 1025, + '0', 2649, + 'E', 1293, + 'I', 1545, + 'N', 1538, + '_', 1286, + '`', 455, + 'a', 1401, + 'b', 1456, + 'c', 1302, + 'd', 1330, + 'e', 1292, + 'f', 1295, + 'h', 1384, + 'i', 1279, + 'l', 1345, + 'm', 1298, + 'n', 1517, + 'o', 1531, + 'r', 1331, + 's', 1430, + 't', 1448, + 'u', 1485, + 'w', 1376, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(145); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == ' ') SKIP(146); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 146: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2513, - ',', 2295, - '-', 2338, - '.', 1024, - '0', 2576, - 'E', 1292, - 'I', 1544, - 'N', 1537, - '_', 1290, - '`', 454, - 'a', 1400, - 'b', 1455, - 'c', 1301, - 'd', 1329, - 'e', 1291, - 'f', 1294, - 'h', 1383, - 'i', 1278, - 'l', 1344, - 'm', 1297, - 'n', 1516, - 'o', 1530, - 'r', 1330, - 's', 1429, - 't', 1447, - 'u', 1484, - 'w', 1375, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2514, + ',', 2296, + '-', 2339, + '.', 1025, + '0', 2649, + 'I', 1545, + 'N', 1538, + '_', 1286, + '`', 455, + 'a', 1401, + 'b', 1456, + 'c', 1302, + 'd', 1330, + 'e', 1413, + 'f', 1295, + 'h', 1384, + 'i', 1279, + 'l', 1345, + 'm', 1298, + 'n', 1517, + 'o', 1531, + 'r', 1331, + 's', 1430, + 't', 1448, + 'u', 1485, + 'w', 1376, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(145); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2578); + lookahead == ' ') SKIP(146); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 147: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2513, - ',', 2295, - '-', 2338, - '.', 2544, - '0', 2648, - 'E', 1292, - 'I', 1544, - 'N', 1537, - '_', 1285, - '`', 454, - 'a', 1400, - 'b', 1455, - 'c', 1301, - 'd', 1329, - 'e', 1291, - 'f', 1294, - 'h', 1383, - 'i', 1278, - 'l', 1344, - 'm', 1297, - 'n', 1516, - 'o', 1530, - 'r', 1330, - 's', 1429, - 't', 1447, - 'u', 1484, - 'w', 1375, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2514, + ',', 2296, + '-', 2339, + '.', 1025, + '0', 2577, + 'E', 1293, + 'I', 1545, + 'N', 1538, + '_', 1291, + '`', 455, + 'a', 1401, + 'b', 1456, + 'c', 1302, + 'd', 1330, + 'e', 1292, + 'f', 1295, + 'h', 1384, + 'i', 1279, + 'l', 1345, + 'm', 1298, + 'n', 1517, + 'o', 1531, + 'r', 1331, + 's', 1430, + 't', 1448, + 'u', 1485, + 'w', 1376, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(145); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == ' ') SKIP(146); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2579); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 148: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2513, - ',', 2783, - '-', 2338, - '.', 2800, - '0', 2648, - ':', 2289, - '>', 2313, - 'I', 1544, - 'N', 1537, - ']', 2292, - '_', 1285, - '`', 454, - 'a', 1400, - 'b', 1455, - 'c', 1301, - 'd', 1329, - 'e', 1412, - 'f', 1294, - 'h', 1383, - 'i', 1278, - 'l', 1344, - 'm', 1297, - 'n', 1516, - 'o', 1530, - 'r', 1330, - 's', 1429, - 't', 1447, - 'u', 1484, - 'w', 1375, - '}', 2403, - '\t', 2784, - ' ', 2784, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2514, + ',', 2296, + '-', 2339, + '.', 2545, + '0', 2649, + 'E', 1293, + 'I', 1545, + 'N', 1538, + '_', 1286, + '`', 455, + 'a', 1401, + 'b', 1456, + 'c', 1302, + 'd', 1330, + 'e', 1292, + 'f', 1295, + 'h', 1384, + 'i', 1279, + 'l', 1345, + 'm', 1298, + 'n', 1517, + 'o', 1531, + 'r', 1331, + 's', 1430, + 't', 1448, + 'u', 1485, + 'w', 1376, + '}', 2404, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (lookahead == '\t' || + lookahead == ' ') SKIP(146); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 149: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2513, - ',', 2783, - '-', 2338, - '.', 2800, - '0', 2648, - '?', 2458, - 'I', 1544, - 'N', 1537, - '_', 1285, - '`', 454, - 'a', 1400, - 'b', 1455, - 'c', 1301, - 'd', 1329, - 'e', 1412, - 'f', 1294, - 'h', 1383, - 'i', 1278, - 'l', 1344, - 'm', 1297, - 'n', 1516, - 'o', 1530, - 'r', 1330, - 's', 1429, - 't', 1447, - 'u', 1484, - 'w', 1375, - '}', 2403, - '\t', 2784, - ' ', 2784, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2514, + ',', 2784, + '-', 2339, + '.', 2801, + '0', 2649, + ':', 2290, + '>', 2314, + 'I', 1545, + 'N', 1538, + ']', 2293, + '_', 1286, + '`', 455, + 'a', 1401, + 'b', 1456, + 'c', 1302, + 'd', 1330, + 'e', 1413, + 'f', 1295, + 'h', 1384, + 'i', 1279, + 'l', 1345, + 'm', 1298, + 'n', 1517, + 'o', 1531, + 'r', 1331, + 's', 1430, + 't', 1448, + 'u', 1485, + 'w', 1376, + '}', 2404, + '\t', 2785, + ' ', 2785, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '?' < lookahead) && + (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 150: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2513, - ',', 2783, - '-', 2338, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2514, + ',', 2784, + '-', 2339, '.', 2801, - '0', 2648, - '?', 2458, - 'I', 1544, - 'N', 1537, - '_', 1285, - '`', 454, - 'a', 1400, - 'b', 1455, - 'c', 1301, - 'd', 1329, - 'e', 1412, - 'f', 1294, - 'h', 1383, - 'i', 1278, - 'l', 1344, - 'm', 1297, - 'n', 1516, - 'o', 1530, - 'r', 1330, - 's', 1429, - 't', 1447, - 'u', 1484, - 'w', 1375, - '}', 2403, - '\t', 2784, - ' ', 2784, + '0', 2649, + '?', 2459, + 'I', 1545, + 'N', 1538, + '_', 1286, + '`', 455, + 'a', 1401, + 'b', 1456, + 'c', 1302, + 'd', 1330, + 'e', 1413, + 'f', 1295, + 'h', 1384, + 'i', 1279, + 'l', 1345, + 'm', 1298, + 'n', 1517, + 'o', 1531, + 'r', 1331, + 's', 1430, + 't', 1448, + 'u', 1485, + 'w', 1376, + '}', 2404, + '\t', 2785, + ' ', 2785, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 151: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2513, - ',', 2783, - '-', 2338, - '.', 2801, - '0', 2648, - 'I', 1544, - 'N', 1537, - '_', 1285, - '`', 454, - 'a', 1400, - 'b', 1455, - 'c', 1301, - 'd', 1329, - 'e', 1412, - 'f', 1294, - 'h', 1383, - 'i', 1278, - 'l', 1344, - 'm', 1297, - 'n', 1516, - 'o', 1530, - 'r', 1330, - 's', 1429, - 't', 1447, - 'u', 1484, - 'w', 1375, - '}', 2403, - '\t', 2784, - ' ', 2784, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2514, + ',', 2784, + '-', 2339, + '.', 2802, + '0', 2649, + '?', 2459, + 'I', 1545, + 'N', 1538, + '_', 1286, + '`', 455, + 'a', 1401, + 'b', 1456, + 'c', 1302, + 'd', 1330, + 'e', 1413, + 'f', 1295, + 'h', 1384, + 'i', 1279, + 'l', 1345, + 'm', 1298, + 'n', 1517, + 'o', 1531, + 'r', 1331, + 's', 1430, + 't', 1448, + 'u', 1485, + 'w', 1376, + '}', 2404, + '\t', 2785, + ' ', 2785, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && + (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 152: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2513, - ',', 2783, - '-', 2338, - '.', 2543, - '0', 2648, - 'E', 1292, - 'I', 1544, - 'N', 1537, - '_', 1285, - '`', 454, - 'a', 1400, - 'b', 1455, - 'c', 1301, - 'd', 1329, - 'e', 1291, - 'f', 1294, - 'h', 1383, - 'i', 1278, - 'l', 1344, - 'm', 1297, - 'n', 1516, - 'o', 1530, - 'r', 1330, - 's', 1429, - 't', 1447, - 'u', 1484, - 'w', 1375, - '}', 2403, - '\t', 2784, - ' ', 2784, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2514, + ',', 2784, + '-', 2339, + '.', 2802, + '0', 2649, + 'I', 1545, + 'N', 1538, + '_', 1286, + '`', 455, + 'a', 1401, + 'b', 1456, + 'c', 1302, + 'd', 1330, + 'e', 1413, + 'f', 1295, + 'h', 1384, + 'i', 1279, + 'l', 1345, + 'm', 1298, + 'n', 1517, + 'o', 1531, + 'r', 1331, + 's', 1430, + 't', 1448, + 'u', 1485, + 'w', 1376, + '}', 2404, + '\t', 2785, + ' ', 2785, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 153: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2513, - ',', 2783, - '-', 2338, - '.', 1023, - '0', 2648, - 'E', 1292, - 'I', 1544, - 'N', 1537, - '_', 1285, - '`', 454, - 'a', 1400, - 'b', 1455, - 'c', 1301, - 'd', 1329, - 'e', 1291, - 'f', 1294, - 'h', 1383, - 'i', 1278, - 'l', 1344, - 'm', 1297, - 'n', 1516, - 'o', 1530, - 'r', 1330, - 's', 1429, - 't', 1447, - 'u', 1484, - 'w', 1375, - '}', 2403, - '\t', 2784, - ' ', 2784, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2514, + ',', 2784, + '-', 2339, + '.', 2544, + '0', 2649, + 'E', 1293, + 'I', 1545, + 'N', 1538, + '_', 1286, + '`', 455, + 'a', 1401, + 'b', 1456, + 'c', 1302, + 'd', 1330, + 'e', 1292, + 'f', 1295, + 'h', 1384, + 'i', 1279, + 'l', 1345, + 'm', 1298, + 'n', 1517, + 'o', 1531, + 'r', 1331, + 's', 1430, + 't', 1448, + 'u', 1485, + 'w', 1376, + '}', 2404, + '\t', 2785, + ' ', 2785, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 154: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2513, - ',', 2783, - '-', 2338, - '.', 1023, - '0', 2648, - 'I', 1544, - 'N', 1537, - '_', 1285, - '`', 454, - 'a', 1400, - 'b', 1455, - 'c', 1301, - 'd', 1329, - 'e', 1412, - 'f', 1294, - 'h', 1383, - 'i', 1278, - 'l', 1344, - 'm', 1297, - 'n', 1516, - 'o', 1530, - 'r', 1330, - 's', 1429, - 't', 1447, - 'u', 1484, - 'w', 1375, - '}', 2403, - '\t', 2784, - ' ', 2784, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2514, + ',', 2784, + '-', 2339, + '.', 1024, + '0', 2649, + 'E', 1293, + 'I', 1545, + 'N', 1538, + '_', 1286, + '`', 455, + 'a', 1401, + 'b', 1456, + 'c', 1302, + 'd', 1330, + 'e', 1292, + 'f', 1295, + 'h', 1384, + 'i', 1279, + 'l', 1345, + 'm', 1298, + 'n', 1517, + 'o', 1531, + 'r', 1331, + 's', 1430, + 't', 1448, + 'u', 1485, + 'w', 1376, + '}', 2404, + '\t', 2785, + ' ', 2785, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 155: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2513, - ',', 2783, - '-', 2338, - '.', 1023, - '0', 2576, - 'E', 1292, - 'I', 1544, - 'N', 1537, - '_', 1290, - '`', 454, - 'a', 1400, - 'b', 1455, - 'c', 1301, - 'd', 1329, - 'e', 1291, - 'f', 1294, - 'h', 1383, - 'i', 1278, - 'l', 1344, - 'm', 1297, - 'n', 1516, - 'o', 1530, - 'r', 1330, - 's', 1429, - 't', 1447, - 'u', 1484, - 'w', 1375, - '}', 2403, - '\t', 2784, - ' ', 2784, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2514, + ',', 2784, + '-', 2339, + '.', 1024, + '0', 2649, + 'I', 1545, + 'N', 1538, + '_', 1286, + '`', 455, + 'a', 1401, + 'b', 1456, + 'c', 1302, + 'd', 1330, + 'e', 1413, + 'f', 1295, + 'h', 1384, + 'i', 1279, + 'l', 1345, + 'm', 1298, + 'n', 1517, + 'o', 1531, + 'r', 1331, + 's', 1430, + 't', 1448, + 'u', 1485, + 'w', 1376, + '}', 2404, + '\t', 2785, + ' ', 2785, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2578); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 156: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2513, - ',', 2783, - '-', 2338, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2514, + ',', 2784, + '-', 2339, '.', 1024, - '0', 2648, - 'E', 1292, - 'I', 1544, - 'N', 1537, - '_', 1285, - '`', 454, - 'a', 1400, - 'b', 1455, - 'c', 1301, - 'd', 1329, - 'e', 1291, - 'f', 1294, - 'h', 1383, - 'i', 1278, - 'l', 1344, - 'm', 1297, - 'n', 1516, - 'o', 1530, - 'r', 1330, - 's', 1429, - 't', 1447, - 'u', 1484, - 'w', 1375, - '}', 2403, - '\t', 2784, - ' ', 2784, + '0', 2577, + 'E', 1293, + 'I', 1545, + 'N', 1538, + '_', 1291, + '`', 455, + 'a', 1401, + 'b', 1456, + 'c', 1302, + 'd', 1330, + 'e', 1292, + 'f', 1295, + 'h', 1384, + 'i', 1279, + 'l', 1345, + 'm', 1298, + 'n', 1517, + 'o', 1531, + 'r', 1331, + 's', 1430, + 't', 1448, + 'u', 1485, + 'w', 1376, + '}', 2404, + '\t', 2785, + ' ', 2785, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2579); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 157: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2513, - ',', 2783, - '-', 2338, - '.', 1024, - '0', 2648, - 'I', 1544, - 'N', 1537, - '_', 1285, - '`', 454, - 'a', 1400, - 'b', 1455, - 'c', 1301, - 'd', 1329, - 'e', 1412, - 'f', 1294, - 'h', 1383, - 'i', 1278, - 'l', 1344, - 'm', 1297, - 'n', 1516, - 'o', 1530, - 'r', 1330, - 's', 1429, - 't', 1447, - 'u', 1484, - 'w', 1375, - '}', 2403, - '\t', 2784, - ' ', 2784, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2514, + ',', 2784, + '-', 2339, + '.', 1025, + '0', 2649, + 'E', 1293, + 'I', 1545, + 'N', 1538, + '_', 1286, + '`', 455, + 'a', 1401, + 'b', 1456, + 'c', 1302, + 'd', 1330, + 'e', 1292, + 'f', 1295, + 'h', 1384, + 'i', 1279, + 'l', 1345, + 'm', 1298, + 'n', 1517, + 'o', 1531, + 'r', 1331, + 's', 1430, + 't', 1448, + 'u', 1485, + 'w', 1376, + '}', 2404, + '\t', 2785, + ' ', 2785, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 158: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2513, - ',', 2783, - '-', 2338, - '.', 1024, - '0', 2576, - 'E', 1292, - 'I', 1544, - 'N', 1537, - '_', 1290, - '`', 454, - 'a', 1400, - 'b', 1455, - 'c', 1301, - 'd', 1329, - 'e', 1291, - 'f', 1294, - 'h', 1383, - 'i', 1278, - 'l', 1344, - 'm', 1297, - 'n', 1516, - 'o', 1530, - 'r', 1330, - 's', 1429, - 't', 1447, - 'u', 1484, - 'w', 1375, - '}', 2403, - '\t', 2784, - ' ', 2784, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2514, + ',', 2784, + '-', 2339, + '.', 1025, + '0', 2649, + 'I', 1545, + 'N', 1538, + '_', 1286, + '`', 455, + 'a', 1401, + 'b', 1456, + 'c', 1302, + 'd', 1330, + 'e', 1413, + 'f', 1295, + 'h', 1384, + 'i', 1279, + 'l', 1345, + 'm', 1298, + 'n', 1517, + 'o', 1531, + 'r', 1331, + 's', 1430, + 't', 1448, + 'u', 1485, + 'w', 1376, + '}', 2404, + '\t', 2785, + ' ', 2785, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2578); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 159: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2513, - ',', 2783, - '-', 2338, - '.', 2544, - '0', 2648, - 'E', 1292, - 'I', 1544, - 'N', 1537, - '_', 1285, - '`', 454, - 'a', 1400, - 'b', 1455, - 'c', 1301, - 'd', 1329, - 'e', 1291, - 'f', 1294, - 'h', 1383, - 'i', 1278, - 'l', 1344, - 'm', 1297, - 'n', 1516, - 'o', 1530, - 'r', 1330, - 's', 1429, - 't', 1447, - 'u', 1484, - 'w', 1375, - '}', 2403, - '\t', 2784, - ' ', 2784, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2514, + ',', 2784, + '-', 2339, + '.', 1025, + '0', 2577, + 'E', 1293, + 'I', 1545, + 'N', 1538, + '_', 1291, + '`', 455, + 'a', 1401, + 'b', 1456, + 'c', 1302, + 'd', 1330, + 'e', 1292, + 'f', 1295, + 'h', 1384, + 'i', 1279, + 'l', 1345, + 'm', 1298, + 'n', 1517, + 'o', 1531, + 'r', 1331, + 's', 1430, + 't', 1448, + 'u', 1485, + 'w', 1376, + '}', 2404, + '\t', 2785, + ' ', 2785, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2579); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 160: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2955, - '-', 2326, - '.', 2951, - '=', 2878, - 'N', 3013, - '[', 2291, - '_', 2968, - '`', 454, - 'e', 2946, - 'f', 2981, - 'n', 3009, - 'o', 2947, - 't', 2996, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2514, + ',', 2784, + '-', 2339, + '.', 2545, + '0', 2649, + 'E', 1293, + 'I', 1545, + 'N', 1538, + '_', 1286, + '`', 455, + 'a', 1401, + 'b', 1456, + 'c', 1302, + 'd', 1330, + 'e', 1292, + 'f', 1295, + 'h', 1384, + 'i', 1279, + 'l', 1345, + 'm', 1298, + 'n', 1517, + 'o', 1531, + 'r', 1331, + 's', 1430, + 't', 1448, + 'u', 1485, + 'w', 1376, + '}', 2404, + '\t', 2785, + ' ', 2785, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(163); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3016); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2665); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3036); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 161: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2955, - '-', 2326, - '.', 2951, - '=', 2878, - 'N', 2181, - '[', 2291, - '_', 2059, - '`', 454, - 'e', 2042, - 'f', 2063, - 'n', 2167, - 'o', 2043, - 't', 2135, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2956, + '-', 2327, + '.', 2952, + '=', 2879, + 'N', 3014, + '[', 2292, + '_', 2969, + '`', 455, + 'e', 2947, + 'f', 2982, + 'n', 3010, + 'o', 2948, + 't', 2997, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(163); + lookahead == ' ') SKIP(164); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2193); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2062); - if (set_contains(sym_attribute_identifier_character_set_1, 668, lookahead)) ADVANCE(2214); + lookahead == 'i') ADVANCE(3017); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3036); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3037); END_STATE(); case 162: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2955, - '-', 2326, - '.', 2951, - 'N', 3013, - '[', 2735, - '_', 2968, - '`', 454, - 'e', 2946, - 'f', 2981, - 'n', 3009, - 'o', 2947, - 't', 2996, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2956, + '-', 2327, + '.', 2952, + '=', 2879, + 'N', 2182, + '[', 2292, + '_', 2060, + '`', 455, + 'e', 2043, + 'f', 2064, + 'n', 2168, + 'o', 2044, + 't', 2136, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(163); + lookahead == ' ') SKIP(164); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3016); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2665); + lookahead == 'i') ADVANCE(2194); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2063); + if (set_contains(sym_attribute_identifier_character_set_1, 668, lookahead)) ADVANCE(2215); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3036); + (lookahead < '_' || '}' < lookahead)) ADVANCE(3037); END_STATE(); case 163: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2955, - '-', 2326, - '.', 2951, - 'N', 3013, - '[', 2291, - '_', 2968, - '`', 454, - 'e', 2946, - 'f', 2981, - 'n', 3009, - 'o', 2947, - 't', 2996, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2956, + '-', 2327, + '.', 2952, + 'N', 3014, + '[', 2736, + '_', 2969, + '`', 455, + 'e', 2947, + 'f', 2982, + 'n', 3010, + 'o', 2948, + 't', 2997, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(163); + lookahead == ' ') SKIP(164); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3016); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2665); + lookahead == 'i') ADVANCE(3017); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3036); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3037); END_STATE(); case 164: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2955, - '-', 2326, - '.', 2798, - '?', 2458, - 'N', 3013, - '[', 2291, - '_', 2968, - '`', 454, - 'e', 2946, - 'f', 2981, - 'n', 3009, - 'o', 2947, - 't', 2996, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2956, + '-', 2327, + '.', 2952, + 'N', 3014, + '[', 2292, + '_', 2969, + '`', 455, + 'e', 2947, + 'f', 2982, + 'n', 3010, + 'o', 2948, + 't', 2997, ); if (lookahead == '\t' || lookahead == ' ') SKIP(164); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3016); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2665); + lookahead == 'i') ADVANCE(3017); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3036); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3037); END_STATE(); case 165: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2955, - '-', 2326, - '.', 2798, - 'N', 3013, - '[', 2291, - '_', 2968, - '`', 454, - 'e', 2946, - 'f', 2981, - 'n', 3009, - 'o', 2947, - 't', 2996, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2956, + '-', 2327, + '.', 2799, + '?', 2459, + 'N', 3014, + '[', 2292, + '_', 2969, + '`', 455, + 'e', 2947, + 'f', 2982, + 'n', 3010, + 'o', 2948, + 't', 2997, ); if (lookahead == '\t' || lookahead == ' ') SKIP(165); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3016); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2665); + lookahead == 'i') ADVANCE(3017); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3036); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3037); END_STATE(); case 166: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2955, - '-', 411, - '.', 2951, - '0', 2642, - ':', 2792, - 'N', 3013, - '[', 2291, - '_', 2968, - '`', 454, - 'e', 2946, - 'f', 2981, - 'n', 3009, - 'o', 2947, - 't', 2996, - '{', 2402, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2956, + '-', 2327, + '.', 2799, + 'N', 3014, + '[', 2292, + '_', 2969, + '`', 455, + 'e', 2947, + 'f', 2982, + 'n', 3010, + 'o', 2948, + 't', 2997, ); if (lookahead == '\t' || lookahead == ' ') SKIP(166); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3016); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2665); + lookahead == 'i') ADVANCE(3017); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || ';' < lookahead) && + lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3036); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3037); END_STATE(); case 167: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2955, - '-', 411, - '.', 2951, - ':', 2792, - 'N', 3013, - '_', 2968, - '`', 454, - 'e', 2946, - 'f', 2981, - 'n', 3009, - 'o', 2947, - 't', 2996, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2956, + '-', 412, + '.', 2952, + '0', 2643, + ':', 2793, + 'N', 3014, + '[', 2292, + '_', 2969, + '`', 455, + 'e', 2947, + 'f', 2982, + 'n', 3010, + 'o', 2948, + 't', 2997, + '{', 2403, ); if (lookahead == '\t' || lookahead == ' ') SKIP(167); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3016); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2665); + lookahead == 'i') ADVANCE(3017); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && - lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3036); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3037); END_STATE(); case 168: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2955, - '-', 2334, - '.', 2951, - '=', 2878, - 'N', 2917, - '[', 2291, - '_', 2897, - '`', 454, - 'e', 2884, - 'f', 2901, - 'n', 2916, - 'o', 2885, - 't', 2907, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2956, + '-', 412, + '.', 2952, + ':', 2793, + 'N', 3014, + '_', 2969, + '`', 455, + 'e', 2947, + 'f', 2982, + 'n', 3010, + 'o', 2948, + 't', 2997, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(163); + lookahead == ' ') SKIP(168); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2922); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2900); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + lookahead == 'i') ADVANCE(3017); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && + (lookahead < '0' || ';' < lookahead) && + lookahead != '[' && lookahead != ']' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(3036); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3037); END_STATE(); case 169: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 3548, - '-', 3547, - '.', 3549, - '0', 2643, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3559, - '`', 454, - 'e', 3538, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, - '\t', 2787, - ' ', 2787, - 'I', 3598, - 'i', 3598, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2956, + '-', 2333, + '.', 2952, + '=', 2879, + 'N', 2918, + '[', 2292, + '_', 2898, + '`', 455, + 'e', 2885, + 'f', 2902, + 'n', 2917, + 'o', 2886, + 't', 2908, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); + if (lookahead == '\t' || + lookahead == ' ') SKIP(164); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2923); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2901); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + lookahead != ']' && + (lookahead < '_' || '}' < lookahead)) ADVANCE(3037); END_STATE(); case 170: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2517, - ',', 2295, - '-', 2345, - '.', 868, - '0', 2649, - ':', 2792, - 'I', 997, - 'N', 994, - '[', 2735, - '_', 893, - '`', 454, - 'a', 940, - 'b', 963, - 'c', 894, - 'd', 908, - 'e', 946, - 'f', 895, - 'h', 933, - 'i', 880, - 'l', 918, - 'm', 896, - 'n', 985, - 'o', 991, - 'r', 909, - 's', 953, - 't', 959, - 'u', 974, - 'w', 931, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 3549, + '-', 3548, + '.', 3550, + '0', 2644, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3560, + '`', 455, + 'e', 3539, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, + '\t', 2788, + ' ', 2788, + 'I', 3599, + 'i', 3599, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(143); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3906); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2667); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1002); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 171: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, '+', 2517, - ',', 2783, - '-', 2345, - '.', 868, + ',', 2296, + '-', 2342, + '.', 1026, '0', 2649, - 'I', 997, - 'N', 994, - '[', 2735, - '_', 893, - '`', 454, - 'a', 940, - 'b', 963, - 'c', 894, - 'd', 908, - 'e', 946, - 'f', 895, - 'h', 933, - 'i', 880, - 'l', 918, - 'm', 896, - 'n', 985, - 'o', 991, - 'r', 909, - 's', 953, - 't', 959, - 'u', 974, - 'w', 931, - '}', 2403, - '\t', 2784, - ' ', 2784, + 'I', 1545, + 'N', 1538, + '_', 1286, + '`', 455, + 'a', 1401, + 'b', 1456, + 'c', 1302, + 'd', 1330, + 'e', 1413, + 'f', 1295, + 'h', 1384, + 'i', 1279, + 'l', 1345, + 'm', 1298, + 'n', 1517, + 'o', 1531, + 'r', 1331, + 's', 1430, + 't', 1448, + 'u', 1485, + 'w', 1376, + '}', 2404, ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3906); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (lookahead == '\t' || + lookahead == ' ') SKIP(171); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1002); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 172: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 3078, - '-', 2331, - '.', 3075, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'N', 3227, - 'P', 3104, - 'T', 3104, - '[', 2291, - '_', 3107, - '`', 454, - 'd', 3124, - 'e', 3059, - 'f', 3123, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3194, - 'o', 3062, - 'p', 3103, - 's', 3139, - 't', 3102, - 'u', 3195, - 'w', 3154, - 0xb5, 3195, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 3079, + '-', 2332, + '.', 3076, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'N', 3228, + 'P', 3105, + 'T', 3105, + '[', 2292, + '_', 3108, + '`', 455, + 'd', 3125, + 'e', 3060, + 'f', 3124, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3195, + 'o', 3063, + 'p', 3104, + 's', 3140, + 't', 3103, + 'u', 3196, + 'w', 3155, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(163); + lookahead == ' ') SKIP(164); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); + lookahead == 'b') ADVANCE(2715); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3236); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2587); + lookahead == 'i') ADVANCE(3237); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2588); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3259); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3260); END_STATE(); case 173: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 3078, - '-', 2331, - '.', 3075, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'N', 3227, - 'P', 3104, - 'T', 3104, - '[', 2291, - '_', 3122, - '`', 454, - 'd', 3124, - 'e', 3059, - 'f', 3123, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3194, - 'o', 3062, - 'p', 3103, - 's', 3139, - 't', 3102, - 'u', 3195, - 'w', 3154, - 0xb5, 3195, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 3079, + '-', 2332, + '.', 3076, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'N', 3228, + 'P', 3105, + 'T', 3105, + '[', 2292, + '_', 3123, + '`', 455, + 'd', 3125, + 'e', 3060, + 'f', 3124, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3195, + 'o', 3063, + 'p', 3104, + 's', 3140, + 't', 3103, + 'u', 3196, + 'w', 3155, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(163); + lookahead == ' ') SKIP(164); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); + lookahead == 'b') ADVANCE(2715); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3236); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2669); + lookahead == 'i') ADVANCE(3237); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2670); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3259); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3260); END_STATE(); case 174: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 3078, - '-', 2331, - '.', 3075, - 'E', 3104, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'N', 3227, - 'P', 3104, - 'T', 3104, - '[', 2291, - '_', 3122, - '`', 454, - 'd', 3124, - 'e', 3060, - 'f', 3123, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3194, - 'o', 3062, - 'p', 3103, - 's', 3139, - 't', 3102, - 'u', 3195, - 'w', 3154, - 0xb5, 3195, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 3079, + '-', 2332, + '.', 3076, + 'E', 3105, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'N', 3228, + 'P', 3105, + 'T', 3105, + '[', 2292, + '_', 3123, + '`', 455, + 'd', 3125, + 'e', 3061, + 'f', 3124, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3195, + 'o', 3063, + 'p', 3104, + 's', 3140, + 't', 3103, + 'u', 3196, + 'w', 3155, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(163); + lookahead == ' ') SKIP(164); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); + lookahead == 'b') ADVANCE(2715); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3236); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2669); + lookahead == 'i') ADVANCE(3237); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2670); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3259); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3260); END_STATE(); case 175: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 3078, - '-', 2331, - '.', 3074, - 'N', 3227, - '[', 2291, - '_', 3122, - '`', 454, - 'e', 3061, - 'f', 3123, - 'n', 3211, - 'o', 3062, - 't', 3181, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 3079, + '-', 2332, + '.', 3075, + 'N', 3228, + '[', 2292, + '_', 3123, + '`', 455, + 'e', 3062, + 'f', 3124, + 'n', 3212, + 'o', 3063, + 't', 3182, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(163); + lookahead == ' ') SKIP(164); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3236); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2669); + lookahead == 'i') ADVANCE(3237); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2670); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3259); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3260); END_STATE(); case 176: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 3078, - '-', 2331, - '.', 2551, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'N', 3227, - 'P', 3104, - 'T', 3104, - '[', 2291, - '_', 3122, - '`', 454, - 'd', 3124, - 'e', 3059, - 'f', 3123, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3194, - 'o', 3062, - 'p', 3103, - 's', 3139, - 't', 3102, - 'u', 3195, - 'w', 3154, - 0xb5, 3195, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 3079, + '-', 2332, + '.', 2552, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'N', 3228, + 'P', 3105, + 'T', 3105, + '[', 2292, + '_', 3123, + '`', 455, + 'd', 3125, + 'e', 3060, + 'f', 3124, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3195, + 'o', 3063, + 'p', 3104, + 's', 3140, + 't', 3103, + 'u', 3196, + 'w', 3155, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(163); + lookahead == ' ') SKIP(164); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); + lookahead == 'b') ADVANCE(2715); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3236); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2669); + lookahead == 'i') ADVANCE(3237); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2670); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3259); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3260); END_STATE(); case 177: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 2516, - ',', 2295, - '-', 2341, - '.', 1025, - '0', 2648, - 'I', 1544, - 'N', 1537, - '_', 1285, - '`', 454, - 'a', 1400, - 'b', 1455, - 'c', 1301, - 'd', 1329, - 'e', 1412, - 'f', 1294, - 'h', 1383, - 'i', 1278, - 'l', 1344, - 'm', 1297, - 'n', 1516, - 'o', 1530, - 'r', 1330, - 's', 1429, - 't', 1447, - 'u', 1484, - 'w', 1375, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2518, + ',', 2296, + '-', 2346, + '.', 869, + '0', 2650, + ':', 2793, + 'I', 998, + 'N', 995, + '[', 2736, + '_', 894, + '`', 455, + 'a', 941, + 'b', 964, + 'c', 895, + 'd', 909, + 'e', 947, + 'f', 896, + 'h', 934, + 'i', 881, + 'l', 919, + 'm', 897, + 'n', 986, + 'o', 992, + 'r', 910, + 's', 954, + 't', 960, + 'u', 975, + 'w', 932, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(177); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == ' ') SKIP(144); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(3907); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1003); END_STATE(); case 178: - if (lookahead == '"') ADVANCE(2765); - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '$') ADVANCE(2297); - if (lookahead == '\'') ADVANCE(2937); - if (lookahead == '(') ADVANCE(2293); - if (lookahead == '`') ADVANCE(2938); - if (lookahead == '\t' || - lookahead == ' ') SKIP(178); + ADVANCE_MAP( + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 2518, + ',', 2784, + '-', 2346, + '.', 869, + '0', 2650, + 'I', 998, + 'N', 995, + '[', 2736, + '_', 894, + '`', 455, + 'a', 941, + 'b', 964, + 'c', 895, + 'd', 909, + 'e', 947, + 'f', 896, + 'h', 934, + 'i', 881, + 'l', 919, + 'm', 897, + 'n', 986, + 'o', 992, + 'r', 910, + 's', 954, + 't', 960, + 'u', 975, + 'w', 932, + '}', 2404, + '\t', 2785, + ' ', 2785, + ); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(3907); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2939); + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1003); END_STATE(); case 179: - ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2492, - '+', 3548, - ',', 2783, - '-', 3547, - '.', 3544, - '0', 2643, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3559, - '`', 454, - 'e', 3538, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, - '\t', 2784, - ' ', 2784, - 'I', 3598, - 'i', 3598, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); + if (lookahead == '"') ADVANCE(2766); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '$') ADVANCE(2298); + if (lookahead == '\'') ADVANCE(2938); + if (lookahead == '(') ADVANCE(2294); + if (lookahead == '`') ADVANCE(2939); + if (lookahead == '\t' || + lookahead == ' ') SKIP(179); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2940); END_STATE(); case 180: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2492, - '+', 3634, - ',', 2295, - '-', 3633, - '.', 3629, - '0', 2574, - 'N', 3693, - '[', 2291, - ']', 2292, - '_', 3650, - '`', 454, - 'e', 3622, - 'f', 3663, - 'n', 3689, - 'o', 3623, - 't', 3680, - '{', 2402, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2493, + '+', 3549, + ',', 2784, + '-', 3548, + '.', 3545, + '0', 2644, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3560, + '`', 455, + 'e', 3539, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, + '\t', 2785, + ' ', 2785, + 'I', 3599, + 'i', 3599, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(242); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3700); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2589); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2667); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 181: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2492, - '+', 3634, - ',', 2295, - '-', 3633, - '.', 2538, - '0', 2574, - 'N', 3693, - '[', 2291, - ']', 2292, - '_', 3650, - '`', 454, - 'e', 3622, - 'f', 3663, - 'n', 3689, - 'o', 3623, - 't', 3680, - '{', 2402, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2493, + '+', 3635, + ',', 2296, + '-', 3634, + '.', 3630, + '0', 2575, + 'N', 3694, + '[', 2292, + ']', 2293, + '_', 3651, + '`', 455, + 'e', 3623, + 'f', 3664, + 'n', 3690, + 'o', 3624, + 't', 3681, + '{', 2403, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(242); + lookahead == ' ') SKIP(243); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3700); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2589); + lookahead == 'i') ADVANCE(3701); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2590); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); case 182: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2492, - '+', 3634, - ',', 2783, - '-', 3633, - '.', 3629, - '0', 2574, - 'N', 3693, - '[', 2291, - ']', 2292, - '_', 3650, - '`', 454, - 'e', 3622, - 'f', 3663, - 'n', 3689, - 'o', 3623, - 't', 3680, - '{', 2402, - '\t', 2784, - ' ', 2784, - 'I', 3700, - 'i', 3700, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2493, + '+', 3635, + ',', 2296, + '-', 3634, + '.', 2539, + '0', 2575, + 'N', 3694, + '[', 2292, + ']', 2293, + '_', 3651, + '`', 455, + 'e', 3623, + 'f', 3664, + 'n', 3690, + 'o', 3624, + 't', 3681, + '{', 2403, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2589); + if (lookahead == '\t' || + lookahead == ' ') SKIP(243); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3701); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2590); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); case 183: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2492, - '+', 3634, - ',', 2783, - '-', 3633, - '.', 2538, - '0', 2574, - 'N', 3693, - '[', 2291, - ']', 2292, - '_', 3650, - '`', 454, - 'e', 3622, - 'f', 3663, - 'n', 3689, - 'o', 3623, - 't', 3680, - '{', 2402, - '\t', 2784, - ' ', 2784, - 'I', 3700, - 'i', 3700, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2493, + '+', 3635, + ',', 2784, + '-', 3634, + '.', 3630, + '0', 2575, + 'N', 3694, + '[', 2292, + ']', 2293, + '_', 3651, + '`', 455, + 'e', 3623, + 'f', 3664, + 'n', 3690, + 'o', 3624, + 't', 3681, + '{', 2403, + '\t', 2785, + ' ', 2785, + 'I', 3701, + 'i', 3701, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2589); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2590); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); case 184: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2492, - '+', 3636, - ',', 2783, - '-', 3635, - '.', 3631, - '0', 2574, - 'E', 3645, - 'G', 3648, - 'K', 3648, - 'M', 3648, - 'N', 3693, - 'P', 3648, - 'T', 3648, - '[', 2291, - ']', 2292, - '_', 3650, - '`', 454, - 'd', 3664, - 'e', 3624, - 'f', 3663, - 'g', 3647, - 'h', 3679, - 'k', 3647, - 'm', 3649, - 'n', 3684, - 'o', 3623, - 'p', 3647, - 's', 3669, - 't', 3646, - 'u', 3685, - 'w', 3672, - '{', 2402, - 0xb5, 3685, - '\t', 2784, - ' ', 2784, - 'B', 2714, - 'b', 2714, - 'I', 3700, - 'i', 3700, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2493, + '+', 3635, + ',', 2784, + '-', 3634, + '.', 2539, + '0', 2575, + 'N', 3694, + '[', 2292, + ']', 2293, + '_', 3651, + '`', 455, + 'e', 3623, + 'f', 3664, + 'n', 3690, + 'o', 3624, + 't', 3681, + '{', 2403, + '\t', 2785, + ' ', 2785, + 'I', 3701, + 'i', 3701, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2589); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2590); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); case 185: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2492, - '+', 3636, - ',', 2783, - '-', 3635, - '.', 3631, - '0', 2574, - 'E', 3658, - 'N', 3693, - '[', 2291, - ']', 2292, - '_', 3650, - '`', 454, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2493, + '+', 3637, + ',', 2784, + '-', 3636, + '.', 3632, + '0', 2575, + 'E', 3646, + 'G', 3649, + 'K', 3649, + 'M', 3649, + 'N', 3694, + 'P', 3649, + 'T', 3649, + '[', 2292, + ']', 2293, + '_', 3651, + '`', 455, + 'd', 3665, 'e', 3625, - 'f', 3663, - 'n', 3689, - 'o', 3623, - 't', 3680, - '{', 2402, - '\t', 2784, - ' ', 2784, - 'I', 3700, - 'i', 3700, + 'f', 3664, + 'g', 3648, + 'h', 3680, + 'k', 3648, + 'm', 3650, + 'n', 3685, + 'o', 3624, + 'p', 3648, + 's', 3670, + 't', 3647, + 'u', 3686, + 'w', 3673, + '{', 2403, + 0xb5, 3686, + '\t', 2785, + ' ', 2785, + 'B', 2715, + 'b', 2715, + 'I', 3701, + 'i', 3701, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2589); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2590); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); case 186: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2492, - '+', 3636, - ',', 2783, - '-', 3635, - '.', 3631, - '0', 2647, - 'E', 3645, - 'G', 3648, - 'K', 3648, - 'M', 3648, - 'N', 3693, - 'P', 3648, - 'T', 3648, - '[', 2291, - ']', 2292, - '_', 3662, - '`', 454, - 'd', 3664, - 'e', 3624, - 'f', 3663, - 'g', 3647, - 'h', 3679, - 'k', 3647, - 'm', 3649, - 'n', 3684, - 'o', 3623, - 'p', 3647, - 's', 3669, - 't', 3646, - 'u', 3685, - 'w', 3672, - '{', 2402, - 0xb5, 3685, - '\t', 2784, - ' ', 2784, - 'B', 2714, - 'b', 2714, - 'I', 3700, - 'i', 3700, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2493, + '+', 3637, + ',', 2784, + '-', 3636, + '.', 3632, + '0', 2575, + 'E', 3659, + 'N', 3694, + '[', 2292, + ']', 2293, + '_', 3651, + '`', 455, + 'e', 3626, + 'f', 3664, + 'n', 3690, + 'o', 3624, + 't', 3681, + '{', 2403, + '\t', 2785, + ' ', 2785, + 'I', 3701, + 'i', 3701, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2590); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); case 187: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2492, - '+', 3636, - ',', 2783, - '-', 3635, - '.', 3631, - '0', 2647, - 'E', 3648, - 'G', 3648, - 'K', 3648, - 'M', 3648, - 'N', 3693, - 'P', 3648, - 'T', 3648, - '[', 2291, - ']', 2292, - '_', 3662, - '`', 454, - 'd', 3664, - 'e', 3621, - 'f', 3663, - 'g', 3647, - 'h', 3679, - 'k', 3647, - 'm', 3649, - 'n', 3684, - 'o', 3623, - 'p', 3647, - 's', 3669, - 't', 3646, - 'u', 3685, - 'w', 3672, - '{', 2402, - 0xb5, 3685, - '\t', 2784, - ' ', 2784, - 'B', 2714, - 'b', 2714, - 'I', 3700, - 'i', 3700, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2493, + '+', 3637, + ',', 2784, + '-', 3636, + '.', 3632, + '0', 2648, + 'E', 3646, + 'G', 3649, + 'K', 3649, + 'M', 3649, + 'N', 3694, + 'P', 3649, + 'T', 3649, + '[', 2292, + ']', 2293, + '_', 3663, + '`', 455, + 'd', 3665, + 'e', 3625, + 'f', 3664, + 'g', 3648, + 'h', 3680, + 'k', 3648, + 'm', 3650, + 'n', 3685, + 'o', 3624, + 'p', 3648, + 's', 3670, + 't', 3647, + 'u', 3686, + 'w', 3673, + '{', 2403, + 0xb5, 3686, + '\t', 2785, + ' ', 2785, + 'B', 2715, + 'b', 2715, + 'I', 3701, + 'i', 3701, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); case 188: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2492, - '+', 3636, - ',', 2783, - '-', 3635, - '.', 3631, - '0', 2647, - 'E', 3658, - 'N', 3693, - '[', 2291, - ']', 2292, - '_', 3662, - '`', 454, - 'e', 3625, - 'f', 3663, - 'n', 3689, - 'o', 3623, - 't', 3680, - '{', 2402, - '\t', 2784, - ' ', 2784, - 'I', 3700, - 'i', 3700, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2493, + '+', 3637, + ',', 2784, + '-', 3636, + '.', 3632, + '0', 2648, + 'E', 3649, + 'G', 3649, + 'K', 3649, + 'M', 3649, + 'N', 3694, + 'P', 3649, + 'T', 3649, + '[', 2292, + ']', 2293, + '_', 3663, + '`', 455, + 'd', 3665, + 'e', 3622, + 'f', 3664, + 'g', 3648, + 'h', 3680, + 'k', 3648, + 'm', 3650, + 'n', 3685, + 'o', 3624, + 'p', 3648, + 's', 3670, + 't', 3647, + 'u', 3686, + 'w', 3673, + '{', 2403, + 0xb5, 3686, + '\t', 2785, + ' ', 2785, + 'B', 2715, + 'b', 2715, + 'I', 3701, + 'i', 3701, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); case 189: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2492, - '+', 3636, - ',', 2783, - '-', 3635, - '.', 3631, - '0', 2647, - 'N', 3693, - '[', 2291, - ']', 2292, - '_', 3662, - '`', 454, - 'e', 3622, - 'f', 3663, - 'n', 3689, - 'o', 3623, - 't', 3680, - '{', 2402, - '\t', 2784, - ' ', 2784, - 'I', 3700, - 'i', 3700, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2493, + '+', 3637, + ',', 2784, + '-', 3636, + '.', 3632, + '0', 2648, + 'E', 3659, + 'N', 3694, + '[', 2292, + ']', 2293, + '_', 3663, + '`', 455, + 'e', 3626, + 'f', 3664, + 'n', 3690, + 'o', 3624, + 't', 3681, + '{', 2403, + '\t', 2785, + ' ', 2785, + 'I', 3701, + 'i', 3701, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); case 190: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2492, - '+', 3636, - ',', 2783, - '-', 3635, - '.', 3630, - '0', 2574, - 'E', 3658, - 'N', 3693, - '[', 2291, - ']', 2292, - '_', 3650, - '`', 454, - 'e', 3625, - 'f', 3663, - 'n', 3689, - 'o', 3623, - 't', 3680, - '{', 2402, - '\t', 2784, - ' ', 2784, - 'I', 3700, - 'i', 3700, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2493, + '+', 3637, + ',', 2784, + '-', 3636, + '.', 3632, + '0', 2648, + 'N', 3694, + '[', 2292, + ']', 2293, + '_', 3663, + '`', 455, + 'e', 3623, + 'f', 3664, + 'n', 3690, + 'o', 3624, + 't', 3681, + '{', 2403, + '\t', 2785, + ' ', 2785, + 'I', 3701, + 'i', 3701, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2589); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); case 191: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2492, - '+', 3636, - ',', 2783, - '-', 3635, - '.', 3630, - '0', 2647, - 'E', 3658, - 'N', 3693, - '[', 2291, - ']', 2292, - '_', 3662, - '`', 454, - 'e', 3625, - 'f', 3663, - 'n', 3689, - 'o', 3623, - 't', 3680, - '{', 2402, - '\t', 2784, - ' ', 2784, - 'I', 3700, - 'i', 3700, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2493, + '+', 3637, + ',', 2784, + '-', 3636, + '.', 3631, + '0', 2575, + 'E', 3659, + 'N', 3694, + '[', 2292, + ']', 2293, + '_', 3651, + '`', 455, + 'e', 3626, + 'f', 3664, + 'n', 3690, + 'o', 3624, + 't', 3681, + '{', 2403, + '\t', 2785, + ' ', 2785, + 'I', 3701, + 'i', 3701, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2590); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); case 192: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2492, - '+', 3636, - ',', 2783, - '-', 3635, - '.', 3630, - '0', 2647, - 'N', 3693, - '[', 2291, - ']', 2292, - '_', 3662, - '`', 454, - 'e', 3622, - 'f', 3663, - 'n', 3689, - 'o', 3623, - 't', 3680, - '{', 2402, - '\t', 2784, - ' ', 2784, - 'I', 3700, - 'i', 3700, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2493, + '+', 3637, + ',', 2784, + '-', 3636, + '.', 3631, + '0', 2648, + 'E', 3659, + 'N', 3694, + '[', 2292, + ']', 2293, + '_', 3663, + '`', 455, + 'e', 3626, + 'f', 3664, + 'n', 3690, + 'o', 3624, + 't', 3681, + '{', 2403, + '\t', 2785, + ' ', 2785, + 'I', 3701, + 'i', 3701, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); case 193: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2492, - '+', 3636, - ',', 2783, - '-', 3635, - '.', 2552, - '0', 2647, - 'E', 3645, - 'G', 3648, - 'K', 3648, - 'M', 3648, - 'N', 3693, - 'P', 3648, - 'T', 3648, - '[', 2291, - ']', 2292, - '_', 3662, - '`', 454, - 'd', 3664, - 'e', 3624, - 'f', 3663, - 'g', 3647, - 'h', 3679, - 'k', 3647, - 'm', 3649, - 'n', 3684, - 'o', 3623, - 'p', 3647, - 's', 3669, - 't', 3646, - 'u', 3685, - 'w', 3672, - '{', 2402, - 0xb5, 3685, - '\t', 2784, - ' ', 2784, - 'B', 2714, - 'b', 2714, - 'I', 3700, - 'i', 3700, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2493, + '+', 3637, + ',', 2784, + '-', 3636, + '.', 3631, + '0', 2648, + 'N', 3694, + '[', 2292, + ']', 2293, + '_', 3663, + '`', 455, + 'e', 3623, + 'f', 3664, + 'n', 3690, + 'o', 3624, + 't', 3681, + '{', 2403, + '\t', 2785, + ' ', 2785, + 'I', 3701, + 'i', 3701, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); case 194: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2492, - '+', 3636, - ',', 2783, - '-', 3635, - '.', 2552, - '0', 2647, - 'E', 3658, - 'N', 3693, - '[', 2291, - ']', 2292, - '_', 3662, - '`', 454, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2493, + '+', 3637, + ',', 2784, + '-', 3636, + '.', 2553, + '0', 2648, + 'E', 3646, + 'G', 3649, + 'K', 3649, + 'M', 3649, + 'N', 3694, + 'P', 3649, + 'T', 3649, + '[', 2292, + ']', 2293, + '_', 3663, + '`', 455, + 'd', 3665, 'e', 3625, - 'f', 3663, - 'n', 3689, - 'o', 3623, - 't', 3680, - '{', 2402, - '\t', 2784, - ' ', 2784, - 'I', 3700, - 'i', 3700, + 'f', 3664, + 'g', 3648, + 'h', 3680, + 'k', 3648, + 'm', 3650, + 'n', 3685, + 'o', 3624, + 'p', 3648, + 's', 3670, + 't', 3647, + 'u', 3686, + 'w', 3673, + '{', 2403, + 0xb5, 3686, + '\t', 2785, + ' ', 2785, + 'B', 2715, + 'b', 2715, + 'I', 3701, + 'i', 3701, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); case 195: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2492, - '+', 3636, - ',', 2783, - '-', 3635, - '.', 2542, - '0', 2647, - 'E', 3658, - 'N', 3693, - '[', 2291, - ']', 2292, - '_', 3662, - '`', 454, - 'e', 3625, - 'f', 3663, - 'n', 3689, - 'o', 3623, - 't', 3680, - '{', 2402, - '\t', 2784, - ' ', 2784, - 'I', 3700, - 'i', 3700, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2493, + '+', 3637, + ',', 2784, + '-', 3636, + '.', 2553, + '0', 2648, + 'E', 3659, + 'N', 3694, + '[', 2292, + ']', 2293, + '_', 3663, + '`', 455, + 'e', 3626, + 'f', 3664, + 'n', 3690, + 'o', 3624, + 't', 3681, + '{', 2403, + '\t', 2785, + ' ', 2785, + 'I', 3701, + 'i', 3701, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); case 196: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2492, - '+', 3551, - ',', 2295, - '-', 3550, - '.', 3545, - '0', 2575, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3568, - '`', 454, - 'e', 3538, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2493, + '+', 3637, + ',', 2784, + '-', 3636, + '.', 2542, + '0', 2648, + 'E', 3659, + 'N', 3694, + '[', 2292, + ']', 2293, + '_', 3663, + '`', 455, + 'e', 3626, + 'f', 3664, + 'n', 3690, + 'o', 3624, + 't', 3681, + '{', 2403, + '\t', 2785, + ' ', 2785, + 'I', 3701, + 'i', 3701, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(242); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3598); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2590); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); case 197: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2492, - '+', 3551, - ',', 2295, - '-', 3550, - '.', 2540, - '0', 2575, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3568, - '`', 454, - 'e', 3538, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2493, + '+', 3552, + ',', 2296, + '-', 3551, + '.', 3546, + '0', 2576, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3565, + '`', 455, + 'e', 3539, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(242); + lookahead == ' ') SKIP(243); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3598); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2590); + lookahead == 'i') ADVANCE(3599); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2591); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 198: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2492, - '+', 3551, - ',', 2783, - '-', 3550, - '.', 3545, - '0', 2575, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3568, - '`', 454, - 'e', 3538, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, - '\t', 2784, - ' ', 2784, - 'I', 3598, - 'i', 3598, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2493, + '+', 3552, + ',', 2296, + '-', 3551, + '.', 2543, + '0', 2576, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3565, + '`', 455, + 'e', 3539, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2590); + if (lookahead == '\t' || + lookahead == ' ') SKIP(243); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3599); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2591); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 199: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2492, - '+', 3551, - ',', 2783, - '-', 3550, - '.', 2540, - '0', 2575, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3568, - '`', 454, - 'e', 3538, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, - '\t', 2784, - ' ', 2784, - 'I', 3598, - 'i', 3598, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2493, + '+', 3552, + ',', 2784, + '-', 3551, + '.', 3546, + '0', 2576, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3565, + '`', 455, + 'e', 3539, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, + '\t', 2785, + ' ', 2785, + 'I', 3599, + 'i', 3599, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2590); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2591); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 200: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 2955, - ',', 2783, - '-', 411, - '.', 2951, - '0', 2642, - 'N', 3013, - '[', 2291, - '_', 2407, - '`', 454, - 'e', 2946, - 'f', 2981, - 'n', 3009, - 'o', 2947, - 't', 2996, - '{', 2402, - '}', 2403, - '\t', 2784, - ' ', 2784, - 'I', 3016, - 'i', 3016, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2493, + '+', 3552, + ',', 2784, + '-', 3551, + '.', 2543, + '0', 2576, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3565, + '`', 455, + 'e', 3539, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, + '\t', 2785, + ' ', 2785, + 'I', 3599, + 'i', 3599, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2665); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2591); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3036); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 201: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3548, - ',', 2295, - '-', 3547, - '.', 3544, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 2956, + ',', 2784, + '-', 412, + '.', 2952, '0', 2643, - 'E', 3570, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3559, - '`', 454, - 'e', 3540, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, + 'N', 3014, + '[', 2292, + '_', 2408, + '`', 455, + 'e', 2947, + 'f', 2982, + 'n', 3010, + 'o', 2948, + 't', 2997, + '{', 2403, + '}', 2404, + '\t', 2785, + ' ', 2785, + 'I', 3017, + 'i', 3017, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(203); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3598); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3037); END_STATE(); case 202: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3548, - ',', 2295, - '-', 3547, - '.', 3544, - '0', 2643, - 'N', 3592, - '[', 2735, - ']', 2292, - '_', 3559, - '`', 454, - 'e', 3538, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3549, + ',', 2296, + '-', 3548, + '.', 3545, + '0', 2644, + 'E', 3571, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3560, + '`', 455, + 'e', 3541, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(203); + lookahead == ' ') SKIP(204); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3598); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); + lookahead == 'i') ADVANCE(3599); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 203: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3548, - ',', 2295, - '-', 3547, - '.', 3544, - '0', 2643, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3559, - '`', 454, - 'e', 3538, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3549, + ',', 2296, + '-', 3548, + '.', 3545, + '0', 2644, + 'N', 3593, + '[', 2736, + ']', 2293, + '_', 3560, + '`', 455, + 'e', 3539, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(203); + lookahead == ' ') SKIP(204); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3598); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); + lookahead == 'i') ADVANCE(3599); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 204: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3548, - ',', 2295, - '-', 3547, - '.', 3544, - '0', 2575, - 'E', 3570, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3568, - '`', 454, - 'e', 3540, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3549, + ',', 2296, + '-', 3548, + '.', 3545, + '0', 2644, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3560, + '`', 455, + 'e', 3539, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(203); + lookahead == ' ') SKIP(204); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3598); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2590); + lookahead == 'i') ADVANCE(3599); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 205: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3548, - ',', 2295, - '-', 3547, - '.', 2804, - '0', 2643, - '?', 2458, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3559, - '`', 454, - 'e', 3538, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3549, + ',', 2296, + '-', 3548, + '.', 3545, + '0', 2576, + 'E', 3571, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3565, + '`', 455, + 'e', 3541, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(211); + lookahead == ' ') SKIP(204); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3598); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); + lookahead == 'i') ADVANCE(3599); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2591); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 206: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3548, - ',', 2295, - '-', 3547, - '.', 2804, - '0', 2643, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3559, - '`', 454, - 'e', 3538, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3549, + ',', 2296, + '-', 3548, + '.', 2805, + '0', 2644, + '?', 2459, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3560, + '`', 455, + 'e', 3539, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, ); if (lookahead == '\t' || lookahead == ' ') SKIP(212); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3598); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); + lookahead == 'i') ADVANCE(3599); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 207: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3548, - ',', 2295, - '-', 3547, - '.', 3546, - '0', 2643, - 'E', 3570, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3559, - '`', 454, - 'e', 3540, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3549, + ',', 2296, + '-', 3548, + '.', 2805, + '0', 2644, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3560, + '`', 455, + 'e', 3539, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(203); + lookahead == ' ') SKIP(213); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3598); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); + lookahead == 'i') ADVANCE(3599); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 208: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3548, - ',', 2295, - '-', 3547, - '.', 3546, - '0', 2643, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3559, - '`', 454, - 'e', 3538, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3549, + ',', 2296, + '-', 3548, + '.', 3547, + '0', 2644, + 'E', 3571, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3560, + '`', 455, + 'e', 3541, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(203); + lookahead == ' ') SKIP(204); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3598); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); + lookahead == 'i') ADVANCE(3599); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 209: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3548, - ',', 2295, - '-', 3547, - '.', 3546, - '0', 2575, - 'E', 3570, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3568, - '`', 454, - 'e', 3540, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3549, + ',', 2296, + '-', 3548, + '.', 3547, + '0', 2644, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3560, + '`', 455, + 'e', 3539, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(203); + lookahead == ' ') SKIP(204); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3598); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2590); + lookahead == 'i') ADVANCE(3599); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 210: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3548, - ',', 2295, - '-', 3547, - '.', 2799, - '0', 2643, - ';', 2795, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3559, - '`', 454, - 'e', 3538, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, - '\t', 210, - ' ', 210, - 'I', 3598, - 'i', 3598, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3549, + ',', 2296, + '-', 3548, + '.', 3547, + '0', 2576, + 'E', 3571, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3565, + '`', 455, + 'e', 3541, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(422); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); + if (lookahead == '\t' || + lookahead == ' ') SKIP(204); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3599); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2591); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 211: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3548, - ',', 2295, - '-', 3547, - '.', 2799, - '0', 2643, - '?', 2458, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3559, - '`', 454, - 'e', 3538, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3549, + ',', 2296, + '-', 3548, + '.', 2800, + '0', 2644, + ';', 2796, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3560, + '`', 455, + 'e', 3539, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, + '\t', 211, + ' ', 211, + 'I', 3599, + 'i', 3599, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(211); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3598); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(423); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2667); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 212: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3548, - ',', 2295, - '-', 3547, - '.', 2799, - '0', 2643, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3559, - '`', 454, - 'e', 3538, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3549, + ',', 2296, + '-', 3548, + '.', 2800, + '0', 2644, + '?', 2459, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3560, + '`', 455, + 'e', 3539, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, ); if (lookahead == '\t' || lookahead == ' ') SKIP(212); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3598); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); + lookahead == 'i') ADVANCE(3599); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 213: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3548, - ',', 2295, - '-', 3547, - '.', 2550, - '0', 2643, - 'E', 3570, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3559, - '`', 454, - 'e', 3540, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3549, + ',', 2296, + '-', 3548, + '.', 2800, + '0', 2644, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3560, + '`', 455, + 'e', 3539, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(203); + lookahead == ' ') SKIP(213); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3598); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); + lookahead == 'i') ADVANCE(3599); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 214: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3548, - ',', 2295, - '-', 3547, - '.', 2536, - '0', 2643, - 'E', 3570, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3559, - '`', 454, - 'e', 3540, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3549, + ',', 2296, + '-', 3548, + '.', 2551, + '0', 2644, + 'E', 3571, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3560, + '`', 455, + 'e', 3541, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(203); + lookahead == ' ') SKIP(204); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3598); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); + lookahead == 'i') ADVANCE(3599); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 215: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3548, - ',', 2783, - '-', 3547, - '.', 3544, - '0', 2643, - 'E', 3570, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3559, - '`', 454, - 'e', 3540, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, - '\t', 2784, - ' ', 2784, - 'I', 3598, - 'i', 3598, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3549, + ',', 2296, + '-', 3548, + '.', 2537, + '0', 2644, + 'E', 3571, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3560, + '`', 455, + 'e', 3541, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); + if (lookahead == '\t' || + lookahead == ' ') SKIP(204); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3599); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2667); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 216: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3548, - ',', 2783, - '-', 3547, - '.', 3544, - '0', 2643, - 'N', 3592, - '[', 2735, - ']', 2292, - '_', 3559, - '`', 454, - 'e', 3538, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, - '\t', 2784, - ' ', 2784, - 'I', 3598, - 'i', 3598, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3549, + ',', 2784, + '-', 3548, + '.', 3545, + '0', 2644, + 'E', 3571, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3560, + '`', 455, + 'e', 3541, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, + '\t', 2785, + ' ', 2785, + 'I', 3599, + 'i', 3599, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2667); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 217: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3548, - ',', 2783, - '-', 3547, - '.', 3544, - '0', 2643, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3559, - '`', 454, - 'e', 3538, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, - '\t', 2784, - ' ', 2784, - 'I', 3598, - 'i', 3598, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3549, + ',', 2784, + '-', 3548, + '.', 3545, + '0', 2644, + 'N', 3593, + '[', 2736, + ']', 2293, + '_', 3560, + '`', 455, + 'e', 3539, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, + '\t', 2785, + ' ', 2785, + 'I', 3599, + 'i', 3599, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2667); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 218: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3548, - ',', 2783, - '-', 3547, - '.', 3544, - '0', 2575, - 'E', 3570, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3568, - '`', 454, - 'e', 3540, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, - '\t', 2784, - ' ', 2784, - 'I', 3598, - 'i', 3598, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3549, + ',', 2784, + '-', 3548, + '.', 3545, + '0', 2644, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3560, + '`', 455, + 'e', 3539, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, + '\t', 2785, + ' ', 2785, + 'I', 3599, + 'i', 3599, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2590); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2667); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 219: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3548, - ',', 2783, - '-', 3547, - '.', 2804, - '0', 2643, - '?', 2458, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3559, - '`', 454, - 'e', 3538, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, - '\t', 2784, - ' ', 2784, - 'I', 3598, - 'i', 3598, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3549, + ',', 2784, + '-', 3548, + '.', 3545, + '0', 2576, + 'E', 3571, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3565, + '`', 455, + 'e', 3541, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, + '\t', 2785, + ' ', 2785, + 'I', 3599, + 'i', 3599, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2591); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 220: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3548, - ',', 2783, - '-', 3547, - '.', 2804, - '0', 2643, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3559, - '`', 454, - 'e', 3538, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, - '\t', 2784, - ' ', 2784, - 'I', 3598, - 'i', 3598, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3549, + ',', 2784, + '-', 3548, + '.', 2805, + '0', 2644, + '?', 2459, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3560, + '`', 455, + 'e', 3539, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, + '\t', 2785, + ' ', 2785, + 'I', 3599, + 'i', 3599, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2667); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 221: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3548, - ',', 2783, - '-', 3547, - '.', 3546, - '0', 2643, - 'E', 3570, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3559, - '`', 454, - 'e', 3540, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, - '\t', 2784, - ' ', 2784, - 'I', 3598, - 'i', 3598, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3549, + ',', 2784, + '-', 3548, + '.', 2805, + '0', 2644, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3560, + '`', 455, + 'e', 3539, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, + '\t', 2785, + ' ', 2785, + 'I', 3599, + 'i', 3599, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2667); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 222: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3548, - ',', 2783, - '-', 3547, - '.', 3546, - '0', 2643, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3559, - '`', 454, - 'e', 3538, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, - '\t', 2784, - ' ', 2784, - 'I', 3598, - 'i', 3598, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3549, + ',', 2784, + '-', 3548, + '.', 3547, + '0', 2644, + 'E', 3571, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3560, + '`', 455, + 'e', 3541, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, + '\t', 2785, + ' ', 2785, + 'I', 3599, + 'i', 3599, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2667); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 223: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3548, - ',', 2783, - '-', 3547, - '.', 3546, - '0', 2575, - 'E', 3570, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3568, - '`', 454, - 'e', 3540, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, - '\t', 2784, - ' ', 2784, - 'I', 3598, - 'i', 3598, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3549, + ',', 2784, + '-', 3548, + '.', 3547, + '0', 2644, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3560, + '`', 455, + 'e', 3539, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, + '\t', 2785, + ' ', 2785, + 'I', 3599, + 'i', 3599, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2590); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2667); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 224: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3548, - ',', 2783, - '-', 3547, - '.', 2799, - '0', 2643, - ';', 2795, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3559, - '`', 454, - 'e', 3538, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3549, + ',', 2784, + '-', 3548, + '.', 3547, + '0', 2576, + 'E', 3571, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3565, + '`', 455, + 'e', 3541, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, '\t', 2785, ' ', 2785, - 'I', 3598, - 'i', 3598, + 'I', 3599, + 'i', 3599, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2786); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2591); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 225: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3548, - ',', 2783, - '-', 3547, - '.', 2799, - '0', 2643, - '?', 2458, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3559, - '`', 454, - 'e', 3538, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, - '\t', 2784, - ' ', 2784, - 'I', 3598, - 'i', 3598, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3549, + ',', 2784, + '-', 3548, + '.', 2800, + '0', 2644, + ';', 2796, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3560, + '`', 455, + 'e', 3539, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, + '\t', 2786, + ' ', 2786, + 'I', 3599, + 'i', 3599, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2787); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2667); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 226: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3548, - ',', 2783, - '-', 3547, - '.', 2799, - '0', 2643, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3559, - '`', 454, - 'e', 3538, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, - '\t', 2784, - ' ', 2784, - 'I', 3598, - 'i', 3598, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3549, + ',', 2784, + '-', 3548, + '.', 2800, + '0', 2644, + '?', 2459, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3560, + '`', 455, + 'e', 3539, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, + '\t', 2785, + ' ', 2785, + 'I', 3599, + 'i', 3599, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2667); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 227: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3548, - ',', 2783, - '-', 3547, - '.', 2550, - '0', 2643, - 'E', 3570, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3559, - '`', 454, - 'e', 3540, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, - '\t', 2784, - ' ', 2784, - 'I', 3598, - 'i', 3598, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3549, + ',', 2784, + '-', 3548, + '.', 2800, + '0', 2644, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3560, + '`', 455, + 'e', 3539, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, + '\t', 2785, + ' ', 2785, + 'I', 3599, + 'i', 3599, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2667); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 228: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3548, - ',', 2783, - '-', 3547, - '.', 2536, - '0', 2643, - 'E', 3570, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3559, - '`', 454, - 'e', 3540, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, - '\t', 2784, - ' ', 2784, - 'I', 3598, - 'i', 3598, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3549, + ',', 2784, + '-', 3548, + '.', 2551, + '0', 2644, + 'E', 3571, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3560, + '`', 455, + 'e', 3541, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, + '\t', 2785, + ' ', 2785, + 'I', 3599, + 'i', 3599, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2667); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 229: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3636, - ',', 2295, - '-', 3635, - '.', 3631, - '0', 2574, - 'E', 3645, - 'G', 3648, - 'K', 3648, - 'M', 3648, - 'N', 3693, - 'P', 3648, - 'T', 3648, - '[', 2291, - ']', 2292, - '_', 3650, - '`', 454, - 'd', 3664, - 'e', 3624, - 'f', 3663, - 'g', 3647, - 'h', 3679, - 'k', 3647, - 'm', 3649, - 'n', 3684, - 'o', 3623, - 'p', 3647, - 's', 3669, - 't', 3646, - 'u', 3685, - 'w', 3672, - '{', 2402, - 0xb5, 3685, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3549, + ',', 2784, + '-', 3548, + '.', 2537, + '0', 2644, + 'E', 3571, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3560, + '`', 455, + 'e', 3541, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, + '\t', 2785, + ' ', 2785, + 'I', 3599, + 'i', 3599, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(203); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3700); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2589); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2667); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); case 230: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3636, - ',', 2295, - '-', 3635, - '.', 3631, - '0', 2574, - 'E', 3658, - 'N', 3693, - '[', 2291, - ']', 2292, - '_', 3650, - '`', 454, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3637, + ',', 2296, + '-', 3636, + '.', 3632, + '0', 2575, + 'E', 3646, + 'G', 3649, + 'K', 3649, + 'M', 3649, + 'N', 3694, + 'P', 3649, + 'T', 3649, + '[', 2292, + ']', 2293, + '_', 3651, + '`', 455, + 'd', 3665, 'e', 3625, - 'f', 3663, - 'n', 3689, - 'o', 3623, - 't', 3680, - '{', 2402, + 'f', 3664, + 'g', 3648, + 'h', 3680, + 'k', 3648, + 'm', 3650, + 'n', 3685, + 'o', 3624, + 'p', 3648, + 's', 3670, + 't', 3647, + 'u', 3686, + 'w', 3673, + '{', 2403, + 0xb5, 3686, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(203); + lookahead == ' ') SKIP(204); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3700); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2589); + lookahead == 'i') ADVANCE(3701); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2590); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); case 231: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3636, - ',', 2295, - '-', 3635, - '.', 3631, - '0', 2647, - 'E', 3645, - 'G', 3648, - 'K', 3648, - 'M', 3648, - 'N', 3693, - 'P', 3648, - 'T', 3648, - '[', 2291, - ']', 2292, - '_', 3662, - '`', 454, - 'd', 3664, - 'e', 3624, - 'f', 3663, - 'g', 3647, - 'h', 3679, - 'k', 3647, - 'm', 3649, - 'n', 3684, - 'o', 3623, - 'p', 3647, - 's', 3669, - 't', 3646, - 'u', 3685, - 'w', 3672, - '{', 2402, - 0xb5, 3685, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3637, + ',', 2296, + '-', 3636, + '.', 3632, + '0', 2575, + 'E', 3659, + 'N', 3694, + '[', 2292, + ']', 2293, + '_', 3651, + '`', 455, + 'e', 3626, + 'f', 3664, + 'n', 3690, + 'o', 3624, + 't', 3681, + '{', 2403, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(203); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); + lookahead == ' ') SKIP(204); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3700); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); + lookahead == 'i') ADVANCE(3701); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2590); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); case 232: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3636, - ',', 2295, - '-', 3635, - '.', 3631, - '0', 2647, - 'E', 3648, - 'G', 3648, - 'K', 3648, - 'M', 3648, - 'N', 3693, - 'P', 3648, - 'T', 3648, - '[', 2291, - ']', 2292, - '_', 3662, - '`', 454, - 'd', 3664, - 'e', 3621, - 'f', 3663, - 'g', 3647, - 'h', 3679, - 'k', 3647, - 'm', 3649, - 'n', 3684, - 'o', 3623, - 'p', 3647, - 's', 3669, - 't', 3646, - 'u', 3685, - 'w', 3672, - '{', 2402, - 0xb5, 3685, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3637, + ',', 2296, + '-', 3636, + '.', 3632, + '0', 2648, + 'E', 3646, + 'G', 3649, + 'K', 3649, + 'M', 3649, + 'N', 3694, + 'P', 3649, + 'T', 3649, + '[', 2292, + ']', 2293, + '_', 3663, + '`', 455, + 'd', 3665, + 'e', 3625, + 'f', 3664, + 'g', 3648, + 'h', 3680, + 'k', 3648, + 'm', 3650, + 'n', 3685, + 'o', 3624, + 'p', 3648, + 's', 3670, + 't', 3647, + 'u', 3686, + 'w', 3673, + '{', 2403, + 0xb5, 3686, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(203); + lookahead == ' ') SKIP(204); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); + lookahead == 'b') ADVANCE(2715); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3700); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); + lookahead == 'i') ADVANCE(3701); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); case 233: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3636, - ',', 2295, - '-', 3635, - '.', 3631, - '0', 2647, - 'E', 3658, - 'N', 3693, - '[', 2291, - ']', 2292, - '_', 3662, - '`', 454, - 'e', 3625, - 'f', 3663, - 'n', 3689, - 'o', 3623, - 't', 3680, - '{', 2402, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3637, + ',', 2296, + '-', 3636, + '.', 3632, + '0', 2648, + 'E', 3649, + 'G', 3649, + 'K', 3649, + 'M', 3649, + 'N', 3694, + 'P', 3649, + 'T', 3649, + '[', 2292, + ']', 2293, + '_', 3663, + '`', 455, + 'd', 3665, + 'e', 3622, + 'f', 3664, + 'g', 3648, + 'h', 3680, + 'k', 3648, + 'm', 3650, + 'n', 3685, + 'o', 3624, + 'p', 3648, + 's', 3670, + 't', 3647, + 'u', 3686, + 'w', 3673, + '{', 2403, + 0xb5, 3686, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(203); + lookahead == ' ') SKIP(204); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3700); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); + lookahead == 'i') ADVANCE(3701); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); case 234: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3636, - ',', 2295, - '-', 3635, - '.', 3631, - '0', 2647, - 'N', 3693, - '[', 2291, - ']', 2292, - '_', 3662, - '`', 454, - 'e', 3622, - 'f', 3663, - 'n', 3689, - 'o', 3623, - 't', 3680, - '{', 2402, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3637, + ',', 2296, + '-', 3636, + '.', 3632, + '0', 2648, + 'E', 3659, + 'N', 3694, + '[', 2292, + ']', 2293, + '_', 3663, + '`', 455, + 'e', 3626, + 'f', 3664, + 'n', 3690, + 'o', 3624, + 't', 3681, + '{', 2403, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(203); + lookahead == ' ') SKIP(204); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3700); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); + lookahead == 'i') ADVANCE(3701); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); case 235: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3636, - ',', 2295, - '-', 3635, - '.', 3630, - '0', 2574, - 'E', 3658, - 'N', 3693, - '[', 2291, - ']', 2292, - '_', 3650, - '`', 454, - 'e', 3625, - 'f', 3663, - 'n', 3689, - 'o', 3623, - 't', 3680, - '{', 2402, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3637, + ',', 2296, + '-', 3636, + '.', 3632, + '0', 2648, + 'N', 3694, + '[', 2292, + ']', 2293, + '_', 3663, + '`', 455, + 'e', 3623, + 'f', 3664, + 'n', 3690, + 'o', 3624, + 't', 3681, + '{', 2403, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(203); + lookahead == ' ') SKIP(204); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3700); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2589); + lookahead == 'i') ADVANCE(3701); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); case 236: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3636, - ',', 2295, - '-', 3635, - '.', 3630, - '0', 2647, - 'E', 3658, - 'N', 3693, - '[', 2291, - ']', 2292, - '_', 3662, - '`', 454, - 'e', 3625, - 'f', 3663, - 'n', 3689, - 'o', 3623, - 't', 3680, - '{', 2402, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3637, + ',', 2296, + '-', 3636, + '.', 3631, + '0', 2575, + 'E', 3659, + 'N', 3694, + '[', 2292, + ']', 2293, + '_', 3651, + '`', 455, + 'e', 3626, + 'f', 3664, + 'n', 3690, + 'o', 3624, + 't', 3681, + '{', 2403, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(203); + lookahead == ' ') SKIP(204); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3700); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); + lookahead == 'i') ADVANCE(3701); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2590); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); case 237: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3636, - ',', 2295, - '-', 3635, - '.', 3630, - '0', 2647, - 'N', 3693, - '[', 2291, - ']', 2292, - '_', 3662, - '`', 454, - 'e', 3622, - 'f', 3663, - 'n', 3689, - 'o', 3623, - 't', 3680, - '{', 2402, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3637, + ',', 2296, + '-', 3636, + '.', 3631, + '0', 2648, + 'E', 3659, + 'N', 3694, + '[', 2292, + ']', 2293, + '_', 3663, + '`', 455, + 'e', 3626, + 'f', 3664, + 'n', 3690, + 'o', 3624, + 't', 3681, + '{', 2403, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(203); + lookahead == ' ') SKIP(204); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3700); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); + lookahead == 'i') ADVANCE(3701); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); case 238: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3636, - ',', 2295, - '-', 3635, - '.', 2552, - '0', 2647, - 'E', 3645, - 'G', 3648, - 'K', 3648, - 'M', 3648, - 'N', 3693, - 'P', 3648, - 'T', 3648, - '[', 2291, - ']', 2292, - '_', 3662, - '`', 454, - 'd', 3664, - 'e', 3624, - 'f', 3663, - 'g', 3647, - 'h', 3679, - 'k', 3647, - 'm', 3649, - 'n', 3684, - 'o', 3623, - 'p', 3647, - 's', 3669, - 't', 3646, - 'u', 3685, - 'w', 3672, - '{', 2402, - 0xb5, 3685, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3637, + ',', 2296, + '-', 3636, + '.', 3631, + '0', 2648, + 'N', 3694, + '[', 2292, + ']', 2293, + '_', 3663, + '`', 455, + 'e', 3623, + 'f', 3664, + 'n', 3690, + 'o', 3624, + 't', 3681, + '{', 2403, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(203); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); + lookahead == ' ') SKIP(204); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3700); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); + lookahead == 'i') ADVANCE(3701); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); case 239: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3636, - ',', 2295, - '-', 3635, - '.', 2552, - '0', 2647, - 'E', 3658, - 'N', 3693, - '[', 2291, - ']', 2292, - '_', 3662, - '`', 454, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3637, + ',', 2296, + '-', 3636, + '.', 2553, + '0', 2648, + 'E', 3646, + 'G', 3649, + 'K', 3649, + 'M', 3649, + 'N', 3694, + 'P', 3649, + 'T', 3649, + '[', 2292, + ']', 2293, + '_', 3663, + '`', 455, + 'd', 3665, 'e', 3625, - 'f', 3663, - 'n', 3689, - 'o', 3623, - 't', 3680, - '{', 2402, + 'f', 3664, + 'g', 3648, + 'h', 3680, + 'k', 3648, + 'm', 3650, + 'n', 3685, + 'o', 3624, + 'p', 3648, + 's', 3670, + 't', 3647, + 'u', 3686, + 'w', 3673, + '{', 2403, + 0xb5, 3686, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(203); + lookahead == ' ') SKIP(204); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3700); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); + lookahead == 'i') ADVANCE(3701); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); case 240: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3636, - ',', 2295, - '-', 3635, - '.', 2542, - '0', 2647, - 'E', 3658, - 'N', 3693, - '[', 2291, - ']', 2292, - '_', 3662, - '`', 454, - 'e', 3625, - 'f', 3663, - 'n', 3689, - 'o', 3623, - 't', 3680, - '{', 2402, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3637, + ',', 2296, + '-', 3636, + '.', 2553, + '0', 2648, + 'E', 3659, + 'N', 3694, + '[', 2292, + ']', 2293, + '_', 3663, + '`', 455, + 'e', 3626, + 'f', 3664, + 'n', 3690, + 'o', 3624, + 't', 3681, + '{', 2403, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(203); + lookahead == ' ') SKIP(204); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3700); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); + lookahead == 'i') ADVANCE(3701); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); case 241: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3636, - ',', 2783, - '-', 3635, - '.', 3630, - '0', 2647, - 'N', 3693, - '[', 2291, - ']', 2292, - '_', 3662, - '`', 454, - 'e', 3622, - 'f', 3663, - 'n', 3689, - 'o', 3623, - 't', 3680, - '{', 2402, - '\t', 2784, - ' ', 2784, - 'I', 3700, - 'i', 3700, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3637, + ',', 2296, + '-', 3636, + '.', 2542, + '0', 2648, + 'E', 3659, + 'N', 3694, + '[', 2292, + ']', 2293, + '_', 3663, + '`', 455, + 'e', 3626, + 'f', 3664, + 'n', 3690, + 'o', 3624, + 't', 3681, + '{', 2403, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); + if (lookahead == '\t' || + lookahead == ' ') SKIP(204); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3701); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); case 242: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '$', 2296, - '\'', 385, - '(', 2293, - '+', 3551, - ',', 2295, - '-', 3550, - '.', 3545, - '0', 2643, - 'N', 3592, - '[', 2291, - ']', 2292, - '_', 3559, - '`', 454, - 'e', 3538, - 'f', 3572, - 'n', 3589, - 'o', 3539, - 't', 3582, - '{', 2402, + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3637, + ',', 2784, + '-', 3636, + '.', 3631, + '0', 2648, + 'N', 3694, + '[', 2292, + ']', 2293, + '_', 3663, + '`', 455, + 'e', 3623, + 'f', 3664, + 'n', 3690, + 'o', 3624, + 't', 3681, + '{', 2403, + '\t', 2785, + ' ', 2785, + 'I', 3701, + 'i', 3701, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); + END_STATE(); + case 243: + ADVANCE_MAP( + '"', 2766, + '#', 4100, + '$', 2297, + '\'', 386, + '(', 2294, + '+', 3552, + ',', 2296, + '-', 3551, + '.', 3546, + '0', 2644, + 'N', 3593, + '[', 2292, + ']', 2293, + '_', 3560, + '`', 455, + 'e', 3539, + 'f', 3573, + 'n', 3590, + 'o', 3540, + 't', 3583, + '{', 2403, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(242); + lookahead == ' ') SKIP(243); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3598); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); + lookahead == 'i') ADVANCE(3599); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2667); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3620); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3621); END_STATE(); - case 243: + case 244: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '\'', 385, - '+', 1019, - ',', 2783, - '-', 412, - '.', 1282, - 'I', 1546, - 'N', 1538, - ']', 2292, - '_', 1285, - '`', 454, - 'a', 1416, - 'b', 1470, - 'c', 1311, - 'd', 1341, - 'e', 1414, - 'f', 1295, - 'h', 1390, - 'i', 1280, - 'l', 1364, - 'm', 1310, - 'n', 1517, - 'o', 1531, - 'r', 1365, - 's', 1442, - 't', 1471, - 'u', 1490, - 'w', 1380, - '\t', 2784, - ' ', 2784, + '"', 2766, + '#', 4100, + '\'', 386, + '+', 1020, + ',', 2784, + '-', 413, + '.', 1283, + 'I', 1547, + 'N', 1539, + ']', 2293, + '_', 1286, + '`', 455, + 'a', 1417, + 'b', 1471, + 'c', 1312, + 'd', 1342, + 'e', 1415, + 'f', 1296, + 'h', 1391, + 'i', 1281, + 'l', 1365, + 'm', 1311, + 'n', 1518, + 'o', 1532, + 'r', 1366, + 's', 1443, + 't', 1472, + 'u', 1491, + 'w', 1381, + '\t', 2785, + ' ', 2785, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); - case 244: + case 245: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '\'', 385, - '+', 1019, - '-', 400, - '.', 2807, - '?', 2458, - 'I', 1546, - 'N', 1538, - '_', 1285, - '`', 454, - 'a', 1416, - 'b', 1470, - 'c', 1311, - 'd', 1341, - 'e', 1414, - 'f', 1295, - 'h', 1390, - 'i', 1280, - 'l', 1364, - 'm', 1310, - 'n', 1517, - 'o', 1531, - 'r', 1365, - 's', 1442, - 't', 1471, - 'u', 1490, - 'w', 1380, + '"', 2766, + '#', 4100, + '\'', 386, + '+', 1020, + '-', 401, + '.', 2808, + '?', 2459, + 'I', 1547, + 'N', 1539, + '_', 1286, + '`', 455, + 'a', 1417, + 'b', 1471, + 'c', 1312, + 'd', 1342, + 'e', 1415, + 'f', 1296, + 'h', 1391, + 'i', 1281, + 'l', 1365, + 'm', 1311, + 'n', 1518, + 'o', 1532, + 'r', 1366, + 's', 1443, + 't', 1472, + 'u', 1491, + 'w', 1381, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(244); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1558); + lookahead == ' ') SKIP(245); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1559); END_STATE(); - case 245: + case 246: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '\'', 385, - '+', 1019, - '-', 400, - '.', 2807, - 'I', 1546, - 'N', 1538, - '_', 1285, - '`', 454, - 'a', 1416, - 'b', 1470, - 'c', 1311, - 'd', 1341, - 'e', 1414, - 'f', 1295, - 'h', 1390, - 'i', 1280, - 'l', 1364, - 'm', 1310, - 'n', 1517, - 'o', 1531, - 'r', 1365, - 's', 1442, - 't', 1471, - 'u', 1490, - 'w', 1380, + '"', 2766, + '#', 4100, + '\'', 386, + '+', 1020, + '-', 401, + '.', 2808, + 'I', 1547, + 'N', 1539, + '_', 1286, + '`', 455, + 'a', 1417, + 'b', 1471, + 'c', 1312, + 'd', 1342, + 'e', 1415, + 'f', 1296, + 'h', 1391, + 'i', 1281, + 'l', 1365, + 'm', 1311, + 'n', 1518, + 'o', 1532, + 'r', 1366, + 's', 1443, + 't', 1472, + 'u', 1491, + 'w', 1381, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(245); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1558); + lookahead == ' ') SKIP(246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1559); END_STATE(); - case 246: + case 247: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '\'', 385, - '+', 1019, - '-', 400, - '.', 1282, - '=', 2878, - 'I', 2194, - 'N', 2182, - '_', 2059, - '`', 454, - 'a', 2112, - 'b', 2142, - 'c', 2067, - 'd', 2077, - 'e', 2117, - 'f', 2069, - 'h', 2103, - 'i', 2056, - 'l', 2083, - 'm', 2064, - 'n', 2169, - 'o', 2174, - 'r', 2078, - 's', 2130, - 't', 2137, - 'u', 2152, - 'w', 2100, + '"', 2766, + '#', 4100, + '\'', 386, + '+', 1020, + '-', 401, + '.', 1283, + '=', 2879, + 'I', 2195, + 'N', 2183, + '_', 2060, + '`', 455, + 'a', 2113, + 'b', 2143, + 'c', 2068, + 'd', 2078, + 'e', 2118, + 'f', 2070, + 'h', 2104, + 'i', 2057, + 'l', 2084, + 'm', 2065, + 'n', 2170, + 'o', 2175, + 'r', 2079, + 's', 2131, + 't', 2138, + 'u', 2153, + 'w', 2101, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(247); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2059); - if (set_contains(sym_attribute_identifier_character_set_1, 668, lookahead)) ADVANCE(2214); + lookahead == ' ') SKIP(248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2060); + if (set_contains(sym_attribute_identifier_character_set_1, 668, lookahead)) ADVANCE(2215); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(1558); + (lookahead < ']' || '}' < lookahead)) ADVANCE(1559); END_STATE(); - case 247: + case 248: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '\'', 385, - '+', 1019, - '-', 400, - '.', 1282, - 'I', 1546, - 'N', 1538, - '_', 1285, - '`', 454, - 'a', 1416, - 'b', 1470, - 'c', 1311, - 'd', 1341, - 'e', 1414, - 'f', 1295, - 'h', 1390, - 'i', 1280, - 'l', 1364, - 'm', 1310, - 'n', 1517, - 'o', 1531, - 'r', 1365, - 's', 1442, - 't', 1471, - 'u', 1490, - 'w', 1380, + '"', 2766, + '#', 4100, + '\'', 386, + '+', 1020, + '-', 401, + '.', 1283, + 'I', 1547, + 'N', 1539, + '_', 1286, + '`', 455, + 'a', 1417, + 'b', 1471, + 'c', 1312, + 'd', 1342, + 'e', 1415, + 'f', 1296, + 'h', 1391, + 'i', 1281, + 'l', 1365, + 'm', 1311, + 'n', 1518, + 'o', 1532, + 'r', 1366, + 's', 1443, + 't', 1472, + 'u', 1491, + 'w', 1381, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(247); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1558); + lookahead == ' ') SKIP(248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1559); END_STATE(); - case 248: + case 249: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '\'', 385, - '+', 1019, - '-', 3067, - '.', 1282, - 'I', 1546, - 'N', 1538, - '_', 1285, - '`', 454, - 'a', 1416, - 'b', 1470, - 'c', 1311, - 'd', 1341, - 'e', 1414, - 'f', 1295, - 'h', 1390, - 'i', 1280, - 'l', 1364, - 'm', 1310, - 'n', 1517, - 'o', 1531, - 'r', 1365, - 's', 1442, - 't', 1471, - 'u', 1490, - 'w', 1380, + '"', 2766, + '#', 4100, + '\'', 386, + '+', 1020, + '-', 3068, + '.', 1283, + 'I', 1547, + 'N', 1539, + '_', 1286, + '`', 455, + 'a', 1417, + 'b', 1471, + 'c', 1312, + 'd', 1342, + 'e', 1415, + 'f', 1296, + 'h', 1391, + 'i', 1281, + 'l', 1365, + 'm', 1311, + 'n', 1518, + 'o', 1532, + 'r', 1366, + 's', 1443, + 't', 1472, + 'u', 1491, + 'w', 1381, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(247); + lookahead == ' ') SKIP(248); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3259); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == '^') ADVANCE(3260); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); - case 249: + case 250: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '\'', 385, - '+', 1019, - '-', 3067, - '.', 1026, - 'B', 2714, - 'E', 1272, - 'G', 1277, - 'I', 1546, - 'K', 1277, - 'M', 1277, - 'N', 1538, - 'P', 1277, - 'T', 1277, - '_', 1285, - '`', 454, - 'a', 1416, - 'b', 2719, - 'c', 1311, - 'd', 1305, - 'e', 1271, - 'f', 1295, - 'g', 1276, - 'h', 1389, - 'i', 1280, - 'k', 1276, - 'l', 1364, - 'm', 1273, - 'n', 1480, - 'o', 1531, - 'p', 1276, - 'r', 1365, - 's', 1346, - 't', 1275, - 'u', 1482, - 'w', 1379, - 0xb5, 1481, + '"', 2766, + '#', 4100, + '\'', 386, + '+', 1020, + '-', 3068, + '.', 1027, + 'B', 2715, + 'E', 1273, + 'G', 1278, + 'I', 1547, + 'K', 1278, + 'M', 1278, + 'N', 1539, + 'P', 1278, + 'T', 1278, + '_', 1286, + '`', 455, + 'a', 1417, + 'b', 2720, + 'c', 1312, + 'd', 1306, + 'e', 1272, + 'f', 1296, + 'g', 1277, + 'h', 1390, + 'i', 1281, + 'k', 1277, + 'l', 1365, + 'm', 1274, + 'n', 1481, + 'o', 1532, + 'p', 1277, + 'r', 1366, + 's', 1347, + 't', 1276, + 'u', 1483, + 'w', 1380, + 0xb5, 1482, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(247); + lookahead == ' ') SKIP(248); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3259); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == '^') ADVANCE(3260); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); - case 250: + case 251: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '\'', 385, - '+', 1019, - '-', 3067, - '.', 1026, - 'B', 2714, - 'E', 1272, - 'G', 1277, - 'I', 1546, - 'K', 1277, - 'M', 1277, - 'N', 1538, - 'P', 1277, - 'T', 1277, - '_', 1290, - '`', 454, - 'a', 1416, - 'b', 2719, - 'c', 1311, - 'd', 1305, - 'e', 1271, - 'f', 1295, - 'g', 1276, - 'h', 1389, - 'i', 1280, - 'k', 1276, - 'l', 1364, - 'm', 1273, - 'n', 1480, - 'o', 1531, - 'p', 1276, - 'r', 1365, - 's', 1346, - 't', 1275, - 'u', 1482, - 'w', 1379, - 0xb5, 1481, + '"', 2766, + '#', 4100, + '\'', 386, + '+', 1020, + '-', 3068, + '.', 1027, + 'B', 2715, + 'E', 1273, + 'G', 1278, + 'I', 1547, + 'K', 1278, + 'M', 1278, + 'N', 1539, + 'P', 1278, + 'T', 1278, + '_', 1291, + '`', 455, + 'a', 1417, + 'b', 2720, + 'c', 1312, + 'd', 1306, + 'e', 1272, + 'f', 1296, + 'g', 1277, + 'h', 1390, + 'i', 1281, + 'k', 1277, + 'l', 1365, + 'm', 1274, + 'n', 1481, + 'o', 1532, + 'p', 1277, + 'r', 1366, + 's', 1347, + 't', 1276, + 'u', 1483, + 'w', 1380, + 0xb5, 1482, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(247); + lookahead == ' ') SKIP(248); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3259); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); + lookahead == '^') ADVANCE(3260); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); - case 251: + case 252: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '\'', 385, - '+', 1019, - '-', 3067, - '.', 1026, - 'B', 2714, - 'E', 1277, - 'G', 1277, - 'I', 1546, - 'K', 1277, - 'M', 1277, - 'N', 1538, - 'P', 1277, - 'T', 1277, - '_', 1285, - '`', 454, - 'a', 1416, - 'b', 2719, - 'c', 1311, - 'd', 1305, - 'e', 1274, - 'f', 1295, - 'g', 1276, - 'h', 1389, - 'i', 1280, - 'k', 1276, - 'l', 1364, - 'm', 1273, - 'n', 1480, - 'o', 1531, - 'p', 1276, - 'r', 1365, - 's', 1346, - 't', 1275, - 'u', 1482, - 'w', 1379, - 0xb5, 1481, + '"', 2766, + '#', 4100, + '\'', 386, + '+', 1020, + '-', 3068, + '.', 1027, + 'B', 2715, + 'E', 1278, + 'G', 1278, + 'I', 1547, + 'K', 1278, + 'M', 1278, + 'N', 1539, + 'P', 1278, + 'T', 1278, + '_', 1286, + '`', 455, + 'a', 1417, + 'b', 2720, + 'c', 1312, + 'd', 1306, + 'e', 1275, + 'f', 1296, + 'g', 1277, + 'h', 1390, + 'i', 1281, + 'k', 1277, + 'l', 1365, + 'm', 1274, + 'n', 1481, + 'o', 1532, + 'p', 1277, + 'r', 1366, + 's', 1347, + 't', 1276, + 'u', 1483, + 'w', 1380, + 0xb5, 1482, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(247); + lookahead == ' ') SKIP(248); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3259); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == '^') ADVANCE(3260); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); - case 252: + case 253: ADVANCE_MAP( - '"', 2765, - '#', 4099, - '\'', 385, - '+', 1019, - '-', 3067, - '.', 2548, - 'B', 2714, - 'E', 1272, - 'G', 1277, - 'I', 1546, - 'K', 1277, - 'M', 1277, - 'N', 1538, - 'P', 1277, - 'T', 1277, - '_', 1285, - '`', 454, - 'a', 1416, - 'b', 2719, - 'c', 1311, - 'd', 1305, - 'e', 1271, - 'f', 1295, - 'g', 1276, - 'h', 1389, - 'i', 1280, - 'k', 1276, - 'l', 1364, - 'm', 1273, - 'n', 1480, - 'o', 1531, - 'p', 1276, - 'r', 1365, - 's', 1346, - 't', 1275, - 'u', 1482, - 'w', 1379, - 0xb5, 1481, + '"', 2766, + '#', 4100, + '\'', 386, + '+', 1020, + '-', 3068, + '.', 2549, + 'B', 2715, + 'E', 1273, + 'G', 1278, + 'I', 1547, + 'K', 1278, + 'M', 1278, + 'N', 1539, + 'P', 1278, + 'T', 1278, + '_', 1286, + '`', 455, + 'a', 1417, + 'b', 2720, + 'c', 1312, + 'd', 1306, + 'e', 1272, + 'f', 1296, + 'g', 1277, + 'h', 1390, + 'i', 1281, + 'k', 1277, + 'l', 1365, + 'm', 1274, + 'n', 1481, + 'o', 1532, + 'p', 1277, + 'r', 1366, + 's', 1347, + 't', 1276, + 'u', 1483, + 'w', 1380, + 0xb5, 1482, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(247); + lookahead == ' ') SKIP(248); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3259); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == '^') ADVANCE(3260); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); - case 253: - if (lookahead == '"') ADVANCE(2765); - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '\'') ADVANCE(385); - if (lookahead == '>') ADVANCE(2313); - if (lookahead == '`') ADVANCE(454); + case 254: + if (lookahead == '"') ADVANCE(2766); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '\'') ADVANCE(386); + if (lookahead == '>') ADVANCE(2314); + if (lookahead == '`') ADVANCE(455); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2787); + lookahead == ' ') ADVANCE(2788); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); + lookahead == ',') ADVANCE(2784); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && @@ -23553,349 +23003,349 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '^' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2036); - END_STATE(); - case 254: - if (lookahead == '"') ADVANCE(2765); - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '\'') ADVANCE(385); - if (lookahead == '`') ADVANCE(454); - if (lookahead == '\t' || - lookahead == ' ') SKIP(254); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2037); END_STATE(); case 255: - if (lookahead == '"') ADVANCE(2765); - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '\'') ADVANCE(2808); - if (lookahead == '`') ADVANCE(2809); + if (lookahead == '"') ADVANCE(2766); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '\'') ADVANCE(386); + if (lookahead == '`') ADVANCE(455); if (lookahead == '\t' || - lookahead == ' ') SKIP(254); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(2810); + lookahead == ' ') SKIP(255); END_STATE(); case 256: + if (lookahead == '"') ADVANCE(2766); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '\'') ADVANCE(2809); + if (lookahead == '`') ADVANCE(2810); + if (lookahead == '\t' || + lookahead == ' ') SKIP(255); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(2811); + END_STATE(); + case 257: ADVANCE_MAP( - '"', 2765, - '#', 4102, - '$', 2298, - '\'', 385, - '(', 2492, - '+', 2514, - ',', 2295, - '-', 2340, - '.', 3981, - '0', 3986, - 'I', 4084, - 'N', 4081, - '_', 3988, - '`', 454, - 'a', 4032, - 'b', 4054, - 'c', 3992, - 'd', 4003, - 'e', 4038, - 'f', 3993, - 'h', 4025, - 'i', 3985, - 'l', 4013, - 'm', 3994, - 'n', 4073, - 'o', 4079, - 'r', 4004, - 's', 4044, - 't', 4050, - 'u', 4062, - 'w', 4024, - '}', 2403, + '"', 2766, + '#', 4103, + '$', 2299, + '\'', 386, + '(', 2493, + '+', 2515, + ',', 2296, + '-', 2341, + '.', 3982, + '0', 3987, + 'I', 4085, + 'N', 4082, + '_', 3989, + '`', 455, + 'a', 4033, + 'b', 4055, + 'c', 3993, + 'd', 4004, + 'e', 4039, + 'f', 3994, + 'h', 4026, + 'i', 3986, + 'l', 4014, + 'm', 3995, + 'n', 4074, + 'o', 4080, + 'r', 4005, + 's', 4045, + 't', 4051, + 'u', 4063, + 'w', 4025, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(145); + lookahead == ' ') SKIP(146); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4092); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3988); + lookahead == '^') ADVANCE(4093); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3989); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4090); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4091); END_STATE(); - case 257: + case 258: ADVANCE_MAP( - '"', 2765, - '#', 4102, - '$', 2298, - '\'', 385, - '(', 2492, - '+', 2514, - ',', 2783, - '-', 2340, - '.', 3981, - '0', 3986, - 'I', 4084, - 'N', 4081, - '_', 3988, - '`', 454, - 'a', 4032, - 'b', 4054, - 'c', 3992, - 'd', 4003, - 'e', 4038, - 'f', 3993, - 'h', 4025, - 'i', 3985, - 'l', 4013, - 'm', 3994, - 'n', 4073, - 'o', 4079, - 'r', 4004, - 's', 4044, - 't', 4050, - 'u', 4062, - 'w', 4024, - '}', 2403, - '\t', 2784, - ' ', 2784, + '"', 2766, + '#', 4103, + '$', 2299, + '\'', 386, + '(', 2493, + '+', 2515, + ',', 2784, + '-', 2341, + '.', 3982, + '0', 3987, + 'I', 4085, + 'N', 4082, + '_', 3989, + '`', 455, + 'a', 4033, + 'b', 4055, + 'c', 3993, + 'd', 4004, + 'e', 4039, + 'f', 3994, + 'h', 4026, + 'i', 3986, + 'l', 4014, + 'm', 3995, + 'n', 4074, + 'o', 4080, + 'r', 4005, + 's', 4045, + 't', 4051, + 'u', 4063, + 'w', 4025, + '}', 2404, + '\t', 2785, + ' ', 2785, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4092); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3988); + lookahead == '^') ADVANCE(4093); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3989); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4090); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4091); END_STATE(); - case 258: + case 259: ADVANCE_MAP( - '"', 2765, - '#', 4105, - '$', 2299, - '\'', 385, - '(', 2293, - '+', 3293, - '-', 2332, - '.', 3294, - 'N', 3496, - '[', 2291, - '_', 3321, - '`', 454, - 'e', 3279, - 'f', 3331, - 'n', 3471, - 'o', 3280, - 't', 3423, + '"', 2766, + '#', 4106, + '$', 2300, + '\'', 386, + '(', 2294, + '+', 3294, + '-', 2335, + '.', 3295, + 'N', 3497, + '[', 2292, + '_', 3322, + '`', 455, + 'e', 3280, + 'f', 3332, + 'n', 3472, + 'o', 3281, + 't', 3424, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(163); + lookahead == ' ') SKIP(164); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3506); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3324); + lookahead == 'i') ADVANCE(3507); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3325); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3536); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3537); END_STATE(); - case 259: + case 260: ADVANCE_MAP( - '"', 2765, - '#', 4105, - '\'', 385, - '+', 3295, - '-', 3285, - '.', 3326, - 'I', 3508, - 'N', 3497, - '_', 3330, - '`', 454, - 'a', 3393, - 'b', 3431, - 'c', 3332, - 'd', 3353, - 'e', 3390, - 'f', 3333, - 'h', 3377, - 'i', 3317, - 'l', 3357, - 'm', 3334, - 'n', 3474, - 'o', 3483, - 'r', 3354, - 's', 3408, - 't', 3430, - 'u', 3452, - 'w', 3375, + '"', 2766, + '#', 4106, + '\'', 386, + '+', 3296, + '-', 3286, + '.', 3327, + 'I', 3509, + 'N', 3498, + '_', 3331, + '`', 455, + 'a', 3394, + 'b', 3432, + 'c', 3333, + 'd', 3354, + 'e', 3391, + 'f', 3334, + 'h', 3378, + 'i', 3318, + 'l', 3358, + 'm', 3335, + 'n', 3475, + 'o', 3484, + 'r', 3355, + 's', 3409, + 't', 3431, + 'u', 3453, + 'w', 3376, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(247); + lookahead == ' ') SKIP(248); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(3536); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3330); + lookahead == '^') ADVANCE(3537); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3331); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3517); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3518); END_STATE(); - case 260: + case 261: ADVANCE_MAP( - '"', 2765, - '#', 4104, - '$', 2301, - '\'', 385, - '(', 2492, - '+', 3739, - ',', 2783, - '-', 3738, - '.', 3740, - '0', 3751, - 'N', 3780, - '[', 2291, - ']', 2292, - '_', 3753, - '`', 454, - 'e', 3732, - 'f', 3759, - 'n', 3776, - 'o', 3733, - 't', 3769, - '{', 2402, - '\t', 2784, - ' ', 2784, - 'I', 3785, - 'i', 3785, + '"', 2766, + '#', 4105, + '$', 2302, + '\'', 386, + '(', 2493, + '+', 3740, + ',', 2784, + '-', 3739, + '.', 3741, + '0', 3752, + 'N', 3781, + '[', 2292, + ']', 2293, + '_', 3754, + '`', 455, + 'e', 3733, + 'f', 3760, + 'n', 3777, + 'o', 3734, + 't', 3770, + '{', 2403, + '\t', 2785, + ' ', 2785, + 'I', 3786, + 'i', 3786, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3756); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3757); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3807); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3808); END_STATE(); - case 261: + case 262: ADVANCE_MAP( - '"', 2765, - '#', 4104, - '$', 2301, - '\'', 385, - '(', 2293, - '+', 3739, - ',', 2295, - '-', 3738, - '.', 3740, - '0', 3751, - 'N', 3780, - '[', 2291, - ']', 2292, - '_', 3753, - '`', 454, - 'e', 3732, - 'f', 3759, - 'n', 3776, - 'o', 3733, - 't', 3769, - '{', 2402, + '"', 2766, + '#', 4105, + '$', 2302, + '\'', 386, + '(', 2294, + '+', 3740, + ',', 2296, + '-', 3739, + '.', 3741, + '0', 3752, + 'N', 3781, + '[', 2292, + ']', 2293, + '_', 3754, + '`', 455, + 'e', 3733, + 'f', 3760, + 'n', 3777, + 'o', 3734, + 't', 3770, + '{', 2403, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(203); + lookahead == ' ') SKIP(204); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3785); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3756); + lookahead == 'i') ADVANCE(3786); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3757); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3807); - END_STATE(); - case 262: - if (lookahead == '"') ADVANCE(2765); - if (lookahead == '#') ADVANCE(2767); - if (lookahead == '\\') ADVANCE(608); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2766); - if (lookahead != 0) ADVANCE(2767); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3808); END_STATE(); case 263: - if (lookahead == '"') ADVANCE(2779); - if (lookahead == '#') ADVANCE(2772); - if (lookahead == '(') ADVANCE(2293); - if (lookahead == '\\') ADVANCE(602); + if (lookahead == '"') ADVANCE(2766); + if (lookahead == '#') ADVANCE(2768); + if (lookahead == '\\') ADVANCE(609); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2771); - if (lookahead != 0) ADVANCE(2772); + lookahead == ' ') ADVANCE(2767); + if (lookahead != 0) ADVANCE(2768); END_STATE(); case 264: - ADVANCE_MAP( - '#', 4099, - '$', 2296, - '(', 2492, - '.', 2557, - '=', 3085, - '_', 3107, - 'i', 3146, - '|', 2254, - ); + if (lookahead == '"') ADVANCE(2780); + if (lookahead == '#') ADVANCE(2773); + if (lookahead == '(') ADVANCE(2294); + if (lookahead == '\\') ADVANCE(603); if (lookahead == '\t' || - lookahead == ' ') SKIP(291); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') ADVANCE(2772); + if (lookahead != 0) ADVANCE(2773); END_STATE(); case 265: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '$') ADVANCE(2296); - if (lookahead == '(') ADVANCE(2492); - if (lookahead == '.') ADVANCE(2557); - if (lookahead == '=') ADVANCE(3085); - if (lookahead == '_') ADVANCE(3107); - if (lookahead == '|') ADVANCE(2254); + ADVANCE_MAP( + '#', 4100, + '$', 2297, + '(', 2493, + '.', 2558, + '=', 3086, + '_', 3108, + 'i', 3147, + '|', 2255, + ); if (lookahead == '\t' || lookahead == ' ') SKIP(292); if (lookahead == '+' || - lookahead == '-') ADVANCE(3077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == '-') ADVANCE(3078); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 266: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '$') ADVANCE(2296); - if (lookahead == '(') ADVANCE(2492); - if (lookahead == '.') ADVANCE(2557); - if (lookahead == '_') ADVANCE(3107); - if (lookahead == '{') ADVANCE(2402); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '$') ADVANCE(2297); + if (lookahead == '(') ADVANCE(2493); + if (lookahead == '.') ADVANCE(2558); + if (lookahead == '=') ADVANCE(3086); + if (lookahead == '_') ADVANCE(3108); + if (lookahead == '|') ADVANCE(2255); if (lookahead == '\t' || - lookahead == ' ') SKIP(294); + lookahead == ' ') SKIP(293); if (lookahead == '+' || - lookahead == '-') ADVANCE(3077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == '-') ADVANCE(3078); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 267: + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '$') ADVANCE(2297); + if (lookahead == '(') ADVANCE(2493); + if (lookahead == '.') ADVANCE(2558); + if (lookahead == '_') ADVANCE(3108); + if (lookahead == '{') ADVANCE(2403); + if (lookahead == '\t' || + lookahead == ' ') SKIP(295); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3078); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); + END_STATE(); + case 268: ADVANCE_MAP( - '#', 4099, - '$', 2296, - '(', 2492, - '.', 2559, - ']', 2292, - '_', 3892, - '}', 2403, - '\t', 2787, - ' ', 2787, - '+', 3874, - '-', 3874, + '#', 4100, + '$', 2297, + '(', 2493, + '.', 2560, + ']', 2293, + '_', 3893, + '}', 2404, + '\t', 2788, + ' ', 2788, + '+', 3875, + '-', 3875, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); + lookahead == ',') ADVANCE(2784); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -23903,71 +23353,71 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3906); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3907); END_STATE(); - case 268: + case 269: ADVANCE_MAP( - '#', 4099, - '$', 2296, - '(', 2492, - '.', 3109, - '=', 3085, - '_', 3107, - 'i', 3146, - '|', 2254, + '#', 4100, + '$', 2297, + '(', 2493, + '.', 3110, + '=', 3086, + '_', 3108, + 'i', 3147, + '|', 2255, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(291); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); - END_STATE(); - case 269: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '$') ADVANCE(2296); - if (lookahead == '(') ADVANCE(2492); - if (lookahead == '.') ADVANCE(3109); - if (lookahead == '=') ADVANCE(3085); - if (lookahead == '_') ADVANCE(3107); - if (lookahead == '|') ADVANCE(2254); if (lookahead == '\t' || lookahead == ' ') SKIP(292); if (lookahead == '+' || - lookahead == '-') ADVANCE(3077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == '-') ADVANCE(3078); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 270: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '$') ADVANCE(2296); - if (lookahead == '(') ADVANCE(2492); - if (lookahead == '.') ADVANCE(3109); - if (lookahead == '_') ADVANCE(3107); - if (lookahead == '{') ADVANCE(2402); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '$') ADVANCE(2297); + if (lookahead == '(') ADVANCE(2493); + if (lookahead == '.') ADVANCE(3110); + if (lookahead == '=') ADVANCE(3086); + if (lookahead == '_') ADVANCE(3108); + if (lookahead == '|') ADVANCE(2255); if (lookahead == '\t' || - lookahead == ' ') SKIP(294); + lookahead == ' ') SKIP(293); if (lookahead == '+' || - lookahead == '-') ADVANCE(3077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == '-') ADVANCE(3078); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 271: + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '$') ADVANCE(2297); + if (lookahead == '(') ADVANCE(2493); + if (lookahead == '.') ADVANCE(3110); + if (lookahead == '_') ADVANCE(3108); + if (lookahead == '{') ADVANCE(2403); + if (lookahead == '\t' || + lookahead == ' ') SKIP(295); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3078); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); + END_STATE(); + case 272: ADVANCE_MAP( - '#', 4099, - '$', 2296, - '(', 2492, - '.', 2558, - ']', 2292, - '_', 3650, - '\t', 2787, - ' ', 2787, - '+', 3634, - '-', 3634, + '#', 4100, + '$', 2297, + '(', 2493, + '.', 2559, + ']', 2293, + '_', 3651, + '\t', 2788, + ' ', 2788, + '+', 3635, + '-', 3635, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); + lookahead == ',') ADVANCE(2784); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -23975,24 +23425,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); - case 272: + case 273: ADVANCE_MAP( - '#', 4099, - '$', 2296, - '(', 2492, - '.', 3652, - ']', 2292, - '_', 3650, - '\t', 2787, - ' ', 2787, - '+', 3634, - '-', 3634, + '#', 4100, + '$', 2297, + '(', 2493, + '.', 3653, + ']', 2293, + '_', 3651, + '\t', 2788, + ' ', 2788, + '+', 3635, + '-', 3635, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); + lookahead == ',') ADVANCE(2784); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -24000,510 +23450,510 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); - case 273: + case 274: ADVANCE_MAP( - '#', 4099, - '$', 2296, - '(', 2492, - '.', 3887, - '_', 3892, - '}', 2403, - '\t', 2787, - ' ', 2787, - '+', 3874, - '-', 3874, + '#', 4100, + '$', 2297, + '(', 2493, + '.', 3888, + '_', 3893, + '}', 2404, + '\t', 2788, + ' ', 2788, + '+', 3875, + '-', 3875, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3906); + lookahead == ',') ADVANCE(2784); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3907); END_STATE(); - case 274: + case 275: ADVANCE_MAP( - '#', 4099, - '$', 2296, - '-', 2325, - '.', 2547, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'd', 3124, - 'e', 3099, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3195, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - '{', 2402, - 0xb5, 3195, + '#', 4100, + '$', 2297, + '-', 2326, + '.', 2548, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'd', 3125, + 'e', 3100, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3196, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + '{', 2403, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(285); + lookahead == ' ') SKIP(286); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); - case 275: + case 276: ADVANCE_MAP( - '#', 4099, - '$', 2296, - '-', 2325, - '.', 2547, - 'E', 1966, - 'G', 1973, - 'K', 1973, - 'M', 1973, - 'P', 1973, - 'T', 1973, - 'd', 1979, - 'e', 1965, - 'g', 1972, - 'h', 2010, - 'k', 1972, - 'm', 1974, - 'n', 2014, - 'p', 1972, - 's', 1989, - 't', 1972, - 'u', 2014, - 'w', 1993, - 0xb5, 2014, + '#', 4100, + '$', 2297, + '-', 2326, + '.', 2548, + 'E', 1967, + 'G', 1974, + 'K', 1974, + 'M', 1974, + 'P', 1974, + 'T', 1974, + 'd', 1980, + 'e', 1966, + 'g', 1973, + 'h', 2011, + 'k', 1973, + 'm', 1975, + 'n', 2015, + 'p', 1973, + 's', 1990, + 't', 1973, + 'u', 2015, + 'w', 1994, + 0xb5, 2015, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(289); + lookahead == ' ') SKIP(290); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2720); + lookahead == 'b') ADVANCE(2721); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3259); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2036); - END_STATE(); - case 276: - ADVANCE_MAP( - '#', 4099, - '$', 2296, - '-', 2325, - '.', 2796, - ':', 2792, - ';', 2795, - '=', 2878, - '?', 2458, - '\t', 277, - ' ', 277, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(422); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2036); + lookahead == '^') ADVANCE(3260); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2037); END_STATE(); case 277: ADVANCE_MAP( - '#', 4099, - '$', 2296, - '-', 2325, - '.', 2796, - ':', 2792, - ';', 2795, - '?', 2458, - '\t', 277, - ' ', 277, + '#', 4100, + '$', 2297, + '-', 2326, + '.', 2797, + ':', 2793, + ';', 2796, + '=', 2879, + '?', 2459, + '\t', 278, + ' ', 278, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(422); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2036); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(423); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2037); END_STATE(); case 278: ADVANCE_MAP( - '#', 4099, - '$', 2296, - '-', 2325, - '.', 3076, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - '_', 3107, - 'd', 3124, - 'e', 3099, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3195, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - '{', 2402, - 0xb5, 3195, + '#', 4100, + '$', 2297, + '-', 2326, + '.', 2797, + ':', 2793, + ';', 2796, + '?', 2459, + '\t', 278, + ' ', 278, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(285); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(423); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2037); END_STATE(); case 279: ADVANCE_MAP( - '#', 4099, - '$', 2296, - '-', 2325, - '.', 3076, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'd', 3124, - 'e', 3099, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3195, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - '{', 2402, - 0xb5, 3195, + '#', 4100, + '$', 2297, + '-', 2326, + '.', 3077, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + '_', 3108, + 'd', 3125, + 'e', 3100, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3196, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + '{', 2403, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(285); + lookahead == ' ') SKIP(286); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'b') ADVANCE(2715); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 280: ADVANCE_MAP( - '#', 4099, - '$', 2296, - '-', 2325, - '.', 3076, - 'E', 3104, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'd', 3124, - 'e', 3103, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3195, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - '{', 2402, - 0xb5, 3195, + '#', 4100, + '$', 2297, + '-', 2326, + '.', 3077, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'd', 3125, + 'e', 3100, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3196, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + '{', 2403, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(285); + lookahead == ' ') SKIP(286); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 281: ADVANCE_MAP( - '#', 4099, - '$', 2296, - '-', 2325, - '.', 3076, - 'E', 1973, - 'G', 1973, - 'K', 1973, - 'M', 1973, - 'P', 1973, - 'T', 1973, - 'd', 1979, - 'e', 1972, - 'g', 1972, - 'h', 2010, - 'k', 1972, - 'm', 1974, - 'n', 2014, - 'p', 1972, - 's', 1989, - 't', 1972, - 'u', 2014, - 'w', 1993, - 0xb5, 2014, + '#', 4100, + '$', 2297, + '-', 2326, + '.', 3077, + 'E', 3105, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'd', 3125, + 'e', 3104, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3196, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + '{', 2403, + 0xb5, 3196, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(286); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); + END_STATE(); + case 282: + ADVANCE_MAP( + '#', 4100, + '$', 2297, + '-', 2326, + '.', 3077, + 'E', 1974, + 'G', 1974, + 'K', 1974, + 'M', 1974, + 'P', 1974, + 'T', 1974, + 'd', 1980, + 'e', 1973, + 'g', 1973, + 'h', 2011, + 'k', 1973, + 'm', 1975, + 'n', 2015, + 'p', 1973, + 's', 1990, + 't', 1973, + 'u', 2015, + 'w', 1994, + 0xb5, 2015, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(289); + lookahead == ' ') SKIP(290); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2720); + lookahead == 'b') ADVANCE(2721); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3259); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2036); + lookahead == '^') ADVANCE(3260); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2037); END_STATE(); - case 282: + case 283: ADVANCE_MAP( - '#', 4099, - '$', 2296, - '-', 2325, - '.', 3076, - 'E', 1966, - 'G', 1973, - 'K', 1973, - 'M', 1973, - 'P', 1973, - 'T', 1973, - '_', 1977, - 'd', 1979, - 'e', 1965, - 'g', 1972, - 'h', 2010, - 'k', 1972, - 'm', 1974, - 'n', 2014, - 'p', 1972, - 's', 1989, - 't', 1972, - 'u', 2014, - 'w', 1993, - 0xb5, 2014, + '#', 4100, + '$', 2297, + '-', 2326, + '.', 3077, + 'E', 1967, + 'G', 1974, + 'K', 1974, + 'M', 1974, + 'P', 1974, + 'T', 1974, + '_', 1978, + 'd', 1980, + 'e', 1966, + 'g', 1973, + 'h', 2011, + 'k', 1973, + 'm', 1975, + 'n', 2015, + 'p', 1973, + 's', 1990, + 't', 1973, + 'u', 2015, + 'w', 1994, + 0xb5, 2015, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(289); + lookahead == ' ') SKIP(290); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2720); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2591); + lookahead == 'b') ADVANCE(2721); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3259); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2036); + lookahead == '^') ADVANCE(3260); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2037); END_STATE(); - case 283: + case 284: ADVANCE_MAP( - '#', 4099, - '$', 2296, - '-', 2325, - '.', 3076, - 'E', 1966, - 'G', 1973, - 'K', 1973, - 'M', 1973, - 'P', 1973, - 'T', 1973, - 'd', 1979, - 'e', 1965, - 'g', 1972, - 'h', 2010, - 'k', 1972, - 'm', 1974, - 'n', 2014, - 'p', 1972, - 's', 1989, - 't', 1972, - 'u', 2014, - 'w', 1993, - 0xb5, 2014, + '#', 4100, + '$', 2297, + '-', 2326, + '.', 3077, + 'E', 1967, + 'G', 1974, + 'K', 1974, + 'M', 1974, + 'P', 1974, + 'T', 1974, + 'd', 1980, + 'e', 1966, + 'g', 1973, + 'h', 2011, + 'k', 1973, + 'm', 1975, + 'n', 2015, + 'p', 1973, + 's', 1990, + 't', 1973, + 'u', 2015, + 'w', 1994, + 0xb5, 2015, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(289); + lookahead == ' ') SKIP(290); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2720); + lookahead == 'b') ADVANCE(2721); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3259); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2036); + lookahead == '^') ADVANCE(3260); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2037); END_STATE(); - case 284: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '$') ADVANCE(2296); - if (lookahead == '-') ADVANCE(2325); - if (lookahead == '=') ADVANCE(2878); + case 285: + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '$') ADVANCE(2297); + if (lookahead == '-') ADVANCE(2326); + if (lookahead == '=') ADVANCE(2879); if (lookahead == '\t' || - lookahead == ' ') SKIP(289); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2180); + lookahead == ' ') SKIP(290); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2181); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(2036); - END_STATE(); - case 285: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '$') ADVANCE(2296); - if (lookahead == '-') ADVANCE(2325); - if (lookahead == '{') ADVANCE(2402); - if (lookahead == '\t' || - lookahead == ' ') SKIP(285); + (lookahead < ']' || '}' < lookahead)) ADVANCE(2037); END_STATE(); case 286: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '$') ADVANCE(2296); - if (lookahead == '-') ADVANCE(2325); - if (lookahead == '{') ADVANCE(2402); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '$') ADVANCE(2297); + if (lookahead == '-') ADVANCE(2326); + if (lookahead == '{') ADVANCE(2403); if (lookahead == '\t' || - lookahead == ' ') SKIP(285); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(286); END_STATE(); case 287: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '$') ADVANCE(2296); - if (lookahead == '-') ADVANCE(2325); - if (lookahead == '{') ADVANCE(2402); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '$') ADVANCE(2297); + if (lookahead == '-') ADVANCE(2326); + if (lookahead == '{') ADVANCE(2403); if (lookahead == '\t' || - lookahead == ' ') SKIP(287); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2036); + lookahead == ' ') SKIP(286); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 288: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '$') ADVANCE(2296); - if (lookahead == '-') ADVANCE(2325); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '$') ADVANCE(2297); + if (lookahead == '-') ADVANCE(2326); + if (lookahead == '{') ADVANCE(2403); if (lookahead == '\t' || - lookahead == ' ') SKIP(289); + lookahead == ' ') SKIP(288); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2037); + END_STATE(); + case 289: + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '$') ADVANCE(2297); + if (lookahead == '-') ADVANCE(2326); + if (lookahead == '\t' || + lookahead == ' ') SKIP(290); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3259); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2036); + lookahead == '^') ADVANCE(3260); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2037); END_STATE(); - case 289: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '$') ADVANCE(2296); - if (lookahead == '-') ADVANCE(2325); + case 290: + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '$') ADVANCE(2297); + if (lookahead == '-') ADVANCE(2326); if (lookahead == '\t' || - lookahead == ' ') SKIP(289); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2036); + lookahead == ' ') SKIP(290); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2037); END_STATE(); - case 290: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '$') ADVANCE(2296); - if (lookahead == '-') ADVANCE(2335); - if (lookahead == '=') ADVANCE(2878); + case 291: + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '$') ADVANCE(2297); + if (lookahead == '-') ADVANCE(2334); + if (lookahead == '=') ADVANCE(2879); if (lookahead == '\t' || - lookahead == ' ') SKIP(289); + lookahead == ' ') SKIP(290); if (lookahead == '!' || lookahead == '?' || - lookahead == '@') ADVANCE(2936); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2926); + lookahead == '@') ADVANCE(2937); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2927); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '.' < lookahead) && (lookahead < '0' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(2036); - END_STATE(); - case 291: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '$') ADVANCE(2296); - if (lookahead == '.') ADVANCE(447); - if (lookahead == '=') ADVANCE(427); - if (lookahead == 'i') ADVANCE(495); - if (lookahead == '|') ADVANCE(2254); - if (lookahead == '\t' || - lookahead == ' ') SKIP(291); - if (lookahead == '+' || - lookahead == '-') ADVANCE(418); + (lookahead < ']' || '}' < lookahead)) ADVANCE(2037); END_STATE(); case 292: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '$') ADVANCE(2296); - if (lookahead == '.') ADVANCE(447); - if (lookahead == '=') ADVANCE(427); - if (lookahead == '|') ADVANCE(2254); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '$') ADVANCE(2297); + if (lookahead == '.') ADVANCE(448); + if (lookahead == '=') ADVANCE(428); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == '|') ADVANCE(2255); if (lookahead == '\t' || lookahead == ' ') SKIP(292); if (lookahead == '+' || - lookahead == '-') ADVANCE(418); + lookahead == '-') ADVANCE(419); END_STATE(); case 293: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '$') ADVANCE(2296); - if (lookahead == '.') ADVANCE(447); - if (lookahead == ']') ADVANCE(2292); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '$') ADVANCE(2297); + if (lookahead == '.') ADVANCE(448); + if (lookahead == '=') ADVANCE(428); + if (lookahead == '|') ADVANCE(2255); if (lookahead == '\t' || lookahead == ' ') SKIP(293); if (lookahead == '+' || - lookahead == '-') ADVANCE(418); + lookahead == '-') ADVANCE(419); END_STATE(); case 294: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '$') ADVANCE(2296); - if (lookahead == '.') ADVANCE(447); - if (lookahead == '{') ADVANCE(2402); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '$') ADVANCE(2297); + if (lookahead == '.') ADVANCE(448); + if (lookahead == ']') ADVANCE(2293); if (lookahead == '\t' || lookahead == ' ') SKIP(294); if (lookahead == '+' || - lookahead == '-') ADVANCE(418); + lookahead == '-') ADVANCE(419); END_STATE(); case 295: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '$') ADVANCE(2296); - if (lookahead == '.') ADVANCE(447); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '$') ADVANCE(2297); + if (lookahead == '.') ADVANCE(448); + if (lookahead == '{') ADVANCE(2403); if (lookahead == '\t' || lookahead == ' ') SKIP(295); if (lookahead == '+' || - lookahead == '-') ADVANCE(418); + lookahead == '-') ADVANCE(419); END_STATE(); case 296: + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '$') ADVANCE(2297); + if (lookahead == '.') ADVANCE(448); + if (lookahead == '\t' || + lookahead == ' ') SKIP(296); + if (lookahead == '+' || + lookahead == '-') ADVANCE(419); + END_STATE(); + case 297: ADVANCE_MAP( - '#', 4099, - '(', 2492, - '.', 2547, - 'E', 3645, - 'G', 3648, - 'K', 3648, - 'M', 3648, - 'P', 3648, - 'T', 3648, - ']', 2292, - 'd', 3664, - 'e', 3644, - 'g', 3647, - 'h', 3679, - 'k', 3647, - 'm', 3649, - 'n', 3685, - 'p', 3647, - 's', 3669, - 't', 3647, - 'u', 3685, - 'w', 3672, - '}', 2403, - 0xb5, 3685, - '\t', 2787, - ' ', 2787, - 'B', 2714, - 'b', 2714, + '#', 4100, + '(', 2493, + '.', 2548, + 'E', 3646, + 'G', 3649, + 'K', 3649, + 'M', 3649, + 'P', 3649, + 'T', 3649, + ']', 2293, + 'd', 3665, + 'e', 3645, + 'g', 3648, + 'h', 3680, + 'k', 3648, + 'm', 3650, + 'n', 3686, + 'p', 3648, + 's', 3670, + 't', 3648, + 'u', 3686, + 'w', 3673, + '}', 2404, + 0xb5, 3686, + '\t', 2788, + ' ', 2788, + 'B', 2715, + 'b', 2715, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); + lookahead == ',') ADVANCE(2784); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -24511,56 +23961,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); - case 297: + case 298: ADVANCE_MAP( - '#', 4099, - '(', 2492, - '.', 2547, - 'E', 3878, - 'G', 3880, - 'K', 3880, - 'M', 3880, - 'P', 3880, - 'T', 3880, - 'd', 3893, - 'e', 3877, - 'g', 3879, - 'h', 3899, - 'k', 3879, - 'm', 3881, - 'n', 3900, - 'p', 3879, - 's', 3896, - 't', 3879, - 'u', 3900, - 'w', 3897, - '}', 2403, - 0xb5, 3900, - '\t', 2787, - ' ', 2787, - 'B', 2714, - 'b', 2714, + '#', 4100, + '(', 2493, + '.', 2548, + 'E', 3879, + 'G', 3881, + 'K', 3881, + 'M', 3881, + 'P', 3881, + 'T', 3881, + 'd', 3894, + 'e', 3878, + 'g', 3880, + 'h', 3900, + 'k', 3880, + 'm', 3882, + 'n', 3901, + 'p', 3880, + 's', 3897, + 't', 3880, + 'u', 3901, + 'w', 3898, + '}', 2404, + 0xb5, 3901, + '\t', 2788, + ' ', 2788, + 'B', 2715, + 'b', 2715, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + lookahead == ',') ADVANCE(2784); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); - case 298: + case 299: ADVANCE_MAP( - '#', 4099, - '(', 2492, - '.', 2547, - ']', 2292, - '}', 2403, - '\t', 2787, - ' ', 2787, - 'E', 3658, - 'e', 3658, + '#', 4100, + '(', 2493, + '.', 2548, + ']', 2293, + '}', 2404, + '\t', 2788, + ' ', 2788, + 'E', 3659, + 'e', 3659, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); + lookahead == ',') ADVANCE(2784); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -24568,37 +24018,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); - case 299: + case 300: ADVANCE_MAP( - '#', 4099, - '(', 2492, - '.', 2547, - '}', 2403, - '\t', 2787, - ' ', 2787, - 'E', 3890, - 'e', 3890, + '#', 4100, + '(', 2493, + '.', 2548, + '}', 2404, + '\t', 2788, + ' ', 2788, + 'E', 3891, + 'e', 3891, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + lookahead == ',') ADVANCE(2784); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); - case 300: + case 301: ADVANCE_MAP( - '#', 4099, - '(', 2492, - '.', 2533, - ']', 2292, - '}', 2403, - '\t', 2787, - ' ', 2787, - 'E', 3890, - 'e', 3890, + '#', 4100, + '(', 2493, + '.', 2534, + ']', 2293, + '}', 2404, + '\t', 2788, + ' ', 2788, + 'E', 3891, + 'e', 3891, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); + lookahead == ',') ADVANCE(2784); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -24607,21 +24057,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3906); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3907); END_STATE(); - case 301: + case 302: ADVANCE_MAP( - '#', 4099, - '(', 2492, - '.', 2533, - ']', 2292, - '\t', 2787, - ' ', 2787, - 'E', 3658, - 'e', 3658, + '#', 4100, + '(', 2493, + '.', 2534, + ']', 2293, + '\t', 2788, + ' ', 2788, + 'E', 3659, + 'e', 3659, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); + lookahead == ',') ADVANCE(2784); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -24629,43 +24079,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); - case 302: + case 303: ADVANCE_MAP( - '#', 4099, - '(', 2492, - '.', 3632, - 'E', 3645, - 'G', 3648, - 'K', 3648, - 'M', 3648, - 'P', 3648, - 'T', 3648, - ']', 2292, - '_', 3650, - 'd', 3664, - 'e', 3644, - 'g', 3647, - 'h', 3679, - 'k', 3647, - 'm', 3649, - 'n', 3685, - 'p', 3647, - 's', 3669, - 't', 3647, - 'u', 3685, - 'w', 3672, - '}', 2403, - 0xb5, 3685, - '\t', 2787, - ' ', 2787, - 'B', 2714, - 'b', 2714, + '#', 4100, + '(', 2493, + '.', 3633, + 'E', 3646, + 'G', 3649, + 'K', 3649, + 'M', 3649, + 'P', 3649, + 'T', 3649, + ']', 2293, + '_', 3651, + 'd', 3665, + 'e', 3645, + 'g', 3648, + 'h', 3680, + 'k', 3648, + 'm', 3650, + 'n', 3686, + 'p', 3648, + 's', 3670, + 't', 3648, + 'u', 3686, + 'w', 3673, + '}', 2404, + 0xb5, 3686, + '\t', 2788, + ' ', 2788, + 'B', 2715, + 'b', 2715, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); + lookahead == ',') ADVANCE(2784); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -24674,41 +24124,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); - case 303: + case 304: ADVANCE_MAP( - '#', 4099, - '(', 2492, - '.', 3632, - 'E', 3645, - 'G', 3648, - 'K', 3648, - 'M', 3648, - 'P', 3648, - 'T', 3648, - ']', 2292, - 'd', 3664, - 'e', 3644, - 'g', 3647, - 'h', 3679, - 'k', 3647, - 'm', 3649, - 'n', 3685, - 'p', 3647, - 's', 3669, - 't', 3647, - 'u', 3685, - 'w', 3672, - '}', 2403, - 0xb5, 3685, - '\t', 2787, - ' ', 2787, - 'B', 2714, - 'b', 2714, + '#', 4100, + '(', 2493, + '.', 3633, + 'E', 3646, + 'G', 3649, + 'K', 3649, + 'M', 3649, + 'P', 3649, + 'T', 3649, + ']', 2293, + 'd', 3665, + 'e', 3645, + 'g', 3648, + 'h', 3680, + 'k', 3648, + 'm', 3650, + 'n', 3686, + 'p', 3648, + 's', 3670, + 't', 3648, + 'u', 3686, + 'w', 3673, + '}', 2404, + 0xb5, 3686, + '\t', 2788, + ' ', 2788, + 'B', 2715, + 'b', 2715, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); + lookahead == ',') ADVANCE(2784); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -24716,41 +24166,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); - case 304: + case 305: ADVANCE_MAP( - '#', 4099, - '(', 2492, - '.', 3632, - 'E', 3648, - 'G', 3648, - 'K', 3648, - 'M', 3648, - 'P', 3648, - 'T', 3648, - ']', 2292, - 'd', 3664, - 'e', 3647, - 'g', 3647, - 'h', 3679, - 'k', 3647, - 'm', 3649, - 'n', 3685, - 'p', 3647, - 's', 3669, - 't', 3647, - 'u', 3685, - 'w', 3672, - '}', 2403, - 0xb5, 3685, - '\t', 2787, - ' ', 2787, - 'B', 2714, - 'b', 2714, + '#', 4100, + '(', 2493, + '.', 3633, + 'E', 3649, + 'G', 3649, + 'K', 3649, + 'M', 3649, + 'P', 3649, + 'T', 3649, + ']', 2293, + 'd', 3665, + 'e', 3648, + 'g', 3648, + 'h', 3680, + 'k', 3648, + 'm', 3650, + 'n', 3686, + 'p', 3648, + 's', 3670, + 't', 3648, + 'u', 3686, + 'w', 3673, + '}', 2404, + 0xb5, 3686, + '\t', 2788, + ' ', 2788, + 'B', 2715, + 'b', 2715, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); + lookahead == ',') ADVANCE(2784); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -24758,24 +24208,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); - case 305: + case 306: ADVANCE_MAP( - '#', 4099, - '(', 2492, - '.', 3632, - ']', 2292, - '_', 3650, - '}', 2403, - '\t', 2787, - ' ', 2787, - 'E', 3658, - 'e', 3658, + '#', 4100, + '(', 2493, + '.', 3633, + ']', 2293, + '_', 3651, + '}', 2404, + '\t', 2788, + ' ', 2788, + 'E', 3659, + 'e', 3659, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); + lookahead == ',') ADVANCE(2784); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -24784,22 +24234,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); - case 306: + case 307: ADVANCE_MAP( - '#', 4099, - '(', 2492, - '.', 3632, - ']', 2292, - '}', 2403, - '\t', 2787, - ' ', 2787, - 'E', 3658, - 'e', 3658, + '#', 4100, + '(', 2493, + '.', 3633, + ']', 2293, + '}', 2404, + '\t', 2788, + ' ', 2788, + 'E', 3659, + 'e', 3659, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); + lookahead == ',') ADVANCE(2784); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -24807,18 +24257,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); - case 307: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '(') ADVANCE(2492); - if (lookahead == '.') ADVANCE(3632); - if (lookahead == ']') ADVANCE(2292); - if (lookahead == '}') ADVANCE(2403); + case 308: + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '(') ADVANCE(2493); + if (lookahead == '.') ADVANCE(3633); + if (lookahead == ']') ADVANCE(2293); + if (lookahead == '}') ADVANCE(2404); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2787); + lookahead == ' ') ADVANCE(2788); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); + lookahead == ',') ADVANCE(2784); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -24826,169 +24276,169 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); - END_STATE(); - case 308: - ADVANCE_MAP( - '#', 4099, - '(', 2492, - '.', 3870, - 'E', 3878, - 'G', 3880, - 'K', 3880, - 'M', 3880, - 'P', 3880, - 'T', 3880, - '_', 3892, - 'd', 3893, - 'e', 3877, - 'g', 3879, - 'h', 3899, - 'k', 3879, - 'm', 3881, - 'n', 3900, - 'p', 3879, - 's', 3896, - 't', 3879, - 'u', 3900, - 'w', 3897, - '}', 2403, - 0xb5, 3900, - '\t', 2787, - ' ', 2787, - 'B', 2714, - 'b', 2714, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); case 309: ADVANCE_MAP( - '#', 4099, - '(', 2492, - '.', 3870, - 'E', 3878, - 'G', 3880, - 'K', 3880, - 'M', 3880, - 'P', 3880, - 'T', 3880, - 'd', 3893, - 'e', 3877, - 'g', 3879, - 'h', 3899, - 'k', 3879, - 'm', 3881, - 'n', 3900, - 'p', 3879, - 's', 3896, - 't', 3879, - 'u', 3900, - 'w', 3897, - '}', 2403, - 0xb5, 3900, - '\t', 2787, - ' ', 2787, - 'B', 2714, - 'b', 2714, + '#', 4100, + '(', 2493, + '.', 3871, + 'E', 3879, + 'G', 3881, + 'K', 3881, + 'M', 3881, + 'P', 3881, + 'T', 3881, + '_', 3893, + 'd', 3894, + 'e', 3878, + 'g', 3880, + 'h', 3900, + 'k', 3880, + 'm', 3882, + 'n', 3901, + 'p', 3880, + 's', 3897, + 't', 3880, + 'u', 3901, + 'w', 3898, + '}', 2404, + 0xb5, 3901, + '\t', 2788, + ' ', 2788, + 'B', 2715, + 'b', 2715, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + lookahead == ',') ADVANCE(2784); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 310: ADVANCE_MAP( - '#', 4099, - '(', 2492, - '.', 3870, - 'E', 3880, - 'G', 3880, - 'K', 3880, - 'M', 3880, - 'P', 3880, - 'T', 3880, - 'd', 3893, - 'e', 3879, - 'g', 3879, - 'h', 3899, - 'k', 3879, - 'm', 3881, - 'n', 3900, - 'p', 3879, - 's', 3896, - 't', 3879, - 'u', 3900, - 'w', 3897, - '}', 2403, - 0xb5, 3900, - '\t', 2787, - ' ', 2787, - 'B', 2714, - 'b', 2714, + '#', 4100, + '(', 2493, + '.', 3871, + 'E', 3879, + 'G', 3881, + 'K', 3881, + 'M', 3881, + 'P', 3881, + 'T', 3881, + 'd', 3894, + 'e', 3878, + 'g', 3880, + 'h', 3900, + 'k', 3880, + 'm', 3882, + 'n', 3901, + 'p', 3880, + 's', 3897, + 't', 3880, + 'u', 3901, + 'w', 3898, + '}', 2404, + 0xb5, 3901, + '\t', 2788, + ' ', 2788, + 'B', 2715, + 'b', 2715, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + lookahead == ',') ADVANCE(2784); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 311: ADVANCE_MAP( - '#', 4099, - '(', 2492, - '.', 3870, - '_', 3892, - '}', 2403, - '\t', 2787, - ' ', 2787, - 'E', 3890, - 'e', 3890, + '#', 4100, + '(', 2493, + '.', 3871, + 'E', 3881, + 'G', 3881, + 'K', 3881, + 'M', 3881, + 'P', 3881, + 'T', 3881, + 'd', 3894, + 'e', 3880, + 'g', 3880, + 'h', 3900, + 'k', 3880, + 'm', 3882, + 'n', 3901, + 'p', 3880, + 's', 3897, + 't', 3880, + 'u', 3901, + 'w', 3898, + '}', 2404, + 0xb5, 3901, + '\t', 2788, + ' ', 2788, + 'B', 2715, + 'b', 2715, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + lookahead == ',') ADVANCE(2784); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 312: ADVANCE_MAP( - '#', 4099, - '(', 2492, - '.', 3870, - '}', 2403, - '\t', 2787, - ' ', 2787, - 'E', 3890, - 'e', 3890, + '#', 4100, + '(', 2493, + '.', 3871, + '_', 3893, + '}', 2404, + '\t', 2788, + ' ', 2788, + 'E', 3891, + 'e', 3891, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + lookahead == ',') ADVANCE(2784); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 313: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '(') ADVANCE(2492); - if (lookahead == '.') ADVANCE(3870); - if (lookahead == '}') ADVANCE(2403); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2787); + ADVANCE_MAP( + '#', 4100, + '(', 2493, + '.', 3871, + '}', 2404, + '\t', 2788, + ' ', 2788, + 'E', 3891, + 'e', 3891, + ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + lookahead == ',') ADVANCE(2784); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 314: + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '(') ADVANCE(2493); + if (lookahead == '.') ADVANCE(3871); + if (lookahead == '}') ADVANCE(2404); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2788); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(2784); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); + END_STATE(); + case 315: ADVANCE_MAP( - '#', 4099, - '(', 2492, - ']', 2292, - '_', 3650, - '\t', 2787, - ' ', 2787, - 'E', 3658, - 'e', 3658, + '#', 4100, + '(', 2493, + ']', 2293, + '_', 3651, + '\t', 2788, + ' ', 2788, + 'E', 3659, + 'e', 3659, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); + lookahead == ',') ADVANCE(2784); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -24997,18 +24447,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); - case 315: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '(') ADVANCE(2492); - if (lookahead == ']') ADVANCE(2292); + case 316: + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '(') ADVANCE(2493); + if (lookahead == ']') ADVANCE(2293); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2787); + lookahead == ' ') ADVANCE(2788); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3658); + lookahead == 'e') ADVANCE(3659); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); + lookahead == ',') ADVANCE(2784); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -25016,16 +24466,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); - case 316: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '(') ADVANCE(2492); - if (lookahead == ']') ADVANCE(2292); + case 317: + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '(') ADVANCE(2493); + if (lookahead == ']') ADVANCE(2293); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2787); + lookahead == ' ') ADVANCE(2788); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); + lookahead == ',') ADVANCE(2784); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -25033,253 +24483,253 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3722); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3723); END_STATE(); - case 317: + case 318: ADVANCE_MAP( - '#', 4099, - '(', 2492, - '_', 3892, - '}', 2403, - '\t', 2787, - ' ', 2787, - 'E', 3890, - 'e', 3890, + '#', 4100, + '(', 2493, + '_', 3893, + '}', 2404, + '\t', 2788, + ' ', 2788, + 'E', 3891, + 'e', 3891, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + lookahead == ',') ADVANCE(2784); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); - case 318: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '(') ADVANCE(2492); - if (lookahead == '}') ADVANCE(2403); + case 319: + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '(') ADVANCE(2493); + if (lookahead == '}') ADVANCE(2404); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2787); + lookahead == ' ') ADVANCE(2788); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3890); + lookahead == 'e') ADVANCE(3891); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + lookahead == ',') ADVANCE(2784); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); - case 319: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '(') ADVANCE(2492); - if (lookahead == '}') ADVANCE(2403); + case 320: + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '(') ADVANCE(2493); + if (lookahead == '}') ADVANCE(2404); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2787); + lookahead == ' ') ADVANCE(2788); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + lookahead == ',') ADVANCE(2784); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); - case 320: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == ',') ADVANCE(2295); - if (lookahead == ']') ADVANCE(2292); + case 321: + if (lookahead == '#') ADVANCE(4100); + if (lookahead == ',') ADVANCE(2296); + if (lookahead == ']') ADVANCE(2293); if (lookahead == '\t' || - lookahead == ' ') SKIP(320); + lookahead == ' ') SKIP(321); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2736); - END_STATE(); - case 321: - ADVANCE_MAP( - '#', 4099, - ',', 2783, - '.', 2796, - ';', 2795, - '?', 2458, - ']', 2292, - '\t', 2785, - ' ', 2785, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2786); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2737); END_STATE(); case 322: ADVANCE_MAP( - '#', 4099, - '-', 432, - ':', 2792, - '<', 1792, - '=', 833, - '>', 2313, - '@', 2316, - 'h', 1992, - 'u', 2016, - '{', 2402, + '#', 4100, + ',', 2784, + '.', 2797, + ';', 2796, + '?', 2459, + ']', 2293, + '\t', 2786, + ' ', 2786, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(323); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2036); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2787); END_STATE(); case 323: ADVANCE_MAP( - '#', 4099, - '-', 432, - ':', 2792, - '=', 833, - '>', 2313, - 'h', 1992, - 'u', 2016, - '{', 2402, + '#', 4100, + '-', 433, + ':', 2793, + '<', 1793, + '=', 834, + '>', 2314, + '@', 2317, + 'h', 1993, + 'u', 2017, + '{', 2403, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(323); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2036); + lookahead == ' ') SKIP(324); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2037); END_STATE(); case 324: ADVANCE_MAP( - '#', 4099, - '.', 2547, - '=', 3085, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'd', 3124, - 'e', 3099, - 'g', 3103, - 'h', 3180, - 'i', 3146, - 'k', 3103, - 'm', 3106, - 'n', 3195, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - '|', 2254, - 0xb5, 3195, + '#', 4100, + '-', 433, + ':', 2793, + '=', 834, + '>', 2314, + 'h', 1993, + 'u', 2017, + '{', 2403, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(356); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(324); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2037); END_STATE(); case 325: ADVANCE_MAP( - '#', 4099, - '.', 2547, - '=', 3085, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'd', 3124, - 'e', 3099, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3195, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - '|', 2254, - 0xb5, 3195, + '#', 4100, + '.', 2548, + '=', 3086, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'd', 3125, + 'e', 3100, + 'g', 3104, + 'h', 3181, + 'i', 3147, + 'k', 3104, + 'm', 3107, + 'n', 3196, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + '|', 2255, + 0xb5, 3196, ); if (lookahead == '\t' || lookahead == ' ') SKIP(357); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 326: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '.') ADVANCE(2547); - if (lookahead == '=') ADVANCE(3085); - if (lookahead == 'i') ADVANCE(3146); - if (lookahead == '|') ADVANCE(2254); + ADVANCE_MAP( + '#', 4100, + '.', 2548, + '=', 3086, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'd', 3125, + 'e', 3100, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3196, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + '|', 2255, + 0xb5, 3196, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(356); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3118); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(358); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 327: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '.') ADVANCE(2547); - if (lookahead == '=') ADVANCE(3085); - if (lookahead == '|') ADVANCE(2254); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '.') ADVANCE(2548); + if (lookahead == '=') ADVANCE(3086); + if (lookahead == 'i') ADVANCE(3147); + if (lookahead == '|') ADVANCE(2255); if (lookahead == '\t' || lookahead == ' ') SKIP(357); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3118); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'e') ADVANCE(3119); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 328: + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '.') ADVANCE(2548); + if (lookahead == '=') ADVANCE(3086); + if (lookahead == '|') ADVANCE(2255); + if (lookahead == '\t' || + lookahead == ' ') SKIP(358); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3119); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); + END_STATE(); + case 329: ADVANCE_MAP( - '#', 4099, - '.', 2547, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'd', 3124, - 'e', 3099, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3195, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - '{', 2402, - 0xb5, 3195, + '#', 4100, + '.', 2548, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'd', 3125, + 'e', 3100, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3196, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + '{', 2403, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(367); + lookahead == ' ') SKIP(368); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); - case 329: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '.') ADVANCE(2547); - if (lookahead == '{') ADVANCE(2402); + case 330: + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '.') ADVANCE(2548); + if (lookahead == '{') ADVANCE(2403); if (lookahead == '\t' || - lookahead == ' ') SKIP(367); + lookahead == ' ') SKIP(368); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3118); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'e') ADVANCE(3119); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); - case 330: + case 331: ADVANCE_MAP( - '#', 4099, - '.', 2802, - ':', 2289, - '<', 1792, - '>', 2313, - '?', 2458, - '@', 2316, - '[', 2291, - ']', 2292, - 'c', 1985, - 'e', 2011, - 'f', 2020, - 'i', 1999, - 'o', 2002, - 'v', 1980, - '}', 2403, - '\t', 2787, - ' ', 2787, + '#', 4100, + '.', 2803, + ':', 2290, + '<', 1793, + '>', 2314, + '?', 2459, + '@', 2317, + '[', 2292, + ']', 2293, + 'c', 1986, + 'e', 2012, + 'f', 2021, + 'i', 2000, + 'o', 2003, + 'v', 1981, + '}', 2404, + '\t', 2788, + ' ', 2788, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); + lookahead == ',') ADVANCE(2784); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && @@ -25287,696 +24737,696 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '^' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2036); - END_STATE(); - case 331: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '.') ADVANCE(2557); - if (lookahead == '_') ADVANCE(3107); - if (lookahead == '\t' || - lookahead == ' ') SKIP(354); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2037); END_STATE(); case 332: - ADVANCE_MAP( - '#', 4099, - '.', 3076, - '=', 3085, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - '_', 3107, - 'd', 3124, - 'e', 3099, - 'g', 3103, - 'h', 3180, - 'i', 3146, - 'k', 3103, - 'm', 3106, - 'n', 3195, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - '|', 2254, - 0xb5, 3195, - ); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '.') ADVANCE(2558); + if (lookahead == '_') ADVANCE(3108); if (lookahead == '\t' || - lookahead == ' ') SKIP(356); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(355); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3078); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 333: ADVANCE_MAP( - '#', 4099, - '.', 3076, - '=', 3085, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - '_', 3107, - 'd', 3124, - 'e', 3099, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3195, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - '|', 2254, - 0xb5, 3195, + '#', 4100, + '.', 3077, + '=', 3086, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + '_', 3108, + 'd', 3125, + 'e', 3100, + 'g', 3104, + 'h', 3181, + 'i', 3147, + 'k', 3104, + 'm', 3107, + 'n', 3196, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + '|', 2255, + 0xb5, 3196, ); if (lookahead == '\t' || lookahead == ' ') SKIP(357); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'b') ADVANCE(2715); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 334: ADVANCE_MAP( - '#', 4099, - '.', 3076, - '=', 3085, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'd', 3124, - 'e', 3099, - 'g', 3103, - 'h', 3180, - 'i', 3146, - 'k', 3103, - 'm', 3106, - 'n', 3195, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - '|', 2254, - 0xb5, 3195, + '#', 4100, + '.', 3077, + '=', 3086, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + '_', 3108, + 'd', 3125, + 'e', 3100, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3196, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + '|', 2255, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(356); + lookahead == ' ') SKIP(358); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'b') ADVANCE(2715); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 335: ADVANCE_MAP( - '#', 4099, - '.', 3076, - '=', 3085, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'd', 3124, - 'e', 3099, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3195, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - '|', 2254, - 0xb5, 3195, + '#', 4100, + '.', 3077, + '=', 3086, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'd', 3125, + 'e', 3100, + 'g', 3104, + 'h', 3181, + 'i', 3147, + 'k', 3104, + 'm', 3107, + 'n', 3196, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + '|', 2255, + 0xb5, 3196, ); if (lookahead == '\t' || lookahead == ' ') SKIP(357); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 336: ADVANCE_MAP( - '#', 4099, - '.', 3076, - '=', 3085, - 'E', 3104, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'd', 3124, - 'e', 3103, - 'g', 3103, - 'h', 3180, - 'i', 3146, - 'k', 3103, - 'm', 3106, - 'n', 3195, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - '|', 2254, - 0xb5, 3195, + '#', 4100, + '.', 3077, + '=', 3086, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'd', 3125, + 'e', 3100, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3196, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + '|', 2255, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(356); + lookahead == ' ') SKIP(358); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 337: ADVANCE_MAP( - '#', 4099, - '.', 3076, - '=', 3085, - 'E', 3104, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'd', 3124, - 'e', 3103, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3195, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - '|', 2254, - 0xb5, 3195, + '#', 4100, + '.', 3077, + '=', 3086, + 'E', 3105, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'd', 3125, + 'e', 3104, + 'g', 3104, + 'h', 3181, + 'i', 3147, + 'k', 3104, + 'm', 3107, + 'n', 3196, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + '|', 2255, + 0xb5, 3196, ); if (lookahead == '\t' || lookahead == ' ') SKIP(357); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 338: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '.') ADVANCE(3076); - if (lookahead == '=') ADVANCE(3085); - if (lookahead == '_') ADVANCE(3107); - if (lookahead == 'i') ADVANCE(3146); - if (lookahead == '|') ADVANCE(2254); + ADVANCE_MAP( + '#', 4100, + '.', 3077, + '=', 3086, + 'E', 3105, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'd', 3125, + 'e', 3104, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3196, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + '|', 2255, + 0xb5, 3196, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(356); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3118); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(358); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 339: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '.') ADVANCE(3076); - if (lookahead == '=') ADVANCE(3085); - if (lookahead == '_') ADVANCE(3107); - if (lookahead == '|') ADVANCE(2254); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '.') ADVANCE(3077); + if (lookahead == '=') ADVANCE(3086); + if (lookahead == '_') ADVANCE(3108); + if (lookahead == 'i') ADVANCE(3147); + if (lookahead == '|') ADVANCE(2255); if (lookahead == '\t' || lookahead == ' ') SKIP(357); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3118); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'e') ADVANCE(3119); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 340: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '.') ADVANCE(3076); - if (lookahead == '=') ADVANCE(3085); - if (lookahead == 'i') ADVANCE(3146); - if (lookahead == '|') ADVANCE(2254); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '.') ADVANCE(3077); + if (lookahead == '=') ADVANCE(3086); + if (lookahead == '_') ADVANCE(3108); + if (lookahead == '|') ADVANCE(2255); if (lookahead == '\t' || - lookahead == ' ') SKIP(356); + lookahead == ' ') SKIP(358); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3118); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'e') ADVANCE(3119); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 341: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '.') ADVANCE(3076); - if (lookahead == '=') ADVANCE(3085); - if (lookahead == 'i') ADVANCE(3146); - if (lookahead == '|') ADVANCE(2254); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '.') ADVANCE(3077); + if (lookahead == '=') ADVANCE(3086); + if (lookahead == 'i') ADVANCE(3147); + if (lookahead == '|') ADVANCE(2255); if (lookahead == '\t' || - lookahead == ' ') SKIP(356); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(357); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3119); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 342: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '.') ADVANCE(3076); - if (lookahead == '=') ADVANCE(3085); - if (lookahead == '|') ADVANCE(2254); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '.') ADVANCE(3077); + if (lookahead == '=') ADVANCE(3086); + if (lookahead == 'i') ADVANCE(3147); + if (lookahead == '|') ADVANCE(2255); if (lookahead == '\t' || lookahead == ' ') SKIP(357); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3118); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 343: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '.') ADVANCE(3076); - if (lookahead == '=') ADVANCE(3085); - if (lookahead == '|') ADVANCE(2254); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '.') ADVANCE(3077); + if (lookahead == '=') ADVANCE(3086); + if (lookahead == '|') ADVANCE(2255); if (lookahead == '\t' || - lookahead == ' ') SKIP(357); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(358); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3119); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 344: - ADVANCE_MAP( - '#', 4099, - '.', 3076, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - '_', 3107, - 'd', 3124, - 'e', 3099, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3195, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - '{', 2402, - 0xb5, 3195, - ); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '.') ADVANCE(3077); + if (lookahead == '=') ADVANCE(3086); + if (lookahead == '|') ADVANCE(2255); if (lookahead == '\t' || - lookahead == ' ') SKIP(367); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(358); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 345: ADVANCE_MAP( - '#', 4099, - '.', 3076, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'd', 3124, - 'e', 3099, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3195, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - '{', 2402, - 0xb5, 3195, + '#', 4100, + '.', 3077, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + '_', 3108, + 'd', 3125, + 'e', 3100, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3196, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + '{', 2403, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(367); + lookahead == ' ') SKIP(368); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'b') ADVANCE(2715); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 346: ADVANCE_MAP( - '#', 4099, - '.', 3076, - 'E', 3104, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'd', 3124, - 'e', 3103, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3195, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - '{', 2402, - 0xb5, 3195, + '#', 4100, + '.', 3077, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'd', 3125, + 'e', 3100, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3196, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + '{', 2403, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(367); + lookahead == ' ') SKIP(368); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 347: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '.') ADVANCE(3076); - if (lookahead == '_') ADVANCE(3107); - if (lookahead == '{') ADVANCE(2402); + ADVANCE_MAP( + '#', 4100, + '.', 3077, + 'E', 3105, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'd', 3125, + 'e', 3104, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3196, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + '{', 2403, + 0xb5, 3196, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(367); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3118); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(368); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 348: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '.') ADVANCE(3076); - if (lookahead == '{') ADVANCE(2402); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '.') ADVANCE(3077); + if (lookahead == '_') ADVANCE(3108); + if (lookahead == '{') ADVANCE(2403); if (lookahead == '\t' || - lookahead == ' ') SKIP(367); + lookahead == ' ') SKIP(368); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3118); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'e') ADVANCE(3119); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 349: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '.') ADVANCE(3076); - if (lookahead == '{') ADVANCE(2402); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '.') ADVANCE(3077); + if (lookahead == '{') ADVANCE(2403); if (lookahead == '\t' || - lookahead == ' ') SKIP(367); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(368); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3119); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 350: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '.') ADVANCE(2533); - if (lookahead == '=') ADVANCE(3085); - if (lookahead == 'i') ADVANCE(3146); - if (lookahead == '|') ADVANCE(2254); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '.') ADVANCE(3077); + if (lookahead == '{') ADVANCE(2403); if (lookahead == '\t' || - lookahead == ' ') SKIP(356); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3118); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(368); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 351: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '.') ADVANCE(2533); - if (lookahead == '=') ADVANCE(3085); - if (lookahead == '|') ADVANCE(2254); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '.') ADVANCE(2534); + if (lookahead == '=') ADVANCE(3086); + if (lookahead == 'i') ADVANCE(3147); + if (lookahead == '|') ADVANCE(2255); if (lookahead == '\t' || lookahead == ' ') SKIP(357); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3118); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'e') ADVANCE(3119); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 352: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '.') ADVANCE(2533); - if (lookahead == '{') ADVANCE(2402); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '.') ADVANCE(2534); + if (lookahead == '=') ADVANCE(3086); + if (lookahead == '|') ADVANCE(2255); if (lookahead == '\t' || - lookahead == ' ') SKIP(367); + lookahead == ' ') SKIP(358); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3118); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'e') ADVANCE(3119); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 353: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '.') ADVANCE(3109); - if (lookahead == '_') ADVANCE(3107); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '.') ADVANCE(2534); + if (lookahead == '{') ADVANCE(2403); if (lookahead == '\t' || - lookahead == ' ') SKIP(354); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(368); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3119); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 354: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '.') ADVANCE(447); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '.') ADVANCE(3110); + if (lookahead == '_') ADVANCE(3108); if (lookahead == '\t' || - lookahead == ' ') SKIP(354); + lookahead == ' ') SKIP(355); if (lookahead == '+' || - lookahead == '-') ADVANCE(418); + lookahead == '-') ADVANCE(3078); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 355: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == ':') ADVANCE(2792); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '.') ADVANCE(448); if (lookahead == '\t' || lookahead == ' ') SKIP(355); + if (lookahead == '+' || + lookahead == '-') ADVANCE(419); END_STATE(); case 356: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '=') ADVANCE(427); - if (lookahead == 'i') ADVANCE(495); - if (lookahead == '|') ADVANCE(2254); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == ':') ADVANCE(2793); if (lookahead == '\t' || lookahead == ' ') SKIP(356); END_STATE(); case 357: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '=') ADVANCE(427); - if (lookahead == '|') ADVANCE(2254); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '=') ADVANCE(428); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == '|') ADVANCE(2255); if (lookahead == '\t' || lookahead == ' ') SKIP(357); END_STATE(); case 358: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '=') ADVANCE(2878); - if (lookahead == '{') ADVANCE(2402); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '=') ADVANCE(428); + if (lookahead == '|') ADVANCE(2255); if (lookahead == '\t' || - lookahead == ' ') SKIP(367); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + lookahead == ' ') SKIP(358); END_STATE(); case 359: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '=') ADVANCE(3085); - if (lookahead == '_') ADVANCE(3107); - if (lookahead == 'i') ADVANCE(3146); - if (lookahead == '|') ADVANCE(2254); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '=') ADVANCE(2879); + if (lookahead == '{') ADVANCE(2403); if (lookahead == '\t' || - lookahead == ' ') SKIP(356); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3118); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(368); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 360: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '=') ADVANCE(3085); - if (lookahead == '_') ADVANCE(3107); - if (lookahead == '|') ADVANCE(2254); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '=') ADVANCE(3086); + if (lookahead == '_') ADVANCE(3108); + if (lookahead == 'i') ADVANCE(3147); + if (lookahead == '|') ADVANCE(2255); if (lookahead == '\t' || lookahead == ' ') SKIP(357); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3118); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'e') ADVANCE(3119); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 361: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '=') ADVANCE(3085); - if (lookahead == 'i') ADVANCE(3146); - if (lookahead == '|') ADVANCE(2254); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '=') ADVANCE(3086); + if (lookahead == '_') ADVANCE(3108); + if (lookahead == '|') ADVANCE(2255); if (lookahead == '\t' || - lookahead == ' ') SKIP(356); + lookahead == ' ') SKIP(358); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3118); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'e') ADVANCE(3119); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 362: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '=') ADVANCE(3085); - if (lookahead == 'i') ADVANCE(3146); - if (lookahead == '|') ADVANCE(2254); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '=') ADVANCE(3086); + if (lookahead == 'i') ADVANCE(3147); + if (lookahead == '|') ADVANCE(2255); if (lookahead == '\t' || - lookahead == ' ') SKIP(356); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(357); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3119); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 363: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '=') ADVANCE(3085); - if (lookahead == '|') ADVANCE(2254); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '=') ADVANCE(3086); + if (lookahead == 'i') ADVANCE(3147); + if (lookahead == '|') ADVANCE(2255); if (lookahead == '\t' || lookahead == ' ') SKIP(357); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3118); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 364: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '=') ADVANCE(3085); - if (lookahead == '|') ADVANCE(2254); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '=') ADVANCE(3086); + if (lookahead == '|') ADVANCE(2255); if (lookahead == '\t' || - lookahead == ' ') SKIP(357); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(358); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3119); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 365: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '_') ADVANCE(3107); - if (lookahead == '{') ADVANCE(2402); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '=') ADVANCE(3086); + if (lookahead == '|') ADVANCE(2255); if (lookahead == '\t' || - lookahead == ' ') SKIP(367); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3118); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(358); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 366: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == 'i') ADVANCE(2001); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '_') ADVANCE(3108); + if (lookahead == '{') ADVANCE(2403); if (lookahead == '\t' || - lookahead == ' ') SKIP(366); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2036); + lookahead == ' ') SKIP(368); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3119); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 367: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '{') ADVANCE(2402); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == 'i') ADVANCE(2002); if (lookahead == '\t' || lookahead == ' ') SKIP(367); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2037); END_STATE(); case 368: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '{') ADVANCE(2402); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '{') ADVANCE(2403); if (lookahead == '\t' || - lookahead == ' ') SKIP(367); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3118); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(368); END_STATE(); case 369: - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '{') ADVANCE(2402); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '{') ADVANCE(2403); if (lookahead == '\t' || - lookahead == ' ') SKIP(367); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(368); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3119); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 370: - if (lookahead == '#') ADVANCE(4099); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '{') ADVANCE(2403); if (lookahead == '\t' || - lookahead == ' ') SKIP(370); + lookahead == ' ') SKIP(368); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 371: - if (lookahead == '#') ADVANCE(4099); + if (lookahead == '#') ADVANCE(4100); if (lookahead == '\t' || - lookahead == ' ') SKIP(370); - if (set_contains(sym_attribute_identifier_character_set_1, 668, lookahead)) ADVANCE(2263); + lookahead == ' ') SKIP(371); END_STATE(); case 372: - if (lookahead == '#') ADVANCE(4099); + if (lookahead == '#') ADVANCE(4100); if (lookahead == '\t' || - lookahead == ' ') SKIP(370); - if (set_contains(sym_param_short_flag_identifier_character_set_1, 724, lookahead)) ADVANCE(2348); + lookahead == ' ') SKIP(371); + if (set_contains(sym_attribute_identifier_character_set_1, 668, lookahead)) ADVANCE(2264); END_STATE(); case 373: - if (lookahead == '#') ADVANCE(4099); + if (lookahead == '#') ADVANCE(4100); if (lookahead == '\t' || - lookahead == ' ') SKIP(370); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2812); + lookahead == ' ') SKIP(371); + if (set_contains(sym_param_short_flag_identifier_character_set_1, 724, lookahead)) ADVANCE(2349); END_STATE(); case 374: - if (lookahead == '#') ADVANCE(4099); + if (lookahead == '#') ADVANCE(4100); if (lookahead == '\t' || - lookahead == ' ') SKIP(370); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + lookahead == ' ') SKIP(371); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2813); END_STATE(); case 375: - if (lookahead == '#') ADVANCE(4099); + if (lookahead == '#') ADVANCE(4100); if (lookahead == '\t' || - lookahead == ' ') SKIP(370); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + lookahead == ' ') SKIP(371); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 376: - if (lookahead == '#') ADVANCE(4102); - if (lookahead == '(') ADVANCE(2492); - if (lookahead == '}') ADVANCE(2403); + if (lookahead == '#') ADVANCE(4100); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2787); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4092); + lookahead == ' ') SKIP(371); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 377: - if (lookahead == '#') ADVANCE(4102); - if (lookahead == '(') ADVANCE(2492); + if (lookahead == '#') ADVANCE(4103); + if (lookahead == '(') ADVANCE(2493); + if (lookahead == '}') ADVANCE(2404); if (lookahead == '\t' || - lookahead == ' ') SKIP(370); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4092); + lookahead == ' ') ADVANCE(2788); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(2784); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4093); END_STATE(); case 378: - if (lookahead == '#') ADVANCE(4105); - if (lookahead == '$') ADVANCE(2302); - if (lookahead == '-') ADVANCE(2333); - if (lookahead == '{') ADVANCE(2402); + if (lookahead == '#') ADVANCE(4103); + if (lookahead == '(') ADVANCE(2493); + if (lookahead == '\t' || + lookahead == ' ') SKIP(371); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4093); + END_STATE(); + case 379: + if (lookahead == '#') ADVANCE(4106); + if (lookahead == '$') ADVANCE(2303); + if (lookahead == '-') ADVANCE(2336); + if (lookahead == '{') ADVANCE(2403); if (lookahead == '\t' || - lookahead == ' ') SKIP(287); + lookahead == ' ') SKIP(288); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3536); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3520); - END_STATE(); - case 379: - if (lookahead == '#') ADVANCE(4105); - if (lookahead == '(') ADVANCE(2492); - if (lookahead == '{') ADVANCE(2402); - if (lookahead == '\t' || - lookahead == ' ') SKIP(367); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + lookahead == '^') ADVANCE(3537); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3521); END_STATE(); case 380: - if (lookahead == '#') ADVANCE(4105); - if (lookahead == '=') ADVANCE(3312); - if (lookahead == 'i') ADVANCE(3369); - if (lookahead == '|') ADVANCE(2254); + if (lookahead == '#') ADVANCE(4106); + if (lookahead == '(') ADVANCE(2493); + if (lookahead == '{') ADVANCE(2403); if (lookahead == '\t' || - lookahead == ' ') SKIP(356); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + lookahead == ' ') SKIP(368); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 381: - if (lookahead == '#') ADVANCE(4105); - if (lookahead == '=') ADVANCE(3312); - if (lookahead == '|') ADVANCE(2254); + if (lookahead == '#') ADVANCE(4106); + if (lookahead == '=') ADVANCE(3313); + if (lookahead == 'i') ADVANCE(3370); + if (lookahead == '|') ADVANCE(2255); if (lookahead == '\t' || lookahead == ' ') SKIP(357); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 382: - if (lookahead == '#') ADVANCE(4104); - if (lookahead == '(') ADVANCE(2492); - if (lookahead == ']') ADVANCE(2292); + if (lookahead == '#') ADVANCE(4106); + if (lookahead == '=') ADVANCE(3313); + if (lookahead == '|') ADVANCE(2255); + if (lookahead == '\t' || + lookahead == ' ') SKIP(358); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); + END_STATE(); + case 383: + if (lookahead == '#') ADVANCE(4105); + if (lookahead == '(') ADVANCE(2493); + if (lookahead == ']') ADVANCE(2293); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2787); + lookahead == ' ') ADVANCE(2788); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); + lookahead == ',') ADVANCE(2784); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -25984,669 +25434,666 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3807); - END_STATE(); - case 383: - if (lookahead == '#') ADVANCE(4104); - if (lookahead == '(') ADVANCE(2492); - if (lookahead == '\t' || - lookahead == ' ') SKIP(370); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3808); END_STATE(); case 384: - if (lookahead == '#') ADVANCE(2774); - if (lookahead == '\'') ADVANCE(2776); - if (lookahead == '(') ADVANCE(2293); + if (lookahead == '#') ADVANCE(4105); + if (lookahead == '(') ADVANCE(2493); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2773); - if (lookahead != 0) ADVANCE(2774); + lookahead == ' ') SKIP(371); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 385: - if (lookahead == '\'') ADVANCE(2768); - if (lookahead != 0) ADVANCE(385); + if (lookahead == '#') ADVANCE(2775); + if (lookahead == '\'') ADVANCE(2777); + if (lookahead == '(') ADVANCE(2294); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2774); + if (lookahead != 0) ADVANCE(2775); END_STATE(); case 386: - if (lookahead == '+') ADVANCE(488); - if (lookahead == '>') ADVANCE(2830); - if (lookahead == 'r') ADVANCE(2464); - if (lookahead == 'u') ADVANCE(588); + if (lookahead == '\'') ADVANCE(2769); + if (lookahead != 0) ADVANCE(386); END_STATE(); case 387: - ADVANCE_MAP( - '+', 451, - '-', 453, - '>', 2825, - 'I', 627, - '_', 453, - 'i', 627, - 'n', 477, - 'r', 558, - 'B', 2714, - 'b', 2714, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); + if (lookahead == '+') ADVANCE(489); + if (lookahead == '>') ADVANCE(2831); + if (lookahead == 'r') ADVANCE(2465); + if (lookahead == 'u') ADVANCE(589); END_STATE(); case 388: - if (lookahead == '+') ADVANCE(451); - if (lookahead == '-') ADVANCE(453); - if (lookahead == '>') ADVANCE(2825); - if (lookahead == '_') ADVANCE(453); - if (lookahead == 'l') ADVANCE(576); - if (lookahead == 'n') ADVANCE(477); - if (lookahead == 'r') ADVANCE(558); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); + ADVANCE_MAP( + '+', 452, + '-', 454, + '>', 2826, + 'I', 628, + '_', 454, + 'i', 628, + 'n', 478, + 'r', 559, + 'B', 2715, + 'b', 2715, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); END_STATE(); case 389: - if (lookahead == '+') ADVANCE(489); - if (lookahead == '>') ADVANCE(2820); + if (lookahead == '+') ADVANCE(452); + if (lookahead == '-') ADVANCE(454); + if (lookahead == '>') ADVANCE(2826); + if (lookahead == '_') ADVANCE(454); + if (lookahead == 'l') ADVANCE(577); + if (lookahead == 'n') ADVANCE(478); + if (lookahead == 'r') ADVANCE(559); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); END_STATE(); case 390: - if (lookahead == '+') ADVANCE(535); - if (lookahead == '>') ADVANCE(2825); - if (lookahead == 'l') ADVANCE(576); - if (lookahead == 'n') ADVANCE(477); - if (lookahead == 'r') ADVANCE(558); + if (lookahead == '+') ADVANCE(490); + if (lookahead == '>') ADVANCE(2821); END_STATE(); case 391: - if (lookahead == '+') ADVANCE(535); - if (lookahead == '>') ADVANCE(2825); - if (lookahead == 'n') ADVANCE(477); - if (lookahead == 'r') ADVANCE(558); + if (lookahead == '+') ADVANCE(536); + if (lookahead == '>') ADVANCE(2826); + if (lookahead == 'l') ADVANCE(577); + if (lookahead == 'n') ADVANCE(478); + if (lookahead == 'r') ADVANCE(559); END_STATE(); case 392: - if (lookahead == '+') ADVANCE(534); - if (lookahead == '>') ADVANCE(2815); + if (lookahead == '+') ADVANCE(536); + if (lookahead == '>') ADVANCE(2826); + if (lookahead == 'n') ADVANCE(478); + if (lookahead == 'r') ADVANCE(559); END_STATE(); case 393: - if (lookahead == '+') ADVANCE(542); - if (lookahead == '>') ADVANCE(616); - if (lookahead == 'l') ADVANCE(576); - if (lookahead == 'r') ADVANCE(560); - if (lookahead == 'x') ADVANCE(548); + if (lookahead == '+') ADVANCE(535); + if (lookahead == '>') ADVANCE(2816); END_STATE(); case 394: - if (lookahead == '+') ADVANCE(542); - if (lookahead == '>') ADVANCE(616); - if (lookahead == 'n') ADVANCE(477); - if (lookahead == 'r') ADVANCE(560); + if (lookahead == '+') ADVANCE(543); + if (lookahead == '>') ADVANCE(617); + if (lookahead == 'l') ADVANCE(577); + if (lookahead == 'r') ADVANCE(561); + if (lookahead == 'x') ADVANCE(549); END_STATE(); case 395: - if (lookahead == '+') ADVANCE(542); - if (lookahead == '>') ADVANCE(616); - if (lookahead == 'r') ADVANCE(560); + if (lookahead == '+') ADVANCE(543); + if (lookahead == '>') ADVANCE(617); + if (lookahead == 'n') ADVANCE(478); + if (lookahead == 'r') ADVANCE(561); END_STATE(); case 396: - if (lookahead == '+') ADVANCE(490); + if (lookahead == '+') ADVANCE(543); if (lookahead == '>') ADVANCE(617); - if (lookahead == 'r') ADVANCE(2464); - if (lookahead == 'u') ADVANCE(593); + if (lookahead == 'r') ADVANCE(561); END_STATE(); case 397: - if (lookahead == '+') ADVANCE(490); - if (lookahead == '>') ADVANCE(617); - if (lookahead == 'u') ADVANCE(593); + if (lookahead == '+') ADVANCE(491); + if (lookahead == '>') ADVANCE(618); + if (lookahead == 'r') ADVANCE(2465); + if (lookahead == 'u') ADVANCE(594); END_STATE(); case 398: - if (lookahead == '+') ADVANCE(546); - if (lookahead == '>') ADVANCE(619); + if (lookahead == '+') ADVANCE(491); + if (lookahead == '>') ADVANCE(618); + if (lookahead == 'u') ADVANCE(594); END_STATE(); case 399: - if (lookahead == '+') ADVANCE(494); - if (lookahead == '>') ADVANCE(621); + if (lookahead == '+') ADVANCE(547); + if (lookahead == '>') ADVANCE(620); END_STATE(); case 400: - if (lookahead == '-') ADVANCE(2320); - if (lookahead == '.') ADVANCE(441); - if (lookahead == '_') ADVANCE(413); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(640); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); + if (lookahead == '+') ADVANCE(495); + if (lookahead == '>') ADVANCE(622); END_STATE(); case 401: - if (lookahead == '-') ADVANCE(468); + if (lookahead == '-') ADVANCE(2321); + if (lookahead == '.') ADVANCE(442); + if (lookahead == '_') ADVANCE(414); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(641); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); END_STATE(); case 402: - if (lookahead == '-') ADVANCE(508); + if (lookahead == '-') ADVANCE(469); END_STATE(); case 403: - if (lookahead == '-') ADVANCE(508); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2491); + if (lookahead == '-') ADVANCE(509); END_STATE(); case 404: - if (lookahead == '-') ADVANCE(609); + if (lookahead == '-') ADVANCE(509); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(2492); END_STATE(); case 405: - if (lookahead == '-') ADVANCE(538); + if (lookahead == '-') ADVANCE(610); END_STATE(); case 406: - if (lookahead == '-') ADVANCE(590); + if (lookahead == '-') ADVANCE(539); END_STATE(); case 407: - if (lookahead == '-') ADVANCE(658); + if (lookahead == '-') ADVANCE(591); END_STATE(); case 408: - if (lookahead == '-') ADVANCE(610); + if (lookahead == '-') ADVANCE(659); END_STATE(); case 409: - if (lookahead == '-') ADVANCE(553); + if (lookahead == '-') ADVANCE(611); END_STATE(); case 410: - if (lookahead == '.') ADVANCE(441); - if (lookahead == '>') ADVANCE(2290); - if (lookahead == '_') ADVANCE(413); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(638); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); + if (lookahead == '-') ADVANCE(554); END_STATE(); case 411: - if (lookahead == '.') ADVANCE(441); - if (lookahead == '_') ADVANCE(413); + if (lookahead == '.') ADVANCE(442); + if (lookahead == '>') ADVANCE(2291); + if (lookahead == '_') ADVANCE(414); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(638); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); + lookahead == 'i') ADVANCE(639); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); END_STATE(); case 412: - if (lookahead == '.') ADVANCE(441); - if (lookahead == '_') ADVANCE(413); + if (lookahead == '.') ADVANCE(442); + if (lookahead == '_') ADVANCE(414); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(640); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); + lookahead == 'i') ADVANCE(639); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); END_STATE(); case 413: - if (lookahead == '.') ADVANCE(441); - if (lookahead == '_') ADVANCE(413); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); + if (lookahead == '.') ADVANCE(442); + if (lookahead == '_') ADVANCE(414); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(641); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); END_STATE(); case 414: - if (lookahead == '.') ADVANCE(2411); - if (lookahead == '_') ADVANCE(444); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2680); + if (lookahead == '.') ADVANCE(442); + if (lookahead == '_') ADVANCE(414); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); END_STATE(); case 415: - if (lookahead == '.') ADVANCE(2317); + if (lookahead == '.') ADVANCE(2412); + if (lookahead == '_') ADVANCE(445); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2681); END_STATE(); case 416: - if (lookahead == '.') ADVANCE(415); + if (lookahead == '.') ADVANCE(2318); END_STATE(); case 417: - if (lookahead == '.') ADVANCE(415); - if (lookahead == '_') ADVANCE(447); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2600); + if (lookahead == '.') ADVANCE(416); END_STATE(); case 418: - if (lookahead == '.') ADVANCE(442); - if (lookahead == '_') ADVANCE(418); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if (lookahead == '.') ADVANCE(416); + if (lookahead == '_') ADVANCE(448); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2601); END_STATE(); case 419: - if (lookahead == '2') ADVANCE(646); - if (lookahead == '0' || - lookahead == '1') ADVANCE(652); + if (lookahead == '.') ADVANCE(443); + if (lookahead == '_') ADVANCE(419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2595); END_STATE(); case 420: - if (lookahead == ':') ADVANCE(653); + if (lookahead == '2') ADVANCE(647); + if (lookahead == '0' || + lookahead == '1') ADVANCE(653); END_STATE(); case 421: if (lookahead == ':') ADVANCE(654); END_STATE(); case 422: - if (lookahead == ';') ADVANCE(2795); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(422); + if (lookahead == ':') ADVANCE(655); END_STATE(); case 423: - if (lookahead == '=') ADVANCE(2478); - if (lookahead == '~') ADVANCE(2489); + if (lookahead == ';') ADVANCE(2796); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(423); END_STATE(); case 424: - if (lookahead == '=') ADVANCE(2476); - if (lookahead == '>') ADVANCE(2404); - if (lookahead == '~') ADVANCE(2487); + if (lookahead == '=') ADVANCE(2479); + if (lookahead == '~') ADVANCE(2490); END_STATE(); case 425: - if (lookahead == '=') ADVANCE(2476); - if (lookahead == '~') ADVANCE(2487); + if (lookahead == '=') ADVANCE(2477); + if (lookahead == '>') ADVANCE(2405); + if (lookahead == '~') ADVANCE(2488); END_STATE(); case 426: - if (lookahead == '=') ADVANCE(1790); - if (lookahead == '~') ADVANCE(1776); + if (lookahead == '=') ADVANCE(2477); + if (lookahead == '~') ADVANCE(2488); END_STATE(); case 427: - if (lookahead == '>') ADVANCE(2404); + if (lookahead == '=') ADVANCE(1791); + if (lookahead == '~') ADVANCE(1777); END_STATE(); case 428: - if (lookahead == '>') ADVANCE(2850); + if (lookahead == '>') ADVANCE(2405); END_STATE(); case 429: - if (lookahead == '>') ADVANCE(2845); + if (lookahead == '>') ADVANCE(2851); END_STATE(); case 430: - if (lookahead == '>') ADVANCE(2835); + if (lookahead == '>') ADVANCE(2846); END_STATE(); case 431: - if (lookahead == '>') ADVANCE(2840); + if (lookahead == '>') ADVANCE(2836); END_STATE(); case 432: - if (lookahead == '>') ADVANCE(2290); + if (lookahead == '>') ADVANCE(2841); END_STATE(); case 433: - if (lookahead == '>') ADVANCE(618); + if (lookahead == '>') ADVANCE(2291); END_STATE(); case 434: - if (lookahead == '>') ADVANCE(620); + if (lookahead == '>') ADVANCE(619); END_STATE(); case 435: - if (lookahead == '>') ADVANCE(622); + if (lookahead == '>') ADVANCE(621); END_STATE(); case 436: if (lookahead == '>') ADVANCE(623); END_STATE(); case 437: - if (lookahead == 'I') ADVANCE(627); - if (lookahead == '_') ADVANCE(453); - if (lookahead == 'i') ADVANCE(469); - if (lookahead == '+' || - lookahead == '-') ADVANCE(453); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); + if (lookahead == '>') ADVANCE(624); END_STATE(); case 438: - if (lookahead == 'I') ADVANCE(627); - if (lookahead == 'i') ADVANCE(627); + if (lookahead == 'I') ADVANCE(628); + if (lookahead == '_') ADVANCE(454); + if (lookahead == 'i') ADVANCE(470); + if (lookahead == '+' || + lookahead == '-') ADVANCE(454); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); + lookahead == 'b') ADVANCE(2715); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); END_STATE(); case 439: - if (lookahead == 'I') ADVANCE(627); - if (lookahead == 'i') ADVANCE(469); + if (lookahead == 'I') ADVANCE(628); + if (lookahead == 'i') ADVANCE(628); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); + lookahead == 'b') ADVANCE(2715); END_STATE(); case 440: - if (lookahead == 'I') ADVANCE(627); - if (lookahead == 'i') ADVANCE(525); - if (lookahead == 'o') ADVANCE(476); - if (lookahead == 's') ADVANCE(2721); + if (lookahead == 'I') ADVANCE(628); + if (lookahead == 'i') ADVANCE(470); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); + lookahead == 'b') ADVANCE(2715); END_STATE(); case 441: - if (lookahead == '_') ADVANCE(441); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2683); + if (lookahead == 'I') ADVANCE(628); + if (lookahead == 'i') ADVANCE(526); + if (lookahead == 'o') ADVANCE(477); + if (lookahead == 's') ADVANCE(2722); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); END_STATE(); case 442: if (lookahead == '_') ADVANCE(442); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2684); END_STATE(); case 443: if (lookahead == '_') ADVANCE(443); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); END_STATE(); case 444: if (lookahead == '_') ADVANCE(444); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2680); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); END_STATE(); case 445: - if (lookahead == '_') ADVANCE(446); - if (lookahead == '+' || - lookahead == '-') ADVANCE(446); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2674); + if (lookahead == '_') ADVANCE(445); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2681); END_STATE(); case 446: - if (lookahead == '_') ADVANCE(446); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2674); + if (lookahead == '_') ADVANCE(447); + if (lookahead == '+' || + lookahead == '-') ADVANCE(447); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2675); END_STATE(); case 447: if (lookahead == '_') ADVANCE(447); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2600); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2675); END_STATE(); case 448: - if (lookahead == '_') ADVANCE(449); - if (lookahead == '+' || - lookahead == '-') ADVANCE(449); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2596); + if (lookahead == '_') ADVANCE(448); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2601); END_STATE(); case 449: - if (lookahead == '_') ADVANCE(449); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2596); + if (lookahead == '_') ADVANCE(450); + if (lookahead == '+' || + lookahead == '-') ADVANCE(450); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2597); END_STATE(); case 450: if (lookahead == '_') ADVANCE(450); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2597); END_STATE(); case 451: - if (lookahead == '_') ADVANCE(453); - if (lookahead == 'o') ADVANCE(428); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); + if (lookahead == '_') ADVANCE(451); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); END_STATE(); case 452: - if (lookahead == '_') ADVANCE(453); - if (lookahead == '+' || - lookahead == '-') ADVANCE(453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); + if (lookahead == '_') ADVANCE(454); + if (lookahead == 'o') ADVANCE(429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); END_STATE(); case 453: - if (lookahead == '_') ADVANCE(453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); + if (lookahead == '_') ADVANCE(454); + if (lookahead == '+' || + lookahead == '-') ADVANCE(454); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); END_STATE(); case 454: - if (lookahead == '`') ADVANCE(2769); - if (lookahead != 0) ADVANCE(454); + if (lookahead == '_') ADVANCE(454); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); END_STATE(); case 455: - if (lookahead == 'a') ADVANCE(570); + if (lookahead == '`') ADVANCE(2770); + if (lookahead != 0) ADVANCE(455); END_STATE(); case 456: - if (lookahead == 'a') ADVANCE(570); - if (lookahead == 'r') ADVANCE(2721); + if (lookahead == 'a') ADVANCE(571); END_STATE(); case 457: - if (lookahead == 'a') ADVANCE(515); - if (lookahead == 'o') ADVANCE(478); + if (lookahead == 'a') ADVANCE(571); + if (lookahead == 'r') ADVANCE(2722); END_STATE(); case 458: - if (lookahead == 'a') ADVANCE(612); + if (lookahead == 'a') ADVANCE(516); + if (lookahead == 'o') ADVANCE(479); END_STATE(); case 459: - if (lookahead == 'a') ADVANCE(522); + if (lookahead == 'a') ADVANCE(613); END_STATE(); case 460: - if (lookahead == 'a') ADVANCE(564); + if (lookahead == 'a') ADVANCE(523); END_STATE(); case 461: - if (lookahead == 'a') ADVANCE(571); + if (lookahead == 'a') ADVANCE(565); END_STATE(); case 462: - if (lookahead == 'a') ADVANCE(573); + if (lookahead == 'a') ADVANCE(572); END_STATE(); case 463: - if (lookahead == 'a') ADVANCE(581); + if (lookahead == 'a') ADVANCE(574); END_STATE(); case 464: - if (lookahead == 'a') ADVANCE(581); - if (lookahead == 'o') ADVANCE(533); + if (lookahead == 'a') ADVANCE(582); END_STATE(); case 465: - if (lookahead == 'a') ADVANCE(596); + if (lookahead == 'a') ADVANCE(582); + if (lookahead == 'o') ADVANCE(534); END_STATE(); case 466: - if (lookahead == 'a') ADVANCE(599); + if (lookahead == 'a') ADVANCE(597); END_STATE(); case 467: - if (lookahead == 'a') ADVANCE(598); + if (lookahead == 'a') ADVANCE(600); END_STATE(); case 468: - if (lookahead == 'a') ADVANCE(532); - if (lookahead == 'o') ADVANCE(556); - if (lookahead == 's') ADVANCE(502); - if (lookahead == 'x') ADVANCE(543); + if (lookahead == 'a') ADVANCE(599); END_STATE(); case 469: - if (lookahead == 'b') ADVANCE(2714); + if (lookahead == 'a') ADVANCE(533); + if (lookahead == 'o') ADVANCE(557); + if (lookahead == 's') ADVANCE(503); + if (lookahead == 'x') ADVANCE(544); END_STATE(); case 470: - if (lookahead == 'c') ADVANCE(2721); + if (lookahead == 'b') ADVANCE(2715); END_STATE(); case 471: - if (lookahead == 'c') ADVANCE(503); + if (lookahead == 'c') ADVANCE(2722); END_STATE(); case 472: if (lookahead == 'c') ADVANCE(504); END_STATE(); case 473: - if (lookahead == 'c') ADVANCE(493); + if (lookahead == 'c') ADVANCE(505); END_STATE(); case 474: - if (lookahead == 'd') ADVANCE(2460); + if (lookahead == 'c') ADVANCE(494); END_STATE(); case 475: - if (lookahead == 'd') ADVANCE(2522); + if (lookahead == 'd') ADVANCE(2461); END_STATE(); case 476: - if (lookahead == 'd') ADVANCE(2502); + if (lookahead == 'd') ADVANCE(2523); END_STATE(); case 477: - if (lookahead == 'd') ADVANCE(575); + if (lookahead == 'd') ADVANCE(2503); END_STATE(); case 478: - if (lookahead == 'd') ADVANCE(603); + if (lookahead == 'd') ADVANCE(576); END_STATE(); case 479: - if (lookahead == 'e') ADVANCE(2616); + if (lookahead == 'd') ADVANCE(604); END_STATE(); case 480: - if (lookahead == 'e') ADVANCE(2624); + if (lookahead == 'e') ADVANCE(2617); END_STATE(); case 481: - if (lookahead == 'e') ADVANCE(498); - if (lookahead == 'o') ADVANCE(2381); + if (lookahead == 'e') ADVANCE(2625); END_STATE(); case 482: - if (lookahead == 'e') ADVANCE(2283); + if (lookahead == 'e') ADVANCE(499); + if (lookahead == 'o') ADVANCE(2382); END_STATE(); case 483: - if (lookahead == 'e') ADVANCE(2392); + if (lookahead == 'e') ADVANCE(2284); END_STATE(); case 484: - if (lookahead == 'e') ADVANCE(2372); + if (lookahead == 'e') ADVANCE(2393); END_STATE(); case 485: - if (lookahead == 'e') ADVANCE(2278); + if (lookahead == 'e') ADVANCE(2373); END_STATE(); case 486: - if (lookahead == 'e') ADVANCE(2312); + if (lookahead == 'e') ADVANCE(2279); END_STATE(); case 487: - if (lookahead == 'e') ADVANCE(470); - if (lookahead == 't') ADVANCE(460); + if (lookahead == 'e') ADVANCE(2313); END_STATE(); case 488: - if (lookahead == 'e') ADVANCE(429); + if (lookahead == 'e') ADVANCE(471); + if (lookahead == 't') ADVANCE(461); END_STATE(); case 489: - if (lookahead == 'e') ADVANCE(566); + if (lookahead == 'e') ADVANCE(430); END_STATE(); case 490: - if (lookahead == 'e') ADVANCE(434); + if (lookahead == 'e') ADVANCE(567); END_STATE(); case 491: - if (lookahead == 'e') ADVANCE(563); + if (lookahead == 'e') ADVANCE(435); END_STATE(); case 492: - if (lookahead == 'e') ADVANCE(565); + if (lookahead == 'e') ADVANCE(564); END_STATE(); case 493: - if (lookahead == 'e') ADVANCE(521); + if (lookahead == 'e') ADVANCE(566); END_STATE(); case 494: - if (lookahead == 'e') ADVANCE(567); + if (lookahead == 'e') ADVANCE(522); END_STATE(); case 495: - if (lookahead == 'f') ADVANCE(2386); + if (lookahead == 'e') ADVANCE(569); END_STATE(); case 496: - if (lookahead == 'f') ADVANCE(2386); - if (lookahead == 'n') ADVANCE(2361); + if (lookahead == 'f') ADVANCE(2387); END_STATE(); case 497: - if (lookahead == 'f') ADVANCE(2386); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(631); + if (lookahead == 'f') ADVANCE(2387); + if (lookahead == 'n') ADVANCE(2362); END_STATE(); case 498: - if (lookahead == 'f') ADVANCE(2265); + if (lookahead == 'f') ADVANCE(2387); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(632); END_STATE(); case 499: - if (lookahead == 'f') ADVANCE(2311); + if (lookahead == 'f') ADVANCE(2266); END_STATE(); case 500: - if (lookahead == 'h') ADVANCE(2474); + if (lookahead == 'f') ADVANCE(2312); END_STATE(); case 501: - if (lookahead == 'h') ADVANCE(2472); + if (lookahead == 'h') ADVANCE(2475); END_STATE(); case 502: - if (lookahead == 'h') ADVANCE(516); + if (lookahead == 'h') ADVANCE(2473); END_STATE(); case 503: - if (lookahead == 'h') ADVANCE(2421); + if (lookahead == 'h') ADVANCE(517); END_STATE(); case 504: - if (lookahead == 'h') ADVANCE(2397); + if (lookahead == 'h') ADVANCE(2422); END_STATE(); case 505: - if (lookahead == 'h') ADVANCE(2303); + if (lookahead == 'h') ADVANCE(2398); END_STATE(); case 506: - if (lookahead == 'h') ADVANCE(2309); + if (lookahead == 'h') ADVANCE(2304); END_STATE(); case 507: - if (lookahead == 'h') ADVANCE(405); + if (lookahead == 'h') ADVANCE(2310); END_STATE(); case 508: - if (lookahead == 'h') ADVANCE(461); - if (lookahead == 'i') ADVANCE(524); + if (lookahead == 'h') ADVANCE(406); END_STATE(); case 509: - if (lookahead == 'i') ADVANCE(580); + if (lookahead == 'h') ADVANCE(462); + if (lookahead == 'i') ADVANCE(525); END_STATE(); case 510: - if (lookahead == 'i') ADVANCE(589); + if (lookahead == 'i') ADVANCE(581); END_STATE(); case 511: - if (lookahead == 'i') ADVANCE(591); + if (lookahead == 'i') ADVANCE(590); END_STATE(); case 512: - if (lookahead == 'i') ADVANCE(594); + if (lookahead == 'i') ADVANCE(592); END_STATE(); case 513: - if (lookahead == 'i') ADVANCE(462); + if (lookahead == 'i') ADVANCE(595); END_STATE(); case 514: - if (lookahead == 'k') ADVANCE(2721); + if (lookahead == 'i') ADVANCE(463); END_STATE(); case 515: - if (lookahead == 'k') ADVANCE(484); - if (lookahead == 't') ADVANCE(472); + if (lookahead == 'k') ADVANCE(2722); END_STATE(); case 516: - if (lookahead == 'l') ADVANCE(2518); - if (lookahead == 'r') ADVANCE(2520); + if (lookahead == 'k') ADVANCE(485); + if (lookahead == 't') ADVANCE(473); END_STATE(); case 517: - if (lookahead == 'l') ADVANCE(2608); + if (lookahead == 'l') ADVANCE(2519); + if (lookahead == 'r') ADVANCE(2521); END_STATE(); case 518: - if (lookahead == 'l') ADVANCE(513); + if (lookahead == 'l') ADVANCE(2609); END_STATE(); case 519: - if (lookahead == 'l') ADVANCE(517); + if (lookahead == 'l') ADVANCE(514); END_STATE(); case 520: - if (lookahead == 'l') ADVANCE(409); + if (lookahead == 'l') ADVANCE(518); END_STATE(); case 521: - if (lookahead == 'l') ADVANCE(520); + if (lookahead == 'l') ADVANCE(410); END_STATE(); case 522: - if (lookahead == 'l') ADVANCE(577); + if (lookahead == 'l') ADVANCE(521); END_STATE(); case 523: - if (lookahead == 'l') ADVANCE(485); + if (lookahead == 'l') ADVANCE(578); END_STATE(); case 524: - if (lookahead == 'n') ADVANCE(2466); + if (lookahead == 'l') ADVANCE(486); END_STATE(); case 525: - if (lookahead == 'n') ADVANCE(2721); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); + if (lookahead == 'n') ADVANCE(2467); END_STATE(); case 526: - if (lookahead == 'n') ADVANCE(474); + if (lookahead == 'n') ADVANCE(2722); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); END_STATE(); case 527: - if (lookahead == 'n') ADVANCE(474); - if (lookahead == 's') ADVANCE(2449); + if (lookahead == 'n') ADVANCE(475); END_STATE(); case 528: - if (lookahead == 'n') ADVANCE(2361); + if (lookahead == 'n') ADVANCE(475); + if (lookahead == 's') ADVANCE(2450); END_STATE(); case 529: - if (lookahead == 'n') ADVANCE(2273); + if (lookahead == 'n') ADVANCE(2362); END_STATE(); case 530: - if (lookahead == 'n') ADVANCE(2310); + if (lookahead == 'n') ADVANCE(2274); END_STATE(); case 531: - if (lookahead == 'n') ADVANCE(477); + if (lookahead == 'n') ADVANCE(2311); END_STATE(); case 532: - if (lookahead == 'n') ADVANCE(475); + if (lookahead == 'n') ADVANCE(478); END_STATE(); case 533: - if (lookahead == 'n') ADVANCE(578); + if (lookahead == 'n') ADVANCE(476); END_STATE(); case 534: - if (lookahead == 'o') ADVANCE(604); + if (lookahead == 'n') ADVANCE(579); END_STATE(); case 535: - if (lookahead == 'o') ADVANCE(428); + if (lookahead == 'o') ADVANCE(605); END_STATE(); case 536: - if (lookahead == 'o') ADVANCE(555); + if (lookahead == 'o') ADVANCE(429); END_STATE(); case 537: - if (lookahead == 'o') ADVANCE(499); + if (lookahead == 'o') ADVANCE(556); END_STATE(); case 538: - if (lookahead == 'o') ADVANCE(550); + if (lookahead == 'o') ADVANCE(500); END_STATE(); case 539: - if (lookahead == 'o') ADVANCE(587); + if (lookahead == 'o') ADVANCE(551); END_STATE(); case 540: - if (lookahead == 'o') ADVANCE(587); - if (lookahead == 's') ADVANCE(2721); + if (lookahead == 'o') ADVANCE(588); END_STATE(); case 541: - if (lookahead == 'o') ADVANCE(476); + if (lookahead == 'o') ADVANCE(588); + if (lookahead == 's') ADVANCE(2722); END_STATE(); case 542: - if (lookahead == 'o') ADVANCE(433); + if (lookahead == 'o') ADVANCE(477); END_STATE(); case 543: - if (lookahead == 'o') ADVANCE(557); + if (lookahead == 'o') ADVANCE(434); END_STATE(); case 544: - if (lookahead == 'o') ADVANCE(582); - if (lookahead == 'u') ADVANCE(519); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(636); + if (lookahead == 'o') ADVANCE(558); END_STATE(); case 545: - if (lookahead == 'o') ADVANCE(585); + if (lookahead == 'o') ADVANCE(583); + if (lookahead == 'u') ADVANCE(520); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(637); END_STATE(); case 546: - if (lookahead == 'o') ADVANCE(607); + if (lookahead == 'o') ADVANCE(586); END_STATE(); case 547: - if (lookahead == 'o') ADVANCE(569); + if (lookahead == 'o') ADVANCE(608); END_STATE(); case 548: - if (lookahead == 'p') ADVANCE(547); - if (lookahead == 't') ADVANCE(491); + if (lookahead == 'o') ADVANCE(570); END_STATE(); case 549: - if (lookahead == 'p') ADVANCE(486); + if (lookahead == 'p') ADVANCE(548); + if (lookahead == 't') ADVANCE(492); END_STATE(); case 550: - if (lookahead == 'p') ADVANCE(595); + if (lookahead == 'p') ADVANCE(487); END_STATE(); case 551: - if (lookahead == 'p') ADVANCE(465); + if (lookahead == 'p') ADVANCE(596); END_STATE(); case 552: if (lookahead == 'p') ADVANCE(466); @@ -26655,177 +26102,177 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'p') ADVANCE(467); END_STATE(); case 554: - if (lookahead == 'r') ADVANCE(2464); + if (lookahead == 'p') ADVANCE(468); END_STATE(); case 555: - if (lookahead == 'r') ADVANCE(2462); + if (lookahead == 'r') ADVANCE(2465); END_STATE(); case 556: - if (lookahead == 'r') ADVANCE(2526); + if (lookahead == 'r') ADVANCE(2463); END_STATE(); case 557: - if (lookahead == 'r') ADVANCE(2524); + if (lookahead == 'r') ADVANCE(2527); END_STATE(); case 558: - if (lookahead == 'r') ADVANCE(392); + if (lookahead == 'r') ADVANCE(2525); END_STATE(); case 559: - if (lookahead == 'r') ADVANCE(606); + if (lookahead == 'r') ADVANCE(393); END_STATE(); case 560: - if (lookahead == 'r') ADVANCE(398); + if (lookahead == 'r') ADVANCE(607); END_STATE(); case 561: - if (lookahead == 'r') ADVANCE(605); + if (lookahead == 'r') ADVANCE(399); END_STATE(); case 562: - if (lookahead == 'r') ADVANCE(431); + if (lookahead == 'r') ADVANCE(606); END_STATE(); case 563: - if (lookahead == 'r') ADVANCE(529); + if (lookahead == 'r') ADVANCE(432); END_STATE(); case 564: - if (lookahead == 'r') ADVANCE(601); + if (lookahead == 'r') ADVANCE(530); END_STATE(); case 565: - if (lookahead == 'r') ADVANCE(530); + if (lookahead == 'r') ADVANCE(602); END_STATE(); case 566: - if (lookahead == 'r') ADVANCE(562); + if (lookahead == 'r') ADVANCE(531); END_STATE(); case 567: - if (lookahead == 'r') ADVANCE(568); + if (lookahead == 'r') ADVANCE(563); END_STATE(); case 568: - if (lookahead == 'r') ADVANCE(436); + if (lookahead == 'r') ADVANCE(437); END_STATE(); case 569: - if (lookahead == 'r') ADVANCE(584); + if (lookahead == 'r') ADVANCE(568); END_STATE(); case 570: - if (lookahead == 's') ADVANCE(2468); + if (lookahead == 'r') ADVANCE(585); END_STATE(); case 571: - if (lookahead == 's') ADVANCE(2470); + if (lookahead == 's') ADVANCE(2469); END_STATE(); case 572: - if (lookahead == 's') ADVANCE(2721); + if (lookahead == 's') ADVANCE(2471); END_STATE(); case 573: - if (lookahead == 's') ADVANCE(828); + if (lookahead == 's') ADVANCE(2722); END_STATE(); case 574: - if (lookahead == 's') ADVANCE(482); + if (lookahead == 's') ADVANCE(829); END_STATE(); case 575: - if (lookahead == 's') ADVANCE(404); + if (lookahead == 's') ADVANCE(483); END_STATE(); case 576: - if (lookahead == 's') ADVANCE(483); + if (lookahead == 's') ADVANCE(405); END_STATE(); case 577: - if (lookahead == 's') ADVANCE(480); + if (lookahead == 's') ADVANCE(484); END_STATE(); case 578: - if (lookahead == 's') ADVANCE(583); + if (lookahead == 's') ADVANCE(481); END_STATE(); case 579: - if (lookahead == 's') ADVANCE(408); + if (lookahead == 's') ADVANCE(584); END_STATE(); case 580: - if (lookahead == 't') ADVANCE(401); + if (lookahead == 's') ADVANCE(409); END_STATE(); case 581: - if (lookahead == 't') ADVANCE(471); + if (lookahead == 't') ADVANCE(402); END_STATE(); case 582: - if (lookahead == 't') ADVANCE(647); + if (lookahead == 't') ADVANCE(472); END_STATE(); case 583: - if (lookahead == 't') ADVANCE(847); + if (lookahead == 't') ADVANCE(648); END_STATE(); case 584: - if (lookahead == 't') ADVANCE(823); + if (lookahead == 't') ADVANCE(848); END_STATE(); case 585: - if (lookahead == 't') ADVANCE(403); + if (lookahead == 't') ADVANCE(824); END_STATE(); case 586: - if (lookahead == 't') ADVANCE(460); + if (lookahead == 't') ADVANCE(404); END_STATE(); case 587: - if (lookahead == 't') ADVANCE(402); + if (lookahead == 't') ADVANCE(461); END_STATE(); case 588: - if (lookahead == 't') ADVANCE(389); + if (lookahead == 't') ADVANCE(403); END_STATE(); case 589: - if (lookahead == 't') ADVANCE(500); + if (lookahead == 't') ADVANCE(390); END_STATE(); case 590: - if (lookahead == 't') ADVANCE(613); + if (lookahead == 't') ADVANCE(501); END_STATE(); case 591: - if (lookahead == 't') ADVANCE(501); + if (lookahead == 't') ADVANCE(614); END_STATE(); case 592: - if (lookahead == 't') ADVANCE(430); + if (lookahead == 't') ADVANCE(502); END_STATE(); case 593: - if (lookahead == 't') ADVANCE(399); + if (lookahead == 't') ADVANCE(431); END_STATE(); case 594: - if (lookahead == 't') ADVANCE(507); + if (lookahead == 't') ADVANCE(400); END_STATE(); case 595: - if (lookahead == 't') ADVANCE(406); + if (lookahead == 't') ADVANCE(508); END_STATE(); case 596: - if (lookahead == 't') ADVANCE(505); + if (lookahead == 't') ADVANCE(407); END_STATE(); case 597: - if (lookahead == 't') ADVANCE(435); + if (lookahead == 't') ADVANCE(506); END_STATE(); case 598: - if (lookahead == 't') ADVANCE(506); + if (lookahead == 't') ADVANCE(436); END_STATE(); case 599: - if (lookahead == 't') ADVANCE(600); + if (lookahead == 't') ADVANCE(507); END_STATE(); case 600: - if (lookahead == 't') ADVANCE(492); + if (lookahead == 't') ADVANCE(601); END_STATE(); case 601: - if (lookahead == 't') ADVANCE(579); + if (lookahead == 't') ADVANCE(493); END_STATE(); case 602: - if (lookahead == 'u') ADVANCE(614); - if (lookahead == 'x') ADVANCE(666); - if (lookahead != 0) ADVANCE(2780); + if (lookahead == 't') ADVANCE(580); END_STATE(); case 603: - if (lookahead == 'u') ADVANCE(523); + if (lookahead == 'u') ADVANCE(615); + if (lookahead == 'x') ADVANCE(667); + if (lookahead != 0) ADVANCE(2781); END_STATE(); case 604: - if (lookahead == 'u') ADVANCE(592); + if (lookahead == 'u') ADVANCE(524); END_STATE(); case 605: - if (lookahead == 'u') ADVANCE(479); + if (lookahead == 'u') ADVANCE(593); END_STATE(); case 606: - if (lookahead == 'u') ADVANCE(479); - if (lookahead == 'y') ADVANCE(2416); + if (lookahead == 'u') ADVANCE(480); END_STATE(); case 607: - if (lookahead == 'u') ADVANCE(597); + if (lookahead == 'u') ADVANCE(480); + if (lookahead == 'y') ADVANCE(2417); END_STATE(); case 608: - if (lookahead == 'u') ADVANCE(615); - if (lookahead == 'x') ADVANCE(667); - if (lookahead != 0) ADVANCE(2770); + if (lookahead == 'u') ADVANCE(598); END_STATE(); case 609: - if (lookahead == 'w') ADVANCE(510); + if (lookahead == 'u') ADVANCE(616); + if (lookahead == 'x') ADVANCE(668); + if (lookahead != 0) ADVANCE(2771); END_STATE(); case 610: if (lookahead == 'w') ADVANCE(511); @@ -26834,70 +26281,69 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'w') ADVANCE(512); END_STATE(); case 612: - if (lookahead == 'y') ADVANCE(2721); + if (lookahead == 'w') ADVANCE(513); END_STATE(); case 613: - if (lookahead == 'y') ADVANCE(549); + if (lookahead == 'y') ADVANCE(2722); END_STATE(); case 614: - if (lookahead == '{') ADVANCE(663); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(661); + if (lookahead == 'y') ADVANCE(550); END_STATE(); case 615: - if (lookahead == '{') ADVANCE(665); + if (lookahead == '{') ADVANCE(664); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(668); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(662); END_STATE(); case 616: - if (lookahead == '|') ADVANCE(2257); + if (lookahead == '{') ADVANCE(666); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(669); END_STATE(); case 617: if (lookahead == '|') ADVANCE(2258); END_STATE(); case 618: - if (lookahead == '|') ADVANCE(2262); + if (lookahead == '|') ADVANCE(2259); END_STATE(); case 619: - if (lookahead == '|') ADVANCE(2255); + if (lookahead == '|') ADVANCE(2263); END_STATE(); case 620: - if (lookahead == '|') ADVANCE(2261); + if (lookahead == '|') ADVANCE(2256); END_STATE(); case 621: - if (lookahead == '|') ADVANCE(2256); + if (lookahead == '|') ADVANCE(2262); END_STATE(); case 622: - if (lookahead == '|') ADVANCE(2259); + if (lookahead == '|') ADVANCE(2257); END_STATE(); case 623: if (lookahead == '|') ADVANCE(2260); END_STATE(); case 624: - if (lookahead == '}') ADVANCE(2780); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(624); + if (lookahead == '|') ADVANCE(2261); END_STATE(); case 625: - if (lookahead == '}') ADVANCE(2770); + if (lookahead == '}') ADVANCE(2781); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(625); END_STATE(); case 626: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(636); + if (lookahead == '}') ADVANCE(2771); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(626); END_STATE(); case 627: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(637); END_STATE(); case 628: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2699); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); END_STATE(); case 629: if (lookahead == 'F' || @@ -26905,4350 +26351,4356 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 630: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(632); + lookahead == 'f') ADVANCE(2701); END_STATE(); case 631: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2696); + lookahead == 'f') ADVANCE(633); END_STATE(); case 632: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1758); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1761); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2697); END_STATE(); case 633: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(642); + lookahead == 'i') ADVANCE(1759); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1762); END_STATE(); case 634: if (lookahead == 'I' || lookahead == 'i') ADVANCE(643); END_STATE(); case 635: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(628); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(644); END_STATE(); case 636: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2705); + lookahead == 'n') ADVANCE(629); END_STATE(); case 637: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(633); + lookahead == 'n') ADVANCE(2706); END_STATE(); case 638: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(629); + lookahead == 'n') ADVANCE(634); END_STATE(); case 639: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(631); + lookahead == 'n') ADVANCE(630); END_STATE(); case 640: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(630); + lookahead == 'n') ADVANCE(632); END_STATE(); case 641: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(634); + lookahead == 'n') ADVANCE(631); END_STATE(); case 642: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(645); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(635); END_STATE(); case 643: if (lookahead == 'T' || - lookahead == 't') ADVANCE(644); + lookahead == 't') ADVANCE(646); END_STATE(); case 644: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2687); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(645); END_STATE(); case 645: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2697); + lookahead == 'y') ADVANCE(2688); END_STATE(); case 646: - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2743); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2698); END_STATE(); case 647: - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2491); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2744); END_STATE(); case 648: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(421); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(2492); END_STATE(); case 649: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2738); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(422); END_STATE(); case 650: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2737); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2739); END_STATE(); case 651: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2755); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2738); END_STATE(); case 652: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2743); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2756); END_STATE(); case 653: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2744); END_STATE(); case 654: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(649); END_STATE(); case 655: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2754); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(650); END_STATE(); case 656: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2755); END_STATE(); case 657: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(656); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(408); END_STATE(); case 658: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(655); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(657); END_STATE(); case 659: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(656); END_STATE(); case 660: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(421); END_STATE(); case 661: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(660); END_STATE(); case 662: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2780); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(667); END_STATE(); case 663: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(624); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2781); END_STATE(); case 664: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2770); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(625); END_STATE(); case 665: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(625); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2771); END_STATE(); case 666: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(662); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(626); END_STATE(); case 667: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(664); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(663); END_STATE(); case 668: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(667); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(665); END_STATE(); case 669: - if (eof) ADVANCE(818); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(668); + END_STATE(); + case 670: + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1266, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2294, - '*', 2456, - '+', 2510, - ',', 2295, - '-', 2337, - '.', 2800, - '/', 2499, - '0', 2648, - ':', 2792, - ';', 2253, - '<', 2481, - '=', 834, - '>', 2314, - 'I', 1544, - 'N', 1537, - '[', 2735, - ']', 2292, - '_', 1285, - '`', 454, - 'a', 1399, - 'b', 1381, - 'c', 1301, - 'd', 1329, - 'e', 859, - 'f', 1294, - 'h', 1300, - 'i', 1278, - 'l', 1344, - 'm', 1296, - 'n', 1440, - 'o', 860, - 'r', 1330, - 's', 1428, - 't', 1447, - 'u', 1484, - 'w', 1375, - 'x', 1434, - '|', 2254, - '}', 2403, + '!', 1267, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2295, + '*', 2457, + '+', 2511, + ',', 2296, + '-', 2338, + '.', 2801, + '/', 2500, + '0', 2649, + ':', 2793, + ';', 2254, + '<', 2482, + '=', 835, + '>', 2315, + 'I', 1545, + 'N', 1538, + '[', 2736, + ']', 2293, + '_', 1286, + '`', 455, + 'a', 1400, + 'b', 1382, + 'c', 1302, + 'd', 1330, + 'e', 860, + 'f', 1295, + 'h', 1301, + 'i', 1279, + 'l', 1345, + 'm', 1297, + 'n', 1441, + 'o', 861, + 'r', 1331, + 's', 1429, + 't', 1448, + 'u', 1485, + 'w', 1376, + 'x', 1435, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(670); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == ' ') SKIP(671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); - case 670: - if (eof) ADVANCE(818); + case 671: + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1266, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2294, - '*', 2456, - '+', 2510, - ',', 2295, - '-', 2337, - '.', 2801, - '/', 2499, - '0', 2648, - ':', 2792, - ';', 2253, - '<', 2481, - '=', 834, - '>', 2314, - 'I', 1544, - 'N', 1537, - ']', 2292, - '_', 1285, - '`', 454, - 'a', 1399, - 'b', 1381, - 'c', 1301, - 'd', 1329, - 'e', 859, - 'f', 1294, - 'h', 1300, - 'i', 1278, - 'l', 1344, - 'm', 1296, - 'n', 1440, - 'o', 860, - 'r', 1330, - 's', 1428, - 't', 1447, - 'u', 1484, - 'w', 1375, - 'x', 1434, - '|', 2254, - '}', 2403, + '!', 1267, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2295, + '*', 2457, + '+', 2511, + ',', 2296, + '-', 2338, + '.', 2802, + '/', 2500, + '0', 2649, + ':', 2793, + ';', 2254, + '<', 2482, + '=', 835, + '>', 2315, + 'I', 1545, + 'N', 1538, + ']', 2293, + '_', 1286, + '`', 455, + 'a', 1400, + 'b', 1382, + 'c', 1302, + 'd', 1330, + 'e', 860, + 'f', 1295, + 'h', 1301, + 'i', 1279, + 'l', 1345, + 'm', 1297, + 'n', 1441, + 'o', 861, + 'r', 1331, + 's', 1429, + 't', 1448, + 'u', 1485, + 'w', 1376, + 'x', 1435, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(670); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + lookahead == ' ') SKIP(671); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); - case 671: - if (eof) ADVANCE(818); + case 672: + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '$', 2296, - '(', 2492, - ')', 2294, - '*', 2455, - '+', 2509, - '-', 2343, - '.', 2557, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 3084, - '>', 2314, - '_', 3107, - 'a', 3162, - 'b', 3151, - 'e', 3039, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3041, - 's', 3205, - 'x', 3171, - '{', 2402, - '|', 2254, - '}', 2403, + '!', 3083, + '#', 4100, + '$', 2297, + '(', 2493, + ')', 2295, + '*', 2456, + '+', 2510, + '-', 2344, + '.', 2558, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 3085, + '>', 2315, + '_', 3108, + 'a', 3163, + 'b', 3152, + 'e', 3040, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3042, + 's', 3206, + 'x', 3172, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(703); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); + lookahead == ' ') SKIP(704); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(3259); + (lookahead < '_' || 'b' < lookahead)) ADVANCE(3260); END_STATE(); - case 672: - if (eof) ADVANCE(818); + case 673: + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '$', 2296, - '(', 2492, - ')', 2294, - '*', 2455, - '+', 2509, - '-', 2343, - '.', 2557, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 3084, - '>', 2314, - '_', 3107, - 'a', 3162, - 'b', 3151, - 'e', 3055, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3057, - 's', 3205, - 'x', 3171, - '|', 2254, - '}', 2403, + '!', 3083, + '#', 4100, + '$', 2297, + '(', 2493, + ')', 2295, + '*', 2456, + '+', 2510, + '-', 2344, + '.', 2558, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 3085, + '>', 2315, + '_', 3108, + 'a', 3163, + 'b', 3152, + 'e', 3056, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3058, + 's', 3206, + 'x', 3172, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(705); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); - case 673: - if (eof) ADVANCE(818); + case 674: + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '$', 2296, - '(', 2492, - ')', 2294, - '*', 2455, - '+', 2509, - '-', 2343, - '.', 3109, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 3084, - '>', 2314, - '_', 3107, - 'a', 3162, - 'b', 3151, - 'e', 3039, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3041, - 's', 3205, - 'x', 3171, - '|', 2254, - '}', 2403, + '!', 3083, + '#', 4100, + '$', 2297, + '(', 2493, + ')', 2295, + '*', 2456, + '+', 2510, + '-', 2344, + '.', 3110, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 3085, + '>', 2315, + '_', 3108, + 'a', 3163, + 'b', 3152, + 'e', 3040, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3042, + 's', 3206, + 'x', 3172, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(704); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(705); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); - case 674: - if (eof) ADVANCE(818); + case 675: + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '$', 2296, - '(', 2492, - ')', 2294, - '*', 2455, - '+', 2509, - '-', 2343, - '.', 3109, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 3084, - '>', 2314, - '_', 3107, - 'a', 3162, - 'b', 3151, - 'e', 3055, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3057, - 's', 3205, - 'x', 3171, - '|', 2254, - '}', 2403, + '!', 3083, + '#', 4100, + '$', 2297, + '(', 2493, + ')', 2295, + '*', 2456, + '+', 2510, + '-', 2344, + '.', 3110, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 3085, + '>', 2315, + '_', 3108, + 'a', 3163, + 'b', 3152, + 'e', 3056, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3058, + 's', 3206, + 'x', 3172, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(705); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); - case 675: - if (eof) ADVANCE(818); + case 676: + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 2547, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 3084, - '>', 2314, - 'B', 2714, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'a', 3162, - 'b', 2717, - 'd', 3124, - 'e', 3043, - 'g', 3103, - 'h', 3125, - 'i', 3161, - 'k', 3103, - 'm', 3105, - 'n', 3168, - 'o', 3041, - 'p', 3103, - 's', 3138, - 't', 3103, - 'u', 3195, - 'w', 3154, - 'x', 3171, - '{', 2402, - '|', 2254, - '}', 2403, - 0xb5, 3195, + '!', 3083, + '#', 4100, + '(', 2493, + ')', 2295, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 2548, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 3085, + '>', 2315, + 'B', 2715, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'a', 3163, + 'b', 2718, + 'd', 3125, + 'e', 3044, + 'g', 3104, + 'h', 3126, + 'i', 3162, + 'k', 3104, + 'm', 3106, + 'n', 3169, + 'o', 3042, + 'p', 3104, + 's', 3139, + 't', 3104, + 'u', 3196, + 'w', 3155, + 'x', 3172, + '{', 2403, + '|', 2255, + '}', 2404, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(709); + lookahead == ' ') SKIP(710); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(3259); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(3260); END_STATE(); - case 676: - if (eof) ADVANCE(818); + case 677: + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 2547, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 3084, - '>', 2314, - 'B', 2714, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'a', 3162, - 'b', 2717, - 'd', 3124, - 'e', 3048, - 'g', 3103, - 'h', 3125, - 'i', 3161, - 'k', 3103, - 'm', 3105, - 'n', 3168, - 'o', 3057, - 'p', 3103, - 's', 3138, - 't', 3103, - 'u', 3195, - 'w', 3154, - 'x', 3171, - '|', 2254, - '}', 2403, - 0xb5, 3195, + '!', 3083, + '#', 4100, + '(', 2493, + ')', 2295, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 2548, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 3085, + '>', 2315, + 'B', 2715, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'a', 3163, + 'b', 2718, + 'd', 3125, + 'e', 3049, + 'g', 3104, + 'h', 3126, + 'i', 3162, + 'k', 3104, + 'm', 3106, + 'n', 3169, + 'o', 3058, + 'p', 3104, + 's', 3139, + 't', 3104, + 'u', 3196, + 'w', 3155, + 'x', 3172, + '|', 2255, + '}', 2404, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(711); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(712); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); - case 677: - if (eof) ADVANCE(818); + case 678: + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 2547, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 3084, - '>', 2314, - 'E', 3118, - 'a', 3162, - 'b', 3151, - 'e', 3045, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3041, - 's', 3205, - 'x', 3171, - '{', 2402, - '|', 2254, - '}', 2403, + '!', 3083, + '#', 4100, + '(', 2493, + ')', 2295, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 2548, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 3085, + '>', 2315, + 'E', 3119, + 'a', 3163, + 'b', 3152, + 'e', 3046, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3042, + 's', 3206, + 'x', 3172, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(709); + lookahead == ' ') SKIP(710); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(3259); - END_STATE(); - case 678: - if (eof) ADVANCE(818); - ADVANCE_MAP( - '\n', 2250, - '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 2547, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 3084, - '>', 2314, - 'E', 3118, - 'a', 3162, - 'b', 3151, - 'e', 3050, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3057, - 's', 3205, - 'x', 3171, - '|', 2254, - '}', 2403, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(711); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(3260); END_STATE(); case 679: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 3076, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 3084, - '>', 2314, - 'B', 2714, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - '_', 3107, - 'a', 3162, - 'b', 2717, - 'd', 3124, - 'e', 3043, - 'g', 3103, - 'h', 3125, - 'i', 3161, - 'k', 3103, - 'm', 3105, - 'n', 3168, - 'o', 3041, - 'p', 3103, - 's', 3138, - 't', 3103, - 'u', 3195, - 'w', 3154, - 'x', 3171, - '|', 2254, - '}', 2403, - 0xb5, 3195, + '!', 3083, + '#', 4100, + '(', 2493, + ')', 2295, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 2548, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 3085, + '>', 2315, + 'E', 3119, + 'a', 3163, + 'b', 3152, + 'e', 3051, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3058, + 's', 3206, + 'x', 3172, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(710); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(712); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 680: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 3076, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 3084, - '>', 2314, - 'B', 2714, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - '_', 3107, - 'a', 3162, - 'b', 2717, - 'd', 3124, - 'e', 3048, - 'g', 3103, - 'h', 3125, - 'i', 3161, - 'k', 3103, - 'm', 3105, - 'n', 3168, - 'o', 3057, - 'p', 3103, - 's', 3138, - 't', 3103, - 'u', 3195, - 'w', 3154, - 'x', 3171, - '|', 2254, - '}', 2403, - 0xb5, 3195, + '!', 3083, + '#', 4100, + '(', 2493, + ')', 2295, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 3077, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 3085, + '>', 2315, + 'B', 2715, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + '_', 3108, + 'a', 3163, + 'b', 2718, + 'd', 3125, + 'e', 3044, + 'g', 3104, + 'h', 3126, + 'i', 3162, + 'k', 3104, + 'm', 3106, + 'n', 3169, + 'o', 3042, + 'p', 3104, + 's', 3139, + 't', 3104, + 'u', 3196, + 'w', 3155, + 'x', 3172, + '|', 2255, + '}', 2404, + 0xb5, 3196, ); if (lookahead == '\t' || lookahead == ' ') SKIP(711); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 681: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 3076, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 3084, - '>', 2314, - 'B', 2714, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'a', 3162, - 'b', 2717, - 'd', 3124, - 'e', 3043, - 'g', 3103, - 'h', 3125, - 'i', 3161, - 'k', 3103, - 'm', 3105, - 'n', 3168, - 'o', 3041, - 'p', 3103, - 's', 3138, - 't', 3103, - 'u', 3195, - 'w', 3154, - 'x', 3171, - '|', 2254, - '}', 2403, - 0xb5, 3195, + '!', 3083, + '#', 4100, + '(', 2493, + ')', 2295, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 3077, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 3085, + '>', 2315, + 'B', 2715, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + '_', 3108, + 'a', 3163, + 'b', 2718, + 'd', 3125, + 'e', 3049, + 'g', 3104, + 'h', 3126, + 'i', 3162, + 'k', 3104, + 'm', 3106, + 'n', 3169, + 'o', 3058, + 'p', 3104, + 's', 3139, + 't', 3104, + 'u', 3196, + 'w', 3155, + 'x', 3172, + '|', 2255, + '}', 2404, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(710); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(712); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 682: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 3076, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 3084, - '>', 2314, - 'B', 2714, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'a', 3162, - 'b', 2717, - 'd', 3124, - 'e', 3048, - 'g', 3103, - 'h', 3125, - 'i', 3161, - 'k', 3103, - 'm', 3105, - 'n', 3168, - 'o', 3057, - 'p', 3103, - 's', 3138, - 't', 3103, - 'u', 3195, - 'w', 3154, - 'x', 3171, - '|', 2254, - '}', 2403, - 0xb5, 3195, + '!', 3083, + '#', 4100, + '(', 2493, + ')', 2295, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 3077, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 3085, + '>', 2315, + 'B', 2715, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'a', 3163, + 'b', 2718, + 'd', 3125, + 'e', 3044, + 'g', 3104, + 'h', 3126, + 'i', 3162, + 'k', 3104, + 'm', 3106, + 'n', 3169, + 'o', 3042, + 'p', 3104, + 's', 3139, + 't', 3104, + 'u', 3196, + 'w', 3155, + 'x', 3172, + '|', 2255, + '}', 2404, + 0xb5, 3196, ); if (lookahead == '\t' || lookahead == ' ') SKIP(711); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 683: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 3076, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 3084, - '>', 2314, - 'B', 2714, - 'E', 3104, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'a', 3162, - 'b', 2717, - 'd', 3124, - 'e', 3037, - 'g', 3103, - 'h', 3125, - 'i', 3161, - 'k', 3103, - 'm', 3105, - 'n', 3168, - 'o', 3041, - 'p', 3103, - 's', 3138, - 't', 3103, - 'u', 3195, - 'w', 3154, - 'x', 3171, - '|', 2254, - '}', 2403, - 0xb5, 3195, + '!', 3083, + '#', 4100, + '(', 2493, + ')', 2295, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 3077, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 3085, + '>', 2315, + 'B', 2715, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'a', 3163, + 'b', 2718, + 'd', 3125, + 'e', 3049, + 'g', 3104, + 'h', 3126, + 'i', 3162, + 'k', 3104, + 'm', 3106, + 'n', 3169, + 'o', 3058, + 'p', 3104, + 's', 3139, + 't', 3104, + 'u', 3196, + 'w', 3155, + 'x', 3172, + '|', 2255, + '}', 2404, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(710); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(712); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 684: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 3076, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 3084, - '>', 2314, - 'B', 2714, - 'E', 3104, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'a', 3162, - 'b', 2717, - 'd', 3124, - 'e', 3053, - 'g', 3103, - 'h', 3125, - 'i', 3161, - 'k', 3103, - 'm', 3105, - 'n', 3168, - 'o', 3057, - 'p', 3103, - 's', 3138, - 't', 3103, - 'u', 3195, - 'w', 3154, - 'x', 3171, - '|', 2254, - '}', 2403, - 0xb5, 3195, + '!', 3083, + '#', 4100, + '(', 2493, + ')', 2295, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 3077, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 3085, + '>', 2315, + 'B', 2715, + 'E', 3105, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'a', 3163, + 'b', 2718, + 'd', 3125, + 'e', 3038, + 'g', 3104, + 'h', 3126, + 'i', 3162, + 'k', 3104, + 'm', 3106, + 'n', 3169, + 'o', 3042, + 'p', 3104, + 's', 3139, + 't', 3104, + 'u', 3196, + 'w', 3155, + 'x', 3172, + '|', 2255, + '}', 2404, + 0xb5, 3196, ); if (lookahead == '\t' || lookahead == ' ') SKIP(711); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 685: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 3076, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 3084, - '>', 2314, - 'E', 3118, - '_', 3107, - 'a', 3162, - 'b', 3151, - 'e', 3045, + '!', 3083, + '#', 4100, + '(', 2493, + ')', 2295, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 3077, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 3085, + '>', 2315, + 'B', 2715, + 'E', 3105, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'a', 3163, + 'b', 2718, + 'd', 3125, + 'e', 3054, + 'g', 3104, 'h', 3126, - 'i', 3161, - 'm', 3167, + 'i', 3162, + 'k', 3104, + 'm', 3106, 'n', 3169, - 'o', 3041, - 's', 3205, - 'x', 3171, - '{', 2402, - '|', 2254, - '}', 2403, + 'o', 3058, + 'p', 3104, + 's', 3139, + 't', 3104, + 'u', 3196, + 'w', 3155, + 'x', 3172, + '|', 2255, + '}', 2404, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(709); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); + lookahead == ' ') SKIP(712); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); + END_STATE(); + case 686: + if (eof) ADVANCE(819); + ADVANCE_MAP( + '\n', 2251, + '\r', 1, + '!', 3083, + '#', 4100, + '(', 2493, + ')', 2295, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 3077, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 3085, + '>', 2315, + 'E', 3119, + '_', 3108, + 'a', 3163, + 'b', 3152, + 'e', 3046, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3042, + 's', 3206, + 'x', 3172, + '{', 2403, + '|', 2255, + '}', 2404, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(710); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(3259); + (lookahead < '_' || 'b' < lookahead)) ADVANCE(3260); END_STATE(); - case 686: - if (eof) ADVANCE(818); + case 687: + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 3076, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 3084, - '>', 2314, - 'E', 3118, - '_', 3107, - 'a', 3162, - 'b', 3151, - 'e', 3050, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3057, - 's', 3205, - 'x', 3171, - '|', 2254, - '}', 2403, + '!', 3083, + '#', 4100, + '(', 2493, + ')', 2295, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 3077, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 3085, + '>', 2315, + 'E', 3119, + '_', 3108, + 'a', 3163, + 'b', 3152, + 'e', 3051, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3058, + 's', 3206, + 'x', 3172, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(711); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(712); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); - case 687: - if (eof) ADVANCE(818); + case 688: + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 3076, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 3084, - '>', 2314, - 'E', 3118, - 'a', 3162, - 'b', 3151, - 'e', 3045, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3041, - 's', 3205, - 'x', 3171, - '{', 2402, - '|', 2254, - '}', 2403, + '!', 3083, + '#', 4100, + '(', 2493, + ')', 2295, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 3077, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 3085, + '>', 2315, + 'E', 3119, + 'a', 3163, + 'b', 3152, + 'e', 3046, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3042, + 's', 3206, + 'x', 3172, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(709); + lookahead == ' ') SKIP(710); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(3259); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(3260); END_STATE(); - case 688: - if (eof) ADVANCE(818); + case 689: + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 3076, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 3084, - '>', 2314, - 'E', 3118, - 'a', 3162, - 'b', 3151, - 'e', 3050, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3057, - 's', 3205, - 'x', 3171, - '|', 2254, - '}', 2403, + '!', 3083, + '#', 4100, + '(', 2493, + ')', 2295, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 3077, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 3085, + '>', 2315, + 'E', 3119, + 'a', 3163, + 'b', 3152, + 'e', 3051, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3058, + 's', 3206, + 'x', 3172, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(711); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(712); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); - case 689: - if (eof) ADVANCE(818); + case 690: + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 3076, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 3084, - '>', 2314, - 'a', 3162, - 'b', 3151, - 'e', 3039, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3041, - 's', 3205, - 'x', 3171, - '{', 2402, - '|', 2254, - '}', 2403, + '!', 3083, + '#', 4100, + '(', 2493, + ')', 2295, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 3077, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 3085, + '>', 2315, + 'a', 3163, + 'b', 3152, + 'e', 3040, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3042, + 's', 3206, + 'x', 3172, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(709); + lookahead == ' ') SKIP(710); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(3259); - END_STATE(); - case 690: - if (eof) ADVANCE(818); - ADVANCE_MAP( - '\n', 2250, - '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 3076, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 3084, - '>', 2314, - 'a', 3162, - 'b', 3151, - 'e', 3055, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3057, - 's', 3205, - 'x', 3171, - '|', 2254, - '}', 2403, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(711); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(3260); END_STATE(); case 691: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 2533, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 3084, - '>', 2314, - 'E', 3118, - 'a', 3162, - 'b', 3151, - 'e', 3045, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3041, - 's', 3205, - 'x', 3171, - '|', 2254, - '}', 2403, + '!', 3083, + '#', 4100, + '(', 2493, + ')', 2295, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 3077, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 3085, + '>', 2315, + 'a', 3163, + 'b', 3152, + 'e', 3056, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3058, + 's', 3206, + 'x', 3172, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(710); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(712); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 692: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 2533, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 3084, - '>', 2314, - 'E', 3118, - 'a', 3162, - 'b', 3151, - 'e', 3050, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3057, - 's', 3205, - 'x', 3171, - '|', 2254, - '}', 2403, + '!', 3083, + '#', 4100, + '(', 2493, + ')', 2295, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 2534, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 3085, + '>', 2315, + 'E', 3119, + 'a', 3163, + 'b', 3152, + 'e', 3046, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3042, + 's', 3206, + 'x', 3172, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(711); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 693: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 3084, - '>', 2314, - 'E', 3118, - '_', 3107, - 'a', 3162, - 'b', 3151, - 'e', 3045, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3041, - 's', 3205, - 'x', 3171, - '|', 2254, - '}', 2403, + '!', 3083, + '#', 4100, + '(', 2493, + ')', 2295, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 2534, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 3085, + '>', 2315, + 'E', 3119, + 'a', 3163, + 'b', 3152, + 'e', 3051, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3058, + 's', 3206, + 'x', 3172, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(710); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(712); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 694: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 3084, - '>', 2314, - 'E', 3118, - '_', 3107, - 'a', 3162, - 'b', 3151, - 'e', 3050, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3057, - 's', 3205, - 'x', 3171, - '|', 2254, - '}', 2403, + '!', 3083, + '#', 4100, + '(', 2493, + ')', 2295, + '*', 2456, + '+', 2508, + '-', 2325, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 3085, + '>', 2315, + 'E', 3119, + '_', 3108, + 'a', 3163, + 'b', 3152, + 'e', 3046, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3042, + 's', 3206, + 'x', 3172, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(711); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 695: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 3084, - '>', 2314, - 'E', 3118, - 'a', 3162, - 'b', 3151, - 'e', 3045, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3041, - 's', 3205, - 'x', 3171, - '|', 2254, - '}', 2403, + '!', 3083, + '#', 4100, + '(', 2493, + ')', 2295, + '*', 2456, + '+', 2508, + '-', 2325, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 3085, + '>', 2315, + 'E', 3119, + '_', 3108, + 'a', 3163, + 'b', 3152, + 'e', 3051, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3058, + 's', 3206, + 'x', 3172, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(710); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(712); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 696: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 3084, - '>', 2314, - 'E', 3118, - 'a', 3162, - 'b', 3151, - 'e', 3050, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3057, - 's', 3205, - 'x', 3171, - '|', 2254, - '}', 2403, + '!', 3083, + '#', 4100, + '(', 2493, + ')', 2295, + '*', 2456, + '+', 2508, + '-', 2325, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 3085, + '>', 2315, + 'E', 3119, + 'a', 3163, + 'b', 3152, + 'e', 3046, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3042, + 's', 3206, + 'x', 3172, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(711); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 697: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 3084, - '>', 2314, - 'a', 3162, - 'b', 3151, - 'e', 3039, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3041, - 's', 3205, - 'x', 3171, - '|', 2254, - '}', 2403, + '!', 3083, + '#', 4100, + '(', 2493, + ')', 2295, + '*', 2456, + '+', 2508, + '-', 2325, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 3085, + '>', 2315, + 'E', 3119, + 'a', 3163, + 'b', 3152, + 'e', 3051, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3058, + 's', 3206, + 'x', 3172, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(710); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(712); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 698: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3082, - '#', 4099, - '(', 2492, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 3084, - '>', 2314, - 'a', 3162, - 'b', 3151, - 'e', 3055, - 'h', 3126, - 'i', 3161, - 'm', 3167, - 'n', 3169, - 'o', 3057, - 's', 3205, - 'x', 3171, - '|', 2254, - '}', 2403, + '!', 3083, + '#', 4100, + '(', 2493, + ')', 2295, + '*', 2456, + '+', 2508, + '-', 2325, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 3085, + '>', 2315, + 'a', 3163, + 'b', 3152, + 'e', 3040, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3042, + 's', 3206, + 'x', 3172, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(711); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 699: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3301, - '#', 4105, - '(', 2492, - ')', 2294, - '*', 2457, - '+', 2512, - '-', 2347, - '/', 2500, - ';', 2253, + '!', 3083, + '#', 4100, + '(', 2493, + ')', 2295, + '*', 2456, + '+', 2508, + '-', 2325, + '/', 2499, + ';', 2254, '<', 2482, - '=', 3303, + '=', 3085, '>', 2315, - 'a', 3398, - 'b', 3381, - 'e', 3269, - 'h', 3337, - 'i', 3399, - 'm', 3411, - 'n', 3414, - 'o', 3271, - 's', 3461, - 'x', 3413, - '|', 2254, - '}', 2403, + 'a', 3163, + 'b', 3152, + 'e', 3056, + 'h', 3127, + 'i', 3162, + 'm', 3168, + 'n', 3170, + 'o', 3058, + 's', 3206, + 'x', 3172, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(710); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + lookahead == ' ') SKIP(712); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 700: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 3301, - '#', 4105, - '(', 2492, - ')', 2294, - '*', 2457, - '+', 2512, - '-', 2347, - '/', 2500, - ';', 2253, - '<', 2482, - '=', 3303, - '>', 2315, - 'a', 3398, - 'b', 3381, - 'e', 3275, - 'h', 3337, - 'i', 3399, - 'm', 3411, - 'n', 3414, - 'o', 3277, - 's', 3461, - 'x', 3413, - '|', 2254, - '}', 2403, + '!', 3302, + '#', 4106, + '(', 2493, + ')', 2295, + '*', 2458, + '+', 2513, + '-', 2348, + '/', 2501, + ';', 2254, + '<', 2483, + '=', 3304, + '>', 2316, + 'a', 3399, + 'b', 3382, + 'e', 3270, + 'h', 3338, + 'i', 3400, + 'm', 3412, + 'n', 3415, + 'o', 3272, + 's', 3462, + 'x', 3414, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(711); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 701: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 423, - '#', 4099, - '$', 2296, - '(', 2293, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 2796, - '/', 2498, - ':', 2289, - ';', 2253, - '<', 2481, - '=', 424, - '>', 2314, - '?', 2458, - '[', 2291, - 'a', 526, - 'b', 509, - 'c', 463, - 'e', 390, - 'f', 459, - 'h', 455, - 'i', 496, - 'm', 541, - 'n', 545, - 'o', 386, - 's', 586, - 't', 561, - 'x', 536, - '{', 2402, - '|', 2254, - '}', 2403, + '!', 3302, + '#', 4106, + '(', 2493, + ')', 2295, + '*', 2458, + '+', 2513, + '-', 2348, + '/', 2501, + ';', 2254, + '<', 2483, + '=', 3304, + '>', 2316, + 'a', 3399, + 'b', 3382, + 'e', 3276, + 'h', 3338, + 'i', 3400, + 'm', 3412, + 'n', 3415, + 'o', 3278, + 's', 3462, + 'x', 3414, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(701); + lookahead == ' ') SKIP(712); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 702: - if (eof) ADVANCE(818); - ADVANCE_MAP( - '\n', 2250, - '\r', 1, - '!', 423, - '#', 4099, - '$', 2296, - '(', 2293, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 2533, - '/', 2498, - ':', 2289, - ';', 2253, - '<', 2481, - '=', 424, - '>', 2314, - '?', 2458, - 'E', 452, - '[', 2291, - 'a', 526, - 'b', 509, - 'c', 463, - 'e', 388, - 'f', 459, - 'h', 455, - 'i', 496, - 'm', 541, - 'n', 545, - 'o', 386, - 's', 586, - 't', 561, - 'x', 536, - '{', 2402, - '|', 2254, - '}', 2403, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(701); - END_STATE(); - case 703: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 423, - '#', 4099, - '$', 2296, - ')', 2294, - '*', 2455, + '!', 424, + '#', 4100, + '$', 2297, + '(', 2294, + ')', 2295, + '*', 2456, '+', 2508, - '-', 2342, - '.', 447, - '/', 2498, - ';', 2253, - '<', 2481, + '-', 2325, + '.', 2797, + '/', 2499, + ':', 2290, + ';', 2254, + '<', 2482, '=', 425, - '>', 2314, - 'a', 526, - 'b', 509, + '>', 2315, + '?', 2459, + '[', 2292, + 'a', 527, + 'b', 510, + 'c', 464, 'e', 391, - 'h', 455, - 'i', 528, - 'm', 541, - 'n', 539, - 'o', 386, - 's', 586, - 'x', 536, - '{', 2402, - '|', 2254, - '}', 2403, + 'f', 460, + 'h', 456, + 'i', 497, + 'm', 542, + 'n', 546, + 'o', 387, + 's', 587, + 't', 562, + 'x', 537, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(703); + lookahead == ' ') SKIP(702); END_STATE(); - case 704: - if (eof) ADVANCE(818); + case 703: + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 423, - '#', 4099, - '$', 2296, - ')', 2294, - '*', 2455, + '!', 424, + '#', 4100, + '$', 2297, + '(', 2294, + ')', 2295, + '*', 2456, '+', 2508, - '-', 2342, - '.', 447, - '/', 2498, - ';', 2253, - '<', 2481, + '-', 2325, + '.', 2534, + '/', 2499, + ':', 2290, + ';', 2254, + '<', 2482, '=', 425, - '>', 2314, - 'a', 526, - 'b', 509, - 'e', 391, - 'h', 455, - 'i', 528, - 'm', 541, - 'n', 539, - 'o', 386, - 's', 586, - 'x', 536, - '|', 2254, - '}', 2403, + '>', 2315, + '?', 2459, + 'E', 453, + '[', 2292, + 'a', 527, + 'b', 510, + 'c', 464, + 'e', 389, + 'f', 460, + 'h', 456, + 'i', 497, + 'm', 542, + 'n', 546, + 'o', 387, + 's', 587, + 't', 562, + 'x', 537, + '{', 2403, + '|', 2255, + '}', 2404, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(702); + END_STATE(); + case 704: + if (eof) ADVANCE(819); + ADVANCE_MAP( + '\n', 2251, + '\r', 1, + '!', 424, + '#', 4100, + '$', 2297, + ')', 2295, + '*', 2456, + '+', 2509, + '-', 2343, + '.', 448, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 426, + '>', 2315, + 'a', 527, + 'b', 510, + 'e', 392, + 'h', 456, + 'i', 529, + 'm', 542, + 'n', 540, + 'o', 387, + 's', 587, + 'x', 537, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(704); END_STATE(); case 705: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 423, - '#', 4099, - '$', 2296, - ')', 2294, - '*', 2455, - '+', 2508, - '-', 2342, - '.', 447, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 425, - '>', 2314, - 'a', 526, - 'b', 509, - 'e', 394, - 'h', 455, - 'i', 528, - 'm', 541, - 'n', 539, - 'o', 396, - 's', 586, - 'x', 536, - '|', 2254, - '}', 2403, + '!', 424, + '#', 4100, + '$', 2297, + ')', 2295, + '*', 2456, + '+', 2509, + '-', 2343, + '.', 448, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 426, + '>', 2315, + 'a', 527, + 'b', 510, + 'e', 392, + 'h', 456, + 'i', 529, + 'm', 542, + 'n', 540, + 'o', 387, + 's', 587, + 'x', 537, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(705); END_STATE(); case 706: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 423, - '#', 4099, - '(', 2492, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 2802, - '/', 2498, - ':', 2792, - ';', 2253, - '<', 2481, - '=', 424, - '>', 2314, - '?', 2458, - 'B', 2714, - 'E', 437, - 'G', 439, - 'K', 439, - 'M', 439, - 'P', 439, - 'T', 439, - '[', 2735, - '_', 450, - 'a', 526, - 'b', 2716, - 'd', 458, - 'e', 387, - 'g', 438, + '!', 424, + '#', 4100, + '$', 2297, + ')', 2295, + '*', 2456, + '+', 2509, + '-', 2343, + '.', 448, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 426, + '>', 2315, + 'a', 527, + 'b', 510, + 'e', 395, 'h', 456, - 'i', 496, - 'k', 438, - 'm', 440, + 'i', 529, + 'm', 542, 'n', 540, - 'o', 386, - 'p', 438, - 's', 487, - 't', 438, - 'u', 572, - 'w', 514, - 'x', 536, - '{', 2402, - '|', 2254, - '}', 2403, - 0xb5, 572, + 'o', 397, + 's', 587, + 'x', 537, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(708); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); + lookahead == ' ') SKIP(706); END_STATE(); case 707: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 423, - '#', 4099, - '(', 2492, - ')', 2294, + '!', 424, + '#', 4100, + '(', 2493, + ')', 2295, '*', 2456, - '+', 2511, - '-', 2346, - '.', 2802, + '+', 2508, + '-', 2325, + '.', 2803, '/', 2499, - ':', 2792, - ';', 2253, - '<', 2481, - '=', 834, - '>', 2314, - '?', 2458, - 'a', 526, - 'b', 509, - 'e', 391, - 'h', 455, - 'i', 528, - 'm', 541, - 'n', 539, - 'o', 386, - 's', 586, - 'x', 536, - '{', 2402, - '|', 2254, - '}', 2403, + ':', 2793, + ';', 2254, + '<', 2482, + '=', 425, + '>', 2315, + '?', 2459, + 'B', 2715, + 'E', 438, + 'G', 440, + 'K', 440, + 'M', 440, + 'P', 440, + 'T', 440, + '[', 2736, + '_', 451, + 'a', 527, + 'b', 2717, + 'd', 459, + 'e', 388, + 'g', 439, + 'h', 457, + 'i', 497, + 'k', 439, + 'm', 441, + 'n', 541, + 'o', 387, + 'p', 439, + 's', 488, + 't', 439, + 'u', 573, + 'w', 515, + 'x', 537, + '{', 2403, + '|', 2255, + '}', 2404, + 0xb5, 573, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(712); + lookahead == ' ') SKIP(709); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); END_STATE(); case 708: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 423, - '#', 4099, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '.', 2796, - '/', 2498, - ':', 2792, - ';', 2253, - '<', 2481, - '=', 424, - '>', 2314, - '?', 2458, - 'a', 526, - 'b', 509, - 'e', 391, - 'h', 455, - 'i', 496, - 'm', 541, - 'n', 539, - 'o', 386, - 's', 586, - 'x', 536, - '{', 2402, - '|', 2254, - '}', 2403, + '!', 424, + '#', 4100, + '(', 2493, + ')', 2295, + '*', 2457, + '+', 2512, + '-', 2347, + '.', 2803, + '/', 2500, + ':', 2793, + ';', 2254, + '<', 2482, + '=', 835, + '>', 2315, + '?', 2459, + 'a', 527, + 'b', 510, + 'e', 392, + 'h', 456, + 'i', 529, + 'm', 542, + 'n', 540, + 'o', 387, + 's', 587, + 'x', 537, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(708); + lookahead == ' ') SKIP(713); END_STATE(); case 709: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 423, - '#', 4099, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '/', 2498, - ';', 2253, - '<', 2481, + '!', 424, + '#', 4100, + ')', 2295, + '*', 2456, + '+', 2508, + '-', 2325, + '.', 2797, + '/', 2499, + ':', 2793, + ';', 2254, + '<', 2482, '=', 425, - '>', 2314, - 'a', 526, - 'b', 509, - 'e', 391, - 'h', 455, - 'i', 528, - 'm', 541, - 'n', 539, - 'o', 386, - 's', 586, - 'x', 536, - '{', 2402, - '|', 2254, - '}', 2403, + '>', 2315, + '?', 2459, + 'a', 527, + 'b', 510, + 'e', 392, + 'h', 456, + 'i', 497, + 'm', 542, + 'n', 540, + 'o', 387, + 's', 587, + 'x', 537, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(709); END_STATE(); case 710: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 423, - '#', 4099, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 425, - '>', 2314, - 'a', 526, - 'b', 509, - 'e', 391, - 'h', 455, - 'i', 528, - 'm', 541, - 'n', 539, - 'o', 386, - 's', 586, - 'x', 536, - '|', 2254, - '}', 2403, + '!', 424, + '#', 4100, + ')', 2295, + '*', 2456, + '+', 2508, + '-', 2325, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 426, + '>', 2315, + 'a', 527, + 'b', 510, + 'e', 392, + 'h', 456, + 'i', 529, + 'm', 542, + 'n', 540, + 'o', 387, + 's', 587, + 'x', 537, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(710); END_STATE(); case 711: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 423, - '#', 4099, - ')', 2294, - '*', 2455, - '+', 2507, - '-', 2324, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 425, - '>', 2314, - 'a', 526, - 'b', 509, - 'e', 394, - 'h', 455, - 'i', 528, - 'm', 541, - 'n', 539, - 'o', 396, - 's', 586, - 'x', 536, - '|', 2254, - '}', 2403, + '!', 424, + '#', 4100, + ')', 2295, + '*', 2456, + '+', 2508, + '-', 2325, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 426, + '>', 2315, + 'a', 527, + 'b', 510, + 'e', 392, + 'h', 456, + 'i', 529, + 'm', 542, + 'n', 540, + 'o', 387, + 's', 587, + 'x', 537, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(711); END_STATE(); case 712: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 423, - '#', 4099, - ')', 2294, + '!', 424, + '#', 4100, + ')', 2295, '*', 2456, - '+', 2511, - '-', 2346, - '.', 2796, + '+', 2508, + '-', 2325, '/', 2499, - ':', 2792, - ';', 2253, - '<', 2481, - '=', 834, - '>', 2314, - '?', 2458, - 'a', 526, - 'b', 509, - 'e', 391, - 'h', 455, - 'i', 528, - 'm', 541, - 'n', 539, - 'o', 386, - 's', 586, - 'x', 536, - '{', 2402, - '|', 2254, - '}', 2403, + ';', 2254, + '<', 2482, + '=', 426, + '>', 2315, + 'a', 527, + 'b', 510, + 'e', 395, + 'h', 456, + 'i', 529, + 'm', 542, + 'n', 540, + 'o', 397, + 's', 587, + 'x', 537, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(712); END_STATE(); case 713: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 423, - '#', 4099, - '*', 2455, - '+', 2507, - '-', 2324, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 425, - '>', 2314, - 'a', 526, - 'b', 509, - 'e', 391, - 'h', 455, - 'i', 528, - 'm', 541, - 'n', 539, - 'o', 386, - 's', 586, - 'x', 536, - '|', 2254, + '!', 424, + '#', 4100, + ')', 2295, + '*', 2457, + '+', 2512, + '-', 2347, + '.', 2797, + '/', 2500, + ':', 2793, + ';', 2254, + '<', 2482, + '=', 835, + '>', 2315, + '?', 2459, + 'a', 527, + 'b', 510, + 'e', 392, + 'h', 456, + 'i', 529, + 'm', 542, + 'n', 540, + 'o', 387, + 's', 587, + 'x', 537, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(713); END_STATE(); case 714: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 423, - '#', 4099, - '*', 2455, - '+', 2507, - '-', 2324, - '/', 2498, - ';', 2253, - '<', 2481, - '=', 425, - '>', 2314, - 'a', 526, - 'b', 509, - 'e', 394, - 'h', 455, - 'i', 528, - 'm', 541, - 'n', 539, - 'o', 396, - 's', 586, - 'x', 536, - '|', 2254, + '!', 424, + '#', 4100, + '*', 2456, + '+', 2508, + '-', 2325, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 426, + '>', 2315, + 'a', 527, + 'b', 510, + 'e', 392, + 'h', 456, + 'i', 529, + 'm', 542, + 'n', 540, + 'o', 387, + 's', 587, + 'x', 537, + '|', 2255, ); if (lookahead == '\t' || lookahead == ' ') SKIP(714); END_STATE(); case 715: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4101, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2294, - '*', 2455, - '+', 2507, - ',', 2295, - '-', 2324, - '.', 2797, - '/', 2501, - '0', 1975, - ':', 2792, - ';', 2253, - '<', 2480, - '=', 833, - '>', 2313, - '?', 2458, - '@', 2264, - '[', 2291, - ']', 2292, - '^', 2813, - '_', 2406, - '`', 454, - '{', 2402, - '|', 2254, - '}', 2403, + '!', 424, + '#', 4100, + '*', 2456, + '+', 2508, + '-', 2325, + '/', 2499, + ';', 2254, + '<', 2482, + '=', 426, + '>', 2315, + 'a', 527, + 'b', 510, + 'e', 395, + 'h', 456, + 'i', 529, + 'm', 542, + 'n', 540, + 'o', 397, + 's', 587, + 'x', 537, + '|', 2255, ); if (lookahead == '\t' || lookahead == ' ') SKIP(715); - if (lookahead == '!' || - lookahead == '&') ADVANCE(3868); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2028); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2022); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1976); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(2036); END_STATE(); case 716: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4101, - '$', 2297, - '\'', 385, - '(', 2293, - '+', 1019, - '-', 2338, - '.', 1020, - '0', 2641, - ';', 2253, - '@', 2264, - 'I', 1238, - 'N', 1235, - '[', 2291, - '^', 2813, - '_', 1036, - '`', 454, - 'a', 1130, - 'b', 1172, - 'c', 1037, - 'd', 1063, - 'e', 1138, - 'f', 1040, - 'h', 1114, - 'i', 1034, - 'l', 1076, - 'm', 1042, - 'n', 1156, - 'o', 1231, - 'r', 1064, - 's', 1152, - 't', 1167, - 'u', 1194, - 'w', 1107, - '{', 2402, + '"', 2766, + '#', 4102, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2295, + '*', 2456, + '+', 2508, + ',', 2296, + '-', 2325, + '.', 2798, + '/', 2502, + '0', 1976, + ':', 2793, + ';', 2254, + '<', 2481, + '=', 834, + '>', 2314, + '?', 2459, + '@', 2265, + '[', 2292, + ']', 2293, + '^', 2814, + '_', 2407, + '`', 455, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(716); if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ',') || - lookahead == '?') ADVANCE(1558); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2664); + lookahead == '&') ADVANCE(3869); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2029); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2023); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1977); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1241); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(2037); END_STATE(); case 717: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - ')', 2294, - '+', 2955, - '-', 2326, - '.', 2951, + '"', 2766, + '#', 4102, + '$', 2298, + '\'', 386, + '(', 2294, + '+', 1020, + '-', 2339, + '.', 1021, '0', 2642, - ';', 2253, - 'N', 3013, - '[', 2291, - '_', 2968, - '`', 454, - 'e', 2941, - 'f', 2981, - 'n', 3009, - 'o', 2942, - 't', 2996, - '{', 2402, - '|', 2254, - '}', 2403, + ';', 2254, + '@', 2265, + 'I', 1239, + 'N', 1236, + '[', 2292, + '^', 2814, + '_', 1037, + '`', 455, + 'a', 1131, + 'b', 1173, + 'c', 1038, + 'd', 1064, + 'e', 1139, + 'f', 1041, + 'h', 1115, + 'i', 1035, + 'l', 1077, + 'm', 1043, + 'n', 1157, + 'o', 1232, + 'r', 1065, + 's', 1153, + 't', 1168, + 'u', 1195, + 'w', 1108, + '{', 2403, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3016); + lookahead == ' ') SKIP(717); + if (lookahead == '!' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ',') || + lookahead == '?') ADVANCE(1559); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2665); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3036); + (lookahead < '&' || '.' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1242); END_STATE(); case 718: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - ')', 2294, - '+', 3077, - '-', 2329, - '.', 3073, - '0', 2572, - ';', 2253, - 'N', 3227, - '[', 2291, - '_', 3107, - '`', 454, - 'e', 3040, - 'f', 3123, - 'n', 3211, - 'o', 3042, - 't', 3181, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + ')', 2295, + '+', 2956, + '-', 2327, + '.', 2952, + '0', 2643, + ';', 2254, + 'N', 3014, + '[', 2292, + '_', 2969, + '`', 455, + 'e', 2942, + 'f', 2982, + 'n', 3010, + 'o', 2943, + 't', 2997, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(760); + lookahead == ' ') SKIP(744); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3236); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2587); + lookahead == 'i') ADVANCE(3017); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3259); + lookahead != ']') ADVANCE(3037); END_STATE(); case 719: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - ')', 2294, - '+', 3077, - '-', 2329, - '.', 2537, - '0', 2572, - ';', 2253, - 'N', 3227, - '[', 2291, - '_', 3107, - '`', 454, - 'e', 3040, - 'f', 3123, - 'n', 3211, - 'o', 3042, - 't', 3181, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + ')', 2295, + '+', 3078, + '-', 2330, + '.', 3074, + '0', 2573, + ';', 2254, + 'N', 3228, + '[', 2292, + '_', 3108, + '`', 455, + 'e', 3041, + 'f', 3124, + 'n', 3212, + 'o', 3043, + 't', 3182, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(760); + lookahead == ' ') SKIP(761); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3236); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2587); + lookahead == 'i') ADVANCE(3237); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2588); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3259); + lookahead != ']') ADVANCE(3260); END_STATE(); case 720: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - ')', 2294, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + ')', 2295, '+', 3078, - '-', 2331, - '.', 3075, - '0', 2572, - ';', 2253, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'N', 3227, - 'P', 3104, - 'T', 3104, - '[', 2291, - '_', 3107, - '`', 454, - 'd', 3124, - 'e', 3044, - 'f', 3123, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3194, - 'o', 3042, - 'p', 3103, - 's', 3139, - 't', 3102, - 'u', 3195, - 'w', 3154, - '{', 2402, - '|', 2254, - '}', 2403, - 0xb5, 3195, + '-', 2330, + '.', 2538, + '0', 2573, + ';', 2254, + 'N', 3228, + '[', 2292, + '_', 3108, + '`', 455, + 'e', 3041, + 'f', 3124, + 'n', 3212, + 'o', 3043, + 't', 3182, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); + lookahead == ' ') SKIP(761); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3236); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2587); + lookahead == 'i') ADVANCE(3237); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2588); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3259); + lookahead != ']') ADVANCE(3260); END_STATE(); case 721: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - ')', 2294, - '+', 3078, - '-', 2331, - '.', 3075, - '0', 2572, - ';', 2253, - 'E', 3118, - 'N', 3227, - '[', 2291, - '_', 3107, - '`', 454, - 'e', 3046, - 'f', 3123, - 'n', 3211, - 'o', 3042, - 't', 3181, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + ')', 2295, + '+', 3079, + '-', 2332, + '.', 3076, + '0', 2573, + ';', 2254, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'N', 3228, + 'P', 3105, + 'T', 3105, + '[', 2292, + '_', 3108, + '`', 455, + 'd', 3125, + 'e', 3045, + 'f', 3124, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3195, + 'o', 3043, + 'p', 3104, + 's', 3140, + 't', 3103, + 'u', 3196, + 'w', 3155, + '{', 2403, + '|', 2255, + '}', 2404, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); + lookahead == ' ') SKIP(744); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3236); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2587); + lookahead == 'i') ADVANCE(3237); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2588); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3259); + lookahead != ']') ADVANCE(3260); END_STATE(); case 722: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - ')', 2294, - '+', 3078, - '-', 2331, - '.', 3075, - '0', 2646, - ';', 2253, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'N', 3227, - 'P', 3104, - 'T', 3104, - '[', 2291, - '_', 3122, - '`', 454, - 'd', 3124, - 'e', 3044, - 'f', 3123, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3194, - 'o', 3042, - 'p', 3103, - 's', 3139, - 't', 3102, - 'u', 3195, - 'w', 3154, - '{', 2402, - '|', 2254, - '}', 2403, - 0xb5, 3195, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + ')', 2295, + '+', 3079, + '-', 2332, + '.', 3076, + '0', 2573, + ';', 2254, + 'E', 3119, + 'N', 3228, + '[', 2292, + '_', 3108, + '`', 455, + 'e', 3047, + 'f', 3124, + 'n', 3212, + 'o', 3043, + 't', 3182, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); + lookahead == ' ') SKIP(744); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3236); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2669); + lookahead == 'i') ADVANCE(3237); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2588); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3259); + lookahead != ']') ADVANCE(3260); END_STATE(); case 723: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - ')', 2294, - '+', 3078, - '-', 2331, - '.', 3075, - '0', 2646, - ';', 2253, - 'E', 3104, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'N', 3227, - 'P', 3104, - 'T', 3104, - '[', 2291, - '_', 3122, - '`', 454, - 'd', 3124, - 'e', 3038, - 'f', 3123, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3194, - 'o', 3042, - 'p', 3103, - 's', 3139, - 't', 3102, - 'u', 3195, - 'w', 3154, - '{', 2402, - '|', 2254, - '}', 2403, - 0xb5, 3195, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + ')', 2295, + '+', 3079, + '-', 2332, + '.', 3076, + '0', 2647, + ';', 2254, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'N', 3228, + 'P', 3105, + 'T', 3105, + '[', 2292, + '_', 3123, + '`', 455, + 'd', 3125, + 'e', 3045, + 'f', 3124, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3195, + 'o', 3043, + 'p', 3104, + 's', 3140, + 't', 3103, + 'u', 3196, + 'w', 3155, + '{', 2403, + '|', 2255, + '}', 2404, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); + lookahead == ' ') SKIP(744); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); + lookahead == 'b') ADVANCE(2715); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3236); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2669); + lookahead == 'i') ADVANCE(3237); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3259); + lookahead != ']') ADVANCE(3260); END_STATE(); case 724: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - ')', 2294, - '+', 3078, - '-', 2331, - '.', 3075, - '0', 2646, - ';', 2253, - 'E', 3118, - 'N', 3227, - '[', 2291, - '_', 3122, - '`', 454, - 'e', 3046, - 'f', 3123, - 'n', 3211, - 'o', 3042, - 't', 3181, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + ')', 2295, + '+', 3079, + '-', 2332, + '.', 3076, + '0', 2647, + ';', 2254, + 'E', 3105, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'N', 3228, + 'P', 3105, + 'T', 3105, + '[', 2292, + '_', 3123, + '`', 455, + 'd', 3125, + 'e', 3039, + 'f', 3124, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3195, + 'o', 3043, + 'p', 3104, + 's', 3140, + 't', 3103, + 'u', 3196, + 'w', 3155, + '{', 2403, + '|', 2255, + '}', 2404, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); + lookahead == ' ') SKIP(744); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3236); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2669); + lookahead == 'i') ADVANCE(3237); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3259); + lookahead != ']') ADVANCE(3260); END_STATE(); case 725: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - ')', 2294, - '+', 3078, - '-', 2331, - '.', 3075, - '0', 2646, - ';', 2253, - 'N', 3227, - '[', 2291, - '_', 3122, - '`', 454, - 'e', 3040, - 'f', 3123, - 'n', 3211, - 'o', 3042, - 't', 3181, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + ')', 2295, + '+', 3079, + '-', 2332, + '.', 3076, + '0', 2647, + ';', 2254, + 'E', 3119, + 'N', 3228, + '[', 2292, + '_', 3123, + '`', 455, + 'e', 3047, + 'f', 3124, + 'n', 3212, + 'o', 3043, + 't', 3182, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); + lookahead == ' ') SKIP(744); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3236); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2669); + lookahead == 'i') ADVANCE(3237); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3259); + lookahead != ']') ADVANCE(3260); END_STATE(); case 726: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - ')', 2294, - '+', 3078, - '-', 2331, - '.', 3074, - '0', 2572, - ';', 2253, - 'E', 3118, - 'N', 3227, - '[', 2291, - '_', 3107, - '`', 454, - 'e', 3046, - 'f', 3123, - 'n', 3211, - 'o', 3042, - 't', 3181, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + ')', 2295, + '+', 3079, + '-', 2332, + '.', 3076, + '0', 2647, + ';', 2254, + 'N', 3228, + '[', 2292, + '_', 3123, + '`', 455, + 'e', 3041, + 'f', 3124, + 'n', 3212, + 'o', 3043, + 't', 3182, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); + lookahead == ' ') SKIP(744); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3236); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2587); + lookahead == 'i') ADVANCE(3237); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3259); + lookahead != ']') ADVANCE(3260); END_STATE(); case 727: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - ')', 2294, - '+', 3078, - '-', 2331, - '.', 3074, - '0', 2646, - ';', 2253, - 'E', 3118, - 'N', 3227, - '[', 2291, - '_', 3122, - '`', 454, - 'e', 3046, - 'f', 3123, - 'n', 3211, - 'o', 3042, - 't', 3181, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + ')', 2295, + '+', 3079, + '-', 2332, + '.', 3075, + '0', 2573, + ';', 2254, + 'E', 3119, + 'N', 3228, + '[', 2292, + '_', 3108, + '`', 455, + 'e', 3047, + 'f', 3124, + 'n', 3212, + 'o', 3043, + 't', 3182, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); + lookahead == ' ') SKIP(744); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3236); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2669); + lookahead == 'i') ADVANCE(3237); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2588); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3259); + lookahead != ']') ADVANCE(3260); END_STATE(); case 728: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - ')', 2294, - '+', 3078, - '-', 2331, - '.', 3074, - '0', 2646, - ';', 2253, - 'N', 3227, - '[', 2291, - '_', 3122, - '`', 454, - 'e', 3040, - 'f', 3123, - 'n', 3211, - 'o', 3042, - 't', 3181, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + ')', 2295, + '+', 3079, + '-', 2332, + '.', 3075, + '0', 2647, + ';', 2254, + 'E', 3119, + 'N', 3228, + '[', 2292, + '_', 3123, + '`', 455, + 'e', 3047, + 'f', 3124, + 'n', 3212, + 'o', 3043, + 't', 3182, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); + lookahead == ' ') SKIP(744); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3236); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2669); + lookahead == 'i') ADVANCE(3237); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3259); + lookahead != ']') ADVANCE(3260); END_STATE(); case 729: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - ')', 2294, - '+', 3078, - '-', 2331, - '.', 2551, - '0', 2646, - ';', 2253, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'N', 3227, - 'P', 3104, - 'T', 3104, - '[', 2291, - '_', 3122, - '`', 454, - 'd', 3124, - 'e', 3044, - 'f', 3123, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3194, - 'o', 3042, - 'p', 3103, - 's', 3139, - 't', 3102, - 'u', 3195, - 'w', 3154, - '{', 2402, - '|', 2254, - '}', 2403, - 0xb5, 3195, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + ')', 2295, + '+', 3079, + '-', 2332, + '.', 3075, + '0', 2647, + ';', 2254, + 'N', 3228, + '[', 2292, + '_', 3123, + '`', 455, + 'e', 3041, + 'f', 3124, + 'n', 3212, + 'o', 3043, + 't', 3182, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); + lookahead == ' ') SKIP(744); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3236); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2669); + lookahead == 'i') ADVANCE(3237); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3259); + lookahead != ']') ADVANCE(3260); END_STATE(); case 730: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - ')', 2294, - '+', 3078, - '-', 2331, - '.', 2551, - '0', 2646, - ';', 2253, - 'E', 3118, - 'N', 3227, - '[', 2291, - '_', 3122, - '`', 454, - 'e', 3046, - 'f', 3123, - 'n', 3211, - 'o', 3042, - 't', 3181, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + ')', 2295, + '+', 3079, + '-', 2332, + '.', 2552, + '0', 2647, + ';', 2254, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'N', 3228, + 'P', 3105, + 'T', 3105, + '[', 2292, + '_', 3123, + '`', 455, + 'd', 3125, + 'e', 3045, + 'f', 3124, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3195, + 'o', 3043, + 'p', 3104, + 's', 3140, + 't', 3103, + 'u', 3196, + 'w', 3155, + '{', 2403, + '|', 2255, + '}', 2404, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); + lookahead == ' ') SKIP(744); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3236); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2669); + lookahead == 'i') ADVANCE(3237); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3259); + lookahead != ']') ADVANCE(3260); END_STATE(); case 731: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - ')', 2294, - '+', 3078, - '-', 2331, - '.', 2541, - '0', 2646, - ';', 2253, - 'E', 3118, - 'N', 3227, - '[', 2291, - '_', 3122, - '`', 454, - 'e', 3046, - 'f', 3123, - 'n', 3211, - 'o', 3042, - 't', 3181, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + ')', 2295, + '+', 3079, + '-', 2332, + '.', 2552, + '0', 2647, + ';', 2254, + 'E', 3119, + 'N', 3228, + '[', 2292, + '_', 3123, + '`', 455, + 'e', 3047, + 'f', 3124, + 'n', 3212, + 'o', 3043, + 't', 3182, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); + lookahead == ' ') SKIP(744); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3236); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2669); + lookahead == 'i') ADVANCE(3237); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3259); + lookahead != ']') ADVANCE(3260); END_STATE(); case 732: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - ')', 2294, - '+', 2956, - '-', 2327, - '.', 2952, - '0', 2573, - ';', 2253, - 'N', 3013, - '[', 2291, - '_', 2977, - '`', 454, - 'e', 2941, - 'f', 2981, - 'n', 3009, - 'o', 2942, - 't', 2996, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + ')', 2295, + '+', 3079, + '-', 2332, + '.', 2541, + '0', 2647, + ';', 2254, + 'E', 3119, + 'N', 3228, + '[', 2292, + '_', 3123, + '`', 455, + 'e', 3047, + 'f', 3124, + 'n', 3212, + 'o', 3043, + 't', 3182, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(760); + lookahead == ' ') SKIP(744); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3016); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2588); + lookahead == 'i') ADVANCE(3237); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3036); + lookahead != ']') ADVANCE(3260); END_STATE(); case 733: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2492, - ')', 2294, - '+', 2956, - '-', 2327, - '.', 2539, - '0', 2573, - ';', 2253, - 'N', 3013, - '[', 2291, - '_', 2977, - '`', 454, - 'e', 2941, - 'f', 2981, - 'n', 3009, - 'o', 2942, - 't', 2996, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + ')', 2295, + '+', 2957, + '-', 2328, + '.', 2953, + '0', 2574, + ';', 2254, + 'N', 3014, + '[', 2292, + '_', 2978, + '`', 455, + 'e', 2942, + 'f', 2982, + 'n', 3010, + 'o', 2943, + 't', 2997, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(760); + lookahead == ' ') SKIP(761); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3016); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2588); + lookahead == 'i') ADVANCE(3017); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2589); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3036); + lookahead != ']') ADVANCE(3037); END_STATE(); case 734: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2615, - '+', 1019, - '-', 2338, - '.', 1020, - '0', 2641, - ':', 2792, - ';', 2253, - '=', 427, - '@', 2264, - 'I', 1238, - 'N', 1235, - '[', 2291, - '^', 2813, - '_', 1036, - '`', 454, - 'a', 1130, - 'b', 1172, - 'c', 1037, - 'd', 1063, - 'e', 1138, - 'f', 1040, - 'h', 1114, - 'i', 1034, - 'l', 1076, - 'm', 1042, - 'n', 1156, - 'o', 1231, - 'r', 1064, - 's', 1152, - 't', 1167, - 'u', 1194, - 'w', 1107, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2493, + ')', 2295, + '+', 2957, + '-', 2328, + '.', 2540, + '0', 2574, + ';', 2254, + 'N', 3014, + '[', 2292, + '_', 2978, + '`', 455, + 'e', 2942, + 'f', 2982, + 'n', 3010, + 'o', 2943, + 't', 2997, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(735); - if (lookahead == '!' || - ('&' <= lookahead && lookahead <= ',') || - lookahead == '?') ADVANCE(1558); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2664); + lookahead == ' ') SKIP(761); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3017); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2589); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'f' < lookahead)) ADVANCE(1241); + lookahead != ']') ADVANCE(3037); END_STATE(); case 735: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2294, - '+', 1019, - '-', 2338, - '.', 1020, - '0', 2641, - ':', 2792, - ';', 2253, - '=', 427, - '@', 2264, - 'I', 1238, - 'N', 1235, - '[', 2291, - '^', 2813, - '_', 1036, - '`', 454, - 'a', 1130, - 'b', 1172, - 'c', 1037, - 'd', 1063, - 'e', 1138, - 'f', 1040, - 'h', 1114, - 'i', 1034, - 'l', 1076, - 'm', 1042, - 'n', 1156, - 'o', 1231, - 'r', 1064, - 's', 1152, - 't', 1167, - 'u', 1194, - 'w', 1107, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2616, + '+', 1020, + '-', 2339, + '.', 1021, + '0', 2642, + ':', 2793, + ';', 2254, + '=', 428, + '@', 2265, + 'I', 1239, + 'N', 1236, + '[', 2292, + '^', 2814, + '_', 1037, + '`', 455, + 'a', 1131, + 'b', 1173, + 'c', 1038, + 'd', 1064, + 'e', 1139, + 'f', 1041, + 'h', 1115, + 'i', 1035, + 'l', 1077, + 'm', 1043, + 'n', 1157, + 'o', 1232, + 'r', 1065, + 's', 1153, + 't', 1168, + 'u', 1195, + 'w', 1108, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(735); + lookahead == ' ') SKIP(736); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || - lookahead == '?') ADVANCE(1558); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2664); + lookahead == '?') ADVANCE(1559); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2665); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'f' < lookahead)) ADVANCE(1241); + (lookahead < ']' || 'f' < lookahead)) ADVANCE(1242); END_STATE(); case 736: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2294, - '+', 413, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2295, + '+', 1020, '-', 2339, - '.', 414, - '0', 2644, - ':', 2792, - ';', 2253, - '=', 427, - '@', 2264, - 'I', 639, - 'N', 626, - '[', 2291, - '_', 443, - '`', 454, - 'a', 518, - 'c', 464, - 'd', 481, - 'e', 393, - 'f', 459, - 'i', 497, - 'm', 457, - 'n', 544, - 'o', 397, - 't', 559, - 'u', 574, - '{', 2402, - '|', 2254, - '}', 2403, + '.', 1021, + '0', 2642, + ':', 2793, + ';', 2254, + '=', 428, + '@', 2265, + 'I', 1239, + 'N', 1236, + '[', 2292, + '^', 2814, + '_', 1037, + '`', 455, + 'a', 1131, + 'b', 1173, + 'c', 1038, + 'd', 1064, + 'e', 1139, + 'f', 1041, + 'h', 1115, + 'i', 1035, + 'l', 1077, + 'm', 1043, + 'n', 1157, + 'o', 1232, + 'r', 1065, + 's', 1153, + 't', 1168, + 'u', 1195, + 'w', 1108, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(736); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2667); + if (lookahead == '!' || + ('&' <= lookahead && lookahead <= ',') || + lookahead == '?') ADVANCE(1559); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2665); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'f' < lookahead)) ADVANCE(1242); END_STATE(); case 737: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2294, - '+', 2513, - '-', 2338, - '.', 1021, - '0', 2641, - ':', 2289, - ';', 2253, - '=', 833, - '>', 2313, - '@', 2264, - 'I', 1238, - 'N', 1235, - '[', 2291, - ']', 2292, - '^', 2813, - '_', 1036, - '`', 454, - 'a', 1129, - 'b', 1172, - 'c', 1051, - 'd', 1063, - 'e', 1142, - 'f', 1040, - 'h', 1114, - 'i', 1033, - 'l', 1076, - 'm', 1050, - 'n', 1156, - 'o', 1231, - 'r', 1101, - 's', 1152, - 't', 1167, - 'u', 1194, - 'w', 1107, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2295, + '+', 414, + '-', 2340, + '.', 415, + '0', 2645, + ':', 2793, + ';', 2254, + '=', 428, + '@', 2265, + 'I', 640, + 'N', 627, + '[', 2292, + '_', 444, + '`', 455, + 'a', 519, + 'c', 465, + 'd', 482, + 'e', 394, + 'f', 460, + 'i', 498, + 'm', 458, + 'n', 545, + 'o', 398, + 't', 560, + 'u', 575, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(737); - if (lookahead == '!' || - ('&' <= lookahead && lookahead <= ',') || - lookahead == '?') ADVANCE(1558); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2664); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '0' || '@' < lookahead)) ADVANCE(1241); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2668); END_STATE(); case 738: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2294, - '+', 2955, - '-', 2326, - '.', 2954, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2295, + '+', 2514, + '-', 2339, + '.', 1022, '0', 2642, - ';', 2253, - 'N', 3013, - '[', 2291, - '_', 2968, - '`', 454, - 'e', 2941, - 'f', 2981, - 'n', 3009, - 'o', 2942, - 't', 2996, - '{', 2402, - '|', 2254, - '}', 2403, - '\t', 2252, - ' ', 2252, - 'I', 3016, - 'i', 3016, + ':', 2290, + ';', 2254, + '=', 834, + '>', 2314, + '@', 2265, + 'I', 1239, + 'N', 1236, + '[', 2292, + ']', 2293, + '^', 2814, + '_', 1037, + '`', 455, + 'a', 1130, + 'b', 1173, + 'c', 1052, + 'd', 1064, + 'e', 1143, + 'f', 1041, + 'h', 1115, + 'i', 1034, + 'l', 1077, + 'm', 1051, + 'n', 1157, + 'o', 1232, + 'r', 1102, + 's', 1153, + 't', 1168, + 'u', 1195, + 'w', 1108, + '{', 2403, + '|', 2255, + '}', 2404, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(738); + if (lookahead == '!' || + ('&' <= lookahead && lookahead <= ',') || + lookahead == '?') ADVANCE(1559); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2665); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3036); + (lookahead < '0' || '@' < lookahead)) ADVANCE(1242); END_STATE(); case 739: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2294, - '+', 2955, - '-', 2326, - '.', 2951, - '0', 2058, - ';', 2253, - '=', 2878, - 'N', 2181, - '[', 2291, - '_', 2059, - '`', 454, - 'e', 2037, - 'f', 2063, - 'n', 2167, - 'o', 2038, - 't', 2135, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2295, + '+', 2956, + '-', 2327, + '.', 2955, + '0', 2643, + ';', 2254, + 'N', 3014, + '[', 2292, + '_', 2969, + '`', 455, + 'e', 2942, + 'f', 2982, + 'n', 3010, + 'o', 2943, + 't', 2997, + '{', 2403, + '|', 2255, + '}', 2404, + '\t', 2253, + ' ', 2253, + 'I', 3017, + 'i', 3017, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(743); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2193); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2062); - if (set_contains(sym_attribute_identifier_character_set_1, 668, lookahead)) ADVANCE(2214); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3036); + lookahead != ']') ADVANCE(3037); END_STATE(); case 740: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2294, - '+', 2955, - '-', 2326, - '.', 2951, - '0', 2642, - ';', 2253, - '=', 2878, - 'N', 3013, - '[', 2291, - '_', 2968, - '`', 454, - 'e', 2941, - 'f', 2981, - 'n', 3009, - 'o', 2942, - 't', 2996, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2295, + '+', 2956, + '-', 2327, + '.', 2952, + '0', 2059, + ';', 2254, + '=', 2879, + 'N', 2182, + '[', 2292, + '_', 2060, + '`', 455, + 'e', 2038, + 'f', 2064, + 'n', 2168, + 'o', 2039, + 't', 2136, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); + lookahead == ' ') SKIP(744); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3016); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2665); + lookahead == 'i') ADVANCE(2194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2063); + if (set_contains(sym_attribute_identifier_character_set_1, 668, lookahead)) ADVANCE(2215); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3036); + lookahead != ']') ADVANCE(3037); END_STATE(); case 741: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2294, - '+', 2955, - '-', 2326, - '.', 2951, - '0', 2642, - ';', 2253, - 'E', 2979, - 'N', 3013, - '[', 2291, - '_', 2968, - '`', 454, - 'e', 2943, - 'f', 2981, - 'n', 3009, - 'o', 2942, - 't', 2996, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2295, + '+', 2956, + '-', 2327, + '.', 2952, + '0', 2643, + ';', 2254, + '=', 2879, + 'N', 3014, + '[', 2292, + '_', 2969, + '`', 455, + 'e', 2942, + 'f', 2982, + 'n', 3010, + 'o', 2943, + 't', 2997, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); + lookahead == ' ') SKIP(744); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3016); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2665); + lookahead == 'i') ADVANCE(3017); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3036); + lookahead != ']') ADVANCE(3037); END_STATE(); case 742: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2294, - '+', 2955, - '-', 2326, - '.', 2951, - '0', 2642, - ';', 2253, - 'N', 3013, - '[', 2735, - '_', 2968, - '`', 454, - 'e', 2941, - 'f', 2981, - 'n', 3009, - 'o', 2942, - 't', 2996, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2295, + '+', 2956, + '-', 2327, + '.', 2952, + '0', 2643, + ';', 2254, + 'E', 2980, + 'N', 3014, + '[', 2292, + '_', 2969, + '`', 455, + 'e', 2944, + 'f', 2982, + 'n', 3010, + 'o', 2943, + 't', 2997, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); + lookahead == ' ') SKIP(744); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3016); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2665); + lookahead == 'i') ADVANCE(3017); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3036); + lookahead != ']') ADVANCE(3037); END_STATE(); case 743: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2294, - '+', 2955, - '-', 2326, - '.', 2951, - '0', 2642, - ';', 2253, - 'N', 3013, - '[', 2291, - '_', 2968, - '`', 454, - 'e', 2941, - 'f', 2981, - 'n', 3009, - 'o', 2942, - 't', 2996, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2295, + '+', 2956, + '-', 2327, + '.', 2952, + '0', 2643, + ';', 2254, + 'N', 3014, + '[', 2736, + '_', 2969, + '`', 455, + 'e', 2942, + 'f', 2982, + 'n', 3010, + 'o', 2943, + 't', 2997, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); + lookahead == ' ') SKIP(744); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3016); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2665); + lookahead == 'i') ADVANCE(3017); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3036); + lookahead != ']') ADVANCE(3037); END_STATE(); case 744: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2294, - '+', 2955, - '-', 2326, - '.', 2951, - '0', 2573, - ';', 2253, - 'E', 2979, - 'N', 3013, - '[', 2291, - '_', 2977, - '`', 454, - 'e', 2943, - 'f', 2981, - 'n', 3009, - 'o', 2942, - 't', 2996, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2295, + '+', 2956, + '-', 2327, + '.', 2952, + '0', 2643, + ';', 2254, + 'N', 3014, + '[', 2292, + '_', 2969, + '`', 455, + 'e', 2942, + 'f', 2982, + 'n', 3010, + 'o', 2943, + 't', 2997, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); + lookahead == ' ') SKIP(744); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3016); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2588); + lookahead == 'i') ADVANCE(3017); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3036); + lookahead != ']') ADVANCE(3037); END_STATE(); case 745: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2294, - '+', 2955, - '-', 2326, - '.', 2803, - '0', 2642, - ';', 2253, - '?', 2458, - 'N', 3013, - '[', 2291, - '_', 2968, - '`', 454, - 'e', 2941, - 'f', 2981, - 'n', 3009, - 'o', 2942, - 't', 2996, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2295, + '+', 2956, + '-', 2327, + '.', 2952, + '0', 2574, + ';', 2254, + 'E', 2980, + 'N', 3014, + '[', 2292, + '_', 2978, + '`', 455, + 'e', 2944, + 'f', 2982, + 'n', 3010, + 'o', 2943, + 't', 2997, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(747); + lookahead == ' ') SKIP(744); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3016); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2665); + lookahead == 'i') ADVANCE(3017); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2589); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3036); + lookahead != ']') ADVANCE(3037); END_STATE(); case 746: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2294, - '+', 2955, - '-', 2326, - '.', 2803, - '0', 2642, - ';', 2253, - 'N', 3013, - '[', 2291, - '_', 2968, - '`', 454, - 'e', 2941, - 'f', 2981, - 'n', 3009, - 'o', 2942, - 't', 2996, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2295, + '+', 2956, + '-', 2327, + '.', 2804, + '0', 2643, + ';', 2254, + '?', 2459, + 'N', 3014, + '[', 2292, + '_', 2969, + '`', 455, + 'e', 2942, + 'f', 2982, + 'n', 3010, + 'o', 2943, + 't', 2997, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(748); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3016); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2665); + lookahead == 'i') ADVANCE(3017); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3036); + lookahead != ']') ADVANCE(3037); END_STATE(); case 747: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2294, - '+', 2955, - '-', 2326, - '.', 2798, - '0', 2642, - ';', 2253, - '?', 2458, - 'N', 3013, - '[', 2291, - '_', 2968, - '`', 454, - 'e', 2941, - 'f', 2981, - 'n', 3009, - 'o', 2942, - 't', 2996, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2295, + '+', 2956, + '-', 2327, + '.', 2804, + '0', 2643, + ';', 2254, + 'N', 3014, + '[', 2292, + '_', 2969, + '`', 455, + 'e', 2942, + 'f', 2982, + 'n', 3010, + 'o', 2943, + 't', 2997, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(747); + lookahead == ' ') SKIP(749); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3016); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2665); + lookahead == 'i') ADVANCE(3017); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3036); + lookahead != ']') ADVANCE(3037); END_STATE(); case 748: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2294, - '+', 2955, - '-', 2326, - '.', 2798, - '0', 2642, - ';', 2253, - 'N', 3013, - '[', 2291, - '_', 2968, - '`', 454, - 'e', 2941, - 'f', 2981, - 'n', 3009, - 'o', 2942, - 't', 2996, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2295, + '+', 2956, + '-', 2327, + '.', 2799, + '0', 2643, + ';', 2254, + '?', 2459, + 'N', 3014, + '[', 2292, + '_', 2969, + '`', 455, + 'e', 2942, + 'f', 2982, + 'n', 3010, + 'o', 2943, + 't', 2997, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(748); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3016); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2665); + lookahead == 'i') ADVANCE(3017); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3036); + lookahead != ']') ADVANCE(3037); END_STATE(); case 749: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2294, - '+', 2955, - '-', 2326, - '.', 2953, - '0', 2642, - ';', 2253, - 'E', 2979, - 'N', 3013, - '[', 2291, - '_', 2968, - '`', 454, - 'e', 2943, - 'f', 2981, - 'n', 3009, - 'o', 2942, - 't', 2996, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2295, + '+', 2956, + '-', 2327, + '.', 2799, + '0', 2643, + ';', 2254, + 'N', 3014, + '[', 2292, + '_', 2969, + '`', 455, + 'e', 2942, + 'f', 2982, + 'n', 3010, + 'o', 2943, + 't', 2997, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); + lookahead == ' ') SKIP(749); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3016); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2665); + lookahead == 'i') ADVANCE(3017); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3036); + lookahead != ']') ADVANCE(3037); END_STATE(); case 750: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2294, - '+', 2955, - '-', 2326, - '.', 2953, - '0', 2642, - ';', 2253, - 'N', 3013, - '[', 2291, - '_', 2968, - '`', 454, - 'e', 2941, - 'f', 2981, - 'n', 3009, - 'o', 2942, - 't', 2996, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2295, + '+', 2956, + '-', 2327, + '.', 2954, + '0', 2643, + ';', 2254, + 'E', 2980, + 'N', 3014, + '[', 2292, + '_', 2969, + '`', 455, + 'e', 2944, + 'f', 2982, + 'n', 3010, + 'o', 2943, + 't', 2997, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); + lookahead == ' ') SKIP(744); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3016); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2665); + lookahead == 'i') ADVANCE(3017); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3036); + lookahead != ']') ADVANCE(3037); END_STATE(); case 751: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2294, - '+', 2955, - '-', 2326, - '.', 2953, - '0', 2573, - ';', 2253, - 'E', 2979, - 'N', 3013, - '[', 2291, - '_', 2977, - '`', 454, - 'e', 2943, - 'f', 2981, - 'n', 3009, - 'o', 2942, - 't', 2996, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2295, + '+', 2956, + '-', 2327, + '.', 2954, + '0', 2643, + ';', 2254, + 'N', 3014, + '[', 2292, + '_', 2969, + '`', 455, + 'e', 2942, + 'f', 2982, + 'n', 3010, + 'o', 2943, + 't', 2997, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); + lookahead == ' ') SKIP(744); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3016); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2588); + lookahead == 'i') ADVANCE(3017); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3036); + lookahead != ']') ADVANCE(3037); END_STATE(); case 752: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2294, - '+', 2955, - '-', 2326, - '.', 2549, - '0', 2642, - ';', 2253, - 'E', 2979, - 'N', 3013, - '[', 2291, - '_', 2968, - '`', 454, - 'e', 2943, - 'f', 2981, - 'n', 3009, - 'o', 2942, - 't', 2996, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2295, + '+', 2956, + '-', 2327, + '.', 2954, + '0', 2574, + ';', 2254, + 'E', 2980, + 'N', 3014, + '[', 2292, + '_', 2978, + '`', 455, + 'e', 2944, + 'f', 2982, + 'n', 3010, + 'o', 2943, + 't', 2997, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); + lookahead == ' ') SKIP(744); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3016); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2665); + lookahead == 'i') ADVANCE(3017); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2589); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3036); + lookahead != ']') ADVANCE(3037); END_STATE(); case 753: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2294, - '+', 2955, - '-', 2326, - '.', 2535, - '0', 2642, - ';', 2253, - 'E', 2979, - 'N', 3013, - '[', 2291, - '_', 2968, - '`', 454, - 'e', 2943, - 'f', 2981, - 'n', 3009, - 'o', 2942, - 't', 2996, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2295, + '+', 2956, + '-', 2327, + '.', 2550, + '0', 2643, + ';', 2254, + 'E', 2980, + 'N', 3014, + '[', 2292, + '_', 2969, + '`', 455, + 'e', 2944, + 'f', 2982, + 'n', 3010, + 'o', 2943, + 't', 2997, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); + lookahead == ' ') SKIP(744); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3016); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2665); + lookahead == 'i') ADVANCE(3017); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3036); + lookahead != ']') ADVANCE(3037); END_STATE(); case 754: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2294, - '+', 2955, - '-', 2334, - '.', 2951, - '0', 2896, - ';', 2253, - '=', 2878, - 'N', 2917, - '[', 2291, - '_', 2897, - '`', 454, - 'e', 2879, - 'f', 2901, - 'n', 2916, - 'o', 2880, - 't', 2907, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2295, + '+', 2956, + '-', 2327, + '.', 2536, + '0', 2643, + ';', 2254, + 'E', 2980, + 'N', 3014, + '[', 2292, + '_', 2969, + '`', 455, + 'e', 2944, + 'f', 2982, + 'n', 3010, + 'o', 2943, + 't', 2997, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); + lookahead == ' ') SKIP(744); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2922); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2900); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + lookahead == 'i') ADVANCE(3017); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3036); + lookahead != ']') ADVANCE(3037); END_STATE(); case 755: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2294, - '+', 3078, - '-', 2331, - '.', 3075, - '0', 2572, - ';', 2253, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'N', 3227, - 'P', 3104, - 'T', 3104, - '[', 2291, - '_', 3107, - '`', 454, - 'd', 3124, - 'e', 3044, - 'f', 3123, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3194, - 'o', 3042, - 'p', 3103, - 's', 3139, - 't', 3102, - 'u', 3195, - 'w', 3154, - '{', 2402, - '|', 2254, - '}', 2403, - 0xb5, 3195, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2295, + '+', 2956, + '-', 2333, + '.', 2952, + '0', 2897, + ';', 2254, + '=', 2879, + 'N', 2918, + '[', 2292, + '_', 2898, + '`', 455, + 'e', 2880, + 'f', 2902, + 'n', 2917, + 'o', 2881, + 't', 2908, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); + lookahead == ' ') SKIP(744); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3236); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2587); + lookahead == 'i') ADVANCE(2923); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2901); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3259); + lookahead != ']') ADVANCE(3037); END_STATE(); case 756: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2294, - '+', 3078, - '-', 2331, - '.', 3075, - '0', 2646, - ';', 2253, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'N', 3227, - 'P', 3104, - 'T', 3104, - '[', 2291, - '_', 3122, - '`', 454, - 'd', 3124, - 'e', 3044, - 'f', 3123, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3194, - 'o', 3042, - 'p', 3103, - 's', 3139, - 't', 3102, - 'u', 3195, - 'w', 3154, - '{', 2402, - '|', 2254, - '}', 2403, - 0xb5, 3195, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2295, + '+', 3079, + '-', 2332, + '.', 3076, + '0', 2573, + ';', 2254, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'N', 3228, + 'P', 3105, + 'T', 3105, + '[', 2292, + '_', 3108, + '`', 455, + 'd', 3125, + 'e', 3045, + 'f', 3124, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3195, + 'o', 3043, + 'p', 3104, + 's', 3140, + 't', 3103, + 'u', 3196, + 'w', 3155, + '{', 2403, + '|', 2255, + '}', 2404, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); + lookahead == ' ') SKIP(744); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); + lookahead == 'b') ADVANCE(2715); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3236); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2669); + lookahead == 'i') ADVANCE(3237); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2588); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3259); + lookahead != ']') ADVANCE(3260); END_STATE(); case 757: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2294, - '+', 3078, - '-', 2331, - '.', 3075, - '0', 2646, - ';', 2253, - 'E', 3104, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'N', 3227, - 'P', 3104, - 'T', 3104, - '[', 2291, - '_', 3122, - '`', 454, - 'd', 3124, - 'e', 3038, - 'f', 3123, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3194, - 'o', 3042, - 'p', 3103, - 's', 3139, - 't', 3102, - 'u', 3195, - 'w', 3154, - '{', 2402, - '|', 2254, - '}', 2403, - 0xb5, 3195, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2295, + '+', 3079, + '-', 2332, + '.', 3076, + '0', 2647, + ';', 2254, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'N', 3228, + 'P', 3105, + 'T', 3105, + '[', 2292, + '_', 3123, + '`', 455, + 'd', 3125, + 'e', 3045, + 'f', 3124, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3195, + 'o', 3043, + 'p', 3104, + 's', 3140, + 't', 3103, + 'u', 3196, + 'w', 3155, + '{', 2403, + '|', 2255, + '}', 2404, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); + lookahead == ' ') SKIP(744); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); + lookahead == 'b') ADVANCE(2715); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3236); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2669); + lookahead == 'i') ADVANCE(3237); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3259); + lookahead != ']') ADVANCE(3260); END_STATE(); case 758: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2294, - '+', 3078, - '-', 2331, - '.', 3074, - '0', 2646, - ';', 2253, - 'N', 3227, - '[', 2291, - '_', 3122, - '`', 454, - 'e', 3040, - 'f', 3123, - 'n', 3211, - 'o', 3042, - 't', 3181, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2295, + '+', 3079, + '-', 2332, + '.', 3076, + '0', 2647, + ';', 2254, + 'E', 3105, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'N', 3228, + 'P', 3105, + 'T', 3105, + '[', 2292, + '_', 3123, + '`', 455, + 'd', 3125, + 'e', 3039, + 'f', 3124, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3195, + 'o', 3043, + 'p', 3104, + 's', 3140, + 't', 3103, + 'u', 3196, + 'w', 3155, + '{', 2403, + '|', 2255, + '}', 2404, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); + lookahead == ' ') SKIP(744); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3236); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2669); + lookahead == 'i') ADVANCE(3237); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3259); + lookahead != ']') ADVANCE(3260); END_STATE(); case 759: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2294, - '+', 3078, - '-', 2331, - '.', 2551, - '0', 2646, - ';', 2253, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'N', 3227, - 'P', 3104, - 'T', 3104, - '[', 2291, - '_', 3122, - '`', 454, - 'd', 3124, - 'e', 3044, - 'f', 3123, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3194, - 'o', 3042, - 'p', 3103, - 's', 3139, - 't', 3102, - 'u', 3195, - 'w', 3154, - '{', 2402, - '|', 2254, - '}', 2403, - 0xb5, 3195, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2295, + '+', 3079, + '-', 2332, + '.', 3075, + '0', 2647, + ';', 2254, + 'N', 3228, + '[', 2292, + '_', 3123, + '`', 455, + 'e', 3041, + 'f', 3124, + 'n', 3212, + 'o', 3043, + 't', 3182, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); + lookahead == ' ') SKIP(744); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3236); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2669); + lookahead == 'i') ADVANCE(3237); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3259); + lookahead != ']') ADVANCE(3260); END_STATE(); case 760: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '$', 2297, - '\'', 385, - '(', 2293, - ')', 2294, - '+', 2956, - '-', 2327, - '.', 2952, - '0', 2642, - ';', 2253, - 'N', 3013, - '[', 2291, - '_', 2968, - '`', 454, - 'e', 2941, - 'f', 2981, - 'n', 3009, - 'o', 2942, - 't', 2996, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2295, + '+', 3079, + '-', 2332, + '.', 2552, + '0', 2647, + ';', 2254, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'N', 3228, + 'P', 3105, + 'T', 3105, + '[', 2292, + '_', 3123, + '`', 455, + 'd', 3125, + 'e', 3045, + 'f', 3124, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3195, + 'o', 3043, + 'p', 3104, + 's', 3140, + 't', 3103, + 'u', 3196, + 'w', 3155, + '{', 2403, + '|', 2255, + '}', 2404, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(760); + lookahead == ' ') SKIP(744); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3016); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2665); + lookahead == 'i') ADVANCE(3237); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2670); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3036); + lookahead != ']') ADVANCE(3260); END_STATE(); case 761: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '\'', 385, - ')', 2294, - '*', 2454, - '+', 1019, - '-', 412, - '.', 2807, - ';', 2253, - '?', 2458, - 'I', 1546, - 'N', 1538, - '[', 2291, - '_', 1285, - '`', 454, - 'a', 1416, - 'b', 1470, - 'c', 1311, - 'd', 1341, - 'e', 1414, - 'f', 1295, - 'h', 1390, - 'i', 1280, - 'l', 1364, - 'm', 1310, - 'n', 1517, - 'o', 1531, - 'r', 1365, - 's', 1442, - 't', 1471, - 'u', 1490, - 'w', 1380, - '}', 2403, + '"', 2766, + '#', 4100, + '$', 2298, + '\'', 386, + '(', 2294, + ')', 2295, + '+', 2957, + '-', 2328, + '.', 2953, + '0', 2643, + ';', 2254, + 'N', 3014, + '[', 2292, + '_', 2969, + '`', 455, + 'e', 2942, + 'f', 2982, + 'n', 3010, + 'o', 2943, + 't', 2997, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(761); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3017); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2666); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - (lookahead < '0' || '?' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + lookahead != ']') ADVANCE(3037); END_STATE(); case 762: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '\'', 385, - ')', 2294, - '*', 2454, - '+', 1019, - '-', 412, - '.', 2807, - ';', 2253, - 'I', 1546, - 'N', 1538, - '[', 2291, - '_', 1285, - '`', 454, - 'a', 1416, - 'b', 1470, - 'c', 1311, - 'd', 1341, - 'e', 1414, - 'f', 1295, - 'h', 1390, - 'i', 1280, - 'l', 1364, - 'm', 1310, - 'n', 1517, - 'o', 1531, - 'r', 1365, - 's', 1442, - 't', 1471, - 'u', 1490, - 'w', 1380, - '}', 2403, + '"', 2766, + '#', 4100, + '\'', 386, + ')', 2295, + '*', 2455, + '+', 1020, + '-', 413, + '.', 2808, + ';', 2254, + '?', 2459, + 'I', 1547, + 'N', 1539, + '[', 2292, + '_', 1286, + '`', 455, + 'a', 1417, + 'b', 1471, + 'c', 1312, + 'd', 1342, + 'e', 1415, + 'f', 1296, + 'h', 1391, + 'i', 1281, + 'l', 1365, + 'm', 1311, + 'n', 1518, + 'o', 1532, + 'r', 1366, + 's', 1443, + 't', 1472, + 'u', 1491, + 'w', 1381, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(762); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && - (lookahead < '0' || '>' < lookahead) && + (lookahead < '0' || '?' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 763: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4099, - '\'', 385, - ')', 2294, - '*', 2454, - '+', 1019, - '-', 412, - '.', 1282, - ';', 2253, - 'I', 1546, - 'N', 1538, - '[', 2291, - '_', 1285, - '`', 454, - 'a', 1416, - 'b', 1470, - 'c', 1311, - 'd', 1341, - 'e', 1414, - 'f', 1295, - 'h', 1390, - 'i', 1280, - 'l', 1364, - 'm', 1310, - 'n', 1517, - 'o', 1531, - 'r', 1365, - 's', 1442, - 't', 1471, - 'u', 1490, - 'w', 1380, - '}', 2403, + '"', 2766, + '#', 4100, + '\'', 386, + ')', 2295, + '*', 2455, + '+', 1020, + '-', 413, + '.', 2808, + ';', 2254, + 'I', 1547, + 'N', 1539, + '[', 2292, + '_', 1286, + '`', 455, + 'a', 1417, + 'b', 1471, + 'c', 1312, + 'd', 1342, + 'e', 1415, + 'f', 1296, + 'h', 1391, + 'i', 1281, + 'l', 1365, + 'm', 1311, + 'n', 1518, + 'o', 1532, + 'r', 1366, + 's', 1443, + 't', 1472, + 'u', 1491, + 'w', 1381, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(763); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1558); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 764: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4105, - '$', 2299, - '\'', 385, - '(', 2492, - ')', 2294, - '+', 3293, - '-', 2332, - '.', 3294, - '0', 3319, - ';', 2253, - 'N', 3496, - '[', 2291, - '_', 3321, - '`', 454, - 'e', 3270, - 'f', 3331, - 'n', 3471, - 'o', 3272, - 't', 3423, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4100, + '\'', 386, + ')', 2295, + '*', 2455, + '+', 1020, + '-', 413, + '.', 1283, + ';', 2254, + 'I', 1547, + 'N', 1539, + '[', 2292, + '_', 1286, + '`', 455, + 'a', 1417, + 'b', 1471, + 'c', 1312, + 'd', 1342, + 'e', 1415, + 'f', 1296, + 'h', 1391, + 'i', 1281, + 'l', 1365, + 'm', 1311, + 'n', 1518, + 'o', 1532, + 'r', 1366, + 's', 1443, + 't', 1472, + 'u', 1491, + 'w', 1381, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3324); + lookahead == ' ') SKIP(764); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3536); + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1559); END_STATE(); case 765: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '"', 2765, - '#', 4105, - '$', 2299, - '\'', 385, - '(', 2293, - ')', 2294, - '+', 3293, - '-', 2332, - '.', 3294, - '0', 3319, - ';', 2253, - 'N', 3496, - '[', 2291, - '_', 3321, - '`', 454, - 'e', 3270, - 'f', 3331, - 'n', 3471, - 'o', 3272, - 't', 3423, - '{', 2402, - '|', 2254, - '}', 2403, + '"', 2766, + '#', 4106, + '$', 2300, + '\'', 386, + '(', 2493, + ')', 2295, + '+', 3294, + '-', 2335, + '.', 3295, + '0', 3320, + ';', 2254, + 'N', 3497, + '[', 2292, + '_', 3322, + '`', 455, + 'e', 3271, + 'f', 3332, + 'n', 3472, + 'o', 3273, + 't', 3424, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(743); + lookahead == ' ') SKIP(744); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3506); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3324); + lookahead == 'i') ADVANCE(3507); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3325); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3536); + lookahead != ']') ADVANCE(3537); END_STATE(); case 766: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - '(', 2492, - ')', 2294, - ',', 2295, - '-', 2325, - '.', 2556, - ':', 2289, - ';', 2253, - '=', 833, - 'E', 1963, - 'G', 1973, - 'K', 1973, - 'M', 1973, - 'P', 1973, - 'T', 1973, - '[', 2735, - ']', 2292, - 'd', 1979, - 'e', 1962, - 'g', 1972, - 'h', 2010, - 'k', 1972, - 'm', 1974, - 'n', 2014, - 'p', 1972, - 's', 1989, - 't', 1972, - 'u', 2014, - 'w', 1993, - '|', 2254, - 0xb5, 2014, + '"', 2766, + '#', 4106, + '$', 2300, + '\'', 386, + '(', 2294, + ')', 2295, + '+', 3294, + '-', 2335, + '.', 3295, + '0', 3320, + ';', 2254, + 'N', 3497, + '[', 2292, + '_', 3322, + '`', 455, + 'e', 3271, + 'f', 3332, + 'n', 3472, + 'o', 3273, + 't', 3424, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(774); + lookahead == ' ') SKIP(744); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3507); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3325); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ']') ADVANCE(3537); + END_STATE(); + case 767: + if (eof) ADVANCE(819); + ADVANCE_MAP( + '\n', 2251, + '\r', 1, + '#', 4100, + '$', 2297, + '(', 2493, + ')', 2295, + ',', 2296, + '-', 2326, + '.', 3876, + ':', 2290, + ';', 2254, + '=', 834, + 'E', 1964, + 'G', 1974, + 'K', 1974, + 'M', 1974, + 'P', 1974, + 'T', 1974, + '[', 2736, + ']', 2293, + '_', 1978, + 'd', 1980, + 'e', 1963, + 'g', 1973, + 'h', 2011, + 'k', 1973, + 'm', 1975, + 'n', 2015, + 'p', 1973, + 's', 1990, + 't', 1973, + 'u', 2015, + 'w', 1994, + '|', 2255, + 0xb5, 2015, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(775); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2720); + lookahead == 'b') ADVANCE(2721); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(3906); + lookahead == '^') ADVANCE(3907); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2036); + (lookahead < ']' || '`' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2037); END_STATE(); - case 767: - if (eof) ADVANCE(818); + case 768: + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - '(', 2492, - ')', 2294, - '-', 2325, - '.', 2802, - ':', 2289, - ';', 2253, - '=', 833, - '[', 2291, - 'a', 527, - 'e', 395, - 'i', 528, - 'o', 396, - 'x', 536, - '{', 2402, - '|', 2254, - '}', 2403, + '#', 4100, + '$', 2297, + '(', 2493, + ')', 2295, + '-', 2326, + '.', 2803, + ':', 2290, + ';', 2254, + '=', 834, + '[', 2292, + 'a', 528, + 'e', 396, + 'i', 529, + 'o', 397, + 'x', 537, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(776); + lookahead == ' ') SKIP(777); END_STATE(); - case 768: - if (eof) ADVANCE(818); + case 769: + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - '(', 2492, - ')', 2294, - '.', 2557, - ';', 2253, - '[', 2735, - '_', 3107, - 'e', 3056, - 'o', 3058, - '|', 2254, - '}', 2403, - '\t', 2252, - ' ', 2252, - '+', 3077, - '-', 3077, + '#', 4100, + '$', 2297, + '(', 2493, + ')', 2295, + '.', 2558, + ';', 2254, + '[', 2736, + '_', 3108, + 'e', 3057, + 'o', 3059, + '|', 2255, + '}', 2404, + '\t', 2253, + ' ', 2253, + '+', 3078, + '-', 3078, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && @@ -31256,1043 +30708,1042 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3259); - END_STATE(); - case 769: - if (eof) ADVANCE(818); - ADVANCE_MAP( - '\n', 2250, - '\r', 1, - '#', 4099, - '$', 2296, - '(', 2492, - ')', 2294, - '.', 2557, - ';', 2253, - '_', 3107, - 'a', 3162, - 'e', 3056, - 'o', 3057, - 'x', 3171, - '|', 2254, - '}', 2403, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(782); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3260); END_STATE(); case 770: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - '(', 2492, - ')', 2294, - '.', 3109, - ';', 2253, - '_', 3107, - 'a', 3162, - 'e', 3056, - 'o', 3057, - 'x', 3171, - '|', 2254, - '}', 2403, + '#', 4100, + '$', 2297, + '(', 2493, + ')', 2295, + '.', 2558, + ';', 2254, + '_', 3108, + 'a', 3163, + 'e', 3057, + 'o', 3058, + 'x', 3172, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(782); + lookahead == ' ') SKIP(783); if (lookahead == '+' || - lookahead == '-') ADVANCE(3077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == '-') ADVANCE(3078); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 771: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - '(', 2492, - ')', 2294, - '.', 3109, - ';', 2253, - '_', 3107, - 'e', 3056, + '#', 4100, + '$', 2297, + '(', 2493, + ')', 2295, + '.', 3110, + ';', 2254, + '_', 3108, + 'a', 3163, + 'e', 3057, 'o', 3058, - '|', 2254, - '}', 2403, - '\t', 2252, - ' ', 2252, - '+', 3077, - '-', 3077, + 'x', 3172, + '|', 2255, + '}', 2404, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '\t' || + lookahead == ' ') SKIP(783); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3078); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 772: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - '(', 2293, - ')', 2294, - '-', 2325, - '.', 2802, - ':', 2792, - ';', 2253, - '=', 833, - '>', 2313, - '?', 2458, - '@', 2316, - '[', 2291, - 'a', 527, - 'e', 395, - 'i', 528, - 'o', 396, - 'x', 536, - '{', 2402, - '|', 2254, - '}', 2403, + '#', 4100, + '$', 2297, + '(', 2493, + ')', 2295, + '.', 3110, + ';', 2254, + '_', 3108, + 'e', 3057, + 'o', 3059, + '|', 2255, + '}', 2404, + '\t', 2253, + ' ', 2253, + '+', 3078, + '-', 3078, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(773); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 773: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - '(', 2293, - ')', 2294, - '-', 2325, - '.', 2796, - ':', 2792, - ';', 2253, - '=', 833, - '>', 2313, - '?', 2458, - '[', 2291, - 'a', 527, - 'e', 395, - 'i', 528, - 'o', 396, - 'x', 536, - '{', 2402, - '|', 2254, - '}', 2403, + '#', 4100, + '$', 2297, + '(', 2294, + ')', 2295, + '-', 2326, + '.', 2803, + ':', 2793, + ';', 2254, + '=', 834, + '>', 2314, + '?', 2459, + '[', 2292, + 'a', 528, + 'e', 396, + 'i', 529, + 'o', 397, + 'x', 537, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(773); + lookahead == ' ') SKIP(774); END_STATE(); case 774: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - ')', 2294, - ',', 2295, - '-', 2325, - '.', 416, - ':', 2289, - ';', 2253, - '=', 833, - '[', 2291, - ']', 2292, - '|', 2254, + '#', 4100, + '$', 2297, + '(', 2294, + ')', 2295, + '-', 2326, + '.', 2797, + ':', 2793, + ';', 2254, + '=', 834, + '>', 2314, + '?', 2459, + '[', 2292, + 'a', 528, + 'e', 396, + 'i', 529, + 'o', 397, + 'x', 537, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(774); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2036); END_STATE(); case 775: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - ')', 2294, - '-', 2325, - '.', 2802, - ';', 2253, - '=', 2878, - '?', 2458, - 'e', 2041, - 'o', 2044, - '{', 2402, - '|', 2254, - '}', 2403, - '\t', 2252, - ' ', 2252, + '#', 4100, + '$', 2297, + ')', 2295, + ',', 2296, + '-', 2326, + '.', 417, + ':', 2290, + ';', 2254, + '=', 834, + '[', 2292, + ']', 2293, + '|', 2255, ); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2214); + if (lookahead == '\t' || + lookahead == ' ') SKIP(775); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2037); END_STATE(); case 776: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - ')', 2294, - '-', 2325, - '.', 2796, - ':', 2289, - ';', 2253, - '=', 833, - '[', 2291, - 'a', 527, - 'e', 395, - 'i', 528, - 'o', 396, - 'x', 536, - '{', 2402, - '|', 2254, - '}', 2403, + '#', 4100, + '$', 2297, + ')', 2295, + '-', 2326, + '.', 2803, + ';', 2254, + '=', 2879, + '?', 2459, + 'e', 2042, + 'o', 2045, + '{', 2403, + '|', 2255, + '}', 2404, + '\t', 2253, + ' ', 2253, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(776); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2215); END_STATE(); case 777: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - ')', 2294, - '-', 2325, - '.', 2796, - ':', 2289, - ';', 2253, - '=', 2878, - '>', 2313, - '@', 2316, - '[', 2291, - ']', 2292, - 'c', 1985, - 'e', 2011, - 'f', 2020, - 'i', 1999, - 'o', 2002, - 'v', 1980, - '{', 2402, - '}', 2403, + '#', 4100, + '$', 2297, + ')', 2295, + '-', 2326, + '.', 2797, + ':', 2290, + ';', 2254, + '=', 834, + '[', 2292, + 'a', 528, + 'e', 396, + 'i', 529, + 'o', 397, + 'x', 537, + '{', 2403, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(778); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2036); + lookahead == ' ') SKIP(777); END_STATE(); case 778: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - ')', 2294, - '-', 2325, - '.', 2796, - ':', 2289, - ';', 2253, - '>', 2313, - '[', 2291, - ']', 2292, - 'c', 1985, - 'e', 2011, - 'f', 2020, - 'i', 1999, - 'o', 2002, - 'v', 1980, - '{', 2402, - '}', 2403, + '#', 4100, + '$', 2297, + ')', 2295, + '-', 2326, + '.', 2797, + ':', 2290, + ';', 2254, + '=', 2879, + '>', 2314, + '@', 2317, + '[', 2292, + ']', 2293, + 'c', 1986, + 'e', 2012, + 'f', 2021, + 'i', 2000, + 'o', 2003, + 'v', 1981, + '{', 2403, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(778); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2036); + lookahead == ' ') SKIP(779); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2037); END_STATE(); case 779: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - ')', 2294, - '-', 2325, - ';', 2253, - '=', 2878, - '[', 2291, - '{', 2402, - '}', 2403, + '#', 4100, + '$', 2297, + ')', 2295, + '-', 2326, + '.', 2797, + ':', 2290, + ';', 2254, + '>', 2314, + '[', 2292, + ']', 2293, + 'c', 1986, + 'e', 2012, + 'f', 2021, + 'i', 2000, + 'o', 2003, + 'v', 1981, + '{', 2403, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(780); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2214); + lookahead == ' ') SKIP(779); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2037); END_STATE(); case 780: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - ')', 2294, - '-', 2325, - ';', 2253, - '[', 2291, - '{', 2402, - '}', 2403, + '#', 4100, + '$', 2297, + ')', 2295, + '-', 2326, + ';', 2254, + '=', 2879, + '[', 2292, + '{', 2403, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(780); + lookahead == ' ') SKIP(781); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2215); END_STATE(); case 781: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - ')', 2294, - '-', 2335, - ';', 2253, - '=', 2878, - '[', 2291, - '{', 2402, - '}', 2403, + '#', 4100, + '$', 2297, + ')', 2295, + '-', 2326, + ';', 2254, + '[', 2292, + '{', 2403, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(780); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + lookahead == ' ') SKIP(781); END_STATE(); case 782: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '$', 2296, - ')', 2294, - '.', 447, - ';', 2253, - 'a', 526, - 'e', 395, - 'o', 396, - 'x', 536, - '|', 2254, - '}', 2403, + '#', 4100, + '$', 2297, + ')', 2295, + '-', 2334, + ';', 2254, + '=', 2879, + '[', 2292, + '{', 2403, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(782); - if (lookahead == '+' || - lookahead == '-') ADVANCE(418); + lookahead == ' ') SKIP(781); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 783: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - ')', 2294, - '.', 2547, - ';', 2253, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'a', 3162, - 'd', 3124, - 'e', 3049, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3195, - 'o', 3057, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - 'x', 3171, - '|', 2254, - '}', 2403, - 0xb5, 3195, + '#', 4100, + '$', 2297, + ')', 2295, + '.', 448, + ';', 2254, + 'a', 527, + 'e', 396, + 'o', 397, + 'x', 537, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(814); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == ' ') SKIP(783); + if (lookahead == '+' || + lookahead == '-') ADVANCE(419); END_STATE(); case 784: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - ')', 2294, - '.', 2547, - ';', 2253, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'd', 3124, - 'e', 3049, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3195, + '#', 4100, + '(', 2493, + ')', 2295, + '.', 2548, + ';', 2254, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'a', 3163, + 'd', 3125, + 'e', 3050, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3196, 'o', 3058, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - '|', 2254, - '}', 2403, - 0xb5, 3195, - '\t', 2252, - ' ', 2252, - 'B', 2714, - 'b', 2714, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + 'x', 3172, + '|', 2255, + '}', 2404, + 0xb5, 3196, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '\t' || + lookahead == ' ') SKIP(815); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 785: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - ')', 2294, - '.', 2547, - ';', 2253, - 'E', 3118, - 'a', 3162, - 'e', 3051, - 'o', 3057, - 'x', 3171, - '|', 2254, - '}', 2403, + '#', 4100, + '(', 2493, + ')', 2295, + '.', 2548, + ';', 2254, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'd', 3125, + 'e', 3050, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3196, + 'o', 3059, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + '|', 2255, + '}', 2404, + 0xb5, 3196, + '\t', 2253, + ' ', 2253, + 'B', 2715, + 'b', 2715, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(814); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 786: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - ')', 2294, - '.', 2547, - ';', 2253, - 'E', 3118, - 'e', 3051, + '#', 4100, + '(', 2493, + ')', 2295, + '.', 2548, + ';', 2254, + 'E', 3119, + 'a', 3163, + 'e', 3052, 'o', 3058, - '|', 2254, - '}', 2403, - '\t', 2252, - ' ', 2252, + 'x', 3172, + '|', 2255, + '}', 2404, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '\t' || + lookahead == ' ') SKIP(815); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 787: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - ')', 2294, - '.', 3076, - ';', 2253, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - '_', 3107, - 'a', 3162, - 'd', 3124, - 'e', 3049, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3195, - 'o', 3057, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - 'x', 3171, - '|', 2254, - '}', 2403, - 0xb5, 3195, + '#', 4100, + '(', 2493, + ')', 2295, + '.', 2548, + ';', 2254, + 'E', 3119, + 'e', 3052, + 'o', 3059, + '|', 2255, + '}', 2404, + '\t', 2253, + ' ', 2253, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(814); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 788: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - ')', 2294, - '.', 3076, - ';', 2253, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - '_', 3107, - 'd', 3124, - 'e', 3049, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3195, + '#', 4100, + '(', 2493, + ')', 2295, + '.', 3077, + ';', 2254, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + '_', 3108, + 'a', 3163, + 'd', 3125, + 'e', 3050, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3196, 'o', 3058, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - '|', 2254, - '}', 2403, - 0xb5, 3195, - '\t', 2252, - ' ', 2252, - 'B', 2714, - 'b', 2714, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + 'x', 3172, + '|', 2255, + '}', 2404, + 0xb5, 3196, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '\t' || + lookahead == ' ') SKIP(815); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 789: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - ')', 2294, - '.', 3076, - ';', 2253, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'a', 3162, - 'd', 3124, - 'e', 3049, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3195, - 'o', 3057, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - 'x', 3171, - '|', 2254, - '}', 2403, - 0xb5, 3195, + '#', 4100, + '(', 2493, + ')', 2295, + '.', 3077, + ';', 2254, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + '_', 3108, + 'd', 3125, + 'e', 3050, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3196, + 'o', 3059, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + '|', 2255, + '}', 2404, + 0xb5, 3196, + '\t', 2253, + ' ', 2253, + 'B', 2715, + 'b', 2715, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(814); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 790: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - ')', 2294, - '.', 3076, - ';', 2253, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'd', 3124, - 'e', 3049, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3195, + '#', 4100, + '(', 2493, + ')', 2295, + '.', 3077, + ';', 2254, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'a', 3163, + 'd', 3125, + 'e', 3050, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3196, 'o', 3058, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - '|', 2254, - '}', 2403, - 0xb5, 3195, - '\t', 2252, - ' ', 2252, - 'B', 2714, - 'b', 2714, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + 'x', 3172, + '|', 2255, + '}', 2404, + 0xb5, 3196, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '\t' || + lookahead == ' ') SKIP(815); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 791: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - ')', 2294, - '.', 3076, - ';', 2253, - 'E', 3104, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'a', 3162, - 'd', 3124, - 'e', 3054, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3195, - 'o', 3057, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - 'x', 3171, - '|', 2254, - '}', 2403, - 0xb5, 3195, + '#', 4100, + '(', 2493, + ')', 2295, + '.', 3077, + ';', 2254, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'd', 3125, + 'e', 3050, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3196, + 'o', 3059, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + '|', 2255, + '}', 2404, + 0xb5, 3196, + '\t', 2253, + ' ', 2253, + 'B', 2715, + 'b', 2715, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(814); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 792: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - ')', 2294, - '.', 3076, - ';', 2253, - 'E', 3104, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - 'd', 3124, - 'e', 3054, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3195, + '#', 4100, + '(', 2493, + ')', 2295, + '.', 3077, + ';', 2254, + 'E', 3105, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'a', 3163, + 'd', 3125, + 'e', 3055, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3196, 'o', 3058, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - '|', 2254, - '}', 2403, - 0xb5, 3195, - '\t', 2252, - ' ', 2252, - 'B', 2714, - 'b', 2714, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + 'x', 3172, + '|', 2255, + '}', 2404, + 0xb5, 3196, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '\t' || + lookahead == ' ') SKIP(815); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 793: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - ')', 2294, - '.', 3076, - ';', 2253, - 'E', 3118, - '_', 3107, - 'a', 3162, - 'e', 3051, - 'o', 3057, - 'x', 3171, - '|', 2254, - '}', 2403, + '#', 4100, + '(', 2493, + ')', 2295, + '.', 3077, + ';', 2254, + 'E', 3105, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + 'd', 3125, + 'e', 3055, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3196, + 'o', 3059, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + '|', 2255, + '}', 2404, + 0xb5, 3196, + '\t', 2253, + ' ', 2253, + 'B', 2715, + 'b', 2715, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(814); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 794: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - ')', 2294, - '.', 3076, - ';', 2253, - 'E', 3118, - '_', 3107, - 'e', 3051, + '#', 4100, + '(', 2493, + ')', 2295, + '.', 3077, + ';', 2254, + 'E', 3119, + '_', 3108, + 'a', 3163, + 'e', 3052, 'o', 3058, - '|', 2254, - '}', 2403, - '\t', 2252, - ' ', 2252, + 'x', 3172, + '|', 2255, + '}', 2404, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '\t' || + lookahead == ' ') SKIP(815); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 795: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - ')', 2294, - '.', 3076, - ';', 2253, - 'E', 3118, - 'a', 3162, - 'e', 3051, - 'o', 3057, - 'x', 3171, - '|', 2254, - '}', 2403, + '#', 4100, + '(', 2493, + ')', 2295, + '.', 3077, + ';', 2254, + 'E', 3119, + '_', 3108, + 'e', 3052, + 'o', 3059, + '|', 2255, + '}', 2404, + '\t', 2253, + ' ', 2253, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(814); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 796: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - ')', 2294, - '.', 3076, - ';', 2253, - 'E', 3118, - 'e', 3051, + '#', 4100, + '(', 2493, + ')', 2295, + '.', 3077, + ';', 2254, + 'E', 3119, + 'a', 3163, + 'e', 3052, 'o', 3058, - '|', 2254, - '}', 2403, - '\t', 2252, - ' ', 2252, + 'x', 3172, + '|', 2255, + '}', 2404, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '\t' || + lookahead == ' ') SKIP(815); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 797: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - ')', 2294, - '.', 3076, - ';', 2253, - 'a', 3162, - 'e', 3056, - 'o', 3057, - 'x', 3171, - '|', 2254, - '}', 2403, + '#', 4100, + '(', 2493, + ')', 2295, + '.', 3077, + ';', 2254, + 'E', 3119, + 'e', 3052, + 'o', 3059, + '|', 2255, + '}', 2404, + '\t', 2253, + ' ', 2253, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(814); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 798: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - ')', 2294, - '.', 3076, - ';', 2253, - 'e', 3056, + '#', 4100, + '(', 2493, + ')', 2295, + '.', 3077, + ';', 2254, + 'a', 3163, + 'e', 3057, 'o', 3058, - '|', 2254, - '}', 2403, - '\t', 2252, - ' ', 2252, + 'x', 3172, + '|', 2255, + '}', 2404, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '\t' || + lookahead == ' ') SKIP(815); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 799: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - ')', 2294, - '.', 2533, - ';', 2253, - 'E', 3118, - 'a', 3162, - 'e', 3051, - 'o', 3057, - 'x', 3171, - '|', 2254, - '}', 2403, + '#', 4100, + '(', 2493, + ')', 2295, + '.', 3077, + ';', 2254, + 'e', 3057, + 'o', 3059, + '|', 2255, + '}', 2404, + '\t', 2253, + ' ', 2253, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(814); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 800: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - ')', 2294, - '.', 2533, - ';', 2253, - 'E', 3118, - 'e', 3051, + '#', 4100, + '(', 2493, + ')', 2295, + '.', 2534, + ';', 2254, + 'E', 3119, + 'a', 3163, + 'e', 3052, 'o', 3058, - '|', 2254, - '}', 2403, - '\t', 2252, - ' ', 2252, + 'x', 3172, + '|', 2255, + '}', 2404, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '\t' || + lookahead == ' ') SKIP(815); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 801: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - ')', 2294, - ';', 2253, - 'E', 3118, - '_', 3107, - 'a', 3162, - 'e', 3051, - 'o', 3057, - 'x', 3171, - '|', 2254, - '}', 2403, + '#', 4100, + '(', 2493, + ')', 2295, + '.', 2534, + ';', 2254, + 'E', 3119, + 'e', 3052, + 'o', 3059, + '|', 2255, + '}', 2404, + '\t', 2253, + ' ', 2253, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(814); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 802: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - ')', 2294, - ';', 2253, - 'E', 3118, - '_', 3107, - 'e', 3051, + '#', 4100, + '(', 2493, + ')', 2295, + ';', 2254, + 'E', 3119, + '_', 3108, + 'a', 3163, + 'e', 3052, 'o', 3058, - '|', 2254, - '}', 2403, - '\t', 2252, - ' ', 2252, + 'x', 3172, + '|', 2255, + '}', 2404, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '\t' || + lookahead == ' ') SKIP(815); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 803: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - ')', 2294, - ';', 2253, - 'E', 3118, - 'a', 3162, - 'e', 3051, - 'o', 3057, - 'x', 3171, - '|', 2254, - '}', 2403, + '#', 4100, + '(', 2493, + ')', 2295, + ';', 2254, + 'E', 3119, + '_', 3108, + 'e', 3052, + 'o', 3059, + '|', 2255, + '}', 2404, + '\t', 2253, + ' ', 2253, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(814); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 804: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - ')', 2294, - ';', 2253, - 'E', 3118, - 'e', 3051, + '#', 4100, + '(', 2493, + ')', 2295, + ';', 2254, + 'E', 3119, + 'a', 3163, + 'e', 3052, 'o', 3058, - '|', 2254, - '}', 2403, - '\t', 2252, - ' ', 2252, + 'x', 3172, + '|', 2255, + '}', 2404, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '\t' || + lookahead == ' ') SKIP(815); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 805: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - ')', 2294, - ';', 2253, - 'a', 3162, - 'e', 3056, - 'o', 3057, - 'x', 3171, - '|', 2254, - '}', 2403, + '#', 4100, + '(', 2493, + ')', 2295, + ';', 2254, + 'E', 3119, + 'e', 3052, + 'o', 3059, + '|', 2255, + '}', 2404, + '\t', 2253, + ' ', 2253, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(814); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 806: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - '(', 2492, - ')', 2294, - ';', 2253, - 'e', 3056, + '#', 4100, + '(', 2493, + ')', 2295, + ';', 2254, + 'a', 3163, + 'e', 3057, 'o', 3058, - '|', 2254, - '}', 2403, - '\t', 2252, - ' ', 2252, + 'x', 3172, + '|', 2255, + '}', 2404, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '\t' || + lookahead == ' ') SKIP(815); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 807: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - ')', 2294, - '-', 2325, - '.', 2547, - ';', 2253, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - '[', 2291, - 'd', 3124, - 'e', 3099, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3195, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - '}', 2403, - 0xb5, 3195, + '#', 4100, + '(', 2493, + ')', 2295, + ';', 2254, + 'e', 3057, + 'o', 3059, + '|', 2255, + '}', 2404, + '\t', 2253, + ' ', 2253, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); + END_STATE(); + case 808: + if (eof) ADVANCE(819); + ADVANCE_MAP( + '\n', 2251, + '\r', 1, + '#', 4100, + ')', 2295, + '-', 2326, + '.', 2548, + ';', 2254, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + '[', 2292, + 'd', 3125, + 'e', 3100, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3196, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + '}', 2404, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(811); + lookahead == ' ') SKIP(812); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); + lookahead == 'b') ADVANCE(2715); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && @@ -32300,46 +31751,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3259); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3260); END_STATE(); - case 808: - if (eof) ADVANCE(818); + case 809: + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - ')', 2294, - '-', 2325, - '.', 3076, - ';', 2253, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - '[', 2291, - '_', 3107, - 'd', 3124, - 'e', 3099, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3195, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - '}', 2403, - 0xb5, 3195, + '#', 4100, + ')', 2295, + '-', 2326, + '.', 3077, + ';', 2254, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + '[', 2292, + '_', 3108, + 'd', 3125, + 'e', 3100, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3196, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + '}', 2404, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(811); + lookahead == ' ') SKIP(812); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); + lookahead == 'b') ADVANCE(2715); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && @@ -32348,44 +31799,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3259); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3260); END_STATE(); - case 809: - if (eof) ADVANCE(818); + case 810: + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - ')', 2294, - '-', 2325, - '.', 3076, - ';', 2253, - 'E', 3100, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - '[', 2291, - 'd', 3124, - 'e', 3099, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3195, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - '}', 2403, - 0xb5, 3195, + '#', 4100, + ')', 2295, + '-', 2326, + '.', 3077, + ';', 2254, + 'E', 3101, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + '[', 2292, + 'd', 3125, + 'e', 3100, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3196, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + '}', 2404, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(811); + lookahead == ' ') SKIP(812); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); + lookahead == 'b') ADVANCE(2715); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && @@ -32393,44 +31844,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3259); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3260); END_STATE(); - case 810: - if (eof) ADVANCE(818); + case 811: + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - ')', 2294, - '-', 2325, - '.', 3076, - ';', 2253, - 'E', 3104, - 'G', 3104, - 'K', 3104, - 'M', 3104, - 'P', 3104, - 'T', 3104, - '[', 2291, - 'd', 3124, - 'e', 3103, - 'g', 3103, - 'h', 3180, - 'k', 3103, - 'm', 3106, - 'n', 3195, - 'p', 3103, - 's', 3139, - 't', 3103, - 'u', 3195, - 'w', 3154, - '}', 2403, - 0xb5, 3195, + '#', 4100, + ')', 2295, + '-', 2326, + '.', 3077, + ';', 2254, + 'E', 3105, + 'G', 3105, + 'K', 3105, + 'M', 3105, + 'P', 3105, + 'T', 3105, + '[', 2292, + 'd', 3125, + 'e', 3104, + 'g', 3104, + 'h', 3181, + 'k', 3104, + 'm', 3107, + 'n', 3196, + 'p', 3104, + 's', 3140, + 't', 3104, + 'u', 3196, + 'w', 3155, + '}', 2404, + 0xb5, 3196, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(811); + lookahead == ' ') SKIP(812); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); + lookahead == 'b') ADVANCE(2715); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && @@ -32438,37 +31889,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3259); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3260); END_STATE(); - case 811: - if (eof) ADVANCE(818); + case 812: + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - ')', 2294, - '-', 2325, - ';', 2253, - '[', 2291, - '}', 2403, + '#', 4100, + ')', 2295, + '-', 2326, + ';', 2254, + '[', 2292, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(811); + lookahead == ' ') SKIP(812); END_STATE(); - case 812: - if (eof) ADVANCE(818); + case 813: + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - ')', 2294, - '-', 2325, - ';', 2253, - '[', 2291, - '}', 2403, + '#', 4100, + ')', 2295, + '-', 2326, + ';', 2254, + '[', 2292, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(811); + lookahead == ' ') SKIP(812); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && @@ -32476,96 +31927,96 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3259); - END_STATE(); - case 813: - if (eof) ADVANCE(818); - ADVANCE_MAP( - '\n', 2250, - '\r', 1, - '#', 4099, - ')', 2294, - ';', 2253, - '=', 2878, - 'e', 2883, - 'o', 2886, - '|', 2254, - '}', 2403, - '\t', 2252, - ' ', 2252, - ); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3260); END_STATE(); case 814: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4099, - ')', 2294, - ';', 2253, - 'a', 526, - 'e', 395, - 'o', 396, - 'x', 536, - '|', 2254, - '}', 2403, + '#', 4100, + ')', 2295, + ';', 2254, + '=', 2879, + 'e', 2884, + 'o', 2887, + '|', 2255, + '}', 2404, + '\t', 2253, + ' ', 2253, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(814); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 815: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4105, - '(', 2492, - ')', 2294, - ';', 2253, - 'a', 3398, - 'e', 3276, - 'o', 3277, - 'x', 3413, - '|', 2254, - '}', 2403, + '#', 4100, + ')', 2295, + ';', 2254, + 'a', 527, + 'e', 396, + 'o', 397, + 'x', 537, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(814); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + lookahead == ' ') SKIP(815); END_STATE(); case 816: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4105, - '(', 2492, - ')', 2294, - ';', 2253, - 'e', 3276, + '#', 4106, + '(', 2493, + ')', 2295, + ';', 2254, + 'a', 3399, + 'e', 3277, 'o', 3278, - '|', 2254, - '}', 2403, - '\t', 2252, - ' ', 2252, + 'x', 3414, + '|', 2255, + '}', 2404, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '\t' || + lookahead == ' ') SKIP(815); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 817: - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '#', 4105, - ')', 2294, - '-', 2333, - ';', 2253, - '[', 2291, - '}', 2403, + '#', 4106, + '(', 2493, + ')', 2295, + ';', 2254, + 'e', 3277, + 'o', 3279, + '|', 2255, + '}', 2404, + '\t', 2253, + ' ', 2253, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); + END_STATE(); + case 818: + if (eof) ADVANCE(819); + ADVANCE_MAP( + '\n', 2251, + '\r', 1, + '#', 4106, + ')', 2295, + '-', 2336, + ';', 2254, + '[', 2292, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(811); + lookahead == ' ') SKIP(812); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && @@ -32573,13883 +32024,13883 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3536); - END_STATE(); - case 818: - ACCEPT_TOKEN(ts_builtin_sym_end); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3537); END_STATE(); case 819: - ACCEPT_TOKEN(anon_sym_POUND_BANG); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 820: - ACCEPT_TOKEN(aux_sym_shebang_token1); + ACCEPT_TOKEN(anon_sym_POUND_BANG); END_STATE(); case 821: ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(820); - if (lookahead == '\r') ADVANCE(822); - if (lookahead == '#') ADVANCE(4100); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(821); - if (lookahead != 0) ADVANCE(822); END_STATE(); case 822: ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(820); - if (lookahead == '\r') ADVANCE(822); - if (lookahead != 0) ADVANCE(822); + if (lookahead == '\n') ADVANCE(821); + if (lookahead == '\r') ADVANCE(823); + if (lookahead == '#') ADVANCE(4101); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(822); + if (lookahead != 0) ADVANCE(823); END_STATE(); case 823: - ACCEPT_TOKEN(anon_sym_export); + ACCEPT_TOKEN(aux_sym_shebang_token1); + if (lookahead == '\n') ADVANCE(821); + if (lookahead == '\r') ADVANCE(823); + if (lookahead != 0) ADVANCE(823); END_STATE(); case 824: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == ',') ADVANCE(1726); - if (lookahead == '-') ADVANCE(1715); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1718); END_STATE(); case 825: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == ',') ADVANCE(1726); - if (lookahead == '-') ADVANCE(3964); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3967); + if (lookahead == ',') ADVANCE(1727); + if (lookahead == '-') ADVANCE(1716); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1719); END_STATE(); case 826: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(1719); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1726); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1725); + if (lookahead == ',') ADVANCE(1727); + if (lookahead == '-') ADVANCE(3965); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3968); END_STATE(); case 827: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(1719); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1726); + if (lookahead == '-') ADVANCE(1720); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1727); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1726); END_STATE(); case 828: - ACCEPT_TOKEN(anon_sym_alias); + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(1720); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1727); END_STATE(); case 829: ACCEPT_TOKEN(anon_sym_alias); - if (lookahead == ',') ADVANCE(1592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3956); END_STATE(); case 830: ACCEPT_TOKEN(anon_sym_alias); - if (lookahead == ',') ADVANCE(1592); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1590); + if (lookahead == ',') ADVANCE(1593); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3957); END_STATE(); case 831: ACCEPT_TOKEN(anon_sym_alias); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1592); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1591); + if (lookahead == ',') ADVANCE(1593); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1591); END_STATE(); case 832: ACCEPT_TOKEN(anon_sym_alias); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1592); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1593); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1592); END_STATE(); case 833: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_alias); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1593); END_STATE(); case 834: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(2476); - if (lookahead == '~') ADVANCE(2487); END_STATE(); case 835: ACCEPT_TOKEN(anon_sym_EQ); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4092); + if (lookahead == '=') ADVANCE(2477); + if (lookahead == '~') ADVANCE(2488); END_STATE(); case 836: - ACCEPT_TOKEN(anon_sym_let); - if (lookahead == ',') ADVANCE(1615); - if (lookahead == '-') ADVANCE(1604); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1607); + ACCEPT_TOKEN(anon_sym_EQ); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4093); END_STATE(); case 837: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == ',') ADVANCE(1615); - if (lookahead == '-') ADVANCE(3934); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3937); + if (lookahead == ',') ADVANCE(1616); + if (lookahead == '-') ADVANCE(1605); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1608); END_STATE(); case 838: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(1608); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1614); + if (lookahead == ',') ADVANCE(1616); + if (lookahead == '-') ADVANCE(3935); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3938); END_STATE(); case 839: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(1608); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + if (lookahead == '-') ADVANCE(1609); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1616); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1615); END_STATE(); case 840: - ACCEPT_TOKEN(anon_sym_let_DASHenv); - if (lookahead == ',') ADVANCE(1615); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3937); + ACCEPT_TOKEN(anon_sym_let); + if (lookahead == '-') ADVANCE(1609); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1616); END_STATE(); case 841: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if (lookahead == ',') ADVANCE(1615); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1607); + if (lookahead == ',') ADVANCE(1616); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3938); END_STATE(); case 842: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + if (lookahead == ',') ADVANCE(1616); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1608); END_STATE(); case 843: - ACCEPT_TOKEN(anon_sym_mut); - if (lookahead == ',') ADVANCE(1618); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3938); + ACCEPT_TOKEN(anon_sym_let_DASHenv); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1616); END_STATE(); case 844: ACCEPT_TOKEN(anon_sym_mut); - if (lookahead == ',') ADVANCE(1618); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1616); + if (lookahead == ',') ADVANCE(1619); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3939); END_STATE(); case 845: ACCEPT_TOKEN(anon_sym_mut); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1618); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1617); + if (lookahead == ',') ADVANCE(1619); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); END_STATE(); case 846: ACCEPT_TOKEN(anon_sym_mut); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1618); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1619); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1618); END_STATE(); case 847: - ACCEPT_TOKEN(anon_sym_const); + ACCEPT_TOKEN(anon_sym_mut); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1619); END_STATE(); case 848: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == ',') ADVANCE(1621); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3959); END_STATE(); case 849: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == ',') ADVANCE(1621); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1619); + if (lookahead == ',') ADVANCE(1622); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3960); END_STATE(); case 850: ACCEPT_TOKEN(anon_sym_const); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1621); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1620); + if (lookahead == ',') ADVANCE(1622); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1620); END_STATE(); case 851: ACCEPT_TOKEN(anon_sym_const); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1621); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1622); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1621); END_STATE(); case 852: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_const); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1622); END_STATE(); case 853: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 854: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 855: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 856: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 857: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(2632); - if (lookahead == '(') ADVANCE(2528); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == '{') ADVANCE(2782); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); END_STATE(); case 858: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(2632); - if (lookahead == '(') ADVANCE(2528); - if (lookahead == '{') ADVANCE(2782); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '$') ADVANCE(2633); + if (lookahead == '(') ADVANCE(2529); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == '{') ADVANCE(2783); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 859: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1430); - if (lookahead == '>') ADVANCE(2825); - if (lookahead == 'l') ADVANCE(1485); - if (lookahead == 'n') ADVANCE(1324); - if (lookahead == 'r') ADVANCE(1448); - if (lookahead == 'x') ADVANCE(1445); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '$') ADVANCE(2633); + if (lookahead == '(') ADVANCE(2529); + if (lookahead == '{') ADVANCE(2783); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 860: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1342); - if (lookahead == '>') ADVANCE(2830); - if (lookahead == 'r') ADVANCE(2464); - if (lookahead == 'u') ADVANCE(1499); - if (lookahead == 'v') ADVANCE(1348); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '+') ADVANCE(1431); + if (lookahead == '>') ADVANCE(2826); + if (lookahead == 'l') ADVANCE(1486); + if (lookahead == 'n') ADVANCE(1325); + if (lookahead == 'r') ADVANCE(1449); + if (lookahead == 'x') ADVANCE(1446); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 861: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1432); - if (lookahead == '>') ADVANCE(2815); - if (lookahead == 'o') ADVANCE(1451); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '+') ADVANCE(1343); + if (lookahead == '>') ADVANCE(2831); + if (lookahead == 'r') ADVANCE(2465); + if (lookahead == 'u') ADVANCE(1500); + if (lookahead == 'v') ADVANCE(1349); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 862: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1154); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == '>') ADVANCE(616); - if (lookahead == 'l') ADVANCE(1195); - if (lookahead == 'r') ADVANCE(1171); - if (lookahead == 'x') ADVANCE(1166); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + if (lookahead == '+') ADVANCE(1433); + if (lookahead == '>') ADVANCE(2816); + if (lookahead == 'o') ADVANCE(1452); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 863: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1098); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '+') ADVANCE(1155); + if (lookahead == '=') ADVANCE(2812); if (lookahead == '>') ADVANCE(617); - if (lookahead == 'u') ADVANCE(1212); - if (lookahead == 'v') ADVANCE(1099); + if (lookahead == 'l') ADVANCE(1196); + if (lookahead == 'r') ADVANCE(1172); + if (lookahead == 'x') ADVANCE(1167); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 864: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1157); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == '>') ADVANCE(619); - if (lookahead == 'o') ADVANCE(1186); + if (lookahead == '+') ADVANCE(1099); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == '>') ADVANCE(618); + if (lookahead == 'u') ADVANCE(1213); + if (lookahead == 'v') ADVANCE(1100); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 865: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1355); - if (lookahead == '>') ADVANCE(2820); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '+') ADVANCE(1158); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == '>') ADVANCE(620); + if (lookahead == 'o') ADVANCE(1187); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 866: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(1094); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == '>') ADVANCE(621); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + if (lookahead == '+') ADVANCE(1356); + if (lookahead == '>') ADVANCE(2821); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 867: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == '.') ADVANCE(869); - if (lookahead == '_') ADVANCE(883); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2595); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == '+') ADVANCE(1095); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == '>') ADVANCE(622); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 868: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == '.') ADVANCE(869); - if (lookahead == '_') ADVANCE(887); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2677); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == '.') ADVANCE(870); + if (lookahead == '_') ADVANCE(884); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2596); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 869: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == '.') ADVANCE(857); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == '.') ADVANCE(870); + if (lookahead == '_') ADVANCE(888); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2678); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 870: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == '.') ADVANCE(2530); - if (lookahead == '_') ADVANCE(887); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2677); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == '.') ADVANCE(858); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 871: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == '.') ADVANCE(882); - if (lookahead == '_') ADVANCE(871); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == '.') ADVANCE(2531); + if (lookahead == '_') ADVANCE(888); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2678); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 872: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == '.') ADVANCE(886); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == '.') ADVANCE(883); if (lookahead == '_') ADVANCE(872); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2595); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 873: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - ',', 1558, - 'I', 995, - '_', 890, - 'i', 995, - 'l', 976, - 'r', 965, - 'x', 958, - '+', 890, - '-', 890, - 'B', 2714, - 'b', 2714, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == '.') ADVANCE(887); + if (lookahead == '_') ADVANCE(873); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 874: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); ADVANCE_MAP( - ',', 1558, - 'I', 995, - '_', 890, - 'i', 901, - '+', 890, - '-', 890, - 'B', 2714, - 'b', 2714, + ',', 1559, + 'I', 996, + '_', 891, + 'i', 996, + 'l', 977, + 'r', 966, + 'x', 959, + '+', 891, + '-', 891, + 'B', 2715, + 'b', 2715, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 875: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); ADVANCE_MAP( - ',', 1558, - 'I', 995, - 'a', 939, - 'i', 951, - 'o', 906, - 's', 2721, - 'u', 981, - 'B', 2714, - 'b', 2714, + ',', 1559, + 'I', 996, + '_', 891, + 'i', 902, + '+', 891, + '-', 891, + 'B', 2715, + 'b', 2715, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 876: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); ADVANCE_MAP( - ',', 1558, - 'I', 995, - 'i', 995, - 'l', 976, - 'r', 965, - 'x', 958, - 'B', 2714, - 'b', 2714, + ',', 1559, + 'I', 996, + 'a', 940, + 'i', 952, + 'o', 907, + 's', 2722, + 'u', 982, + 'B', 2715, + 'b', 2715, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 877: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'I') ADVANCE(995); - if (lookahead == 'i') ADVANCE(995); - if (lookahead == 'r') ADVANCE(987); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + ADVANCE_MAP( + ',', 1559, + 'I', 996, + 'i', 996, + 'l', 977, + 'r', 966, + 'x', 959, + 'B', 2715, + 'b', 2715, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 878: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'I') ADVANCE(995); - if (lookahead == 'i') ADVANCE(995); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'I') ADVANCE(996); + if (lookahead == 'i') ADVANCE(996); + if (lookahead == 'r') ADVANCE(988); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 879: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'I') ADVANCE(995); - if (lookahead == 'i') ADVANCE(901); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'I') ADVANCE(996); + if (lookahead == 'i') ADVANCE(996); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 880: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'N') ADVANCE(996); - if (lookahead == 'f') ADVANCE(2388); - if (lookahead == 'n') ADVANCE(2362); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'I') ADVANCE(996); + if (lookahead == 'i') ADVANCE(902); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 881: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == '_') ADVANCE(881); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'N') ADVANCE(997); + if (lookahead == 'f') ADVANCE(2389); + if (lookahead == 'n') ADVANCE(2363); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 882: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); + if (lookahead == ',') ADVANCE(1559); if (lookahead == '_') ADVANCE(882); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 883: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); + if (lookahead == ',') ADVANCE(1559); if (lookahead == '_') ADVANCE(883); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2595); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 884: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == '_') ADVANCE(885); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(885); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == '_') ADVANCE(884); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2596); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 885: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == '_') ADVANCE(885); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2596); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == '_') ADVANCE(886); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(886); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2597); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 886: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); + if (lookahead == ',') ADVANCE(1559); if (lookahead == '_') ADVANCE(886); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2683); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2597); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 887: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); + if (lookahead == ',') ADVANCE(1559); if (lookahead == '_') ADVANCE(887); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2677); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2684); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 888: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == '_') ADVANCE(890); - if (lookahead == 'l') ADVANCE(976); - if (lookahead == 'r') ADVANCE(965); - if (lookahead == 'x') ADVANCE(958); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(890); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == '_') ADVANCE(888); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2678); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 889: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == '_') ADVANCE(890); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(890); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == '_') ADVANCE(891); + if (lookahead == 'l') ADVANCE(977); + if (lookahead == 'r') ADVANCE(966); + if (lookahead == 'x') ADVANCE(959); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(891); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 890: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == '_') ADVANCE(890); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == '_') ADVANCE(891); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(891); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 891: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == '_') ADVANCE(892); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(892); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2674); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == '_') ADVANCE(891); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 892: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == '_') ADVANCE(892); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2674); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == '_') ADVANCE(893); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(893); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 893: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); + if (lookahead == ',') ADVANCE(1559); if (lookahead == '_') ADVANCE(893); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 894: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'a') ADVANCE(979); - if (lookahead == 'o') ADVANCE(948); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == '_') ADVANCE(894); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 895: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'a') ADVANCE(947); - if (lookahead == 'o') ADVANCE(960); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'a') ADVANCE(980); + if (lookahead == 'o') ADVANCE(949); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 896: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'a') ADVANCE(939); - if (lookahead == 'o') ADVANCE(906); - if (lookahead == 'u') ADVANCE(981); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'a') ADVANCE(948); + if (lookahead == 'o') ADVANCE(961); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 897: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'a') ADVANCE(938); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'a') ADVANCE(940); + if (lookahead == 'o') ADVANCE(907); + if (lookahead == 'u') ADVANCE(982); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 898: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'a') ADVANCE(992); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'a') ADVANCE(939); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 899: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'a') ADVANCE(970); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'a') ADVANCE(993); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 900: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'a') ADVANCE(993); - if (lookahead == 'e') ADVANCE(926); - if (lookahead == 'o') ADVANCE(2383); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'a') ADVANCE(971); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 901: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'a') ADVANCE(994); + if (lookahead == 'e') ADVANCE(927); + if (lookahead == 'o') ADVANCE(2384); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 902: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'c') ADVANCE(2721); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 903: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'c') ADVANCE(928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'c') ADVANCE(2722); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 904: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); + if (lookahead == ',') ADVANCE(1559); if (lookahead == 'c') ADVANCE(929); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 905: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'c') ADVANCE(916); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'c') ADVANCE(930); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 906: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'd') ADVANCE(990); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'c') ADVANCE(917); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 907: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'd') ADVANCE(912); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'd') ADVANCE(991); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 908: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'e') ADVANCE(926); - if (lookahead == 'o') ADVANCE(2383); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'd') ADVANCE(913); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 909: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); + if (lookahead == ',') ADVANCE(1559); if (lookahead == 'e') ADVANCE(927); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == 'o') ADVANCE(2384); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 910: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'e') ADVANCE(2285); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'e') ADVANCE(928); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 911: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'e') ADVANCE(2394); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'e') ADVANCE(2286); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 912: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'e') ADVANCE(2437); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'e') ADVANCE(2395); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 913: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'e') ADVANCE(2374); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'e') ADVANCE(2438); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 914: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'e') ADVANCE(2378); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'e') ADVANCE(2375); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 915: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'e') ADVANCE(2280); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'e') ADVANCE(2379); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 916: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'e') ADVANCE(2430); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'e') ADVANCE(2281); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 917: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'e') ADVANCE(2354); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'e') ADVANCE(2431); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 918: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'e') ADVANCE(980); - if (lookahead == 'o') ADVANCE(954); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'e') ADVANCE(2355); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 919: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'e') ADVANCE(897); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'e') ADVANCE(981); + if (lookahead == 'o') ADVANCE(955); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 920: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'e') ADVANCE(1004); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'e') ADVANCE(898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 921: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'e') ADVANCE(902); - if (lookahead == 'o') ADVANCE(986); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'e') ADVANCE(1005); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 922: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'e') ADVANCE(1005); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'e') ADVANCE(903); + if (lookahead == 'o') ADVANCE(987); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 923: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'e') ADVANCE(969); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'e') ADVANCE(1006); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 924: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'e') ADVANCE(966); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'e') ADVANCE(970); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 925: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'e') ADVANCE(962); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'e') ADVANCE(967); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 926: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'f') ADVANCE(2267); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'e') ADVANCE(963); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 927: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'g') ADVANCE(936); - if (lookahead == 't') ADVANCE(988); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'f') ADVANCE(2268); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 928: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'h') ADVANCE(2423); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'g') ADVANCE(937); + if (lookahead == 't') ADVANCE(989); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 929: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'h') ADVANCE(2399); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'h') ADVANCE(2424); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 930: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'h') ADVANCE(937); - if (lookahead == 'k') ADVANCE(2721); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'h') ADVANCE(2400); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 931: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'h') ADVANCE(937); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'h') ADVANCE(938); + if (lookahead == 'k') ADVANCE(2722); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 932: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'i') ADVANCE(907); - if (lookahead == 'r') ADVANCE(2721); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'h') ADVANCE(938); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 933: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'i') ADVANCE(907); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'i') ADVANCE(908); + if (lookahead == 'r') ADVANCE(2722); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 934: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'i') ADVANCE(899); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'i') ADVANCE(908); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 935: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'i') ADVANCE(952); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'i') ADVANCE(900); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 936: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'i') ADVANCE(977); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'i') ADVANCE(953); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 937: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'i') ADVANCE(944); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'i') ADVANCE(978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 938: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'k') ADVANCE(2350); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'i') ADVANCE(945); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 939: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'k') ADVANCE(913); - if (lookahead == 't') ADVANCE(904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'k') ADVANCE(2351); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 940: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'l') ADVANCE(934); - if (lookahead == 's') ADVANCE(2451); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'k') ADVANCE(914); + if (lookahead == 't') ADVANCE(905); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 941: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'l') ADVANCE(1003); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'l') ADVANCE(935); + if (lookahead == 's') ADVANCE(2452); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 942: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'l') ADVANCE(941); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'l') ADVANCE(1004); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 943: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'l') ADVANCE(898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'l') ADVANCE(942); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 944: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'l') ADVANCE(914); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'l') ADVANCE(899); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 945: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); + if (lookahead == ',') ADVANCE(1559); if (lookahead == 'l') ADVANCE(915); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 946: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'l') ADVANCE(976); - if (lookahead == 'r') ADVANCE(965); - if (lookahead == 'x') ADVANCE(958); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'l') ADVANCE(916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 947: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'l') ADVANCE(978); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'l') ADVANCE(977); + if (lookahead == 'r') ADVANCE(966); + if (lookahead == 'x') ADVANCE(959); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 948: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'n') ADVANCE(975); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'l') ADVANCE(979); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 949: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'n') ADVANCE(2275); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'n') ADVANCE(976); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 950: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'n') ADVANCE(2427); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'n') ADVANCE(2276); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 951: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'n') ADVANCE(2721); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'n') ADVANCE(2428); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 952: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'n') ADVANCE(989); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'n') ADVANCE(2722); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 953: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'o') ADVANCE(986); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'n') ADVANCE(990); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 954: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'o') ADVANCE(957); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'o') ADVANCE(987); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 955: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'o') ADVANCE(961); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'o') ADVANCE(958); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 956: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'o') ADVANCE(968); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'o') ADVANCE(962); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 957: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'p') ADVANCE(2369); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'o') ADVANCE(969); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 958: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'p') ADVANCE(956); - if (lookahead == 't') ADVANCE(924); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'p') ADVANCE(2370); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 959: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'r') ADVANCE(987); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'p') ADVANCE(957); + if (lookahead == 't') ADVANCE(925); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 960: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'r') ADVANCE(2358); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'r') ADVANCE(988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 961: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'r') ADVANCE(2305); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'r') ADVANCE(2359); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 962: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'r') ADVANCE(2789); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'r') ADVANCE(2306); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 963: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'r') ADVANCE(919); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'r') ADVANCE(2790); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 964: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'r') ADVANCE(905); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'r') ADVANCE(920); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 965: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'r') ADVANCE(955); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'r') ADVANCE(906); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 966: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'r') ADVANCE(949); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'r') ADVANCE(956); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 967: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); + if (lookahead == ',') ADVANCE(1559); if (lookahead == 'r') ADVANCE(950); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 968: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'r') ADVANCE(983); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'r') ADVANCE(951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 969: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'r') ADVANCE(943); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'r') ADVANCE(984); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 970: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 's') ADVANCE(830); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'r') ADVANCE(944); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 971: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 's') ADVANCE(2721); - if (lookahead == 'u') ADVANCE(942); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 's') ADVANCE(831); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 972: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 's') ADVANCE(2721); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 's') ADVANCE(2722); + if (lookahead == 'u') ADVANCE(943); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(999); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 973: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); + if (lookahead == ',') ADVANCE(1559); if (lookahead == 's') ADVANCE(2722); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 974: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 's') ADVANCE(910); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 's') ADVANCE(2723); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 975: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 's') ADVANCE(982); - if (lookahead == 't') ADVANCE(935); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 's') ADVANCE(911); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 976: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 's') ADVANCE(911); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 's') ADVANCE(983); + if (lookahead == 't') ADVANCE(936); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 977: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 's') ADVANCE(984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 's') ADVANCE(912); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 978: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 's') ADVANCE(922); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 's') ADVANCE(985); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 979: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 't') ADVANCE(903); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 's') ADVANCE(923); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 980: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 't') ADVANCE(836); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 't') ADVANCE(904); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 981: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 't') ADVANCE(844); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 't') ADVANCE(837); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 982: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 't') ADVANCE(849); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 't') ADVANCE(845); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 983: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 't') ADVANCE(824); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 't') ADVANCE(850); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 984: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 't') ADVANCE(925); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 't') ADVANCE(825); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 985: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'u') ADVANCE(942); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 't') ADVANCE(926); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 986: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'u') ADVANCE(964); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'u') ADVANCE(943); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(999); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 987: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'u') ADVANCE(920); - if (lookahead == 'y') ADVANCE(2418); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'u') ADVANCE(965); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 988: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'u') ADVANCE(967); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'u') ADVANCE(921); + if (lookahead == 'y') ADVANCE(2419); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 989: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'u') ADVANCE(917); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'u') ADVANCE(968); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 990: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'u') ADVANCE(945); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'u') ADVANCE(918); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 991: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'v') ADVANCE(923); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'u') ADVANCE(946); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 992: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'y') ADVANCE(2446); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'v') ADVANCE(924); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 993: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'y') ADVANCE(2721); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'y') ADVANCE(2447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 994: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'y') ADVANCE(2722); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 995: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(999); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 996: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2688); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 997: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(996); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2689); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 998: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); + if (lookahead == ',') ADVANCE(1559); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + lookahead == 'n') ADVANCE(997); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 999: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(2685); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2707); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 1000: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (('0' <= lookahead && lookahead <= '7') || + if (lookahead == ',') ADVANCE(1559); + if (lookahead == '0' || + lookahead == '1' || lookahead == '_') ADVANCE(2686); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 1001: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2684); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(2687); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 1002: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1002); + if (lookahead == ',') ADVANCE(1559); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2685); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 1003: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1736); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1734); + if (lookahead == ',') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1003); END_STATE(); case 1004: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1730); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1728); + if (lookahead == ',') ADVANCE(1737); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1735); END_STATE(); case 1005: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(1733); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1731); + if (lookahead == ',') ADVANCE(1731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1729); END_STATE(); case 1006: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1302); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == ',') ADVANCE(1734); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1732); END_STATE(); case 1007: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1378); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '-') ADVANCE(1303); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1008: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1532); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '-') ADVANCE(1379); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1009: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1555); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '-') ADVANCE(1533); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1010: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1609); - if (lookahead == '=') ADVANCE(2811); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1615); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1614); + if (lookahead == '-') ADVANCE(1556); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1011: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1609); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + if (lookahead == '-') ADVANCE(1610); + if (lookahead == '=') ADVANCE(2812); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1616); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1615); END_STATE(); case 1012: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1627); - if (lookahead == '=') ADVANCE(2811); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1633); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1632); + if (lookahead == '-') ADVANCE(1610); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1616); END_STATE(); case 1013: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1627); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1633); + if (lookahead == '-') ADVANCE(1628); + if (lookahead == '=') ADVANCE(2812); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1634); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1633); END_STATE(); case 1014: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1720); - if (lookahead == '=') ADVANCE(2811); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1726); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1725); + if (lookahead == '-') ADVANCE(1628); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1634); END_STATE(); case 1015: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1720); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1726); + if (lookahead == '-') ADVANCE(1721); + if (lookahead == '=') ADVANCE(2812); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1727); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1726); END_STATE(); case 1016: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1639); - if (lookahead == '=') ADVANCE(2811); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1645); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1644); + if (lookahead == '-') ADVANCE(1721); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1727); END_STATE(); case 1017: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1639); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1645); + if (lookahead == '-') ADVANCE(1640); + if (lookahead == '=') ADVANCE(2812); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1646); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1645); END_STATE(); case 1018: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(1533); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '-') ADVANCE(1640); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1646); END_STATE(); case 1019: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1281); - if (lookahead == '_') ADVANCE(1019); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '-') ADVANCE(1534); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1020: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(2411); - if (lookahead == '_') ADVANCE(1282); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '.') ADVANCE(1282); + if (lookahead == '_') ADVANCE(1020); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1021: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(2408); - if (lookahead == '_') ADVANCE(1282); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '.') ADVANCE(2412); + if (lookahead == '_') ADVANCE(1283); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2677); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1022: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(858); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '.') ADVANCE(2409); + if (lookahead == '_') ADVANCE(1283); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2677); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1023: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(2529); - if (lookahead == '_') ADVANCE(1282); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '.') ADVANCE(859); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1024: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1022); - if (lookahead == '_') ADVANCE(1282); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '.') ADVANCE(2530); + if (lookahead == '_') ADVANCE(1283); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2677); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1025: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1022); - if (lookahead == '_') ADVANCE(1287); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2597); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '.') ADVANCE(1023); + if (lookahead == '_') ADVANCE(1283); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2677); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1026: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(2532); - if (lookahead == '_') ADVANCE(1282); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '.') ADVANCE(1023); + if (lookahead == '_') ADVANCE(1288); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2598); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1027: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1286); - if (lookahead == '_') ADVANCE(1027); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '.') ADVANCE(2533); + if (lookahead == '_') ADVANCE(1283); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2677); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1028: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ':') ADVANCE(653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '.') ADVANCE(1287); + if (lookahead == '_') ADVANCE(1028); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2595); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1029: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == '>') ADVANCE(618); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + if (lookahead == ':') ADVANCE(654); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1030: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == '>') ADVANCE(620); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == '>') ADVANCE(619); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1031: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == '>') ADVANCE(622); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == '>') ADVANCE(621); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1032: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if (lookahead == '>') ADVANCE(623); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1033: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'N') ADVANCE(1236); - if (lookahead == 'f') ADVANCE(2389); - if (lookahead == 'n') ADVANCE(2364); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == '>') ADVANCE(624); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1034: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'N') ADVANCE(1236); - if (lookahead == 'f') ADVANCE(2389); - if (lookahead == 'n') ADVANCE(1237); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'N') ADVANCE(1237); + if (lookahead == 'f') ADVANCE(2390); + if (lookahead == 'n') ADVANCE(2365); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1035: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'N') ADVANCE(1236); - if (lookahead == 'f') ADVANCE(1244); - if (lookahead == 'n') ADVANCE(1237); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'N') ADVANCE(1237); + if (lookahead == 'f') ADVANCE(2390); + if (lookahead == 'n') ADVANCE(1238); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1036: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == '_') ADVANCE(1036); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'N') ADVANCE(1237); + if (lookahead == 'f') ADVANCE(1245); + if (lookahead == 'n') ADVANCE(1238); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1037: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'a') ADVANCE(1205); - if (lookahead == 'o') ADVANCE(1143); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == '_') ADVANCE(1037); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1038: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'a') ADVANCE(1205); - if (lookahead == 'o') ADVANCE(1149); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'a') ADVANCE(1206); + if (lookahead == 'o') ADVANCE(1144); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1039: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'a') ADVANCE(1205); - if (lookahead == 'o') ADVANCE(1151); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'a') ADVANCE(1206); + if (lookahead == 'o') ADVANCE(1150); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1040: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'a') ADVANCE(1141); - if (lookahead == 'o') ADVANCE(1168); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'a') ADVANCE(1206); + if (lookahead == 'o') ADVANCE(1152); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1041: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'a') ADVANCE(1141); - if (lookahead == 'o') ADVANCE(1183); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'a') ADVANCE(1142); + if (lookahead == 'o') ADVANCE(1169); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1042: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'a') ADVANCE(1124); - if (lookahead == 'o') ADVANCE(1059); - if (lookahead == 'u') ADVANCE(1207); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'a') ADVANCE(1142); + if (lookahead == 'o') ADVANCE(1184); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1043: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'a') ADVANCE(1124); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == 'u') ADVANCE(1214); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'a') ADVANCE(1125); + if (lookahead == 'o') ADVANCE(1060); + if (lookahead == 'u') ADVANCE(1208); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1044: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'a') ADVANCE(1123); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'a') ADVANCE(1125); + if (lookahead == 'o') ADVANCE(1063); + if (lookahead == 'u') ADVANCE(1215); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1045: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'a') ADVANCE(1233); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'a') ADVANCE(1124); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1046: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'a') ADVANCE(1193); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'a') ADVANCE(1234); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1047: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'a') ADVANCE(1127); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'a') ADVANCE(1194); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1048: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'a') ADVANCE(1234); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'a') ADVANCE(1128); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1049: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'a') ADVANCE(1201); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'a') ADVANCE(1235); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1050: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'a') ADVANCE(1126); - if (lookahead == 'o') ADVANCE(1059); - if (lookahead == 'u') ADVANCE(1207); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'a') ADVANCE(1202); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1051: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'a') ADVANCE(1216); - if (lookahead == 'o') ADVANCE(1143); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'a') ADVANCE(1127); + if (lookahead == 'o') ADVANCE(1060); + if (lookahead == 'u') ADVANCE(1208); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1052: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'a') ADVANCE(1125); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == 'u') ADVANCE(1214); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'a') ADVANCE(1217); + if (lookahead == 'o') ADVANCE(1144); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1053: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'c') ADVANCE(1111); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'a') ADVANCE(1126); + if (lookahead == 'o') ADVANCE(1063); + if (lookahead == 'u') ADVANCE(1215); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1054: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'c') ADVANCE(1108); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'c') ADVANCE(1112); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1055: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if (lookahead == 'c') ADVANCE(1109); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1056: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'c') ADVANCE(1072); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'c') ADVANCE(1110); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1057: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'c') ADVANCE(1083); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'c') ADVANCE(1073); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1058: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'c') ADVANCE(1112); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'c') ADVANCE(1084); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1059: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'd') ADVANCE(1227); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'c') ADVANCE(1113); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1060: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'd') ADVANCE(1066); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'd') ADVANCE(1228); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1061: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'd') ADVANCE(1080); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'd') ADVANCE(1067); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1062: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'd') ADVANCE(1230); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'd') ADVANCE(1081); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1063: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(1102); - if (lookahead == 'o') ADVANCE(2384); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'd') ADVANCE(1231); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1064: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(1104); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(1103); + if (lookahead == 'o') ADVANCE(2385); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1065: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(2286); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(1105); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1066: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(2439); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(2287); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1067: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(2617); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(2440); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1068: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(2625); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(2618); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1069: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(2459); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(2626); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1070: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(2379); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(2460); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1071: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(2281); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(2380); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1072: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(2432); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(2282); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1073: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(2355); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(2433); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1074: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(2395); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(2356); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1075: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(2375); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(2396); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1076: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(1206); - if (lookahead == 'o') ADVANCE(1153); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(2376); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1077: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(1103); - if (lookahead == 'o') ADVANCE(2384); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(1207); + if (lookahead == 'o') ADVANCE(1154); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1078: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(1103); - if (lookahead == 'o') ADVANCE(1243); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(1104); + if (lookahead == 'o') ADVANCE(2385); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1079: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(1044); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(1104); + if (lookahead == 'o') ADVANCE(1244); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1080: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(1012); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(1045); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1081: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(1250); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(1013); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1082: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(1252); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(1251); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1083: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(1016); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(1253); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1084: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(1179); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(1017); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1085: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(1047); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(1180); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1086: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(1211); - if (lookahead == 'o') ADVANCE(1155); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(1048); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1087: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(1176); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(1212); + if (lookahead == 'o') ADVANCE(1156); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1088: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(1249); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(1177); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1089: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(1180); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(1250); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1090: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(1170); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(1181); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1091: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(1259); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(1171); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1092: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(1178); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(1260); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1093: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(1261); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(1179); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1094: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(1187); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(1262); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1095: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(1264); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(1188); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1096: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(1184); - if (lookahead == 'i') ADVANCE(1134); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(1265); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1097: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(1184); - if (lookahead == 'i') ADVANCE(1136); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(1185); + if (lookahead == 'i') ADVANCE(1135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1098: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(1030); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(1185); + if (lookahead == 'i') ADVANCE(1137); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1099: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(1182); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(1031); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1100: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'e') ADVANCE(1105); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(1183); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1101: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if (lookahead == 'e') ADVANCE(1106); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1102: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'f') ADVANCE(2268); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'e') ADVANCE(1107); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1103: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'f') ADVANCE(1245); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'f') ADVANCE(2269); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1104: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'g') ADVANCE(1117); - if (lookahead == 't') ADVANCE(1223); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'f') ADVANCE(1246); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1105: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'g') ADVANCE(1117); - if (lookahead == 't') ADVANCE(1229); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'g') ADVANCE(1118); + if (lookahead == 't') ADVANCE(1224); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1106: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'g') ADVANCE(1122); - if (lookahead == 't') ADVANCE(1223); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'g') ADVANCE(1118); + if (lookahead == 't') ADVANCE(1230); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1107: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'h') ADVANCE(1096); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'g') ADVANCE(1123); + if (lookahead == 't') ADVANCE(1224); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1108: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'h') ADVANCE(2400); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'h') ADVANCE(1097); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1109: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'h') ADVANCE(2424); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'h') ADVANCE(2401); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1110: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'h') ADVANCE(1120); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'h') ADVANCE(2425); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1111: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'h') ADVANCE(1255); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'h') ADVANCE(1121); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1112: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'h') ADVANCE(1258); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'h') ADVANCE(1256); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1113: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'h') ADVANCE(1097); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'h') ADVANCE(1259); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1114: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'i') ADVANCE(1060); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'h') ADVANCE(1098); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1115: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'i') ADVANCE(1046); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'i') ADVANCE(1061); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1116: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'i') ADVANCE(1146); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'i') ADVANCE(1047); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1117: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'i') ADVANCE(1197); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'i') ADVANCE(1147); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1118: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'i') ADVANCE(1061); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'i') ADVANCE(1198); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1119: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'i') ADVANCE(1049); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'i') ADVANCE(1062); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1120: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'i') ADVANCE(1136); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'i') ADVANCE(1050); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1121: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'i') ADVANCE(1150); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'i') ADVANCE(1137); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1122: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'i') ADVANCE(1204); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'i') ADVANCE(1151); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1123: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'k') ADVANCE(2351); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'i') ADVANCE(1205); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1124: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'k') ADVANCE(1082); - if (lookahead == 't') ADVANCE(1054); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'k') ADVANCE(2352); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1125: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'k') ADVANCE(1082); - if (lookahead == 't') ADVANCE(1058); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'k') ADVANCE(1083); + if (lookahead == 't') ADVANCE(1055); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1126: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'k') ADVANCE(1075); - if (lookahead == 't') ADVANCE(1054); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'k') ADVANCE(1083); + if (lookahead == 't') ADVANCE(1059); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1127: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'k') ADVANCE(1254); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'k') ADVANCE(1076); + if (lookahead == 't') ADVANCE(1055); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1128: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'l') ADVANCE(2609); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'k') ADVANCE(1255); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1129: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'l') ADVANCE(1115); - if (lookahead == 's') ADVANCE(2452); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'l') ADVANCE(2610); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1130: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'l') ADVANCE(1115); - if (lookahead == 's') ADVANCE(1242); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'l') ADVANCE(1116); + if (lookahead == 's') ADVANCE(2453); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1131: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'l') ADVANCE(1128); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'l') ADVANCE(1116); + if (lookahead == 's') ADVANCE(1243); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1132: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'l') ADVANCE(1045); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'l') ADVANCE(1129); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1133: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'l') ADVANCE(1048); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'l') ADVANCE(1046); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1134: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'l') ADVANCE(1070); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'l') ADVANCE(1049); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1135: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if (lookahead == 'l') ADVANCE(1071); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1136: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'l') ADVANCE(1091); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'l') ADVANCE(1072); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1137: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'l') ADVANCE(1093); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'l') ADVANCE(1092); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1138: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'l') ADVANCE(1195); - if (lookahead == 'r') ADVANCE(1175); - if (lookahead == 'x') ADVANCE(1165); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'l') ADVANCE(1094); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1139: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'l') ADVANCE(1195); - if (lookahead == 'r') ADVANCE(1191); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'l') ADVANCE(1196); + if (lookahead == 'r') ADVANCE(1176); if (lookahead == 'x') ADVANCE(1166); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1140: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'l') ADVANCE(1119); - if (lookahead == 's') ADVANCE(1242); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'l') ADVANCE(1196); + if (lookahead == 'r') ADVANCE(1192); + if (lookahead == 'x') ADVANCE(1167); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1141: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'l') ADVANCE(1198); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'l') ADVANCE(1120); + if (lookahead == 's') ADVANCE(1243); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1142: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'l') ADVANCE(1202); - if (lookahead == 'r') ADVANCE(1175); - if (lookahead == 'x') ADVANCE(1165); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'l') ADVANCE(1199); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1143: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'n') ADVANCE(1196); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'l') ADVANCE(1203); + if (lookahead == 'r') ADVANCE(1176); + if (lookahead == 'x') ADVANCE(1166); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1144: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'n') ADVANCE(2276); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'n') ADVANCE(1197); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1145: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'n') ADVANCE(2428); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'n') ADVANCE(2277); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1146: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'n') ADVANCE(1225); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'n') ADVANCE(2429); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1147: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'n') ADVANCE(1260); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'n') ADVANCE(1226); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1148: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'n') ADVANCE(1262); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'n') ADVANCE(1261); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1149: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'n') ADVANCE(1199); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'n') ADVANCE(1263); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1150: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'n') ADVANCE(1226); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'n') ADVANCE(1200); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1151: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'n') ADVANCE(1200); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'n') ADVANCE(1227); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1152: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'o') ADVANCE(1220); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'n') ADVANCE(1201); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1153: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'o') ADVANCE(1163); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'o') ADVANCE(1221); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1154: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'o') ADVANCE(1029); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'o') ADVANCE(1164); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1155: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'o') ADVANCE(1164); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'o') ADVANCE(1030); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1156: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'o') ADVANCE(1208); - if (lookahead == 'u') ADVANCE(1131); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1239); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'o') ADVANCE(1165); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1157: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'o') ADVANCE(1224); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'o') ADVANCE(1209); + if (lookahead == 'u') ADVANCE(1132); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1240); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1158: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'o') ADVANCE(1169); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'o') ADVANCE(1225); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1159: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'o') ADVANCE(1181); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'o') ADVANCE(1170); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1160: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'o') ADVANCE(1186); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'o') ADVANCE(1182); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1161: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'o') ADVANCE(1185); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'o') ADVANCE(1187); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1162: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'o') ADVANCE(1228); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'o') ADVANCE(1186); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1163: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'p') ADVANCE(2370); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'o') ADVANCE(1229); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1164: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'p') ADVANCE(1251); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'p') ADVANCE(2371); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1165: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'p') ADVANCE(1159); - if (lookahead == 't') ADVANCE(1087); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'p') ADVANCE(1252); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1166: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'p') ADVANCE(1161); - if (lookahead == 't') ADVANCE(1092); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'p') ADVANCE(1160); + if (lookahead == 't') ADVANCE(1088); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1167: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'r') ADVANCE(1221); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'p') ADVANCE(1162); + if (lookahead == 't') ADVANCE(1093); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1168: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'r') ADVANCE(2359); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'r') ADVANCE(1222); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1169: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'r') ADVANCE(2306); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'r') ADVANCE(2360); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1170: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'r') ADVANCE(2790); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'r') ADVANCE(2307); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1171: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'r') ADVANCE(864); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'r') ADVANCE(2791); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1172: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'r') ADVANCE(1079); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'r') ADVANCE(865); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1173: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'r') ADVANCE(1222); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'r') ADVANCE(1080); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1174: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'r') ADVANCE(1056); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'r') ADVANCE(1223); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1175: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'r') ADVANCE(1158); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'r') ADVANCE(1057); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1176: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'r') ADVANCE(1144); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'r') ADVANCE(1159); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1177: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if (lookahead == 'r') ADVANCE(1145); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1178: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'r') ADVANCE(1147); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'r') ADVANCE(1146); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1179: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'r') ADVANCE(1132); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'r') ADVANCE(1148); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1180: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'r') ADVANCE(1265); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'r') ADVANCE(1133); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1181: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'r') ADVANCE(1210); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'r') ADVANCE(1266); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1182: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'r') ADVANCE(1133); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'r') ADVANCE(1211); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1183: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'r') ADVANCE(1246); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'r') ADVANCE(1134); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1184: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'r') ADVANCE(1069); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'r') ADVANCE(1247); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1185: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'r') ADVANCE(1213); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'r') ADVANCE(1070); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1186: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'r') ADVANCE(1257); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'r') ADVANCE(1214); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1187: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'r') ADVANCE(1192); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'r') ADVANCE(1258); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1188: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'r') ADVANCE(1085); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'r') ADVANCE(1193); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1189: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'r') ADVANCE(1057); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'r') ADVANCE(1086); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1190: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'r') ADVANCE(1148); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'r') ADVANCE(1058); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1191: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'r') ADVANCE(1160); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'r') ADVANCE(1149); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1192: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'r') ADVANCE(1032); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'r') ADVANCE(1161); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1193: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 's') ADVANCE(831); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'r') ADVANCE(1033); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1194: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 's') ADVANCE(1065); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 's') ADVANCE(832); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1195: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 's') ADVANCE(1081); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 's') ADVANCE(1066); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1196: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 's') ADVANCE(1209); - if (lookahead == 't') ADVANCE(1116); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 's') ADVANCE(1082); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1197: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 's') ADVANCE(1218); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 's') ADVANCE(1210); + if (lookahead == 't') ADVANCE(1117); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1198: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 's') ADVANCE(1068); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 's') ADVANCE(1219); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1199: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 's') ADVANCE(1215); - if (lookahead == 't') ADVANCE(1116); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 's') ADVANCE(1069); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1200: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 's') ADVANCE(1215); - if (lookahead == 't') ADVANCE(1121); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 's') ADVANCE(1216); + if (lookahead == 't') ADVANCE(1117); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1201: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 's') ADVANCE(1253); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 's') ADVANCE(1216); + if (lookahead == 't') ADVANCE(1122); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1202: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 's') ADVANCE(1074); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 's') ADVANCE(1254); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1203: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 's') ADVANCE(1088); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 's') ADVANCE(1075); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1204: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 's') ADVANCE(1219); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 's') ADVANCE(1089); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1205: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 't') ADVANCE(1053); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 's') ADVANCE(1220); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1206: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 't') ADVANCE(838); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 't') ADVANCE(1054); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1207: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 't') ADVANCE(845); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 't') ADVANCE(839); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1208: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 't') ADVANCE(1240); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 't') ADVANCE(846); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1209: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 't') ADVANCE(850); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 't') ADVANCE(1241); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1210: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 't') ADVANCE(826); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 't') ADVANCE(851); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1211: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 't') ADVANCE(1010); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 't') ADVANCE(827); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1212: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 't') ADVANCE(866); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 't') ADVANCE(1011); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1213: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 't') ADVANCE(1014); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 't') ADVANCE(867); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1214: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 't') ADVANCE(1247); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 't') ADVANCE(1015); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1215: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 't') ADVANCE(1256); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 't') ADVANCE(1248); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1216: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 't') ADVANCE(1055); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 't') ADVANCE(1257); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1217: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 't') ADVANCE(1031); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 't') ADVANCE(1056); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1218: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 't') ADVANCE(1089); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 't') ADVANCE(1032); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1219: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if (lookahead == 't') ADVANCE(1090); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1220: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'u') ADVANCE(1174); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 't') ADVANCE(1091); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1221: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'u') ADVANCE(1067); - if (lookahead == 'y') ADVANCE(2419); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'u') ADVANCE(1175); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1222: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'u') ADVANCE(1067); - if (lookahead == 'y') ADVANCE(1248); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'u') ADVANCE(1068); + if (lookahead == 'y') ADVANCE(2420); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1223: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'u') ADVANCE(1177); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'u') ADVANCE(1068); + if (lookahead == 'y') ADVANCE(1249); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1224: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'u') ADVANCE(1217); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'u') ADVANCE(1178); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1225: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'u') ADVANCE(1073); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'u') ADVANCE(1218); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1226: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'u') ADVANCE(1095); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'u') ADVANCE(1074); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1227: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'u') ADVANCE(1135); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'u') ADVANCE(1096); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1228: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'u') ADVANCE(1189); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'u') ADVANCE(1136); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1229: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if (lookahead == 'u') ADVANCE(1190); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1230: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'u') ADVANCE(1137); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'u') ADVANCE(1191); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1231: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'v') ADVANCE(1084); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'u') ADVANCE(1138); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1232: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'v') ADVANCE(1099); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'v') ADVANCE(1085); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1233: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'y') ADVANCE(2447); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'v') ADVANCE(1100); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1234: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'y') ADVANCE(1263); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'y') ADVANCE(2448); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1235: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1239); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'y') ADVANCE(1264); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1236: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2689); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1240); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1237: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1700); + lookahead == 'f') ADVANCE(2690); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1711); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1710); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1238: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1236); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1701); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1712); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1711); END_STATE(); case 1239: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2707); + lookahead == 'n') ADVANCE(1237); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1240: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2708); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2491); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1241: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1241); + lookahead == '@') ADVANCE(1559); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(2492); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1242: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1693); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1692); + lookahead == '@') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1242); END_STATE(); case 1243: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1666); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1665); + lookahead == '@') ADVANCE(1694); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1693); END_STATE(); case 1244: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1669); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1668); + lookahead == '@') ADVANCE(1667); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1666); END_STATE(); case 1245: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1589); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1588); + lookahead == '@') ADVANCE(1670); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1669); END_STATE(); case 1246: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1654); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1653); + lookahead == '@') ADVANCE(1590); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1589); END_STATE(); case 1247: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1618); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1617); + lookahead == '@') ADVANCE(1655); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1654); END_STATE(); case 1248: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1675); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1674); + lookahead == '@') ADVANCE(1619); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1618); END_STATE(); case 1249: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1595); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1594); + lookahead == '@') ADVANCE(1676); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1675); END_STATE(); case 1250: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1672); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1671); + lookahead == '@') ADVANCE(1596); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1595); END_STATE(); case 1251: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1657); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1656); + lookahead == '@') ADVANCE(1673); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1672); END_STATE(); case 1252: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1714); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1713); + lookahead == '@') ADVANCE(1658); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1657); END_STATE(); case 1253: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1592); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1591); + lookahead == '@') ADVANCE(1715); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1714); END_STATE(); case 1254: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1684); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1683); + lookahead == '@') ADVANCE(1593); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1592); END_STATE(); case 1255: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1678); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1677); + lookahead == '@') ADVANCE(1685); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1684); END_STATE(); case 1256: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1621); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1620); + lookahead == '@') ADVANCE(1679); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1678); END_STATE(); case 1257: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1663); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1662); + lookahead == '@') ADVANCE(1622); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1621); END_STATE(); case 1258: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1681); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1680); + lookahead == '@') ADVANCE(1664); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1663); END_STATE(); case 1259: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1660); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1659); + lookahead == '@') ADVANCE(1682); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1681); END_STATE(); case 1260: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1600); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1599); + lookahead == '@') ADVANCE(1661); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1660); END_STATE(); case 1261: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1603); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1602); + lookahead == '@') ADVANCE(1601); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1600); END_STATE(); case 1262: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1690); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1689); + lookahead == '@') ADVANCE(1604); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1603); END_STATE(); case 1263: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1648); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1647); + lookahead == '@') ADVANCE(1691); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1690); END_STATE(); case 1264: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1687); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1686); + lookahead == '@') ADVANCE(1649); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1648); END_STATE(); case 1265: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2811); + if (lookahead == '=') ADVANCE(2812); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1651); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1650); + lookahead == '@') ADVANCE(1688); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1687); END_STATE(); case 1266: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(2478); - if (lookahead == '~') ADVANCE(2489); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '=') ADVANCE(2812); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1652); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1651); END_STATE(); case 1267: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(2850); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '=') ADVANCE(2479); + if (lookahead == '~') ADVANCE(2490); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1268: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(2845); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '>') ADVANCE(2851); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1269: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(2835); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '>') ADVANCE(2846); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1270: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(2840); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '>') ADVANCE(2836); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1271: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '>') ADVANCE(2841); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); + END_STATE(); + case 1272: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); ADVANCE_MAP( - 'I', 1539, - '_', 1293, - 'i', 1539, - 'l', 1492, - 'r', 1476, - 'x', 1446, - '+', 1293, - '-', 1293, - 'B', 2714, - 'b', 2714, + 'I', 1540, + '_', 1294, + 'i', 1540, + 'l', 1493, + 'r', 1477, + 'x', 1447, + '+', 1294, + '-', 1294, + 'B', 2715, + 'b', 2715, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); - case 1272: + case 1273: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(1539); - if (lookahead == '_') ADVANCE(1293); - if (lookahead == 'i') ADVANCE(1313); + if (lookahead == 'I') ADVANCE(1540); + if (lookahead == '_') ADVANCE(1294); + if (lookahead == 'i') ADVANCE(1314); if (lookahead == '+' || - lookahead == '-') ADVANCE(1293); + lookahead == '-') ADVANCE(1294); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + lookahead == 'b') ADVANCE(2715); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); - case 1273: + case 1274: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); ADVANCE_MAP( - 'I', 1539, - 'a', 1398, - 'i', 1421, - 'o', 1328, - 's', 2721, - 'u', 1510, - 'B', 2714, - 'b', 2714, + 'I', 1540, + 'a', 1399, + 'i', 1422, + 'o', 1329, + 's', 2722, + 'u', 1511, + 'B', 2715, + 'b', 2715, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); - END_STATE(); - case 1274: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(1539); - if (lookahead == 'i') ADVANCE(1539); - if (lookahead == 'l') ADVANCE(1492); - if (lookahead == 'r') ADVANCE(1476); - if (lookahead == 'x') ADVANCE(1446); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1275: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(1539); - if (lookahead == 'i') ADVANCE(1539); - if (lookahead == 'r') ADVANCE(1520); + if (lookahead == 'I') ADVANCE(1540); + if (lookahead == 'i') ADVANCE(1540); + if (lookahead == 'l') ADVANCE(1493); + if (lookahead == 'r') ADVANCE(1477); + if (lookahead == 'x') ADVANCE(1447); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1276: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(1539); - if (lookahead == 'i') ADVANCE(1539); + if (lookahead == 'I') ADVANCE(1540); + if (lookahead == 'i') ADVANCE(1540); + if (lookahead == 'r') ADVANCE(1521); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1277: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(1539); - if (lookahead == 'i') ADVANCE(1313); + if (lookahead == 'I') ADVANCE(1540); + if (lookahead == 'i') ADVANCE(1540); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1278: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(1540); - if (lookahead == 'f') ADVANCE(2390); - if (lookahead == 'n') ADVANCE(2365); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'I') ADVANCE(1540); + if (lookahead == 'i') ADVANCE(1314); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1279: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(1540); - if (lookahead == 'f') ADVANCE(2390); - if (lookahead == 'n') ADVANCE(1541); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'N') ADVANCE(1541); + if (lookahead == 'f') ADVANCE(2391); + if (lookahead == 'n') ADVANCE(2366); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1280: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(1542); - if (lookahead == 'f') ADVANCE(1561); - if (lookahead == 'n') ADVANCE(1541); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'N') ADVANCE(1541); + if (lookahead == 'f') ADVANCE(2391); + if (lookahead == 'n') ADVANCE(1542); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1281: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1281); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2683); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'N') ADVANCE(1543); + if (lookahead == 'f') ADVANCE(1562); + if (lookahead == 'n') ADVANCE(1542); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1282: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(1282); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2684); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1283: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1284); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1284); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2674); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '_') ADVANCE(1283); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2677); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1284: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1284); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2674); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '_') ADVANCE(1285); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1285); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1285: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(1285); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1286: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(1286); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1287: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(1287); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2597); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1288: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1289); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1289); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2596); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '_') ADVANCE(1288); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2598); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1289: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1289); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2596); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '_') ADVANCE(1290); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1290); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2597); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1290: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(1290); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2597); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1291: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1293); - if (lookahead == 'l') ADVANCE(1485); - if (lookahead == 'r') ADVANCE(1474); - if (lookahead == 'x') ADVANCE(1445); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '_') ADVANCE(1291); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1292: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1293); + if (lookahead == '_') ADVANCE(1294); + if (lookahead == 'l') ADVANCE(1486); + if (lookahead == 'r') ADVANCE(1475); + if (lookahead == 'x') ADVANCE(1446); if (lookahead == '+' || - lookahead == '-') ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + lookahead == '-') ADVANCE(1294); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1293: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(1293); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '_') ADVANCE(1294); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1294); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1294: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1413); - if (lookahead == 'o') ADVANCE(1449); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '_') ADVANCE(1294); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1295: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1413); - if (lookahead == 'o') ADVANCE(1465); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'a') ADVANCE(1414); + if (lookahead == 'o') ADVANCE(1450); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1296: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1396); - if (lookahead == 'o') ADVANCE(1322); - if (lookahead == 'u') ADVANCE(1498); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'a') ADVANCE(1414); + if (lookahead == 'o') ADVANCE(1466); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1297: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1396); - if (lookahead == 'o') ADVANCE(1325); - if (lookahead == 'u') ADVANCE(1498); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'a') ADVANCE(1397); + if (lookahead == 'o') ADVANCE(1323); + if (lookahead == 'u') ADVANCE(1499); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1298: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1395); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'a') ADVANCE(1397); + if (lookahead == 'o') ADVANCE(1326); + if (lookahead == 'u') ADVANCE(1499); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1299: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1534); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'a') ADVANCE(1396); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1300: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1477); - if (lookahead == 'i') ADVANCE(1326); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'a') ADVANCE(1535); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1301: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1496); - if (lookahead == 'o') ADVANCE(1417); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'a') ADVANCE(1478); + if (lookahead == 'i') ADVANCE(1327); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1302: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1423); - if (lookahead == 'o') ADVANCE(1452); - if (lookahead == 's') ADVANCE(1372); - if (lookahead == 'x') ADVANCE(1436); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'a') ADVANCE(1497); + if (lookahead == 'o') ADVANCE(1418); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1303: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1397); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'a') ADVANCE(1424); + if (lookahead == 'o') ADVANCE(1453); + if (lookahead == 's') ADVANCE(1373); + if (lookahead == 'x') ADVANCE(1437); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1304: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1536); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'a') ADVANCE(1398); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1305: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1535); - if (lookahead == 'e') ADVANCE(1367); - if (lookahead == 'o') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'a') ADVANCE(1537); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1306: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1478); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'a') ADVANCE(1536); + if (lookahead == 'e') ADVANCE(1368); + if (lookahead == 'o') ADVANCE(1561); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1307: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'a') ADVANCE(1479); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1308: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1462); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'a') ADVANCE(1480); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1309: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1489); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'a') ADVANCE(1463); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1310: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1398); - if (lookahead == 'o') ADVANCE(1328); - if (lookahead == 'u') ADVANCE(1510); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'a') ADVANCE(1490); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1311: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1512); - if (lookahead == 'o') ADVANCE(1426); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'a') ADVANCE(1399); + if (lookahead == 'o') ADVANCE(1329); + if (lookahead == 'u') ADVANCE(1511); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1312: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1415); - if (lookahead == 'o') ADVANCE(1465); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'a') ADVANCE(1513); + if (lookahead == 'o') ADVANCE(1427); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1313: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'a') ADVANCE(1416); + if (lookahead == 'o') ADVANCE(1466); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1314: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2721); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1315: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1370); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'c') ADVANCE(2722); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1316: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'c') ADVANCE(1371); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1317: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1376); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'c') ADVANCE(1372); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1318: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1337); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'c') ADVANCE(1377); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1319: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1351); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'c') ADVANCE(1338); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1320: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1377); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'c') ADVANCE(1352); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1321: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2460); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'c') ADVANCE(1378); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1322: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2503); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'd') ADVANCE(2461); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1323: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2522); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'd') ADVANCE(2504); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1324: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1483); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'd') ADVANCE(2523); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1325: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1525); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'd') ADVANCE(1484); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1326: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1333); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'd') ADVANCE(1526); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1327: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1350); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'd') ADVANCE(1334); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1328: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(1529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'd') ADVANCE(1351); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1329: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1366); - if (lookahead == 'o') ADVANCE(2385); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'd') ADVANCE(1530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1330: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1368); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(1367); + if (lookahead == 'o') ADVANCE(2386); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1331: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2288); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(1369); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1332: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2396); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(2289); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1333: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2440); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(2397); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1334: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2376); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(2441); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1335: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2380); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(2377); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1336: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2282); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(2381); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1337: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2433); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(2283); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1338: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2356); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(2434); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1339: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2621); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(2357); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1340: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2629); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(2622); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1341: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1367); - if (lookahead == 'o') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(2630); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1342: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1268); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(1368); + if (lookahead == 'o') ADVANCE(1561); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1343: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1572); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(1269); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1344: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1497); - if (lookahead == 'o') ADVANCE(1431); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(1573); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1345: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1298); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(1498); + if (lookahead == 'o') ADVANCE(1432); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1346: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1314); - if (lookahead == 'o') ADVANCE(1526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(1299); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1347: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1578); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(1315); + if (lookahead == 'o') ADVANCE(1527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1348: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1460); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(1579); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1349: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1303); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(1461); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1350: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1013); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(1304); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1351: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1017); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(1014); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1352: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1458); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(1018); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1353: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1567); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(1459); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1354: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'e') ADVANCE(1568); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1355: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1467); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(1569); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1356: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1570); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(1468); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1357: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1454); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(1571); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1358: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1580); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(1455); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1359: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1463); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(1581); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1360: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1469); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(1464); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1361: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1582); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(1470); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1362: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1585); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(1583); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1363: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1464); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(1586); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1364: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1506); - if (lookahead == 'o') ADVANCE(1433); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(1465); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1365: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1369); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(1507); + if (lookahead == 'o') ADVANCE(1434); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1366: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(2269); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'e') ADVANCE(1370); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1367: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(1563); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'f') ADVANCE(2270); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1368: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(1386); - if (lookahead == 't') ADVANCE(1521); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'f') ADVANCE(1564); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1369: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(1394); - if (lookahead == 't') ADVANCE(1527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'g') ADVANCE(1387); + if (lookahead == 't') ADVANCE(1522); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1370: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2425); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'g') ADVANCE(1395); + if (lookahead == 't') ADVANCE(1528); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1371: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2401); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'h') ADVANCE(2426); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1372: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1401); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'h') ADVANCE(2402); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1373: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2474); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'h') ADVANCE(1402); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1374: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2472); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'h') ADVANCE(2475); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1375: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1385); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'h') ADVANCE(2473); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1376: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1575); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'h') ADVANCE(1386); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1377: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1579); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'h') ADVANCE(1576); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1378: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1307); - if (lookahead == 'i') ADVANCE(1419); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'h') ADVANCE(1580); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1379: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1392); - if (lookahead == 'k') ADVANCE(2721); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'h') ADVANCE(1308); + if (lookahead == 'i') ADVANCE(1420); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1380: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1392); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'h') ADVANCE(1393); + if (lookahead == 'k') ADVANCE(2722); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1381: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1503); - if (lookahead == 'r') ADVANCE(1345); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'h') ADVANCE(1393); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1382: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1306); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'i') ADVANCE(1504); + if (lookahead == 'r') ADVANCE(1346); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1383: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1326); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'i') ADVANCE(1307); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1384: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1422); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'i') ADVANCE(1327); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1385: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1408); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'i') ADVANCE(1423); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1386: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1487); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'i') ADVANCE(1409); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1387: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1507); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'i') ADVANCE(1488); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1388: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'i') ADVANCE(1508); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1389: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1327); - if (lookahead == 'r') ADVANCE(2721); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'i') ADVANCE(1509); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1390: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1327); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'i') ADVANCE(1328); + if (lookahead == 'r') ADVANCE(2722); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1391: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1309); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'i') ADVANCE(1328); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1392: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1410); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'i') ADVANCE(1310); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1393: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1427); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'i') ADVANCE(1411); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1394: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1495); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'i') ADVANCE(1428); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1395: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(2352); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'i') ADVANCE(1496); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1396: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(1334); - if (lookahead == 't') ADVANCE(1316); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'k') ADVANCE(2353); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1397: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(1574); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'k') ADVANCE(1335); + if (lookahead == 't') ADVANCE(1317); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1398: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(1356); - if (lookahead == 't') ADVANCE(1320); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'k') ADVANCE(1575); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1399: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1382); - if (lookahead == 'n') ADVANCE(1321); - if (lookahead == 's') ADVANCE(2453); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'k') ADVANCE(1357); + if (lookahead == 't') ADVANCE(1321); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1400: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1382); - if (lookahead == 's') ADVANCE(2453); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'l') ADVANCE(1383); + if (lookahead == 'n') ADVANCE(1322); + if (lookahead == 's') ADVANCE(2454); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1401: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2518); - if (lookahead == 'r') ADVANCE(2520); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'l') ADVANCE(1383); + if (lookahead == 's') ADVANCE(2454); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1402: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2612); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'l') ADVANCE(2519); + if (lookahead == 'r') ADVANCE(2521); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1403: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1571); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'l') ADVANCE(2613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1404: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1403); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'l') ADVANCE(1572); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1405: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1299); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'l') ADVANCE(1404); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1406: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1402); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'l') ADVANCE(1300); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1407: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1304); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'l') ADVANCE(1403); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1408: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1335); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'l') ADVANCE(1305); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1409: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'l') ADVANCE(1336); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1410: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1358); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'l') ADVANCE(1337); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1411: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1361); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'l') ADVANCE(1359); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1412: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1485); - if (lookahead == 'r') ADVANCE(1474); - if (lookahead == 'x') ADVANCE(1445); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'l') ADVANCE(1362); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1413: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1488); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'l') ADVANCE(1486); + if (lookahead == 'r') ADVANCE(1475); + if (lookahead == 'x') ADVANCE(1446); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1414: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1492); - if (lookahead == 'r') ADVANCE(1476); - if (lookahead == 'x') ADVANCE(1446); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'l') ADVANCE(1489); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1415: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'l') ADVANCE(1493); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'r') ADVANCE(1477); + if (lookahead == 'x') ADVANCE(1447); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1416: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1391); - if (lookahead == 's') ADVANCE(1559); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'l') ADVANCE(1494); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1417: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1486); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'l') ADVANCE(1392); + if (lookahead == 's') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1418: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2277); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'n') ADVANCE(1487); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1419: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2466); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'n') ADVANCE(2278); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1420: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2429); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'n') ADVANCE(2467); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1421: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2721); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'n') ADVANCE(2430); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1422: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1523); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'n') ADVANCE(2722); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1423: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1323); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'n') ADVANCE(1524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1424: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1581); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'n') ADVANCE(1324); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1425: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1583); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'n') ADVANCE(1582); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1426: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1491); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'n') ADVANCE(1584); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1427: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'n') ADVANCE(1492); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1428: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1518); - if (lookahead == 't') ADVANCE(1308); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'n') ADVANCE(1529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1429: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1518); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'o') ADVANCE(1519); + if (lookahead == 't') ADVANCE(1309); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1430: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1267); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'o') ADVANCE(1519); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1431: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1443); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'o') ADVANCE(1268); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1432: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1522); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'o') ADVANCE(1444); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1433: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1444); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'o') ADVANCE(1523); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1434: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1450); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'o') ADVANCE(1445); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1435: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'o') ADVANCE(1451); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1436: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1453); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'o') ADVANCE(1452); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1437: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1502); - if (lookahead == 'u') ADVANCE(1406); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1545); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'o') ADVANCE(1454); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1438: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1468); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'o') ADVANCE(1503); + if (lookahead == 'u') ADVANCE(1407); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1546); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1439: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1475); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'o') ADVANCE(1469); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1440: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1504); - if (lookahead == 'u') ADVANCE(1404); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1545); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'o') ADVANCE(1476); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1441: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1466); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'o') ADVANCE(1505); + if (lookahead == 'u') ADVANCE(1405); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1546); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1442: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'o') ADVANCE(1467); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1443: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(2371); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'o') ADVANCE(1527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1444: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1569); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'p') ADVANCE(2372); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1445: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1441); - if (lookahead == 't') ADVANCE(1352); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'p') ADVANCE(1570); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1446: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1439); - if (lookahead == 't') ADVANCE(1359); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'p') ADVANCE(1442); + if (lookahead == 't') ADVANCE(1353); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1447: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1519); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'p') ADVANCE(1440); + if (lookahead == 't') ADVANCE(1360); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1448: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(861); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'r') ADVANCE(1520); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1449: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2360); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'r') ADVANCE(862); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1450: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2462); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'r') ADVANCE(2361); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1451: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2308); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'r') ADVANCE(2463); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1452: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'r') ADVANCE(2309); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1453: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'r') ADVANCE(2527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1454: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2791); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'r') ADVANCE(2525); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1455: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1345); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'r') ADVANCE(2792); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1456: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'r') ADVANCE(1346); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1457: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1318); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'r') ADVANCE(1525); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1458: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1418); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'r') ADVANCE(1319); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1459: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1270); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'r') ADVANCE(1419); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1460: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1405); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'r') ADVANCE(1271); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1461: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1420); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'r') ADVANCE(1406); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1462: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1515); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'r') ADVANCE(1421); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1463: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1424); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'r') ADVANCE(1516); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1464: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1407); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'r') ADVANCE(1425); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1465: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1564); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'r') ADVANCE(1408); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1466: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1501); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'r') ADVANCE(1565); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1467: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1459); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'r') ADVANCE(1502); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1468: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1577); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'r') ADVANCE(1460); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1469: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1586); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'r') ADVANCE(1578); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1470: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1349); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'r') ADVANCE(1587); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1471: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1520); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'r') ADVANCE(1350); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1472: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1319); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'r') ADVANCE(1521); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1473: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1425); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'r') ADVANCE(1320); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1474: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1435); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'r') ADVANCE(1426); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1475: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1509); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'r') ADVANCE(1436); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1476: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1438); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'r') ADVANCE(1510); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1477: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2468); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'r') ADVANCE(1439); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1478: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(832); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 's') ADVANCE(2469); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1479: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2470); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 's') ADVANCE(833); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1480: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2721); - if (lookahead == 'u') ADVANCE(1404); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1547); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 's') ADVANCE(2471); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1481: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2721); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 's') ADVANCE(2722); + if (lookahead == 'u') ADVANCE(1405); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1548); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1482: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2723); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 's') ADVANCE(2722); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1483: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1008); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 's') ADVANCE(2724); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1484: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1331); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 's') ADVANCE(1009); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1485: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 's') ADVANCE(1332); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1486: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1500); - if (lookahead == 't') ADVANCE(1384); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 's') ADVANCE(1333); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1487: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1513); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 's') ADVANCE(1501); + if (lookahead == 't') ADVANCE(1385); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1488: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1347); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 's') ADVANCE(1514); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1489: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1573); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 's') ADVANCE(1348); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1490: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1353); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 's') ADVANCE(1574); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1491: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1511); - if (lookahead == 't') ADVANCE(1393); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 's') ADVANCE(1354); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1492: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1354); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 's') ADVANCE(1512); + if (lookahead == 't') ADVANCE(1394); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1493: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1340); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 's') ADVANCE(1355); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1494: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1018); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 's') ADVANCE(1341); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1495: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1514); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 's') ADVANCE(1019); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1496: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1315); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 's') ADVANCE(1515); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1497: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(839); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 't') ADVANCE(1316); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1498: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(846); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 't') ADVANCE(840); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1499: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(865); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 't') ADVANCE(847); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1500: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(851); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 't') ADVANCE(866); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1501: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(827); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 't') ADVANCE(852); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1502: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1549); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 't') ADVANCE(828); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1503: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1006); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 't') ADVANCE(1550); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1504: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 't') ADVANCE(1007); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1505: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1269); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 't') ADVANCE(1008); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1506: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1011); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 't') ADVANCE(1270); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1507: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1373); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 't') ADVANCE(1012); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1508: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 't') ADVANCE(1374); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1509: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 't') ADVANCE(1375); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1510: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1565); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 't') ADVANCE(1016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1511: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1576); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 't') ADVANCE(1566); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1512: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1317); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 't') ADVANCE(1577); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1513: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1357); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 't') ADVANCE(1318); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1514: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1360); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 't') ADVANCE(1358); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1515: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1494); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 't') ADVANCE(1361); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1516: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1404); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1545); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 't') ADVANCE(1495); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1517: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1404); + if (lookahead == 'u') ADVANCE(1405); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1547); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + lookahead == 'a') ADVANCE(1546); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1518: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1457); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'u') ADVANCE(1405); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1548); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1519: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1343); - if (lookahead == 'y') ADVANCE(2420); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'u') ADVANCE(1458); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1520: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1343); - if (lookahead == 'y') ADVANCE(1566); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'u') ADVANCE(1344); + if (lookahead == 'y') ADVANCE(2421); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1521: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1461); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'u') ADVANCE(1344); + if (lookahead == 'y') ADVANCE(1567); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1522: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1505); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'u') ADVANCE(1462); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1523: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1338); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'u') ADVANCE(1506); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1524: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'u') ADVANCE(1339); - if (lookahead == 'y') ADVANCE(1566); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1525: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1409); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'u') ADVANCE(1340); + if (lookahead == 'y') ADVANCE(1567); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1526: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1472); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'u') ADVANCE(1410); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1527: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'u') ADVANCE(1473); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1528: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1362); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'u') ADVANCE(1474); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1529: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(1411); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'u') ADVANCE(1363); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1530: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'v') ADVANCE(1348); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'u') ADVANCE(1412); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1531: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'v') ADVANCE(1363); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'v') ADVANCE(1349); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1532: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(1387); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'v') ADVANCE(1364); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1533: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'w') ADVANCE(1388); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1534: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(2448); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'w') ADVANCE(1389); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1535: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(2721); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'y') ADVANCE(2449); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1536: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(1584); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'y') ADVANCE(2722); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1537: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1545); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'y') ADVANCE(1585); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1538: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1547); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + lookahead == 'a') ADVANCE(1546); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1539: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1548); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1540: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2690); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1541: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1702); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1711); + lookahead == 'f') ADVANCE(2691); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1542: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1543); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + lookahead == 'f') ADVANCE(1703); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1712); END_STATE(); case 1543: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1745); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1751); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1544); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1544: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1540); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1746); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1752); END_STATE(); case 1545: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2708); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + lookahead == 'n') ADVANCE(1541); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1546: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1542); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + lookahead == 'n') ADVANCE(2709); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1547: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1562); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + lookahead == 'n') ADVANCE(1543); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1548: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(2685); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1563); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1549: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2491); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(2686); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1550: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2686); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(2492); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1551: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1009); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(2687); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1552: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2748); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1010); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1553: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1028); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2749); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1554: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1551); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1029); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1555: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1552); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1556: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1553); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1557: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2684); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1554); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1558: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1558); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2685); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1559: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1693); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1559); END_STATE(); case 1560: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1666); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1694); END_STATE(); case 1561: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1669); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1667); END_STATE(); case 1562: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1764); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1670); END_STATE(); case 1563: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1589); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1765); END_STATE(); case 1564: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1654); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1590); END_STATE(); case 1565: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1618); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1655); END_STATE(); case 1566: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1619); END_STATE(); case 1567: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1595); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1676); END_STATE(); case 1568: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1596); END_STATE(); case 1569: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1673); END_STATE(); case 1570: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1714); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1658); END_STATE(); case 1571: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1736); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1715); END_STATE(); case 1572: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1730); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1737); END_STATE(); case 1573: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1592); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1731); END_STATE(); case 1574: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1684); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1593); END_STATE(); case 1575: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1678); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1685); END_STATE(); case 1576: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1621); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1679); END_STATE(); case 1577: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1663); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1622); END_STATE(); case 1578: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1733); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1664); END_STATE(); case 1579: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1734); END_STATE(); case 1580: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1660); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1682); END_STATE(); case 1581: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1600); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1661); END_STATE(); case 1582: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1603); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1601); END_STATE(); case 1583: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1690); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1604); END_STATE(); case 1584: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1691); END_STATE(); case 1585: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1687); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1649); END_STATE(); case 1586: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1651); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1688); END_STATE(); case 1587: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ',') ADVANCE(1589); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1587); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1652); END_STATE(); case 1588: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1589); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1588); + if (lookahead == ',') ADVANCE(1590); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1588); END_STATE(); case 1589: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1589); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1590); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1589); END_STATE(); case 1590: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == ',') ADVANCE(1592); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1590); END_STATE(); case 1591: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1592); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1591); + if (lookahead == ',') ADVANCE(1593); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1591); END_STATE(); case 1592: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1592); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1593); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1592); END_STATE(); case 1593: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == ',') ADVANCE(1595); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1593); END_STATE(); case 1594: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1595); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1594); + if (lookahead == ',') ADVANCE(1596); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1594); END_STATE(); case 1595: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1595); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1596); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1595); END_STATE(); case 1596: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); - if (lookahead == ',') ADVANCE(1597); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1596); END_STATE(); case 1597: ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); + if (lookahead == ',') ADVANCE(1598); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1597); END_STATE(); case 1598: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == ',') ADVANCE(1600); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1598); END_STATE(); case 1599: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1600); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1599); + if (lookahead == ',') ADVANCE(1601); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1599); END_STATE(); case 1600: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1600); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1601); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1600); END_STATE(); case 1601: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); - if (lookahead == ',') ADVANCE(1603); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1601); END_STATE(); case 1602: ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1603); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1602); + if (lookahead == ',') ADVANCE(1604); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1602); END_STATE(); case 1603: ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1603); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1604); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1603); END_STATE(); case 1604: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1615); - if (lookahead == 'e') ADVANCE(1605); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1607); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1604); END_STATE(); case 1605: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1615); - if (lookahead == 'n') ADVANCE(1606); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1607); + if (lookahead == ',') ADVANCE(1616); + if (lookahead == 'e') ADVANCE(1606); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1608); END_STATE(); case 1606: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1615); - if (lookahead == 'v') ADVANCE(841); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1607); + if (lookahead == ',') ADVANCE(1616); + if (lookahead == 'n') ADVANCE(1607); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1608); END_STATE(); case 1607: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(1615); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1607); + if (lookahead == ',') ADVANCE(1616); + if (lookahead == 'v') ADVANCE(842); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1608); END_STATE(); case 1608: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'e') ADVANCE(1610); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + if (lookahead == ',') ADVANCE(1616); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1608); END_STATE(); case 1609: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); if (lookahead == 'e') ADVANCE(1611); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1616); END_STATE(); case 1610: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'n') ADVANCE(1613); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + if (lookahead == 'e') ADVANCE(1612); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1616); END_STATE(); case 1611: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'n') ADVANCE(1612); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + if (lookahead == 'n') ADVANCE(1614); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1616); END_STATE(); case 1612: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'v') ADVANCE(1615); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + if (lookahead == 'n') ADVANCE(1613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1616); END_STATE(); case 1613: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'v') ADVANCE(842); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + if (lookahead == 'v') ADVANCE(1616); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1616); END_STATE(); case 1614: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1614); + if (lookahead == 'v') ADVANCE(843); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1616); END_STATE(); case 1615: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1616); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1615); END_STATE(); case 1616: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if (lookahead == ',') ADVANCE(1618); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1616); END_STATE(); case 1617: ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1618); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1617); + if (lookahead == ',') ADVANCE(1619); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1617); END_STATE(); case 1618: ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1618); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1619); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1618); END_STATE(); case 1619: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if (lookahead == ',') ADVANCE(1621); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1619); END_STATE(); case 1620: ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1621); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1620); + if (lookahead == ',') ADVANCE(1622); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1620); END_STATE(); case 1621: ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1621); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1622); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1621); END_STATE(); case 1622: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(1633); - if (lookahead == 'e') ADVANCE(1623); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1625); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1622); END_STATE(); case 1623: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(1633); - if (lookahead == 'n') ADVANCE(1624); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1625); + if (lookahead == ',') ADVANCE(1634); + if (lookahead == 'e') ADVANCE(1624); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1626); END_STATE(); case 1624: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(1633); - if (lookahead == 'v') ADVANCE(2443); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1625); + if (lookahead == ',') ADVANCE(1634); + if (lookahead == 'n') ADVANCE(1625); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1626); END_STATE(); case 1625: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(1633); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1625); + if (lookahead == ',') ADVANCE(1634); + if (lookahead == 'v') ADVANCE(2444); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1626); END_STATE(); case 1626: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'e') ADVANCE(1628); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1633); + if (lookahead == ',') ADVANCE(1634); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1626); END_STATE(); case 1627: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); if (lookahead == 'e') ADVANCE(1629); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1633); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1634); END_STATE(); case 1628: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'n') ADVANCE(1631); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1633); + if (lookahead == 'e') ADVANCE(1630); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1634); END_STATE(); case 1629: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'n') ADVANCE(1630); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1633); + if (lookahead == 'n') ADVANCE(1632); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1634); END_STATE(); case 1630: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'v') ADVANCE(1633); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1633); + if (lookahead == 'n') ADVANCE(1631); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1634); END_STATE(); case 1631: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'v') ADVANCE(2444); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1633); + if (lookahead == 'v') ADVANCE(1634); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1634); END_STATE(); case 1632: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1633); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1632); + if (lookahead == 'v') ADVANCE(2445); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1634); END_STATE(); case 1633: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1633); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1634); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1633); END_STATE(); case 1634: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(1645); - if (lookahead == 'e') ADVANCE(1635); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1637); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1634); END_STATE(); case 1635: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(1645); - if (lookahead == 'n') ADVANCE(1636); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1637); + if (lookahead == ',') ADVANCE(1646); + if (lookahead == 'e') ADVANCE(1636); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1638); END_STATE(); case 1636: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(1645); - if (lookahead == 'v') ADVANCE(2435); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1637); + if (lookahead == ',') ADVANCE(1646); + if (lookahead == 'n') ADVANCE(1637); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1638); END_STATE(); case 1637: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(1645); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1637); + if (lookahead == ',') ADVANCE(1646); + if (lookahead == 'v') ADVANCE(2436); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1638); END_STATE(); case 1638: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'e') ADVANCE(1640); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1645); + if (lookahead == ',') ADVANCE(1646); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1638); END_STATE(); case 1639: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); if (lookahead == 'e') ADVANCE(1641); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1646); END_STATE(); case 1640: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'n') ADVANCE(1643); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1645); + if (lookahead == 'e') ADVANCE(1642); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1646); END_STATE(); case 1641: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'n') ADVANCE(1642); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1645); + if (lookahead == 'n') ADVANCE(1644); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1646); END_STATE(); case 1642: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'v') ADVANCE(1645); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1645); + if (lookahead == 'n') ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1646); END_STATE(); case 1643: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'v') ADVANCE(2436); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1645); + if (lookahead == 'v') ADVANCE(1646); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1646); END_STATE(); case 1644: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1645); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1644); + if (lookahead == 'v') ADVANCE(2437); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1646); END_STATE(); case 1645: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1645); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1646); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1645); END_STATE(); case 1646: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); - if (lookahead == ',') ADVANCE(1648); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1646); END_STATE(); case 1647: ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1648); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1647); + if (lookahead == ',') ADVANCE(1649); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); END_STATE(); case 1648: ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1648); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1649); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1648); END_STATE(); case 1649: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); - if (lookahead == ',') ADVANCE(1651); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1649); END_STATE(); case 1650: ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1651); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1650); + if (lookahead == ',') ADVANCE(1652); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1650); END_STATE(); case 1651: ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1651); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1652); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1651); END_STATE(); case 1652: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == ',') ADVANCE(1654); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1652); END_STATE(); case 1653: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1654); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1653); + if (lookahead == ',') ADVANCE(1655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1653); END_STATE(); case 1654: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1654); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1655); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1654); END_STATE(); case 1655: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); - if (lookahead == ',') ADVANCE(1657); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1655); END_STATE(); case 1656: ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1656); + if (lookahead == ',') ADVANCE(1658); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1656); END_STATE(); case 1657: ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1657); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1658); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1657); END_STATE(); case 1658: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); - if (lookahead == ',') ADVANCE(1660); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1658); END_STATE(); case 1659: ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1659); + if (lookahead == ',') ADVANCE(1661); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1659); END_STATE(); case 1660: ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1660); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1660); END_STATE(); case 1661: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); - if (lookahead == ',') ADVANCE(1663); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1661); END_STATE(); case 1662: ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1663); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1662); + if (lookahead == ',') ADVANCE(1664); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1662); END_STATE(); case 1663: ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1663); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1664); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1663); END_STATE(); case 1664: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); - if (lookahead == ',') ADVANCE(1666); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1664); END_STATE(); case 1665: ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1666); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1665); + if (lookahead == ',') ADVANCE(1667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1665); END_STATE(); case 1666: ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1666); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1667); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1666); END_STATE(); case 1667: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); - if (lookahead == ',') ADVANCE(1669); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1667); END_STATE(); case 1668: ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1669); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1668); + if (lookahead == ',') ADVANCE(1670); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1668); END_STATE(); case 1669: ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1669); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1670); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1669); END_STATE(); case 1670: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); - if (lookahead == ',') ADVANCE(1672); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1670); END_STATE(); case 1671: ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1672); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1671); + if (lookahead == ',') ADVANCE(1673); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1671); END_STATE(); case 1672: ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1672); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1673); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1672); END_STATE(); case 1673: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); - if (lookahead == ',') ADVANCE(1675); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1673); END_STATE(); case 1674: ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1675); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1674); + if (lookahead == ',') ADVANCE(1676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1674); END_STATE(); case 1675: ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1675); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1676); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1675); END_STATE(); case 1676: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); - if (lookahead == ',') ADVANCE(1678); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1676); END_STATE(); case 1677: ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1678); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1677); + if (lookahead == ',') ADVANCE(1679); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1677); END_STATE(); case 1678: ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1678); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1679); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1678); END_STATE(); case 1679: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); - if (lookahead == ',') ADVANCE(1681); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1679); END_STATE(); case 1680: ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1681); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1680); + if (lookahead == ',') ADVANCE(1682); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1680); END_STATE(); case 1681: ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1681); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1682); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1681); END_STATE(); case 1682: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); - if (lookahead == ',') ADVANCE(1684); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1682); END_STATE(); case 1683: ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1684); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1683); + if (lookahead == ',') ADVANCE(1685); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1683); END_STATE(); case 1684: ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1684); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1685); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1684); END_STATE(); case 1685: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); - if (lookahead == ',') ADVANCE(1687); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1685); END_STATE(); case 1686: ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1687); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1686); + if (lookahead == ',') ADVANCE(1688); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1686); END_STATE(); case 1687: ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1687); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1688); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1687); END_STATE(); case 1688: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); - if (lookahead == ',') ADVANCE(1690); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1688); END_STATE(); case 1689: ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1690); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1689); + if (lookahead == ',') ADVANCE(1691); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1689); END_STATE(); case 1690: ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1690); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1691); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1690); END_STATE(); case 1691: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); - if (lookahead == ',') ADVANCE(1693); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1691); END_STATE(); case 1692: ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1693); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1692); + if (lookahead == ',') ADVANCE(1694); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1692); END_STATE(); case 1693: ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1693); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1694); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1693); END_STATE(); case 1694: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(1711); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1696); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1699); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1694); END_STATE(); case 1695: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(1711); + if (lookahead == ',') ADVANCE(1712); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1697); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1699); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1700); END_STATE(); case 1696: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(1711); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1695); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1699); + if (lookahead == ',') ADVANCE(1712); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1698); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1700); END_STATE(); case 1697: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(1711); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1698); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1699); + if (lookahead == ',') ADVANCE(1712); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1696); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1700); END_STATE(); case 1698: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(1711); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1699); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1699); + if (lookahead == ',') ADVANCE(1712); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1699); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1700); END_STATE(); case 1699: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(1711); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1699); + if (lookahead == ',') ADVANCE(1712); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1700); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1700); END_STATE(); case 1700: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1704); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1711); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1710); + if (lookahead == ',') ADVANCE(1712); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1700); END_STATE(); case 1701: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1706); + lookahead == 'i') ADVANCE(1705); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1711); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1710); + lookahead == '@') ADVANCE(1712); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1711); END_STATE(); case 1702: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1705); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1711); + lookahead == 'i') ADVANCE(1707); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1712); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1711); END_STATE(); case 1703: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1707); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1711); + lookahead == 'i') ADVANCE(1706); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1712); END_STATE(); case 1704: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1701); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1711); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1710); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1708); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1712); END_STATE(); case 1705: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1703); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1711); + lookahead == 'n') ADVANCE(1702); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1712); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1711); END_STATE(); case 1706: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1709); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1711); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1710); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1704); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1712); END_STATE(); case 1707: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1708); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1711); + lookahead == 't') ADVANCE(1710); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1712); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1711); END_STATE(); case 1708: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1711); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1711); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1709); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1712); END_STATE(); case 1709: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1710); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1711); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1710); + lookahead == 'y') ADVANCE(1712); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1712); END_STATE(); case 1710: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1711); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1711); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1710); + lookahead == '@') ADVANCE(1712); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1711); END_STATE(); case 1711: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1711); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1712); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1711); END_STATE(); case 1712: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); - if (lookahead == ',') ADVANCE(1714); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1712); END_STATE(); case 1713: ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1714); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + if (lookahead == ',') ADVANCE(1715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); END_STATE(); case 1714: ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1714); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1714); END_STATE(); case 1715: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(1726); - if (lookahead == 'e') ADVANCE(1716); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1718); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1715); END_STATE(); case 1716: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(1726); - if (lookahead == 'n') ADVANCE(1717); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1718); + if (lookahead == ',') ADVANCE(1727); + if (lookahead == 'e') ADVANCE(1717); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1719); END_STATE(); case 1717: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(1726); - if (lookahead == 'v') ADVANCE(2271); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1718); + if (lookahead == ',') ADVANCE(1727); + if (lookahead == 'n') ADVANCE(1718); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1719); END_STATE(); case 1718: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(1726); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1718); + if (lookahead == ',') ADVANCE(1727); + if (lookahead == 'v') ADVANCE(2272); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1719); END_STATE(); case 1719: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'e') ADVANCE(1721); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1726); + if (lookahead == ',') ADVANCE(1727); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1719); END_STATE(); case 1720: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); if (lookahead == 'e') ADVANCE(1722); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1726); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1727); END_STATE(); case 1721: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'n') ADVANCE(1723); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1726); + if (lookahead == 'e') ADVANCE(1723); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1727); END_STATE(); case 1722: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); if (lookahead == 'n') ADVANCE(1724); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1726); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1727); END_STATE(); case 1723: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'v') ADVANCE(2272); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1726); + if (lookahead == 'n') ADVANCE(1725); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1727); END_STATE(); case 1724: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'v') ADVANCE(1727); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1726); + if (lookahead == 'v') ADVANCE(2273); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1727); END_STATE(); case 1725: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1726); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1725); + if (lookahead == 'v') ADVANCE(1728); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1727); END_STATE(); case 1726: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1726); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1727); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1726); END_STATE(); case 1727: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1597); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1727); END_STATE(); case 1728: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); - if (lookahead == ',') ADVANCE(1730); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1728); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1598); END_STATE(); case 1729: ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1730); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1729); + if (lookahead == ',') ADVANCE(1731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1729); END_STATE(); case 1730: ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1730); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1731); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1730); END_STATE(); case 1731: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(1733); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1731); END_STATE(); case 1732: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1733); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1732); + if (lookahead == ',') ADVANCE(1734); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1732); END_STATE(); case 1733: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1733); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1734); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1733); END_STATE(); case 1734: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == ',') ADVANCE(1736); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1734); END_STATE(); case 1735: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1736); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1735); + if (lookahead == ',') ADVANCE(1737); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1735); END_STATE(); case 1736: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1736); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1737); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1736); END_STATE(); case 1737: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == ',') ADVANCE(1751); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1739); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1741); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1737); END_STATE(); case 1738: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == ',') ADVANCE(1751); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1737); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1741); + if (lookahead == ',') ADVANCE(1752); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1740); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1742); END_STATE(); case 1739: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == ',') ADVANCE(1751); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1740); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1741); + if (lookahead == ',') ADVANCE(1752); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1742); END_STATE(); case 1740: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == ',') ADVANCE(1751); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1741); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1741); + if (lookahead == ',') ADVANCE(1752); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1741); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1742); END_STATE(); case 1741: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == ',') ADVANCE(1751); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1741); + if (lookahead == ',') ADVANCE(1752); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1742); END_STATE(); case 1742: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1746); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1751); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1750); + if (lookahead == ',') ADVANCE(1752); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1742); END_STATE(); case 1743: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1747); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1751); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1752); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1751); END_STATE(); case 1744: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1742); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1751); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1750); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1748); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1752); END_STATE(); case 1745: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1743); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1751); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1752); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1751); END_STATE(); case 1746: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1749); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1751); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1750); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1744); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1752); END_STATE(); case 1747: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1748); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1751); + lookahead == 't') ADVANCE(1750); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1752); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1751); END_STATE(); case 1748: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1751); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1751); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1749); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1752); END_STATE(); case 1749: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1750); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1751); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1750); + lookahead == 'y') ADVANCE(1752); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1752); END_STATE(); case 1750: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1751); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(1751); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1750); + lookahead == '@') ADVANCE(1752); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1751); END_STATE(); case 1751: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1751); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1752); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1751); END_STATE(); case 1752: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == ',') ADVANCE(1761); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1754); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1756); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1752); END_STATE(); case 1753: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == ',') ADVANCE(1761); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1752); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1756); + if (lookahead == ',') ADVANCE(1762); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1755); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1757); END_STATE(); case 1754: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == ',') ADVANCE(1761); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1755); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1756); + if (lookahead == ',') ADVANCE(1762); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1753); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1757); END_STATE(); case 1755: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == ',') ADVANCE(1761); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1756); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1756); + if (lookahead == ',') ADVANCE(1762); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1756); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1757); END_STATE(); case 1756: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == ',') ADVANCE(1761); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1756); + if (lookahead == ',') ADVANCE(1762); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1757); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1757); END_STATE(); case 1757: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1759); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1761); + if (lookahead == ',') ADVANCE(1762); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1757); END_STATE(); case 1758: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1757); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1761); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1760); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1762); END_STATE(); case 1759: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1760); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1761); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1758); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1762); END_STATE(); case 1760: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1761); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1761); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1761); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1762); END_STATE(); case 1761: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1761); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1762); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1762); END_STATE(); case 1762: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); - if (lookahead == ',') ADVANCE(1764); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1762); END_STATE(); case 1763: ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1764); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1763); + if (lookahead == ',') ADVANCE(1765); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1763); END_STATE(); case 1764: ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1764); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1765); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1764); END_STATE(); case 1765: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1765); END_STATE(); case 1766: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 1767: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(1765); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 1768: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(1771); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(1766); END_STATE(); case 1769: ACCEPT_TOKEN(anon_sym_SLASH); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == '/') ADVANCE(1772); END_STATE(); case 1770: - ACCEPT_TOKEN(anon_sym_mod); + ACCEPT_TOKEN(anon_sym_SLASH); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1771: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + ACCEPT_TOKEN(anon_sym_mod); END_STATE(); case 1772: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1766); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); case 1773: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(1767); END_STATE(); case 1774: - ACCEPT_TOKEN(anon_sym_bit_DASHshl); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 1775: - ACCEPT_TOKEN(anon_sym_bit_DASHshr); + ACCEPT_TOKEN(anon_sym_bit_DASHshl); END_STATE(); case 1776: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); + ACCEPT_TOKEN(anon_sym_bit_DASHshr); END_STATE(); case 1777: - ACCEPT_TOKEN(anon_sym_BANG_TILDE); + ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); case 1778: - ACCEPT_TOKEN(anon_sym_bit_DASHand); + ACCEPT_TOKEN(anon_sym_BANG_TILDE); END_STATE(); case 1779: - ACCEPT_TOKEN(anon_sym_bit_DASHxor); + ACCEPT_TOKEN(anon_sym_bit_DASHand); END_STATE(); case 1780: - ACCEPT_TOKEN(anon_sym_bit_DASHor); + ACCEPT_TOKEN(anon_sym_bit_DASHxor); END_STATE(); case 1781: - ACCEPT_TOKEN(anon_sym_and); + ACCEPT_TOKEN(anon_sym_bit_DASHor); END_STATE(); case 1782: - ACCEPT_TOKEN(anon_sym_xor); + ACCEPT_TOKEN(anon_sym_and); END_STATE(); case 1783: - ACCEPT_TOKEN(anon_sym_or); + ACCEPT_TOKEN(anon_sym_xor); END_STATE(); case 1784: - ACCEPT_TOKEN(anon_sym_in); + ACCEPT_TOKEN(anon_sym_or); END_STATE(); case 1785: - ACCEPT_TOKEN(anon_sym_not_DASHin); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 1786: - ACCEPT_TOKEN(anon_sym_has); + ACCEPT_TOKEN(anon_sym_not_DASHin); END_STATE(); case 1787: - ACCEPT_TOKEN(anon_sym_not_DASHhas); + ACCEPT_TOKEN(anon_sym_has); END_STATE(); case 1788: - ACCEPT_TOKEN(anon_sym_starts_DASHwith); + ACCEPT_TOKEN(anon_sym_not_DASHhas); END_STATE(); case 1789: - ACCEPT_TOKEN(anon_sym_ends_DASHwith); + ACCEPT_TOKEN(anon_sym_starts_DASHwith); END_STATE(); case 1790: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_ends_DASHwith); END_STATE(); case 1791: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 1792: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 1793: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(1794); END_STATE(); case 1794: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(1795); END_STATE(); case 1795: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 1796: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(1797); END_STATE(); case 1797: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(1798); END_STATE(); case 1798: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - ADVANCE_MAP( - '\n', 2250, - '\r', 1, - '!', 1859, - '#', 4099, - ')', 2294, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 2547, - '/', 1768, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1842, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1843, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - 0xb5, 1930, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 1799: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - ')', 2294, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 2547, - '/', 1768, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1850, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1851, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - 0xb5, 1930, + '!', 1860, + '#', 4100, + ')', 2295, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 2548, + '/', 1769, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1843, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1844, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(22); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1800: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - ')', 2294, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 1858, - '/', 1768, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - '_', 1877, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1842, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1843, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - 0xb5, 1930, + '!', 1860, + '#', 4100, + ')', 2295, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 2548, + '/', 1769, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1851, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1852, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(23); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1801: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - ')', 2294, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 1858, - '/', 1768, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - '_', 1877, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1850, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1851, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - 0xb5, 1930, + '!', 1860, + '#', 4100, + ')', 2295, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 1859, + '/', 1769, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + '_', 1878, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1843, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1844, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(22); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1802: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - ')', 2294, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 1858, - '/', 1768, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1842, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1843, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - 0xb5, 1930, + '!', 1860, + '#', 4100, + ')', 2295, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 1859, + '/', 1769, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + '_', 1878, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1851, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1852, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(23); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1803: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - ')', 2294, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 1858, - '/', 1768, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1850, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1851, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - 0xb5, 1930, + '!', 1860, + '#', 4100, + ')', 2295, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 1859, + '/', 1769, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1843, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1844, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(22); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1804: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - ')', 2294, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 1858, - '/', 1768, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1872, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1846, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1843, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - 0xb5, 1930, + '!', 1860, + '#', 4100, + ')', 2295, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 1859, + '/', 1769, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1851, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1852, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(23); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1805: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - ')', 2294, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 1858, - '/', 1768, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1872, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1848, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1851, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - 0xb5, 1930, + '!', 1860, + '#', 4100, + ')', 2295, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 1859, + '/', 1769, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1873, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1847, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1844, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(22); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1806: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - ')', 2294, - '*', 1767, - '+', 1772, - '-', 1773, - '/', 1768, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'a', 1905, - 'b', 1899, - 'e', 1847, + '!', 1860, + '#', 4100, + ')', 2295, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 1859, + '/', 1769, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1873, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1849, + 'g', 1872, 'h', 1880, - 'i', 1906, - 'm', 1913, + 'i', 1907, + 'k', 1872, + 'm', 1874, 'n', 1917, - 'o', 1843, - 's', 1936, - 'x', 1912, - '|', 2254, + 'o', 1852, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(23); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1807: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - ')', 2294, - '*', 1767, - '+', 1772, - '-', 1773, - '/', 1768, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'a', 1905, - 'b', 1899, - 'e', 1849, - 'h', 1880, - 'i', 1906, - 'm', 1913, - 'n', 1917, - 'o', 1851, - 's', 1936, - 'x', 1912, - '|', 2254, + '!', 1860, + '#', 4100, + ')', 2295, + '*', 1768, + '+', 1773, + '-', 1774, + '/', 1769, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'a', 1906, + 'b', 1900, + 'e', 1848, + 'h', 1881, + 'i', 1907, + 'm', 1914, + 'n', 1918, + 'o', 1844, + 's', 1937, + 'x', 1913, + '|', 2255, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(22); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1808: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 2547, - '/', 1768, - ':', 2792, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1842, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1843, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - '}', 2403, - 0xb5, 1930, + '!', 1860, + '#', 4100, + ')', 2295, + '*', 1768, + '+', 1773, + '-', 1774, + '/', 1769, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'a', 1906, + 'b', 1900, + 'e', 1850, + 'h', 1881, + 'i', 1907, + 'm', 1914, + 'n', 1918, + 'o', 1852, + 's', 1937, + 'x', 1913, + '|', 2255, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(23); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1809: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 2547, - '/', 1768, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1842, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1843, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - '}', 2403, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 2548, + '/', 1769, + ':', 2793, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1843, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1844, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + '}', 2404, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(24); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1810: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 2547, - '/', 1768, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1850, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1851, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - '}', 2403, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 2548, + '/', 1769, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1843, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1844, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + '}', 2404, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(25); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1811: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 2547, - '/', 1768, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1842, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1843, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 2548, + '/', 1769, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1851, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1852, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + '}', 2404, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1812: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 2547, - '/', 1768, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1850, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1851, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 2548, + '/', 1769, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1843, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1844, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1813: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 1858, - '/', 1768, - ':', 2792, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - '_', 1877, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1842, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1843, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - '}', 2403, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 2548, + '/', 1769, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1851, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1852, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1814: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 1858, - '/', 1768, - ':', 2792, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1842, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1843, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - '}', 2403, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 1859, + '/', 1769, + ':', 2793, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + '_', 1878, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1843, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1844, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + '}', 2404, + 0xb5, 1931, ); if (lookahead == '\t' || lookahead == ' ') SKIP(24); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1815: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 1858, - '/', 1768, - ':', 2792, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1872, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1846, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1843, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - '}', 2403, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 1859, + '/', 1769, + ':', 2793, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1843, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1844, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + '}', 2404, + 0xb5, 1931, ); if (lookahead == '\t' || lookahead == ' ') SKIP(24); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1816: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 1858, - '/', 1768, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - '_', 1877, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1842, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1843, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - '}', 2403, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 1859, + '/', 1769, + ':', 2793, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1873, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1847, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1844, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + '}', 2404, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(24); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1817: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 1858, - '/', 1768, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - '_', 1877, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1850, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1851, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - '}', 2403, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 1859, + '/', 1769, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + '_', 1878, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1843, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1844, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + '}', 2404, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(25); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1818: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 1858, - '/', 1768, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1842, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1843, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - '}', 2403, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 1859, + '/', 1769, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + '_', 1878, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1851, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1852, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + '}', 2404, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(26); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1819: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 1858, - '/', 1768, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1850, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1851, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - '}', 2403, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 1859, + '/', 1769, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1843, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1844, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + '}', 2404, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(25); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1820: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 1858, - '/', 1768, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1872, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1846, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1843, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - '}', 2403, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 1859, + '/', 1769, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1851, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1852, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + '}', 2404, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1821: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 1858, - '/', 1768, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1872, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1848, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1851, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - '}', 2403, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 1859, + '/', 1769, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1873, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1847, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1844, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + '}', 2404, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(25); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1822: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 1858, - '/', 1768, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - '_', 1877, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1842, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1843, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 1859, + '/', 1769, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1873, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1849, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1852, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + '}', 2404, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1823: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 1858, - '/', 1768, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - '_', 1877, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1850, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1851, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 1859, + '/', 1769, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + '_', 1878, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1843, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1844, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(27); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1824: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 1858, - '/', 1768, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1842, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1843, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 1859, + '/', 1769, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + '_', 1878, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1851, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1852, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(28); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1825: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 1858, - '/', 1768, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1850, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1851, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 1859, + '/', 1769, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1843, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1844, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1826: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 1858, - '/', 1768, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1872, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1846, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1843, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 1859, + '/', 1769, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1851, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1852, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1827: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 1858, - '/', 1768, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1872, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1848, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1851, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 1859, + '/', 1769, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1873, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1847, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1844, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1828: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '/', 1768, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'a', 1905, - 'b', 1899, - 'e', 1847, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 1859, + '/', 1769, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1873, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1849, + 'g', 1872, 'h', 1880, - 'i', 1906, - 'm', 1913, + 'i', 1907, + 'k', 1872, + 'm', 1874, 'n', 1917, - 'o', 1843, - 's', 1936, - 'x', 1912, - '|', 2254, - '}', 2403, + 'o', 1852, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1829: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '/', 1768, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'a', 1905, - 'b', 1899, - 'e', 1849, - 'h', 1880, - 'i', 1906, - 'm', 1913, - 'n', 1917, - 'o', 1851, - 's', 1936, - 'x', 1912, - '|', 2254, - '}', 2403, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '/', 1769, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'a', 1906, + 'b', 1900, + 'e', 1848, + 'h', 1881, + 'i', 1907, + 'm', 1914, + 'n', 1918, + 'o', 1844, + 's', 1937, + 'x', 1913, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(25); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1830: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '/', 1768, - '<', 1793, - '=', 426, - '>', 1796, - 'a', 1905, - 'b', 1899, - 'e', 1847, - 'h', 1880, - 'i', 1906, - 'm', 1913, - 'n', 1917, - 'o', 1843, - 's', 1936, - 'x', 1912, - '|', 2254, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '/', 1769, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'a', 1906, + 'b', 1900, + 'e', 1850, + 'h', 1881, + 'i', 1907, + 'm', 1914, + 'n', 1918, + 'o', 1852, + 's', 1937, + 'x', 1913, + '|', 2255, + '}', 2404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1831: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '/', 1768, - '<', 1793, - '=', 426, - '>', 1796, - 'a', 1905, - 'b', 1899, - 'e', 1849, - 'h', 1880, - 'i', 1906, - 'm', 1913, - 'n', 1917, - 'o', 1851, - 's', 1936, - 'x', 1912, - '|', 2254, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '/', 1769, + '<', 1794, + '=', 427, + '>', 1797, + 'a', 1906, + 'b', 1900, + 'e', 1848, + 'h', 1881, + 'i', 1907, + 'm', 1914, + 'n', 1918, + 'o', 1844, + 's', 1937, + 'x', 1913, + '|', 2255, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1832: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 2533, - '/', 1768, - ':', 2792, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1868, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1919, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - 0xb5, 1930, + '\n', 2251, + '\r', 1, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '/', 1769, + '<', 1794, + '=', 427, + '>', 1797, + 'a', 1906, + 'b', 1900, + 'e', 1850, + 'h', 1881, + 'i', 1907, + 'm', 1914, + 'n', 1918, + 'o', 1852, + 's', 1937, + 'x', 1913, + '|', 2255, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(355); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1833: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 2533, - '/', 1768, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1868, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1919, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 2534, + '/', 1769, + ':', 2793, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1869, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1920, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(370); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(356); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1834: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '/', 1768, - ':', 2792, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - '_', 1877, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1868, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1919, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 2534, + '/', 1769, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1869, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1920, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(355); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(371); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1835: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '/', 1768, - ':', 2792, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1868, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1919, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '/', 1769, + ':', 2793, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + '_', 1878, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1869, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1920, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(355); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(356); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1836: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '/', 1768, - ':', 2792, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1872, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1870, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1919, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '/', 1769, + ':', 2793, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1869, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1920, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(355); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(356); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1837: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '/', 1768, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - '_', 1877, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1868, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1919, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '/', 1769, + ':', 2793, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1873, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1871, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1920, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(370); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(356); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1838: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '/', 1768, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1868, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1919, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '/', 1769, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + '_', 1878, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1869, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1920, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(370); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(371); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1839: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '/', 1768, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1872, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1870, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1919, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - 0xb5, 1930, - ); + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '/', 1769, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1869, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1920, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + 0xb5, 1931, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(370); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(371); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1840: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '/', 1768, - '<', 1793, - '=', 426, - '>', 1796, - 'a', 1905, - 'b', 1899, - 'e', 1908, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '/', 1769, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1873, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1871, + 'g', 1872, 'h', 1880, - 'i', 1906, - 'm', 1913, + 'i', 1907, + 'k', 1872, + 'm', 1874, 'n', 1917, - 'o', 1919, - 's', 1936, - 'x', 1912, + 'o', 1920, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(370); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(371); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1841: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '#') ADVANCE(4099); + ADVANCE_MAP( + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '/', 1769, + '<', 1794, + '=', 427, + '>', 1797, + 'a', 1906, + 'b', 1900, + 'e', 1909, + 'h', 1881, + 'i', 1907, + 'm', 1914, + 'n', 1918, + 'o', 1920, + 's', 1937, + 'x', 1913, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(370); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(371); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1842: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - ADVANCE_MAP( - '+', 1874, - '-', 1876, - '>', 2825, - 'I', 1950, - '_', 1876, - 'i', 1950, - 'n', 1889, - 'r', 1920, - 'B', 2714, - 'b', 2714, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '\t' || + lookahead == ' ') SKIP(371); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1843: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(1891); - if (lookahead == '>') ADVANCE(2830); - if (lookahead == 'r') ADVANCE(1783); - if (lookahead == 'u') ADVANCE(1938); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + ADVANCE_MAP( + '+', 1875, + '-', 1877, + '>', 2826, + 'I', 1951, + '_', 1877, + 'i', 1951, + 'n', 1890, + 'r', 1921, + 'B', 2715, + 'b', 2715, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1844: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(1911); - if (lookahead == '>') ADVANCE(2815); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == '+') ADVANCE(1892); + if (lookahead == '>') ADVANCE(2831); + if (lookahead == 'r') ADVANCE(1784); + if (lookahead == 'u') ADVANCE(1939); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1845: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(1892); - if (lookahead == '>') ADVANCE(2820); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == '+') ADVANCE(1912); + if (lookahead == '>') ADVANCE(2816); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1846: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - ADVANCE_MAP( - '+', 1910, - '>', 2825, - 'I', 1950, - 'i', 1950, - 'n', 1889, - 'r', 1920, - 'B', 2714, - 'b', 2714, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == '+') ADVANCE(1893); + if (lookahead == '>') ADVANCE(2821); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1847: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(1910); - if (lookahead == '>') ADVANCE(2825); - if (lookahead == 'n') ADVANCE(1889); - if (lookahead == 'r') ADVANCE(1920); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + ADVANCE_MAP( + '+', 1911, + '>', 2826, + 'I', 1951, + 'i', 1951, + 'n', 1890, + 'r', 1921, + 'B', 2715, + 'b', 2715, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1848: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - ADVANCE_MAP( - '+', 1914, - '>', 616, - 'I', 1950, - 'i', 1950, - 'n', 1889, - 'r', 1925, - 'B', 2714, - 'b', 2714, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == '+') ADVANCE(1911); + if (lookahead == '>') ADVANCE(2826); + if (lookahead == 'n') ADVANCE(1890); + if (lookahead == 'r') ADVANCE(1921); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1849: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(1914); - if (lookahead == '>') ADVANCE(616); - if (lookahead == 'n') ADVANCE(1889); - if (lookahead == 'r') ADVANCE(1925); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + ADVANCE_MAP( + '+', 1915, + '>', 617, + 'I', 1951, + 'i', 1951, + 'n', 1890, + 'r', 1926, + 'B', 2715, + 'b', 2715, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1850: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - ADVANCE_MAP( - '+', 1875, - '-', 1876, - '>', 616, - 'I', 1950, - '_', 1876, - 'i', 1950, - 'n', 1889, - 'r', 1925, - 'B', 2714, - 'b', 2714, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == '+') ADVANCE(1915); + if (lookahead == '>') ADVANCE(617); + if (lookahead == 'n') ADVANCE(1890); + if (lookahead == 'r') ADVANCE(1926); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1851: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(1893); - if (lookahead == '>') ADVANCE(617); - if (lookahead == 'r') ADVANCE(1783); - if (lookahead == 'u') ADVANCE(1942); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + ADVANCE_MAP( + '+', 1876, + '-', 1877, + '>', 617, + 'I', 1951, + '_', 1877, + 'i', 1951, + 'n', 1890, + 'r', 1926, + 'B', 2715, + 'b', 2715, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1852: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(1918); - if (lookahead == '>') ADVANCE(619); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == '+') ADVANCE(1894); + if (lookahead == '>') ADVANCE(618); + if (lookahead == 'r') ADVANCE(1784); + if (lookahead == 'u') ADVANCE(1943); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1853: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(1894); - if (lookahead == '>') ADVANCE(621); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == '+') ADVANCE(1919); + if (lookahead == '>') ADVANCE(620); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1854: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '-') ADVANCE(1883); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == '+') ADVANCE(1895); + if (lookahead == '>') ADVANCE(622); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1855: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '-') ADVANCE(1898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == '-') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1856: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '-') ADVANCE(1947); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == '-') ADVANCE(1899); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1857: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == '-') ADVANCE(1948); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1858: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '.') ADVANCE(2532); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == '-') ADVANCE(1949); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1859: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '=') ADVANCE(1791); - if (lookahead == '~') ADVANCE(1777); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == '.') ADVANCE(2533); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1860: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(2850); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == '=') ADVANCE(1792); + if (lookahead == '~') ADVANCE(1778); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1861: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(2845); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == '>') ADVANCE(2851); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1862: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(2835); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == '>') ADVANCE(2846); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1863: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(2840); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == '>') ADVANCE(2836); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1864: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(618); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == '>') ADVANCE(2841); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1865: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(620); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == '>') ADVANCE(619); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1866: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(622); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == '>') ADVANCE(621); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1867: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == '>') ADVANCE(623); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1868: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - ADVANCE_MAP( - 'I', 1950, - '_', 1876, - 'i', 1950, - 'n', 1889, - '+', 1876, - '-', 1876, - 'B', 2714, - 'b', 2714, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == '>') ADVANCE(624); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1869: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(1950); - if (lookahead == '_') ADVANCE(1876); - if (lookahead == 'i') ADVANCE(1884); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1876); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + ADVANCE_MAP( + 'I', 1951, + '_', 1877, + 'i', 1951, + 'n', 1890, + '+', 1877, + '-', 1877, + 'B', 2715, + 'b', 2715, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1870: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(1950); - if (lookahead == 'i') ADVANCE(1950); - if (lookahead == 'n') ADVANCE(1889); + if (lookahead == 'I') ADVANCE(1951); + if (lookahead == '_') ADVANCE(1877); + if (lookahead == 'i') ADVANCE(1885); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1877); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == 'b') ADVANCE(2715); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1871: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(1950); - if (lookahead == 'i') ADVANCE(1950); + if (lookahead == 'I') ADVANCE(1951); + if (lookahead == 'i') ADVANCE(1951); + if (lookahead == 'n') ADVANCE(1890); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1872: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(1950); - if (lookahead == 'i') ADVANCE(1884); + if (lookahead == 'I') ADVANCE(1951); + if (lookahead == 'i') ADVANCE(1951); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1873: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(1950); - if (lookahead == 'i') ADVANCE(1904); - if (lookahead == 'o') ADVANCE(1887); - if (lookahead == 's') ADVANCE(2721); + if (lookahead == 'I') ADVANCE(1951); + if (lookahead == 'i') ADVANCE(1885); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1874: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(1876); - if (lookahead == 'o') ADVANCE(1860); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'I') ADVANCE(1951); + if (lookahead == 'i') ADVANCE(1905); + if (lookahead == 'o') ADVANCE(1888); + if (lookahead == 's') ADVANCE(2722); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1875: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(1876); - if (lookahead == 'o') ADVANCE(1864); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == '_') ADVANCE(1877); + if (lookahead == 'o') ADVANCE(1861); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1876: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(1876); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == '_') ADVANCE(1877); + if (lookahead == 'o') ADVANCE(1865); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1877: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == '_') ADVANCE(1877); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1878: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'a') ADVANCE(1949); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == '_') ADVANCE(1878); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1879: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'a') ADVANCE(1931); - if (lookahead == 'r') ADVANCE(2721); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'a') ADVANCE(1950); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1880: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'a') ADVANCE(1931); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'a') ADVANCE(1932); + if (lookahead == 'r') ADVANCE(2722); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1881: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'a') ADVANCE(1924); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'a') ADVANCE(1932); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1882: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'a') ADVANCE(1932); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'a') ADVANCE(1925); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1883: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'a') ADVANCE(1909); - if (lookahead == 'o') ADVANCE(1922); - if (lookahead == 's') ADVANCE(1895); - if (lookahead == 'x') ADVANCE(1915); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'a') ADVANCE(1933); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1884: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'a') ADVANCE(1910); + if (lookahead == 'o') ADVANCE(1923); + if (lookahead == 's') ADVANCE(1896); + if (lookahead == 'x') ADVANCE(1916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1885: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'c') ADVANCE(2721); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1886: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'd') ADVANCE(1781); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'c') ADVANCE(2722); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1887: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'd') ADVANCE(1770); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'd') ADVANCE(1782); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1888: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'd') ADVANCE(1778); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'd') ADVANCE(1771); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1889: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'd') ADVANCE(1933); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'd') ADVANCE(1779); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1890: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(1885); - if (lookahead == 't') ADVANCE(1881); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'd') ADVANCE(1934); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1891: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(1861); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'e') ADVANCE(1886); + if (lookahead == 't') ADVANCE(1882); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1892: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(1927); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'e') ADVANCE(1862); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1893: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(1865); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'e') ADVANCE(1928); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1894: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(1928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'e') ADVANCE(1866); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1895: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'h') ADVANCE(1903); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'e') ADVANCE(1929); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1896: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'h') ADVANCE(1789); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'h') ADVANCE(1904); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1897: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'h') ADVANCE(1788); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'h') ADVANCE(1790); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1898: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'h') ADVANCE(1882); - if (lookahead == 'i') ADVANCE(1907); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'h') ADVANCE(1789); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1899: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'i') ADVANCE(1935); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'h') ADVANCE(1883); + if (lookahead == 'i') ADVANCE(1908); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1900: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'i') ADVANCE(1939); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'i') ADVANCE(1936); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1901: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'i') ADVANCE(1941); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'i') ADVANCE(1940); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1902: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'k') ADVANCE(2721); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'i') ADVANCE(1942); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1903: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'l') ADVANCE(1774); - if (lookahead == 'r') ADVANCE(1775); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'k') ADVANCE(2722); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1904: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(2721); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'l') ADVANCE(1775); + if (lookahead == 'r') ADVANCE(1776); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1905: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(1886); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'n') ADVANCE(2722); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1906: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(1784); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'n') ADVANCE(1887); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1907: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == 'n') ADVANCE(1785); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1908: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(1889); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'n') ADVANCE(1786); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1909: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(1888); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'n') ADVANCE(1890); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1910: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(1860); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'n') ADVANCE(1889); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1911: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(1945); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'o') ADVANCE(1861); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1912: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(1921); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'o') ADVANCE(1946); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1913: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(1887); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'o') ADVANCE(1922); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1914: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(1864); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'o') ADVANCE(1888); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1915: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(1923); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'o') ADVANCE(1865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1916: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(1937); - if (lookahead == 's') ADVANCE(2721); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'o') ADVANCE(1924); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1917: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(1937); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'o') ADVANCE(1938); + if (lookahead == 's') ADVANCE(2722); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1918: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(1946); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'o') ADVANCE(1938); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1919: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(1783); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'o') ADVANCE(1947); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1920: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(1844); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'r') ADVANCE(1784); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1921: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(1782); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'r') ADVANCE(1845); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1922: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(1780); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'r') ADVANCE(1783); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1923: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(1779); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'r') ADVANCE(1781); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1924: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(1944); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'r') ADVANCE(1780); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1925: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(1852); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'r') ADVANCE(1945); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1926: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(1863); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'r') ADVANCE(1853); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1927: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(1926); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'r') ADVANCE(1864); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1928: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(1929); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'r') ADVANCE(1927); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1929: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(1867); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'r') ADVANCE(1930); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1930: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 's') ADVANCE(2721); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'r') ADVANCE(1868); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1931: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 's') ADVANCE(1786); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 's') ADVANCE(2722); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1932: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == 's') ADVANCE(1787); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1933: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 's') ADVANCE(1856); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 's') ADVANCE(1788); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1934: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == 's') ADVANCE(1857); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1935: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(1854); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 's') ADVANCE(1858); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1936: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(1881); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 't') ADVANCE(1855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1937: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(1855); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 't') ADVANCE(1882); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1938: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(1845); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 't') ADVANCE(1856); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1939: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(1896); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 't') ADVANCE(1846); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1940: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(1862); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 't') ADVANCE(1897); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1941: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(1897); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 't') ADVANCE(1863); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1942: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(1853); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 't') ADVANCE(1898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1943: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(1866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 't') ADVANCE(1854); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1944: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(1934); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 't') ADVANCE(1867); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1945: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'u') ADVANCE(1940); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 't') ADVANCE(1935); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1946: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'u') ADVANCE(1943); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'u') ADVANCE(1941); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1947: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'w') ADVANCE(1900); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'u') ADVANCE(1944); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1948: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == 'w') ADVANCE(1901); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1949: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'y') ADVANCE(2721); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'w') ADVANCE(1902); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1950: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'y') ADVANCE(2722); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1951: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1952: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(818); - ADVANCE_MAP( - '\n', 2250, - '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 2547, - '/', 1768, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1842, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1843, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - 0xb5, 1930, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(713); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1953: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 2547, - '/', 1768, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1850, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1851, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 2548, + '/', 1769, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1843, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1844, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + 0xb5, 1931, ); if (lookahead == '\t' || lookahead == ' ') SKIP(714); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1954: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 1858, - '/', 1768, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - '_', 1877, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1842, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1843, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 2548, + '/', 1769, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1851, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1852, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(713); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1955: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 1858, - '/', 1768, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - '_', 1877, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1850, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1851, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 1859, + '/', 1769, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + '_', 1878, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1843, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1844, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + 0xb5, 1931, ); if (lookahead == '\t' || lookahead == ' ') SKIP(714); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1956: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 1858, - '/', 1768, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1842, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1843, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 1859, + '/', 1769, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + '_', 1878, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1851, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1852, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(713); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(715); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1957: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 1858, - '/', 1768, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1869, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1850, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1851, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 1859, + '/', 1769, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1843, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1844, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + 0xb5, 1931, ); if (lookahead == '\t' || lookahead == ' ') SKIP(714); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1958: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 1858, - '/', 1768, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1872, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1846, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1843, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 1859, + '/', 1769, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1870, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1851, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1852, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(713); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1959: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '.', 1858, - '/', 1768, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'B', 2714, - 'E', 1872, - 'G', 1872, - 'K', 1872, - 'M', 1872, - 'P', 1872, - 'T', 1872, - 'a', 1905, - 'b', 2715, - 'd', 1878, - 'e', 1848, - 'g', 1871, - 'h', 1879, - 'i', 1906, - 'k', 1871, - 'm', 1873, - 'n', 1916, - 'o', 1851, - 'p', 1871, - 's', 1890, - 't', 1871, - 'u', 1930, - 'w', 1902, - 'x', 1912, - '|', 2254, - 0xb5, 1930, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 1859, + '/', 1769, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1873, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1847, + 'g', 1872, + 'h', 1880, + 'i', 1907, + 'k', 1872, + 'm', 1874, + 'n', 1917, + 'o', 1844, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + 0xb5, 1931, ); if (lookahead == '\t' || lookahead == ' ') SKIP(714); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1960: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '/', 1768, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'a', 1905, - 'b', 1899, - 'e', 1847, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '.', 1859, + '/', 1769, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'B', 2715, + 'E', 1873, + 'G', 1873, + 'K', 1873, + 'M', 1873, + 'P', 1873, + 'T', 1873, + 'a', 1906, + 'b', 2716, + 'd', 1879, + 'e', 1849, + 'g', 1872, 'h', 1880, - 'i', 1906, - 'm', 1913, + 'i', 1907, + 'k', 1872, + 'm', 1874, 'n', 1917, - 'o', 1843, - 's', 1936, - 'x', 1912, - '|', 2254, + 'o', 1852, + 'p', 1872, + 's', 1891, + 't', 1872, + 'u', 1931, + 'w', 1903, + 'x', 1913, + '|', 2255, + 0xb5, 1931, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(713); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + lookahead == ' ') SKIP(715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1961: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(818); + if (eof) ADVANCE(819); ADVANCE_MAP( - '\n', 2250, + '\n', 2251, '\r', 1, - '!', 1859, - '#', 4099, - '*', 1767, - '+', 1772, - '-', 1773, - '/', 1768, - ';', 2253, - '<', 1793, - '=', 426, - '>', 1796, - 'a', 1905, - 'b', 1899, - 'e', 1849, - 'h', 1880, - 'i', 1906, - 'm', 1913, - 'n', 1917, - 'o', 1851, - 's', 1936, - 'x', 1912, - '|', 2254, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '/', 1769, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'a', 1906, + 'b', 1900, + 'e', 1848, + 'h', 1881, + 'i', 1907, + 'm', 1914, + 'n', 1918, + 'o', 1844, + 's', 1937, + 'x', 1913, + '|', 2255, ); if (lookahead == '\t' || lookahead == ' ') SKIP(714); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1962: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1978); - if (lookahead == '-') ADVANCE(3891); - if (lookahead == 'I') ADVANCE(2023); - if (lookahead == '_') ADVANCE(1978); - if (lookahead == 'i') ADVANCE(2023); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2720); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (eof) ADVANCE(819); + ADVANCE_MAP( + '\n', 2251, + '\r', 1, + '!', 1860, + '#', 4100, + '*', 1768, + '+', 1773, + '-', 1774, + '/', 1769, + ';', 2254, + '<', 1794, + '=', 427, + '>', 1797, + 'a', 1906, + 'b', 1900, + 'e', 1850, + 'h', 1881, + 'i', 1907, + 'm', 1914, + 'n', 1918, + 'o', 1852, + 's', 1937, + 'x', 1913, + '|', 2255, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1963: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1978); - if (lookahead == '-') ADVANCE(3891); - if (lookahead == 'I') ADVANCE(2023); - if (lookahead == '_') ADVANCE(1978); - if (lookahead == 'i') ADVANCE(1982); + if (lookahead == '+') ADVANCE(1979); + if (lookahead == '-') ADVANCE(3892); + if (lookahead == 'I') ADVANCE(2024); + if (lookahead == '_') ADVANCE(1979); + if (lookahead == 'i') ADVANCE(2024); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2720); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + lookahead == 'b') ADVANCE(2721); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1964: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1978); - if (lookahead == '-') ADVANCE(3891); - if (lookahead == '_') ADVANCE(1978); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == '+') ADVANCE(1979); + if (lookahead == '-') ADVANCE(3892); + if (lookahead == 'I') ADVANCE(2024); + if (lookahead == '_') ADVANCE(1979); + if (lookahead == 'i') ADVANCE(1983); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2721); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1965: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1978); - if (lookahead == '-') ADVANCE(3119); - if (lookahead == 'I') ADVANCE(2023); - if (lookahead == '_') ADVANCE(1978); - if (lookahead == 'i') ADVANCE(2023); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2720); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == '+') ADVANCE(1979); + if (lookahead == '-') ADVANCE(3892); + if (lookahead == '_') ADVANCE(1979); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1966: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1978); - if (lookahead == '-') ADVANCE(3119); - if (lookahead == 'I') ADVANCE(2023); - if (lookahead == '_') ADVANCE(1978); - if (lookahead == 'i') ADVANCE(1982); + if (lookahead == '+') ADVANCE(1979); + if (lookahead == '-') ADVANCE(3120); + if (lookahead == 'I') ADVANCE(2024); + if (lookahead == '_') ADVANCE(1979); + if (lookahead == 'i') ADVANCE(2024); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2720); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + lookahead == 'b') ADVANCE(2721); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1967: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(551); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == '+') ADVANCE(1979); + if (lookahead == '-') ADVANCE(3120); + if (lookahead == 'I') ADVANCE(2024); + if (lookahead == '_') ADVANCE(1979); + if (lookahead == 'i') ADVANCE(1983); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2721); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1968: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(473); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == '-') ADVANCE(552); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1969: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(537); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == '-') ADVANCE(474); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1970: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(552); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == '-') ADVANCE(538); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1971: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(611); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == '-') ADVANCE(553); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1972: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(2023); - if (lookahead == 'i') ADVANCE(2023); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2720); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == '-') ADVANCE(612); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1973: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(2023); - if (lookahead == 'i') ADVANCE(1982); + if (lookahead == 'I') ADVANCE(2024); + if (lookahead == 'i') ADVANCE(2024); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2720); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + lookahead == 'b') ADVANCE(2721); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1974: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(2023); - if (lookahead == 'i') ADVANCE(2000); - if (lookahead == 's') ADVANCE(2724); + if (lookahead == 'I') ADVANCE(2024); + if (lookahead == 'i') ADVANCE(1983); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2720); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + lookahead == 'b') ADVANCE(2721); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1975: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1976); - if (lookahead == 'b') ADVANCE(2032); - if (lookahead == 'o') ADVANCE(2034); - if (lookahead == 'x') ADVANCE(2035); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1976); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'I') ADVANCE(2024); + if (lookahead == 'i') ADVANCE(2001); + if (lookahead == 's') ADVANCE(2725); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2721); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1976: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1976); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1976); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == '_') ADVANCE(1977); + if (lookahead == 'b') ADVANCE(2033); + if (lookahead == 'o') ADVANCE(2035); + if (lookahead == 'x') ADVANCE(2036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1977); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1977: ACCEPT_TOKEN(sym_identifier); if (lookahead == '_') ADVANCE(1977); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2591); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1977); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1978: ACCEPT_TOKEN(sym_identifier); if (lookahead == '_') ADVANCE(1978); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1979: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2021); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == '_') ADVANCE(1979); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1980: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2013); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'a') ADVANCE(2022); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1981: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1994); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'a') ADVANCE(2014); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1982: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(2720); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'a') ADVANCE(1995); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1983: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2724); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'b') ADVANCE(2721); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1984: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(1991); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'c') ADVANCE(2725); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1985: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1995); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'd') ADVANCE(1992); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1986: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1969); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'e') ADVANCE(1996); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1987: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2620); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'e') ADVANCE(1970); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1988: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2628); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'e') ADVANCE(2621); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1989: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1983); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'e') ADVANCE(2629); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1990: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2287); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'e') ADVANCE(1984); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1991: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2441); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'e') ADVANCE(2288); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1992: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(1984); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'e') ADVANCE(2442); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1993: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(2724); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'i') ADVANCE(1985); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1994: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2015); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'k') ADVANCE(2725); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1995: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1996); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'l') ADVANCE(2016); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1996: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1967); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'l') ADVANCE(1997); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1997: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') ADVANCE(1968); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1998: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1997); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'l') ADVANCE(1969); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 1999: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(2006); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'l') ADVANCE(1998); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2000: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2724); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2720); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'm') ADVANCE(2007); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2001: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2366); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'n') ADVANCE(2725); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2721); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2002: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1986); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'n') ADVANCE(2367); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2003: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2017); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2027); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'n') ADVANCE(1987); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2004: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2008); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'o') ADVANCE(2018); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2028); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2005: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'o') ADVANCE(2009); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2006: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(2005); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'o') ADVANCE(2010); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2007: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2004); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'p') ADVANCE(2006); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2008: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2307); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'r') ADVANCE(2005); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2009: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2018); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'r') ADVANCE(2308); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2010: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2724); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'r') ADVANCE(2019); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2011: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2007); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'r') ADVANCE(2725); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2012: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2019); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'r') ADVANCE(2008); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2013: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1971); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'r') ADVANCE(2020); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2014: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2724); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'r') ADVANCE(1972); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2015: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1988); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 's') ADVANCE(2725); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2016: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1990); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 's') ADVANCE(1989); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2017: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2033); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 's') ADVANCE(1991); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2018: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1970); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 't') ADVANCE(2034); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2019: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(1987); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 't') ADVANCE(1971); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2020: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(1998); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'u') ADVANCE(1988); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2021: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(2724); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'u') ADVANCE(1999); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2022: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2027); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'y') ADVANCE(2725); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2023: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2720); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2028); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2024: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2026); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2721); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2025: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2030); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2027); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2026: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2029); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + lookahead == 'i') ADVANCE(2031); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2027: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2036); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2030); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2028: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2024); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + lookahead == 'n') ADVANCE(2037); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2029: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || lookahead == 'n') ADVANCE(2025); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2030: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2031); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2026); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2031: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2036); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2032); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2032: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2037); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); + END_STATE(); + case 2033: ACCEPT_TOKEN(sym_identifier); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(2032); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + lookahead == '_') ADVANCE(2033); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); - case 2033: + case 2034: ACCEPT_TOKEN(sym_identifier); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2491); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + lookahead == ' ') ADVANCE(2492); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); - case 2034: + case 2035: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2034); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + lookahead == '_') ADVANCE(2035); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); - case 2035: + case 2036: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2035); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); - END_STATE(); - case 2036: - ACCEPT_TOKEN(sym_identifier); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2036); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2037: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(2991); - if (lookahead == '>') ADVANCE(2825); - if (lookahead == 'r') ADVANCE(2136); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + ACCEPT_TOKEN(sym_identifier); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2038: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(2984); - if (lookahead == '>') ADVANCE(2830); - if (lookahead == 'u') ADVANCE(2159); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == '+') ADVANCE(2992); + if (lookahead == '>') ADVANCE(2826); + if (lookahead == 'r') ADVANCE(2137); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2039: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(2992); - if (lookahead == '>') ADVANCE(2815); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == '+') ADVANCE(2985); + if (lookahead == '>') ADVANCE(2831); + if (lookahead == 'u') ADVANCE(2160); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2040: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(2985); - if (lookahead == '>') ADVANCE(2820); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == '+') ADVANCE(2993); + if (lookahead == '>') ADVANCE(2816); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2041: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(542); - if (lookahead == '>') ADVANCE(616); - if (lookahead == 'r') ADVANCE(2144); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == '+') ADVANCE(2986); + if (lookahead == '>') ADVANCE(2821); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2042: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(2994); - if (lookahead == '>') ADVANCE(2824); - if (lookahead == 'r') ADVANCE(2139); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == '+') ADVANCE(543); + if (lookahead == '>') ADVANCE(617); + if (lookahead == 'r') ADVANCE(2145); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2043: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(2986); - if (lookahead == '>') ADVANCE(2829); - if (lookahead == 'u') ADVANCE(2161); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == '+') ADVANCE(2995); + if (lookahead == '>') ADVANCE(2825); + if (lookahead == 'r') ADVANCE(2140); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2044: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(490); - if (lookahead == '>') ADVANCE(617); + if (lookahead == '+') ADVANCE(2987); + if (lookahead == '>') ADVANCE(2830); if (lookahead == 'u') ADVANCE(2162); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2045: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(546); - if (lookahead == '>') ADVANCE(619); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == '+') ADVANCE(491); + if (lookahead == '>') ADVANCE(618); + if (lookahead == 'u') ADVANCE(2163); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2046: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(2995); - if (lookahead == '>') ADVANCE(2814); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == '+') ADVANCE(547); + if (lookahead == '>') ADVANCE(620); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2047: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(494); - if (lookahead == '>') ADVANCE(621); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == '+') ADVANCE(2996); + if (lookahead == '>') ADVANCE(2815); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2048: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(2987); - if (lookahead == '>') ADVANCE(2819); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == '+') ADVANCE(495); + if (lookahead == '>') ADVANCE(622); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2049: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2210); - if (lookahead == '_') ADVANCE(2059); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2059); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == '+') ADVANCE(2988); + if (lookahead == '>') ADVANCE(2820); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2050: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2079); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2227); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + if (lookahead == '-') ADVANCE(2211); + if (lookahead == '_') ADVANCE(2060); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2060); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2051: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2081); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2238); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1633); + if (lookahead == '-') ADVANCE(2080); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2228); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1616); END_STATE(); case 2052: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2084); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2244); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1726); + if (lookahead == '-') ADVANCE(2082); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2239); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1634); END_STATE(); case 2053: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2086); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2246); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1645); + if (lookahead == '-') ADVANCE(2085); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2245); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1727); END_STATE(); case 2054: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2211); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == '-') ADVANCE(2087); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2247); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1646); END_STATE(); case 2055: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == ':') ADVANCE(3035); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == '-') ADVANCE(2212); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2056: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N') ADVANCE(2184); - if (lookahead == 'f') ADVANCE(2217); - if (lookahead == 'n') ADVANCE(2185); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == ':') ADVANCE(3036); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2057: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T') ADVANCE(2212); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'N') ADVANCE(2185); + if (lookahead == 'f') ADVANCE(2218); + if (lookahead == 'n') ADVANCE(2186); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2058: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2059); - if (lookahead == 'b') ADVANCE(2711); - if (lookahead == 'o') ADVANCE(2727); - if (lookahead == 'x') ADVANCE(2732); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2061); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'T') ADVANCE(2213); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2059: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2059); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2059); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == '_') ADVANCE(2060); + if (lookahead == 'b') ADVANCE(2713); + if (lookahead == 'o') ADVANCE(2729); + if (lookahead == 'x') ADVANCE(2734); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2062); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2060: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2059); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2049); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == '_') ADVANCE(2060); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2060); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2061: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2059); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2060); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == '_') ADVANCE(2060); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2050); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2062: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2059); + if (lookahead == '_') ADVANCE(2060); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2061); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2063: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2110); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == '_') ADVANCE(2060); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2062); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2064: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2109); - if (lookahead == 'o') ADVANCE(2073); - if (lookahead == 'u') ADVANCE(2163); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'a') ADVANCE(2111); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2065: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2108); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'a') ADVANCE(2110); + if (lookahead == 'o') ADVANCE(2074); + if (lookahead == 'u') ADVANCE(2164); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2066: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2179); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'a') ADVANCE(2109); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2067: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2157); - if (lookahead == 'o') ADVANCE(2121); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'a') ADVANCE(2180); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2068: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2153); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'a') ADVANCE(2158); + if (lookahead == 'o') ADVANCE(2122); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2069: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2118); - if (lookahead == 'o') ADVANCE(2146); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'a') ADVANCE(2154); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2070: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(2101); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'a') ADVANCE(2119); + if (lookahead == 'o') ADVANCE(2147); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2071: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(2085); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'c') ADVANCE(2102); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2072: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(2102); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'c') ADVANCE(2086); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2073: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(2173); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'c') ADVANCE(2103); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2074: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(2080); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'd') ADVANCE(2174); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2075: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2618); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'd') ADVANCE(2081); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2076: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2626); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'e') ADVANCE(2619); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2077: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2098); - if (lookahead == 'o') ADVANCE(2216); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'e') ADVANCE(2627); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2078: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'e') ADVANCE(2099); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'o') ADVANCE(2217); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2079: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2122); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2227); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + if (lookahead == 'e') ADVANCE(2100); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2080: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2051); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'e') ADVANCE(2123); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2228); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1616); END_STATE(); case 2081: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2123); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2238); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1633); + if (lookahead == 'e') ADVANCE(2052); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2082: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2065); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'e') ADVANCE(2124); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2239); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1634); END_STATE(); case 2083: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2158); - if (lookahead == 'o') ADVANCE(2129); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'e') ADVANCE(2066); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2084: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2124); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2244); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1726); + if (lookahead == 'e') ADVANCE(2159); + if (lookahead == 'o') ADVANCE(2130); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2085: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2053); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'e') ADVANCE(2125); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2245); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1727); END_STATE(); case 2086: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2125); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2246); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1645); + if (lookahead == 'e') ADVANCE(2054); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2087: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2145); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'e') ADVANCE(2126); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2247); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1646); END_STATE(); case 2088: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2141); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'e') ADVANCE(2146); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2089: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2224); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'e') ADVANCE(2142); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2090: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2226); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'e') ADVANCE(2225); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2091: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2229); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'e') ADVANCE(2227); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2092: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2231); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'e') ADVANCE(2230); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2093: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2237); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'e') ADVANCE(2232); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2094: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2240); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'e') ADVANCE(2238); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2095: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2242); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'e') ADVANCE(2241); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2096: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2247); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'e') ADVANCE(2243); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2097: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2148); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'e') ADVANCE(2248); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2098: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'f') ADVANCE(2219); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'e') ADVANCE(2149); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2099: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'g') ADVANCE(2106); - if (lookahead == 't') ADVANCE(2170); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'f') ADVANCE(2220); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2100: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(2107); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'g') ADVANCE(2107); + if (lookahead == 't') ADVANCE(2171); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2101: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(2234); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'h') ADVANCE(2108); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2102: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(2239); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'h') ADVANCE(2235); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2103: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(2074); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'h') ADVANCE(2240); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2104: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(2068); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'i') ADVANCE(2075); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2105: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(2128); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'i') ADVANCE(2069); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2106: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(2151); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'i') ADVANCE(2129); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2107: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(2119); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'i') ADVANCE(2152); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2108: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'k') ADVANCE(2233); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'i') ADVANCE(2120); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2109: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'k') ADVANCE(2091); - if (lookahead == 't') ADVANCE(2072); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'k') ADVANCE(2234); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2110: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2150); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'k') ADVANCE(2092); + if (lookahead == 't') ADVANCE(2073); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2111: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2610); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'l') ADVANCE(2151); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2112: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2104); - if (lookahead == 's') ADVANCE(2215); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'l') ADVANCE(2611); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2113: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2111); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'l') ADVANCE(2105); + if (lookahead == 's') ADVANCE(2216); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2114: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2066); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'l') ADVANCE(2112); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2115: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2116); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'l') ADVANCE(2067); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2116: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2230); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'l') ADVANCE(2117); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2117: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2155); - if (lookahead == 'r') ADVANCE(2140); - if (lookahead == 'x') ADVANCE(2134); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'l') ADVANCE(2231); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2118: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'l') ADVANCE(2156); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'r') ADVANCE(2141); + if (lookahead == 'x') ADVANCE(2135); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2119: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2094); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'l') ADVANCE(2157); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2120: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'l') ADVANCE(2095); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2121: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2154); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'l') ADVANCE(2096); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2122: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2175); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2227); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + if (lookahead == 'n') ADVANCE(2155); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2123: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'n') ADVANCE(2176); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2238); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1633); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2228); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1616); END_STATE(); case 2124: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2178); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2244); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1726); + if (lookahead == 'n') ADVANCE(2177); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2239); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1634); END_STATE(); case 2125: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2177); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2246); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1645); + if (lookahead == 'n') ADVANCE(2179); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2245); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1727); END_STATE(); case 2126: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2241); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'n') ADVANCE(2178); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2247); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1646); END_STATE(); case 2127: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2243); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'n') ADVANCE(2242); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2128: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2172); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'n') ADVANCE(2244); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2129: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(2133); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'n') ADVANCE(2173); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2130: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(2168); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'o') ADVANCE(2134); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2131: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(2143); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'o') ADVANCE(2169); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2132: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(2147); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'o') ADVANCE(2144); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2133: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(2228); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'o') ADVANCE(2148); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2134: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(2131); - if (lookahead == 't') ADVANCE(2088); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'p') ADVANCE(2229); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2135: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2166); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'p') ADVANCE(2132); + if (lookahead == 't') ADVANCE(2089); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2136: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2039); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'r') ADVANCE(2167); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2137: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2171); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'r') ADVANCE(2040); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2138: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2071); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'r') ADVANCE(2172); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2139: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2046); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'r') ADVANCE(2072); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2140: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2132); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'r') ADVANCE(2047); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2141: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2126); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'r') ADVANCE(2133); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2142: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2082); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'r') ADVANCE(2127); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2143: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2160); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'r') ADVANCE(2083); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2144: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2045); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'r') ADVANCE(2161); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2145: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2114); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'r') ADVANCE(2046); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2146: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2220); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'r') ADVANCE(2115); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2147: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2236); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'r') ADVANCE(2221); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2148: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2248); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'r') ADVANCE(2237); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2149: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2127); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'r') ADVANCE(2249); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2150: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2076); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'r') ADVANCE(2128); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2151: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2165); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 's') ADVANCE(2077); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2152: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2089); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 's') ADVANCE(2166); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2153: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2232); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 's') ADVANCE(2090); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2154: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2164); - if (lookahead == 't') ADVANCE(2105); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 's') ADVANCE(2233); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2155: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2090); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 's') ADVANCE(2165); + if (lookahead == 't') ADVANCE(2106); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2156: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2093); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 's') ADVANCE(2091); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2157: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2070); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 's') ADVANCE(2094); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2158: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2050); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 't') ADVANCE(2071); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2159: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2040); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 't') ADVANCE(2051); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2160: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2052); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 't') ADVANCE(2041); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2161: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2048); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 't') ADVANCE(2053); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2162: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2047); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 't') ADVANCE(2049); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2163: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2222); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 't') ADVANCE(2048); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2164: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2235); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 't') ADVANCE(2223); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2165: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2097); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 't') ADVANCE(2236); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2166: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2075); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 't') ADVANCE(2098); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2167: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2113); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2192); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'u') ADVANCE(2076); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2168: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2138); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'u') ADVANCE(2114); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2193); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2169: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2115); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2197); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'u') ADVANCE(2139); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2170: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2149); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'u') ADVANCE(2116); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2198); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2171: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2092); - if (lookahead == 'y') ADVANCE(2223); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'u') ADVANCE(2150); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2172: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2096); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'u') ADVANCE(2093); + if (lookahead == 'y') ADVANCE(2224); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2173: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2120); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'u') ADVANCE(2097); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2174: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(2087); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'u') ADVANCE(2121); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2175: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(2227); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2227); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + if (lookahead == 'v') ADVANCE(2088); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2176: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(2238); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2238); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1633); + if (lookahead == 'v') ADVANCE(2228); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2228); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1616); END_STATE(); case 2177: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(2246); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2246); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1645); + if (lookahead == 'v') ADVANCE(2239); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2239); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1634); END_STATE(); case 2178: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(2249); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2244); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1726); + if (lookahead == 'v') ADVANCE(2247); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2247); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1646); END_STATE(); case 2179: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'y') ADVANCE(2245); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'v') ADVANCE(2250); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2245); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1727); END_STATE(); case 2180: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-' || - lookahead == '?') ADVANCE(2214); - if (set_contains(sym_attribute_identifier_character_set_2, 777, lookahead)) ADVANCE(2180); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'y') ADVANCE(2246); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2181: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2192); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == '-' || + lookahead == '?') ADVANCE(2215); + if (set_contains(sym_attribute_identifier_character_set_2, 777, lookahead)) ADVANCE(2181); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2182: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2197); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + lookahead == 'a') ADVANCE(2193); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2183: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2191); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2198); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2184: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2187); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + lookahead == 'f') ADVANCE(2192); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2185: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2189); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2221); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1711); + lookahead == 'f') ADVANCE(2188); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2186: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2199); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2190); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2222); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1712); END_STATE(); case 2187: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2196); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2225); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1751); + lookahead == 'i') ADVANCE(2200); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2188: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2200); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2225); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1751); + lookahead == 'i') ADVANCE(2197); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2226); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1752); END_STATE(); case 2189: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2198); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2221); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1711); + lookahead == 'i') ADVANCE(2201); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2226); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1752); END_STATE(); case 2190: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2201); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2221); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1711); + lookahead == 'i') ADVANCE(2199); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2222); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1712); END_STATE(); case 2191: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2195); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + lookahead == 'i') ADVANCE(2202); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2222); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1712); END_STATE(); case 2192: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2214); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2196); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2193: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2183); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + lookahead == 'n') ADVANCE(2215); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2194: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || lookahead == 'n') ADVANCE(2184); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2195: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2186); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + lookahead == 'n') ADVANCE(2185); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2196: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2188); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2225); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1751); + lookahead == 'n') ADVANCE(2187); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2197: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2218); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + lookahead == 'n') ADVANCE(2189); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2226); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1752); END_STATE(); case 2198: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2190); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2221); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1711); + lookahead == 'n') ADVANCE(2219); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2199: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2202); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2191); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2222); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1712); END_STATE(); case 2200: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2204); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2225); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1751); + lookahead == 't') ADVANCE(2203); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2201: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(2203); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2221); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1711); + lookahead == 't') ADVANCE(2205); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2226); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1752); END_STATE(); case 2202: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2214); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2204); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2222); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1712); END_STATE(); case 2203: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2221); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2221); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1711); + lookahead == 'y') ADVANCE(2215); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2204: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2225); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2225); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1751); + lookahead == 'y') ADVANCE(2222); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2222); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1712); END_STATE(); case 2205: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(2205); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2226); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2226); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1752); END_STATE(); case 2206: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '7') || + if (lookahead == '0' || + lookahead == '1' || lookahead == '_') ADVANCE(2206); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2207: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2054); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(2207); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2208: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2057); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2055); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2209: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2055); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2058); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2210: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2207); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2056); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2211: ACCEPT_TOKEN(sym_long_flag_identifier); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2208); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2212: ACCEPT_TOKEN(sym_long_flag_identifier); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2209); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2213: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2213); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2210); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2214: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2214); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2215: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1693); END_STATE(); case 2216: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2216); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1666); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1694); END_STATE(); case 2217: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2217); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1669); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1667); END_STATE(); case 2218: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2218); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1764); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1670); END_STATE(); case 2219: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2219); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1589); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1765); END_STATE(); case 2220: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2220); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1654); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1590); END_STATE(); case 2221: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2221); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1711); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1655); END_STATE(); case 2222: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2222); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1618); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1712); END_STATE(); case 2223: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2223); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1619); END_STATE(); case 2224: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2224); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1595); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1676); END_STATE(); case 2225: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2225); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1751); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1596); END_STATE(); case 2226: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2226); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1752); END_STATE(); case 2227: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2227); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1615); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1673); END_STATE(); case 2228: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2228); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1616); END_STATE(); case 2229: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2229); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1714); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1658); END_STATE(); case 2230: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2230); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1736); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1715); END_STATE(); case 2231: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2231); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1730); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1737); END_STATE(); case 2232: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2232); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1592); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1731); END_STATE(); case 2233: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2233); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1684); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1593); END_STATE(); case 2234: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2234); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1678); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1685); END_STATE(); case 2235: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2235); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1621); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1679); END_STATE(); case 2236: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2236); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1663); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1622); END_STATE(); case 2237: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2237); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1733); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1664); END_STATE(); case 2238: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2238); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1633); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1734); END_STATE(); case 2239: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2239); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1634); END_STATE(); case 2240: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2240); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1660); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1682); END_STATE(); case 2241: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2241); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1600); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1661); END_STATE(); case 2242: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2242); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1603); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1601); END_STATE(); case 2243: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2243); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1690); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1604); END_STATE(); case 2244: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2244); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1726); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1691); END_STATE(); case 2245: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2245); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1727); END_STATE(); case 2246: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2246); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1645); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1649); END_STATE(); case 2247: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2247); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1687); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1646); END_STATE(); case 2248: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2248); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1651); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1688); END_STATE(); case 2249: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2249); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1597); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1652); END_STATE(); case 2250: - ACCEPT_TOKEN(sym__newline); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2250); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1598); END_STATE(); case 2251: - ACCEPT_TOKEN(sym__space); - if (lookahead == ':') ADVANCE(2792); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2251); + ACCEPT_TOKEN(sym__newline); END_STATE(); case 2252: ACCEPT_TOKEN(sym__space); + if (lookahead == ':') ADVANCE(2793); if (lookahead == '\t' || lookahead == ' ') ADVANCE(2252); END_STATE(); case 2253: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(sym__space); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2253); END_STATE(); case 2254: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 2255: - ACCEPT_TOKEN(anon_sym_err_GT_PIPE); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 2256: - ACCEPT_TOKEN(anon_sym_out_GT_PIPE); + ACCEPT_TOKEN(anon_sym_err_GT_PIPE); END_STATE(); case 2257: - ACCEPT_TOKEN(anon_sym_e_GT_PIPE); + ACCEPT_TOKEN(anon_sym_out_GT_PIPE); END_STATE(); case 2258: - ACCEPT_TOKEN(anon_sym_o_GT_PIPE); + ACCEPT_TOKEN(anon_sym_e_GT_PIPE); END_STATE(); case 2259: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); + ACCEPT_TOKEN(anon_sym_o_GT_PIPE); END_STATE(); case 2260: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); END_STATE(); case 2261: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); END_STATE(); case 2262: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); END_STATE(); case 2263: - ACCEPT_TOKEN(sym_attribute_identifier); - if (set_contains(sym_attribute_identifier_character_set_2, 777, lookahead)) ADVANCE(2263); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); END_STATE(); case 2264: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(sym_attribute_identifier); + if (set_contains(sym_attribute_identifier_character_set_2, 777, lookahead)) ADVANCE(2264); END_STATE(); case 2265: - ACCEPT_TOKEN(anon_sym_def); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 2266: ACCEPT_TOKEN(anon_sym_def); - if (lookahead == ',') ADVANCE(1589); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3932); END_STATE(); case 2267: ACCEPT_TOKEN(anon_sym_def); - if (lookahead == ',') ADVANCE(1589); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1587); + if (lookahead == ',') ADVANCE(1590); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3933); END_STATE(); case 2268: ACCEPT_TOKEN(anon_sym_def); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1589); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1588); + if (lookahead == ',') ADVANCE(1590); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1588); END_STATE(); case 2269: ACCEPT_TOKEN(anon_sym_def); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1589); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1590); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1589); END_STATE(); case 2270: - ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (lookahead == ',') ADVANCE(1597); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3978); + ACCEPT_TOKEN(anon_sym_def); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1590); END_STATE(); case 2271: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (lookahead == ',') ADVANCE(1597); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1596); + if (lookahead == ',') ADVANCE(1598); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3979); END_STATE(); case 2272: ACCEPT_TOKEN(anon_sym_export_DASHenv); + if (lookahead == ',') ADVANCE(1598); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1597); END_STATE(); case 2273: - ACCEPT_TOKEN(anon_sym_extern); + ACCEPT_TOKEN(anon_sym_export_DASHenv); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1598); END_STATE(); case 2274: ACCEPT_TOKEN(anon_sym_extern); - if (lookahead == ',') ADVANCE(1600); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3968); END_STATE(); case 2275: ACCEPT_TOKEN(anon_sym_extern); - if (lookahead == ',') ADVANCE(1600); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1598); + if (lookahead == ',') ADVANCE(1601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3969); END_STATE(); case 2276: ACCEPT_TOKEN(anon_sym_extern); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1600); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1599); + if (lookahead == ',') ADVANCE(1601); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1599); END_STATE(); case 2277: ACCEPT_TOKEN(anon_sym_extern); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1600); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1601); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1600); END_STATE(); case 2278: - ACCEPT_TOKEN(anon_sym_module); + ACCEPT_TOKEN(anon_sym_extern); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1601); END_STATE(); case 2279: ACCEPT_TOKEN(anon_sym_module); - if (lookahead == ',') ADVANCE(1603); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3969); END_STATE(); case 2280: ACCEPT_TOKEN(anon_sym_module); - if (lookahead == ',') ADVANCE(1603); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1601); + if (lookahead == ',') ADVANCE(1604); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3970); END_STATE(); case 2281: ACCEPT_TOKEN(anon_sym_module); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1603); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1602); + if (lookahead == ',') ADVANCE(1604); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1602); END_STATE(); case 2282: ACCEPT_TOKEN(anon_sym_module); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1603); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1604); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1603); END_STATE(); case 2283: - ACCEPT_TOKEN(anon_sym_use); + ACCEPT_TOKEN(anon_sym_module); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1604); END_STATE(); case 2284: ACCEPT_TOKEN(anon_sym_use); - if (lookahead == ',') ADVANCE(1595); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3940); END_STATE(); case 2285: ACCEPT_TOKEN(anon_sym_use); - if (lookahead == ',') ADVANCE(1595); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1593); + if (lookahead == ',') ADVANCE(1596); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3941); END_STATE(); case 2286: ACCEPT_TOKEN(anon_sym_use); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1595); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1594); + if (lookahead == ',') ADVANCE(1596); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1594); END_STATE(); case 2287: ACCEPT_TOKEN(anon_sym_use); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1596); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1595); END_STATE(); case 2288: ACCEPT_TOKEN(anon_sym_use); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1595); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2289: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_use); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1596); END_STATE(); case 2290: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 2291: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 2292: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 2293: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 2294: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 2295: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 2296: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 2297: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(2778); - if (lookahead == '\'') ADVANCE(2775); END_STATE(); case 2298: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(2778); - if (lookahead == '\'') ADVANCE(2775); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4092); + if (lookahead == '"') ADVANCE(2779); + if (lookahead == '\'') ADVANCE(2776); END_STATE(); case 2299: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(2778); - if (lookahead == '\'') ADVANCE(2775); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '"') ADVANCE(2779); + if (lookahead == '\'') ADVANCE(2776); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4093); END_STATE(); case 2300: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4092); + if (lookahead == '"') ADVANCE(2779); + if (lookahead == '\'') ADVANCE(2776); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2301: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4093); END_STATE(); case 2302: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 2303: - ACCEPT_TOKEN(anon_sym_cell_DASHpath); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2304: - ACCEPT_TOKEN(anon_sym_error); - if (lookahead == ',') ADVANCE(1663); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3960); + ACCEPT_TOKEN(anon_sym_cell_DASHpath); END_STATE(); case 2305: ACCEPT_TOKEN(anon_sym_error); - if (lookahead == ',') ADVANCE(1663); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1661); + if (lookahead == ',') ADVANCE(1664); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3961); END_STATE(); case 2306: ACCEPT_TOKEN(anon_sym_error); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1663); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1662); + if (lookahead == ',') ADVANCE(1664); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1662); END_STATE(); case 2307: ACCEPT_TOKEN(anon_sym_error); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1664); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1663); END_STATE(); case 2308: ACCEPT_TOKEN(anon_sym_error); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1663); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2309: - ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); + ACCEPT_TOKEN(anon_sym_error); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1664); END_STATE(); case 2310: - ACCEPT_TOKEN(anon_sym_import_DASHpattern); + ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); END_STATE(); case 2311: - ACCEPT_TOKEN(anon_sym_one_DASHof); + ACCEPT_TOKEN(anon_sym_import_DASHpattern); END_STATE(); case 2312: - ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); + ACCEPT_TOKEN(anon_sym_one_DASHof); END_STATE(); case 2313: - ACCEPT_TOKEN(anon_sym_GT2); + ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); END_STATE(); case 2314: ACCEPT_TOKEN(anon_sym_GT2); - if (lookahead == '=') ADVANCE(2485); END_STATE(); case 2315: ACCEPT_TOKEN(anon_sym_GT2); if (lookahead == '=') ADVANCE(2486); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); END_STATE(); case 2316: - ACCEPT_TOKEN(anon_sym_AT2); + ACCEPT_TOKEN(anon_sym_GT2); + if (lookahead == '=') ADVANCE(2487); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2317: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_AT2); END_STATE(); case 2318: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4092); END_STATE(); case 2319: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4093); END_STATE(); case 2320: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 2321: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); END_STATE(); case 2322: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4092); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2323: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4093); END_STATE(); case 2324: - ACCEPT_TOKEN(anon_sym_DASH2); + ACCEPT_TOKEN(anon_sym_DASH_DASH); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2325: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(2320); END_STATE(); case 2326: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(2320); - if (lookahead == '.') ADVANCE(441); - if (lookahead == '_') ADVANCE(413); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(638); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); + if (lookahead == '-') ADVANCE(2321); END_STATE(); case 2327: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(2320); + if (lookahead == '-') ADVANCE(2321); if (lookahead == '.') ADVANCE(442); - if (lookahead == '_') ADVANCE(418); + if (lookahead == '_') ADVANCE(414); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(638); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + lookahead == 'i') ADVANCE(639); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); END_STATE(); case 2328: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(2320); - if (lookahead == '.') ADVANCE(442); - if (lookahead == '_') ADVANCE(418); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if (lookahead == '-') ADVANCE(2321); + if (lookahead == '.') ADVANCE(443); + if (lookahead == '_') ADVANCE(419); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(639); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2595); END_STATE(); case 2329: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(2320); - if (lookahead == '.') ADVANCE(3108); - if (lookahead == '_') ADVANCE(3077); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3238); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if (lookahead == '-') ADVANCE(2321); + if (lookahead == '.') ADVANCE(443); + if (lookahead == '_') ADVANCE(419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2595); END_STATE(); case 2330: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(2320); - if (lookahead == '.') ADVANCE(3885); - if (lookahead == '_') ADVANCE(3874); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if (lookahead == '-') ADVANCE(2321); + if (lookahead == '.') ADVANCE(3109); + if (lookahead == '_') ADVANCE(3078); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3239); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2595); END_STATE(); case 2331: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(2320); - if (lookahead == '.') ADVANCE(3112); - if (lookahead == '_') ADVANCE(3078); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3238); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); + if (lookahead == '-') ADVANCE(2321); + if (lookahead == '.') ADVANCE(3886); + if (lookahead == '_') ADVANCE(3875); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2595); END_STATE(); case 2332: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(2323); - if (lookahead == '.') ADVANCE(3321); - if (lookahead == '_') ADVANCE(3293); + if (lookahead == '-') ADVANCE(2321); + if (lookahead == '.') ADVANCE(3113); + if (lookahead == '_') ADVANCE(3079); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3506); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3321); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + lookahead == 'i') ADVANCE(3239); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); END_STATE(); case 2333: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(2323); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '-') ADVANCE(2322); + if (lookahead == '.') ADVANCE(442); + if (lookahead == '_') ADVANCE(2894); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2923); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2898); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2334: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(2321); - if (lookahead == '.') ADVANCE(441); - if (lookahead == '_') ADVANCE(2893); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2922); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2897); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == '-') ADVANCE(2322); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2335: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(2321); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == '-') ADVANCE(2324); + if (lookahead == '.') ADVANCE(3322); + if (lookahead == '_') ADVANCE(3294); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3507); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3322); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2336: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(2322); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4092); + if (lookahead == '-') ADVANCE(2324); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2337: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(441); - if (lookahead == '=') ADVANCE(853); - if (lookahead == '_') ADVANCE(413); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(635); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); + if (lookahead == '-') ADVANCE(2323); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4093); END_STATE(); case 2338: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(441); - if (lookahead == '_') ADVANCE(413); + if (lookahead == '.') ADVANCE(442); + if (lookahead == '=') ADVANCE(854); + if (lookahead == '_') ADVANCE(414); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(635); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); + lookahead == 'i') ADVANCE(636); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); END_STATE(); case 2339: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(441); - if (lookahead == '_') ADVANCE(413); + if (lookahead == '.') ADVANCE(442); + if (lookahead == '_') ADVANCE(414); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(638); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); + lookahead == 'i') ADVANCE(636); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); END_STATE(); case 2340: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(3989); - if (lookahead == '_') ADVANCE(3980); + if (lookahead == '.') ADVANCE(442); + if (lookahead == '_') ADVANCE(414); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4085); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3989); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4092); + lookahead == 'i') ADVANCE(639); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); END_STATE(); case 2341: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(442); - if (lookahead == '_') ADVANCE(418); + if (lookahead == '.') ADVANCE(3990); + if (lookahead == '_') ADVANCE(3981); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(635); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + lookahead == 'i') ADVANCE(4086); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3990); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4093); END_STATE(); case 2342: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(442); - if (lookahead == '_') ADVANCE(418); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if (lookahead == '.') ADVANCE(443); + if (lookahead == '_') ADVANCE(419); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(636); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2595); END_STATE(); case 2343: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(3108); - if (lookahead == '_') ADVANCE(3077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if (lookahead == '.') ADVANCE(443); + if (lookahead == '_') ADVANCE(419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2595); END_STATE(); case 2344: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(3885); - if (lookahead == '_') ADVANCE(3874); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3905); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if (lookahead == '.') ADVANCE(3109); + if (lookahead == '_') ADVANCE(3078); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2595); END_STATE(); case 2345: ACCEPT_TOKEN(anon_sym_DASH2); if (lookahead == '.') ADVANCE(3886); - if (lookahead == '_') ADVANCE(3876); + if (lookahead == '_') ADVANCE(3875); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3905); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); + lookahead == 'i') ADVANCE(3906); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2595); END_STATE(); case 2346: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '=') ADVANCE(853); + if (lookahead == '.') ADVANCE(3887); + if (lookahead == '_') ADVANCE(3877); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3906); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); END_STATE(); case 2347: ACCEPT_TOKEN(anon_sym_DASH2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '=') ADVANCE(854); END_STATE(); case 2348: - ACCEPT_TOKEN(sym_param_short_flag_identifier); + ACCEPT_TOKEN(anon_sym_DASH2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2349: - ACCEPT_TOKEN(anon_sym_break); - if (lookahead == ',') ADVANCE(1684); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3957); + ACCEPT_TOKEN(sym_param_short_flag_identifier); END_STATE(); case 2350: ACCEPT_TOKEN(anon_sym_break); - if (lookahead == ',') ADVANCE(1684); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1682); + if (lookahead == ',') ADVANCE(1685); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3958); END_STATE(); case 2351: ACCEPT_TOKEN(anon_sym_break); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1684); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1683); + if (lookahead == ',') ADVANCE(1685); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1683); END_STATE(); case 2352: ACCEPT_TOKEN(anon_sym_break); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1684); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1685); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1684); END_STATE(); case 2353: - ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == ',') ADVANCE(1687); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3976); + ACCEPT_TOKEN(anon_sym_break); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1685); END_STATE(); case 2354: ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == ',') ADVANCE(1687); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1685); + if (lookahead == ',') ADVANCE(1688); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3977); END_STATE(); case 2355: ACCEPT_TOKEN(anon_sym_continue); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1687); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1686); + if (lookahead == ',') ADVANCE(1688); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1686); END_STATE(); case 2356: ACCEPT_TOKEN(anon_sym_continue); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1687); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1688); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1687); END_STATE(); case 2357: - ACCEPT_TOKEN(anon_sym_for); - if (lookahead == ',') ADVANCE(1654); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3933); + ACCEPT_TOKEN(anon_sym_continue); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1688); END_STATE(); case 2358: ACCEPT_TOKEN(anon_sym_for); - if (lookahead == ',') ADVANCE(1654); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1652); + if (lookahead == ',') ADVANCE(1655); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3934); END_STATE(); case 2359: ACCEPT_TOKEN(anon_sym_for); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1654); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1653); + if (lookahead == ',') ADVANCE(1655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1653); END_STATE(); case 2360: ACCEPT_TOKEN(anon_sym_for); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1654); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1655); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1654); END_STATE(); case 2361: - ACCEPT_TOKEN(anon_sym_in2); + ACCEPT_TOKEN(anon_sym_for); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1655); END_STATE(); case 2362: ACCEPT_TOKEN(anon_sym_in2); - if (lookahead == ',') ADVANCE(1711); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1694); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1699); END_STATE(); case 2363: ACCEPT_TOKEN(anon_sym_in2); - if (lookahead == ',') ADVANCE(1711); + if (lookahead == ',') ADVANCE(1712); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3919); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3924); + lookahead == 'f') ADVANCE(1695); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1700); END_STATE(); case 2364: ACCEPT_TOKEN(anon_sym_in2); + if (lookahead == ',') ADVANCE(1712); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1700); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1711); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1710); + lookahead == 'f') ADVANCE(3920); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3925); END_STATE(); case 2365: ACCEPT_TOKEN(anon_sym_in2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1702); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1711); + lookahead == 'f') ADVANCE(1701); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1712); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1711); END_STATE(); case 2366: ACCEPT_TOKEN(anon_sym_in2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1703); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1712); END_STATE(); case 2367: ACCEPT_TOKEN(anon_sym_in2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2368: - ACCEPT_TOKEN(anon_sym_loop); - if (lookahead == ',') ADVANCE(1657); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3952); + ACCEPT_TOKEN(anon_sym_in2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2369: ACCEPT_TOKEN(anon_sym_loop); - if (lookahead == ',') ADVANCE(1657); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1655); + if (lookahead == ',') ADVANCE(1658); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3953); END_STATE(); case 2370: ACCEPT_TOKEN(anon_sym_loop); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1656); + if (lookahead == ',') ADVANCE(1658); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1656); END_STATE(); case 2371: ACCEPT_TOKEN(anon_sym_loop); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1657); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1658); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1657); END_STATE(); case 2372: - ACCEPT_TOKEN(anon_sym_make); + ACCEPT_TOKEN(anon_sym_loop); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1658); END_STATE(); case 2373: ACCEPT_TOKEN(anon_sym_make); - if (lookahead == ',') ADVANCE(1714); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3953); END_STATE(); case 2374: ACCEPT_TOKEN(anon_sym_make); - if (lookahead == ',') ADVANCE(1714); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1712); + if (lookahead == ',') ADVANCE(1715); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3954); END_STATE(); case 2375: ACCEPT_TOKEN(anon_sym_make); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1714); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1713); + if (lookahead == ',') ADVANCE(1715); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1713); END_STATE(); case 2376: ACCEPT_TOKEN(anon_sym_make); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1714); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1715); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1714); END_STATE(); case 2377: - ACCEPT_TOKEN(anon_sym_while); - if (lookahead == ',') ADVANCE(1660); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3963); + ACCEPT_TOKEN(anon_sym_make); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1715); END_STATE(); case 2378: ACCEPT_TOKEN(anon_sym_while); - if (lookahead == ',') ADVANCE(1660); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1658); + if (lookahead == ',') ADVANCE(1661); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3964); END_STATE(); case 2379: ACCEPT_TOKEN(anon_sym_while); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1659); + if (lookahead == ',') ADVANCE(1661); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1659); END_STATE(); case 2380: ACCEPT_TOKEN(anon_sym_while); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1660); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1660); END_STATE(); case 2381: - ACCEPT_TOKEN(anon_sym_do); + ACCEPT_TOKEN(anon_sym_while); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1661); END_STATE(); case 2382: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == ',') ADVANCE(1666); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3917); END_STATE(); case 2383: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == ',') ADVANCE(1666); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1664); + if (lookahead == ',') ADVANCE(1667); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3918); END_STATE(); case 2384: ACCEPT_TOKEN(anon_sym_do); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1666); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1665); + if (lookahead == ',') ADVANCE(1667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1665); END_STATE(); case 2385: ACCEPT_TOKEN(anon_sym_do); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1666); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1667); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1666); END_STATE(); case 2386: - ACCEPT_TOKEN(anon_sym_if); + ACCEPT_TOKEN(anon_sym_do); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1667); END_STATE(); case 2387: ACCEPT_TOKEN(anon_sym_if); - if (lookahead == ',') ADVANCE(1669); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3918); END_STATE(); case 2388: ACCEPT_TOKEN(anon_sym_if); - if (lookahead == ',') ADVANCE(1669); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1667); + if (lookahead == ',') ADVANCE(1670); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3919); END_STATE(); case 2389: ACCEPT_TOKEN(anon_sym_if); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1669); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1668); + if (lookahead == ',') ADVANCE(1670); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1668); END_STATE(); case 2390: ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1669); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1670); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1669); END_STATE(); case 2391: ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1670); END_STATE(); case 2392: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(anon_sym_if); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2393: ACCEPT_TOKEN(anon_sym_else); - if (lookahead == ',') ADVANCE(1672); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3947); END_STATE(); case 2394: ACCEPT_TOKEN(anon_sym_else); - if (lookahead == ',') ADVANCE(1672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1670); + if (lookahead == ',') ADVANCE(1673); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3948); END_STATE(); case 2395: ACCEPT_TOKEN(anon_sym_else); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1672); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1671); + if (lookahead == ',') ADVANCE(1673); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1671); END_STATE(); case 2396: ACCEPT_TOKEN(anon_sym_else); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1672); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1673); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1672); END_STATE(); case 2397: - ACCEPT_TOKEN(anon_sym_match); + ACCEPT_TOKEN(anon_sym_else); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1673); END_STATE(); case 2398: ACCEPT_TOKEN(anon_sym_match); - if (lookahead == ',') ADVANCE(1681); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3962); END_STATE(); case 2399: ACCEPT_TOKEN(anon_sym_match); - if (lookahead == ',') ADVANCE(1681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1679); + if (lookahead == ',') ADVANCE(1682); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3963); END_STATE(); case 2400: ACCEPT_TOKEN(anon_sym_match); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1681); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1680); + if (lookahead == ',') ADVANCE(1682); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1680); END_STATE(); case 2401: ACCEPT_TOKEN(anon_sym_match); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1681); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1682); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1681); END_STATE(); case 2402: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_match); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1682); END_STATE(); case 2403: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 2404: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 2405: ACCEPT_TOKEN(anon_sym_EQ_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); END_STATE(); case 2406: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(1976); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1976); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + ACCEPT_TOKEN(anon_sym_EQ_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2407: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(2968); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (lookahead == '_') ADVANCE(1977); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1977); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2408: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(858); - if (lookahead == '<') ADVANCE(2563); - if (lookahead == '=') ADVANCE(2560); + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '_') ADVANCE(2969); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); END_STATE(); case 2409: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(2940); - if (lookahead == '<') ADVANCE(2563); - if (lookahead == '=') ADVANCE(2560); + if (lookahead == '.') ADVANCE(859); + if (lookahead == '<') ADVANCE(2564); + if (lookahead == '=') ADVANCE(2561); END_STATE(); case 2410: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(3537); - if (lookahead == '<') ADVANCE(2563); - if (lookahead == '=') ADVANCE(2560); + if (lookahead == '.') ADVANCE(2941); + if (lookahead == '<') ADVANCE(2564); + if (lookahead == '=') ADVANCE(2561); END_STATE(); case 2411: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(2563); - if (lookahead == '=') ADVANCE(2560); + if (lookahead == '.') ADVANCE(3538); + if (lookahead == '<') ADVANCE(2564); + if (lookahead == '=') ADVANCE(2561); END_STATE(); case 2412: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(2565); - if (lookahead == '=') ADVANCE(2562); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '<') ADVANCE(2564); + if (lookahead == '=') ADVANCE(2561); END_STATE(); case 2413: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(2564); - if (lookahead == '=') ADVANCE(2561); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '<') ADVANCE(2566); + if (lookahead == '=') ADVANCE(2563); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2414: - ACCEPT_TOKEN(anon_sym_DOLLAR2); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '<') ADVANCE(2565); + if (lookahead == '=') ADVANCE(2562); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 2415: ACCEPT_TOKEN(anon_sym_DOLLAR2); - if (lookahead == '"') ADVANCE(2778); - if (lookahead == '\'') ADVANCE(2775); END_STATE(); case 2416: - ACCEPT_TOKEN(anon_sym_try); + ACCEPT_TOKEN(anon_sym_DOLLAR2); + if (lookahead == '"') ADVANCE(2779); + if (lookahead == '\'') ADVANCE(2776); END_STATE(); case 2417: ACCEPT_TOKEN(anon_sym_try); - if (lookahead == ',') ADVANCE(1675); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3939); END_STATE(); case 2418: ACCEPT_TOKEN(anon_sym_try); - if (lookahead == ',') ADVANCE(1675); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1673); + if (lookahead == ',') ADVANCE(1676); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3940); END_STATE(); case 2419: ACCEPT_TOKEN(anon_sym_try); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1675); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1674); + if (lookahead == ',') ADVANCE(1676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1674); END_STATE(); case 2420: ACCEPT_TOKEN(anon_sym_try); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1675); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1676); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1675); END_STATE(); case 2421: - ACCEPT_TOKEN(anon_sym_catch); + ACCEPT_TOKEN(anon_sym_try); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1676); END_STATE(); case 2422: ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == ',') ADVANCE(1678); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3958); END_STATE(); case 2423: ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == ',') ADVANCE(1678); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1676); + if (lookahead == ',') ADVANCE(1679); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3959); END_STATE(); case 2424: ACCEPT_TOKEN(anon_sym_catch); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1678); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1677); + if (lookahead == ',') ADVANCE(1679); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1677); END_STATE(); case 2425: ACCEPT_TOKEN(anon_sym_catch); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1678); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1679); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1678); END_STATE(); case 2426: - ACCEPT_TOKEN(anon_sym_return); - if (lookahead == ',') ADVANCE(1690); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3970); + ACCEPT_TOKEN(anon_sym_catch); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1679); END_STATE(); case 2427: ACCEPT_TOKEN(anon_sym_return); - if (lookahead == ',') ADVANCE(1690); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1688); + if (lookahead == ',') ADVANCE(1691); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3971); END_STATE(); case 2428: ACCEPT_TOKEN(anon_sym_return); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1690); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1689); + if (lookahead == ',') ADVANCE(1691); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1689); END_STATE(); case 2429: ACCEPT_TOKEN(anon_sym_return); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1690); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1691); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1690); END_STATE(); case 2430: - ACCEPT_TOKEN(anon_sym_source); - if (lookahead == ',') ADVANCE(1645); - if (lookahead == '-') ADVANCE(1634); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1637); + ACCEPT_TOKEN(anon_sym_return); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1691); END_STATE(); case 2431: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == ',') ADVANCE(1645); - if (lookahead == '-') ADVANCE(3971); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3974); + if (lookahead == ',') ADVANCE(1646); + if (lookahead == '-') ADVANCE(1635); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1638); END_STATE(); case 2432: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(1638); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1645); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1644); + if (lookahead == ',') ADVANCE(1646); + if (lookahead == '-') ADVANCE(3972); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3975); END_STATE(); case 2433: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(1638); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1645); + if (lookahead == '-') ADVANCE(1639); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1646); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1645); END_STATE(); case 2434: - ACCEPT_TOKEN(anon_sym_source_DASHenv); - if (lookahead == ',') ADVANCE(1645); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3974); + ACCEPT_TOKEN(anon_sym_source); + if (lookahead == '-') ADVANCE(1639); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1646); END_STATE(); case 2435: ACCEPT_TOKEN(anon_sym_source_DASHenv); - if (lookahead == ',') ADVANCE(1645); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1637); + if (lookahead == ',') ADVANCE(1646); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3975); END_STATE(); case 2436: ACCEPT_TOKEN(anon_sym_source_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1645); + if (lookahead == ',') ADVANCE(1646); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1638); END_STATE(); case 2437: - ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == ',') ADVANCE(1633); - if (lookahead == '-') ADVANCE(1622); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1625); + ACCEPT_TOKEN(anon_sym_source_DASHenv); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1646); END_STATE(); case 2438: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == ',') ADVANCE(1633); - if (lookahead == '-') ADVANCE(3948); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3951); + if (lookahead == ',') ADVANCE(1634); + if (lookahead == '-') ADVANCE(1623); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1626); END_STATE(); case 2439: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(1626); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1633); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1632); + if (lookahead == ',') ADVANCE(1634); + if (lookahead == '-') ADVANCE(3949); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3952); END_STATE(); case 2440: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(1626); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1633); + if (lookahead == '-') ADVANCE(1627); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1634); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1633); END_STATE(); case 2441: ACCEPT_TOKEN(anon_sym_hide); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == '-') ADVANCE(1627); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1634); END_STATE(); case 2442: - ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if (lookahead == ',') ADVANCE(1633); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3951); + ACCEPT_TOKEN(anon_sym_hide); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2443: ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if (lookahead == ',') ADVANCE(1633); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1625); + if (lookahead == ',') ADVANCE(1634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3952); END_STATE(); case 2444: ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1633); + if (lookahead == ',') ADVANCE(1634); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1626); END_STATE(); case 2445: - ACCEPT_TOKEN(anon_sym_overlay); - if (lookahead == ',') ADVANCE(1648); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3975); + ACCEPT_TOKEN(anon_sym_hide_DASHenv); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1634); END_STATE(); case 2446: ACCEPT_TOKEN(anon_sym_overlay); - if (lookahead == ',') ADVANCE(1648); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1646); + if (lookahead == ',') ADVANCE(1649); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3976); END_STATE(); case 2447: ACCEPT_TOKEN(anon_sym_overlay); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1648); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1647); + if (lookahead == ',') ADVANCE(1649); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1647); END_STATE(); case 2448: ACCEPT_TOKEN(anon_sym_overlay); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1648); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1649); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1648); END_STATE(); case 2449: - ACCEPT_TOKEN(anon_sym_as); + ACCEPT_TOKEN(anon_sym_overlay); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1649); END_STATE(); case 2450: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == ',') ADVANCE(1693); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3916); END_STATE(); case 2451: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == ',') ADVANCE(1693); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1691); + if (lookahead == ',') ADVANCE(1694); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3917); END_STATE(); case 2452: ACCEPT_TOKEN(anon_sym_as); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1693); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1692); + if (lookahead == ',') ADVANCE(1694); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1692); END_STATE(); case 2453: ACCEPT_TOKEN(anon_sym_as); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1693); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1694); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1693); END_STATE(); case 2454: - ACCEPT_TOKEN(anon_sym_STAR2); + ACCEPT_TOKEN(anon_sym_as); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1694); END_STATE(); case 2455: ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(2493); END_STATE(); case 2456: ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(2493); - if (lookahead == '=') ADVANCE(854); + if (lookahead == '*') ADVANCE(2494); END_STATE(); case 2457: ACCEPT_TOKEN(anon_sym_STAR2); if (lookahead == '*') ADVANCE(2494); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '=') ADVANCE(855); END_STATE(); case 2458: - ACCEPT_TOKEN(anon_sym_QMARK2); + ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(2495); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2459: - ACCEPT_TOKEN(anon_sym_where); + ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); case 2460: - ACCEPT_TOKEN(anon_sym_and2); + ACCEPT_TOKEN(anon_sym_where); END_STATE(); case 2461: ACCEPT_TOKEN(anon_sym_and2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); END_STATE(); case 2462: - ACCEPT_TOKEN(anon_sym_xor2); + ACCEPT_TOKEN(anon_sym_and2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2463: ACCEPT_TOKEN(anon_sym_xor2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); END_STATE(); case 2464: - ACCEPT_TOKEN(anon_sym_or2); + ACCEPT_TOKEN(anon_sym_xor2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2465: ACCEPT_TOKEN(anon_sym_or2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); END_STATE(); case 2466: - ACCEPT_TOKEN(anon_sym_not_DASHin2); + ACCEPT_TOKEN(anon_sym_or2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2467: ACCEPT_TOKEN(anon_sym_not_DASHin2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); END_STATE(); case 2468: - ACCEPT_TOKEN(anon_sym_has2); + ACCEPT_TOKEN(anon_sym_not_DASHin2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2469: ACCEPT_TOKEN(anon_sym_has2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); END_STATE(); case 2470: - ACCEPT_TOKEN(anon_sym_not_DASHhas2); + ACCEPT_TOKEN(anon_sym_has2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2471: ACCEPT_TOKEN(anon_sym_not_DASHhas2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); END_STATE(); case 2472: - ACCEPT_TOKEN(anon_sym_starts_DASHwith2); + ACCEPT_TOKEN(anon_sym_not_DASHhas2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2473: ACCEPT_TOKEN(anon_sym_starts_DASHwith2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); END_STATE(); case 2474: - ACCEPT_TOKEN(anon_sym_ends_DASHwith2); + ACCEPT_TOKEN(anon_sym_starts_DASHwith2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2475: ACCEPT_TOKEN(anon_sym_ends_DASHwith2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); END_STATE(); case 2476: - ACCEPT_TOKEN(anon_sym_EQ_EQ2); + ACCEPT_TOKEN(anon_sym_ends_DASHwith2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2477: ACCEPT_TOKEN(anon_sym_EQ_EQ2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); END_STATE(); case 2478: - ACCEPT_TOKEN(anon_sym_BANG_EQ2); + ACCEPT_TOKEN(anon_sym_EQ_EQ2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2479: ACCEPT_TOKEN(anon_sym_BANG_EQ2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); END_STATE(); case 2480: - ACCEPT_TOKEN(anon_sym_LT2); + ACCEPT_TOKEN(anon_sym_BANG_EQ2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2481: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(2483); END_STATE(); case 2482: ACCEPT_TOKEN(anon_sym_LT2); if (lookahead == '=') ADVANCE(2484); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); END_STATE(); case 2483: - ACCEPT_TOKEN(anon_sym_LT_EQ2); + ACCEPT_TOKEN(anon_sym_LT2); + if (lookahead == '=') ADVANCE(2485); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2484: ACCEPT_TOKEN(anon_sym_LT_EQ2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); END_STATE(); case 2485: - ACCEPT_TOKEN(anon_sym_GT_EQ2); + ACCEPT_TOKEN(anon_sym_LT_EQ2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2486: ACCEPT_TOKEN(anon_sym_GT_EQ2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); END_STATE(); case 2487: - ACCEPT_TOKEN(anon_sym_EQ_TILDE2); + ACCEPT_TOKEN(anon_sym_GT_EQ2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2488: ACCEPT_TOKEN(anon_sym_EQ_TILDE2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); END_STATE(); case 2489: - ACCEPT_TOKEN(anon_sym_BANG_TILDE2); + ACCEPT_TOKEN(anon_sym_EQ_TILDE2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2490: ACCEPT_TOKEN(anon_sym_BANG_TILDE2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); END_STATE(); case 2491: - ACCEPT_TOKEN(aux_sym_expr_unary_token1); + ACCEPT_TOKEN(anon_sym_BANG_TILDE2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2492: - ACCEPT_TOKEN(anon_sym_LPAREN2); + ACCEPT_TOKEN(aux_sym_expr_unary_token1); END_STATE(); case 2493: - ACCEPT_TOKEN(anon_sym_STAR_STAR2); + ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); case 2494: ACCEPT_TOKEN(anon_sym_STAR_STAR2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); END_STATE(); case 2495: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + ACCEPT_TOKEN(anon_sym_STAR_STAR2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2496: ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if (lookahead == '=') ADVANCE(856); END_STATE(); case 2497: ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '=') ADVANCE(857); END_STATE(); case 2498: - ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(2505); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2499: ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(2505); - if (lookahead == '=') ADVANCE(855); + if (lookahead == '/') ADVANCE(2506); END_STATE(); case 2500: ACCEPT_TOKEN(anon_sym_SLASH2); if (lookahead == '/') ADVANCE(2506); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '=') ADVANCE(856); END_STATE(); case 2501: ACCEPT_TOKEN(anon_sym_SLASH2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == '/') ADVANCE(2507); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2502: - ACCEPT_TOKEN(anon_sym_mod2); + ACCEPT_TOKEN(anon_sym_SLASH2); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2503: ACCEPT_TOKEN(anon_sym_mod2); - if (lookahead == 'u') ADVANCE(1409); END_STATE(); case 2504: ACCEPT_TOKEN(anon_sym_mod2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'u') ADVANCE(1410); END_STATE(); case 2505: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); + ACCEPT_TOKEN(anon_sym_mod2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2506: ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); END_STATE(); case 2507: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(2495); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2508: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(2495); - if (lookahead == '.') ADVANCE(442); - if (lookahead == '_') ADVANCE(418); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if (lookahead == '+') ADVANCE(2496); END_STATE(); case 2509: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(2495); - if (lookahead == '.') ADVANCE(3108); - if (lookahead == '_') ADVANCE(3077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if (lookahead == '+') ADVANCE(2496); + if (lookahead == '.') ADVANCE(443); + if (lookahead == '_') ADVANCE(419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2595); END_STATE(); case 2510: ACCEPT_TOKEN(anon_sym_PLUS2); if (lookahead == '+') ADVANCE(2496); - if (lookahead == '.') ADVANCE(1281); - if (lookahead == '=') ADVANCE(852); - if (lookahead == '_') ADVANCE(1019); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); + if (lookahead == '.') ADVANCE(3109); + if (lookahead == '_') ADVANCE(3078); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2595); END_STATE(); case 2511: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(2496); - if (lookahead == '=') ADVANCE(852); + if (lookahead == '+') ADVANCE(2497); + if (lookahead == '.') ADVANCE(1282); + if (lookahead == '=') ADVANCE(853); + if (lookahead == '_') ADVANCE(1020); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); END_STATE(); case 2512: ACCEPT_TOKEN(anon_sym_PLUS2); if (lookahead == '+') ADVANCE(2497); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '=') ADVANCE(853); END_STATE(); case 2513: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(1281); - if (lookahead == '_') ADVANCE(1019); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); + if (lookahead == '+') ADVANCE(2498); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2514: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(3988); - if (lookahead == '_') ADVANCE(3979); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3988); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == '.') ADVANCE(1282); + if (lookahead == '_') ADVANCE(1020); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); END_STATE(); case 2515: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(882); - if (lookahead == '_') ADVANCE(871); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if (lookahead == '.') ADVANCE(3989); + if (lookahead == '_') ADVANCE(3980); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3989); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 2516: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(1286); - if (lookahead == '_') ADVANCE(1027); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if (lookahead == '.') ADVANCE(883); + if (lookahead == '_') ADVANCE(872); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2595); END_STATE(); case 2517: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(886); - if (lookahead == '_') ADVANCE(872); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); + if (lookahead == '.') ADVANCE(1287); + if (lookahead == '_') ADVANCE(1028); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2595); END_STATE(); case 2518: - ACCEPT_TOKEN(anon_sym_bit_DASHshl2); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '.') ADVANCE(887); + if (lookahead == '_') ADVANCE(873); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); END_STATE(); case 2519: ACCEPT_TOKEN(anon_sym_bit_DASHshl2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); END_STATE(); case 2520: - ACCEPT_TOKEN(anon_sym_bit_DASHshr2); + ACCEPT_TOKEN(anon_sym_bit_DASHshl2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2521: ACCEPT_TOKEN(anon_sym_bit_DASHshr2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); END_STATE(); case 2522: - ACCEPT_TOKEN(anon_sym_bit_DASHand2); + ACCEPT_TOKEN(anon_sym_bit_DASHshr2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2523: ACCEPT_TOKEN(anon_sym_bit_DASHand2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); END_STATE(); case 2524: - ACCEPT_TOKEN(anon_sym_bit_DASHxor2); + ACCEPT_TOKEN(anon_sym_bit_DASHand2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2525: ACCEPT_TOKEN(anon_sym_bit_DASHxor2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); END_STATE(); case 2526: - ACCEPT_TOKEN(anon_sym_bit_DASHor2); + ACCEPT_TOKEN(anon_sym_bit_DASHxor2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2527: ACCEPT_TOKEN(anon_sym_bit_DASHor2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); END_STATE(); case 2528: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); + ACCEPT_TOKEN(anon_sym_bit_DASHor2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2529: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(858); - if (lookahead == '<') ADVANCE(2567); - if (lookahead == '=') ADVANCE(2566); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); END_STATE(); case 2530: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(857); - if (lookahead == '<') ADVANCE(2567); - if (lookahead == '=') ADVANCE(2566); + if (lookahead == '.') ADVANCE(859); + if (lookahead == '<') ADVANCE(2568); + if (lookahead == '=') ADVANCE(2567); END_STATE(); case 2531: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(2317); - if (lookahead == '<') ADVANCE(2567); - if (lookahead == '=') ADVANCE(2566); + if (lookahead == '.') ADVANCE(858); + if (lookahead == '<') ADVANCE(2568); + if (lookahead == '=') ADVANCE(2567); END_STATE(); case 2532: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '<') ADVANCE(2567); - if (lookahead == '=') ADVANCE(2566); + if (lookahead == '.') ADVANCE(2318); + if (lookahead == '<') ADVANCE(2568); + if (lookahead == '=') ADVANCE(2567); END_STATE(); case 2533: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '<') ADVANCE(2568); + if (lookahead == '=') ADVANCE(2567); END_STATE(); case 2534: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3869); - if (lookahead == '_') ADVANCE(3882); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); END_STATE(); case 2535: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2411); - if (lookahead == '_') ADVANCE(2970); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2678); + if (lookahead == '.') ADVANCE(3870); + if (lookahead == '_') ADVANCE(3883); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2674); END_STATE(); case 2536: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2411); - if (lookahead == '_') ADVANCE(3561); + if (lookahead == '.') ADVANCE(2412); + if (lookahead == '_') ADVANCE(2971); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2679); END_STATE(); case 2537: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2411); - if (lookahead == '_') ADVANCE(3109); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2598); + if (lookahead == '.') ADVANCE(2412); + if (lookahead == '_') ADVANCE(3562); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2680); END_STATE(); case 2538: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2411); - if (lookahead == '_') ADVANCE(3652); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2601); + if (lookahead == '.') ADVANCE(2412); + if (lookahead == '_') ADVANCE(3110); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2599); END_STATE(); case 2539: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2411); - if (lookahead == '_') ADVANCE(2974); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2599); + if (lookahead == '.') ADVANCE(2412); + if (lookahead == '_') ADVANCE(3653); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2602); END_STATE(); case 2540: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2411); - if (lookahead == '_') ADVANCE(3565); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2602); + if (lookahead == '.') ADVANCE(2412); + if (lookahead == '_') ADVANCE(2975); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2600); END_STATE(); case 2541: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2411); - if (lookahead == '_') ADVANCE(3113); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2681); + if (lookahead == '.') ADVANCE(2412); + if (lookahead == '_') ADVANCE(3114); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2682); END_STATE(); case 2542: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2411); - if (lookahead == '_') ADVANCE(3656); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2682); + if (lookahead == '.') ADVANCE(2412); + if (lookahead == '_') ADVANCE(3657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2683); END_STATE(); case 2543: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2529); - if (lookahead == '_') ADVANCE(1282); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2676); + if (lookahead == '.') ADVANCE(2412); + if (lookahead == '_') ADVANCE(3567); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2603); END_STATE(); case 2544: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1022); - if (lookahead == '_') ADVANCE(1282); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2676); + if (lookahead == '.') ADVANCE(2530); + if (lookahead == '_') ADVANCE(1283); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2677); END_STATE(); case 2545: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(869); - if (lookahead == '_') ADVANCE(883); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2595); + if (lookahead == '.') ADVANCE(1023); + if (lookahead == '_') ADVANCE(1283); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2677); END_STATE(); case 2546: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(869); - if (lookahead == '_') ADVANCE(887); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2677); + if (lookahead == '.') ADVANCE(870); + if (lookahead == '_') ADVANCE(884); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2596); END_STATE(); case 2547: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2532); + if (lookahead == '.') ADVANCE(870); + if (lookahead == '_') ADVANCE(888); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2678); END_STATE(); case 2548: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2532); - if (lookahead == '_') ADVANCE(1282); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2676); + if (lookahead == '.') ADVANCE(2533); END_STATE(); case 2549: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2532); - if (lookahead == '_') ADVANCE(2970); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2678); + if (lookahead == '.') ADVANCE(2533); + if (lookahead == '_') ADVANCE(1283); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2677); END_STATE(); case 2550: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2532); - if (lookahead == '_') ADVANCE(3561); + if (lookahead == '.') ADVANCE(2533); + if (lookahead == '_') ADVANCE(2971); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2679); END_STATE(); case 2551: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2532); - if (lookahead == '_') ADVANCE(3113); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2681); + if (lookahead == '.') ADVANCE(2533); + if (lookahead == '_') ADVANCE(3562); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2680); END_STATE(); case 2552: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2532); - if (lookahead == '_') ADVANCE(3656); + if (lookahead == '.') ADVANCE(2533); + if (lookahead == '_') ADVANCE(3114); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2682); END_STATE(); case 2553: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3871); + if (lookahead == '.') ADVANCE(2533); + if (lookahead == '_') ADVANCE(3657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2683); END_STATE(); case 2554: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3871); - if (lookahead == '_') ADVANCE(3887); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2603); + if (lookahead == '.') ADVANCE(3872); END_STATE(); case 2555: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2530); - if (lookahead == '_') ADVANCE(887); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2677); + if (lookahead == '.') ADVANCE(3872); + if (lookahead == '_') ADVANCE(3888); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2604); END_STATE(); case 2556: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(2531); + if (lookahead == '_') ADVANCE(888); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2678); END_STATE(); case 2557: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(3109); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2598); + if (lookahead == '.') ADVANCE(2532); END_STATE(); case 2558: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(3652); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2601); + if (lookahead == '_') ADVANCE(3110); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2599); END_STATE(); case 2559: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(3887); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2603); + if (lookahead == '_') ADVANCE(3653); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2602); END_STATE(); case 2560: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '_') ADVANCE(3888); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2604); END_STATE(); case 2561: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); END_STATE(); case 2562: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 2563: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2564: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); END_STATE(); case 2565: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 2566: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2567: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); END_STATE(); case 2568: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(3030); - if (lookahead == '_') ADVANCE(2578); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); END_STATE(); case 2569: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(3610); - if (lookahead == '_') ADVANCE(2578); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); + if (lookahead == '-') ADVANCE(3031); + if (lookahead == '_') ADVANCE(2579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); END_STATE(); case 2570: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(3249); - if (lookahead == '_') ADVANCE(2578); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); + if (lookahead == '-') ADVANCE(3611); + if (lookahead == '_') ADVANCE(2579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); END_STATE(); case 2571: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(3712); - if (lookahead == '_') ADVANCE(2578); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); + if (lookahead == '-') ADVANCE(3250); + if (lookahead == '_') ADVANCE(2579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); END_STATE(); case 2572: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2578); - if (lookahead == 'b') ADVANCE(2709); - if (lookahead == 'o') ADVANCE(2725); - if (lookahead == 'x') ADVANCE(2730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2580); + if (lookahead == '-') ADVANCE(3713); + if (lookahead == '_') ADVANCE(2579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); END_STATE(); case 2573: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2578); - if (lookahead == 'b') ADVANCE(2709); - if (lookahead == 'o') ADVANCE(2725); - if (lookahead == 'x') ADVANCE(2730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2582); + if (lookahead == '_') ADVANCE(2579); + if (lookahead == 'b') ADVANCE(2710); + if (lookahead == 'o') ADVANCE(2726); + if (lookahead == 'x') ADVANCE(2731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2581); END_STATE(); case 2574: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2578); - if (lookahead == 'b') ADVANCE(2709); - if (lookahead == 'o') ADVANCE(2725); - if (lookahead == 'x') ADVANCE(2730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2584); + if (lookahead == '_') ADVANCE(2579); + if (lookahead == 'b') ADVANCE(2710); + if (lookahead == 'o') ADVANCE(2726); + if (lookahead == 'x') ADVANCE(2731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2583); END_STATE(); case 2575: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2578); - if (lookahead == 'b') ADVANCE(2709); - if (lookahead == 'o') ADVANCE(2725); - if (lookahead == 'x') ADVANCE(2730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2586); + if (lookahead == '_') ADVANCE(2579); + if (lookahead == 'b') ADVANCE(2710); + if (lookahead == 'o') ADVANCE(2726); + if (lookahead == 'x') ADVANCE(2731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2585); END_STATE(); case 2576: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2578); - if (lookahead == 'b') ADVANCE(1548); - if (lookahead == 'o') ADVANCE(1550); - if (lookahead == 'x') ADVANCE(1557); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); + if (lookahead == '_') ADVANCE(2579); + if (lookahead == 'b') ADVANCE(2710); + if (lookahead == 'o') ADVANCE(2726); + if (lookahead == 'x') ADVANCE(2731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2587); END_STATE(); case 2577: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2578); - if (lookahead == 'b') ADVANCE(999); - if (lookahead == 'o') ADVANCE(1000); - if (lookahead == 'x') ADVANCE(1001); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); + if (lookahead == '_') ADVANCE(2579); + if (lookahead == 'b') ADVANCE(1549); + if (lookahead == 'o') ADVANCE(1551); + if (lookahead == 'x') ADVANCE(1558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); END_STATE(); case 2578: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2578); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); + if (lookahead == '_') ADVANCE(2579); + if (lookahead == 'b') ADVANCE(1000); + if (lookahead == 'o') ADVANCE(1001); + if (lookahead == 'x') ADVANCE(1002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); END_STATE(); case 2579: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2578); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2570); + if (lookahead == '_') ADVANCE(2579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); END_STATE(); case 2580: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2578); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if (lookahead == '_') ADVANCE(2579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2571); END_STATE(); case 2581: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2578); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2568); + if (lookahead == '_') ADVANCE(2579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2580); END_STATE(); case 2582: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2578); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2581); + if (lookahead == '_') ADVANCE(2579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2569); END_STATE(); case 2583: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2578); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2571); + if (lookahead == '_') ADVANCE(2579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2582); END_STATE(); case 2584: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2578); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2583); + if (lookahead == '_') ADVANCE(2579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2572); END_STATE(); case 2585: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2578); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2569); + if (lookahead == '_') ADVANCE(2579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2584); END_STATE(); case 2586: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2578); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2585); + if (lookahead == '_') ADVANCE(2579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2570); END_STATE(); case 2587: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2578); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2580); + if (lookahead == '_') ADVANCE(2579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2586); END_STATE(); case 2588: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2578); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2582); + if (lookahead == '_') ADVANCE(2579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2581); END_STATE(); case 2589: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2578); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2584); + if (lookahead == '_') ADVANCE(2579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2583); END_STATE(); case 2590: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2578); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2586); + if (lookahead == '_') ADVANCE(2579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2585); END_STATE(); case 2591: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(2591); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2591); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == '_') ADVANCE(2579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2587); END_STATE(); case 2592: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); if (lookahead == '_') ADVANCE(2592); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2593: ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); if (lookahead == '_') ADVANCE(2593); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); END_STATE(); case 2594: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); if (lookahead == '_') ADVANCE(2594); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2595: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); if (lookahead == '_') ADVANCE(2595); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(884); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2595); END_STATE(); case 2596: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(2596); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(885); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2596); END_STATE(); case 2597: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(2597); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1288); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2597); END_STATE(); case 2598: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(2598); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3110); + lookahead == 'e') ADVANCE(1289); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2598); END_STATE(); case 2599: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(2599); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2975); + lookahead == 'e') ADVANCE(3111); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2599); END_STATE(); case 2600: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(2600); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(448); + lookahead == 'e') ADVANCE(2976); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2600); END_STATE(); case 2601: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(2601); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3653); + lookahead == 'e') ADVANCE(449); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2601); END_STATE(); case 2602: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(2602); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3566); + lookahead == 'e') ADVANCE(3654); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2602); END_STATE(); case 2603: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(2603); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3888); + lookahead == 'e') ADVANCE(3568); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2603); END_STATE(); case 2604: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(2604); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3729); + lookahead == 'e') ADVANCE(3889); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2604); END_STATE(); case 2605: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(2605); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3912); + lookahead == 'e') ADVANCE(3730); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2605); END_STATE(); case 2606: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(2606); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3266); + lookahead == 'e') ADVANCE(3267); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2606); END_STATE(); case 2607: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(2607); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3913); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); END_STATE(); case 2608: - ACCEPT_TOKEN(anon_sym_null); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); + if (lookahead == '_') ADVANCE(2608); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); END_STATE(); case 2609: ACCEPT_TOKEN(anon_sym_null); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1736); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1735); END_STATE(); case 2610: ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1737); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1736); END_STATE(); case 2611: ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2612: ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1736); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2613: ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1737); END_STATE(); case 2614: ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 2615: - ACCEPT_TOKEN(anon_sym_RPAREN2); + ACCEPT_TOKEN(anon_sym_null); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2616: - ACCEPT_TOKEN(anon_sym_true); + ACCEPT_TOKEN(anon_sym_RPAREN2); END_STATE(); case 2617: ACCEPT_TOKEN(anon_sym_true); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1730); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1729); END_STATE(); case 2618: ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1731); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1730); END_STATE(); case 2619: ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2620: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2621: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1730); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2622: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1731); END_STATE(); case 2623: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 2624: - ACCEPT_TOKEN(anon_sym_false); + ACCEPT_TOKEN(anon_sym_true); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2625: ACCEPT_TOKEN(anon_sym_false); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1733); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1732); END_STATE(); case 2626: ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1734); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1733); END_STATE(); case 2627: ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2628: ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2629: ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1733); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2630: ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1734); END_STATE(); case 2631: ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 2632: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); + ACCEPT_TOKEN(anon_sym_false); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2633: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); END_STATE(); case 2634: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(1554); - if (lookahead == '_') ADVANCE(2671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 2635: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(3030); - if (lookahead == '_') ADVANCE(2671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (lookahead == '-') ADVANCE(1555); + if (lookahead == '_') ADVANCE(2672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); END_STATE(); case 2636: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(3610); - if (lookahead == '_') ADVANCE(2671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (lookahead == '-') ADVANCE(3031); + if (lookahead == '_') ADVANCE(2672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); END_STATE(); case 2637: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(3864); - if (lookahead == '_') ADVANCE(2671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (lookahead == '-') ADVANCE(3611); + if (lookahead == '_') ADVANCE(2672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); END_STATE(); case 2638: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(3249); - if (lookahead == '_') ADVANCE(2671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (lookahead == '-') ADVANCE(3865); + if (lookahead == '_') ADVANCE(2672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); END_STATE(); case 2639: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(3712); - if (lookahead == '_') ADVANCE(2671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (lookahead == '-') ADVANCE(3250); + if (lookahead == '_') ADVANCE(2672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); END_STATE(); case 2640: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(657); - if (lookahead == '_') ADVANCE(2671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (lookahead == '-') ADVANCE(3713); + if (lookahead == '_') ADVANCE(2672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); END_STATE(); case 2641: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2671); - if (lookahead == 'b') ADVANCE(2709); - if (lookahead == 'o') ADVANCE(2725); - if (lookahead == 'x') ADVANCE(2730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2651); + if (lookahead == '-') ADVANCE(658); + if (lookahead == '_') ADVANCE(2672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); END_STATE(); case 2642: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2671); - if (lookahead == 'b') ADVANCE(2709); - if (lookahead == 'o') ADVANCE(2725); - if (lookahead == 'x') ADVANCE(2730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2653); + if (lookahead == '_') ADVANCE(2672); + if (lookahead == 'b') ADVANCE(2710); + if (lookahead == 'o') ADVANCE(2726); + if (lookahead == 'x') ADVANCE(2731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2652); END_STATE(); case 2643: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2671); - if (lookahead == 'b') ADVANCE(2709); - if (lookahead == 'o') ADVANCE(2725); - if (lookahead == 'x') ADVANCE(2730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2655); + if (lookahead == '_') ADVANCE(2672); + if (lookahead == 'b') ADVANCE(2710); + if (lookahead == 'o') ADVANCE(2726); + if (lookahead == 'x') ADVANCE(2731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2654); END_STATE(); case 2644: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2671); - if (lookahead == 'b') ADVANCE(2709); - if (lookahead == 'o') ADVANCE(2725); - if (lookahead == 'x') ADVANCE(2730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2657); + if (lookahead == '_') ADVANCE(2672); + if (lookahead == 'b') ADVANCE(2710); + if (lookahead == 'o') ADVANCE(2726); + if (lookahead == 'x') ADVANCE(2731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2656); END_STATE(); case 2645: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2671); - if (lookahead == 'b') ADVANCE(2709); - if (lookahead == 'o') ADVANCE(2725); - if (lookahead == 'x') ADVANCE(2730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2659); + if (lookahead == '_') ADVANCE(2672); + if (lookahead == 'b') ADVANCE(2710); + if (lookahead == 'o') ADVANCE(2726); + if (lookahead == 'x') ADVANCE(2731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2658); END_STATE(); case 2646: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2671); - if (lookahead == 'b') ADVANCE(2709); - if (lookahead == 'o') ADVANCE(2725); - if (lookahead == 'x') ADVANCE(2730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2661); + if (lookahead == '_') ADVANCE(2672); + if (lookahead == 'b') ADVANCE(2710); + if (lookahead == 'o') ADVANCE(2726); + if (lookahead == 'x') ADVANCE(2731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2660); END_STATE(); case 2647: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2671); - if (lookahead == 'b') ADVANCE(2709); - if (lookahead == 'o') ADVANCE(2725); - if (lookahead == 'x') ADVANCE(2730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2663); + if (lookahead == '_') ADVANCE(2672); + if (lookahead == 'b') ADVANCE(2710); + if (lookahead == 'o') ADVANCE(2726); + if (lookahead == 'x') ADVANCE(2731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2662); END_STATE(); case 2648: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2671); - if (lookahead == 'b') ADVANCE(1548); - if (lookahead == 'o') ADVANCE(1550); - if (lookahead == 'x') ADVANCE(1557); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (lookahead == '_') ADVANCE(2672); + if (lookahead == 'b') ADVANCE(2710); + if (lookahead == 'o') ADVANCE(2726); + if (lookahead == 'x') ADVANCE(2731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2664); END_STATE(); case 2649: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2671); - if (lookahead == 'b') ADVANCE(999); - if (lookahead == 'o') ADVANCE(1000); - if (lookahead == 'x') ADVANCE(1001); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (lookahead == '_') ADVANCE(2672); + if (lookahead == 'b') ADVANCE(1549); + if (lookahead == 'o') ADVANCE(1551); + if (lookahead == 'x') ADVANCE(1558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); END_STATE(); case 2650: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2634); + if (lookahead == '_') ADVANCE(2672); + if (lookahead == 'b') ADVANCE(1000); + if (lookahead == 'o') ADVANCE(1001); + if (lookahead == 'x') ADVANCE(1002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); END_STATE(); case 2651: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2650); + if (lookahead == '_') ADVANCE(2672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2635); END_STATE(); case 2652: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2635); + if (lookahead == '_') ADVANCE(2672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2651); END_STATE(); case 2653: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2652); + if (lookahead == '_') ADVANCE(2672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2636); END_STATE(); case 2654: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2636); + if (lookahead == '_') ADVANCE(2672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2653); END_STATE(); case 2655: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2654); + if (lookahead == '_') ADVANCE(2672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2637); END_STATE(); case 2656: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2640); + if (lookahead == '_') ADVANCE(2672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2655); END_STATE(); case 2657: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2656); + if (lookahead == '_') ADVANCE(2672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2641); END_STATE(); case 2658: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2637); + if (lookahead == '_') ADVANCE(2672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2657); END_STATE(); case 2659: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2658); + if (lookahead == '_') ADVANCE(2672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2638); END_STATE(); case 2660: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2638); + if (lookahead == '_') ADVANCE(2672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2659); END_STATE(); case 2661: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2660); + if (lookahead == '_') ADVANCE(2672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2639); END_STATE(); case 2662: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2639); + if (lookahead == '_') ADVANCE(2672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2661); END_STATE(); case 2663: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2662); + if (lookahead == '_') ADVANCE(2672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2640); END_STATE(); case 2664: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2651); + if (lookahead == '_') ADVANCE(2672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2663); END_STATE(); case 2665: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2653); + if (lookahead == '_') ADVANCE(2672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2652); END_STATE(); case 2666: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2655); + if (lookahead == '_') ADVANCE(2672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2654); END_STATE(); case 2667: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2657); + if (lookahead == '_') ADVANCE(2672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2656); END_STATE(); case 2668: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2659); + if (lookahead == '_') ADVANCE(2672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2658); END_STATE(); case 2669: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2661); + if (lookahead == '_') ADVANCE(2672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2660); END_STATE(); case 2670: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2663); + if (lookahead == '_') ADVANCE(2672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2662); END_STATE(); case 2671: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(2671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (lookahead == '_') ADVANCE(2672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2664); END_STATE(); case 2672: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); if (lookahead == '_') ADVANCE(2672); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); END_STATE(); case 2673: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); if (lookahead == '_') ADVANCE(2673); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3883); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); END_STATE(); case 2674: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); if (lookahead == '_') ADVANCE(2674); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3884); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2674); END_STATE(); case 2675: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); if (lookahead == '_') ADVANCE(2675); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3823); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2675); END_STATE(); case 2676: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); if (lookahead == '_') ADVANCE(2676); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1283); + lookahead == 'e') ADVANCE(3824); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2676); END_STATE(); case 2677: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); if (lookahead == '_') ADVANCE(2677); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(891); + lookahead == 'e') ADVANCE(1284); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2677); END_STATE(); case 2678: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); if (lookahead == '_') ADVANCE(2678); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2971); + lookahead == 'e') ADVANCE(892); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2678); END_STATE(); case 2679: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); if (lookahead == '_') ADVANCE(2679); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3562); + lookahead == 'e') ADVANCE(2972); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2679); END_STATE(); case 2680: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); if (lookahead == '_') ADVANCE(2680); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(445); + lookahead == 'e') ADVANCE(3563); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2680); END_STATE(); case 2681: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); if (lookahead == '_') ADVANCE(2681); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3120); + lookahead == 'e') ADVANCE(446); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2681); END_STATE(); case 2682: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); if (lookahead == '_') ADVANCE(2682); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3660); + lookahead == 'e') ADVANCE(3121); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2682); END_STATE(); case 2683: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); if (lookahead == '_') ADVANCE(2683); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3661); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2683); END_STATE(); case 2684: + ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); + if (lookahead == '_') ADVANCE(2684); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2684); + END_STATE(); + case 2685: ACCEPT_TOKEN(aux_sym__val_number_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2684); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2685); END_STATE(); - case 2685: + case 2686: ACCEPT_TOKEN(aux_sym__val_number_token2); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(2685); - END_STATE(); - case 2686: - ACCEPT_TOKEN(aux_sym__val_number_token3); - if (('0' <= lookahead && lookahead <= '7') || lookahead == '_') ADVANCE(2686); END_STATE(); case 2687: - ACCEPT_TOKEN(aux_sym__val_number_token4); + ACCEPT_TOKEN(aux_sym__val_number_token3); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(2687); END_STATE(); case 2688: ACCEPT_TOKEN(aux_sym__val_number_token4); - if (lookahead == ',') ADVANCE(1751); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1741); END_STATE(); case 2689: ACCEPT_TOKEN(aux_sym__val_number_token4); + if (lookahead == ',') ADVANCE(1752); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1744); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1751); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1750); + lookahead == 'i') ADVANCE(1739); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1742); END_STATE(); case 2690: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1745); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1751); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1752); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1751); END_STATE(); case 2691: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3018); + lookahead == 'i') ADVANCE(1746); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1752); END_STATE(); case 2692: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3599); + lookahead == 'i') ADVANCE(3019); END_STATE(); case 2693: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3855); + lookahead == 'i') ADVANCE(3600); END_STATE(); case 2694: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3237); + lookahead == 'i') ADVANCE(3856); END_STATE(); case 2695: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3701); + lookahead == 'i') ADVANCE(3238); END_STATE(); case 2696: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(641); + lookahead == 'i') ADVANCE(3702); END_STATE(); case 2697: - ACCEPT_TOKEN(aux_sym__val_number_token5); + ACCEPT_TOKEN(aux_sym__val_number_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(642); END_STATE(); case 2698: ACCEPT_TOKEN(aux_sym__val_number_token5); - if (lookahead == ',') ADVANCE(1761); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1753); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1756); END_STATE(); case 2699: ACCEPT_TOKEN(aux_sym__val_number_token5); + if (lookahead == ',') ADVANCE(1762); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1758); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1761); + lookahead == 'i') ADVANCE(1754); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1757); END_STATE(); case 2700: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(637); + lookahead == 'i') ADVANCE(1759); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1762); END_STATE(); case 2701: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3601); + lookahead == 'i') ADVANCE(638); END_STATE(); case 2702: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3857); + lookahead == 'i') ADVANCE(3602); END_STATE(); case 2703: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3240); + lookahead == 'i') ADVANCE(3858); END_STATE(); case 2704: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3703); + lookahead == 'i') ADVANCE(3241); END_STATE(); case 2705: - ACCEPT_TOKEN(aux_sym__val_number_token6); + ACCEPT_TOKEN(aux_sym__val_number_token5); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3704); END_STATE(); case 2706: ACCEPT_TOKEN(aux_sym__val_number_token6); - if (lookahead == ',') ADVANCE(1764); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1762); END_STATE(); case 2707: ACCEPT_TOKEN(aux_sym__val_number_token6); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1764); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1763); + if (lookahead == ',') ADVANCE(1765); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1763); END_STATE(); case 2708: ACCEPT_TOKEN(aux_sym__val_number_token6); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1764); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1765); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1764); END_STATE(); case 2709: - ACCEPT_TOKEN(anon_sym_0b); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(2685); + ACCEPT_TOKEN(aux_sym__val_number_token6); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1765); END_STATE(); case 2710: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3516); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + lookahead == '_') ADVANCE(2686); END_STATE(); case 2711: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(2205); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + lookahead == '_') ADVANCE(2928); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2712: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(2927); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + lookahead == '_') ADVANCE(3517); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2713: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3789); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + lookahead == '_') ADVANCE(2206); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2714: - ACCEPT_TOKEN(sym_filesize_unit); + ACCEPT_TOKEN(anon_sym_0b); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(3790); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 2715: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1935); END_STATE(); case 2716: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(580); + if (lookahead == 'i') ADVANCE(1936); END_STATE(); case 2717: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(3200); + if (lookahead == 'i') ADVANCE(581); END_STATE(); case 2718: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'r') ADVANCE(919); + if (lookahead == 'i') ADVANCE(3201); END_STATE(); case 2719: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'r') ADVANCE(1349); + if (lookahead == 'r') ADVANCE(920); END_STATE(); case 2720: ACCEPT_TOKEN(sym_filesize_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'r') ADVANCE(1350); END_STATE(); case 2721: - ACCEPT_TOKEN(sym_duration_unit); + ACCEPT_TOKEN(sym_filesize_unit); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2722: ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(2285); END_STATE(); case 2723: ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(1567); + if (lookahead == 'e') ADVANCE(2286); END_STATE(); case 2724: ACCEPT_TOKEN(sym_duration_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'e') ADVANCE(1568); END_STATE(); case 2725: - ACCEPT_TOKEN(anon_sym_0o); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2686); + ACCEPT_TOKEN(sym_duration_unit); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2726: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3521); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + lookahead == '_') ADVANCE(2687); END_STATE(); case 2727: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2206); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + lookahead == '_') ADVANCE(2929); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2728: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2928); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + lookahead == '_') ADVANCE(3522); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2729: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3792); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + lookahead == '_') ADVANCE(2207); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2730: - ACCEPT_TOKEN(anon_sym_0x); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2684); + ACCEPT_TOKEN(anon_sym_0o); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3793); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 2731: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3535); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2685); END_STATE(); case 2732: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2213); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2214); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2936); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2733: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2935); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3536); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2734: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3806); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2214); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2215); END_STATE(); case 2735: - ACCEPT_TOKEN(anon_sym_LBRACK2); + ACCEPT_TOKEN(anon_sym_0x); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3807); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 2736: + ACCEPT_TOKEN(anon_sym_LBRACK2); + END_STATE(); + case 2737: ACCEPT_TOKEN(sym_hex_digit); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2736); - END_STATE(); - case 2737: - ACCEPT_TOKEN(sym_val_date); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2737); END_STATE(); case 2738: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(651); - if (lookahead == '+' || - lookahead == '-') ADVANCE(419); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2737); END_STATE(); case 2739: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(3028); + if (lookahead == '.') ADVANCE(652); if (lookahead == '+' || - lookahead == '-') ADVANCE(2957); + lookahead == '-') ADVANCE(420); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2737); + lookahead == 'z') ADVANCE(2738); END_STATE(); case 2740: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(3613); + if (lookahead == '.') ADVANCE(3029); if (lookahead == '+' || - lookahead == '-') ADVANCE(3552); + lookahead == '-') ADVANCE(2958); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2737); + lookahead == 'z') ADVANCE(2738); END_STATE(); case 2741: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(3252); + if (lookahead == '.') ADVANCE(3614); if (lookahead == '+' || - lookahead == '-') ADVANCE(3079); + lookahead == '-') ADVANCE(3553); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2737); + lookahead == 'z') ADVANCE(2738); END_STATE(); case 2742: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(3716); + if (lookahead == '.') ADVANCE(3253); if (lookahead == '+' || - lookahead == '-') ADVANCE(3637); + lookahead == '-') ADVANCE(3080); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2737); + lookahead == 'z') ADVANCE(2738); END_STATE(); case 2743: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(2760); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(650); + if (lookahead == '.') ADVANCE(3717); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3638); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(2738); END_STATE(); case 2744: ACCEPT_TOKEN(sym_val_date); if (lookahead == ':') ADVANCE(2761); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3023); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(651); END_STATE(); case 2745: ACCEPT_TOKEN(sym_val_date); if (lookahead == ':') ADVANCE(2762); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3607); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3024); END_STATE(); case 2746: ACCEPT_TOKEN(sym_val_date); if (lookahead == ':') ADVANCE(2763); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3246); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3608); END_STATE(); case 2747: ACCEPT_TOKEN(sym_val_date); if (lookahead == ':') ADVANCE(2764); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3709); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3247); END_STATE(); case 2748: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(1556); + if (lookahead == ':') ADVANCE(2765); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3710); END_STATE(); case 2749: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(3032); + if (lookahead == 'T') ADVANCE(1557); END_STATE(); case 2750: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(3616); + if (lookahead == 'T') ADVANCE(3033); END_STATE(); case 2751: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(3866); + if (lookahead == 'T') ADVANCE(3617); END_STATE(); case 2752: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(3254); + if (lookahead == 'T') ADVANCE(3867); END_STATE(); case 2753: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(3714); + if (lookahead == 'T') ADVANCE(3255); END_STATE(); case 2754: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(660); + if (lookahead == 'T') ADVANCE(3715); END_STATE(); case 2755: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '+' || - lookahead == '-') ADVANCE(419); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2737); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2755); + if (lookahead == 'T') ADVANCE(661); END_STATE(); case 2756: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(2957); + lookahead == '-') ADVANCE(420); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2737); + lookahead == 'z') ADVANCE(2738); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2756); END_STATE(); case 2757: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(3552); + lookahead == '-') ADVANCE(2958); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2737); + lookahead == 'z') ADVANCE(2738); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2757); END_STATE(); case 2758: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(3079); + lookahead == '-') ADVANCE(3553); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2737); + lookahead == 'z') ADVANCE(2738); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2758); END_STATE(); case 2759: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(3637); + lookahead == '-') ADVANCE(3080); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(2737); + lookahead == 'z') ADVANCE(2738); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2759); END_STATE(); case 2760: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(650); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3638); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(2738); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2760); END_STATE(); case 2761: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3023); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(651); END_STATE(); case 2762: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3607); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3024); END_STATE(); case 2763: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3246); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3608); END_STATE(); case 2764: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3709); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3247); END_STATE(); case 2765: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(sym_val_date); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3710); END_STATE(); case 2766: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 2767: ACCEPT_TOKEN(sym__escaped_str_content); - if (lookahead == '#') ADVANCE(2767); + if (lookahead == '#') ADVANCE(2768); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2766); + lookahead == ' ') ADVANCE(2767); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && - lookahead != '\\') ADVANCE(2767); + lookahead != '\\') ADVANCE(2768); END_STATE(); - case 2767: + case 2768: ACCEPT_TOKEN(sym__escaped_str_content); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(2767); + lookahead != '\\') ADVANCE(2768); END_STATE(); - case 2768: + case 2769: ACCEPT_TOKEN(sym__str_single_quotes); END_STATE(); - case 2769: + case 2770: ACCEPT_TOKEN(sym__str_back_ticks); END_STATE(); - case 2770: + case 2771: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 2771: + case 2772: ACCEPT_TOKEN(sym_escaped_interpolated_content); - if (lookahead == '#') ADVANCE(2772); + if (lookahead == '#') ADVANCE(2773); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2771); + lookahead == ' ') ADVANCE(2772); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && lookahead != '(' && - lookahead != '\\') ADVANCE(2772); + lookahead != '\\') ADVANCE(2773); END_STATE(); - case 2772: + case 2773: ACCEPT_TOKEN(sym_escaped_interpolated_content); if (lookahead != 0 && lookahead != '"' && lookahead != '(' && - lookahead != '\\') ADVANCE(2772); + lookahead != '\\') ADVANCE(2773); END_STATE(); - case 2773: + case 2774: ACCEPT_TOKEN(sym_unescaped_interpolated_content); - if (lookahead == '#') ADVANCE(2774); + if (lookahead == '#') ADVANCE(2775); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2773); + lookahead == ' ') ADVANCE(2774); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(2774); + lookahead != '(') ADVANCE(2775); END_STATE(); - case 2774: + case 2775: ACCEPT_TOKEN(sym_unescaped_interpolated_content); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(2774); - END_STATE(); - case 2775: - ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); + lookahead != '(') ADVANCE(2775); END_STATE(); case 2776: - ACCEPT_TOKEN(anon_sym_SQUOTE); + ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); END_STATE(); case 2777: ACCEPT_TOKEN(anon_sym_SQUOTE); - if (lookahead == '\'') ADVANCE(2768); - if (lookahead != 0) ADVANCE(385); END_STATE(); case 2778: - ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); + ACCEPT_TOKEN(anon_sym_SQUOTE); + if (lookahead == '\'') ADVANCE(2769); + if (lookahead != 0) ADVANCE(386); END_STATE(); case 2779: - ACCEPT_TOKEN(anon_sym_DQUOTE2); + ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); END_STATE(); case 2780: - ACCEPT_TOKEN(sym_inter_escape_sequence); + ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); case 2781: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACK); + ACCEPT_TOKEN(sym_inter_escape_sequence); END_STATE(); case 2782: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACE); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACK); END_STATE(); case 2783: - ACCEPT_TOKEN(sym__entry_separator); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACE); END_STATE(); case 2784: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(2783); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2784); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2783); END_STATE(); case 2785: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(2783); + if (lookahead == ',') ADVANCE(2784); if (lookahead == '\t' || lookahead == ' ') ADVANCE(2785); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2786); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2784); END_STATE(); case 2786: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ';') ADVANCE(2795); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(422); + if (lookahead == ',') ADVANCE(2784); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2786); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(2787); END_STATE(); case 2787: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2787); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(2783); + if (lookahead == ';') ADVANCE(2796); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(423); END_STATE(); case 2788: - ACCEPT_TOKEN(anon_sym_register); - if (lookahead == ',') ADVANCE(1651); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3977); + ACCEPT_TOKEN(sym__entry_separator); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2788); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(2784); END_STATE(); case 2789: ACCEPT_TOKEN(anon_sym_register); - if (lookahead == ',') ADVANCE(1651); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1649); + if (lookahead == ',') ADVANCE(1652); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3978); END_STATE(); case 2790: ACCEPT_TOKEN(anon_sym_register); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(1651); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1650); + if (lookahead == ',') ADVANCE(1652); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1650); END_STATE(); case 2791: ACCEPT_TOKEN(anon_sym_register); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1651); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(1652); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1651); END_STATE(); case 2792: - ACCEPT_TOKEN(anon_sym_COLON2); + ACCEPT_TOKEN(anon_sym_register); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1652); END_STATE(); case 2793: - ACCEPT_TOKEN(aux_sym__record_key_token1); - if (lookahead == '#') ADVANCE(4103); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(2794); + ACCEPT_TOKEN(anon_sym_COLON2); END_STATE(); case 2794: ACCEPT_TOKEN(aux_sym__record_key_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(2794); + if (lookahead == '#') ADVANCE(4104); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(2795); END_STATE(); case 2795: - ACCEPT_TOKEN(sym__table_head_separator); + ACCEPT_TOKEN(aux_sym__record_key_token1); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(2795); END_STATE(); case 2796: - ACCEPT_TOKEN(anon_sym_DOT2); + ACCEPT_TOKEN(sym__table_head_separator); END_STATE(); case 2797: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(3813); - if (lookahead == '_') ADVANCE(3822); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2675); END_STATE(); case 2798: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(2411); - if (lookahead == '_') ADVANCE(2970); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2678); + if (lookahead == '.') ADVANCE(3814); + if (lookahead == '_') ADVANCE(3823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2676); END_STATE(); case 2799: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(2411); - if (lookahead == '_') ADVANCE(3561); + if (lookahead == '.') ADVANCE(2412); + if (lookahead == '_') ADVANCE(2971); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2679); END_STATE(); case 2800: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(2529); - if (lookahead == '_') ADVANCE(1282); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2676); + if (lookahead == '.') ADVANCE(2412); + if (lookahead == '_') ADVANCE(3562); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2680); END_STATE(); case 2801: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1022); - if (lookahead == '_') ADVANCE(1282); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2676); + if (lookahead == '.') ADVANCE(2530); + if (lookahead == '_') ADVANCE(1283); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2677); END_STATE(); case 2802: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(2532); + if (lookahead == '.') ADVANCE(1023); + if (lookahead == '_') ADVANCE(1283); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2677); END_STATE(); case 2803: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(2532); - if (lookahead == '_') ADVANCE(2970); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2678); + if (lookahead == '.') ADVANCE(2533); END_STATE(); case 2804: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(2532); - if (lookahead == '_') ADVANCE(3561); + if (lookahead == '.') ADVANCE(2533); + if (lookahead == '_') ADVANCE(2971); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2679); END_STATE(); case 2805: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(415); + if (lookahead == '.') ADVANCE(2533); + if (lookahead == '_') ADVANCE(3562); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2680); END_STATE(); case 2806: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(2531); + if (lookahead == '.') ADVANCE(416); END_STATE(); case 2807: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '_') ADVANCE(1282); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2676); + if (lookahead == '.') ADVANCE(2532); END_STATE(); case 2808: + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '_') ADVANCE(1283); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2677); + END_STATE(); + case 2809: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '\'') ADVANCE(2768); + if (lookahead == '\'') ADVANCE(2769); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || @@ -46461,12 +45912,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?' || lookahead == '[' || lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(385); - if (lookahead != 0) ADVANCE(2808); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(386); + if (lookahead != 0) ADVANCE(2809); END_STATE(); - case 2809: + case 2810: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '`') ADVANCE(2769); + if (lookahead == '`') ADVANCE(2770); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || @@ -46478,676 +45929,676 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?' || lookahead == '[' || lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(454); - if (lookahead != 0) ADVANCE(2809); - END_STATE(); - case 2810: - ACCEPT_TOKEN(aux_sym_path_token1); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(2810); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(455); + if (lookahead != 0) ADVANCE(2810); END_STATE(); case 2811: - ACCEPT_TOKEN(aux_sym_env_var_token1); + ACCEPT_TOKEN(aux_sym_path_token1); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(2811); END_STATE(); case 2812: - ACCEPT_TOKEN(aux_sym_env_var_token2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2812); + ACCEPT_TOKEN(aux_sym_env_var_token1); END_STATE(); case 2813: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(aux_sym_env_var_token2); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2813); END_STATE(); case 2814: - ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(2854); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 2815: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(2854); - if (lookahead == '|') ADVANCE(2255); + if (lookahead == '>') ADVANCE(2855); END_STATE(); case 2816: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(2856); - if (lookahead == '|') ADVANCE(2255); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '>') ADVANCE(2855); + if (lookahead == '|') ADVANCE(2256); END_STATE(); case 2817: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(2856); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '>') ADVANCE(2857); + if (lookahead == '|') ADVANCE(2256); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2818: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(2855); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '>') ADVANCE(2857); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2819: - ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(2857); + ACCEPT_TOKEN(anon_sym_err_GT); + if (lookahead == '>') ADVANCE(2856); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 2820: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(2857); - if (lookahead == '|') ADVANCE(2256); + if (lookahead == '>') ADVANCE(2858); END_STATE(); case 2821: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(2859); - if (lookahead == '|') ADVANCE(2256); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '>') ADVANCE(2858); + if (lookahead == '|') ADVANCE(2257); END_STATE(); case 2822: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(2859); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '>') ADVANCE(2860); + if (lookahead == '|') ADVANCE(2257); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2823: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(2858); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '>') ADVANCE(2860); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2824: - ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(2860); + ACCEPT_TOKEN(anon_sym_out_GT); + if (lookahead == '>') ADVANCE(2859); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 2825: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(2860); - if (lookahead == '|') ADVANCE(2257); + if (lookahead == '>') ADVANCE(2861); END_STATE(); case 2826: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(2862); - if (lookahead == '|') ADVANCE(2257); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '>') ADVANCE(2861); + if (lookahead == '|') ADVANCE(2258); END_STATE(); case 2827: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(2862); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '>') ADVANCE(2863); + if (lookahead == '|') ADVANCE(2258); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2828: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(2861); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '>') ADVANCE(2863); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2829: - ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(2863); + ACCEPT_TOKEN(anon_sym_e_GT); + if (lookahead == '>') ADVANCE(2862); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 2830: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(2863); - if (lookahead == '|') ADVANCE(2258); + if (lookahead == '>') ADVANCE(2864); END_STATE(); case 2831: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(2865); - if (lookahead == '|') ADVANCE(2258); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '>') ADVANCE(2864); + if (lookahead == '|') ADVANCE(2259); END_STATE(); case 2832: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(2865); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '>') ADVANCE(2866); + if (lookahead == '|') ADVANCE(2259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2833: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(2864); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '>') ADVANCE(2866); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2834: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(2866); + ACCEPT_TOKEN(anon_sym_o_GT); + if (lookahead == '>') ADVANCE(2865); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 2835: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(2866); - if (lookahead == '|') ADVANCE(2259); + if (lookahead == '>') ADVANCE(2867); END_STATE(); case 2836: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(2868); - if (lookahead == '|') ADVANCE(2259); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '>') ADVANCE(2867); + if (lookahead == '|') ADVANCE(2260); END_STATE(); case 2837: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(2868); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '>') ADVANCE(2869); + if (lookahead == '|') ADVANCE(2260); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2838: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(2867); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '>') ADVANCE(2869); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2839: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(2869); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + if (lookahead == '>') ADVANCE(2868); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 2840: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(2869); - if (lookahead == '|') ADVANCE(2260); + if (lookahead == '>') ADVANCE(2870); END_STATE(); case 2841: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(2871); - if (lookahead == '|') ADVANCE(2260); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '>') ADVANCE(2870); + if (lookahead == '|') ADVANCE(2261); END_STATE(); case 2842: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(2871); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '>') ADVANCE(2872); + if (lookahead == '|') ADVANCE(2261); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2843: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(2870); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '>') ADVANCE(2872); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2844: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(2872); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + if (lookahead == '>') ADVANCE(2871); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 2845: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(2872); - if (lookahead == '|') ADVANCE(2261); + if (lookahead == '>') ADVANCE(2873); END_STATE(); case 2846: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(2874); - if (lookahead == '|') ADVANCE(2261); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '>') ADVANCE(2873); + if (lookahead == '|') ADVANCE(2262); END_STATE(); case 2847: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(2874); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '>') ADVANCE(2875); + if (lookahead == '|') ADVANCE(2262); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2848: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(2873); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '>') ADVANCE(2875); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2849: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(2875); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if (lookahead == '>') ADVANCE(2874); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 2850: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(2875); - if (lookahead == '|') ADVANCE(2262); + if (lookahead == '>') ADVANCE(2876); END_STATE(); case 2851: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(2877); - if (lookahead == '|') ADVANCE(2262); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '>') ADVANCE(2876); + if (lookahead == '|') ADVANCE(2263); END_STATE(); case 2852: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(2877); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '>') ADVANCE(2878); + if (lookahead == '|') ADVANCE(2263); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2853: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(2876); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '>') ADVANCE(2878); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2854: - ACCEPT_TOKEN(anon_sym_err_GT_GT); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if (lookahead == '>') ADVANCE(2877); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 2855: ACCEPT_TOKEN(anon_sym_err_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); END_STATE(); case 2856: ACCEPT_TOKEN(anon_sym_err_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 2857: - ACCEPT_TOKEN(anon_sym_out_GT_GT); + ACCEPT_TOKEN(anon_sym_err_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2858: ACCEPT_TOKEN(anon_sym_out_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); END_STATE(); case 2859: ACCEPT_TOKEN(anon_sym_out_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 2860: - ACCEPT_TOKEN(anon_sym_e_GT_GT); + ACCEPT_TOKEN(anon_sym_out_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2861: ACCEPT_TOKEN(anon_sym_e_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); END_STATE(); case 2862: ACCEPT_TOKEN(anon_sym_e_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 2863: - ACCEPT_TOKEN(anon_sym_o_GT_GT); + ACCEPT_TOKEN(anon_sym_e_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2864: ACCEPT_TOKEN(anon_sym_o_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); END_STATE(); case 2865: ACCEPT_TOKEN(anon_sym_o_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 2866: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); + ACCEPT_TOKEN(anon_sym_o_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2867: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); END_STATE(); case 2868: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 2869: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2870: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); END_STATE(); case 2871: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 2872: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2873: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); END_STATE(); case 2874: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 2875: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2876: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); END_STATE(); case 2877: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 2878: - ACCEPT_TOKEN(anon_sym_EQ2); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 2879: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(2991); - if (lookahead == '>') ADVANCE(2825); - if (lookahead == 'r') ADVANCE(2908); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); case 2880: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(2984); - if (lookahead == '>') ADVANCE(2830); - if (lookahead == 'u') ADVANCE(2912); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == '+') ADVANCE(2992); + if (lookahead == '>') ADVANCE(2826); + if (lookahead == 'r') ADVANCE(2909); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2881: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(2992); - if (lookahead == '>') ADVANCE(2815); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == '+') ADVANCE(2985); + if (lookahead == '>') ADVANCE(2831); + if (lookahead == 'u') ADVANCE(2913); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2882: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(2985); - if (lookahead == '>') ADVANCE(2820); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == '+') ADVANCE(2993); + if (lookahead == '>') ADVANCE(2816); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2883: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(542); - if (lookahead == '>') ADVANCE(616); - if (lookahead == 'r') ADVANCE(2910); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == '+') ADVANCE(2986); + if (lookahead == '>') ADVANCE(2821); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2884: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(2994); - if (lookahead == '>') ADVANCE(2824); - if (lookahead == 'r') ADVANCE(2909); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == '+') ADVANCE(543); + if (lookahead == '>') ADVANCE(617); + if (lookahead == 'r') ADVANCE(2911); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2885: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(2986); - if (lookahead == '>') ADVANCE(2829); - if (lookahead == 'u') ADVANCE(2913); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == '+') ADVANCE(2995); + if (lookahead == '>') ADVANCE(2825); + if (lookahead == 'r') ADVANCE(2910); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2886: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(490); - if (lookahead == '>') ADVANCE(617); + if (lookahead == '+') ADVANCE(2987); + if (lookahead == '>') ADVANCE(2830); if (lookahead == 'u') ADVANCE(2914); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2887: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(546); - if (lookahead == '>') ADVANCE(619); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == '+') ADVANCE(491); + if (lookahead == '>') ADVANCE(618); + if (lookahead == 'u') ADVANCE(2915); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2888: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(2995); - if (lookahead == '>') ADVANCE(2814); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == '+') ADVANCE(547); + if (lookahead == '>') ADVANCE(620); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2889: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(494); - if (lookahead == '>') ADVANCE(621); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == '+') ADVANCE(2996); + if (lookahead == '>') ADVANCE(2815); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2890: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(2987); - if (lookahead == '>') ADVANCE(2819); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == '+') ADVANCE(495); + if (lookahead == '>') ADVANCE(622); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2891: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(2932); - if (lookahead == '_') ADVANCE(2897); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2897); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == '+') ADVANCE(2988); + if (lookahead == '>') ADVANCE(2820); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2892: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == '-') ADVANCE(2933); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == '_') ADVANCE(2898); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2898); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2893: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '.') ADVANCE(441); - if (lookahead == '_') ADVANCE(2893); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2897); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == '-') ADVANCE(2934); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2894: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == ':') ADVANCE(3035); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == '.') ADVANCE(442); + if (lookahead == '_') ADVANCE(2894); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2898); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2895: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'T') ADVANCE(2934); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == ':') ADVANCE(3036); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2896: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(2897); - if (lookahead == 'b') ADVANCE(2712); - if (lookahead == 'o') ADVANCE(2728); - if (lookahead == 'x') ADVANCE(2733); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2899); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == 'T') ADVANCE(2935); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2897: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(2897); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2897); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == '_') ADVANCE(2898); + if (lookahead == 'b') ADVANCE(2711); + if (lookahead == 'o') ADVANCE(2727); + if (lookahead == 'x') ADVANCE(2732); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2900); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2898: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(2897); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2891); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == '_') ADVANCE(2898); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2898); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2899: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(2897); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2898); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == '_') ADVANCE(2898); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2892); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2900: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(2897); + if (lookahead == '_') ADVANCE(2898); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2899); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2901: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'a') ADVANCE(2904); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == '_') ADVANCE(2898); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2900); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2902: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'e') ADVANCE(2619); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == 'a') ADVANCE(2905); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2903: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'e') ADVANCE(2627); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == 'e') ADVANCE(2620); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2904: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(2911); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == 'e') ADVANCE(2628); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2905: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(2611); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == 'l') ADVANCE(2912); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2906: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(2905); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == 'l') ADVANCE(2612); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2907: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(2915); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == 'l') ADVANCE(2906); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2908: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(2881); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(2916); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2909: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(2888); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(2882); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2910: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(2887); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(2889); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2911: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 's') ADVANCE(2903); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == 'r') ADVANCE(2888); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2912: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(2882); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == 's') ADVANCE(2904); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2913: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(2890); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == 't') ADVANCE(2883); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2914: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(2889); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == 't') ADVANCE(2891); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2915: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'u') ADVANCE(2902); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == 't') ADVANCE(2890); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2916: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'u') ADVANCE(2906); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2921); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == 'u') ADVANCE(2903); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2917: ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'u') ADVANCE(2907); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2921); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + lookahead == 'a') ADVANCE(2922); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2918: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2920); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2922); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2919: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2924); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2921); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2920: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2923); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + lookahead == 'i') ADVANCE(2925); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2921: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2936); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2924); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2922: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2918); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + lookahead == 'n') ADVANCE(2937); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2923: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'N' || lookahead == 'n') ADVANCE(2919); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2924: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2925); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2920); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2925: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2936); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2926); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2926: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-' || - lookahead == '?' || - lookahead == '@') ADVANCE(2936); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2926); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2036); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2937); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2927: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(2927); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (lookahead == '-' || + lookahead == '?' || + lookahead == '@') ADVANCE(2937); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2927); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); case 2928: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '7') || + if (lookahead == '0' || + lookahead == '1' || lookahead == '_') ADVANCE(2928); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2929: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2892); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(2929); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2930: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2895); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2893); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2931: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2894); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2896); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2932: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2929); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2895); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2933: ACCEPT_TOKEN(sym_short_flag_identifier); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2930); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2934: ACCEPT_TOKEN(sym_short_flag_identifier); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2931); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); case 2935: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2932); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); + END_STATE(); + case 2936: ACCEPT_TOKEN(sym_short_flag_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2935); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2936); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); - case 2936: + case 2937: ACCEPT_TOKEN(sym_short_flag_identifier); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2936); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(2937); END_STATE(); - case 2937: + case 2938: ACCEPT_TOKEN(sym__unquoted_naive); - if (lookahead == '\'') ADVANCE(2768); + if (lookahead == '\'') ADVANCE(2769); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || lookahead == ')' || lookahead == ';' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(385); - if (lookahead != 0) ADVANCE(2937); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(386); + if (lookahead != 0) ADVANCE(2938); END_STATE(); - case 2938: + case 2939: ACCEPT_TOKEN(sym__unquoted_naive); - if (lookahead == '`') ADVANCE(2769); + if (lookahead == '`') ADVANCE(2770); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || lookahead == ')' || lookahead == ';' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(454); - if (lookahead != 0) ADVANCE(2938); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(455); + if (lookahead != 0) ADVANCE(2939); END_STATE(); - case 2939: + case 2940: ACCEPT_TOKEN(sym__unquoted_naive); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -47155,7101 +46606,7101 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2939); - END_STATE(); - case 2940: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '$') ADVANCE(2632); - if (lookahead == '(') ADVANCE(2528); - if (lookahead == '[') ADVANCE(2781); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2940); END_STATE(); case 2941: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2991); - if (lookahead == '>') ADVANCE(2825); - if (lookahead == 'r') ADVANCE(2997); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '$') ADVANCE(2633); + if (lookahead == '(') ADVANCE(2529); + if (lookahead == '[') ADVANCE(2782); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2942: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2984); - if (lookahead == '>') ADVANCE(2830); - if (lookahead == 'u') ADVANCE(3005); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '+') ADVANCE(2992); + if (lookahead == '>') ADVANCE(2826); + if (lookahead == 'r') ADVANCE(2998); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2943: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2978); - if (lookahead == '-') ADVANCE(2980); - if (lookahead == '>') ADVANCE(2825); - if (lookahead == '_') ADVANCE(2980); - if (lookahead == 'r') ADVANCE(2997); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '+') ADVANCE(2985); + if (lookahead == '>') ADVANCE(2831); + if (lookahead == 'u') ADVANCE(3006); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2944: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2992); - if (lookahead == '>') ADVANCE(2815); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '+') ADVANCE(2979); + if (lookahead == '-') ADVANCE(2981); + if (lookahead == '>') ADVANCE(2826); + if (lookahead == '_') ADVANCE(2981); + if (lookahead == 'r') ADVANCE(2998); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2945: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2985); - if (lookahead == '>') ADVANCE(2820); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '+') ADVANCE(2993); + if (lookahead == '>') ADVANCE(2816); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2946: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2994); - if (lookahead == '>') ADVANCE(2824); - if (lookahead == 'r') ADVANCE(2998); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '+') ADVANCE(2986); + if (lookahead == '>') ADVANCE(2821); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2947: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2986); - if (lookahead == '>') ADVANCE(2829); - if (lookahead == 'u') ADVANCE(3007); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '+') ADVANCE(2995); + if (lookahead == '>') ADVANCE(2825); + if (lookahead == 'r') ADVANCE(2999); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2948: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2995); - if (lookahead == '>') ADVANCE(2814); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '+') ADVANCE(2987); + if (lookahead == '>') ADVANCE(2830); + if (lookahead == 'u') ADVANCE(3008); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2949: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2987); - if (lookahead == '>') ADVANCE(2819); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '+') ADVANCE(2996); + if (lookahead == '>') ADVANCE(2815); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2950: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(3031); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '+') ADVANCE(2988); + if (lookahead == '>') ADVANCE(2820); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2951: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(2411); - if (lookahead == '_') ADVANCE(2970); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2678); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '-') ADVANCE(3032); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2952: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(2411); - if (lookahead == '_') ADVANCE(2974); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2599); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '.') ADVANCE(2412); + if (lookahead == '_') ADVANCE(2971); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2679); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2953: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(2532); - if (lookahead == '_') ADVANCE(2970); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2678); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '.') ADVANCE(2412); + if (lookahead == '_') ADVANCE(2975); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2600); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2954: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(2409); - if (lookahead == '_') ADVANCE(2970); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2678); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '.') ADVANCE(2533); + if (lookahead == '_') ADVANCE(2971); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2679); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2955: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(2969); - if (lookahead == '_') ADVANCE(2955); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '.') ADVANCE(2410); + if (lookahead == '_') ADVANCE(2971); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2679); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2956: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(2973); + if (lookahead == '.') ADVANCE(2970); if (lookahead == '_') ADVANCE(2956); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2957: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '2') ADVANCE(3021); - if (lookahead == '0' || - lookahead == '1') ADVANCE(3029); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '.') ADVANCE(2974); + if (lookahead == '_') ADVANCE(2957); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2595); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2958: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(3033); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '2') ADVANCE(3022); + if (lookahead == '0' || + lookahead == '1') ADVANCE(3030); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2959: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(3035); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == ':') ADVANCE(3034); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2960: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(2850); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == ':') ADVANCE(3036); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2961: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(2845); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '>') ADVANCE(2851); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2962: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(2835); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '>') ADVANCE(2846); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2963: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(2840); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '>') ADVANCE(2836); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2964: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(2849); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '>') ADVANCE(2841); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2965: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(2844); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '>') ADVANCE(2850); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2966: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(2834); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '>') ADVANCE(2845); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2967: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(2839); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '>') ADVANCE(2835); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2968: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2968); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '>') ADVANCE(2840); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2969: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == '_') ADVANCE(2969); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2683); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2970: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == '_') ADVANCE(2970); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2678); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2684); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2971: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2972); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2674); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '_') ADVANCE(2971); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2679); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2972: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2674); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '_') ADVANCE(2973); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2675); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2973: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == '_') ADVANCE(2973); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2675); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2974: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == '_') ADVANCE(2974); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2599); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2975: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2976); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2976); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2596); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '_') ADVANCE(2975); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2600); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2976: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2976); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2596); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '_') ADVANCE(2977); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2977); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2597); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2977: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == '_') ADVANCE(2977); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2597); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2978: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2980); - if (lookahead == 'o') ADVANCE(2960); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '_') ADVANCE(2978); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2979: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2980); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2980); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '_') ADVANCE(2981); + if (lookahead == 'o') ADVANCE(2961); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2980: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2980); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '_') ADVANCE(2981); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2981); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2981: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(2988); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == '_') ADVANCE(2981); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2982: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2616); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'a') ADVANCE(2989); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2983: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2624); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'e') ADVANCE(2617); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2984: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2961); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'e') ADVANCE(2625); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2985: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2999); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'e') ADVANCE(2962); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2986: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2965); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'e') ADVANCE(3000); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2987: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(3002); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'e') ADVANCE(2966); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2988: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(3003); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'e') ADVANCE(3003); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2989: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'l') ADVANCE(3004); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2990: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2989); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'l') ADVANCE(2609); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2991: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2960); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'l') ADVANCE(2990); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2992: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3011); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'o') ADVANCE(2961); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2993: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3004); - if (lookahead == 'u') ADVANCE(2990); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3017); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'o') ADVANCE(3012); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2994: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2964); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'o') ADVANCE(3005); + if (lookahead == 'u') ADVANCE(2991); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3018); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2995: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3012); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'o') ADVANCE(2965); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2996: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3010); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'o') ADVANCE(3013); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2997: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2944); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'r') ADVANCE(3011); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2998: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2948); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'r') ADVANCE(2945); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 2999: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3000); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'r') ADVANCE(2949); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3000: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2963); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'r') ADVANCE(3001); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3001: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2967); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'r') ADVANCE(2964); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3002: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3001); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'r') ADVANCE(2968); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3003: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(2983); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'r') ADVANCE(3002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3004: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 's') ADVANCE(2984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3005: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2945); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 't') ADVANCE(3023); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3006: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2962); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 't') ADVANCE(2946); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3007: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2949); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 't') ADVANCE(2963); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3008: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2966); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 't') ADVANCE(2950); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3009: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2990); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3017); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 't') ADVANCE(2967); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3010: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2982); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'u') ADVANCE(2991); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3018); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3011: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(3006); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'u') ADVANCE(2983); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3012: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(3008); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'u') ADVANCE(3007); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3013: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3017); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'u') ADVANCE(3009); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3014: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2691); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3018); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3015: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3019); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2692); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3016: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3014); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3020); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3017: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2705); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + lookahead == 'n') ADVANCE(3015); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3018: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + lookahead == 'n') ADVANCE(2706); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3019: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3020); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3020: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2687); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3021); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3021: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2744); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2688); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3022: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(2491); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2745); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3023: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2737); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(2492); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3024: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2950); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2738); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3025: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2959); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2951); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3026: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2749); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2960); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3027: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2739); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2750); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3028: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2756); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2740); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3029: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2744); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2757); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3030: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2745); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3031: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3026); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3025); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3032: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3025); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3027); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3033: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3027); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3026); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3034: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3028); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3035: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3034); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2959); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3036: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3035); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3037: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - ADVANCE_MAP( - '+', 3165, - '>', 2825, - 'I', 3228, - 'i', 3228, - 'n', 3135, - 'r', 3182, - 'B', 2714, - 'b', 2714, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3037); END_STATE(); case 3038: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3165); - if (lookahead == '>') ADVANCE(2825); - if (lookahead == 'I') ADVANCE(3228); - if (lookahead == 'i') ADVANCE(3228); - if (lookahead == 'r') ADVANCE(3182); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + ADVANCE_MAP( + '+', 3166, + '>', 2826, + 'I', 3229, + 'i', 3229, + 'n', 3136, + 'r', 3183, + 'B', 2715, + 'b', 2715, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3039: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3165); - if (lookahead == '>') ADVANCE(2825); - if (lookahead == 'n') ADVANCE(3135); - if (lookahead == 'r') ADVANCE(3182); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '+') ADVANCE(3166); + if (lookahead == '>') ADVANCE(2826); + if (lookahead == 'I') ADVANCE(3229); + if (lookahead == 'i') ADVANCE(3229); + if (lookahead == 'r') ADVANCE(3183); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3040: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3165); - if (lookahead == '>') ADVANCE(2825); - if (lookahead == 'r') ADVANCE(3182); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '+') ADVANCE(3166); + if (lookahead == '>') ADVANCE(2826); + if (lookahead == 'n') ADVANCE(3136); + if (lookahead == 'r') ADVANCE(3183); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3041: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3140); - if (lookahead == '>') ADVANCE(2830); - if (lookahead == 'r') ADVANCE(2464); - if (lookahead == 'u') ADVANCE(3199); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '+') ADVANCE(3166); + if (lookahead == '>') ADVANCE(2826); + if (lookahead == 'r') ADVANCE(3183); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3042: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3140); - if (lookahead == '>') ADVANCE(2830); - if (lookahead == 'u') ADVANCE(3199); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '+') ADVANCE(3141); + if (lookahead == '>') ADVANCE(2831); + if (lookahead == 'r') ADVANCE(2465); + if (lookahead == 'u') ADVANCE(3200); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3043: ACCEPT_TOKEN(aux_sym_unquoted_token2); - ADVANCE_MAP( - '+', 3115, - '-', 3119, - '>', 2825, - 'I', 3228, - '_', 3119, - 'i', 3228, - 'n', 3135, - 'r', 3182, - 'B', 2714, - 'b', 2714, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '+') ADVANCE(3141); + if (lookahead == '>') ADVANCE(2831); + if (lookahead == 'u') ADVANCE(3200); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3044: ACCEPT_TOKEN(aux_sym_unquoted_token2); ADVANCE_MAP( - '+', 3115, - '-', 3119, - '>', 2825, - 'I', 3228, - '_', 3119, - 'i', 3228, - 'r', 3182, - 'B', 2714, - 'b', 2714, + '+', 3116, + '-', 3120, + '>', 2826, + 'I', 3229, + '_', 3120, + 'i', 3229, + 'n', 3136, + 'r', 3183, + 'B', 2715, + 'b', 2715, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3045: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3115); - if (lookahead == '-') ADVANCE(3119); - if (lookahead == '>') ADVANCE(2825); - if (lookahead == '_') ADVANCE(3119); - if (lookahead == 'n') ADVANCE(3135); - if (lookahead == 'r') ADVANCE(3182); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + ADVANCE_MAP( + '+', 3116, + '-', 3120, + '>', 2826, + 'I', 3229, + '_', 3120, + 'i', 3229, + 'r', 3183, + 'B', 2715, + 'b', 2715, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3046: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3115); - if (lookahead == '-') ADVANCE(3119); - if (lookahead == '>') ADVANCE(2825); - if (lookahead == '_') ADVANCE(3119); - if (lookahead == 'r') ADVANCE(3182); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '+') ADVANCE(3116); + if (lookahead == '-') ADVANCE(3120); + if (lookahead == '>') ADVANCE(2826); + if (lookahead == '_') ADVANCE(3120); + if (lookahead == 'n') ADVANCE(3136); + if (lookahead == 'r') ADVANCE(3183); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3047: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3166); - if (lookahead == '>') ADVANCE(2815); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '+') ADVANCE(3116); + if (lookahead == '-') ADVANCE(3120); + if (lookahead == '>') ADVANCE(2826); + if (lookahead == '_') ADVANCE(3120); + if (lookahead == 'r') ADVANCE(3183); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3048: ACCEPT_TOKEN(aux_sym_unquoted_token2); - ADVANCE_MAP( - '+', 3116, - '-', 3119, - '>', 3219, - 'I', 3228, - '_', 3119, - 'i', 3228, - 'n', 3135, - 'r', 3183, - 'B', 2714, - 'b', 2714, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '+') ADVANCE(3167); + if (lookahead == '>') ADVANCE(2816); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3049: ACCEPT_TOKEN(aux_sym_unquoted_token2); ADVANCE_MAP( - '+', 3116, - '-', 3119, - '>', 3219, - 'I', 3228, - '_', 3119, - 'i', 3228, - 'r', 3183, - 'B', 2714, - 'b', 2714, + '+', 3117, + '-', 3120, + '>', 3220, + 'I', 3229, + '_', 3120, + 'i', 3229, + 'n', 3136, + 'r', 3184, + 'B', 2715, + 'b', 2715, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3050: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3116); - if (lookahead == '-') ADVANCE(3119); - if (lookahead == '>') ADVANCE(3219); - if (lookahead == '_') ADVANCE(3119); - if (lookahead == 'n') ADVANCE(3135); - if (lookahead == 'r') ADVANCE(3183); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + ADVANCE_MAP( + '+', 3117, + '-', 3120, + '>', 3220, + 'I', 3229, + '_', 3120, + 'i', 3229, + 'r', 3184, + 'B', 2715, + 'b', 2715, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3051: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3116); - if (lookahead == '-') ADVANCE(3119); - if (lookahead == '>') ADVANCE(3219); - if (lookahead == '_') ADVANCE(3119); - if (lookahead == 'r') ADVANCE(3183); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '+') ADVANCE(3117); + if (lookahead == '-') ADVANCE(3120); + if (lookahead == '>') ADVANCE(3220); + if (lookahead == '_') ADVANCE(3120); + if (lookahead == 'n') ADVANCE(3136); + if (lookahead == 'r') ADVANCE(3184); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3052: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3141); - if (lookahead == '>') ADVANCE(2820); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '+') ADVANCE(3117); + if (lookahead == '-') ADVANCE(3120); + if (lookahead == '>') ADVANCE(3220); + if (lookahead == '_') ADVANCE(3120); + if (lookahead == 'r') ADVANCE(3184); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3053: ACCEPT_TOKEN(aux_sym_unquoted_token2); - ADVANCE_MAP( - '+', 3170, - '>', 3219, - 'I', 3228, - 'i', 3228, - 'n', 3135, - 'r', 3183, - 'B', 2714, - 'b', 2714, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '+') ADVANCE(3142); + if (lookahead == '>') ADVANCE(2821); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3054: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3170); - if (lookahead == '>') ADVANCE(3219); - if (lookahead == 'I') ADVANCE(3228); - if (lookahead == 'i') ADVANCE(3228); - if (lookahead == 'r') ADVANCE(3183); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + ADVANCE_MAP( + '+', 3171, + '>', 3220, + 'I', 3229, + 'i', 3229, + 'n', 3136, + 'r', 3184, + 'B', 2715, + 'b', 2715, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3055: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3170); - if (lookahead == '>') ADVANCE(3219); - if (lookahead == 'n') ADVANCE(3135); - if (lookahead == 'r') ADVANCE(3183); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '+') ADVANCE(3171); + if (lookahead == '>') ADVANCE(3220); + if (lookahead == 'I') ADVANCE(3229); + if (lookahead == 'i') ADVANCE(3229); + if (lookahead == 'r') ADVANCE(3184); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3056: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3170); - if (lookahead == '>') ADVANCE(3219); - if (lookahead == 'r') ADVANCE(3183); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '+') ADVANCE(3171); + if (lookahead == '>') ADVANCE(3220); + if (lookahead == 'n') ADVANCE(3136); + if (lookahead == 'r') ADVANCE(3184); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3057: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3142); + if (lookahead == '+') ADVANCE(3171); if (lookahead == '>') ADVANCE(3220); - if (lookahead == 'r') ADVANCE(2464); - if (lookahead == 'u') ADVANCE(3206); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'r') ADVANCE(3184); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3058: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3142); - if (lookahead == '>') ADVANCE(3220); - if (lookahead == 'u') ADVANCE(3206); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '+') ADVANCE(3143); + if (lookahead == '>') ADVANCE(3221); + if (lookahead == 'r') ADVANCE(2465); + if (lookahead == 'u') ADVANCE(3207); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3059: ACCEPT_TOKEN(aux_sym_unquoted_token2); - ADVANCE_MAP( - '+', 3117, - '-', 3119, - '>', 2824, - 'I', 3228, - '_', 3119, - 'i', 3228, - 'r', 3186, - 'B', 2714, - 'b', 2714, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '+') ADVANCE(3143); + if (lookahead == '>') ADVANCE(3221); + if (lookahead == 'u') ADVANCE(3207); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3060: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3172); - if (lookahead == '>') ADVANCE(2824); - if (lookahead == 'I') ADVANCE(3228); - if (lookahead == 'i') ADVANCE(3228); - if (lookahead == 'r') ADVANCE(3186); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + ADVANCE_MAP( + '+', 3118, + '-', 3120, + '>', 2825, + 'I', 3229, + '_', 3120, + 'i', 3229, + 'r', 3187, + 'B', 2715, + 'b', 2715, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3061: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3172); - if (lookahead == '>') ADVANCE(2824); - if (lookahead == 'r') ADVANCE(3186); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '+') ADVANCE(3173); + if (lookahead == '>') ADVANCE(2825); + if (lookahead == 'I') ADVANCE(3229); + if (lookahead == 'i') ADVANCE(3229); + if (lookahead == 'r') ADVANCE(3187); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3062: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3143); - if (lookahead == '>') ADVANCE(2829); - if (lookahead == 'u') ADVANCE(3207); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '+') ADVANCE(3173); + if (lookahead == '>') ADVANCE(2825); + if (lookahead == 'r') ADVANCE(3187); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3063: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3174); - if (lookahead == '>') ADVANCE(3222); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '+') ADVANCE(3144); + if (lookahead == '>') ADVANCE(2830); + if (lookahead == 'u') ADVANCE(3208); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3064: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3144); - if (lookahead == '>') ADVANCE(3224); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '+') ADVANCE(3175); + if (lookahead == '>') ADVANCE(3223); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3065: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3175); - if (lookahead == '>') ADVANCE(2814); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '+') ADVANCE(3145); + if (lookahead == '>') ADVANCE(3225); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3066: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3145); - if (lookahead == '>') ADVANCE(2819); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '+') ADVANCE(3176); + if (lookahead == '>') ADVANCE(2815); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3067: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(2320); - if (lookahead == '.') ADVANCE(3112); - if (lookahead == '_') ADVANCE(3078); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3239); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '+') ADVANCE(3146); + if (lookahead == '>') ADVANCE(2820); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3068: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(3129); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '-') ADVANCE(2321); + if (lookahead == '.') ADVANCE(3113); + if (lookahead == '_') ADVANCE(3079); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3240); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3069: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(3150); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '-') ADVANCE(3130); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3070: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(3216); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '-') ADVANCE(3151); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3071: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(3250); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '-') ADVANCE(3217); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3072: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(3217); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '-') ADVANCE(3251); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3073: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(2411); - if (lookahead == '_') ADVANCE(3109); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2598); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '-') ADVANCE(3218); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3074: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(2411); - if (lookahead == '_') ADVANCE(3113); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2681); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '.') ADVANCE(2412); + if (lookahead == '_') ADVANCE(3110); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2599); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3075: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(2532); - if (lookahead == '_') ADVANCE(3113); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2681); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '.') ADVANCE(2412); + if (lookahead == '_') ADVANCE(3114); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2682); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3076: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(2532); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '.') ADVANCE(2533); + if (lookahead == '_') ADVANCE(3114); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2682); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3077: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3108); - if (lookahead == '_') ADVANCE(3077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '.') ADVANCE(2533); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3078: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3112); + if (lookahead == '.') ADVANCE(3109); if (lookahead == '_') ADVANCE(3078); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2595); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3079: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '2') ADVANCE(3245); - if (lookahead == '0' || - lookahead == '1') ADVANCE(3253); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '.') ADVANCE(3113); + if (lookahead == '_') ADVANCE(3079); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3080: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ':') ADVANCE(3255); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '2') ADVANCE(3246); + if (lookahead == '0' || + lookahead == '1') ADVANCE(3254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3081: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ':') ADVANCE(3258); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == ':') ADVANCE(3256); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3082: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '=') ADVANCE(2478); - if (lookahead == '~') ADVANCE(2489); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == ':') ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3083: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '=') ADVANCE(2476); - if (lookahead == '>') ADVANCE(2404); - if (lookahead == '~') ADVANCE(2487); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '=') ADVANCE(2479); + if (lookahead == '~') ADVANCE(2490); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3084: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '=') ADVANCE(2476); - if (lookahead == '~') ADVANCE(2487); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '=') ADVANCE(2477); + if (lookahead == '>') ADVANCE(2405); + if (lookahead == '~') ADVANCE(2488); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3085: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(2404); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '=') ADVANCE(2477); + if (lookahead == '~') ADVANCE(2488); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3086: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(2850); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '>') ADVANCE(2405); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3087: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(2845); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '>') ADVANCE(2851); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3088: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(2835); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '>') ADVANCE(2846); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3089: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(2840); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '>') ADVANCE(2836); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3090: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(2849); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '>') ADVANCE(2841); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3091: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(2844); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '>') ADVANCE(2850); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3092: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(2834); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '>') ADVANCE(2845); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3093: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(2839); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '>') ADVANCE(2835); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3094: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '>') ADVANCE(2840); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3095: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3223); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '>') ADVANCE(3222); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3096: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3225); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '>') ADVANCE(3224); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3097: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '>') ADVANCE(3226); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3098: ACCEPT_TOKEN(aux_sym_unquoted_token2); - ADVANCE_MAP( - 'I', 3228, - '_', 3119, - 'i', 3228, - 'n', 3135, - '+', 3119, - '-', 3119, - 'B', 2714, - 'b', 2714, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '>') ADVANCE(3227); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3099: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(3228); - if (lookahead == '_') ADVANCE(3119); - if (lookahead == 'i') ADVANCE(3228); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3119); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + ADVANCE_MAP( + 'I', 3229, + '_', 3120, + 'i', 3229, + 'n', 3136, + '+', 3120, + '-', 3120, + 'B', 2715, + 'b', 2715, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3100: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(3228); - if (lookahead == '_') ADVANCE(3119); - if (lookahead == 'i') ADVANCE(3130); + if (lookahead == 'I') ADVANCE(3229); + if (lookahead == '_') ADVANCE(3120); + if (lookahead == 'i') ADVANCE(3229); if (lookahead == '+' || - lookahead == '-') ADVANCE(3119); + lookahead == '-') ADVANCE(3120); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'b') ADVANCE(2715); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3101: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(3228); - if (lookahead == 'i') ADVANCE(3228); - if (lookahead == 'n') ADVANCE(3135); + if (lookahead == 'I') ADVANCE(3229); + if (lookahead == '_') ADVANCE(3120); + if (lookahead == 'i') ADVANCE(3131); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3120); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'b') ADVANCE(2715); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3102: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(3228); - if (lookahead == 'i') ADVANCE(3228); - if (lookahead == 'r') ADVANCE(3212); + if (lookahead == 'I') ADVANCE(3229); + if (lookahead == 'i') ADVANCE(3229); + if (lookahead == 'n') ADVANCE(3136); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3103: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(3228); - if (lookahead == 'i') ADVANCE(3228); + if (lookahead == 'I') ADVANCE(3229); + if (lookahead == 'i') ADVANCE(3229); + if (lookahead == 'r') ADVANCE(3213); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3104: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(3228); - if (lookahead == 'i') ADVANCE(3130); + if (lookahead == 'I') ADVANCE(3229); + if (lookahead == 'i') ADVANCE(3229); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3105: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(3228); - if (lookahead == 'i') ADVANCE(3160); - if (lookahead == 'o') ADVANCE(3134); - if (lookahead == 's') ADVANCE(2721); + if (lookahead == 'I') ADVANCE(3229); + if (lookahead == 'i') ADVANCE(3131); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3106: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(3228); - if (lookahead == 'i') ADVANCE(3160); - if (lookahead == 's') ADVANCE(2721); + if (lookahead == 'I') ADVANCE(3229); + if (lookahead == 'i') ADVANCE(3161); + if (lookahead == 'o') ADVANCE(3135); + if (lookahead == 's') ADVANCE(2722); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3107: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3107); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'I') ADVANCE(3229); + if (lookahead == 'i') ADVANCE(3161); + if (lookahead == 's') ADVANCE(2722); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3108: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '_') ADVANCE(3108); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3109: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '_') ADVANCE(3109); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2598); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3110: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3111); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3111); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2596); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '_') ADVANCE(3110); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2599); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3111: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3111); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2596); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '_') ADVANCE(3112); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3112); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2597); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3112: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '_') ADVANCE(3112); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2683); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2597); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3113: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '_') ADVANCE(3113); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2681); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2684); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3114: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3119); - if (lookahead == 'n') ADVANCE(3135); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3119); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '_') ADVANCE(3114); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2682); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3115: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3119); - if (lookahead == 'o') ADVANCE(3086); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '_') ADVANCE(3120); + if (lookahead == 'n') ADVANCE(3136); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3120); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3116: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3119); - if (lookahead == 'o') ADVANCE(3094); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '_') ADVANCE(3120); + if (lookahead == 'o') ADVANCE(3087); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3117: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3119); - if (lookahead == 'o') ADVANCE(3090); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '_') ADVANCE(3120); + if (lookahead == 'o') ADVANCE(3095); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3118: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3119); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3119); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '_') ADVANCE(3120); + if (lookahead == 'o') ADVANCE(3091); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3119: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3119); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '_') ADVANCE(3120); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3120); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3120: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3121); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3121); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2674); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '_') ADVANCE(3120); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3121: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3121); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2674); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '_') ADVANCE(3122); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3122); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2675); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3122: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '_') ADVANCE(3122); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2675); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3123: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(3157); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '_') ADVANCE(3123); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3124: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(3218); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'a') ADVANCE(3158); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3125: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(3192); - if (lookahead == 'r') ADVANCE(2721); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'a') ADVANCE(3219); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3126: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(3192); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'a') ADVANCE(3193); + if (lookahead == 'r') ADVANCE(2722); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3127: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'a') ADVANCE(3193); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3128: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(3187); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'a') ADVANCE(3194); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3129: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(3164); - if (lookahead == 'o') ADVANCE(3178); - if (lookahead == 's') ADVANCE(3149); - if (lookahead == 'x') ADVANCE(3173); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'a') ADVANCE(3188); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3130: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'a') ADVANCE(3165); + if (lookahead == 'o') ADVANCE(3179); + if (lookahead == 's') ADVANCE(3150); + if (lookahead == 'x') ADVANCE(3174); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3131: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'c') ADVANCE(2721); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3132: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'd') ADVANCE(2460); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'c') ADVANCE(2722); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3133: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'd') ADVANCE(2522); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'd') ADVANCE(2461); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3134: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'd') ADVANCE(2502); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'd') ADVANCE(2523); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3135: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'd') ADVANCE(3197); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'd') ADVANCE(2503); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3136: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(2616); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'd') ADVANCE(3198); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3137: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(2624); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'e') ADVANCE(2617); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3138: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3131); - if (lookahead == 't') ADVANCE(3128); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'e') ADVANCE(2625); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3139: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3131); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'e') ADVANCE(3132); + if (lookahead == 't') ADVANCE(3129); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3140: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3087); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'e') ADVANCE(3132); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3141: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3184); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'e') ADVANCE(3088); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3142: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3095); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'e') ADVANCE(3185); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3143: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3091); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'e') ADVANCE(3096); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3144: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3189); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'e') ADVANCE(3092); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3145: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3191); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'e') ADVANCE(3190); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3146: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'f') ADVANCE(2386); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'e') ADVANCE(3192); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3147: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'h') ADVANCE(2474); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'f') ADVANCE(2387); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3148: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'h') ADVANCE(2472); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'h') ADVANCE(2475); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3149: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'h') ADVANCE(3155); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'h') ADVANCE(2473); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3150: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'h') ADVANCE(3127); - if (lookahead == 'i') ADVANCE(3159); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'h') ADVANCE(3156); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3151: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(3200); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'h') ADVANCE(3128); + if (lookahead == 'i') ADVANCE(3160); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3152: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'i') ADVANCE(3201); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3153: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(3204); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'i') ADVANCE(3202); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3154: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'k') ADVANCE(2721); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'i') ADVANCE(3205); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3155: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(2518); - if (lookahead == 'r') ADVANCE(2520); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'k') ADVANCE(2722); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3156: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(2608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'l') ADVANCE(2519); + if (lookahead == 'r') ADVANCE(2521); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3157: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(3196); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'l') ADVANCE(2609); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3158: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(3156); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'l') ADVANCE(3197); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3159: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(2466); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'l') ADVANCE(3157); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3160: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(2721); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'n') ADVANCE(2467); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3161: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(2361); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'n') ADVANCE(2722); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3162: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(3132); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'n') ADVANCE(2362); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3163: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(3135); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'n') ADVANCE(3133); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3164: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(3133); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'n') ADVANCE(3136); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3165: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3086); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'n') ADVANCE(3134); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3166: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3213); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'o') ADVANCE(3087); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3167: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3134); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'o') ADVANCE(3214); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3168: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3203); - if (lookahead == 's') ADVANCE(2721); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'o') ADVANCE(3135); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3169: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3203); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'o') ADVANCE(3204); + if (lookahead == 's') ADVANCE(2722); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3170: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3094); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'o') ADVANCE(3204); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3171: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3177); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'o') ADVANCE(3095); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3172: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3090); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'o') ADVANCE(3178); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3173: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3179); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'o') ADVANCE(3091); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3174: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3214); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'o') ADVANCE(3180); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3175: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'o') ADVANCE(3215); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3176: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(2464); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'o') ADVANCE(3216); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3177: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(2462); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'r') ADVANCE(2465); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3178: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(2526); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'r') ADVANCE(2463); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3179: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(2524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'r') ADVANCE(2527); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3180: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(2721); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'r') ADVANCE(2525); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3181: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3212); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'r') ADVANCE(2722); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3182: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3047); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'r') ADVANCE(3213); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3183: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3063); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'r') ADVANCE(3048); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3184: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3185); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'r') ADVANCE(3064); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3185: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3089); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'r') ADVANCE(3186); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3186: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3065); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'r') ADVANCE(3090); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3187: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3210); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'r') ADVANCE(3066); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3188: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3093); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'r') ADVANCE(3211); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3189: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3190); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'r') ADVANCE(3094); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3190: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3097); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'r') ADVANCE(3191); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3191: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3188); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'r') ADVANCE(3098); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3192: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(2468); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'r') ADVANCE(3189); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3193: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(2470); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 's') ADVANCE(2469); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3194: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(2721); - if (lookahead == 'u') ADVANCE(3158); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3235); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 's') ADVANCE(2471); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3195: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(2721); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 's') ADVANCE(2722); + if (lookahead == 'u') ADVANCE(3159); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3236); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3196: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(3137); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 's') ADVANCE(2722); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3197: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(3070); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 's') ADVANCE(3138); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3198: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(3072); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 's') ADVANCE(3071); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3199: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3052); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 's') ADVANCE(3073); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3200: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3068); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 't') ADVANCE(3053); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3201: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3147); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 't') ADVANCE(3069); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3202: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3088); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 't') ADVANCE(3148); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3203: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3069); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 't') ADVANCE(3089); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3204: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3148); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 't') ADVANCE(3070); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3205: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3128); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 't') ADVANCE(3149); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3206: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3064); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 't') ADVANCE(3129); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3207: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3066); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 't') ADVANCE(3065); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3208: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3096); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 't') ADVANCE(3067); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3209: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3092); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 't') ADVANCE(3097); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3210: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3198); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 't') ADVANCE(3093); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3211: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(3158); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3235); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 't') ADVANCE(3199); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3212: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(3136); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'u') ADVANCE(3159); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3236); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3213: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(3202); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'u') ADVANCE(3137); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3214: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(3208); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'u') ADVANCE(3203); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3215: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'u') ADVANCE(3209); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3216: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'w') ADVANCE(3152); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'u') ADVANCE(3210); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3217: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'w') ADVANCE(3153); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3218: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'y') ADVANCE(2721); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'w') ADVANCE(3154); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3219: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2257); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'y') ADVANCE(2722); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3220: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '|') ADVANCE(2258); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3221: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2262); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '|') ADVANCE(2259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3222: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2255); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '|') ADVANCE(2263); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3223: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2261); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '|') ADVANCE(2256); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3224: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2256); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '|') ADVANCE(2262); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3225: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2259); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '|') ADVANCE(2257); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3226: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '|') ADVANCE(2260); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3227: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3235); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == '|') ADVANCE(2261); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3228: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3236); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3229: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3232); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3230: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2703); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'f') ADVANCE(3233); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3231: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2694); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'f') ADVANCE(2704); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3232: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1758); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3259); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(1761); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2695); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3233: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3241); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'i') ADVANCE(1759); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3260); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(1762); END_STATE(); case 3234: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'I' || lookahead == 'i') ADVANCE(3242); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3235: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2705); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3243); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3236: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3231); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'n') ADVANCE(2706); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3237: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3233); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'n') ADVANCE(3232); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3238: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3230); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'n') ADVANCE(3234); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3239: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3229); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'n') ADVANCE(3231); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3240: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3234); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'n') ADVANCE(3230); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3241: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3243); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3235); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3242: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'T' || lookahead == 't') ADVANCE(3244); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3243: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2687); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3245); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3244: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2697); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + lookahead == 'y') ADVANCE(2688); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3245: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2746); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2698); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3246: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2737); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2747); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3247: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3071); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2738); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3248: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3081); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3072); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3249: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3247); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3082); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3250: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3256); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3248); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3251: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2741); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3257); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3252: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2758); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2742); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3253: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2746); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2759); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3254: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3248); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2747); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3255: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3251); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3249); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3256: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2752); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3252); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3257: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3080); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2753); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3258: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3257); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3081); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3259: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3258); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3260: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '$') ADVANCE(2296); - if (lookahead == '(') ADVANCE(2492); - if (lookahead == '.') ADVANCE(3263); - if (lookahead == '_') ADVANCE(3264); - if (lookahead == '\t' || - lookahead == ' ') SKIP(295); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3262); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3268); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3260); END_STATE(); case 3261: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '.') ADVANCE(3263); - if (lookahead == '_') ADVANCE(3264); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '$') ADVANCE(2297); + if (lookahead == '(') ADVANCE(2493); + if (lookahead == '.') ADVANCE(3264); + if (lookahead == '_') ADVANCE(3265); if (lookahead == '\t' || - lookahead == ' ') SKIP(354); + lookahead == ' ') SKIP(296); if (lookahead == '+' || - lookahead == '-') ADVANCE(3262); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3268); + lookahead == '-') ADVANCE(3263); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3269); END_STATE(); case 3262: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '.') ADVANCE(3265); - if (lookahead == '_') ADVANCE(3262); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3268); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '.') ADVANCE(3264); + if (lookahead == '_') ADVANCE(3265); + if (lookahead == '\t' || + lookahead == ' ') SKIP(355); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3263); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3269); END_STATE(); case 3263: ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '.') ADVANCE(3266); if (lookahead == '_') ADVANCE(3263); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2606); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3268); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2595); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3269); END_STATE(); case 3264: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == '_') ADVANCE(3264); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3268); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2606); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3269); END_STATE(); case 3265: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == '_') ADVANCE(3265); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3268); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3269); END_STATE(); case 3266: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(3267); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3267); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2596); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3268); + if (lookahead == '_') ADVANCE(3266); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3269); END_STATE(); case 3267: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(3267); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2596); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3268); + if (lookahead == '_') ADVANCE(3268); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3268); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2597); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3269); END_STATE(); case 3268: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3268); + if (lookahead == '_') ADVANCE(3268); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2597); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3269); END_STATE(); case 3269: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(3407); - if (lookahead == '>') ADVANCE(2826); - if (lookahead == 'n') ADVANCE(3348); - if (lookahead == 'r') ADVANCE(3424); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3269); END_STATE(); case 3270: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(3407); - if (lookahead == '>') ADVANCE(2826); - if (lookahead == 'r') ADVANCE(3424); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '+') ADVANCE(3408); + if (lookahead == '>') ADVANCE(2827); + if (lookahead == 'n') ADVANCE(3349); + if (lookahead == 'r') ADVANCE(3425); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3271: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(3356); - if (lookahead == '>') ADVANCE(2831); - if (lookahead == 'r') ADVANCE(2465); - if (lookahead == 'u') ADVANCE(3458); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '+') ADVANCE(3408); + if (lookahead == '>') ADVANCE(2827); + if (lookahead == 'r') ADVANCE(3425); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3272: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(3356); - if (lookahead == '>') ADVANCE(2831); - if (lookahead == 'u') ADVANCE(3458); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '+') ADVANCE(3357); + if (lookahead == '>') ADVANCE(2832); + if (lookahead == 'r') ADVANCE(2466); + if (lookahead == 'u') ADVANCE(3459); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3273: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(3410); - if (lookahead == '>') ADVANCE(2816); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '+') ADVANCE(3357); + if (lookahead == '>') ADVANCE(2832); + if (lookahead == 'u') ADVANCE(3459); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3274: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(3359); - if (lookahead == '>') ADVANCE(2821); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '+') ADVANCE(3411); + if (lookahead == '>') ADVANCE(2817); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3275: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(3415); - if (lookahead == '>') ADVANCE(3487); - if (lookahead == 'n') ADVANCE(3348); - if (lookahead == 'r') ADVANCE(3434); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '+') ADVANCE(3360); + if (lookahead == '>') ADVANCE(2822); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3276: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(3415); - if (lookahead == '>') ADVANCE(3487); - if (lookahead == 'r') ADVANCE(3434); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '+') ADVANCE(3416); + if (lookahead == '>') ADVANCE(3488); + if (lookahead == 'n') ADVANCE(3349); + if (lookahead == 'r') ADVANCE(3435); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3277: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(3363); + if (lookahead == '+') ADVANCE(3416); if (lookahead == '>') ADVANCE(3488); - if (lookahead == 'r') ADVANCE(2465); - if (lookahead == 'u') ADVANCE(3465); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'r') ADVANCE(3435); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3278: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(3363); - if (lookahead == '>') ADVANCE(3488); - if (lookahead == 'u') ADVANCE(3465); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '+') ADVANCE(3364); + if (lookahead == '>') ADVANCE(3489); + if (lookahead == 'r') ADVANCE(2466); + if (lookahead == 'u') ADVANCE(3466); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3279: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(3418); - if (lookahead == '>') ADVANCE(2827); - if (lookahead == 'r') ADVANCE(3439); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '+') ADVANCE(3364); + if (lookahead == '>') ADVANCE(3489); + if (lookahead == 'u') ADVANCE(3466); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3280: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(3365); - if (lookahead == '>') ADVANCE(2832); - if (lookahead == 'u') ADVANCE(3466); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '+') ADVANCE(3419); + if (lookahead == '>') ADVANCE(2828); + if (lookahead == 'r') ADVANCE(3440); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3281: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(3419); - if (lookahead == '>') ADVANCE(3490); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '+') ADVANCE(3366); + if (lookahead == '>') ADVANCE(2833); + if (lookahead == 'u') ADVANCE(3467); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3282: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(3366); - if (lookahead == '>') ADVANCE(3492); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '+') ADVANCE(3420); + if (lookahead == '>') ADVANCE(3491); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3283: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(3420); - if (lookahead == '>') ADVANCE(2817); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '+') ADVANCE(3367); + if (lookahead == '>') ADVANCE(3493); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3284: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(3367); - if (lookahead == '>') ADVANCE(2822); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '+') ADVANCE(3421); + if (lookahead == '>') ADVANCE(2818); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3285: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(2323); - if (lookahead == '.') ADVANCE(3321); - if (lookahead == '_') ADVANCE(3293); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3509); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3321); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '+') ADVANCE(3368); + if (lookahead == '>') ADVANCE(2823); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3286: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(3529); - if (lookahead == '_') ADVANCE(3321); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3321); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '-') ADVANCE(2324); + if (lookahead == '.') ADVANCE(3322); + if (lookahead == '_') ADVANCE(3294); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3510); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3322); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3287: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(3341); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '-') ADVANCE(3530); + if (lookahead == '_') ADVANCE(3322); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3322); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3288: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(3376); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '-') ADVANCE(3342); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3289: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(3484); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '-') ADVANCE(3377); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3290: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(3361); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == '-') ADVANCE(3485); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3291: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(3530); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '-') ADVANCE(3362); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3292: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(3485); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '-') ADVANCE(3531); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3293: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(3321); - if (lookahead == '_') ADVANCE(3293); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3321); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '-') ADVANCE(3486); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3294: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(2412); - if (lookahead == '_') ADVANCE(3328); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3325); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '.') ADVANCE(3322); + if (lookahead == '_') ADVANCE(3294); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3322); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3295: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(3330); - if (lookahead == '_') ADVANCE(3295); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3330); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == '.') ADVANCE(2413); + if (lookahead == '_') ADVANCE(3329); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3326); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3296: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(3527); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3297); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '.') ADVANCE(3331); + if (lookahead == '_') ADVANCE(3296); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3331); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3297: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '2') ADVANCE(3518); - if (lookahead == '0' || - lookahead == '1') ADVANCE(3528); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '.') ADVANCE(3528); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3298); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3298: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':') ADVANCE(3519); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3522); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '2') ADVANCE(3519); + if (lookahead == '0' || + lookahead == '1') ADVANCE(3529); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3299: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':') ADVANCE(3532); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == ':') ADVANCE(3520); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3523); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3300: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':') ADVANCE(3534); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == ':') ADVANCE(3533); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3301: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '=') ADVANCE(2479); - if (lookahead == '~') ADVANCE(2490); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == ':') ADVANCE(3535); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3302: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '=') ADVANCE(2477); - if (lookahead == '>') ADVANCE(2405); - if (lookahead == '~') ADVANCE(2488); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '=') ADVANCE(2480); + if (lookahead == '~') ADVANCE(2491); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3303: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '=') ADVANCE(2477); - if (lookahead == '~') ADVANCE(2488); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '=') ADVANCE(2478); + if (lookahead == '>') ADVANCE(2406); + if (lookahead == '~') ADVANCE(2489); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3304: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(2851); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '=') ADVANCE(2478); + if (lookahead == '~') ADVANCE(2489); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3305: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(2846); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '>') ADVANCE(2852); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3306: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(2836); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '>') ADVANCE(2847); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3307: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(2841); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '>') ADVANCE(2837); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3308: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(2852); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '>') ADVANCE(2842); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3309: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(2847); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '>') ADVANCE(2853); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3310: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(2837); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '>') ADVANCE(2848); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3311: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(2842); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '>') ADVANCE(2838); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3312: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(2405); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '>') ADVANCE(2843); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3313: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3489); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '>') ADVANCE(2406); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3314: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3491); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '>') ADVANCE(3490); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3315: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3493); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '>') ADVANCE(3492); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3316: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == '>') ADVANCE(3494); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3317: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N') ADVANCE(3499); - if (lookahead == 'f') ADVANCE(3517); - if (lookahead == 'n') ADVANCE(3499); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == '>') ADVANCE(3495); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3318: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'T') ADVANCE(3531); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'N') ADVANCE(3500); + if (lookahead == 'f') ADVANCE(3518); + if (lookahead == 'n') ADVANCE(3500); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3319: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(3321); - if (lookahead == 'b') ADVANCE(2710); - if (lookahead == 'o') ADVANCE(2726); - if (lookahead == 'x') ADVANCE(2731); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3323); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'T') ADVANCE(3532); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3320: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(3321); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3321); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3321); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '_') ADVANCE(3322); + if (lookahead == 'b') ADVANCE(2712); + if (lookahead == 'o') ADVANCE(2728); + if (lookahead == 'x') ADVANCE(2733); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3324); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3321: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(3321); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3321); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '_') ADVANCE(3322); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3322); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3322); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3322: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(3321); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3286); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '_') ADVANCE(3322); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3322); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3323: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(3321); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3322); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '_') ADVANCE(3322); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3287); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3324: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(3321); + if (lookahead == '_') ADVANCE(3322); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3323); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3325: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(3325); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3320); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3325); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '_') ADVANCE(3322); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3324); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3326: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == '_') ADVANCE(3326); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3327); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3321); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3326); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3327: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == '_') ADVANCE(3327); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3329); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3327); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3328); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3328: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == '_') ADVANCE(3328); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3325); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3330); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3328); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3329: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(3330); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3330); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3330); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == '_') ADVANCE(3329); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3326); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3330: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(3330); + if (lookahead == '_') ADVANCE(3331); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3331); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3330); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3331); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3331: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(3387); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '_') ADVANCE(3331); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3331); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3332: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(3456); - if (lookahead == 'o') ADVANCE(3402); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 'a') ADVANCE(3388); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3333: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(3391); - if (lookahead == 'o') ADVANCE(3429); + if (lookahead == 'a') ADVANCE(3457); + if (lookahead == 'o') ADVANCE(3403); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3334: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(3386); - if (lookahead == 'o') ADVANCE(3347); - if (lookahead == 'u') ADVANCE(3455); + if (lookahead == 'a') ADVANCE(3392); + if (lookahead == 'o') ADVANCE(3430); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3335: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(3385); + if (lookahead == 'a') ADVANCE(3387); + if (lookahead == 'o') ADVANCE(3348); + if (lookahead == 'u') ADVANCE(3456); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3336: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(3486); + if (lookahead == 'a') ADVANCE(3386); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3337: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(3446); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'a') ADVANCE(3487); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3338: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(3448); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 'a') ADVANCE(3447); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3339: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(3447); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'a') ADVANCE(3449); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3340: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(3441); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'a') ADVANCE(3448); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3341: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(3406); - if (lookahead == 'o') ADVANCE(3427); - if (lookahead == 's') ADVANCE(3371); - if (lookahead == 'x') ADVANCE(3417); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'a') ADVANCE(3442); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3342: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'c') ADVANCE(3374); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 'a') ADVANCE(3407); + if (lookahead == 'o') ADVANCE(3428); + if (lookahead == 's') ADVANCE(3372); + if (lookahead == 'x') ADVANCE(3418); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3343: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'c') ADVANCE(3355); + if (lookahead == 'c') ADVANCE(3375); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3344: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(2461); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'c') ADVANCE(3356); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3345: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(2504); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'd') ADVANCE(2462); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3346: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(2523); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'd') ADVANCE(2505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3347: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(3477); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 'd') ADVANCE(2524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3348: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(3451); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'd') ADVANCE(3478); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3349: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(3355); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 'd') ADVANCE(3452); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3350: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(2623); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'd') ADVANCE(3356); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3351: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(2631); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'e') ADVANCE(2624); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3352: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3517); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 'e') ADVANCE(2632); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3353: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3368); - if (lookahead == 'o') ADVANCE(3517); + if (lookahead == 'e') ADVANCE(3518); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3354: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3370); + if (lookahead == 'e') ADVANCE(3369); + if (lookahead == 'o') ADVANCE(3518); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3355: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3290); + if (lookahead == 'e') ADVANCE(3371); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3356: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3305); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'e') ADVANCE(3291); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3357: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3457); - if (lookahead == 'o') ADVANCE(3409); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 'e') ADVANCE(3306); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3358: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3335); + if (lookahead == 'e') ADVANCE(3458); + if (lookahead == 'o') ADVANCE(3410); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3359: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3437); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'e') ADVANCE(3336); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3360: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3429); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 'e') ADVANCE(3438); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3361: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3404); + if (lookahead == 'e') ADVANCE(3430); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3362: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3440); + if (lookahead == 'e') ADVANCE(3405); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3363: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3314); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'e') ADVANCE(3441); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3364: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3436); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 'e') ADVANCE(3315); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3365: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3309); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'e') ADVANCE(3437); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3366: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3443); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'e') ADVANCE(3310); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3367: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3445); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'e') ADVANCE(3444); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3368: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'f') ADVANCE(3517); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 'e') ADVANCE(3446); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3369: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'f') ADVANCE(2391); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'f') ADVANCE(3518); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3370: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'g') ADVANCE(3380); - if (lookahead == 't') ADVANCE(3479); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 'f') ADVANCE(2392); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3371: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(3389); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'g') ADVANCE(3381); + if (lookahead == 't') ADVANCE(3480); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3372: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(2475); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'h') ADVANCE(3390); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3373: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(2473); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'h') ADVANCE(2476); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3374: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(3517); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 'h') ADVANCE(2474); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3375: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(3382); + if (lookahead == 'h') ADVANCE(3518); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3376: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(3339); - if (lookahead == 'i') ADVANCE(3400); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'h') ADVANCE(3383); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3377: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(3349); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 'h') ADVANCE(3340); + if (lookahead == 'i') ADVANCE(3401); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3378: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(3338); + if (lookahead == 'i') ADVANCE(3350); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3379: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(3405); + if (lookahead == 'i') ADVANCE(3339); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3380: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(3453); + if (lookahead == 'i') ADVANCE(3406); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3381: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(3459); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'i') ADVANCE(3454); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3382: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(3397); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 'i') ADVANCE(3460); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3383: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(3460); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'i') ADVANCE(3398); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3384: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(3464); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'i') ADVANCE(3461); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3385: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'k') ADVANCE(3517); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 'i') ADVANCE(3465); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3386: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'k') ADVANCE(3352); - if (lookahead == 't') ADVANCE(3342); + if (lookahead == 'k') ADVANCE(3518); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3387: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(3449); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'k') ADVANCE(3353); + if (lookahead == 't') ADVANCE(3343); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3388: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(2614); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'l') ADVANCE(3450); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3389: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(2519); - if (lookahead == 'r') ADVANCE(2521); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'l') ADVANCE(2615); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3390: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(3452); - if (lookahead == 'r') ADVANCE(3435); - if (lookahead == 'x') ADVANCE(3422); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 'l') ADVANCE(2520); + if (lookahead == 'r') ADVANCE(2522); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3391: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(3452); + if (lookahead == 'l') ADVANCE(3453); + if (lookahead == 'r') ADVANCE(3436); + if (lookahead == 'x') ADVANCE(3423); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3392: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(3517); + if (lookahead == 'l') ADVANCE(3453); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3393: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(3378); - if (lookahead == 's') ADVANCE(3517); + if (lookahead == 'l') ADVANCE(3518); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3394: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(3388); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'l') ADVANCE(3379); + if (lookahead == 's') ADVANCE(3518); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3395: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(3392); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 'l') ADVANCE(3389); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3396: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(3336); + if (lookahead == 'l') ADVANCE(3393); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3397: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(3352); + if (lookahead == 'l') ADVANCE(3337); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3398: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(3344); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'l') ADVANCE(3353); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3399: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(2367); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'n') ADVANCE(3345); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3400: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(2467); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'n') ADVANCE(2368); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3401: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(3517); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 'n') ADVANCE(2468); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3402: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(3450); + if (lookahead == 'n') ADVANCE(3518); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3403: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(3348); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'n') ADVANCE(3451); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3404: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(3482); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 'n') ADVANCE(3349); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3405: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(3476); + if (lookahead == 'n') ADVANCE(3483); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3406: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(3346); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'n') ADVANCE(3477); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3407: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3304); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'n') ADVANCE(3347); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3408: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3478); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 'o') ADVANCE(3305); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3409: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3421); + if (lookahead == 'o') ADVANCE(3479); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3410: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3473); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'o') ADVANCE(3422); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3411: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3345); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'o') ADVANCE(3474); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3412: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3429); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 'o') ADVANCE(3346); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3413: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3426); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'o') ADVANCE(3430); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3414: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3463); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'o') ADVANCE(3427); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3415: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3313); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'o') ADVANCE(3464); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3416: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3432); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 'o') ADVANCE(3314); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3417: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3428); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'o') ADVANCE(3433); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3418: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3308); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'o') ADVANCE(3429); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3419: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(3480); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'o') ADVANCE(3309); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3420: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'o') ADVANCE(3481); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3421: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'p') ADVANCE(3517); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 'o') ADVANCE(3482); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3422: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'p') ADVANCE(3416); - if (lookahead == 't') ADVANCE(3364); + if (lookahead == 'p') ADVANCE(3518); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3423: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3472); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'p') ADVANCE(3417); + if (lookahead == 't') ADVANCE(3365); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3424: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3273); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'r') ADVANCE(3473); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3425: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(2465); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'r') ADVANCE(3274); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3426: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(2463); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'r') ADVANCE(2466); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3427: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(2527); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'r') ADVANCE(2464); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3428: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(2525); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'r') ADVANCE(2528); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3429: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3517); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 'r') ADVANCE(2526); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3430: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3475); + if (lookahead == 'r') ADVANCE(3518); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3431: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3358); + if (lookahead == 'r') ADVANCE(3476); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3432: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3457); + if (lookahead == 'r') ADVANCE(3359); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3433: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3343); + if (lookahead == 'r') ADVANCE(3458); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3434: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3281); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'r') ADVANCE(3344); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3435: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3412); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 'r') ADVANCE(3282); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3436: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3401); + if (lookahead == 'r') ADVANCE(3413); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3437: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3438); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'r') ADVANCE(3402); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3438: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3307); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'r') ADVANCE(3439); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3439: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3283); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'r') ADVANCE(3308); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3440: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3396); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 'r') ADVANCE(3284); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3441: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3470); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'r') ADVANCE(3397); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3442: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3311); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'r') ADVANCE(3471); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3443: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3444); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'r') ADVANCE(3312); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3444: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3316); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'r') ADVANCE(3445); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3445: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3442); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'r') ADVANCE(3317); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3446: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(2469); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'r') ADVANCE(3443); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3447: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(2471); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 's') ADVANCE(2470); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3448: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(3517); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 's') ADVANCE(2472); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3449: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(3351); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 's') ADVANCE(3518); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3450: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(3455); - if (lookahead == 't') ADVANCE(3379); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 's') ADVANCE(3352); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3451: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(3289); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 's') ADVANCE(3456); + if (lookahead == 't') ADVANCE(3380); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3452: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(3352); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 's') ADVANCE(3290); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3453: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(3469); + if (lookahead == 's') ADVANCE(3353); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3454: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(3292); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 's') ADVANCE(3470); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3455: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3517); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 's') ADVANCE(3293); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3456: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3342); + if (lookahead == 't') ADVANCE(3518); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3457: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3290); + if (lookahead == 't') ADVANCE(3343); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3458: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3274); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 't') ADVANCE(3291); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3459: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3287); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 't') ADVANCE(3275); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3460: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3372); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 't') ADVANCE(3288); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3461: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3340); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 't') ADVANCE(3373); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3462: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3306); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 't') ADVANCE(3341); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3463: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3288); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 't') ADVANCE(3307); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3464: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3373); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 't') ADVANCE(3289); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3465: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3282); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 't') ADVANCE(3374); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3466: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3284); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 't') ADVANCE(3283); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3467: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3315); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 't') ADVANCE(3285); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3468: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3310); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 't') ADVANCE(3316); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3469: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3360); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 't') ADVANCE(3311); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3470: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(3454); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 't') ADVANCE(3361); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3471: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(3394); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 't') ADVANCE(3455); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3472: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(3350); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'u') ADVANCE(3395); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3506); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3473: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(3462); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'u') ADVANCE(3351); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3474: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(3395); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3507); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 'u') ADVANCE(3463); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3475: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(3352); - if (lookahead == 'y') ADVANCE(3517); + if (lookahead == 'u') ADVANCE(3396); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3508); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3476: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(3352); + if (lookahead == 'u') ADVANCE(3353); + if (lookahead == 'y') ADVANCE(3518); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3477: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(3397); + if (lookahead == 'u') ADVANCE(3353); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3478: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(3433); + if (lookahead == 'u') ADVANCE(3398); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3479: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(3436); + if (lookahead == 'u') ADVANCE(3434); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3480: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(3467); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'u') ADVANCE(3437); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3481: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'u') ADVANCE(3468); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3482: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'v') ADVANCE(3517); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 'u') ADVANCE(3469); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3483: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'v') ADVANCE(3362); + if (lookahead == 'v') ADVANCE(3518); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3484: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'w') ADVANCE(3383); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'v') ADVANCE(3363); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3485: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'w') ADVANCE(3384); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3486: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'y') ADVANCE(3517); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == 'w') ADVANCE(3385); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3487: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2257); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'y') ADVANCE(3518); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3488: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == '|') ADVANCE(2258); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3489: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2262); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '|') ADVANCE(2259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3490: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2255); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '|') ADVANCE(2263); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3491: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2261); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '|') ADVANCE(2256); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3492: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2256); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '|') ADVANCE(2262); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3493: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2259); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '|') ADVANCE(2257); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3494: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == '|') ADVANCE(2260); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3495: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3297); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3536); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3495); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '|') ADVANCE(2261); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3496: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3298); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(3537); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3496); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3497: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3507); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + lookahead == 'a') ADVANCE(3506); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3498: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3503); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3508); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3499: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'F' || lookahead == 'f') ADVANCE(3504); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3500: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3504); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + lookahead == 'f') ADVANCE(3505); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3501: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3512); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3505); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3502: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'I' || lookahead == 'i') ADVANCE(3513); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3503: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3510); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + lookahead == 'i') ADVANCE(3514); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3504: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'I' || lookahead == 'i') ADVANCE(3511); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3505: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3512); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3506: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3498); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + lookahead == 'n') ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3507: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3517); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + lookahead == 'n') ADVANCE(3499); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3508: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3499); + lookahead == 'n') ADVANCE(3518); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3509: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || lookahead == 'n') ADVANCE(3500); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3510: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || lookahead == 'n') ADVANCE(3501); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3511: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || lookahead == 'n') ADVANCE(3502); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3512: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3514); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3503); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3513: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'T' || lookahead == 't') ADVANCE(3515); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3514: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3516); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3515: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3517); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + lookahead == 'y') ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3516: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(3516); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3518); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3517: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3517); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(3517); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3518: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3298); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3518); END_STATE(); case 3519: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3522); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3299); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3520: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3520); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3523); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3521: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3521); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3521); END_STATE(); case 3522: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3522); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3523: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3291); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3537); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3524: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3318); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3292); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3525: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3300); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3319); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3526: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3296); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3301); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3527: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3495); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3297); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3528: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3298); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3496); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3529: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3523); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3299); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3530: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3531: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3525); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3532: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3526); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3533: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3299); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3527); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3534: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3533); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3300); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3535: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3535); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3534); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3536: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3536); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3537: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '$') ADVANCE(2632); - if (lookahead == '(') ADVANCE(2528); - if (lookahead == '[') ADVANCE(2781); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); END_STATE(); case 3538: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(3580); - if (lookahead == '>') ADVANCE(2824); - if (lookahead == 'r') ADVANCE(3583); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == '$') ADVANCE(2633); + if (lookahead == '(') ADVANCE(2529); + if (lookahead == '[') ADVANCE(2782); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3539: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(3575); - if (lookahead == '>') ADVANCE(2829); - if (lookahead == 'u') ADVANCE(3587); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == '+') ADVANCE(3581); + if (lookahead == '>') ADVANCE(2825); + if (lookahead == 'r') ADVANCE(3584); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3540: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(3569); - if (lookahead == '-') ADVANCE(3571); - if (lookahead == '>') ADVANCE(2824); - if (lookahead == '_') ADVANCE(3571); - if (lookahead == 'r') ADVANCE(3583); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == '+') ADVANCE(3576); + if (lookahead == '>') ADVANCE(2830); + if (lookahead == 'u') ADVANCE(3588); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3541: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(3581); - if (lookahead == '>') ADVANCE(2814); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == '+') ADVANCE(3570); + if (lookahead == '-') ADVANCE(3572); + if (lookahead == '>') ADVANCE(2825); + if (lookahead == '_') ADVANCE(3572); + if (lookahead == 'r') ADVANCE(3584); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3542: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(3576); - if (lookahead == '>') ADVANCE(2819); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == '+') ADVANCE(3582); + if (lookahead == '>') ADVANCE(2815); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3543: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(3615); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == '+') ADVANCE(3577); + if (lookahead == '>') ADVANCE(2820); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3544: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(2411); - if (lookahead == '_') ADVANCE(3561); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2679); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == '-') ADVANCE(3616); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3545: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(2411); - if (lookahead == '_') ADVANCE(3565); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2602); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == '.') ADVANCE(2412); + if (lookahead == '_') ADVANCE(3562); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2680); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3546: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(2532); - if (lookahead == '_') ADVANCE(3561); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2679); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == '.') ADVANCE(2412); + if (lookahead == '_') ADVANCE(3567); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2603); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3547: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3560); - if (lookahead == '_') ADVANCE(3548); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3600); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == '.') ADVANCE(2533); + if (lookahead == '_') ADVANCE(3562); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2680); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3548: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3560); - if (lookahead == '_') ADVANCE(3548); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == '.') ADVANCE(3561); + if (lookahead == '_') ADVANCE(3549); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3601); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3549: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(2410); - if (lookahead == '_') ADVANCE(3561); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2679); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == '.') ADVANCE(3561); + if (lookahead == '_') ADVANCE(3549); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3550: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3564); - if (lookahead == '_') ADVANCE(3551); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3600); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == '.') ADVANCE(2411); + if (lookahead == '_') ADVANCE(3562); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2680); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3551: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3564); - if (lookahead == '_') ADVANCE(3551); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == '.') ADVANCE(3566); + if (lookahead == '_') ADVANCE(3552); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3601); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2595); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3552: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '2') ADVANCE(3606); - if (lookahead == '0' || - lookahead == '1') ADVANCE(3614); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == '.') ADVANCE(3566); + if (lookahead == '_') ADVANCE(3552); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2595); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3553: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(3617); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == '2') ADVANCE(3607); + if (lookahead == '0' || + lookahead == '1') ADVANCE(3615); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3554: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(3619); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == ':') ADVANCE(3618); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3555: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(2849); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == ':') ADVANCE(3620); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3556: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(2844); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == '>') ADVANCE(2850); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3557: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(2834); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == '>') ADVANCE(2845); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3558: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(2839); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == '>') ADVANCE(2835); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3559: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3559); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == '>') ADVANCE(2840); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3560: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == '_') ADVANCE(3560); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2683); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3561: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == '_') ADVANCE(3561); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2679); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2684); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3562: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3563); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3563); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2674); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == '_') ADVANCE(3562); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2680); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3563: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3563); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2674); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == '_') ADVANCE(3564); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3564); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2675); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3564: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == '_') ADVANCE(3564); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2675); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3565: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == '_') ADVANCE(3565); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2602); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3566: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3567); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3567); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2596); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == '_') ADVANCE(3566); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3567: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == '_') ADVANCE(3567); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2596); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2603); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3568: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3568); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == '_') ADVANCE(3569); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3569); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2597); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3569: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3571); - if (lookahead == 'o') ADVANCE(3555); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == '_') ADVANCE(3569); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2597); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3570: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3571); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3571); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == '_') ADVANCE(3572); + if (lookahead == 'o') ADVANCE(3556); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3571: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(3571); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == '_') ADVANCE(3572); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3572); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3572: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'a') ADVANCE(3578); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == '_') ADVANCE(3572); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3573: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(2616); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == 'a') ADVANCE(3579); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3574: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(2624); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == 'e') ADVANCE(2617); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3575: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(3556); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == 'e') ADVANCE(2625); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3576: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(3584); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == 'e') ADVANCE(3557); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3577: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(2608); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == 'e') ADVANCE(3585); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3578: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(3586); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == 'l') ADVANCE(2609); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3579: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(3577); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == 'l') ADVANCE(3587); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3580: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(3555); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == 'l') ADVANCE(3578); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3581: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(3591); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == 'o') ADVANCE(3556); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3582: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(3590); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == 'o') ADVANCE(3592); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3583: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(3541); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == 'r') ADVANCE(3591); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3584: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(3585); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == 'r') ADVANCE(3542); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3585: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(3558); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == 'r') ADVANCE(3586); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3586: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(3574); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == 'r') ADVANCE(3559); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3587: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(3542); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == 's') ADVANCE(3575); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3588: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(3557); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == 't') ADVANCE(3543); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3589: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(3579); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == 't') ADVANCE(3558); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3590: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(3573); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == 'u') ADVANCE(3580); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3598); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3591: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(3588); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == 'u') ADVANCE(3574); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3592: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3597); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == 'u') ADVANCE(3589); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3593: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2692); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3598); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3594: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2701); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + lookahead == 'f') ADVANCE(2693); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3595: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3602); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2702); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3596: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'I' || lookahead == 'i') ADVANCE(3603); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3597: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2705); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3604); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3598: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3593); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + lookahead == 'n') ADVANCE(2706); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3599: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3595); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + lookahead == 'n') ADVANCE(3594); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3600: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3594); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + lookahead == 'n') ADVANCE(3596); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3601: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3596); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + lookahead == 'n') ADVANCE(3595); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3602: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3604); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3597); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3603: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'T' || lookahead == 't') ADVANCE(3605); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3604: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2687); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3606); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3605: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2697); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + lookahead == 'y') ADVANCE(2688); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3606: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2745); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2698); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3607: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2737); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2746); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3608: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3543); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2738); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3609: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3554); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3544); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3610: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3608); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3555); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3611: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2750); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3609); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3612: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2740); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2751); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3613: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2757); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2741); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3614: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2745); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2758); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3615: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3611); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2746); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3616: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3609); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3612); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3617: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3612); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3610); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3618: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3553); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3613); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3619: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3618); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3554); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3620: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3619); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3621: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(3677); - if (lookahead == '>') ADVANCE(2824); - if (lookahead == 'I') ADVANCE(3694); - if (lookahead == 'i') ADVANCE(3694); - if (lookahead == 'r') ADVANCE(3681); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3621); END_STATE(); case 3622: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(3677); - if (lookahead == '>') ADVANCE(2824); - if (lookahead == 'r') ADVANCE(3681); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == '+') ADVANCE(3678); + if (lookahead == '>') ADVANCE(2825); + if (lookahead == 'I') ADVANCE(3695); + if (lookahead == 'i') ADVANCE(3695); + if (lookahead == 'r') ADVANCE(3682); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3623: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(3670); - if (lookahead == '>') ADVANCE(2829); - if (lookahead == 'u') ADVANCE(3687); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == '+') ADVANCE(3678); + if (lookahead == '>') ADVANCE(2825); + if (lookahead == 'r') ADVANCE(3682); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3624: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - ADVANCE_MAP( - '+', 3657, - '-', 3659, - '>', 2824, - 'I', 3694, - '_', 3659, - 'i', 3694, - 'r', 3681, - 'B', 2714, - 'b', 2714, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == '+') ADVANCE(3671); + if (lookahead == '>') ADVANCE(2830); + if (lookahead == 'u') ADVANCE(3688); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3625: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(3657); - if (lookahead == '-') ADVANCE(3659); - if (lookahead == '>') ADVANCE(2824); - if (lookahead == '_') ADVANCE(3659); - if (lookahead == 'r') ADVANCE(3681); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + ADVANCE_MAP( + '+', 3658, + '-', 3660, + '>', 2825, + 'I', 3695, + '_', 3660, + 'i', 3695, + 'r', 3682, + 'B', 2715, + 'b', 2715, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3626: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(3678); - if (lookahead == '>') ADVANCE(2814); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == '+') ADVANCE(3658); + if (lookahead == '-') ADVANCE(3660); + if (lookahead == '>') ADVANCE(2825); + if (lookahead == '_') ADVANCE(3660); + if (lookahead == 'r') ADVANCE(3682); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3627: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(3671); - if (lookahead == '>') ADVANCE(2819); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == '+') ADVANCE(3679); + if (lookahead == '>') ADVANCE(2815); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3628: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '-') ADVANCE(3713); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == '+') ADVANCE(3672); + if (lookahead == '>') ADVANCE(2820); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3629: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(2411); - if (lookahead == '_') ADVANCE(3652); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2601); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == '-') ADVANCE(3714); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3630: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(2411); - if (lookahead == '_') ADVANCE(3656); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == '.') ADVANCE(2412); + if (lookahead == '_') ADVANCE(3653); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2602); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3631: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(2532); - if (lookahead == '_') ADVANCE(3656); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == '.') ADVANCE(2412); + if (lookahead == '_') ADVANCE(3657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2683); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3632: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(2532); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == '.') ADVANCE(2533); + if (lookahead == '_') ADVANCE(3657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2683); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3633: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3651); - if (lookahead == '_') ADVANCE(3634); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3702); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == '.') ADVANCE(2533); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3634: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3651); - if (lookahead == '_') ADVANCE(3634); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == '.') ADVANCE(3652); + if (lookahead == '_') ADVANCE(3635); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3703); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2595); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3635: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3655); - if (lookahead == '_') ADVANCE(3636); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3702); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == '.') ADVANCE(3652); + if (lookahead == '_') ADVANCE(3635); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2595); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3636: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3655); - if (lookahead == '_') ADVANCE(3636); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == '.') ADVANCE(3656); + if (lookahead == '_') ADVANCE(3637); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3703); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3637: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '2') ADVANCE(3708); - if (lookahead == '0' || - lookahead == '1') ADVANCE(3717); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == '.') ADVANCE(3656); + if (lookahead == '_') ADVANCE(3637); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3638: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == ':') ADVANCE(3718); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == '2') ADVANCE(3709); + if (lookahead == '0' || + lookahead == '1') ADVANCE(3718); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3639: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == ':') ADVANCE(3721); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == ':') ADVANCE(3719); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3640: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(2849); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == ':') ADVANCE(3722); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3641: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(2844); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == '>') ADVANCE(2850); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3642: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(2834); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == '>') ADVANCE(2845); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3643: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(2839); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == '>') ADVANCE(2835); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3644: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(3694); - if (lookahead == '_') ADVANCE(3659); - if (lookahead == 'i') ADVANCE(3694); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3659); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == '>') ADVANCE(2840); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3645: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(3694); - if (lookahead == '_') ADVANCE(3659); - if (lookahead == 'i') ADVANCE(3665); + if (lookahead == 'I') ADVANCE(3695); + if (lookahead == '_') ADVANCE(3660); + if (lookahead == 'i') ADVANCE(3695); if (lookahead == '+' || - lookahead == '-') ADVANCE(3659); + lookahead == '-') ADVANCE(3660); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + lookahead == 'b') ADVANCE(2715); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3646: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(3694); - if (lookahead == 'i') ADVANCE(3694); - if (lookahead == 'r') ADVANCE(3690); + if (lookahead == 'I') ADVANCE(3695); + if (lookahead == '_') ADVANCE(3660); + if (lookahead == 'i') ADVANCE(3666); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3660); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + lookahead == 'b') ADVANCE(2715); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3647: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(3694); - if (lookahead == 'i') ADVANCE(3694); + if (lookahead == 'I') ADVANCE(3695); + if (lookahead == 'i') ADVANCE(3695); + if (lookahead == 'r') ADVANCE(3691); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3648: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(3694); - if (lookahead == 'i') ADVANCE(3665); + if (lookahead == 'I') ADVANCE(3695); + if (lookahead == 'i') ADVANCE(3695); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3649: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(3694); - if (lookahead == 'i') ADVANCE(3676); - if (lookahead == 's') ADVANCE(2721); + if (lookahead == 'I') ADVANCE(3695); + if (lookahead == 'i') ADVANCE(3666); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3650: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(3650); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'I') ADVANCE(3695); + if (lookahead == 'i') ADVANCE(3677); + if (lookahead == 's') ADVANCE(2722); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3651: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == '_') ADVANCE(3651); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3652: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == '_') ADVANCE(3652); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2601); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3653: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(3654); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3654); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2596); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == '_') ADVANCE(3653); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2602); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3654: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(3654); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2596); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == '_') ADVANCE(3655); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3655); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2597); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3655: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == '_') ADVANCE(3655); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2683); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2597); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3656: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == '_') ADVANCE(3656); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2684); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3657: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(3659); - if (lookahead == 'o') ADVANCE(3640); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == '_') ADVANCE(3657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2683); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3658: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(3659); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3659); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == '_') ADVANCE(3660); + if (lookahead == 'o') ADVANCE(3641); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3659: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(3659); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == '_') ADVANCE(3660); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3660); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3660: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(3661); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3661); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2674); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == '_') ADVANCE(3660); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3661: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(3661); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2674); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == '_') ADVANCE(3662); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3662); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2675); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3662: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == '_') ADVANCE(3662); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2675); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3663: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'a') ADVANCE(3674); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == '_') ADVANCE(3663); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3664: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'a') ADVANCE(3692); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'a') ADVANCE(3675); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3665: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'a') ADVANCE(3693); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3666: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'c') ADVANCE(2721); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3667: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(2616); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'c') ADVANCE(2722); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3668: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(2624); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'e') ADVANCE(2617); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3669: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(3666); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'e') ADVANCE(2625); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3670: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(3641); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'e') ADVANCE(3667); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3671: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(3682); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'e') ADVANCE(3642); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3672: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'k') ADVANCE(2721); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'e') ADVANCE(3683); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3673: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'l') ADVANCE(2608); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'k') ADVANCE(2722); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3674: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'l') ADVANCE(3686); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'l') ADVANCE(2609); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3675: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'l') ADVANCE(3673); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'l') ADVANCE(3687); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3676: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'n') ADVANCE(2721); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'l') ADVANCE(3674); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3677: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'o') ADVANCE(3640); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'n') ADVANCE(2722); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3678: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'o') ADVANCE(3691); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'o') ADVANCE(3641); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3679: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(2721); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'o') ADVANCE(3692); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3680: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(3690); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'r') ADVANCE(2722); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3681: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(3626); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'r') ADVANCE(3691); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3682: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(3683); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'r') ADVANCE(3627); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3683: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(3643); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'r') ADVANCE(3684); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3684: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 's') ADVANCE(2721); - if (lookahead == 'u') ADVANCE(3675); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3699); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'r') ADVANCE(3644); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3685: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 's') ADVANCE(2721); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 's') ADVANCE(2722); + if (lookahead == 'u') ADVANCE(3676); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3700); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3686: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 's') ADVANCE(3668); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 's') ADVANCE(2722); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3687: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 't') ADVANCE(3627); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 's') ADVANCE(3669); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3688: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 't') ADVANCE(3642); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 't') ADVANCE(3628); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3689: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(3675); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3699); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 't') ADVANCE(3643); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3690: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(3667); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'u') ADVANCE(3676); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3700); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3691: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(3688); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'u') ADVANCE(3668); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3692: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'y') ADVANCE(2721); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'u') ADVANCE(3689); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3693: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3699); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'y') ADVANCE(2722); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3694: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3700); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3695: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2704); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3696: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2695); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + lookahead == 'f') ADVANCE(2705); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3697: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3704); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2696); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3698: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'I' || lookahead == 'i') ADVANCE(3705); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3699: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2705); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3706); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3700: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3696); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + lookahead == 'n') ADVANCE(2706); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3701: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'N' || lookahead == 'n') ADVANCE(3697); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3702: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3695); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + lookahead == 'n') ADVANCE(3698); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3703: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3698); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + lookahead == 'n') ADVANCE(3696); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3704: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3706); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3699); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3705: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'T' || lookahead == 't') ADVANCE(3707); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3706: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2687); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3708); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3707: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2697); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + lookahead == 'y') ADVANCE(2688); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3708: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2747); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2698); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3709: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2737); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(2748); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3710: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3628); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2738); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3711: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3639); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3629); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3712: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3710); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3640); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3713: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3719); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3711); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3714: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3711); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3720); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3715: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2742); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3712); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3716: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2759); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2743); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3717: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2747); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2760); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3718: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3715); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2748); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3719: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2753); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3716); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3720: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3638); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2754); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3721: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3720); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3639); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3722: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3721); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3723: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '$') ADVANCE(2296); - if (lookahead == '(') ADVANCE(2492); - if (lookahead == '.') ADVANCE(3726); - if (lookahead == '_') ADVANCE(3727); - if (lookahead == '\t' || - lookahead == ' ') SKIP(295); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3725); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3731); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3723); END_STATE(); case 3724: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '$') ADVANCE(2414); - if (lookahead == '(') ADVANCE(2492); - if (lookahead == '.') ADVANCE(3726); - if (lookahead == ']') ADVANCE(2292); - if (lookahead == '_') ADVANCE(3727); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '$') ADVANCE(2297); + if (lookahead == '(') ADVANCE(2493); + if (lookahead == '.') ADVANCE(3727); + if (lookahead == '_') ADVANCE(3728); if (lookahead == '\t' || - lookahead == ' ') SKIP(293); + lookahead == ' ') SKIP(296); if (lookahead == '+' || - lookahead == '-') ADVANCE(3725); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3731); + lookahead == '-') ADVANCE(3726); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3732); END_STATE(); case 3725: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '.') ADVANCE(3728); - if (lookahead == '_') ADVANCE(3725); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3731); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '$') ADVANCE(2415); + if (lookahead == '(') ADVANCE(2493); + if (lookahead == '.') ADVANCE(3727); + if (lookahead == ']') ADVANCE(2293); + if (lookahead == '_') ADVANCE(3728); + if (lookahead == '\t' || + lookahead == ' ') SKIP(294); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3726); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3732); END_STATE(); case 3726: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '.') ADVANCE(3729); if (lookahead == '_') ADVANCE(3726); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2604); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2595); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3732); END_STATE(); case 3727: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == '_') ADVANCE(3727); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2605); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3732); END_STATE(); case 3728: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == '_') ADVANCE(3728); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3732); END_STATE(); case 3729: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(3730); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2596); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3731); + if (lookahead == '_') ADVANCE(3729); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3732); END_STATE(); case 3730: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(3730); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2596); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3731); + if (lookahead == '_') ADVANCE(3731); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2597); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3732); END_STATE(); case 3731: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3731); + if (lookahead == '_') ADVANCE(3731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2597); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3732); END_STATE(); case 3732: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(3767); - if (lookahead == '>') ADVANCE(2828); - if (lookahead == 'r') ADVANCE(3770); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3732); END_STATE(); case 3733: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(3762); - if (lookahead == '>') ADVANCE(2833); - if (lookahead == 'u') ADVANCE(3774); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '+') ADVANCE(3768); + if (lookahead == '>') ADVANCE(2829); + if (lookahead == 'r') ADVANCE(3771); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3734: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(3768); - if (lookahead == '>') ADVANCE(2818); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '+') ADVANCE(3763); + if (lookahead == '>') ADVANCE(2834); + if (lookahead == 'u') ADVANCE(3775); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3735: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(3763); - if (lookahead == '>') ADVANCE(2823); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '+') ADVANCE(3769); + if (lookahead == '>') ADVANCE(2819); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3736: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '-') ADVANCE(3800); - if (lookahead == '_') ADVANCE(3753); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3753); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '+') ADVANCE(3764); + if (lookahead == '>') ADVANCE(2824); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3737: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == '-') ADVANCE(3801); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '_') ADVANCE(3754); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3754); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3738: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(3753); - if (lookahead == '_') ADVANCE(3739); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3785); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3753); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '-') ADVANCE(3802); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3739: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(3753); - if (lookahead == '_') ADVANCE(3739); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3753); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '.') ADVANCE(3754); + if (lookahead == '_') ADVANCE(3740); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3786); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3754); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3740: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(2413); - if (lookahead == '_') ADVANCE(3758); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3757); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '.') ADVANCE(3754); + if (lookahead == '_') ADVANCE(3740); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3754); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3741: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(3798); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3742); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3807); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '.') ADVANCE(2414); + if (lookahead == '_') ADVANCE(3759); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3758); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3742: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '2') ADVANCE(3790); - if (lookahead == '0' || - lookahead == '1') ADVANCE(3799); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '.') ADVANCE(3799); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3743); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(3808); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3743: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == ':') ADVANCE(3791); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3793); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '2') ADVANCE(3791); + if (lookahead == '0' || + lookahead == '1') ADVANCE(3800); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3744: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == ':') ADVANCE(3803); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == ':') ADVANCE(3792); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3794); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3745: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == ':') ADVANCE(3805); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == ':') ADVANCE(3804); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3746: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(2853); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == ':') ADVANCE(3806); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3747: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(2848); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '>') ADVANCE(2854); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3748: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(2838); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '>') ADVANCE(2849); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3749: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(2843); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '>') ADVANCE(2839); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3750: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'T') ADVANCE(3802); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '>') ADVANCE(2844); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3751: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(3753); - if (lookahead == 'b') ADVANCE(2713); - if (lookahead == 'o') ADVANCE(2729); - if (lookahead == 'x') ADVANCE(2734); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3755); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == 'T') ADVANCE(3803); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3752: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(3753); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3753); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3753); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '_') ADVANCE(3754); + if (lookahead == 'b') ADVANCE(2714); + if (lookahead == 'o') ADVANCE(2730); + if (lookahead == 'x') ADVANCE(2735); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3756); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3753: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(3753); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3753); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '_') ADVANCE(3754); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3754); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3754); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3754: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(3753); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3736); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '_') ADVANCE(3754); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3754); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3755: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(3753); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3754); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '_') ADVANCE(3754); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3737); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3756: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(3753); + if (lookahead == '_') ADVANCE(3754); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3755); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3757: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(3757); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3752); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3757); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '_') ADVANCE(3754); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3756); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3758: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == '_') ADVANCE(3758); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3757); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3753); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3758); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3759: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'a') ADVANCE(3764); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '_') ADVANCE(3759); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3758); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3760: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(2622); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == 'a') ADVANCE(3765); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3761: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(2630); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == 'e') ADVANCE(2623); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3762: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(3747); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == 'e') ADVANCE(2631); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3763: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(3771); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == 'e') ADVANCE(3748); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3764: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'l') ADVANCE(3773); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == 'e') ADVANCE(3772); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3765: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'l') ADVANCE(2613); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == 'l') ADVANCE(3774); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3766: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'l') ADVANCE(3765); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == 'l') ADVANCE(2614); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3767: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'o') ADVANCE(3746); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == 'l') ADVANCE(3766); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3768: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'o') ADVANCE(3778); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == 'o') ADVANCE(3747); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3769: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(3777); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == 'o') ADVANCE(3779); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3770: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(3734); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == 'r') ADVANCE(3778); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3771: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(3772); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == 'r') ADVANCE(3735); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3772: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(3749); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == 'r') ADVANCE(3773); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3773: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 's') ADVANCE(3761); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == 'r') ADVANCE(3750); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3774: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 't') ADVANCE(3735); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == 's') ADVANCE(3762); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3775: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 't') ADVANCE(3748); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == 't') ADVANCE(3736); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3776: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(3766); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3784); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == 't') ADVANCE(3749); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3777: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(3760); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == 'u') ADVANCE(3767); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3785); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3778: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(3775); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == 'u') ADVANCE(3761); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3779: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3742); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3807); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3779); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == 'u') ADVANCE(3776); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3780: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3784); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3743); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(3808); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3780); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3781: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3783); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3785); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3782: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3787); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3784); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3783: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3786); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + lookahead == 'i') ADVANCE(3788); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3784: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3807); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3787); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3785: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3781); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + lookahead == 'n') ADVANCE(3808); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3786: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'N' || lookahead == 'n') ADVANCE(3782); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3787: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3788); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3783); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3788: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3807); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3789); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3789: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(3789); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3808); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3790: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3743); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(3790); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3791: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3793); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3744); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3792: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3792); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3794); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3793: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3807); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3793); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3794: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3737); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3808); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3795: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3750); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3738); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3796: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3745); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3751); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3797: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3741); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3746); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3798: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3779); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3742); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3799: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3743); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3780); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3800: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3794); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3744); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3801: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3795); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3802: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3796); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3803: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3797); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3804: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3744); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3798); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3805: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3804); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3745); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3806: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3806); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3805); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3807: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3807); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3808: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(3835); - if (lookahead == '>') ADVANCE(2824); - if (lookahead == 'r') ADVANCE(3838); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 3809: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(3830); - if (lookahead == '>') ADVANCE(2829); - if (lookahead == 'u') ADVANCE(3842); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == '+') ADVANCE(3836); + if (lookahead == '>') ADVANCE(2825); + if (lookahead == 'r') ADVANCE(3839); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3810: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(3836); - if (lookahead == '>') ADVANCE(2814); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == '+') ADVANCE(3831); + if (lookahead == '>') ADVANCE(2830); + if (lookahead == 'u') ADVANCE(3843); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3811: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(3831); - if (lookahead == '>') ADVANCE(2819); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == '+') ADVANCE(3837); + if (lookahead == '>') ADVANCE(2815); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3812: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '-') ADVANCE(3865); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == '+') ADVANCE(3832); + if (lookahead == '>') ADVANCE(2820); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3813: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(3847); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == '-') ADVANCE(3866); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3814: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(2411); - if (lookahead == '_') ADVANCE(3822); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2675); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == '.') ADVANCE(3848); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3815: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(3826); - if (lookahead == '_') ADVANCE(3816); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3856); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == '.') ADVANCE(2412); + if (lookahead == '_') ADVANCE(3823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2676); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3816: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(3826); - if (lookahead == '_') ADVANCE(3816); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == '.') ADVANCE(3827); + if (lookahead == '_') ADVANCE(3817); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3857); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3817: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == ':') ADVANCE(653); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3868); + if (lookahead == '.') ADVANCE(3827); + if (lookahead == '_') ADVANCE(3817); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3818: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(2849); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == ':') ADVANCE(654); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3819: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(2844); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == '>') ADVANCE(2850); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3820: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(2834); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == '>') ADVANCE(2845); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3821: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(2839); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == '>') ADVANCE(2835); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3822: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(3822); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2675); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == '>') ADVANCE(2840); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3823: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(3824); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3824); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2674); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == '_') ADVANCE(3823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2676); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3824: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(3824); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2674); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == '_') ADVANCE(3825); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3825); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2675); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3825: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == '_') ADVANCE(3825); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2671); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2675); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3826: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == '_') ADVANCE(3826); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2683); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3827: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'a') ADVANCE(3833); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == '_') ADVANCE(3827); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2684); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3828: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(2616); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == 'a') ADVANCE(3834); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3829: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(2624); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == 'e') ADVANCE(2617); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3830: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(3819); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == 'e') ADVANCE(2625); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3831: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(3839); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == 'e') ADVANCE(3820); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3832: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(2608); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == 'e') ADVANCE(3840); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3833: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(3841); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == 'l') ADVANCE(2609); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3834: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(3832); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == 'l') ADVANCE(3842); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3835: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'o') ADVANCE(3818); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == 'l') ADVANCE(3833); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3836: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'o') ADVANCE(3846); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == 'o') ADVANCE(3819); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3837: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(3845); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == 'o') ADVANCE(3847); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3838: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(3810); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == 'r') ADVANCE(3846); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3839: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(3840); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == 'r') ADVANCE(3811); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3840: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(3821); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == 'r') ADVANCE(3841); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3841: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 's') ADVANCE(3829); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == 'r') ADVANCE(3822); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3842: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 't') ADVANCE(3811); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == 's') ADVANCE(3830); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3843: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 't') ADVANCE(3820); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == 't') ADVANCE(3812); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3844: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(3834); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3853); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == 't') ADVANCE(3821); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3845: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(3828); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == 'u') ADVANCE(3835); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3854); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3846: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(3843); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == 'u') ADVANCE(3829); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3847: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '{') ADVANCE(2782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == 'u') ADVANCE(3844); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3848: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3853); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == '{') ADVANCE(2783); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3849: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2702); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3854); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3850: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2693); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + lookahead == 'f') ADVANCE(2703); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3851: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3858); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2694); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3852: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'I' || lookahead == 'i') ADVANCE(3859); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3853: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2705); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3860); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3854: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3850); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + lookahead == 'n') ADVANCE(2706); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3855: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || lookahead == 'n') ADVANCE(3851); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3856: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3849); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + lookahead == 'n') ADVANCE(3852); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3857: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3852); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + lookahead == 'n') ADVANCE(3850); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3858: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3860); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3853); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3859: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'T' || lookahead == 't') ADVANCE(3861); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3860: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2687); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3862); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3861: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2697); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + lookahead == 'y') ADVANCE(2688); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3862: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3812); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2698); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3863: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3817); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3813); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3864: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3862); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3818); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3865: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3867); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3863); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3866: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3863); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3868); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3867: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2751); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3864); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3868: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3868); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2752); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3869: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(3902); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3869); END_STATE(); case 3870: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(2532); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (lookahead == '.') ADVANCE(3903); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3871: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(2317); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (lookahead == '.') ADVANCE(2533); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3872: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(3871); - if (lookahead == '_') ADVANCE(3887); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2603); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (lookahead == '.') ADVANCE(2318); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3873: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(3871); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (lookahead == '.') ADVANCE(3872); + if (lookahead == '_') ADVANCE(3888); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2604); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3874: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(3885); - if (lookahead == '_') ADVANCE(3874); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (lookahead == '.') ADVANCE(3872); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3875: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(2531); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (lookahead == '.') ADVANCE(3886); + if (lookahead == '_') ADVANCE(3875); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2595); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3876: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(3886); - if (lookahead == '_') ADVANCE(3876); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (lookahead == '.') ADVANCE(2532); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3877: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(3903); - if (lookahead == '_') ADVANCE(3891); - if (lookahead == 'i') ADVANCE(3903); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3891); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (lookahead == '.') ADVANCE(3887); + if (lookahead == '_') ADVANCE(3877); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3878: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(3903); - if (lookahead == '_') ADVANCE(3891); - if (lookahead == 'i') ADVANCE(3894); + if (lookahead == 'I') ADVANCE(3904); + if (lookahead == '_') ADVANCE(3892); + if (lookahead == 'i') ADVANCE(3904); if (lookahead == '+' || - lookahead == '-') ADVANCE(3891); + lookahead == '-') ADVANCE(3892); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + lookahead == 'b') ADVANCE(2715); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3879: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(3903); - if (lookahead == 'i') ADVANCE(3903); + if (lookahead == 'I') ADVANCE(3904); + if (lookahead == '_') ADVANCE(3892); + if (lookahead == 'i') ADVANCE(3895); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3892); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + lookahead == 'b') ADVANCE(2715); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3880: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(3903); - if (lookahead == 'i') ADVANCE(3894); + if (lookahead == 'I') ADVANCE(3904); + if (lookahead == 'i') ADVANCE(3904); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3881: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(3903); - if (lookahead == 'i') ADVANCE(3898); - if (lookahead == 's') ADVANCE(2721); + if (lookahead == 'I') ADVANCE(3904); + if (lookahead == 'i') ADVANCE(3895); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3882: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(3882); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (lookahead == 'I') ADVANCE(3904); + if (lookahead == 'i') ADVANCE(3899); + if (lookahead == 's') ADVANCE(2722); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3883: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(3884); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3884); + if (lookahead == '_') ADVANCE(3883); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2674); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3884: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(3884); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2674); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (lookahead == '_') ADVANCE(3885); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3885); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2675); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3885: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if (lookahead == '_') ADVANCE(3885); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2675); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3886: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if (lookahead == '_') ADVANCE(3886); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2683); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3887: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if (lookahead == '_') ADVANCE(3887); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2603); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2684); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3888: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(3889); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3889); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2596); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (lookahead == '_') ADVANCE(3888); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2604); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3889: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(3889); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2596); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (lookahead == '_') ADVANCE(3890); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3890); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2597); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3890: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(3891); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3891); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (lookahead == '_') ADVANCE(3890); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2597); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3891: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(3891); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2592); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (lookahead == '_') ADVANCE(3892); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3892); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3892: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if (lookahead == '_') ADVANCE(3892); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2593); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3893: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'a') ADVANCE(3901); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (lookahead == '_') ADVANCE(3893); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3894: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (lookahead == 'a') ADVANCE(3902); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3895: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'c') ADVANCE(2721); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3896: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'e') ADVANCE(3895); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (lookahead == 'c') ADVANCE(2722); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3897: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'k') ADVANCE(2721); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (lookahead == 'e') ADVANCE(3896); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3898: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'n') ADVANCE(2721); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (lookahead == 'k') ADVANCE(2722); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3899: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'r') ADVANCE(2721); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (lookahead == 'n') ADVANCE(2722); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3900: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 's') ADVANCE(2721); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (lookahead == 'r') ADVANCE(2722); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3901: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'y') ADVANCE(2721); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (lookahead == 's') ADVANCE(2722); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3902: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '{') ADVANCE(2782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (lookahead == 'y') ADVANCE(2722); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3903: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(2714); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (lookahead == '{') ADVANCE(2783); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3904: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2698); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(2715); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3905: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3904); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2699); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3906: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3906); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3905); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3907: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '#') ADVANCE(4099); - if (lookahead == '$') ADVANCE(2296); - if (lookahead == '(') ADVANCE(2492); - if (lookahead == '.') ADVANCE(3909); - if (lookahead == '_') ADVANCE(3910); - if (lookahead == '\t' || - lookahead == ' ') SKIP(295); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3908); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3914); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3907); END_STATE(); case 3908: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '.') ADVANCE(3911); - if (lookahead == '_') ADVANCE(3908); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2594); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3914); + if (lookahead == '#') ADVANCE(4100); + if (lookahead == '$') ADVANCE(2297); + if (lookahead == '(') ADVANCE(2493); + if (lookahead == '.') ADVANCE(3910); + if (lookahead == '_') ADVANCE(3911); + if (lookahead == '\t' || + lookahead == ' ') SKIP(296); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3909); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3915); END_STATE(); case 3909: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '.') ADVANCE(3912); if (lookahead == '_') ADVANCE(3909); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2605); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3914); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2595); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3915); END_STATE(); case 3910: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); if (lookahead == '_') ADVANCE(3910); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2578); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3914); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3915); END_STATE(); case 3911: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); if (lookahead == '_') ADVANCE(3911); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2607); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3914); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2579); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3915); END_STATE(); case 3912: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(3913); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3913); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2596); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3914); + if (lookahead == '_') ADVANCE(3912); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2608); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3915); END_STATE(); case 3913: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(3913); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2596); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3914); + if (lookahead == '_') ADVANCE(3914); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3914); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2597); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3915); END_STATE(); case 3914: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3914); + if (lookahead == '_') ADVANCE(3914); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2597); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3915); END_STATE(); case 3915: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '$') ADVANCE(2633); - if (lookahead == '(') ADVANCE(2528); - if (lookahead == '{') ADVANCE(2782); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4090); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3915); END_STATE(); case 3916: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1693); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3916); + if (lookahead == '$') ADVANCE(2634); + if (lookahead == '(') ADVANCE(2529); + if (lookahead == '{') ADVANCE(2783); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4091); END_STATE(); case 3917: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1666); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); + if (lookahead == ',') ADVANCE(1694); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3917); END_STATE(); case 3918: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1669); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); + if (lookahead == ',') ADVANCE(1667); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3918); END_STATE(); case 3919: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1711); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3921); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3924); + if (lookahead == ',') ADVANCE(1670); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3919); END_STATE(); case 3920: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1711); + if (lookahead == ',') ADVANCE(1712); if (lookahead == 'I' || lookahead == 'i') ADVANCE(3922); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3924); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3925); END_STATE(); case 3921: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1711); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3920); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3924); + if (lookahead == ',') ADVANCE(1712); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3923); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3925); END_STATE(); case 3922: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1711); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3923); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3924); + if (lookahead == ',') ADVANCE(1712); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3921); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3925); END_STATE(); case 3923: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1711); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3924); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3924); + if (lookahead == ',') ADVANCE(1712); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3924); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3925); END_STATE(); case 3924: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1711); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3924); + if (lookahead == ',') ADVANCE(1712); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3925); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3925); END_STATE(); case 3925: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1751); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3927); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3930); + if (lookahead == ',') ADVANCE(1712); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3925); END_STATE(); case 3926: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1751); + if (lookahead == ',') ADVANCE(1752); if (lookahead == 'I' || lookahead == 'i') ADVANCE(3928); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3930); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3931); END_STATE(); case 3927: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1751); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3926); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3930); + if (lookahead == ',') ADVANCE(1752); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3929); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3931); END_STATE(); case 3928: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1751); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3929); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3930); + if (lookahead == ',') ADVANCE(1752); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3927); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3931); END_STATE(); case 3929: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1751); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3930); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3930); + if (lookahead == ',') ADVANCE(1752); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3930); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3931); END_STATE(); case 3930: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1751); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3930); + if (lookahead == ',') ADVANCE(1752); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3931); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3931); END_STATE(); case 3931: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1764); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); + if (lookahead == ',') ADVANCE(1752); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3931); END_STATE(); case 3932: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1589); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); + if (lookahead == ',') ADVANCE(1765); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3932); END_STATE(); case 3933: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1654); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); + if (lookahead == ',') ADVANCE(1590); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3933); END_STATE(); case 3934: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1615); - if (lookahead == 'e') ADVANCE(3935); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3937); + if (lookahead == ',') ADVANCE(1655); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3934); END_STATE(); case 3935: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1615); - if (lookahead == 'n') ADVANCE(3936); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3937); + if (lookahead == ',') ADVANCE(1616); + if (lookahead == 'e') ADVANCE(3936); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3938); END_STATE(); case 3936: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1615); - if (lookahead == 'v') ADVANCE(840); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3937); + if (lookahead == ',') ADVANCE(1616); + if (lookahead == 'n') ADVANCE(3937); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3938); END_STATE(); case 3937: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1615); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3937); + if (lookahead == ',') ADVANCE(1616); + if (lookahead == 'v') ADVANCE(841); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3938); END_STATE(); case 3938: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1618); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); + if (lookahead == ',') ADVANCE(1616); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3938); END_STATE(); case 3939: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1675); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); + if (lookahead == ',') ADVANCE(1619); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3939); END_STATE(); case 3940: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1595); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); + if (lookahead == ',') ADVANCE(1676); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3940); END_STATE(); case 3941: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1761); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3943); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3946); + if (lookahead == ',') ADVANCE(1596); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3941); END_STATE(); case 3942: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1761); + if (lookahead == ',') ADVANCE(1762); if (lookahead == 'I' || lookahead == 'i') ADVANCE(3944); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3946); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3947); END_STATE(); case 3943: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1761); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3942); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3946); + if (lookahead == ',') ADVANCE(1762); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3945); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3947); END_STATE(); case 3944: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1761); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3945); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3946); + if (lookahead == ',') ADVANCE(1762); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3943); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3947); END_STATE(); case 3945: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1761); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3946); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3946); + if (lookahead == ',') ADVANCE(1762); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3946); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3947); END_STATE(); case 3946: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1761); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3946); + if (lookahead == ',') ADVANCE(1762); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3947); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3947); END_STATE(); case 3947: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1672); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); + if (lookahead == ',') ADVANCE(1762); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3947); END_STATE(); case 3948: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1633); - if (lookahead == 'e') ADVANCE(3949); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3951); + if (lookahead == ',') ADVANCE(1673); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3948); END_STATE(); case 3949: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1633); - if (lookahead == 'n') ADVANCE(3950); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3951); + if (lookahead == ',') ADVANCE(1634); + if (lookahead == 'e') ADVANCE(3950); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3952); END_STATE(); case 3950: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1633); - if (lookahead == 'v') ADVANCE(2442); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3951); + if (lookahead == ',') ADVANCE(1634); + if (lookahead == 'n') ADVANCE(3951); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3952); END_STATE(); case 3951: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1633); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3951); + if (lookahead == ',') ADVANCE(1634); + if (lookahead == 'v') ADVANCE(2443); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3952); END_STATE(); case 3952: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1657); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); + if (lookahead == ',') ADVANCE(1634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3952); END_STATE(); case 3953: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1714); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); + if (lookahead == ',') ADVANCE(1658); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3953); END_STATE(); case 3954: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1736); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); + if (lookahead == ',') ADVANCE(1715); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3954); END_STATE(); case 3955: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1730); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); + if (lookahead == ',') ADVANCE(1737); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3955); END_STATE(); case 3956: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1592); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); + if (lookahead == ',') ADVANCE(1731); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3956); END_STATE(); case 3957: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1684); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); + if (lookahead == ',') ADVANCE(1593); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3957); END_STATE(); case 3958: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1678); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); + if (lookahead == ',') ADVANCE(1685); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3958); END_STATE(); case 3959: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1621); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); + if (lookahead == ',') ADVANCE(1679); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3959); END_STATE(); case 3960: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1663); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); + if (lookahead == ',') ADVANCE(1622); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3960); END_STATE(); case 3961: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1733); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); + if (lookahead == ',') ADVANCE(1664); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3961); END_STATE(); case 3962: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1681); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); + if (lookahead == ',') ADVANCE(1734); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3962); END_STATE(); case 3963: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1660); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); + if (lookahead == ',') ADVANCE(1682); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3963); END_STATE(); case 3964: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1726); - if (lookahead == 'e') ADVANCE(3965); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3967); + if (lookahead == ',') ADVANCE(1661); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3964); END_STATE(); case 3965: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1726); - if (lookahead == 'n') ADVANCE(3966); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3967); + if (lookahead == ',') ADVANCE(1727); + if (lookahead == 'e') ADVANCE(3966); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3968); END_STATE(); case 3966: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1726); - if (lookahead == 'v') ADVANCE(2270); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3967); + if (lookahead == ',') ADVANCE(1727); + if (lookahead == 'n') ADVANCE(3967); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3968); END_STATE(); case 3967: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1726); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3967); + if (lookahead == ',') ADVANCE(1727); + if (lookahead == 'v') ADVANCE(2271); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3968); END_STATE(); case 3968: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1600); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); + if (lookahead == ',') ADVANCE(1727); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3968); END_STATE(); case 3969: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1603); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); + if (lookahead == ',') ADVANCE(1601); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3969); END_STATE(); case 3970: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1690); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); + if (lookahead == ',') ADVANCE(1604); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3970); END_STATE(); case 3971: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1645); - if (lookahead == 'e') ADVANCE(3972); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3974); + if (lookahead == ',') ADVANCE(1691); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3971); END_STATE(); case 3972: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1645); - if (lookahead == 'n') ADVANCE(3973); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3974); + if (lookahead == ',') ADVANCE(1646); + if (lookahead == 'e') ADVANCE(3973); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3975); END_STATE(); case 3973: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1645); - if (lookahead == 'v') ADVANCE(2434); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3974); + if (lookahead == ',') ADVANCE(1646); + if (lookahead == 'n') ADVANCE(3974); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3975); END_STATE(); case 3974: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1645); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3974); + if (lookahead == ',') ADVANCE(1646); + if (lookahead == 'v') ADVANCE(2435); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3975); END_STATE(); case 3975: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1648); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); + if (lookahead == ',') ADVANCE(1646); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3975); END_STATE(); case 3976: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1687); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); + if (lookahead == ',') ADVANCE(1649); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3976); END_STATE(); case 3977: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1651); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); + if (lookahead == ',') ADVANCE(1688); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3977); END_STATE(); case 3978: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1597); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); + if (lookahead == ',') ADVANCE(1652); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3978); END_STATE(); case 3979: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(3988); - if (lookahead == '_') ADVANCE(3979); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3988); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == ',') ADVANCE(1598); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3979); END_STATE(); case 3980: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == '.') ADVANCE(3989); if (lookahead == '_') ADVANCE(3980); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3989); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4092); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 3981: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(3982); - if (lookahead == '_') ADVANCE(3991); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); + if (lookahead == '.') ADVANCE(3990); + if (lookahead == '_') ADVANCE(3981); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3990); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4093); END_STATE(); case 3982: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(3915); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == '.') ADVANCE(3983); + if (lookahead == '_') ADVANCE(3992); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3991); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 3983: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(2318); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4092); + if (lookahead == '.') ADVANCE(3916); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 3984: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(3983); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4092); + if (lookahead == '.') ADVANCE(2319); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4093); END_STATE(); case 3985: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'N') ADVANCE(4082); - if (lookahead == 'f') ADVANCE(2387); - if (lookahead == 'n') ADVANCE(2363); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == '.') ADVANCE(3984); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4093); END_STATE(); case 3986: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(3988); - if (lookahead == 'b') ADVANCE(4087); - if (lookahead == 'o') ADVANCE(4088); - if (lookahead == 'x') ADVANCE(4089); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3988); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'N') ADVANCE(4083); + if (lookahead == 'f') ADVANCE(2388); + if (lookahead == 'n') ADVANCE(2364); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 3987: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(3988); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3988); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3988); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == '_') ADVANCE(3989); + if (lookahead == 'b') ADVANCE(4088); + if (lookahead == 'o') ADVANCE(4089); + if (lookahead == 'x') ADVANCE(4090); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3989); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 3988: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(3988); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3988); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == '_') ADVANCE(3989); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3989); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3989); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 3989: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == '_') ADVANCE(3989); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3989); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4092); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 3990: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == '_') ADVANCE(3990); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3987); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3990); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4093); END_STATE(); case 3991: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == '_') ADVANCE(3991); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3990); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3988); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3991); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 3992: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4067); - if (lookahead == 'o') ADVANCE(4040); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == '_') ADVANCE(3992); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3991); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 3993: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4039); - if (lookahead == 'o') ADVANCE(4051); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'a') ADVANCE(4068); + if (lookahead == 'o') ADVANCE(4041); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 3994: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4031); - if (lookahead == 'o') ADVANCE(4001); - if (lookahead == 'u') ADVANCE(4069); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'a') ADVANCE(4040); + if (lookahead == 'o') ADVANCE(4052); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 3995: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4030); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'a') ADVANCE(4032); + if (lookahead == 'o') ADVANCE(4002); + if (lookahead == 'u') ADVANCE(4070); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 3996: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4080); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'a') ADVANCE(4031); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 3997: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4061); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'a') ADVANCE(4081); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 3998: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'c') ADVANCE(4022); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'a') ADVANCE(4062); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 3999: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'c') ADVANCE(4023); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4000: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'c') ADVANCE(4011); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'c') ADVANCE(4024); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4001: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'd') ADVANCE(4078); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'c') ADVANCE(4012); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4002: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'd') ADVANCE(4007); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'd') ADVANCE(4079); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4003: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4020); - if (lookahead == 'o') ADVANCE(2382); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'd') ADVANCE(4008); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4004: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'e') ADVANCE(4021); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'o') ADVANCE(2383); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4005: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2284); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'e') ADVANCE(4022); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4006: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2393); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'e') ADVANCE(2285); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4007: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2438); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'e') ADVANCE(2394); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4008: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2373); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'e') ADVANCE(2439); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4009: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2377); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'e') ADVANCE(2374); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4010: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2279); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'e') ADVANCE(2378); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4011: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2431); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'e') ADVANCE(2280); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4012: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2353); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'e') ADVANCE(2432); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4013: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4068); - if (lookahead == 'o') ADVANCE(4045); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'e') ADVANCE(2354); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4014: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3995); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'e') ADVANCE(4069); + if (lookahead == 'o') ADVANCE(4046); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4015: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4060); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'e') ADVANCE(3996); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4016: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4057); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'e') ADVANCE(4061); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4017: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4053); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'e') ADVANCE(4058); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4018: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3955); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'e') ADVANCE(4054); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4019: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3961); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'e') ADVANCE(3956); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4020: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'f') ADVANCE(2266); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'e') ADVANCE(3962); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4021: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'g') ADVANCE(4028); - if (lookahead == 't') ADVANCE(4076); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'f') ADVANCE(2267); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4022: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'h') ADVANCE(2422); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'g') ADVANCE(4029); + if (lookahead == 't') ADVANCE(4077); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4023: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'h') ADVANCE(2398); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'h') ADVANCE(2423); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4024: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'h') ADVANCE(4029); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'h') ADVANCE(2399); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4025: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(4002); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'h') ADVANCE(4030); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4026: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(3997); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'i') ADVANCE(4003); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4027: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(4043); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'i') ADVANCE(3998); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4028: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(4065); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'i') ADVANCE(4044); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4029: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(4035); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'i') ADVANCE(4066); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4030: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'k') ADVANCE(2349); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'i') ADVANCE(4036); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4031: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'k') ADVANCE(4008); - if (lookahead == 't') ADVANCE(3999); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'k') ADVANCE(2350); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4032: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4026); - if (lookahead == 's') ADVANCE(2450); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'k') ADVANCE(4009); + if (lookahead == 't') ADVANCE(4000); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4033: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4037); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'l') ADVANCE(4027); + if (lookahead == 's') ADVANCE(2451); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4034: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(3996); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'l') ADVANCE(4038); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4035: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4009); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'l') ADVANCE(3997); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4036: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'l') ADVANCE(4010); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4037: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(3954); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'l') ADVANCE(4011); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4038: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4064); - if (lookahead == 'r') ADVANCE(4056); - if (lookahead == 'x') ADVANCE(4049); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'l') ADVANCE(3955); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4039: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4066); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'l') ADVANCE(4065); + if (lookahead == 'r') ADVANCE(4057); + if (lookahead == 'x') ADVANCE(4050); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4040: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(4063); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'l') ADVANCE(4067); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4041: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(2274); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'n') ADVANCE(4064); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4042: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(2426); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'n') ADVANCE(2275); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4043: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(4077); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'n') ADVANCE(2427); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4044: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(4074); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'n') ADVANCE(4078); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4045: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(4048); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'o') ADVANCE(4075); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4046: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(4052); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'o') ADVANCE(4049); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4047: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(4059); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'o') ADVANCE(4053); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4048: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'p') ADVANCE(2368); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'o') ADVANCE(4060); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4049: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'p') ADVANCE(4047); - if (lookahead == 't') ADVANCE(4016); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'p') ADVANCE(2369); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4050: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4075); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'p') ADVANCE(4048); + if (lookahead == 't') ADVANCE(4017); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4051: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(2357); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'r') ADVANCE(4076); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4052: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(2304); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'r') ADVANCE(2358); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4053: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(2788); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'r') ADVANCE(2305); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4054: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4014); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'r') ADVANCE(2789); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4055: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4000); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'r') ADVANCE(4015); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4056: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4046); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'r') ADVANCE(4001); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4057: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4041); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'r') ADVANCE(4047); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4058: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'r') ADVANCE(4042); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4059: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4071); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'r') ADVANCE(4043); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4060: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4034); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'r') ADVANCE(4072); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4061: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(829); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'r') ADVANCE(4035); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4062: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(4005); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 's') ADVANCE(830); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4063: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(4070); - if (lookahead == 't') ADVANCE(4027); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 's') ADVANCE(4006); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4064: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(4006); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 's') ADVANCE(4071); + if (lookahead == 't') ADVANCE(4028); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4065: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(4072); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 's') ADVANCE(4007); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4066: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(4019); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 's') ADVANCE(4073); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4067: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(3998); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 's') ADVANCE(4020); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4068: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(837); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 't') ADVANCE(3999); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4069: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(843); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 't') ADVANCE(838); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4070: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(848); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 't') ADVANCE(844); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4071: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(825); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 't') ADVANCE(849); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4072: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(4017); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 't') ADVANCE(826); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4073: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(4033); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4086); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 't') ADVANCE(4018); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4074: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(4055); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'u') ADVANCE(4034); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4087); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4075: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(4018); - if (lookahead == 'y') ADVANCE(2417); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'u') ADVANCE(4056); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4076: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(4058); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'u') ADVANCE(4019); + if (lookahead == 'y') ADVANCE(2418); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4077: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(4012); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'u') ADVANCE(4059); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4078: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(4036); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'u') ADVANCE(4013); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4079: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'v') ADVANCE(4015); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'u') ADVANCE(4037); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4080: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'y') ADVANCE(2445); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'v') ADVANCE(4016); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4081: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4086); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'y') ADVANCE(2446); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4082: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3925); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4087); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4083: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3941); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4092); + lookahead == 'f') ADVANCE(3926); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4084: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4082); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3942); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4093); END_STATE(); case 4085: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'N' || lookahead == 'n') ADVANCE(4083); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4092); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4086: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3931); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + lookahead == 'n') ADVANCE(4084); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4093); END_STATE(); case 4087: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(4087); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3932); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4088: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if (('0' <= lookahead && lookahead <= '7') || + if (lookahead == '0' || + lookahead == '1' || lookahead == '_') ADVANCE(4088); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); case 4089: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(4089); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); + END_STATE(); + case 4090: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4089); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4090); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); - case 4090: + case 4091: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4090); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); END_STATE(); - case 4091: + case 4092: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == '-' || lookahead == '.' || - ('<' <= lookahead && lookahead <= '@')) ADVANCE(4092); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(4091); + ('<' <= lookahead && lookahead <= '@')) ADVANCE(4093); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(4092); END_STATE(); - case 4092: + case 4093: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4092); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4093); END_STATE(); - case 4093: + case 4094: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); - if (lookahead == '#') ADVANCE(4108); + if (lookahead == '#') ADVANCE(4109); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(4094); + lookahead != '|') ADVANCE(4095); END_STATE(); - case 4094: + case 4095: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -54257,20 +53708,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(4094); - END_STATE(); - case 4095: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if (lookahead == '#') ADVANCE(4107); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(4096); + lookahead != '|') ADVANCE(4095); END_STATE(); case 4096: ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(4096); + if (lookahead == '#') ADVANCE(4108); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(4097); END_STATE(); case 4097: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(4097); + END_STATE(); + case 4098: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); - if (lookahead == '#') ADVANCE(4106); + if (lookahead == '#') ADVANCE(4107); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -54279,9 +53730,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4098); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4099); END_STATE(); - case 4098: + case 4099: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -54291,38 +53742,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4098); - END_STATE(); - case 4099: - ACCEPT_TOKEN(anon_sym_POUND); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4099); END_STATE(); case 4100: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\n') ADVANCE(820); - if (lookahead == '\r') ADVANCE(822); - if (lookahead != 0) ADVANCE(822); END_STATE(); case 4101: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(819); + if (lookahead == '\n') ADVANCE(821); + if (lookahead == '\r') ADVANCE(823); + if (lookahead != 0) ADVANCE(823); END_STATE(); case 4102: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4092); + if (lookahead == '!') ADVANCE(820); END_STATE(); case 4103: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(2794); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4093); END_STATE(); case 4104: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3807); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(2795); END_STATE(); case 4105: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3536); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3808); END_STATE(); case 4106: + ACCEPT_TOKEN(anon_sym_POUND); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3537); + END_STATE(); + case 4107: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -54332,13 +53783,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4098); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4099); END_STATE(); - case 4107: + case 4108: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(4096); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(4097); END_STATE(); - case 4108: + case 4109: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -54346,26 +53797,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(4094); + lookahead != '|') ADVANCE(4095); END_STATE(); - case 4109: + case 4110: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && - lookahead != '\n') ADVANCE(4111); + lookahead != '\n') ADVANCE(4112); END_STATE(); - case 4110: + case 4111: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '#') ADVANCE(4109); + if (lookahead == '#') ADVANCE(4110); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4110); + lookahead == ' ') ADVANCE(4111); if (lookahead != 0 && lookahead != '\t' && - lookahead != '\n') ADVANCE(4111); + lookahead != '\n') ADVANCE(4112); END_STATE(); - case 4111: + case 4112: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(4111); + lookahead != '\n') ADVANCE(4112); END_STATE(); default: return false; @@ -54894,63 +54345,63 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 716, .external_lex_state = 2}, - [2] = {.lex_state = 737, .external_lex_state = 2}, - [3] = {.lex_state = 737, .external_lex_state = 2}, - [4] = {.lex_state = 737, .external_lex_state = 2}, - [5] = {.lex_state = 737, .external_lex_state = 2}, - [6] = {.lex_state = 737, .external_lex_state = 2}, - [7] = {.lex_state = 737, .external_lex_state = 2}, - [8] = {.lex_state = 737, .external_lex_state = 2}, - [9] = {.lex_state = 737, .external_lex_state = 2}, - [10] = {.lex_state = 737, .external_lex_state = 2}, - [11] = {.lex_state = 737, .external_lex_state = 2}, - [12] = {.lex_state = 737, .external_lex_state = 2}, - [13] = {.lex_state = 737, .external_lex_state = 2}, - [14] = {.lex_state = 737, .external_lex_state = 2}, - [15] = {.lex_state = 737, .external_lex_state = 2}, - [16] = {.lex_state = 737, .external_lex_state = 2}, - [17] = {.lex_state = 737, .external_lex_state = 2}, - [18] = {.lex_state = 737, .external_lex_state = 2}, - [19] = {.lex_state = 737, .external_lex_state = 2}, - [20] = {.lex_state = 737, .external_lex_state = 2}, - [21] = {.lex_state = 737, .external_lex_state = 2}, - [22] = {.lex_state = 737, .external_lex_state = 2}, - [23] = {.lex_state = 737, .external_lex_state = 2}, - [24] = {.lex_state = 737, .external_lex_state = 2}, - [25] = {.lex_state = 737, .external_lex_state = 2}, - [26] = {.lex_state = 737, .external_lex_state = 2}, - [27] = {.lex_state = 737, .external_lex_state = 2}, - [28] = {.lex_state = 737, .external_lex_state = 2}, - [29] = {.lex_state = 737, .external_lex_state = 2}, - [30] = {.lex_state = 737, .external_lex_state = 2}, - [31] = {.lex_state = 737, .external_lex_state = 2}, - [32] = {.lex_state = 737, .external_lex_state = 2}, - [33] = {.lex_state = 737, .external_lex_state = 2}, - [34] = {.lex_state = 737, .external_lex_state = 2}, - [35] = {.lex_state = 734, .external_lex_state = 2}, - [36] = {.lex_state = 734, .external_lex_state = 2}, - [37] = {.lex_state = 734, .external_lex_state = 2}, - [38] = {.lex_state = 734, .external_lex_state = 2}, - [39] = {.lex_state = 734, .external_lex_state = 2}, - [40] = {.lex_state = 734, .external_lex_state = 2}, - [41] = {.lex_state = 734, .external_lex_state = 2}, - [42] = {.lex_state = 734, .external_lex_state = 2}, - [43] = {.lex_state = 734, .external_lex_state = 2}, - [44] = {.lex_state = 734, .external_lex_state = 2}, - [45] = {.lex_state = 734, .external_lex_state = 2}, - [46] = {.lex_state = 734, .external_lex_state = 2}, - [47] = {.lex_state = 734, .external_lex_state = 2}, - [48] = {.lex_state = 734, .external_lex_state = 2}, - [49] = {.lex_state = 734, .external_lex_state = 2}, - [50] = {.lex_state = 734, .external_lex_state = 2}, - [51] = {.lex_state = 734, .external_lex_state = 2}, - [52] = {.lex_state = 734, .external_lex_state = 2}, - [53] = {.lex_state = 734, .external_lex_state = 2}, - [54] = {.lex_state = 734, .external_lex_state = 2}, - [55] = {.lex_state = 734, .external_lex_state = 2}, - [56] = {.lex_state = 734, .external_lex_state = 2}, - [57] = {.lex_state = 734, .external_lex_state = 2}, + [1] = {.lex_state = 717, .external_lex_state = 2}, + [2] = {.lex_state = 738, .external_lex_state = 2}, + [3] = {.lex_state = 738, .external_lex_state = 2}, + [4] = {.lex_state = 738, .external_lex_state = 2}, + [5] = {.lex_state = 738, .external_lex_state = 2}, + [6] = {.lex_state = 738, .external_lex_state = 2}, + [7] = {.lex_state = 738, .external_lex_state = 2}, + [8] = {.lex_state = 738, .external_lex_state = 2}, + [9] = {.lex_state = 738, .external_lex_state = 2}, + [10] = {.lex_state = 738, .external_lex_state = 2}, + [11] = {.lex_state = 738, .external_lex_state = 2}, + [12] = {.lex_state = 738, .external_lex_state = 2}, + [13] = {.lex_state = 738, .external_lex_state = 2}, + [14] = {.lex_state = 738, .external_lex_state = 2}, + [15] = {.lex_state = 738, .external_lex_state = 2}, + [16] = {.lex_state = 738, .external_lex_state = 2}, + [17] = {.lex_state = 738, .external_lex_state = 2}, + [18] = {.lex_state = 738, .external_lex_state = 2}, + [19] = {.lex_state = 738, .external_lex_state = 2}, + [20] = {.lex_state = 738, .external_lex_state = 2}, + [21] = {.lex_state = 738, .external_lex_state = 2}, + [22] = {.lex_state = 738, .external_lex_state = 2}, + [23] = {.lex_state = 738, .external_lex_state = 2}, + [24] = {.lex_state = 738, .external_lex_state = 2}, + [25] = {.lex_state = 738, .external_lex_state = 2}, + [26] = {.lex_state = 738, .external_lex_state = 2}, + [27] = {.lex_state = 738, .external_lex_state = 2}, + [28] = {.lex_state = 738, .external_lex_state = 2}, + [29] = {.lex_state = 738, .external_lex_state = 2}, + [30] = {.lex_state = 738, .external_lex_state = 2}, + [31] = {.lex_state = 738, .external_lex_state = 2}, + [32] = {.lex_state = 738, .external_lex_state = 2}, + [33] = {.lex_state = 738, .external_lex_state = 2}, + [34] = {.lex_state = 738, .external_lex_state = 2}, + [35] = {.lex_state = 735, .external_lex_state = 2}, + [36] = {.lex_state = 735, .external_lex_state = 2}, + [37] = {.lex_state = 735, .external_lex_state = 2}, + [38] = {.lex_state = 735, .external_lex_state = 2}, + [39] = {.lex_state = 735, .external_lex_state = 2}, + [40] = {.lex_state = 735, .external_lex_state = 2}, + [41] = {.lex_state = 735, .external_lex_state = 2}, + [42] = {.lex_state = 735, .external_lex_state = 2}, + [43] = {.lex_state = 735, .external_lex_state = 2}, + [44] = {.lex_state = 735, .external_lex_state = 2}, + [45] = {.lex_state = 735, .external_lex_state = 2}, + [46] = {.lex_state = 735, .external_lex_state = 2}, + [47] = {.lex_state = 735, .external_lex_state = 2}, + [48] = {.lex_state = 735, .external_lex_state = 2}, + [49] = {.lex_state = 735, .external_lex_state = 2}, + [50] = {.lex_state = 735, .external_lex_state = 2}, + [51] = {.lex_state = 735, .external_lex_state = 2}, + [52] = {.lex_state = 735, .external_lex_state = 2}, + [53] = {.lex_state = 735, .external_lex_state = 2}, + [54] = {.lex_state = 735, .external_lex_state = 2}, + [55] = {.lex_state = 735, .external_lex_state = 2}, + [56] = {.lex_state = 735, .external_lex_state = 2}, + [57] = {.lex_state = 735, .external_lex_state = 2}, [58] = {.lex_state = 30, .external_lex_state = 2}, [59] = {.lex_state = 30, .external_lex_state = 2}, [60] = {.lex_state = 30, .external_lex_state = 2}, @@ -54960,21 +54411,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [64] = {.lex_state = 30, .external_lex_state = 2}, [65] = {.lex_state = 30, .external_lex_state = 2}, [66] = {.lex_state = 30, .external_lex_state = 2}, - [67] = {.lex_state = 734, .external_lex_state = 2}, + [67] = {.lex_state = 30, .external_lex_state = 2}, [68] = {.lex_state = 30, .external_lex_state = 2}, [69] = {.lex_state = 30, .external_lex_state = 2}, [70] = {.lex_state = 30, .external_lex_state = 2}, [71] = {.lex_state = 30, .external_lex_state = 2}, [72] = {.lex_state = 30, .external_lex_state = 2}, - [73] = {.lex_state = 30, .external_lex_state = 2}, - [74] = {.lex_state = 30, .external_lex_state = 2}, + [73] = {.lex_state = 735, .external_lex_state = 2}, + [74] = {.lex_state = 735, .external_lex_state = 2}, [75] = {.lex_state = 30, .external_lex_state = 2}, [76] = {.lex_state = 30, .external_lex_state = 2}, [77] = {.lex_state = 30, .external_lex_state = 2}, [78] = {.lex_state = 30, .external_lex_state = 2}, [79] = {.lex_state = 30, .external_lex_state = 2}, - [80] = {.lex_state = 30, .external_lex_state = 2}, - [81] = {.lex_state = 734, .external_lex_state = 2}, + [80] = {.lex_state = 735, .external_lex_state = 2}, + [81] = {.lex_state = 30, .external_lex_state = 2}, [82] = {.lex_state = 30, .external_lex_state = 2}, [83] = {.lex_state = 30, .external_lex_state = 2}, [84] = {.lex_state = 30, .external_lex_state = 2}, @@ -54983,117 +54434,117 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [87] = {.lex_state = 30, .external_lex_state = 2}, [88] = {.lex_state = 30, .external_lex_state = 2}, [89] = {.lex_state = 30, .external_lex_state = 2}, - [90] = {.lex_state = 734, .external_lex_state = 2}, + [90] = {.lex_state = 30, .external_lex_state = 2}, [91] = {.lex_state = 30, .external_lex_state = 2}, [92] = {.lex_state = 30, .external_lex_state = 2}, [93] = {.lex_state = 30, .external_lex_state = 2}, [94] = {.lex_state = 30, .external_lex_state = 2}, [95] = {.lex_state = 30, .external_lex_state = 2}, [96] = {.lex_state = 30, .external_lex_state = 2}, - [97] = {.lex_state = 734, .external_lex_state = 2}, - [98] = {.lex_state = 734, .external_lex_state = 2}, - [99] = {.lex_state = 734, .external_lex_state = 2}, - [100] = {.lex_state = 734, .external_lex_state = 2}, - [101] = {.lex_state = 30, .external_lex_state = 2}, - [102] = {.lex_state = 734, .external_lex_state = 2}, - [103] = {.lex_state = 30, .external_lex_state = 2}, - [104] = {.lex_state = 734, .external_lex_state = 2}, - [105] = {.lex_state = 734, .external_lex_state = 2}, - [106] = {.lex_state = 734, .external_lex_state = 2}, - [107] = {.lex_state = 734, .external_lex_state = 2}, - [108] = {.lex_state = 734, .external_lex_state = 2}, - [109] = {.lex_state = 734, .external_lex_state = 2}, - [110] = {.lex_state = 734, .external_lex_state = 2}, - [111] = {.lex_state = 734, .external_lex_state = 2}, - [112] = {.lex_state = 734, .external_lex_state = 2}, - [113] = {.lex_state = 734, .external_lex_state = 2}, - [114] = {.lex_state = 734, .external_lex_state = 2}, - [115] = {.lex_state = 734, .external_lex_state = 2}, - [116] = {.lex_state = 734, .external_lex_state = 2}, - [117] = {.lex_state = 734, .external_lex_state = 2}, - [118] = {.lex_state = 734, .external_lex_state = 2}, - [119] = {.lex_state = 734, .external_lex_state = 2}, - [120] = {.lex_state = 734, .external_lex_state = 2}, - [121] = {.lex_state = 734, .external_lex_state = 2}, - [122] = {.lex_state = 734, .external_lex_state = 2}, - [123] = {.lex_state = 734, .external_lex_state = 2}, - [124] = {.lex_state = 734, .external_lex_state = 2}, - [125] = {.lex_state = 734, .external_lex_state = 2}, - [126] = {.lex_state = 734, .external_lex_state = 2}, - [127] = {.lex_state = 734, .external_lex_state = 2}, - [128] = {.lex_state = 734, .external_lex_state = 2}, - [129] = {.lex_state = 734, .external_lex_state = 2}, - [130] = {.lex_state = 734, .external_lex_state = 2}, - [131] = {.lex_state = 734, .external_lex_state = 2}, - [132] = {.lex_state = 734, .external_lex_state = 2}, - [133] = {.lex_state = 734, .external_lex_state = 2}, - [134] = {.lex_state = 734, .external_lex_state = 2}, - [135] = {.lex_state = 734, .external_lex_state = 2}, - [136] = {.lex_state = 734, .external_lex_state = 2}, - [137] = {.lex_state = 734, .external_lex_state = 2}, - [138] = {.lex_state = 734, .external_lex_state = 2}, - [139] = {.lex_state = 734, .external_lex_state = 2}, - [140] = {.lex_state = 734, .external_lex_state = 2}, - [141] = {.lex_state = 669, .external_lex_state = 2}, - [142] = {.lex_state = 669, .external_lex_state = 2}, - [143] = {.lex_state = 669, .external_lex_state = 2}, + [97] = {.lex_state = 735, .external_lex_state = 2}, + [98] = {.lex_state = 30, .external_lex_state = 2}, + [99] = {.lex_state = 735, .external_lex_state = 2}, + [100] = {.lex_state = 735, .external_lex_state = 2}, + [101] = {.lex_state = 735, .external_lex_state = 2}, + [102] = {.lex_state = 735, .external_lex_state = 2}, + [103] = {.lex_state = 735, .external_lex_state = 2}, + [104] = {.lex_state = 735, .external_lex_state = 2}, + [105] = {.lex_state = 735, .external_lex_state = 2}, + [106] = {.lex_state = 735, .external_lex_state = 2}, + [107] = {.lex_state = 735, .external_lex_state = 2}, + [108] = {.lex_state = 735, .external_lex_state = 2}, + [109] = {.lex_state = 735, .external_lex_state = 2}, + [110] = {.lex_state = 735, .external_lex_state = 2}, + [111] = {.lex_state = 735, .external_lex_state = 2}, + [112] = {.lex_state = 30, .external_lex_state = 2}, + [113] = {.lex_state = 735, .external_lex_state = 2}, + [114] = {.lex_state = 735, .external_lex_state = 2}, + [115] = {.lex_state = 735, .external_lex_state = 2}, + [116] = {.lex_state = 735, .external_lex_state = 2}, + [117] = {.lex_state = 735, .external_lex_state = 2}, + [118] = {.lex_state = 735, .external_lex_state = 2}, + [119] = {.lex_state = 735, .external_lex_state = 2}, + [120] = {.lex_state = 735, .external_lex_state = 2}, + [121] = {.lex_state = 735, .external_lex_state = 2}, + [122] = {.lex_state = 735, .external_lex_state = 2}, + [123] = {.lex_state = 735, .external_lex_state = 2}, + [124] = {.lex_state = 735, .external_lex_state = 2}, + [125] = {.lex_state = 735, .external_lex_state = 2}, + [126] = {.lex_state = 735, .external_lex_state = 2}, + [127] = {.lex_state = 735, .external_lex_state = 2}, + [128] = {.lex_state = 735, .external_lex_state = 2}, + [129] = {.lex_state = 735, .external_lex_state = 2}, + [130] = {.lex_state = 735, .external_lex_state = 2}, + [131] = {.lex_state = 735, .external_lex_state = 2}, + [132] = {.lex_state = 735, .external_lex_state = 2}, + [133] = {.lex_state = 735, .external_lex_state = 2}, + [134] = {.lex_state = 735, .external_lex_state = 2}, + [135] = {.lex_state = 735, .external_lex_state = 2}, + [136] = {.lex_state = 735, .external_lex_state = 2}, + [137] = {.lex_state = 735, .external_lex_state = 2}, + [138] = {.lex_state = 735, .external_lex_state = 2}, + [139] = {.lex_state = 735, .external_lex_state = 2}, + [140] = {.lex_state = 735, .external_lex_state = 2}, + [141] = {.lex_state = 670, .external_lex_state = 2}, + [142] = {.lex_state = 670, .external_lex_state = 2}, + [143] = {.lex_state = 670, .external_lex_state = 2}, [144] = {.lex_state = 2, .external_lex_state = 2}, [145] = {.lex_state = 2, .external_lex_state = 2}, [146] = {.lex_state = 2, .external_lex_state = 2}, [147] = {.lex_state = 2, .external_lex_state = 2}, [148] = {.lex_state = 2, .external_lex_state = 2}, [149] = {.lex_state = 2, .external_lex_state = 2}, - [150] = {.lex_state = 669, .external_lex_state = 2}, - [151] = {.lex_state = 669, .external_lex_state = 2}, - [152] = {.lex_state = 669, .external_lex_state = 2}, + [150] = {.lex_state = 670, .external_lex_state = 2}, + [151] = {.lex_state = 670, .external_lex_state = 2}, + [152] = {.lex_state = 670, .external_lex_state = 2}, [153] = {.lex_state = 4, .external_lex_state = 2}, [154] = {.lex_state = 4, .external_lex_state = 2}, - [155] = {.lex_state = 131, .external_lex_state = 2}, - [156] = {.lex_state = 131, .external_lex_state = 2}, - [157] = {.lex_state = 131, .external_lex_state = 2}, - [158] = {.lex_state = 131, .external_lex_state = 2}, - [159] = {.lex_state = 131, .external_lex_state = 2}, - [160] = {.lex_state = 131, .external_lex_state = 2}, - [161] = {.lex_state = 131, .external_lex_state = 2}, - [162] = {.lex_state = 131, .external_lex_state = 2}, - [163] = {.lex_state = 131, .external_lex_state = 2}, - [164] = {.lex_state = 131, .external_lex_state = 2}, - [165] = {.lex_state = 131, .external_lex_state = 2}, - [166] = {.lex_state = 131, .external_lex_state = 2}, - [167] = {.lex_state = 131, .external_lex_state = 2}, - [168] = {.lex_state = 131, .external_lex_state = 2}, - [169] = {.lex_state = 131, .external_lex_state = 2}, - [170] = {.lex_state = 131, .external_lex_state = 2}, - [171] = {.lex_state = 131, .external_lex_state = 2}, - [172] = {.lex_state = 131, .external_lex_state = 2}, - [173] = {.lex_state = 131, .external_lex_state = 2}, - [174] = {.lex_state = 131, .external_lex_state = 2}, - [175] = {.lex_state = 131, .external_lex_state = 2}, - [176] = {.lex_state = 131, .external_lex_state = 2}, - [177] = {.lex_state = 131, .external_lex_state = 2}, - [178] = {.lex_state = 131, .external_lex_state = 2}, - [179] = {.lex_state = 131, .external_lex_state = 2}, - [180] = {.lex_state = 131, .external_lex_state = 2}, - [181] = {.lex_state = 131, .external_lex_state = 2}, - [182] = {.lex_state = 131, .external_lex_state = 2}, - [183] = {.lex_state = 131, .external_lex_state = 2}, - [184] = {.lex_state = 131, .external_lex_state = 2}, - [185] = {.lex_state = 131, .external_lex_state = 2}, - [186] = {.lex_state = 131, .external_lex_state = 2}, - [187] = {.lex_state = 131, .external_lex_state = 2}, - [188] = {.lex_state = 131, .external_lex_state = 2}, - [189] = {.lex_state = 131, .external_lex_state = 2}, - [190] = {.lex_state = 131, .external_lex_state = 2}, - [191] = {.lex_state = 131, .external_lex_state = 2}, - [192] = {.lex_state = 131, .external_lex_state = 2}, + [155] = {.lex_state = 132, .external_lex_state = 2}, + [156] = {.lex_state = 132, .external_lex_state = 2}, + [157] = {.lex_state = 132, .external_lex_state = 2}, + [158] = {.lex_state = 132, .external_lex_state = 2}, + [159] = {.lex_state = 132, .external_lex_state = 2}, + [160] = {.lex_state = 132, .external_lex_state = 2}, + [161] = {.lex_state = 132, .external_lex_state = 2}, + [162] = {.lex_state = 132, .external_lex_state = 2}, + [163] = {.lex_state = 132, .external_lex_state = 2}, + [164] = {.lex_state = 132, .external_lex_state = 2}, + [165] = {.lex_state = 132, .external_lex_state = 2}, + [166] = {.lex_state = 132, .external_lex_state = 2}, + [167] = {.lex_state = 132, .external_lex_state = 2}, + [168] = {.lex_state = 132, .external_lex_state = 2}, + [169] = {.lex_state = 132, .external_lex_state = 2}, + [170] = {.lex_state = 132, .external_lex_state = 2}, + [171] = {.lex_state = 132, .external_lex_state = 2}, + [172] = {.lex_state = 132, .external_lex_state = 2}, + [173] = {.lex_state = 132, .external_lex_state = 2}, + [174] = {.lex_state = 132, .external_lex_state = 2}, + [175] = {.lex_state = 132, .external_lex_state = 2}, + [176] = {.lex_state = 132, .external_lex_state = 2}, + [177] = {.lex_state = 132, .external_lex_state = 2}, + [178] = {.lex_state = 132, .external_lex_state = 2}, + [179] = {.lex_state = 132, .external_lex_state = 2}, + [180] = {.lex_state = 132, .external_lex_state = 2}, + [181] = {.lex_state = 132, .external_lex_state = 2}, + [182] = {.lex_state = 132, .external_lex_state = 2}, + [183] = {.lex_state = 132, .external_lex_state = 2}, + [184] = {.lex_state = 132, .external_lex_state = 2}, + [185] = {.lex_state = 132, .external_lex_state = 2}, + [186] = {.lex_state = 132, .external_lex_state = 2}, + [187] = {.lex_state = 132, .external_lex_state = 2}, + [188] = {.lex_state = 132, .external_lex_state = 2}, + [189] = {.lex_state = 132, .external_lex_state = 2}, + [190] = {.lex_state = 132, .external_lex_state = 2}, + [191] = {.lex_state = 132, .external_lex_state = 2}, + [192] = {.lex_state = 132, .external_lex_state = 2}, [193] = {.lex_state = 37, .external_lex_state = 2}, [194] = {.lex_state = 37, .external_lex_state = 2}, [195] = {.lex_state = 37, .external_lex_state = 2}, [196] = {.lex_state = 37, .external_lex_state = 2}, [197] = {.lex_state = 37, .external_lex_state = 2}, - [198] = {.lex_state = 737, .external_lex_state = 2}, - [199] = {.lex_state = 737, .external_lex_state = 2}, - [200] = {.lex_state = 737, .external_lex_state = 2}, + [198] = {.lex_state = 738, .external_lex_state = 2}, + [199] = {.lex_state = 738, .external_lex_state = 2}, + [200] = {.lex_state = 738, .external_lex_state = 2}, [201] = {.lex_state = 37, .external_lex_state = 2}, [202] = {.lex_state = 37, .external_lex_state = 2}, [203] = {.lex_state = 37, .external_lex_state = 2}, @@ -55103,30 +54554,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [207] = {.lex_state = 37, .external_lex_state = 2}, [208] = {.lex_state = 37, .external_lex_state = 2}, [209] = {.lex_state = 37, .external_lex_state = 2}, - [210] = {.lex_state = 105, .external_lex_state = 2}, - [211] = {.lex_state = 106, .external_lex_state = 2}, - [212] = {.lex_state = 30, .external_lex_state = 2}, - [213] = {.lex_state = 106, .external_lex_state = 2}, - [214] = {.lex_state = 105, .external_lex_state = 2}, - [215] = {.lex_state = 121, .external_lex_state = 2}, - [216] = {.lex_state = 119, .external_lex_state = 2}, - [217] = {.lex_state = 103, .external_lex_state = 2}, + [210] = {.lex_state = 106, .external_lex_state = 2}, + [211] = {.lex_state = 104, .external_lex_state = 2}, + [212] = {.lex_state = 107, .external_lex_state = 2}, + [213] = {.lex_state = 107, .external_lex_state = 2}, + [214] = {.lex_state = 106, .external_lex_state = 2}, + [215] = {.lex_state = 122, .external_lex_state = 2}, + [216] = {.lex_state = 120, .external_lex_state = 2}, + [217] = {.lex_state = 30, .external_lex_state = 2}, [218] = {.lex_state = 30, .external_lex_state = 2}, [219] = {.lex_state = 30, .external_lex_state = 2}, [220] = {.lex_state = 30, .external_lex_state = 2}, [221] = {.lex_state = 34, .external_lex_state = 2}, - [222] = {.lex_state = 123, .external_lex_state = 2}, - [223] = {.lex_state = 106, .external_lex_state = 2}, - [224] = {.lex_state = 34, .external_lex_state = 2}, - [225] = {.lex_state = 34, .external_lex_state = 2}, - [226] = {.lex_state = 34, .external_lex_state = 2}, - [227] = {.lex_state = 34, .external_lex_state = 2}, - [228] = {.lex_state = 34, .external_lex_state = 2}, - [229] = {.lex_state = 34, .external_lex_state = 2}, - [230] = {.lex_state = 34, .external_lex_state = 2}, - [231] = {.lex_state = 34, .external_lex_state = 2}, - [232] = {.lex_state = 34, .external_lex_state = 2}, - [233] = {.lex_state = 34, .external_lex_state = 2}, + [222] = {.lex_state = 107, .external_lex_state = 2}, + [223] = {.lex_state = 105, .external_lex_state = 2}, + [224] = {.lex_state = 105, .external_lex_state = 2}, + [225] = {.lex_state = 735, .external_lex_state = 2}, + [226] = {.lex_state = 735, .external_lex_state = 2}, + [227] = {.lex_state = 110, .external_lex_state = 2}, + [228] = {.lex_state = 108, .external_lex_state = 2}, + [229] = {.lex_state = 124, .external_lex_state = 2}, + [230] = {.lex_state = 104, .external_lex_state = 2}, + [231] = {.lex_state = 124, .external_lex_state = 2}, + [232] = {.lex_state = 735, .external_lex_state = 2}, + [233] = {.lex_state = 735, .external_lex_state = 2}, [234] = {.lex_state = 34, .external_lex_state = 2}, [235] = {.lex_state = 34, .external_lex_state = 2}, [236] = {.lex_state = 34, .external_lex_state = 2}, @@ -55134,24 +54585,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [238] = {.lex_state = 34, .external_lex_state = 2}, [239] = {.lex_state = 34, .external_lex_state = 2}, [240] = {.lex_state = 34, .external_lex_state = 2}, - [241] = {.lex_state = 34, .external_lex_state = 2}, + [241] = {.lex_state = 735, .external_lex_state = 2}, [242] = {.lex_state = 34, .external_lex_state = 2}, [243] = {.lex_state = 34, .external_lex_state = 2}, [244] = {.lex_state = 34, .external_lex_state = 2}, [245] = {.lex_state = 34, .external_lex_state = 2}, [246] = {.lex_state = 34, .external_lex_state = 2}, - [247] = {.lex_state = 734, .external_lex_state = 2}, - [248] = {.lex_state = 734, .external_lex_state = 2}, + [247] = {.lex_state = 34, .external_lex_state = 2}, + [248] = {.lex_state = 34, .external_lex_state = 2}, [249] = {.lex_state = 34, .external_lex_state = 2}, - [250] = {.lex_state = 104, .external_lex_state = 2}, + [250] = {.lex_state = 34, .external_lex_state = 2}, [251] = {.lex_state = 34, .external_lex_state = 2}, [252] = {.lex_state = 34, .external_lex_state = 2}, [253] = {.lex_state = 34, .external_lex_state = 2}, [254] = {.lex_state = 34, .external_lex_state = 2}, [255] = {.lex_state = 34, .external_lex_state = 2}, [256] = {.lex_state = 34, .external_lex_state = 2}, - [257] = {.lex_state = 34, .external_lex_state = 2}, - [258] = {.lex_state = 34, .external_lex_state = 2}, + [257] = {.lex_state = 717, .external_lex_state = 2}, + [258] = {.lex_state = 735, .external_lex_state = 2}, [259] = {.lex_state = 34, .external_lex_state = 2}, [260] = {.lex_state = 34, .external_lex_state = 2}, [261] = {.lex_state = 34, .external_lex_state = 2}, @@ -55167,22 +54618,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [271] = {.lex_state = 34, .external_lex_state = 2}, [272] = {.lex_state = 34, .external_lex_state = 2}, [273] = {.lex_state = 34, .external_lex_state = 2}, - [274] = {.lex_state = 104, .external_lex_state = 2}, - [275] = {.lex_state = 106, .external_lex_state = 2}, - [276] = {.lex_state = 124, .external_lex_state = 2}, - [277] = {.lex_state = 734, .external_lex_state = 2}, - [278] = {.lex_state = 734, .external_lex_state = 2}, - [279] = {.lex_state = 103, .external_lex_state = 2}, - [280] = {.lex_state = 734, .external_lex_state = 2}, - [281] = {.lex_state = 734, .external_lex_state = 2}, - [282] = {.lex_state = 734, .external_lex_state = 2}, + [274] = {.lex_state = 34, .external_lex_state = 2}, + [275] = {.lex_state = 34, .external_lex_state = 2}, + [276] = {.lex_state = 34, .external_lex_state = 2}, + [277] = {.lex_state = 34, .external_lex_state = 2}, + [278] = {.lex_state = 34, .external_lex_state = 2}, + [279] = {.lex_state = 34, .external_lex_state = 2}, + [280] = {.lex_state = 34, .external_lex_state = 2}, + [281] = {.lex_state = 34, .external_lex_state = 2}, + [282] = {.lex_state = 34, .external_lex_state = 2}, [283] = {.lex_state = 34, .external_lex_state = 2}, [284] = {.lex_state = 34, .external_lex_state = 2}, [285] = {.lex_state = 34, .external_lex_state = 2}, [286] = {.lex_state = 34, .external_lex_state = 2}, [287] = {.lex_state = 34, .external_lex_state = 2}, - [288] = {.lex_state = 716, .external_lex_state = 2}, - [289] = {.lex_state = 34, .external_lex_state = 2}, + [288] = {.lex_state = 735, .external_lex_state = 2}, + [289] = {.lex_state = 125, .external_lex_state = 2}, [290] = {.lex_state = 34, .external_lex_state = 2}, [291] = {.lex_state = 34, .external_lex_state = 2}, [292] = {.lex_state = 34, .external_lex_state = 2}, @@ -55195,595 +54646,595 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [299] = {.lex_state = 34, .external_lex_state = 2}, [300] = {.lex_state = 34, .external_lex_state = 2}, [301] = {.lex_state = 34, .external_lex_state = 2}, - [302] = {.lex_state = 106, .external_lex_state = 2}, + [302] = {.lex_state = 34, .external_lex_state = 2}, [303] = {.lex_state = 34, .external_lex_state = 2}, [304] = {.lex_state = 34, .external_lex_state = 2}, [305] = {.lex_state = 34, .external_lex_state = 2}, [306] = {.lex_state = 34, .external_lex_state = 2}, [307] = {.lex_state = 34, .external_lex_state = 2}, - [308] = {.lex_state = 109, .external_lex_state = 2}, - [309] = {.lex_state = 34, .external_lex_state = 2}, - [310] = {.lex_state = 30, .external_lex_state = 2}, + [308] = {.lex_state = 34, .external_lex_state = 2}, + [309] = {.lex_state = 30, .external_lex_state = 2}, + [310] = {.lex_state = 107, .external_lex_state = 2}, [311] = {.lex_state = 107, .external_lex_state = 2}, - [312] = {.lex_state = 123, .external_lex_state = 2}, - [313] = {.lex_state = 106, .external_lex_state = 2}, - [314] = {.lex_state = 734, .external_lex_state = 2}, - [315] = {.lex_state = 122, .external_lex_state = 2}, - [316] = {.lex_state = 112, .external_lex_state = 2}, - [317] = {.lex_state = 734, .external_lex_state = 2}, - [318] = {.lex_state = 120, .external_lex_state = 2}, - [319] = {.lex_state = 104, .external_lex_state = 2}, - [320] = {.lex_state = 104, .external_lex_state = 2}, - [321] = {.lex_state = 734, .external_lex_state = 2}, - [322] = {.lex_state = 734, .external_lex_state = 2}, - [323] = {.lex_state = 148, .external_lex_state = 2}, - [324] = {.lex_state = 111, .external_lex_state = 2}, - [325] = {.lex_state = 734, .external_lex_state = 2}, - [326] = {.lex_state = 734, .external_lex_state = 2}, - [327] = {.lex_state = 148, .external_lex_state = 2}, - [328] = {.lex_state = 111, .external_lex_state = 2}, - [329] = {.lex_state = 734, .external_lex_state = 2}, - [330] = {.lex_state = 104, .external_lex_state = 2}, - [331] = {.lex_state = 124, .external_lex_state = 2}, - [332] = {.lex_state = 30, .external_lex_state = 2}, - [333] = {.lex_state = 104, .external_lex_state = 2}, - [334] = {.lex_state = 124, .external_lex_state = 2}, - [335] = {.lex_state = 148, .external_lex_state = 2}, - [336] = {.lex_state = 124, .external_lex_state = 2}, - [337] = {.lex_state = 124, .external_lex_state = 2}, - [338] = {.lex_state = 125, .external_lex_state = 2}, - [339] = {.lex_state = 132, .external_lex_state = 2}, - [340] = {.lex_state = 134, .external_lex_state = 2}, - [341] = {.lex_state = 132, .external_lex_state = 2}, - [342] = {.lex_state = 132, .external_lex_state = 2}, - [343] = {.lex_state = 34, .external_lex_state = 2}, - [344] = {.lex_state = 132, .external_lex_state = 2}, + [312] = {.lex_state = 735, .external_lex_state = 2}, + [313] = {.lex_state = 107, .external_lex_state = 2}, + [314] = {.lex_state = 34, .external_lex_state = 2}, + [315] = {.lex_state = 735, .external_lex_state = 2}, + [316] = {.lex_state = 105, .external_lex_state = 2}, + [317] = {.lex_state = 735, .external_lex_state = 2}, + [318] = {.lex_state = 105, .external_lex_state = 2}, + [319] = {.lex_state = 735, .external_lex_state = 2}, + [320] = {.lex_state = 149, .external_lex_state = 2}, + [321] = {.lex_state = 735, .external_lex_state = 2}, + [322] = {.lex_state = 735, .external_lex_state = 2}, + [323] = {.lex_state = 112, .external_lex_state = 2}, + [324] = {.lex_state = 149, .external_lex_state = 2}, + [325] = {.lex_state = 112, .external_lex_state = 2}, + [326] = {.lex_state = 125, .external_lex_state = 2}, + [327] = {.lex_state = 105, .external_lex_state = 2}, + [328] = {.lex_state = 149, .external_lex_state = 2}, + [329] = {.lex_state = 125, .external_lex_state = 2}, + [330] = {.lex_state = 125, .external_lex_state = 2}, + [331] = {.lex_state = 125, .external_lex_state = 2}, + [332] = {.lex_state = 105, .external_lex_state = 2}, + [333] = {.lex_state = 735, .external_lex_state = 2}, + [334] = {.lex_state = 123, .external_lex_state = 2}, + [335] = {.lex_state = 30, .external_lex_state = 2}, + [336] = {.lex_state = 121, .external_lex_state = 2}, + [337] = {.lex_state = 113, .external_lex_state = 2}, + [338] = {.lex_state = 113, .external_lex_state = 2}, + [339] = {.lex_state = 735, .external_lex_state = 2}, + [340] = {.lex_state = 135, .external_lex_state = 2}, + [341] = {.lex_state = 735, .external_lex_state = 2}, + [342] = {.lex_state = 34, .external_lex_state = 2}, + [343] = {.lex_state = 133, .external_lex_state = 2}, + [344] = {.lex_state = 735, .external_lex_state = 2}, [345] = {.lex_state = 34, .external_lex_state = 2}, - [346] = {.lex_state = 734, .external_lex_state = 2}, - [347] = {.lex_state = 134, .external_lex_state = 2}, - [348] = {.lex_state = 132, .external_lex_state = 2}, - [349] = {.lex_state = 734, .external_lex_state = 2}, - [350] = {.lex_state = 734, .external_lex_state = 2}, - [351] = {.lex_state = 34, .external_lex_state = 2}, - [352] = {.lex_state = 734, .external_lex_state = 2}, - [353] = {.lex_state = 34, .external_lex_state = 2}, - [354] = {.lex_state = 734, .external_lex_state = 2}, - [355] = {.lex_state = 132, .external_lex_state = 2}, - [356] = {.lex_state = 132, .external_lex_state = 2}, - [357] = {.lex_state = 134, .external_lex_state = 2}, - [358] = {.lex_state = 148, .external_lex_state = 2}, - [359] = {.lex_state = 148, .external_lex_state = 2}, - [360] = {.lex_state = 125, .external_lex_state = 2}, - [361] = {.lex_state = 110, .external_lex_state = 2}, - [362] = {.lex_state = 112, .external_lex_state = 2}, - [363] = {.lex_state = 108, .external_lex_state = 2}, - [364] = {.lex_state = 112, .external_lex_state = 2}, - [365] = {.lex_state = 112, .external_lex_state = 2}, - [366] = {.lex_state = 112, .external_lex_state = 2}, - [367] = {.lex_state = 132, .external_lex_state = 2}, + [346] = {.lex_state = 133, .external_lex_state = 2}, + [347] = {.lex_state = 133, .external_lex_state = 2}, + [348] = {.lex_state = 149, .external_lex_state = 2}, + [349] = {.lex_state = 149, .external_lex_state = 2}, + [350] = {.lex_state = 135, .external_lex_state = 2}, + [351] = {.lex_state = 133, .external_lex_state = 2}, + [352] = {.lex_state = 113, .external_lex_state = 2}, + [353] = {.lex_state = 133, .external_lex_state = 2}, + [354] = {.lex_state = 113, .external_lex_state = 2}, + [355] = {.lex_state = 113, .external_lex_state = 2}, + [356] = {.lex_state = 133, .external_lex_state = 2}, + [357] = {.lex_state = 735, .external_lex_state = 2}, + [358] = {.lex_state = 34, .external_lex_state = 2}, + [359] = {.lex_state = 133, .external_lex_state = 2}, + [360] = {.lex_state = 34, .external_lex_state = 2}, + [361] = {.lex_state = 111, .external_lex_state = 2}, + [362] = {.lex_state = 126, .external_lex_state = 2}, + [363] = {.lex_state = 135, .external_lex_state = 2}, + [364] = {.lex_state = 126, .external_lex_state = 2}, + [365] = {.lex_state = 133, .external_lex_state = 2}, + [366] = {.lex_state = 109, .external_lex_state = 2}, + [367] = {.lex_state = 735, .external_lex_state = 2}, [368] = {.lex_state = 34, .external_lex_state = 2}, - [369] = {.lex_state = 126, .external_lex_state = 2}, - [370] = {.lex_state = 126, .external_lex_state = 2}, - [371] = {.lex_state = 126, .external_lex_state = 2}, - [372] = {.lex_state = 155, .external_lex_state = 2}, - [373] = {.lex_state = 149, .external_lex_state = 2}, - [374] = {.lex_state = 149, .external_lex_state = 2}, - [375] = {.lex_state = 149, .external_lex_state = 2}, - [376] = {.lex_state = 149, .external_lex_state = 2}, - [377] = {.lex_state = 149, .external_lex_state = 2}, - [378] = {.lex_state = 134, .external_lex_state = 2}, - [379] = {.lex_state = 149, .external_lex_state = 2}, - [380] = {.lex_state = 152, .external_lex_state = 2}, - [381] = {.lex_state = 134, .external_lex_state = 2}, - [382] = {.lex_state = 113, .external_lex_state = 2}, - [383] = {.lex_state = 113, .external_lex_state = 2}, - [384] = {.lex_state = 126, .external_lex_state = 2}, - [385] = {.lex_state = 126, .external_lex_state = 2}, - [386] = {.lex_state = 126, .external_lex_state = 2}, - [387] = {.lex_state = 114, .external_lex_state = 2}, - [388] = {.lex_state = 142, .external_lex_state = 2}, - [389] = {.lex_state = 114, .external_lex_state = 2}, - [390] = {.lex_state = 151, .external_lex_state = 2}, - [391] = {.lex_state = 151, .external_lex_state = 2}, - [392] = {.lex_state = 151, .external_lex_state = 2}, - [393] = {.lex_state = 151, .external_lex_state = 2}, - [394] = {.lex_state = 151, .external_lex_state = 2}, - [395] = {.lex_state = 151, .external_lex_state = 2}, - [396] = {.lex_state = 151, .external_lex_state = 2}, - [397] = {.lex_state = 151, .external_lex_state = 2}, - [398] = {.lex_state = 151, .external_lex_state = 2}, - [399] = {.lex_state = 151, .external_lex_state = 2}, - [400] = {.lex_state = 151, .external_lex_state = 2}, - [401] = {.lex_state = 151, .external_lex_state = 2}, - [402] = {.lex_state = 151, .external_lex_state = 2}, - [403] = {.lex_state = 114, .external_lex_state = 2}, - [404] = {.lex_state = 151, .external_lex_state = 2}, - [405] = {.lex_state = 133, .external_lex_state = 2}, - [406] = {.lex_state = 151, .external_lex_state = 2}, - [407] = {.lex_state = 128, .external_lex_state = 2}, - [408] = {.lex_state = 133, .external_lex_state = 2}, - [409] = {.lex_state = 133, .external_lex_state = 2}, - [410] = {.lex_state = 153, .external_lex_state = 2}, - [411] = {.lex_state = 114, .external_lex_state = 2}, - [412] = {.lex_state = 151, .external_lex_state = 2}, - [413] = {.lex_state = 151, .external_lex_state = 2}, - [414] = {.lex_state = 153, .external_lex_state = 2}, - [415] = {.lex_state = 151, .external_lex_state = 2}, - [416] = {.lex_state = 151, .external_lex_state = 2}, - [417] = {.lex_state = 139, .external_lex_state = 2}, - [418] = {.lex_state = 151, .external_lex_state = 2}, - [419] = {.lex_state = 114, .external_lex_state = 2}, - [420] = {.lex_state = 148, .external_lex_state = 2}, - [421] = {.lex_state = 133, .external_lex_state = 2}, - [422] = {.lex_state = 127, .external_lex_state = 2}, - [423] = {.lex_state = 151, .external_lex_state = 2}, - [424] = {.lex_state = 151, .external_lex_state = 2}, - [425] = {.lex_state = 151, .external_lex_state = 2}, - [426] = {.lex_state = 151, .external_lex_state = 2}, - [427] = {.lex_state = 133, .external_lex_state = 2}, - [428] = {.lex_state = 151, .external_lex_state = 2}, - [429] = {.lex_state = 151, .external_lex_state = 2}, - [430] = {.lex_state = 148, .external_lex_state = 2}, - [431] = {.lex_state = 148, .external_lex_state = 2}, - [432] = {.lex_state = 136, .external_lex_state = 2}, - [433] = {.lex_state = 114, .external_lex_state = 2}, - [434] = {.lex_state = 151, .external_lex_state = 2}, - [435] = {.lex_state = 151, .external_lex_state = 2}, - [436] = {.lex_state = 133, .external_lex_state = 2}, - [437] = {.lex_state = 136, .external_lex_state = 2}, - [438] = {.lex_state = 136, .external_lex_state = 2}, - [439] = {.lex_state = 154, .external_lex_state = 2}, - [440] = {.lex_state = 136, .external_lex_state = 2}, - [441] = {.lex_state = 154, .external_lex_state = 2}, - [442] = {.lex_state = 154, .external_lex_state = 2}, - [443] = {.lex_state = 136, .external_lex_state = 2}, - [444] = {.lex_state = 136, .external_lex_state = 2}, - [445] = {.lex_state = 134, .external_lex_state = 2}, - [446] = {.lex_state = 151, .external_lex_state = 2}, - [447] = {.lex_state = 154, .external_lex_state = 2}, - [448] = {.lex_state = 151, .external_lex_state = 2}, - [449] = {.lex_state = 134, .external_lex_state = 2}, - [450] = {.lex_state = 134, .external_lex_state = 2}, - [451] = {.lex_state = 154, .external_lex_state = 2}, - [452] = {.lex_state = 154, .external_lex_state = 2}, - [453] = {.lex_state = 154, .external_lex_state = 2}, - [454] = {.lex_state = 136, .external_lex_state = 2}, - [455] = {.lex_state = 136, .external_lex_state = 2}, - [456] = {.lex_state = 136, .external_lex_state = 2}, - [457] = {.lex_state = 116, .external_lex_state = 2}, - [458] = {.lex_state = 140, .external_lex_state = 2}, - [459] = {.lex_state = 140, .external_lex_state = 2}, - [460] = {.lex_state = 129, .external_lex_state = 2}, - [461] = {.lex_state = 129, .external_lex_state = 2}, - [462] = {.lex_state = 154, .external_lex_state = 2}, - [463] = {.lex_state = 154, .external_lex_state = 2}, - [464] = {.lex_state = 154, .external_lex_state = 2}, - [465] = {.lex_state = 154, .external_lex_state = 2}, - [466] = {.lex_state = 115, .external_lex_state = 2}, - [467] = {.lex_state = 154, .external_lex_state = 2}, - [468] = {.lex_state = 154, .external_lex_state = 2}, - [469] = {.lex_state = 154, .external_lex_state = 2}, - [470] = {.lex_state = 154, .external_lex_state = 2}, - [471] = {.lex_state = 136, .external_lex_state = 2}, - [472] = {.lex_state = 154, .external_lex_state = 2}, - [473] = {.lex_state = 136, .external_lex_state = 2}, - [474] = {.lex_state = 136, .external_lex_state = 2}, - [475] = {.lex_state = 136, .external_lex_state = 2}, - [476] = {.lex_state = 136, .external_lex_state = 2}, - [477] = {.lex_state = 136, .external_lex_state = 2}, + [369] = {.lex_state = 150, .external_lex_state = 2}, + [370] = {.lex_state = 114, .external_lex_state = 2}, + [371] = {.lex_state = 150, .external_lex_state = 2}, + [372] = {.lex_state = 114, .external_lex_state = 2}, + [373] = {.lex_state = 127, .external_lex_state = 2}, + [374] = {.lex_state = 127, .external_lex_state = 2}, + [375] = {.lex_state = 135, .external_lex_state = 2}, + [376] = {.lex_state = 127, .external_lex_state = 2}, + [377] = {.lex_state = 135, .external_lex_state = 2}, + [378] = {.lex_state = 127, .external_lex_state = 2}, + [379] = {.lex_state = 127, .external_lex_state = 2}, + [380] = {.lex_state = 156, .external_lex_state = 2}, + [381] = {.lex_state = 150, .external_lex_state = 2}, + [382] = {.lex_state = 150, .external_lex_state = 2}, + [383] = {.lex_state = 150, .external_lex_state = 2}, + [384] = {.lex_state = 127, .external_lex_state = 2}, + [385] = {.lex_state = 150, .external_lex_state = 2}, + [386] = {.lex_state = 153, .external_lex_state = 2}, + [387] = {.lex_state = 137, .external_lex_state = 2}, + [388] = {.lex_state = 152, .external_lex_state = 2}, + [389] = {.lex_state = 152, .external_lex_state = 2}, + [390] = {.lex_state = 152, .external_lex_state = 2}, + [391] = {.lex_state = 115, .external_lex_state = 2}, + [392] = {.lex_state = 134, .external_lex_state = 2}, + [393] = {.lex_state = 134, .external_lex_state = 2}, + [394] = {.lex_state = 152, .external_lex_state = 2}, + [395] = {.lex_state = 152, .external_lex_state = 2}, + [396] = {.lex_state = 115, .external_lex_state = 2}, + [397] = {.lex_state = 149, .external_lex_state = 2}, + [398] = {.lex_state = 152, .external_lex_state = 2}, + [399] = {.lex_state = 115, .external_lex_state = 2}, + [400] = {.lex_state = 134, .external_lex_state = 2}, + [401] = {.lex_state = 115, .external_lex_state = 2}, + [402] = {.lex_state = 115, .external_lex_state = 2}, + [403] = {.lex_state = 115, .external_lex_state = 2}, + [404] = {.lex_state = 143, .external_lex_state = 2}, + [405] = {.lex_state = 152, .external_lex_state = 2}, + [406] = {.lex_state = 152, .external_lex_state = 2}, + [407] = {.lex_state = 152, .external_lex_state = 2}, + [408] = {.lex_state = 152, .external_lex_state = 2}, + [409] = {.lex_state = 152, .external_lex_state = 2}, + [410] = {.lex_state = 152, .external_lex_state = 2}, + [411] = {.lex_state = 152, .external_lex_state = 2}, + [412] = {.lex_state = 129, .external_lex_state = 2}, + [413] = {.lex_state = 154, .external_lex_state = 2}, + [414] = {.lex_state = 149, .external_lex_state = 2}, + [415] = {.lex_state = 154, .external_lex_state = 2}, + [416] = {.lex_state = 152, .external_lex_state = 2}, + [417] = {.lex_state = 152, .external_lex_state = 2}, + [418] = {.lex_state = 140, .external_lex_state = 2}, + [419] = {.lex_state = 134, .external_lex_state = 2}, + [420] = {.lex_state = 152, .external_lex_state = 2}, + [421] = {.lex_state = 128, .external_lex_state = 2}, + [422] = {.lex_state = 134, .external_lex_state = 2}, + [423] = {.lex_state = 134, .external_lex_state = 2}, + [424] = {.lex_state = 152, .external_lex_state = 2}, + [425] = {.lex_state = 152, .external_lex_state = 2}, + [426] = {.lex_state = 152, .external_lex_state = 2}, + [427] = {.lex_state = 149, .external_lex_state = 2}, + [428] = {.lex_state = 130, .external_lex_state = 2}, + [429] = {.lex_state = 116, .external_lex_state = 2}, + [430] = {.lex_state = 137, .external_lex_state = 2}, + [431] = {.lex_state = 137, .external_lex_state = 2}, + [432] = {.lex_state = 155, .external_lex_state = 2}, + [433] = {.lex_state = 137, .external_lex_state = 2}, + [434] = {.lex_state = 135, .external_lex_state = 2}, + [435] = {.lex_state = 152, .external_lex_state = 2}, + [436] = {.lex_state = 155, .external_lex_state = 2}, + [437] = {.lex_state = 152, .external_lex_state = 2}, + [438] = {.lex_state = 135, .external_lex_state = 2}, + [439] = {.lex_state = 135, .external_lex_state = 2}, + [440] = {.lex_state = 137, .external_lex_state = 2}, + [441] = {.lex_state = 137, .external_lex_state = 2}, + [442] = {.lex_state = 137, .external_lex_state = 2}, + [443] = {.lex_state = 137, .external_lex_state = 2}, + [444] = {.lex_state = 137, .external_lex_state = 2}, + [445] = {.lex_state = 137, .external_lex_state = 2}, + [446] = {.lex_state = 137, .external_lex_state = 2}, + [447] = {.lex_state = 137, .external_lex_state = 2}, + [448] = {.lex_state = 155, .external_lex_state = 2}, + [449] = {.lex_state = 137, .external_lex_state = 2}, + [450] = {.lex_state = 137, .external_lex_state = 2}, + [451] = {.lex_state = 155, .external_lex_state = 2}, + [452] = {.lex_state = 155, .external_lex_state = 2}, + [453] = {.lex_state = 155, .external_lex_state = 2}, + [454] = {.lex_state = 137, .external_lex_state = 2}, + [455] = {.lex_state = 155, .external_lex_state = 2}, + [456] = {.lex_state = 155, .external_lex_state = 2}, + [457] = {.lex_state = 155, .external_lex_state = 2}, + [458] = {.lex_state = 137, .external_lex_state = 2}, + [459] = {.lex_state = 155, .external_lex_state = 2}, + [460] = {.lex_state = 137, .external_lex_state = 2}, + [461] = {.lex_state = 117, .external_lex_state = 2}, + [462] = {.lex_state = 141, .external_lex_state = 2}, + [463] = {.lex_state = 141, .external_lex_state = 2}, + [464] = {.lex_state = 137, .external_lex_state = 2}, + [465] = {.lex_state = 155, .external_lex_state = 2}, + [466] = {.lex_state = 130, .external_lex_state = 2}, + [467] = {.lex_state = 137, .external_lex_state = 2}, + [468] = {.lex_state = 155, .external_lex_state = 2}, + [469] = {.lex_state = 137, .external_lex_state = 2}, + [470] = {.lex_state = 155, .external_lex_state = 2}, + [471] = {.lex_state = 155, .external_lex_state = 2}, + [472] = {.lex_state = 155, .external_lex_state = 2}, + [473] = {.lex_state = 155, .external_lex_state = 2}, + [474] = {.lex_state = 155, .external_lex_state = 2}, + [475] = {.lex_state = 137, .external_lex_state = 2}, + [476] = {.lex_state = 38, .external_lex_state = 2}, + [477] = {.lex_state = 258, .external_lex_state = 2}, [478] = {.lex_state = 136, .external_lex_state = 2}, - [479] = {.lex_state = 136, .external_lex_state = 2}, - [480] = {.lex_state = 136, .external_lex_state = 2}, - [481] = {.lex_state = 136, .external_lex_state = 2}, - [482] = {.lex_state = 136, .external_lex_state = 2}, - [483] = {.lex_state = 136, .external_lex_state = 2}, - [484] = {.lex_state = 136, .external_lex_state = 2}, - [485] = {.lex_state = 136, .external_lex_state = 2}, - [486] = {.lex_state = 136, .external_lex_state = 2}, - [487] = {.lex_state = 136, .external_lex_state = 2}, - [488] = {.lex_state = 136, .external_lex_state = 2}, - [489] = {.lex_state = 136, .external_lex_state = 2}, - [490] = {.lex_state = 136, .external_lex_state = 2}, - [491] = {.lex_state = 136, .external_lex_state = 2}, - [492] = {.lex_state = 136, .external_lex_state = 2}, - [493] = {.lex_state = 154, .external_lex_state = 2}, - [494] = {.lex_state = 130, .external_lex_state = 2}, - [495] = {.lex_state = 135, .external_lex_state = 2}, - [496] = {.lex_state = 257, .external_lex_state = 2}, - [497] = {.lex_state = 130, .external_lex_state = 2}, - [498] = {.lex_state = 130, .external_lex_state = 2}, - [499] = {.lex_state = 150, .external_lex_state = 2}, - [500] = {.lex_state = 150, .external_lex_state = 2}, - [501] = {.lex_state = 150, .external_lex_state = 2}, - [502] = {.lex_state = 150, .external_lex_state = 2}, - [503] = {.lex_state = 130, .external_lex_state = 2}, - [504] = {.lex_state = 130, .external_lex_state = 2}, - [505] = {.lex_state = 141, .external_lex_state = 2}, - [506] = {.lex_state = 130, .external_lex_state = 2}, - [507] = {.lex_state = 130, .external_lex_state = 2}, - [508] = {.lex_state = 130, .external_lex_state = 2}, - [509] = {.lex_state = 130, .external_lex_state = 2}, - [510] = {.lex_state = 130, .external_lex_state = 2}, - [511] = {.lex_state = 117, .external_lex_state = 2}, - [512] = {.lex_state = 117, .external_lex_state = 2}, - [513] = {.lex_state = 141, .external_lex_state = 2}, - [514] = {.lex_state = 135, .external_lex_state = 2}, - [515] = {.lex_state = 141, .external_lex_state = 2}, - [516] = {.lex_state = 135, .external_lex_state = 2}, - [517] = {.lex_state = 141, .external_lex_state = 2}, - [518] = {.lex_state = 141, .external_lex_state = 2}, - [519] = {.lex_state = 130, .external_lex_state = 2}, - [520] = {.lex_state = 130, .external_lex_state = 2}, - [521] = {.lex_state = 257, .external_lex_state = 2}, - [522] = {.lex_state = 130, .external_lex_state = 2}, - [523] = {.lex_state = 158, .external_lex_state = 2}, - [524] = {.lex_state = 141, .external_lex_state = 2}, - [525] = {.lex_state = 159, .external_lex_state = 2}, - [526] = {.lex_state = 141, .external_lex_state = 2}, - [527] = {.lex_state = 141, .external_lex_state = 2}, - [528] = {.lex_state = 141, .external_lex_state = 2}, - [529] = {.lex_state = 141, .external_lex_state = 2}, - [530] = {.lex_state = 141, .external_lex_state = 2}, - [531] = {.lex_state = 141, .external_lex_state = 2}, - [532] = {.lex_state = 150, .external_lex_state = 2}, - [533] = {.lex_state = 150, .external_lex_state = 2}, - [534] = {.lex_state = 38, .external_lex_state = 2}, - [535] = {.lex_state = 141, .external_lex_state = 2}, - [536] = {.lex_state = 141, .external_lex_state = 2}, - [537] = {.lex_state = 141, .external_lex_state = 2}, - [538] = {.lex_state = 141, .external_lex_state = 2}, - [539] = {.lex_state = 141, .external_lex_state = 2}, - [540] = {.lex_state = 738, .external_lex_state = 2}, - [541] = {.lex_state = 130, .external_lex_state = 2}, - [542] = {.lex_state = 257, .external_lex_state = 2}, - [543] = {.lex_state = 130, .external_lex_state = 2}, - [544] = {.lex_state = 135, .external_lex_state = 2}, - [545] = {.lex_state = 257, .external_lex_state = 2}, - [546] = {.lex_state = 135, .external_lex_state = 2}, - [547] = {.lex_state = 135, .external_lex_state = 2}, - [548] = {.lex_state = 257, .external_lex_state = 2}, - [549] = {.lex_state = 130, .external_lex_state = 2}, - [550] = {.lex_state = 118, .external_lex_state = 2}, - [551] = {.lex_state = 171, .external_lex_state = 2}, - [552] = {.lex_state = 118, .external_lex_state = 2}, - [553] = {.lex_state = 171, .external_lex_state = 2}, - [554] = {.lex_state = 130, .external_lex_state = 2}, - [555] = {.lex_state = 130, .external_lex_state = 2}, - [556] = {.lex_state = 118, .external_lex_state = 2}, - [557] = {.lex_state = 256, .external_lex_state = 2}, - [558] = {.lex_state = 151, .external_lex_state = 2}, - [559] = {.lex_state = 118, .external_lex_state = 2}, - [560] = {.lex_state = 118, .external_lex_state = 2}, - [561] = {.lex_state = 146, .external_lex_state = 2}, - [562] = {.lex_state = 151, .external_lex_state = 2}, - [563] = {.lex_state = 256, .external_lex_state = 2}, - [564] = {.lex_state = 151, .external_lex_state = 2}, - [565] = {.lex_state = 118, .external_lex_state = 2}, - [566] = {.lex_state = 118, .external_lex_state = 2}, - [567] = {.lex_state = 738, .external_lex_state = 2}, - [568] = {.lex_state = 118, .external_lex_state = 2}, - [569] = {.lex_state = 136, .external_lex_state = 2}, - [570] = {.lex_state = 118, .external_lex_state = 2}, - [571] = {.lex_state = 118, .external_lex_state = 2}, - [572] = {.lex_state = 136, .external_lex_state = 2}, - [573] = {.lex_state = 738, .external_lex_state = 2}, - [574] = {.lex_state = 118, .external_lex_state = 2}, - [575] = {.lex_state = 118, .external_lex_state = 2}, - [576] = {.lex_state = 118, .external_lex_state = 2}, - [577] = {.lex_state = 118, .external_lex_state = 2}, - [578] = {.lex_state = 118, .external_lex_state = 2}, - [579] = {.lex_state = 256, .external_lex_state = 2}, - [580] = {.lex_state = 256, .external_lex_state = 2}, - [581] = {.lex_state = 256, .external_lex_state = 2}, - [582] = {.lex_state = 156, .external_lex_state = 2}, - [583] = {.lex_state = 118, .external_lex_state = 2}, - [584] = {.lex_state = 156, .external_lex_state = 2}, - [585] = {.lex_state = 136, .external_lex_state = 2}, - [586] = {.lex_state = 147, .external_lex_state = 2}, - [587] = {.lex_state = 171, .external_lex_state = 2}, - [588] = {.lex_state = 171, .external_lex_state = 2}, - [589] = {.lex_state = 171, .external_lex_state = 2}, - [590] = {.lex_state = 171, .external_lex_state = 2}, - [591] = {.lex_state = 170, .external_lex_state = 2}, - [592] = {.lex_state = 118, .external_lex_state = 2}, - [593] = {.lex_state = 171, .external_lex_state = 2}, - [594] = {.lex_state = 144, .external_lex_state = 2}, - [595] = {.lex_state = 171, .external_lex_state = 2}, - [596] = {.lex_state = 144, .external_lex_state = 2}, - [597] = {.lex_state = 171, .external_lex_state = 2}, - [598] = {.lex_state = 171, .external_lex_state = 2}, - [599] = {.lex_state = 171, .external_lex_state = 2}, - [600] = {.lex_state = 171, .external_lex_state = 2}, - [601] = {.lex_state = 171, .external_lex_state = 2}, - [602] = {.lex_state = 170, .external_lex_state = 2}, - [603] = {.lex_state = 171, .external_lex_state = 2}, - [604] = {.lex_state = 171, .external_lex_state = 2}, - [605] = {.lex_state = 171, .external_lex_state = 2}, - [606] = {.lex_state = 171, .external_lex_state = 2}, - [607] = {.lex_state = 171, .external_lex_state = 2}, - [608] = {.lex_state = 171, .external_lex_state = 2}, - [609] = {.lex_state = 171, .external_lex_state = 2}, - [610] = {.lex_state = 171, .external_lex_state = 2}, - [611] = {.lex_state = 157, .external_lex_state = 2}, - [612] = {.lex_state = 171, .external_lex_state = 2}, - [613] = {.lex_state = 118, .external_lex_state = 2}, - [614] = {.lex_state = 171, .external_lex_state = 2}, - [615] = {.lex_state = 171, .external_lex_state = 2}, - [616] = {.lex_state = 171, .external_lex_state = 2}, - [617] = {.lex_state = 171, .external_lex_state = 2}, - [618] = {.lex_state = 171, .external_lex_state = 2}, - [619] = {.lex_state = 171, .external_lex_state = 2}, - [620] = {.lex_state = 171, .external_lex_state = 2}, - [621] = {.lex_state = 171, .external_lex_state = 2}, - [622] = {.lex_state = 171, .external_lex_state = 2}, - [623] = {.lex_state = 157, .external_lex_state = 2}, - [624] = {.lex_state = 171, .external_lex_state = 2}, - [625] = {.lex_state = 171, .external_lex_state = 2}, - [626] = {.lex_state = 171, .external_lex_state = 2}, - [627] = {.lex_state = 171, .external_lex_state = 2}, - [628] = {.lex_state = 171, .external_lex_state = 2}, - [629] = {.lex_state = 171, .external_lex_state = 2}, - [630] = {.lex_state = 171, .external_lex_state = 2}, - [631] = {.lex_state = 171, .external_lex_state = 2}, - [632] = {.lex_state = 171, .external_lex_state = 2}, - [633] = {.lex_state = 171, .external_lex_state = 2}, - [634] = {.lex_state = 171, .external_lex_state = 2}, - [635] = {.lex_state = 171, .external_lex_state = 2}, - [636] = {.lex_state = 171, .external_lex_state = 2}, - [637] = {.lex_state = 171, .external_lex_state = 2}, - [638] = {.lex_state = 171, .external_lex_state = 2}, - [639] = {.lex_state = 157, .external_lex_state = 2}, - [640] = {.lex_state = 171, .external_lex_state = 2}, - [641] = {.lex_state = 170, .external_lex_state = 2}, - [642] = {.lex_state = 171, .external_lex_state = 2}, - [643] = {.lex_state = 171, .external_lex_state = 2}, - [644] = {.lex_state = 171, .external_lex_state = 2}, - [645] = {.lex_state = 171, .external_lex_state = 2}, - [646] = {.lex_state = 171, .external_lex_state = 2}, - [647] = {.lex_state = 171, .external_lex_state = 2}, - [648] = {.lex_state = 171, .external_lex_state = 2}, - [649] = {.lex_state = 171, .external_lex_state = 2}, - [650] = {.lex_state = 171, .external_lex_state = 2}, - [651] = {.lex_state = 171, .external_lex_state = 2}, - [652] = {.lex_state = 171, .external_lex_state = 2}, - [653] = {.lex_state = 171, .external_lex_state = 2}, - [654] = {.lex_state = 171, .external_lex_state = 2}, - [655] = {.lex_state = 171, .external_lex_state = 2}, - [656] = {.lex_state = 171, .external_lex_state = 2}, - [657] = {.lex_state = 157, .external_lex_state = 2}, - [658] = {.lex_state = 171, .external_lex_state = 2}, - [659] = {.lex_state = 171, .external_lex_state = 2}, - [660] = {.lex_state = 171, .external_lex_state = 2}, - [661] = {.lex_state = 171, .external_lex_state = 2}, - [662] = {.lex_state = 171, .external_lex_state = 2}, - [663] = {.lex_state = 171, .external_lex_state = 2}, - [664] = {.lex_state = 171, .external_lex_state = 2}, - [665] = {.lex_state = 171, .external_lex_state = 2}, - [666] = {.lex_state = 171, .external_lex_state = 2}, - [667] = {.lex_state = 171, .external_lex_state = 2}, - [668] = {.lex_state = 171, .external_lex_state = 2}, - [669] = {.lex_state = 171, .external_lex_state = 2}, - [670] = {.lex_state = 171, .external_lex_state = 2}, - [671] = {.lex_state = 170, .external_lex_state = 2}, - [672] = {.lex_state = 171, .external_lex_state = 2}, - [673] = {.lex_state = 171, .external_lex_state = 2}, - [674] = {.lex_state = 157, .external_lex_state = 2}, - [675] = {.lex_state = 170, .external_lex_state = 2}, - [676] = {.lex_state = 170, .external_lex_state = 2}, - [677] = {.lex_state = 170, .external_lex_state = 2}, - [678] = {.lex_state = 170, .external_lex_state = 2}, - [679] = {.lex_state = 170, .external_lex_state = 2}, - [680] = {.lex_state = 170, .external_lex_state = 2}, - [681] = {.lex_state = 170, .external_lex_state = 2}, - [682] = {.lex_state = 170, .external_lex_state = 2}, - [683] = {.lex_state = 170, .external_lex_state = 2}, - [684] = {.lex_state = 170, .external_lex_state = 2}, - [685] = {.lex_state = 170, .external_lex_state = 2}, - [686] = {.lex_state = 157, .external_lex_state = 2}, - [687] = {.lex_state = 170, .external_lex_state = 2}, - [688] = {.lex_state = 170, .external_lex_state = 2}, - [689] = {.lex_state = 170, .external_lex_state = 2}, - [690] = {.lex_state = 170, .external_lex_state = 2}, - [691] = {.lex_state = 170, .external_lex_state = 2}, - [692] = {.lex_state = 170, .external_lex_state = 2}, - [693] = {.lex_state = 170, .external_lex_state = 2}, - [694] = {.lex_state = 170, .external_lex_state = 2}, - [695] = {.lex_state = 170, .external_lex_state = 2}, - [696] = {.lex_state = 170, .external_lex_state = 2}, - [697] = {.lex_state = 170, .external_lex_state = 2}, - [698] = {.lex_state = 170, .external_lex_state = 2}, - [699] = {.lex_state = 170, .external_lex_state = 2}, - [700] = {.lex_state = 170, .external_lex_state = 2}, - [701] = {.lex_state = 170, .external_lex_state = 2}, - [702] = {.lex_state = 170, .external_lex_state = 2}, - [703] = {.lex_state = 170, .external_lex_state = 2}, - [704] = {.lex_state = 170, .external_lex_state = 2}, - [705] = {.lex_state = 170, .external_lex_state = 2}, - [706] = {.lex_state = 170, .external_lex_state = 2}, - [707] = {.lex_state = 170, .external_lex_state = 2}, - [708] = {.lex_state = 170, .external_lex_state = 2}, - [709] = {.lex_state = 170, .external_lex_state = 2}, - [710] = {.lex_state = 170, .external_lex_state = 2}, - [711] = {.lex_state = 170, .external_lex_state = 2}, - [712] = {.lex_state = 170, .external_lex_state = 2}, - [713] = {.lex_state = 170, .external_lex_state = 2}, - [714] = {.lex_state = 170, .external_lex_state = 2}, - [715] = {.lex_state = 170, .external_lex_state = 2}, - [716] = {.lex_state = 170, .external_lex_state = 2}, - [717] = {.lex_state = 170, .external_lex_state = 2}, - [718] = {.lex_state = 170, .external_lex_state = 2}, - [719] = {.lex_state = 170, .external_lex_state = 2}, - [720] = {.lex_state = 170, .external_lex_state = 2}, - [721] = {.lex_state = 170, .external_lex_state = 2}, - [722] = {.lex_state = 170, .external_lex_state = 2}, - [723] = {.lex_state = 170, .external_lex_state = 2}, - [724] = {.lex_state = 170, .external_lex_state = 2}, - [725] = {.lex_state = 170, .external_lex_state = 2}, - [726] = {.lex_state = 170, .external_lex_state = 2}, - [727] = {.lex_state = 170, .external_lex_state = 2}, - [728] = {.lex_state = 170, .external_lex_state = 2}, - [729] = {.lex_state = 170, .external_lex_state = 2}, - [730] = {.lex_state = 170, .external_lex_state = 2}, - [731] = {.lex_state = 170, .external_lex_state = 2}, - [732] = {.lex_state = 170, .external_lex_state = 2}, - [733] = {.lex_state = 170, .external_lex_state = 2}, - [734] = {.lex_state = 170, .external_lex_state = 2}, - [735] = {.lex_state = 170, .external_lex_state = 2}, - [736] = {.lex_state = 170, .external_lex_state = 2}, - [737] = {.lex_state = 170, .external_lex_state = 2}, - [738] = {.lex_state = 170, .external_lex_state = 2}, - [739] = {.lex_state = 37, .external_lex_state = 2}, - [740] = {.lex_state = 170, .external_lex_state = 2}, - [741] = {.lex_state = 170, .external_lex_state = 2}, - [742] = {.lex_state = 170, .external_lex_state = 2}, - [743] = {.lex_state = 170, .external_lex_state = 2}, - [744] = {.lex_state = 157, .external_lex_state = 2}, - [745] = {.lex_state = 170, .external_lex_state = 2}, - [746] = {.lex_state = 170, .external_lex_state = 2}, - [747] = {.lex_state = 170, .external_lex_state = 2}, - [748] = {.lex_state = 170, .external_lex_state = 2}, - [749] = {.lex_state = 170, .external_lex_state = 2}, - [750] = {.lex_state = 170, .external_lex_state = 2}, - [751] = {.lex_state = 170, .external_lex_state = 2}, - [752] = {.lex_state = 1808}, - [753] = {.lex_state = 37, .external_lex_state = 2}, - [754] = {.lex_state = 37, .external_lex_state = 2}, - [755] = {.lex_state = 1813}, - [756] = {.lex_state = 1809}, - [757] = {.lex_state = 1800}, - [758] = {.lex_state = 1952}, - [759] = {.lex_state = 1814}, - [760] = {.lex_state = 1814}, - [761] = {.lex_state = 1816}, - [762] = {.lex_state = 1954}, - [763] = {.lex_state = 1798}, - [764] = {.lex_state = 1815}, - [765] = {.lex_state = 1952}, - [766] = {.lex_state = 1956}, - [767] = {.lex_state = 1815}, - [768] = {.lex_state = 1815}, - [769] = {.lex_state = 1818}, - [770] = {.lex_state = 1818}, - [771] = {.lex_state = 1802}, - [772] = {.lex_state = 1815}, - [773] = {.lex_state = 1802}, - [774] = {.lex_state = 1956}, - [775] = {.lex_state = 1954}, - [776] = {.lex_state = 1815}, - [777] = {.lex_state = 1958}, - [778] = {.lex_state = 1958}, - [779] = {.lex_state = 1804}, - [780] = {.lex_state = 1820}, - [781] = {.lex_state = 1956}, - [782] = {.lex_state = 1958}, - [783] = {.lex_state = 1820}, - [784] = {.lex_state = 1804}, - [785] = {.lex_state = 1820}, - [786] = {.lex_state = 1820}, - [787] = {.lex_state = 33, .external_lex_state = 2}, - [788] = {.lex_state = 1804}, - [789] = {.lex_state = 1822}, - [790] = {.lex_state = 42, .external_lex_state = 2}, - [791] = {.lex_state = 1804}, - [792] = {.lex_state = 1820}, - [793] = {.lex_state = 33, .external_lex_state = 2}, - [794] = {.lex_state = 1958}, - [795] = {.lex_state = 1804}, - [796] = {.lex_state = 42, .external_lex_state = 2}, - [797] = {.lex_state = 1958}, - [798] = {.lex_state = 33, .external_lex_state = 2}, - [799] = {.lex_state = 1811}, - [800] = {.lex_state = 1956}, - [801] = {.lex_state = 743, .external_lex_state = 2}, - [802] = {.lex_state = 33, .external_lex_state = 2}, - [803] = {.lex_state = 1958}, - [804] = {.lex_state = 743, .external_lex_state = 2}, - [805] = {.lex_state = 1958}, - [806] = {.lex_state = 33, .external_lex_state = 2}, - [807] = {.lex_state = 1824}, - [808] = {.lex_state = 743, .external_lex_state = 2}, - [809] = {.lex_state = 1824}, - [810] = {.lex_state = 743, .external_lex_state = 2}, - [811] = {.lex_state = 743, .external_lex_state = 2}, - [812] = {.lex_state = 743, .external_lex_state = 2}, - [813] = {.lex_state = 1958}, - [814] = {.lex_state = 1958}, - [815] = {.lex_state = 1958}, - [816] = {.lex_state = 743, .external_lex_state = 2}, - [817] = {.lex_state = 743, .external_lex_state = 2}, - [818] = {.lex_state = 743, .external_lex_state = 2}, - [819] = {.lex_state = 743, .external_lex_state = 2}, - [820] = {.lex_state = 743, .external_lex_state = 2}, - [821] = {.lex_state = 33, .external_lex_state = 2}, - [822] = {.lex_state = 743, .external_lex_state = 2}, - [823] = {.lex_state = 33, .external_lex_state = 2}, - [824] = {.lex_state = 743, .external_lex_state = 2}, - [825] = {.lex_state = 1826}, - [826] = {.lex_state = 1826}, - [827] = {.lex_state = 33, .external_lex_state = 2}, - [828] = {.lex_state = 33, .external_lex_state = 2}, - [829] = {.lex_state = 1826}, - [830] = {.lex_state = 1826}, - [831] = {.lex_state = 1826}, - [832] = {.lex_state = 743, .external_lex_state = 2}, - [833] = {.lex_state = 743, .external_lex_state = 2}, - [834] = {.lex_state = 39, .external_lex_state = 2}, - [835] = {.lex_state = 1960}, - [836] = {.lex_state = 1828}, - [837] = {.lex_state = 1828}, - [838] = {.lex_state = 1806}, - [839] = {.lex_state = 1828}, - [840] = {.lex_state = 1828}, - [841] = {.lex_state = 1806}, - [842] = {.lex_state = 1960}, - [843] = {.lex_state = 42, .external_lex_state = 2}, - [844] = {.lex_state = 42, .external_lex_state = 2}, - [845] = {.lex_state = 42, .external_lex_state = 2}, - [846] = {.lex_state = 42, .external_lex_state = 2}, - [847] = {.lex_state = 42, .external_lex_state = 2}, - [848] = {.lex_state = 42, .external_lex_state = 2}, - [849] = {.lex_state = 42, .external_lex_state = 2}, - [850] = {.lex_state = 42, .external_lex_state = 2}, - [851] = {.lex_state = 42, .external_lex_state = 2}, - [852] = {.lex_state = 1960}, - [853] = {.lex_state = 42, .external_lex_state = 2}, - [854] = {.lex_state = 1960}, - [855] = {.lex_state = 42, .external_lex_state = 2}, - [856] = {.lex_state = 42, .external_lex_state = 2}, - [857] = {.lex_state = 42, .external_lex_state = 2}, - [858] = {.lex_state = 42, .external_lex_state = 2}, - [859] = {.lex_state = 42, .external_lex_state = 2}, - [860] = {.lex_state = 42, .external_lex_state = 2}, - [861] = {.lex_state = 42, .external_lex_state = 2}, - [862] = {.lex_state = 42, .external_lex_state = 2}, - [863] = {.lex_state = 42, .external_lex_state = 2}, - [864] = {.lex_state = 42, .external_lex_state = 2}, - [865] = {.lex_state = 42, .external_lex_state = 2}, - [866] = {.lex_state = 42, .external_lex_state = 2}, - [867] = {.lex_state = 42, .external_lex_state = 2}, - [868] = {.lex_state = 42, .external_lex_state = 2}, - [869] = {.lex_state = 42, .external_lex_state = 2}, - [870] = {.lex_state = 1830}, - [871] = {.lex_state = 1830}, + [479] = {.lex_state = 258, .external_lex_state = 2}, + [480] = {.lex_state = 159, .external_lex_state = 2}, + [481] = {.lex_state = 151, .external_lex_state = 2}, + [482] = {.lex_state = 151, .external_lex_state = 2}, + [483] = {.lex_state = 151, .external_lex_state = 2}, + [484] = {.lex_state = 151, .external_lex_state = 2}, + [485] = {.lex_state = 142, .external_lex_state = 2}, + [486] = {.lex_state = 142, .external_lex_state = 2}, + [487] = {.lex_state = 142, .external_lex_state = 2}, + [488] = {.lex_state = 142, .external_lex_state = 2}, + [489] = {.lex_state = 160, .external_lex_state = 2}, + [490] = {.lex_state = 258, .external_lex_state = 2}, + [491] = {.lex_state = 131, .external_lex_state = 2}, + [492] = {.lex_state = 131, .external_lex_state = 2}, + [493] = {.lex_state = 142, .external_lex_state = 2}, + [494] = {.lex_state = 142, .external_lex_state = 2}, + [495] = {.lex_state = 131, .external_lex_state = 2}, + [496] = {.lex_state = 142, .external_lex_state = 2}, + [497] = {.lex_state = 131, .external_lex_state = 2}, + [498] = {.lex_state = 131, .external_lex_state = 2}, + [499] = {.lex_state = 131, .external_lex_state = 2}, + [500] = {.lex_state = 258, .external_lex_state = 2}, + [501] = {.lex_state = 118, .external_lex_state = 2}, + [502] = {.lex_state = 142, .external_lex_state = 2}, + [503] = {.lex_state = 142, .external_lex_state = 2}, + [504] = {.lex_state = 131, .external_lex_state = 2}, + [505] = {.lex_state = 142, .external_lex_state = 2}, + [506] = {.lex_state = 142, .external_lex_state = 2}, + [507] = {.lex_state = 142, .external_lex_state = 2}, + [508] = {.lex_state = 142, .external_lex_state = 2}, + [509] = {.lex_state = 131, .external_lex_state = 2}, + [510] = {.lex_state = 131, .external_lex_state = 2}, + [511] = {.lex_state = 131, .external_lex_state = 2}, + [512] = {.lex_state = 142, .external_lex_state = 2}, + [513] = {.lex_state = 131, .external_lex_state = 2}, + [514] = {.lex_state = 131, .external_lex_state = 2}, + [515] = {.lex_state = 136, .external_lex_state = 2}, + [516] = {.lex_state = 131, .external_lex_state = 2}, + [517] = {.lex_state = 151, .external_lex_state = 2}, + [518] = {.lex_state = 131, .external_lex_state = 2}, + [519] = {.lex_state = 151, .external_lex_state = 2}, + [520] = {.lex_state = 131, .external_lex_state = 2}, + [521] = {.lex_state = 142, .external_lex_state = 2}, + [522] = {.lex_state = 142, .external_lex_state = 2}, + [523] = {.lex_state = 136, .external_lex_state = 2}, + [524] = {.lex_state = 142, .external_lex_state = 2}, + [525] = {.lex_state = 136, .external_lex_state = 2}, + [526] = {.lex_state = 739, .external_lex_state = 2}, + [527] = {.lex_state = 136, .external_lex_state = 2}, + [528] = {.lex_state = 131, .external_lex_state = 2}, + [529] = {.lex_state = 258, .external_lex_state = 2}, + [530] = {.lex_state = 136, .external_lex_state = 2}, + [531] = {.lex_state = 118, .external_lex_state = 2}, + [532] = {.lex_state = 119, .external_lex_state = 2}, + [533] = {.lex_state = 152, .external_lex_state = 2}, + [534] = {.lex_state = 119, .external_lex_state = 2}, + [535] = {.lex_state = 147, .external_lex_state = 2}, + [536] = {.lex_state = 119, .external_lex_state = 2}, + [537] = {.lex_state = 119, .external_lex_state = 2}, + [538] = {.lex_state = 257, .external_lex_state = 2}, + [539] = {.lex_state = 739, .external_lex_state = 2}, + [540] = {.lex_state = 119, .external_lex_state = 2}, + [541] = {.lex_state = 137, .external_lex_state = 2}, + [542] = {.lex_state = 152, .external_lex_state = 2}, + [543] = {.lex_state = 178, .external_lex_state = 2}, + [544] = {.lex_state = 148, .external_lex_state = 2}, + [545] = {.lex_state = 119, .external_lex_state = 2}, + [546] = {.lex_state = 178, .external_lex_state = 2}, + [547] = {.lex_state = 257, .external_lex_state = 2}, + [548] = {.lex_state = 119, .external_lex_state = 2}, + [549] = {.lex_state = 739, .external_lex_state = 2}, + [550] = {.lex_state = 119, .external_lex_state = 2}, + [551] = {.lex_state = 157, .external_lex_state = 2}, + [552] = {.lex_state = 152, .external_lex_state = 2}, + [553] = {.lex_state = 137, .external_lex_state = 2}, + [554] = {.lex_state = 119, .external_lex_state = 2}, + [555] = {.lex_state = 257, .external_lex_state = 2}, + [556] = {.lex_state = 119, .external_lex_state = 2}, + [557] = {.lex_state = 119, .external_lex_state = 2}, + [558] = {.lex_state = 131, .external_lex_state = 2}, + [559] = {.lex_state = 119, .external_lex_state = 2}, + [560] = {.lex_state = 119, .external_lex_state = 2}, + [561] = {.lex_state = 119, .external_lex_state = 2}, + [562] = {.lex_state = 257, .external_lex_state = 2}, + [563] = {.lex_state = 257, .external_lex_state = 2}, + [564] = {.lex_state = 119, .external_lex_state = 2}, + [565] = {.lex_state = 137, .external_lex_state = 2}, + [566] = {.lex_state = 131, .external_lex_state = 2}, + [567] = {.lex_state = 178, .external_lex_state = 2}, + [568] = {.lex_state = 119, .external_lex_state = 2}, + [569] = {.lex_state = 157, .external_lex_state = 2}, + [570] = {.lex_state = 178, .external_lex_state = 2}, + [571] = {.lex_state = 178, .external_lex_state = 2}, + [572] = {.lex_state = 178, .external_lex_state = 2}, + [573] = {.lex_state = 178, .external_lex_state = 2}, + [574] = {.lex_state = 178, .external_lex_state = 2}, + [575] = {.lex_state = 178, .external_lex_state = 2}, + [576] = {.lex_state = 145, .external_lex_state = 2}, + [577] = {.lex_state = 145, .external_lex_state = 2}, + [578] = {.lex_state = 178, .external_lex_state = 2}, + [579] = {.lex_state = 178, .external_lex_state = 2}, + [580] = {.lex_state = 178, .external_lex_state = 2}, + [581] = {.lex_state = 178, .external_lex_state = 2}, + [582] = {.lex_state = 178, .external_lex_state = 2}, + [583] = {.lex_state = 178, .external_lex_state = 2}, + [584] = {.lex_state = 178, .external_lex_state = 2}, + [585] = {.lex_state = 178, .external_lex_state = 2}, + [586] = {.lex_state = 178, .external_lex_state = 2}, + [587] = {.lex_state = 178, .external_lex_state = 2}, + [588] = {.lex_state = 178, .external_lex_state = 2}, + [589] = {.lex_state = 178, .external_lex_state = 2}, + [590] = {.lex_state = 178, .external_lex_state = 2}, + [591] = {.lex_state = 177, .external_lex_state = 2}, + [592] = {.lex_state = 178, .external_lex_state = 2}, + [593] = {.lex_state = 178, .external_lex_state = 2}, + [594] = {.lex_state = 178, .external_lex_state = 2}, + [595] = {.lex_state = 178, .external_lex_state = 2}, + [596] = {.lex_state = 178, .external_lex_state = 2}, + [597] = {.lex_state = 178, .external_lex_state = 2}, + [598] = {.lex_state = 178, .external_lex_state = 2}, + [599] = {.lex_state = 178, .external_lex_state = 2}, + [600] = {.lex_state = 178, .external_lex_state = 2}, + [601] = {.lex_state = 178, .external_lex_state = 2}, + [602] = {.lex_state = 178, .external_lex_state = 2}, + [603] = {.lex_state = 178, .external_lex_state = 2}, + [604] = {.lex_state = 178, .external_lex_state = 2}, + [605] = {.lex_state = 178, .external_lex_state = 2}, + [606] = {.lex_state = 178, .external_lex_state = 2}, + [607] = {.lex_state = 178, .external_lex_state = 2}, + [608] = {.lex_state = 178, .external_lex_state = 2}, + [609] = {.lex_state = 158, .external_lex_state = 2}, + [610] = {.lex_state = 158, .external_lex_state = 2}, + [611] = {.lex_state = 158, .external_lex_state = 2}, + [612] = {.lex_state = 178, .external_lex_state = 2}, + [613] = {.lex_state = 178, .external_lex_state = 2}, + [614] = {.lex_state = 177, .external_lex_state = 2}, + [615] = {.lex_state = 178, .external_lex_state = 2}, + [616] = {.lex_state = 178, .external_lex_state = 2}, + [617] = {.lex_state = 178, .external_lex_state = 2}, + [618] = {.lex_state = 178, .external_lex_state = 2}, + [619] = {.lex_state = 178, .external_lex_state = 2}, + [620] = {.lex_state = 178, .external_lex_state = 2}, + [621] = {.lex_state = 178, .external_lex_state = 2}, + [622] = {.lex_state = 178, .external_lex_state = 2}, + [623] = {.lex_state = 178, .external_lex_state = 2}, + [624] = {.lex_state = 158, .external_lex_state = 2}, + [625] = {.lex_state = 177, .external_lex_state = 2}, + [626] = {.lex_state = 178, .external_lex_state = 2}, + [627] = {.lex_state = 178, .external_lex_state = 2}, + [628] = {.lex_state = 178, .external_lex_state = 2}, + [629] = {.lex_state = 178, .external_lex_state = 2}, + [630] = {.lex_state = 178, .external_lex_state = 2}, + [631] = {.lex_state = 178, .external_lex_state = 2}, + [632] = {.lex_state = 178, .external_lex_state = 2}, + [633] = {.lex_state = 178, .external_lex_state = 2}, + [634] = {.lex_state = 158, .external_lex_state = 2}, + [635] = {.lex_state = 178, .external_lex_state = 2}, + [636] = {.lex_state = 178, .external_lex_state = 2}, + [637] = {.lex_state = 178, .external_lex_state = 2}, + [638] = {.lex_state = 178, .external_lex_state = 2}, + [639] = {.lex_state = 178, .external_lex_state = 2}, + [640] = {.lex_state = 177, .external_lex_state = 2}, + [641] = {.lex_state = 119, .external_lex_state = 2}, + [642] = {.lex_state = 178, .external_lex_state = 2}, + [643] = {.lex_state = 178, .external_lex_state = 2}, + [644] = {.lex_state = 178, .external_lex_state = 2}, + [645] = {.lex_state = 178, .external_lex_state = 2}, + [646] = {.lex_state = 178, .external_lex_state = 2}, + [647] = {.lex_state = 119, .external_lex_state = 2}, + [648] = {.lex_state = 177, .external_lex_state = 2}, + [649] = {.lex_state = 177, .external_lex_state = 2}, + [650] = {.lex_state = 177, .external_lex_state = 2}, + [651] = {.lex_state = 177, .external_lex_state = 2}, + [652] = {.lex_state = 177, .external_lex_state = 2}, + [653] = {.lex_state = 177, .external_lex_state = 2}, + [654] = {.lex_state = 177, .external_lex_state = 2}, + [655] = {.lex_state = 177, .external_lex_state = 2}, + [656] = {.lex_state = 177, .external_lex_state = 2}, + [657] = {.lex_state = 177, .external_lex_state = 2}, + [658] = {.lex_state = 177, .external_lex_state = 2}, + [659] = {.lex_state = 177, .external_lex_state = 2}, + [660] = {.lex_state = 177, .external_lex_state = 2}, + [661] = {.lex_state = 177, .external_lex_state = 2}, + [662] = {.lex_state = 177, .external_lex_state = 2}, + [663] = {.lex_state = 177, .external_lex_state = 2}, + [664] = {.lex_state = 177, .external_lex_state = 2}, + [665] = {.lex_state = 177, .external_lex_state = 2}, + [666] = {.lex_state = 177, .external_lex_state = 2}, + [667] = {.lex_state = 177, .external_lex_state = 2}, + [668] = {.lex_state = 177, .external_lex_state = 2}, + [669] = {.lex_state = 177, .external_lex_state = 2}, + [670] = {.lex_state = 177, .external_lex_state = 2}, + [671] = {.lex_state = 177, .external_lex_state = 2}, + [672] = {.lex_state = 177, .external_lex_state = 2}, + [673] = {.lex_state = 177, .external_lex_state = 2}, + [674] = {.lex_state = 177, .external_lex_state = 2}, + [675] = {.lex_state = 177, .external_lex_state = 2}, + [676] = {.lex_state = 177, .external_lex_state = 2}, + [677] = {.lex_state = 158, .external_lex_state = 2}, + [678] = {.lex_state = 177, .external_lex_state = 2}, + [679] = {.lex_state = 177, .external_lex_state = 2}, + [680] = {.lex_state = 177, .external_lex_state = 2}, + [681] = {.lex_state = 177, .external_lex_state = 2}, + [682] = {.lex_state = 177, .external_lex_state = 2}, + [683] = {.lex_state = 177, .external_lex_state = 2}, + [684] = {.lex_state = 177, .external_lex_state = 2}, + [685] = {.lex_state = 177, .external_lex_state = 2}, + [686] = {.lex_state = 177, .external_lex_state = 2}, + [687] = {.lex_state = 177, .external_lex_state = 2}, + [688] = {.lex_state = 177, .external_lex_state = 2}, + [689] = {.lex_state = 177, .external_lex_state = 2}, + [690] = {.lex_state = 177, .external_lex_state = 2}, + [691] = {.lex_state = 177, .external_lex_state = 2}, + [692] = {.lex_state = 177, .external_lex_state = 2}, + [693] = {.lex_state = 177, .external_lex_state = 2}, + [694] = {.lex_state = 177, .external_lex_state = 2}, + [695] = {.lex_state = 177, .external_lex_state = 2}, + [696] = {.lex_state = 177, .external_lex_state = 2}, + [697] = {.lex_state = 177, .external_lex_state = 2}, + [698] = {.lex_state = 158, .external_lex_state = 2}, + [699] = {.lex_state = 177, .external_lex_state = 2}, + [700] = {.lex_state = 177, .external_lex_state = 2}, + [701] = {.lex_state = 177, .external_lex_state = 2}, + [702] = {.lex_state = 177, .external_lex_state = 2}, + [703] = {.lex_state = 177, .external_lex_state = 2}, + [704] = {.lex_state = 177, .external_lex_state = 2}, + [705] = {.lex_state = 177, .external_lex_state = 2}, + [706] = {.lex_state = 177, .external_lex_state = 2}, + [707] = {.lex_state = 177, .external_lex_state = 2}, + [708] = {.lex_state = 177, .external_lex_state = 2}, + [709] = {.lex_state = 177, .external_lex_state = 2}, + [710] = {.lex_state = 177, .external_lex_state = 2}, + [711] = {.lex_state = 177, .external_lex_state = 2}, + [712] = {.lex_state = 177, .external_lex_state = 2}, + [713] = {.lex_state = 177, .external_lex_state = 2}, + [714] = {.lex_state = 37, .external_lex_state = 2}, + [715] = {.lex_state = 177, .external_lex_state = 2}, + [716] = {.lex_state = 37, .external_lex_state = 2}, + [717] = {.lex_state = 37, .external_lex_state = 2}, + [718] = {.lex_state = 1809}, + [719] = {.lex_state = 1814}, + [720] = {.lex_state = 1815}, + [721] = {.lex_state = 1801}, + [722] = {.lex_state = 1810}, + [723] = {.lex_state = 1799}, + [724] = {.lex_state = 1953}, + [725] = {.lex_state = 1817}, + [726] = {.lex_state = 1815}, + [727] = {.lex_state = 1955}, + [728] = {.lex_state = 1816}, + [729] = {.lex_state = 1816}, + [730] = {.lex_state = 1955}, + [731] = {.lex_state = 1957}, + [732] = {.lex_state = 42, .external_lex_state = 2}, + [733] = {.lex_state = 1953}, + [734] = {.lex_state = 1816}, + [735] = {.lex_state = 1803}, + [736] = {.lex_state = 1816}, + [737] = {.lex_state = 1957}, + [738] = {.lex_state = 1816}, + [739] = {.lex_state = 1819}, + [740] = {.lex_state = 1803}, + [741] = {.lex_state = 42, .external_lex_state = 2}, + [742] = {.lex_state = 1819}, + [743] = {.lex_state = 1812}, + [744] = {.lex_state = 1805}, + [745] = {.lex_state = 1959}, + [746] = {.lex_state = 1957}, + [747] = {.lex_state = 1805}, + [748] = {.lex_state = 1805}, + [749] = {.lex_state = 1959}, + [750] = {.lex_state = 33, .external_lex_state = 2}, + [751] = {.lex_state = 1823}, + [752] = {.lex_state = 33, .external_lex_state = 2}, + [753] = {.lex_state = 1805}, + [754] = {.lex_state = 1805}, + [755] = {.lex_state = 1959}, + [756] = {.lex_state = 33, .external_lex_state = 2}, + [757] = {.lex_state = 1959}, + [758] = {.lex_state = 1959}, + [759] = {.lex_state = 1821}, + [760] = {.lex_state = 1821}, + [761] = {.lex_state = 1821}, + [762] = {.lex_state = 1957}, + [763] = {.lex_state = 1821}, + [764] = {.lex_state = 1821}, + [765] = {.lex_state = 744, .external_lex_state = 2}, + [766] = {.lex_state = 1959}, + [767] = {.lex_state = 33, .external_lex_state = 2}, + [768] = {.lex_state = 744, .external_lex_state = 2}, + [769] = {.lex_state = 1959}, + [770] = {.lex_state = 1825}, + [771] = {.lex_state = 1959}, + [772] = {.lex_state = 744, .external_lex_state = 2}, + [773] = {.lex_state = 744, .external_lex_state = 2}, + [774] = {.lex_state = 744, .external_lex_state = 2}, + [775] = {.lex_state = 744, .external_lex_state = 2}, + [776] = {.lex_state = 1959}, + [777] = {.lex_state = 744, .external_lex_state = 2}, + [778] = {.lex_state = 744, .external_lex_state = 2}, + [779] = {.lex_state = 1825}, + [780] = {.lex_state = 744, .external_lex_state = 2}, + [781] = {.lex_state = 744, .external_lex_state = 2}, + [782] = {.lex_state = 33, .external_lex_state = 2}, + [783] = {.lex_state = 1959}, + [784] = {.lex_state = 744, .external_lex_state = 2}, + [785] = {.lex_state = 1827}, + [786] = {.lex_state = 33, .external_lex_state = 2}, + [787] = {.lex_state = 744, .external_lex_state = 2}, + [788] = {.lex_state = 1827}, + [789] = {.lex_state = 744, .external_lex_state = 2}, + [790] = {.lex_state = 1827}, + [791] = {.lex_state = 33, .external_lex_state = 2}, + [792] = {.lex_state = 33, .external_lex_state = 2}, + [793] = {.lex_state = 744, .external_lex_state = 2}, + [794] = {.lex_state = 744, .external_lex_state = 2}, + [795] = {.lex_state = 33, .external_lex_state = 2}, + [796] = {.lex_state = 1827}, + [797] = {.lex_state = 1827}, + [798] = {.lex_state = 39, .external_lex_state = 2}, + [799] = {.lex_state = 42, .external_lex_state = 2}, + [800] = {.lex_state = 42, .external_lex_state = 2}, + [801] = {.lex_state = 42, .external_lex_state = 2}, + [802] = {.lex_state = 42, .external_lex_state = 2}, + [803] = {.lex_state = 42, .external_lex_state = 2}, + [804] = {.lex_state = 42, .external_lex_state = 2}, + [805] = {.lex_state = 1807}, + [806] = {.lex_state = 1807}, + [807] = {.lex_state = 42, .external_lex_state = 2}, + [808] = {.lex_state = 42, .external_lex_state = 2}, + [809] = {.lex_state = 42, .external_lex_state = 2}, + [810] = {.lex_state = 42, .external_lex_state = 2}, + [811] = {.lex_state = 1829}, + [812] = {.lex_state = 42, .external_lex_state = 2}, + [813] = {.lex_state = 42, .external_lex_state = 2}, + [814] = {.lex_state = 42, .external_lex_state = 2}, + [815] = {.lex_state = 1961}, + [816] = {.lex_state = 1829}, + [817] = {.lex_state = 1829}, + [818] = {.lex_state = 42, .external_lex_state = 2}, + [819] = {.lex_state = 42, .external_lex_state = 2}, + [820] = {.lex_state = 42, .external_lex_state = 2}, + [821] = {.lex_state = 42, .external_lex_state = 2}, + [822] = {.lex_state = 1829}, + [823] = {.lex_state = 1961}, + [824] = {.lex_state = 42, .external_lex_state = 2}, + [825] = {.lex_state = 42, .external_lex_state = 2}, + [826] = {.lex_state = 42, .external_lex_state = 2}, + [827] = {.lex_state = 1961}, + [828] = {.lex_state = 42, .external_lex_state = 2}, + [829] = {.lex_state = 42, .external_lex_state = 2}, + [830] = {.lex_state = 1961}, + [831] = {.lex_state = 42, .external_lex_state = 2}, + [832] = {.lex_state = 42, .external_lex_state = 2}, + [833] = {.lex_state = 42, .external_lex_state = 2}, + [834] = {.lex_state = 1831}, + [835] = {.lex_state = 1831}, + [836] = {.lex_state = 42, .external_lex_state = 2}, + [837] = {.lex_state = 42, .external_lex_state = 2}, + [838] = {.lex_state = 41, .external_lex_state = 2}, + [839] = {.lex_state = 41, .external_lex_state = 2}, + [840] = {.lex_state = 41, .external_lex_state = 2}, + [841] = {.lex_state = 41, .external_lex_state = 2}, + [842] = {.lex_state = 41, .external_lex_state = 2}, + [843] = {.lex_state = 41, .external_lex_state = 2}, + [844] = {.lex_state = 41, .external_lex_state = 2}, + [845] = {.lex_state = 41, .external_lex_state = 2}, + [846] = {.lex_state = 41, .external_lex_state = 2}, + [847] = {.lex_state = 41, .external_lex_state = 2}, + [848] = {.lex_state = 41, .external_lex_state = 2}, + [849] = {.lex_state = 41, .external_lex_state = 2}, + [850] = {.lex_state = 41, .external_lex_state = 2}, + [851] = {.lex_state = 41, .external_lex_state = 2}, + [852] = {.lex_state = 41, .external_lex_state = 2}, + [853] = {.lex_state = 41, .external_lex_state = 2}, + [854] = {.lex_state = 41, .external_lex_state = 2}, + [855] = {.lex_state = 41, .external_lex_state = 2}, + [856] = {.lex_state = 41, .external_lex_state = 2}, + [857] = {.lex_state = 41, .external_lex_state = 2}, + [858] = {.lex_state = 41, .external_lex_state = 2}, + [859] = {.lex_state = 41, .external_lex_state = 2}, + [860] = {.lex_state = 41, .external_lex_state = 2}, + [861] = {.lex_state = 41, .external_lex_state = 2}, + [862] = {.lex_state = 41, .external_lex_state = 2}, + [863] = {.lex_state = 41, .external_lex_state = 2}, + [864] = {.lex_state = 41, .external_lex_state = 2}, + [865] = {.lex_state = 41, .external_lex_state = 2}, + [866] = {.lex_state = 41, .external_lex_state = 2}, + [867] = {.lex_state = 41, .external_lex_state = 2}, + [868] = {.lex_state = 41, .external_lex_state = 2}, + [869] = {.lex_state = 41, .external_lex_state = 2}, + [870] = {.lex_state = 41, .external_lex_state = 2}, + [871] = {.lex_state = 41, .external_lex_state = 2}, [872] = {.lex_state = 42, .external_lex_state = 2}, [873] = {.lex_state = 42, .external_lex_state = 2}, [874] = {.lex_state = 42, .external_lex_state = 2}, - [875] = {.lex_state = 42, .external_lex_state = 2}, - [876] = {.lex_state = 42, .external_lex_state = 2}, - [877] = {.lex_state = 42, .external_lex_state = 2}, - [878] = {.lex_state = 42, .external_lex_state = 2}, - [879] = {.lex_state = 42, .external_lex_state = 2}, - [880] = {.lex_state = 42, .external_lex_state = 2}, - [881] = {.lex_state = 42, .external_lex_state = 2}, - [882] = {.lex_state = 42, .external_lex_state = 2}, - [883] = {.lex_state = 42, .external_lex_state = 2}, - [884] = {.lex_state = 42, .external_lex_state = 2}, - [885] = {.lex_state = 42, .external_lex_state = 2}, - [886] = {.lex_state = 42, .external_lex_state = 2}, - [887] = {.lex_state = 42, .external_lex_state = 2}, - [888] = {.lex_state = 42, .external_lex_state = 2}, - [889] = {.lex_state = 42, .external_lex_state = 2}, - [890] = {.lex_state = 42, .external_lex_state = 2}, + [875] = {.lex_state = 41, .external_lex_state = 2}, + [876] = {.lex_state = 41, .external_lex_state = 2}, + [877] = {.lex_state = 41, .external_lex_state = 2}, + [878] = {.lex_state = 41, .external_lex_state = 2}, + [879] = {.lex_state = 41, .external_lex_state = 2}, + [880] = {.lex_state = 41, .external_lex_state = 2}, + [881] = {.lex_state = 41, .external_lex_state = 2}, + [882] = {.lex_state = 41, .external_lex_state = 2}, + [883] = {.lex_state = 41, .external_lex_state = 2}, + [884] = {.lex_state = 41, .external_lex_state = 2}, + [885] = {.lex_state = 41, .external_lex_state = 2}, + [886] = {.lex_state = 41, .external_lex_state = 2}, + [887] = {.lex_state = 41, .external_lex_state = 2}, + [888] = {.lex_state = 41, .external_lex_state = 2}, + [889] = {.lex_state = 41, .external_lex_state = 2}, + [890] = {.lex_state = 41, .external_lex_state = 2}, [891] = {.lex_state = 41, .external_lex_state = 2}, [892] = {.lex_state = 41, .external_lex_state = 2}, [893] = {.lex_state = 41, .external_lex_state = 2}, @@ -55798,14 +55249,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [902] = {.lex_state = 41, .external_lex_state = 2}, [903] = {.lex_state = 41, .external_lex_state = 2}, [904] = {.lex_state = 41, .external_lex_state = 2}, - [905] = {.lex_state = 42, .external_lex_state = 2}, + [905] = {.lex_state = 41, .external_lex_state = 2}, [906] = {.lex_state = 41, .external_lex_state = 2}, [907] = {.lex_state = 41, .external_lex_state = 2}, [908] = {.lex_state = 41, .external_lex_state = 2}, [909] = {.lex_state = 41, .external_lex_state = 2}, [910] = {.lex_state = 41, .external_lex_state = 2}, [911] = {.lex_state = 41, .external_lex_state = 2}, - [912] = {.lex_state = 42, .external_lex_state = 2}, + [912] = {.lex_state = 41, .external_lex_state = 2}, [913] = {.lex_state = 41, .external_lex_state = 2}, [914] = {.lex_state = 41, .external_lex_state = 2}, [915] = {.lex_state = 41, .external_lex_state = 2}, @@ -55846,7 +55297,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [950] = {.lex_state = 41, .external_lex_state = 2}, [951] = {.lex_state = 41, .external_lex_state = 2}, [952] = {.lex_state = 41, .external_lex_state = 2}, - [953] = {.lex_state = 42, .external_lex_state = 2}, + [953] = {.lex_state = 41, .external_lex_state = 2}, [954] = {.lex_state = 41, .external_lex_state = 2}, [955] = {.lex_state = 41, .external_lex_state = 2}, [956] = {.lex_state = 41, .external_lex_state = 2}, @@ -55890,7 +55341,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [994] = {.lex_state = 41, .external_lex_state = 2}, [995] = {.lex_state = 41, .external_lex_state = 2}, [996] = {.lex_state = 41, .external_lex_state = 2}, - [997] = {.lex_state = 41, .external_lex_state = 2}, + [997] = {.lex_state = 40, .external_lex_state = 2}, [998] = {.lex_state = 41, .external_lex_state = 2}, [999] = {.lex_state = 41, .external_lex_state = 2}, [1000] = {.lex_state = 41, .external_lex_state = 2}, @@ -55906,8 +55357,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1010] = {.lex_state = 41, .external_lex_state = 2}, [1011] = {.lex_state = 41, .external_lex_state = 2}, [1012] = {.lex_state = 41, .external_lex_state = 2}, - [1013] = {.lex_state = 41, .external_lex_state = 2}, - [1014] = {.lex_state = 41, .external_lex_state = 2}, + [1013] = {.lex_state = 737, .external_lex_state = 2}, + [1014] = {.lex_state = 1956}, [1015] = {.lex_state = 41, .external_lex_state = 2}, [1016] = {.lex_state = 41, .external_lex_state = 2}, [1017] = {.lex_state = 41, .external_lex_state = 2}, @@ -55924,11 +55375,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1028] = {.lex_state = 41, .external_lex_state = 2}, [1029] = {.lex_state = 41, .external_lex_state = 2}, [1030] = {.lex_state = 41, .external_lex_state = 2}, - [1031] = {.lex_state = 41, .external_lex_state = 2}, - [1032] = {.lex_state = 41, .external_lex_state = 2}, - [1033] = {.lex_state = 41, .external_lex_state = 2}, - [1034] = {.lex_state = 41, .external_lex_state = 2}, - [1035] = {.lex_state = 41, .external_lex_state = 2}, + [1031] = {.lex_state = 1954}, + [1032] = {.lex_state = 1802}, + [1033] = {.lex_state = 1800}, + [1034] = {.lex_state = 1818}, + [1035] = {.lex_state = 1811}, [1036] = {.lex_state = 41, .external_lex_state = 2}, [1037] = {.lex_state = 41, .external_lex_state = 2}, [1038] = {.lex_state = 41, .external_lex_state = 2}, @@ -55943,13 +55394,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1047] = {.lex_state = 41, .external_lex_state = 2}, [1048] = {.lex_state = 41, .external_lex_state = 2}, [1049] = {.lex_state = 41, .external_lex_state = 2}, - [1050] = {.lex_state = 40, .external_lex_state = 2}, + [1050] = {.lex_state = 41, .external_lex_state = 2}, [1051] = {.lex_state = 41, .external_lex_state = 2}, [1052] = {.lex_state = 41, .external_lex_state = 2}, [1053] = {.lex_state = 41, .external_lex_state = 2}, [1054] = {.lex_state = 41, .external_lex_state = 2}, - [1055] = {.lex_state = 1801}, - [1056] = {.lex_state = 1817}, + [1055] = {.lex_state = 41, .external_lex_state = 2}, + [1056] = {.lex_state = 41, .external_lex_state = 2}, [1057] = {.lex_state = 41, .external_lex_state = 2}, [1058] = {.lex_state = 41, .external_lex_state = 2}, [1059] = {.lex_state = 41, .external_lex_state = 2}, @@ -55971,6882 +55422,6317 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1075] = {.lex_state = 41, .external_lex_state = 2}, [1076] = {.lex_state = 41, .external_lex_state = 2}, [1077] = {.lex_state = 41, .external_lex_state = 2}, - [1078] = {.lex_state = 41, .external_lex_state = 2}, + [1078] = {.lex_state = 737, .external_lex_state = 2}, [1079] = {.lex_state = 41, .external_lex_state = 2}, [1080] = {.lex_state = 41, .external_lex_state = 2}, [1081] = {.lex_state = 41, .external_lex_state = 2}, [1082] = {.lex_state = 41, .external_lex_state = 2}, - [1083] = {.lex_state = 1810}, - [1084] = {.lex_state = 41, .external_lex_state = 2}, - [1085] = {.lex_state = 41, .external_lex_state = 2}, - [1086] = {.lex_state = 41, .external_lex_state = 2}, - [1087] = {.lex_state = 41, .external_lex_state = 2}, - [1088] = {.lex_state = 41, .external_lex_state = 2}, - [1089] = {.lex_state = 41, .external_lex_state = 2}, - [1090] = {.lex_state = 41, .external_lex_state = 2}, - [1091] = {.lex_state = 41, .external_lex_state = 2}, - [1092] = {.lex_state = 41, .external_lex_state = 2}, - [1093] = {.lex_state = 41, .external_lex_state = 2}, - [1094] = {.lex_state = 41, .external_lex_state = 2}, - [1095] = {.lex_state = 41, .external_lex_state = 2}, + [1083] = {.lex_state = 41, .external_lex_state = 2}, + [1084] = {.lex_state = 737, .external_lex_state = 2}, + [1085] = {.lex_state = 1804}, + [1086] = {.lex_state = 1804}, + [1087] = {.lex_state = 737, .external_lex_state = 2}, + [1088] = {.lex_state = 1820}, + [1089] = {.lex_state = 1820}, + [1090] = {.lex_state = 737, .external_lex_state = 2}, + [1091] = {.lex_state = 1956}, + [1092] = {.lex_state = 1954}, + [1093] = {.lex_state = 1958}, + [1094] = {.lex_state = 1958}, + [1095] = {.lex_state = 1822}, [1096] = {.lex_state = 41, .external_lex_state = 2}, - [1097] = {.lex_state = 41, .external_lex_state = 2}, - [1098] = {.lex_state = 41, .external_lex_state = 2}, + [1097] = {.lex_state = 1806}, + [1098] = {.lex_state = 1822}, [1099] = {.lex_state = 41, .external_lex_state = 2}, [1100] = {.lex_state = 41, .external_lex_state = 2}, - [1101] = {.lex_state = 41, .external_lex_state = 2}, - [1102] = {.lex_state = 736, .external_lex_state = 2}, - [1103] = {.lex_state = 41, .external_lex_state = 2}, - [1104] = {.lex_state = 41, .external_lex_state = 2}, - [1105] = {.lex_state = 1799}, - [1106] = {.lex_state = 41, .external_lex_state = 2}, - [1107] = {.lex_state = 41, .external_lex_state = 2}, - [1108] = {.lex_state = 1955}, - [1109] = {.lex_state = 41, .external_lex_state = 2}, + [1101] = {.lex_state = 1822}, + [1102] = {.lex_state = 1824}, + [1103] = {.lex_state = 1813}, + [1104] = {.lex_state = 1806}, + [1105] = {.lex_state = 1958}, + [1106] = {.lex_state = 1822}, + [1107] = {.lex_state = 1958}, + [1108] = {.lex_state = 1806}, + [1109] = {.lex_state = 1806}, [1110] = {.lex_state = 41, .external_lex_state = 2}, [1111] = {.lex_state = 41, .external_lex_state = 2}, - [1112] = {.lex_state = 41, .external_lex_state = 2}, - [1113] = {.lex_state = 736, .external_lex_state = 2}, + [1112] = {.lex_state = 1960}, + [1113] = {.lex_state = 1960}, [1114] = {.lex_state = 41, .external_lex_state = 2}, - [1115] = {.lex_state = 41, .external_lex_state = 2}, - [1116] = {.lex_state = 41, .external_lex_state = 2}, - [1117] = {.lex_state = 41, .external_lex_state = 2}, - [1118] = {.lex_state = 41, .external_lex_state = 2}, - [1119] = {.lex_state = 41, .external_lex_state = 2}, - [1120] = {.lex_state = 41, .external_lex_state = 2}, - [1121] = {.lex_state = 41, .external_lex_state = 2}, - [1122] = {.lex_state = 41, .external_lex_state = 2}, - [1123] = {.lex_state = 41, .external_lex_state = 2}, - [1124] = {.lex_state = 41, .external_lex_state = 2}, - [1125] = {.lex_state = 41, .external_lex_state = 2}, - [1126] = {.lex_state = 41, .external_lex_state = 2}, - [1127] = {.lex_state = 41, .external_lex_state = 2}, - [1128] = {.lex_state = 1953}, - [1129] = {.lex_state = 41, .external_lex_state = 2}, - [1130] = {.lex_state = 41, .external_lex_state = 2}, - [1131] = {.lex_state = 41, .external_lex_state = 2}, - [1132] = {.lex_state = 41, .external_lex_state = 2}, - [1133] = {.lex_state = 41, .external_lex_state = 2}, - [1134] = {.lex_state = 41, .external_lex_state = 2}, - [1135] = {.lex_state = 41, .external_lex_state = 2}, - [1136] = {.lex_state = 41, .external_lex_state = 2}, - [1137] = {.lex_state = 1955}, - [1138] = {.lex_state = 1953}, - [1139] = {.lex_state = 1803}, - [1140] = {.lex_state = 1957}, - [1141] = {.lex_state = 1819}, - [1142] = {.lex_state = 1803}, - [1143] = {.lex_state = 736, .external_lex_state = 2}, - [1144] = {.lex_state = 736, .external_lex_state = 2}, - [1145] = {.lex_state = 1819}, - [1146] = {.lex_state = 736, .external_lex_state = 2}, - [1147] = {.lex_state = 1957}, - [1148] = {.lex_state = 1957}, - [1149] = {.lex_state = 1805}, - [1150] = {.lex_state = 1959}, - [1151] = {.lex_state = 1821}, - [1152] = {.lex_state = 1805}, - [1153] = {.lex_state = 1821}, - [1154] = {.lex_state = 1959}, - [1155] = {.lex_state = 1959}, - [1156] = {.lex_state = 1959}, - [1157] = {.lex_state = 41, .external_lex_state = 2}, - [1158] = {.lex_state = 41, .external_lex_state = 2}, - [1159] = {.lex_state = 41, .external_lex_state = 2}, - [1160] = {.lex_state = 1805}, - [1161] = {.lex_state = 1959}, - [1162] = {.lex_state = 1823}, - [1163] = {.lex_state = 1821}, - [1164] = {.lex_state = 1805}, - [1165] = {.lex_state = 1805}, - [1166] = {.lex_state = 1821}, - [1167] = {.lex_state = 1812}, - [1168] = {.lex_state = 41, .external_lex_state = 2}, - [1169] = {.lex_state = 41, .external_lex_state = 2}, - [1170] = {.lex_state = 736, .external_lex_state = 2}, - [1171] = {.lex_state = 1957}, - [1172] = {.lex_state = 41, .external_lex_state = 2}, - [1173] = {.lex_state = 1821}, - [1174] = {.lex_state = 1959}, - [1175] = {.lex_state = 32, .external_lex_state = 2}, - [1176] = {.lex_state = 1825}, - [1177] = {.lex_state = 1959}, - [1178] = {.lex_state = 1825}, - [1179] = {.lex_state = 736, .external_lex_state = 2}, - [1180] = {.lex_state = 1959}, - [1181] = {.lex_state = 1959}, - [1182] = {.lex_state = 1959}, - [1183] = {.lex_state = 32, .external_lex_state = 2}, - [1184] = {.lex_state = 1827}, - [1185] = {.lex_state = 46, .external_lex_state = 2}, - [1186] = {.lex_state = 1827}, - [1187] = {.lex_state = 1827}, - [1188] = {.lex_state = 1827}, - [1189] = {.lex_state = 32, .external_lex_state = 2}, - [1190] = {.lex_state = 132, .external_lex_state = 2}, - [1191] = {.lex_state = 46, .external_lex_state = 2}, - [1192] = {.lex_state = 43, .external_lex_state = 2}, - [1193] = {.lex_state = 43, .external_lex_state = 2}, - [1194] = {.lex_state = 46, .external_lex_state = 2}, - [1195] = {.lex_state = 132, .external_lex_state = 2}, - [1196] = {.lex_state = 46, .external_lex_state = 2}, - [1197] = {.lex_state = 32, .external_lex_state = 2}, - [1198] = {.lex_state = 1827}, - [1199] = {.lex_state = 32, .external_lex_state = 2}, - [1200] = {.lex_state = 43, .external_lex_state = 2}, - [1201] = {.lex_state = 43, .external_lex_state = 2}, - [1202] = {.lex_state = 34, .external_lex_state = 2}, - [1203] = {.lex_state = 34, .external_lex_state = 2}, - [1204] = {.lex_state = 46, .external_lex_state = 2}, - [1205] = {.lex_state = 46, .external_lex_state = 2}, - [1206] = {.lex_state = 32, .external_lex_state = 2}, - [1207] = {.lex_state = 46, .external_lex_state = 2}, - [1208] = {.lex_state = 46, .external_lex_state = 2}, - [1209] = {.lex_state = 43, .external_lex_state = 2}, - [1210] = {.lex_state = 43, .external_lex_state = 2}, - [1211] = {.lex_state = 43, .external_lex_state = 2}, - [1212] = {.lex_state = 43, .external_lex_state = 2}, - [1213] = {.lex_state = 43, .external_lex_state = 2}, - [1214] = {.lex_state = 43, .external_lex_state = 2}, - [1215] = {.lex_state = 43, .external_lex_state = 2}, - [1216] = {.lex_state = 43, .external_lex_state = 2}, - [1217] = {.lex_state = 43, .external_lex_state = 2}, - [1218] = {.lex_state = 46, .external_lex_state = 2}, - [1219] = {.lex_state = 166, .external_lex_state = 2}, - [1220] = {.lex_state = 46, .external_lex_state = 2}, - [1221] = {.lex_state = 46, .external_lex_state = 2}, - [1222] = {.lex_state = 47, .external_lex_state = 2}, + [1115] = {.lex_state = 1960}, + [1116] = {.lex_state = 1806}, + [1117] = {.lex_state = 1960}, + [1118] = {.lex_state = 737, .external_lex_state = 2}, + [1119] = {.lex_state = 1822}, + [1120] = {.lex_state = 1960}, + [1121] = {.lex_state = 1960}, + [1122] = {.lex_state = 1960}, + [1123] = {.lex_state = 1960}, + [1124] = {.lex_state = 1960}, + [1125] = {.lex_state = 737, .external_lex_state = 2}, + [1126] = {.lex_state = 1960}, + [1127] = {.lex_state = 1826}, + [1128] = {.lex_state = 32, .external_lex_state = 2}, + [1129] = {.lex_state = 1826}, + [1130] = {.lex_state = 32, .external_lex_state = 2}, + [1131] = {.lex_state = 46, .external_lex_state = 2}, + [1132] = {.lex_state = 32, .external_lex_state = 2}, + [1133] = {.lex_state = 46, .external_lex_state = 2}, + [1134] = {.lex_state = 1828}, + [1135] = {.lex_state = 32, .external_lex_state = 2}, + [1136] = {.lex_state = 46, .external_lex_state = 2}, + [1137] = {.lex_state = 43, .external_lex_state = 2}, + [1138] = {.lex_state = 46, .external_lex_state = 2}, + [1139] = {.lex_state = 43, .external_lex_state = 2}, + [1140] = {.lex_state = 34, .external_lex_state = 2}, + [1141] = {.lex_state = 43, .external_lex_state = 2}, + [1142] = {.lex_state = 1828}, + [1143] = {.lex_state = 133, .external_lex_state = 2}, + [1144] = {.lex_state = 1828}, + [1145] = {.lex_state = 1828}, + [1146] = {.lex_state = 1828}, + [1147] = {.lex_state = 43, .external_lex_state = 2}, + [1148] = {.lex_state = 133, .external_lex_state = 2}, + [1149] = {.lex_state = 32, .external_lex_state = 2}, + [1150] = {.lex_state = 46, .external_lex_state = 2}, + [1151] = {.lex_state = 32, .external_lex_state = 2}, + [1152] = {.lex_state = 46, .external_lex_state = 2}, + [1153] = {.lex_state = 34, .external_lex_state = 2}, + [1154] = {.lex_state = 46, .external_lex_state = 2}, + [1155] = {.lex_state = 46, .external_lex_state = 2}, + [1156] = {.lex_state = 43, .external_lex_state = 2}, + [1157] = {.lex_state = 43, .external_lex_state = 2}, + [1158] = {.lex_state = 43, .external_lex_state = 2}, + [1159] = {.lex_state = 47, .external_lex_state = 2}, + [1160] = {.lex_state = 43, .external_lex_state = 2}, + [1161] = {.lex_state = 47, .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 = 43, .external_lex_state = 2}, + [1167] = {.lex_state = 46, .external_lex_state = 2}, + [1168] = {.lex_state = 1830}, + [1169] = {.lex_state = 1808}, + [1170] = {.lex_state = 46, .external_lex_state = 2}, + [1171] = {.lex_state = 46, .external_lex_state = 2}, + [1172] = {.lex_state = 46, .external_lex_state = 2}, + [1173] = {.lex_state = 1962}, + [1174] = {.lex_state = 1830}, + [1175] = {.lex_state = 708}, + [1176] = {.lex_state = 46, .external_lex_state = 2}, + [1177] = {.lex_state = 1808}, + [1178] = {.lex_state = 46, .external_lex_state = 2}, + [1179] = {.lex_state = 167, .external_lex_state = 2}, + [1180] = {.lex_state = 1962}, + [1181] = {.lex_state = 167, .external_lex_state = 2}, + [1182] = {.lex_state = 46, .external_lex_state = 2}, + [1183] = {.lex_state = 46, .external_lex_state = 2}, + [1184] = {.lex_state = 46, .external_lex_state = 2}, + [1185] = {.lex_state = 1962}, + [1186] = {.lex_state = 1962}, + [1187] = {.lex_state = 720, .external_lex_state = 2}, + [1188] = {.lex_state = 708}, + [1189] = {.lex_state = 40, .external_lex_state = 2}, + [1190] = {.lex_state = 708}, + [1191] = {.lex_state = 40, .external_lex_state = 2}, + [1192] = {.lex_state = 708}, + [1193] = {.lex_state = 708}, + [1194] = {.lex_state = 734, .external_lex_state = 2}, + [1195] = {.lex_state = 708}, + [1196] = {.lex_state = 1832}, + [1197] = {.lex_state = 719, .external_lex_state = 2}, + [1198] = {.lex_state = 721, .external_lex_state = 2}, + [1199] = {.lex_state = 730, .external_lex_state = 2}, + [1200] = {.lex_state = 720, .external_lex_state = 2}, + [1201] = {.lex_state = 1832}, + [1202] = {.lex_state = 708}, + [1203] = {.lex_state = 708}, + [1204] = {.lex_state = 708}, + [1205] = {.lex_state = 708}, + [1206] = {.lex_state = 719, .external_lex_state = 2}, + [1207] = {.lex_state = 40, .external_lex_state = 2}, + [1208] = {.lex_state = 721, .external_lex_state = 2}, + [1209] = {.lex_state = 734, .external_lex_state = 2}, + [1210] = {.lex_state = 730, .external_lex_state = 2}, + [1211] = {.lex_state = 672}, + [1212] = {.lex_state = 40, .external_lex_state = 2}, + [1213] = {.lex_state = 708}, + [1214] = {.lex_state = 719, .external_lex_state = 2}, + [1215] = {.lex_state = 40, .external_lex_state = 2}, + [1216] = {.lex_state = 40, .external_lex_state = 2}, + [1217] = {.lex_state = 708}, + [1218] = {.lex_state = 40, .external_lex_state = 2}, + [1219] = {.lex_state = 40, .external_lex_state = 2}, + [1220] = {.lex_state = 40, .external_lex_state = 2}, + [1221] = {.lex_state = 672}, + [1222] = {.lex_state = 40, .external_lex_state = 2}, [1223] = {.lex_state = 47, .external_lex_state = 2}, - [1224] = {.lex_state = 46, .external_lex_state = 2}, - [1225] = {.lex_state = 46, .external_lex_state = 2}, - [1226] = {.lex_state = 1829}, - [1227] = {.lex_state = 707}, - [1228] = {.lex_state = 1961}, - [1229] = {.lex_state = 1961}, - [1230] = {.lex_state = 1807}, - [1231] = {.lex_state = 1807}, - [1232] = {.lex_state = 166, .external_lex_state = 2}, - [1233] = {.lex_state = 46, .external_lex_state = 2}, - [1234] = {.lex_state = 46, .external_lex_state = 2}, - [1235] = {.lex_state = 46, .external_lex_state = 2}, - [1236] = {.lex_state = 46, .external_lex_state = 2}, - [1237] = {.lex_state = 1829}, - [1238] = {.lex_state = 707}, - [1239] = {.lex_state = 719, .external_lex_state = 2}, - [1240] = {.lex_state = 1961}, - [1241] = {.lex_state = 40, .external_lex_state = 2}, - [1242] = {.lex_state = 40, .external_lex_state = 2}, - [1243] = {.lex_state = 1961}, - [1244] = {.lex_state = 707}, - [1245] = {.lex_state = 718, .external_lex_state = 2}, - [1246] = {.lex_state = 719, .external_lex_state = 2}, - [1247] = {.lex_state = 1831}, - [1248] = {.lex_state = 707}, - [1249] = {.lex_state = 707}, - [1250] = {.lex_state = 707}, - [1251] = {.lex_state = 707}, - [1252] = {.lex_state = 707}, - [1253] = {.lex_state = 720, .external_lex_state = 2}, - [1254] = {.lex_state = 729, .external_lex_state = 2}, - [1255] = {.lex_state = 707}, - [1256] = {.lex_state = 1831}, - [1257] = {.lex_state = 707}, - [1258] = {.lex_state = 718, .external_lex_state = 2}, - [1259] = {.lex_state = 733, .external_lex_state = 2}, + [1224] = {.lex_state = 40, .external_lex_state = 2}, + [1225] = {.lex_state = 40, .external_lex_state = 2}, + [1226] = {.lex_state = 47, .external_lex_state = 2}, + [1227] = {.lex_state = 719, .external_lex_state = 2}, + [1228] = {.lex_state = 723, .external_lex_state = 2}, + [1229] = {.lex_state = 672}, + [1230] = {.lex_state = 40, .external_lex_state = 2}, + [1231] = {.lex_state = 723, .external_lex_state = 2}, + [1232] = {.lex_state = 40, .external_lex_state = 2}, + [1233] = {.lex_state = 40, .external_lex_state = 2}, + [1234] = {.lex_state = 733, .external_lex_state = 2}, + [1235] = {.lex_state = 40, .external_lex_state = 2}, + [1236] = {.lex_state = 724, .external_lex_state = 2}, + [1237] = {.lex_state = 733, .external_lex_state = 2}, + [1238] = {.lex_state = 733, .external_lex_state = 2}, + [1239] = {.lex_state = 733, .external_lex_state = 2}, + [1240] = {.lex_state = 708}, + [1241] = {.lex_state = 708}, + [1242] = {.lex_state = 708}, + [1243] = {.lex_state = 707}, + [1244] = {.lex_state = 40, .external_lex_state = 2}, + [1245] = {.lex_state = 40, .external_lex_state = 2}, + [1246] = {.lex_state = 40, .external_lex_state = 2}, + [1247] = {.lex_state = 40, .external_lex_state = 2}, + [1248] = {.lex_state = 40, .external_lex_state = 2}, + [1249] = {.lex_state = 40, .external_lex_state = 2}, + [1250] = {.lex_state = 40, .external_lex_state = 2}, + [1251] = {.lex_state = 40, .external_lex_state = 2}, + [1252] = {.lex_state = 40, .external_lex_state = 2}, + [1253] = {.lex_state = 40, .external_lex_state = 2}, + [1254] = {.lex_state = 40, .external_lex_state = 2}, + [1255] = {.lex_state = 40, .external_lex_state = 2}, + [1256] = {.lex_state = 40, .external_lex_state = 2}, + [1257] = {.lex_state = 40, .external_lex_state = 2}, + [1258] = {.lex_state = 40, .external_lex_state = 2}, + [1259] = {.lex_state = 40, .external_lex_state = 2}, [1260] = {.lex_state = 40, .external_lex_state = 2}, - [1261] = {.lex_state = 671}, + [1261] = {.lex_state = 40, .external_lex_state = 2}, [1262] = {.lex_state = 40, .external_lex_state = 2}, [1263] = {.lex_state = 40, .external_lex_state = 2}, [1264] = {.lex_state = 40, .external_lex_state = 2}, [1265] = {.lex_state = 40, .external_lex_state = 2}, - [1266] = {.lex_state = 722, .external_lex_state = 2}, + [1266] = {.lex_state = 40, .external_lex_state = 2}, [1267] = {.lex_state = 40, .external_lex_state = 2}, [1268] = {.lex_state = 40, .external_lex_state = 2}, - [1269] = {.lex_state = 759, .external_lex_state = 2}, - [1270] = {.lex_state = 47, .external_lex_state = 2}, - [1271] = {.lex_state = 706}, + [1269] = {.lex_state = 40, .external_lex_state = 2}, + [1270] = {.lex_state = 40, .external_lex_state = 2}, + [1271] = {.lex_state = 40, .external_lex_state = 2}, [1272] = {.lex_state = 40, .external_lex_state = 2}, - [1273] = {.lex_state = 706}, - [1274] = {.lex_state = 722, .external_lex_state = 2}, - [1275] = {.lex_state = 40, .external_lex_state = 2}, - [1276] = {.lex_state = 40, .external_lex_state = 2}, - [1277] = {.lex_state = 40, .external_lex_state = 2}, + [1273] = {.lex_state = 40, .external_lex_state = 2}, + [1274] = {.lex_state = 40, .external_lex_state = 2}, + [1275] = {.lex_state = 707}, + [1276] = {.lex_state = 756, .external_lex_state = 2}, + [1277] = {.lex_state = 760, .external_lex_state = 2}, [1278] = {.lex_state = 40, .external_lex_state = 2}, - [1279] = {.lex_state = 40, .external_lex_state = 2}, - [1280] = {.lex_state = 47, .external_lex_state = 2}, - [1281] = {.lex_state = 733, .external_lex_state = 2}, - [1282] = {.lex_state = 40, .external_lex_state = 2}, - [1283] = {.lex_state = 40, .external_lex_state = 2}, - [1284] = {.lex_state = 40, .external_lex_state = 2}, - [1285] = {.lex_state = 40, .external_lex_state = 2}, - [1286] = {.lex_state = 707}, - [1287] = {.lex_state = 718, .external_lex_state = 2}, - [1288] = {.lex_state = 40, .external_lex_state = 2}, - [1289] = {.lex_state = 729, .external_lex_state = 2}, - [1290] = {.lex_state = 40, .external_lex_state = 2}, - [1291] = {.lex_state = 40, .external_lex_state = 2}, - [1292] = {.lex_state = 40, .external_lex_state = 2}, - [1293] = {.lex_state = 40, .external_lex_state = 2}, - [1294] = {.lex_state = 40, .external_lex_state = 2}, - [1295] = {.lex_state = 40, .external_lex_state = 2}, - [1296] = {.lex_state = 755, .external_lex_state = 2}, - [1297] = {.lex_state = 40, .external_lex_state = 2}, - [1298] = {.lex_state = 40, .external_lex_state = 2}, - [1299] = {.lex_state = 40, .external_lex_state = 2}, - [1300] = {.lex_state = 40, .external_lex_state = 2}, - [1301] = {.lex_state = 40, .external_lex_state = 2}, - [1302] = {.lex_state = 40, .external_lex_state = 2}, - [1303] = {.lex_state = 40, .external_lex_state = 2}, - [1304] = {.lex_state = 732, .external_lex_state = 2}, - [1305] = {.lex_state = 40, .external_lex_state = 2}, - [1306] = {.lex_state = 40, .external_lex_state = 2}, - [1307] = {.lex_state = 40, .external_lex_state = 2}, - [1308] = {.lex_state = 40, .external_lex_state = 2}, - [1309] = {.lex_state = 40, .external_lex_state = 2}, - [1310] = {.lex_state = 40, .external_lex_state = 2}, - [1311] = {.lex_state = 40, .external_lex_state = 2}, - [1312] = {.lex_state = 40, .external_lex_state = 2}, - [1313] = {.lex_state = 40, .external_lex_state = 2}, - [1314] = {.lex_state = 707}, - [1315] = {.lex_state = 40, .external_lex_state = 2}, - [1316] = {.lex_state = 40, .external_lex_state = 2}, - [1317] = {.lex_state = 671}, + [1279] = {.lex_state = 760, .external_lex_state = 2}, + [1280] = {.lex_state = 747, .external_lex_state = 2}, + [1281] = {.lex_state = 672}, + [1282] = {.lex_state = 724, .external_lex_state = 2}, + [1283] = {.lex_state = 672}, + [1284] = {.lex_state = 707}, + [1285] = {.lex_state = 724, .external_lex_state = 2}, + [1286] = {.lex_state = 724, .external_lex_state = 2}, + [1287] = {.lex_state = 724, .external_lex_state = 2}, + [1288] = {.lex_state = 672}, + [1289] = {.lex_state = 47, .external_lex_state = 2}, + [1290] = {.lex_state = 756, .external_lex_state = 2}, + [1291] = {.lex_state = 733, .external_lex_state = 2}, + [1292] = {.lex_state = 722, .external_lex_state = 2}, + [1293] = {.lex_state = 724, .external_lex_state = 2}, + [1294] = {.lex_state = 723, .external_lex_state = 2}, + [1295] = {.lex_state = 672}, + [1296] = {.lex_state = 747, .external_lex_state = 2}, + [1297] = {.lex_state = 733, .external_lex_state = 2}, + [1298] = {.lex_state = 733, .external_lex_state = 2}, + [1299] = {.lex_state = 708}, + [1300] = {.lex_state = 708}, + [1301] = {.lex_state = 707}, + [1302] = {.lex_state = 731, .external_lex_state = 2}, + [1303] = {.lex_state = 672}, + [1304] = {.lex_state = 672}, + [1305] = {.lex_state = 672}, + [1306] = {.lex_state = 708}, + [1307] = {.lex_state = 723, .external_lex_state = 2}, + [1308] = {.lex_state = 708}, + [1309] = {.lex_state = 708}, + [1310] = {.lex_state = 733, .external_lex_state = 2}, + [1311] = {.lex_state = 708}, + [1312] = {.lex_state = 708}, + [1313] = {.lex_state = 674}, + [1314] = {.lex_state = 747, .external_lex_state = 2}, + [1315] = {.lex_state = 757, .external_lex_state = 2}, + [1316] = {.lex_state = 674}, + [1317] = {.lex_state = 757, .external_lex_state = 2}, [1318] = {.lex_state = 707}, - [1319] = {.lex_state = 720, .external_lex_state = 2}, - [1320] = {.lex_state = 40, .external_lex_state = 2}, - [1321] = {.lex_state = 671}, - [1322] = {.lex_state = 40, .external_lex_state = 2}, + [1319] = {.lex_state = 680}, + [1320] = {.lex_state = 708}, + [1321] = {.lex_state = 708}, + [1322] = {.lex_state = 724, .external_lex_state = 2}, [1323] = {.lex_state = 707}, - [1324] = {.lex_state = 732, .external_lex_state = 2}, - [1325] = {.lex_state = 707}, - [1326] = {.lex_state = 40, .external_lex_state = 2}, - [1327] = {.lex_state = 723, .external_lex_state = 2}, - [1328] = {.lex_state = 718, .external_lex_state = 2}, - [1329] = {.lex_state = 732, .external_lex_state = 2}, - [1330] = {.lex_state = 732, .external_lex_state = 2}, - [1331] = {.lex_state = 40, .external_lex_state = 2}, - [1332] = {.lex_state = 723, .external_lex_state = 2}, - [1333] = {.lex_state = 746, .external_lex_state = 2}, - [1334] = {.lex_state = 723, .external_lex_state = 2}, - [1335] = {.lex_state = 746, .external_lex_state = 2}, - [1336] = {.lex_state = 746, .external_lex_state = 2}, - [1337] = {.lex_state = 723, .external_lex_state = 2}, - [1338] = {.lex_state = 671}, - [1339] = {.lex_state = 707}, - [1340] = {.lex_state = 706}, - [1341] = {.lex_state = 706}, - [1342] = {.lex_state = 723, .external_lex_state = 2}, - [1343] = {.lex_state = 671}, - [1344] = {.lex_state = 671}, - [1345] = {.lex_state = 671}, - [1346] = {.lex_state = 723, .external_lex_state = 2}, - [1347] = {.lex_state = 755, .external_lex_state = 2}, - [1348] = {.lex_state = 721, .external_lex_state = 2}, - [1349] = {.lex_state = 671}, - [1350] = {.lex_state = 707}, - [1351] = {.lex_state = 732, .external_lex_state = 2}, - [1352] = {.lex_state = 707}, - [1353] = {.lex_state = 732, .external_lex_state = 2}, - [1354] = {.lex_state = 732, .external_lex_state = 2}, - [1355] = {.lex_state = 732, .external_lex_state = 2}, - [1356] = {.lex_state = 706}, - [1357] = {.lex_state = 707}, - [1358] = {.lex_state = 707}, - [1359] = {.lex_state = 722, .external_lex_state = 2}, - [1360] = {.lex_state = 730, .external_lex_state = 2}, - [1361] = {.lex_state = 671}, - [1362] = {.lex_state = 722, .external_lex_state = 2}, - [1363] = {.lex_state = 756, .external_lex_state = 2}, - [1364] = {.lex_state = 756, .external_lex_state = 2}, - [1365] = {.lex_state = 673}, - [1366] = {.lex_state = 707}, - [1367] = {.lex_state = 707}, - [1368] = {.lex_state = 673}, - [1369] = {.lex_state = 47, .external_lex_state = 2}, - [1370] = {.lex_state = 671}, - [1371] = {.lex_state = 759, .external_lex_state = 2}, - [1372] = {.lex_state = 746, .external_lex_state = 2}, - [1373] = {.lex_state = 746, .external_lex_state = 2}, - [1374] = {.lex_state = 673}, - [1375] = {.lex_state = 756, .external_lex_state = 2}, - [1376] = {.lex_state = 675}, - [1377] = {.lex_state = 40, .external_lex_state = 2}, - [1378] = {.lex_state = 673}, - [1379] = {.lex_state = 724, .external_lex_state = 2}, - [1380] = {.lex_state = 730, .external_lex_state = 2}, - [1381] = {.lex_state = 707}, - [1382] = {.lex_state = 746, .external_lex_state = 2}, - [1383] = {.lex_state = 706}, - [1384] = {.lex_state = 723, .external_lex_state = 2}, - [1385] = {.lex_state = 671}, - [1386] = {.lex_state = 757, .external_lex_state = 2}, - [1387] = {.lex_state = 707}, - [1388] = {.lex_state = 707}, - [1389] = {.lex_state = 757, .external_lex_state = 2}, - [1390] = {.lex_state = 706}, - [1391] = {.lex_state = 757, .external_lex_state = 2}, - [1392] = {.lex_state = 757, .external_lex_state = 2}, - [1393] = {.lex_state = 723, .external_lex_state = 2}, - [1394] = {.lex_state = 707}, - [1395] = {.lex_state = 671}, - [1396] = {.lex_state = 723, .external_lex_state = 2}, - [1397] = {.lex_state = 746, .external_lex_state = 2}, - [1398] = {.lex_state = 721, .external_lex_state = 2}, - [1399] = {.lex_state = 706}, - [1400] = {.lex_state = 756, .external_lex_state = 2}, - [1401] = {.lex_state = 706}, - [1402] = {.lex_state = 724, .external_lex_state = 2}, - [1403] = {.lex_state = 679}, - [1404] = {.lex_state = 706}, - [1405] = {.lex_state = 706}, + [1324] = {.lex_state = 707}, + [1325] = {.lex_state = 708}, + [1326] = {.lex_state = 724, .external_lex_state = 2}, + [1327] = {.lex_state = 731, .external_lex_state = 2}, + [1328] = {.lex_state = 747, .external_lex_state = 2}, + [1329] = {.lex_state = 707}, + [1330] = {.lex_state = 747, .external_lex_state = 2}, + [1331] = {.lex_state = 674}, + [1332] = {.lex_state = 747, .external_lex_state = 2}, + [1333] = {.lex_state = 757, .external_lex_state = 2}, + [1334] = {.lex_state = 747, .external_lex_state = 2}, + [1335] = {.lex_state = 725, .external_lex_state = 2}, + [1336] = {.lex_state = 747, .external_lex_state = 2}, + [1337] = {.lex_state = 707}, + [1338] = {.lex_state = 724, .external_lex_state = 2}, + [1339] = {.lex_state = 758, .external_lex_state = 2}, + [1340] = {.lex_state = 707}, + [1341] = {.lex_state = 722, .external_lex_state = 2}, + [1342] = {.lex_state = 724, .external_lex_state = 2}, + [1343] = {.lex_state = 40, .external_lex_state = 2}, + [1344] = {.lex_state = 707}, + [1345] = {.lex_state = 672}, + [1346] = {.lex_state = 758, .external_lex_state = 2}, + [1347] = {.lex_state = 672}, + [1348] = {.lex_state = 676}, + [1349] = {.lex_state = 758, .external_lex_state = 2}, + [1350] = {.lex_state = 757, .external_lex_state = 2}, + [1351] = {.lex_state = 758, .external_lex_state = 2}, + [1352] = {.lex_state = 758, .external_lex_state = 2}, + [1353] = {.lex_state = 674}, + [1354] = {.lex_state = 708}, + [1355] = {.lex_state = 725, .external_lex_state = 2}, + [1356] = {.lex_state = 758, .external_lex_state = 2}, + [1357] = {.lex_state = 758, .external_lex_state = 2}, + [1358] = {.lex_state = 726, .external_lex_state = 2}, + [1359] = {.lex_state = 746, .external_lex_state = 2}, + [1360] = {.lex_state = 726, .external_lex_state = 2}, + [1361] = {.lex_state = 746, .external_lex_state = 2}, + [1362] = {.lex_state = 682}, + [1363] = {.lex_state = 758, .external_lex_state = 2}, + [1364] = {.lex_state = 746, .external_lex_state = 2}, + [1365] = {.lex_state = 726, .external_lex_state = 2}, + [1366] = {.lex_state = 746, .external_lex_state = 2}, + [1367] = {.lex_state = 747, .external_lex_state = 2}, + [1368] = {.lex_state = 752, .external_lex_state = 2}, + [1369] = {.lex_state = 747, .external_lex_state = 2}, + [1370] = {.lex_state = 678}, + [1371] = {.lex_state = 725, .external_lex_state = 2}, + [1372] = {.lex_state = 708}, + [1373] = {.lex_state = 708}, + [1374] = {.lex_state = 707}, + [1375] = {.lex_state = 686}, + [1376] = {.lex_state = 672}, + [1377] = {.lex_state = 726, .external_lex_state = 2}, + [1378] = {.lex_state = 746, .external_lex_state = 2}, + [1379] = {.lex_state = 684}, + [1380] = {.lex_state = 672}, + [1381] = {.lex_state = 672}, + [1382] = {.lex_state = 672}, + [1383] = {.lex_state = 726, .external_lex_state = 2}, + [1384] = {.lex_state = 758, .external_lex_state = 2}, + [1385] = {.lex_state = 708}, + [1386] = {.lex_state = 672}, + [1387] = {.lex_state = 725, .external_lex_state = 2}, + [1388] = {.lex_state = 753, .external_lex_state = 2}, + [1389] = {.lex_state = 726, .external_lex_state = 2}, + [1390] = {.lex_state = 672}, + [1391] = {.lex_state = 708}, + [1392] = {.lex_state = 746, .external_lex_state = 2}, + [1393] = {.lex_state = 680}, + [1394] = {.lex_state = 676}, + [1395] = {.lex_state = 708}, + [1396] = {.lex_state = 682}, + [1397] = {.lex_state = 707}, + [1398] = {.lex_state = 707}, + [1399] = {.lex_state = 758, .external_lex_state = 2}, + [1400] = {.lex_state = 753, .external_lex_state = 2}, + [1401] = {.lex_state = 746, .external_lex_state = 2}, + [1402] = {.lex_state = 684}, + [1403] = {.lex_state = 684}, + [1404] = {.lex_state = 746, .external_lex_state = 2}, + [1405] = {.lex_state = 746, .external_lex_state = 2}, [1406] = {.lex_state = 746, .external_lex_state = 2}, - [1407] = {.lex_state = 723, .external_lex_state = 2}, - [1408] = {.lex_state = 757, .external_lex_state = 2}, - [1409] = {.lex_state = 681}, - [1410] = {.lex_state = 725, .external_lex_state = 2}, - [1411] = {.lex_state = 757, .external_lex_state = 2}, - [1412] = {.lex_state = 671}, - [1413] = {.lex_state = 671}, - [1414] = {.lex_state = 706}, - [1415] = {.lex_state = 757, .external_lex_state = 2}, - [1416] = {.lex_state = 677}, - [1417] = {.lex_state = 725, .external_lex_state = 2}, - [1418] = {.lex_state = 706}, - [1419] = {.lex_state = 745, .external_lex_state = 2}, - [1420] = {.lex_state = 757, .external_lex_state = 2}, - [1421] = {.lex_state = 745, .external_lex_state = 2}, - [1422] = {.lex_state = 724, .external_lex_state = 2}, - [1423] = {.lex_state = 745, .external_lex_state = 2}, - [1424] = {.lex_state = 725, .external_lex_state = 2}, - [1425] = {.lex_state = 745, .external_lex_state = 2}, - [1426] = {.lex_state = 671}, - [1427] = {.lex_state = 757, .external_lex_state = 2}, - [1428] = {.lex_state = 751, .external_lex_state = 2}, - [1429] = {.lex_state = 671}, - [1430] = {.lex_state = 707}, - [1431] = {.lex_state = 745, .external_lex_state = 2}, - [1432] = {.lex_state = 683}, - [1433] = {.lex_state = 685}, - [1434] = {.lex_state = 724, .external_lex_state = 2}, - [1435] = {.lex_state = 671}, + [1407] = {.lex_state = 750, .external_lex_state = 2}, + [1408] = {.lex_state = 749, .external_lex_state = 2}, + [1409] = {.lex_state = 749, .external_lex_state = 2}, + [1410] = {.lex_state = 749, .external_lex_state = 2}, + [1411] = {.lex_state = 726, .external_lex_state = 2}, + [1412] = {.lex_state = 682}, + [1413] = {.lex_state = 727, .external_lex_state = 2}, + [1414] = {.lex_state = 707}, + [1415] = {.lex_state = 684}, + [1416] = {.lex_state = 707}, + [1417] = {.lex_state = 749, .external_lex_state = 2}, + [1418] = {.lex_state = 726, .external_lex_state = 2}, + [1419] = {.lex_state = 726, .external_lex_state = 2}, + [1420] = {.lex_state = 749, .external_lex_state = 2}, + [1421] = {.lex_state = 732, .external_lex_state = 2}, + [1422] = {.lex_state = 726, .external_lex_state = 2}, + [1423] = {.lex_state = 707}, + [1424] = {.lex_state = 707}, + [1425] = {.lex_state = 707}, + [1426] = {.lex_state = 726, .external_lex_state = 2}, + [1427] = {.lex_state = 688}, + [1428] = {.lex_state = 746, .external_lex_state = 2}, + [1429] = {.lex_state = 749, .external_lex_state = 2}, + [1430] = {.lex_state = 682}, + [1431] = {.lex_state = 747, .external_lex_state = 2}, + [1432] = {.lex_state = 749, .external_lex_state = 2}, + [1433] = {.lex_state = 750, .external_lex_state = 2}, + [1434] = {.lex_state = 726, .external_lex_state = 2}, + [1435] = {.lex_state = 747, .external_lex_state = 2}, [1436] = {.lex_state = 707}, - [1437] = {.lex_state = 746, .external_lex_state = 2}, - [1438] = {.lex_state = 725, .external_lex_state = 2}, - [1439] = {.lex_state = 681}, - [1440] = {.lex_state = 746, .external_lex_state = 2}, + [1437] = {.lex_state = 707}, + [1438] = {.lex_state = 707}, + [1439] = {.lex_state = 747, .external_lex_state = 2}, + [1440] = {.lex_state = 752, .external_lex_state = 2}, [1441] = {.lex_state = 707}, - [1442] = {.lex_state = 675}, - [1443] = {.lex_state = 679}, - [1444] = {.lex_state = 757, .external_lex_state = 2}, - [1445] = {.lex_state = 752, .external_lex_state = 2}, - [1446] = {.lex_state = 707}, - [1447] = {.lex_state = 671}, - [1448] = {.lex_state = 725, .external_lex_state = 2}, - [1449] = {.lex_state = 725, .external_lex_state = 2}, - [1450] = {.lex_state = 706}, - [1451] = {.lex_state = 745, .external_lex_state = 2}, - [1452] = {.lex_state = 707}, - [1453] = {.lex_state = 725, .external_lex_state = 2}, - [1454] = {.lex_state = 683}, - [1455] = {.lex_state = 748, .external_lex_state = 2}, - [1456] = {.lex_state = 748, .external_lex_state = 2}, - [1457] = {.lex_state = 706}, - [1458] = {.lex_state = 748, .external_lex_state = 2}, - [1459] = {.lex_state = 748, .external_lex_state = 2}, - [1460] = {.lex_state = 748, .external_lex_state = 2}, - [1461] = {.lex_state = 745, .external_lex_state = 2}, - [1462] = {.lex_state = 745, .external_lex_state = 2}, - [1463] = {.lex_state = 748, .external_lex_state = 2}, - [1464] = {.lex_state = 706}, - [1465] = {.lex_state = 706}, - [1466] = {.lex_state = 706}, - [1467] = {.lex_state = 706}, - [1468] = {.lex_state = 706}, - [1469] = {.lex_state = 706}, - [1470] = {.lex_state = 726, .external_lex_state = 2}, - [1471] = {.lex_state = 706}, - [1472] = {.lex_state = 706}, - [1473] = {.lex_state = 706}, - [1474] = {.lex_state = 706}, - [1475] = {.lex_state = 706}, - [1476] = {.lex_state = 706}, - [1477] = {.lex_state = 706}, - [1478] = {.lex_state = 706}, - [1479] = {.lex_state = 706}, - [1480] = {.lex_state = 706}, - [1481] = {.lex_state = 706}, - [1482] = {.lex_state = 706}, - [1483] = {.lex_state = 706}, - [1484] = {.lex_state = 748, .external_lex_state = 2}, - [1485] = {.lex_state = 748, .external_lex_state = 2}, - [1486] = {.lex_state = 748, .external_lex_state = 2}, - [1487] = {.lex_state = 748, .external_lex_state = 2}, - [1488] = {.lex_state = 731, .external_lex_state = 2}, - [1489] = {.lex_state = 725, .external_lex_state = 2}, - [1490] = {.lex_state = 748, .external_lex_state = 2}, - [1491] = {.lex_state = 748, .external_lex_state = 2}, - [1492] = {.lex_state = 748, .external_lex_state = 2}, - [1493] = {.lex_state = 752, .external_lex_state = 2}, - [1494] = {.lex_state = 748, .external_lex_state = 2}, - [1495] = {.lex_state = 687}, - [1496] = {.lex_state = 748, .external_lex_state = 2}, - [1497] = {.lex_state = 746, .external_lex_state = 2}, - [1498] = {.lex_state = 748, .external_lex_state = 2}, - [1499] = {.lex_state = 687}, - [1500] = {.lex_state = 749, .external_lex_state = 2}, - [1501] = {.lex_state = 748, .external_lex_state = 2}, + [1442] = {.lex_state = 708}, + [1443] = {.lex_state = 749, .external_lex_state = 2}, + [1444] = {.lex_state = 684}, + [1445] = {.lex_state = 749, .external_lex_state = 2}, + [1446] = {.lex_state = 688}, + [1447] = {.lex_state = 708}, + [1448] = {.lex_state = 707}, + [1449] = {.lex_state = 684}, + [1450] = {.lex_state = 749, .external_lex_state = 2}, + [1451] = {.lex_state = 707}, + [1452] = {.lex_state = 749, .external_lex_state = 2}, + [1453] = {.lex_state = 746, .external_lex_state = 2}, + [1454] = {.lex_state = 749, .external_lex_state = 2}, + [1455] = {.lex_state = 749, .external_lex_state = 2}, + [1456] = {.lex_state = 749, .external_lex_state = 2}, + [1457] = {.lex_state = 749, .external_lex_state = 2}, + [1458] = {.lex_state = 749, .external_lex_state = 2}, + [1459] = {.lex_state = 749, .external_lex_state = 2}, + [1460] = {.lex_state = 749, .external_lex_state = 2}, + [1461] = {.lex_state = 749, .external_lex_state = 2}, + [1462] = {.lex_state = 751, .external_lex_state = 2}, + [1463] = {.lex_state = 751, .external_lex_state = 2}, + [1464] = {.lex_state = 751, .external_lex_state = 2}, + [1465] = {.lex_state = 686}, + [1466] = {.lex_state = 751, .external_lex_state = 2}, + [1467] = {.lex_state = 684}, + [1468] = {.lex_state = 727, .external_lex_state = 2}, + [1469] = {.lex_state = 728, .external_lex_state = 2}, + [1470] = {.lex_state = 751, .external_lex_state = 2}, + [1471] = {.lex_state = 690}, + [1472] = {.lex_state = 684}, + [1473] = {.lex_state = 751, .external_lex_state = 2}, + [1474] = {.lex_state = 751, .external_lex_state = 2}, + [1475] = {.lex_state = 684}, + [1476] = {.lex_state = 684}, + [1477] = {.lex_state = 690}, + [1478] = {.lex_state = 751, .external_lex_state = 2}, + [1479] = {.lex_state = 749, .external_lex_state = 2}, + [1480] = {.lex_state = 728, .external_lex_state = 2}, + [1481] = {.lex_state = 707}, + [1482] = {.lex_state = 707}, + [1483] = {.lex_state = 707}, + [1484] = {.lex_state = 747, .external_lex_state = 2}, + [1485] = {.lex_state = 749, .external_lex_state = 2}, + [1486] = {.lex_state = 707}, + [1487] = {.lex_state = 751, .external_lex_state = 2}, + [1488] = {.lex_state = 747, .external_lex_state = 2}, + [1489] = {.lex_state = 749, .external_lex_state = 2}, + [1490] = {.lex_state = 749, .external_lex_state = 2}, + [1491] = {.lex_state = 751, .external_lex_state = 2}, + [1492] = {.lex_state = 751, .external_lex_state = 2}, + [1493] = {.lex_state = 750, .external_lex_state = 2}, + [1494] = {.lex_state = 749, .external_lex_state = 2}, + [1495] = {.lex_state = 750, .external_lex_state = 2}, + [1496] = {.lex_state = 751, .external_lex_state = 2}, + [1497] = {.lex_state = 749, .external_lex_state = 2}, + [1498] = {.lex_state = 690}, + [1499] = {.lex_state = 707}, + [1500] = {.lex_state = 707}, + [1501] = {.lex_state = 707}, [1502] = {.lex_state = 749, .external_lex_state = 2}, - [1503] = {.lex_state = 746, .external_lex_state = 2}, - [1504] = {.lex_state = 746, .external_lex_state = 2}, - [1505] = {.lex_state = 748, .external_lex_state = 2}, - [1506] = {.lex_state = 725, .external_lex_state = 2}, - [1507] = {.lex_state = 683}, + [1503] = {.lex_state = 707}, + [1504] = {.lex_state = 747, .external_lex_state = 2}, + [1505] = {.lex_state = 690}, + [1506] = {.lex_state = 749, .external_lex_state = 2}, + [1507] = {.lex_state = 707}, [1508] = {.lex_state = 751, .external_lex_state = 2}, - [1509] = {.lex_state = 683}, - [1510] = {.lex_state = 683}, - [1511] = {.lex_state = 683}, - [1512] = {.lex_state = 748, .external_lex_state = 2}, - [1513] = {.lex_state = 748, .external_lex_state = 2}, - [1514] = {.lex_state = 745, .external_lex_state = 2}, - [1515] = {.lex_state = 725, .external_lex_state = 2}, - [1516] = {.lex_state = 707}, - [1517] = {.lex_state = 725, .external_lex_state = 2}, - [1518] = {.lex_state = 748, .external_lex_state = 2}, - [1519] = {.lex_state = 745, .external_lex_state = 2}, - [1520] = {.lex_state = 745, .external_lex_state = 2}, + [1509] = {.lex_state = 749, .external_lex_state = 2}, + [1510] = {.lex_state = 707}, + [1511] = {.lex_state = 751, .external_lex_state = 2}, + [1512] = {.lex_state = 732, .external_lex_state = 2}, + [1513] = {.lex_state = 678}, + [1514] = {.lex_state = 707}, + [1515] = {.lex_state = 749, .external_lex_state = 2}, + [1516] = {.lex_state = 751, .external_lex_state = 2}, + [1517] = {.lex_state = 749, .external_lex_state = 2}, + [1518] = {.lex_state = 707}, + [1519] = {.lex_state = 751, .external_lex_state = 2}, + [1520] = {.lex_state = 729, .external_lex_state = 2}, [1521] = {.lex_state = 748, .external_lex_state = 2}, - [1522] = {.lex_state = 745, .external_lex_state = 2}, - [1523] = {.lex_state = 725, .external_lex_state = 2}, - [1524] = {.lex_state = 707}, - [1525] = {.lex_state = 681}, - [1526] = {.lex_state = 681}, - [1527] = {.lex_state = 748, .external_lex_state = 2}, - [1528] = {.lex_state = 706}, - [1529] = {.lex_state = 748, .external_lex_state = 2}, - [1530] = {.lex_state = 748, .external_lex_state = 2}, - [1531] = {.lex_state = 748, .external_lex_state = 2}, - [1532] = {.lex_state = 685}, - [1533] = {.lex_state = 748, .external_lex_state = 2}, - [1534] = {.lex_state = 748, .external_lex_state = 2}, - [1535] = {.lex_state = 748, .external_lex_state = 2}, - [1536] = {.lex_state = 748, .external_lex_state = 2}, - [1537] = {.lex_state = 748, .external_lex_state = 2}, - [1538] = {.lex_state = 748, .external_lex_state = 2}, - [1539] = {.lex_state = 748, .external_lex_state = 2}, + [1522] = {.lex_state = 748, .external_lex_state = 2}, + [1523] = {.lex_state = 707}, + [1524] = {.lex_state = 751, .external_lex_state = 2}, + [1525] = {.lex_state = 748, .external_lex_state = 2}, + [1526] = {.lex_state = 729, .external_lex_state = 2}, + [1527] = {.lex_state = 755, .external_lex_state = 2}, + [1528] = {.lex_state = 729, .external_lex_state = 2}, + [1529] = {.lex_state = 707}, + [1530] = {.lex_state = 707}, + [1531] = {.lex_state = 718, .external_lex_state = 2}, + [1532] = {.lex_state = 707}, + [1533] = {.lex_state = 718, .external_lex_state = 2}, + [1534] = {.lex_state = 751, .external_lex_state = 2}, + [1535] = {.lex_state = 729, .external_lex_state = 2}, + [1536] = {.lex_state = 728, .external_lex_state = 2}, + [1537] = {.lex_state = 754, .external_lex_state = 2}, + [1538] = {.lex_state = 728, .external_lex_state = 2}, + [1539] = {.lex_state = 765, .external_lex_state = 2}, [1540] = {.lex_state = 748, .external_lex_state = 2}, - [1541] = {.lex_state = 748, .external_lex_state = 2}, - [1542] = {.lex_state = 748, .external_lex_state = 2}, - [1543] = {.lex_state = 750, .external_lex_state = 2}, - [1544] = {.lex_state = 748, .external_lex_state = 2}, - [1545] = {.lex_state = 750, .external_lex_state = 2}, - [1546] = {.lex_state = 746, .external_lex_state = 2}, - [1547] = {.lex_state = 748, .external_lex_state = 2}, - [1548] = {.lex_state = 748, .external_lex_state = 2}, - [1549] = {.lex_state = 748, .external_lex_state = 2}, - [1550] = {.lex_state = 748, .external_lex_state = 2}, - [1551] = {.lex_state = 748, .external_lex_state = 2}, - [1552] = {.lex_state = 748, .external_lex_state = 2}, - [1553] = {.lex_state = 748, .external_lex_state = 2}, - [1554] = {.lex_state = 746, .external_lex_state = 2}, - [1555] = {.lex_state = 689}, - [1556] = {.lex_state = 748, .external_lex_state = 2}, - [1557] = {.lex_state = 706}, - [1558] = {.lex_state = 689}, - [1559] = {.lex_state = 706}, - [1560] = {.lex_state = 750, .external_lex_state = 2}, - [1561] = {.lex_state = 727, .external_lex_state = 2}, - [1562] = {.lex_state = 689}, - [1563] = {.lex_state = 750, .external_lex_state = 2}, - [1564] = {.lex_state = 748, .external_lex_state = 2}, - [1565] = {.lex_state = 689}, - [1566] = {.lex_state = 750, .external_lex_state = 2}, - [1567] = {.lex_state = 750, .external_lex_state = 2}, - [1568] = {.lex_state = 750, .external_lex_state = 2}, - [1569] = {.lex_state = 750, .external_lex_state = 2}, - [1570] = {.lex_state = 748, .external_lex_state = 2}, - [1571] = {.lex_state = 749, .external_lex_state = 2}, - [1572] = {.lex_state = 706}, - [1573] = {.lex_state = 749, .external_lex_state = 2}, - [1574] = {.lex_state = 706}, - [1575] = {.lex_state = 750, .external_lex_state = 2}, - [1576] = {.lex_state = 750, .external_lex_state = 2}, - [1577] = {.lex_state = 750, .external_lex_state = 2}, - [1578] = {.lex_state = 706}, - [1579] = {.lex_state = 706}, - [1580] = {.lex_state = 731, .external_lex_state = 2}, - [1581] = {.lex_state = 706}, - [1582] = {.lex_state = 746, .external_lex_state = 2}, - [1583] = {.lex_state = 750, .external_lex_state = 2}, - [1584] = {.lex_state = 677}, - [1585] = {.lex_state = 683}, - [1586] = {.lex_state = 706}, - [1587] = {.lex_state = 750, .external_lex_state = 2}, - [1588] = {.lex_state = 750, .external_lex_state = 2}, - [1589] = {.lex_state = 683}, - [1590] = {.lex_state = 706}, - [1591] = {.lex_state = 706}, - [1592] = {.lex_state = 706}, - [1593] = {.lex_state = 726, .external_lex_state = 2}, + [1541] = {.lex_state = 751, .external_lex_state = 2}, + [1542] = {.lex_state = 729, .external_lex_state = 2}, + [1543] = {.lex_state = 748, .external_lex_state = 2}, + [1544] = {.lex_state = 751, .external_lex_state = 2}, + [1545] = {.lex_state = 688}, + [1546] = {.lex_state = 751, .external_lex_state = 2}, + [1547] = {.lex_state = 729, .external_lex_state = 2}, + [1548] = {.lex_state = 751, .external_lex_state = 2}, + [1549] = {.lex_state = 751, .external_lex_state = 2}, + [1550] = {.lex_state = 765, .external_lex_state = 2}, + [1551] = {.lex_state = 765, .external_lex_state = 2}, + [1552] = {.lex_state = 718, .external_lex_state = 2}, + [1553] = {.lex_state = 740, .external_lex_state = 2}, + [1554] = {.lex_state = 703}, + [1555] = {.lex_state = 748, .external_lex_state = 2}, + [1556] = {.lex_state = 718, .external_lex_state = 2}, + [1557] = {.lex_state = 718, .external_lex_state = 2}, + [1558] = {.lex_state = 688}, + [1559] = {.lex_state = 749, .external_lex_state = 2}, + [1560] = {.lex_state = 729, .external_lex_state = 2}, + [1561] = {.lex_state = 690}, + [1562] = {.lex_state = 707}, + [1563] = {.lex_state = 751, .external_lex_state = 2}, + [1564] = {.lex_state = 765, .external_lex_state = 2}, + [1565] = {.lex_state = 729, .external_lex_state = 2}, + [1566] = {.lex_state = 751, .external_lex_state = 2}, + [1567] = {.lex_state = 745, .external_lex_state = 2}, + [1568] = {.lex_state = 765, .external_lex_state = 2}, + [1569] = {.lex_state = 751, .external_lex_state = 2}, + [1570] = {.lex_state = 751, .external_lex_state = 2}, + [1571] = {.lex_state = 751, .external_lex_state = 2}, + [1572] = {.lex_state = 729, .external_lex_state = 2}, + [1573] = {.lex_state = 707}, + [1574] = {.lex_state = 751, .external_lex_state = 2}, + [1575] = {.lex_state = 751, .external_lex_state = 2}, + [1576] = {.lex_state = 751, .external_lex_state = 2}, + [1577] = {.lex_state = 690}, + [1578] = {.lex_state = 749, .external_lex_state = 2}, + [1579] = {.lex_state = 751, .external_lex_state = 2}, + [1580] = {.lex_state = 707}, + [1581] = {.lex_state = 741, .external_lex_state = 2}, + [1582] = {.lex_state = 718, .external_lex_state = 2}, + [1583] = {.lex_state = 718, .external_lex_state = 2}, + [1584] = {.lex_state = 764, .external_lex_state = 2}, + [1585] = {.lex_state = 707}, + [1586] = {.lex_state = 707}, + [1587] = {.lex_state = 764, .external_lex_state = 2}, + [1588] = {.lex_state = 729, .external_lex_state = 2}, + [1589] = {.lex_state = 741, .external_lex_state = 2}, + [1590] = {.lex_state = 742, .external_lex_state = 2}, + [1591] = {.lex_state = 742, .external_lex_state = 2}, + [1592] = {.lex_state = 749, .external_lex_state = 2}, + [1593] = {.lex_state = 748, .external_lex_state = 2}, [1594] = {.lex_state = 748, .external_lex_state = 2}, - [1595] = {.lex_state = 683}, - [1596] = {.lex_state = 750, .external_lex_state = 2}, - [1597] = {.lex_state = 683}, - [1598] = {.lex_state = 727, .external_lex_state = 2}, - [1599] = {.lex_state = 750, .external_lex_state = 2}, - [1600] = {.lex_state = 747, .external_lex_state = 2}, - [1601] = {.lex_state = 744, .external_lex_state = 2}, - [1602] = {.lex_state = 764, .external_lex_state = 2}, - [1603] = {.lex_state = 728, .external_lex_state = 2}, - [1604] = {.lex_state = 739, .external_lex_state = 2}, - [1605] = {.lex_state = 687}, - [1606] = {.lex_state = 750, .external_lex_state = 2}, - [1607] = {.lex_state = 754, .external_lex_state = 2}, - [1608] = {.lex_state = 706}, - [1609] = {.lex_state = 764, .external_lex_state = 2}, - [1610] = {.lex_state = 750, .external_lex_state = 2}, - [1611] = {.lex_state = 750, .external_lex_state = 2}, - [1612] = {.lex_state = 753, .external_lex_state = 2}, - [1613] = {.lex_state = 689}, - [1614] = {.lex_state = 750, .external_lex_state = 2}, - [1615] = {.lex_state = 750, .external_lex_state = 2}, - [1616] = {.lex_state = 747, .external_lex_state = 2}, - [1617] = {.lex_state = 750, .external_lex_state = 2}, - [1618] = {.lex_state = 750, .external_lex_state = 2}, - [1619] = {.lex_state = 747, .external_lex_state = 2}, - [1620] = {.lex_state = 748, .external_lex_state = 2}, - [1621] = {.lex_state = 717, .external_lex_state = 2}, - [1622] = {.lex_state = 728, .external_lex_state = 2}, - [1623] = {.lex_state = 689}, - [1624] = {.lex_state = 764, .external_lex_state = 2}, - [1625] = {.lex_state = 747, .external_lex_state = 2}, - [1626] = {.lex_state = 750, .external_lex_state = 2}, - [1627] = {.lex_state = 750, .external_lex_state = 2}, - [1628] = {.lex_state = 706}, - [1629] = {.lex_state = 748, .external_lex_state = 2}, - [1630] = {.lex_state = 728, .external_lex_state = 2}, - [1631] = {.lex_state = 706}, - [1632] = {.lex_state = 750, .external_lex_state = 2}, - [1633] = {.lex_state = 706}, - [1634] = {.lex_state = 706}, - [1635] = {.lex_state = 764, .external_lex_state = 2}, - [1636] = {.lex_state = 717, .external_lex_state = 2}, - [1637] = {.lex_state = 717, .external_lex_state = 2}, - [1638] = {.lex_state = 750, .external_lex_state = 2}, - [1639] = {.lex_state = 728, .external_lex_state = 2}, - [1640] = {.lex_state = 727, .external_lex_state = 2}, - [1641] = {.lex_state = 717, .external_lex_state = 2}, - [1642] = {.lex_state = 750, .external_lex_state = 2}, - [1643] = {.lex_state = 750, .external_lex_state = 2}, - [1644] = {.lex_state = 728, .external_lex_state = 2}, - [1645] = {.lex_state = 687}, - [1646] = {.lex_state = 728, .external_lex_state = 2}, - [1647] = {.lex_state = 717, .external_lex_state = 2}, - [1648] = {.lex_state = 750, .external_lex_state = 2}, - [1649] = {.lex_state = 747, .external_lex_state = 2}, - [1650] = {.lex_state = 706}, - [1651] = {.lex_state = 728, .external_lex_state = 2}, - [1652] = {.lex_state = 728, .external_lex_state = 2}, - [1653] = {.lex_state = 702}, - [1654] = {.lex_state = 750, .external_lex_state = 2}, - [1655] = {.lex_state = 727, .external_lex_state = 2}, - [1656] = {.lex_state = 764, .external_lex_state = 2}, - [1657] = {.lex_state = 747, .external_lex_state = 2}, - [1658] = {.lex_state = 750, .external_lex_state = 2}, - [1659] = {.lex_state = 728, .external_lex_state = 2}, - [1660] = {.lex_state = 728, .external_lex_state = 2}, - [1661] = {.lex_state = 753, .external_lex_state = 2}, - [1662] = {.lex_state = 765, .external_lex_state = 2}, - [1663] = {.lex_state = 765, .external_lex_state = 2}, - [1664] = {.lex_state = 765, .external_lex_state = 2}, - [1665] = {.lex_state = 706}, - [1666] = {.lex_state = 758, .external_lex_state = 2}, - [1667] = {.lex_state = 763, .external_lex_state = 2}, - [1668] = {.lex_state = 706}, - [1669] = {.lex_state = 706}, - [1670] = {.lex_state = 763, .external_lex_state = 2}, - [1671] = {.lex_state = 765, .external_lex_state = 2}, - [1672] = {.lex_state = 763, .external_lex_state = 2}, - [1673] = {.lex_state = 728, .external_lex_state = 2}, - [1674] = {.lex_state = 706}, - [1675] = {.lex_state = 706}, - [1676] = {.lex_state = 706}, - [1677] = {.lex_state = 706}, - [1678] = {.lex_state = 706}, - [1679] = {.lex_state = 706}, - [1680] = {.lex_state = 706}, - [1681] = {.lex_state = 706}, - [1682] = {.lex_state = 706}, - [1683] = {.lex_state = 706}, - [1684] = {.lex_state = 706}, - [1685] = {.lex_state = 706}, - [1686] = {.lex_state = 706}, - [1687] = {.lex_state = 706}, - [1688] = {.lex_state = 706}, - [1689] = {.lex_state = 717, .external_lex_state = 2}, - [1690] = {.lex_state = 717, .external_lex_state = 2}, - [1691] = {.lex_state = 741, .external_lex_state = 2}, - [1692] = {.lex_state = 748, .external_lex_state = 2}, - [1693] = {.lex_state = 728, .external_lex_state = 2}, - [1694] = {.lex_state = 741, .external_lex_state = 2}, - [1695] = {.lex_state = 728, .external_lex_state = 2}, - [1696] = {.lex_state = 717, .external_lex_state = 2}, - [1697] = {.lex_state = 748, .external_lex_state = 2}, - [1698] = {.lex_state = 748, .external_lex_state = 2}, - [1699] = {.lex_state = 728, .external_lex_state = 2}, - [1700] = {.lex_state = 689}, - [1701] = {.lex_state = 689}, - [1702] = {.lex_state = 728, .external_lex_state = 2}, - [1703] = {.lex_state = 706}, - [1704] = {.lex_state = 717, .external_lex_state = 2}, - [1705] = {.lex_state = 764, .external_lex_state = 2}, - [1706] = {.lex_state = 764, .external_lex_state = 2}, - [1707] = {.lex_state = 717, .external_lex_state = 2}, - [1708] = {.lex_state = 742, .external_lex_state = 2}, - [1709] = {.lex_state = 764, .external_lex_state = 2}, - [1710] = {.lex_state = 764, .external_lex_state = 2}, - [1711] = {.lex_state = 706}, - [1712] = {.lex_state = 706}, - [1713] = {.lex_state = 706}, - [1714] = {.lex_state = 717, .external_lex_state = 2}, - [1715] = {.lex_state = 689}, - [1716] = {.lex_state = 689}, - [1717] = {.lex_state = 717, .external_lex_state = 2}, - [1718] = {.lex_state = 754, .external_lex_state = 2}, - [1719] = {.lex_state = 689}, - [1720] = {.lex_state = 689}, - [1721] = {.lex_state = 764, .external_lex_state = 2}, - [1722] = {.lex_state = 739, .external_lex_state = 2}, - [1723] = {.lex_state = 706}, - [1724] = {.lex_state = 706}, - [1725] = {.lex_state = 706}, - [1726] = {.lex_state = 706}, - [1727] = {.lex_state = 693}, - [1728] = {.lex_state = 717, .external_lex_state = 2}, - [1729] = {.lex_state = 717, .external_lex_state = 2}, - [1730] = {.lex_state = 740, .external_lex_state = 2}, - [1731] = {.lex_state = 706}, - [1732] = {.lex_state = 706}, - [1733] = {.lex_state = 747, .external_lex_state = 2}, - [1734] = {.lex_state = 747, .external_lex_state = 2}, - [1735] = {.lex_state = 702}, - [1736] = {.lex_state = 747, .external_lex_state = 2}, - [1737] = {.lex_state = 747, .external_lex_state = 2}, - [1738] = {.lex_state = 758, .external_lex_state = 2}, - [1739] = {.lex_state = 691}, - [1740] = {.lex_state = 744, .external_lex_state = 2}, - [1741] = {.lex_state = 728, .external_lex_state = 2}, - [1742] = {.lex_state = 740, .external_lex_state = 2}, - [1743] = {.lex_state = 728, .external_lex_state = 2}, - [1744] = {.lex_state = 765, .external_lex_state = 2}, - [1745] = {.lex_state = 747, .external_lex_state = 2}, - [1746] = {.lex_state = 747, .external_lex_state = 2}, - [1747] = {.lex_state = 728, .external_lex_state = 2}, - [1748] = {.lex_state = 706}, - [1749] = {.lex_state = 706}, - [1750] = {.lex_state = 706}, - [1751] = {.lex_state = 706}, - [1752] = {.lex_state = 743, .external_lex_state = 2}, - [1753] = {.lex_state = 706}, - [1754] = {.lex_state = 743, .external_lex_state = 2}, - [1755] = {.lex_state = 743, .external_lex_state = 2}, - [1756] = {.lex_state = 743, .external_lex_state = 2}, - [1757] = {.lex_state = 743, .external_lex_state = 2}, - [1758] = {.lex_state = 743, .external_lex_state = 2}, - [1759] = {.lex_state = 743, .external_lex_state = 2}, - [1760] = {.lex_state = 743, .external_lex_state = 2}, - [1761] = {.lex_state = 743, .external_lex_state = 2}, - [1762] = {.lex_state = 743, .external_lex_state = 2}, - [1763] = {.lex_state = 743, .external_lex_state = 2}, - [1764] = {.lex_state = 758, .external_lex_state = 2}, - [1765] = {.lex_state = 706}, - [1766] = {.lex_state = 743, .external_lex_state = 2}, - [1767] = {.lex_state = 743, .external_lex_state = 2}, - [1768] = {.lex_state = 743, .external_lex_state = 2}, - [1769] = {.lex_state = 743, .external_lex_state = 2}, - [1770] = {.lex_state = 743, .external_lex_state = 2}, - [1771] = {.lex_state = 706}, - [1772] = {.lex_state = 706}, - [1773] = {.lex_state = 743, .external_lex_state = 2}, - [1774] = {.lex_state = 35, .external_lex_state = 2}, - [1775] = {.lex_state = 706}, - [1776] = {.lex_state = 706}, - [1777] = {.lex_state = 706}, - [1778] = {.lex_state = 706}, - [1779] = {.lex_state = 706}, - [1780] = {.lex_state = 706}, - [1781] = {.lex_state = 743, .external_lex_state = 2}, - [1782] = {.lex_state = 706}, - [1783] = {.lex_state = 706}, - [1784] = {.lex_state = 743, .external_lex_state = 2}, - [1785] = {.lex_state = 743, .external_lex_state = 2}, - [1786] = {.lex_state = 743, .external_lex_state = 2}, - [1787] = {.lex_state = 706}, - [1788] = {.lex_state = 706}, - [1789] = {.lex_state = 706}, - [1790] = {.lex_state = 706}, - [1791] = {.lex_state = 743, .external_lex_state = 2}, - [1792] = {.lex_state = 706}, - [1793] = {.lex_state = 743, .external_lex_state = 2}, - [1794] = {.lex_state = 706}, - [1795] = {.lex_state = 35, .external_lex_state = 2}, - [1796] = {.lex_state = 743, .external_lex_state = 2}, - [1797] = {.lex_state = 706}, - [1798] = {.lex_state = 706}, - [1799] = {.lex_state = 706}, - [1800] = {.lex_state = 706}, - [1801] = {.lex_state = 706}, - [1802] = {.lex_state = 706}, - [1803] = {.lex_state = 35, .external_lex_state = 2}, - [1804] = {.lex_state = 706}, - [1805] = {.lex_state = 743, .external_lex_state = 2}, - [1806] = {.lex_state = 706}, - [1807] = {.lex_state = 763, .external_lex_state = 2}, - [1808] = {.lex_state = 706}, - [1809] = {.lex_state = 706}, - [1810] = {.lex_state = 706}, - [1811] = {.lex_state = 706}, - [1812] = {.lex_state = 706}, - [1813] = {.lex_state = 706}, - [1814] = {.lex_state = 706}, - [1815] = {.lex_state = 706}, - [1816] = {.lex_state = 706}, - [1817] = {.lex_state = 706}, - [1818] = {.lex_state = 706}, - [1819] = {.lex_state = 706}, - [1820] = {.lex_state = 706}, - [1821] = {.lex_state = 706}, - [1822] = {.lex_state = 706}, - [1823] = {.lex_state = 706}, - [1824] = {.lex_state = 706}, - [1825] = {.lex_state = 706}, - [1826] = {.lex_state = 706}, - [1827] = {.lex_state = 763, .external_lex_state = 2}, - [1828] = {.lex_state = 706}, - [1829] = {.lex_state = 706}, - [1830] = {.lex_state = 706}, - [1831] = {.lex_state = 706}, - [1832] = {.lex_state = 706}, - [1833] = {.lex_state = 691}, - [1834] = {.lex_state = 706}, - [1835] = {.lex_state = 706}, - [1836] = {.lex_state = 706}, - [1837] = {.lex_state = 706}, - [1838] = {.lex_state = 706}, - [1839] = {.lex_state = 706}, - [1840] = {.lex_state = 743, .external_lex_state = 2}, - [1841] = {.lex_state = 706}, - [1842] = {.lex_state = 706}, - [1843] = {.lex_state = 706}, - [1844] = {.lex_state = 706}, - [1845] = {.lex_state = 706}, - [1846] = {.lex_state = 743, .external_lex_state = 2}, - [1847] = {.lex_state = 742, .external_lex_state = 2}, - [1848] = {.lex_state = 706}, - [1849] = {.lex_state = 706}, - [1850] = {.lex_state = 706}, - [1851] = {.lex_state = 706}, - [1852] = {.lex_state = 706}, - [1853] = {.lex_state = 706}, - [1854] = {.lex_state = 758, .external_lex_state = 2}, - [1855] = {.lex_state = 740, .external_lex_state = 2}, - [1856] = {.lex_state = 743, .external_lex_state = 2}, - [1857] = {.lex_state = 706}, - [1858] = {.lex_state = 706}, - [1859] = {.lex_state = 706}, - [1860] = {.lex_state = 706}, - [1861] = {.lex_state = 706}, - [1862] = {.lex_state = 706}, - [1863] = {.lex_state = 706}, - [1864] = {.lex_state = 743, .external_lex_state = 2}, - [1865] = {.lex_state = 706}, - [1866] = {.lex_state = 706}, - [1867] = {.lex_state = 706}, - [1868] = {.lex_state = 706}, - [1869] = {.lex_state = 706}, - [1870] = {.lex_state = 706}, - [1871] = {.lex_state = 717, .external_lex_state = 2}, - [1872] = {.lex_state = 706}, - [1873] = {.lex_state = 706}, - [1874] = {.lex_state = 717, .external_lex_state = 2}, - [1875] = {.lex_state = 706}, - [1876] = {.lex_state = 706}, - [1877] = {.lex_state = 706}, - [1878] = {.lex_state = 743, .external_lex_state = 2}, - [1879] = {.lex_state = 743, .external_lex_state = 2}, - [1880] = {.lex_state = 706}, - [1881] = {.lex_state = 743, .external_lex_state = 2}, - [1882] = {.lex_state = 743, .external_lex_state = 2}, - [1883] = {.lex_state = 706}, - [1884] = {.lex_state = 706}, - [1885] = {.lex_state = 743, .external_lex_state = 2}, - [1886] = {.lex_state = 706}, - [1887] = {.lex_state = 695}, - [1888] = {.lex_state = 706}, - [1889] = {.lex_state = 740, .external_lex_state = 2}, - [1890] = {.lex_state = 743, .external_lex_state = 2}, - [1891] = {.lex_state = 706}, - [1892] = {.lex_state = 743, .external_lex_state = 2}, - [1893] = {.lex_state = 695}, - [1894] = {.lex_state = 706}, - [1895] = {.lex_state = 743, .external_lex_state = 2}, - [1896] = {.lex_state = 743, .external_lex_state = 2}, - [1897] = {.lex_state = 743, .external_lex_state = 2}, - [1898] = {.lex_state = 706}, - [1899] = {.lex_state = 706}, - [1900] = {.lex_state = 706}, - [1901] = {.lex_state = 743, .external_lex_state = 2}, - [1902] = {.lex_state = 743, .external_lex_state = 2}, - [1903] = {.lex_state = 706}, - [1904] = {.lex_state = 706}, - [1905] = {.lex_state = 743, .external_lex_state = 2}, - [1906] = {.lex_state = 706}, - [1907] = {.lex_state = 706}, - [1908] = {.lex_state = 743, .external_lex_state = 2}, - [1909] = {.lex_state = 706}, - [1910] = {.lex_state = 706}, - [1911] = {.lex_state = 743, .external_lex_state = 2}, - [1912] = {.lex_state = 706}, - [1913] = {.lex_state = 743, .external_lex_state = 2}, - [1914] = {.lex_state = 743, .external_lex_state = 2}, - [1915] = {.lex_state = 743, .external_lex_state = 2}, - [1916] = {.lex_state = 706}, - [1917] = {.lex_state = 706}, - [1918] = {.lex_state = 743, .external_lex_state = 2}, - [1919] = {.lex_state = 763, .external_lex_state = 2}, - [1920] = {.lex_state = 706}, - [1921] = {.lex_state = 706}, - [1922] = {.lex_state = 706}, - [1923] = {.lex_state = 743, .external_lex_state = 2}, - [1924] = {.lex_state = 743, .external_lex_state = 2}, - [1925] = {.lex_state = 743, .external_lex_state = 2}, - [1926] = {.lex_state = 743, .external_lex_state = 2}, - [1927] = {.lex_state = 765, .external_lex_state = 2}, - [1928] = {.lex_state = 743, .external_lex_state = 2}, - [1929] = {.lex_state = 743, .external_lex_state = 2}, - [1930] = {.lex_state = 693}, - [1931] = {.lex_state = 765, .external_lex_state = 2}, - [1932] = {.lex_state = 706}, - [1933] = {.lex_state = 765, .external_lex_state = 2}, - [1934] = {.lex_state = 765, .external_lex_state = 2}, - [1935] = {.lex_state = 743, .external_lex_state = 2}, - [1936] = {.lex_state = 743, .external_lex_state = 2}, - [1937] = {.lex_state = 743, .external_lex_state = 2}, - [1938] = {.lex_state = 743, .external_lex_state = 2}, - [1939] = {.lex_state = 743, .external_lex_state = 2}, - [1940] = {.lex_state = 743, .external_lex_state = 2}, - [1941] = {.lex_state = 706}, - [1942] = {.lex_state = 743, .external_lex_state = 2}, - [1943] = {.lex_state = 743, .external_lex_state = 2}, - [1944] = {.lex_state = 706}, - [1945] = {.lex_state = 743, .external_lex_state = 2}, - [1946] = {.lex_state = 743, .external_lex_state = 2}, - [1947] = {.lex_state = 743, .external_lex_state = 2}, - [1948] = {.lex_state = 706}, - [1949] = {.lex_state = 743, .external_lex_state = 2}, - [1950] = {.lex_state = 743, .external_lex_state = 2}, - [1951] = {.lex_state = 743, .external_lex_state = 2}, - [1952] = {.lex_state = 743, .external_lex_state = 2}, - [1953] = {.lex_state = 743, .external_lex_state = 2}, - [1954] = {.lex_state = 743, .external_lex_state = 2}, - [1955] = {.lex_state = 743, .external_lex_state = 2}, - [1956] = {.lex_state = 743, .external_lex_state = 2}, - [1957] = {.lex_state = 741, .external_lex_state = 2}, - [1958] = {.lex_state = 743, .external_lex_state = 2}, - [1959] = {.lex_state = 702}, - [1960] = {.lex_state = 706}, - [1961] = {.lex_state = 741, .external_lex_state = 2}, - [1962] = {.lex_state = 706}, - [1963] = {.lex_state = 743, .external_lex_state = 2}, - [1964] = {.lex_state = 748, .external_lex_state = 2}, - [1965] = {.lex_state = 765, .external_lex_state = 2}, - [1966] = {.lex_state = 706}, - [1967] = {.lex_state = 706}, - [1968] = {.lex_state = 743, .external_lex_state = 2}, - [1969] = {.lex_state = 743, .external_lex_state = 2}, - [1970] = {.lex_state = 706}, - [1971] = {.lex_state = 743, .external_lex_state = 2}, - [1972] = {.lex_state = 743, .external_lex_state = 2}, - [1973] = {.lex_state = 706}, - [1974] = {.lex_state = 706}, - [1975] = {.lex_state = 706}, - [1976] = {.lex_state = 748, .external_lex_state = 2}, - [1977] = {.lex_state = 748, .external_lex_state = 2}, - [1978] = {.lex_state = 706}, - [1979] = {.lex_state = 706}, - [1980] = {.lex_state = 743, .external_lex_state = 2}, - [1981] = {.lex_state = 743, .external_lex_state = 2}, - [1982] = {.lex_state = 706}, - [1983] = {.lex_state = 743, .external_lex_state = 2}, - [1984] = {.lex_state = 706}, - [1985] = {.lex_state = 706}, - [1986] = {.lex_state = 706}, - [1987] = {.lex_state = 706}, - [1988] = {.lex_state = 706}, - [1989] = {.lex_state = 706}, - [1990] = {.lex_state = 706}, - [1991] = {.lex_state = 706}, - [1992] = {.lex_state = 706}, - [1993] = {.lex_state = 706}, - [1994] = {.lex_state = 706}, - [1995] = {.lex_state = 706}, - [1996] = {.lex_state = 743, .external_lex_state = 2}, - [1997] = {.lex_state = 706}, - [1998] = {.lex_state = 706}, - [1999] = {.lex_state = 706}, - [2000] = {.lex_state = 706}, - [2001] = {.lex_state = 706}, - [2002] = {.lex_state = 743, .external_lex_state = 2}, - [2003] = {.lex_state = 743, .external_lex_state = 2}, - [2004] = {.lex_state = 743, .external_lex_state = 2}, - [2005] = {.lex_state = 743, .external_lex_state = 2}, - [2006] = {.lex_state = 743, .external_lex_state = 2}, - [2007] = {.lex_state = 743, .external_lex_state = 2}, - [2008] = {.lex_state = 706}, - [2009] = {.lex_state = 743, .external_lex_state = 2}, - [2010] = {.lex_state = 743, .external_lex_state = 2}, - [2011] = {.lex_state = 743, .external_lex_state = 2}, - [2012] = {.lex_state = 743, .external_lex_state = 2}, - [2013] = {.lex_state = 743, .external_lex_state = 2}, - [2014] = {.lex_state = 743, .external_lex_state = 2}, - [2015] = {.lex_state = 743, .external_lex_state = 2}, - [2016] = {.lex_state = 743, .external_lex_state = 2}, - [2017] = {.lex_state = 743, .external_lex_state = 2}, - [2018] = {.lex_state = 743, .external_lex_state = 2}, - [2019] = {.lex_state = 743, .external_lex_state = 2}, - [2020] = {.lex_state = 743, .external_lex_state = 2}, - [2021] = {.lex_state = 743, .external_lex_state = 2}, - [2022] = {.lex_state = 743, .external_lex_state = 2}, - [2023] = {.lex_state = 743, .external_lex_state = 2}, - [2024] = {.lex_state = 743, .external_lex_state = 2}, - [2025] = {.lex_state = 41, .external_lex_state = 2}, - [2026] = {.lex_state = 743, .external_lex_state = 2}, - [2027] = {.lex_state = 743, .external_lex_state = 2}, - [2028] = {.lex_state = 743, .external_lex_state = 2}, - [2029] = {.lex_state = 743, .external_lex_state = 2}, - [2030] = {.lex_state = 743, .external_lex_state = 2}, - [2031] = {.lex_state = 743, .external_lex_state = 2}, - [2032] = {.lex_state = 743, .external_lex_state = 2}, - [2033] = {.lex_state = 743, .external_lex_state = 2}, - [2034] = {.lex_state = 743, .external_lex_state = 2}, - [2035] = {.lex_state = 743, .external_lex_state = 2}, - [2036] = {.lex_state = 743, .external_lex_state = 2}, - [2037] = {.lex_state = 743, .external_lex_state = 2}, - [2038] = {.lex_state = 743, .external_lex_state = 2}, - [2039] = {.lex_state = 743, .external_lex_state = 2}, - [2040] = {.lex_state = 743, .external_lex_state = 2}, - [2041] = {.lex_state = 743, .external_lex_state = 2}, - [2042] = {.lex_state = 743, .external_lex_state = 2}, - [2043] = {.lex_state = 743, .external_lex_state = 2}, - [2044] = {.lex_state = 743, .external_lex_state = 2}, - [2045] = {.lex_state = 743, .external_lex_state = 2}, - [2046] = {.lex_state = 743, .external_lex_state = 2}, - [2047] = {.lex_state = 743, .external_lex_state = 2}, - [2048] = {.lex_state = 743, .external_lex_state = 2}, - [2049] = {.lex_state = 743, .external_lex_state = 2}, - [2050] = {.lex_state = 743, .external_lex_state = 2}, - [2051] = {.lex_state = 706}, - [2052] = {.lex_state = 743, .external_lex_state = 2}, - [2053] = {.lex_state = 743, .external_lex_state = 2}, - [2054] = {.lex_state = 743, .external_lex_state = 2}, - [2055] = {.lex_state = 706}, - [2056] = {.lex_state = 743, .external_lex_state = 2}, - [2057] = {.lex_state = 743, .external_lex_state = 2}, - [2058] = {.lex_state = 743, .external_lex_state = 2}, - [2059] = {.lex_state = 743, .external_lex_state = 2}, - [2060] = {.lex_state = 743, .external_lex_state = 2}, - [2061] = {.lex_state = 697}, - [2062] = {.lex_state = 41, .external_lex_state = 2}, - [2063] = {.lex_state = 699}, - [2064] = {.lex_state = 706}, - [2065] = {.lex_state = 706}, - [2066] = {.lex_state = 743, .external_lex_state = 2}, - [2067] = {.lex_state = 41, .external_lex_state = 2}, - [2068] = {.lex_state = 706}, - [2069] = {.lex_state = 697}, - [2070] = {.lex_state = 699}, - [2071] = {.lex_state = 697}, - [2072] = {.lex_state = 706}, - [2073] = {.lex_state = 697}, - [2074] = {.lex_state = 706}, - [2075] = {.lex_state = 699}, - [2076] = {.lex_state = 743, .external_lex_state = 2}, - [2077] = {.lex_state = 743, .external_lex_state = 2}, - [2078] = {.lex_state = 743, .external_lex_state = 2}, - [2079] = {.lex_state = 743, .external_lex_state = 2}, - [2080] = {.lex_state = 706}, - [2081] = {.lex_state = 743, .external_lex_state = 2}, - [2082] = {.lex_state = 706}, - [2083] = {.lex_state = 706}, - [2084] = {.lex_state = 706}, - [2085] = {.lex_state = 743, .external_lex_state = 2}, - [2086] = {.lex_state = 695}, - [2087] = {.lex_state = 743, .external_lex_state = 2}, - [2088] = {.lex_state = 743, .external_lex_state = 2}, - [2089] = {.lex_state = 706}, - [2090] = {.lex_state = 706}, - [2091] = {.lex_state = 743, .external_lex_state = 2}, - [2092] = {.lex_state = 706}, - [2093] = {.lex_state = 41, .external_lex_state = 2}, - [2094] = {.lex_state = 743, .external_lex_state = 2}, - [2095] = {.lex_state = 706}, - [2096] = {.lex_state = 697}, - [2097] = {.lex_state = 743, .external_lex_state = 2}, - [2098] = {.lex_state = 706}, - [2099] = {.lex_state = 706}, - [2100] = {.lex_state = 706}, - [2101] = {.lex_state = 706}, - [2102] = {.lex_state = 697}, - [2103] = {.lex_state = 697}, - [2104] = {.lex_state = 706}, - [2105] = {.lex_state = 743, .external_lex_state = 2}, - [2106] = {.lex_state = 697}, - [2107] = {.lex_state = 743, .external_lex_state = 2}, - [2108] = {.lex_state = 706}, - [2109] = {.lex_state = 743, .external_lex_state = 2}, - [2110] = {.lex_state = 706}, - [2111] = {.lex_state = 697}, - [2112] = {.lex_state = 743, .external_lex_state = 2}, - [2113] = {.lex_state = 743, .external_lex_state = 2}, - [2114] = {.lex_state = 743, .external_lex_state = 2}, - [2115] = {.lex_state = 743, .external_lex_state = 2}, - [2116] = {.lex_state = 743, .external_lex_state = 2}, - [2117] = {.lex_state = 743, .external_lex_state = 2}, - [2118] = {.lex_state = 743, .external_lex_state = 2}, - [2119] = {.lex_state = 743, .external_lex_state = 2}, - [2120] = {.lex_state = 706}, - [2121] = {.lex_state = 743, .external_lex_state = 2}, - [2122] = {.lex_state = 706}, - [2123] = {.lex_state = 706}, - [2124] = {.lex_state = 706}, - [2125] = {.lex_state = 706}, - [2126] = {.lex_state = 706}, - [2127] = {.lex_state = 743, .external_lex_state = 2}, - [2128] = {.lex_state = 706}, - [2129] = {.lex_state = 706}, - [2130] = {.lex_state = 706}, - [2131] = {.lex_state = 699}, - [2132] = {.lex_state = 695}, - [2133] = {.lex_state = 743, .external_lex_state = 2}, - [2134] = {.lex_state = 743, .external_lex_state = 2}, - [2135] = {.lex_state = 743, .external_lex_state = 2}, - [2136] = {.lex_state = 41, .external_lex_state = 2}, - [2137] = {.lex_state = 41, .external_lex_state = 2}, - [2138] = {.lex_state = 699}, - [2139] = {.lex_state = 706}, - [2140] = {.lex_state = 706}, - [2141] = {.lex_state = 706}, - [2142] = {.lex_state = 706}, - [2143] = {.lex_state = 706}, - [2144] = {.lex_state = 706}, - [2145] = {.lex_state = 706}, - [2146] = {.lex_state = 706}, - [2147] = {.lex_state = 706}, - [2148] = {.lex_state = 706}, - [2149] = {.lex_state = 706}, - [2150] = {.lex_state = 706}, - [2151] = {.lex_state = 706}, - [2152] = {.lex_state = 706}, - [2153] = {.lex_state = 706}, - [2154] = {.lex_state = 706}, - [2155] = {.lex_state = 706}, - [2156] = {.lex_state = 706}, - [2157] = {.lex_state = 706}, - [2158] = {.lex_state = 706}, - [2159] = {.lex_state = 699}, - [2160] = {.lex_state = 699}, - [2161] = {.lex_state = 706}, - [2162] = {.lex_state = 736, .external_lex_state = 2}, - [2163] = {.lex_state = 706}, - [2164] = {.lex_state = 706}, - [2165] = {.lex_state = 706}, - [2166] = {.lex_state = 706}, - [2167] = {.lex_state = 706}, - [2168] = {.lex_state = 706}, - [2169] = {.lex_state = 706}, - [2170] = {.lex_state = 699}, - [2171] = {.lex_state = 699}, - [2172] = {.lex_state = 706}, - [2173] = {.lex_state = 706}, - [2174] = {.lex_state = 706}, - [2175] = {.lex_state = 706}, - [2176] = {.lex_state = 706}, - [2177] = {.lex_state = 706}, - [2178] = {.lex_state = 706}, - [2179] = {.lex_state = 706}, - [2180] = {.lex_state = 706}, - [2181] = {.lex_state = 706}, - [2182] = {.lex_state = 706}, - [2183] = {.lex_state = 706}, - [2184] = {.lex_state = 706}, - [2185] = {.lex_state = 706}, - [2186] = {.lex_state = 706}, - [2187] = {.lex_state = 706}, - [2188] = {.lex_state = 706}, - [2189] = {.lex_state = 163, .external_lex_state = 2}, - [2190] = {.lex_state = 706}, - [2191] = {.lex_state = 706}, - [2192] = {.lex_state = 706}, - [2193] = {.lex_state = 706}, - [2194] = {.lex_state = 697}, - [2195] = {.lex_state = 706}, - [2196] = {.lex_state = 706}, - [2197] = {.lex_state = 706}, - [2198] = {.lex_state = 706}, - [2199] = {.lex_state = 706}, - [2200] = {.lex_state = 706}, - [2201] = {.lex_state = 706}, - [2202] = {.lex_state = 706}, - [2203] = {.lex_state = 706}, - [2204] = {.lex_state = 706}, - [2205] = {.lex_state = 706}, - [2206] = {.lex_state = 706}, - [2207] = {.lex_state = 706}, - [2208] = {.lex_state = 697}, - [2209] = {.lex_state = 706}, - [2210] = {.lex_state = 163, .external_lex_state = 2}, - [2211] = {.lex_state = 706}, - [2212] = {.lex_state = 706}, - [2213] = {.lex_state = 706}, - [2214] = {.lex_state = 706}, - [2215] = {.lex_state = 697}, - [2216] = {.lex_state = 706}, - [2217] = {.lex_state = 706}, - [2218] = {.lex_state = 706}, - [2219] = {.lex_state = 699}, - [2220] = {.lex_state = 706}, - [2221] = {.lex_state = 706}, - [2222] = {.lex_state = 706}, - [2223] = {.lex_state = 697}, - [2224] = {.lex_state = 706}, - [2225] = {.lex_state = 706}, - [2226] = {.lex_state = 706}, - [2227] = {.lex_state = 706}, - [2228] = {.lex_state = 706}, - [2229] = {.lex_state = 697}, - [2230] = {.lex_state = 706}, - [2231] = {.lex_state = 706}, - [2232] = {.lex_state = 706}, - [2233] = {.lex_state = 163, .external_lex_state = 2}, - [2234] = {.lex_state = 706}, - [2235] = {.lex_state = 706}, - [2236] = {.lex_state = 706}, - [2237] = {.lex_state = 706}, - [2238] = {.lex_state = 706}, - [2239] = {.lex_state = 706}, - [2240] = {.lex_state = 706}, - [2241] = {.lex_state = 706}, - [2242] = {.lex_state = 706}, - [2243] = {.lex_state = 706}, - [2244] = {.lex_state = 706}, - [2245] = {.lex_state = 706}, - [2246] = {.lex_state = 736, .external_lex_state = 2}, - [2247] = {.lex_state = 736, .external_lex_state = 2}, - [2248] = {.lex_state = 702}, - [2249] = {.lex_state = 706}, - [2250] = {.lex_state = 706}, - [2251] = {.lex_state = 706}, - [2252] = {.lex_state = 697}, - [2253] = {.lex_state = 706}, - [2254] = {.lex_state = 706}, - [2255] = {.lex_state = 706}, - [2256] = {.lex_state = 706}, - [2257] = {.lex_state = 163, .external_lex_state = 2}, - [2258] = {.lex_state = 706}, - [2259] = {.lex_state = 706}, - [2260] = {.lex_state = 697}, - [2261] = {.lex_state = 706}, - [2262] = {.lex_state = 706}, - [2263] = {.lex_state = 706}, - [2264] = {.lex_state = 706}, - [2265] = {.lex_state = 706}, - [2266] = {.lex_state = 706}, - [2267] = {.lex_state = 706}, - [2268] = {.lex_state = 697}, - [2269] = {.lex_state = 736, .external_lex_state = 2}, - [2270] = {.lex_state = 706}, - [2271] = {.lex_state = 706}, - [2272] = {.lex_state = 706}, - [2273] = {.lex_state = 706}, - [2274] = {.lex_state = 706}, - [2275] = {.lex_state = 697}, - [2276] = {.lex_state = 706}, - [2277] = {.lex_state = 706}, - [2278] = {.lex_state = 706}, - [2279] = {.lex_state = 706}, - [2280] = {.lex_state = 706}, - [2281] = {.lex_state = 706}, - [2282] = {.lex_state = 697}, - [2283] = {.lex_state = 706}, - [2284] = {.lex_state = 706}, - [2285] = {.lex_state = 706}, - [2286] = {.lex_state = 706}, - [2287] = {.lex_state = 706}, - [2288] = {.lex_state = 706}, - [2289] = {.lex_state = 706}, - [2290] = {.lex_state = 706}, - [2291] = {.lex_state = 706}, - [2292] = {.lex_state = 706}, - [2293] = {.lex_state = 706}, - [2294] = {.lex_state = 706}, - [2295] = {.lex_state = 706}, - [2296] = {.lex_state = 706}, - [2297] = {.lex_state = 706}, - [2298] = {.lex_state = 706}, - [2299] = {.lex_state = 706}, - [2300] = {.lex_state = 706}, - [2301] = {.lex_state = 41, .external_lex_state = 2}, - [2302] = {.lex_state = 706}, - [2303] = {.lex_state = 706}, - [2304] = {.lex_state = 706}, - [2305] = {.lex_state = 706}, - [2306] = {.lex_state = 706}, - [2307] = {.lex_state = 706}, - [2308] = {.lex_state = 706}, - [2309] = {.lex_state = 706}, - [2310] = {.lex_state = 706}, - [2311] = {.lex_state = 706}, - [2312] = {.lex_state = 706}, - [2313] = {.lex_state = 706}, - [2314] = {.lex_state = 706}, - [2315] = {.lex_state = 706}, - [2316] = {.lex_state = 706}, - [2317] = {.lex_state = 706}, - [2318] = {.lex_state = 706}, - [2319] = {.lex_state = 706}, - [2320] = {.lex_state = 706}, - [2321] = {.lex_state = 706}, - [2322] = {.lex_state = 706}, - [2323] = {.lex_state = 706}, - [2324] = {.lex_state = 706}, - [2325] = {.lex_state = 706}, - [2326] = {.lex_state = 697}, - [2327] = {.lex_state = 706}, - [2328] = {.lex_state = 41, .external_lex_state = 2}, - [2329] = {.lex_state = 41, .external_lex_state = 2}, - [2330] = {.lex_state = 706}, - [2331] = {.lex_state = 706}, - [2332] = {.lex_state = 706}, - [2333] = {.lex_state = 706}, - [2334] = {.lex_state = 706}, - [2335] = {.lex_state = 706}, - [2336] = {.lex_state = 706}, - [2337] = {.lex_state = 706}, - [2338] = {.lex_state = 706}, - [2339] = {.lex_state = 706}, - [2340] = {.lex_state = 706}, - [2341] = {.lex_state = 41, .external_lex_state = 2}, - [2342] = {.lex_state = 706}, - [2343] = {.lex_state = 706}, - [2344] = {.lex_state = 706}, - [2345] = {.lex_state = 706}, - [2346] = {.lex_state = 41, .external_lex_state = 2}, - [2347] = {.lex_state = 706}, - [2348] = {.lex_state = 706}, - [2349] = {.lex_state = 706}, - [2350] = {.lex_state = 706}, - [2351] = {.lex_state = 706}, - [2352] = {.lex_state = 706}, - [2353] = {.lex_state = 706}, - [2354] = {.lex_state = 41, .external_lex_state = 2}, - [2355] = {.lex_state = 706}, - [2356] = {.lex_state = 706}, - [2357] = {.lex_state = 706}, - [2358] = {.lex_state = 706}, - [2359] = {.lex_state = 706}, - [2360] = {.lex_state = 41, .external_lex_state = 2}, - [2361] = {.lex_state = 706}, - [2362] = {.lex_state = 706}, - [2363] = {.lex_state = 706}, - [2364] = {.lex_state = 706}, - [2365] = {.lex_state = 41, .external_lex_state = 2}, - [2366] = {.lex_state = 706}, - [2367] = {.lex_state = 706}, - [2368] = {.lex_state = 706}, - [2369] = {.lex_state = 706}, - [2370] = {.lex_state = 706}, - [2371] = {.lex_state = 706}, - [2372] = {.lex_state = 41, .external_lex_state = 2}, - [2373] = {.lex_state = 706}, - [2374] = {.lex_state = 706}, - [2375] = {.lex_state = 706}, - [2376] = {.lex_state = 706}, - [2377] = {.lex_state = 706}, - [2378] = {.lex_state = 706}, - [2379] = {.lex_state = 706}, - [2380] = {.lex_state = 706}, - [2381] = {.lex_state = 706}, - [2382] = {.lex_state = 41, .external_lex_state = 2}, - [2383] = {.lex_state = 706}, - [2384] = {.lex_state = 706}, - [2385] = {.lex_state = 706}, - [2386] = {.lex_state = 706}, - [2387] = {.lex_state = 706}, - [2388] = {.lex_state = 706}, - [2389] = {.lex_state = 706}, - [2390] = {.lex_state = 706}, - [2391] = {.lex_state = 706}, - [2392] = {.lex_state = 706}, - [2393] = {.lex_state = 706}, - [2394] = {.lex_state = 706}, - [2395] = {.lex_state = 706}, - [2396] = {.lex_state = 706}, - [2397] = {.lex_state = 706}, - [2398] = {.lex_state = 706}, - [2399] = {.lex_state = 706}, - [2400] = {.lex_state = 706}, - [2401] = {.lex_state = 706}, - [2402] = {.lex_state = 706}, - [2403] = {.lex_state = 706}, - [2404] = {.lex_state = 706}, - [2405] = {.lex_state = 706}, - [2406] = {.lex_state = 706}, - [2407] = {.lex_state = 706}, - [2408] = {.lex_state = 706}, - [2409] = {.lex_state = 706}, - [2410] = {.lex_state = 706}, - [2411] = {.lex_state = 706}, - [2412] = {.lex_state = 706}, - [2413] = {.lex_state = 706}, - [2414] = {.lex_state = 706}, - [2415] = {.lex_state = 706}, - [2416] = {.lex_state = 706}, - [2417] = {.lex_state = 706}, - [2418] = {.lex_state = 706}, - [2419] = {.lex_state = 762, .external_lex_state = 2}, - [2420] = {.lex_state = 706}, - [2421] = {.lex_state = 706}, - [2422] = {.lex_state = 762, .external_lex_state = 2}, - [2423] = {.lex_state = 706}, - [2424] = {.lex_state = 706}, - [2425] = {.lex_state = 706}, - [2426] = {.lex_state = 706}, - [2427] = {.lex_state = 706}, - [2428] = {.lex_state = 706}, - [2429] = {.lex_state = 706}, - [2430] = {.lex_state = 706}, - [2431] = {.lex_state = 706}, - [2432] = {.lex_state = 706}, - [2433] = {.lex_state = 706}, - [2434] = {.lex_state = 706}, - [2435] = {.lex_state = 706}, - [2436] = {.lex_state = 706}, - [2437] = {.lex_state = 762, .external_lex_state = 2}, - [2438] = {.lex_state = 706}, - [2439] = {.lex_state = 706}, - [2440] = {.lex_state = 706}, - [2441] = {.lex_state = 706}, - [2442] = {.lex_state = 706}, - [2443] = {.lex_state = 706}, - [2444] = {.lex_state = 163, .external_lex_state = 2}, - [2445] = {.lex_state = 706}, - [2446] = {.lex_state = 706}, - [2447] = {.lex_state = 706}, - [2448] = {.lex_state = 706}, - [2449] = {.lex_state = 183, .external_lex_state = 2}, - [2450] = {.lex_state = 706}, - [2451] = {.lex_state = 706}, - [2452] = {.lex_state = 706}, - [2453] = {.lex_state = 163, .external_lex_state = 2}, - [2454] = {.lex_state = 706}, - [2455] = {.lex_state = 706}, - [2456] = {.lex_state = 706}, - [2457] = {.lex_state = 706}, - [2458] = {.lex_state = 706}, - [2459] = {.lex_state = 706}, - [2460] = {.lex_state = 706}, - [2461] = {.lex_state = 706}, - [2462] = {.lex_state = 706}, - [2463] = {.lex_state = 706}, - [2464] = {.lex_state = 706}, - [2465] = {.lex_state = 706}, - [2466] = {.lex_state = 706}, - [2467] = {.lex_state = 706}, - [2468] = {.lex_state = 706}, - [2469] = {.lex_state = 706}, - [2470] = {.lex_state = 706}, - [2471] = {.lex_state = 706}, - [2472] = {.lex_state = 706}, - [2473] = {.lex_state = 706}, - [2474] = {.lex_state = 706}, - [2475] = {.lex_state = 706}, - [2476] = {.lex_state = 706}, - [2477] = {.lex_state = 706}, - [2478] = {.lex_state = 706}, - [2479] = {.lex_state = 706}, - [2480] = {.lex_state = 706}, - [2481] = {.lex_state = 706}, - [2482] = {.lex_state = 706}, - [2483] = {.lex_state = 706}, - [2484] = {.lex_state = 706}, - [2485] = {.lex_state = 706}, - [2486] = {.lex_state = 706}, - [2487] = {.lex_state = 706}, - [2488] = {.lex_state = 706}, - [2489] = {.lex_state = 706}, - [2490] = {.lex_state = 706}, - [2491] = {.lex_state = 706}, - [2492] = {.lex_state = 706}, - [2493] = {.lex_state = 706}, - [2494] = {.lex_state = 706}, - [2495] = {.lex_state = 706}, - [2496] = {.lex_state = 706}, - [2497] = {.lex_state = 706}, - [2498] = {.lex_state = 706}, - [2499] = {.lex_state = 706}, - [2500] = {.lex_state = 706}, - [2501] = {.lex_state = 706}, - [2502] = {.lex_state = 163, .external_lex_state = 2}, - [2503] = {.lex_state = 706}, - [2504] = {.lex_state = 706}, - [2505] = {.lex_state = 35, .external_lex_state = 2}, - [2506] = {.lex_state = 163, .external_lex_state = 2}, - [2507] = {.lex_state = 706}, - [2508] = {.lex_state = 706}, - [2509] = {.lex_state = 706}, - [2510] = {.lex_state = 706}, - [2511] = {.lex_state = 706}, - [2512] = {.lex_state = 35, .external_lex_state = 2}, - [2513] = {.lex_state = 706}, - [2514] = {.lex_state = 706}, - [2515] = {.lex_state = 706}, - [2516] = {.lex_state = 35, .external_lex_state = 2}, + [1595] = {.lex_state = 764, .external_lex_state = 2}, + [1596] = {.lex_state = 749, .external_lex_state = 2}, + [1597] = {.lex_state = 729, .external_lex_state = 2}, + [1598] = {.lex_state = 749, .external_lex_state = 2}, + [1599] = {.lex_state = 703}, + [1600] = {.lex_state = 729, .external_lex_state = 2}, + [1601] = {.lex_state = 707}, + [1602] = {.lex_state = 707}, + [1603] = {.lex_state = 707}, + [1604] = {.lex_state = 707}, + [1605] = {.lex_state = 707}, + [1606] = {.lex_state = 707}, + [1607] = {.lex_state = 707}, + [1608] = {.lex_state = 707}, + [1609] = {.lex_state = 707}, + [1610] = {.lex_state = 707}, + [1611] = {.lex_state = 707}, + [1612] = {.lex_state = 707}, + [1613] = {.lex_state = 707}, + [1614] = {.lex_state = 707}, + [1615] = {.lex_state = 707}, + [1616] = {.lex_state = 690}, + [1617] = {.lex_state = 729, .external_lex_state = 2}, + [1618] = {.lex_state = 729, .external_lex_state = 2}, + [1619] = {.lex_state = 729, .external_lex_state = 2}, + [1620] = {.lex_state = 743, .external_lex_state = 2}, + [1621] = {.lex_state = 718, .external_lex_state = 2}, + [1622] = {.lex_state = 718, .external_lex_state = 2}, + [1623] = {.lex_state = 718, .external_lex_state = 2}, + [1624] = {.lex_state = 690}, + [1625] = {.lex_state = 718, .external_lex_state = 2}, + [1626] = {.lex_state = 718, .external_lex_state = 2}, + [1627] = {.lex_state = 694}, + [1628] = {.lex_state = 707}, + [1629] = {.lex_state = 729, .external_lex_state = 2}, + [1630] = {.lex_state = 707}, + [1631] = {.lex_state = 748, .external_lex_state = 2}, + [1632] = {.lex_state = 748, .external_lex_state = 2}, + [1633] = {.lex_state = 748, .external_lex_state = 2}, + [1634] = {.lex_state = 748, .external_lex_state = 2}, + [1635] = {.lex_state = 765, .external_lex_state = 2}, + [1636] = {.lex_state = 765, .external_lex_state = 2}, + [1637] = {.lex_state = 707}, + [1638] = {.lex_state = 765, .external_lex_state = 2}, + [1639] = {.lex_state = 759, .external_lex_state = 2}, + [1640] = {.lex_state = 692}, + [1641] = {.lex_state = 745, .external_lex_state = 2}, + [1642] = {.lex_state = 765, .external_lex_state = 2}, + [1643] = {.lex_state = 766, .external_lex_state = 2}, + [1644] = {.lex_state = 707}, + [1645] = {.lex_state = 707}, + [1646] = {.lex_state = 707}, + [1647] = {.lex_state = 718, .external_lex_state = 2}, + [1648] = {.lex_state = 718, .external_lex_state = 2}, + [1649] = {.lex_state = 754, .external_lex_state = 2}, + [1650] = {.lex_state = 765, .external_lex_state = 2}, + [1651] = {.lex_state = 707}, + [1652] = {.lex_state = 707}, + [1653] = {.lex_state = 766, .external_lex_state = 2}, + [1654] = {.lex_state = 766, .external_lex_state = 2}, + [1655] = {.lex_state = 766, .external_lex_state = 2}, + [1656] = {.lex_state = 707}, + [1657] = {.lex_state = 740, .external_lex_state = 2}, + [1658] = {.lex_state = 707}, + [1659] = {.lex_state = 707}, + [1660] = {.lex_state = 755, .external_lex_state = 2}, + [1661] = {.lex_state = 766, .external_lex_state = 2}, + [1662] = {.lex_state = 690}, + [1663] = {.lex_state = 690}, + [1664] = {.lex_state = 729, .external_lex_state = 2}, + [1665] = {.lex_state = 690}, + [1666] = {.lex_state = 759, .external_lex_state = 2}, + [1667] = {.lex_state = 690}, + [1668] = {.lex_state = 729, .external_lex_state = 2}, + [1669] = {.lex_state = 707}, + [1670] = {.lex_state = 749, .external_lex_state = 2}, + [1671] = {.lex_state = 707}, + [1672] = {.lex_state = 744, .external_lex_state = 2}, + [1673] = {.lex_state = 707}, + [1674] = {.lex_state = 707}, + [1675] = {.lex_state = 707}, + [1676] = {.lex_state = 744, .external_lex_state = 2}, + [1677] = {.lex_state = 707}, + [1678] = {.lex_state = 744, .external_lex_state = 2}, + [1679] = {.lex_state = 707}, + [1680] = {.lex_state = 744, .external_lex_state = 2}, + [1681] = {.lex_state = 707}, + [1682] = {.lex_state = 707}, + [1683] = {.lex_state = 744, .external_lex_state = 2}, + [1684] = {.lex_state = 707}, + [1685] = {.lex_state = 692}, + [1686] = {.lex_state = 744, .external_lex_state = 2}, + [1687] = {.lex_state = 707}, + [1688] = {.lex_state = 707}, + [1689] = {.lex_state = 744, .external_lex_state = 2}, + [1690] = {.lex_state = 744, .external_lex_state = 2}, + [1691] = {.lex_state = 744, .external_lex_state = 2}, + [1692] = {.lex_state = 707}, + [1693] = {.lex_state = 718, .external_lex_state = 2}, + [1694] = {.lex_state = 744, .external_lex_state = 2}, + [1695] = {.lex_state = 707}, + [1696] = {.lex_state = 707}, + [1697] = {.lex_state = 707}, + [1698] = {.lex_state = 707}, + [1699] = {.lex_state = 707}, + [1700] = {.lex_state = 707}, + [1701] = {.lex_state = 707}, + [1702] = {.lex_state = 744, .external_lex_state = 2}, + [1703] = {.lex_state = 764, .external_lex_state = 2}, + [1704] = {.lex_state = 696}, + [1705] = {.lex_state = 744, .external_lex_state = 2}, + [1706] = {.lex_state = 707}, + [1707] = {.lex_state = 707}, + [1708] = {.lex_state = 744, .external_lex_state = 2}, + [1709] = {.lex_state = 707}, + [1710] = {.lex_state = 696}, + [1711] = {.lex_state = 744, .external_lex_state = 2}, + [1712] = {.lex_state = 707}, + [1713] = {.lex_state = 707}, + [1714] = {.lex_state = 759, .external_lex_state = 2}, + [1715] = {.lex_state = 759, .external_lex_state = 2}, + [1716] = {.lex_state = 744, .external_lex_state = 2}, + [1717] = {.lex_state = 707}, + [1718] = {.lex_state = 707}, + [1719] = {.lex_state = 707}, + [1720] = {.lex_state = 744, .external_lex_state = 2}, + [1721] = {.lex_state = 707}, + [1722] = {.lex_state = 744, .external_lex_state = 2}, + [1723] = {.lex_state = 749, .external_lex_state = 2}, + [1724] = {.lex_state = 764, .external_lex_state = 2}, + [1725] = {.lex_state = 707}, + [1726] = {.lex_state = 707}, + [1727] = {.lex_state = 707}, + [1728] = {.lex_state = 707}, + [1729] = {.lex_state = 707}, + [1730] = {.lex_state = 766, .external_lex_state = 2}, + [1731] = {.lex_state = 744, .external_lex_state = 2}, + [1732] = {.lex_state = 764, .external_lex_state = 2}, + [1733] = {.lex_state = 744, .external_lex_state = 2}, + [1734] = {.lex_state = 707}, + [1735] = {.lex_state = 766, .external_lex_state = 2}, + [1736] = {.lex_state = 744, .external_lex_state = 2}, + [1737] = {.lex_state = 707}, + [1738] = {.lex_state = 766, .external_lex_state = 2}, + [1739] = {.lex_state = 766, .external_lex_state = 2}, + [1740] = {.lex_state = 707}, + [1741] = {.lex_state = 744, .external_lex_state = 2}, + [1742] = {.lex_state = 744, .external_lex_state = 2}, + [1743] = {.lex_state = 707}, + [1744] = {.lex_state = 707}, + [1745] = {.lex_state = 707}, + [1746] = {.lex_state = 707}, + [1747] = {.lex_state = 741, .external_lex_state = 2}, + [1748] = {.lex_state = 742, .external_lex_state = 2}, + [1749] = {.lex_state = 744, .external_lex_state = 2}, + [1750] = {.lex_state = 707}, + [1751] = {.lex_state = 742, .external_lex_state = 2}, + [1752] = {.lex_state = 707}, + [1753] = {.lex_state = 766, .external_lex_state = 2}, + [1754] = {.lex_state = 744, .external_lex_state = 2}, + [1755] = {.lex_state = 744, .external_lex_state = 2}, + [1756] = {.lex_state = 744, .external_lex_state = 2}, + [1757] = {.lex_state = 707}, + [1758] = {.lex_state = 707}, + [1759] = {.lex_state = 744, .external_lex_state = 2}, + [1760] = {.lex_state = 744, .external_lex_state = 2}, + [1761] = {.lex_state = 744, .external_lex_state = 2}, + [1762] = {.lex_state = 744, .external_lex_state = 2}, + [1763] = {.lex_state = 707}, + [1764] = {.lex_state = 744, .external_lex_state = 2}, + [1765] = {.lex_state = 35, .external_lex_state = 2}, + [1766] = {.lex_state = 707}, + [1767] = {.lex_state = 707}, + [1768] = {.lex_state = 707}, + [1769] = {.lex_state = 744, .external_lex_state = 2}, + [1770] = {.lex_state = 707}, + [1771] = {.lex_state = 707}, + [1772] = {.lex_state = 707}, + [1773] = {.lex_state = 707}, + [1774] = {.lex_state = 707}, + [1775] = {.lex_state = 707}, + [1776] = {.lex_state = 744, .external_lex_state = 2}, + [1777] = {.lex_state = 707}, + [1778] = {.lex_state = 707}, + [1779] = {.lex_state = 707}, + [1780] = {.lex_state = 744, .external_lex_state = 2}, + [1781] = {.lex_state = 744, .external_lex_state = 2}, + [1782] = {.lex_state = 707}, + [1783] = {.lex_state = 707}, + [1784] = {.lex_state = 744, .external_lex_state = 2}, + [1785] = {.lex_state = 707}, + [1786] = {.lex_state = 707}, + [1787] = {.lex_state = 707}, + [1788] = {.lex_state = 707}, + [1789] = {.lex_state = 707}, + [1790] = {.lex_state = 707}, + [1791] = {.lex_state = 707}, + [1792] = {.lex_state = 707}, + [1793] = {.lex_state = 744, .external_lex_state = 2}, + [1794] = {.lex_state = 744, .external_lex_state = 2}, + [1795] = {.lex_state = 707}, + [1796] = {.lex_state = 707}, + [1797] = {.lex_state = 744, .external_lex_state = 2}, + [1798] = {.lex_state = 744, .external_lex_state = 2}, + [1799] = {.lex_state = 744, .external_lex_state = 2}, + [1800] = {.lex_state = 744, .external_lex_state = 2}, + [1801] = {.lex_state = 707}, + [1802] = {.lex_state = 707}, + [1803] = {.lex_state = 744, .external_lex_state = 2}, + [1804] = {.lex_state = 744, .external_lex_state = 2}, + [1805] = {.lex_state = 744, .external_lex_state = 2}, + [1806] = {.lex_state = 707}, + [1807] = {.lex_state = 707}, + [1808] = {.lex_state = 744, .external_lex_state = 2}, + [1809] = {.lex_state = 744, .external_lex_state = 2}, + [1810] = {.lex_state = 744, .external_lex_state = 2}, + [1811] = {.lex_state = 744, .external_lex_state = 2}, + [1812] = {.lex_state = 744, .external_lex_state = 2}, + [1813] = {.lex_state = 744, .external_lex_state = 2}, + [1814] = {.lex_state = 744, .external_lex_state = 2}, + [1815] = {.lex_state = 707}, + [1816] = {.lex_state = 707}, + [1817] = {.lex_state = 707}, + [1818] = {.lex_state = 707}, + [1819] = {.lex_state = 744, .external_lex_state = 2}, + [1820] = {.lex_state = 694}, + [1821] = {.lex_state = 707}, + [1822] = {.lex_state = 707}, + [1823] = {.lex_state = 707}, + [1824] = {.lex_state = 707}, + [1825] = {.lex_state = 707}, + [1826] = {.lex_state = 744, .external_lex_state = 2}, + [1827] = {.lex_state = 744, .external_lex_state = 2}, + [1828] = {.lex_state = 744, .external_lex_state = 2}, + [1829] = {.lex_state = 707}, + [1830] = {.lex_state = 707}, + [1831] = {.lex_state = 744, .external_lex_state = 2}, + [1832] = {.lex_state = 744, .external_lex_state = 2}, + [1833] = {.lex_state = 744, .external_lex_state = 2}, + [1834] = {.lex_state = 707}, + [1835] = {.lex_state = 707}, + [1836] = {.lex_state = 744, .external_lex_state = 2}, + [1837] = {.lex_state = 707}, + [1838] = {.lex_state = 707}, + [1839] = {.lex_state = 707}, + [1840] = {.lex_state = 707}, + [1841] = {.lex_state = 743, .external_lex_state = 2}, + [1842] = {.lex_state = 707}, + [1843] = {.lex_state = 707}, + [1844] = {.lex_state = 35, .external_lex_state = 2}, + [1845] = {.lex_state = 744, .external_lex_state = 2}, + [1846] = {.lex_state = 707}, + [1847] = {.lex_state = 707}, + [1848] = {.lex_state = 707}, + [1849] = {.lex_state = 707}, + [1850] = {.lex_state = 707}, + [1851] = {.lex_state = 707}, + [1852] = {.lex_state = 703}, + [1853] = {.lex_state = 741, .external_lex_state = 2}, + [1854] = {.lex_state = 744, .external_lex_state = 2}, + [1855] = {.lex_state = 744, .external_lex_state = 2}, + [1856] = {.lex_state = 707}, + [1857] = {.lex_state = 718, .external_lex_state = 2}, + [1858] = {.lex_state = 744, .external_lex_state = 2}, + [1859] = {.lex_state = 744, .external_lex_state = 2}, + [1860] = {.lex_state = 744, .external_lex_state = 2}, + [1861] = {.lex_state = 744, .external_lex_state = 2}, + [1862] = {.lex_state = 744, .external_lex_state = 2}, + [1863] = {.lex_state = 707}, + [1864] = {.lex_state = 707}, + [1865] = {.lex_state = 744, .external_lex_state = 2}, + [1866] = {.lex_state = 744, .external_lex_state = 2}, + [1867] = {.lex_state = 707}, + [1868] = {.lex_state = 707}, + [1869] = {.lex_state = 744, .external_lex_state = 2}, + [1870] = {.lex_state = 707}, + [1871] = {.lex_state = 707}, + [1872] = {.lex_state = 35, .external_lex_state = 2}, + [1873] = {.lex_state = 749, .external_lex_state = 2}, + [1874] = {.lex_state = 707}, + [1875] = {.lex_state = 744, .external_lex_state = 2}, + [1876] = {.lex_state = 744, .external_lex_state = 2}, + [1877] = {.lex_state = 707}, + [1878] = {.lex_state = 707}, + [1879] = {.lex_state = 744, .external_lex_state = 2}, + [1880] = {.lex_state = 744, .external_lex_state = 2}, + [1881] = {.lex_state = 707}, + [1882] = {.lex_state = 707}, + [1883] = {.lex_state = 707}, + [1884] = {.lex_state = 707}, + [1885] = {.lex_state = 744, .external_lex_state = 2}, + [1886] = {.lex_state = 707}, + [1887] = {.lex_state = 707}, + [1888] = {.lex_state = 707}, + [1889] = {.lex_state = 744, .external_lex_state = 2}, + [1890] = {.lex_state = 744, .external_lex_state = 2}, + [1891] = {.lex_state = 41, .external_lex_state = 2}, + [1892] = {.lex_state = 744, .external_lex_state = 2}, + [1893] = {.lex_state = 744, .external_lex_state = 2}, + [1894] = {.lex_state = 744, .external_lex_state = 2}, + [1895] = {.lex_state = 744, .external_lex_state = 2}, + [1896] = {.lex_state = 744, .external_lex_state = 2}, + [1897] = {.lex_state = 744, .external_lex_state = 2}, + [1898] = {.lex_state = 744, .external_lex_state = 2}, + [1899] = {.lex_state = 744, .external_lex_state = 2}, + [1900] = {.lex_state = 744, .external_lex_state = 2}, + [1901] = {.lex_state = 744, .external_lex_state = 2}, + [1902] = {.lex_state = 744, .external_lex_state = 2}, + [1903] = {.lex_state = 744, .external_lex_state = 2}, + [1904] = {.lex_state = 707}, + [1905] = {.lex_state = 707}, + [1906] = {.lex_state = 707}, + [1907] = {.lex_state = 744, .external_lex_state = 2}, + [1908] = {.lex_state = 744, .external_lex_state = 2}, + [1909] = {.lex_state = 744, .external_lex_state = 2}, + [1910] = {.lex_state = 744, .external_lex_state = 2}, + [1911] = {.lex_state = 698}, + [1912] = {.lex_state = 707}, + [1913] = {.lex_state = 744, .external_lex_state = 2}, + [1914] = {.lex_state = 707}, + [1915] = {.lex_state = 744, .external_lex_state = 2}, + [1916] = {.lex_state = 744, .external_lex_state = 2}, + [1917] = {.lex_state = 744, .external_lex_state = 2}, + [1918] = {.lex_state = 707}, + [1919] = {.lex_state = 744, .external_lex_state = 2}, + [1920] = {.lex_state = 41, .external_lex_state = 2}, + [1921] = {.lex_state = 744, .external_lex_state = 2}, + [1922] = {.lex_state = 700}, + [1923] = {.lex_state = 700}, + [1924] = {.lex_state = 744, .external_lex_state = 2}, + [1925] = {.lex_state = 744, .external_lex_state = 2}, + [1926] = {.lex_state = 707}, + [1927] = {.lex_state = 744, .external_lex_state = 2}, + [1928] = {.lex_state = 744, .external_lex_state = 2}, + [1929] = {.lex_state = 707}, + [1930] = {.lex_state = 707}, + [1931] = {.lex_state = 707}, + [1932] = {.lex_state = 744, .external_lex_state = 2}, + [1933] = {.lex_state = 744, .external_lex_state = 2}, + [1934] = {.lex_state = 744, .external_lex_state = 2}, + [1935] = {.lex_state = 744, .external_lex_state = 2}, + [1936] = {.lex_state = 744, .external_lex_state = 2}, + [1937] = {.lex_state = 707}, + [1938] = {.lex_state = 707}, + [1939] = {.lex_state = 698}, + [1940] = {.lex_state = 707}, + [1941] = {.lex_state = 698}, + [1942] = {.lex_state = 744, .external_lex_state = 2}, + [1943] = {.lex_state = 744, .external_lex_state = 2}, + [1944] = {.lex_state = 700}, + [1945] = {.lex_state = 744, .external_lex_state = 2}, + [1946] = {.lex_state = 744, .external_lex_state = 2}, + [1947] = {.lex_state = 744, .external_lex_state = 2}, + [1948] = {.lex_state = 707}, + [1949] = {.lex_state = 744, .external_lex_state = 2}, + [1950] = {.lex_state = 698}, + [1951] = {.lex_state = 744, .external_lex_state = 2}, + [1952] = {.lex_state = 696}, + [1953] = {.lex_state = 698}, + [1954] = {.lex_state = 744, .external_lex_state = 2}, + [1955] = {.lex_state = 707}, + [1956] = {.lex_state = 707}, + [1957] = {.lex_state = 707}, + [1958] = {.lex_state = 41, .external_lex_state = 2}, + [1959] = {.lex_state = 700}, + [1960] = {.lex_state = 700}, + [1961] = {.lex_state = 744, .external_lex_state = 2}, + [1962] = {.lex_state = 744, .external_lex_state = 2}, + [1963] = {.lex_state = 744, .external_lex_state = 2}, + [1964] = {.lex_state = 707}, + [1965] = {.lex_state = 698}, + [1966] = {.lex_state = 707}, + [1967] = {.lex_state = 744, .external_lex_state = 2}, + [1968] = {.lex_state = 698}, + [1969] = {.lex_state = 707}, + [1970] = {.lex_state = 744, .external_lex_state = 2}, + [1971] = {.lex_state = 744, .external_lex_state = 2}, + [1972] = {.lex_state = 698}, + [1973] = {.lex_state = 696}, + [1974] = {.lex_state = 744, .external_lex_state = 2}, + [1975] = {.lex_state = 744, .external_lex_state = 2}, + [1976] = {.lex_state = 707}, + [1977] = {.lex_state = 707}, + [1978] = {.lex_state = 707}, + [1979] = {.lex_state = 744, .external_lex_state = 2}, + [1980] = {.lex_state = 698}, + [1981] = {.lex_state = 744, .external_lex_state = 2}, + [1982] = {.lex_state = 744, .external_lex_state = 2}, + [1983] = {.lex_state = 707}, + [1984] = {.lex_state = 744, .external_lex_state = 2}, + [1985] = {.lex_state = 707}, + [1986] = {.lex_state = 744, .external_lex_state = 2}, + [1987] = {.lex_state = 744, .external_lex_state = 2}, + [1988] = {.lex_state = 744, .external_lex_state = 2}, + [1989] = {.lex_state = 744, .external_lex_state = 2}, + [1990] = {.lex_state = 707}, + [1991] = {.lex_state = 707}, + [1992] = {.lex_state = 707}, + [1993] = {.lex_state = 707}, + [1994] = {.lex_state = 707}, + [1995] = {.lex_state = 707}, + [1996] = {.lex_state = 744, .external_lex_state = 2}, + [1997] = {.lex_state = 744, .external_lex_state = 2}, + [1998] = {.lex_state = 707}, + [1999] = {.lex_state = 744, .external_lex_state = 2}, + [2000] = {.lex_state = 744, .external_lex_state = 2}, + [2001] = {.lex_state = 744, .external_lex_state = 2}, + [2002] = {.lex_state = 744, .external_lex_state = 2}, + [2003] = {.lex_state = 744, .external_lex_state = 2}, + [2004] = {.lex_state = 707}, + [2005] = {.lex_state = 744, .external_lex_state = 2}, + [2006] = {.lex_state = 744, .external_lex_state = 2}, + [2007] = {.lex_state = 744, .external_lex_state = 2}, + [2008] = {.lex_state = 707}, + [2009] = {.lex_state = 744, .external_lex_state = 2}, + [2010] = {.lex_state = 707}, + [2011] = {.lex_state = 707}, + [2012] = {.lex_state = 744, .external_lex_state = 2}, + [2013] = {.lex_state = 744, .external_lex_state = 2}, + [2014] = {.lex_state = 744, .external_lex_state = 2}, + [2015] = {.lex_state = 707}, + [2016] = {.lex_state = 744, .external_lex_state = 2}, + [2017] = {.lex_state = 707}, + [2018] = {.lex_state = 707}, + [2019] = {.lex_state = 41, .external_lex_state = 2}, + [2020] = {.lex_state = 41, .external_lex_state = 2}, + [2021] = {.lex_state = 41, .external_lex_state = 2}, + [2022] = {.lex_state = 707}, + [2023] = {.lex_state = 707}, + [2024] = {.lex_state = 707}, + [2025] = {.lex_state = 707}, + [2026] = {.lex_state = 707}, + [2027] = {.lex_state = 707}, + [2028] = {.lex_state = 707}, + [2029] = {.lex_state = 164, .external_lex_state = 2}, + [2030] = {.lex_state = 707}, + [2031] = {.lex_state = 707}, + [2032] = {.lex_state = 707}, + [2033] = {.lex_state = 707}, + [2034] = {.lex_state = 707}, + [2035] = {.lex_state = 707}, + [2036] = {.lex_state = 707}, + [2037] = {.lex_state = 707}, + [2038] = {.lex_state = 707}, + [2039] = {.lex_state = 707}, + [2040] = {.lex_state = 707}, + [2041] = {.lex_state = 707}, + [2042] = {.lex_state = 707}, + [2043] = {.lex_state = 707}, + [2044] = {.lex_state = 707}, + [2045] = {.lex_state = 698}, + [2046] = {.lex_state = 707}, + [2047] = {.lex_state = 707}, + [2048] = {.lex_state = 707}, + [2049] = {.lex_state = 707}, + [2050] = {.lex_state = 707}, + [2051] = {.lex_state = 707}, + [2052] = {.lex_state = 707}, + [2053] = {.lex_state = 707}, + [2054] = {.lex_state = 707}, + [2055] = {.lex_state = 707}, + [2056] = {.lex_state = 698}, + [2057] = {.lex_state = 707}, + [2058] = {.lex_state = 707}, + [2059] = {.lex_state = 707}, + [2060] = {.lex_state = 707}, + [2061] = {.lex_state = 707}, + [2062] = {.lex_state = 164, .external_lex_state = 2}, + [2063] = {.lex_state = 707}, + [2064] = {.lex_state = 707}, + [2065] = {.lex_state = 707}, + [2066] = {.lex_state = 707}, + [2067] = {.lex_state = 707}, + [2068] = {.lex_state = 707}, + [2069] = {.lex_state = 707}, + [2070] = {.lex_state = 707}, + [2071] = {.lex_state = 698}, + [2072] = {.lex_state = 707}, + [2073] = {.lex_state = 707}, + [2074] = {.lex_state = 707}, + [2075] = {.lex_state = 707}, + [2076] = {.lex_state = 707}, + [2077] = {.lex_state = 707}, + [2078] = {.lex_state = 707}, + [2079] = {.lex_state = 707}, + [2080] = {.lex_state = 707}, + [2081] = {.lex_state = 707}, + [2082] = {.lex_state = 707}, + [2083] = {.lex_state = 707}, + [2084] = {.lex_state = 707}, + [2085] = {.lex_state = 707}, + [2086] = {.lex_state = 698}, + [2087] = {.lex_state = 707}, + [2088] = {.lex_state = 707}, + [2089] = {.lex_state = 707}, + [2090] = {.lex_state = 707}, + [2091] = {.lex_state = 707}, + [2092] = {.lex_state = 707}, + [2093] = {.lex_state = 698}, + [2094] = {.lex_state = 707}, + [2095] = {.lex_state = 707}, + [2096] = {.lex_state = 707}, + [2097] = {.lex_state = 707}, + [2098] = {.lex_state = 707}, + [2099] = {.lex_state = 707}, + [2100] = {.lex_state = 707}, + [2101] = {.lex_state = 707}, + [2102] = {.lex_state = 164, .external_lex_state = 2}, + [2103] = {.lex_state = 707}, + [2104] = {.lex_state = 707}, + [2105] = {.lex_state = 707}, + [2106] = {.lex_state = 707}, + [2107] = {.lex_state = 707}, + [2108] = {.lex_state = 707}, + [2109] = {.lex_state = 703}, + [2110] = {.lex_state = 707}, + [2111] = {.lex_state = 698}, + [2112] = {.lex_state = 164, .external_lex_state = 2}, + [2113] = {.lex_state = 737, .external_lex_state = 2}, + [2114] = {.lex_state = 737, .external_lex_state = 2}, + [2115] = {.lex_state = 707}, + [2116] = {.lex_state = 707}, + [2117] = {.lex_state = 698}, + [2118] = {.lex_state = 707}, + [2119] = {.lex_state = 707}, + [2120] = {.lex_state = 707}, + [2121] = {.lex_state = 707}, + [2122] = {.lex_state = 707}, + [2123] = {.lex_state = 707}, + [2124] = {.lex_state = 707}, + [2125] = {.lex_state = 707}, + [2126] = {.lex_state = 707}, + [2127] = {.lex_state = 700}, + [2128] = {.lex_state = 707}, + [2129] = {.lex_state = 707}, + [2130] = {.lex_state = 707}, + [2131] = {.lex_state = 707}, + [2132] = {.lex_state = 698}, + [2133] = {.lex_state = 707}, + [2134] = {.lex_state = 700}, + [2135] = {.lex_state = 707}, + [2136] = {.lex_state = 737, .external_lex_state = 2}, + [2137] = {.lex_state = 707}, + [2138] = {.lex_state = 737, .external_lex_state = 2}, + [2139] = {.lex_state = 707}, + [2140] = {.lex_state = 707}, + [2141] = {.lex_state = 707}, + [2142] = {.lex_state = 707}, + [2143] = {.lex_state = 707}, + [2144] = {.lex_state = 707}, + [2145] = {.lex_state = 707}, + [2146] = {.lex_state = 707}, + [2147] = {.lex_state = 707}, + [2148] = {.lex_state = 707}, + [2149] = {.lex_state = 707}, + [2150] = {.lex_state = 707}, + [2151] = {.lex_state = 707}, + [2152] = {.lex_state = 707}, + [2153] = {.lex_state = 707}, + [2154] = {.lex_state = 707}, + [2155] = {.lex_state = 698}, + [2156] = {.lex_state = 707}, + [2157] = {.lex_state = 698}, + [2158] = {.lex_state = 700}, + [2159] = {.lex_state = 707}, + [2160] = {.lex_state = 707}, + [2161] = {.lex_state = 707}, + [2162] = {.lex_state = 707}, + [2163] = {.lex_state = 700}, + [2164] = {.lex_state = 707}, + [2165] = {.lex_state = 707}, + [2166] = {.lex_state = 707}, + [2167] = {.lex_state = 707}, + [2168] = {.lex_state = 707}, + [2169] = {.lex_state = 707}, + [2170] = {.lex_state = 707}, + [2171] = {.lex_state = 707}, + [2172] = {.lex_state = 700}, + [2173] = {.lex_state = 707}, + [2174] = {.lex_state = 707}, + [2175] = {.lex_state = 707}, + [2176] = {.lex_state = 707}, + [2177] = {.lex_state = 41, .external_lex_state = 2}, + [2178] = {.lex_state = 707}, + [2179] = {.lex_state = 707}, + [2180] = {.lex_state = 707}, + [2181] = {.lex_state = 707}, + [2182] = {.lex_state = 707}, + [2183] = {.lex_state = 707}, + [2184] = {.lex_state = 707}, + [2185] = {.lex_state = 707}, + [2186] = {.lex_state = 707}, + [2187] = {.lex_state = 707}, + [2188] = {.lex_state = 707}, + [2189] = {.lex_state = 707}, + [2190] = {.lex_state = 707}, + [2191] = {.lex_state = 707}, + [2192] = {.lex_state = 707}, + [2193] = {.lex_state = 707}, + [2194] = {.lex_state = 707}, + [2195] = {.lex_state = 707}, + [2196] = {.lex_state = 707}, + [2197] = {.lex_state = 707}, + [2198] = {.lex_state = 707}, + [2199] = {.lex_state = 707}, + [2200] = {.lex_state = 707}, + [2201] = {.lex_state = 707}, + [2202] = {.lex_state = 707}, + [2203] = {.lex_state = 707}, + [2204] = {.lex_state = 707}, + [2205] = {.lex_state = 707}, + [2206] = {.lex_state = 707}, + [2207] = {.lex_state = 707}, + [2208] = {.lex_state = 707}, + [2209] = {.lex_state = 707}, + [2210] = {.lex_state = 707}, + [2211] = {.lex_state = 707}, + [2212] = {.lex_state = 707}, + [2213] = {.lex_state = 707}, + [2214] = {.lex_state = 707}, + [2215] = {.lex_state = 707}, + [2216] = {.lex_state = 707}, + [2217] = {.lex_state = 707}, + [2218] = {.lex_state = 41, .external_lex_state = 2}, + [2219] = {.lex_state = 707}, + [2220] = {.lex_state = 707}, + [2221] = {.lex_state = 698}, + [2222] = {.lex_state = 707}, + [2223] = {.lex_state = 707}, + [2224] = {.lex_state = 707}, + [2225] = {.lex_state = 707}, + [2226] = {.lex_state = 707}, + [2227] = {.lex_state = 707}, + [2228] = {.lex_state = 707}, + [2229] = {.lex_state = 707}, + [2230] = {.lex_state = 707}, + [2231] = {.lex_state = 707}, + [2232] = {.lex_state = 707}, + [2233] = {.lex_state = 707}, + [2234] = {.lex_state = 707}, + [2235] = {.lex_state = 707}, + [2236] = {.lex_state = 707}, + [2237] = {.lex_state = 707}, + [2238] = {.lex_state = 707}, + [2239] = {.lex_state = 707}, + [2240] = {.lex_state = 707}, + [2241] = {.lex_state = 707}, + [2242] = {.lex_state = 707}, + [2243] = {.lex_state = 707}, + [2244] = {.lex_state = 707}, + [2245] = {.lex_state = 707}, + [2246] = {.lex_state = 707}, + [2247] = {.lex_state = 707}, + [2248] = {.lex_state = 707}, + [2249] = {.lex_state = 707}, + [2250] = {.lex_state = 707}, + [2251] = {.lex_state = 707}, + [2252] = {.lex_state = 41, .external_lex_state = 2}, + [2253] = {.lex_state = 707}, + [2254] = {.lex_state = 707}, + [2255] = {.lex_state = 707}, + [2256] = {.lex_state = 707}, + [2257] = {.lex_state = 707}, + [2258] = {.lex_state = 707}, + [2259] = {.lex_state = 707}, + [2260] = {.lex_state = 707}, + [2261] = {.lex_state = 707}, + [2262] = {.lex_state = 707}, + [2263] = {.lex_state = 707}, + [2264] = {.lex_state = 707}, + [2265] = {.lex_state = 707}, + [2266] = {.lex_state = 707}, + [2267] = {.lex_state = 707}, + [2268] = {.lex_state = 707}, + [2269] = {.lex_state = 707}, + [2270] = {.lex_state = 707}, + [2271] = {.lex_state = 707}, + [2272] = {.lex_state = 707}, + [2273] = {.lex_state = 707}, + [2274] = {.lex_state = 707}, + [2275] = {.lex_state = 707}, + [2276] = {.lex_state = 707}, + [2277] = {.lex_state = 707}, + [2278] = {.lex_state = 707}, + [2279] = {.lex_state = 707}, + [2280] = {.lex_state = 707}, + [2281] = {.lex_state = 41, .external_lex_state = 2}, + [2282] = {.lex_state = 41, .external_lex_state = 2}, + [2283] = {.lex_state = 707}, + [2284] = {.lex_state = 707}, + [2285] = {.lex_state = 707}, + [2286] = {.lex_state = 707}, + [2287] = {.lex_state = 707}, + [2288] = {.lex_state = 707}, + [2289] = {.lex_state = 707}, + [2290] = {.lex_state = 707}, + [2291] = {.lex_state = 707}, + [2292] = {.lex_state = 707}, + [2293] = {.lex_state = 707}, + [2294] = {.lex_state = 707}, + [2295] = {.lex_state = 41, .external_lex_state = 2}, + [2296] = {.lex_state = 41, .external_lex_state = 2}, + [2297] = {.lex_state = 707}, + [2298] = {.lex_state = 41, .external_lex_state = 2}, + [2299] = {.lex_state = 41, .external_lex_state = 2}, + [2300] = {.lex_state = 41, .external_lex_state = 2}, + [2301] = {.lex_state = 707}, + [2302] = {.lex_state = 707}, + [2303] = {.lex_state = 707}, + [2304] = {.lex_state = 707}, + [2305] = {.lex_state = 707}, + [2306] = {.lex_state = 707}, + [2307] = {.lex_state = 707}, + [2308] = {.lex_state = 707}, + [2309] = {.lex_state = 164, .external_lex_state = 2}, + [2310] = {.lex_state = 707}, + [2311] = {.lex_state = 707}, + [2312] = {.lex_state = 707}, + [2313] = {.lex_state = 707}, + [2314] = {.lex_state = 707}, + [2315] = {.lex_state = 707}, + [2316] = {.lex_state = 707}, + [2317] = {.lex_state = 707}, + [2318] = {.lex_state = 707}, + [2319] = {.lex_state = 707}, + [2320] = {.lex_state = 707}, + [2321] = {.lex_state = 707}, + [2322] = {.lex_state = 707}, + [2323] = {.lex_state = 707}, + [2324] = {.lex_state = 707}, + [2325] = {.lex_state = 707}, + [2326] = {.lex_state = 707}, + [2327] = {.lex_state = 707}, + [2328] = {.lex_state = 707}, + [2329] = {.lex_state = 707}, + [2330] = {.lex_state = 707}, + [2331] = {.lex_state = 184, .external_lex_state = 2}, + [2332] = {.lex_state = 707}, + [2333] = {.lex_state = 707}, + [2334] = {.lex_state = 707}, + [2335] = {.lex_state = 707}, + [2336] = {.lex_state = 763, .external_lex_state = 2}, + [2337] = {.lex_state = 35, .external_lex_state = 2}, + [2338] = {.lex_state = 707}, + [2339] = {.lex_state = 707}, + [2340] = {.lex_state = 707}, + [2341] = {.lex_state = 164, .external_lex_state = 2}, + [2342] = {.lex_state = 707}, + [2343] = {.lex_state = 707}, + [2344] = {.lex_state = 707}, + [2345] = {.lex_state = 707}, + [2346] = {.lex_state = 35, .external_lex_state = 2}, + [2347] = {.lex_state = 707}, + [2348] = {.lex_state = 707}, + [2349] = {.lex_state = 707}, + [2350] = {.lex_state = 707}, + [2351] = {.lex_state = 707}, + [2352] = {.lex_state = 707}, + [2353] = {.lex_state = 707}, + [2354] = {.lex_state = 164, .external_lex_state = 2}, + [2355] = {.lex_state = 707}, + [2356] = {.lex_state = 707}, + [2357] = {.lex_state = 707}, + [2358] = {.lex_state = 707}, + [2359] = {.lex_state = 707}, + [2360] = {.lex_state = 707}, + [2361] = {.lex_state = 707}, + [2362] = {.lex_state = 707}, + [2363] = {.lex_state = 707}, + [2364] = {.lex_state = 763, .external_lex_state = 2}, + [2365] = {.lex_state = 707}, + [2366] = {.lex_state = 707}, + [2367] = {.lex_state = 707}, + [2368] = {.lex_state = 707}, + [2369] = {.lex_state = 35, .external_lex_state = 2}, + [2370] = {.lex_state = 164, .external_lex_state = 2}, + [2371] = {.lex_state = 763, .external_lex_state = 2}, + [2372] = {.lex_state = 707}, + [2373] = {.lex_state = 707}, + [2374] = {.lex_state = 707}, + [2375] = {.lex_state = 707}, + [2376] = {.lex_state = 707}, + [2377] = {.lex_state = 707}, + [2378] = {.lex_state = 707}, + [2379] = {.lex_state = 707}, + [2380] = {.lex_state = 707}, + [2381] = {.lex_state = 707}, + [2382] = {.lex_state = 707}, + [2383] = {.lex_state = 707}, + [2384] = {.lex_state = 35, .external_lex_state = 2}, + [2385] = {.lex_state = 707}, + [2386] = {.lex_state = 707}, + [2387] = {.lex_state = 707}, + [2388] = {.lex_state = 707}, + [2389] = {.lex_state = 707}, + [2390] = {.lex_state = 707}, + [2391] = {.lex_state = 707}, + [2392] = {.lex_state = 707}, + [2393] = {.lex_state = 707}, + [2394] = {.lex_state = 707}, + [2395] = {.lex_state = 707}, + [2396] = {.lex_state = 35, .external_lex_state = 2}, + [2397] = {.lex_state = 251, .external_lex_state = 2}, + [2398] = {.lex_state = 35, .external_lex_state = 2}, + [2399] = {.lex_state = 185, .external_lex_state = 2}, + [2400] = {.lex_state = 35, .external_lex_state = 2}, + [2401] = {.lex_state = 183, .external_lex_state = 2}, + [2402] = {.lex_state = 763, .external_lex_state = 2}, + [2403] = {.lex_state = 763, .external_lex_state = 2}, + [2404] = {.lex_state = 200, .external_lex_state = 2}, + [2405] = {.lex_state = 35, .external_lex_state = 2}, + [2406] = {.lex_state = 763, .external_lex_state = 2}, + [2407] = {.lex_state = 35, .external_lex_state = 2}, + [2408] = {.lex_state = 35, .external_lex_state = 2}, + [2409] = {.lex_state = 763, .external_lex_state = 2}, + [2410] = {.lex_state = 183, .external_lex_state = 2}, + [2411] = {.lex_state = 35, .external_lex_state = 2}, + [2412] = {.lex_state = 253, .external_lex_state = 2}, + [2413] = {.lex_state = 194, .external_lex_state = 2}, + [2414] = {.lex_state = 35, .external_lex_state = 2}, + [2415] = {.lex_state = 35, .external_lex_state = 2}, + [2416] = {.lex_state = 763, .external_lex_state = 2}, + [2417] = {.lex_state = 182, .external_lex_state = 2}, + [2418] = {.lex_state = 35, .external_lex_state = 2}, + [2419] = {.lex_state = 35, .external_lex_state = 2}, + [2420] = {.lex_state = 35, .external_lex_state = 2}, + [2421] = {.lex_state = 35, .external_lex_state = 2}, + [2422] = {.lex_state = 35, .external_lex_state = 2}, + [2423] = {.lex_state = 188, .external_lex_state = 2}, + [2424] = {.lex_state = 762, .external_lex_state = 2}, + [2425] = {.lex_state = 763, .external_lex_state = 2}, + [2426] = {.lex_state = 199, .external_lex_state = 2}, + [2427] = {.lex_state = 762, .external_lex_state = 2}, + [2428] = {.lex_state = 763, .external_lex_state = 2}, + [2429] = {.lex_state = 181, .external_lex_state = 2}, + [2430] = {.lex_state = 762, .external_lex_state = 2}, + [2431] = {.lex_state = 250, .external_lex_state = 2}, + [2432] = {.lex_state = 762, .external_lex_state = 2}, + [2433] = {.lex_state = 199, .external_lex_state = 2}, + [2434] = {.lex_state = 762, .external_lex_state = 2}, + [2435] = {.lex_state = 762, .external_lex_state = 2}, + [2436] = {.lex_state = 187, .external_lex_state = 2}, + [2437] = {.lex_state = 250, .external_lex_state = 2}, + [2438] = {.lex_state = 199, .external_lex_state = 2}, + [2439] = {.lex_state = 187, .external_lex_state = 2}, + [2440] = {.lex_state = 181, .external_lex_state = 2}, + [2441] = {.lex_state = 199, .external_lex_state = 2}, + [2442] = {.lex_state = 198, .external_lex_state = 2}, + [2443] = {.lex_state = 188, .external_lex_state = 2}, + [2444] = {.lex_state = 35, .external_lex_state = 2}, + [2445] = {.lex_state = 762, .external_lex_state = 2}, + [2446] = {.lex_state = 221, .external_lex_state = 2}, + [2447] = {.lex_state = 762, .external_lex_state = 2}, + [2448] = {.lex_state = 230, .external_lex_state = 2}, + [2449] = {.lex_state = 762, .external_lex_state = 2}, + [2450] = {.lex_state = 239, .external_lex_state = 2}, + [2451] = {.lex_state = 221, .external_lex_state = 2}, + [2452] = {.lex_state = 188, .external_lex_state = 2}, + [2453] = {.lex_state = 762, .external_lex_state = 2}, + [2454] = {.lex_state = 188, .external_lex_state = 2}, + [2455] = {.lex_state = 188, .external_lex_state = 2}, + [2456] = {.lex_state = 197, .external_lex_state = 2}, + [2457] = {.lex_state = 186, .external_lex_state = 2}, + [2458] = {.lex_state = 195, .external_lex_state = 2}, + [2459] = {.lex_state = 35, .external_lex_state = 2}, + [2460] = {.lex_state = 35, .external_lex_state = 2}, + [2461] = {.lex_state = 252, .external_lex_state = 2}, + [2462] = {.lex_state = 252, .external_lex_state = 2}, + [2463] = {.lex_state = 252, .external_lex_state = 2}, + [2464] = {.lex_state = 762, .external_lex_state = 2}, + [2465] = {.lex_state = 252, .external_lex_state = 2}, + [2466] = {.lex_state = 252, .external_lex_state = 2}, + [2467] = {.lex_state = 197, .external_lex_state = 2}, + [2468] = {.lex_state = 35, .external_lex_state = 2}, + [2469] = {.lex_state = 763, .external_lex_state = 2}, + [2470] = {.lex_state = 35, .external_lex_state = 2}, + [2471] = {.lex_state = 35, .external_lex_state = 2}, + [2472] = {.lex_state = 35, .external_lex_state = 2}, + [2473] = {.lex_state = 221, .external_lex_state = 2}, + [2474] = {.lex_state = 35, .external_lex_state = 2}, + [2475] = {.lex_state = 35, .external_lex_state = 2}, + [2476] = {.lex_state = 35, .external_lex_state = 2}, + [2477] = {.lex_state = 35, .external_lex_state = 2}, + [2478] = {.lex_state = 35, .external_lex_state = 2}, + [2479] = {.lex_state = 35, .external_lex_state = 2}, + [2480] = {.lex_state = 763, .external_lex_state = 2}, + [2481] = {.lex_state = 197, .external_lex_state = 2}, + [2482] = {.lex_state = 197, .external_lex_state = 2}, + [2483] = {.lex_state = 763, .external_lex_state = 2}, + [2484] = {.lex_state = 762, .external_lex_state = 2}, + [2485] = {.lex_state = 35, .external_lex_state = 2}, + [2486] = {.lex_state = 35, .external_lex_state = 2}, + [2487] = {.lex_state = 763, .external_lex_state = 2}, + [2488] = {.lex_state = 763, .external_lex_state = 2}, + [2489] = {.lex_state = 232, .external_lex_state = 2}, + [2490] = {.lex_state = 35, .external_lex_state = 2}, + [2491] = {.lex_state = 35, .external_lex_state = 2}, + [2492] = {.lex_state = 764, .external_lex_state = 2}, + [2493] = {.lex_state = 764, .external_lex_state = 2}, + [2494] = {.lex_state = 232, .external_lex_state = 2}, + [2495] = {.lex_state = 207, .external_lex_state = 2}, + [2496] = {.lex_state = 707}, + [2497] = {.lex_state = 764, .external_lex_state = 2}, + [2498] = {.lex_state = 764, .external_lex_state = 2}, + [2499] = {.lex_state = 35, .external_lex_state = 2}, + [2500] = {.lex_state = 35, .external_lex_state = 2}, + [2501] = {.lex_state = 764, .external_lex_state = 2}, + [2502] = {.lex_state = 35, .external_lex_state = 2}, + [2503] = {.lex_state = 764, .external_lex_state = 2}, + [2504] = {.lex_state = 764, .external_lex_state = 2}, + [2505] = {.lex_state = 764, .external_lex_state = 2}, + [2506] = {.lex_state = 35, .external_lex_state = 2}, + [2507] = {.lex_state = 221, .external_lex_state = 2}, + [2508] = {.lex_state = 35, .external_lex_state = 2}, + [2509] = {.lex_state = 207, .external_lex_state = 2}, + [2510] = {.lex_state = 764, .external_lex_state = 2}, + [2511] = {.lex_state = 764, .external_lex_state = 2}, + [2512] = {.lex_state = 207, .external_lex_state = 2}, + [2513] = {.lex_state = 764, .external_lex_state = 2}, + [2514] = {.lex_state = 764, .external_lex_state = 2}, + [2515] = {.lex_state = 764, .external_lex_state = 2}, + [2516] = {.lex_state = 189, .external_lex_state = 2}, [2517] = {.lex_state = 35, .external_lex_state = 2}, - [2518] = {.lex_state = 706}, - [2519] = {.lex_state = 706}, - [2520] = {.lex_state = 706}, - [2521] = {.lex_state = 35, .external_lex_state = 2}, - [2522] = {.lex_state = 35, .external_lex_state = 2}, - [2523] = {.lex_state = 184, .external_lex_state = 2}, - [2524] = {.lex_state = 193, .external_lex_state = 2}, - [2525] = {.lex_state = 181, .external_lex_state = 2}, + [2518] = {.lex_state = 35, .external_lex_state = 2}, + [2519] = {.lex_state = 764, .external_lex_state = 2}, + [2520] = {.lex_state = 764, .external_lex_state = 2}, + [2521] = {.lex_state = 221, .external_lex_state = 2}, + [2522] = {.lex_state = 764, .external_lex_state = 2}, + [2523] = {.lex_state = 764, .external_lex_state = 2}, + [2524] = {.lex_state = 673}, + [2525] = {.lex_state = 35, .external_lex_state = 2}, [2526] = {.lex_state = 35, .external_lex_state = 2}, - [2527] = {.lex_state = 250, .external_lex_state = 2}, - [2528] = {.lex_state = 182, .external_lex_state = 2}, - [2529] = {.lex_state = 182, .external_lex_state = 2}, - [2530] = {.lex_state = 252, .external_lex_state = 2}, + [2527] = {.lex_state = 764, .external_lex_state = 2}, + [2528] = {.lex_state = 35, .external_lex_state = 2}, + [2529] = {.lex_state = 189, .external_lex_state = 2}, + [2530] = {.lex_state = 35, .external_lex_state = 2}, [2531] = {.lex_state = 35, .external_lex_state = 2}, - [2532] = {.lex_state = 199, .external_lex_state = 2}, - [2533] = {.lex_state = 762, .external_lex_state = 2}, - [2534] = {.lex_state = 762, .external_lex_state = 2}, + [2532] = {.lex_state = 35, .external_lex_state = 2}, + [2533] = {.lex_state = 35, .external_lex_state = 2}, + [2534] = {.lex_state = 35, .external_lex_state = 2}, [2535] = {.lex_state = 35, .external_lex_state = 2}, - [2536] = {.lex_state = 762, .external_lex_state = 2}, - [2537] = {.lex_state = 762, .external_lex_state = 2}, + [2536] = {.lex_state = 764, .external_lex_state = 2}, + [2537] = {.lex_state = 764, .external_lex_state = 2}, [2538] = {.lex_state = 35, .external_lex_state = 2}, - [2539] = {.lex_state = 35, .external_lex_state = 2}, + [2539] = {.lex_state = 764, .external_lex_state = 2}, [2540] = {.lex_state = 35, .external_lex_state = 2}, [2541] = {.lex_state = 35, .external_lex_state = 2}, [2542] = {.lex_state = 35, .external_lex_state = 2}, [2543] = {.lex_state = 35, .external_lex_state = 2}, - [2544] = {.lex_state = 35, .external_lex_state = 2}, + [2544] = {.lex_state = 763, .external_lex_state = 2}, [2545] = {.lex_state = 35, .external_lex_state = 2}, [2546] = {.lex_state = 35, .external_lex_state = 2}, - [2547] = {.lex_state = 762, .external_lex_state = 2}, - [2548] = {.lex_state = 186, .external_lex_state = 2}, - [2549] = {.lex_state = 198, .external_lex_state = 2}, - [2550] = {.lex_state = 198, .external_lex_state = 2}, - [2551] = {.lex_state = 198, .external_lex_state = 2}, - [2552] = {.lex_state = 187, .external_lex_state = 2}, - [2553] = {.lex_state = 180, .external_lex_state = 2}, - [2554] = {.lex_state = 180, .external_lex_state = 2}, - [2555] = {.lex_state = 186, .external_lex_state = 2}, - [2556] = {.lex_state = 761, .external_lex_state = 2}, - [2557] = {.lex_state = 198, .external_lex_state = 2}, - [2558] = {.lex_state = 762, .external_lex_state = 2}, - [2559] = {.lex_state = 761, .external_lex_state = 2}, - [2560] = {.lex_state = 762, .external_lex_state = 2}, - [2561] = {.lex_state = 197, .external_lex_state = 2}, - [2562] = {.lex_state = 761, .external_lex_state = 2}, - [2563] = {.lex_state = 761, .external_lex_state = 2}, - [2564] = {.lex_state = 761, .external_lex_state = 2}, - [2565] = {.lex_state = 761, .external_lex_state = 2}, - [2566] = {.lex_state = 249, .external_lex_state = 2}, - [2567] = {.lex_state = 249, .external_lex_state = 2}, - [2568] = {.lex_state = 35, .external_lex_state = 2}, - [2569] = {.lex_state = 220, .external_lex_state = 2}, + [2547] = {.lex_state = 35, .external_lex_state = 2}, + [2548] = {.lex_state = 35, .external_lex_state = 2}, + [2549] = {.lex_state = 35, .external_lex_state = 2}, + [2550] = {.lex_state = 35, .external_lex_state = 2}, + [2551] = {.lex_state = 764, .external_lex_state = 2}, + [2552] = {.lex_state = 246, .external_lex_state = 2}, + [2553] = {.lex_state = 764, .external_lex_state = 2}, + [2554] = {.lex_state = 224, .external_lex_state = 2}, + [2555] = {.lex_state = 764, .external_lex_state = 2}, + [2556] = {.lex_state = 744, .external_lex_state = 2}, + [2557] = {.lex_state = 764, .external_lex_state = 2}, + [2558] = {.lex_state = 764, .external_lex_state = 2}, + [2559] = {.lex_state = 764, .external_lex_state = 2}, + [2560] = {.lex_state = 764, .external_lex_state = 2}, + [2561] = {.lex_state = 246, .external_lex_state = 2}, + [2562] = {.lex_state = 220, .external_lex_state = 2}, + [2563] = {.lex_state = 764, .external_lex_state = 2}, + [2564] = {.lex_state = 764, .external_lex_state = 2}, + [2565] = {.lex_state = 246, .external_lex_state = 2}, + [2566] = {.lex_state = 170, .external_lex_state = 2}, + [2567] = {.lex_state = 764, .external_lex_state = 2}, + [2568] = {.lex_state = 764, .external_lex_state = 2}, + [2569] = {.lex_state = 246, .external_lex_state = 2}, [2570] = {.lex_state = 220, .external_lex_state = 2}, - [2571] = {.lex_state = 761, .external_lex_state = 2}, - [2572] = {.lex_state = 251, .external_lex_state = 2}, - [2573] = {.lex_state = 762, .external_lex_state = 2}, - [2574] = {.lex_state = 251, .external_lex_state = 2}, - [2575] = {.lex_state = 761, .external_lex_state = 2}, - [2576] = {.lex_state = 762, .external_lex_state = 2}, - [2577] = {.lex_state = 196, .external_lex_state = 2}, - [2578] = {.lex_state = 185, .external_lex_state = 2}, - [2579] = {.lex_state = 251, .external_lex_state = 2}, - [2580] = {.lex_state = 196, .external_lex_state = 2}, - [2581] = {.lex_state = 229, .external_lex_state = 2}, - [2582] = {.lex_state = 194, .external_lex_state = 2}, - [2583] = {.lex_state = 761, .external_lex_state = 2}, - [2584] = {.lex_state = 187, .external_lex_state = 2}, - [2585] = {.lex_state = 761, .external_lex_state = 2}, - [2586] = {.lex_state = 761, .external_lex_state = 2}, - [2587] = {.lex_state = 251, .external_lex_state = 2}, - [2588] = {.lex_state = 761, .external_lex_state = 2}, - [2589] = {.lex_state = 35, .external_lex_state = 2}, - [2590] = {.lex_state = 35, .external_lex_state = 2}, - [2591] = {.lex_state = 35, .external_lex_state = 2}, - [2592] = {.lex_state = 35, .external_lex_state = 2}, - [2593] = {.lex_state = 35, .external_lex_state = 2}, - [2594] = {.lex_state = 35, .external_lex_state = 2}, - [2595] = {.lex_state = 35, .external_lex_state = 2}, - [2596] = {.lex_state = 35, .external_lex_state = 2}, - [2597] = {.lex_state = 238, .external_lex_state = 2}, - [2598] = {.lex_state = 35, .external_lex_state = 2}, - [2599] = {.lex_state = 220, .external_lex_state = 2}, - [2600] = {.lex_state = 35, .external_lex_state = 2}, - [2601] = {.lex_state = 196, .external_lex_state = 2}, - [2602] = {.lex_state = 35, .external_lex_state = 2}, - [2603] = {.lex_state = 196, .external_lex_state = 2}, - [2604] = {.lex_state = 187, .external_lex_state = 2}, - [2605] = {.lex_state = 251, .external_lex_state = 2}, - [2606] = {.lex_state = 762, .external_lex_state = 2}, - [2607] = {.lex_state = 187, .external_lex_state = 2}, - [2608] = {.lex_state = 187, .external_lex_state = 2}, - [2609] = {.lex_state = 35, .external_lex_state = 2}, - [2610] = {.lex_state = 35, .external_lex_state = 2}, - [2611] = {.lex_state = 35, .external_lex_state = 2}, - [2612] = {.lex_state = 763, .external_lex_state = 2}, - [2613] = {.lex_state = 763, .external_lex_state = 2}, - [2614] = {.lex_state = 763, .external_lex_state = 2}, - [2615] = {.lex_state = 35, .external_lex_state = 2}, - [2616] = {.lex_state = 188, .external_lex_state = 2}, - [2617] = {.lex_state = 188, .external_lex_state = 2}, - [2618] = {.lex_state = 763, .external_lex_state = 2}, - [2619] = {.lex_state = 35, .external_lex_state = 2}, - [2620] = {.lex_state = 206, .external_lex_state = 2}, - [2621] = {.lex_state = 763, .external_lex_state = 2}, - [2622] = {.lex_state = 35, .external_lex_state = 2}, - [2623] = {.lex_state = 35, .external_lex_state = 2}, - [2624] = {.lex_state = 206, .external_lex_state = 2}, - [2625] = {.lex_state = 35, .external_lex_state = 2}, - [2626] = {.lex_state = 35, .external_lex_state = 2}, - [2627] = {.lex_state = 35, .external_lex_state = 2}, - [2628] = {.lex_state = 206, .external_lex_state = 2}, - [2629] = {.lex_state = 35, .external_lex_state = 2}, - [2630] = {.lex_state = 220, .external_lex_state = 2}, - [2631] = {.lex_state = 220, .external_lex_state = 2}, - [2632] = {.lex_state = 763, .external_lex_state = 2}, - [2633] = {.lex_state = 763, .external_lex_state = 2}, - [2634] = {.lex_state = 763, .external_lex_state = 2}, - [2635] = {.lex_state = 763, .external_lex_state = 2}, - [2636] = {.lex_state = 35, .external_lex_state = 2}, - [2637] = {.lex_state = 35, .external_lex_state = 2}, - [2638] = {.lex_state = 763, .external_lex_state = 2}, - [2639] = {.lex_state = 763, .external_lex_state = 2}, - [2640] = {.lex_state = 35, .external_lex_state = 2}, - [2641] = {.lex_state = 35, .external_lex_state = 2}, - [2642] = {.lex_state = 763, .external_lex_state = 2}, - [2643] = {.lex_state = 763, .external_lex_state = 2}, - [2644] = {.lex_state = 35, .external_lex_state = 2}, - [2645] = {.lex_state = 762, .external_lex_state = 2}, - [2646] = {.lex_state = 763, .external_lex_state = 2}, - [2647] = {.lex_state = 763, .external_lex_state = 2}, - [2648] = {.lex_state = 35, .external_lex_state = 2}, - [2649] = {.lex_state = 35, .external_lex_state = 2}, - [2650] = {.lex_state = 762, .external_lex_state = 2}, - [2651] = {.lex_state = 762, .external_lex_state = 2}, - [2652] = {.lex_state = 672}, - [2653] = {.lex_state = 231, .external_lex_state = 2}, - [2654] = {.lex_state = 35, .external_lex_state = 2}, - [2655] = {.lex_state = 35, .external_lex_state = 2}, - [2656] = {.lex_state = 35, .external_lex_state = 2}, - [2657] = {.lex_state = 35, .external_lex_state = 2}, - [2658] = {.lex_state = 35, .external_lex_state = 2}, - [2659] = {.lex_state = 35, .external_lex_state = 2}, - [2660] = {.lex_state = 763, .external_lex_state = 2}, - [2661] = {.lex_state = 763, .external_lex_state = 2}, - [2662] = {.lex_state = 763, .external_lex_state = 2}, - [2663] = {.lex_state = 35, .external_lex_state = 2}, - [2664] = {.lex_state = 35, .external_lex_state = 2}, - [2665] = {.lex_state = 35, .external_lex_state = 2}, - [2666] = {.lex_state = 35, .external_lex_state = 2}, - [2667] = {.lex_state = 706}, - [2668] = {.lex_state = 763, .external_lex_state = 2}, - [2669] = {.lex_state = 763, .external_lex_state = 2}, - [2670] = {.lex_state = 763, .external_lex_state = 2}, - [2671] = {.lex_state = 35, .external_lex_state = 2}, - [2672] = {.lex_state = 35, .external_lex_state = 2}, - [2673] = {.lex_state = 35, .external_lex_state = 2}, - [2674] = {.lex_state = 35, .external_lex_state = 2}, - [2675] = {.lex_state = 763, .external_lex_state = 2}, - [2676] = {.lex_state = 231, .external_lex_state = 2}, - [2677] = {.lex_state = 706}, + [2571] = {.lex_state = 190, .external_lex_state = 2}, + [2572] = {.lex_state = 764, .external_lex_state = 2}, + [2573] = {.lex_state = 228, .external_lex_state = 2}, + [2574] = {.lex_state = 764, .external_lex_state = 2}, + [2575] = {.lex_state = 168, .external_lex_state = 2}, + [2576] = {.lex_state = 168, .external_lex_state = 2}, + [2577] = {.lex_state = 764, .external_lex_state = 2}, + [2578] = {.lex_state = 764, .external_lex_state = 2}, + [2579] = {.lex_state = 170, .external_lex_state = 2}, + [2580] = {.lex_state = 220, .external_lex_state = 2}, + [2581] = {.lex_state = 170, .external_lex_state = 2}, + [2582] = {.lex_state = 225, .external_lex_state = 2}, + [2583] = {.lex_state = 675}, + [2584] = {.lex_state = 246, .external_lex_state = 2}, + [2585] = {.lex_state = 207, .external_lex_state = 2}, + [2586] = {.lex_state = 190, .external_lex_state = 2}, + [2587] = {.lex_state = 764, .external_lex_state = 2}, + [2588] = {.lex_state = 170, .external_lex_state = 2}, + [2589] = {.lex_state = 220, .external_lex_state = 2}, + [2590] = {.lex_state = 246, .external_lex_state = 2}, + [2591] = {.lex_state = 207, .external_lex_state = 2}, + [2592] = {.lex_state = 675}, + [2593] = {.lex_state = 220, .external_lex_state = 2}, + [2594] = {.lex_state = 233, .external_lex_state = 2}, + [2595] = {.lex_state = 246, .external_lex_state = 2}, + [2596] = {.lex_state = 170, .external_lex_state = 2}, + [2597] = {.lex_state = 220, .external_lex_state = 2}, + [2598] = {.lex_state = 764, .external_lex_state = 2}, + [2599] = {.lex_state = 707}, + [2600] = {.lex_state = 764, .external_lex_state = 2}, + [2601] = {.lex_state = 764, .external_lex_state = 2}, + [2602] = {.lex_state = 42, .external_lex_state = 2}, + [2603] = {.lex_state = 233, .external_lex_state = 2}, + [2604] = {.lex_state = 168, .external_lex_state = 2}, + [2605] = {.lex_state = 168, .external_lex_state = 2}, + [2606] = {.lex_state = 233, .external_lex_state = 2}, + [2607] = {.lex_state = 231, .external_lex_state = 2}, + [2608] = {.lex_state = 764, .external_lex_state = 2}, + [2609] = {.lex_state = 246, .external_lex_state = 2}, + [2610] = {.lex_state = 246, .external_lex_state = 2}, + [2611] = {.lex_state = 246, .external_lex_state = 2}, + [2612] = {.lex_state = 673}, + [2613] = {.lex_state = 190, .external_lex_state = 2}, + [2614] = {.lex_state = 233, .external_lex_state = 2}, + [2615] = {.lex_state = 764, .external_lex_state = 2}, + [2616] = {.lex_state = 246, .external_lex_state = 2}, + [2617] = {.lex_state = 246, .external_lex_state = 2}, + [2618] = {.lex_state = 744, .external_lex_state = 2}, + [2619] = {.lex_state = 246, .external_lex_state = 2}, + [2620] = {.lex_state = 190, .external_lex_state = 2}, + [2621] = {.lex_state = 233, .external_lex_state = 2}, + [2622] = {.lex_state = 190, .external_lex_state = 2}, + [2623] = {.lex_state = 707}, + [2624] = {.lex_state = 190, .external_lex_state = 2}, + [2625] = {.lex_state = 240, .external_lex_state = 2}, + [2626] = {.lex_state = 764, .external_lex_state = 2}, + [2627] = {.lex_state = 764, .external_lex_state = 2}, + [2628] = {.lex_state = 246, .external_lex_state = 2}, + [2629] = {.lex_state = 227, .external_lex_state = 2}, + [2630] = {.lex_state = 196, .external_lex_state = 2}, + [2631] = {.lex_state = 164, .external_lex_state = 2}, + [2632] = {.lex_state = 42, .external_lex_state = 2}, + [2633] = {.lex_state = 214, .external_lex_state = 2}, + [2634] = {.lex_state = 227, .external_lex_state = 2}, + [2635] = {.lex_state = 221, .external_lex_state = 2}, + [2636] = {.lex_state = 206, .external_lex_state = 2}, + [2637] = {.lex_state = 675}, + [2638] = {.lex_state = 206, .external_lex_state = 2}, + [2639] = {.lex_state = 206, .external_lex_state = 2}, + [2640] = {.lex_state = 164, .external_lex_state = 2}, + [2641] = {.lex_state = 170, .external_lex_state = 2}, + [2642] = {.lex_state = 206, .external_lex_state = 2}, + [2643] = {.lex_state = 164, .external_lex_state = 2}, + [2644] = {.lex_state = 164, .external_lex_state = 2}, + [2645] = {.lex_state = 164, .external_lex_state = 2}, + [2646] = {.lex_state = 164, .external_lex_state = 2}, + [2647] = {.lex_state = 227, .external_lex_state = 2}, + [2648] = {.lex_state = 707}, + [2649] = {.lex_state = 227, .external_lex_state = 2}, + [2650] = {.lex_state = 707}, + [2651] = {.lex_state = 211, .external_lex_state = 2}, + [2652] = {.lex_state = 246, .external_lex_state = 2}, + [2653] = {.lex_state = 707}, + [2654] = {.lex_state = 227, .external_lex_state = 2}, + [2655] = {.lex_state = 707}, + [2656] = {.lex_state = 246, .external_lex_state = 2}, + [2657] = {.lex_state = 234, .external_lex_state = 2}, + [2658] = {.lex_state = 234, .external_lex_state = 2}, + [2659] = {.lex_state = 221, .external_lex_state = 2}, + [2660] = {.lex_state = 206, .external_lex_state = 2}, + [2661] = {.lex_state = 227, .external_lex_state = 2}, + [2662] = {.lex_state = 675}, + [2663] = {.lex_state = 206, .external_lex_state = 2}, + [2664] = {.lex_state = 221, .external_lex_state = 2}, + [2665] = {.lex_state = 227, .external_lex_state = 2}, + [2666] = {.lex_state = 170, .external_lex_state = 2}, + [2667] = {.lex_state = 227, .external_lex_state = 2}, + [2668] = {.lex_state = 227, .external_lex_state = 2}, + [2669] = {.lex_state = 191, .external_lex_state = 2}, + [2670] = {.lex_state = 681}, + [2671] = {.lex_state = 210, .external_lex_state = 2}, + [2672] = {.lex_state = 227, .external_lex_state = 2}, + [2673] = {.lex_state = 677}, + [2674] = {.lex_state = 222, .external_lex_state = 2}, + [2675] = {.lex_state = 222, .external_lex_state = 2}, + [2676] = {.lex_state = 227, .external_lex_state = 2}, + [2677] = {.lex_state = 235, .external_lex_state = 2}, [2678] = {.lex_state = 245, .external_lex_state = 2}, - [2679] = {.lex_state = 245, .external_lex_state = 2}, - [2680] = {.lex_state = 230, .external_lex_state = 2}, - [2681] = {.lex_state = 245, .external_lex_state = 2}, - [2682] = {.lex_state = 245, .external_lex_state = 2}, - [2683] = {.lex_state = 224, .external_lex_state = 2}, + [2679] = {.lex_state = 223, .external_lex_state = 2}, + [2680] = {.lex_state = 244, .external_lex_state = 2}, + [2681] = {.lex_state = 244, .external_lex_state = 2}, + [2682] = {.lex_state = 211, .external_lex_state = 2}, + [2683] = {.lex_state = 244, .external_lex_state = 2}, [2684] = {.lex_state = 245, .external_lex_state = 2}, - [2685] = {.lex_state = 189, .external_lex_state = 2}, - [2686] = {.lex_state = 245, .external_lex_state = 2}, - [2687] = {.lex_state = 169, .external_lex_state = 2}, - [2688] = {.lex_state = 169, .external_lex_state = 2}, - [2689] = {.lex_state = 169, .external_lex_state = 2}, + [2685] = {.lex_state = 223, .external_lex_state = 2}, + [2686] = {.lex_state = 227, .external_lex_state = 2}, + [2687] = {.lex_state = 211, .external_lex_state = 2}, + [2688] = {.lex_state = 211, .external_lex_state = 2}, + [2689] = {.lex_state = 235, .external_lex_state = 2}, [2690] = {.lex_state = 245, .external_lex_state = 2}, - [2691] = {.lex_state = 219, .external_lex_state = 2}, - [2692] = {.lex_state = 763, .external_lex_state = 2}, - [2693] = {.lex_state = 763, .external_lex_state = 2}, - [2694] = {.lex_state = 763, .external_lex_state = 2}, - [2695] = {.lex_state = 42, .external_lex_state = 2}, - [2696] = {.lex_state = 763, .external_lex_state = 2}, - [2697] = {.lex_state = 763, .external_lex_state = 2}, - [2698] = {.lex_state = 763, .external_lex_state = 2}, - [2699] = {.lex_state = 219, .external_lex_state = 2}, - [2700] = {.lex_state = 763, .external_lex_state = 2}, - [2701] = {.lex_state = 189, .external_lex_state = 2}, - [2702] = {.lex_state = 763, .external_lex_state = 2}, - [2703] = {.lex_state = 232, .external_lex_state = 2}, - [2704] = {.lex_state = 169, .external_lex_state = 2}, - [2705] = {.lex_state = 245, .external_lex_state = 2}, - [2706] = {.lex_state = 672}, - [2707] = {.lex_state = 189, .external_lex_state = 2}, - [2708] = {.lex_state = 763, .external_lex_state = 2}, - [2709] = {.lex_state = 189, .external_lex_state = 2}, - [2710] = {.lex_state = 189, .external_lex_state = 2}, - [2711] = {.lex_state = 232, .external_lex_state = 2}, - [2712] = {.lex_state = 239, .external_lex_state = 2}, - [2713] = {.lex_state = 674}, - [2714] = {.lex_state = 223, .external_lex_state = 2}, - [2715] = {.lex_state = 167, .external_lex_state = 2}, - [2716] = {.lex_state = 219, .external_lex_state = 2}, - [2717] = {.lex_state = 167, .external_lex_state = 2}, - [2718] = {.lex_state = 232, .external_lex_state = 2}, - [2719] = {.lex_state = 763, .external_lex_state = 2}, - [2720] = {.lex_state = 245, .external_lex_state = 2}, - [2721] = {.lex_state = 245, .external_lex_state = 2}, - [2722] = {.lex_state = 743, .external_lex_state = 2}, - [2723] = {.lex_state = 245, .external_lex_state = 2}, - [2724] = {.lex_state = 763, .external_lex_state = 2}, - [2725] = {.lex_state = 232, .external_lex_state = 2}, - [2726] = {.lex_state = 245, .external_lex_state = 2}, - [2727] = {.lex_state = 167, .external_lex_state = 2}, - [2728] = {.lex_state = 743, .external_lex_state = 2}, - [2729] = {.lex_state = 167, .external_lex_state = 2}, - [2730] = {.lex_state = 245, .external_lex_state = 2}, - [2731] = {.lex_state = 763, .external_lex_state = 2}, - [2732] = {.lex_state = 706}, - [2733] = {.lex_state = 674}, - [2734] = {.lex_state = 245, .external_lex_state = 2}, - [2735] = {.lex_state = 169, .external_lex_state = 2}, - [2736] = {.lex_state = 763, .external_lex_state = 2}, - [2737] = {.lex_state = 206, .external_lex_state = 2}, - [2738] = {.lex_state = 227, .external_lex_state = 2}, - [2739] = {.lex_state = 245, .external_lex_state = 2}, - [2740] = {.lex_state = 245, .external_lex_state = 2}, - [2741] = {.lex_state = 763, .external_lex_state = 2}, - [2742] = {.lex_state = 206, .external_lex_state = 2}, - [2743] = {.lex_state = 245, .external_lex_state = 2}, - [2744] = {.lex_state = 245, .external_lex_state = 2}, - [2745] = {.lex_state = 763, .external_lex_state = 2}, - [2746] = {.lex_state = 763, .external_lex_state = 2}, - [2747] = {.lex_state = 763, .external_lex_state = 2}, - [2748] = {.lex_state = 245, .external_lex_state = 2}, - [2749] = {.lex_state = 189, .external_lex_state = 2}, - [2750] = {.lex_state = 245, .external_lex_state = 2}, - [2751] = {.lex_state = 245, .external_lex_state = 2}, - [2752] = {.lex_state = 245, .external_lex_state = 2}, - [2753] = {.lex_state = 763, .external_lex_state = 2}, - [2754] = {.lex_state = 219, .external_lex_state = 2}, - [2755] = {.lex_state = 245, .external_lex_state = 2}, - [2756] = {.lex_state = 763, .external_lex_state = 2}, - [2757] = {.lex_state = 763, .external_lex_state = 2}, + [2691] = {.lex_state = 235, .external_lex_state = 2}, + [2692] = {.lex_state = 247, .external_lex_state = 2}, + [2693] = {.lex_state = 235, .external_lex_state = 2}, + [2694] = {.lex_state = 245, .external_lex_state = 2}, + [2695] = {.lex_state = 245, .external_lex_state = 2}, + [2696] = {.lex_state = 244, .external_lex_state = 2}, + [2697] = {.lex_state = 235, .external_lex_state = 2}, + [2698] = {.lex_state = 207, .external_lex_state = 2}, + [2699] = {.lex_state = 235, .external_lex_state = 2}, + [2700] = {.lex_state = 223, .external_lex_state = 2}, + [2701] = {.lex_state = 244, .external_lex_state = 2}, + [2702] = {.lex_state = 211, .external_lex_state = 2}, + [2703] = {.lex_state = 223, .external_lex_state = 2}, + [2704] = {.lex_state = 211, .external_lex_state = 2}, + [2705] = {.lex_state = 211, .external_lex_state = 2}, + [2706] = {.lex_state = 42, .external_lex_state = 2}, + [2707] = {.lex_state = 211, .external_lex_state = 2}, + [2708] = {.lex_state = 223, .external_lex_state = 2}, + [2709] = {.lex_state = 685}, + [2710] = {.lex_state = 207, .external_lex_state = 2}, + [2711] = {.lex_state = 207, .external_lex_state = 2}, + [2712] = {.lex_state = 211, .external_lex_state = 2}, + [2713] = {.lex_state = 41, .external_lex_state = 2}, + [2714] = {.lex_state = 211, .external_lex_state = 2}, + [2715] = {.lex_state = 676}, + [2716] = {.lex_state = 211, .external_lex_state = 2}, + [2717] = {.lex_state = 244, .external_lex_state = 2}, + [2718] = {.lex_state = 244, .external_lex_state = 2}, + [2719] = {.lex_state = 244, .external_lex_state = 2}, + [2720] = {.lex_state = 192, .external_lex_state = 2}, + [2721] = {.lex_state = 223, .external_lex_state = 2}, + [2722] = {.lex_state = 192, .external_lex_state = 2}, + [2723] = {.lex_state = 683}, + [2724] = {.lex_state = 208, .external_lex_state = 2}, + [2725] = {.lex_state = 35, .external_lex_state = 2}, + [2726] = {.lex_state = 211, .external_lex_state = 2}, + [2727] = {.lex_state = 223, .external_lex_state = 2}, + [2728] = {.lex_state = 223, .external_lex_state = 2}, + [2729] = {.lex_state = 223, .external_lex_state = 2}, + [2730] = {.lex_state = 683}, + [2731] = {.lex_state = 223, .external_lex_state = 2}, + [2732] = {.lex_state = 208, .external_lex_state = 2}, + [2733] = {.lex_state = 245, .external_lex_state = 2}, + [2734] = {.lex_state = 223, .external_lex_state = 2}, + [2735] = {.lex_state = 223, .external_lex_state = 2}, + [2736] = {.lex_state = 681}, + [2737] = {.lex_state = 677}, + [2738] = {.lex_state = 223, .external_lex_state = 2}, + [2739] = {.lex_state = 244, .external_lex_state = 2}, + [2740] = {.lex_state = 40, .external_lex_state = 2}, + [2741] = {.lex_state = 223, .external_lex_state = 2}, + [2742] = {.lex_state = 227, .external_lex_state = 2}, + [2743] = {.lex_state = 223, .external_lex_state = 2}, + [2744] = {.lex_state = 211, .external_lex_state = 2}, + [2745] = {.lex_state = 260, .external_lex_state = 2}, + [2746] = {.lex_state = 246, .external_lex_state = 2}, + [2747] = {.lex_state = 180, .external_lex_state = 2}, + [2748] = {.lex_state = 193, .external_lex_state = 2}, + [2749] = {.lex_state = 226, .external_lex_state = 2}, + [2750] = {.lex_state = 226, .external_lex_state = 2}, + [2751] = {.lex_state = 226, .external_lex_state = 2}, + [2752] = {.lex_state = 226, .external_lex_state = 2}, + [2753] = {.lex_state = 209, .external_lex_state = 2}, + [2754] = {.lex_state = 244, .external_lex_state = 2}, + [2755] = {.lex_state = 193, .external_lex_state = 2}, + [2756] = {.lex_state = 209, .external_lex_state = 2}, + [2757] = {.lex_state = 209, .external_lex_state = 2}, [2758] = {.lex_state = 219, .external_lex_state = 2}, - [2759] = {.lex_state = 219, .external_lex_state = 2}, - [2760] = {.lex_state = 763, .external_lex_state = 2}, - [2761] = {.lex_state = 763, .external_lex_state = 2}, - [2762] = {.lex_state = 232, .external_lex_state = 2}, - [2763] = {.lex_state = 205, .external_lex_state = 2}, - [2764] = {.lex_state = 205, .external_lex_state = 2}, - [2765] = {.lex_state = 205, .external_lex_state = 2}, - [2766] = {.lex_state = 205, .external_lex_state = 2}, - [2767] = {.lex_state = 226, .external_lex_state = 2}, - [2768] = {.lex_state = 42, .external_lex_state = 2}, - [2769] = {.lex_state = 226, .external_lex_state = 2}, - [2770] = {.lex_state = 163, .external_lex_state = 2}, - [2771] = {.lex_state = 226, .external_lex_state = 2}, - [2772] = {.lex_state = 226, .external_lex_state = 2}, - [2773] = {.lex_state = 226, .external_lex_state = 2}, - [2774] = {.lex_state = 226, .external_lex_state = 2}, - [2775] = {.lex_state = 226, .external_lex_state = 2}, - [2776] = {.lex_state = 226, .external_lex_state = 2}, - [2777] = {.lex_state = 226, .external_lex_state = 2}, - [2778] = {.lex_state = 233, .external_lex_state = 2}, - [2779] = {.lex_state = 226, .external_lex_state = 2}, - [2780] = {.lex_state = 226, .external_lex_state = 2}, - [2781] = {.lex_state = 226, .external_lex_state = 2}, - [2782] = {.lex_state = 233, .external_lex_state = 2}, - [2783] = {.lex_state = 226, .external_lex_state = 2}, - [2784] = {.lex_state = 226, .external_lex_state = 2}, - [2785] = {.lex_state = 226, .external_lex_state = 2}, - [2786] = {.lex_state = 226, .external_lex_state = 2}, - [2787] = {.lex_state = 226, .external_lex_state = 2}, - [2788] = {.lex_state = 226, .external_lex_state = 2}, - [2789] = {.lex_state = 226, .external_lex_state = 2}, - [2790] = {.lex_state = 169, .external_lex_state = 2}, - [2791] = {.lex_state = 706}, - [2792] = {.lex_state = 680}, + [2759] = {.lex_state = 35, .external_lex_state = 2}, + [2760] = {.lex_state = 260, .external_lex_state = 2}, + [2761] = {.lex_state = 246, .external_lex_state = 2}, + [2762] = {.lex_state = 193, .external_lex_state = 2}, + [2763] = {.lex_state = 176, .external_lex_state = 2}, + [2764] = {.lex_state = 244, .external_lex_state = 2}, + [2765] = {.lex_state = 246, .external_lex_state = 2}, + [2766] = {.lex_state = 193, .external_lex_state = 2}, + [2767] = {.lex_state = 40, .external_lex_state = 2}, + [2768] = {.lex_state = 236, .external_lex_state = 2}, + [2769] = {.lex_state = 679}, + [2770] = {.lex_state = 193, .external_lex_state = 2}, + [2771] = {.lex_state = 209, .external_lex_state = 2}, + [2772] = {.lex_state = 261, .external_lex_state = 2}, + [2773] = {.lex_state = 260, .external_lex_state = 2}, + [2774] = {.lex_state = 260, .external_lex_state = 2}, + [2775] = {.lex_state = 261, .external_lex_state = 2}, + [2776] = {.lex_state = 209, .external_lex_state = 2}, + [2777] = {.lex_state = 229, .external_lex_state = 2}, + [2778] = {.lex_state = 35, .external_lex_state = 2}, + [2779] = {.lex_state = 41, .external_lex_state = 2}, + [2780] = {.lex_state = 209, .external_lex_state = 2}, + [2781] = {.lex_state = 35, .external_lex_state = 2}, + [2782] = {.lex_state = 226, .external_lex_state = 2}, + [2783] = {.lex_state = 193, .external_lex_state = 2}, + [2784] = {.lex_state = 209, .external_lex_state = 2}, + [2785] = {.lex_state = 193, .external_lex_state = 2}, + [2786] = {.lex_state = 209, .external_lex_state = 2}, + [2787] = {.lex_state = 209, .external_lex_state = 2}, + [2788] = {.lex_state = 209, .external_lex_state = 2}, + [2789] = {.lex_state = 193, .external_lex_state = 2}, + [2790] = {.lex_state = 193, .external_lex_state = 2}, + [2791] = {.lex_state = 685}, + [2792] = {.lex_state = 241, .external_lex_state = 2}, [2793] = {.lex_state = 209, .external_lex_state = 2}, - [2794] = {.lex_state = 676}, - [2795] = {.lex_state = 221, .external_lex_state = 2}, - [2796] = {.lex_state = 221, .external_lex_state = 2}, - [2797] = {.lex_state = 195, .external_lex_state = 2}, - [2798] = {.lex_state = 213, .external_lex_state = 2}, - [2799] = {.lex_state = 163, .external_lex_state = 2}, - [2800] = {.lex_state = 163, .external_lex_state = 2}, - [2801] = {.lex_state = 163, .external_lex_state = 2}, - [2802] = {.lex_state = 163, .external_lex_state = 2}, - [2803] = {.lex_state = 245, .external_lex_state = 2}, - [2804] = {.lex_state = 245, .external_lex_state = 2}, - [2805] = {.lex_state = 169, .external_lex_state = 2}, - [2806] = {.lex_state = 205, .external_lex_state = 2}, - [2807] = {.lex_state = 205, .external_lex_state = 2}, - [2808] = {.lex_state = 674}, - [2809] = {.lex_state = 220, .external_lex_state = 2}, - [2810] = {.lex_state = 163, .external_lex_state = 2}, - [2811] = {.lex_state = 220, .external_lex_state = 2}, - [2812] = {.lex_state = 220, .external_lex_state = 2}, - [2813] = {.lex_state = 706}, - [2814] = {.lex_state = 706}, - [2815] = {.lex_state = 210, .external_lex_state = 2}, - [2816] = {.lex_state = 226, .external_lex_state = 2}, - [2817] = {.lex_state = 706}, - [2818] = {.lex_state = 674}, - [2819] = {.lex_state = 190, .external_lex_state = 2}, - [2820] = {.lex_state = 244, .external_lex_state = 2}, - [2821] = {.lex_state = 234, .external_lex_state = 2}, - [2822] = {.lex_state = 680}, - [2823] = {.lex_state = 676}, - [2824] = {.lex_state = 222, .external_lex_state = 2}, - [2825] = {.lex_state = 243, .external_lex_state = 2}, - [2826] = {.lex_state = 222, .external_lex_state = 2}, - [2827] = {.lex_state = 234, .external_lex_state = 2}, - [2828] = {.lex_state = 222, .external_lex_state = 2}, - [2829] = {.lex_state = 222, .external_lex_state = 2}, - [2830] = {.lex_state = 222, .external_lex_state = 2}, - [2831] = {.lex_state = 234, .external_lex_state = 2}, - [2832] = {.lex_state = 234, .external_lex_state = 2}, - [2833] = {.lex_state = 42, .external_lex_state = 2}, - [2834] = {.lex_state = 210, .external_lex_state = 2}, - [2835] = {.lex_state = 210, .external_lex_state = 2}, - [2836] = {.lex_state = 222, .external_lex_state = 2}, - [2837] = {.lex_state = 244, .external_lex_state = 2}, - [2838] = {.lex_state = 243, .external_lex_state = 2}, - [2839] = {.lex_state = 243, .external_lex_state = 2}, - [2840] = {.lex_state = 244, .external_lex_state = 2}, - [2841] = {.lex_state = 222, .external_lex_state = 2}, - [2842] = {.lex_state = 243, .external_lex_state = 2}, - [2843] = {.lex_state = 222, .external_lex_state = 2}, - [2844] = {.lex_state = 222, .external_lex_state = 2}, - [2845] = {.lex_state = 222, .external_lex_state = 2}, - [2846] = {.lex_state = 243, .external_lex_state = 2}, - [2847] = {.lex_state = 243, .external_lex_state = 2}, - [2848] = {.lex_state = 243, .external_lex_state = 2}, - [2849] = {.lex_state = 210, .external_lex_state = 2}, + [2794] = {.lex_state = 685}, + [2795] = {.lex_state = 685}, + [2796] = {.lex_state = 209, .external_lex_state = 2}, + [2797] = {.lex_state = 261, .external_lex_state = 2}, + [2798] = {.lex_state = 685}, + [2799] = {.lex_state = 209, .external_lex_state = 2}, + [2800] = {.lex_state = 685}, + [2801] = {.lex_state = 209, .external_lex_state = 2}, + [2802] = {.lex_state = 211, .external_lex_state = 2}, + [2803] = {.lex_state = 687}, + [2804] = {.lex_state = 683}, + [2805] = {.lex_state = 261, .external_lex_state = 2}, + [2806] = {.lex_state = 683}, + [2807] = {.lex_state = 260, .external_lex_state = 2}, + [2808] = {.lex_state = 209, .external_lex_state = 2}, + [2809] = {.lex_state = 211, .external_lex_state = 2}, + [2810] = {.lex_state = 226, .external_lex_state = 2}, + [2811] = {.lex_state = 172, .external_lex_state = 2}, + [2812] = {.lex_state = 261, .external_lex_state = 2}, + [2813] = {.lex_state = 249, .external_lex_state = 2}, + [2814] = {.lex_state = 35, .external_lex_state = 2}, + [2815] = {.lex_state = 35, .external_lex_state = 2}, + [2816] = {.lex_state = 35, .external_lex_state = 2}, + [2817] = {.lex_state = 227, .external_lex_state = 2}, + [2818] = {.lex_state = 35, .external_lex_state = 2}, + [2819] = {.lex_state = 35, .external_lex_state = 2}, + [2820] = {.lex_state = 201, .external_lex_state = 2}, + [2821] = {.lex_state = 35, .external_lex_state = 2}, + [2822] = {.lex_state = 35, .external_lex_state = 2}, + [2823] = {.lex_state = 35, .external_lex_state = 2}, + [2824] = {.lex_state = 35, .external_lex_state = 2}, + [2825] = {.lex_state = 242, .external_lex_state = 2}, + [2826] = {.lex_state = 212, .external_lex_state = 2}, + [2827] = {.lex_state = 35, .external_lex_state = 2}, + [2828] = {.lex_state = 201, .external_lex_state = 2}, + [2829] = {.lex_state = 201, .external_lex_state = 2}, + [2830] = {.lex_state = 35, .external_lex_state = 2}, + [2831] = {.lex_state = 35, .external_lex_state = 2}, + [2832] = {.lex_state = 227, .external_lex_state = 2}, + [2833] = {.lex_state = 180, .external_lex_state = 2}, + [2834] = {.lex_state = 35, .external_lex_state = 2}, + [2835] = {.lex_state = 212, .external_lex_state = 2}, + [2836] = {.lex_state = 679}, + [2837] = {.lex_state = 212, .external_lex_state = 2}, + [2838] = {.lex_state = 237, .external_lex_state = 2}, + [2839] = {.lex_state = 201, .external_lex_state = 2}, + [2840] = {.lex_state = 689}, + [2841] = {.lex_state = 35, .external_lex_state = 2}, + [2842] = {.lex_state = 173, .external_lex_state = 2}, + [2843] = {.lex_state = 201, .external_lex_state = 2}, + [2844] = {.lex_state = 237, .external_lex_state = 2}, + [2845] = {.lex_state = 216, .external_lex_state = 2}, + [2846] = {.lex_state = 180, .external_lex_state = 2}, + [2847] = {.lex_state = 201, .external_lex_state = 2}, + [2848] = {.lex_state = 707}, + [2849] = {.lex_state = 35, .external_lex_state = 2}, [2850] = {.lex_state = 35, .external_lex_state = 2}, - [2851] = {.lex_state = 210, .external_lex_state = 2}, - [2852] = {.lex_state = 41, .external_lex_state = 2}, - [2853] = {.lex_state = 243, .external_lex_state = 2}, - [2854] = {.lex_state = 222, .external_lex_state = 2}, - [2855] = {.lex_state = 234, .external_lex_state = 2}, - [2856] = {.lex_state = 206, .external_lex_state = 2}, - [2857] = {.lex_state = 246, .external_lex_state = 2}, - [2858] = {.lex_state = 210, .external_lex_state = 2}, - [2859] = {.lex_state = 206, .external_lex_state = 2}, - [2860] = {.lex_state = 210, .external_lex_state = 2}, - [2861] = {.lex_state = 222, .external_lex_state = 2}, - [2862] = {.lex_state = 234, .external_lex_state = 2}, - [2863] = {.lex_state = 684}, - [2864] = {.lex_state = 40, .external_lex_state = 2}, - [2865] = {.lex_state = 222, .external_lex_state = 2}, - [2866] = {.lex_state = 210, .external_lex_state = 2}, - [2867] = {.lex_state = 191, .external_lex_state = 2}, - [2868] = {.lex_state = 243, .external_lex_state = 2}, - [2869] = {.lex_state = 210, .external_lex_state = 2}, - [2870] = {.lex_state = 210, .external_lex_state = 2}, - [2871] = {.lex_state = 675}, - [2872] = {.lex_state = 191, .external_lex_state = 2}, - [2873] = {.lex_state = 682}, - [2874] = {.lex_state = 226, .external_lex_state = 2}, - [2875] = {.lex_state = 226, .external_lex_state = 2}, - [2876] = {.lex_state = 207, .external_lex_state = 2}, - [2877] = {.lex_state = 210, .external_lex_state = 2}, - [2878] = {.lex_state = 210, .external_lex_state = 2}, - [2879] = {.lex_state = 682}, - [2880] = {.lex_state = 244, .external_lex_state = 2}, - [2881] = {.lex_state = 210, .external_lex_state = 2}, - [2882] = {.lex_state = 222, .external_lex_state = 2}, - [2883] = {.lex_state = 210, .external_lex_state = 2}, - [2884] = {.lex_state = 244, .external_lex_state = 2}, - [2885] = {.lex_state = 244, .external_lex_state = 2}, - [2886] = {.lex_state = 210, .external_lex_state = 2}, - [2887] = {.lex_state = 210, .external_lex_state = 2}, - [2888] = {.lex_state = 210, .external_lex_state = 2}, - [2889] = {.lex_state = 210, .external_lex_state = 2}, - [2890] = {.lex_state = 210, .external_lex_state = 2}, - [2891] = {.lex_state = 222, .external_lex_state = 2}, - [2892] = {.lex_state = 210, .external_lex_state = 2}, - [2893] = {.lex_state = 207, .external_lex_state = 2}, - [2894] = {.lex_state = 210, .external_lex_state = 2}, - [2895] = {.lex_state = 210, .external_lex_state = 2}, - [2896] = {.lex_state = 206, .external_lex_state = 2}, - [2897] = {.lex_state = 208, .external_lex_state = 2}, - [2898] = {.lex_state = 682}, - [2899] = {.lex_state = 225, .external_lex_state = 2}, - [2900] = {.lex_state = 225, .external_lex_state = 2}, - [2901] = {.lex_state = 684}, - [2902] = {.lex_state = 225, .external_lex_state = 2}, + [2851] = {.lex_state = 215, .external_lex_state = 2}, + [2852] = {.lex_state = 35, .external_lex_state = 2}, + [2853] = {.lex_state = 35, .external_lex_state = 2}, + [2854] = {.lex_state = 35, .external_lex_state = 2}, + [2855] = {.lex_state = 43, .external_lex_state = 2}, + [2856] = {.lex_state = 35, .external_lex_state = 2}, + [2857] = {.lex_state = 217, .external_lex_state = 2}, + [2858] = {.lex_state = 201, .external_lex_state = 2}, + [2859] = {.lex_state = 201, .external_lex_state = 2}, + [2860] = {.lex_state = 35, .external_lex_state = 2}, + [2861] = {.lex_state = 212, .external_lex_state = 2}, + [2862] = {.lex_state = 35, .external_lex_state = 2}, + [2863] = {.lex_state = 35, .external_lex_state = 2}, + [2864] = {.lex_state = 35, .external_lex_state = 2}, + [2865] = {.lex_state = 687}, + [2866] = {.lex_state = 35, .external_lex_state = 2}, + [2867] = {.lex_state = 173, .external_lex_state = 2}, + [2868] = {.lex_state = 201, .external_lex_state = 2}, + [2869] = {.lex_state = 35, .external_lex_state = 2}, + [2870] = {.lex_state = 201, .external_lex_state = 2}, + [2871] = {.lex_state = 35, .external_lex_state = 2}, + [2872] = {.lex_state = 35, .external_lex_state = 2}, + [2873] = {.lex_state = 201, .external_lex_state = 2}, + [2874] = {.lex_state = 35, .external_lex_state = 2}, + [2875] = {.lex_state = 216, .external_lex_state = 2}, + [2876] = {.lex_state = 35, .external_lex_state = 2}, + [2877] = {.lex_state = 205, .external_lex_state = 2}, + [2878] = {.lex_state = 212, .external_lex_state = 2}, + [2879] = {.lex_state = 685}, + [2880] = {.lex_state = 35, .external_lex_state = 2}, + [2881] = {.lex_state = 35, .external_lex_state = 2}, + [2882] = {.lex_state = 35, .external_lex_state = 2}, + [2883] = {.lex_state = 685}, + [2884] = {.lex_state = 35, .external_lex_state = 2}, + [2885] = {.lex_state = 227, .external_lex_state = 2}, + [2886] = {.lex_state = 685}, + [2887] = {.lex_state = 35, .external_lex_state = 2}, + [2888] = {.lex_state = 685}, + [2889] = {.lex_state = 35, .external_lex_state = 2}, + [2890] = {.lex_state = 35, .external_lex_state = 2}, + [2891] = {.lex_state = 35, .external_lex_state = 2}, + [2892] = {.lex_state = 201, .external_lex_state = 2}, + [2893] = {.lex_state = 201, .external_lex_state = 2}, + [2894] = {.lex_state = 35, .external_lex_state = 2}, + [2895] = {.lex_state = 35, .external_lex_state = 2}, + [2896] = {.lex_state = 35, .external_lex_state = 2}, + [2897] = {.lex_state = 35, .external_lex_state = 2}, + [2898] = {.lex_state = 689}, + [2899] = {.lex_state = 212, .external_lex_state = 2}, + [2900] = {.lex_state = 218, .external_lex_state = 2}, + [2901] = {.lex_state = 238, .external_lex_state = 2}, + [2902] = {.lex_state = 218, .external_lex_state = 2}, [2903] = {.lex_state = 218, .external_lex_state = 2}, - [2904] = {.lex_state = 243, .external_lex_state = 2}, - [2905] = {.lex_state = 228, .external_lex_state = 2}, - [2906] = {.lex_state = 208, .external_lex_state = 2}, - [2907] = {.lex_state = 245, .external_lex_state = 2}, - [2908] = {.lex_state = 208, .external_lex_state = 2}, - [2909] = {.lex_state = 208, .external_lex_state = 2}, - [2910] = {.lex_state = 192, .external_lex_state = 2}, - [2911] = {.lex_state = 172, .external_lex_state = 2}, - [2912] = {.lex_state = 208, .external_lex_state = 2}, - [2913] = {.lex_state = 259, .external_lex_state = 2}, - [2914] = {.lex_state = 176, .external_lex_state = 2}, - [2915] = {.lex_state = 35, .external_lex_state = 2}, - [2916] = {.lex_state = 192, .external_lex_state = 2}, - [2917] = {.lex_state = 192, .external_lex_state = 2}, - [2918] = {.lex_state = 245, .external_lex_state = 2}, - [2919] = {.lex_state = 41, .external_lex_state = 2}, - [2920] = {.lex_state = 245, .external_lex_state = 2}, - [2921] = {.lex_state = 192, .external_lex_state = 2}, - [2922] = {.lex_state = 192, .external_lex_state = 2}, - [2923] = {.lex_state = 235, .external_lex_state = 2}, - [2924] = {.lex_state = 259, .external_lex_state = 2}, - [2925] = {.lex_state = 259, .external_lex_state = 2}, - [2926] = {.lex_state = 35, .external_lex_state = 2}, - [2927] = {.lex_state = 678}, - [2928] = {.lex_state = 208, .external_lex_state = 2}, - [2929] = {.lex_state = 40, .external_lex_state = 2}, - [2930] = {.lex_state = 208, .external_lex_state = 2}, - [2931] = {.lex_state = 208, .external_lex_state = 2}, - [2932] = {.lex_state = 225, .external_lex_state = 2}, - [2933] = {.lex_state = 682}, - [2934] = {.lex_state = 259, .external_lex_state = 2}, - [2935] = {.lex_state = 35, .external_lex_state = 2}, - [2936] = {.lex_state = 210, .external_lex_state = 2}, - [2937] = {.lex_state = 210, .external_lex_state = 2}, - [2938] = {.lex_state = 208, .external_lex_state = 2}, - [2939] = {.lex_state = 686}, - [2940] = {.lex_state = 192, .external_lex_state = 2}, - [2941] = {.lex_state = 225, .external_lex_state = 2}, - [2942] = {.lex_state = 225, .external_lex_state = 2}, - [2943] = {.lex_state = 192, .external_lex_state = 2}, - [2944] = {.lex_state = 260, .external_lex_state = 2}, - [2945] = {.lex_state = 259, .external_lex_state = 2}, - [2946] = {.lex_state = 260, .external_lex_state = 2}, - [2947] = {.lex_state = 260, .external_lex_state = 2}, - [2948] = {.lex_state = 192, .external_lex_state = 2}, - [2949] = {.lex_state = 248, .external_lex_state = 2}, - [2950] = {.lex_state = 192, .external_lex_state = 2}, - [2951] = {.lex_state = 684}, - [2952] = {.lex_state = 240, .external_lex_state = 2}, - [2953] = {.lex_state = 260, .external_lex_state = 2}, - [2954] = {.lex_state = 208, .external_lex_state = 2}, - [2955] = {.lex_state = 260, .external_lex_state = 2}, - [2956] = {.lex_state = 684}, - [2957] = {.lex_state = 208, .external_lex_state = 2}, - [2958] = {.lex_state = 243, .external_lex_state = 2}, - [2959] = {.lex_state = 684}, - [2960] = {.lex_state = 208, .external_lex_state = 2}, - [2961] = {.lex_state = 208, .external_lex_state = 2}, - [2962] = {.lex_state = 684}, - [2963] = {.lex_state = 208, .external_lex_state = 2}, - [2964] = {.lex_state = 179, .external_lex_state = 2}, - [2965] = {.lex_state = 208, .external_lex_state = 2}, - [2966] = {.lex_state = 35, .external_lex_state = 2}, - [2967] = {.lex_state = 236, .external_lex_state = 2}, - [2968] = {.lex_state = 200, .external_lex_state = 2}, - [2969] = {.lex_state = 200, .external_lex_state = 2}, - [2970] = {.lex_state = 35, .external_lex_state = 2}, - [2971] = {.lex_state = 35, .external_lex_state = 2}, - [2972] = {.lex_state = 200, .external_lex_state = 2}, - [2973] = {.lex_state = 200, .external_lex_state = 2}, - [2974] = {.lex_state = 35, .external_lex_state = 2}, - [2975] = {.lex_state = 35, .external_lex_state = 2}, - [2976] = {.lex_state = 35, .external_lex_state = 2}, - [2977] = {.lex_state = 706}, - [2978] = {.lex_state = 35, .external_lex_state = 2}, - [2979] = {.lex_state = 35, .external_lex_state = 2}, - [2980] = {.lex_state = 35, .external_lex_state = 2}, - [2981] = {.lex_state = 200, .external_lex_state = 2}, - [2982] = {.lex_state = 35, .external_lex_state = 2}, - [2983] = {.lex_state = 35, .external_lex_state = 2}, - [2984] = {.lex_state = 35, .external_lex_state = 2}, - [2985] = {.lex_state = 35, .external_lex_state = 2}, - [2986] = {.lex_state = 684}, - [2987] = {.lex_state = 35, .external_lex_state = 2}, - [2988] = {.lex_state = 35, .external_lex_state = 2}, - [2989] = {.lex_state = 678}, - [2990] = {.lex_state = 688}, - [2991] = {.lex_state = 35, .external_lex_state = 2}, - [2992] = {.lex_state = 35, .external_lex_state = 2}, - [2993] = {.lex_state = 35, .external_lex_state = 2}, - [2994] = {.lex_state = 35, .external_lex_state = 2}, - [2995] = {.lex_state = 35, .external_lex_state = 2}, - [2996] = {.lex_state = 200, .external_lex_state = 2}, - [2997] = {.lex_state = 200, .external_lex_state = 2}, - [2998] = {.lex_state = 35, .external_lex_state = 2}, - [2999] = {.lex_state = 215, .external_lex_state = 2}, - [3000] = {.lex_state = 211, .external_lex_state = 2}, - [3001] = {.lex_state = 211, .external_lex_state = 2}, - [3002] = {.lex_state = 35, .external_lex_state = 2}, - [3003] = {.lex_state = 35, .external_lex_state = 2}, - [3004] = {.lex_state = 200, .external_lex_state = 2}, - [3005] = {.lex_state = 35, .external_lex_state = 2}, - [3006] = {.lex_state = 35, .external_lex_state = 2}, - [3007] = {.lex_state = 35, .external_lex_state = 2}, - [3008] = {.lex_state = 35, .external_lex_state = 2}, - [3009] = {.lex_state = 684}, - [3010] = {.lex_state = 35, .external_lex_state = 2}, - [3011] = {.lex_state = 35, .external_lex_state = 2}, - [3012] = {.lex_state = 215, .external_lex_state = 2}, - [3013] = {.lex_state = 35, .external_lex_state = 2}, - [3014] = {.lex_state = 684}, - [3015] = {.lex_state = 35, .external_lex_state = 2}, - [3016] = {.lex_state = 211, .external_lex_state = 2}, - [3017] = {.lex_state = 35, .external_lex_state = 2}, - [3018] = {.lex_state = 211, .external_lex_state = 2}, - [3019] = {.lex_state = 226, .external_lex_state = 2}, - [3020] = {.lex_state = 35, .external_lex_state = 2}, - [3021] = {.lex_state = 35, .external_lex_state = 2}, - [3022] = {.lex_state = 35, .external_lex_state = 2}, - [3023] = {.lex_state = 200, .external_lex_state = 2}, - [3024] = {.lex_state = 35, .external_lex_state = 2}, - [3025] = {.lex_state = 35, .external_lex_state = 2}, - [3026] = {.lex_state = 226, .external_lex_state = 2}, - [3027] = {.lex_state = 226, .external_lex_state = 2}, - [3028] = {.lex_state = 35, .external_lex_state = 2}, - [3029] = {.lex_state = 173, .external_lex_state = 2}, - [3030] = {.lex_state = 211, .external_lex_state = 2}, - [3031] = {.lex_state = 35, .external_lex_state = 2}, - [3032] = {.lex_state = 173, .external_lex_state = 2}, - [3033] = {.lex_state = 35, .external_lex_state = 2}, - [3034] = {.lex_state = 35, .external_lex_state = 2}, - [3035] = {.lex_state = 35, .external_lex_state = 2}, - [3036] = {.lex_state = 35, .external_lex_state = 2}, - [3037] = {.lex_state = 688}, - [3038] = {.lex_state = 35, .external_lex_state = 2}, - [3039] = {.lex_state = 35, .external_lex_state = 2}, - [3040] = {.lex_state = 211, .external_lex_state = 2}, - [3041] = {.lex_state = 686}, - [3042] = {.lex_state = 35, .external_lex_state = 2}, - [3043] = {.lex_state = 35, .external_lex_state = 2}, - [3044] = {.lex_state = 43, .external_lex_state = 2}, - [3045] = {.lex_state = 35, .external_lex_state = 2}, - [3046] = {.lex_state = 200, .external_lex_state = 2}, - [3047] = {.lex_state = 35, .external_lex_state = 2}, - [3048] = {.lex_state = 35, .external_lex_state = 2}, - [3049] = {.lex_state = 214, .external_lex_state = 2}, - [3050] = {.lex_state = 179, .external_lex_state = 2}, - [3051] = {.lex_state = 200, .external_lex_state = 2}, - [3052] = {.lex_state = 200, .external_lex_state = 2}, - [3053] = {.lex_state = 236, .external_lex_state = 2}, - [3054] = {.lex_state = 216, .external_lex_state = 2}, - [3055] = {.lex_state = 204, .external_lex_state = 2}, - [3056] = {.lex_state = 241, .external_lex_state = 2}, - [3057] = {.lex_state = 684}, - [3058] = {.lex_state = 179, .external_lex_state = 2}, - [3059] = {.lex_state = 200, .external_lex_state = 2}, - [3060] = {.lex_state = 35, .external_lex_state = 2}, - [3061] = {.lex_state = 174, .external_lex_state = 2}, - [3062] = {.lex_state = 237, .external_lex_state = 2}, - [3063] = {.lex_state = 217, .external_lex_state = 2}, - [3064] = {.lex_state = 217, .external_lex_state = 2}, - [3065] = {.lex_state = 217, .external_lex_state = 2}, - [3066] = {.lex_state = 688}, - [3067] = {.lex_state = 217, .external_lex_state = 2}, - [3068] = {.lex_state = 217, .external_lex_state = 2}, - [3069] = {.lex_state = 217, .external_lex_state = 2}, - [3070] = {.lex_state = 688}, - [3071] = {.lex_state = 217, .external_lex_state = 2}, - [3072] = {.lex_state = 217, .external_lex_state = 2}, - [3073] = {.lex_state = 217, .external_lex_state = 2}, - [3074] = {.lex_state = 217, .external_lex_state = 2}, - [3075] = {.lex_state = 217, .external_lex_state = 2}, - [3076] = {.lex_state = 174, .external_lex_state = 2}, - [3077] = {.lex_state = 217, .external_lex_state = 2}, - [3078] = {.lex_state = 217, .external_lex_state = 2}, - [3079] = {.lex_state = 217, .external_lex_state = 2}, - [3080] = {.lex_state = 217, .external_lex_state = 2}, - [3081] = {.lex_state = 174, .external_lex_state = 2}, - [3082] = {.lex_state = 174, .external_lex_state = 2}, - [3083] = {.lex_state = 217, .external_lex_state = 2}, - [3084] = {.lex_state = 217, .external_lex_state = 2}, - [3085] = {.lex_state = 217, .external_lex_state = 2}, - [3086] = {.lex_state = 217, .external_lex_state = 2}, - [3087] = {.lex_state = 217, .external_lex_state = 2}, - [3088] = {.lex_state = 690}, - [3089] = {.lex_state = 46, .external_lex_state = 2}, - [3090] = {.lex_state = 690}, - [3091] = {.lex_state = 217, .external_lex_state = 2}, - [3092] = {.lex_state = 690}, - [3093] = {.lex_state = 690}, - [3094] = {.lex_state = 690}, - [3095] = {.lex_state = 200, .external_lex_state = 2}, - [3096] = {.lex_state = 217, .external_lex_state = 2}, - [3097] = {.lex_state = 237, .external_lex_state = 2}, - [3098] = {.lex_state = 217, .external_lex_state = 2}, - [3099] = {.lex_state = 217, .external_lex_state = 2}, - [3100] = {.lex_state = 690}, - [3101] = {.lex_state = 217, .external_lex_state = 2}, - [3102] = {.lex_state = 217, .external_lex_state = 2}, - [3103] = {.lex_state = 217, .external_lex_state = 2}, - [3104] = {.lex_state = 237, .external_lex_state = 2}, - [3105] = {.lex_state = 217, .external_lex_state = 2}, - [3106] = {.lex_state = 217, .external_lex_state = 2}, - [3107] = {.lex_state = 237, .external_lex_state = 2}, - [3108] = {.lex_state = 217, .external_lex_state = 2}, - [3109] = {.lex_state = 217, .external_lex_state = 2}, - [3110] = {.lex_state = 237, .external_lex_state = 2}, - [3111] = {.lex_state = 217, .external_lex_state = 2}, - [3112] = {.lex_state = 217, .external_lex_state = 2}, - [3113] = {.lex_state = 217, .external_lex_state = 2}, - [3114] = {.lex_state = 217, .external_lex_state = 2}, - [3115] = {.lex_state = 237, .external_lex_state = 2}, - [3116] = {.lex_state = 237, .external_lex_state = 2}, - [3117] = {.lex_state = 43, .external_lex_state = 2}, - [3118] = {.lex_state = 201, .external_lex_state = 2}, - [3119] = {.lex_state = 201, .external_lex_state = 2}, - [3120] = {.lex_state = 217, .external_lex_state = 2}, - [3121] = {.lex_state = 217, .external_lex_state = 2}, - [3122] = {.lex_state = 217, .external_lex_state = 2}, - [3123] = {.lex_state = 217, .external_lex_state = 2}, - [3124] = {.lex_state = 237, .external_lex_state = 2}, - [3125] = {.lex_state = 237, .external_lex_state = 2}, - [3126] = {.lex_state = 261, .external_lex_state = 2}, - [3127] = {.lex_state = 217, .external_lex_state = 2}, - [3128] = {.lex_state = 217, .external_lex_state = 2}, - [3129] = {.lex_state = 217, .external_lex_state = 2}, - [3130] = {.lex_state = 200, .external_lex_state = 2}, - [3131] = {.lex_state = 210, .external_lex_state = 2}, - [3132] = {.lex_state = 210, .external_lex_state = 2}, - [3133] = {.lex_state = 210, .external_lex_state = 2}, - [3134] = {.lex_state = 202, .external_lex_state = 2}, - [3135] = {.lex_state = 261, .external_lex_state = 2}, - [3136] = {.lex_state = 261, .external_lex_state = 2}, - [3137] = {.lex_state = 261, .external_lex_state = 2}, - [3138] = {.lex_state = 261, .external_lex_state = 2}, - [3139] = {.lex_state = 174, .external_lex_state = 2}, - [3140] = {.lex_state = 217, .external_lex_state = 2}, - [3141] = {.lex_state = 217, .external_lex_state = 2}, - [3142] = {.lex_state = 217, .external_lex_state = 2}, - [3143] = {.lex_state = 217, .external_lex_state = 2}, - [3144] = {.lex_state = 217, .external_lex_state = 2}, - [3145] = {.lex_state = 217, .external_lex_state = 2}, - [3146] = {.lex_state = 217, .external_lex_state = 2}, - [3147] = {.lex_state = 217, .external_lex_state = 2}, - [3148] = {.lex_state = 217, .external_lex_state = 2}, - [3149] = {.lex_state = 217, .external_lex_state = 2}, - [3150] = {.lex_state = 237, .external_lex_state = 2}, - [3151] = {.lex_state = 47, .external_lex_state = 2}, - [3152] = {.lex_state = 706}, - [3153] = {.lex_state = 47, .external_lex_state = 2}, - [3154] = {.lex_state = 47, .external_lex_state = 2}, - [3155] = {.lex_state = 47, .external_lex_state = 2}, - [3156] = {.lex_state = 47, .external_lex_state = 2}, - [3157] = {.lex_state = 47, .external_lex_state = 2}, - [3158] = {.lex_state = 47, .external_lex_state = 2}, - [3159] = {.lex_state = 690}, - [3160] = {.lex_state = 47, .external_lex_state = 2}, - [3161] = {.lex_state = 47, .external_lex_state = 2}, - [3162] = {.lex_state = 690}, - [3163] = {.lex_state = 47, .external_lex_state = 2}, - [3164] = {.lex_state = 47, .external_lex_state = 2}, - [3165] = {.lex_state = 692}, - [3166] = {.lex_state = 47, .external_lex_state = 2}, - [3167] = {.lex_state = 47, .external_lex_state = 2}, - [3168] = {.lex_state = 47, .external_lex_state = 2}, - [3169] = {.lex_state = 47, .external_lex_state = 2}, - [3170] = {.lex_state = 47, .external_lex_state = 2}, - [3171] = {.lex_state = 47, .external_lex_state = 2}, - [3172] = {.lex_state = 47, .external_lex_state = 2}, - [3173] = {.lex_state = 47, .external_lex_state = 2}, - [3174] = {.lex_state = 47, .external_lex_state = 2}, - [3175] = {.lex_state = 47, .external_lex_state = 2}, - [3176] = {.lex_state = 47, .external_lex_state = 2}, - [3177] = {.lex_state = 47, .external_lex_state = 2}, - [3178] = {.lex_state = 47, .external_lex_state = 2}, - [3179] = {.lex_state = 47, .external_lex_state = 2}, - [3180] = {.lex_state = 47, .external_lex_state = 2}, - [3181] = {.lex_state = 47, .external_lex_state = 2}, - [3182] = {.lex_state = 47, .external_lex_state = 2}, - [3183] = {.lex_state = 47, .external_lex_state = 2}, - [3184] = {.lex_state = 47, .external_lex_state = 2}, - [3185] = {.lex_state = 47, .external_lex_state = 2}, - [3186] = {.lex_state = 706}, - [3187] = {.lex_state = 47, .external_lex_state = 2}, - [3188] = {.lex_state = 47, .external_lex_state = 2}, - [3189] = {.lex_state = 47, .external_lex_state = 2}, - [3190] = {.lex_state = 46, .external_lex_state = 2}, - [3191] = {.lex_state = 47, .external_lex_state = 2}, - [3192] = {.lex_state = 47, .external_lex_state = 2}, - [3193] = {.lex_state = 47, .external_lex_state = 2}, - [3194] = {.lex_state = 690}, - [3195] = {.lex_state = 47, .external_lex_state = 2}, - [3196] = {.lex_state = 47, .external_lex_state = 2}, - [3197] = {.lex_state = 690}, - [3198] = {.lex_state = 47, .external_lex_state = 2}, - [3199] = {.lex_state = 47, .external_lex_state = 2}, - [3200] = {.lex_state = 690}, - [3201] = {.lex_state = 47, .external_lex_state = 2}, - [3202] = {.lex_state = 47, .external_lex_state = 2}, - [3203] = {.lex_state = 47, .external_lex_state = 2}, - [3204] = {.lex_state = 47, .external_lex_state = 2}, - [3205] = {.lex_state = 47, .external_lex_state = 2}, - [3206] = {.lex_state = 47, .external_lex_state = 2}, - [3207] = {.lex_state = 690}, - [3208] = {.lex_state = 47, .external_lex_state = 2}, - [3209] = {.lex_state = 47, .external_lex_state = 2}, - [3210] = {.lex_state = 47, .external_lex_state = 2}, - [3211] = {.lex_state = 47, .external_lex_state = 2}, - [3212] = {.lex_state = 47, .external_lex_state = 2}, - [3213] = {.lex_state = 163, .external_lex_state = 2}, - [3214] = {.lex_state = 47, .external_lex_state = 2}, - [3215] = {.lex_state = 47, .external_lex_state = 2}, - [3216] = {.lex_state = 47, .external_lex_state = 2}, - [3217] = {.lex_state = 47, .external_lex_state = 2}, - [3218] = {.lex_state = 47, .external_lex_state = 2}, - [3219] = {.lex_state = 47, .external_lex_state = 2}, - [3220] = {.lex_state = 47, .external_lex_state = 2}, - [3221] = {.lex_state = 47, .external_lex_state = 2}, - [3222] = {.lex_state = 694}, - [3223] = {.lex_state = 47, .external_lex_state = 2}, - [3224] = {.lex_state = 47, .external_lex_state = 2}, - [3225] = {.lex_state = 47, .external_lex_state = 2}, - [3226] = {.lex_state = 694}, - [3227] = {.lex_state = 165, .external_lex_state = 2}, - [3228] = {.lex_state = 165, .external_lex_state = 2}, - [3229] = {.lex_state = 165, .external_lex_state = 2}, - [3230] = {.lex_state = 165, .external_lex_state = 2}, - [3231] = {.lex_state = 165, .external_lex_state = 2}, - [3232] = {.lex_state = 165, .external_lex_state = 2}, - [3233] = {.lex_state = 165, .external_lex_state = 2}, - [3234] = {.lex_state = 165, .external_lex_state = 2}, - [3235] = {.lex_state = 165, .external_lex_state = 2}, - [3236] = {.lex_state = 165, .external_lex_state = 2}, - [3237] = {.lex_state = 165, .external_lex_state = 2}, - [3238] = {.lex_state = 165, .external_lex_state = 2}, - [3239] = {.lex_state = 165, .external_lex_state = 2}, - [3240] = {.lex_state = 692}, - [3241] = {.lex_state = 165, .external_lex_state = 2}, - [3242] = {.lex_state = 696}, - [3243] = {.lex_state = 165, .external_lex_state = 2}, - [3244] = {.lex_state = 165, .external_lex_state = 2}, - [3245] = {.lex_state = 165, .external_lex_state = 2}, - [3246] = {.lex_state = 165, .external_lex_state = 2}, - [3247] = {.lex_state = 696}, - [3248] = {.lex_state = 706}, - [3249] = {.lex_state = 165, .external_lex_state = 2}, - [3250] = {.lex_state = 165, .external_lex_state = 2}, - [3251] = {.lex_state = 165, .external_lex_state = 2}, - [3252] = {.lex_state = 165, .external_lex_state = 2}, - [3253] = {.lex_state = 165, .external_lex_state = 2}, - [3254] = {.lex_state = 47, .external_lex_state = 2}, - [3255] = {.lex_state = 777}, - [3256] = {.lex_state = 777}, - [3257] = {.lex_state = 165, .external_lex_state = 2}, - [3258] = {.lex_state = 698}, - [3259] = {.lex_state = 777}, - [3260] = {.lex_state = 777}, - [3261] = {.lex_state = 777}, - [3262] = {.lex_state = 777}, - [3263] = {.lex_state = 698}, - [3264] = {.lex_state = 777}, - [3265] = {.lex_state = 698}, - [3266] = {.lex_state = 700}, - [3267] = {.lex_state = 698}, - [3268] = {.lex_state = 777}, - [3269] = {.lex_state = 777}, - [3270] = {.lex_state = 777}, - [3271] = {.lex_state = 706}, - [3272] = {.lex_state = 777}, - [3273] = {.lex_state = 777}, - [3274] = {.lex_state = 698}, - [3275] = {.lex_state = 777}, - [3276] = {.lex_state = 700}, - [3277] = {.lex_state = 700}, - [3278] = {.lex_state = 706}, - [3279] = {.lex_state = 700}, - [3280] = {.lex_state = 165, .external_lex_state = 2}, - [3281] = {.lex_state = 777}, - [3282] = {.lex_state = 698}, - [3283] = {.lex_state = 777}, - [3284] = {.lex_state = 698}, - [3285] = {.lex_state = 698}, - [3286] = {.lex_state = 777}, - [3287] = {.lex_state = 696}, - [3288] = {.lex_state = 163, .external_lex_state = 2}, - [3289] = {.lex_state = 777}, - [3290] = {.lex_state = 696}, - [3291] = {.lex_state = 777}, - [3292] = {.lex_state = 777}, - [3293] = {.lex_state = 777}, - [3294] = {.lex_state = 777}, - [3295] = {.lex_state = 777}, - [3296] = {.lex_state = 698}, - [3297] = {.lex_state = 777}, - [3298] = {.lex_state = 777}, - [3299] = {.lex_state = 700}, - [3300] = {.lex_state = 161, .external_lex_state = 2}, + [2904] = {.lex_state = 218, .external_lex_state = 2}, + [2905] = {.lex_state = 218, .external_lex_state = 2}, + [2906] = {.lex_state = 218, .external_lex_state = 2}, + [2907] = {.lex_state = 218, .external_lex_state = 2}, + [2908] = {.lex_state = 218, .external_lex_state = 2}, + [2909] = {.lex_state = 218, .external_lex_state = 2}, + [2910] = {.lex_state = 238, .external_lex_state = 2}, + [2911] = {.lex_state = 218, .external_lex_state = 2}, + [2912] = {.lex_state = 218, .external_lex_state = 2}, + [2913] = {.lex_state = 218, .external_lex_state = 2}, + [2914] = {.lex_state = 202, .external_lex_state = 2}, + [2915] = {.lex_state = 218, .external_lex_state = 2}, + [2916] = {.lex_state = 202, .external_lex_state = 2}, + [2917] = {.lex_state = 46, .external_lex_state = 2}, + [2918] = {.lex_state = 691}, + [2919] = {.lex_state = 218, .external_lex_state = 2}, + [2920] = {.lex_state = 218, .external_lex_state = 2}, + [2921] = {.lex_state = 218, .external_lex_state = 2}, + [2922] = {.lex_state = 218, .external_lex_state = 2}, + [2923] = {.lex_state = 211, .external_lex_state = 2}, + [2924] = {.lex_state = 691}, + [2925] = {.lex_state = 218, .external_lex_state = 2}, + [2926] = {.lex_state = 211, .external_lex_state = 2}, + [2927] = {.lex_state = 211, .external_lex_state = 2}, + [2928] = {.lex_state = 262, .external_lex_state = 2}, + [2929] = {.lex_state = 201, .external_lex_state = 2}, + [2930] = {.lex_state = 262, .external_lex_state = 2}, + [2931] = {.lex_state = 262, .external_lex_state = 2}, + [2932] = {.lex_state = 218, .external_lex_state = 2}, + [2933] = {.lex_state = 238, .external_lex_state = 2}, + [2934] = {.lex_state = 238, .external_lex_state = 2}, + [2935] = {.lex_state = 262, .external_lex_state = 2}, + [2936] = {.lex_state = 218, .external_lex_state = 2}, + [2937] = {.lex_state = 218, .external_lex_state = 2}, + [2938] = {.lex_state = 218, .external_lex_state = 2}, + [2939] = {.lex_state = 218, .external_lex_state = 2}, + [2940] = {.lex_state = 43, .external_lex_state = 2}, + [2941] = {.lex_state = 218, .external_lex_state = 2}, + [2942] = {.lex_state = 218, .external_lex_state = 2}, + [2943] = {.lex_state = 238, .external_lex_state = 2}, + [2944] = {.lex_state = 218, .external_lex_state = 2}, + [2945] = {.lex_state = 238, .external_lex_state = 2}, + [2946] = {.lex_state = 174, .external_lex_state = 2}, + [2947] = {.lex_state = 218, .external_lex_state = 2}, + [2948] = {.lex_state = 203, .external_lex_state = 2}, + [2949] = {.lex_state = 262, .external_lex_state = 2}, + [2950] = {.lex_state = 218, .external_lex_state = 2}, + [2951] = {.lex_state = 218, .external_lex_state = 2}, + [2952] = {.lex_state = 238, .external_lex_state = 2}, + [2953] = {.lex_state = 218, .external_lex_state = 2}, + [2954] = {.lex_state = 238, .external_lex_state = 2}, + [2955] = {.lex_state = 689}, + [2956] = {.lex_state = 689}, + [2957] = {.lex_state = 218, .external_lex_state = 2}, + [2958] = {.lex_state = 218, .external_lex_state = 2}, + [2959] = {.lex_state = 218, .external_lex_state = 2}, + [2960] = {.lex_state = 174, .external_lex_state = 2}, + [2961] = {.lex_state = 174, .external_lex_state = 2}, + [2962] = {.lex_state = 174, .external_lex_state = 2}, + [2963] = {.lex_state = 174, .external_lex_state = 2}, + [2964] = {.lex_state = 201, .external_lex_state = 2}, + [2965] = {.lex_state = 218, .external_lex_state = 2}, + [2966] = {.lex_state = 691}, + [2967] = {.lex_state = 218, .external_lex_state = 2}, + [2968] = {.lex_state = 218, .external_lex_state = 2}, + [2969] = {.lex_state = 218, .external_lex_state = 2}, + [2970] = {.lex_state = 691}, + [2971] = {.lex_state = 218, .external_lex_state = 2}, + [2972] = {.lex_state = 691}, + [2973] = {.lex_state = 218, .external_lex_state = 2}, + [2974] = {.lex_state = 691}, + [2975] = {.lex_state = 218, .external_lex_state = 2}, + [2976] = {.lex_state = 218, .external_lex_state = 2}, + [2977] = {.lex_state = 218, .external_lex_state = 2}, + [2978] = {.lex_state = 218, .external_lex_state = 2}, + [2979] = {.lex_state = 238, .external_lex_state = 2}, + [2980] = {.lex_state = 238, .external_lex_state = 2}, + [2981] = {.lex_state = 707}, + [2982] = {.lex_state = 47, .external_lex_state = 2}, + [2983] = {.lex_state = 691}, + [2984] = {.lex_state = 47, .external_lex_state = 2}, + [2985] = {.lex_state = 47, .external_lex_state = 2}, + [2986] = {.lex_state = 691}, + [2987] = {.lex_state = 691}, + [2988] = {.lex_state = 47, .external_lex_state = 2}, + [2989] = {.lex_state = 691}, + [2990] = {.lex_state = 47, .external_lex_state = 2}, + [2991] = {.lex_state = 47, .external_lex_state = 2}, + [2992] = {.lex_state = 691}, + [2993] = {.lex_state = 691}, + [2994] = {.lex_state = 47, .external_lex_state = 2}, + [2995] = {.lex_state = 47, .external_lex_state = 2}, + [2996] = {.lex_state = 47, .external_lex_state = 2}, + [2997] = {.lex_state = 47, .external_lex_state = 2}, + [2998] = {.lex_state = 47, .external_lex_state = 2}, + [2999] = {.lex_state = 47, .external_lex_state = 2}, + [3000] = {.lex_state = 47, .external_lex_state = 2}, + [3001] = {.lex_state = 47, .external_lex_state = 2}, + [3002] = {.lex_state = 47, .external_lex_state = 2}, + [3003] = {.lex_state = 47, .external_lex_state = 2}, + [3004] = {.lex_state = 47, .external_lex_state = 2}, + [3005] = {.lex_state = 47, .external_lex_state = 2}, + [3006] = {.lex_state = 47, .external_lex_state = 2}, + [3007] = {.lex_state = 47, .external_lex_state = 2}, + [3008] = {.lex_state = 47, .external_lex_state = 2}, + [3009] = {.lex_state = 47, .external_lex_state = 2}, + [3010] = {.lex_state = 707}, + [3011] = {.lex_state = 47, .external_lex_state = 2}, + [3012] = {.lex_state = 164, .external_lex_state = 2}, + [3013] = {.lex_state = 47, .external_lex_state = 2}, + [3014] = {.lex_state = 47, .external_lex_state = 2}, + [3015] = {.lex_state = 47, .external_lex_state = 2}, + [3016] = {.lex_state = 693}, + [3017] = {.lex_state = 47, .external_lex_state = 2}, + [3018] = {.lex_state = 47, .external_lex_state = 2}, + [3019] = {.lex_state = 47, .external_lex_state = 2}, + [3020] = {.lex_state = 47, .external_lex_state = 2}, + [3021] = {.lex_state = 47, .external_lex_state = 2}, + [3022] = {.lex_state = 47, .external_lex_state = 2}, + [3023] = {.lex_state = 47, .external_lex_state = 2}, + [3024] = {.lex_state = 47, .external_lex_state = 2}, + [3025] = {.lex_state = 47, .external_lex_state = 2}, + [3026] = {.lex_state = 47, .external_lex_state = 2}, + [3027] = {.lex_state = 47, .external_lex_state = 2}, + [3028] = {.lex_state = 47, .external_lex_state = 2}, + [3029] = {.lex_state = 695}, + [3030] = {.lex_state = 47, .external_lex_state = 2}, + [3031] = {.lex_state = 47, .external_lex_state = 2}, + [3032] = {.lex_state = 47, .external_lex_state = 2}, + [3033] = {.lex_state = 47, .external_lex_state = 2}, + [3034] = {.lex_state = 47, .external_lex_state = 2}, + [3035] = {.lex_state = 47, .external_lex_state = 2}, + [3036] = {.lex_state = 47, .external_lex_state = 2}, + [3037] = {.lex_state = 47, .external_lex_state = 2}, + [3038] = {.lex_state = 47, .external_lex_state = 2}, + [3039] = {.lex_state = 47, .external_lex_state = 2}, + [3040] = {.lex_state = 47, .external_lex_state = 2}, + [3041] = {.lex_state = 47, .external_lex_state = 2}, + [3042] = {.lex_state = 47, .external_lex_state = 2}, + [3043] = {.lex_state = 47, .external_lex_state = 2}, + [3044] = {.lex_state = 46, .external_lex_state = 2}, + [3045] = {.lex_state = 47, .external_lex_state = 2}, + [3046] = {.lex_state = 47, .external_lex_state = 2}, + [3047] = {.lex_state = 166, .external_lex_state = 2}, + [3048] = {.lex_state = 166, .external_lex_state = 2}, + [3049] = {.lex_state = 166, .external_lex_state = 2}, + [3050] = {.lex_state = 166, .external_lex_state = 2}, + [3051] = {.lex_state = 707}, + [3052] = {.lex_state = 166, .external_lex_state = 2}, + [3053] = {.lex_state = 166, .external_lex_state = 2}, + [3054] = {.lex_state = 166, .external_lex_state = 2}, + [3055] = {.lex_state = 166, .external_lex_state = 2}, + [3056] = {.lex_state = 166, .external_lex_state = 2}, + [3057] = {.lex_state = 47, .external_lex_state = 2}, + [3058] = {.lex_state = 166, .external_lex_state = 2}, + [3059] = {.lex_state = 166, .external_lex_state = 2}, + [3060] = {.lex_state = 166, .external_lex_state = 2}, + [3061] = {.lex_state = 695}, + [3062] = {.lex_state = 166, .external_lex_state = 2}, + [3063] = {.lex_state = 693}, + [3064] = {.lex_state = 697}, + [3065] = {.lex_state = 697}, + [3066] = {.lex_state = 166, .external_lex_state = 2}, + [3067] = {.lex_state = 778}, + [3068] = {.lex_state = 778}, + [3069] = {.lex_state = 778}, + [3070] = {.lex_state = 778}, + [3071] = {.lex_state = 699}, + [3072] = {.lex_state = 701}, + [3073] = {.lex_state = 707}, + [3074] = {.lex_state = 778}, + [3075] = {.lex_state = 778}, + [3076] = {.lex_state = 701}, + [3077] = {.lex_state = 778}, + [3078] = {.lex_state = 778}, + [3079] = {.lex_state = 707}, + [3080] = {.lex_state = 699}, + [3081] = {.lex_state = 778}, + [3082] = {.lex_state = 699}, + [3083] = {.lex_state = 778}, + [3084] = {.lex_state = 778}, + [3085] = {.lex_state = 778}, + [3086] = {.lex_state = 778}, + [3087] = {.lex_state = 778}, + [3088] = {.lex_state = 778}, + [3089] = {.lex_state = 778}, + [3090] = {.lex_state = 164, .external_lex_state = 2}, + [3091] = {.lex_state = 697}, + [3092] = {.lex_state = 701}, + [3093] = {.lex_state = 701}, + [3094] = {.lex_state = 697}, + [3095] = {.lex_state = 166, .external_lex_state = 2}, + [3096] = {.lex_state = 778}, + [3097] = {.lex_state = 778}, + [3098] = {.lex_state = 699}, + [3099] = {.lex_state = 166, .external_lex_state = 2}, + [3100] = {.lex_state = 778}, + [3101] = {.lex_state = 699}, + [3102] = {.lex_state = 699}, + [3103] = {.lex_state = 699}, + [3104] = {.lex_state = 699}, + [3105] = {.lex_state = 778}, + [3106] = {.lex_state = 699}, + [3107] = {.lex_state = 778}, + [3108] = {.lex_state = 778}, + [3109] = {.lex_state = 701}, + [3110] = {.lex_state = 778}, + [3111] = {.lex_state = 778}, + [3112] = {.lex_state = 699}, + [3113] = {.lex_state = 699}, + [3114] = {.lex_state = 699}, + [3115] = {.lex_state = 699}, + [3116] = {.lex_state = 162, .external_lex_state = 2}, + [3117] = {.lex_state = 699}, + [3118] = {.lex_state = 165, .external_lex_state = 2}, + [3119] = {.lex_state = 701}, + [3120] = {.lex_state = 701}, + [3121] = {.lex_state = 701}, + [3122] = {.lex_state = 165, .external_lex_state = 2}, + [3123] = {.lex_state = 165, .external_lex_state = 2}, + [3124] = {.lex_state = 169, .external_lex_state = 2}, + [3125] = {.lex_state = 165, .external_lex_state = 2}, + [3126] = {.lex_state = 701}, + [3127] = {.lex_state = 699}, + [3128] = {.lex_state = 699}, + [3129] = {.lex_state = 165, .external_lex_state = 2}, + [3130] = {.lex_state = 165, .external_lex_state = 2}, + [3131] = {.lex_state = 699}, + [3132] = {.lex_state = 701}, + [3133] = {.lex_state = 699}, + [3134] = {.lex_state = 699}, + [3135] = {.lex_state = 259, .external_lex_state = 2}, + [3136] = {.lex_state = 707}, + [3137] = {.lex_state = 707}, + [3138] = {.lex_state = 707}, + [3139] = {.lex_state = 707}, + [3140] = {.lex_state = 707}, + [3141] = {.lex_state = 707}, + [3142] = {.lex_state = 707}, + [3143] = {.lex_state = 707}, + [3144] = {.lex_state = 707}, + [3145] = {.lex_state = 707}, + [3146] = {.lex_state = 707}, + [3147] = {.lex_state = 707}, + [3148] = {.lex_state = 707}, + [3149] = {.lex_state = 707}, + [3150] = {.lex_state = 707}, + [3151] = {.lex_state = 707}, + [3152] = {.lex_state = 707}, + [3153] = {.lex_state = 707}, + [3154] = {.lex_state = 707}, + [3155] = {.lex_state = 707}, + [3156] = {.lex_state = 707}, + [3157] = {.lex_state = 707}, + [3158] = {.lex_state = 166, .external_lex_state = 2}, + [3159] = {.lex_state = 707}, + [3160] = {.lex_state = 166, .external_lex_state = 2}, + [3161] = {.lex_state = 707}, + [3162] = {.lex_state = 707}, + [3163] = {.lex_state = 707}, + [3164] = {.lex_state = 707}, + [3165] = {.lex_state = 707}, + [3166] = {.lex_state = 707}, + [3167] = {.lex_state = 707}, + [3168] = {.lex_state = 707}, + [3169] = {.lex_state = 707}, + [3170] = {.lex_state = 707}, + [3171] = {.lex_state = 707}, + [3172] = {.lex_state = 707}, + [3173] = {.lex_state = 707}, + [3174] = {.lex_state = 707}, + [3175] = {.lex_state = 707}, + [3176] = {.lex_state = 707}, + [3177] = {.lex_state = 707}, + [3178] = {.lex_state = 707}, + [3179] = {.lex_state = 707}, + [3180] = {.lex_state = 707}, + [3181] = {.lex_state = 707}, + [3182] = {.lex_state = 707}, + [3183] = {.lex_state = 707}, + [3184] = {.lex_state = 707}, + [3185] = {.lex_state = 707}, + [3186] = {.lex_state = 707}, + [3187] = {.lex_state = 707}, + [3188] = {.lex_state = 707}, + [3189] = {.lex_state = 707}, + [3190] = {.lex_state = 707}, + [3191] = {.lex_state = 707}, + [3192] = {.lex_state = 707}, + [3193] = {.lex_state = 707}, + [3194] = {.lex_state = 707}, + [3195] = {.lex_state = 707}, + [3196] = {.lex_state = 707}, + [3197] = {.lex_state = 707}, + [3198] = {.lex_state = 707}, + [3199] = {.lex_state = 707}, + [3200] = {.lex_state = 707}, + [3201] = {.lex_state = 707}, + [3202] = {.lex_state = 707}, + [3203] = {.lex_state = 707}, + [3204] = {.lex_state = 707}, + [3205] = {.lex_state = 707}, + [3206] = {.lex_state = 707}, + [3207] = {.lex_state = 707}, + [3208] = {.lex_state = 707}, + [3209] = {.lex_state = 707}, + [3210] = {.lex_state = 707}, + [3211] = {.lex_state = 707}, + [3212] = {.lex_state = 707}, + [3213] = {.lex_state = 707}, + [3214] = {.lex_state = 707}, + [3215] = {.lex_state = 707}, + [3216] = {.lex_state = 707}, + [3217] = {.lex_state = 707}, + [3218] = {.lex_state = 707}, + [3219] = {.lex_state = 707}, + [3220] = {.lex_state = 707}, + [3221] = {.lex_state = 707}, + [3222] = {.lex_state = 707}, + [3223] = {.lex_state = 259, .external_lex_state = 2}, + [3224] = {.lex_state = 707}, + [3225] = {.lex_state = 699}, + [3226] = {.lex_state = 778}, + [3227] = {.lex_state = 707}, + [3228] = {.lex_state = 259, .external_lex_state = 2}, + [3229] = {.lex_state = 707}, + [3230] = {.lex_state = 259, .external_lex_state = 2}, + [3231] = {.lex_state = 707}, + [3232] = {.lex_state = 707}, + [3233] = {.lex_state = 6}, + [3234] = {.lex_state = 707}, + [3235] = {.lex_state = 166, .external_lex_state = 2}, + [3236] = {.lex_state = 163, .external_lex_state = 2}, + [3237] = {.lex_state = 707}, + [3238] = {.lex_state = 175, .external_lex_state = 2}, + [3239] = {.lex_state = 707}, + [3240] = {.lex_state = 707}, + [3241] = {.lex_state = 707}, + [3242] = {.lex_state = 161, .external_lex_state = 2}, + [3243] = {.lex_state = 707}, + [3244] = {.lex_state = 707}, + [3245] = {.lex_state = 707}, + [3246] = {.lex_state = 707}, + [3247] = {.lex_state = 707}, + [3248] = {.lex_state = 707}, + [3249] = {.lex_state = 707}, + [3250] = {.lex_state = 707}, + [3251] = {.lex_state = 707}, + [3252] = {.lex_state = 161, .external_lex_state = 2}, + [3253] = {.lex_state = 707}, + [3254] = {.lex_state = 707}, + [3255] = {.lex_state = 707}, + [3256] = {.lex_state = 259, .external_lex_state = 2}, + [3257] = {.lex_state = 707}, + [3258] = {.lex_state = 707}, + [3259] = {.lex_state = 164, .external_lex_state = 2}, + [3260] = {.lex_state = 164, .external_lex_state = 2}, + [3261] = {.lex_state = 164, .external_lex_state = 2}, + [3262] = {.lex_state = 164, .external_lex_state = 2}, + [3263] = {.lex_state = 164, .external_lex_state = 2}, + [3264] = {.lex_state = 164, .external_lex_state = 2}, + [3265] = {.lex_state = 164, .external_lex_state = 2}, + [3266] = {.lex_state = 164, .external_lex_state = 2}, + [3267] = {.lex_state = 87}, + [3268] = {.lex_state = 164, .external_lex_state = 2}, + [3269] = {.lex_state = 164, .external_lex_state = 2}, + [3270] = {.lex_state = 164, .external_lex_state = 2}, + [3271] = {.lex_state = 707}, + [3272] = {.lex_state = 707}, + [3273] = {.lex_state = 707}, + [3274] = {.lex_state = 707}, + [3275] = {.lex_state = 707}, + [3276] = {.lex_state = 707}, + [3277] = {.lex_state = 707}, + [3278] = {.lex_state = 707}, + [3279] = {.lex_state = 707}, + [3280] = {.lex_state = 707}, + [3281] = {.lex_state = 707}, + [3282] = {.lex_state = 707}, + [3283] = {.lex_state = 164, .external_lex_state = 2}, + [3284] = {.lex_state = 164, .external_lex_state = 2}, + [3285] = {.lex_state = 164, .external_lex_state = 2}, + [3286] = {.lex_state = 164, .external_lex_state = 2}, + [3287] = {.lex_state = 164, .external_lex_state = 2}, + [3288] = {.lex_state = 164, .external_lex_state = 2}, + [3289] = {.lex_state = 164, .external_lex_state = 2}, + [3290] = {.lex_state = 164, .external_lex_state = 2}, + [3291] = {.lex_state = 778}, + [3292] = {.lex_state = 164, .external_lex_state = 2}, + [3293] = {.lex_state = 164, .external_lex_state = 2}, + [3294] = {.lex_state = 707}, + [3295] = {.lex_state = 164, .external_lex_state = 2}, + [3296] = {.lex_state = 164, .external_lex_state = 2}, + [3297] = {.lex_state = 164, .external_lex_state = 2}, + [3298] = {.lex_state = 164, .external_lex_state = 2}, + [3299] = {.lex_state = 164, .external_lex_state = 2}, + [3300] = {.lex_state = 164, .external_lex_state = 2}, [3301] = {.lex_state = 164, .external_lex_state = 2}, - [3302] = {.lex_state = 698}, - [3303] = {.lex_state = 168, .external_lex_state = 2}, - [3304] = {.lex_state = 698}, - [3305] = {.lex_state = 700}, - [3306] = {.lex_state = 700}, - [3307] = {.lex_state = 698}, - [3308] = {.lex_state = 698}, - [3309] = {.lex_state = 700}, - [3310] = {.lex_state = 700}, + [3302] = {.lex_state = 164, .external_lex_state = 2}, + [3303] = {.lex_state = 164, .external_lex_state = 2}, + [3304] = {.lex_state = 164, .external_lex_state = 2}, + [3305] = {.lex_state = 7}, + [3306] = {.lex_state = 164, .external_lex_state = 2}, + [3307] = {.lex_state = 164, .external_lex_state = 2}, + [3308] = {.lex_state = 164, .external_lex_state = 2}, + [3309] = {.lex_state = 164, .external_lex_state = 2}, + [3310] = {.lex_state = 164, .external_lex_state = 2}, [3311] = {.lex_state = 164, .external_lex_state = 2}, - [3312] = {.lex_state = 698}, - [3313] = {.lex_state = 698}, - [3314] = {.lex_state = 698}, - [3315] = {.lex_state = 700}, - [3316] = {.lex_state = 698}, + [3312] = {.lex_state = 164, .external_lex_state = 2}, + [3313] = {.lex_state = 164, .external_lex_state = 2}, + [3314] = {.lex_state = 164, .external_lex_state = 2}, + [3315] = {.lex_state = 164, .external_lex_state = 2}, + [3316] = {.lex_state = 164, .external_lex_state = 2}, [3317] = {.lex_state = 164, .external_lex_state = 2}, - [3318] = {.lex_state = 698}, - [3319] = {.lex_state = 698}, - [3320] = {.lex_state = 164, .external_lex_state = 2}, - [3321] = {.lex_state = 164, .external_lex_state = 2}, + [3318] = {.lex_state = 7}, + [3319] = {.lex_state = 164, .external_lex_state = 2}, + [3320] = {.lex_state = 707}, + [3321] = {.lex_state = 707}, [3322] = {.lex_state = 164, .external_lex_state = 2}, - [3323] = {.lex_state = 706}, - [3324] = {.lex_state = 706}, - [3325] = {.lex_state = 706}, - [3326] = {.lex_state = 706}, - [3327] = {.lex_state = 706}, - [3328] = {.lex_state = 706}, - [3329] = {.lex_state = 706}, - [3330] = {.lex_state = 706}, - [3331] = {.lex_state = 706}, - [3332] = {.lex_state = 706}, - [3333] = {.lex_state = 706}, - [3334] = {.lex_state = 706}, - [3335] = {.lex_state = 706}, - [3336] = {.lex_state = 706}, - [3337] = {.lex_state = 706}, - [3338] = {.lex_state = 706}, - [3339] = {.lex_state = 706}, - [3340] = {.lex_state = 706}, - [3341] = {.lex_state = 706}, - [3342] = {.lex_state = 706}, - [3343] = {.lex_state = 706}, - [3344] = {.lex_state = 706}, - [3345] = {.lex_state = 706}, - [3346] = {.lex_state = 706}, - [3347] = {.lex_state = 706}, - [3348] = {.lex_state = 706}, - [3349] = {.lex_state = 706}, - [3350] = {.lex_state = 706}, - [3351] = {.lex_state = 706}, - [3352] = {.lex_state = 706}, - [3353] = {.lex_state = 706}, - [3354] = {.lex_state = 706}, - [3355] = {.lex_state = 706}, - [3356] = {.lex_state = 706}, - [3357] = {.lex_state = 706}, - [3358] = {.lex_state = 706}, - [3359] = {.lex_state = 706}, - [3360] = {.lex_state = 706}, - [3361] = {.lex_state = 706}, - [3362] = {.lex_state = 706}, - [3363] = {.lex_state = 706}, - [3364] = {.lex_state = 706}, - [3365] = {.lex_state = 706}, - [3366] = {.lex_state = 706}, - [3367] = {.lex_state = 706}, - [3368] = {.lex_state = 706}, - [3369] = {.lex_state = 706}, - [3370] = {.lex_state = 706}, - [3371] = {.lex_state = 706}, - [3372] = {.lex_state = 706}, - [3373] = {.lex_state = 706}, - [3374] = {.lex_state = 706}, - [3375] = {.lex_state = 706}, - [3376] = {.lex_state = 706}, - [3377] = {.lex_state = 706}, - [3378] = {.lex_state = 706}, - [3379] = {.lex_state = 706}, - [3380] = {.lex_state = 706}, - [3381] = {.lex_state = 706}, - [3382] = {.lex_state = 706}, - [3383] = {.lex_state = 706}, - [3384] = {.lex_state = 165, .external_lex_state = 2}, - [3385] = {.lex_state = 706}, - [3386] = {.lex_state = 706}, - [3387] = {.lex_state = 706}, - [3388] = {.lex_state = 706}, - [3389] = {.lex_state = 706}, - [3390] = {.lex_state = 706}, - [3391] = {.lex_state = 706}, - [3392] = {.lex_state = 706}, - [3393] = {.lex_state = 706}, - [3394] = {.lex_state = 706}, - [3395] = {.lex_state = 706}, - [3396] = {.lex_state = 706}, - [3397] = {.lex_state = 706}, - [3398] = {.lex_state = 706}, - [3399] = {.lex_state = 706}, - [3400] = {.lex_state = 706}, - [3401] = {.lex_state = 706}, - [3402] = {.lex_state = 160, .external_lex_state = 2}, - [3403] = {.lex_state = 706}, - [3404] = {.lex_state = 777}, - [3405] = {.lex_state = 706}, - [3406] = {.lex_state = 165, .external_lex_state = 2}, - [3407] = {.lex_state = 706}, - [3408] = {.lex_state = 706}, - [3409] = {.lex_state = 162, .external_lex_state = 2}, - [3410] = {.lex_state = 706}, - [3411] = {.lex_state = 258, .external_lex_state = 2}, - [3412] = {.lex_state = 706}, - [3413] = {.lex_state = 706}, - [3414] = {.lex_state = 706}, - [3415] = {.lex_state = 6}, - [3416] = {.lex_state = 706}, - [3417] = {.lex_state = 706}, - [3418] = {.lex_state = 175, .external_lex_state = 2}, - [3419] = {.lex_state = 706}, - [3420] = {.lex_state = 706}, - [3421] = {.lex_state = 698}, - [3422] = {.lex_state = 706}, - [3423] = {.lex_state = 258, .external_lex_state = 2}, - [3424] = {.lex_state = 706}, - [3425] = {.lex_state = 160, .external_lex_state = 2}, - [3426] = {.lex_state = 706}, - [3427] = {.lex_state = 258, .external_lex_state = 2}, - [3428] = {.lex_state = 258, .external_lex_state = 2}, - [3429] = {.lex_state = 706}, - [3430] = {.lex_state = 706}, - [3431] = {.lex_state = 706}, - [3432] = {.lex_state = 706}, - [3433] = {.lex_state = 706}, - [3434] = {.lex_state = 706}, - [3435] = {.lex_state = 706}, - [3436] = {.lex_state = 706}, - [3437] = {.lex_state = 258, .external_lex_state = 2}, - [3438] = {.lex_state = 706}, - [3439] = {.lex_state = 706}, - [3440] = {.lex_state = 706}, - [3441] = {.lex_state = 706}, - [3442] = {.lex_state = 706}, - [3443] = {.lex_state = 706}, - [3444] = {.lex_state = 706}, - [3445] = {.lex_state = 706}, - [3446] = {.lex_state = 165, .external_lex_state = 2}, - [3447] = {.lex_state = 163, .external_lex_state = 2}, - [3448] = {.lex_state = 777}, - [3449] = {.lex_state = 163, .external_lex_state = 2}, - [3450] = {.lex_state = 163, .external_lex_state = 2}, - [3451] = {.lex_state = 163, .external_lex_state = 2}, - [3452] = {.lex_state = 163, .external_lex_state = 2}, - [3453] = {.lex_state = 163, .external_lex_state = 2}, - [3454] = {.lex_state = 7}, - [3455] = {.lex_state = 163, .external_lex_state = 2}, - [3456] = {.lex_state = 163, .external_lex_state = 2}, - [3457] = {.lex_state = 706}, - [3458] = {.lex_state = 706}, - [3459] = {.lex_state = 163, .external_lex_state = 2}, - [3460] = {.lex_state = 163, .external_lex_state = 2}, - [3461] = {.lex_state = 163, .external_lex_state = 2}, - [3462] = {.lex_state = 163, .external_lex_state = 2}, - [3463] = {.lex_state = 7}, - [3464] = {.lex_state = 163, .external_lex_state = 2}, - [3465] = {.lex_state = 706}, - [3466] = {.lex_state = 706}, - [3467] = {.lex_state = 706}, - [3468] = {.lex_state = 706}, - [3469] = {.lex_state = 706}, - [3470] = {.lex_state = 706}, - [3471] = {.lex_state = 706}, - [3472] = {.lex_state = 706}, - [3473] = {.lex_state = 706}, - [3474] = {.lex_state = 706}, - [3475] = {.lex_state = 706}, - [3476] = {.lex_state = 706}, - [3477] = {.lex_state = 163, .external_lex_state = 2}, - [3478] = {.lex_state = 163, .external_lex_state = 2}, - [3479] = {.lex_state = 163, .external_lex_state = 2}, - [3480] = {.lex_state = 163, .external_lex_state = 2}, - [3481] = {.lex_state = 163, .external_lex_state = 2}, - [3482] = {.lex_state = 163, .external_lex_state = 2}, - [3483] = {.lex_state = 706}, - [3484] = {.lex_state = 163, .external_lex_state = 2}, - [3485] = {.lex_state = 163, .external_lex_state = 2}, - [3486] = {.lex_state = 163, .external_lex_state = 2}, - [3487] = {.lex_state = 163, .external_lex_state = 2}, - [3488] = {.lex_state = 163, .external_lex_state = 2}, - [3489] = {.lex_state = 163, .external_lex_state = 2}, - [3490] = {.lex_state = 163, .external_lex_state = 2}, - [3491] = {.lex_state = 163, .external_lex_state = 2}, - [3492] = {.lex_state = 163, .external_lex_state = 2}, - [3493] = {.lex_state = 163, .external_lex_state = 2}, - [3494] = {.lex_state = 163, .external_lex_state = 2}, - [3495] = {.lex_state = 163, .external_lex_state = 2}, - [3496] = {.lex_state = 163, .external_lex_state = 2}, - [3497] = {.lex_state = 163, .external_lex_state = 2}, - [3498] = {.lex_state = 163, .external_lex_state = 2}, - [3499] = {.lex_state = 163, .external_lex_state = 2}, - [3500] = {.lex_state = 163, .external_lex_state = 2}, - [3501] = {.lex_state = 163, .external_lex_state = 2}, - [3502] = {.lex_state = 163, .external_lex_state = 2}, - [3503] = {.lex_state = 163, .external_lex_state = 2}, - [3504] = {.lex_state = 163, .external_lex_state = 2}, - [3505] = {.lex_state = 163, .external_lex_state = 2}, - [3506] = {.lex_state = 163, .external_lex_state = 2}, - [3507] = {.lex_state = 163, .external_lex_state = 2}, - [3508] = {.lex_state = 163, .external_lex_state = 2}, - [3509] = {.lex_state = 163, .external_lex_state = 2}, - [3510] = {.lex_state = 163, .external_lex_state = 2}, - [3511] = {.lex_state = 163, .external_lex_state = 2}, - [3512] = {.lex_state = 163, .external_lex_state = 2}, - [3513] = {.lex_state = 163, .external_lex_state = 2}, - [3514] = {.lex_state = 163, .external_lex_state = 2}, - [3515] = {.lex_state = 163, .external_lex_state = 2}, - [3516] = {.lex_state = 163, .external_lex_state = 2}, - [3517] = {.lex_state = 163, .external_lex_state = 2}, - [3518] = {.lex_state = 163, .external_lex_state = 2}, - [3519] = {.lex_state = 86}, - [3520] = {.lex_state = 163, .external_lex_state = 2}, - [3521] = {.lex_state = 777}, - [3522] = {.lex_state = 777}, - [3523] = {.lex_state = 10}, - [3524] = {.lex_state = 777}, - [3525] = {.lex_state = 777}, - [3526] = {.lex_state = 777}, - [3527] = {.lex_state = 86}, - [3528] = {.lex_state = 87}, - [3529] = {.lex_state = 777}, - [3530] = {.lex_state = 86}, - [3531] = {.lex_state = 8}, - [3532] = {.lex_state = 777}, - [3533] = {.lex_state = 163, .external_lex_state = 2}, - [3534] = {.lex_state = 777}, - [3535] = {.lex_state = 777}, - [3536] = {.lex_state = 777}, - [3537] = {.lex_state = 87}, - [3538] = {.lex_state = 86}, - [3539] = {.lex_state = 86}, - [3540] = {.lex_state = 86}, - [3541] = {.lex_state = 777}, - [3542] = {.lex_state = 777}, - [3543] = {.lex_state = 777}, - [3544] = {.lex_state = 11}, - [3545] = {.lex_state = 777}, - [3546] = {.lex_state = 777}, - [3547] = {.lex_state = 777}, - [3548] = {.lex_state = 88}, - [3549] = {.lex_state = 11}, - [3550] = {.lex_state = 90}, - [3551] = {.lex_state = 777}, - [3552] = {.lex_state = 12}, - [3553] = {.lex_state = 777}, - [3554] = {.lex_state = 86}, - [3555] = {.lex_state = 777}, - [3556] = {.lex_state = 86}, - [3557] = {.lex_state = 777}, - [3558] = {.lex_state = 777}, - [3559] = {.lex_state = 86}, - [3560] = {.lex_state = 12}, - [3561] = {.lex_state = 91}, - [3562] = {.lex_state = 12}, - [3563] = {.lex_state = 9}, - [3564] = {.lex_state = 91}, - [3565] = {.lex_state = 12}, - [3566] = {.lex_state = 92}, - [3567] = {.lex_state = 12}, - [3568] = {.lex_state = 13}, - [3569] = {.lex_state = 777}, - [3570] = {.lex_state = 777}, - [3571] = {.lex_state = 777}, - [3572] = {.lex_state = 14}, - [3573] = {.lex_state = 92}, - [3574] = {.lex_state = 92}, - [3575] = {.lex_state = 777}, - [3576] = {.lex_state = 777}, - [3577] = {.lex_state = 92}, - [3578] = {.lex_state = 777}, - [3579] = {.lex_state = 88}, - [3580] = {.lex_state = 777}, - [3581] = {.lex_state = 777}, - [3582] = {.lex_state = 777}, - [3583] = {.lex_state = 777}, - [3584] = {.lex_state = 777}, - [3585] = {.lex_state = 92}, - [3586] = {.lex_state = 777}, - [3587] = {.lex_state = 777}, - [3588] = {.lex_state = 777}, - [3589] = {.lex_state = 777}, - [3590] = {.lex_state = 777}, - [3591] = {.lex_state = 777}, - [3592] = {.lex_state = 777}, - [3593] = {.lex_state = 777}, - [3594] = {.lex_state = 777}, - [3595] = {.lex_state = 777}, - [3596] = {.lex_state = 777}, - [3597] = {.lex_state = 330}, - [3598] = {.lex_state = 14}, - [3599] = {.lex_state = 777}, - [3600] = {.lex_state = 93}, - [3601] = {.lex_state = 777}, - [3602] = {.lex_state = 89}, - [3603] = {.lex_state = 777}, - [3604] = {.lex_state = 777}, - [3605] = {.lex_state = 777}, - [3606] = {.lex_state = 777}, - [3607] = {.lex_state = 330}, - [3608] = {.lex_state = 15}, - [3609] = {.lex_state = 330}, - [3610] = {.lex_state = 94}, - [3611] = {.lex_state = 330}, - [3612] = {.lex_state = 15}, - [3613] = {.lex_state = 94}, - [3614] = {.lex_state = 15}, - [3615] = {.lex_state = 15}, - [3616] = {.lex_state = 330}, - [3617] = {.lex_state = 15}, - [3618] = {.lex_state = 330}, - [3619] = {.lex_state = 15}, - [3620] = {.lex_state = 95}, - [3621] = {.lex_state = 706}, - [3622] = {.lex_state = 95}, - [3623] = {.lex_state = 95}, - [3624] = {.lex_state = 95}, - [3625] = {.lex_state = 16}, - [3626] = {.lex_state = 17}, - [3627] = {.lex_state = 95}, - [3628] = {.lex_state = 330}, - [3629] = {.lex_state = 777}, - [3630] = {.lex_state = 1832}, - [3631] = {.lex_state = 95}, - [3632] = {.lex_state = 1834}, - [3633] = {.lex_state = 1835}, - [3634] = {.lex_state = 97}, - [3635] = {.lex_state = 18}, - [3636] = {.lex_state = 1835}, - [3637] = {.lex_state = 777}, - [3638] = {.lex_state = 1837}, - [3639] = {.lex_state = 96}, - [3640] = {.lex_state = 1833}, - [3641] = {.lex_state = 18}, - [3642] = {.lex_state = 1838}, - [3643] = {.lex_state = 706}, - [3644] = {.lex_state = 20}, - [3645] = {.lex_state = 706}, - [3646] = {.lex_state = 19}, - [3647] = {.lex_state = 19}, - [3648] = {.lex_state = 98}, - [3649] = {.lex_state = 19}, - [3650] = {.lex_state = 20}, - [3651] = {.lex_state = 1836}, - [3652] = {.lex_state = 706}, - [3653] = {.lex_state = 706}, - [3654] = {.lex_state = 706}, - [3655] = {.lex_state = 706}, - [3656] = {.lex_state = 706}, - [3657] = {.lex_state = 20}, - [3658] = {.lex_state = 1836}, - [3659] = {.lex_state = 20}, - [3660] = {.lex_state = 706}, - [3661] = {.lex_state = 1836}, - [3662] = {.lex_state = 20}, - [3663] = {.lex_state = 19}, - [3664] = {.lex_state = 19}, - [3665] = {.lex_state = 19}, - [3666] = {.lex_state = 706}, - [3667] = {.lex_state = 98}, - [3668] = {.lex_state = 1838}, - [3669] = {.lex_state = 1836}, - [3670] = {.lex_state = 1836}, - [3671] = {.lex_state = 19}, - [3672] = {.lex_state = 19}, - [3673] = {.lex_state = 19}, - [3674] = {.lex_state = 19}, - [3675] = {.lex_state = 99}, - [3676] = {.lex_state = 99}, - [3677] = {.lex_state = 99}, - [3678] = {.lex_state = 99}, - [3679] = {.lex_state = 99}, - [3680] = {.lex_state = 1839}, - [3681] = {.lex_state = 100}, - [3682] = {.lex_state = 100}, - [3683] = {.lex_state = 100}, - [3684] = {.lex_state = 100}, - [3685] = {.lex_state = 100}, - [3686] = {.lex_state = 1839}, - [3687] = {.lex_state = 1839}, - [3688] = {.lex_state = 702}, - [3689] = {.lex_state = 99}, - [3690] = {.lex_state = 99}, - [3691] = {.lex_state = 99}, - [3692] = {.lex_state = 99}, - [3693] = {.lex_state = 1839}, - [3694] = {.lex_state = 706}, - [3695] = {.lex_state = 706}, - [3696] = {.lex_state = 706}, - [3697] = {.lex_state = 706}, - [3698] = {.lex_state = 706}, - [3699] = {.lex_state = 706}, - [3700] = {.lex_state = 706}, - [3701] = {.lex_state = 706}, - [3702] = {.lex_state = 706}, - [3703] = {.lex_state = 706}, - [3704] = {.lex_state = 706}, - [3705] = {.lex_state = 706}, - [3706] = {.lex_state = 706}, - [3707] = {.lex_state = 706}, - [3708] = {.lex_state = 706}, - [3709] = {.lex_state = 706}, - [3710] = {.lex_state = 706}, - [3711] = {.lex_state = 706}, - [3712] = {.lex_state = 706}, - [3713] = {.lex_state = 706}, - [3714] = {.lex_state = 706}, - [3715] = {.lex_state = 706}, - [3716] = {.lex_state = 706}, - [3717] = {.lex_state = 706}, - [3718] = {.lex_state = 706}, - [3719] = {.lex_state = 706}, - [3720] = {.lex_state = 706}, - [3721] = {.lex_state = 706}, - [3722] = {.lex_state = 706}, - [3723] = {.lex_state = 706}, - [3724] = {.lex_state = 706}, - [3725] = {.lex_state = 706}, - [3726] = {.lex_state = 706}, - [3727] = {.lex_state = 706}, - [3728] = {.lex_state = 706}, - [3729] = {.lex_state = 706}, - [3730] = {.lex_state = 706}, - [3731] = {.lex_state = 706}, - [3732] = {.lex_state = 706}, - [3733] = {.lex_state = 706}, - [3734] = {.lex_state = 706}, - [3735] = {.lex_state = 706}, - [3736] = {.lex_state = 706}, - [3737] = {.lex_state = 706}, - [3738] = {.lex_state = 706}, - [3739] = {.lex_state = 706}, - [3740] = {.lex_state = 706}, - [3741] = {.lex_state = 706}, - [3742] = {.lex_state = 706}, - [3743] = {.lex_state = 706}, - [3744] = {.lex_state = 706}, - [3745] = {.lex_state = 706}, - [3746] = {.lex_state = 706}, - [3747] = {.lex_state = 706}, - [3748] = {.lex_state = 706}, - [3749] = {.lex_state = 706}, - [3750] = {.lex_state = 706}, - [3751] = {.lex_state = 706}, - [3752] = {.lex_state = 706}, - [3753] = {.lex_state = 706}, - [3754] = {.lex_state = 706}, - [3755] = {.lex_state = 706}, - [3756] = {.lex_state = 706}, - [3757] = {.lex_state = 706}, - [3758] = {.lex_state = 706}, - [3759] = {.lex_state = 706}, - [3760] = {.lex_state = 706}, - [3761] = {.lex_state = 706}, - [3762] = {.lex_state = 706}, - [3763] = {.lex_state = 706}, - [3764] = {.lex_state = 706}, - [3765] = {.lex_state = 706}, - [3766] = {.lex_state = 706}, - [3767] = {.lex_state = 706}, - [3768] = {.lex_state = 706}, - [3769] = {.lex_state = 706}, - [3770] = {.lex_state = 706}, - [3771] = {.lex_state = 706}, - [3772] = {.lex_state = 706}, - [3773] = {.lex_state = 706}, - [3774] = {.lex_state = 706}, - [3775] = {.lex_state = 706}, - [3776] = {.lex_state = 706}, - [3777] = {.lex_state = 706}, - [3778] = {.lex_state = 706}, - [3779] = {.lex_state = 706}, - [3780] = {.lex_state = 706}, - [3781] = {.lex_state = 706}, - [3782] = {.lex_state = 706}, - [3783] = {.lex_state = 706}, - [3784] = {.lex_state = 706}, - [3785] = {.lex_state = 706}, - [3786] = {.lex_state = 706}, - [3787] = {.lex_state = 706}, - [3788] = {.lex_state = 706}, - [3789] = {.lex_state = 1839}, - [3790] = {.lex_state = 1839}, - [3791] = {.lex_state = 1839}, - [3792] = {.lex_state = 1839}, - [3793] = {.lex_state = 1839}, - [3794] = {.lex_state = 1839}, - [3795] = {.lex_state = 1839}, - [3796] = {.lex_state = 706}, - [3797] = {.lex_state = 772}, - [3798] = {.lex_state = 99}, - [3799] = {.lex_state = 772}, - [3800] = {.lex_state = 772}, - [3801] = {.lex_state = 772}, - [3802] = {.lex_state = 64}, - [3803] = {.lex_state = 706}, - [3804] = {.lex_state = 706}, - [3805] = {.lex_state = 64}, - [3806] = {.lex_state = 706}, - [3807] = {.lex_state = 706}, - [3808] = {.lex_state = 706}, - [3809] = {.lex_state = 706}, - [3810] = {.lex_state = 706}, - [3811] = {.lex_state = 706}, - [3812] = {.lex_state = 1840}, - [3813] = {.lex_state = 1840}, - [3814] = {.lex_state = 1840}, - [3815] = {.lex_state = 1840}, - [3816] = {.lex_state = 706}, - [3817] = {.lex_state = 706}, - [3818] = {.lex_state = 706}, - [3819] = {.lex_state = 706}, - [3820] = {.lex_state = 706}, - [3821] = {.lex_state = 706}, - [3822] = {.lex_state = 706}, - [3823] = {.lex_state = 706}, - [3824] = {.lex_state = 706}, - [3825] = {.lex_state = 706}, - [3826] = {.lex_state = 706}, - [3827] = {.lex_state = 1840}, - [3828] = {.lex_state = 1840}, - [3829] = {.lex_state = 1840}, - [3830] = {.lex_state = 1840}, - [3831] = {.lex_state = 706}, - [3832] = {.lex_state = 706}, - [3833] = {.lex_state = 706}, - [3834] = {.lex_state = 706}, - [3835] = {.lex_state = 706}, - [3836] = {.lex_state = 706}, - [3837] = {.lex_state = 706}, - [3838] = {.lex_state = 706}, - [3839] = {.lex_state = 706}, - [3840] = {.lex_state = 706}, - [3841] = {.lex_state = 706}, - [3842] = {.lex_state = 64}, - [3843] = {.lex_state = 706}, - [3844] = {.lex_state = 706}, - [3845] = {.lex_state = 669}, - [3846] = {.lex_state = 669}, - [3847] = {.lex_state = 64}, - [3848] = {.lex_state = 64}, - [3849] = {.lex_state = 64}, - [3850] = {.lex_state = 706}, - [3851] = {.lex_state = 706}, - [3852] = {.lex_state = 706}, - [3853] = {.lex_state = 64}, - [3854] = {.lex_state = 64}, - [3855] = {.lex_state = 707}, - [3856] = {.lex_state = 64}, - [3857] = {.lex_state = 706}, - [3858] = {.lex_state = 64}, - [3859] = {.lex_state = 64}, - [3860] = {.lex_state = 64}, - [3861] = {.lex_state = 64}, - [3862] = {.lex_state = 64}, - [3863] = {.lex_state = 64}, - [3864] = {.lex_state = 64}, - [3865] = {.lex_state = 64}, - [3866] = {.lex_state = 64}, - [3867] = {.lex_state = 64}, - [3868] = {.lex_state = 64}, - [3869] = {.lex_state = 64}, - [3870] = {.lex_state = 64}, - [3871] = {.lex_state = 64}, - [3872] = {.lex_state = 64}, - [3873] = {.lex_state = 64}, - [3874] = {.lex_state = 64}, - [3875] = {.lex_state = 64}, - [3876] = {.lex_state = 64}, - [3877] = {.lex_state = 707}, - [3878] = {.lex_state = 669}, - [3879] = {.lex_state = 669}, - [3880] = {.lex_state = 669}, - [3881] = {.lex_state = 669}, - [3882] = {.lex_state = 64}, - [3883] = {.lex_state = 64}, - [3884] = {.lex_state = 64}, - [3885] = {.lex_state = 64}, - [3886] = {.lex_state = 64}, - [3887] = {.lex_state = 64}, - [3888] = {.lex_state = 64}, - [3889] = {.lex_state = 64}, - [3890] = {.lex_state = 64}, - [3891] = {.lex_state = 64}, - [3892] = {.lex_state = 767}, - [3893] = {.lex_state = 64}, - [3894] = {.lex_state = 64}, - [3895] = {.lex_state = 769}, - [3896] = {.lex_state = 671}, - [3897] = {.lex_state = 769}, - [3898] = {.lex_state = 770}, - [3899] = {.lex_state = 770}, - [3900] = {.lex_state = 707}, - [3901] = {.lex_state = 61}, - [3902] = {.lex_state = 770}, - [3903] = {.lex_state = 707}, - [3904] = {.lex_state = 61}, - [3905] = {.lex_state = 707}, - [3906] = {.lex_state = 787}, - [3907] = {.lex_state = 707}, - [3908] = {.lex_state = 783}, - [3909] = {.lex_state = 770}, - [3910] = {.lex_state = 671}, - [3911] = {.lex_state = 671}, - [3912] = {.lex_state = 671}, - [3913] = {.lex_state = 671}, - [3914] = {.lex_state = 671}, - [3915] = {.lex_state = 707}, - [3916] = {.lex_state = 768}, - [3917] = {.lex_state = 783}, - [3918] = {.lex_state = 671}, - [3919] = {.lex_state = 771}, - [3920] = {.lex_state = 768}, - [3921] = {.lex_state = 671}, - [3922] = {.lex_state = 791}, - [3923] = {.lex_state = 771}, - [3924] = {.lex_state = 789}, - [3925] = {.lex_state = 787}, - [3926] = {.lex_state = 768}, - [3927] = {.lex_state = 671}, - [3928] = {.lex_state = 671}, - [3929] = {.lex_state = 789}, - [3930] = {.lex_state = 788}, - [3931] = {.lex_state = 768}, - [3932] = {.lex_state = 768}, - [3933] = {.lex_state = 768}, - [3934] = {.lex_state = 768}, - [3935] = {.lex_state = 789}, - [3936] = {.lex_state = 784}, - [3937] = {.lex_state = 789}, - [3938] = {.lex_state = 791}, - [3939] = {.lex_state = 785}, - [3940] = {.lex_state = 791}, - [3941] = {.lex_state = 791}, - [3942] = {.lex_state = 791}, - [3943] = {.lex_state = 793}, - [3944] = {.lex_state = 771}, - [3945] = {.lex_state = 771}, - [3946] = {.lex_state = 768}, - [3947] = {.lex_state = 791}, - [3948] = {.lex_state = 768}, - [3949] = {.lex_state = 792}, - [3950] = {.lex_state = 790}, - [3951] = {.lex_state = 791}, - [3952] = {.lex_state = 768}, - [3953] = {.lex_state = 791}, - [3954] = {.lex_state = 49}, - [3955] = {.lex_state = 784}, - [3956] = {.lex_state = 790}, - [3957] = {.lex_state = 707}, - [3958] = {.lex_state = 793}, - [3959] = {.lex_state = 791}, - [3960] = {.lex_state = 791}, - [3961] = {.lex_state = 788}, - [3962] = {.lex_state = 768}, - [3963] = {.lex_state = 785}, - [3964] = {.lex_state = 795}, - [3965] = {.lex_state = 768}, - [3966] = {.lex_state = 64}, - [3967] = {.lex_state = 795}, - [3968] = {.lex_state = 792}, - [3969] = {.lex_state = 707}, - [3970] = {.lex_state = 707}, - [3971] = {.lex_state = 707}, - [3972] = {.lex_state = 797}, - [3973] = {.lex_state = 707}, - [3974] = {.lex_state = 707}, - [3975] = {.lex_state = 707}, - [3976] = {.lex_state = 707}, - [3977] = {.lex_state = 707}, - [3978] = {.lex_state = 707}, - [3979] = {.lex_state = 794}, - [3980] = {.lex_state = 707}, - [3981] = {.lex_state = 707}, - [3982] = {.lex_state = 797}, - [3983] = {.lex_state = 786}, - [3984] = {.lex_state = 792}, - [3985] = {.lex_state = 64}, - [3986] = {.lex_state = 797}, - [3987] = {.lex_state = 797}, - [3988] = {.lex_state = 707}, - [3989] = {.lex_state = 790}, - [3990] = {.lex_state = 790}, - [3991] = {.lex_state = 707}, - [3992] = {.lex_state = 792}, - [3993] = {.lex_state = 775}, - [3994] = {.lex_state = 775}, - [3995] = {.lex_state = 44}, - [3996] = {.lex_state = 707}, - [3997] = {.lex_state = 48}, - [3998] = {.lex_state = 707}, - [3999] = {.lex_state = 766}, - [4000] = {.lex_state = 44}, - [4001] = {.lex_state = 48}, - [4002] = {.lex_state = 795}, - [4003] = {.lex_state = 792}, - [4004] = {.lex_state = 795}, - [4005] = {.lex_state = 792}, - [4006] = {.lex_state = 707}, - [4007] = {.lex_state = 49}, - [4008] = {.lex_state = 707}, - [4009] = {.lex_state = 707}, - [4010] = {.lex_state = 707}, - [4011] = {.lex_state = 797}, - [4012] = {.lex_state = 775}, - [4013] = {.lex_state = 707}, - [4014] = {.lex_state = 707}, - [4015] = {.lex_state = 797}, - [4016] = {.lex_state = 707}, - [4017] = {.lex_state = 52}, - [4018] = {.lex_state = 44}, - [4019] = {.lex_state = 799}, - [4020] = {.lex_state = 767}, - [4021] = {.lex_state = 792}, - [4022] = {.lex_state = 53}, - [4023] = {.lex_state = 796}, - [4024] = {.lex_state = 792}, - [4025] = {.lex_state = 53}, - [4026] = {.lex_state = 49}, - [4027] = {.lex_state = 794}, - [4028] = {.lex_state = 797}, - [4029] = {.lex_state = 49}, - [4030] = {.lex_state = 797}, - [4031] = {.lex_state = 44}, - [4032] = {.lex_state = 797}, - [4033] = {.lex_state = 786}, - [4034] = {.lex_state = 44}, - [4035] = {.lex_state = 797}, - [4036] = {.lex_state = 775}, - [4037] = {.lex_state = 767}, - [4038] = {.lex_state = 775}, - [4039] = {.lex_state = 797}, - [4040] = {.lex_state = 792}, - [4041] = {.lex_state = 796}, - [4042] = {.lex_state = 54}, - [4043] = {.lex_state = 49}, - [4044] = {.lex_state = 792}, - [4045] = {.lex_state = 801}, - [4046] = {.lex_state = 49}, - [4047] = {.lex_state = 775}, - [4048] = {.lex_state = 797}, - [4049] = {.lex_state = 775}, - [4050] = {.lex_state = 792}, - [4051] = {.lex_state = 775}, - [4052] = {.lex_state = 707}, - [4053] = {.lex_state = 707}, - [4054] = {.lex_state = 44}, - [4055] = {.lex_state = 803}, - [4056] = {.lex_state = 798}, - [4057] = {.lex_state = 44}, - [4058] = {.lex_state = 775}, - [4059] = {.lex_state = 792}, - [4060] = {.lex_state = 775}, - [4061] = {.lex_state = 44}, - [4062] = {.lex_state = 798}, - [4063] = {.lex_state = 707}, - [4064] = {.lex_state = 54}, - [4065] = {.lex_state = 54}, - [4066] = {.lex_state = 54}, - [4067] = {.lex_state = 801}, - [4068] = {.lex_state = 798}, - [4069] = {.lex_state = 707}, - [4070] = {.lex_state = 775}, - [4071] = {.lex_state = 775}, - [4072] = {.lex_state = 803}, - [4073] = {.lex_state = 707}, - [4074] = {.lex_state = 775}, - [4075] = {.lex_state = 50}, - [4076] = {.lex_state = 55}, - [4077] = {.lex_state = 775}, - [4078] = {.lex_state = 798}, - [4079] = {.lex_state = 775}, - [4080] = {.lex_state = 775}, - [4081] = {.lex_state = 798}, - [4082] = {.lex_state = 799}, - [4083] = {.lex_state = 44}, - [4084] = {.lex_state = 54}, - [4085] = {.lex_state = 798}, - [4086] = {.lex_state = 707}, - [4087] = {.lex_state = 707}, - [4088] = {.lex_state = 796}, - [4089] = {.lex_state = 707}, - [4090] = {.lex_state = 707}, - [4091] = {.lex_state = 707}, - [4092] = {.lex_state = 796}, - [4093] = {.lex_state = 775}, - [4094] = {.lex_state = 707}, - [4095] = {.lex_state = 775}, - [4096] = {.lex_state = 775}, - [4097] = {.lex_state = 798}, - [4098] = {.lex_state = 775}, - [4099] = {.lex_state = 775}, - [4100] = {.lex_state = 44}, - [4101] = {.lex_state = 775}, - [4102] = {.lex_state = 815}, - [4103] = {.lex_state = 815}, - [4104] = {.lex_state = 815}, - [4105] = {.lex_state = 707}, - [4106] = {.lex_state = 775}, - [4107] = {.lex_state = 44}, - [4108] = {.lex_state = 707}, - [4109] = {.lex_state = 800}, - [4110] = {.lex_state = 707}, - [4111] = {.lex_state = 803}, - [4112] = {.lex_state = 798}, - [4113] = {.lex_state = 775}, - [4114] = {.lex_state = 44}, - [4115] = {.lex_state = 775}, - [4116] = {.lex_state = 775}, - [4117] = {.lex_state = 707}, - [4118] = {.lex_state = 803}, - [4119] = {.lex_state = 44}, - [4120] = {.lex_state = 707}, - [4121] = {.lex_state = 775}, - [4122] = {.lex_state = 775}, - [4123] = {.lex_state = 707}, - [4124] = {.lex_state = 44}, - [4125] = {.lex_state = 775}, - [4126] = {.lex_state = 44}, - [4127] = {.lex_state = 707}, - [4128] = {.lex_state = 707}, - [4129] = {.lex_state = 815}, - [4130] = {.lex_state = 775}, - [4131] = {.lex_state = 775}, - [4132] = {.lex_state = 775}, - [4133] = {.lex_state = 805}, - [4134] = {.lex_state = 805}, - [4135] = {.lex_state = 805}, - [4136] = {.lex_state = 798}, - [4137] = {.lex_state = 815}, - [4138] = {.lex_state = 775}, - [4139] = {.lex_state = 56}, - [4140] = {.lex_state = 775}, - [4141] = {.lex_state = 56}, - [4142] = {.lex_state = 775}, - [4143] = {.lex_state = 775}, - [4144] = {.lex_state = 775}, - [4145] = {.lex_state = 805}, - [4146] = {.lex_state = 798}, - [4147] = {.lex_state = 775}, - [4148] = {.lex_state = 798}, - [4149] = {.lex_state = 805}, - [4150] = {.lex_state = 805}, - [4151] = {.lex_state = 805}, + [3323] = {.lex_state = 164, .external_lex_state = 2}, + [3324] = {.lex_state = 778}, + [3325] = {.lex_state = 778}, + [3326] = {.lex_state = 778}, + [3327] = {.lex_state = 88}, + [3328] = {.lex_state = 87}, + [3329] = {.lex_state = 778}, + [3330] = {.lex_state = 88}, + [3331] = {.lex_state = 8}, + [3332] = {.lex_state = 87}, + [3333] = {.lex_state = 778}, + [3334] = {.lex_state = 778}, + [3335] = {.lex_state = 778}, + [3336] = {.lex_state = 164, .external_lex_state = 2}, + [3337] = {.lex_state = 778}, + [3338] = {.lex_state = 778}, + [3339] = {.lex_state = 778}, + [3340] = {.lex_state = 10}, + [3341] = {.lex_state = 778}, + [3342] = {.lex_state = 12}, + [3343] = {.lex_state = 11}, + [3344] = {.lex_state = 87}, + [3345] = {.lex_state = 87}, + [3346] = {.lex_state = 87}, + [3347] = {.lex_state = 87}, + [3348] = {.lex_state = 87}, + [3349] = {.lex_state = 778}, + [3350] = {.lex_state = 778}, + [3351] = {.lex_state = 11}, + [3352] = {.lex_state = 778}, + [3353] = {.lex_state = 778}, + [3354] = {.lex_state = 87}, + [3355] = {.lex_state = 778}, + [3356] = {.lex_state = 89}, + [3357] = {.lex_state = 91}, + [3358] = {.lex_state = 778}, + [3359] = {.lex_state = 778}, + [3360] = {.lex_state = 778}, + [3361] = {.lex_state = 778}, + [3362] = {.lex_state = 778}, + [3363] = {.lex_state = 93}, + [3364] = {.lex_state = 92}, + [3365] = {.lex_state = 9}, + [3366] = {.lex_state = 12}, + [3367] = {.lex_state = 92}, + [3368] = {.lex_state = 13}, + [3369] = {.lex_state = 12}, + [3370] = {.lex_state = 12}, + [3371] = {.lex_state = 12}, + [3372] = {.lex_state = 778}, + [3373] = {.lex_state = 93}, + [3374] = {.lex_state = 93}, + [3375] = {.lex_state = 778}, + [3376] = {.lex_state = 93}, + [3377] = {.lex_state = 778}, + [3378] = {.lex_state = 14}, + [3379] = {.lex_state = 778}, + [3380] = {.lex_state = 778}, + [3381] = {.lex_state = 89}, + [3382] = {.lex_state = 331}, + [3383] = {.lex_state = 90}, + [3384] = {.lex_state = 778}, + [3385] = {.lex_state = 778}, + [3386] = {.lex_state = 94}, + [3387] = {.lex_state = 778}, + [3388] = {.lex_state = 778}, + [3389] = {.lex_state = 778}, + [3390] = {.lex_state = 778}, + [3391] = {.lex_state = 778}, + [3392] = {.lex_state = 778}, + [3393] = {.lex_state = 778}, + [3394] = {.lex_state = 778}, + [3395] = {.lex_state = 778}, + [3396] = {.lex_state = 778}, + [3397] = {.lex_state = 778}, + [3398] = {.lex_state = 778}, + [3399] = {.lex_state = 778}, + [3400] = {.lex_state = 778}, + [3401] = {.lex_state = 778}, + [3402] = {.lex_state = 778}, + [3403] = {.lex_state = 778}, + [3404] = {.lex_state = 14}, + [3405] = {.lex_state = 778}, + [3406] = {.lex_state = 778}, + [3407] = {.lex_state = 778}, + [3408] = {.lex_state = 93}, + [3409] = {.lex_state = 778}, + [3410] = {.lex_state = 331}, + [3411] = {.lex_state = 15}, + [3412] = {.lex_state = 15}, + [3413] = {.lex_state = 331}, + [3414] = {.lex_state = 15}, + [3415] = {.lex_state = 15}, + [3416] = {.lex_state = 95}, + [3417] = {.lex_state = 95}, + [3418] = {.lex_state = 331}, + [3419] = {.lex_state = 331}, + [3420] = {.lex_state = 15}, + [3421] = {.lex_state = 331}, + [3422] = {.lex_state = 15}, + [3423] = {.lex_state = 1833}, + [3424] = {.lex_state = 96}, + [3425] = {.lex_state = 96}, + [3426] = {.lex_state = 96}, + [3427] = {.lex_state = 96}, + [3428] = {.lex_state = 96}, + [3429] = {.lex_state = 96}, + [3430] = {.lex_state = 17}, + [3431] = {.lex_state = 1835}, + [3432] = {.lex_state = 707}, + [3433] = {.lex_state = 16}, + [3434] = {.lex_state = 331}, + [3435] = {.lex_state = 778}, + [3436] = {.lex_state = 1838}, + [3437] = {.lex_state = 1834}, + [3438] = {.lex_state = 778}, + [3439] = {.lex_state = 1836}, + [3440] = {.lex_state = 98}, + [3441] = {.lex_state = 18}, + [3442] = {.lex_state = 18}, + [3443] = {.lex_state = 1836}, + [3444] = {.lex_state = 97}, + [3445] = {.lex_state = 19}, + [3446] = {.lex_state = 1839}, + [3447] = {.lex_state = 1837}, + [3448] = {.lex_state = 20}, + [3449] = {.lex_state = 1837}, + [3450] = {.lex_state = 19}, + [3451] = {.lex_state = 20}, + [3452] = {.lex_state = 1837}, + [3453] = {.lex_state = 19}, + [3454] = {.lex_state = 20}, + [3455] = {.lex_state = 20}, + [3456] = {.lex_state = 19}, + [3457] = {.lex_state = 19}, + [3458] = {.lex_state = 20}, + [3459] = {.lex_state = 99}, + [3460] = {.lex_state = 19}, + [3461] = {.lex_state = 1837}, + [3462] = {.lex_state = 707}, + [3463] = {.lex_state = 707}, + [3464] = {.lex_state = 707}, + [3465] = {.lex_state = 707}, + [3466] = {.lex_state = 707}, + [3467] = {.lex_state = 99}, + [3468] = {.lex_state = 19}, + [3469] = {.lex_state = 1839}, + [3470] = {.lex_state = 707}, + [3471] = {.lex_state = 707}, + [3472] = {.lex_state = 707}, + [3473] = {.lex_state = 707}, + [3474] = {.lex_state = 1837}, + [3475] = {.lex_state = 19}, + [3476] = {.lex_state = 19}, + [3477] = {.lex_state = 707}, + [3478] = {.lex_state = 707}, + [3479] = {.lex_state = 707}, + [3480] = {.lex_state = 707}, + [3481] = {.lex_state = 707}, + [3482] = {.lex_state = 101}, + [3483] = {.lex_state = 707}, + [3484] = {.lex_state = 707}, + [3485] = {.lex_state = 707}, + [3486] = {.lex_state = 707}, + [3487] = {.lex_state = 707}, + [3488] = {.lex_state = 707}, + [3489] = {.lex_state = 707}, + [3490] = {.lex_state = 707}, + [3491] = {.lex_state = 707}, + [3492] = {.lex_state = 101}, + [3493] = {.lex_state = 101}, + [3494] = {.lex_state = 707}, + [3495] = {.lex_state = 707}, + [3496] = {.lex_state = 707}, + [3497] = {.lex_state = 707}, + [3498] = {.lex_state = 707}, + [3499] = {.lex_state = 707}, + [3500] = {.lex_state = 707}, + [3501] = {.lex_state = 1840}, + [3502] = {.lex_state = 707}, + [3503] = {.lex_state = 707}, + [3504] = {.lex_state = 707}, + [3505] = {.lex_state = 707}, + [3506] = {.lex_state = 707}, + [3507] = {.lex_state = 1840}, + [3508] = {.lex_state = 707}, + [3509] = {.lex_state = 707}, + [3510] = {.lex_state = 707}, + [3511] = {.lex_state = 707}, + [3512] = {.lex_state = 707}, + [3513] = {.lex_state = 707}, + [3514] = {.lex_state = 707}, + [3515] = {.lex_state = 707}, + [3516] = {.lex_state = 707}, + [3517] = {.lex_state = 707}, + [3518] = {.lex_state = 707}, + [3519] = {.lex_state = 707}, + [3520] = {.lex_state = 707}, + [3521] = {.lex_state = 707}, + [3522] = {.lex_state = 707}, + [3523] = {.lex_state = 1840}, + [3524] = {.lex_state = 707}, + [3525] = {.lex_state = 707}, + [3526] = {.lex_state = 707}, + [3527] = {.lex_state = 707}, + [3528] = {.lex_state = 707}, + [3529] = {.lex_state = 707}, + [3530] = {.lex_state = 707}, + [3531] = {.lex_state = 707}, + [3532] = {.lex_state = 1840}, + [3533] = {.lex_state = 707}, + [3534] = {.lex_state = 703}, + [3535] = {.lex_state = 707}, + [3536] = {.lex_state = 100}, + [3537] = {.lex_state = 100}, + [3538] = {.lex_state = 707}, + [3539] = {.lex_state = 707}, + [3540] = {.lex_state = 100}, + [3541] = {.lex_state = 707}, + [3542] = {.lex_state = 707}, + [3543] = {.lex_state = 707}, + [3544] = {.lex_state = 707}, + [3545] = {.lex_state = 707}, + [3546] = {.lex_state = 707}, + [3547] = {.lex_state = 100}, + [3548] = {.lex_state = 1840}, + [3549] = {.lex_state = 707}, + [3550] = {.lex_state = 101}, + [3551] = {.lex_state = 1840}, + [3552] = {.lex_state = 707}, + [3553] = {.lex_state = 1840}, + [3554] = {.lex_state = 707}, + [3555] = {.lex_state = 707}, + [3556] = {.lex_state = 707}, + [3557] = {.lex_state = 707}, + [3558] = {.lex_state = 1840}, + [3559] = {.lex_state = 100}, + [3560] = {.lex_state = 100}, + [3561] = {.lex_state = 100}, + [3562] = {.lex_state = 707}, + [3563] = {.lex_state = 1840}, + [3564] = {.lex_state = 100}, + [3565] = {.lex_state = 707}, + [3566] = {.lex_state = 707}, + [3567] = {.lex_state = 707}, + [3568] = {.lex_state = 707}, + [3569] = {.lex_state = 707}, + [3570] = {.lex_state = 101}, + [3571] = {.lex_state = 707}, + [3572] = {.lex_state = 1840}, + [3573] = {.lex_state = 707}, + [3574] = {.lex_state = 707}, + [3575] = {.lex_state = 100}, + [3576] = {.lex_state = 707}, + [3577] = {.lex_state = 707}, + [3578] = {.lex_state = 707}, + [3579] = {.lex_state = 707}, + [3580] = {.lex_state = 1840}, + [3581] = {.lex_state = 19}, + [3582] = {.lex_state = 707}, + [3583] = {.lex_state = 707}, + [3584] = {.lex_state = 707}, + [3585] = {.lex_state = 707}, + [3586] = {.lex_state = 707}, + [3587] = {.lex_state = 707}, + [3588] = {.lex_state = 707}, + [3589] = {.lex_state = 707}, + [3590] = {.lex_state = 707}, + [3591] = {.lex_state = 707}, + [3592] = {.lex_state = 707}, + [3593] = {.lex_state = 707}, + [3594] = {.lex_state = 707}, + [3595] = {.lex_state = 707}, + [3596] = {.lex_state = 707}, + [3597] = {.lex_state = 707}, + [3598] = {.lex_state = 707}, + [3599] = {.lex_state = 707}, + [3600] = {.lex_state = 64}, + [3601] = {.lex_state = 773}, + [3602] = {.lex_state = 773}, + [3603] = {.lex_state = 64}, + [3604] = {.lex_state = 707}, + [3605] = {.lex_state = 707}, + [3606] = {.lex_state = 707}, + [3607] = {.lex_state = 100}, + [3608] = {.lex_state = 707}, + [3609] = {.lex_state = 773}, + [3610] = {.lex_state = 707}, + [3611] = {.lex_state = 707}, + [3612] = {.lex_state = 773}, + [3613] = {.lex_state = 707}, + [3614] = {.lex_state = 1841}, + [3615] = {.lex_state = 1841}, + [3616] = {.lex_state = 707}, + [3617] = {.lex_state = 707}, + [3618] = {.lex_state = 707}, + [3619] = {.lex_state = 707}, + [3620] = {.lex_state = 707}, + [3621] = {.lex_state = 707}, + [3622] = {.lex_state = 707}, + [3623] = {.lex_state = 707}, + [3624] = {.lex_state = 1841}, + [3625] = {.lex_state = 1841}, + [3626] = {.lex_state = 707}, + [3627] = {.lex_state = 707}, + [3628] = {.lex_state = 707}, + [3629] = {.lex_state = 707}, + [3630] = {.lex_state = 1841}, + [3631] = {.lex_state = 707}, + [3632] = {.lex_state = 707}, + [3633] = {.lex_state = 707}, + [3634] = {.lex_state = 707}, + [3635] = {.lex_state = 707}, + [3636] = {.lex_state = 707}, + [3637] = {.lex_state = 707}, + [3638] = {.lex_state = 707}, + [3639] = {.lex_state = 707}, + [3640] = {.lex_state = 707}, + [3641] = {.lex_state = 707}, + [3642] = {.lex_state = 1841}, + [3643] = {.lex_state = 1841}, + [3644] = {.lex_state = 1841}, + [3645] = {.lex_state = 64}, + [3646] = {.lex_state = 64}, + [3647] = {.lex_state = 64}, + [3648] = {.lex_state = 64}, + [3649] = {.lex_state = 64}, + [3650] = {.lex_state = 64}, + [3651] = {.lex_state = 64}, + [3652] = {.lex_state = 64}, + [3653] = {.lex_state = 707}, + [3654] = {.lex_state = 64}, + [3655] = {.lex_state = 64}, + [3656] = {.lex_state = 64}, + [3657] = {.lex_state = 64}, + [3658] = {.lex_state = 64}, + [3659] = {.lex_state = 64}, + [3660] = {.lex_state = 64}, + [3661] = {.lex_state = 64}, + [3662] = {.lex_state = 64}, + [3663] = {.lex_state = 64}, + [3664] = {.lex_state = 64}, + [3665] = {.lex_state = 64}, + [3666] = {.lex_state = 64}, + [3667] = {.lex_state = 64}, + [3668] = {.lex_state = 670}, + [3669] = {.lex_state = 707}, + [3670] = {.lex_state = 708}, + [3671] = {.lex_state = 64}, + [3672] = {.lex_state = 64}, + [3673] = {.lex_state = 707}, + [3674] = {.lex_state = 64}, + [3675] = {.lex_state = 707}, + [3676] = {.lex_state = 64}, + [3677] = {.lex_state = 707}, + [3678] = {.lex_state = 670}, + [3679] = {.lex_state = 707}, + [3680] = {.lex_state = 670}, + [3681] = {.lex_state = 670}, + [3682] = {.lex_state = 670}, + [3683] = {.lex_state = 708}, + [3684] = {.lex_state = 670}, + [3685] = {.lex_state = 64}, + [3686] = {.lex_state = 64}, + [3687] = {.lex_state = 64}, + [3688] = {.lex_state = 64}, + [3689] = {.lex_state = 64}, + [3690] = {.lex_state = 64}, + [3691] = {.lex_state = 64}, + [3692] = {.lex_state = 64}, + [3693] = {.lex_state = 64}, + [3694] = {.lex_state = 64}, + [3695] = {.lex_state = 64}, + [3696] = {.lex_state = 768}, + [3697] = {.lex_state = 64}, + [3698] = {.lex_state = 770}, + [3699] = {.lex_state = 771}, + [3700] = {.lex_state = 771}, + [3701] = {.lex_state = 672}, + [3702] = {.lex_state = 770}, + [3703] = {.lex_state = 61}, + [3704] = {.lex_state = 708}, + [3705] = {.lex_state = 771}, + [3706] = {.lex_state = 769}, + [3707] = {.lex_state = 708}, + [3708] = {.lex_state = 788}, + [3709] = {.lex_state = 672}, + [3710] = {.lex_state = 784}, + [3711] = {.lex_state = 708}, + [3712] = {.lex_state = 672}, + [3713] = {.lex_state = 672}, + [3714] = {.lex_state = 672}, + [3715] = {.lex_state = 708}, + [3716] = {.lex_state = 672}, + [3717] = {.lex_state = 61}, + [3718] = {.lex_state = 771}, + [3719] = {.lex_state = 708}, + [3720] = {.lex_state = 792}, + [3721] = {.lex_state = 790}, + [3722] = {.lex_state = 784}, + [3723] = {.lex_state = 772}, + [3724] = {.lex_state = 769}, + [3725] = {.lex_state = 790}, + [3726] = {.lex_state = 672}, + [3727] = {.lex_state = 672}, + [3728] = {.lex_state = 772}, + [3729] = {.lex_state = 672}, + [3730] = {.lex_state = 672}, + [3731] = {.lex_state = 769}, + [3732] = {.lex_state = 788}, + [3733] = {.lex_state = 794}, + [3734] = {.lex_state = 792}, + [3735] = {.lex_state = 786}, + [3736] = {.lex_state = 792}, + [3737] = {.lex_state = 772}, + [3738] = {.lex_state = 792}, + [3739] = {.lex_state = 792}, + [3740] = {.lex_state = 785}, + [3741] = {.lex_state = 772}, + [3742] = {.lex_state = 769}, + [3743] = {.lex_state = 790}, + [3744] = {.lex_state = 789}, + [3745] = {.lex_state = 769}, + [3746] = {.lex_state = 769}, + [3747] = {.lex_state = 769}, + [3748] = {.lex_state = 769}, + [3749] = {.lex_state = 790}, + [3750] = {.lex_state = 792}, + [3751] = {.lex_state = 786}, + [3752] = {.lex_state = 792}, + [3753] = {.lex_state = 792}, + [3754] = {.lex_state = 796}, + [3755] = {.lex_state = 794}, + [3756] = {.lex_state = 785}, + [3757] = {.lex_state = 791}, + [3758] = {.lex_state = 49}, + [3759] = {.lex_state = 769}, + [3760] = {.lex_state = 769}, + [3761] = {.lex_state = 769}, + [3762] = {.lex_state = 769}, + [3763] = {.lex_state = 64}, + [3764] = {.lex_state = 789}, + [3765] = {.lex_state = 708}, + [3766] = {.lex_state = 791}, + [3767] = {.lex_state = 796}, + [3768] = {.lex_state = 792}, + [3769] = {.lex_state = 792}, + [3770] = {.lex_state = 793}, + [3771] = {.lex_state = 64}, + [3772] = {.lex_state = 796}, + [3773] = {.lex_state = 796}, + [3774] = {.lex_state = 708}, + [3775] = {.lex_state = 776}, + [3776] = {.lex_state = 793}, + [3777] = {.lex_state = 708}, + [3778] = {.lex_state = 708}, + [3779] = {.lex_state = 708}, + [3780] = {.lex_state = 708}, + [3781] = {.lex_state = 708}, + [3782] = {.lex_state = 776}, + [3783] = {.lex_state = 48}, + [3784] = {.lex_state = 708}, + [3785] = {.lex_state = 793}, + [3786] = {.lex_state = 798}, + [3787] = {.lex_state = 791}, + [3788] = {.lex_state = 708}, + [3789] = {.lex_state = 49}, + [3790] = {.lex_state = 708}, + [3791] = {.lex_state = 798}, + [3792] = {.lex_state = 795}, + [3793] = {.lex_state = 708}, + [3794] = {.lex_state = 798}, + [3795] = {.lex_state = 776}, + [3796] = {.lex_state = 708}, + [3797] = {.lex_state = 798}, + [3798] = {.lex_state = 708}, + [3799] = {.lex_state = 793}, + [3800] = {.lex_state = 798}, + [3801] = {.lex_state = 48}, + [3802] = {.lex_state = 793}, + [3803] = {.lex_state = 787}, + [3804] = {.lex_state = 793}, + [3805] = {.lex_state = 767}, + [3806] = {.lex_state = 44}, + [3807] = {.lex_state = 44}, + [3808] = {.lex_state = 708}, + [3809] = {.lex_state = 798}, + [3810] = {.lex_state = 50}, + [3811] = {.lex_state = 791}, + [3812] = {.lex_state = 44}, + [3813] = {.lex_state = 797}, + [3814] = {.lex_state = 44}, + [3815] = {.lex_state = 797}, + [3816] = {.lex_state = 793}, + [3817] = {.lex_state = 53}, + [3818] = {.lex_state = 49}, + [3819] = {.lex_state = 768}, + [3820] = {.lex_state = 776}, + [3821] = {.lex_state = 793}, + [3822] = {.lex_state = 793}, + [3823] = {.lex_state = 798}, + [3824] = {.lex_state = 49}, + [3825] = {.lex_state = 795}, + [3826] = {.lex_state = 800}, + [3827] = {.lex_state = 793}, + [3828] = {.lex_state = 776}, + [3829] = {.lex_state = 798}, + [3830] = {.lex_state = 54}, + [3831] = {.lex_state = 49}, + [3832] = {.lex_state = 776}, + [3833] = {.lex_state = 776}, + [3834] = {.lex_state = 798}, + [3835] = {.lex_state = 798}, + [3836] = {.lex_state = 802}, + [3837] = {.lex_state = 49}, + [3838] = {.lex_state = 53}, + [3839] = {.lex_state = 768}, + [3840] = {.lex_state = 798}, + [3841] = {.lex_state = 787}, + [3842] = {.lex_state = 44}, + [3843] = {.lex_state = 798}, + [3844] = {.lex_state = 776}, + [3845] = {.lex_state = 793}, + [3846] = {.lex_state = 797}, + [3847] = {.lex_state = 804}, + [3848] = {.lex_state = 54}, + [3849] = {.lex_state = 776}, + [3850] = {.lex_state = 44}, + [3851] = {.lex_state = 776}, + [3852] = {.lex_state = 776}, + [3853] = {.lex_state = 799}, + [3854] = {.lex_state = 776}, + [3855] = {.lex_state = 776}, + [3856] = {.lex_state = 54}, + [3857] = {.lex_state = 776}, + [3858] = {.lex_state = 776}, + [3859] = {.lex_state = 51}, + [3860] = {.lex_state = 55}, + [3861] = {.lex_state = 708}, + [3862] = {.lex_state = 797}, + [3863] = {.lex_state = 54}, + [3864] = {.lex_state = 802}, + [3865] = {.lex_state = 799}, + [3866] = {.lex_state = 708}, + [3867] = {.lex_state = 708}, + [3868] = {.lex_state = 708}, + [3869] = {.lex_state = 44}, + [3870] = {.lex_state = 776}, + [3871] = {.lex_state = 54}, + [3872] = {.lex_state = 799}, + [3873] = {.lex_state = 793}, + [3874] = {.lex_state = 44}, + [3875] = {.lex_state = 799}, + [3876] = {.lex_state = 799}, + [3877] = {.lex_state = 44}, + [3878] = {.lex_state = 800}, + [3879] = {.lex_state = 804}, + [3880] = {.lex_state = 708}, + [3881] = {.lex_state = 708}, + [3882] = {.lex_state = 708}, + [3883] = {.lex_state = 708}, + [3884] = {.lex_state = 708}, + [3885] = {.lex_state = 708}, + [3886] = {.lex_state = 799}, + [3887] = {.lex_state = 708}, + [3888] = {.lex_state = 44}, + [3889] = {.lex_state = 56}, + [3890] = {.lex_state = 776}, + [3891] = {.lex_state = 776}, + [3892] = {.lex_state = 776}, + [3893] = {.lex_state = 708}, + [3894] = {.lex_state = 799}, + [3895] = {.lex_state = 708}, + [3896] = {.lex_state = 776}, + [3897] = {.lex_state = 804}, + [3898] = {.lex_state = 816}, + [3899] = {.lex_state = 803}, + [3900] = {.lex_state = 708}, + [3901] = {.lex_state = 806}, + [3902] = {.lex_state = 806}, + [3903] = {.lex_state = 44}, + [3904] = {.lex_state = 804}, + [3905] = {.lex_state = 44}, + [3906] = {.lex_state = 806}, + [3907] = {.lex_state = 806}, + [3908] = {.lex_state = 708}, + [3909] = {.lex_state = 776}, + [3910] = {.lex_state = 708}, + [3911] = {.lex_state = 708}, + [3912] = {.lex_state = 776}, + [3913] = {.lex_state = 776}, + [3914] = {.lex_state = 816}, + [3915] = {.lex_state = 816}, + [3916] = {.lex_state = 708}, + [3917] = {.lex_state = 816}, + [3918] = {.lex_state = 806}, + [3919] = {.lex_state = 776}, + [3920] = {.lex_state = 776}, + [3921] = {.lex_state = 776}, + [3922] = {.lex_state = 44}, + [3923] = {.lex_state = 708}, + [3924] = {.lex_state = 806}, + [3925] = {.lex_state = 776}, + [3926] = {.lex_state = 44}, + [3927] = {.lex_state = 776}, + [3928] = {.lex_state = 799}, + [3929] = {.lex_state = 44}, + [3930] = {.lex_state = 56}, + [3931] = {.lex_state = 776}, + [3932] = {.lex_state = 44}, + [3933] = {.lex_state = 776}, + [3934] = {.lex_state = 799}, + [3935] = {.lex_state = 776}, + [3936] = {.lex_state = 776}, + [3937] = {.lex_state = 776}, + [3938] = {.lex_state = 708}, + [3939] = {.lex_state = 776}, + [3940] = {.lex_state = 44}, + [3941] = {.lex_state = 776}, + [3942] = {.lex_state = 776}, + [3943] = {.lex_state = 776}, + [3944] = {.lex_state = 776}, + [3945] = {.lex_state = 799}, + [3946] = {.lex_state = 776}, + [3947] = {.lex_state = 703}, + [3948] = {.lex_state = 801}, + [3949] = {.lex_state = 776}, + [3950] = {.lex_state = 799}, + [3951] = {.lex_state = 799}, + [3952] = {.lex_state = 816}, + [3953] = {.lex_state = 806}, + [3954] = {.lex_state = 708}, + [3955] = {.lex_state = 708}, + [3956] = {.lex_state = 776}, + [3957] = {.lex_state = 776}, + [3958] = {.lex_state = 708}, + [3959] = {.lex_state = 806}, + [3960] = {.lex_state = 806}, + [3961] = {.lex_state = 776}, + [3962] = {.lex_state = 708}, + [3963] = {.lex_state = 44}, + [3964] = {.lex_state = 52}, + [3965] = {.lex_state = 776}, + [3966] = {.lex_state = 776}, + [3967] = {.lex_state = 52}, + [3968] = {.lex_state = 708}, + [3969] = {.lex_state = 816}, + [3970] = {.lex_state = 806}, + [3971] = {.lex_state = 806}, + [3972] = {.lex_state = 803}, + [3973] = {.lex_state = 805}, + [3974] = {.lex_state = 816}, + [3975] = {.lex_state = 816}, + [3976] = {.lex_state = 52}, + [3977] = {.lex_state = 816}, + [3978] = {.lex_state = 776}, + [3979] = {.lex_state = 52}, + [3980] = {.lex_state = 785}, + [3981] = {.lex_state = 52}, + [3982] = {.lex_state = 52}, + [3983] = {.lex_state = 44}, + [3984] = {.lex_state = 44}, + [3985] = {.lex_state = 44}, + [3986] = {.lex_state = 44}, + [3987] = {.lex_state = 708}, + [3988] = {.lex_state = 776}, + [3989] = {.lex_state = 785}, + [3990] = {.lex_state = 806}, + [3991] = {.lex_state = 776}, + [3992] = {.lex_state = 776}, + [3993] = {.lex_state = 708}, + [3994] = {.lex_state = 785}, + [3995] = {.lex_state = 179, .external_lex_state = 2}, + [3996] = {.lex_state = 776}, + [3997] = {.lex_state = 806}, + [3998] = {.lex_state = 785}, + [3999] = {.lex_state = 44}, + [4000] = {.lex_state = 52}, + [4001] = {.lex_state = 776}, + [4002] = {.lex_state = 806}, + [4003] = {.lex_state = 776}, + [4004] = {.lex_state = 776}, + [4005] = {.lex_state = 44}, + [4006] = {.lex_state = 44}, + [4007] = {.lex_state = 776}, + [4008] = {.lex_state = 801}, + [4009] = {.lex_state = 806}, + [4010] = {.lex_state = 776}, + [4011] = {.lex_state = 776}, + [4012] = {.lex_state = 806}, + [4013] = {.lex_state = 806}, + [4014] = {.lex_state = 806}, + [4015] = {.lex_state = 776}, + [4016] = {.lex_state = 776}, + [4017] = {.lex_state = 776}, + [4018] = {.lex_state = 179, .external_lex_state = 2}, + [4019] = {.lex_state = 776}, + [4020] = {.lex_state = 179, .external_lex_state = 2}, + [4021] = {.lex_state = 785}, + [4022] = {.lex_state = 44}, + [4023] = {.lex_state = 776}, + [4024] = {.lex_state = 776}, + [4025] = {.lex_state = 785}, + [4026] = {.lex_state = 776}, + [4027] = {.lex_state = 785}, + [4028] = {.lex_state = 785}, + [4029] = {.lex_state = 785}, + [4030] = {.lex_state = 785}, + [4031] = {.lex_state = 785}, + [4032] = {.lex_state = 806}, + [4033] = {.lex_state = 179, .external_lex_state = 2}, + [4034] = {.lex_state = 816}, + [4035] = {.lex_state = 805}, + [4036] = {.lex_state = 776}, + [4037] = {.lex_state = 44}, + [4038] = {.lex_state = 670}, + [4039] = {.lex_state = 670}, + [4040] = {.lex_state = 670}, + [4041] = {.lex_state = 807}, + [4042] = {.lex_state = 807}, + [4043] = {.lex_state = 670}, + [4044] = {.lex_state = 670}, + [4045] = {.lex_state = 805}, + [4046] = {.lex_state = 670}, + [4047] = {.lex_state = 670}, + [4048] = {.lex_state = 670}, + [4049] = {.lex_state = 785}, + [4050] = {.lex_state = 44}, + [4051] = {.lex_state = 670}, + [4052] = {.lex_state = 670}, + [4053] = {.lex_state = 670}, + [4054] = {.lex_state = 670}, + [4055] = {.lex_state = 670}, + [4056] = {.lex_state = 670}, + [4057] = {.lex_state = 670}, + [4058] = {.lex_state = 670}, + [4059] = {.lex_state = 44}, + [4060] = {.lex_state = 670}, + [4061] = {.lex_state = 670}, + [4062] = {.lex_state = 670}, + [4063] = {.lex_state = 817}, + [4064] = {.lex_state = 670}, + [4065] = {.lex_state = 58}, + [4066] = {.lex_state = 769}, + [4067] = {.lex_state = 670}, + [4068] = {.lex_state = 670}, + [4069] = {.lex_state = 670}, + [4070] = {.lex_state = 670}, + [4071] = {.lex_state = 670}, + [4072] = {.lex_state = 670}, + [4073] = {.lex_state = 670}, + [4074] = {.lex_state = 670}, + [4075] = {.lex_state = 670}, + [4076] = {.lex_state = 670}, + [4077] = {.lex_state = 670}, + [4078] = {.lex_state = 670}, + [4079] = {.lex_state = 670}, + [4080] = {.lex_state = 670}, + [4081] = {.lex_state = 670}, + [4082] = {.lex_state = 670}, + [4083] = {.lex_state = 38}, + [4084] = {.lex_state = 670}, + [4085] = {.lex_state = 769}, + [4086] = {.lex_state = 769}, + [4087] = {.lex_state = 670}, + [4088] = {.lex_state = 670}, + [4089] = {.lex_state = 670}, + [4090] = {.lex_state = 670}, + [4091] = {.lex_state = 670}, + [4092] = {.lex_state = 670}, + [4093] = {.lex_state = 670}, + [4094] = {.lex_state = 670}, + [4095] = {.lex_state = 670}, + [4096] = {.lex_state = 670}, + [4097] = {.lex_state = 670}, + [4098] = {.lex_state = 670}, + [4099] = {.lex_state = 670}, + [4100] = {.lex_state = 670}, + [4101] = {.lex_state = 670}, + [4102] = {.lex_state = 670}, + [4103] = {.lex_state = 670}, + [4104] = {.lex_state = 670}, + [4105] = {.lex_state = 670}, + [4106] = {.lex_state = 670}, + [4107] = {.lex_state = 801}, + [4108] = {.lex_state = 670}, + [4109] = {.lex_state = 670}, + [4110] = {.lex_state = 785}, + [4111] = {.lex_state = 670}, + [4112] = {.lex_state = 670}, + [4113] = {.lex_state = 670}, + [4114] = {.lex_state = 670}, + [4115] = {.lex_state = 670}, + [4116] = {.lex_state = 670}, + [4117] = {.lex_state = 670}, + [4118] = {.lex_state = 670}, + [4119] = {.lex_state = 670}, + [4120] = {.lex_state = 670}, + [4121] = {.lex_state = 670}, + [4122] = {.lex_state = 670}, + [4123] = {.lex_state = 670}, + [4124] = {.lex_state = 670}, + [4125] = {.lex_state = 670}, + [4126] = {.lex_state = 670}, + [4127] = {.lex_state = 44}, + [4128] = {.lex_state = 670}, + [4129] = {.lex_state = 785}, + [4130] = {.lex_state = 670}, + [4131] = {.lex_state = 807}, + [4132] = {.lex_state = 44}, + [4133] = {.lex_state = 44}, + [4134] = {.lex_state = 44}, + [4135] = {.lex_state = 817}, + [4136] = {.lex_state = 817}, + [4137] = {.lex_state = 44}, + [4138] = {.lex_state = 785}, + [4139] = {.lex_state = 814}, + [4140] = {.lex_state = 670}, + [4141] = {.lex_state = 670}, + [4142] = {.lex_state = 670}, + [4143] = {.lex_state = 670}, + [4144] = {.lex_state = 670}, + [4145] = {.lex_state = 670}, + [4146] = {.lex_state = 670}, + [4147] = {.lex_state = 805}, + [4148] = {.lex_state = 817}, + [4149] = {.lex_state = 817}, + [4150] = {.lex_state = 670}, + [4151] = {.lex_state = 670}, [4152] = {.lex_state = 44}, - [4153] = {.lex_state = 805}, - [4154] = {.lex_state = 775}, - [4155] = {.lex_state = 775}, - [4156] = {.lex_state = 775}, - [4157] = {.lex_state = 775}, - [4158] = {.lex_state = 775}, - [4159] = {.lex_state = 775}, - [4160] = {.lex_state = 802}, - [4161] = {.lex_state = 775}, - [4162] = {.lex_state = 775}, - [4163] = {.lex_state = 707}, - [4164] = {.lex_state = 798}, - [4165] = {.lex_state = 707}, - [4166] = {.lex_state = 707}, - [4167] = {.lex_state = 707}, - [4168] = {.lex_state = 775}, - [4169] = {.lex_state = 775}, - [4170] = {.lex_state = 775}, - [4171] = {.lex_state = 775}, - [4172] = {.lex_state = 702}, - [4173] = {.lex_state = 44}, - [4174] = {.lex_state = 775}, - [4175] = {.lex_state = 44}, - [4176] = {.lex_state = 707}, - [4177] = {.lex_state = 775}, - [4178] = {.lex_state = 805}, + [4153] = {.lex_state = 44}, + [4154] = {.lex_state = 785}, + [4155] = {.lex_state = 670}, + [4156] = {.lex_state = 670}, + [4157] = {.lex_state = 44}, + [4158] = {.lex_state = 785}, + [4159] = {.lex_state = 670}, + [4160] = {.lex_state = 57}, + [4161] = {.lex_state = 807}, + [4162] = {.lex_state = 807}, + [4163] = {.lex_state = 44}, + [4164] = {.lex_state = 44}, + [4165] = {.lex_state = 670}, + [4166] = {.lex_state = 670}, + [4167] = {.lex_state = 670}, + [4168] = {.lex_state = 44}, + [4169] = {.lex_state = 44}, + [4170] = {.lex_state = 670}, + [4171] = {.lex_state = 785}, + [4172] = {.lex_state = 769}, + [4173] = {.lex_state = 769}, + [4174] = {.lex_state = 38}, + [4175] = {.lex_state = 670}, + [4176] = {.lex_state = 44}, + [4177] = {.lex_state = 44}, + [4178] = {.lex_state = 785}, [4179] = {.lex_state = 44}, - [4180] = {.lex_state = 51}, - [4181] = {.lex_state = 51}, - [4182] = {.lex_state = 178, .external_lex_state = 2}, - [4183] = {.lex_state = 775}, - [4184] = {.lex_state = 775}, - [4185] = {.lex_state = 775}, - [4186] = {.lex_state = 707}, - [4187] = {.lex_state = 44}, - [4188] = {.lex_state = 44}, - [4189] = {.lex_state = 44}, - [4190] = {.lex_state = 788}, - [4191] = {.lex_state = 775}, - [4192] = {.lex_state = 775}, - [4193] = {.lex_state = 178, .external_lex_state = 2}, + [4180] = {.lex_state = 807}, + [4181] = {.lex_state = 44}, + [4182] = {.lex_state = 807}, + [4183] = {.lex_state = 670}, + [4184] = {.lex_state = 785}, + [4185] = {.lex_state = 670}, + [4186] = {.lex_state = 670}, + [4187] = {.lex_state = 670}, + [4188] = {.lex_state = 670}, + [4189] = {.lex_state = 670}, + [4190] = {.lex_state = 670}, + [4191] = {.lex_state = 670}, + [4192] = {.lex_state = 670}, + [4193] = {.lex_state = 44}, [4194] = {.lex_state = 44}, - [4195] = {.lex_state = 805}, + [4195] = {.lex_state = 44}, [4196] = {.lex_state = 44}, - [4197] = {.lex_state = 775}, - [4198] = {.lex_state = 805}, - [4199] = {.lex_state = 775}, - [4200] = {.lex_state = 775}, - [4201] = {.lex_state = 775}, - [4202] = {.lex_state = 815}, - [4203] = {.lex_state = 775}, - [4204] = {.lex_state = 804}, - [4205] = {.lex_state = 775}, - [4206] = {.lex_state = 51}, - [4207] = {.lex_state = 805}, - [4208] = {.lex_state = 775}, - [4209] = {.lex_state = 805}, - [4210] = {.lex_state = 805}, - [4211] = {.lex_state = 178, .external_lex_state = 2}, - [4212] = {.lex_state = 788}, - [4213] = {.lex_state = 775}, - [4214] = {.lex_state = 805}, - [4215] = {.lex_state = 805}, - [4216] = {.lex_state = 775}, - [4217] = {.lex_state = 788}, - [4218] = {.lex_state = 707}, - [4219] = {.lex_state = 51}, - [4220] = {.lex_state = 804}, - [4221] = {.lex_state = 178, .external_lex_state = 2}, - [4222] = {.lex_state = 775}, - [4223] = {.lex_state = 805}, - [4224] = {.lex_state = 44}, - [4225] = {.lex_state = 775}, - [4226] = {.lex_state = 51}, - [4227] = {.lex_state = 805}, - [4228] = {.lex_state = 775}, - [4229] = {.lex_state = 775}, - [4230] = {.lex_state = 775}, - [4231] = {.lex_state = 44}, - [4232] = {.lex_state = 788}, - [4233] = {.lex_state = 805}, - [4234] = {.lex_state = 775}, - [4235] = {.lex_state = 775}, - [4236] = {.lex_state = 788}, - [4237] = {.lex_state = 788}, - [4238] = {.lex_state = 788}, - [4239] = {.lex_state = 788}, - [4240] = {.lex_state = 788}, - [4241] = {.lex_state = 775}, - [4242] = {.lex_state = 788}, - [4243] = {.lex_state = 775}, - [4244] = {.lex_state = 707}, - [4245] = {.lex_state = 44}, - [4246] = {.lex_state = 775}, - [4247] = {.lex_state = 815}, - [4248] = {.lex_state = 775}, - [4249] = {.lex_state = 788}, - [4250] = {.lex_state = 800}, - [4251] = {.lex_state = 51}, - [4252] = {.lex_state = 775}, - [4253] = {.lex_state = 775}, - [4254] = {.lex_state = 775}, - [4255] = {.lex_state = 775}, - [4256] = {.lex_state = 802}, - [4257] = {.lex_state = 815}, - [4258] = {.lex_state = 51}, - [4259] = {.lex_state = 815}, - [4260] = {.lex_state = 815}, - [4261] = {.lex_state = 775}, - [4262] = {.lex_state = 44}, - [4263] = {.lex_state = 669}, - [4264] = {.lex_state = 669}, + [4197] = {.lex_state = 44}, + [4198] = {.lex_state = 44}, + [4199] = {.lex_state = 44}, + [4200] = {.lex_state = 44}, + [4201] = {.lex_state = 44}, + [4202] = {.lex_state = 44}, + [4203] = {.lex_state = 44}, + [4204] = {.lex_state = 44}, + [4205] = {.lex_state = 670}, + [4206] = {.lex_state = 670}, + [4207] = {.lex_state = 670}, + [4208] = {.lex_state = 670}, + [4209] = {.lex_state = 670}, + [4210] = {.lex_state = 670}, + [4211] = {.lex_state = 670}, + [4212] = {.lex_state = 785}, + [4213] = {.lex_state = 670}, + [4214] = {.lex_state = 670}, + [4215] = {.lex_state = 44}, + [4216] = {.lex_state = 44}, + [4217] = {.lex_state = 806}, + [4218] = {.lex_state = 670}, + [4219] = {.lex_state = 44}, + [4220] = {.lex_state = 44}, + [4221] = {.lex_state = 44}, + [4222] = {.lex_state = 44}, + [4223] = {.lex_state = 44}, + [4224] = {.lex_state = 670}, + [4225] = {.lex_state = 785}, + [4226] = {.lex_state = 807}, + [4227] = {.lex_state = 670}, + [4228] = {.lex_state = 670}, + [4229] = {.lex_state = 776}, + [4230] = {.lex_state = 670}, + [4231] = {.lex_state = 670}, + [4232] = {.lex_state = 670}, + [4233] = {.lex_state = 670}, + [4234] = {.lex_state = 670}, + [4235] = {.lex_state = 807}, + [4236] = {.lex_state = 670}, + [4237] = {.lex_state = 670}, + [4238] = {.lex_state = 670}, + [4239] = {.lex_state = 670}, + [4240] = {.lex_state = 769}, + [4241] = {.lex_state = 44}, + [4242] = {.lex_state = 739}, + [4243] = {.lex_state = 817}, + [4244] = {.lex_state = 737}, + [4245] = {.lex_state = 817}, + [4246] = {.lex_state = 59}, + [4247] = {.lex_state = 670}, + [4248] = {.lex_state = 670}, + [4249] = {.lex_state = 807}, + [4250] = {.lex_state = 807}, + [4251] = {.lex_state = 44}, + [4252] = {.lex_state = 670}, + [4253] = {.lex_state = 807}, + [4254] = {.lex_state = 769}, + [4255] = {.lex_state = 769}, + [4256] = {.lex_state = 769}, + [4257] = {.lex_state = 44}, + [4258] = {.lex_state = 670}, + [4259] = {.lex_state = 44}, + [4260] = {.lex_state = 808}, + [4261] = {.lex_state = 739}, + [4262] = {.lex_state = 809}, + [4263] = {.lex_state = 670}, + [4264] = {.lex_state = 44}, [4265] = {.lex_state = 44}, - [4266] = {.lex_state = 669}, - [4267] = {.lex_state = 669}, - [4268] = {.lex_state = 669}, - [4269] = {.lex_state = 669}, - [4270] = {.lex_state = 669}, - [4271] = {.lex_state = 669}, - [4272] = {.lex_state = 669}, - [4273] = {.lex_state = 669}, - [4274] = {.lex_state = 669}, - [4275] = {.lex_state = 669}, - [4276] = {.lex_state = 669}, - [4277] = {.lex_state = 669}, - [4278] = {.lex_state = 669}, - [4279] = {.lex_state = 669}, - [4280] = {.lex_state = 669}, - [4281] = {.lex_state = 768}, - [4282] = {.lex_state = 768}, - [4283] = {.lex_state = 669}, - [4284] = {.lex_state = 669}, - [4285] = {.lex_state = 669}, - [4286] = {.lex_state = 669}, - [4287] = {.lex_state = 669}, - [4288] = {.lex_state = 669}, - [4289] = {.lex_state = 669}, - [4290] = {.lex_state = 669}, - [4291] = {.lex_state = 669}, - [4292] = {.lex_state = 669}, - [4293] = {.lex_state = 669}, - [4294] = {.lex_state = 669}, - [4295] = {.lex_state = 669}, - [4296] = {.lex_state = 669}, - [4297] = {.lex_state = 669}, - [4298] = {.lex_state = 669}, - [4299] = {.lex_state = 768}, - [4300] = {.lex_state = 768}, - [4301] = {.lex_state = 44}, - [4302] = {.lex_state = 669}, - [4303] = {.lex_state = 788}, - [4304] = {.lex_state = 669}, - [4305] = {.lex_state = 669}, - [4306] = {.lex_state = 669}, - [4307] = {.lex_state = 669}, - [4308] = {.lex_state = 669}, - [4309] = {.lex_state = 669}, - [4310] = {.lex_state = 669}, - [4311] = {.lex_state = 669}, - [4312] = {.lex_state = 669}, - [4313] = {.lex_state = 44}, - [4314] = {.lex_state = 669}, - [4315] = {.lex_state = 669}, - [4316] = {.lex_state = 669}, - [4317] = {.lex_state = 669}, - [4318] = {.lex_state = 58}, - [4319] = {.lex_state = 669}, - [4320] = {.lex_state = 669}, - [4321] = {.lex_state = 669}, - [4322] = {.lex_state = 44}, - [4323] = {.lex_state = 669}, - [4324] = {.lex_state = 669}, - [4325] = {.lex_state = 669}, - [4326] = {.lex_state = 669}, - [4327] = {.lex_state = 44}, - [4328] = {.lex_state = 669}, - [4329] = {.lex_state = 669}, - [4330] = {.lex_state = 669}, - [4331] = {.lex_state = 669}, - [4332] = {.lex_state = 44}, - [4333] = {.lex_state = 806}, - [4334] = {.lex_state = 669}, - [4335] = {.lex_state = 669}, - [4336] = {.lex_state = 44}, - [4337] = {.lex_state = 788}, - [4338] = {.lex_state = 788}, - [4339] = {.lex_state = 800}, - [4340] = {.lex_state = 669}, - [4341] = {.lex_state = 669}, - [4342] = {.lex_state = 44}, - [4343] = {.lex_state = 669}, - [4344] = {.lex_state = 816}, - [4345] = {.lex_state = 669}, - [4346] = {.lex_state = 805}, - [4347] = {.lex_state = 806}, - [4348] = {.lex_state = 669}, - [4349] = {.lex_state = 669}, - [4350] = {.lex_state = 788}, - [4351] = {.lex_state = 669}, - [4352] = {.lex_state = 44}, - [4353] = {.lex_state = 804}, - [4354] = {.lex_state = 669}, - [4355] = {.lex_state = 669}, - [4356] = {.lex_state = 816}, - [4357] = {.lex_state = 816}, - [4358] = {.lex_state = 788}, - [4359] = {.lex_state = 788}, - [4360] = {.lex_state = 788}, - [4361] = {.lex_state = 806}, - [4362] = {.lex_state = 669}, - [4363] = {.lex_state = 788}, - [4364] = {.lex_state = 669}, - [4365] = {.lex_state = 669}, + [4266] = {.lex_state = 44}, + [4267] = {.lex_state = 670}, + [4268] = {.lex_state = 814}, + [4269] = {.lex_state = 670}, + [4270] = {.lex_state = 739}, + [4271] = {.lex_state = 44}, + [4272] = {.lex_state = 44}, + [4273] = {.lex_state = 670}, + [4274] = {.lex_state = 807}, + [4275] = {.lex_state = 44}, + [4276] = {.lex_state = 670}, + [4277] = {.lex_state = 739}, + [4278] = {.lex_state = 44}, + [4279] = {.lex_state = 44}, + [4280] = {.lex_state = 44}, + [4281] = {.lex_state = 44}, + [4282] = {.lex_state = 670}, + [4283] = {.lex_state = 44}, + [4284] = {.lex_state = 817}, + [4285] = {.lex_state = 769}, + [4286] = {.lex_state = 44}, + [4287] = {.lex_state = 44}, + [4288] = {.lex_state = 801}, + [4289] = {.lex_state = 44}, + [4290] = {.lex_state = 739}, + [4291] = {.lex_state = 670}, + [4292] = {.lex_state = 670}, + [4293] = {.lex_state = 776}, + [4294] = {.lex_state = 44}, + [4295] = {.lex_state = 776}, + [4296] = {.lex_state = 817}, + [4297] = {.lex_state = 807}, + [4298] = {.lex_state = 769}, + [4299] = {.lex_state = 776}, + [4300] = {.lex_state = 670}, + [4301] = {.lex_state = 807}, + [4302] = {.lex_state = 44}, + [4303] = {.lex_state = 670}, + [4304] = {.lex_state = 670}, + [4305] = {.lex_state = 670}, + [4306] = {.lex_state = 670}, + [4307] = {.lex_state = 44}, + [4308] = {.lex_state = 44}, + [4309] = {.lex_state = 44}, + [4310] = {.lex_state = 44}, + [4311] = {.lex_state = 817}, + [4312] = {.lex_state = 769}, + [4313] = {.lex_state = 59}, + [4314] = {.lex_state = 670}, + [4315] = {.lex_state = 670}, + [4316] = {.lex_state = 807}, + [4317] = {.lex_state = 807}, + [4318] = {.lex_state = 670}, + [4319] = {.lex_state = 769}, + [4320] = {.lex_state = 807}, + [4321] = {.lex_state = 807}, + [4322] = {.lex_state = 670}, + [4323] = {.lex_state = 670}, + [4324] = {.lex_state = 737}, + [4325] = {.lex_state = 670}, + [4326] = {.lex_state = 85}, + [4327] = {.lex_state = 739}, + [4328] = {.lex_state = 38}, + [4329] = {.lex_state = 670}, + [4330] = {.lex_state = 739}, + [4331] = {.lex_state = 52}, + [4332] = {.lex_state = 776}, + [4333] = {.lex_state = 737}, + [4334] = {.lex_state = 737}, + [4335] = {.lex_state = 739}, + [4336] = {.lex_state = 739}, + [4337] = {.lex_state = 708}, + [4338] = {.lex_state = 739}, + [4339] = {.lex_state = 739}, + [4340] = {.lex_state = 670}, + [4341] = {.lex_state = 60}, + [4342] = {.lex_state = 670}, + [4343] = {.lex_state = 739}, + [4344] = {.lex_state = 739}, + [4345] = {.lex_state = 60}, + [4346] = {.lex_state = 739}, + [4347] = {.lex_state = 739}, + [4348] = {.lex_state = 737}, + [4349] = {.lex_state = 708}, + [4350] = {.lex_state = 38}, + [4351] = {.lex_state = 739}, + [4352] = {.lex_state = 739}, + [4353] = {.lex_state = 739}, + [4354] = {.lex_state = 44}, + [4355] = {.lex_state = 85}, + [4356] = {.lex_state = 739}, + [4357] = {.lex_state = 708}, + [4358] = {.lex_state = 670}, + [4359] = {.lex_state = 739}, + [4360] = {.lex_state = 739}, + [4361] = {.lex_state = 769}, + [4362] = {.lex_state = 739}, + [4363] = {.lex_state = 708}, + [4364] = {.lex_state = 739}, + [4365] = {.lex_state = 44}, [4366] = {.lex_state = 44}, - [4367] = {.lex_state = 816}, - [4368] = {.lex_state = 806}, - [4369] = {.lex_state = 57}, - [4370] = {.lex_state = 804}, - [4371] = {.lex_state = 816}, - [4372] = {.lex_state = 44}, - [4373] = {.lex_state = 669}, - [4374] = {.lex_state = 669}, - [4375] = {.lex_state = 768}, - [4376] = {.lex_state = 669}, - [4377] = {.lex_state = 806}, - [4378] = {.lex_state = 38}, - [4379] = {.lex_state = 38}, - [4380] = {.lex_state = 669}, - [4381] = {.lex_state = 669}, - [4382] = {.lex_state = 669}, - [4383] = {.lex_state = 669}, - [4384] = {.lex_state = 669}, - [4385] = {.lex_state = 44}, - [4386] = {.lex_state = 44}, - [4387] = {.lex_state = 813}, - [4388] = {.lex_state = 788}, - [4389] = {.lex_state = 44}, - [4390] = {.lex_state = 669}, - [4391] = {.lex_state = 806}, - [4392] = {.lex_state = 669}, - [4393] = {.lex_state = 44}, - [4394] = {.lex_state = 669}, - [4395] = {.lex_state = 669}, - [4396] = {.lex_state = 669}, - [4397] = {.lex_state = 44}, - [4398] = {.lex_state = 669}, - [4399] = {.lex_state = 669}, - [4400] = {.lex_state = 669}, - [4401] = {.lex_state = 669}, - [4402] = {.lex_state = 669}, - [4403] = {.lex_state = 669}, - [4404] = {.lex_state = 44}, - [4405] = {.lex_state = 44}, - [4406] = {.lex_state = 669}, - [4407] = {.lex_state = 669}, - [4408] = {.lex_state = 669}, - [4409] = {.lex_state = 669}, - [4410] = {.lex_state = 669}, - [4411] = {.lex_state = 44}, - [4412] = {.lex_state = 44}, - [4413] = {.lex_state = 44}, - [4414] = {.lex_state = 44}, - [4415] = {.lex_state = 44}, - [4416] = {.lex_state = 44}, - [4417] = {.lex_state = 44}, - [4418] = {.lex_state = 44}, - [4419] = {.lex_state = 44}, - [4420] = {.lex_state = 44}, - [4421] = {.lex_state = 44}, - [4422] = {.lex_state = 44}, - [4423] = {.lex_state = 44}, - [4424] = {.lex_state = 44}, - [4425] = {.lex_state = 44}, - [4426] = {.lex_state = 44}, - [4427] = {.lex_state = 44}, - [4428] = {.lex_state = 44}, - [4429] = {.lex_state = 44}, - [4430] = {.lex_state = 44}, - [4431] = {.lex_state = 44}, - [4432] = {.lex_state = 669}, - [4433] = {.lex_state = 669}, - [4434] = {.lex_state = 44}, - [4435] = {.lex_state = 44}, - [4436] = {.lex_state = 44}, - [4437] = {.lex_state = 44}, - [4438] = {.lex_state = 44}, - [4439] = {.lex_state = 669}, - [4440] = {.lex_state = 44}, - [4441] = {.lex_state = 669}, - [4442] = {.lex_state = 669}, - [4443] = {.lex_state = 669}, - [4444] = {.lex_state = 669}, - [4445] = {.lex_state = 44}, - [4446] = {.lex_state = 44}, - [4447] = {.lex_state = 669}, - [4448] = {.lex_state = 44}, - [4449] = {.lex_state = 669}, - [4450] = {.lex_state = 669}, - [4451] = {.lex_state = 44}, - [4452] = {.lex_state = 669}, - [4453] = {.lex_state = 669}, - [4454] = {.lex_state = 788}, - [4455] = {.lex_state = 669}, - [4456] = {.lex_state = 44}, - [4457] = {.lex_state = 44}, - [4458] = {.lex_state = 44}, - [4459] = {.lex_state = 669}, - [4460] = {.lex_state = 669}, - [4461] = {.lex_state = 669}, - [4462] = {.lex_state = 669}, - [4463] = {.lex_state = 806}, - [4464] = {.lex_state = 669}, - [4465] = {.lex_state = 669}, - [4466] = {.lex_state = 669}, - [4467] = {.lex_state = 669}, - [4468] = {.lex_state = 788}, - [4469] = {.lex_state = 669}, - [4470] = {.lex_state = 669}, - [4471] = {.lex_state = 669}, - [4472] = {.lex_state = 669}, - [4473] = {.lex_state = 669}, - [4474] = {.lex_state = 44}, - [4475] = {.lex_state = 669}, - [4476] = {.lex_state = 669}, - [4477] = {.lex_state = 669}, - [4478] = {.lex_state = 806}, - [4479] = {.lex_state = 775}, - [4480] = {.lex_state = 806}, - [4481] = {.lex_state = 44}, - [4482] = {.lex_state = 738}, - [4483] = {.lex_state = 669}, - [4484] = {.lex_state = 44}, - [4485] = {.lex_state = 669}, - [4486] = {.lex_state = 775}, - [4487] = {.lex_state = 816}, - [4488] = {.lex_state = 669}, - [4489] = {.lex_state = 669}, - [4490] = {.lex_state = 816}, - [4491] = {.lex_state = 669}, - [4492] = {.lex_state = 800}, - [4493] = {.lex_state = 669}, + [4367] = {.lex_state = 739}, + [4368] = {.lex_state = 737}, + [4369] = {.lex_state = 38}, + [4370] = {.lex_state = 708}, + [4371] = {.lex_state = 739}, + [4372] = {.lex_state = 810}, + [4373] = {.lex_state = 85}, + [4374] = {.lex_state = 38}, + [4375] = {.lex_state = 739}, + [4376] = {.lex_state = 44}, + [4377] = {.lex_state = 708}, + [4378] = {.lex_state = 769}, + [4379] = {.lex_state = 739}, + [4380] = {.lex_state = 776}, + [4381] = {.lex_state = 769}, + [4382] = {.lex_state = 737}, + [4383] = {.lex_state = 739}, + [4384] = {.lex_state = 739}, + [4385] = {.lex_state = 737}, + [4386] = {.lex_state = 809}, + [4387] = {.lex_state = 60}, + [4388] = {.lex_state = 739}, + [4389] = {.lex_state = 807}, + [4390] = {.lex_state = 739}, + [4391] = {.lex_state = 737}, + [4392] = {.lex_state = 739}, + [4393] = {.lex_state = 739}, + [4394] = {.lex_state = 739}, + [4395] = {.lex_state = 739}, + [4396] = {.lex_state = 737}, + [4397] = {.lex_state = 810}, + [4398] = {.lex_state = 739}, + [4399] = {.lex_state = 739}, + [4400] = {.lex_state = 739}, + [4401] = {.lex_state = 739}, + [4402] = {.lex_state = 776}, + [4403] = {.lex_state = 670}, + [4404] = {.lex_state = 737}, + [4405] = {.lex_state = 739}, + [4406] = {.lex_state = 739}, + [4407] = {.lex_state = 739}, + [4408] = {.lex_state = 737}, + [4409] = {.lex_state = 739}, + [4410] = {.lex_state = 739}, + [4411] = {.lex_state = 739}, + [4412] = {.lex_state = 85}, + [4413] = {.lex_state = 737}, + [4414] = {.lex_state = 739}, + [4415] = {.lex_state = 737}, + [4416] = {.lex_state = 737}, + [4417] = {.lex_state = 739}, + [4418] = {.lex_state = 739}, + [4419] = {.lex_state = 670}, + [4420] = {.lex_state = 739}, + [4421] = {.lex_state = 670}, + [4422] = {.lex_state = 670}, + [4423] = {.lex_state = 739}, + [4424] = {.lex_state = 739}, + [4425] = {.lex_state = 739}, + [4426] = {.lex_state = 38}, + [4427] = {.lex_state = 739}, + [4428] = {.lex_state = 52}, + [4429] = {.lex_state = 739}, + [4430] = {.lex_state = 57}, + [4431] = {.lex_state = 739}, + [4432] = {.lex_state = 739}, + [4433] = {.lex_state = 670}, + [4434] = {.lex_state = 739}, + [4435] = {.lex_state = 60}, + [4436] = {.lex_state = 739}, + [4437] = {.lex_state = 52}, + [4438] = {.lex_state = 52}, + [4439] = {.lex_state = 60}, + [4440] = {.lex_state = 265}, + [4441] = {.lex_state = 739}, + [4442] = {.lex_state = 85}, + [4443] = {.lex_state = 739}, + [4444] = {.lex_state = 60}, + [4445] = {.lex_state = 62}, + [4446] = {.lex_state = 739}, + [4447] = {.lex_state = 52}, + [4448] = {.lex_state = 739}, + [4449] = {.lex_state = 60}, + [4450] = {.lex_state = 739}, + [4451] = {.lex_state = 739}, + [4452] = {.lex_state = 739}, + [4453] = {.lex_state = 739}, + [4454] = {.lex_state = 739}, + [4455] = {.lex_state = 737}, + [4456] = {.lex_state = 739}, + [4457] = {.lex_state = 739}, + [4458] = {.lex_state = 52}, + [4459] = {.lex_state = 739}, + [4460] = {.lex_state = 739}, + [4461] = {.lex_state = 739}, + [4462] = {.lex_state = 52}, + [4463] = {.lex_state = 739}, + [4464] = {.lex_state = 670}, + [4465] = {.lex_state = 739}, + [4466] = {.lex_state = 739}, + [4467] = {.lex_state = 739}, + [4468] = {.lex_state = 739}, + [4469] = {.lex_state = 739}, + [4470] = {.lex_state = 44}, + [4471] = {.lex_state = 44}, + [4472] = {.lex_state = 739}, + [4473] = {.lex_state = 739}, + [4474] = {.lex_state = 739}, + [4475] = {.lex_state = 60}, + [4476] = {.lex_state = 739}, + [4477] = {.lex_state = 739}, + [4478] = {.lex_state = 739}, + [4479] = {.lex_state = 776}, + [4480] = {.lex_state = 739}, + [4481] = {.lex_state = 808}, + [4482] = {.lex_state = 739}, + [4483] = {.lex_state = 670}, + [4484] = {.lex_state = 60}, + [4485] = {.lex_state = 68}, + [4486] = {.lex_state = 44}, + [4487] = {.lex_state = 739}, + [4488] = {.lex_state = 739}, + [4489] = {.lex_state = 670}, + [4490] = {.lex_state = 739}, + [4491] = {.lex_state = 739}, + [4492] = {.lex_state = 739}, + [4493] = {.lex_state = 44}, [4494] = {.lex_state = 44}, - [4495] = {.lex_state = 44}, - [4496] = {.lex_state = 44}, - [4497] = {.lex_state = 816}, - [4498] = {.lex_state = 806}, - [4499] = {.lex_state = 44}, - [4500] = {.lex_state = 816}, - [4501] = {.lex_state = 669}, - [4502] = {.lex_state = 806}, - [4503] = {.lex_state = 806}, - [4504] = {.lex_state = 669}, - [4505] = {.lex_state = 44}, - [4506] = {.lex_state = 44}, - [4507] = {.lex_state = 738}, - [4508] = {.lex_state = 806}, - [4509] = {.lex_state = 806}, - [4510] = {.lex_state = 44}, - [4511] = {.lex_state = 768}, - [4512] = {.lex_state = 44}, - [4513] = {.lex_state = 669}, - [4514] = {.lex_state = 44}, - [4515] = {.lex_state = 44}, - [4516] = {.lex_state = 59}, - [4517] = {.lex_state = 813}, - [4518] = {.lex_state = 44}, - [4519] = {.lex_state = 806}, - [4520] = {.lex_state = 44}, - [4521] = {.lex_state = 669}, - [4522] = {.lex_state = 669}, - [4523] = {.lex_state = 806}, - [4524] = {.lex_state = 44}, - [4525] = {.lex_state = 669}, - [4526] = {.lex_state = 44}, - [4527] = {.lex_state = 669}, - [4528] = {.lex_state = 775}, - [4529] = {.lex_state = 44}, - [4530] = {.lex_state = 44}, - [4531] = {.lex_state = 768}, - [4532] = {.lex_state = 59}, - [4533] = {.lex_state = 44}, - [4534] = {.lex_state = 669}, - [4535] = {.lex_state = 669}, - [4536] = {.lex_state = 768}, - [4537] = {.lex_state = 808}, - [4538] = {.lex_state = 44}, - [4539] = {.lex_state = 806}, - [4540] = {.lex_state = 669}, - [4541] = {.lex_state = 738}, - [4542] = {.lex_state = 738}, - [4543] = {.lex_state = 669}, - [4544] = {.lex_state = 44}, - [4545] = {.lex_state = 44}, - [4546] = {.lex_state = 669}, - [4547] = {.lex_state = 768}, - [4548] = {.lex_state = 669}, - [4549] = {.lex_state = 669}, - [4550] = {.lex_state = 669}, - [4551] = {.lex_state = 738}, - [4552] = {.lex_state = 806}, - [4553] = {.lex_state = 669}, - [4554] = {.lex_state = 768}, - [4555] = {.lex_state = 736}, - [4556] = {.lex_state = 768}, - [4557] = {.lex_state = 669}, - [4558] = {.lex_state = 768}, - [4559] = {.lex_state = 44}, - [4560] = {.lex_state = 44}, - [4561] = {.lex_state = 736}, - [4562] = {.lex_state = 806}, - [4563] = {.lex_state = 768}, - [4564] = {.lex_state = 44}, - [4565] = {.lex_state = 775}, - [4566] = {.lex_state = 807}, - [4567] = {.lex_state = 816}, - [4568] = {.lex_state = 738}, - [4569] = {.lex_state = 738}, - [4570] = {.lex_state = 738}, - [4571] = {.lex_state = 738}, - [4572] = {.lex_state = 806}, - [4573] = {.lex_state = 707}, - [4574] = {.lex_state = 736}, - [4575] = {.lex_state = 738}, - [4576] = {.lex_state = 738}, - [4577] = {.lex_state = 738}, - [4578] = {.lex_state = 738}, - [4579] = {.lex_state = 738}, - [4580] = {.lex_state = 738}, - [4581] = {.lex_state = 738}, - [4582] = {.lex_state = 738}, - [4583] = {.lex_state = 707}, - [4584] = {.lex_state = 669}, - [4585] = {.lex_state = 51}, - [4586] = {.lex_state = 707}, + [4495] = {.lex_state = 739}, + [4496] = {.lex_state = 739}, + [4497] = {.lex_state = 739}, + [4498] = {.lex_state = 739}, + [4499] = {.lex_state = 739}, + [4500] = {.lex_state = 739}, + [4501] = {.lex_state = 739}, + [4502] = {.lex_state = 739}, + [4503] = {.lex_state = 63}, + [4504] = {.lex_state = 739}, + [4505] = {.lex_state = 739}, + [4506] = {.lex_state = 739}, + [4507] = {.lex_state = 739}, + [4508] = {.lex_state = 739}, + [4509] = {.lex_state = 739}, + [4510] = {.lex_state = 739}, + [4511] = {.lex_state = 739}, + [4512] = {.lex_state = 739}, + [4513] = {.lex_state = 739}, + [4514] = {.lex_state = 739}, + [4515] = {.lex_state = 739}, + [4516] = {.lex_state = 739}, + [4517] = {.lex_state = 739}, + [4518] = {.lex_state = 739}, + [4519] = {.lex_state = 739}, + [4520] = {.lex_state = 739}, + [4521] = {.lex_state = 739}, + [4522] = {.lex_state = 739}, + [4523] = {.lex_state = 63}, + [4524] = {.lex_state = 739}, + [4525] = {.lex_state = 739}, + [4526] = {.lex_state = 739}, + [4527] = {.lex_state = 739}, + [4528] = {.lex_state = 739}, + [4529] = {.lex_state = 739}, + [4530] = {.lex_state = 739}, + [4531] = {.lex_state = 739}, + [4532] = {.lex_state = 739}, + [4533] = {.lex_state = 739}, + [4534] = {.lex_state = 739}, + [4535] = {.lex_state = 739}, + [4536] = {.lex_state = 739}, + [4537] = {.lex_state = 739}, + [4538] = {.lex_state = 739}, + [4539] = {.lex_state = 739}, + [4540] = {.lex_state = 739}, + [4541] = {.lex_state = 739}, + [4542] = {.lex_state = 670}, + [4543] = {.lex_state = 670}, + [4544] = {.lex_state = 739}, + [4545] = {.lex_state = 739}, + [4546] = {.lex_state = 739}, + [4547] = {.lex_state = 739}, + [4548] = {.lex_state = 739}, + [4549] = {.lex_state = 739}, + [4550] = {.lex_state = 739}, + [4551] = {.lex_state = 670}, + [4552] = {.lex_state = 670}, + [4553] = {.lex_state = 670}, + [4554] = {.lex_state = 769}, + [4555] = {.lex_state = 739}, + [4556] = {.lex_state = 810}, + [4557] = {.lex_state = 670}, + [4558] = {.lex_state = 810}, + [4559] = {.lex_state = 811}, + [4560] = {.lex_state = 811}, + [4561] = {.lex_state = 811}, + [4562] = {.lex_state = 811}, + [4563] = {.lex_state = 670}, + [4564] = {.lex_state = 739}, + [4565] = {.lex_state = 739}, + [4566] = {.lex_state = 670}, + [4567] = {.lex_state = 670}, + [4568] = {.lex_state = 739}, + [4569] = {.lex_state = 739}, + [4570] = {.lex_state = 268}, + [4571] = {.lex_state = 44}, + [4572] = {.lex_state = 44}, + [4573] = {.lex_state = 737}, + [4574] = {.lex_state = 269}, + [4575] = {.lex_state = 670}, + [4576] = {.lex_state = 268}, + [4577] = {.lex_state = 739}, + [4578] = {.lex_state = 739}, + [4579] = {.lex_state = 739}, + [4580] = {.lex_state = 670}, + [4581] = {.lex_state = 44}, + [4582] = {.lex_state = 44}, + [4583] = {.lex_state = 670}, + [4584] = {.lex_state = 60}, + [4585] = {.lex_state = 52}, + [4586] = {.lex_state = 670}, [4587] = {.lex_state = 44}, - [4588] = {.lex_state = 44}, - [4589] = {.lex_state = 738}, - [4590] = {.lex_state = 738}, - [4591] = {.lex_state = 738}, - [4592] = {.lex_state = 738}, - [4593] = {.lex_state = 738}, - [4594] = {.lex_state = 669}, - [4595] = {.lex_state = 738}, - [4596] = {.lex_state = 738}, - [4597] = {.lex_state = 738}, - [4598] = {.lex_state = 44}, - [4599] = {.lex_state = 738}, - [4600] = {.lex_state = 736}, - [4601] = {.lex_state = 775}, - [4602] = {.lex_state = 738}, - [4603] = {.lex_state = 738}, - [4604] = {.lex_state = 738}, - [4605] = {.lex_state = 84}, - [4606] = {.lex_state = 736}, - [4607] = {.lex_state = 84}, - [4608] = {.lex_state = 84}, - [4609] = {.lex_state = 736}, - [4610] = {.lex_state = 775}, - [4611] = {.lex_state = 736}, - [4612] = {.lex_state = 669}, - [4613] = {.lex_state = 738}, - [4614] = {.lex_state = 738}, - [4615] = {.lex_state = 738}, - [4616] = {.lex_state = 738}, - [4617] = {.lex_state = 738}, - [4618] = {.lex_state = 738}, - [4619] = {.lex_state = 738}, - [4620] = {.lex_state = 738}, - [4621] = {.lex_state = 738}, - [4622] = {.lex_state = 738}, - [4623] = {.lex_state = 808}, - [4624] = {.lex_state = 738}, - [4625] = {.lex_state = 738}, - [4626] = {.lex_state = 738}, - [4627] = {.lex_state = 807}, - [4628] = {.lex_state = 809}, - [4629] = {.lex_state = 738}, - [4630] = {.lex_state = 736}, - [4631] = {.lex_state = 669}, - [4632] = {.lex_state = 669}, - [4633] = {.lex_state = 44}, - [4634] = {.lex_state = 84}, - [4635] = {.lex_state = 738}, - [4636] = {.lex_state = 809}, + [4588] = {.lex_state = 670}, + [4589] = {.lex_state = 44}, + [4590] = {.lex_state = 44}, + [4591] = {.lex_state = 670}, + [4592] = {.lex_state = 272}, + [4593] = {.lex_state = 670}, + [4594] = {.lex_state = 739}, + [4595] = {.lex_state = 739}, + [4596] = {.lex_state = 739}, + [4597] = {.lex_state = 670}, + [4598] = {.lex_state = 670}, + [4599] = {.lex_state = 670}, + [4600] = {.lex_state = 269}, + [4601] = {.lex_state = 670}, + [4602] = {.lex_state = 52}, + [4603] = {.lex_state = 670}, + [4604] = {.lex_state = 670}, + [4605] = {.lex_state = 670}, + [4606] = {.lex_state = 670}, + [4607] = {.lex_state = 265}, + [4608] = {.lex_state = 778}, + [4609] = {.lex_state = 778}, + [4610] = {.lex_state = 778}, + [4611] = {.lex_state = 778}, + [4612] = {.lex_state = 778}, + [4613] = {.lex_state = 778}, + [4614] = {.lex_state = 778}, + [4615] = {.lex_state = 778}, + [4616] = {.lex_state = 778}, + [4617] = {.lex_state = 778}, + [4618] = {.lex_state = 778}, + [4619] = {.lex_state = 778}, + [4620] = {.lex_state = 778}, + [4621] = {.lex_state = 670}, + [4622] = {.lex_state = 670}, + [4623] = {.lex_state = 739}, + [4624] = {.lex_state = 811}, + [4625] = {.lex_state = 670}, + [4626] = {.lex_state = 670}, + [4627] = {.lex_state = 670}, + [4628] = {.lex_state = 773}, + [4629] = {.lex_state = 44}, + [4630] = {.lex_state = 44}, + [4631] = {.lex_state = 778}, + [4632] = {.lex_state = 44}, + [4633] = {.lex_state = 739}, + [4634] = {.lex_state = 44}, + [4635] = {.lex_state = 737}, + [4636] = {.lex_state = 44}, [4637] = {.lex_state = 44}, - [4638] = {.lex_state = 738}, - [4639] = {.lex_state = 738}, - [4640] = {.lex_state = 738}, - [4641] = {.lex_state = 738}, - [4642] = {.lex_state = 738}, - [4643] = {.lex_state = 736}, - [4644] = {.lex_state = 738}, - [4645] = {.lex_state = 736}, - [4646] = {.lex_state = 60}, - [4647] = {.lex_state = 738}, - [4648] = {.lex_state = 738}, - [4649] = {.lex_state = 60}, - [4650] = {.lex_state = 738}, - [4651] = {.lex_state = 38}, - [4652] = {.lex_state = 60}, - [4653] = {.lex_state = 60}, - [4654] = {.lex_state = 738}, - [4655] = {.lex_state = 736}, - [4656] = {.lex_state = 738}, - [4657] = {.lex_state = 736}, - [4658] = {.lex_state = 738}, - [4659] = {.lex_state = 768}, - [4660] = {.lex_state = 264}, - [4661] = {.lex_state = 669}, - [4662] = {.lex_state = 738}, - [4663] = {.lex_state = 738}, - [4664] = {.lex_state = 669}, - [4665] = {.lex_state = 736}, - [4666] = {.lex_state = 38}, - [4667] = {.lex_state = 669}, - [4668] = {.lex_state = 51}, - [4669] = {.lex_state = 736}, - [4670] = {.lex_state = 62}, - [4671] = {.lex_state = 84}, - [4672] = {.lex_state = 60}, - [4673] = {.lex_state = 738}, - [4674] = {.lex_state = 738}, - [4675] = {.lex_state = 738}, - [4676] = {.lex_state = 38}, - [4677] = {.lex_state = 38}, - [4678] = {.lex_state = 775}, - [4679] = {.lex_state = 738}, - [4680] = {.lex_state = 738}, - [4681] = {.lex_state = 738}, - [4682] = {.lex_state = 669}, - [4683] = {.lex_state = 738}, - [4684] = {.lex_state = 738}, - [4685] = {.lex_state = 38}, - [4686] = {.lex_state = 738}, - [4687] = {.lex_state = 738}, - [4688] = {.lex_state = 738}, - [4689] = {.lex_state = 738}, - [4690] = {.lex_state = 738}, - [4691] = {.lex_state = 738}, - [4692] = {.lex_state = 738}, - [4693] = {.lex_state = 738}, - [4694] = {.lex_state = 738}, - [4695] = {.lex_state = 60}, - [4696] = {.lex_state = 60}, - [4697] = {.lex_state = 738}, - [4698] = {.lex_state = 738}, - [4699] = {.lex_state = 707}, - [4700] = {.lex_state = 60}, - [4701] = {.lex_state = 51}, - [4702] = {.lex_state = 44}, - [4703] = {.lex_state = 738}, - [4704] = {.lex_state = 738}, - [4705] = {.lex_state = 51}, - [4706] = {.lex_state = 738}, - [4707] = {.lex_state = 707}, - [4708] = {.lex_state = 669}, - [4709] = {.lex_state = 738}, - [4710] = {.lex_state = 738}, - [4711] = {.lex_state = 60}, - [4712] = {.lex_state = 669}, - [4713] = {.lex_state = 738}, - [4714] = {.lex_state = 51}, - [4715] = {.lex_state = 51}, - [4716] = {.lex_state = 768}, - [4717] = {.lex_state = 738}, - [4718] = {.lex_state = 738}, - [4719] = {.lex_state = 738}, - [4720] = {.lex_state = 738}, - [4721] = {.lex_state = 707}, - [4722] = {.lex_state = 775}, - [4723] = {.lex_state = 768}, - [4724] = {.lex_state = 51}, - [4725] = {.lex_state = 738}, - [4726] = {.lex_state = 738}, - [4727] = {.lex_state = 738}, - [4728] = {.lex_state = 57}, - [4729] = {.lex_state = 736}, - [4730] = {.lex_state = 738}, - [4731] = {.lex_state = 738}, - [4732] = {.lex_state = 738}, - [4733] = {.lex_state = 738}, - [4734] = {.lex_state = 738}, - [4735] = {.lex_state = 736}, - [4736] = {.lex_state = 669}, - [4737] = {.lex_state = 44}, - [4738] = {.lex_state = 44}, - [4739] = {.lex_state = 60}, - [4740] = {.lex_state = 669}, - [4741] = {.lex_state = 51}, - [4742] = {.lex_state = 44}, - [4743] = {.lex_state = 44}, - [4744] = {.lex_state = 67}, - [4745] = {.lex_state = 44}, - [4746] = {.lex_state = 44}, - [4747] = {.lex_state = 44}, - [4748] = {.lex_state = 44}, - [4749] = {.lex_state = 738}, - [4750] = {.lex_state = 738}, - [4751] = {.lex_state = 44}, - [4752] = {.lex_state = 738}, - [4753] = {.lex_state = 738}, - [4754] = {.lex_state = 738}, - [4755] = {.lex_state = 738}, - [4756] = {.lex_state = 738}, - [4757] = {.lex_state = 267}, + [4638] = {.lex_state = 44}, + [4639] = {.lex_state = 44}, + [4640] = {.lex_state = 44}, + [4641] = {.lex_state = 44}, + [4642] = {.lex_state = 44}, + [4643] = {.lex_state = 44}, + [4644] = {.lex_state = 44}, + [4645] = {.lex_state = 44}, + [4646] = {.lex_state = 44}, + [4647] = {.lex_state = 44}, + [4648] = {.lex_state = 44}, + [4649] = {.lex_state = 670}, + [4650] = {.lex_state = 670}, + [4651] = {.lex_state = 44}, + [4652] = {.lex_state = 773}, + [4653] = {.lex_state = 44}, + [4654] = {.lex_state = 44}, + [4655] = {.lex_state = 44}, + [4656] = {.lex_state = 44}, + [4657] = {.lex_state = 44}, + [4658] = {.lex_state = 44}, + [4659] = {.lex_state = 44}, + [4660] = {.lex_state = 44}, + [4661] = {.lex_state = 44}, + [4662] = {.lex_state = 44}, + [4663] = {.lex_state = 44}, + [4664] = {.lex_state = 44}, + [4665] = {.lex_state = 44}, + [4666] = {.lex_state = 44}, + [4667] = {.lex_state = 44}, + [4668] = {.lex_state = 44}, + [4669] = {.lex_state = 44}, + [4670] = {.lex_state = 44}, + [4671] = {.lex_state = 44}, + [4672] = {.lex_state = 44}, + [4673] = {.lex_state = 44}, + [4674] = {.lex_state = 44}, + [4675] = {.lex_state = 44}, + [4676] = {.lex_state = 44}, + [4677] = {.lex_state = 44}, + [4678] = {.lex_state = 44}, + [4679] = {.lex_state = 44}, + [4680] = {.lex_state = 44}, + [4681] = {.lex_state = 44}, + [4682] = {.lex_state = 44}, + [4683] = {.lex_state = 44}, + [4684] = {.lex_state = 44}, + [4685] = {.lex_state = 44}, + [4686] = {.lex_state = 44}, + [4687] = {.lex_state = 44}, + [4688] = {.lex_state = 44}, + [4689] = {.lex_state = 44}, + [4690] = {.lex_state = 737}, + [4691] = {.lex_state = 44}, + [4692] = {.lex_state = 44}, + [4693] = {.lex_state = 670}, + [4694] = {.lex_state = 670}, + [4695] = {.lex_state = 739}, + [4696] = {.lex_state = 737}, + [4697] = {.lex_state = 737}, + [4698] = {.lex_state = 737}, + [4699] = {.lex_state = 737}, + [4700] = {.lex_state = 737}, + [4701] = {.lex_state = 737}, + [4702] = {.lex_state = 737}, + [4703] = {.lex_state = 737}, + [4704] = {.lex_state = 737}, + [4705] = {.lex_state = 737}, + [4706] = {.lex_state = 737}, + [4707] = {.lex_state = 737}, + [4708] = {.lex_state = 266}, + [4709] = {.lex_state = 739}, + [4710] = {.lex_state = 778}, + [4711] = {.lex_state = 3725}, + [4712] = {.lex_state = 670}, + [4713] = {.lex_state = 670}, + [4714] = {.lex_state = 769}, + [4715] = {.lex_state = 670}, + [4716] = {.lex_state = 811}, + [4717] = {.lex_state = 670}, + [4718] = {.lex_state = 811}, + [4719] = {.lex_state = 670}, + [4720] = {.lex_state = 670}, + [4721] = {.lex_state = 279}, + [4722] = {.lex_state = 265}, + [4723] = {.lex_state = 265}, + [4724] = {.lex_state = 265}, + [4725] = {.lex_state = 265}, + [4726] = {.lex_state = 44}, + [4727] = {.lex_state = 811}, + [4728] = {.lex_state = 44}, + [4729] = {.lex_state = 811}, + [4730] = {.lex_state = 670}, + [4731] = {.lex_state = 811}, + [4732] = {.lex_state = 670}, + [4733] = {.lex_state = 670}, + [4734] = {.lex_state = 670}, + [4735] = {.lex_state = 670}, + [4736] = {.lex_state = 778}, + [4737] = {.lex_state = 283}, + [4738] = {.lex_state = 273}, + [4739] = {.lex_state = 670}, + [4740] = {.lex_state = 670}, + [4741] = {.lex_state = 44, .external_lex_state = 2}, + [4742] = {.lex_state = 670}, + [4743] = {.lex_state = 670}, + [4744] = {.lex_state = 778}, + [4745] = {.lex_state = 670}, + [4746] = {.lex_state = 670}, + [4747] = {.lex_state = 769}, + [4748] = {.lex_state = 670}, + [4749] = {.lex_state = 268}, + [4750] = {.lex_state = 769}, + [4751] = {.lex_state = 769}, + [4752] = {.lex_state = 44}, + [4753] = {.lex_state = 44}, + [4754] = {.lex_state = 670}, + [4755] = {.lex_state = 670}, + [4756] = {.lex_state = 670}, + [4757] = {.lex_state = 670}, [4758] = {.lex_state = 44}, - [4759] = {.lex_state = 669}, - [4760] = {.lex_state = 738}, - [4761] = {.lex_state = 669}, - [4762] = {.lex_state = 738}, - [4763] = {.lex_state = 265}, - [4764] = {.lex_state = 669}, - [4765] = {.lex_state = 669}, - [4766] = {.lex_state = 669}, - [4767] = {.lex_state = 738}, - [4768] = {.lex_state = 738}, - [4769] = {.lex_state = 264}, - [4770] = {.lex_state = 777}, - [4771] = {.lex_state = 777}, - [4772] = {.lex_state = 777}, - [4773] = {.lex_state = 777}, - [4774] = {.lex_state = 777}, - [4775] = {.lex_state = 777}, - [4776] = {.lex_state = 777}, - [4777] = {.lex_state = 777}, - [4778] = {.lex_state = 777}, - [4779] = {.lex_state = 777}, - [4780] = {.lex_state = 777}, - [4781] = {.lex_state = 777}, - [4782] = {.lex_state = 777}, - [4783] = {.lex_state = 777}, - [4784] = {.lex_state = 777}, - [4785] = {.lex_state = 777}, - [4786] = {.lex_state = 777}, - [4787] = {.lex_state = 777}, - [4788] = {.lex_state = 777}, - [4789] = {.lex_state = 777}, - [4790] = {.lex_state = 777}, - [4791] = {.lex_state = 777}, - [4792] = {.lex_state = 44}, - [4793] = {.lex_state = 44}, - [4794] = {.lex_state = 44}, - [4795] = {.lex_state = 669}, - [4796] = {.lex_state = 44}, - [4797] = {.lex_state = 669}, - [4798] = {.lex_state = 809}, - [4799] = {.lex_state = 738}, - [4800] = {.lex_state = 738}, - [4801] = {.lex_state = 44}, + [4759] = {.lex_state = 44}, + [4760] = {.lex_state = 670}, + [4761] = {.lex_state = 670}, + [4762] = {.lex_state = 44}, + [4763] = {.lex_state = 44}, + [4764] = {.lex_state = 670}, + [4765] = {.lex_state = 670}, + [4766] = {.lex_state = 670}, + [4767] = {.lex_state = 778}, + [4768] = {.lex_state = 778}, + [4769] = {.lex_state = 670}, + [4770] = {.lex_state = 670}, + [4771] = {.lex_state = 44}, + [4772] = {.lex_state = 44}, + [4773] = {.lex_state = 44}, + [4774] = {.lex_state = 670}, + [4775] = {.lex_state = 44}, + [4776] = {.lex_state = 778}, + [4777] = {.lex_state = 44}, + [4778] = {.lex_state = 268}, + [4779] = {.lex_state = 670}, + [4780] = {.lex_state = 3725}, + [4781] = {.lex_state = 670}, + [4782] = {.lex_state = 267}, + [4783] = {.lex_state = 670}, + [4784] = {.lex_state = 670}, + [4785] = {.lex_state = 3725}, + [4786] = {.lex_state = 670}, + [4787] = {.lex_state = 73}, + [4788] = {.lex_state = 670}, + [4789] = {.lex_state = 670}, + [4790] = {.lex_state = 670}, + [4791] = {.lex_state = 670}, + [4792] = {.lex_state = 670}, + [4793] = {.lex_state = 670}, + [4794] = {.lex_state = 670}, + [4795] = {.lex_state = 778}, + [4796] = {.lex_state = 670}, + [4797] = {.lex_state = 670}, + [4798] = {.lex_state = 670}, + [4799] = {.lex_state = 3725}, + [4800] = {.lex_state = 670}, + [4801] = {.lex_state = 670}, [4802] = {.lex_state = 44}, [4803] = {.lex_state = 44}, - [4804] = {.lex_state = 738}, - [4805] = {.lex_state = 44}, - [4806] = {.lex_state = 44}, - [4807] = {.lex_state = 809}, - [4808] = {.lex_state = 44}, - [4809] = {.lex_state = 44}, + [4804] = {.lex_state = 44}, + [4805] = {.lex_state = 670}, + [4806] = {.lex_state = 778}, + [4807] = {.lex_state = 670}, + [4808] = {.lex_state = 274}, + [4809] = {.lex_state = 778}, [4810] = {.lex_state = 44}, - [4811] = {.lex_state = 810}, - [4812] = {.lex_state = 669}, - [4813] = {.lex_state = 810}, - [4814] = {.lex_state = 44}, - [4815] = {.lex_state = 44}, - [4816] = {.lex_state = 810}, + [4811] = {.lex_state = 44}, + [4812] = {.lex_state = 44}, + [4813] = {.lex_state = 44}, + [4814] = {.lex_state = 670}, + [4815] = {.lex_state = 670}, + [4816] = {.lex_state = 670}, [4817] = {.lex_state = 44}, - [4818] = {.lex_state = 810}, + [4818] = {.lex_state = 44}, [4819] = {.lex_state = 44}, - [4820] = {.lex_state = 44}, - [4821] = {.lex_state = 738}, - [4822] = {.lex_state = 268}, - [4823] = {.lex_state = 44}, - [4824] = {.lex_state = 669}, - [4825] = {.lex_state = 51}, + [4820] = {.lex_state = 274}, + [4821] = {.lex_state = 44}, + [4822] = {.lex_state = 44}, + [4823] = {.lex_state = 737}, + [4824] = {.lex_state = 44}, + [4825] = {.lex_state = 44}, [4826] = {.lex_state = 44}, [4827] = {.lex_state = 44}, [4828] = {.lex_state = 44}, - [4829] = {.lex_state = 44}, - [4830] = {.lex_state = 738}, - [4831] = {.lex_state = 738}, - [4832] = {.lex_state = 669}, - [4833] = {.lex_state = 44}, - [4834] = {.lex_state = 44}, - [4835] = {.lex_state = 44}, - [4836] = {.lex_state = 669}, - [4837] = {.lex_state = 44}, - [4838] = {.lex_state = 44}, - [4839] = {.lex_state = 44}, - [4840] = {.lex_state = 44}, - [4841] = {.lex_state = 44}, - [4842] = {.lex_state = 44}, - [4843] = {.lex_state = 669}, - [4844] = {.lex_state = 669}, - [4845] = {.lex_state = 44}, - [4846] = {.lex_state = 44}, - [4847] = {.lex_state = 44}, - [4848] = {.lex_state = 738}, - [4849] = {.lex_state = 44}, - [4850] = {.lex_state = 738}, - [4851] = {.lex_state = 738}, - [4852] = {.lex_state = 736}, + [4829] = {.lex_state = 737}, + [4830] = {.lex_state = 737}, + [4831] = {.lex_state = 737}, + [4832] = {.lex_state = 670}, + [4833] = {.lex_state = 670}, + [4834] = {.lex_state = 737}, + [4835] = {.lex_state = 737}, + [4836] = {.lex_state = 737}, + [4837] = {.lex_state = 737}, + [4838] = {.lex_state = 670}, + [4839] = {.lex_state = 670}, + [4840] = {.lex_state = 737}, + [4841] = {.lex_state = 737}, + [4842] = {.lex_state = 737}, + [4843] = {.lex_state = 670}, + [4844] = {.lex_state = 275}, + [4845] = {.lex_state = 670}, + [4846] = {.lex_state = 778}, + [4847] = {.lex_state = 737}, + [4848] = {.lex_state = 71}, + [4849] = {.lex_state = 778}, + [4850] = {.lex_state = 670}, + [4851] = {.lex_state = 44, .external_lex_state = 2}, + [4852] = {.lex_state = 44}, [4853] = {.lex_state = 44}, - [4854] = {.lex_state = 268}, - [4855] = {.lex_state = 44}, - [4856] = {.lex_state = 738}, - [4857] = {.lex_state = 738}, - [4858] = {.lex_state = 738}, + [4854] = {.lex_state = 670}, + [4855] = {.lex_state = 670}, + [4856] = {.lex_state = 670}, + [4857] = {.lex_state = 297}, + [4858] = {.lex_state = 670}, [4859] = {.lex_state = 44}, - [4860] = {.lex_state = 738}, - [4861] = {.lex_state = 738}, - [4862] = {.lex_state = 738}, - [4863] = {.lex_state = 738}, - [4864] = {.lex_state = 738}, - [4865] = {.lex_state = 44}, - [4866] = {.lex_state = 669}, - [4867] = {.lex_state = 738}, - [4868] = {.lex_state = 44}, - [4869] = {.lex_state = 738}, - [4870] = {.lex_state = 63}, - [4871] = {.lex_state = 777}, - [4872] = {.lex_state = 44}, - [4873] = {.lex_state = 738}, - [4874] = {.lex_state = 738}, - [4875] = {.lex_state = 271}, - [4876] = {.lex_state = 738}, - [4877] = {.lex_state = 44}, - [4878] = {.lex_state = 669}, - [4879] = {.lex_state = 738}, - [4880] = {.lex_state = 738}, - [4881] = {.lex_state = 738}, - [4882] = {.lex_state = 738}, - [4883] = {.lex_state = 738}, - [4884] = {.lex_state = 738}, - [4885] = {.lex_state = 738}, - [4886] = {.lex_state = 738}, + [4860] = {.lex_state = 44}, + [4861] = {.lex_state = 670}, + [4862] = {.lex_state = 670}, + [4863] = {.lex_state = 273}, + [4864] = {.lex_state = 670}, + [4865] = {.lex_state = 268}, + [4866] = {.lex_state = 268}, + [4867] = {.lex_state = 268}, + [4868] = {.lex_state = 276}, + [4869] = {.lex_state = 670}, + [4870] = {.lex_state = 3725}, + [4871] = {.lex_state = 270}, + [4872] = {.lex_state = 44, .external_lex_state = 2}, + [4873] = {.lex_state = 670}, + [4874] = {.lex_state = 670}, + [4875] = {.lex_state = 303}, + [4876] = {.lex_state = 670}, + [4877] = {.lex_state = 737}, + [4878] = {.lex_state = 44}, + [4879] = {.lex_state = 670}, + [4880] = {.lex_state = 670}, + [4881] = {.lex_state = 270}, + [4882] = {.lex_state = 44}, + [4883] = {.lex_state = 44}, + [4884] = {.lex_state = 44}, + [4885] = {.lex_state = 670}, + [4886] = {.lex_state = 670}, [4887] = {.lex_state = 44}, - [4888] = {.lex_state = 44}, - [4889] = {.lex_state = 738}, - [4890] = {.lex_state = 738}, - [4891] = {.lex_state = 738}, - [4892] = {.lex_state = 738}, - [4893] = {.lex_state = 738}, - [4894] = {.lex_state = 669}, - [4895] = {.lex_state = 738}, - [4896] = {.lex_state = 738}, - [4897] = {.lex_state = 738}, - [4898] = {.lex_state = 63}, - [4899] = {.lex_state = 738}, - [4900] = {.lex_state = 738}, - [4901] = {.lex_state = 738}, - [4902] = {.lex_state = 738}, - [4903] = {.lex_state = 738}, - [4904] = {.lex_state = 738}, - [4905] = {.lex_state = 738}, - [4906] = {.lex_state = 738}, - [4907] = {.lex_state = 738}, - [4908] = {.lex_state = 738}, - [4909] = {.lex_state = 669}, - [4910] = {.lex_state = 669}, - [4911] = {.lex_state = 738}, - [4912] = {.lex_state = 738}, - [4913] = {.lex_state = 772}, - [4914] = {.lex_state = 738}, - [4915] = {.lex_state = 738}, - [4916] = {.lex_state = 738}, - [4917] = {.lex_state = 738}, - [4918] = {.lex_state = 738}, - [4919] = {.lex_state = 738}, - [4920] = {.lex_state = 738}, - [4921] = {.lex_state = 738}, - [4922] = {.lex_state = 669}, - [4923] = {.lex_state = 669}, - [4924] = {.lex_state = 772}, - [4925] = {.lex_state = 738}, - [4926] = {.lex_state = 738}, - [4927] = {.lex_state = 738}, - [4928] = {.lex_state = 44}, - [4929] = {.lex_state = 669}, - [4930] = {.lex_state = 738}, - [4931] = {.lex_state = 738}, - [4932] = {.lex_state = 669}, - [4933] = {.lex_state = 810}, - [4934] = {.lex_state = 267}, - [4935] = {.lex_state = 736}, - [4936] = {.lex_state = 736}, - [4937] = {.lex_state = 669}, - [4938] = {.lex_state = 768}, - [4939] = {.lex_state = 738}, - [4940] = {.lex_state = 669}, - [4941] = {.lex_state = 669}, - [4942] = {.lex_state = 669}, - [4943] = {.lex_state = 738}, - [4944] = {.lex_state = 44}, - [4945] = {.lex_state = 669}, - [4946] = {.lex_state = 669}, - [4947] = {.lex_state = 44}, - [4948] = {.lex_state = 44}, - [4949] = {.lex_state = 738}, - [4950] = {.lex_state = 44}, - [4951] = {.lex_state = 736}, - [4952] = {.lex_state = 736}, - [4953] = {.lex_state = 736}, - [4954] = {.lex_state = 736}, - [4955] = {.lex_state = 736}, - [4956] = {.lex_state = 736}, - [4957] = {.lex_state = 736}, - [4958] = {.lex_state = 736}, - [4959] = {.lex_state = 736}, - [4960] = {.lex_state = 736}, - [4961] = {.lex_state = 736}, - [4962] = {.lex_state = 736}, - [4963] = {.lex_state = 738}, - [4964] = {.lex_state = 669}, - [4965] = {.lex_state = 669}, - [4966] = {.lex_state = 44}, - [4967] = {.lex_state = 669}, - [4968] = {.lex_state = 669}, - [4969] = {.lex_state = 738}, - [4970] = {.lex_state = 44}, - [4971] = {.lex_state = 44}, - [4972] = {.lex_state = 44}, - [4973] = {.lex_state = 44}, - [4974] = {.lex_state = 738}, - [4975] = {.lex_state = 44}, - [4976] = {.lex_state = 44}, - [4977] = {.lex_state = 44}, - [4978] = {.lex_state = 738}, - [4979] = {.lex_state = 44}, - [4980] = {.lex_state = 267}, - [4981] = {.lex_state = 267}, - [4982] = {.lex_state = 669}, - [4983] = {.lex_state = 669}, - [4984] = {.lex_state = 669}, - [4985] = {.lex_state = 44}, - [4986] = {.lex_state = 44}, - [4987] = {.lex_state = 267}, - [4988] = {.lex_state = 669}, - [4989] = {.lex_state = 669}, - [4990] = {.lex_state = 44, .external_lex_state = 2}, - [4991] = {.lex_state = 810}, + [4888] = {.lex_state = 670}, + [4889] = {.lex_state = 670}, + [4890] = {.lex_state = 75}, + [4891] = {.lex_state = 703}, + [4892] = {.lex_state = 44}, + [4893] = {.lex_state = 44}, + [4894] = {.lex_state = 44}, + [4895] = {.lex_state = 333}, + [4896] = {.lex_state = 284}, + [4897] = {.lex_state = 778}, + [4898] = {.lex_state = 773}, + [4899] = {.lex_state = 44, .external_lex_state = 2}, + [4900] = {.lex_state = 773}, + [4901] = {.lex_state = 280}, + [4902] = {.lex_state = 778}, + [4903] = {.lex_state = 773}, + [4904] = {.lex_state = 703}, + [4905] = {.lex_state = 284}, + [4906] = {.lex_state = 44}, + [4907] = {.lex_state = 280}, + [4908] = {.lex_state = 773}, + [4909] = {.lex_state = 773}, + [4910] = {.lex_state = 703}, + [4911] = {.lex_state = 268}, + [4912] = {.lex_state = 773}, + [4913] = {.lex_state = 778}, + [4914] = {.lex_state = 304}, + [4915] = {.lex_state = 778}, + [4916] = {.lex_state = 670}, + [4917] = {.lex_state = 277}, + [4918] = {.lex_state = 325}, + [4919] = {.lex_state = 44}, + [4920] = {.lex_state = 268}, + [4921] = {.lex_state = 44}, + [4922] = {.lex_state = 74}, + [4923] = {.lex_state = 271}, + [4924] = {.lex_state = 773}, + [4925] = {.lex_state = 309}, + [4926] = {.lex_state = 74}, + [4927] = {.lex_state = 277}, + [4928] = {.lex_state = 298}, + [4929] = {.lex_state = 44, .external_lex_state = 2}, + [4930] = {.lex_state = 304}, + [4931] = {.lex_state = 773}, + [4932] = {.lex_state = 778}, + [4933] = {.lex_state = 778}, + [4934] = {.lex_state = 44}, + [4935] = {.lex_state = 703}, + [4936] = {.lex_state = 44, .external_lex_state = 2}, + [4937] = {.lex_state = 672}, + [4938] = {.lex_state = 737}, + [4939] = {.lex_state = 271}, + [4940] = {.lex_state = 778}, + [4941] = {.lex_state = 778}, + [4942] = {.lex_state = 334}, + [4943] = {.lex_state = 773}, + [4944] = {.lex_state = 773}, + [4945] = {.lex_state = 44}, + [4946] = {.lex_state = 3261}, + [4947] = {.lex_state = 3261}, + [4948] = {.lex_state = 778}, + [4949] = {.lex_state = 3261}, + [4950] = {.lex_state = 3261}, + [4951] = {.lex_state = 778}, + [4952] = {.lex_state = 76}, + [4953] = {.lex_state = 3908}, + [4954] = {.lex_state = 3908}, + [4955] = {.lex_state = 773}, + [4956] = {.lex_state = 331}, + [4957] = {.lex_state = 44}, + [4958] = {.lex_state = 326}, + [4959] = {.lex_state = 281}, + [4960] = {.lex_state = 3261}, + [4961] = {.lex_state = 3261}, + [4962] = {.lex_state = 305}, + [4963] = {.lex_state = 3261}, + [4964] = {.lex_state = 778}, + [4965] = {.lex_state = 331}, + [4966] = {.lex_state = 778}, + [4967] = {.lex_state = 44}, + [4968] = {.lex_state = 44}, + [4969] = {.lex_state = 778}, + [4970] = {.lex_state = 282}, + [4971] = {.lex_state = 3261}, + [4972] = {.lex_state = 281}, + [4973] = {.lex_state = 3724}, + [4974] = {.lex_state = 3908}, + [4975] = {.lex_state = 3908}, + [4976] = {.lex_state = 3261}, + [4977] = {.lex_state = 3261}, + [4978] = {.lex_state = 3908}, + [4979] = {.lex_state = 3908}, + [4980] = {.lex_state = 3261}, + [4981] = {.lex_state = 3908}, + [4982] = {.lex_state = 3908}, + [4983] = {.lex_state = 311}, + [4984] = {.lex_state = 310}, + [4985] = {.lex_state = 3261}, + [4986] = {.lex_state = 305}, + [4987] = {.lex_state = 3261}, + [4988] = {.lex_state = 3261}, + [4989] = {.lex_state = 3261}, + [4990] = {.lex_state = 3261}, + [4991] = {.lex_state = 44}, [4992] = {.lex_state = 44}, - [4993] = {.lex_state = 3724}, - [4994] = {.lex_state = 669}, - [4995] = {.lex_state = 269}, - [4996] = {.lex_state = 810}, - [4997] = {.lex_state = 810}, - [4998] = {.lex_state = 669}, - [4999] = {.lex_state = 669}, - [5000] = {.lex_state = 272}, - [5001] = {.lex_state = 44}, - [5002] = {.lex_state = 810}, - [5003] = {.lex_state = 669}, - [5004] = {.lex_state = 669}, - [5005] = {.lex_state = 302}, - [5006] = {.lex_state = 669}, - [5007] = {.lex_state = 267}, - [5008] = {.lex_state = 669}, - [5009] = {.lex_state = 44, .external_lex_state = 2}, - [5010] = {.lex_state = 44, .external_lex_state = 2}, - [5011] = {.lex_state = 44}, - [5012] = {.lex_state = 3724}, - [5013] = {.lex_state = 275}, - [5014] = {.lex_state = 44}, - [5015] = {.lex_state = 44}, - [5016] = {.lex_state = 44}, - [5017] = {.lex_state = 44}, - [5018] = {.lex_state = 44}, - [5019] = {.lex_state = 44}, - [5020] = {.lex_state = 669}, - [5021] = {.lex_state = 44}, - [5022] = {.lex_state = 669}, - [5023] = {.lex_state = 44}, - [5024] = {.lex_state = 274}, - [5025] = {.lex_state = 669}, - [5026] = {.lex_state = 669}, - [5027] = {.lex_state = 44}, - [5028] = {.lex_state = 44}, - [5029] = {.lex_state = 44}, - [5030] = {.lex_state = 669}, - [5031] = {.lex_state = 810}, - [5032] = {.lex_state = 669}, - [5033] = {.lex_state = 669}, - [5034] = {.lex_state = 44}, + [4993] = {.lex_state = 305}, + [4994] = {.lex_state = 3261}, + [4995] = {.lex_state = 3261}, + [4996] = {.lex_state = 778}, + [4997] = {.lex_state = 3261}, + [4998] = {.lex_state = 3261}, + [4999] = {.lex_state = 778}, + [5000] = {.lex_state = 778}, + [5001] = {.lex_state = 778}, + [5002] = {.lex_state = 3261}, + [5003] = {.lex_state = 3261}, + [5004] = {.lex_state = 778}, + [5005] = {.lex_state = 778}, + [5006] = {.lex_state = 778}, + [5007] = {.lex_state = 778}, + [5008] = {.lex_state = 672}, + [5009] = {.lex_state = 3261}, + [5010] = {.lex_state = 3261}, + [5011] = {.lex_state = 75}, + [5012] = {.lex_state = 44}, + [5013] = {.lex_state = 44}, + [5014] = {.lex_state = 3261}, + [5015] = {.lex_state = 282}, + [5016] = {.lex_state = 3261}, + [5017] = {.lex_state = 3261}, + [5018] = {.lex_state = 773}, + [5019] = {.lex_state = 3261}, + [5020] = {.lex_state = 3261}, + [5021] = {.lex_state = 75}, + [5022] = {.lex_state = 3261}, + [5023] = {.lex_state = 773}, + [5024] = {.lex_state = 773}, + [5025] = {.lex_state = 44}, + [5026] = {.lex_state = 672}, + [5027] = {.lex_state = 778}, + [5028] = {.lex_state = 75}, + [5029] = {.lex_state = 672}, + [5030] = {.lex_state = 281}, + [5031] = {.lex_state = 310}, + [5032] = {.lex_state = 773}, + [5033] = {.lex_state = 778}, + [5034] = {.lex_state = 281}, [5035] = {.lex_state = 3724}, - [5036] = {.lex_state = 777}, - [5037] = {.lex_state = 44}, - [5038] = {.lex_state = 669}, - [5039] = {.lex_state = 777}, - [5040] = {.lex_state = 44}, - [5041] = {.lex_state = 669}, - [5042] = {.lex_state = 777}, + [5036] = {.lex_state = 75}, + [5037] = {.lex_state = 778}, + [5038] = {.lex_state = 299}, + [5039] = {.lex_state = 44}, + [5040] = {.lex_state = 3724}, + [5041] = {.lex_state = 773}, + [5042] = {.lex_state = 44}, [5043] = {.lex_state = 44}, - [5044] = {.lex_state = 669}, - [5045] = {.lex_state = 669}, - [5046] = {.lex_state = 669}, - [5047] = {.lex_state = 669}, - [5048] = {.lex_state = 669}, - [5049] = {.lex_state = 777}, - [5050] = {.lex_state = 72}, - [5051] = {.lex_state = 777}, - [5052] = {.lex_state = 777}, - [5053] = {.lex_state = 669}, - [5054] = {.lex_state = 669}, - [5055] = {.lex_state = 669}, - [5056] = {.lex_state = 669}, - [5057] = {.lex_state = 272}, - [5058] = {.lex_state = 273}, - [5059] = {.lex_state = 669}, - [5060] = {.lex_state = 669}, - [5061] = {.lex_state = 768}, - [5062] = {.lex_state = 777}, - [5063] = {.lex_state = 777}, - [5064] = {.lex_state = 669}, - [5065] = {.lex_state = 777}, - [5066] = {.lex_state = 768}, - [5067] = {.lex_state = 273}, - [5068] = {.lex_state = 269}, - [5069] = {.lex_state = 768}, - [5070] = {.lex_state = 669}, - [5071] = {.lex_state = 669}, - [5072] = {.lex_state = 669}, - [5073] = {.lex_state = 44}, - [5074] = {.lex_state = 44}, - [5075] = {.lex_state = 669}, - [5076] = {.lex_state = 296}, - [5077] = {.lex_state = 669}, - [5078] = {.lex_state = 44}, - [5079] = {.lex_state = 669}, - [5080] = {.lex_state = 669}, - [5081] = {.lex_state = 278}, - [5082] = {.lex_state = 669}, - [5083] = {.lex_state = 669}, - [5084] = {.lex_state = 669}, - [5085] = {.lex_state = 669}, - [5086] = {.lex_state = 669}, - [5087] = {.lex_state = 669}, - [5088] = {.lex_state = 44}, - [5089] = {.lex_state = 736}, - [5090] = {.lex_state = 267}, - [5091] = {.lex_state = 669}, - [5092] = {.lex_state = 736}, - [5093] = {.lex_state = 736}, - [5094] = {.lex_state = 736}, - [5095] = {.lex_state = 669}, - [5096] = {.lex_state = 736}, - [5097] = {.lex_state = 736}, - [5098] = {.lex_state = 736}, - [5099] = {.lex_state = 736}, - [5100] = {.lex_state = 669}, - [5101] = {.lex_state = 736}, - [5102] = {.lex_state = 736}, - [5103] = {.lex_state = 736}, - [5104] = {.lex_state = 44}, - [5105] = {.lex_state = 736}, - [5106] = {.lex_state = 669}, - [5107] = {.lex_state = 669}, - [5108] = {.lex_state = 44}, - [5109] = {.lex_state = 768}, - [5110] = {.lex_state = 669}, - [5111] = {.lex_state = 3724}, - [5112] = {.lex_state = 669}, - [5113] = {.lex_state = 266}, - [5114] = {.lex_state = 669}, - [5115] = {.lex_state = 669}, - [5116] = {.lex_state = 669}, - [5117] = {.lex_state = 44}, - [5118] = {.lex_state = 669}, - [5119] = {.lex_state = 777}, - [5120] = {.lex_state = 669}, - [5121] = {.lex_state = 669}, - [5122] = {.lex_state = 669}, - [5123] = {.lex_state = 44}, - [5124] = {.lex_state = 669}, - [5125] = {.lex_state = 282}, - [5126] = {.lex_state = 264}, - [5127] = {.lex_state = 669}, - [5128] = {.lex_state = 669}, - [5129] = {.lex_state = 669}, - [5130] = {.lex_state = 669}, - [5131] = {.lex_state = 669}, - [5132] = {.lex_state = 264}, - [5133] = {.lex_state = 70}, - [5134] = {.lex_state = 736}, - [5135] = {.lex_state = 44}, - [5136] = {.lex_state = 44}, - [5137] = {.lex_state = 264}, - [5138] = {.lex_state = 264}, - [5139] = {.lex_state = 669}, - [5140] = {.lex_state = 669}, - [5141] = {.lex_state = 3724}, - [5142] = {.lex_state = 44}, - [5143] = {.lex_state = 777}, - [5144] = {.lex_state = 44}, - [5145] = {.lex_state = 669}, - [5146] = {.lex_state = 44}, - [5147] = {.lex_state = 44}, - [5148] = {.lex_state = 44}, + [5044] = {.lex_state = 773}, + [5045] = {.lex_state = 331}, + [5046] = {.lex_state = 3261}, + [5047] = {.lex_state = 335}, + [5048] = {.lex_state = 72}, + [5049] = {.lex_state = 305}, + [5050] = {.lex_state = 282}, + [5051] = {.lex_state = 773}, + [5052] = {.lex_state = 331}, + [5053] = {.lex_state = 773}, + [5054] = {.lex_state = 773}, + [5055] = {.lex_state = 778}, + [5056] = {.lex_state = 282}, + [5057] = {.lex_state = 778}, + [5058] = {.lex_state = 331}, + [5059] = {.lex_state = 778}, + [5060] = {.lex_state = 44}, + [5061] = {.lex_state = 44}, + [5062] = {.lex_state = 3724}, + [5063] = {.lex_state = 3724}, + [5064] = {.lex_state = 305}, + [5065] = {.lex_state = 331}, + [5066] = {.lex_state = 335}, + [5067] = {.lex_state = 44}, + [5068] = {.lex_state = 672}, + [5069] = {.lex_state = 331}, + [5070] = {.lex_state = 281}, + [5071] = {.lex_state = 306}, + [5072] = {.lex_state = 282}, + [5073] = {.lex_state = 3261}, + [5074] = {.lex_state = 672}, + [5075] = {.lex_state = 307}, + [5076] = {.lex_state = 77}, + [5077] = {.lex_state = 345}, + [5078] = {.lex_state = 337}, + [5079] = {.lex_state = 778}, + [5080] = {.lex_state = 312}, + [5081] = {.lex_state = 331}, + [5082] = {.lex_state = 672}, + [5083] = {.lex_state = 672}, + [5084] = {.lex_state = 672}, + [5085] = {.lex_state = 672}, + [5086] = {.lex_state = 672}, + [5087] = {.lex_state = 672}, + [5088] = {.lex_state = 773}, + [5089] = {.lex_state = 672}, + [5090] = {.lex_state = 672}, + [5091] = {.lex_state = 337}, + [5092] = {.lex_state = 672}, + [5093] = {.lex_state = 672}, + [5094] = {.lex_state = 672}, + [5095] = {.lex_state = 773}, + [5096] = {.lex_state = 311}, + [5097] = {.lex_state = 773}, + [5098] = {.lex_state = 672}, + [5099] = {.lex_state = 672}, + [5100] = {.lex_state = 773}, + [5101] = {.lex_state = 773}, + [5102] = {.lex_state = 672}, + [5103] = {.lex_state = 672}, + [5104] = {.lex_state = 300}, + [5105] = {.lex_state = 672}, + [5106] = {.lex_state = 672}, + [5107] = {.lex_state = 672}, + [5108] = {.lex_state = 672}, + [5109] = {.lex_state = 672}, + [5110] = {.lex_state = 672}, + [5111] = {.lex_state = 337}, + [5112] = {.lex_state = 672}, + [5113] = {.lex_state = 672}, + [5114] = {.lex_state = 672}, + [5115] = {.lex_state = 773}, + [5116] = {.lex_state = 672}, + [5117] = {.lex_state = 672}, + [5118] = {.lex_state = 672}, + [5119] = {.lex_state = 672}, + [5120] = {.lex_state = 672}, + [5121] = {.lex_state = 672}, + [5122] = {.lex_state = 672}, + [5123] = {.lex_state = 672}, + [5124] = {.lex_state = 672}, + [5125] = {.lex_state = 672}, + [5126] = {.lex_state = 773}, + [5127] = {.lex_state = 672}, + [5128] = {.lex_state = 672}, + [5129] = {.lex_state = 672}, + [5130] = {.lex_state = 672}, + [5131] = {.lex_state = 672}, + [5132] = {.lex_state = 331}, + [5133] = {.lex_state = 311}, + [5134] = {.lex_state = 782}, + [5135] = {.lex_state = 672}, + [5136] = {.lex_state = 311}, + [5137] = {.lex_state = 672}, + [5138] = {.lex_state = 311}, + [5139] = {.lex_state = 337}, + [5140] = {.lex_state = 327}, + [5141] = {.lex_state = 672}, + [5142] = {.lex_state = 336}, + [5143] = {.lex_state = 773}, + [5144] = {.lex_state = 672}, + [5145] = {.lex_state = 44, .external_lex_state = 2}, + [5146] = {.lex_state = 778}, + [5147] = {.lex_state = 337}, + [5148] = {.lex_state = 44, .external_lex_state = 2}, [5149] = {.lex_state = 44}, - [5150] = {.lex_state = 669}, - [5151] = {.lex_state = 669}, - [5152] = {.lex_state = 669}, - [5153] = {.lex_state = 669}, - [5154] = {.lex_state = 669}, - [5155] = {.lex_state = 669}, - [5156] = {.lex_state = 44}, - [5157] = {.lex_state = 44}, - [5158] = {.lex_state = 669}, - [5159] = {.lex_state = 777}, - [5160] = {.lex_state = 671}, - [5161] = {.lex_state = 308}, - [5162] = {.lex_state = 44}, - [5163] = {.lex_state = 772}, - [5164] = {.lex_state = 772}, - [5165] = {.lex_state = 44}, - [5166] = {.lex_state = 777}, - [5167] = {.lex_state = 73}, - [5168] = {.lex_state = 702}, - [5169] = {.lex_state = 772}, - [5170] = {.lex_state = 777}, - [5171] = {.lex_state = 777}, - [5172] = {.lex_state = 267}, - [5173] = {.lex_state = 772}, - [5174] = {.lex_state = 332}, - [5175] = {.lex_state = 74}, - [5176] = {.lex_state = 702}, - [5177] = {.lex_state = 44}, - [5178] = {.lex_state = 279}, - [5179] = {.lex_state = 777}, - [5180] = {.lex_state = 772}, - [5181] = {.lex_state = 777}, - [5182] = {.lex_state = 303}, - [5183] = {.lex_state = 669}, - [5184] = {.lex_state = 702}, - [5185] = {.lex_state = 303}, - [5186] = {.lex_state = 276}, - [5187] = {.lex_state = 276}, - [5188] = {.lex_state = 44, .external_lex_state = 2}, - [5189] = {.lex_state = 279}, - [5190] = {.lex_state = 270}, - [5191] = {.lex_state = 297}, - [5192] = {.lex_state = 44, .external_lex_state = 2}, - [5193] = {.lex_state = 283}, - [5194] = {.lex_state = 267}, - [5195] = {.lex_state = 324}, - [5196] = {.lex_state = 283}, - [5197] = {.lex_state = 772}, - [5198] = {.lex_state = 702}, - [5199] = {.lex_state = 44, .external_lex_state = 2}, - [5200] = {.lex_state = 270}, - [5201] = {.lex_state = 736}, - [5202] = {.lex_state = 772}, - [5203] = {.lex_state = 44}, - [5204] = {.lex_state = 44}, - [5205] = {.lex_state = 44}, - [5206] = {.lex_state = 44}, - [5207] = {.lex_state = 772}, - [5208] = {.lex_state = 777}, - [5209] = {.lex_state = 73}, - [5210] = {.lex_state = 325}, - [5211] = {.lex_state = 3907}, - [5212] = {.lex_state = 3907}, - [5213] = {.lex_state = 772}, - [5214] = {.lex_state = 44}, - [5215] = {.lex_state = 3260}, - [5216] = {.lex_state = 333}, - [5217] = {.lex_state = 44}, - [5218] = {.lex_state = 3260}, - [5219] = {.lex_state = 3723}, - [5220] = {.lex_state = 777}, - [5221] = {.lex_state = 281}, - [5222] = {.lex_state = 777}, - [5223] = {.lex_state = 3260}, - [5224] = {.lex_state = 3260}, - [5225] = {.lex_state = 777}, - [5226] = {.lex_state = 777}, - [5227] = {.lex_state = 304}, - [5228] = {.lex_state = 777}, - [5229] = {.lex_state = 3260}, - [5230] = {.lex_state = 3260}, - [5231] = {.lex_state = 3260}, - [5232] = {.lex_state = 777}, - [5233] = {.lex_state = 3260}, - [5234] = {.lex_state = 777}, - [5235] = {.lex_state = 777}, - [5236] = {.lex_state = 3260}, - [5237] = {.lex_state = 3260}, - [5238] = {.lex_state = 777}, - [5239] = {.lex_state = 777}, - [5240] = {.lex_state = 3260}, - [5241] = {.lex_state = 3260}, - [5242] = {.lex_state = 772}, - [5243] = {.lex_state = 305}, - [5244] = {.lex_state = 304}, - [5245] = {.lex_state = 3260}, - [5246] = {.lex_state = 3260}, - [5247] = {.lex_state = 772}, - [5248] = {.lex_state = 304}, - [5249] = {.lex_state = 3260}, - [5250] = {.lex_state = 3260}, - [5251] = {.lex_state = 777}, - [5252] = {.lex_state = 3260}, - [5253] = {.lex_state = 3260}, - [5254] = {.lex_state = 3260}, - [5255] = {.lex_state = 3260}, - [5256] = {.lex_state = 3260}, - [5257] = {.lex_state = 3260}, - [5258] = {.lex_state = 74}, - [5259] = {.lex_state = 3260}, - [5260] = {.lex_state = 304}, + [5150] = {.lex_state = 780}, + [5151] = {.lex_state = 75}, + [5152] = {.lex_state = 672}, + [5153] = {.lex_state = 778}, + [5154] = {.lex_state = 44, .external_lex_state = 2}, + [5155] = {.lex_state = 672}, + [5156] = {.lex_state = 672}, + [5157] = {.lex_state = 672}, + [5158] = {.lex_state = 672}, + [5159] = {.lex_state = 778}, + [5160] = {.lex_state = 778}, + [5161] = {.lex_state = 672}, + [5162] = {.lex_state = 307}, + [5163] = {.lex_state = 77}, + [5164] = {.lex_state = 44, .external_lex_state = 2}, + [5165] = {.lex_state = 672}, + [5166] = {.lex_state = 329}, + [5167] = {.lex_state = 44, .external_lex_state = 2}, + [5168] = {.lex_state = 339}, + [5169] = {.lex_state = 672}, + [5170] = {.lex_state = 44, .external_lex_state = 2}, + [5171] = {.lex_state = 44, .external_lex_state = 2}, + [5172] = {.lex_state = 778}, + [5173] = {.lex_state = 778}, + [5174] = {.lex_state = 336}, + [5175] = {.lex_state = 44}, + [5176] = {.lex_state = 672}, + [5177] = {.lex_state = 256, .external_lex_state = 2}, + [5178] = {.lex_state = 254, .external_lex_state = 2}, + [5179] = {.lex_state = 44}, + [5180] = {.lex_state = 818}, + [5181] = {.lex_state = 256, .external_lex_state = 2}, + [5182] = {.lex_state = 254, .external_lex_state = 2}, + [5183] = {.lex_state = 782}, + [5184] = {.lex_state = 254, .external_lex_state = 2}, + [5185] = {.lex_state = 254, .external_lex_state = 2}, + [5186] = {.lex_state = 778}, + [5187] = {.lex_state = 254, .external_lex_state = 2}, + [5188] = {.lex_state = 254, .external_lex_state = 2}, + [5189] = {.lex_state = 254, .external_lex_state = 2}, + [5190] = {.lex_state = 254, .external_lex_state = 2}, + [5191] = {.lex_state = 254, .external_lex_state = 2}, + [5192] = {.lex_state = 256, .external_lex_state = 2}, + [5193] = {.lex_state = 254, .external_lex_state = 2}, + [5194] = {.lex_state = 44}, + [5195] = {.lex_state = 254, .external_lex_state = 2}, + [5196] = {.lex_state = 254, .external_lex_state = 2}, + [5197] = {.lex_state = 254, .external_lex_state = 2}, + [5198] = {.lex_state = 254, .external_lex_state = 2}, + [5199] = {.lex_state = 254, .external_lex_state = 2}, + [5200] = {.lex_state = 256, .external_lex_state = 2}, + [5201] = {.lex_state = 313}, + [5202] = {.lex_state = 254, .external_lex_state = 2}, + [5203] = {.lex_state = 254, .external_lex_state = 2}, + [5204] = {.lex_state = 254, .external_lex_state = 2}, + [5205] = {.lex_state = 254, .external_lex_state = 2}, + [5206] = {.lex_state = 254, .external_lex_state = 2}, + [5207] = {.lex_state = 254, .external_lex_state = 2}, + [5208] = {.lex_state = 256, .external_lex_state = 2}, + [5209] = {.lex_state = 254, .external_lex_state = 2}, + [5210] = {.lex_state = 254, .external_lex_state = 2}, + [5211] = {.lex_state = 818}, + [5212] = {.lex_state = 254, .external_lex_state = 2}, + [5213] = {.lex_state = 254, .external_lex_state = 2}, + [5214] = {.lex_state = 254, .external_lex_state = 2}, + [5215] = {.lex_state = 256, .external_lex_state = 2}, + [5216] = {.lex_state = 254, .external_lex_state = 2}, + [5217] = {.lex_state = 254, .external_lex_state = 2}, + [5218] = {.lex_state = 254, .external_lex_state = 2}, + [5219] = {.lex_state = 254, .external_lex_state = 2}, + [5220] = {.lex_state = 256, .external_lex_state = 2}, + [5221] = {.lex_state = 254, .external_lex_state = 2}, + [5222] = {.lex_state = 341}, + [5223] = {.lex_state = 254, .external_lex_state = 2}, + [5224] = {.lex_state = 254, .external_lex_state = 2}, + [5225] = {.lex_state = 256, .external_lex_state = 2}, + [5226] = {.lex_state = 254, .external_lex_state = 2}, + [5227] = {.lex_state = 254, .external_lex_state = 2}, + [5228] = {.lex_state = 256, .external_lex_state = 2}, + [5229] = {.lex_state = 773}, + [5230] = {.lex_state = 44}, + [5231] = {.lex_state = 256, .external_lex_state = 2}, + [5232] = {.lex_state = 78}, + [5233] = {.lex_state = 256, .external_lex_state = 2}, + [5234] = {.lex_state = 256, .external_lex_state = 2}, + [5235] = {.lex_state = 254, .external_lex_state = 2}, + [5236] = {.lex_state = 773}, + [5237] = {.lex_state = 256, .external_lex_state = 2}, + [5238] = {.lex_state = 331}, + [5239] = {.lex_state = 254, .external_lex_state = 2}, + [5240] = {.lex_state = 256, .external_lex_state = 2}, + [5241] = {.lex_state = 331}, + [5242] = {.lex_state = 44}, + [5243] = {.lex_state = 256, .external_lex_state = 2}, + [5244] = {.lex_state = 256, .external_lex_state = 2}, + [5245] = {.lex_state = 256, .external_lex_state = 2}, + [5246] = {.lex_state = 256, .external_lex_state = 2}, + [5247] = {.lex_state = 256, .external_lex_state = 2}, + [5248] = {.lex_state = 256, .external_lex_state = 2}, + [5249] = {.lex_state = 256, .external_lex_state = 2}, + [5250] = {.lex_state = 256, .external_lex_state = 2}, + [5251] = {.lex_state = 256, .external_lex_state = 2}, + [5252] = {.lex_state = 256, .external_lex_state = 2}, + [5253] = {.lex_state = 256, .external_lex_state = 2}, + [5254] = {.lex_state = 44}, + [5255] = {.lex_state = 254, .external_lex_state = 2}, + [5256] = {.lex_state = 254, .external_lex_state = 2}, + [5257] = {.lex_state = 254, .external_lex_state = 2}, + [5258] = {.lex_state = 254, .external_lex_state = 2}, + [5259] = {.lex_state = 254, .external_lex_state = 2}, + [5260] = {.lex_state = 256, .external_lex_state = 2}, [5261] = {.lex_state = 44}, - [5262] = {.lex_state = 330}, - [5263] = {.lex_state = 777}, - [5264] = {.lex_state = 777}, - [5265] = {.lex_state = 330}, - [5266] = {.lex_state = 44}, - [5267] = {.lex_state = 777}, - [5268] = {.lex_state = 772}, - [5269] = {.lex_state = 777}, - [5270] = {.lex_state = 3907}, - [5271] = {.lex_state = 75}, - [5272] = {.lex_state = 3907}, - [5273] = {.lex_state = 671}, - [5274] = {.lex_state = 74}, - [5275] = {.lex_state = 298}, - [5276] = {.lex_state = 44}, - [5277] = {.lex_state = 777}, - [5278] = {.lex_state = 3260}, - [5279] = {.lex_state = 671}, - [5280] = {.lex_state = 777}, - [5281] = {.lex_state = 330}, - [5282] = {.lex_state = 3260}, - [5283] = {.lex_state = 44}, - [5284] = {.lex_state = 44}, - [5285] = {.lex_state = 280}, - [5286] = {.lex_state = 777}, - [5287] = {.lex_state = 3260}, - [5288] = {.lex_state = 281}, - [5289] = {.lex_state = 777}, - [5290] = {.lex_state = 44}, - [5291] = {.lex_state = 44}, - [5292] = {.lex_state = 777}, - [5293] = {.lex_state = 772}, - [5294] = {.lex_state = 74}, - [5295] = {.lex_state = 671}, - [5296] = {.lex_state = 772}, - [5297] = {.lex_state = 777}, - [5298] = {.lex_state = 777}, - [5299] = {.lex_state = 280}, - [5300] = {.lex_state = 44}, - [5301] = {.lex_state = 280}, - [5302] = {.lex_state = 44}, - [5303] = {.lex_state = 44}, - [5304] = {.lex_state = 281}, - [5305] = {.lex_state = 281}, - [5306] = {.lex_state = 3723}, - [5307] = {.lex_state = 3907}, - [5308] = {.lex_state = 772}, - [5309] = {.lex_state = 777}, - [5310] = {.lex_state = 3723}, - [5311] = {.lex_state = 772}, - [5312] = {.lex_state = 671}, - [5313] = {.lex_state = 777}, - [5314] = {.lex_state = 280}, - [5315] = {.lex_state = 280}, - [5316] = {.lex_state = 3907}, - [5317] = {.lex_state = 310}, - [5318] = {.lex_state = 777}, - [5319] = {.lex_state = 772}, - [5320] = {.lex_state = 281}, - [5321] = {.lex_state = 772}, - [5322] = {.lex_state = 330}, - [5323] = {.lex_state = 777}, - [5324] = {.lex_state = 334}, - [5325] = {.lex_state = 44}, - [5326] = {.lex_state = 3723}, - [5327] = {.lex_state = 330}, - [5328] = {.lex_state = 777}, - [5329] = {.lex_state = 309}, - [5330] = {.lex_state = 330}, - [5331] = {.lex_state = 3260}, - [5332] = {.lex_state = 71}, - [5333] = {.lex_state = 44}, - [5334] = {.lex_state = 334}, - [5335] = {.lex_state = 777}, - [5336] = {.lex_state = 74}, - [5337] = {.lex_state = 3260}, - [5338] = {.lex_state = 3723}, - [5339] = {.lex_state = 3907}, - [5340] = {.lex_state = 330}, - [5341] = {.lex_state = 3260}, - [5342] = {.lex_state = 44}, - [5343] = {.lex_state = 772}, - [5344] = {.lex_state = 3260}, - [5345] = {.lex_state = 777}, - [5346] = {.lex_state = 3907}, - [5347] = {.lex_state = 772}, - [5348] = {.lex_state = 3260}, - [5349] = {.lex_state = 309}, - [5350] = {.lex_state = 3260}, - [5351] = {.lex_state = 304}, - [5352] = {.lex_state = 671}, - [5353] = {.lex_state = 336}, - [5354] = {.lex_state = 671}, - [5355] = {.lex_state = 671}, - [5356] = {.lex_state = 671}, - [5357] = {.lex_state = 671}, - [5358] = {.lex_state = 671}, - [5359] = {.lex_state = 772}, - [5360] = {.lex_state = 671}, - [5361] = {.lex_state = 671}, - [5362] = {.lex_state = 336}, - [5363] = {.lex_state = 671}, - [5364] = {.lex_state = 310}, - [5365] = {.lex_state = 671}, - [5366] = {.lex_state = 671}, - [5367] = {.lex_state = 671}, - [5368] = {.lex_state = 671}, - [5369] = {.lex_state = 671}, - [5370] = {.lex_state = 671}, - [5371] = {.lex_state = 777}, - [5372] = {.lex_state = 310}, - [5373] = {.lex_state = 671}, - [5374] = {.lex_state = 671}, - [5375] = {.lex_state = 671}, - [5376] = {.lex_state = 671}, - [5377] = {.lex_state = 671}, - [5378] = {.lex_state = 671}, - [5379] = {.lex_state = 671}, - [5380] = {.lex_state = 671}, - [5381] = {.lex_state = 671}, - [5382] = {.lex_state = 671}, - [5383] = {.lex_state = 671}, - [5384] = {.lex_state = 671}, - [5385] = {.lex_state = 671}, - [5386] = {.lex_state = 330}, - [5387] = {.lex_state = 671}, - [5388] = {.lex_state = 671}, - [5389] = {.lex_state = 671}, - [5390] = {.lex_state = 74}, - [5391] = {.lex_state = 671}, - [5392] = {.lex_state = 671}, - [5393] = {.lex_state = 671}, - [5394] = {.lex_state = 335}, - [5395] = {.lex_state = 344}, - [5396] = {.lex_state = 671}, - [5397] = {.lex_state = 781}, - [5398] = {.lex_state = 772}, - [5399] = {.lex_state = 777}, - [5400] = {.lex_state = 777}, - [5401] = {.lex_state = 671}, - [5402] = {.lex_state = 44, .external_lex_state = 2}, - [5403] = {.lex_state = 44, .external_lex_state = 2}, - [5404] = {.lex_state = 671}, - [5405] = {.lex_state = 671}, - [5406] = {.lex_state = 671}, - [5407] = {.lex_state = 336}, - [5408] = {.lex_state = 671}, + [5262] = {.lex_state = 308}, + [5263] = {.lex_state = 254, .external_lex_state = 2}, + [5264] = {.lex_state = 44}, + [5265] = {.lex_state = 773}, + [5266] = {.lex_state = 254, .external_lex_state = 2}, + [5267] = {.lex_state = 308}, + [5268] = {.lex_state = 256, .external_lex_state = 2}, + [5269] = {.lex_state = 254, .external_lex_state = 2}, + [5270] = {.lex_state = 254, .external_lex_state = 2}, + [5271] = {.lex_state = 818}, + [5272] = {.lex_state = 254, .external_lex_state = 2}, + [5273] = {.lex_state = 818}, + [5274] = {.lex_state = 776}, + [5275] = {.lex_state = 338}, + [5276] = {.lex_state = 254, .external_lex_state = 2}, + [5277] = {.lex_state = 256, .external_lex_state = 2}, + [5278] = {.lex_state = 313}, + [5279] = {.lex_state = 256, .external_lex_state = 2}, + [5280] = {.lex_state = 813}, + [5281] = {.lex_state = 254, .external_lex_state = 2}, + [5282] = {.lex_state = 780}, + [5283] = {.lex_state = 338}, + [5284] = {.lex_state = 338}, + [5285] = {.lex_state = 44}, + [5286] = {.lex_state = 44}, + [5287] = {.lex_state = 341}, + [5288] = {.lex_state = 256, .external_lex_state = 2}, + [5289] = {.lex_state = 340}, + [5290] = {.lex_state = 254, .external_lex_state = 2}, + [5291] = {.lex_state = 254, .external_lex_state = 2}, + [5292] = {.lex_state = 78}, + [5293] = {.lex_state = 44}, + [5294] = {.lex_state = 773}, + [5295] = {.lex_state = 254, .external_lex_state = 2}, + [5296] = {.lex_state = 254, .external_lex_state = 2}, + [5297] = {.lex_state = 254, .external_lex_state = 2}, + [5298] = {.lex_state = 254, .external_lex_state = 2}, + [5299] = {.lex_state = 44}, + [5300] = {.lex_state = 254, .external_lex_state = 2}, + [5301] = {.lex_state = 44}, + [5302] = {.lex_state = 254, .external_lex_state = 2}, + [5303] = {.lex_state = 254, .external_lex_state = 2}, + [5304] = {.lex_state = 254, .external_lex_state = 2}, + [5305] = {.lex_state = 254, .external_lex_state = 2}, + [5306] = {.lex_state = 254, .external_lex_state = 2}, + [5307] = {.lex_state = 78}, + [5308] = {.lex_state = 254, .external_lex_state = 2}, + [5309] = {.lex_state = 254, .external_lex_state = 2}, + [5310] = {.lex_state = 778}, + [5311] = {.lex_state = 308}, + [5312] = {.lex_state = 338}, + [5313] = {.lex_state = 256, .external_lex_state = 2}, + [5314] = {.lex_state = 346}, + [5315] = {.lex_state = 254, .external_lex_state = 2}, + [5316] = {.lex_state = 44}, + [5317] = {.lex_state = 254, .external_lex_state = 2}, + [5318] = {.lex_state = 773}, + [5319] = {.lex_state = 773}, + [5320] = {.lex_state = 346}, + [5321] = {.lex_state = 328}, + [5322] = {.lex_state = 44}, + [5323] = {.lex_state = 773}, + [5324] = {.lex_state = 78}, + [5325] = {.lex_state = 778}, + [5326] = {.lex_state = 254, .external_lex_state = 2}, + [5327] = {.lex_state = 254, .external_lex_state = 2}, + [5328] = {.lex_state = 818}, + [5329] = {.lex_state = 254, .external_lex_state = 2}, + [5330] = {.lex_state = 254, .external_lex_state = 2}, + [5331] = {.lex_state = 254, .external_lex_state = 2}, + [5332] = {.lex_state = 254, .external_lex_state = 2}, + [5333] = {.lex_state = 256, .external_lex_state = 2}, + [5334] = {.lex_state = 254, .external_lex_state = 2}, + [5335] = {.lex_state = 44}, + [5336] = {.lex_state = 78}, + [5337] = {.lex_state = 44}, + [5338] = {.lex_state = 254, .external_lex_state = 2}, + [5339] = {.lex_state = 308}, + [5340] = {.lex_state = 338}, + [5341] = {.lex_state = 773}, + [5342] = {.lex_state = 78}, + [5343] = {.lex_state = 342}, + [5344] = {.lex_state = 778}, + [5345] = {.lex_state = 768}, + [5346] = {.lex_state = 331}, + [5347] = {.lex_state = 331}, + [5348] = {.lex_state = 330}, + [5349] = {.lex_state = 331}, + [5350] = {.lex_state = 347}, + [5351] = {.lex_state = 347}, + [5352] = {.lex_state = 737}, + [5353] = {.lex_state = 778}, + [5354] = {.lex_state = 767}, + [5355] = {.lex_state = 331}, + [5356] = {.lex_state = 314}, + [5357] = {.lex_state = 331}, + [5358] = {.lex_state = 331}, + [5359] = {.lex_state = 818}, + [5360] = {.lex_state = 768}, + [5361] = {.lex_state = 254, .external_lex_state = 2}, + [5362] = {.lex_state = 778}, + [5363] = {.lex_state = 707}, + [5364] = {.lex_state = 254, .external_lex_state = 2}, + [5365] = {.lex_state = 254, .external_lex_state = 2}, + [5366] = {.lex_state = 347}, + [5367] = {.lex_state = 776}, + [5368] = {.lex_state = 80}, + [5369] = {.lex_state = 342}, + [5370] = {.lex_state = 254, .external_lex_state = 2}, + [5371] = {.lex_state = 314}, + [5372] = {.lex_state = 254, .external_lex_state = 2}, + [5373] = {.lex_state = 314}, + [5374] = {.lex_state = 254, .external_lex_state = 2}, + [5375] = {.lex_state = 254, .external_lex_state = 2}, + [5376] = {.lex_state = 331}, + [5377] = {.lex_state = 314}, + [5378] = {.lex_state = 818}, + [5379] = {.lex_state = 773}, + [5380] = {.lex_state = 331}, + [5381] = {.lex_state = 331}, + [5382] = {.lex_state = 773}, + [5383] = {.lex_state = 737}, + [5384] = {.lex_state = 277}, + [5385] = {.lex_state = 314}, + [5386] = {.lex_state = 277}, + [5387] = {.lex_state = 277}, + [5388] = {.lex_state = 331}, + [5389] = {.lex_state = 322}, + [5390] = {.lex_state = 277}, + [5391] = {.lex_state = 332}, + [5392] = {.lex_state = 331}, + [5393] = {.lex_state = 778}, + [5394] = {.lex_state = 813}, + [5395] = {.lex_state = 322}, + [5396] = {.lex_state = 331}, + [5397] = {.lex_state = 342}, + [5398] = {.lex_state = 331}, + [5399] = {.lex_state = 342}, + [5400] = {.lex_state = 343}, + [5401] = {.lex_state = 331}, + [5402] = {.lex_state = 343}, + [5403] = {.lex_state = 331}, + [5404] = {.lex_state = 818}, + [5405] = {.lex_state = 348}, + [5406] = {.lex_state = 44}, + [5407] = {.lex_state = 44}, + [5408] = {.lex_state = 347}, [5409] = {.lex_state = 44, .external_lex_state = 2}, - [5410] = {.lex_state = 335}, - [5411] = {.lex_state = 671}, - [5412] = {.lex_state = 44, .external_lex_state = 2}, - [5413] = {.lex_state = 671}, - [5414] = {.lex_state = 779}, - [5415] = {.lex_state = 76}, - [5416] = {.lex_state = 671}, - [5417] = {.lex_state = 772}, - [5418] = {.lex_state = 671}, - [5419] = {.lex_state = 338}, - [5420] = {.lex_state = 671}, - [5421] = {.lex_state = 671}, - [5422] = {.lex_state = 44}, - [5423] = {.lex_state = 310}, - [5424] = {.lex_state = 671}, - [5425] = {.lex_state = 772}, - [5426] = {.lex_state = 328}, - [5427] = {.lex_state = 671}, - [5428] = {.lex_state = 44, .external_lex_state = 2}, - [5429] = {.lex_state = 44, .external_lex_state = 2}, - [5430] = {.lex_state = 44, .external_lex_state = 2}, - [5431] = {.lex_state = 671}, - [5432] = {.lex_state = 330}, - [5433] = {.lex_state = 306}, - [5434] = {.lex_state = 336}, - [5435] = {.lex_state = 772}, - [5436] = {.lex_state = 671}, - [5437] = {.lex_state = 44}, - [5438] = {.lex_state = 311}, - [5439] = {.lex_state = 76}, - [5440] = {.lex_state = 772}, - [5441] = {.lex_state = 772}, - [5442] = {.lex_state = 299}, - [5443] = {.lex_state = 336}, - [5444] = {.lex_state = 671}, - [5445] = {.lex_state = 772}, - [5446] = {.lex_state = 306}, - [5447] = {.lex_state = 310}, - [5448] = {.lex_state = 777}, - [5449] = {.lex_state = 671}, - [5450] = {.lex_state = 777}, - [5451] = {.lex_state = 671}, - [5452] = {.lex_state = 777}, - [5453] = {.lex_state = 777}, - [5454] = {.lex_state = 326}, - [5455] = {.lex_state = 253, .external_lex_state = 2}, - [5456] = {.lex_state = 253, .external_lex_state = 2}, - [5457] = {.lex_state = 253, .external_lex_state = 2}, - [5458] = {.lex_state = 255, .external_lex_state = 2}, - [5459] = {.lex_state = 253, .external_lex_state = 2}, - [5460] = {.lex_state = 44}, - [5461] = {.lex_state = 253, .external_lex_state = 2}, - [5462] = {.lex_state = 44}, - [5463] = {.lex_state = 255, .external_lex_state = 2}, - [5464] = {.lex_state = 307}, - [5465] = {.lex_state = 253, .external_lex_state = 2}, - [5466] = {.lex_state = 255, .external_lex_state = 2}, - [5467] = {.lex_state = 44}, - [5468] = {.lex_state = 253, .external_lex_state = 2}, - [5469] = {.lex_state = 255, .external_lex_state = 2}, - [5470] = {.lex_state = 253, .external_lex_state = 2}, - [5471] = {.lex_state = 255, .external_lex_state = 2}, - [5472] = {.lex_state = 253, .external_lex_state = 2}, - [5473] = {.lex_state = 253, .external_lex_state = 2}, - [5474] = {.lex_state = 255, .external_lex_state = 2}, - [5475] = {.lex_state = 255, .external_lex_state = 2}, - [5476] = {.lex_state = 255, .external_lex_state = 2}, - [5477] = {.lex_state = 255, .external_lex_state = 2}, - [5478] = {.lex_state = 255, .external_lex_state = 2}, - [5479] = {.lex_state = 255, .external_lex_state = 2}, - [5480] = {.lex_state = 255, .external_lex_state = 2}, - [5481] = {.lex_state = 255, .external_lex_state = 2}, - [5482] = {.lex_state = 255, .external_lex_state = 2}, - [5483] = {.lex_state = 255, .external_lex_state = 2}, - [5484] = {.lex_state = 255, .external_lex_state = 2}, - [5485] = {.lex_state = 255, .external_lex_state = 2}, - [5486] = {.lex_state = 44}, - [5487] = {.lex_state = 255, .external_lex_state = 2}, - [5488] = {.lex_state = 337}, - [5489] = {.lex_state = 253, .external_lex_state = 2}, - [5490] = {.lex_state = 253, .external_lex_state = 2}, - [5491] = {.lex_state = 255, .external_lex_state = 2}, - [5492] = {.lex_state = 44}, - [5493] = {.lex_state = 44}, - [5494] = {.lex_state = 253, .external_lex_state = 2}, - [5495] = {.lex_state = 44}, - [5496] = {.lex_state = 255, .external_lex_state = 2}, - [5497] = {.lex_state = 44}, - [5498] = {.lex_state = 77}, - [5499] = {.lex_state = 253, .external_lex_state = 2}, - [5500] = {.lex_state = 253, .external_lex_state = 2}, - [5501] = {.lex_state = 340}, - [5502] = {.lex_state = 781}, - [5503] = {.lex_state = 817}, - [5504] = {.lex_state = 337}, - [5505] = {.lex_state = 817}, - [5506] = {.lex_state = 307}, - [5507] = {.lex_state = 44}, - [5508] = {.lex_state = 253, .external_lex_state = 2}, - [5509] = {.lex_state = 253, .external_lex_state = 2}, - [5510] = {.lex_state = 255, .external_lex_state = 2}, - [5511] = {.lex_state = 253, .external_lex_state = 2}, - [5512] = {.lex_state = 253, .external_lex_state = 2}, - [5513] = {.lex_state = 345}, - [5514] = {.lex_state = 253, .external_lex_state = 2}, - [5515] = {.lex_state = 253, .external_lex_state = 2}, - [5516] = {.lex_state = 253, .external_lex_state = 2}, - [5517] = {.lex_state = 337}, - [5518] = {.lex_state = 77}, - [5519] = {.lex_state = 772}, - [5520] = {.lex_state = 775}, - [5521] = {.lex_state = 253, .external_lex_state = 2}, - [5522] = {.lex_state = 253, .external_lex_state = 2}, - [5523] = {.lex_state = 253, .external_lex_state = 2}, - [5524] = {.lex_state = 253, .external_lex_state = 2}, - [5525] = {.lex_state = 255, .external_lex_state = 2}, - [5526] = {.lex_state = 253, .external_lex_state = 2}, - [5527] = {.lex_state = 44}, - [5528] = {.lex_state = 253, .external_lex_state = 2}, - [5529] = {.lex_state = 44}, - [5530] = {.lex_state = 253, .external_lex_state = 2}, - [5531] = {.lex_state = 817}, - [5532] = {.lex_state = 253, .external_lex_state = 2}, - [5533] = {.lex_state = 772}, - [5534] = {.lex_state = 772}, - [5535] = {.lex_state = 253, .external_lex_state = 2}, - [5536] = {.lex_state = 339}, - [5537] = {.lex_state = 777}, - [5538] = {.lex_state = 44}, - [5539] = {.lex_state = 44}, - [5540] = {.lex_state = 77}, - [5541] = {.lex_state = 253, .external_lex_state = 2}, - [5542] = {.lex_state = 44}, - [5543] = {.lex_state = 255, .external_lex_state = 2}, - [5544] = {.lex_state = 253, .external_lex_state = 2}, - [5545] = {.lex_state = 253, .external_lex_state = 2}, - [5546] = {.lex_state = 312}, - [5547] = {.lex_state = 44}, - [5548] = {.lex_state = 253, .external_lex_state = 2}, - [5549] = {.lex_state = 44}, - [5550] = {.lex_state = 77}, - [5551] = {.lex_state = 253, .external_lex_state = 2}, - [5552] = {.lex_state = 44}, - [5553] = {.lex_state = 253, .external_lex_state = 2}, - [5554] = {.lex_state = 817}, - [5555] = {.lex_state = 253, .external_lex_state = 2}, - [5556] = {.lex_state = 255, .external_lex_state = 2}, - [5557] = {.lex_state = 772}, - [5558] = {.lex_state = 253, .external_lex_state = 2}, - [5559] = {.lex_state = 330}, - [5560] = {.lex_state = 777}, - [5561] = {.lex_state = 253, .external_lex_state = 2}, - [5562] = {.lex_state = 337}, - [5563] = {.lex_state = 255, .external_lex_state = 2}, - [5564] = {.lex_state = 812}, - [5565] = {.lex_state = 255, .external_lex_state = 2}, - [5566] = {.lex_state = 253, .external_lex_state = 2}, - [5567] = {.lex_state = 253, .external_lex_state = 2}, - [5568] = {.lex_state = 253, .external_lex_state = 2}, - [5569] = {.lex_state = 253, .external_lex_state = 2}, - [5570] = {.lex_state = 340}, - [5571] = {.lex_state = 253, .external_lex_state = 2}, - [5572] = {.lex_state = 345}, - [5573] = {.lex_state = 772}, - [5574] = {.lex_state = 253, .external_lex_state = 2}, - [5575] = {.lex_state = 44}, - [5576] = {.lex_state = 777}, - [5577] = {.lex_state = 253, .external_lex_state = 2}, - [5578] = {.lex_state = 255, .external_lex_state = 2}, - [5579] = {.lex_state = 253, .external_lex_state = 2}, - [5580] = {.lex_state = 44}, - [5581] = {.lex_state = 44}, - [5582] = {.lex_state = 44}, - [5583] = {.lex_state = 255, .external_lex_state = 2}, - [5584] = {.lex_state = 330}, - [5585] = {.lex_state = 44}, - [5586] = {.lex_state = 253, .external_lex_state = 2}, - [5587] = {.lex_state = 77}, - [5588] = {.lex_state = 253, .external_lex_state = 2}, - [5589] = {.lex_state = 44}, - [5590] = {.lex_state = 253, .external_lex_state = 2}, - [5591] = {.lex_state = 253, .external_lex_state = 2}, - [5592] = {.lex_state = 327}, - [5593] = {.lex_state = 253, .external_lex_state = 2}, - [5594] = {.lex_state = 253, .external_lex_state = 2}, - [5595] = {.lex_state = 253, .external_lex_state = 2}, - [5596] = {.lex_state = 253, .external_lex_state = 2}, - [5597] = {.lex_state = 44}, - [5598] = {.lex_state = 779}, - [5599] = {.lex_state = 253, .external_lex_state = 2}, - [5600] = {.lex_state = 253, .external_lex_state = 2}, - [5601] = {.lex_state = 253, .external_lex_state = 2}, - [5602] = {.lex_state = 44}, - [5603] = {.lex_state = 255, .external_lex_state = 2}, - [5604] = {.lex_state = 255, .external_lex_state = 2}, - [5605] = {.lex_state = 307}, - [5606] = {.lex_state = 253, .external_lex_state = 2}, - [5607] = {.lex_state = 253, .external_lex_state = 2}, - [5608] = {.lex_state = 253, .external_lex_state = 2}, - [5609] = {.lex_state = 253, .external_lex_state = 2}, - [5610] = {.lex_state = 337}, - [5611] = {.lex_state = 312}, - [5612] = {.lex_state = 253, .external_lex_state = 2}, - [5613] = {.lex_state = 817}, - [5614] = {.lex_state = 253, .external_lex_state = 2}, - [5615] = {.lex_state = 253, .external_lex_state = 2}, - [5616] = {.lex_state = 253, .external_lex_state = 2}, - [5617] = {.lex_state = 253, .external_lex_state = 2}, - [5618] = {.lex_state = 307}, - [5619] = {.lex_state = 253, .external_lex_state = 2}, - [5620] = {.lex_state = 255, .external_lex_state = 2}, - [5621] = {.lex_state = 253, .external_lex_state = 2}, - [5622] = {.lex_state = 253, .external_lex_state = 2}, - [5623] = {.lex_state = 255, .external_lex_state = 2}, - [5624] = {.lex_state = 772}, - [5625] = {.lex_state = 253, .external_lex_state = 2}, - [5626] = {.lex_state = 772}, - [5627] = {.lex_state = 253, .external_lex_state = 2}, - [5628] = {.lex_state = 772}, - [5629] = {.lex_state = 77}, - [5630] = {.lex_state = 330}, - [5631] = {.lex_state = 777}, - [5632] = {.lex_state = 777}, - [5633] = {.lex_state = 276}, - [5634] = {.lex_state = 341}, - [5635] = {.lex_state = 772}, - [5636] = {.lex_state = 330}, - [5637] = {.lex_state = 330}, - [5638] = {.lex_state = 313}, - [5639] = {.lex_state = 346}, - [5640] = {.lex_state = 777}, - [5641] = {.lex_state = 346}, - [5642] = {.lex_state = 253, .external_lex_state = 2}, - [5643] = {.lex_state = 346}, - [5644] = {.lex_state = 342}, - [5645] = {.lex_state = 346}, - [5646] = {.lex_state = 766}, - [5647] = {.lex_state = 341}, - [5648] = {.lex_state = 330}, - [5649] = {.lex_state = 330}, - [5650] = {.lex_state = 347}, - [5651] = {.lex_state = 313}, - [5652] = {.lex_state = 341}, - [5653] = {.lex_state = 777}, - [5654] = {.lex_state = 276}, - [5655] = {.lex_state = 276}, - [5656] = {.lex_state = 330}, - [5657] = {.lex_state = 307}, - [5658] = {.lex_state = 772}, - [5659] = {.lex_state = 44}, + [5410] = {.lex_state = 778}, + [5411] = {.lex_state = 818}, + [5412] = {.lex_state = 314}, + [5413] = {.lex_state = 768}, + [5414] = {.lex_state = 331}, + [5415] = {.lex_state = 308}, + [5416] = {.lex_state = 347}, + [5417] = {.lex_state = 308}, + [5418] = {.lex_state = 773}, + [5419] = {.lex_state = 342}, + [5420] = {.lex_state = 331}, + [5421] = {.lex_state = 707}, + [5422] = {.lex_state = 331}, + [5423] = {.lex_state = 342}, + [5424] = {.lex_state = 773}, + [5425] = {.lex_state = 773}, + [5426] = {.lex_state = 773}, + [5427] = {.lex_state = 79}, + [5428] = {.lex_state = 297}, + [5429] = {.lex_state = 773}, + [5430] = {.lex_state = 818}, + [5431] = {.lex_state = 773}, + [5432] = {.lex_state = 773}, + [5433] = {.lex_state = 347}, + [5434] = {.lex_state = 331}, + [5435] = {.lex_state = 738}, + [5436] = {.lex_state = 738}, + [5437] = {.lex_state = 331}, + [5438] = {.lex_state = 44, .external_lex_state = 2}, + [5439] = {.lex_state = 264}, + [5440] = {.lex_state = 738}, + [5441] = {.lex_state = 264}, + [5442] = {.lex_state = 3262}, + [5443] = {.lex_state = 277}, + [5444] = {.lex_state = 778}, + [5445] = {.lex_state = 264}, + [5446] = {.lex_state = 738}, + [5447] = {.lex_state = 264}, + [5448] = {.lex_state = 277}, + [5449] = {.lex_state = 277}, + [5450] = {.lex_state = 264}, + [5451] = {.lex_state = 738}, + [5452] = {.lex_state = 3262}, + [5453] = {.lex_state = 264}, + [5454] = {.lex_state = 778}, + [5455] = {.lex_state = 379}, + [5456] = {.lex_state = 738}, + [5457] = {.lex_state = 778}, + [5458] = {.lex_state = 738}, + [5459] = {.lex_state = 738}, + [5460] = {.lex_state = 264}, + [5461] = {.lex_state = 379}, + [5462] = {.lex_state = 379}, + [5463] = {.lex_state = 264}, + [5464] = {.lex_state = 315}, + [5465] = {.lex_state = 264}, + [5466] = {.lex_state = 3262}, + [5467] = {.lex_state = 3262}, + [5468] = {.lex_state = 354}, + [5469] = {.lex_state = 738}, + [5470] = {.lex_state = 379}, + [5471] = {.lex_state = 379}, + [5472] = {.lex_state = 264}, + [5473] = {.lex_state = 778}, + [5474] = {.lex_state = 778}, + [5475] = {.lex_state = 264}, + [5476] = {.lex_state = 778}, + [5477] = {.lex_state = 81}, + [5478] = {.lex_state = 778}, + [5479] = {.lex_state = 778}, + [5480] = {.lex_state = 301}, + [5481] = {.lex_state = 778}, + [5482] = {.lex_state = 778}, + [5483] = {.lex_state = 785}, + [5484] = {.lex_state = 778}, + [5485] = {.lex_state = 785}, + [5486] = {.lex_state = 277}, + [5487] = {.lex_state = 277}, + [5488] = {.lex_state = 277}, + [5489] = {.lex_state = 264}, + [5490] = {.lex_state = 778}, + [5491] = {.lex_state = 331}, + [5492] = {.lex_state = 778}, + [5493] = {.lex_state = 738}, + [5494] = {.lex_state = 778}, + [5495] = {.lex_state = 3262}, + [5496] = {.lex_state = 264}, + [5497] = {.lex_state = 778}, + [5498] = {.lex_state = 354}, + [5499] = {.lex_state = 778}, + [5500] = {.lex_state = 778}, + [5501] = {.lex_state = 264}, + [5502] = {.lex_state = 3262}, + [5503] = {.lex_state = 707}, + [5504] = {.lex_state = 3262}, + [5505] = {.lex_state = 778}, + [5506] = {.lex_state = 778}, + [5507] = {.lex_state = 778}, + [5508] = {.lex_state = 738}, + [5509] = {.lex_state = 778}, + [5510] = {.lex_state = 347}, + [5511] = {.lex_state = 738}, + [5512] = {.lex_state = 738}, + [5513] = {.lex_state = 738}, + [5514] = {.lex_state = 778}, + [5515] = {.lex_state = 778}, + [5516] = {.lex_state = 707}, + [5517] = {.lex_state = 738}, + [5518] = {.lex_state = 738}, + [5519] = {.lex_state = 3262}, + [5520] = {.lex_state = 323}, + [5521] = {.lex_state = 778}, + [5522] = {.lex_state = 323}, + [5523] = {.lex_state = 264}, + [5524] = {.lex_state = 738}, + [5525] = {.lex_state = 738}, + [5526] = {.lex_state = 778}, + [5527] = {.lex_state = 264}, + [5528] = {.lex_state = 737}, + [5529] = {.lex_state = 264}, + [5530] = {.lex_state = 778}, + [5531] = {.lex_state = 778}, + [5532] = {.lex_state = 3262}, + [5533] = {.lex_state = 3262}, + [5534] = {.lex_state = 81}, + [5535] = {.lex_state = 347}, + [5536] = {.lex_state = 331}, + [5537] = {.lex_state = 738}, + [5538] = {.lex_state = 264}, + [5539] = {.lex_state = 264}, + [5540] = {.lex_state = 344}, + [5541] = {.lex_state = 349}, + [5542] = {.lex_state = 331}, + [5543] = {.lex_state = 780}, + [5544] = {.lex_state = 344}, + [5545] = {.lex_state = 318}, + [5546] = {.lex_state = 344}, + [5547] = {.lex_state = 344}, + [5548] = {.lex_state = 738}, + [5549] = {.lex_state = 331}, + [5550] = {.lex_state = 264}, + [5551] = {.lex_state = 738}, + [5552] = {.lex_state = 778}, + [5553] = {.lex_state = 3262}, + [5554] = {.lex_state = 778}, + [5555] = {.lex_state = 738}, + [5556] = {.lex_state = 707}, + [5557] = {.lex_state = 738}, + [5558] = {.lex_state = 707}, + [5559] = {.lex_state = 707}, + [5560] = {.lex_state = 707}, + [5561] = {.lex_state = 302}, + [5562] = {.lex_state = 778}, + [5563] = {.lex_state = 3262}, + [5564] = {.lex_state = 738}, + [5565] = {.lex_state = 778}, + [5566] = {.lex_state = 738}, + [5567] = {.lex_state = 785}, + [5568] = {.lex_state = 264}, + [5569] = {.lex_state = 785}, + [5570] = {.lex_state = 349}, + [5571] = {.lex_state = 738}, + [5572] = {.lex_state = 344}, + [5573] = {.lex_state = 3262}, + [5574] = {.lex_state = 778}, + [5575] = {.lex_state = 347}, + [5576] = {.lex_state = 738}, + [5577] = {.lex_state = 738}, + [5578] = {.lex_state = 3262}, + [5579] = {.lex_state = 738}, + [5580] = {.lex_state = 778}, + [5581] = {.lex_state = 785}, + [5582] = {.lex_state = 738}, + [5583] = {.lex_state = 264}, + [5584] = {.lex_state = 738}, + [5585] = {.lex_state = 778}, + [5586] = {.lex_state = 331}, + [5587] = {.lex_state = 264}, + [5588] = {.lex_state = 778}, + [5589] = {.lex_state = 778}, + [5590] = {.lex_state = 785}, + [5591] = {.lex_state = 331}, + [5592] = {.lex_state = 3262}, + [5593] = {.lex_state = 3262}, + [5594] = {.lex_state = 264}, + [5595] = {.lex_state = 738}, + [5596] = {.lex_state = 738}, + [5597] = {.lex_state = 291}, + [5598] = {.lex_state = 264}, + [5599] = {.lex_state = 738}, + [5600] = {.lex_state = 331}, + [5601] = {.lex_state = 264}, + [5602] = {.lex_state = 3262}, + [5603] = {.lex_state = 776}, + [5604] = {.lex_state = 285}, + [5605] = {.lex_state = 778}, + [5606] = {.lex_state = 264}, + [5607] = {.lex_state = 331}, + [5608] = {.lex_state = 778}, + [5609] = {.lex_state = 3262}, + [5610] = {.lex_state = 360}, + [5611] = {.lex_state = 264}, + [5612] = {.lex_state = 738}, + [5613] = {.lex_state = 738}, + [5614] = {.lex_state = 347}, + [5615] = {.lex_state = 3262}, + [5616] = {.lex_state = 737}, + [5617] = {.lex_state = 778}, + [5618] = {.lex_state = 331}, + [5619] = {.lex_state = 3262}, + [5620] = {.lex_state = 738}, + [5621] = {.lex_state = 344}, + [5622] = {.lex_state = 778}, + [5623] = {.lex_state = 264}, + [5624] = {.lex_state = 264}, + [5625] = {.lex_state = 322}, + [5626] = {.lex_state = 322}, + [5627] = {.lex_state = 782}, + [5628] = {.lex_state = 331}, + [5629] = {.lex_state = 738}, + [5630] = {.lex_state = 331}, + [5631] = {.lex_state = 3262}, + [5632] = {.lex_state = 331}, + [5633] = {.lex_state = 264}, + [5634] = {.lex_state = 264}, + [5635] = {.lex_state = 738}, + [5636] = {.lex_state = 331}, + [5637] = {.lex_state = 737}, + [5638] = {.lex_state = 351}, + [5639] = {.lex_state = 737}, + [5640] = {.lex_state = 737}, + [5641] = {.lex_state = 737}, + [5642] = {.lex_state = 264}, + [5643] = {.lex_state = 331}, + [5644] = {.lex_state = 3262}, + [5645] = {.lex_state = 331}, + [5646] = {.lex_state = 82}, + [5647] = {.lex_state = 738}, + [5648] = {.lex_state = 350}, + [5649] = {.lex_state = 331}, + [5650] = {.lex_state = 331}, + [5651] = {.lex_state = 801}, + [5652] = {.lex_state = 331}, + [5653] = {.lex_state = 331}, + [5654] = {.lex_state = 331}, + [5655] = {.lex_state = 331}, + [5656] = {.lex_state = 82}, + [5657] = {.lex_state = 331}, + [5658] = {.lex_state = 331}, + [5659] = {.lex_state = 350}, [5660] = {.lex_state = 44}, - [5661] = {.lex_state = 736}, - [5662] = {.lex_state = 817}, - [5663] = {.lex_state = 330}, - [5664] = {.lex_state = 330}, - [5665] = {.lex_state = 330}, - [5666] = {.lex_state = 253, .external_lex_state = 2}, - [5667] = {.lex_state = 817}, - [5668] = {.lex_state = 253, .external_lex_state = 2}, - [5669] = {.lex_state = 330}, - [5670] = {.lex_state = 313}, - [5671] = {.lex_state = 767}, - [5672] = {.lex_state = 253, .external_lex_state = 2}, - [5673] = {.lex_state = 736}, - [5674] = {.lex_state = 777}, - [5675] = {.lex_state = 276}, - [5676] = {.lex_state = 772}, - [5677] = {.lex_state = 313}, - [5678] = {.lex_state = 772}, - [5679] = {.lex_state = 330}, - [5680] = {.lex_state = 321}, - [5681] = {.lex_state = 342}, - [5682] = {.lex_state = 330}, - [5683] = {.lex_state = 772}, - [5684] = {.lex_state = 330}, - [5685] = {.lex_state = 341}, - [5686] = {.lex_state = 253, .external_lex_state = 2}, - [5687] = {.lex_state = 330}, - [5688] = {.lex_state = 330}, - [5689] = {.lex_state = 313}, - [5690] = {.lex_state = 330}, - [5691] = {.lex_state = 330}, - [5692] = {.lex_state = 313}, - [5693] = {.lex_state = 341}, - [5694] = {.lex_state = 307}, - [5695] = {.lex_state = 772}, - [5696] = {.lex_state = 817}, - [5697] = {.lex_state = 775}, - [5698] = {.lex_state = 330}, - [5699] = {.lex_state = 706}, - [5700] = {.lex_state = 330}, - [5701] = {.lex_state = 330}, - [5702] = {.lex_state = 78}, - [5703] = {.lex_state = 330}, - [5704] = {.lex_state = 330}, - [5705] = {.lex_state = 253, .external_lex_state = 2}, - [5706] = {.lex_state = 346}, - [5707] = {.lex_state = 302}, - [5708] = {.lex_state = 44, .external_lex_state = 2}, - [5709] = {.lex_state = 341}, - [5710] = {.lex_state = 330}, - [5711] = {.lex_state = 321}, - [5712] = {.lex_state = 253, .external_lex_state = 2}, - [5713] = {.lex_state = 767}, - [5714] = {.lex_state = 706}, - [5715] = {.lex_state = 772}, - [5716] = {.lex_state = 767}, - [5717] = {.lex_state = 330}, - [5718] = {.lex_state = 817}, - [5719] = {.lex_state = 817}, - [5720] = {.lex_state = 330}, - [5721] = {.lex_state = 329}, - [5722] = {.lex_state = 79}, - [5723] = {.lex_state = 812}, - [5724] = {.lex_state = 346}, - [5725] = {.lex_state = 772}, - [5726] = {.lex_state = 330}, - [5727] = {.lex_state = 330}, - [5728] = {.lex_state = 772}, - [5729] = {.lex_state = 331}, - [5730] = {.lex_state = 330}, - [5731] = {.lex_state = 706}, - [5732] = {.lex_state = 777}, - [5733] = {.lex_state = 777}, - [5734] = {.lex_state = 777}, - [5735] = {.lex_state = 777}, - [5736] = {.lex_state = 777}, - [5737] = {.lex_state = 737}, - [5738] = {.lex_state = 330}, - [5739] = {.lex_state = 330}, - [5740] = {.lex_state = 353}, - [5741] = {.lex_state = 777}, - [5742] = {.lex_state = 777}, - [5743] = {.lex_state = 779}, - [5744] = {.lex_state = 737}, - [5745] = {.lex_state = 330}, - [5746] = {.lex_state = 290}, - [5747] = {.lex_state = 737}, - [5748] = {.lex_state = 737}, - [5749] = {.lex_state = 737}, - [5750] = {.lex_state = 737}, - [5751] = {.lex_state = 348}, - [5752] = {.lex_state = 330}, - [5753] = {.lex_state = 737}, - [5754] = {.lex_state = 775}, - [5755] = {.lex_state = 330}, - [5756] = {.lex_state = 343}, - [5757] = {.lex_state = 737}, - [5758] = {.lex_state = 737}, - [5759] = {.lex_state = 737}, - [5760] = {.lex_state = 322}, - [5761] = {.lex_state = 322}, - [5762] = {.lex_state = 343}, - [5763] = {.lex_state = 330}, - [5764] = {.lex_state = 353}, - [5765] = {.lex_state = 330}, - [5766] = {.lex_state = 777}, - [5767] = {.lex_state = 359}, - [5768] = {.lex_state = 788}, - [5769] = {.lex_state = 736}, - [5770] = {.lex_state = 737}, - [5771] = {.lex_state = 737}, - [5772] = {.lex_state = 737}, - [5773] = {.lex_state = 263}, - [5774] = {.lex_state = 3261}, - [5775] = {.lex_state = 3261}, - [5776] = {.lex_state = 346}, - [5777] = {.lex_state = 263}, - [5778] = {.lex_state = 330}, - [5779] = {.lex_state = 737}, - [5780] = {.lex_state = 317}, - [5781] = {.lex_state = 737}, - [5782] = {.lex_state = 330}, - [5783] = {.lex_state = 777}, - [5784] = {.lex_state = 330}, - [5785] = {.lex_state = 330}, - [5786] = {.lex_state = 378}, - [5787] = {.lex_state = 378}, - [5788] = {.lex_state = 737}, - [5789] = {.lex_state = 737}, - [5790] = {.lex_state = 350}, - [5791] = {.lex_state = 737}, - [5792] = {.lex_state = 378}, - [5793] = {.lex_state = 378}, - [5794] = {.lex_state = 314}, - [5795] = {.lex_state = 777}, - [5796] = {.lex_state = 777}, - [5797] = {.lex_state = 737}, - [5798] = {.lex_state = 263}, - [5799] = {.lex_state = 737}, - [5800] = {.lex_state = 777}, - [5801] = {.lex_state = 777}, - [5802] = {.lex_state = 777}, - [5803] = {.lex_state = 777}, - [5804] = {.lex_state = 300}, - [5805] = {.lex_state = 737}, - [5806] = {.lex_state = 330}, - [5807] = {.lex_state = 348}, - [5808] = {.lex_state = 263}, - [5809] = {.lex_state = 737}, - [5810] = {.lex_state = 737}, - [5811] = {.lex_state = 737}, - [5812] = {.lex_state = 777}, - [5813] = {.lex_state = 788}, - [5814] = {.lex_state = 301}, - [5815] = {.lex_state = 330}, - [5816] = {.lex_state = 321}, - [5817] = {.lex_state = 777}, - [5818] = {.lex_state = 263}, - [5819] = {.lex_state = 781}, - [5820] = {.lex_state = 3261}, - [5821] = {.lex_state = 3261}, - [5822] = {.lex_state = 346}, - [5823] = {.lex_state = 263}, - [5824] = {.lex_state = 737}, - [5825] = {.lex_state = 737}, - [5826] = {.lex_state = 788}, - [5827] = {.lex_state = 788}, - [5828] = {.lex_state = 788}, - [5829] = {.lex_state = 321}, - [5830] = {.lex_state = 736}, - [5831] = {.lex_state = 263}, - [5832] = {.lex_state = 3261}, - [5833] = {.lex_state = 3261}, - [5834] = {.lex_state = 263}, - [5835] = {.lex_state = 737}, - [5836] = {.lex_state = 378}, - [5837] = {.lex_state = 737}, - [5838] = {.lex_state = 777}, - [5839] = {.lex_state = 263}, - [5840] = {.lex_state = 777}, - [5841] = {.lex_state = 3261}, - [5842] = {.lex_state = 3261}, - [5843] = {.lex_state = 263}, - [5844] = {.lex_state = 737}, - [5845] = {.lex_state = 777}, - [5846] = {.lex_state = 737}, - [5847] = {.lex_state = 80}, - [5848] = {.lex_state = 263}, - [5849] = {.lex_state = 3261}, - [5850] = {.lex_state = 3261}, - [5851] = {.lex_state = 263}, - [5852] = {.lex_state = 3261}, - [5853] = {.lex_state = 737}, - [5854] = {.lex_state = 737}, - [5855] = {.lex_state = 737}, - [5856] = {.lex_state = 263}, - [5857] = {.lex_state = 3261}, - [5858] = {.lex_state = 3261}, - [5859] = {.lex_state = 737}, - [5860] = {.lex_state = 737}, - [5861] = {.lex_state = 737}, - [5862] = {.lex_state = 263}, - [5863] = {.lex_state = 3261}, - [5864] = {.lex_state = 3261}, - [5865] = {.lex_state = 263}, - [5866] = {.lex_state = 777}, - [5867] = {.lex_state = 737}, - [5868] = {.lex_state = 737}, - [5869] = {.lex_state = 263}, - [5870] = {.lex_state = 3261}, - [5871] = {.lex_state = 3261}, - [5872] = {.lex_state = 263}, - [5873] = {.lex_state = 737}, - [5874] = {.lex_state = 80}, - [5875] = {.lex_state = 737}, - [5876] = {.lex_state = 777}, - [5877] = {.lex_state = 263}, - [5878] = {.lex_state = 3261}, - [5879] = {.lex_state = 3261}, - [5880] = {.lex_state = 263}, - [5881] = {.lex_state = 737}, - [5882] = {.lex_state = 777}, - [5883] = {.lex_state = 737}, - [5884] = {.lex_state = 777}, - [5885] = {.lex_state = 263}, - [5886] = {.lex_state = 263}, - [5887] = {.lex_state = 737}, - [5888] = {.lex_state = 777}, - [5889] = {.lex_state = 777}, - [5890] = {.lex_state = 777}, - [5891] = {.lex_state = 737}, - [5892] = {.lex_state = 777}, - [5893] = {.lex_state = 777}, - [5894] = {.lex_state = 263}, - [5895] = {.lex_state = 777}, - [5896] = {.lex_state = 263}, - [5897] = {.lex_state = 737}, - [5898] = {.lex_state = 737}, - [5899] = {.lex_state = 788}, - [5900] = {.lex_state = 777}, - [5901] = {.lex_state = 777}, - [5902] = {.lex_state = 263}, - [5903] = {.lex_state = 777}, - [5904] = {.lex_state = 263}, - [5905] = {.lex_state = 737}, - [5906] = {.lex_state = 777}, - [5907] = {.lex_state = 737}, - [5908] = {.lex_state = 777}, - [5909] = {.lex_state = 777}, - [5910] = {.lex_state = 263}, - [5911] = {.lex_state = 263}, - [5912] = {.lex_state = 737}, - [5913] = {.lex_state = 777}, - [5914] = {.lex_state = 737}, - [5915] = {.lex_state = 777}, - [5916] = {.lex_state = 777}, - [5917] = {.lex_state = 263}, - [5918] = {.lex_state = 263}, - [5919] = {.lex_state = 737}, - [5920] = {.lex_state = 777}, - [5921] = {.lex_state = 737}, - [5922] = {.lex_state = 777}, - [5923] = {.lex_state = 737}, - [5924] = {.lex_state = 737}, - [5925] = {.lex_state = 777}, - [5926] = {.lex_state = 3261}, - [5927] = {.lex_state = 276}, - [5928] = {.lex_state = 276}, - [5929] = {.lex_state = 276}, - [5930] = {.lex_state = 343}, - [5931] = {.lex_state = 343}, - [5932] = {.lex_state = 343}, - [5933] = {.lex_state = 284}, - [5934] = {.lex_state = 343}, - [5935] = {.lex_state = 276}, - [5936] = {.lex_state = 276}, - [5937] = {.lex_state = 777}, - [5938] = {.lex_state = 777}, - [5939] = {.lex_state = 777}, - [5940] = {.lex_state = 276}, - [5941] = {.lex_state = 777}, - [5942] = {.lex_state = 777}, - [5943] = {.lex_state = 706}, - [5944] = {.lex_state = 706}, - [5945] = {.lex_state = 706}, - [5946] = {.lex_state = 706}, - [5947] = {.lex_state = 706}, - [5948] = {.lex_state = 330}, - [5949] = {.lex_state = 737}, - [5950] = {.lex_state = 263}, - [5951] = {.lex_state = 737}, - [5952] = {.lex_state = 737}, - [5953] = {.lex_state = 44, .external_lex_state = 2}, - [5954] = {.lex_state = 736}, - [5955] = {.lex_state = 777}, - [5956] = {.lex_state = 263}, - [5957] = {.lex_state = 777}, - [5958] = {.lex_state = 3261}, - [5959] = {.lex_state = 3261}, - [5960] = {.lex_state = 346}, - [5961] = {.lex_state = 263}, - [5962] = {.lex_state = 330}, - [5963] = {.lex_state = 736}, - [5964] = {.lex_state = 736}, - [5965] = {.lex_state = 346}, - [5966] = {.lex_state = 736}, - [5967] = {.lex_state = 263}, - [5968] = {.lex_state = 737}, - [5969] = {.lex_state = 322}, - [5970] = {.lex_state = 322}, - [5971] = {.lex_state = 322}, - [5972] = {.lex_state = 671}, - [5973] = {.lex_state = 384}, - [5974] = {.lex_state = 276}, - [5975] = {.lex_state = 44}, - [5976] = {.lex_state = 384}, - [5977] = {.lex_state = 322}, - [5978] = {.lex_state = 736}, - [5979] = {.lex_state = 81}, - [5980] = {.lex_state = 44}, - [5981] = {.lex_state = 384}, - [5982] = {.lex_state = 737}, - [5983] = {.lex_state = 44}, - [5984] = {.lex_state = 322}, - [5985] = {.lex_state = 384}, - [5986] = {.lex_state = 322}, - [5987] = {.lex_state = 322}, - [5988] = {.lex_state = 384}, - [5989] = {.lex_state = 322}, - [5990] = {.lex_state = 322}, - [5991] = {.lex_state = 384}, - [5992] = {.lex_state = 330}, - [5993] = {.lex_state = 318}, - [5994] = {.lex_state = 738}, - [5995] = {.lex_state = 384}, - [5996] = {.lex_state = 737}, - [5997] = {.lex_state = 330}, - [5998] = {.lex_state = 300}, - [5999] = {.lex_state = 81}, - [6000] = {.lex_state = 384}, - [6001] = {.lex_state = 384}, - [6002] = {.lex_state = 318}, - [6003] = {.lex_state = 330}, - [6004] = {.lex_state = 384}, - [6005] = {.lex_state = 315}, - [6006] = {.lex_state = 330}, - [6007] = {.lex_state = 322}, - [6008] = {.lex_state = 322}, - [6009] = {.lex_state = 384}, - [6010] = {.lex_state = 330}, - [6011] = {.lex_state = 322}, - [6012] = {.lex_state = 44}, - [6013] = {.lex_state = 384}, - [6014] = {.lex_state = 737}, - [6015] = {.lex_state = 737}, - [6016] = {.lex_state = 44}, - [6017] = {.lex_state = 81}, - [6018] = {.lex_state = 322}, - [6019] = {.lex_state = 81}, - [6020] = {.lex_state = 384}, - [6021] = {.lex_state = 330}, - [6022] = {.lex_state = 330}, - [6023] = {.lex_state = 322}, - [6024] = {.lex_state = 384}, - [6025] = {.lex_state = 322}, - [6026] = {.lex_state = 737}, - [6027] = {.lex_state = 322}, - [6028] = {.lex_state = 737}, - [6029] = {.lex_state = 81}, - [6030] = {.lex_state = 349}, - [6031] = {.lex_state = 384}, - [6032] = {.lex_state = 276}, - [6033] = {.lex_state = 83}, - [6034] = {.lex_state = 384}, - [6035] = {.lex_state = 322}, - [6036] = {.lex_state = 322}, - [6037] = {.lex_state = 736}, - [6038] = {.lex_state = 322}, - [6039] = {.lex_state = 322}, - [6040] = {.lex_state = 322}, - [6041] = {.lex_state = 81}, - [6042] = {.lex_state = 81}, - [6043] = {.lex_state = 384}, - [6044] = {.lex_state = 44}, - [6045] = {.lex_state = 330}, - [6046] = {.lex_state = 384}, - [6047] = {.lex_state = 44}, - [6048] = {.lex_state = 738}, - [6049] = {.lex_state = 322}, - [6050] = {.lex_state = 322}, - [6051] = {.lex_state = 315}, - [6052] = {.lex_state = 737}, - [6053] = {.lex_state = 384}, - [6054] = {.lex_state = 322}, - [6055] = {.lex_state = 81}, - [6056] = {.lex_state = 384}, - [6057] = {.lex_state = 738}, - [6058] = {.lex_state = 322}, - [6059] = {.lex_state = 322}, - [6060] = {.lex_state = 349}, - [6061] = {.lex_state = 81}, - [6062] = {.lex_state = 777}, - [6063] = {.lex_state = 384}, - [6064] = {.lex_state = 330}, - [6065] = {.lex_state = 384}, - [6066] = {.lex_state = 330}, - [6067] = {.lex_state = 384}, - [6068] = {.lex_state = 737}, - [6069] = {.lex_state = 330}, - [6070] = {.lex_state = 330}, - [6071] = {.lex_state = 349}, - [6072] = {.lex_state = 384}, - [6073] = {.lex_state = 330}, - [6074] = {.lex_state = 384}, - [6075] = {.lex_state = 330}, - [6076] = {.lex_state = 737}, - [6077] = {.lex_state = 44}, - [6078] = {.lex_state = 330}, - [6079] = {.lex_state = 330}, - [6080] = {.lex_state = 330}, - [6081] = {.lex_state = 330}, - [6082] = {.lex_state = 707}, - [6083] = {.lex_state = 702}, - [6084] = {.lex_state = 288}, - [6085] = {.lex_state = 322}, - [6086] = {.lex_state = 85}, - [6087] = {.lex_state = 85}, - [6088] = {.lex_state = 737}, - [6089] = {.lex_state = 777}, - [6090] = {.lex_state = 322}, - [6091] = {.lex_state = 737}, - [6092] = {.lex_state = 276}, - [6093] = {.lex_state = 330}, - [6094] = {.lex_state = 322}, - [6095] = {.lex_state = 330}, - [6096] = {.lex_state = 85}, - [6097] = {.lex_state = 322}, - [6098] = {.lex_state = 322}, - [6099] = {.lex_state = 360}, - [6100] = {.lex_state = 737}, - [6101] = {.lex_state = 330}, - [6102] = {.lex_state = 322}, - [6103] = {.lex_state = 276}, - [6104] = {.lex_state = 384}, - [6105] = {.lex_state = 322}, - [6106] = {.lex_state = 737}, - [6107] = {.lex_state = 737}, - [6108] = {.lex_state = 384}, - [6109] = {.lex_state = 322}, - [6110] = {.lex_state = 777}, - [6111] = {.lex_state = 330}, - [6112] = {.lex_state = 322}, - [6113] = {.lex_state = 737}, - [6114] = {.lex_state = 322}, - [6115] = {.lex_state = 85}, - [6116] = {.lex_state = 330}, - [6117] = {.lex_state = 330}, - [6118] = {.lex_state = 737}, - [6119] = {.lex_state = 330}, - [6120] = {.lex_state = 276}, - [6121] = {.lex_state = 322}, - [6122] = {.lex_state = 322}, - [6123] = {.lex_state = 349}, - [6124] = {.lex_state = 384}, - [6125] = {.lex_state = 384}, - [6126] = {.lex_state = 330}, - [6127] = {.lex_state = 736}, - [6128] = {.lex_state = 330}, - [6129] = {.lex_state = 322}, - [6130] = {.lex_state = 286}, - [6131] = {.lex_state = 351}, - [6132] = {.lex_state = 321}, - [6133] = {.lex_state = 322}, - [6134] = {.lex_state = 322}, - [6135] = {.lex_state = 349}, - [6136] = {.lex_state = 44}, - [6137] = {.lex_state = 44}, - [6138] = {.lex_state = 44}, - [6139] = {.lex_state = 44}, - [6140] = {.lex_state = 321}, - [6141] = {.lex_state = 321}, - [6142] = {.lex_state = 321}, - [6143] = {.lex_state = 322}, - [6144] = {.lex_state = 321}, - [6145] = {.lex_state = 85}, - [6146] = {.lex_state = 737}, - [6147] = {.lex_state = 737}, - [6148] = {.lex_state = 322}, - [6149] = {.lex_state = 44}, - [6150] = {.lex_state = 44}, - [6151] = {.lex_state = 44}, - [6152] = {.lex_state = 322}, - [6153] = {.lex_state = 322}, - [6154] = {.lex_state = 82}, - [6155] = {.lex_state = 384}, - [6156] = {.lex_state = 321}, - [6157] = {.lex_state = 330}, - [6158] = {.lex_state = 330}, - [6159] = {.lex_state = 384}, - [6160] = {.lex_state = 349}, - [6161] = {.lex_state = 44}, - [6162] = {.lex_state = 44}, - [6163] = {.lex_state = 44}, - [6164] = {.lex_state = 44}, - [6165] = {.lex_state = 44}, - [6166] = {.lex_state = 737}, - [6167] = {.lex_state = 322}, - [6168] = {.lex_state = 737}, - [6169] = {.lex_state = 737}, - [6170] = {.lex_state = 737}, - [6171] = {.lex_state = 330}, - [6172] = {.lex_state = 322}, - [6173] = {.lex_state = 361}, - [6174] = {.lex_state = 322}, - [6175] = {.lex_state = 737}, - [6176] = {.lex_state = 737}, - [6177] = {.lex_state = 384}, - [6178] = {.lex_state = 737}, - [6179] = {.lex_state = 737}, - [6180] = {.lex_state = 330}, - [6181] = {.lex_state = 322}, - [6182] = {.lex_state = 737}, - [6183] = {.lex_state = 737}, - [6184] = {.lex_state = 737}, - [6185] = {.lex_state = 737}, - [6186] = {.lex_state = 322}, - [6187] = {.lex_state = 737}, - [6188] = {.lex_state = 322}, - [6189] = {.lex_state = 737}, - [6190] = {.lex_state = 737}, - [6191] = {.lex_state = 330}, - [6192] = {.lex_state = 322}, - [6193] = {.lex_state = 737}, - [6194] = {.lex_state = 737}, - [6195] = {.lex_state = 330}, - [6196] = {.lex_state = 322}, - [6197] = {.lex_state = 737}, - [6198] = {.lex_state = 737}, - [6199] = {.lex_state = 330}, - [6200] = {.lex_state = 737}, - [6201] = {.lex_state = 737}, - [6202] = {.lex_state = 737}, - [6203] = {.lex_state = 737}, - [6204] = {.lex_state = 737}, - [6205] = {.lex_state = 737}, - [6206] = {.lex_state = 737}, - [6207] = {.lex_state = 737}, - [6208] = {.lex_state = 737}, - [6209] = {.lex_state = 737}, - [6210] = {.lex_state = 737}, - [6211] = {.lex_state = 737}, - [6212] = {.lex_state = 44}, - [6213] = {.lex_state = 44}, - [6214] = {.lex_state = 44}, - [6215] = {.lex_state = 384}, - [6216] = {.lex_state = 44}, - [6217] = {.lex_state = 737}, - [6218] = {.lex_state = 322}, - [6219] = {.lex_state = 800}, - [6220] = {.lex_state = 361}, - [6221] = {.lex_state = 276}, - [6222] = {.lex_state = 322}, - [6223] = {.lex_state = 322}, - [6224] = {.lex_state = 105}, - [6225] = {.lex_state = 262}, - [6226] = {.lex_state = 316}, - [6227] = {.lex_state = 105}, - [6228] = {.lex_state = 319}, - [6229] = {.lex_state = 316}, - [6230] = {.lex_state = 319}, - [6231] = {.lex_state = 316}, - [6232] = {.lex_state = 38}, - [6233] = {.lex_state = 106}, - [6234] = {.lex_state = 105}, - [6235] = {.lex_state = 319}, - [6236] = {.lex_state = 105}, - [6237] = {.lex_state = 81}, - [6238] = {.lex_state = 319}, - [6239] = {.lex_state = 316}, - [6240] = {.lex_state = 737}, - [6241] = {.lex_state = 737}, - [6242] = {.lex_state = 737}, - [6243] = {.lex_state = 737}, - [6244] = {.lex_state = 737}, - [6245] = {.lex_state = 362}, - [6246] = {.lex_state = 105}, - [6247] = {.lex_state = 737}, - [6248] = {.lex_state = 737}, - [6249] = {.lex_state = 737}, - [6250] = {.lex_state = 737}, - [6251] = {.lex_state = 330}, - [6252] = {.lex_state = 105}, - [6253] = {.lex_state = 105}, - [6254] = {.lex_state = 105}, - [6255] = {.lex_state = 737}, - [6256] = {.lex_state = 32}, - [6257] = {.lex_state = 737}, - [6258] = {.lex_state = 105}, - [6259] = {.lex_state = 737}, - [6260] = {.lex_state = 737}, - [6261] = {.lex_state = 737}, - [6262] = {.lex_state = 737}, - [6263] = {.lex_state = 316}, - [6264] = {.lex_state = 737}, - [6265] = {.lex_state = 737}, - [6266] = {.lex_state = 737}, - [6267] = {.lex_state = 737}, - [6268] = {.lex_state = 737}, - [6269] = {.lex_state = 105}, - [6270] = {.lex_state = 737}, - [6271] = {.lex_state = 148}, - [6272] = {.lex_state = 148}, - [6273] = {.lex_state = 148}, - [6274] = {.lex_state = 148}, - [6275] = {.lex_state = 105}, - [6276] = {.lex_state = 105}, - [6277] = {.lex_state = 105}, - [6278] = {.lex_state = 148}, - [6279] = {.lex_state = 148}, - [6280] = {.lex_state = 316}, - [6281] = {.lex_state = 362}, - [6282] = {.lex_state = 362}, - [6283] = {.lex_state = 737}, - [6284] = {.lex_state = 737}, - [6285] = {.lex_state = 737}, - [6286] = {.lex_state = 105}, - [6287] = {.lex_state = 316}, - [6288] = {.lex_state = 737}, - [6289] = {.lex_state = 148}, - [6290] = {.lex_state = 148}, - [6291] = {.lex_state = 148}, - [6292] = {.lex_state = 148}, - [6293] = {.lex_state = 105}, - [6294] = {.lex_state = 105}, - [6295] = {.lex_state = 105}, - [6296] = {.lex_state = 737}, - [6297] = {.lex_state = 262}, - [6298] = {.lex_state = 105}, - [6299] = {.lex_state = 737}, - [6300] = {.lex_state = 105}, - [6301] = {.lex_state = 276}, - [6302] = {.lex_state = 44}, - [6303] = {.lex_state = 148}, - [6304] = {.lex_state = 148}, - [6305] = {.lex_state = 263}, - [6306] = {.lex_state = 105}, - [6307] = {.lex_state = 263}, - [6308] = {.lex_state = 319}, - [6309] = {.lex_state = 276}, - [6310] = {.lex_state = 366}, - [6311] = {.lex_state = 380}, - [6312] = {.lex_state = 376}, - [6313] = {.lex_state = 316}, - [6314] = {.lex_state = 263}, - [6315] = {.lex_state = 737}, - [6316] = {.lex_state = 737}, - [6317] = {.lex_state = 737}, - [6318] = {.lex_state = 737}, - [6319] = {.lex_state = 737}, - [6320] = {.lex_state = 737}, - [6321] = {.lex_state = 737}, - [6322] = {.lex_state = 737}, - [6323] = {.lex_state = 737}, - [6324] = {.lex_state = 737}, - [6325] = {.lex_state = 380}, - [6326] = {.lex_state = 380}, - [6327] = {.lex_state = 737}, - [6328] = {.lex_state = 737}, - [6329] = {.lex_state = 737}, - [6330] = {.lex_state = 737}, - [6331] = {.lex_state = 737}, - [6332] = {.lex_state = 737}, - [6333] = {.lex_state = 38}, - [6334] = {.lex_state = 362}, - [6335] = {.lex_state = 38}, - [6336] = {.lex_state = 321}, - [6337] = {.lex_state = 366}, - [6338] = {.lex_state = 262}, - [6339] = {.lex_state = 382}, + [5661] = {.lex_state = 44}, + [5662] = {.lex_state = 44}, + [5663] = {.lex_state = 44}, + [5664] = {.lex_state = 82}, + [5665] = {.lex_state = 331}, + [5666] = {.lex_state = 739}, + [5667] = {.lex_state = 323}, + [5668] = {.lex_state = 323}, + [5669] = {.lex_state = 323}, + [5670] = {.lex_state = 737}, + [5671] = {.lex_state = 331}, + [5672] = {.lex_state = 277}, + [5673] = {.lex_state = 385}, + [5674] = {.lex_state = 738}, + [5675] = {.lex_state = 323}, + [5676] = {.lex_state = 86}, + [5677] = {.lex_state = 86}, + [5678] = {.lex_state = 385}, + [5679] = {.lex_state = 331}, + [5680] = {.lex_state = 738}, + [5681] = {.lex_state = 331}, + [5682] = {.lex_state = 86}, + [5683] = {.lex_state = 738}, + [5684] = {.lex_state = 323}, + [5685] = {.lex_state = 738}, + [5686] = {.lex_state = 738}, + [5687] = {.lex_state = 738}, + [5688] = {.lex_state = 44}, + [5689] = {.lex_state = 83}, + [5690] = {.lex_state = 778}, + [5691] = {.lex_state = 323}, + [5692] = {.lex_state = 323}, + [5693] = {.lex_state = 739}, + [5694] = {.lex_state = 737}, + [5695] = {.lex_state = 323}, + [5696] = {.lex_state = 778}, + [5697] = {.lex_state = 323}, + [5698] = {.lex_state = 331}, + [5699] = {.lex_state = 331}, + [5700] = {.lex_state = 323}, + [5701] = {.lex_state = 323}, + [5702] = {.lex_state = 362}, + [5703] = {.lex_state = 44}, + [5704] = {.lex_state = 703}, + [5705] = {.lex_state = 277}, + [5706] = {.lex_state = 82}, + [5707] = {.lex_state = 323}, + [5708] = {.lex_state = 323}, + [5709] = {.lex_state = 331}, + [5710] = {.lex_state = 331}, + [5711] = {.lex_state = 738}, + [5712] = {.lex_state = 385}, + [5713] = {.lex_state = 82}, + [5714] = {.lex_state = 361}, + [5715] = {.lex_state = 331}, + [5716] = {.lex_state = 331}, + [5717] = {.lex_state = 331}, + [5718] = {.lex_state = 331}, + [5719] = {.lex_state = 350}, + [5720] = {.lex_state = 331}, + [5721] = {.lex_state = 331}, + [5722] = {.lex_state = 362}, + [5723] = {.lex_state = 86}, + [5724] = {.lex_state = 86}, + [5725] = {.lex_state = 672}, + [5726] = {.lex_state = 331}, + [5727] = {.lex_state = 738}, + [5728] = {.lex_state = 82}, + [5729] = {.lex_state = 323}, + [5730] = {.lex_state = 737}, + [5731] = {.lex_state = 82}, + [5732] = {.lex_state = 323}, + [5733] = {.lex_state = 323}, + [5734] = {.lex_state = 385}, + [5735] = {.lex_state = 323}, + [5736] = {.lex_state = 323}, + [5737] = {.lex_state = 738}, + [5738] = {.lex_state = 44}, + [5739] = {.lex_state = 778}, + [5740] = {.lex_state = 385}, + [5741] = {.lex_state = 350}, + [5742] = {.lex_state = 323}, + [5743] = {.lex_state = 323}, + [5744] = {.lex_state = 708}, + [5745] = {.lex_state = 289}, + [5746] = {.lex_state = 331}, + [5747] = {.lex_state = 352}, + [5748] = {.lex_state = 385}, + [5749] = {.lex_state = 331}, + [5750] = {.lex_state = 323}, + [5751] = {.lex_state = 331}, + [5752] = {.lex_state = 385}, + [5753] = {.lex_state = 323}, + [5754] = {.lex_state = 323}, + [5755] = {.lex_state = 301}, + [5756] = {.lex_state = 385}, + [5757] = {.lex_state = 385}, + [5758] = {.lex_state = 323}, + [5759] = {.lex_state = 323}, + [5760] = {.lex_state = 385}, + [5761] = {.lex_state = 44}, + [5762] = {.lex_state = 44}, + [5763] = {.lex_state = 44}, + [5764] = {.lex_state = 385}, + [5765] = {.lex_state = 331}, + [5766] = {.lex_state = 738}, + [5767] = {.lex_state = 385}, + [5768] = {.lex_state = 738}, + [5769] = {.lex_state = 385}, + [5770] = {.lex_state = 385}, + [5771] = {.lex_state = 385}, + [5772] = {.lex_state = 322}, + [5773] = {.lex_state = 319}, + [5774] = {.lex_state = 44}, + [5775] = {.lex_state = 323}, + [5776] = {.lex_state = 738}, + [5777] = {.lex_state = 385}, + [5778] = {.lex_state = 385}, + [5779] = {.lex_state = 323}, + [5780] = {.lex_state = 350}, + [5781] = {.lex_state = 323}, + [5782] = {.lex_state = 385}, + [5783] = {.lex_state = 323}, + [5784] = {.lex_state = 322}, + [5785] = {.lex_state = 385}, + [5786] = {.lex_state = 331}, + [5787] = {.lex_state = 323}, + [5788] = {.lex_state = 331}, + [5789] = {.lex_state = 385}, + [5790] = {.lex_state = 739}, + [5791] = {.lex_state = 385}, + [5792] = {.lex_state = 385}, + [5793] = {.lex_state = 323}, + [5794] = {.lex_state = 323}, + [5795] = {.lex_state = 385}, + [5796] = {.lex_state = 385}, + [5797] = {.lex_state = 323}, + [5798] = {.lex_state = 323}, + [5799] = {.lex_state = 322}, + [5800] = {.lex_state = 385}, + [5801] = {.lex_state = 385}, + [5802] = {.lex_state = 385}, + [5803] = {.lex_state = 323}, + [5804] = {.lex_state = 385}, + [5805] = {.lex_state = 82}, + [5806] = {.lex_state = 322}, + [5807] = {.lex_state = 385}, + [5808] = {.lex_state = 323}, + [5809] = {.lex_state = 385}, + [5810] = {.lex_state = 738}, + [5811] = {.lex_state = 323}, + [5812] = {.lex_state = 385}, + [5813] = {.lex_state = 323}, + [5814] = {.lex_state = 323}, + [5815] = {.lex_state = 385}, + [5816] = {.lex_state = 331}, + [5817] = {.lex_state = 331}, + [5818] = {.lex_state = 82}, + [5819] = {.lex_state = 331}, + [5820] = {.lex_state = 323}, + [5821] = {.lex_state = 323}, + [5822] = {.lex_state = 323}, + [5823] = {.lex_state = 323}, + [5824] = {.lex_state = 322}, + [5825] = {.lex_state = 323}, + [5826] = {.lex_state = 277}, + [5827] = {.lex_state = 323}, + [5828] = {.lex_state = 323}, + [5829] = {.lex_state = 44}, + [5830] = {.lex_state = 323}, + [5831] = {.lex_state = 323}, + [5832] = {.lex_state = 738}, + [5833] = {.lex_state = 738}, + [5834] = {.lex_state = 323}, + [5835] = {.lex_state = 323}, + [5836] = {.lex_state = 277}, + [5837] = {.lex_state = 323}, + [5838] = {.lex_state = 319}, + [5839] = {.lex_state = 287}, + [5840] = {.lex_state = 350}, + [5841] = {.lex_state = 316}, + [5842] = {.lex_state = 277}, + [5843] = {.lex_state = 277}, + [5844] = {.lex_state = 385}, + [5845] = {.lex_state = 738}, + [5846] = {.lex_state = 323}, + [5847] = {.lex_state = 44}, + [5848] = {.lex_state = 44}, + [5849] = {.lex_state = 44}, + [5850] = {.lex_state = 44}, + [5851] = {.lex_state = 738}, + [5852] = {.lex_state = 316}, + [5853] = {.lex_state = 44}, + [5854] = {.lex_state = 44}, + [5855] = {.lex_state = 44}, + [5856] = {.lex_state = 44}, + [5857] = {.lex_state = 323}, + [5858] = {.lex_state = 323}, + [5859] = {.lex_state = 738}, + [5860] = {.lex_state = 84}, + [5861] = {.lex_state = 738}, + [5862] = {.lex_state = 738}, + [5863] = {.lex_state = 323}, + [5864] = {.lex_state = 323}, + [5865] = {.lex_state = 738}, + [5866] = {.lex_state = 738}, + [5867] = {.lex_state = 738}, + [5868] = {.lex_state = 738}, + [5869] = {.lex_state = 738}, + [5870] = {.lex_state = 738}, + [5871] = {.lex_state = 738}, + [5872] = {.lex_state = 738}, + [5873] = {.lex_state = 738}, + [5874] = {.lex_state = 738}, + [5875] = {.lex_state = 738}, + [5876] = {.lex_state = 738}, + [5877] = {.lex_state = 44}, + [5878] = {.lex_state = 44}, + [5879] = {.lex_state = 44}, + [5880] = {.lex_state = 331}, + [5881] = {.lex_state = 44}, + [5882] = {.lex_state = 322}, + [5883] = {.lex_state = 106}, + [5884] = {.lex_state = 366}, + [5885] = {.lex_state = 738}, + [5886] = {.lex_state = 738}, + [5887] = {.lex_state = 738}, + [5888] = {.lex_state = 149}, + [5889] = {.lex_state = 149}, + [5890] = {.lex_state = 363}, + [5891] = {.lex_state = 738}, + [5892] = {.lex_state = 331}, + [5893] = {.lex_state = 364}, + [5894] = {.lex_state = 331}, + [5895] = {.lex_state = 331}, + [5896] = {.lex_state = 331}, + [5897] = {.lex_state = 364}, + [5898] = {.lex_state = 738}, + [5899] = {.lex_state = 738}, + [5900] = {.lex_state = 738}, + [5901] = {.lex_state = 322}, + [5902] = {.lex_state = 738}, + [5903] = {.lex_state = 738}, + [5904] = {.lex_state = 149}, + [5905] = {.lex_state = 317}, + [5906] = {.lex_state = 738}, + [5907] = {.lex_state = 738}, + [5908] = {.lex_state = 263}, + [5909] = {.lex_state = 317}, + [5910] = {.lex_state = 38}, + [5911] = {.lex_state = 738}, + [5912] = {.lex_state = 263}, + [5913] = {.lex_state = 363}, + [5914] = {.lex_state = 263}, + [5915] = {.lex_state = 738}, + [5916] = {.lex_state = 738}, + [5917] = {.lex_state = 350}, + [5918] = {.lex_state = 738}, + [5919] = {.lex_state = 350}, + [5920] = {.lex_state = 363}, + [5921] = {.lex_state = 381}, + [5922] = {.lex_state = 738}, + [5923] = {.lex_state = 331}, + [5924] = {.lex_state = 738}, + [5925] = {.lex_state = 331}, + [5926] = {.lex_state = 149}, + [5927] = {.lex_state = 738}, + [5928] = {.lex_state = 106}, + [5929] = {.lex_state = 317}, + [5930] = {.lex_state = 363}, + [5931] = {.lex_state = 367}, + [5932] = {.lex_state = 738}, + [5933] = {.lex_state = 739}, + [5934] = {.lex_state = 263}, + [5935] = {.lex_state = 331}, + [5936] = {.lex_state = 738}, + [5937] = {.lex_state = 738}, + [5938] = {.lex_state = 381}, + [5939] = {.lex_state = 331}, + [5940] = {.lex_state = 317}, + [5941] = {.lex_state = 331}, + [5942] = {.lex_state = 331}, + [5943] = {.lex_state = 263}, + [5944] = {.lex_state = 708}, + [5945] = {.lex_state = 708}, + [5946] = {.lex_state = 38}, + [5947] = {.lex_state = 708}, + [5948] = {.lex_state = 106}, + [5949] = {.lex_state = 44}, + [5950] = {.lex_state = 106}, + [5951] = {.lex_state = 106}, + [5952] = {.lex_state = 106}, + [5953] = {.lex_state = 106}, + [5954] = {.lex_state = 738}, + [5955] = {.lex_state = 738}, + [5956] = {.lex_state = 738}, + [5957] = {.lex_state = 149}, + [5958] = {.lex_state = 738}, + [5959] = {.lex_state = 106}, + [5960] = {.lex_state = 44}, + [5961] = {.lex_state = 106}, + [5962] = {.lex_state = 149}, + [5963] = {.lex_state = 367}, + [5964] = {.lex_state = 263}, + [5965] = {.lex_state = 331}, + [5966] = {.lex_state = 149}, + [5967] = {.lex_state = 738}, + [5968] = {.lex_state = 738}, + [5969] = {.lex_state = 263}, + [5970] = {.lex_state = 738}, + [5971] = {.lex_state = 738}, + [5972] = {.lex_state = 149}, + [5973] = {.lex_state = 738}, + [5974] = {.lex_state = 331}, + [5975] = {.lex_state = 106}, + [5976] = {.lex_state = 106}, + [5977] = {.lex_state = 106}, + [5978] = {.lex_state = 106}, + [5979] = {.lex_state = 367}, + [5980] = {.lex_state = 331}, + [5981] = {.lex_state = 263}, + [5982] = {.lex_state = 367}, + [5983] = {.lex_state = 331}, + [5984] = {.lex_state = 263}, + [5985] = {.lex_state = 738}, + [5986] = {.lex_state = 263}, + [5987] = {.lex_state = 331}, + [5988] = {.lex_state = 106}, + [5989] = {.lex_state = 106}, + [5990] = {.lex_state = 106}, + [5991] = {.lex_state = 106}, + [5992] = {.lex_state = 738}, + [5993] = {.lex_state = 331}, + [5994] = {.lex_state = 331}, + [5995] = {.lex_state = 367}, + [5996] = {.lex_state = 263}, + [5997] = {.lex_state = 331}, + [5998] = {.lex_state = 331}, + [5999] = {.lex_state = 738}, + [6000] = {.lex_state = 106}, + [6001] = {.lex_state = 263}, + [6002] = {.lex_state = 331}, + [6003] = {.lex_state = 367}, + [6004] = {.lex_state = 331}, + [6005] = {.lex_state = 106}, + [6006] = {.lex_state = 331}, + [6007] = {.lex_state = 106}, + [6008] = {.lex_state = 106}, + [6009] = {.lex_state = 106}, + [6010] = {.lex_state = 331}, + [6011] = {.lex_state = 320}, + [6012] = {.lex_state = 367}, + [6013] = {.lex_state = 323}, + [6014] = {.lex_state = 263}, + [6015] = {.lex_state = 738}, + [6016] = {.lex_state = 263}, + [6017] = {.lex_state = 331}, + [6018] = {.lex_state = 263}, + [6019] = {.lex_state = 331}, + [6020] = {.lex_state = 738}, + [6021] = {.lex_state = 738}, + [6022] = {.lex_state = 331}, + [6023] = {.lex_state = 106}, + [6024] = {.lex_state = 331}, + [6025] = {.lex_state = 106}, + [6026] = {.lex_state = 106}, + [6027] = {.lex_state = 106}, + [6028] = {.lex_state = 263}, + [6029] = {.lex_state = 738}, + [6030] = {.lex_state = 738}, + [6031] = {.lex_state = 367}, + [6032] = {.lex_state = 263}, + [6033] = {.lex_state = 738}, + [6034] = {.lex_state = 277}, + [6035] = {.lex_state = 263}, + [6036] = {.lex_state = 738}, + [6037] = {.lex_state = 331}, + [6038] = {.lex_state = 331}, + [6039] = {.lex_state = 738}, + [6040] = {.lex_state = 377}, + [6041] = {.lex_state = 106}, + [6042] = {.lex_state = 106}, + [6043] = {.lex_state = 106}, + [6044] = {.lex_state = 106}, + [6045] = {.lex_state = 331}, + [6046] = {.lex_state = 367}, + [6047] = {.lex_state = 263}, + [6048] = {.lex_state = 331}, + [6049] = {.lex_state = 738}, + [6050] = {.lex_state = 738}, + [6051] = {.lex_state = 331}, + [6052] = {.lex_state = 331}, + [6053] = {.lex_state = 331}, + [6054] = {.lex_state = 263}, + [6055] = {.lex_state = 331}, + [6056] = {.lex_state = 331}, + [6057] = {.lex_state = 106}, + [6058] = {.lex_state = 738}, + [6059] = {.lex_state = 106}, + [6060] = {.lex_state = 106}, + [6061] = {.lex_state = 106}, + [6062] = {.lex_state = 381}, + [6063] = {.lex_state = 367}, + [6064] = {.lex_state = 263}, + [6065] = {.lex_state = 377}, + [6066] = {.lex_state = 331}, + [6067] = {.lex_state = 277}, + [6068] = {.lex_state = 263}, + [6069] = {.lex_state = 331}, + [6070] = {.lex_state = 263}, + [6071] = {.lex_state = 331}, + [6072] = {.lex_state = 331}, + [6073] = {.lex_state = 738}, + [6074] = {.lex_state = 106}, + [6075] = {.lex_state = 106}, + [6076] = {.lex_state = 106}, + [6077] = {.lex_state = 106}, + [6078] = {.lex_state = 367}, + [6079] = {.lex_state = 263}, + [6080] = {.lex_state = 738}, + [6081] = {.lex_state = 738}, + [6082] = {.lex_state = 263}, + [6083] = {.lex_state = 38}, + [6084] = {.lex_state = 106}, + [6085] = {.lex_state = 738}, + [6086] = {.lex_state = 331}, + [6087] = {.lex_state = 106}, + [6088] = {.lex_state = 106}, + [6089] = {.lex_state = 38}, + [6090] = {.lex_state = 106}, + [6091] = {.lex_state = 738}, + [6092] = {.lex_state = 738}, + [6093] = {.lex_state = 738}, + [6094] = {.lex_state = 367}, + [6095] = {.lex_state = 106}, + [6096] = {.lex_state = 263}, + [6097] = {.lex_state = 331}, + [6098] = {.lex_state = 738}, + [6099] = {.lex_state = 263}, + [6100] = {.lex_state = 331}, + [6101] = {.lex_state = 320}, + [6102] = {.lex_state = 106}, + [6103] = {.lex_state = 106}, + [6104] = {.lex_state = 106}, + [6105] = {.lex_state = 106}, + [6106] = {.lex_state = 320}, + [6107] = {.lex_state = 738}, + [6108] = {.lex_state = 738}, + [6109] = {.lex_state = 367}, + [6110] = {.lex_state = 106}, + [6111] = {.lex_state = 263}, + [6112] = {.lex_state = 331}, + [6113] = {.lex_state = 331}, + [6114] = {.lex_state = 263}, + [6115] = {.lex_state = 331}, + [6116] = {.lex_state = 106}, + [6117] = {.lex_state = 106}, + [6118] = {.lex_state = 106}, + [6119] = {.lex_state = 106}, + [6120] = {.lex_state = 331}, + [6121] = {.lex_state = 331}, + [6122] = {.lex_state = 367}, + [6123] = {.lex_state = 263}, + [6124] = {.lex_state = 331}, + [6125] = {.lex_state = 331}, + [6126] = {.lex_state = 263}, + [6127] = {.lex_state = 331}, + [6128] = {.lex_state = 331}, + [6129] = {.lex_state = 106}, + [6130] = {.lex_state = 106}, + [6131] = {.lex_state = 106}, + [6132] = {.lex_state = 106}, + [6133] = {.lex_state = 331}, + [6134] = {.lex_state = 367}, + [6135] = {.lex_state = 263}, + [6136] = {.lex_state = 331}, + [6137] = {.lex_state = 331}, + [6138] = {.lex_state = 331}, + [6139] = {.lex_state = 263}, + [6140] = {.lex_state = 149}, + [6141] = {.lex_state = 381}, + [6142] = {.lex_state = 106}, + [6143] = {.lex_state = 106}, + [6144] = {.lex_state = 106}, + [6145] = {.lex_state = 106}, + [6146] = {.lex_state = 367}, + [6147] = {.lex_state = 263}, + [6148] = {.lex_state = 106}, + [6149] = {.lex_state = 263}, + [6150] = {.lex_state = 106}, + [6151] = {.lex_state = 738}, + [6152] = {.lex_state = 106}, + [6153] = {.lex_state = 106}, + [6154] = {.lex_state = 367}, + [6155] = {.lex_state = 263}, + [6156] = {.lex_state = 263}, + [6157] = {.lex_state = 320}, + [6158] = {.lex_state = 367}, + [6159] = {.lex_state = 263}, + [6160] = {.lex_state = 263}, + [6161] = {.lex_state = 322}, + [6162] = {.lex_state = 322}, + [6163] = {.lex_state = 367}, + [6164] = {.lex_state = 263}, + [6165] = {.lex_state = 263}, + [6166] = {.lex_state = 367}, + [6167] = {.lex_state = 263}, + [6168] = {.lex_state = 381}, + [6169] = {.lex_state = 263}, + [6170] = {.lex_state = 367}, + [6171] = {.lex_state = 263}, + [6172] = {.lex_state = 263}, + [6173] = {.lex_state = 149}, + [6174] = {.lex_state = 367}, + [6175] = {.lex_state = 263}, + [6176] = {.lex_state = 263}, + [6177] = {.lex_state = 38}, + [6178] = {.lex_state = 367}, + [6179] = {.lex_state = 263}, + [6180] = {.lex_state = 263}, + [6181] = {.lex_state = 367}, + [6182] = {.lex_state = 263}, + [6183] = {.lex_state = 263}, + [6184] = {.lex_state = 38}, + [6185] = {.lex_state = 367}, + [6186] = {.lex_state = 263}, + [6187] = {.lex_state = 263}, + [6188] = {.lex_state = 367}, + [6189] = {.lex_state = 263}, + [6190] = {.lex_state = 263}, + [6191] = {.lex_state = 738}, + [6192] = {.lex_state = 367}, + [6193] = {.lex_state = 263}, + [6194] = {.lex_state = 263}, + [6195] = {.lex_state = 367}, + [6196] = {.lex_state = 263}, + [6197] = {.lex_state = 263}, + [6198] = {.lex_state = 367}, + [6199] = {.lex_state = 263}, + [6200] = {.lex_state = 263}, + [6201] = {.lex_state = 367}, + [6202] = {.lex_state = 263}, + [6203] = {.lex_state = 263}, + [6204] = {.lex_state = 367}, + [6205] = {.lex_state = 263}, + [6206] = {.lex_state = 263}, + [6207] = {.lex_state = 263}, + [6208] = {.lex_state = 263}, + [6209] = {.lex_state = 263}, + [6210] = {.lex_state = 263}, + [6211] = {.lex_state = 263}, + [6212] = {.lex_state = 263}, + [6213] = {.lex_state = 263}, + [6214] = {.lex_state = 263}, + [6215] = {.lex_state = 263}, + [6216] = {.lex_state = 263}, + [6217] = {.lex_state = 263}, + [6218] = {.lex_state = 263}, + [6219] = {.lex_state = 263}, + [6220] = {.lex_state = 263}, + [6221] = {.lex_state = 367}, + [6222] = {.lex_state = 383}, + [6223] = {.lex_state = 738}, + [6224] = {.lex_state = 738}, + [6225] = {.lex_state = 738}, + [6226] = {.lex_state = 738}, + [6227] = {.lex_state = 708}, + [6228] = {.lex_state = 738}, + [6229] = {.lex_state = 317}, + [6230] = {.lex_state = 149}, + [6231] = {.lex_state = 738}, + [6232] = {.lex_state = 383}, + [6233] = {.lex_state = 149}, + [6234] = {.lex_state = 320}, + [6235] = {.lex_state = 106}, + [6236] = {.lex_state = 738}, + [6237] = {.lex_state = 738}, + [6238] = {.lex_state = 323}, + [6239] = {.lex_state = 738}, + [6240] = {.lex_state = 738}, + [6241] = {.lex_state = 106}, + [6242] = {.lex_state = 106}, + [6243] = {.lex_state = 738}, + [6244] = {.lex_state = 738}, + [6245] = {.lex_state = 106}, + [6246] = {.lex_state = 106}, + [6247] = {.lex_state = 738}, + [6248] = {.lex_state = 738}, + [6249] = {.lex_state = 106}, + [6250] = {.lex_state = 106}, + [6251] = {.lex_state = 738}, + [6252] = {.lex_state = 317}, + [6253] = {.lex_state = 363}, + [6254] = {.lex_state = 363}, + [6255] = {.lex_state = 738}, + [6256] = {.lex_state = 738}, + [6257] = {.lex_state = 320}, + [6258] = {.lex_state = 149}, + [6259] = {.lex_state = 738}, + [6260] = {.lex_state = 738}, + [6261] = {.lex_state = 738}, + [6262] = {.lex_state = 738}, + [6263] = {.lex_state = 149}, + [6264] = {.lex_state = 106}, + [6265] = {.lex_state = 738}, + [6266] = {.lex_state = 107}, + [6267] = {.lex_state = 738}, + [6268] = {.lex_state = 317}, + [6269] = {.lex_state = 738}, + [6270] = {.lex_state = 738}, + [6271] = {.lex_state = 738}, + [6272] = {.lex_state = 738}, + [6273] = {.lex_state = 738}, + [6274] = {.lex_state = 738}, + [6275] = {.lex_state = 738}, + [6276] = {.lex_state = 323}, + [6277] = {.lex_state = 106}, + [6278] = {.lex_state = 106}, + [6279] = {.lex_state = 82}, + [6280] = {.lex_state = 106}, + [6281] = {.lex_state = 738}, + [6282] = {.lex_state = 738}, + [6283] = {.lex_state = 738}, + [6284] = {.lex_state = 739}, + [6285] = {.lex_state = 320}, + [6286] = {.lex_state = 106}, + [6287] = {.lex_state = 106}, + [6288] = {.lex_state = 106}, + [6289] = {.lex_state = 106}, + [6290] = {.lex_state = 367}, + [6291] = {.lex_state = 738}, + [6292] = {.lex_state = 708}, + [6293] = {.lex_state = 353}, + [6294] = {.lex_state = 264}, + [6295] = {.lex_state = 106}, + [6296] = {.lex_state = 106}, + [6297] = {.lex_state = 738}, + [6298] = {.lex_state = 738}, + [6299] = {.lex_state = 317}, + [6300] = {.lex_state = 708}, + [6301] = {.lex_state = 264}, + [6302] = {.lex_state = 32}, + [6303] = {.lex_state = 383}, + [6304] = {.lex_state = 363}, + [6305] = {.lex_state = 367}, + [6306] = {.lex_state = 363}, + [6307] = {.lex_state = 738}, + [6308] = {.lex_state = 670}, + [6309] = {.lex_state = 149}, + [6310] = {.lex_state = 149}, + [6311] = {.lex_state = 264}, + [6312] = {.lex_state = 149}, + [6313] = {.lex_state = 149}, + [6314] = {.lex_state = 106}, + [6315] = {.lex_state = 320}, + [6316] = {.lex_state = 149}, + [6317] = {.lex_state = 149}, + [6318] = {.lex_state = 106}, + [6319] = {.lex_state = 738}, + [6320] = {.lex_state = 738}, + [6321] = {.lex_state = 738}, + [6322] = {.lex_state = 363}, + [6323] = {.lex_state = 738}, + [6324] = {.lex_state = 383}, + [6325] = {.lex_state = 738}, + [6326] = {.lex_state = 377}, + [6327] = {.lex_state = 738}, + [6328] = {.lex_state = 738}, + [6329] = {.lex_state = 708}, + [6330] = {.lex_state = 738}, + [6331] = {.lex_state = 320}, + [6332] = {.lex_state = 363}, + [6333] = {.lex_state = 738}, + [6334] = {.lex_state = 149}, + [6335] = {.lex_state = 149}, + [6336] = {.lex_state = 149}, + [6337] = {.lex_state = 149}, + [6338] = {.lex_state = 44}, + [6339] = {.lex_state = 738}, [6340] = {.lex_state = 738}, - [6341] = {.lex_state = 262}, - [6342] = {.lex_state = 382}, - [6343] = {.lex_state = 382}, - [6344] = {.lex_state = 737}, - [6345] = {.lex_state = 737}, - [6346] = {.lex_state = 105}, - [6347] = {.lex_state = 105}, - [6348] = {.lex_state = 105}, - [6349] = {.lex_state = 105}, - [6350] = {.lex_state = 105}, - [6351] = {.lex_state = 105}, - [6352] = {.lex_state = 105}, - [6353] = {.lex_state = 105}, - [6354] = {.lex_state = 737}, - [6355] = {.lex_state = 737}, - [6356] = {.lex_state = 330}, - [6357] = {.lex_state = 148}, - [6358] = {.lex_state = 330}, - [6359] = {.lex_state = 148}, - [6360] = {.lex_state = 737}, - [6361] = {.lex_state = 737}, - [6362] = {.lex_state = 737}, - [6363] = {.lex_state = 737}, - [6364] = {.lex_state = 38}, - [6365] = {.lex_state = 737}, - [6366] = {.lex_state = 737}, - [6367] = {.lex_state = 737}, - [6368] = {.lex_state = 737}, - [6369] = {.lex_state = 322}, - [6370] = {.lex_state = 737}, - [6371] = {.lex_state = 366}, - [6372] = {.lex_state = 262}, - [6373] = {.lex_state = 737}, - [6374] = {.lex_state = 105}, - [6375] = {.lex_state = 105}, - [6376] = {.lex_state = 362}, - [6377] = {.lex_state = 262}, - [6378] = {.lex_state = 105}, - [6379] = {.lex_state = 737}, - [6380] = {.lex_state = 707}, - [6381] = {.lex_state = 737}, + [6341] = {.lex_state = 738}, + [6342] = {.lex_state = 32}, + [6343] = {.lex_state = 738}, + [6344] = {.lex_state = 377}, + [6345] = {.lex_state = 377}, + [6346] = {.lex_state = 738}, + [6347] = {.lex_state = 738}, + [6348] = {.lex_state = 738}, + [6349] = {.lex_state = 739}, + [6350] = {.lex_state = 738}, + [6351] = {.lex_state = 738}, + [6352] = {.lex_state = 738}, + [6353] = {.lex_state = 738}, + [6354] = {.lex_state = 317}, + [6355] = {.lex_state = 738}, + [6356] = {.lex_state = 738}, + [6357] = {.lex_state = 738}, + [6358] = {.lex_state = 738}, + [6359] = {.lex_state = 738}, + [6360] = {.lex_state = 738}, + [6361] = {.lex_state = 738}, + [6362] = {.lex_state = 738}, + [6363] = {.lex_state = 383}, + [6364] = {.lex_state = 44}, + [6365] = {.lex_state = 738}, + [6366] = {.lex_state = 106}, + [6367] = {.lex_state = 738}, + [6368] = {.lex_state = 738}, + [6369] = {.lex_state = 738}, + [6370] = {.lex_state = 738}, + [6371] = {.lex_state = 106}, + [6372] = {.lex_state = 735}, + [6373] = {.lex_state = 106}, + [6374] = {.lex_state = 321}, + [6375] = {.lex_state = 149}, + [6376] = {.lex_state = 106}, + [6377] = {.lex_state = 738}, + [6378] = {.lex_state = 106}, + [6379] = {.lex_state = 106}, + [6380] = {.lex_state = 106}, + [6381] = {.lex_state = 380}, [6382] = {.lex_state = 321}, - [6383] = {.lex_state = 321}, - [6384] = {.lex_state = 105}, - [6385] = {.lex_state = 105}, - [6386] = {.lex_state = 105}, - [6387] = {.lex_state = 105}, - [6388] = {.lex_state = 105}, - [6389] = {.lex_state = 105}, - [6390] = {.lex_state = 105}, - [6391] = {.lex_state = 105}, - [6392] = {.lex_state = 737}, - [6393] = {.lex_state = 319}, - [6394] = {.lex_state = 737}, - [6395] = {.lex_state = 737}, - [6396] = {.lex_state = 366}, - [6397] = {.lex_state = 330}, - [6398] = {.lex_state = 262}, - [6399] = {.lex_state = 319}, - [6400] = {.lex_state = 737}, - [6401] = {.lex_state = 330}, - [6402] = {.lex_state = 737}, - [6403] = {.lex_state = 382}, - [6404] = {.lex_state = 330}, - [6405] = {.lex_state = 262}, - [6406] = {.lex_state = 737}, - [6407] = {.lex_state = 330}, - [6408] = {.lex_state = 737}, - [6409] = {.lex_state = 737}, - [6410] = {.lex_state = 376}, - [6411] = {.lex_state = 737}, - [6412] = {.lex_state = 737}, - [6413] = {.lex_state = 105}, - [6414] = {.lex_state = 105}, - [6415] = {.lex_state = 105}, - [6416] = {.lex_state = 105}, - [6417] = {.lex_state = 105}, - [6418] = {.lex_state = 105}, - [6419] = {.lex_state = 105}, - [6420] = {.lex_state = 105}, - [6421] = {.lex_state = 38}, - [6422] = {.lex_state = 352}, - [6423] = {.lex_state = 366}, - [6424] = {.lex_state = 262}, - [6425] = {.lex_state = 707}, - [6426] = {.lex_state = 262}, - [6427] = {.lex_state = 349}, - [6428] = {.lex_state = 105}, - [6429] = {.lex_state = 105}, - [6430] = {.lex_state = 105}, - [6431] = {.lex_state = 105}, - [6432] = {.lex_state = 105}, - [6433] = {.lex_state = 105}, - [6434] = {.lex_state = 105}, - [6435] = {.lex_state = 105}, - [6436] = {.lex_state = 737}, - [6437] = {.lex_state = 319}, - [6438] = {.lex_state = 737}, - [6439] = {.lex_state = 737}, - [6440] = {.lex_state = 366}, - [6441] = {.lex_state = 737}, - [6442] = {.lex_state = 262}, - [6443] = {.lex_state = 737}, - [6444] = {.lex_state = 330}, - [6445] = {.lex_state = 262}, - [6446] = {.lex_state = 148}, - [6447] = {.lex_state = 376}, - [6448] = {.lex_state = 376}, - [6449] = {.lex_state = 330}, - [6450] = {.lex_state = 330}, - [6451] = {.lex_state = 330}, - [6452] = {.lex_state = 330}, - [6453] = {.lex_state = 330}, - [6454] = {.lex_state = 330}, - [6455] = {.lex_state = 105}, - [6456] = {.lex_state = 105}, - [6457] = {.lex_state = 105}, - [6458] = {.lex_state = 105}, - [6459] = {.lex_state = 105}, - [6460] = {.lex_state = 105}, - [6461] = {.lex_state = 105}, - [6462] = {.lex_state = 105}, - [6463] = {.lex_state = 737}, - [6464] = {.lex_state = 737}, - [6465] = {.lex_state = 366}, - [6466] = {.lex_state = 262}, - [6467] = {.lex_state = 737}, - [6468] = {.lex_state = 262}, - [6469] = {.lex_state = 319}, - [6470] = {.lex_state = 737}, - [6471] = {.lex_state = 737}, - [6472] = {.lex_state = 105}, - [6473] = {.lex_state = 105}, - [6474] = {.lex_state = 105}, - [6475] = {.lex_state = 105}, - [6476] = {.lex_state = 105}, - [6477] = {.lex_state = 105}, - [6478] = {.lex_state = 105}, - [6479] = {.lex_state = 105}, - [6480] = {.lex_state = 105}, - [6481] = {.lex_state = 737}, - [6482] = {.lex_state = 737}, - [6483] = {.lex_state = 330}, - [6484] = {.lex_state = 366}, - [6485] = {.lex_state = 330}, - [6486] = {.lex_state = 262}, - [6487] = {.lex_state = 330}, - [6488] = {.lex_state = 330}, - [6489] = {.lex_state = 262}, - [6490] = {.lex_state = 330}, - [6491] = {.lex_state = 737}, - [6492] = {.lex_state = 330}, - [6493] = {.lex_state = 330}, - [6494] = {.lex_state = 330}, - [6495] = {.lex_state = 148}, - [6496] = {.lex_state = 148}, - [6497] = {.lex_state = 105}, - [6498] = {.lex_state = 105}, - [6499] = {.lex_state = 105}, - [6500] = {.lex_state = 105}, - [6501] = {.lex_state = 105}, - [6502] = {.lex_state = 105}, - [6503] = {.lex_state = 105}, - [6504] = {.lex_state = 105}, - [6505] = {.lex_state = 105}, - [6506] = {.lex_state = 366}, - [6507] = {.lex_state = 262}, - [6508] = {.lex_state = 148}, - [6509] = {.lex_state = 148}, + [6383] = {.lex_state = 738}, + [6384] = {.lex_state = 738}, + [6385] = {.lex_state = 106}, + [6386] = {.lex_state = 106}, + [6387] = {.lex_state = 106}, + [6388] = {.lex_state = 263}, + [6389] = {.lex_state = 106}, + [6390] = {.lex_state = 321}, + [6391] = {.lex_state = 738}, + [6392] = {.lex_state = 149}, + [6393] = {.lex_state = 277}, + [6394] = {.lex_state = 106}, + [6395] = {.lex_state = 106}, + [6396] = {.lex_state = 106}, + [6397] = {.lex_state = 277}, + [6398] = {.lex_state = 106}, + [6399] = {.lex_state = 106}, + [6400] = {.lex_state = 106}, + [6401] = {.lex_state = 738}, + [6402] = {.lex_state = 106}, + [6403] = {.lex_state = 106}, + [6404] = {.lex_state = 321}, + [6405] = {.lex_state = 106}, + [6406] = {.lex_state = 106}, + [6407] = {.lex_state = 380}, + [6408] = {.lex_state = 321}, + [6409] = {.lex_state = 738}, + [6410] = {.lex_state = 106}, + [6411] = {.lex_state = 106}, + [6412] = {.lex_state = 738}, + [6413] = {.lex_state = 106}, + [6414] = {.lex_state = 738}, + [6415] = {.lex_state = 738}, + [6416] = {.lex_state = 737}, + [6417] = {.lex_state = 106}, + [6418] = {.lex_state = 738}, + [6419] = {.lex_state = 106}, + [6420] = {.lex_state = 106}, + [6421] = {.lex_state = 149}, + [6422] = {.lex_state = 106}, + [6423] = {.lex_state = 321}, + [6424] = {.lex_state = 738}, + [6425] = {.lex_state = 738}, + [6426] = {.lex_state = 380}, + [6427] = {.lex_state = 106}, + [6428] = {.lex_state = 738}, + [6429] = {.lex_state = 738}, + [6430] = {.lex_state = 380}, + [6431] = {.lex_state = 321}, + [6432] = {.lex_state = 106}, + [6433] = {.lex_state = 106}, + [6434] = {.lex_state = 738}, + [6435] = {.lex_state = 738}, + [6436] = {.lex_state = 106}, + [6437] = {.lex_state = 106}, + [6438] = {.lex_state = 106}, + [6439] = {.lex_state = 321}, + [6440] = {.lex_state = 738}, + [6441] = {.lex_state = 106}, + [6442] = {.lex_state = 738}, + [6443] = {.lex_state = 738}, + [6444] = {.lex_state = 738}, + [6445] = {.lex_state = 106}, + [6446] = {.lex_state = 378}, + [6447] = {.lex_state = 321}, + [6448] = {.lex_state = 738}, + [6449] = {.lex_state = 106}, + [6450] = {.lex_state = 106}, + [6451] = {.lex_state = 106}, + [6452] = {.lex_state = 106}, + [6453] = {.lex_state = 106}, + [6454] = {.lex_state = 380}, + [6455] = {.lex_state = 321}, + [6456] = {.lex_state = 321}, + [6457] = {.lex_state = 106}, + [6458] = {.lex_state = 106}, + [6459] = {.lex_state = 106}, + [6460] = {.lex_state = 106}, + [6461] = {.lex_state = 365}, + [6462] = {.lex_state = 106}, + [6463] = {.lex_state = 738}, + [6464] = {.lex_state = 106}, + [6465] = {.lex_state = 106}, + [6466] = {.lex_state = 321}, + [6467] = {.lex_state = 738}, + [6468] = {.lex_state = 149}, + [6469] = {.lex_state = 106}, + [6470] = {.lex_state = 106}, + [6471] = {.lex_state = 359}, + [6472] = {.lex_state = 321}, + [6473] = {.lex_state = 225}, + [6474] = {.lex_state = 106}, + [6475] = {.lex_state = 106}, + [6476] = {.lex_state = 106}, + [6477] = {.lex_state = 382}, + [6478] = {.lex_state = 64}, + [6479] = {.lex_state = 384}, + [6480] = {.lex_state = 106}, + [6481] = {.lex_state = 106}, + [6482] = {.lex_state = 738}, + [6483] = {.lex_state = 738}, + [6484] = {.lex_state = 369}, + [6485] = {.lex_state = 321}, + [6486] = {.lex_state = 737}, + [6487] = {.lex_state = 106}, + [6488] = {.lex_state = 106}, + [6489] = {.lex_state = 321}, + [6490] = {.lex_state = 149}, + [6491] = {.lex_state = 106}, + [6492] = {.lex_state = 106}, + [6493] = {.lex_state = 331}, + [6494] = {.lex_state = 106}, + [6495] = {.lex_state = 106}, + [6496] = {.lex_state = 106}, + [6497] = {.lex_state = 149}, + [6498] = {.lex_state = 106}, + [6499] = {.lex_state = 737}, + [6500] = {.lex_state = 321}, + [6501] = {.lex_state = 106}, + [6502] = {.lex_state = 321}, + [6503] = {.lex_state = 106}, + [6504] = {.lex_state = 106}, + [6505] = {.lex_state = 321}, + [6506] = {.lex_state = 738}, + [6507] = {.lex_state = 106}, + [6508] = {.lex_state = 106}, + [6509] = {.lex_state = 106}, [6510] = {.lex_state = 737}, - [6511] = {.lex_state = 330}, - [6512] = {.lex_state = 262}, - [6513] = {.lex_state = 105}, - [6514] = {.lex_state = 105}, - [6515] = {.lex_state = 330}, - [6516] = {.lex_state = 105}, - [6517] = {.lex_state = 330}, - [6518] = {.lex_state = 330}, - [6519] = {.lex_state = 330}, - [6520] = {.lex_state = 737}, - [6521] = {.lex_state = 105}, - [6522] = {.lex_state = 105}, - [6523] = {.lex_state = 105}, - [6524] = {.lex_state = 105}, - [6525] = {.lex_state = 105}, - [6526] = {.lex_state = 105}, - [6527] = {.lex_state = 105}, - [6528] = {.lex_state = 105}, - [6529] = {.lex_state = 330}, - [6530] = {.lex_state = 330}, - [6531] = {.lex_state = 366}, - [6532] = {.lex_state = 330}, - [6533] = {.lex_state = 262}, - [6534] = {.lex_state = 262}, - [6535] = {.lex_state = 105}, - [6536] = {.lex_state = 44}, - [6537] = {.lex_state = 105}, - [6538] = {.lex_state = 105}, - [6539] = {.lex_state = 105}, - [6540] = {.lex_state = 105}, - [6541] = {.lex_state = 105}, - [6542] = {.lex_state = 105}, - [6543] = {.lex_state = 330}, - [6544] = {.lex_state = 330}, - [6545] = {.lex_state = 366}, - [6546] = {.lex_state = 262}, - [6547] = {.lex_state = 737}, - [6548] = {.lex_state = 262}, - [6549] = {.lex_state = 330}, - [6550] = {.lex_state = 330}, - [6551] = {.lex_state = 105}, - [6552] = {.lex_state = 105}, - [6553] = {.lex_state = 105}, - [6554] = {.lex_state = 105}, - [6555] = {.lex_state = 105}, - [6556] = {.lex_state = 105}, - [6557] = {.lex_state = 105}, - [6558] = {.lex_state = 105}, - [6559] = {.lex_state = 366}, - [6560] = {.lex_state = 330}, - [6561] = {.lex_state = 262}, - [6562] = {.lex_state = 737}, - [6563] = {.lex_state = 148}, - [6564] = {.lex_state = 262}, - [6565] = {.lex_state = 148}, - [6566] = {.lex_state = 105}, - [6567] = {.lex_state = 105}, - [6568] = {.lex_state = 105}, - [6569] = {.lex_state = 105}, - [6570] = {.lex_state = 105}, - [6571] = {.lex_state = 105}, - [6572] = {.lex_state = 105}, - [6573] = {.lex_state = 105}, - [6574] = {.lex_state = 105}, - [6575] = {.lex_state = 737}, - [6576] = {.lex_state = 330}, - [6577] = {.lex_state = 330}, - [6578] = {.lex_state = 366}, - [6579] = {.lex_state = 262}, - [6580] = {.lex_state = 330}, - [6581] = {.lex_state = 262}, - [6582] = {.lex_state = 737}, - [6583] = {.lex_state = 105}, - [6584] = {.lex_state = 105}, - [6585] = {.lex_state = 105}, - [6586] = {.lex_state = 105}, - [6587] = {.lex_state = 105}, - [6588] = {.lex_state = 105}, - [6589] = {.lex_state = 105}, - [6590] = {.lex_state = 105}, - [6591] = {.lex_state = 737}, - [6592] = {.lex_state = 366}, - [6593] = {.lex_state = 262}, - [6594] = {.lex_state = 737}, - [6595] = {.lex_state = 330}, - [6596] = {.lex_state = 262}, - [6597] = {.lex_state = 737}, - [6598] = {.lex_state = 737}, - [6599] = {.lex_state = 737}, - [6600] = {.lex_state = 105}, - [6601] = {.lex_state = 105}, - [6602] = {.lex_state = 105}, - [6603] = {.lex_state = 105}, - [6604] = {.lex_state = 105}, - [6605] = {.lex_state = 105}, - [6606] = {.lex_state = 105}, - [6607] = {.lex_state = 105}, - [6608] = {.lex_state = 366}, - [6609] = {.lex_state = 262}, - [6610] = {.lex_state = 380}, - [6611] = {.lex_state = 262}, - [6612] = {.lex_state = 330}, - [6613] = {.lex_state = 105}, - [6614] = {.lex_state = 105}, - [6615] = {.lex_state = 105}, - [6616] = {.lex_state = 105}, - [6617] = {.lex_state = 105}, - [6618] = {.lex_state = 105}, - [6619] = {.lex_state = 105}, - [6620] = {.lex_state = 105}, - [6621] = {.lex_state = 330}, - [6622] = {.lex_state = 366}, - [6623] = {.lex_state = 262}, - [6624] = {.lex_state = 330}, - [6625] = {.lex_state = 262}, - [6626] = {.lex_state = 330}, - [6627] = {.lex_state = 330}, - [6628] = {.lex_state = 366}, - [6629] = {.lex_state = 262}, - [6630] = {.lex_state = 330}, - [6631] = {.lex_state = 262}, - [6632] = {.lex_state = 330}, - [6633] = {.lex_state = 330}, - [6634] = {.lex_state = 366}, - [6635] = {.lex_state = 262}, - [6636] = {.lex_state = 330}, - [6637] = {.lex_state = 262}, - [6638] = {.lex_state = 44}, - [6639] = {.lex_state = 366}, - [6640] = {.lex_state = 262}, - [6641] = {.lex_state = 32}, - [6642] = {.lex_state = 262}, - [6643] = {.lex_state = 330}, - [6644] = {.lex_state = 366}, - [6645] = {.lex_state = 262}, - [6646] = {.lex_state = 262}, - [6647] = {.lex_state = 330}, - [6648] = {.lex_state = 366}, - [6649] = {.lex_state = 262}, - [6650] = {.lex_state = 262}, - [6651] = {.lex_state = 330}, - [6652] = {.lex_state = 366}, - [6653] = {.lex_state = 262}, - [6654] = {.lex_state = 262}, - [6655] = {.lex_state = 330}, - [6656] = {.lex_state = 366}, - [6657] = {.lex_state = 262}, - [6658] = {.lex_state = 262}, - [6659] = {.lex_state = 366}, - [6660] = {.lex_state = 262}, - [6661] = {.lex_state = 262}, - [6662] = {.lex_state = 366}, - [6663] = {.lex_state = 262}, - [6664] = {.lex_state = 262}, - [6665] = {.lex_state = 366}, - [6666] = {.lex_state = 262}, - [6667] = {.lex_state = 262}, - [6668] = {.lex_state = 330}, - [6669] = {.lex_state = 366}, - [6670] = {.lex_state = 262}, - [6671] = {.lex_state = 262}, - [6672] = {.lex_state = 366}, - [6673] = {.lex_state = 262}, - [6674] = {.lex_state = 262}, - [6675] = {.lex_state = 366}, - [6676] = {.lex_state = 262}, - [6677] = {.lex_state = 262}, - [6678] = {.lex_state = 366}, - [6679] = {.lex_state = 262}, - [6680] = {.lex_state = 262}, - [6681] = {.lex_state = 262}, - [6682] = {.lex_state = 262}, - [6683] = {.lex_state = 262}, - [6684] = {.lex_state = 262}, - [6685] = {.lex_state = 262}, - [6686] = {.lex_state = 262}, - [6687] = {.lex_state = 262}, - [6688] = {.lex_state = 262}, - [6689] = {.lex_state = 262}, - [6690] = {.lex_state = 262}, - [6691] = {.lex_state = 262}, - [6692] = {.lex_state = 262}, - [6693] = {.lex_state = 262}, - [6694] = {.lex_state = 262}, - [6695] = {.lex_state = 330}, - [6696] = {.lex_state = 366}, - [6697] = {.lex_state = 382}, - [6698] = {.lex_state = 737}, - [6699] = {.lex_state = 44}, - [6700] = {.lex_state = 707}, - [6701] = {.lex_state = 322}, - [6702] = {.lex_state = 363}, - [6703] = {.lex_state = 363}, - [6704] = {.lex_state = 737}, - [6705] = {.lex_state = 737}, - [6706] = {.lex_state = 737}, - [6707] = {.lex_state = 148}, - [6708] = {.lex_state = 737}, - [6709] = {.lex_state = 148}, - [6710] = {.lex_state = 148}, - [6711] = {.lex_state = 707}, - [6712] = {.lex_state = 737}, - [6713] = {.lex_state = 737}, - [6714] = {.lex_state = 737}, - [6715] = {.lex_state = 737}, - [6716] = {.lex_state = 737}, - [6717] = {.lex_state = 262}, - [6718] = {.lex_state = 737}, - [6719] = {.lex_state = 105}, - [6720] = {.lex_state = 737}, - [6721] = {.lex_state = 316}, - [6722] = {.lex_state = 380}, - [6723] = {.lex_state = 105}, - [6724] = {.lex_state = 376}, - [6725] = {.lex_state = 362}, - [6726] = {.lex_state = 105}, - [6727] = {.lex_state = 365}, - [6728] = {.lex_state = 105}, - [6729] = {.lex_state = 105}, - [6730] = {.lex_state = 105}, - [6731] = {.lex_state = 105}, - [6732] = {.lex_state = 105}, - [6733] = {.lex_state = 105}, - [6734] = {.lex_state = 105}, - [6735] = {.lex_state = 105}, - [6736] = {.lex_state = 366}, - [6737] = {.lex_state = 105}, - [6738] = {.lex_state = 738}, - [6739] = {.lex_state = 362}, - [6740] = {.lex_state = 737}, - [6741] = {.lex_state = 737}, - [6742] = {.lex_state = 330}, - [6743] = {.lex_state = 366}, - [6744] = {.lex_state = 737}, - [6745] = {.lex_state = 330}, - [6746] = {.lex_state = 322}, - [6747] = {.lex_state = 105}, - [6748] = {.lex_state = 707}, - [6749] = {.lex_state = 707}, - [6750] = {.lex_state = 262}, - [6751] = {.lex_state = 707}, - [6752] = {.lex_state = 362}, - [6753] = {.lex_state = 362}, - [6754] = {.lex_state = 669}, - [6755] = {.lex_state = 737}, - [6756] = {.lex_state = 362}, - [6757] = {.lex_state = 737}, - [6758] = {.lex_state = 105}, + [6511] = {.lex_state = 738}, + [6512] = {.lex_state = 321}, + [6513] = {.lex_state = 778}, + [6514] = {.lex_state = 106}, + [6515] = {.lex_state = 738}, + [6516] = {.lex_state = 321}, + [6517] = {.lex_state = 106}, + [6518] = {.lex_state = 106}, + [6519] = {.lex_state = 738}, + [6520] = {.lex_state = 106}, + [6521] = {.lex_state = 735}, + [6522] = {.lex_state = 738}, + [6523] = {.lex_state = 321}, + [6524] = {.lex_state = 717}, + [6525] = {.lex_state = 106}, + [6526] = {.lex_state = 149}, + [6527] = {.lex_state = 321}, + [6528] = {.lex_state = 106}, + [6529] = {.lex_state = 106}, + [6530] = {.lex_state = 106}, + [6531] = {.lex_state = 738}, + [6532] = {.lex_state = 106}, + [6533] = {.lex_state = 149}, + [6534] = {.lex_state = 735}, + [6535] = {.lex_state = 738}, + [6536] = {.lex_state = 738}, + [6537] = {.lex_state = 321}, + [6538] = {.lex_state = 365}, + [6539] = {.lex_state = 738}, + [6540] = {.lex_state = 149}, + [6541] = {.lex_state = 106}, + [6542] = {.lex_state = 321}, + [6543] = {.lex_state = 106}, + [6544] = {.lex_state = 106}, + [6545] = {.lex_state = 38}, + [6546] = {.lex_state = 106}, + [6547] = {.lex_state = 738}, + [6548] = {.lex_state = 739}, + [6549] = {.lex_state = 738}, + [6550] = {.lex_state = 106}, + [6551] = {.lex_state = 321}, + [6552] = {.lex_state = 106}, + [6553] = {.lex_state = 321}, + [6554] = {.lex_state = 106}, + [6555] = {.lex_state = 106}, + [6556] = {.lex_state = 106}, + [6557] = {.lex_state = 106}, + [6558] = {.lex_state = 106}, + [6559] = {.lex_state = 149}, + [6560] = {.lex_state = 738}, + [6561] = {.lex_state = 738}, + [6562] = {.lex_state = 365}, + [6563] = {.lex_state = 106}, + [6564] = {.lex_state = 738}, + [6565] = {.lex_state = 735}, + [6566] = {.lex_state = 106}, + [6567] = {.lex_state = 106}, + [6568] = {.lex_state = 106}, + [6569] = {.lex_state = 106}, + [6570] = {.lex_state = 106}, + [6571] = {.lex_state = 365}, + [6572] = {.lex_state = 738}, + [6573] = {.lex_state = 225}, + [6574] = {.lex_state = 106}, + [6575] = {.lex_state = 738}, + [6576] = {.lex_state = 106}, + [6577] = {.lex_state = 106}, + [6578] = {.lex_state = 106}, + [6579] = {.lex_state = 106}, + [6580] = {.lex_state = 106}, + [6581] = {.lex_state = 738}, + [6582] = {.lex_state = 738}, + [6583] = {.lex_state = 738}, + [6584] = {.lex_state = 106}, + [6585] = {.lex_state = 106}, + [6586] = {.lex_state = 738}, + [6587] = {.lex_state = 738}, + [6588] = {.lex_state = 365}, + [6589] = {.lex_state = 380}, + [6590] = {.lex_state = 738}, + [6591] = {.lex_state = 385}, + [6592] = {.lex_state = 106}, + [6593] = {.lex_state = 106}, + [6594] = {.lex_state = 149}, + [6595] = {.lex_state = 149}, + [6596] = {.lex_state = 738}, + [6597] = {.lex_state = 738}, + [6598] = {.lex_state = 365}, + [6599] = {.lex_state = 106}, + [6600] = {.lex_state = 738}, + [6601] = {.lex_state = 365}, + [6602] = {.lex_state = 738}, + [6603] = {.lex_state = 365}, + [6604] = {.lex_state = 149}, + [6605] = {.lex_state = 738}, + [6606] = {.lex_state = 149}, + [6607] = {.lex_state = 321}, + [6608] = {.lex_state = 149}, + [6609] = {.lex_state = 149}, + [6610] = {.lex_state = 106}, + [6611] = {.lex_state = 149}, + [6612] = {.lex_state = 738}, + [6613] = {.lex_state = 385}, + [6614] = {.lex_state = 149}, + [6615] = {.lex_state = 149}, + [6616] = {.lex_state = 225}, + [6617] = {.lex_state = 738}, + [6618] = {.lex_state = 106}, + [6619] = {.lex_state = 738}, + [6620] = {.lex_state = 738}, + [6621] = {.lex_state = 738}, + [6622] = {.lex_state = 149}, + [6623] = {.lex_state = 738}, + [6624] = {.lex_state = 106}, + [6625] = {.lex_state = 738}, + [6626] = {.lex_state = 738}, + [6627] = {.lex_state = 149}, + [6628] = {.lex_state = 225}, + [6629] = {.lex_state = 321}, + [6630] = {.lex_state = 106}, + [6631] = {.lex_state = 737}, + [6632] = {.lex_state = 106}, + [6633] = {.lex_state = 64}, + [6634] = {.lex_state = 106}, + [6635] = {.lex_state = 735}, + [6636] = {.lex_state = 106}, + [6637] = {.lex_state = 735}, + [6638] = {.lex_state = 737}, + [6639] = {.lex_state = 737}, + [6640] = {.lex_state = 735}, + [6641] = {.lex_state = 737}, + [6642] = {.lex_state = 738}, + [6643] = {.lex_state = 149}, + [6644] = {.lex_state = 737}, + [6645] = {.lex_state = 365}, + [6646] = {.lex_state = 106}, + [6647] = {.lex_state = 106}, + [6648] = {.lex_state = 321}, + [6649] = {.lex_state = 738}, + [6650] = {.lex_state = 737}, + [6651] = {.lex_state = 106}, + [6652] = {.lex_state = 106}, + [6653] = {.lex_state = 738}, + [6654] = {.lex_state = 86}, + [6655] = {.lex_state = 106}, + [6656] = {.lex_state = 106}, + [6657] = {.lex_state = 717}, + [6658] = {.lex_state = 86}, + [6659] = {.lex_state = 385}, + [6660] = {.lex_state = 738}, + [6661] = {.lex_state = 382}, + [6662] = {.lex_state = 737}, + [6663] = {.lex_state = 738}, + [6664] = {.lex_state = 737}, + [6665] = {.lex_state = 738}, + [6666] = {.lex_state = 738}, + [6667] = {.lex_state = 738}, + [6668] = {.lex_state = 738}, + [6669] = {.lex_state = 106}, + [6670] = {.lex_state = 738}, + [6671] = {.lex_state = 106}, + [6672] = {.lex_state = 738}, + [6673] = {.lex_state = 106}, + [6674] = {.lex_state = 106}, + [6675] = {.lex_state = 106}, + [6676] = {.lex_state = 738}, + [6677] = {.lex_state = 106}, + [6678] = {.lex_state = 106}, + [6679] = {.lex_state = 106}, + [6680] = {.lex_state = 106}, + [6681] = {.lex_state = 737}, + [6682] = {.lex_state = 64}, + [6683] = {.lex_state = 106}, + [6684] = {.lex_state = 738}, + [6685] = {.lex_state = 149}, + [6686] = {.lex_state = 735}, + [6687] = {.lex_state = 382}, + [6688] = {.lex_state = 382}, + [6689] = {.lex_state = 106}, + [6690] = {.lex_state = 106}, + [6691] = {.lex_state = 106}, + [6692] = {.lex_state = 378}, + [6693] = {.lex_state = 738}, + [6694] = {.lex_state = 778}, + [6695] = {.lex_state = 106}, + [6696] = {.lex_state = 738}, + [6697] = {.lex_state = 780}, + [6698] = {.lex_state = 321}, + [6699] = {.lex_state = 149}, + [6700] = {.lex_state = 738}, + [6701] = {.lex_state = 149}, + [6702] = {.lex_state = 737}, + [6703] = {.lex_state = 64}, + [6704] = {.lex_state = 106}, + [6705] = {.lex_state = 106}, + [6706] = {.lex_state = 106}, + [6707] = {.lex_state = 106}, + [6708] = {.lex_state = 778}, + [6709] = {.lex_state = 738}, + [6710] = {.lex_state = 738}, + [6711] = {.lex_state = 106}, + [6712] = {.lex_state = 738}, + [6713] = {.lex_state = 106}, + [6714] = {.lex_state = 106}, + [6715] = {.lex_state = 738}, + [6716] = {.lex_state = 106}, + [6717] = {.lex_state = 738}, + [6718] = {.lex_state = 380}, + [6719] = {.lex_state = 106}, + [6720] = {.lex_state = 317}, + [6721] = {.lex_state = 321}, + [6722] = {.lex_state = 106}, + [6723] = {.lex_state = 738}, + [6724] = {.lex_state = 738}, + [6725] = {.lex_state = 738}, + [6726] = {.lex_state = 106}, + [6727] = {.lex_state = 738}, + [6728] = {.lex_state = 738}, + [6729] = {.lex_state = 737}, + [6730] = {.lex_state = 106}, + [6731] = {.lex_state = 738}, + [6732] = {.lex_state = 738}, + [6733] = {.lex_state = 149}, + [6734] = {.lex_state = 384}, + [6735] = {.lex_state = 106}, + [6736] = {.lex_state = 106}, + [6737] = {.lex_state = 738}, + [6738] = {.lex_state = 106}, + [6739] = {.lex_state = 149}, + [6740] = {.lex_state = 738}, + [6741] = {.lex_state = 106}, + [6742] = {.lex_state = 738}, + [6743] = {.lex_state = 738}, + [6744] = {.lex_state = 738}, + [6745] = {.lex_state = 378}, + [6746] = {.lex_state = 738}, + [6747] = {.lex_state = 106}, + [6748] = {.lex_state = 738}, + [6749] = {.lex_state = 106}, + [6750] = {.lex_state = 738}, + [6751] = {.lex_state = 738}, + [6752] = {.lex_state = 106}, + [6753] = {.lex_state = 738}, + [6754] = {.lex_state = 738}, + [6755] = {.lex_state = 738}, + [6756] = {.lex_state = 106}, + [6757] = {.lex_state = 703}, + [6758] = {.lex_state = 738}, [6759] = {.lex_state = 738}, - [6760] = {.lex_state = 366}, - [6761] = {.lex_state = 262}, - [6762] = {.lex_state = 262}, - [6763] = {.lex_state = 349}, - [6764] = {.lex_state = 262}, - [6765] = {.lex_state = 737}, - [6766] = {.lex_state = 737}, - [6767] = {.lex_state = 737}, - [6768] = {.lex_state = 737}, - [6769] = {.lex_state = 737}, - [6770] = {.lex_state = 105}, - [6771] = {.lex_state = 38}, - [6772] = {.lex_state = 737}, - [6773] = {.lex_state = 737}, - [6774] = {.lex_state = 737}, - [6775] = {.lex_state = 737}, - [6776] = {.lex_state = 737}, - [6777] = {.lex_state = 737}, - [6778] = {.lex_state = 737}, - [6779] = {.lex_state = 737}, - [6780] = {.lex_state = 105}, - [6781] = {.lex_state = 105}, - [6782] = {.lex_state = 148}, - [6783] = {.lex_state = 379}, - [6784] = {.lex_state = 320}, - [6785] = {.lex_state = 224}, - [6786] = {.lex_state = 105}, - [6787] = {.lex_state = 105}, - [6788] = {.lex_state = 105}, - [6789] = {.lex_state = 105}, - [6790] = {.lex_state = 105}, - [6791] = {.lex_state = 105}, - [6792] = {.lex_state = 105}, - [6793] = {.lex_state = 737}, - [6794] = {.lex_state = 105}, - [6795] = {.lex_state = 737}, - [6796] = {.lex_state = 105}, - [6797] = {.lex_state = 105}, - [6798] = {.lex_state = 737}, - [6799] = {.lex_state = 737}, - [6800] = {.lex_state = 105}, - [6801] = {.lex_state = 737}, - [6802] = {.lex_state = 737}, - [6803] = {.lex_state = 737}, - [6804] = {.lex_state = 105}, - [6805] = {.lex_state = 105}, - [6806] = {.lex_state = 105}, - [6807] = {.lex_state = 105}, - [6808] = {.lex_state = 105}, - [6809] = {.lex_state = 320}, - [6810] = {.lex_state = 105}, - [6811] = {.lex_state = 364}, - [6812] = {.lex_state = 105}, - [6813] = {.lex_state = 737}, - [6814] = {.lex_state = 736}, - [6815] = {.lex_state = 379}, - [6816] = {.lex_state = 320}, - [6817] = {.lex_state = 736}, - [6818] = {.lex_state = 737}, - [6819] = {.lex_state = 105}, - [6820] = {.lex_state = 737}, - [6821] = {.lex_state = 736}, - [6822] = {.lex_state = 105}, - [6823] = {.lex_state = 105}, - [6824] = {.lex_state = 105}, - [6825] = {.lex_state = 105}, - [6826] = {.lex_state = 105}, - [6827] = {.lex_state = 276}, - [6828] = {.lex_state = 105}, - [6829] = {.lex_state = 105}, - [6830] = {.lex_state = 276}, - [6831] = {.lex_state = 105}, - [6832] = {.lex_state = 737}, - [6833] = {.lex_state = 105}, - [6834] = {.lex_state = 381}, - [6835] = {.lex_state = 737}, - [6836] = {.lex_state = 105}, - [6837] = {.lex_state = 737}, - [6838] = {.lex_state = 737}, - [6839] = {.lex_state = 320}, - [6840] = {.lex_state = 105}, - [6841] = {.lex_state = 777}, - [6842] = {.lex_state = 105}, - [6843] = {.lex_state = 734}, - [6844] = {.lex_state = 105}, - [6845] = {.lex_state = 105}, - [6846] = {.lex_state = 379}, - [6847] = {.lex_state = 320}, - [6848] = {.lex_state = 105}, - [6849] = {.lex_state = 105}, - [6850] = {.lex_state = 105}, - [6851] = {.lex_state = 262}, - [6852] = {.lex_state = 737}, - [6853] = {.lex_state = 105}, - [6854] = {.lex_state = 105}, - [6855] = {.lex_state = 105}, - [6856] = {.lex_state = 737}, - [6857] = {.lex_state = 105}, - [6858] = {.lex_state = 105}, - [6859] = {.lex_state = 105}, - [6860] = {.lex_state = 105}, - [6861] = {.lex_state = 737}, - [6862] = {.lex_state = 384}, - [6863] = {.lex_state = 105}, - [6864] = {.lex_state = 105}, - [6865] = {.lex_state = 105}, - [6866] = {.lex_state = 105}, - [6867] = {.lex_state = 105}, - [6868] = {.lex_state = 105}, - [6869] = {.lex_state = 320}, - [6870] = {.lex_state = 384}, - [6871] = {.lex_state = 105}, - [6872] = {.lex_state = 737}, - [6873] = {.lex_state = 105}, - [6874] = {.lex_state = 105}, - [6875] = {.lex_state = 320}, - [6876] = {.lex_state = 105}, - [6877] = {.lex_state = 105}, - [6878] = {.lex_state = 384}, - [6879] = {.lex_state = 320}, - [6880] = {.lex_state = 105}, - [6881] = {.lex_state = 105}, - [6882] = {.lex_state = 736}, - [6883] = {.lex_state = 105}, - [6884] = {.lex_state = 105}, - [6885] = {.lex_state = 105}, - [6886] = {.lex_state = 105}, - [6887] = {.lex_state = 105}, - [6888] = {.lex_state = 105}, - [6889] = {.lex_state = 105}, - [6890] = {.lex_state = 105}, - [6891] = {.lex_state = 737}, - [6892] = {.lex_state = 105}, - [6893] = {.lex_state = 105}, - [6894] = {.lex_state = 379}, - [6895] = {.lex_state = 148}, - [6896] = {.lex_state = 148}, - [6897] = {.lex_state = 105}, - [6898] = {.lex_state = 105}, - [6899] = {.lex_state = 320}, - [6900] = {.lex_state = 105}, - [6901] = {.lex_state = 320}, - [6902] = {.lex_state = 105}, - [6903] = {.lex_state = 379}, - [6904] = {.lex_state = 736}, - [6905] = {.lex_state = 105}, - [6906] = {.lex_state = 105}, - [6907] = {.lex_state = 105}, - [6908] = {.lex_state = 105}, - [6909] = {.lex_state = 734}, - [6910] = {.lex_state = 148}, - [6911] = {.lex_state = 105}, - [6912] = {.lex_state = 105}, - [6913] = {.lex_state = 148}, - [6914] = {.lex_state = 105}, - [6915] = {.lex_state = 105}, - [6916] = {.lex_state = 105}, - [6917] = {.lex_state = 105}, - [6918] = {.lex_state = 105}, - [6919] = {.lex_state = 148}, - [6920] = {.lex_state = 105}, - [6921] = {.lex_state = 105}, - [6922] = {.lex_state = 148}, - [6923] = {.lex_state = 105}, - [6924] = {.lex_state = 702}, - [6925] = {.lex_state = 736}, - [6926] = {.lex_state = 320}, - [6927] = {.lex_state = 148}, - [6928] = {.lex_state = 148}, - [6929] = {.lex_state = 105}, - [6930] = {.lex_state = 737}, - [6931] = {.lex_state = 737}, - [6932] = {.lex_state = 320}, - [6933] = {.lex_state = 105}, - [6934] = {.lex_state = 105}, - [6935] = {.lex_state = 105}, - [6936] = {.lex_state = 105}, - [6937] = {.lex_state = 148}, - [6938] = {.lex_state = 105}, - [6939] = {.lex_state = 105}, - [6940] = {.lex_state = 105}, - [6941] = {.lex_state = 105}, - [6942] = {.lex_state = 105}, - [6943] = {.lex_state = 737}, - [6944] = {.lex_state = 737}, - [6945] = {.lex_state = 377}, - [6946] = {.lex_state = 105}, - [6947] = {.lex_state = 148}, - [6948] = {.lex_state = 737}, - [6949] = {.lex_state = 320}, - [6950] = {.lex_state = 148}, + [6760] = {.lex_state = 738}, + [6761] = {.lex_state = 738}, + [6762] = {.lex_state = 106}, + [6763] = {.lex_state = 365}, + [6764] = {.lex_state = 738}, + [6765] = {.lex_state = 382}, + [6766] = {.lex_state = 738}, + [6767] = {.lex_state = 106}, + [6768] = {.lex_state = 738}, + [6769] = {.lex_state = 738}, + [6770] = {.lex_state = 738}, + [6771] = {.lex_state = 738}, + [6772] = {.lex_state = 738}, + [6773] = {.lex_state = 738}, + [6774] = {.lex_state = 106}, + [6775] = {.lex_state = 738}, + [6776] = {.lex_state = 738}, + [6777] = {.lex_state = 380}, + [6778] = {.lex_state = 738}, + [6779] = {.lex_state = 738}, + [6780] = {.lex_state = 738}, + [6781] = {.lex_state = 738}, + [6782] = {.lex_state = 320}, + [6783] = {.lex_state = 738}, + [6784] = {.lex_state = 738}, + [6785] = {.lex_state = 106}, + [6786] = {.lex_state = 738}, + [6787] = {.lex_state = 738}, + [6788] = {.lex_state = 149}, + [6789] = {.lex_state = 738}, + [6790] = {.lex_state = 149}, + [6791] = {.lex_state = 738}, + [6792] = {.lex_state = 106}, + [6793] = {.lex_state = 738}, + [6794] = {.lex_state = 378}, + [6795] = {.lex_state = 738}, + [6796] = {.lex_state = 738}, + [6797] = {.lex_state = 106}, + [6798] = {.lex_state = 738}, + [6799] = {.lex_state = 369}, + [6800] = {.lex_state = 149}, + [6801] = {.lex_state = 321}, + [6802] = {.lex_state = 738}, + [6803] = {.lex_state = 149}, + [6804] = {.lex_state = 738}, + [6805] = {.lex_state = 4098}, + [6806] = {.lex_state = 106}, + [6807] = {.lex_state = 4096}, + [6808] = {.lex_state = 106}, + [6809] = {.lex_state = 106}, + [6810] = {.lex_state = 106}, + [6811] = {.lex_state = 4098}, + [6812] = {.lex_state = 4098}, + [6813] = {.lex_state = 739}, + [6814] = {.lex_state = 4094}, + [6815] = {.lex_state = 717}, + [6816] = {.lex_state = 106}, + [6817] = {.lex_state = 321}, + [6818] = {.lex_state = 106}, + [6819] = {.lex_state = 4098}, + [6820] = {.lex_state = 106}, + [6821] = {.lex_state = 106}, + [6822] = {.lex_state = 4094}, + [6823] = {.lex_state = 738}, + [6824] = {.lex_state = 378}, + [6825] = {.lex_state = 106}, + [6826] = {.lex_state = 739}, + [6827] = {.lex_state = 370}, + [6828] = {.lex_state = 106}, + [6829] = {.lex_state = 106}, + [6830] = {.lex_state = 277}, + [6831] = {.lex_state = 4094}, + [6832] = {.lex_state = 738}, + [6833] = {.lex_state = 106}, + [6834] = {.lex_state = 738}, + [6835] = {.lex_state = 738}, + [6836] = {.lex_state = 4094}, + [6837] = {.lex_state = 370}, + [6838] = {.lex_state = 30}, + [6839] = {.lex_state = 738}, + [6840] = {.lex_state = 738}, + [6841] = {.lex_state = 737}, + [6842] = {.lex_state = 738}, + [6843] = {.lex_state = 106}, + [6844] = {.lex_state = 739}, + [6845] = {.lex_state = 4094}, + [6846] = {.lex_state = 4094}, + [6847] = {.lex_state = 4094}, + [6848] = {.lex_state = 106}, + [6849] = {.lex_state = 380}, + [6850] = {.lex_state = 4094}, + [6851] = {.lex_state = 106}, + [6852] = {.lex_state = 738}, + [6853] = {.lex_state = 738}, + [6854] = {.lex_state = 738}, + [6855] = {.lex_state = 370}, + [6856] = {.lex_state = 738}, + [6857] = {.lex_state = 4094}, + [6858] = {.lex_state = 4094}, + [6859] = {.lex_state = 707}, + [6860] = {.lex_state = 106}, + [6861] = {.lex_state = 106}, + [6862] = {.lex_state = 106}, + [6863] = {.lex_state = 106}, + [6864] = {.lex_state = 277}, + [6865] = {.lex_state = 106}, + [6866] = {.lex_state = 106}, + [6867] = {.lex_state = 738}, + [6868] = {.lex_state = 4098}, + [6869] = {.lex_state = 106}, + [6870] = {.lex_state = 370}, + [6871] = {.lex_state = 384}, + [6872] = {.lex_state = 738}, + [6873] = {.lex_state = 735}, + [6874] = {.lex_state = 737}, + [6875] = {.lex_state = 4098}, + [6876] = {.lex_state = 4098}, + [6877] = {.lex_state = 370}, + [6878] = {.lex_state = 738}, + [6879] = {.lex_state = 738}, + [6880] = {.lex_state = 738}, + [6881] = {.lex_state = 106}, + [6882] = {.lex_state = 4098}, + [6883] = {.lex_state = 104}, + [6884] = {.lex_state = 106}, + [6885] = {.lex_state = 106}, + [6886] = {.lex_state = 4096}, + [6887] = {.lex_state = 149}, + [6888] = {.lex_state = 106}, + [6889] = {.lex_state = 104}, + [6890] = {.lex_state = 738}, + [6891] = {.lex_state = 738}, + [6892] = {.lex_state = 380}, + [6893] = {.lex_state = 738}, + [6894] = {.lex_state = 106}, + [6895] = {.lex_state = 738}, + [6896] = {.lex_state = 380}, + [6897] = {.lex_state = 106}, + [6898] = {.lex_state = 4094}, + [6899] = {.lex_state = 738}, + [6900] = {.lex_state = 4094}, + [6901] = {.lex_state = 4094}, + [6902] = {.lex_state = 380}, + [6903] = {.lex_state = 4094}, + [6904] = {.lex_state = 4094}, + [6905] = {.lex_state = 738}, + [6906] = {.lex_state = 4096}, + [6907] = {.lex_state = 106}, + [6908] = {.lex_state = 106}, + [6909] = {.lex_state = 370}, + [6910] = {.lex_state = 4098}, + [6911] = {.lex_state = 4098}, + [6912] = {.lex_state = 778}, + [6913] = {.lex_state = 738}, + [6914] = {.lex_state = 738}, + [6915] = {.lex_state = 370}, + [6916] = {.lex_state = 104}, + [6917] = {.lex_state = 738}, + [6918] = {.lex_state = 4094}, + [6919] = {.lex_state = 4094}, + [6920] = {.lex_state = 106}, + [6921] = {.lex_state = 380}, + [6922] = {.lex_state = 380}, + [6923] = {.lex_state = 104}, + [6924] = {.lex_state = 738}, + [6925] = {.lex_state = 738}, + [6926] = {.lex_state = 738}, + [6927] = {.lex_state = 4098}, + [6928] = {.lex_state = 4098}, + [6929] = {.lex_state = 370}, + [6930] = {.lex_state = 104}, + [6931] = {.lex_state = 370}, + [6932] = {.lex_state = 104}, + [6933] = {.lex_state = 4096}, + [6934] = {.lex_state = 738}, + [6935] = {.lex_state = 738}, + [6936] = {.lex_state = 739}, + [6937] = {.lex_state = 738}, + [6938] = {.lex_state = 738}, + [6939] = {.lex_state = 30}, + [6940] = {.lex_state = 44}, + [6941] = {.lex_state = 738}, + [6942] = {.lex_state = 738}, + [6943] = {.lex_state = 4094}, + [6944] = {.lex_state = 104}, + [6945] = {.lex_state = 4094}, + [6946] = {.lex_state = 104}, + [6947] = {.lex_state = 738}, + [6948] = {.lex_state = 277}, + [6949] = {.lex_state = 104}, + [6950] = {.lex_state = 738}, [6951] = {.lex_state = 737}, - [6952] = {.lex_state = 148}, - [6953] = {.lex_state = 105}, - [6954] = {.lex_state = 737}, - [6955] = {.lex_state = 320}, - [6956] = {.lex_state = 105}, - [6957] = {.lex_state = 364}, - [6958] = {.lex_state = 105}, - [6959] = {.lex_state = 105}, - [6960] = {.lex_state = 105}, - [6961] = {.lex_state = 148}, - [6962] = {.lex_state = 105}, - [6963] = {.lex_state = 736}, - [6964] = {.lex_state = 105}, - [6965] = {.lex_state = 105}, - [6966] = {.lex_state = 105}, - [6967] = {.lex_state = 105}, - [6968] = {.lex_state = 105}, - [6969] = {.lex_state = 105}, - [6970] = {.lex_state = 737}, - [6971] = {.lex_state = 737}, + [6952] = {.lex_state = 104}, + [6953] = {.lex_state = 2794}, + [6954] = {.lex_state = 4094}, + [6955] = {.lex_state = 4094}, + [6956] = {.lex_state = 4098}, + [6957] = {.lex_state = 4098}, + [6958] = {.lex_state = 106}, + [6959] = {.lex_state = 104}, + [6960] = {.lex_state = 4098}, + [6961] = {.lex_state = 4098}, + [6962] = {.lex_state = 738}, + [6963] = {.lex_state = 4094}, + [6964] = {.lex_state = 4094}, + [6965] = {.lex_state = 738}, + [6966] = {.lex_state = 4094}, + [6967] = {.lex_state = 106}, + [6968] = {.lex_state = 4094}, + [6969] = {.lex_state = 106}, + [6970] = {.lex_state = 4098}, + [6971] = {.lex_state = 104}, [6972] = {.lex_state = 738}, - [6973] = {.lex_state = 105}, - [6974] = {.lex_state = 737}, - [6975] = {.lex_state = 320}, - [6976] = {.lex_state = 148}, - [6977] = {.lex_state = 772}, - [6978] = {.lex_state = 737}, - [6979] = {.lex_state = 320}, - [6980] = {.lex_state = 105}, - [6981] = {.lex_state = 105}, - [6982] = {.lex_state = 105}, - [6983] = {.lex_state = 105}, - [6984] = {.lex_state = 105}, - [6985] = {.lex_state = 737}, - [6986] = {.lex_state = 105}, - [6987] = {.lex_state = 105}, - [6988] = {.lex_state = 105}, - [6989] = {.lex_state = 105}, - [6990] = {.lex_state = 381}, - [6991] = {.lex_state = 737}, - [6992] = {.lex_state = 368}, - [6993] = {.lex_state = 737}, - [6994] = {.lex_state = 320}, - [6995] = {.lex_state = 381}, - [6996] = {.lex_state = 772}, - [6997] = {.lex_state = 320}, - [6998] = {.lex_state = 105}, - [6999] = {.lex_state = 737}, - [7000] = {.lex_state = 737}, - [7001] = {.lex_state = 105}, - [7002] = {.lex_state = 105}, - [7003] = {.lex_state = 105}, - [7004] = {.lex_state = 105}, - [7005] = {.lex_state = 105}, - [7006] = {.lex_state = 105}, - [7007] = {.lex_state = 737}, - [7008] = {.lex_state = 105}, - [7009] = {.lex_state = 737}, - [7010] = {.lex_state = 737}, - [7011] = {.lex_state = 148}, - [7012] = {.lex_state = 320}, - [7013] = {.lex_state = 105}, - [7014] = {.lex_state = 105}, - [7015] = {.lex_state = 105}, - [7016] = {.lex_state = 148}, - [7017] = {.lex_state = 320}, - [7018] = {.lex_state = 737}, - [7019] = {.lex_state = 105}, - [7020] = {.lex_state = 148}, - [7021] = {.lex_state = 105}, - [7022] = {.lex_state = 105}, - [7023] = {.lex_state = 105}, - [7024] = {.lex_state = 105}, - [7025] = {.lex_state = 105}, - [7026] = {.lex_state = 105}, - [7027] = {.lex_state = 105}, - [7028] = {.lex_state = 105}, - [7029] = {.lex_state = 105}, - [7030] = {.lex_state = 148}, - [7031] = {.lex_state = 320}, - [7032] = {.lex_state = 316}, - [7033] = {.lex_state = 105}, - [7034] = {.lex_state = 105}, - [7035] = {.lex_state = 105}, - [7036] = {.lex_state = 105}, - [7037] = {.lex_state = 105}, - [7038] = {.lex_state = 105}, - [7039] = {.lex_state = 105}, - [7040] = {.lex_state = 105}, - [7041] = {.lex_state = 105}, - [7042] = {.lex_state = 379}, - [7043] = {.lex_state = 105}, - [7044] = {.lex_state = 105}, - [7045] = {.lex_state = 105}, - [7046] = {.lex_state = 105}, - [7047] = {.lex_state = 379}, - [7048] = {.lex_state = 224}, - [7049] = {.lex_state = 105}, - [7050] = {.lex_state = 105}, - [7051] = {.lex_state = 105}, - [7052] = {.lex_state = 105}, - [7053] = {.lex_state = 105}, - [7054] = {.lex_state = 105}, - [7055] = {.lex_state = 320}, - [7056] = {.lex_state = 105}, - [7057] = {.lex_state = 105}, - [7058] = {.lex_state = 105}, - [7059] = {.lex_state = 105}, - [7060] = {.lex_state = 105}, - [7061] = {.lex_state = 105}, - [7062] = {.lex_state = 105}, - [7063] = {.lex_state = 377}, - [7064] = {.lex_state = 320}, - [7065] = {.lex_state = 105}, - [7066] = {.lex_state = 105}, - [7067] = {.lex_state = 105}, - [7068] = {.lex_state = 105}, - [7069] = {.lex_state = 737}, - [7070] = {.lex_state = 105}, - [7071] = {.lex_state = 105}, - [7072] = {.lex_state = 105}, - [7073] = {.lex_state = 105}, - [7074] = {.lex_state = 105}, - [7075] = {.lex_state = 737}, - [7076] = {.lex_state = 330}, - [7077] = {.lex_state = 148}, - [7078] = {.lex_state = 737}, - [7079] = {.lex_state = 381}, - [7080] = {.lex_state = 777}, - [7081] = {.lex_state = 737}, - [7082] = {.lex_state = 737}, - [7083] = {.lex_state = 224}, - [7084] = {.lex_state = 737}, - [7085] = {.lex_state = 105}, - [7086] = {.lex_state = 737}, - [7087] = {.lex_state = 737}, - [7088] = {.lex_state = 105}, - [7089] = {.lex_state = 105}, - [7090] = {.lex_state = 320}, - [7091] = {.lex_state = 737}, - [7092] = {.lex_state = 737}, - [7093] = {.lex_state = 737}, - [7094] = {.lex_state = 105}, - [7095] = {.lex_state = 105}, - [7096] = {.lex_state = 779}, - [7097] = {.lex_state = 716}, - [7098] = {.lex_state = 737}, - [7099] = {.lex_state = 105}, - [7100] = {.lex_state = 105}, - [7101] = {.lex_state = 148}, - [7102] = {.lex_state = 737}, - [7103] = {.lex_state = 737}, - [7104] = {.lex_state = 737}, - [7105] = {.lex_state = 224}, - [7106] = {.lex_state = 737}, - [7107] = {.lex_state = 737}, - [7108] = {.lex_state = 737}, - [7109] = {.lex_state = 320}, - [7110] = {.lex_state = 148}, - [7111] = {.lex_state = 105}, - [7112] = {.lex_state = 734}, - [7113] = {.lex_state = 737}, - [7114] = {.lex_state = 105}, - [7115] = {.lex_state = 148}, - [7116] = {.lex_state = 734}, - [7117] = {.lex_state = 105}, - [7118] = {.lex_state = 737}, - [7119] = {.lex_state = 772}, - [7120] = {.lex_state = 148}, - [7121] = {.lex_state = 734}, - [7122] = {.lex_state = 737}, - [7123] = {.lex_state = 148}, - [7124] = {.lex_state = 148}, - [7125] = {.lex_state = 364}, - [7126] = {.lex_state = 105}, - [7127] = {.lex_state = 364}, - [7128] = {.lex_state = 364}, - [7129] = {.lex_state = 364}, - [7130] = {.lex_state = 737}, - [7131] = {.lex_state = 320}, - [7132] = {.lex_state = 224}, - [7133] = {.lex_state = 737}, - [7134] = {.lex_state = 737}, - [7135] = {.lex_state = 737}, - [7136] = {.lex_state = 85}, - [7137] = {.lex_state = 364}, - [7138] = {.lex_state = 737}, - [7139] = {.lex_state = 105}, - [7140] = {.lex_state = 105}, - [7141] = {.lex_state = 358}, - [7142] = {.lex_state = 364}, - [7143] = {.lex_state = 737}, - [7144] = {.lex_state = 737}, - [7145] = {.lex_state = 737}, - [7146] = {.lex_state = 737}, - [7147] = {.lex_state = 737}, - [7148] = {.lex_state = 105}, - [7149] = {.lex_state = 105}, - [7150] = {.lex_state = 105}, - [7151] = {.lex_state = 105}, - [7152] = {.lex_state = 737}, - [7153] = {.lex_state = 368}, - [7154] = {.lex_state = 105}, - [7155] = {.lex_state = 736}, - [7156] = {.lex_state = 105}, - [7157] = {.lex_state = 105}, - [7158] = {.lex_state = 737}, - [7159] = {.lex_state = 320}, - [7160] = {.lex_state = 320}, - [7161] = {.lex_state = 737}, - [7162] = {.lex_state = 105}, - [7163] = {.lex_state = 772}, - [7164] = {.lex_state = 379}, - [7165] = {.lex_state = 737}, - [7166] = {.lex_state = 105}, - [7167] = {.lex_state = 736}, - [7168] = {.lex_state = 105}, - [7169] = {.lex_state = 736}, - [7170] = {.lex_state = 736}, - [7171] = {.lex_state = 734}, - [7172] = {.lex_state = 105}, - [7173] = {.lex_state = 736}, - [7174] = {.lex_state = 736}, - [7175] = {.lex_state = 320}, - [7176] = {.lex_state = 736}, - [7177] = {.lex_state = 38}, - [7178] = {.lex_state = 105}, - [7179] = {.lex_state = 224}, - [7180] = {.lex_state = 105}, - [7181] = {.lex_state = 736}, - [7182] = {.lex_state = 105}, - [7183] = {.lex_state = 105}, - [7184] = {.lex_state = 105}, - [7185] = {.lex_state = 105}, - [7186] = {.lex_state = 105}, - [7187] = {.lex_state = 737}, - [7188] = {.lex_state = 148}, - [7189] = {.lex_state = 105}, - [7190] = {.lex_state = 105}, - [7191] = {.lex_state = 105}, - [7192] = {.lex_state = 105}, - [7193] = {.lex_state = 105}, - [7194] = {.lex_state = 105}, - [7195] = {.lex_state = 105}, - [7196] = {.lex_state = 734}, - [7197] = {.lex_state = 105}, - [7198] = {.lex_state = 105}, - [7199] = {.lex_state = 105}, - [7200] = {.lex_state = 105}, - [7201] = {.lex_state = 737}, - [7202] = {.lex_state = 105}, - [7203] = {.lex_state = 85}, - [7204] = {.lex_state = 364}, - [7205] = {.lex_state = 224}, - [7206] = {.lex_state = 737}, - [7207] = {.lex_state = 737}, - [7208] = {.lex_state = 224}, - [7209] = {.lex_state = 148}, - [7210] = {.lex_state = 105}, - [7211] = {.lex_state = 737}, - [7212] = {.lex_state = 734}, - [7213] = {.lex_state = 737}, - [7214] = {.lex_state = 737}, - [7215] = {.lex_state = 105}, - [7216] = {.lex_state = 105}, - [7217] = {.lex_state = 737}, - [7218] = {.lex_state = 737}, - [7219] = {.lex_state = 105}, - [7220] = {.lex_state = 105}, - [7221] = {.lex_state = 105}, - [7222] = {.lex_state = 737}, - [7223] = {.lex_state = 148}, - [7224] = {.lex_state = 319}, - [7225] = {.lex_state = 105}, - [7226] = {.lex_state = 105}, - [7227] = {.lex_state = 148}, - [7228] = {.lex_state = 737}, - [7229] = {.lex_state = 777}, - [7230] = {.lex_state = 105}, - [7231] = {.lex_state = 105}, - [7232] = {.lex_state = 105}, - [7233] = {.lex_state = 737}, - [7234] = {.lex_state = 105}, - [7235] = {.lex_state = 383}, - [7236] = {.lex_state = 737}, - [7237] = {.lex_state = 737}, - [7238] = {.lex_state = 737}, - [7239] = {.lex_state = 224}, - [7240] = {.lex_state = 737}, - [7241] = {.lex_state = 224}, - [7242] = {.lex_state = 737}, - [7243] = {.lex_state = 105}, - [7244] = {.lex_state = 737}, - [7245] = {.lex_state = 737}, - [7246] = {.lex_state = 737}, - [7247] = {.lex_state = 737}, - [7248] = {.lex_state = 737}, - [7249] = {.lex_state = 105}, - [7250] = {.lex_state = 224}, - [7251] = {.lex_state = 224}, - [7252] = {.lex_state = 105}, - [7253] = {.lex_state = 364}, - [7254] = {.lex_state = 737}, - [7255] = {.lex_state = 737}, - [7256] = {.lex_state = 737}, - [7257] = {.lex_state = 737}, - [7258] = {.lex_state = 224}, - [7259] = {.lex_state = 224}, - [7260] = {.lex_state = 737}, - [7261] = {.lex_state = 737}, - [7262] = {.lex_state = 737}, - [7263] = {.lex_state = 737}, - [7264] = {.lex_state = 224}, - [7265] = {.lex_state = 737}, - [7266] = {.lex_state = 224}, - [7267] = {.lex_state = 737}, - [7268] = {.lex_state = 737}, - [7269] = {.lex_state = 737}, - [7270] = {.lex_state = 737}, - [7271] = {.lex_state = 737}, - [7272] = {.lex_state = 224}, - [7273] = {.lex_state = 224}, - [7274] = {.lex_state = 737}, - [7275] = {.lex_state = 737}, - [7276] = {.lex_state = 737}, - [7277] = {.lex_state = 737}, - [7278] = {.lex_state = 737}, - [7279] = {.lex_state = 224}, - [7280] = {.lex_state = 383}, - [7281] = {.lex_state = 224}, - [7282] = {.lex_state = 737}, - [7283] = {.lex_state = 737}, - [7284] = {.lex_state = 737}, - [7285] = {.lex_state = 737}, - [7286] = {.lex_state = 737}, - [7287] = {.lex_state = 224}, - [7288] = {.lex_state = 737}, - [7289] = {.lex_state = 224}, - [7290] = {.lex_state = 105}, - [7291] = {.lex_state = 737}, - [7292] = {.lex_state = 737}, - [7293] = {.lex_state = 737}, - [7294] = {.lex_state = 737}, - [7295] = {.lex_state = 224}, - [7296] = {.lex_state = 737}, - [7297] = {.lex_state = 224}, - [7298] = {.lex_state = 105}, - [7299] = {.lex_state = 737}, - [7300] = {.lex_state = 737}, - [7301] = {.lex_state = 737}, - [7302] = {.lex_state = 737}, - [7303] = {.lex_state = 737}, - [7304] = {.lex_state = 224}, - [7305] = {.lex_state = 105}, - [7306] = {.lex_state = 737}, - [7307] = {.lex_state = 224}, - [7308] = {.lex_state = 105}, - [7309] = {.lex_state = 737}, - [7310] = {.lex_state = 737}, - [7311] = {.lex_state = 737}, - [7312] = {.lex_state = 737}, - [7313] = {.lex_state = 224}, - [7314] = {.lex_state = 224}, - [7315] = {.lex_state = 737}, - [7316] = {.lex_state = 737}, - [7317] = {.lex_state = 737}, - [7318] = {.lex_state = 737}, - [7319] = {.lex_state = 224}, - [7320] = {.lex_state = 224}, - [7321] = {.lex_state = 737}, - [7322] = {.lex_state = 737}, - [7323] = {.lex_state = 737}, - [7324] = {.lex_state = 737}, - [7325] = {.lex_state = 737}, - [7326] = {.lex_state = 224}, - [7327] = {.lex_state = 224}, - [7328] = {.lex_state = 737}, - [7329] = {.lex_state = 737}, - [7330] = {.lex_state = 737}, - [7331] = {.lex_state = 737}, - [7332] = {.lex_state = 737}, - [7333] = {.lex_state = 224}, - [7334] = {.lex_state = 224}, - [7335] = {.lex_state = 737}, - [7336] = {.lex_state = 737}, - [7337] = {.lex_state = 737}, - [7338] = {.lex_state = 737}, - [7339] = {.lex_state = 224}, - [7340] = {.lex_state = 224}, - [7341] = {.lex_state = 737}, - [7342] = {.lex_state = 737}, - [7343] = {.lex_state = 737}, - [7344] = {.lex_state = 737}, - [7345] = {.lex_state = 224}, - [7346] = {.lex_state = 224}, - [7347] = {.lex_state = 105}, - [7348] = {.lex_state = 737}, - [7349] = {.lex_state = 737}, - [7350] = {.lex_state = 105}, - [7351] = {.lex_state = 737}, - [7352] = {.lex_state = 737}, - [7353] = {.lex_state = 148}, - [7354] = {.lex_state = 320}, - [7355] = {.lex_state = 320}, - [7356] = {.lex_state = 377}, - [7357] = {.lex_state = 377}, - [7358] = {.lex_state = 737}, - [7359] = {.lex_state = 737}, - [7360] = {.lex_state = 320}, - [7361] = {.lex_state = 716}, - [7362] = {.lex_state = 381}, - [7363] = {.lex_state = 737}, - [7364] = {.lex_state = 737}, - [7365] = {.lex_state = 105}, - [7366] = {.lex_state = 737}, - [7367] = {.lex_state = 737}, - [7368] = {.lex_state = 105}, - [7369] = {.lex_state = 737}, - [7370] = {.lex_state = 737}, - [7371] = {.lex_state = 44}, - [7372] = {.lex_state = 148}, - [7373] = {.lex_state = 737}, - [7374] = {.lex_state = 4093}, - [7375] = {.lex_state = 4093}, - [7376] = {.lex_state = 105}, - [7377] = {.lex_state = 105}, - [7378] = {.lex_state = 737}, - [7379] = {.lex_state = 4093}, - [7380] = {.lex_state = 734}, + [6973] = {.lex_state = 106}, + [6974] = {.lex_state = 104}, + [6975] = {.lex_state = 104}, + [6976] = {.lex_state = 370}, + [6977] = {.lex_state = 4096}, + [6978] = {.lex_state = 106}, + [6979] = {.lex_state = 737}, + [6980] = {.lex_state = 738}, + [6981] = {.lex_state = 738}, + [6982] = {.lex_state = 670}, + [6983] = {.lex_state = 738, .external_lex_state = 3}, + [6984] = {.lex_state = 738}, + [6985] = {.lex_state = 738}, + [6986] = {.lex_state = 738, .external_lex_state = 3}, + [6987] = {.lex_state = 738}, + [6988] = {.lex_state = 738, .external_lex_state = 4}, + [6989] = {.lex_state = 738}, + [6990] = {.lex_state = 738}, + [6991] = {.lex_state = 738}, + [6992] = {.lex_state = 737}, + [6993] = {.lex_state = 4096}, + [6994] = {.lex_state = 370}, + [6995] = {.lex_state = 670}, + [6996] = {.lex_state = 738, .external_lex_state = 3}, + [6997] = {.lex_state = 738, .external_lex_state = 3}, + [6998] = {.lex_state = 738}, + [6999] = {.lex_state = 738}, + [7000] = {.lex_state = 738}, + [7001] = {.lex_state = 738, .external_lex_state = 3}, + [7002] = {.lex_state = 738}, + [7003] = {.lex_state = 738}, + [7004] = {.lex_state = 370}, + [7005] = {.lex_state = 738}, + [7006] = {.lex_state = 738}, + [7007] = {.lex_state = 738}, + [7008] = {.lex_state = 370}, + [7009] = {.lex_state = 738}, + [7010] = {.lex_state = 735}, + [7011] = {.lex_state = 370}, + [7012] = {.lex_state = 380}, + [7013] = {.lex_state = 738}, + [7014] = {.lex_state = 738}, + [7015] = {.lex_state = 380}, + [7016] = {.lex_state = 738}, + [7017] = {.lex_state = 738}, + [7018] = {.lex_state = 738}, + [7019] = {.lex_state = 735}, + [7020] = {.lex_state = 738}, + [7021] = {.lex_state = 738}, + [7022] = {.lex_state = 735}, + [7023] = {.lex_state = 738}, + [7024] = {.lex_state = 738}, + [7025] = {.lex_state = 370}, + [7026] = {.lex_state = 1842}, + [7027] = {.lex_state = 738}, + [7028] = {.lex_state = 44}, + [7029] = {.lex_state = 738}, + [7030] = {.lex_state = 738, .external_lex_state = 3}, + [7031] = {.lex_state = 132}, + [7032] = {.lex_state = 735}, + [7033] = {.lex_state = 738}, + [7034] = {.lex_state = 370}, + [7035] = {.lex_state = 380}, + [7036] = {.lex_state = 44}, + [7037] = {.lex_state = 380}, + [7038] = {.lex_state = 372}, + [7039] = {.lex_state = 46}, + [7040] = {.lex_state = 738}, + [7041] = {.lex_state = 738}, + [7042] = {.lex_state = 738}, + [7043] = {.lex_state = 4094}, + [7044] = {.lex_state = 738}, + [7045] = {.lex_state = 738}, + [7046] = {.lex_state = 738}, + [7047] = {.lex_state = 738}, + [7048] = {.lex_state = 738}, + [7049] = {.lex_state = 376}, + [7050] = {.lex_state = 738}, + [7051] = {.lex_state = 670}, + [7052] = {.lex_state = 44}, + [7053] = {.lex_state = 735}, + [7054] = {.lex_state = 738}, + [7055] = {.lex_state = 738}, + [7056] = {.lex_state = 738, .external_lex_state = 3}, + [7057] = {.lex_state = 738}, + [7058] = {.lex_state = 738}, + [7059] = {.lex_state = 738}, + [7060] = {.lex_state = 738}, + [7061] = {.lex_state = 735}, + [7062] = {.lex_state = 738}, + [7063] = {.lex_state = 738}, + [7064] = {.lex_state = 738}, + [7065] = {.lex_state = 738}, + [7066] = {.lex_state = 1842}, + [7067] = {.lex_state = 738}, + [7068] = {.lex_state = 738}, + [7069] = {.lex_state = 738}, + [7070] = {.lex_state = 738}, + [7071] = {.lex_state = 738, .external_lex_state = 3}, + [7072] = {.lex_state = 738}, + [7073] = {.lex_state = 738}, + [7074] = {.lex_state = 738}, + [7075] = {.lex_state = 738}, + [7076] = {.lex_state = 738}, + [7077] = {.lex_state = 738}, + [7078] = {.lex_state = 738}, + [7079] = {.lex_state = 738}, + [7080] = {.lex_state = 735}, + [7081] = {.lex_state = 738, .external_lex_state = 3}, + [7082] = {.lex_state = 738}, + [7083] = {.lex_state = 132}, + [7084] = {.lex_state = 738}, + [7085] = {.lex_state = 1842}, + [7086] = {.lex_state = 738}, + [7087] = {.lex_state = 738}, + [7088] = {.lex_state = 738}, + [7089] = {.lex_state = 738, .external_lex_state = 3}, + [7090] = {.lex_state = 738}, + [7091] = {.lex_state = 738, .external_lex_state = 3}, + [7092] = {.lex_state = 738}, + [7093] = {.lex_state = 380}, + [7094] = {.lex_state = 370}, + [7095] = {.lex_state = 370}, + [7096] = {.lex_state = 380}, + [7097] = {.lex_state = 738}, + [7098] = {.lex_state = 738}, + [7099] = {.lex_state = 738}, + [7100] = {.lex_state = 738}, + [7101] = {.lex_state = 738}, + [7102] = {.lex_state = 738}, + [7103] = {.lex_state = 738, .external_lex_state = 3}, + [7104] = {.lex_state = 370}, + [7105] = {.lex_state = 370}, + [7106] = {.lex_state = 738}, + [7107] = {.lex_state = 738}, + [7108] = {.lex_state = 380}, + [7109] = {.lex_state = 380}, + [7110] = {.lex_state = 738}, + [7111] = {.lex_state = 738, .external_lex_state = 3}, + [7112] = {.lex_state = 738}, + [7113] = {.lex_state = 738}, + [7114] = {.lex_state = 1842}, + [7115] = {.lex_state = 738}, + [7116] = {.lex_state = 738}, + [7117] = {.lex_state = 738}, + [7118] = {.lex_state = 44}, + [7119] = {.lex_state = 738}, + [7120] = {.lex_state = 375}, + [7121] = {.lex_state = 738}, + [7122] = {.lex_state = 738}, + [7123] = {.lex_state = 380}, + [7124] = {.lex_state = 738}, + [7125] = {.lex_state = 738}, + [7126] = {.lex_state = 738}, + [7127] = {.lex_state = 738}, + [7128] = {.lex_state = 380}, + [7129] = {.lex_state = 739}, + [7130] = {.lex_state = 738, .external_lex_state = 3}, + [7131] = {.lex_state = 738}, + [7132] = {.lex_state = 1842}, + [7133] = {.lex_state = 738}, + [7134] = {.lex_state = 1842}, + [7135] = {.lex_state = 738}, + [7136] = {.lex_state = 738, .external_lex_state = 3}, + [7137] = {.lex_state = 738}, + [7138] = {.lex_state = 738}, + [7139] = {.lex_state = 738}, + [7140] = {.lex_state = 370}, + [7141] = {.lex_state = 738}, + [7142] = {.lex_state = 738}, + [7143] = {.lex_state = 738}, + [7144] = {.lex_state = 738}, + [7145] = {.lex_state = 738, .external_lex_state = 3}, + [7146] = {.lex_state = 738}, + [7147] = {.lex_state = 1842}, + [7148] = {.lex_state = 370}, + [7149] = {.lex_state = 738}, + [7150] = {.lex_state = 738}, + [7151] = {.lex_state = 738}, + [7152] = {.lex_state = 738, .external_lex_state = 3}, + [7153] = {.lex_state = 738}, + [7154] = {.lex_state = 738, .external_lex_state = 3}, + [7155] = {.lex_state = 735}, + [7156] = {.lex_state = 738}, + [7157] = {.lex_state = 738}, + [7158] = {.lex_state = 738}, + [7159] = {.lex_state = 738}, + [7160] = {.lex_state = 738, .external_lex_state = 4}, + [7161] = {.lex_state = 370}, + [7162] = {.lex_state = 374}, + [7163] = {.lex_state = 735}, + [7164] = {.lex_state = 738}, + [7165] = {.lex_state = 44}, + [7166] = {.lex_state = 735}, + [7167] = {.lex_state = 738}, + [7168] = {.lex_state = 738, .external_lex_state = 3}, + [7169] = {.lex_state = 1842}, + [7170] = {.lex_state = 738}, + [7171] = {.lex_state = 738}, + [7172] = {.lex_state = 738}, + [7173] = {.lex_state = 4094}, + [7174] = {.lex_state = 738}, + [7175] = {.lex_state = 738}, + [7176] = {.lex_state = 738, .external_lex_state = 3}, + [7177] = {.lex_state = 738}, + [7178] = {.lex_state = 738, .external_lex_state = 3}, + [7179] = {.lex_state = 370}, + [7180] = {.lex_state = 738}, + [7181] = {.lex_state = 738}, + [7182] = {.lex_state = 738}, + [7183] = {.lex_state = 738}, + [7184] = {.lex_state = 738}, + [7185] = {.lex_state = 4094}, + [7186] = {.lex_state = 738}, + [7187] = {.lex_state = 738}, + [7188] = {.lex_state = 738}, + [7189] = {.lex_state = 738}, + [7190] = {.lex_state = 4098}, + [7191] = {.lex_state = 738}, + [7192] = {.lex_state = 708}, + [7193] = {.lex_state = 1842}, + [7194] = {.lex_state = 738}, + [7195] = {.lex_state = 735}, + [7196] = {.lex_state = 735}, + [7197] = {.lex_state = 738, .external_lex_state = 3}, + [7198] = {.lex_state = 738}, + [7199] = {.lex_state = 738}, + [7200] = {.lex_state = 44}, + [7201] = {.lex_state = 738, .external_lex_state = 3}, + [7202] = {.lex_state = 380}, + [7203] = {.lex_state = 738}, + [7204] = {.lex_state = 738}, + [7205] = {.lex_state = 738}, + [7206] = {.lex_state = 738}, + [7207] = {.lex_state = 738}, + [7208] = {.lex_state = 735}, + [7209] = {.lex_state = 738}, + [7210] = {.lex_state = 4096}, + [7211] = {.lex_state = 738, .external_lex_state = 3}, + [7212] = {.lex_state = 738, .external_lex_state = 4}, + [7213] = {.lex_state = 735}, + [7214] = {.lex_state = 738}, + [7215] = {.lex_state = 670}, + [7216] = {.lex_state = 738}, + [7217] = {.lex_state = 780}, + [7218] = {.lex_state = 738}, + [7219] = {.lex_state = 376}, + [7220] = {.lex_state = 738}, + [7221] = {.lex_state = 738, .external_lex_state = 3}, + [7222] = {.lex_state = 738}, + [7223] = {.lex_state = 1842}, + [7224] = {.lex_state = 738}, + [7225] = {.lex_state = 738}, + [7226] = {.lex_state = 738}, + [7227] = {.lex_state = 738, .external_lex_state = 3}, + [7228] = {.lex_state = 738, .external_lex_state = 4}, + [7229] = {.lex_state = 738}, + [7230] = {.lex_state = 670}, + [7231] = {.lex_state = 737}, + [7232] = {.lex_state = 738}, + [7233] = {.lex_state = 375}, + [7234] = {.lex_state = 104}, + [7235] = {.lex_state = 738}, + [7236] = {.lex_state = 738}, + [7237] = {.lex_state = 738}, + [7238] = {.lex_state = 738, .external_lex_state = 4}, + [7239] = {.lex_state = 670}, + [7240] = {.lex_state = 738}, + [7241] = {.lex_state = 822}, + [7242] = {.lex_state = 738}, + [7243] = {.lex_state = 735}, + [7244] = {.lex_state = 738, .external_lex_state = 3}, + [7245] = {.lex_state = 738}, + [7246] = {.lex_state = 738}, + [7247] = {.lex_state = 738, .external_lex_state = 4}, + [7248] = {.lex_state = 670}, + [7249] = {.lex_state = 738}, + [7250] = {.lex_state = 1842}, + [7251] = {.lex_state = 738}, + [7252] = {.lex_state = 1842}, + [7253] = {.lex_state = 738, .external_lex_state = 3}, + [7254] = {.lex_state = 370}, + [7255] = {.lex_state = 738, .external_lex_state = 4}, + [7256] = {.lex_state = 670}, + [7257] = {.lex_state = 738}, + [7258] = {.lex_state = 738}, + [7259] = {.lex_state = 738, .external_lex_state = 3}, + [7260] = {.lex_state = 738}, + [7261] = {.lex_state = 373}, + [7262] = {.lex_state = 738}, + [7263] = {.lex_state = 738, .external_lex_state = 4}, + [7264] = {.lex_state = 670}, + [7265] = {.lex_state = 738}, + [7266] = {.lex_state = 738}, + [7267] = {.lex_state = 738}, + [7268] = {.lex_state = 738}, + [7269] = {.lex_state = 370}, + [7270] = {.lex_state = 738}, + [7271] = {.lex_state = 738, .external_lex_state = 4}, + [7272] = {.lex_state = 670}, + [7273] = {.lex_state = 738}, + [7274] = {.lex_state = 370}, + [7275] = {.lex_state = 738, .external_lex_state = 3}, + [7276] = {.lex_state = 738}, + [7277] = {.lex_state = 380}, + [7278] = {.lex_state = 738, .external_lex_state = 4}, + [7279] = {.lex_state = 738, .external_lex_state = 4}, + [7280] = {.lex_state = 670}, + [7281] = {.lex_state = 822}, + [7282] = {.lex_state = 738}, + [7283] = {.lex_state = 738}, + [7284] = {.lex_state = 738, .external_lex_state = 3}, + [7285] = {.lex_state = 1842}, + [7286] = {.lex_state = 738}, + [7287] = {.lex_state = 738, .external_lex_state = 4}, + [7288] = {.lex_state = 670}, + [7289] = {.lex_state = 738}, + [7290] = {.lex_state = 738}, + [7291] = {.lex_state = 738}, + [7292] = {.lex_state = 738}, + [7293] = {.lex_state = 738, .external_lex_state = 3}, + [7294] = {.lex_state = 738}, + [7295] = {.lex_state = 738, .external_lex_state = 4}, + [7296] = {.lex_state = 670}, + [7297] = {.lex_state = 738}, + [7298] = {.lex_state = 738}, + [7299] = {.lex_state = 44}, + [7300] = {.lex_state = 738, .external_lex_state = 3}, + [7301] = {.lex_state = 132}, + [7302] = {.lex_state = 739}, + [7303] = {.lex_state = 738, .external_lex_state = 4}, + [7304] = {.lex_state = 670}, + [7305] = {.lex_state = 738}, + [7306] = {.lex_state = 1842}, + [7307] = {.lex_state = 738, .external_lex_state = 3}, + [7308] = {.lex_state = 738, .external_lex_state = 4}, + [7309] = {.lex_state = 670}, + [7310] = {.lex_state = 132}, + [7311] = {.lex_state = 4111}, + [7312] = {.lex_state = 738}, + [7313] = {.lex_state = 738, .external_lex_state = 4}, + [7314] = {.lex_state = 384}, + [7315] = {.lex_state = 735}, + [7316] = {.lex_state = 738}, + [7317] = {.lex_state = 738, .external_lex_state = 4}, + [7318] = {.lex_state = 2794}, + [7319] = {.lex_state = 375}, + [7320] = {.lex_state = 738}, + [7321] = {.lex_state = 738, .external_lex_state = 4}, + [7322] = {.lex_state = 738}, + [7323] = {.lex_state = 46}, + [7324] = {.lex_state = 738, .external_lex_state = 3}, + [7325] = {.lex_state = 738, .external_lex_state = 4}, + [7326] = {.lex_state = 738, .external_lex_state = 4}, + [7327] = {.lex_state = 738, .external_lex_state = 4}, + [7328] = {.lex_state = 738, .external_lex_state = 4}, + [7329] = {.lex_state = 738, .external_lex_state = 4}, + [7330] = {.lex_state = 738, .external_lex_state = 4}, + [7331] = {.lex_state = 738, .external_lex_state = 4}, + [7332] = {.lex_state = 738, .external_lex_state = 4}, + [7333] = {.lex_state = 738, .external_lex_state = 4}, + [7334] = {.lex_state = 738, .external_lex_state = 4}, + [7335] = {.lex_state = 738, .external_lex_state = 4}, + [7336] = {.lex_state = 738, .external_lex_state = 4}, + [7337] = {.lex_state = 738, .external_lex_state = 4}, + [7338] = {.lex_state = 738, .external_lex_state = 4}, + [7339] = {.lex_state = 738, .external_lex_state = 4}, + [7340] = {.lex_state = 738, .external_lex_state = 4}, + [7341] = {.lex_state = 738, .external_lex_state = 4}, + [7342] = {.lex_state = 738, .external_lex_state = 4}, + [7343] = {.lex_state = 738, .external_lex_state = 4}, + [7344] = {.lex_state = 738, .external_lex_state = 4}, + [7345] = {.lex_state = 738, .external_lex_state = 4}, + [7346] = {.lex_state = 370}, + [7347] = {.lex_state = 104}, + [7348] = {.lex_state = 738, .external_lex_state = 3}, + [7349] = {.lex_state = 4098}, + [7350] = {.lex_state = 738}, + [7351] = {.lex_state = 738}, + [7352] = {.lex_state = 375}, + [7353] = {.lex_state = 738}, + [7354] = {.lex_state = 738}, + [7355] = {.lex_state = 708}, + [7356] = {.lex_state = 738}, + [7357] = {.lex_state = 738}, + [7358] = {.lex_state = 738}, + [7359] = {.lex_state = 370}, + [7360] = {.lex_state = 737}, + [7361] = {.lex_state = 380}, + [7362] = {.lex_state = 738}, + [7363] = {.lex_state = 1842}, + [7364] = {.lex_state = 738}, + [7365] = {.lex_state = 738}, + [7366] = {.lex_state = 738}, + [7367] = {.lex_state = 44}, + [7368] = {.lex_state = 4096}, + [7369] = {.lex_state = 738}, + [7370] = {.lex_state = 735}, + [7371] = {.lex_state = 738, .external_lex_state = 3}, + [7372] = {.lex_state = 738}, + [7373] = {.lex_state = 738}, + [7374] = {.lex_state = 4098}, + [7375] = {.lex_state = 738}, + [7376] = {.lex_state = 376}, + [7377] = {.lex_state = 738}, + [7378] = {.lex_state = 1842}, + [7379] = {.lex_state = 735}, + [7380] = {.lex_state = 738, .external_lex_state = 3}, [7381] = {.lex_state = 738}, - [7382] = {.lex_state = 105}, + [7382] = {.lex_state = 738}, [7383] = {.lex_state = 737}, - [7384] = {.lex_state = 737}, - [7385] = {.lex_state = 105}, - [7386] = {.lex_state = 737}, - [7387] = {.lex_state = 737}, - [7388] = {.lex_state = 737}, - [7389] = {.lex_state = 737}, - [7390] = {.lex_state = 736}, - [7391] = {.lex_state = 777}, - [7392] = {.lex_state = 4097}, - [7393] = {.lex_state = 383}, - [7394] = {.lex_state = 377}, - [7395] = {.lex_state = 105}, - [7396] = {.lex_state = 4097}, - [7397] = {.lex_state = 276}, - [7398] = {.lex_state = 105}, - [7399] = {.lex_state = 379}, - [7400] = {.lex_state = 379}, - [7401] = {.lex_state = 737}, - [7402] = {.lex_state = 4093}, - [7403] = {.lex_state = 103}, - [7404] = {.lex_state = 4093}, - [7405] = {.lex_state = 4097}, - [7406] = {.lex_state = 737}, - [7407] = {.lex_state = 369}, - [7408] = {.lex_state = 737}, - [7409] = {.lex_state = 369}, - [7410] = {.lex_state = 369}, - [7411] = {.lex_state = 103}, - [7412] = {.lex_state = 105}, - [7413] = {.lex_state = 103}, - [7414] = {.lex_state = 4093}, - [7415] = {.lex_state = 737}, - [7416] = {.lex_state = 369}, - [7417] = {.lex_state = 105}, - [7418] = {.lex_state = 369}, - [7419] = {.lex_state = 4093}, - [7420] = {.lex_state = 103}, - [7421] = {.lex_state = 369}, - [7422] = {.lex_state = 30}, - [7423] = {.lex_state = 379}, - [7424] = {.lex_state = 105}, - [7425] = {.lex_state = 4093}, - [7426] = {.lex_state = 737}, - [7427] = {.lex_state = 103}, - [7428] = {.lex_state = 4095}, - [7429] = {.lex_state = 4093}, - [7430] = {.lex_state = 105}, - [7431] = {.lex_state = 4097}, - [7432] = {.lex_state = 105}, - [7433] = {.lex_state = 105}, - [7434] = {.lex_state = 4097}, - [7435] = {.lex_state = 4097}, - [7436] = {.lex_state = 4097}, - [7437] = {.lex_state = 369}, - [7438] = {.lex_state = 369}, - [7439] = {.lex_state = 4093}, - [7440] = {.lex_state = 737}, - [7441] = {.lex_state = 105}, - [7442] = {.lex_state = 737}, - [7443] = {.lex_state = 4093}, - [7444] = {.lex_state = 736}, - [7445] = {.lex_state = 738}, - [7446] = {.lex_state = 4093}, - [7447] = {.lex_state = 4093}, - [7448] = {.lex_state = 4097}, - [7449] = {.lex_state = 105}, - [7450] = {.lex_state = 369}, - [7451] = {.lex_state = 4097}, - [7452] = {.lex_state = 737}, - [7453] = {.lex_state = 4097}, - [7454] = {.lex_state = 737}, - [7455] = {.lex_state = 103}, - [7456] = {.lex_state = 4093}, - [7457] = {.lex_state = 4093}, - [7458] = {.lex_state = 103}, - [7459] = {.lex_state = 737}, - [7460] = {.lex_state = 30}, - [7461] = {.lex_state = 103}, - [7462] = {.lex_state = 737}, - [7463] = {.lex_state = 737}, - [7464] = {.lex_state = 737}, - [7465] = {.lex_state = 737}, - [7466] = {.lex_state = 737}, - [7467] = {.lex_state = 105}, - [7468] = {.lex_state = 737}, - [7469] = {.lex_state = 105}, - [7470] = {.lex_state = 737}, - [7471] = {.lex_state = 737}, - [7472] = {.lex_state = 105}, - [7473] = {.lex_state = 105}, - [7474] = {.lex_state = 737}, - [7475] = {.lex_state = 4095}, - [7476] = {.lex_state = 737}, - [7477] = {.lex_state = 105}, - [7478] = {.lex_state = 105}, - [7479] = {.lex_state = 737}, - [7480] = {.lex_state = 379}, - [7481] = {.lex_state = 103}, - [7482] = {.lex_state = 105}, - [7483] = {.lex_state = 103}, - [7484] = {.lex_state = 737}, - [7485] = {.lex_state = 105}, - [7486] = {.lex_state = 379}, - [7487] = {.lex_state = 369}, - [7488] = {.lex_state = 103}, - [7489] = {.lex_state = 320}, - [7490] = {.lex_state = 379}, - [7491] = {.lex_state = 4097}, - [7492] = {.lex_state = 737}, - [7493] = {.lex_state = 276}, - [7494] = {.lex_state = 103}, - [7495] = {.lex_state = 4093}, - [7496] = {.lex_state = 706}, - [7497] = {.lex_state = 4097}, - [7498] = {.lex_state = 737}, - [7499] = {.lex_state = 105}, - [7500] = {.lex_state = 737}, - [7501] = {.lex_state = 105}, - [7502] = {.lex_state = 105}, - [7503] = {.lex_state = 105}, - [7504] = {.lex_state = 105}, - [7505] = {.lex_state = 105}, - [7506] = {.lex_state = 105}, - [7507] = {.lex_state = 737}, - [7508] = {.lex_state = 737}, - [7509] = {.lex_state = 716}, - [7510] = {.lex_state = 4093}, - [7511] = {.lex_state = 4093}, - [7512] = {.lex_state = 4093}, - [7513] = {.lex_state = 276}, - [7514] = {.lex_state = 105}, - [7515] = {.lex_state = 4093}, - [7516] = {.lex_state = 105}, - [7517] = {.lex_state = 737}, - [7518] = {.lex_state = 737}, - [7519] = {.lex_state = 4093}, - [7520] = {.lex_state = 4093}, - [7521] = {.lex_state = 737}, - [7522] = {.lex_state = 105}, - [7523] = {.lex_state = 4095}, - [7524] = {.lex_state = 4093}, - [7525] = {.lex_state = 4093}, - [7526] = {.lex_state = 4093}, - [7527] = {.lex_state = 4097}, - [7528] = {.lex_state = 4097}, - [7529] = {.lex_state = 105}, - [7530] = {.lex_state = 105}, - [7531] = {.lex_state = 103}, - [7532] = {.lex_state = 103}, - [7533] = {.lex_state = 4095}, - [7534] = {.lex_state = 738}, - [7535] = {.lex_state = 4097}, - [7536] = {.lex_state = 105}, - [7537] = {.lex_state = 4095}, - [7538] = {.lex_state = 4097}, - [7539] = {.lex_state = 736}, - [7540] = {.lex_state = 2793}, - [7541] = {.lex_state = 738}, - [7542] = {.lex_state = 737}, - [7543] = {.lex_state = 736}, - [7544] = {.lex_state = 4097}, - [7545] = {.lex_state = 379}, - [7546] = {.lex_state = 103}, - [7547] = {.lex_state = 737}, - [7548] = {.lex_state = 131}, - [7549] = {.lex_state = 383}, - [7550] = {.lex_state = 737}, - [7551] = {.lex_state = 737}, - [7552] = {.lex_state = 737}, - [7553] = {.lex_state = 734}, - [7554] = {.lex_state = 737}, - [7555] = {.lex_state = 737, .external_lex_state = 3}, - [7556] = {.lex_state = 737}, - [7557] = {.lex_state = 737}, - [7558] = {.lex_state = 734}, - [7559] = {.lex_state = 737}, - [7560] = {.lex_state = 737, .external_lex_state = 3}, - [7561] = {.lex_state = 737}, - [7562] = {.lex_state = 737, .external_lex_state = 3}, - [7563] = {.lex_state = 369}, - [7564] = {.lex_state = 737}, - [7565] = {.lex_state = 737}, - [7566] = {.lex_state = 734}, - [7567] = {.lex_state = 734}, - [7568] = {.lex_state = 4095}, - [7569] = {.lex_state = 737}, - [7570] = {.lex_state = 734}, - [7571] = {.lex_state = 379}, - [7572] = {.lex_state = 737}, - [7573] = {.lex_state = 737, .external_lex_state = 3}, - [7574] = {.lex_state = 737}, - [7575] = {.lex_state = 737}, - [7576] = {.lex_state = 1841}, - [7577] = {.lex_state = 737}, - [7578] = {.lex_state = 737}, - [7579] = {.lex_state = 737, .external_lex_state = 4}, - [7580] = {.lex_state = 737, .external_lex_state = 4}, - [7581] = {.lex_state = 737}, - [7582] = {.lex_state = 369}, - [7583] = {.lex_state = 737, .external_lex_state = 3}, - [7584] = {.lex_state = 734}, - [7585] = {.lex_state = 369}, - [7586] = {.lex_state = 736}, - [7587] = {.lex_state = 737}, - [7588] = {.lex_state = 379}, - [7589] = {.lex_state = 737, .external_lex_state = 3}, - [7590] = {.lex_state = 669}, - [7591] = {.lex_state = 369}, - [7592] = {.lex_state = 4097}, - [7593] = {.lex_state = 737}, - [7594] = {.lex_state = 734}, - [7595] = {.lex_state = 379}, - [7596] = {.lex_state = 737}, - [7597] = {.lex_state = 369}, - [7598] = {.lex_state = 737}, - [7599] = {.lex_state = 1841}, - [7600] = {.lex_state = 737}, - [7601] = {.lex_state = 737}, - [7602] = {.lex_state = 737}, - [7603] = {.lex_state = 4095}, - [7604] = {.lex_state = 737}, - [7605] = {.lex_state = 737}, - [7606] = {.lex_state = 737}, - [7607] = {.lex_state = 737}, - [7608] = {.lex_state = 737}, - [7609] = {.lex_state = 707}, - [7610] = {.lex_state = 737, .external_lex_state = 3}, - [7611] = {.lex_state = 737, .external_lex_state = 3}, - [7612] = {.lex_state = 369}, - [7613] = {.lex_state = 737}, - [7614] = {.lex_state = 737}, - [7615] = {.lex_state = 737}, - [7616] = {.lex_state = 44}, - [7617] = {.lex_state = 737}, - [7618] = {.lex_state = 737}, - [7619] = {.lex_state = 737}, - [7620] = {.lex_state = 737}, - [7621] = {.lex_state = 737}, - [7622] = {.lex_state = 737}, - [7623] = {.lex_state = 737}, - [7624] = {.lex_state = 1841}, - [7625] = {.lex_state = 737}, - [7626] = {.lex_state = 737, .external_lex_state = 4}, - [7627] = {.lex_state = 737}, - [7628] = {.lex_state = 734}, - [7629] = {.lex_state = 669}, - [7630] = {.lex_state = 737}, - [7631] = {.lex_state = 737}, - [7632] = {.lex_state = 737}, - [7633] = {.lex_state = 734}, - [7634] = {.lex_state = 46}, - [7635] = {.lex_state = 737, .external_lex_state = 3}, - [7636] = {.lex_state = 737}, - [7637] = {.lex_state = 131}, - [7638] = {.lex_state = 737}, - [7639] = {.lex_state = 737}, - [7640] = {.lex_state = 737}, - [7641] = {.lex_state = 737}, - [7642] = {.lex_state = 737}, - [7643] = {.lex_state = 369}, - [7644] = {.lex_state = 379}, - [7645] = {.lex_state = 4093}, - [7646] = {.lex_state = 737, .external_lex_state = 3}, - [7647] = {.lex_state = 737, .external_lex_state = 3}, - [7648] = {.lex_state = 737}, - [7649] = {.lex_state = 737}, - [7650] = {.lex_state = 737}, - [7651] = {.lex_state = 737}, - [7652] = {.lex_state = 737}, - [7653] = {.lex_state = 737}, - [7654] = {.lex_state = 737}, - [7655] = {.lex_state = 737}, - [7656] = {.lex_state = 737}, - [7657] = {.lex_state = 734}, - [7658] = {.lex_state = 737, .external_lex_state = 3}, - [7659] = {.lex_state = 737}, - [7660] = {.lex_state = 734}, - [7661] = {.lex_state = 737}, - [7662] = {.lex_state = 737}, - [7663] = {.lex_state = 737}, - [7664] = {.lex_state = 737}, - [7665] = {.lex_state = 734}, - [7666] = {.lex_state = 369}, - [7667] = {.lex_state = 737, .external_lex_state = 3}, - [7668] = {.lex_state = 737}, - [7669] = {.lex_state = 1841}, - [7670] = {.lex_state = 737}, - [7671] = {.lex_state = 737, .external_lex_state = 3}, - [7672] = {.lex_state = 737}, - [7673] = {.lex_state = 737}, - [7674] = {.lex_state = 4110}, - [7675] = {.lex_state = 737}, - [7676] = {.lex_state = 737, .external_lex_state = 3}, - [7677] = {.lex_state = 821}, - [7678] = {.lex_state = 369}, - [7679] = {.lex_state = 737}, - [7680] = {.lex_state = 737}, - [7681] = {.lex_state = 737}, - [7682] = {.lex_state = 737}, - [7683] = {.lex_state = 131}, - [7684] = {.lex_state = 737, .external_lex_state = 4}, - [7685] = {.lex_state = 737}, - [7686] = {.lex_state = 737, .external_lex_state = 3}, - [7687] = {.lex_state = 669}, - [7688] = {.lex_state = 737}, - [7689] = {.lex_state = 737}, - [7690] = {.lex_state = 737}, - [7691] = {.lex_state = 737}, - [7692] = {.lex_state = 737}, - [7693] = {.lex_state = 669}, - [7694] = {.lex_state = 737}, - [7695] = {.lex_state = 737}, - [7696] = {.lex_state = 737}, - [7697] = {.lex_state = 737}, - [7698] = {.lex_state = 737, .external_lex_state = 3}, - [7699] = {.lex_state = 737}, - [7700] = {.lex_state = 737}, - [7701] = {.lex_state = 737}, - [7702] = {.lex_state = 44}, - [7703] = {.lex_state = 737}, - [7704] = {.lex_state = 737}, - [7705] = {.lex_state = 737, .external_lex_state = 4}, - [7706] = {.lex_state = 737}, - [7707] = {.lex_state = 669}, - [7708] = {.lex_state = 737}, - [7709] = {.lex_state = 4097}, - [7710] = {.lex_state = 737}, - [7711] = {.lex_state = 737}, - [7712] = {.lex_state = 737, .external_lex_state = 3}, - [7713] = {.lex_state = 737}, - [7714] = {.lex_state = 373}, - [7715] = {.lex_state = 369}, - [7716] = {.lex_state = 737, .external_lex_state = 3}, - [7717] = {.lex_state = 737}, - [7718] = {.lex_state = 737}, - [7719] = {.lex_state = 737}, - [7720] = {.lex_state = 737, .external_lex_state = 4}, - [7721] = {.lex_state = 669}, - [7722] = {.lex_state = 379}, - [7723] = {.lex_state = 369}, - [7724] = {.lex_state = 737}, - [7725] = {.lex_state = 737}, - [7726] = {.lex_state = 734}, - [7727] = {.lex_state = 379}, - [7728] = {.lex_state = 737}, - [7729] = {.lex_state = 737}, - [7730] = {.lex_state = 44}, - [7731] = {.lex_state = 46}, - [7732] = {.lex_state = 737}, - [7733] = {.lex_state = 737}, - [7734] = {.lex_state = 737, .external_lex_state = 4}, - [7735] = {.lex_state = 669}, - [7736] = {.lex_state = 737}, - [7737] = {.lex_state = 737}, - [7738] = {.lex_state = 369}, - [7739] = {.lex_state = 737}, - [7740] = {.lex_state = 44}, - [7741] = {.lex_state = 734}, - [7742] = {.lex_state = 4097}, - [7743] = {.lex_state = 737}, - [7744] = {.lex_state = 737, .external_lex_state = 3}, - [7745] = {.lex_state = 737}, - [7746] = {.lex_state = 737}, - [7747] = {.lex_state = 737, .external_lex_state = 4}, - [7748] = {.lex_state = 669}, - [7749] = {.lex_state = 737}, - [7750] = {.lex_state = 131}, - [7751] = {.lex_state = 375}, - [7752] = {.lex_state = 737}, - [7753] = {.lex_state = 737}, - [7754] = {.lex_state = 374}, - [7755] = {.lex_state = 1841}, - [7756] = {.lex_state = 737}, - [7757] = {.lex_state = 1841}, - [7758] = {.lex_state = 737}, - [7759] = {.lex_state = 737, .external_lex_state = 3}, - [7760] = {.lex_state = 737, .external_lex_state = 4}, - [7761] = {.lex_state = 669}, - [7762] = {.lex_state = 737}, - [7763] = {.lex_state = 737}, - [7764] = {.lex_state = 737}, - [7765] = {.lex_state = 1841}, - [7766] = {.lex_state = 375}, - [7767] = {.lex_state = 737}, - [7768] = {.lex_state = 737}, - [7769] = {.lex_state = 1841}, - [7770] = {.lex_state = 737}, - [7771] = {.lex_state = 737}, - [7772] = {.lex_state = 737}, - [7773] = {.lex_state = 737, .external_lex_state = 4}, - [7774] = {.lex_state = 669}, - [7775] = {.lex_state = 737}, - [7776] = {.lex_state = 2793}, - [7777] = {.lex_state = 737}, - [7778] = {.lex_state = 734}, - [7779] = {.lex_state = 737}, - [7780] = {.lex_state = 737}, - [7781] = {.lex_state = 1841}, - [7782] = {.lex_state = 737}, - [7783] = {.lex_state = 737}, - [7784] = {.lex_state = 736}, - [7785] = {.lex_state = 737}, - [7786] = {.lex_state = 737, .external_lex_state = 4}, - [7787] = {.lex_state = 669}, - [7788] = {.lex_state = 737}, - [7789] = {.lex_state = 779}, - [7790] = {.lex_state = 379}, - [7791] = {.lex_state = 737}, - [7792] = {.lex_state = 371}, - [7793] = {.lex_state = 737, .external_lex_state = 3}, - [7794] = {.lex_state = 737}, - [7795] = {.lex_state = 737}, - [7796] = {.lex_state = 737, .external_lex_state = 3}, - [7797] = {.lex_state = 737}, - [7798] = {.lex_state = 1841}, - [7799] = {.lex_state = 737, .external_lex_state = 4}, - [7800] = {.lex_state = 669}, - [7801] = {.lex_state = 369}, - [7802] = {.lex_state = 737}, - [7803] = {.lex_state = 737}, - [7804] = {.lex_state = 734}, - [7805] = {.lex_state = 372}, - [7806] = {.lex_state = 737}, - [7807] = {.lex_state = 737}, - [7808] = {.lex_state = 4095}, - [7809] = {.lex_state = 4093}, - [7810] = {.lex_state = 1841}, - [7811] = {.lex_state = 737, .external_lex_state = 3}, - [7812] = {.lex_state = 737, .external_lex_state = 4}, - [7813] = {.lex_state = 669}, - [7814] = {.lex_state = 737}, - [7815] = {.lex_state = 737, .external_lex_state = 3}, - [7816] = {.lex_state = 737}, - [7817] = {.lex_state = 737}, - [7818] = {.lex_state = 737}, - [7819] = {.lex_state = 737}, - [7820] = {.lex_state = 737}, - [7821] = {.lex_state = 369}, - [7822] = {.lex_state = 737}, - [7823] = {.lex_state = 379}, - [7824] = {.lex_state = 737}, - [7825] = {.lex_state = 737, .external_lex_state = 4}, - [7826] = {.lex_state = 669}, - [7827] = {.lex_state = 1841}, - [7828] = {.lex_state = 737}, - [7829] = {.lex_state = 737}, - [7830] = {.lex_state = 734}, - [7831] = {.lex_state = 737}, - [7832] = {.lex_state = 369}, - [7833] = {.lex_state = 737}, - [7834] = {.lex_state = 737, .external_lex_state = 3}, - [7835] = {.lex_state = 737, .external_lex_state = 4}, - [7836] = {.lex_state = 669}, - [7837] = {.lex_state = 44}, - [7838] = {.lex_state = 737, .external_lex_state = 3}, - [7839] = {.lex_state = 737}, - [7840] = {.lex_state = 737}, - [7841] = {.lex_state = 737}, - [7842] = {.lex_state = 737}, - [7843] = {.lex_state = 737}, - [7844] = {.lex_state = 737}, - [7845] = {.lex_state = 737, .external_lex_state = 4}, - [7846] = {.lex_state = 737, .external_lex_state = 3}, - [7847] = {.lex_state = 44}, - [7848] = {.lex_state = 131}, - [7849] = {.lex_state = 737}, - [7850] = {.lex_state = 374}, - [7851] = {.lex_state = 1841}, - [7852] = {.lex_state = 737, .external_lex_state = 3}, - [7853] = {.lex_state = 736}, - [7854] = {.lex_state = 737, .external_lex_state = 4}, - [7855] = {.lex_state = 737}, - [7856] = {.lex_state = 737}, - [7857] = {.lex_state = 737, .external_lex_state = 3}, - [7858] = {.lex_state = 737}, - [7859] = {.lex_state = 369}, - [7860] = {.lex_state = 737}, - [7861] = {.lex_state = 737}, - [7862] = {.lex_state = 737, .external_lex_state = 3}, - [7863] = {.lex_state = 737, .external_lex_state = 4}, - [7864] = {.lex_state = 737, .external_lex_state = 3}, - [7865] = {.lex_state = 737}, - [7866] = {.lex_state = 737}, - [7867] = {.lex_state = 737}, - [7868] = {.lex_state = 821}, - [7869] = {.lex_state = 737}, - [7870] = {.lex_state = 737}, - [7871] = {.lex_state = 737, .external_lex_state = 3}, - [7872] = {.lex_state = 737, .external_lex_state = 4}, - [7873] = {.lex_state = 737, .external_lex_state = 4}, - [7874] = {.lex_state = 737, .external_lex_state = 4}, - [7875] = {.lex_state = 737, .external_lex_state = 4}, - [7876] = {.lex_state = 737, .external_lex_state = 4}, - [7877] = {.lex_state = 737, .external_lex_state = 4}, - [7878] = {.lex_state = 737, .external_lex_state = 4}, - [7879] = {.lex_state = 737, .external_lex_state = 4}, - [7880] = {.lex_state = 737, .external_lex_state = 4}, - [7881] = {.lex_state = 737, .external_lex_state = 4}, - [7882] = {.lex_state = 737, .external_lex_state = 4}, - [7883] = {.lex_state = 737, .external_lex_state = 4}, - [7884] = {.lex_state = 737, .external_lex_state = 4}, - [7885] = {.lex_state = 737, .external_lex_state = 4}, - [7886] = {.lex_state = 737, .external_lex_state = 4}, - [7887] = {.lex_state = 737, .external_lex_state = 4}, - [7888] = {.lex_state = 737, .external_lex_state = 4}, - [7889] = {.lex_state = 737, .external_lex_state = 4}, - [7890] = {.lex_state = 737, .external_lex_state = 4}, - [7891] = {.lex_state = 737, .external_lex_state = 4}, - [7892] = {.lex_state = 737, .external_lex_state = 4}, - [7893] = {.lex_state = 737}, - [7894] = {.lex_state = 103}, - [7895] = {.lex_state = 374}, - [7896] = {.lex_state = 737}, - [7897] = {.lex_state = 4093}, - [7898] = {.lex_state = 737}, - [7899] = {.lex_state = 737, .external_lex_state = 3}, - [7900] = {.lex_state = 369}, - [7901] = {.lex_state = 737}, - [7902] = {.lex_state = 374}, - [7903] = {.lex_state = 707}, - [7904] = {.lex_state = 737}, - [7905] = {.lex_state = 369}, - [7906] = {.lex_state = 131}, - [7907] = {.lex_state = 369}, - [7908] = {.lex_state = 379}, - [7909] = {.lex_state = 379}, - [7910] = {.lex_state = 737}, - [7911] = {.lex_state = 738}, - [7912] = {.lex_state = 737}, - [7913] = {.lex_state = 737}, - [7914] = {.lex_state = 379}, - [7915] = {.lex_state = 737}, - [7916] = {.lex_state = 737}, - [7917] = {.lex_state = 737}, - [7918] = {.lex_state = 737}, - [7919] = {.lex_state = 737}, - [7920] = {.lex_state = 44}, - [7921] = {.lex_state = 737, .external_lex_state = 3}, - [7922] = {.lex_state = 737, .external_lex_state = 3}, - [7923] = {.lex_state = 737, .external_lex_state = 3}, - [7924] = {.lex_state = 737}, - [7925] = {.lex_state = 737}, - [7926] = {.lex_state = 1841}, - [7927] = {.lex_state = 738}, - [7928] = {.lex_state = 734}, - [7929] = {.lex_state = 737}, - [7930] = {.lex_state = 44}, - [7931] = {.lex_state = 737}, - [7932] = {.lex_state = 737}, - [7933] = {.lex_state = 375}, - [7934] = {.lex_state = 379}, - [7935] = {.lex_state = 1841}, - [7936] = {.lex_state = 737}, - [7937] = {.lex_state = 737, .external_lex_state = 3}, - [7938] = {.lex_state = 1841}, - [7939] = {.lex_state = 737}, - [7940] = {.lex_state = 737}, - [7941] = {.lex_state = 737}, - [7942] = {.lex_state = 737, .external_lex_state = 3}, - [7943] = {.lex_state = 737}, - [7944] = {.lex_state = 737}, - [7945] = {.lex_state = 737}, - [7946] = {.lex_state = 737}, - [7947] = {.lex_state = 737}, - [7948] = {.lex_state = 736}, - [7949] = {.lex_state = 737}, - [7950] = {.lex_state = 737}, - [7951] = {.lex_state = 737}, - [7952] = {.lex_state = 737}, - [7953] = {(TSStateId)(-1)}, + [7384] = {.lex_state = 738}, + [7385] = {.lex_state = 738}, + [7386] = {.lex_state = 738, .external_lex_state = 3}, + [7387] = {.lex_state = 738}, + [7388] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -62951,85 +61837,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_end] = ACTIONS(1), }, [1] = { - [sym_nu_script] = STATE(7689), - [sym_shebang] = STATE(67), - [sym__block_body_statement] = STATE(6315), - [sym__declaration] = STATE(6930), - [sym_decl_alias] = STATE(6931), - [sym_stmt_let] = STATE(6971), - [sym_stmt_mut] = STATE(6971), - [sym_stmt_const] = STATE(6971), - [sym_assignment] = STATE(6971), - [sym__mutable_assignment_pattern] = STATE(6974), - [sym__statement] = STATE(6930), - [sym_pipeline] = STATE(6971), - [sym__block_body] = STATE(7931), - [sym_cmd_identifier] = STATE(4647), - [sym_attribute_list] = STATE(7444), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6931), - [sym_decl_export] = STATE(6931), - [sym_decl_extern] = STATE(6931), - [sym_decl_module] = STATE(6931), - [sym_decl_use] = STATE(6931), - [sym__ctrl_statement] = STATE(6971), - [sym__ctrl_expression] = STATE(5055), - [sym_ctrl_for] = STATE(7087), - [sym_ctrl_loop] = STATE(7087), - [sym_ctrl_error] = STATE(7087), - [sym_ctrl_while] = STATE(7087), - [sym_ctrl_do] = STATE(5153), - [sym_ctrl_if] = STATE(5153), - [sym_ctrl_match] = STATE(5153), - [sym_ctrl_try] = STATE(5153), - [sym_ctrl_return] = STATE(5153), - [sym_pipe_element] = STATE(4584), - [sym_stmt_source] = STATE(6971), - [sym__stmt_hide] = STATE(6971), - [sym_hide_mod] = STATE(7358), - [sym_hide_env] = STATE(7358), - [sym__stmt_overlay] = STATE(6971), - [sym_overlay_list] = STATE(7359), - [sym_overlay_hide] = STATE(7359), - [sym_overlay_new] = STATE(7359), - [sym_overlay_use] = STATE(7359), - [sym_where_command] = STATE(5004), - [sym__expression] = STATE(3881), - [sym_expr_unary] = STATE(2510), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2510), - [sym__expr_binary_expression] = STATE(3843), - [sym_expr_parenthesized] = STATE(2098), - [sym_val_range] = STATE(2510), - [sym__value] = STATE(2510), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(2470), - [sym_val_variable] = STATE(1446), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(778), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(5004), + [sym_nu_script] = STATE(7002), + [sym_shebang] = STATE(73), + [sym__block_body_statement] = STATE(5927), + [sym__declaration] = STATE(6440), + [sym_decl_alias] = STATE(6581), + [sym_stmt_let] = STATE(6587), + [sym_stmt_mut] = STATE(6587), + [sym_stmt_const] = STATE(6587), + [sym_assignment] = STATE(6587), + [sym__mutable_assignment_pattern] = STATE(6793), + [sym__statement] = STATE(6440), + [sym_pipeline] = STATE(6587), + [sym__block_body] = STATE(7289), + [sym_cmd_identifier] = STATE(4425), + [sym_attribute_list] = STATE(6841), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6581), + [sym_decl_export] = STATE(6581), + [sym_decl_extern] = STATE(6581), + [sym_decl_module] = STATE(6581), + [sym_decl_use] = STATE(6581), + [sym__ctrl_statement] = STATE(6587), + [sym__ctrl_expression] = STATE(4740), + [sym_ctrl_for] = STATE(6531), + [sym_ctrl_loop] = STATE(6531), + [sym_ctrl_error] = STATE(6531), + [sym_ctrl_while] = STATE(6531), + [sym_ctrl_do] = STATE(4755), + [sym_ctrl_if] = STATE(4755), + [sym_ctrl_match] = STATE(4755), + [sym_ctrl_try] = STATE(4755), + [sym_ctrl_return] = STATE(4755), + [sym_pipe_element] = STATE(4358), + [sym_stmt_source] = STATE(6587), + [sym__stmt_hide] = STATE(6587), + [sym_hide_mod] = STATE(6561), + [sym_hide_env] = STATE(6561), + [sym__stmt_overlay] = STATE(6587), + [sym_overlay_list] = STATE(6401), + [sym_overlay_hide] = STATE(6401), + [sym_overlay_new] = STATE(6401), + [sym_overlay_use] = STATE(6401), + [sym_where_command] = STATE(4788), + [sym__expression] = STATE(3684), + [sym_expr_unary] = STATE(2328), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2328), + [sym__expr_binary_expression] = STATE(3675), + [sym_expr_parenthesized] = STATE(1929), + [sym_val_range] = STATE(2328), + [sym__value] = STATE(2328), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(2375), + [sym_val_variable] = STATE(1372), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(749), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4788), [sym_comment] = STATE(1), - [aux_sym_shebang_repeat1] = STATE(7361), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(100), + [aux_sym_shebang_repeat1] = STATE(6657), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(103), [aux_sym__block_body_repeat2] = STATE(134), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(339), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(347), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_POUND_BANG] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), @@ -63140,92 +62026,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(121), }, [2] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7816), - [sym_cmd_identifier] = STATE(4378), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(105), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1944), - [sym__spread_parenthesized] = STATE(638), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(645), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7076), + [sym_cmd_identifier] = STATE(4174), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(106), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1850), + [sym__spread_parenthesized] = STATE(637), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(638), [sym_val_variable] = STATE(154), - [sym_val_number] = STATE(2338), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2338), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2338), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(638), - [sym_record_body] = STATE(7818), - [sym_record_entry] = STATE(551), - [sym__record_key] = STATE(7633), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym_val_number] = STATE(2297), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2297), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2297), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(637), + [sym_record_body] = STATE(7077), + [sym_record_entry] = STATE(567), + [sym__record_key] = STATE(7166), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(2), [aux_sym_shebang_repeat1] = STATE(24), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), [aux_sym__match_pattern_record_repeat1] = STATE(205), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(209), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(123), [anon_sym_alias] = ACTIONS(125), [anon_sym_let] = ACTIONS(127), @@ -63346,91 +62232,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [3] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7575), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(120), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_body] = STATE(7605), - [sym_record_entry] = STATE(6953), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7206), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(102), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_body] = STATE(7137), + [sym_record_entry] = STATE(6726), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(3), - [aux_sym_shebang_repeat1] = STATE(31), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(209), + [aux_sym_shebang_repeat1] = STATE(23), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -63551,91 +62437,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [4] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7661), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(99), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_body] = STATE(7649), - [sym_record_entry] = STATE(6953), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7366), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(122), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_body] = STATE(7149), + [sym_record_entry] = STATE(6726), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(4), [aux_sym_shebang_repeat1] = STATE(22), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(209), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -63756,91 +62642,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [5] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7768), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(99), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_body] = STATE(7649), - [sym_record_entry] = STATE(6953), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7283), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(102), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_body] = STATE(7137), + [sym_record_entry] = STATE(6726), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(5), - [aux_sym_shebang_repeat1] = STATE(22), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(209), + [aux_sym_shebang_repeat1] = STATE(23), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -63961,91 +62847,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [6] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7816), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(105), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_body] = STATE(7818), - [sym_record_entry] = STATE(6953), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7076), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(106), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_body] = STATE(7077), + [sym_record_entry] = STATE(6726), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(6), [aux_sym_shebang_repeat1] = STATE(24), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(209), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -64166,91 +63052,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [7] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7791), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(108), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_body] = STATE(7763), - [sym_record_entry] = STATE(6953), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7172), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(109), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_body] = STATE(7041), + [sym_record_entry] = STATE(6726), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(7), [aux_sym_shebang_repeat1] = STATE(25), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(209), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -64371,91 +63257,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [8] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7577), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(108), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_body] = STATE(7763), - [sym_record_entry] = STATE(6953), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7027), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(109), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_body] = STATE(7041), + [sym_record_entry] = STATE(6726), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(8), [aux_sym_shebang_repeat1] = STATE(25), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(209), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -64576,91 +63462,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [9] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7866), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(105), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_body] = STATE(7818), - [sym_record_entry] = STATE(6953), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7265), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(106), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_body] = STATE(7077), + [sym_record_entry] = STATE(6726), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(9), [aux_sym_shebang_repeat1] = STATE(24), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(209), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -64781,91 +63667,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [10] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7577), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(108), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_body] = STATE(7743), - [sym_record_entry] = STATE(6953), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7027), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(109), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_body] = STATE(7139), + [sym_record_entry] = STATE(6726), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(10), [aux_sym_shebang_repeat1] = STATE(25), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(209), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -64986,91 +63872,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [11] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7739), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(110), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_body] = STATE(7692), - [sym_record_entry] = STATE(6953), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7131), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(111), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_body] = STATE(7150), + [sym_record_entry] = STATE(6726), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(11), - [aux_sym_shebang_repeat1] = STATE(27), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(209), + [aux_sym_shebang_repeat1] = STATE(26), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -65191,91 +64077,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [12] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7685), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(114), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_body] = STATE(7915), - [sym_record_entry] = STATE(6953), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7107), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(116), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_body] = STATE(7224), + [sym_record_entry] = STATE(6726), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(12), - [aux_sym_shebang_repeat1] = STATE(26), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(209), + [aux_sym_shebang_repeat1] = STATE(28), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -65396,91 +64282,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [13] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7913), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(116), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_body] = STATE(7736), - [sym_record_entry] = STATE(6953), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7220), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(118), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_body] = STATE(7060), + [sym_record_entry] = STATE(6726), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(13), - [aux_sym_shebang_repeat1] = STATE(30), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(209), + [aux_sym_shebang_repeat1] = STATE(29), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -65601,91 +64487,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [14] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7694), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(118), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_body] = STATE(7581), - [sym_record_entry] = STATE(6953), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7057), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(120), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_body] = STATE(7372), + [sym_record_entry] = STATE(6726), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(14), - [aux_sym_shebang_repeat1] = STATE(28), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(209), + [aux_sym_shebang_repeat1] = STATE(30), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -65806,91 +64692,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [15] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7575), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(120), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_body] = STATE(7642), - [sym_record_entry] = STATE(6953), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7366), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(122), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_body] = STATE(7122), + [sym_record_entry] = STATE(6726), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(15), - [aux_sym_shebang_repeat1] = STATE(31), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(209), + [aux_sym_shebang_repeat1] = STATE(22), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -66011,91 +64897,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [16] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7641), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(112), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_body] = STATE(7655), - [sym_record_entry] = STATE(6953), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7117), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(114), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_body] = STATE(7024), + [sym_record_entry] = STATE(6726), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(16), - [aux_sym_shebang_repeat1] = STATE(32), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(209), + [aux_sym_shebang_repeat1] = STATE(31), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -66216,91 +65102,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [17] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7575), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(120), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_body] = STATE(7831), - [sym_record_entry] = STATE(6953), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7366), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(122), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_body] = STATE(7101), + [sym_record_entry] = STATE(6726), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(17), - [aux_sym_shebang_repeat1] = STATE(31), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(209), + [aux_sym_shebang_repeat1] = STATE(22), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -66421,91 +65307,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [18] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7654), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(122), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_body] = STATE(7627), - [sym_record_entry] = STATE(6953), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7023), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(124), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_body] = STATE(7191), + [sym_record_entry] = STATE(6726), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(18), - [aux_sym_shebang_repeat1] = STATE(29), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(209), + [aux_sym_shebang_repeat1] = STATE(27), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -66626,91 +65512,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [19] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7829), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(124), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_body] = STATE(7901), - [sym_record_entry] = STATE(6953), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7100), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(126), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_body] = STATE(7268), + [sym_record_entry] = STATE(6726), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(19), - [aux_sym_shebang_repeat1] = STATE(33), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(209), + [aux_sym_shebang_repeat1] = STATE(32), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -66831,91 +65717,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [20] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7607), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(126), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_body] = STATE(7617), - [sym_record_entry] = STATE(6953), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7187), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(128), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_body] = STATE(7358), + [sym_record_entry] = STATE(6726), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(20), - [aux_sym_shebang_repeat1] = STATE(34), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(209), + [aux_sym_shebang_repeat1] = STATE(33), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -67036,91 +65922,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [21] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7893), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(129), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_body] = STATE(7681), - [sym_record_entry] = STATE(6953), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7267), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(113), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_body] = STATE(7282), + [sym_record_entry] = STATE(6726), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(21), - [aux_sym_shebang_repeat1] = STATE(23), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(209), + [aux_sym_shebang_repeat1] = STATE(34), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -67241,90 +66127,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [22] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7656), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(102), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_entry] = STATE(7015), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7174), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(123), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_entry] = STATE(6453), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(22), - [aux_sym_shebang_repeat1] = STATE(199), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(208), + [aux_sym_shebang_repeat1] = STATE(198), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(209), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -67444,90 +66330,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [23] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7550), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(113), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_entry] = STATE(7015), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7382), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(99), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_entry] = STATE(6453), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(23), - [aux_sym_shebang_repeat1] = STATE(199), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(208), + [aux_sym_shebang_repeat1] = STATE(198), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(209), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -67647,90 +66533,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [24] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7688), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(107), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_entry] = STATE(7015), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7235), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(108), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_entry] = STATE(6453), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(24), - [aux_sym_shebang_repeat1] = STATE(199), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(208), + [aux_sym_shebang_repeat1] = STATE(198), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(209), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -67850,90 +66736,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [25] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7941), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(109), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_entry] = STATE(7015), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7373), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(110), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_entry] = STATE(6453), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(25), - [aux_sym_shebang_repeat1] = STATE(199), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(208), + [aux_sym_shebang_repeat1] = STATE(198), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(209), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -68053,90 +66939,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [26] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7820), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(115), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_entry] = STATE(7015), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7183), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(130), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_entry] = STATE(6453), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(26), - [aux_sym_shebang_repeat1] = STATE(199), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(208), + [aux_sym_shebang_repeat1] = STATE(198), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(209), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -68256,90 +67142,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [27] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7807), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(111), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_entry] = STATE(7015), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7046), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(125), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_entry] = STATE(6453), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(27), - [aux_sym_shebang_repeat1] = STATE(199), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(208), + [aux_sym_shebang_repeat1] = STATE(198), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(209), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -68459,90 +67345,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [28] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7762), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(119), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_entry] = STATE(7015), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7018), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(117), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_entry] = STATE(6453), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(28), - [aux_sym_shebang_repeat1] = STATE(199), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(208), + [aux_sym_shebang_repeat1] = STATE(198), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(209), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -68662,90 +67548,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [29] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7700), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(123), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_entry] = STATE(7015), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7142), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(119), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_entry] = STATE(6453), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(29), - [aux_sym_shebang_repeat1] = STATE(199), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(208), + [aux_sym_shebang_repeat1] = STATE(198), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(209), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -68865,90 +67751,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [30] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7779), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(117), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_entry] = STATE(7015), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7054), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(97), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_entry] = STATE(6453), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(30), - [aux_sym_shebang_repeat1] = STATE(199), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(208), + [aux_sym_shebang_repeat1] = STATE(198), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(209), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -69068,90 +67954,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [31] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7711), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(121), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_entry] = STATE(7015), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7084), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(115), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_entry] = STATE(6453), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(31), - [aux_sym_shebang_repeat1] = STATE(199), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(208), + [aux_sym_shebang_repeat1] = STATE(198), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(209), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -69271,90 +68157,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [32] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7556), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(130), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_entry] = STATE(7015), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7125), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(127), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_entry] = STATE(6453), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(32), - [aux_sym_shebang_repeat1] = STATE(199), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(208), + [aux_sym_shebang_repeat1] = STATE(198), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(209), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -69474,90 +68360,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [33] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7919), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(125), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_entry] = STATE(7015), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7205), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(129), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_entry] = STATE(6453), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(33), - [aux_sym_shebang_repeat1] = STATE(199), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(208), + [aux_sym_shebang_repeat1] = STATE(198), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(209), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -69677,90 +68563,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [34] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7663), - [sym_cmd_identifier] = STATE(4379), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(128), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1817), - [sym__spread_parenthesized] = STATE(7449), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(1394), - [sym_val_number] = STATE(2361), - [sym__val_number_decimal] = STATE(772), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2361), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2361), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym__spread_record] = STATE(7449), - [sym_record_entry] = STATE(7015), - [sym__record_key] = STATE(7628), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7290), + [sym_cmd_identifier] = STATE(4083), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(121), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1706), + [sym__spread_parenthesized] = STATE(6808), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(1354), + [sym_val_number] = STATE(2206), + [sym__val_number_decimal] = STATE(738), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(2206), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(2206), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym__spread_record] = STATE(6808), + [sym_record_entry] = STATE(6453), + [sym__record_key] = STATE(7315), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(34), - [aux_sym_shebang_repeat1] = STATE(199), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_record_body_repeat1] = STATE(208), + [aux_sym_shebang_repeat1] = STATE(198), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_record_body_repeat1] = STATE(209), [anon_sym_export] = ACTIONS(249), [anon_sym_alias] = ACTIONS(251), [anon_sym_let] = ACTIONS(253), @@ -69880,84 +68766,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [35] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7661), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(99), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7092), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(114), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(35), - [aux_sym_shebang_repeat1] = STATE(42), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [aux_sym_shebang_repeat1] = STATE(44), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -70068,84 +68954,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [36] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7791), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(108), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7172), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(109), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(36), - [aux_sym_shebang_repeat1] = STATE(44), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [aux_sym_shebang_repeat1] = STATE(43), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -70256,84 +69142,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [37] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7717), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(110), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7283), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(102), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(37), [aux_sym_shebang_repeat1] = STATE(41), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -70444,84 +69330,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [38] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7770), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(112), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7291), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(111), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(38), - [aux_sym_shebang_repeat1] = STATE(43), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [aux_sym_shebang_repeat1] = STATE(39), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -70632,84 +69518,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [39] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7768), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(99), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7183), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(130), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(39), - [aux_sym_shebang_repeat1] = STATE(42), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [aux_sym_shebang_repeat1] = STATE(226), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -70819,84 +69705,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [40] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7577), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(108), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7206), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(102), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(40), - [aux_sym_shebang_repeat1] = STATE(44), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [aux_sym_shebang_repeat1] = STATE(41), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -71006,84 +69892,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [41] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7807), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(111), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7382), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(99), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(41), - [aux_sym_shebang_repeat1] = STATE(278), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [aux_sym_shebang_repeat1] = STATE(226), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -71193,84 +70079,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [42] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7656), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(102), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7027), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(109), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(42), - [aux_sym_shebang_repeat1] = STATE(278), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [aux_sym_shebang_repeat1] = STATE(43), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -71380,84 +70266,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [43] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7556), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(130), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7373), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(110), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(43), - [aux_sym_shebang_repeat1] = STATE(278), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [aux_sym_shebang_repeat1] = STATE(226), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -71567,84 +70453,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [44] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7941), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym_parameter_pipes] = STATE(109), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7084), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym_parameter_pipes] = STATE(115), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(44), - [aux_sym_shebang_repeat1] = STATE(278), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [aux_sym_shebang_repeat1] = STATE(226), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -71754,82 +70640,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [45] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7675), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7246), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(45), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -71940,82 +70826,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [46] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7574), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7218), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(46), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -72126,82 +71012,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [47] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7869), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7266), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(47), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -72312,82 +71198,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [48] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7949), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7356), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(48), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -72498,82 +71384,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [49] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7615), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7225), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(49), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -72684,82 +71570,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [50] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7680), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7126), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(50), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -72870,82 +71756,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [51] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7746), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7164), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(51), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -73056,82 +71942,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [52] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7795), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(6999), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(52), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -73242,82 +72128,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [53] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7841), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7005), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(53), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -73428,82 +72314,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [54] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7708), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7069), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(54), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -73614,82 +72500,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [55] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7733), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7242), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(55), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -73772,7 +72658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(207), [anon_sym_DOT_DOT_LT] = ACTIONS(207), [anon_sym_null] = ACTIONS(209), - [anon_sym_RPAREN2] = ACTIONS(447), + [anon_sym_RPAREN2] = ACTIONS(477), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), [aux_sym__val_number_decimal_token1] = ACTIONS(449), @@ -73800,82 +72686,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [56] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7640), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7115), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(56), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -73986,82 +72872,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [57] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7912), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7365), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(57), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -74172,82 +73058,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [58] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7843), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7029), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(58), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -74357,82 +73243,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [59] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7701), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7186), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(59), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -74542,82 +73428,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [60] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7767), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7047), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(60), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -74727,82 +73613,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [61] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7708), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7016), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(61), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -74912,82 +73798,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [62] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7944), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7074), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(62), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -75097,82 +73983,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [63] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7788), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7127), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(63), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -75282,82 +74168,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [64] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7749), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7143), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(64), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -75467,82 +74353,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [65] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7664), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7218), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(65), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -75652,82 +74538,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [66] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7737), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7387), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(66), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -75837,267 +74723,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [67] = { - [sym__block_body_statement] = STATE(6315), - [sym__declaration] = STATE(6930), - [sym_decl_alias] = STATE(6931), - [sym_stmt_let] = STATE(6971), - [sym_stmt_mut] = STATE(6971), - [sym_stmt_const] = STATE(6971), - [sym_assignment] = STATE(6971), - [sym__mutable_assignment_pattern] = STATE(6974), - [sym__statement] = STATE(6930), - [sym_pipeline] = STATE(6971), - [sym__block_body] = STATE(7621), - [sym_cmd_identifier] = STATE(4647), - [sym_attribute_list] = STATE(7444), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6931), - [sym_decl_export] = STATE(6931), - [sym_decl_extern] = STATE(6931), - [sym_decl_module] = STATE(6931), - [sym_decl_use] = STATE(6931), - [sym__ctrl_statement] = STATE(6971), - [sym__ctrl_expression] = STATE(5055), - [sym_ctrl_for] = STATE(7087), - [sym_ctrl_loop] = STATE(7087), - [sym_ctrl_error] = STATE(7087), - [sym_ctrl_while] = STATE(7087), - [sym_ctrl_do] = STATE(5153), - [sym_ctrl_if] = STATE(5153), - [sym_ctrl_match] = STATE(5153), - [sym_ctrl_try] = STATE(5153), - [sym_ctrl_return] = STATE(5153), - [sym_pipe_element] = STATE(4584), - [sym_stmt_source] = STATE(6971), - [sym__stmt_hide] = STATE(6971), - [sym_hide_mod] = STATE(7358), - [sym_hide_env] = STATE(7358), - [sym__stmt_overlay] = STATE(6971), - [sym_overlay_list] = STATE(7359), - [sym_overlay_hide] = STATE(7359), - [sym_overlay_new] = STATE(7359), - [sym_overlay_use] = STATE(7359), - [sym_where_command] = STATE(5004), - [sym__expression] = STATE(3881), - [sym_expr_unary] = STATE(2510), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2510), - [sym__expr_binary_expression] = STATE(3843), - [sym_expr_parenthesized] = STATE(2098), - [sym_val_range] = STATE(2510), - [sym__value] = STATE(2510), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(2470), - [sym_val_variable] = STATE(1446), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(778), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(5004), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7181), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(67), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(100), - [aux_sym__block_body_repeat2] = STATE(134), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(339), - [ts_builtin_sym_end] = ACTIONS(523), - [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_AT] = ACTIONS(27), - [anon_sym_def] = ACTIONS(29), - [anon_sym_export_DASHenv] = ACTIONS(31), - [anon_sym_extern] = ACTIONS(33), - [anon_sym_module] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_error] = ACTIONS(45), - [anon_sym_DASH2] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), - [anon_sym_do] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(67), - [anon_sym_try] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_source] = ACTIONS(73), - [anon_sym_source_DASHenv] = 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(245), - [sym_raw_string_begin] = ACTIONS(121), - }, - [68] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7552), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), - [sym_comment] = STATE(68), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -76154,7 +74855,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(371), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_RPAREN] = ACTIONS(525), + [anon_sym_RPAREN] = ACTIONS(523), [anon_sym_DOLLAR] = ACTIONS(269), [anon_sym_error] = ACTIONS(373), [anon_sym_DASH2] = ACTIONS(375), @@ -76206,83 +74907,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [69] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7697), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), - [sym_comment] = STATE(69), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [68] = { + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7086), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), + [sym_comment] = STATE(68), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -76339,7 +75040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(371), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_RPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(525), [anon_sym_DOLLAR] = ACTIONS(269), [anon_sym_error] = ACTIONS(373), [anon_sym_DASH2] = ACTIONS(375), @@ -76391,83 +75092,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [70] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7630), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), - [sym_comment] = STATE(70), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [69] = { + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7294), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), + [sym_comment] = STATE(69), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -76524,7 +75225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(371), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_RPAREN] = ACTIONS(529), + [anon_sym_RPAREN] = ACTIONS(527), [anon_sym_DOLLAR] = ACTIONS(269), [anon_sym_error] = ACTIONS(373), [anon_sym_DASH2] = ACTIONS(375), @@ -76576,83 +75277,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [71] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7828), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), - [sym_comment] = STATE(71), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [70] = { + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7351), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), + [sym_comment] = STATE(70), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -76709,7 +75410,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(371), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_RPAREN] = ACTIONS(531), + [anon_sym_RPAREN] = ACTIONS(529), [anon_sym_DOLLAR] = ACTIONS(269), [anon_sym_error] = ACTIONS(373), [anon_sym_DASH2] = ACTIONS(375), @@ -76761,83 +75462,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [72] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7696), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), - [sym_comment] = STATE(72), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [71] = { + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7369), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), + [sym_comment] = STATE(71), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -76894,7 +75595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(371), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_RPAREN] = ACTIONS(533), + [anon_sym_RPAREN] = ACTIONS(531), [anon_sym_DOLLAR] = ACTIONS(269), [anon_sym_error] = ACTIONS(373), [anon_sym_DASH2] = ACTIONS(375), @@ -76946,83 +75647,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [73] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7758), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), - [sym_comment] = STATE(73), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [72] = { + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7375), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), + [sym_comment] = STATE(72), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -77079,7 +75780,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(371), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_RPAREN] = ACTIONS(535), + [anon_sym_RPAREN] = ACTIONS(533), [anon_sym_DOLLAR] = ACTIONS(269), [anon_sym_error] = ACTIONS(373), [anon_sym_DASH2] = ACTIONS(375), @@ -77131,83 +75832,453 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, + [73] = { + [sym__block_body_statement] = STATE(5927), + [sym__declaration] = STATE(6440), + [sym_decl_alias] = STATE(6581), + [sym_stmt_let] = STATE(6587), + [sym_stmt_mut] = STATE(6587), + [sym_stmt_const] = STATE(6587), + [sym_assignment] = STATE(6587), + [sym__mutable_assignment_pattern] = STATE(6793), + [sym__statement] = STATE(6440), + [sym_pipeline] = STATE(6587), + [sym__block_body] = STATE(7226), + [sym_cmd_identifier] = STATE(4425), + [sym_attribute_list] = STATE(6841), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6581), + [sym_decl_export] = STATE(6581), + [sym_decl_extern] = STATE(6581), + [sym_decl_module] = STATE(6581), + [sym_decl_use] = STATE(6581), + [sym__ctrl_statement] = STATE(6587), + [sym__ctrl_expression] = STATE(4740), + [sym_ctrl_for] = STATE(6531), + [sym_ctrl_loop] = STATE(6531), + [sym_ctrl_error] = STATE(6531), + [sym_ctrl_while] = STATE(6531), + [sym_ctrl_do] = STATE(4755), + [sym_ctrl_if] = STATE(4755), + [sym_ctrl_match] = STATE(4755), + [sym_ctrl_try] = STATE(4755), + [sym_ctrl_return] = STATE(4755), + [sym_pipe_element] = STATE(4358), + [sym_stmt_source] = STATE(6587), + [sym__stmt_hide] = STATE(6587), + [sym_hide_mod] = STATE(6561), + [sym_hide_env] = STATE(6561), + [sym__stmt_overlay] = STATE(6587), + [sym_overlay_list] = STATE(6401), + [sym_overlay_hide] = STATE(6401), + [sym_overlay_new] = STATE(6401), + [sym_overlay_use] = STATE(6401), + [sym_where_command] = STATE(4788), + [sym__expression] = STATE(3684), + [sym_expr_unary] = STATE(2328), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2328), + [sym__expr_binary_expression] = STATE(3675), + [sym_expr_parenthesized] = STATE(1929), + [sym_val_range] = STATE(2328), + [sym__value] = STATE(2328), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(2375), + [sym_val_variable] = STATE(1372), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(749), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4788), + [sym_comment] = STATE(73), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(103), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(347), + [ts_builtin_sym_end] = ACTIONS(535), + [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_AT] = ACTIONS(27), + [anon_sym_def] = ACTIONS(29), + [anon_sym_export_DASHenv] = ACTIONS(31), + [anon_sym_extern] = ACTIONS(33), + [anon_sym_module] = ACTIONS(35), + [anon_sym_use] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [anon_sym_error] = ACTIONS(45), + [anon_sym_DASH2] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_do] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(67), + [anon_sym_try] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_source] = ACTIONS(73), + [anon_sym_source_DASHenv] = 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(245), + [sym_raw_string_begin] = ACTIONS(121), + }, [74] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7574), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7222), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(74), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [anon_sym_export] = ACTIONS(347), + [anon_sym_alias] = ACTIONS(349), + [anon_sym_let] = ACTIONS(351), + [anon_sym_let_DASHenv] = ACTIONS(351), + [anon_sym_mut] = ACTIONS(353), + [anon_sym_const] = ACTIONS(355), + [aux_sym_cmd_identifier_token1] = ACTIONS(357), + [aux_sym_cmd_identifier_token2] = ACTIONS(359), + [aux_sym_cmd_identifier_token3] = ACTIONS(359), + [aux_sym_cmd_identifier_token4] = ACTIONS(359), + [aux_sym_cmd_identifier_token5] = ACTIONS(359), + [aux_sym_cmd_identifier_token6] = ACTIONS(359), + [aux_sym_cmd_identifier_token7] = ACTIONS(359), + [aux_sym_cmd_identifier_token8] = ACTIONS(357), + [aux_sym_cmd_identifier_token9] = ACTIONS(357), + [aux_sym_cmd_identifier_token10] = ACTIONS(359), + [aux_sym_cmd_identifier_token11] = ACTIONS(359), + [aux_sym_cmd_identifier_token12] = ACTIONS(357), + [aux_sym_cmd_identifier_token13] = ACTIONS(357), + [aux_sym_cmd_identifier_token14] = ACTIONS(357), + [aux_sym_cmd_identifier_token15] = ACTIONS(357), + [aux_sym_cmd_identifier_token16] = ACTIONS(359), + [aux_sym_cmd_identifier_token17] = ACTIONS(359), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [aux_sym_cmd_identifier_token19] = ACTIONS(359), + [aux_sym_cmd_identifier_token20] = ACTIONS(359), + [aux_sym_cmd_identifier_token21] = ACTIONS(359), + [aux_sym_cmd_identifier_token22] = ACTIONS(359), + [aux_sym_cmd_identifier_token23] = ACTIONS(359), + [aux_sym_cmd_identifier_token24] = ACTIONS(359), + [aux_sym_cmd_identifier_token25] = ACTIONS(359), + [aux_sym_cmd_identifier_token26] = ACTIONS(359), + [aux_sym_cmd_identifier_token27] = ACTIONS(359), + [aux_sym_cmd_identifier_token28] = ACTIONS(359), + [aux_sym_cmd_identifier_token29] = ACTIONS(359), + [aux_sym_cmd_identifier_token30] = ACTIONS(359), + [aux_sym_cmd_identifier_token31] = ACTIONS(359), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(359), + [aux_sym_cmd_identifier_token34] = ACTIONS(357), + [aux_sym_cmd_identifier_token35] = ACTIONS(359), + [aux_sym_cmd_identifier_token36] = ACTIONS(359), + [aux_sym_cmd_identifier_token37] = ACTIONS(359), + [aux_sym_cmd_identifier_token38] = ACTIONS(357), + [aux_sym_cmd_identifier_token39] = ACTIONS(359), + [aux_sym_cmd_identifier_token40] = ACTIONS(359), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_AT] = ACTIONS(27), + [anon_sym_def] = ACTIONS(363), + [anon_sym_export_DASHenv] = ACTIONS(365), + [anon_sym_extern] = ACTIONS(367), + [anon_sym_module] = ACTIONS(369), + [anon_sym_use] = ACTIONS(371), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(373), + [anon_sym_DASH2] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_for] = ACTIONS(381), + [anon_sym_loop] = ACTIONS(383), + [anon_sym_while] = ACTIONS(385), + [anon_sym_do] = ACTIONS(387), + [anon_sym_if] = ACTIONS(389), + [anon_sym_match] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(417), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(395), + [anon_sym_return] = ACTIONS(397), + [anon_sym_source] = ACTIONS(399), + [anon_sym_source_DASHenv] = ACTIONS(399), + [anon_sym_hide] = ACTIONS(401), + [anon_sym_hide_DASHenv] = ACTIONS(403), + [anon_sym_overlay] = ACTIONS(405), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(407), + [aux_sym__val_number_decimal_token2] = ACTIONS(409), + [aux_sym__val_number_decimal_token3] = ACTIONS(411), + [aux_sym__val_number_decimal_token4] = ACTIONS(413), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(247), + }, + [75] = { + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7017), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), + [sym_comment] = STATE(75), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -77316,268 +76387,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [75] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7844), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), - [sym_comment] = STATE(75), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), - [anon_sym_export] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(423), - [anon_sym_let] = ACTIONS(425), - [anon_sym_let_DASHenv] = ACTIONS(425), - [anon_sym_mut] = ACTIONS(427), - [anon_sym_const] = ACTIONS(429), - [aux_sym_cmd_identifier_token1] = ACTIONS(357), - [aux_sym_cmd_identifier_token2] = ACTIONS(359), - [aux_sym_cmd_identifier_token3] = ACTIONS(359), - [aux_sym_cmd_identifier_token4] = ACTIONS(359), - [aux_sym_cmd_identifier_token5] = ACTIONS(359), - [aux_sym_cmd_identifier_token6] = ACTIONS(359), - [aux_sym_cmd_identifier_token7] = ACTIONS(359), - [aux_sym_cmd_identifier_token8] = ACTIONS(357), - [aux_sym_cmd_identifier_token9] = ACTIONS(357), - [aux_sym_cmd_identifier_token10] = ACTIONS(359), - [aux_sym_cmd_identifier_token11] = ACTIONS(359), - [aux_sym_cmd_identifier_token12] = ACTIONS(357), - [aux_sym_cmd_identifier_token13] = ACTIONS(357), - [aux_sym_cmd_identifier_token14] = ACTIONS(357), - [aux_sym_cmd_identifier_token15] = ACTIONS(357), - [aux_sym_cmd_identifier_token16] = ACTIONS(359), - [aux_sym_cmd_identifier_token17] = ACTIONS(359), - [aux_sym_cmd_identifier_token18] = ACTIONS(359), - [aux_sym_cmd_identifier_token19] = ACTIONS(359), - [aux_sym_cmd_identifier_token20] = ACTIONS(359), - [aux_sym_cmd_identifier_token21] = ACTIONS(359), - [aux_sym_cmd_identifier_token22] = ACTIONS(359), - [aux_sym_cmd_identifier_token23] = ACTIONS(359), - [aux_sym_cmd_identifier_token24] = ACTIONS(359), - [aux_sym_cmd_identifier_token25] = ACTIONS(359), - [aux_sym_cmd_identifier_token26] = ACTIONS(359), - [aux_sym_cmd_identifier_token27] = ACTIONS(359), - [aux_sym_cmd_identifier_token28] = ACTIONS(359), - [aux_sym_cmd_identifier_token29] = ACTIONS(359), - [aux_sym_cmd_identifier_token30] = ACTIONS(359), - [aux_sym_cmd_identifier_token31] = ACTIONS(359), - [aux_sym_cmd_identifier_token32] = ACTIONS(359), - [aux_sym_cmd_identifier_token33] = ACTIONS(359), - [aux_sym_cmd_identifier_token34] = ACTIONS(357), - [aux_sym_cmd_identifier_token35] = ACTIONS(359), - [aux_sym_cmd_identifier_token36] = ACTIONS(359), - [aux_sym_cmd_identifier_token37] = ACTIONS(359), - [aux_sym_cmd_identifier_token38] = ACTIONS(357), - [aux_sym_cmd_identifier_token39] = ACTIONS(359), - [aux_sym_cmd_identifier_token40] = ACTIONS(359), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_AT] = ACTIONS(27), - [anon_sym_def] = ACTIONS(363), - [anon_sym_export_DASHenv] = ACTIONS(365), - [anon_sym_extern] = ACTIONS(367), - [anon_sym_module] = ACTIONS(369), - [anon_sym_use] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_RPAREN] = ACTIONS(539), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(373), - [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_break] = ACTIONS(433), - [anon_sym_continue] = ACTIONS(435), - [anon_sym_for] = ACTIONS(381), - [anon_sym_loop] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_do] = ACTIONS(437), - [anon_sym_if] = ACTIONS(439), - [anon_sym_match] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(441), - [anon_sym_return] = ACTIONS(443), - [anon_sym_source] = ACTIONS(399), - [anon_sym_source_DASHenv] = ACTIONS(399), - [anon_sym_hide] = ACTIONS(401), - [anon_sym_hide_DASHenv] = ACTIONS(403), - [anon_sym_overlay] = ACTIONS(405), - [anon_sym_where] = ACTIONS(445), - [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(207), - [anon_sym_DOT_DOT_LT] = ACTIONS(207), - [anon_sym_null] = ACTIONS(209), - [anon_sym_true] = ACTIONS(211), - [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(449), - [aux_sym__val_number_decimal_token2] = ACTIONS(451), - [aux_sym__val_number_decimal_token3] = ACTIONS(453), - [aux_sym__val_number_decimal_token4] = ACTIONS(455), - [aux_sym__val_number_token1] = ACTIONS(223), - [aux_sym__val_number_token2] = ACTIONS(223), - [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(225), - [aux_sym__val_number_token5] = ACTIONS(225), - [aux_sym__val_number_token6] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(457), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(247), - }, [76] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7856), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7072), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(76), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -77634,7 +76520,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(371), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_RPAREN] = ACTIONS(541), + [anon_sym_RPAREN] = ACTIONS(539), [anon_sym_DOLLAR] = ACTIONS(269), [anon_sym_error] = ACTIONS(373), [anon_sym_DASH2] = ACTIONS(375), @@ -77687,82 +76573,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [77] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7867), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7102), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(77), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -77819,7 +76705,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(371), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_RPAREN] = ACTIONS(543), + [anon_sym_RPAREN] = ACTIONS(541), [anon_sym_DOLLAR] = ACTIONS(269), [anon_sym_error] = ACTIONS(373), [anon_sym_DASH2] = ACTIONS(375), @@ -77872,82 +76758,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [78] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7904), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7116), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(78), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -78004,7 +76890,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(371), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_RPAREN] = ACTIONS(545), + [anon_sym_RPAREN] = ACTIONS(543), [anon_sym_DOLLAR] = ACTIONS(269), [anon_sym_error] = ACTIONS(373), [anon_sym_DASH2] = ACTIONS(375), @@ -78057,82 +76943,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [79] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7578), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7135), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(79), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -78189,7 +77075,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(371), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_RPAREN] = ACTIONS(547), + [anon_sym_RPAREN] = ACTIONS(545), [anon_sym_DOLLAR] = ACTIONS(269), [anon_sym_error] = ACTIONS(373), [anon_sym_DASH2] = ACTIONS(375), @@ -78242,267 +77128,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [80] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7782), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7354), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(80), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), - [anon_sym_export] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(423), - [anon_sym_let] = ACTIONS(425), - [anon_sym_let_DASHenv] = ACTIONS(425), - [anon_sym_mut] = ACTIONS(427), - [anon_sym_const] = ACTIONS(429), - [aux_sym_cmd_identifier_token1] = ACTIONS(357), - [aux_sym_cmd_identifier_token2] = ACTIONS(359), - [aux_sym_cmd_identifier_token3] = ACTIONS(359), - [aux_sym_cmd_identifier_token4] = ACTIONS(359), - [aux_sym_cmd_identifier_token5] = ACTIONS(359), - [aux_sym_cmd_identifier_token6] = ACTIONS(359), - [aux_sym_cmd_identifier_token7] = ACTIONS(359), - [aux_sym_cmd_identifier_token8] = ACTIONS(357), - [aux_sym_cmd_identifier_token9] = ACTIONS(357), - [aux_sym_cmd_identifier_token10] = ACTIONS(359), - [aux_sym_cmd_identifier_token11] = ACTIONS(359), - [aux_sym_cmd_identifier_token12] = ACTIONS(357), - [aux_sym_cmd_identifier_token13] = ACTIONS(357), - [aux_sym_cmd_identifier_token14] = ACTIONS(357), - [aux_sym_cmd_identifier_token15] = ACTIONS(357), - [aux_sym_cmd_identifier_token16] = ACTIONS(359), - [aux_sym_cmd_identifier_token17] = ACTIONS(359), - [aux_sym_cmd_identifier_token18] = ACTIONS(359), - [aux_sym_cmd_identifier_token19] = ACTIONS(359), - [aux_sym_cmd_identifier_token20] = ACTIONS(359), - [aux_sym_cmd_identifier_token21] = ACTIONS(359), - [aux_sym_cmd_identifier_token22] = ACTIONS(359), - [aux_sym_cmd_identifier_token23] = ACTIONS(359), - [aux_sym_cmd_identifier_token24] = ACTIONS(359), - [aux_sym_cmd_identifier_token25] = ACTIONS(359), - [aux_sym_cmd_identifier_token26] = ACTIONS(359), - [aux_sym_cmd_identifier_token27] = ACTIONS(359), - [aux_sym_cmd_identifier_token28] = ACTIONS(359), - [aux_sym_cmd_identifier_token29] = ACTIONS(359), - [aux_sym_cmd_identifier_token30] = ACTIONS(359), - [aux_sym_cmd_identifier_token31] = ACTIONS(359), - [aux_sym_cmd_identifier_token32] = ACTIONS(359), - [aux_sym_cmd_identifier_token33] = ACTIONS(359), - [aux_sym_cmd_identifier_token34] = ACTIONS(357), - [aux_sym_cmd_identifier_token35] = ACTIONS(359), - [aux_sym_cmd_identifier_token36] = ACTIONS(359), - [aux_sym_cmd_identifier_token37] = ACTIONS(359), - [aux_sym_cmd_identifier_token38] = ACTIONS(357), - [aux_sym_cmd_identifier_token39] = ACTIONS(359), - [aux_sym_cmd_identifier_token40] = ACTIONS(359), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_AT] = ACTIONS(27), - [anon_sym_def] = ACTIONS(363), - [anon_sym_export_DASHenv] = ACTIONS(365), - [anon_sym_extern] = ACTIONS(367), - [anon_sym_module] = ACTIONS(369), - [anon_sym_use] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_RPAREN] = ACTIONS(549), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(373), - [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_break] = ACTIONS(433), - [anon_sym_continue] = ACTIONS(435), - [anon_sym_for] = ACTIONS(381), - [anon_sym_loop] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_do] = ACTIONS(437), - [anon_sym_if] = ACTIONS(439), - [anon_sym_match] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(441), - [anon_sym_return] = ACTIONS(443), - [anon_sym_source] = ACTIONS(399), - [anon_sym_source_DASHenv] = ACTIONS(399), - [anon_sym_hide] = ACTIONS(401), - [anon_sym_hide_DASHenv] = ACTIONS(403), - [anon_sym_overlay] = ACTIONS(405), - [anon_sym_where] = ACTIONS(445), - [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(207), - [anon_sym_DOT_DOT_LT] = ACTIONS(207), - [anon_sym_null] = ACTIONS(209), - [anon_sym_true] = ACTIONS(211), - [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(449), - [aux_sym__val_number_decimal_token2] = ACTIONS(451), - [aux_sym__val_number_decimal_token3] = ACTIONS(453), - [aux_sym__val_number_decimal_token4] = ACTIONS(455), - [aux_sym__val_number_token1] = ACTIONS(223), - [aux_sym__val_number_token2] = ACTIONS(223), - [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(225), - [aux_sym__val_number_token5] = ACTIONS(225), - [aux_sym__val_number_token6] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(457), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(247), - }, - [81] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7939), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(81), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -78571,7 +77272,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(389), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(393), + [anon_sym_RBRACE] = ACTIONS(415), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(395), [anon_sym_return] = ACTIONS(397), @@ -78611,83 +77312,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [82] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7718), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), - [sym_comment] = STATE(82), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [81] = { + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7099), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), + [sym_comment] = STATE(81), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -78744,7 +77445,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(371), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_RPAREN] = ACTIONS(551), + [anon_sym_RPAREN] = ACTIONS(547), [anon_sym_DOLLAR] = ACTIONS(269), [anon_sym_error] = ACTIONS(373), [anon_sym_DASH2] = ACTIONS(375), @@ -78796,83 +77497,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [83] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7912), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), - [sym_comment] = STATE(83), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [82] = { + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7246), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), + [sym_comment] = STATE(82), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -78929,7 +77630,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(371), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_RPAREN] = ACTIONS(553), + [anon_sym_RPAREN] = ACTIONS(549), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(373), + [anon_sym_DASH2] = ACTIONS(375), + [anon_sym_break] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_for] = ACTIONS(381), + [anon_sym_loop] = ACTIONS(383), + [anon_sym_while] = ACTIONS(385), + [anon_sym_do] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), + [anon_sym_match] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(441), + [anon_sym_return] = ACTIONS(443), + [anon_sym_source] = ACTIONS(399), + [anon_sym_source_DASHenv] = ACTIONS(399), + [anon_sym_hide] = ACTIONS(401), + [anon_sym_hide_DASHenv] = ACTIONS(403), + [anon_sym_overlay] = ACTIONS(405), + [anon_sym_where] = ACTIONS(445), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(449), + [aux_sym__val_number_decimal_token2] = ACTIONS(451), + [aux_sym__val_number_decimal_token3] = ACTIONS(453), + [aux_sym__val_number_decimal_token4] = ACTIONS(455), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(457), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(247), + }, + [83] = { + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7055), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), + [sym_comment] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(421), + [anon_sym_alias] = ACTIONS(423), + [anon_sym_let] = ACTIONS(425), + [anon_sym_let_DASHenv] = ACTIONS(425), + [anon_sym_mut] = ACTIONS(427), + [anon_sym_const] = ACTIONS(429), + [aux_sym_cmd_identifier_token1] = ACTIONS(357), + [aux_sym_cmd_identifier_token2] = ACTIONS(359), + [aux_sym_cmd_identifier_token3] = ACTIONS(359), + [aux_sym_cmd_identifier_token4] = ACTIONS(359), + [aux_sym_cmd_identifier_token5] = ACTIONS(359), + [aux_sym_cmd_identifier_token6] = ACTIONS(359), + [aux_sym_cmd_identifier_token7] = ACTIONS(359), + [aux_sym_cmd_identifier_token8] = ACTIONS(357), + [aux_sym_cmd_identifier_token9] = ACTIONS(357), + [aux_sym_cmd_identifier_token10] = ACTIONS(359), + [aux_sym_cmd_identifier_token11] = ACTIONS(359), + [aux_sym_cmd_identifier_token12] = ACTIONS(357), + [aux_sym_cmd_identifier_token13] = ACTIONS(357), + [aux_sym_cmd_identifier_token14] = ACTIONS(357), + [aux_sym_cmd_identifier_token15] = ACTIONS(357), + [aux_sym_cmd_identifier_token16] = ACTIONS(359), + [aux_sym_cmd_identifier_token17] = ACTIONS(359), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [aux_sym_cmd_identifier_token19] = ACTIONS(359), + [aux_sym_cmd_identifier_token20] = ACTIONS(359), + [aux_sym_cmd_identifier_token21] = ACTIONS(359), + [aux_sym_cmd_identifier_token22] = ACTIONS(359), + [aux_sym_cmd_identifier_token23] = ACTIONS(359), + [aux_sym_cmd_identifier_token24] = ACTIONS(359), + [aux_sym_cmd_identifier_token25] = ACTIONS(359), + [aux_sym_cmd_identifier_token26] = ACTIONS(359), + [aux_sym_cmd_identifier_token27] = ACTIONS(359), + [aux_sym_cmd_identifier_token28] = ACTIONS(359), + [aux_sym_cmd_identifier_token29] = ACTIONS(359), + [aux_sym_cmd_identifier_token30] = ACTIONS(359), + [aux_sym_cmd_identifier_token31] = ACTIONS(359), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(359), + [aux_sym_cmd_identifier_token34] = ACTIONS(357), + [aux_sym_cmd_identifier_token35] = ACTIONS(359), + [aux_sym_cmd_identifier_token36] = ACTIONS(359), + [aux_sym_cmd_identifier_token37] = ACTIONS(359), + [aux_sym_cmd_identifier_token38] = ACTIONS(357), + [aux_sym_cmd_identifier_token39] = ACTIONS(359), + [aux_sym_cmd_identifier_token40] = ACTIONS(359), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_AT] = ACTIONS(27), + [anon_sym_def] = ACTIONS(363), + [anon_sym_export_DASHenv] = ACTIONS(365), + [anon_sym_extern] = ACTIONS(367), + [anon_sym_module] = ACTIONS(369), + [anon_sym_use] = ACTIONS(371), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(551), [anon_sym_DOLLAR] = ACTIONS(269), [anon_sym_error] = ACTIONS(373), [anon_sym_DASH2] = ACTIONS(375), @@ -78982,82 +77868,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [84] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7814), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7159), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(84), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -79114,7 +78000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(371), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_RPAREN] = ACTIONS(555), + [anon_sym_RPAREN] = ACTIONS(553), [anon_sym_DOLLAR] = ACTIONS(269), [anon_sym_error] = ACTIONS(373), [anon_sym_DASH2] = ACTIONS(375), @@ -79167,82 +78053,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [85] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7652), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7377), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(85), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -79299,7 +78185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(371), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_RPAREN] = ACTIONS(557), + [anon_sym_RPAREN] = ACTIONS(555), [anon_sym_DOLLAR] = ACTIONS(269), [anon_sym_error] = ACTIONS(373), [anon_sym_DASH2] = ACTIONS(375), @@ -79352,82 +78238,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [86] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7947), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7188), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(86), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -79484,7 +78370,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(371), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_RPAREN] = ACTIONS(559), + [anon_sym_RPAREN] = ACTIONS(557), [anon_sym_DOLLAR] = ACTIONS(269), [anon_sym_error] = ACTIONS(373), [anon_sym_DASH2] = ACTIONS(375), @@ -79537,82 +78423,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [87] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7675), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7177), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(87), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -79669,7 +78555,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(371), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_RPAREN] = ACTIONS(561), + [anon_sym_RPAREN] = ACTIONS(559), [anon_sym_DOLLAR] = ACTIONS(269), [anon_sym_error] = ACTIONS(373), [anon_sym_DASH2] = ACTIONS(375), @@ -79722,82 +78608,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [88] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7819), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7058), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(88), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -79854,7 +78740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(371), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_RPAREN] = ACTIONS(563), + [anon_sym_RPAREN] = ACTIONS(561), [anon_sym_DOLLAR] = ACTIONS(269), [anon_sym_error] = ACTIONS(373), [anon_sym_DASH2] = ACTIONS(375), @@ -79907,82 +78793,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [89] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7561), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7242), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(89), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -80039,7 +78925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(371), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_RPAREN] = ACTIONS(565), + [anon_sym_RPAREN] = ACTIONS(563), [anon_sym_DOLLAR] = ACTIONS(269), [anon_sym_error] = ACTIONS(373), [anon_sym_DASH2] = ACTIONS(375), @@ -80092,88 +78978,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [90] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7950), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7014), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(90), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [anon_sym_export] = ACTIONS(347), - [anon_sym_alias] = ACTIONS(349), - [anon_sym_let] = ACTIONS(351), - [anon_sym_let_DASHenv] = ACTIONS(351), - [anon_sym_mut] = ACTIONS(353), - [anon_sym_const] = ACTIONS(355), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(421), + [anon_sym_alias] = ACTIONS(423), + [anon_sym_let] = ACTIONS(425), + [anon_sym_let_DASHenv] = ACTIONS(425), + [anon_sym_mut] = ACTIONS(427), + [anon_sym_const] = ACTIONS(429), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -80224,38 +79110,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(371), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(565), [anon_sym_DOLLAR] = ACTIONS(269), [anon_sym_error] = ACTIONS(373), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_break] = ACTIONS(377), - [anon_sym_continue] = ACTIONS(379), + [anon_sym_break] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), [anon_sym_for] = ACTIONS(381), [anon_sym_loop] = ACTIONS(383), [anon_sym_while] = ACTIONS(385), - [anon_sym_do] = ACTIONS(387), - [anon_sym_if] = ACTIONS(389), + [anon_sym_do] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(415), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(395), - [anon_sym_return] = ACTIONS(397), + [anon_sym_try] = ACTIONS(441), + [anon_sym_return] = ACTIONS(443), [anon_sym_source] = ACTIONS(399), [anon_sym_source_DASHenv] = ACTIONS(399), [anon_sym_hide] = ACTIONS(401), [anon_sym_hide_DASHenv] = ACTIONS(403), [anon_sym_overlay] = ACTIONS(405), - [anon_sym_where] = ACTIONS(199), + [anon_sym_where] = ACTIONS(445), [aux_sym_expr_unary_token1] = ACTIONS(201), [anon_sym_DOT_DOT_EQ] = ACTIONS(207), [anon_sym_DOT_DOT_LT] = ACTIONS(207), [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(407), - [aux_sym__val_number_decimal_token2] = ACTIONS(409), - [aux_sym__val_number_decimal_token3] = ACTIONS(411), - [aux_sym__val_number_decimal_token4] = ACTIONS(413), + [aux_sym__val_number_decimal_token1] = ACTIONS(449), + [aux_sym__val_number_decimal_token2] = ACTIONS(451), + [aux_sym__val_number_decimal_token3] = ACTIONS(453), + [aux_sym__val_number_decimal_token4] = ACTIONS(455), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -80272,87 +79158,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(457), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, [91] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7764), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7106), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(91), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -80462,82 +79348,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [92] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7733), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7365), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(92), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -80647,82 +79533,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [93] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7618), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(6990), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(93), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -80832,82 +79718,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [94] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7602), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7126), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(94), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -81017,82 +79903,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [95] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7033), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(95), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -81202,82 +80088,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [96] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7802), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7237), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(96), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -81387,82 +80273,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [97] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7559), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7353), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(97), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [anon_sym_export] = ACTIONS(347), + [anon_sym_alias] = ACTIONS(349), + [anon_sym_let] = ACTIONS(351), + [anon_sym_let_DASHenv] = ACTIONS(351), + [anon_sym_mut] = ACTIONS(353), + [anon_sym_const] = ACTIONS(355), + [aux_sym_cmd_identifier_token1] = ACTIONS(357), + [aux_sym_cmd_identifier_token2] = ACTIONS(359), + [aux_sym_cmd_identifier_token3] = ACTIONS(359), + [aux_sym_cmd_identifier_token4] = ACTIONS(359), + [aux_sym_cmd_identifier_token5] = ACTIONS(359), + [aux_sym_cmd_identifier_token6] = ACTIONS(359), + [aux_sym_cmd_identifier_token7] = ACTIONS(359), + [aux_sym_cmd_identifier_token8] = ACTIONS(357), + [aux_sym_cmd_identifier_token9] = ACTIONS(357), + [aux_sym_cmd_identifier_token10] = ACTIONS(359), + [aux_sym_cmd_identifier_token11] = ACTIONS(359), + [aux_sym_cmd_identifier_token12] = ACTIONS(357), + [aux_sym_cmd_identifier_token13] = ACTIONS(357), + [aux_sym_cmd_identifier_token14] = ACTIONS(357), + [aux_sym_cmd_identifier_token15] = ACTIONS(357), + [aux_sym_cmd_identifier_token16] = ACTIONS(359), + [aux_sym_cmd_identifier_token17] = ACTIONS(359), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [aux_sym_cmd_identifier_token19] = ACTIONS(359), + [aux_sym_cmd_identifier_token20] = ACTIONS(359), + [aux_sym_cmd_identifier_token21] = ACTIONS(359), + [aux_sym_cmd_identifier_token22] = ACTIONS(359), + [aux_sym_cmd_identifier_token23] = ACTIONS(359), + [aux_sym_cmd_identifier_token24] = ACTIONS(359), + [aux_sym_cmd_identifier_token25] = ACTIONS(359), + [aux_sym_cmd_identifier_token26] = ACTIONS(359), + [aux_sym_cmd_identifier_token27] = ACTIONS(359), + [aux_sym_cmd_identifier_token28] = ACTIONS(359), + [aux_sym_cmd_identifier_token29] = ACTIONS(359), + [aux_sym_cmd_identifier_token30] = ACTIONS(359), + [aux_sym_cmd_identifier_token31] = ACTIONS(359), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(359), + [aux_sym_cmd_identifier_token34] = ACTIONS(357), + [aux_sym_cmd_identifier_token35] = ACTIONS(359), + [aux_sym_cmd_identifier_token36] = ACTIONS(359), + [aux_sym_cmd_identifier_token37] = ACTIONS(359), + [aux_sym_cmd_identifier_token38] = ACTIONS(357), + [aux_sym_cmd_identifier_token39] = ACTIONS(359), + [aux_sym_cmd_identifier_token40] = ACTIONS(359), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_AT] = ACTIONS(27), + [anon_sym_def] = ACTIONS(363), + [anon_sym_export_DASHenv] = ACTIONS(365), + [anon_sym_extern] = ACTIONS(367), + [anon_sym_module] = ACTIONS(369), + [anon_sym_use] = ACTIONS(371), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(373), + [anon_sym_DASH2] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_for] = ACTIONS(381), + [anon_sym_loop] = ACTIONS(383), + [anon_sym_while] = ACTIONS(385), + [anon_sym_do] = ACTIONS(387), + [anon_sym_if] = ACTIONS(389), + [anon_sym_match] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(395), + [anon_sym_return] = ACTIONS(397), + [anon_sym_source] = ACTIONS(399), + [anon_sym_source_DASHenv] = ACTIONS(399), + [anon_sym_hide] = ACTIONS(401), + [anon_sym_hide_DASHenv] = ACTIONS(403), + [anon_sym_overlay] = ACTIONS(405), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(407), + [aux_sym__val_number_decimal_token2] = ACTIONS(409), + [aux_sym__val_number_decimal_token3] = ACTIONS(411), + [aux_sym__val_number_decimal_token4] = ACTIONS(413), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(247), + }, + [98] = { + [sym__block_body_statement_parenthesized] = STATE(5493), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), + [sym_comment] = STATE(98), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(218), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(140), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -81519,6 +80588,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(371), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(579), [anon_sym_DOLLAR] = ACTIONS(269), [anon_sym_error] = ACTIONS(373), [anon_sym_DASH2] = ACTIONS(375), @@ -81570,89 +80640,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [98] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7861), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1441), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(98), - [aux_sym_pipeline_repeat1] = STATE(190), + [99] = { + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7384), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(99), + [aux_sym_pipeline_repeat1] = STATE(187), [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(135), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(348), - [anon_sym_export] = ACTIONS(579), - [anon_sym_alias] = ACTIONS(581), - [anon_sym_let] = ACTIONS(583), - [anon_sym_let_DASHenv] = ACTIONS(583), - [anon_sym_mut] = ACTIONS(585), - [anon_sym_const] = ACTIONS(587), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [anon_sym_export] = ACTIONS(347), + [anon_sym_alias] = ACTIONS(349), + [anon_sym_let] = ACTIONS(351), + [anon_sym_let_DASHenv] = ACTIONS(351), + [anon_sym_mut] = ACTIONS(353), + [anon_sym_const] = ACTIONS(355), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -81712,12 +80782,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(383), [anon_sym_while] = ACTIONS(385), [anon_sym_do] = ACTIONS(387), - [anon_sym_if] = ACTIONS(589), + [anon_sym_if] = ACTIONS(389), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(395), - [anon_sym_return] = ACTIONS(443), + [anon_sym_return] = ACTIONS(397), [anon_sym_source] = ACTIONS(399), [anon_sym_source_DASHenv] = ACTIONS(399), [anon_sym_hide] = ACTIONS(401), @@ -81730,10 +80800,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(449), - [aux_sym__val_number_decimal_token2] = ACTIONS(451), - [aux_sym__val_number_decimal_token3] = ACTIONS(453), - [aux_sym__val_number_decimal_token4] = ACTIONS(455), + [aux_sym__val_number_decimal_token1] = ACTIONS(407), + [aux_sym__val_number_decimal_token2] = ACTIONS(409), + [aux_sym__val_number_decimal_token3] = ACTIONS(411), + [aux_sym__val_number_decimal_token4] = ACTIONS(413), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -81754,89 +80824,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [99] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7623), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(99), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [anon_sym_export] = ACTIONS(347), - [anon_sym_alias] = ACTIONS(349), - [anon_sym_let] = ACTIONS(351), - [anon_sym_let_DASHenv] = ACTIONS(351), - [anon_sym_mut] = ACTIONS(353), - [anon_sym_const] = ACTIONS(355), + [100] = { + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7297), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1395), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(100), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym__block_body_repeat2] = STATE(136), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(343), + [anon_sym_export] = ACTIONS(581), + [anon_sym_alias] = ACTIONS(583), + [anon_sym_let] = ACTIONS(585), + [anon_sym_let_DASHenv] = ACTIONS(585), + [anon_sym_mut] = ACTIONS(587), + [anon_sym_const] = ACTIONS(589), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -81896,12 +80966,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(383), [anon_sym_while] = ACTIONS(385), [anon_sym_do] = ACTIONS(387), - [anon_sym_if] = ACTIONS(389), + [anon_sym_if] = ACTIONS(591), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(395), - [anon_sym_return] = ACTIONS(397), + [anon_sym_return] = ACTIONS(443), [anon_sym_source] = ACTIONS(399), [anon_sym_source_DASHenv] = ACTIONS(399), [anon_sym_hide] = ACTIONS(401), @@ -81914,10 +80984,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(407), - [aux_sym__val_number_decimal_token2] = ACTIONS(409), - [aux_sym__val_number_decimal_token3] = ACTIONS(411), - [aux_sym__val_number_decimal_token4] = ACTIONS(413), + [aux_sym__val_number_decimal_token1] = ACTIONS(449), + [aux_sym__val_number_decimal_token2] = ACTIONS(451), + [aux_sym__val_number_decimal_token3] = ACTIONS(453), + [aux_sym__val_number_decimal_token4] = ACTIONS(455), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -81938,272 +81008,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [100] = { - [sym__block_body_statement] = STATE(6379), - [sym__declaration] = STATE(6930), - [sym_decl_alias] = STATE(6931), - [sym_stmt_let] = STATE(6971), - [sym_stmt_mut] = STATE(6971), - [sym_stmt_const] = STATE(6971), - [sym_assignment] = STATE(6971), - [sym__mutable_assignment_pattern] = STATE(6974), - [sym__statement] = STATE(6930), - [sym_pipeline] = STATE(6971), - [sym_cmd_identifier] = STATE(4647), - [sym_attribute_list] = STATE(7444), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6931), - [sym_decl_export] = STATE(6931), - [sym_decl_extern] = STATE(6931), - [sym_decl_module] = STATE(6931), - [sym_decl_use] = STATE(6931), - [sym__ctrl_statement] = STATE(6971), - [sym__ctrl_expression] = STATE(5055), - [sym_ctrl_for] = STATE(7087), - [sym_ctrl_loop] = STATE(7087), - [sym_ctrl_error] = STATE(7087), - [sym_ctrl_while] = STATE(7087), - [sym_ctrl_do] = STATE(5153), - [sym_ctrl_if] = STATE(5153), - [sym_ctrl_match] = STATE(5153), - [sym_ctrl_try] = STATE(5153), - [sym_ctrl_return] = STATE(5153), - [sym_pipe_element] = STATE(4584), - [sym_stmt_source] = STATE(6971), - [sym__stmt_hide] = STATE(6971), - [sym_hide_mod] = STATE(7358), - [sym_hide_env] = STATE(7358), - [sym__stmt_overlay] = STATE(6971), - [sym_overlay_list] = STATE(7359), - [sym_overlay_hide] = STATE(7359), - [sym_overlay_new] = STATE(7359), - [sym_overlay_use] = STATE(7359), - [sym_where_command] = STATE(5004), - [sym__expression] = STATE(3881), - [sym_expr_unary] = STATE(2510), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2510), - [sym__expr_binary_expression] = STATE(3843), - [sym_expr_parenthesized] = STATE(2098), - [sym_val_range] = STATE(2510), - [sym__value] = STATE(2510), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(2470), - [sym_val_variable] = STATE(1446), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(778), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(5004), - [sym_comment] = STATE(100), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(248), - [aux_sym__block_body_repeat2] = STATE(136), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(339), - [ts_builtin_sym_end] = ACTIONS(591), - [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_AT] = ACTIONS(27), - [anon_sym_def] = ACTIONS(29), - [anon_sym_export_DASHenv] = ACTIONS(31), - [anon_sym_extern] = ACTIONS(33), - [anon_sym_module] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_error] = ACTIONS(45), - [anon_sym_DASH2] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), - [anon_sym_do] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(67), - [anon_sym_try] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_source] = ACTIONS(73), - [anon_sym_source_DASHenv] = 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(245), - [sym_raw_string_begin] = ACTIONS(121), - }, [101] = { - [sym__block_body_statement] = STATE(6068), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1441), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5683), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(101), - [aux_sym_pipeline_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(212), - [aux_sym__block_body_repeat2] = STATE(132), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(348), - [anon_sym_export] = ACTIONS(579), - [anon_sym_alias] = ACTIONS(581), - [anon_sym_let] = ACTIONS(583), - [anon_sym_let_DASHenv] = ACTIONS(583), - [anon_sym_mut] = ACTIONS(585), - [anon_sym_const] = ACTIONS(587), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(218), + [aux_sym__block_body_repeat2] = STATE(139), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [anon_sym_export] = ACTIONS(347), + [anon_sym_alias] = ACTIONS(349), + [anon_sym_let] = ACTIONS(351), + [anon_sym_let_DASHenv] = ACTIONS(351), + [anon_sym_mut] = ACTIONS(353), + [anon_sym_const] = ACTIONS(355), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -82254,7 +81140,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(371), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_RPAREN] = ACTIONS(591), [anon_sym_DOLLAR] = ACTIONS(269), [anon_sym_error] = ACTIONS(373), [anon_sym_DASH2] = ACTIONS(375), @@ -82264,12 +81149,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(383), [anon_sym_while] = ACTIONS(385), [anon_sym_do] = ACTIONS(387), - [anon_sym_if] = ACTIONS(589), + [anon_sym_if] = ACTIONS(389), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(593), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(395), - [anon_sym_return] = ACTIONS(443), + [anon_sym_return] = ACTIONS(397), [anon_sym_source] = ACTIONS(399), [anon_sym_source_DASHenv] = ACTIONS(399), [anon_sym_hide] = ACTIONS(401), @@ -82282,10 +81168,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(449), - [aux_sym__val_number_decimal_token2] = ACTIONS(451), - [aux_sym__val_number_decimal_token3] = ACTIONS(453), - [aux_sym__val_number_decimal_token4] = ACTIONS(455), + [aux_sym__val_number_decimal_token1] = ACTIONS(407), + [aux_sym__val_number_decimal_token2] = ACTIONS(409), + [aux_sym__val_number_decimal_token3] = ACTIONS(411), + [aux_sym__val_number_decimal_token4] = ACTIONS(413), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -82307,82 +81193,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [102] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7772), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(6987), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(102), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -82491,81 +81377,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [103] = { - [sym__block_body_statement_parenthesized] = STATE(5791), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym__block_body_statement] = STATE(5956), + [sym__declaration] = STATE(6440), + [sym_decl_alias] = STATE(6581), + [sym_stmt_let] = STATE(6587), + [sym_stmt_mut] = STATE(6587), + [sym_stmt_const] = STATE(6587), + [sym_assignment] = STATE(6587), + [sym__mutable_assignment_pattern] = STATE(6793), + [sym__statement] = STATE(6440), + [sym_pipeline] = STATE(6587), + [sym_cmd_identifier] = STATE(4425), + [sym_attribute_list] = STATE(6841), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6581), + [sym_decl_export] = STATE(6581), + [sym_decl_extern] = STATE(6581), + [sym_decl_module] = STATE(6581), + [sym_decl_use] = STATE(6581), + [sym__ctrl_statement] = STATE(6587), + [sym__ctrl_expression] = STATE(4740), + [sym_ctrl_for] = STATE(6531), + [sym_ctrl_loop] = STATE(6531), + [sym_ctrl_error] = STATE(6531), + [sym_ctrl_while] = STATE(6531), + [sym_ctrl_do] = STATE(4755), + [sym_ctrl_if] = STATE(4755), + [sym_ctrl_match] = STATE(4755), + [sym_ctrl_try] = STATE(4755), + [sym_ctrl_return] = STATE(4755), + [sym_pipe_element] = STATE(4358), + [sym_stmt_source] = STATE(6587), + [sym__stmt_hide] = STATE(6587), + [sym_hide_mod] = STATE(6561), + [sym_hide_env] = STATE(6561), + [sym__stmt_overlay] = STATE(6587), + [sym_overlay_list] = STATE(6401), + [sym_overlay_hide] = STATE(6401), + [sym_overlay_new] = STATE(6401), + [sym_overlay_use] = STATE(6401), + [sym_where_command] = STATE(4788), + [sym__expression] = STATE(3684), + [sym_expr_unary] = STATE(2328), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2328), + [sym__expr_binary_expression] = STATE(3675), + [sym_expr_parenthesized] = STATE(1929), + [sym_val_range] = STATE(2328), + [sym__value] = STATE(2328), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(2375), + [sym_val_variable] = STATE(1372), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(749), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4788), [sym_comment] = STATE(103), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(212), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(138), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym__block_body_repeat1] = STATE(288), + [aux_sym__block_body_repeat2] = STATE(135), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(347), + [ts_builtin_sym_end] = ACTIONS(593), + [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_AT] = ACTIONS(27), + [anon_sym_def] = ACTIONS(29), + [anon_sym_export_DASHenv] = ACTIONS(31), + [anon_sym_extern] = ACTIONS(33), + [anon_sym_module] = ACTIONS(35), + [anon_sym_use] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [anon_sym_error] = ACTIONS(45), + [anon_sym_DASH2] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_do] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(67), + [anon_sym_try] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_source] = ACTIONS(73), + [anon_sym_source_DASHenv] = 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(245), + [sym_raw_string_begin] = ACTIONS(121), + }, + [104] = { + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7141), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), + [sym_comment] = STATE(104), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -82622,7 +81693,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(371), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_RPAREN] = ACTIONS(593), [anon_sym_DOLLAR] = ACTIONS(269), [anon_sym_error] = ACTIONS(373), [anon_sym_DASH2] = ACTIONS(375), @@ -82674,89 +81744,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [104] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7806), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1441), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(104), - [aux_sym_pipeline_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(101), - [aux_sym__block_body_repeat2] = STATE(135), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(348), - [anon_sym_export] = ACTIONS(579), - [anon_sym_alias] = ACTIONS(581), - [anon_sym_let] = ACTIONS(583), - [anon_sym_let_DASHenv] = ACTIONS(583), - [anon_sym_mut] = ACTIONS(585), - [anon_sym_const] = ACTIONS(587), + [105] = { + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7070), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1395), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(105), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(112), + [aux_sym__block_body_repeat2] = STATE(136), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(343), + [anon_sym_export] = ACTIONS(581), + [anon_sym_alias] = ACTIONS(583), + [anon_sym_let] = ACTIONS(585), + [anon_sym_let_DASHenv] = ACTIONS(585), + [anon_sym_mut] = ACTIONS(587), + [anon_sym_const] = ACTIONS(589), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -82816,7 +81886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(383), [anon_sym_while] = ACTIONS(385), [anon_sym_do] = ACTIONS(387), - [anon_sym_if] = ACTIONS(589), + [anon_sym_if] = ACTIONS(591), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), @@ -82858,83 +81928,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [105] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7690), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(105), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [106] = { + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7203), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(106), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -83042,83 +82112,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [106] = { - [sym__block_body_statement_parenthesized] = STATE(5799), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym__parenthesized_body] = STATE(7653), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), - [sym_comment] = STATE(106), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(133), + [107] = { + [sym__block_body_statement_parenthesized] = STATE(5508), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym__parenthesized_body] = STATE(7003), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), + [sym_comment] = STATE(107), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(98), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -83226,83 +82296,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [107] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7706), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(107), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [108] = { + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7124), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(108), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -83410,83 +82480,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [108] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7870), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(108), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [109] = { + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7364), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(109), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -83594,83 +82664,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [109] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7564), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(109), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [110] = { + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7040), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(110), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -83778,83 +82848,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [110] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7803), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(110), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [111] = { + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7182), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(111), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -83962,83 +83032,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [111] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7855), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(111), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [112] = { + [sym__block_body_statement] = STATE(5683), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1395), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(112), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(218), + [aux_sym__block_body_repeat2] = STATE(138), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(343), + [anon_sym_export] = ACTIONS(581), + [anon_sym_alias] = ACTIONS(583), + [anon_sym_let] = ACTIONS(585), + [anon_sym_let_DASHenv] = ACTIONS(585), + [anon_sym_mut] = ACTIONS(587), + [anon_sym_const] = ACTIONS(589), + [aux_sym_cmd_identifier_token1] = ACTIONS(357), + [aux_sym_cmd_identifier_token2] = ACTIONS(359), + [aux_sym_cmd_identifier_token3] = ACTIONS(359), + [aux_sym_cmd_identifier_token4] = ACTIONS(359), + [aux_sym_cmd_identifier_token5] = ACTIONS(359), + [aux_sym_cmd_identifier_token6] = ACTIONS(359), + [aux_sym_cmd_identifier_token7] = ACTIONS(359), + [aux_sym_cmd_identifier_token8] = ACTIONS(357), + [aux_sym_cmd_identifier_token9] = ACTIONS(357), + [aux_sym_cmd_identifier_token10] = ACTIONS(359), + [aux_sym_cmd_identifier_token11] = ACTIONS(359), + [aux_sym_cmd_identifier_token12] = ACTIONS(357), + [aux_sym_cmd_identifier_token13] = ACTIONS(357), + [aux_sym_cmd_identifier_token14] = ACTIONS(357), + [aux_sym_cmd_identifier_token15] = ACTIONS(357), + [aux_sym_cmd_identifier_token16] = ACTIONS(359), + [aux_sym_cmd_identifier_token17] = ACTIONS(359), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [aux_sym_cmd_identifier_token19] = ACTIONS(359), + [aux_sym_cmd_identifier_token20] = ACTIONS(359), + [aux_sym_cmd_identifier_token21] = ACTIONS(359), + [aux_sym_cmd_identifier_token22] = ACTIONS(359), + [aux_sym_cmd_identifier_token23] = ACTIONS(359), + [aux_sym_cmd_identifier_token24] = ACTIONS(359), + [aux_sym_cmd_identifier_token25] = ACTIONS(359), + [aux_sym_cmd_identifier_token26] = ACTIONS(359), + [aux_sym_cmd_identifier_token27] = ACTIONS(359), + [aux_sym_cmd_identifier_token28] = ACTIONS(359), + [aux_sym_cmd_identifier_token29] = ACTIONS(359), + [aux_sym_cmd_identifier_token30] = ACTIONS(359), + [aux_sym_cmd_identifier_token31] = ACTIONS(359), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(359), + [aux_sym_cmd_identifier_token34] = ACTIONS(357), + [aux_sym_cmd_identifier_token35] = ACTIONS(359), + [aux_sym_cmd_identifier_token36] = ACTIONS(359), + [aux_sym_cmd_identifier_token37] = ACTIONS(359), + [aux_sym_cmd_identifier_token38] = ACTIONS(357), + [aux_sym_cmd_identifier_token39] = ACTIONS(359), + [aux_sym_cmd_identifier_token40] = ACTIONS(359), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_AT] = ACTIONS(27), + [anon_sym_def] = ACTIONS(363), + [anon_sym_export_DASHenv] = ACTIONS(365), + [anon_sym_extern] = ACTIONS(367), + [anon_sym_module] = ACTIONS(369), + [anon_sym_use] = ACTIONS(371), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(269), + [anon_sym_error] = ACTIONS(373), + [anon_sym_DASH2] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_for] = ACTIONS(381), + [anon_sym_loop] = ACTIONS(383), + [anon_sym_while] = ACTIONS(385), + [anon_sym_do] = ACTIONS(387), + [anon_sym_if] = ACTIONS(591), + [anon_sym_match] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(395), + [anon_sym_return] = ACTIONS(443), + [anon_sym_source] = ACTIONS(399), + [anon_sym_source_DASHenv] = ACTIONS(399), + [anon_sym_hide] = ACTIONS(401), + [anon_sym_hide_DASHenv] = ACTIONS(403), + [anon_sym_overlay] = ACTIONS(405), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(449), + [aux_sym__val_number_decimal_token2] = ACTIONS(451), + [aux_sym__val_number_decimal_token3] = ACTIONS(453), + [aux_sym__val_number_decimal_token4] = ACTIONS(455), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(247), + }, + [113] = { + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7286), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(113), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -84146,83 +83400,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [112] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7554), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(112), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [114] = { + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7067), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(114), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -84330,83 +83584,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [113] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7569), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(113), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [115] = { + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(6984), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(115), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -84514,83 +83768,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [114] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7725), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(114), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [116] = { + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7385), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(116), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -84698,83 +83952,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [115] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7943), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(115), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [117] = { + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7112), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(117), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -84882,83 +84136,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [116] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7952), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(116), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [118] = { + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7133), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(118), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -85066,83 +84320,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [117] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7858), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(117), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [119] = { + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7214), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(119), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -85250,83 +84504,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [118] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7752), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(118), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [120] = { + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7048), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(120), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -85434,83 +84688,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [119] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7797), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(119), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [121] = { + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7305), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(121), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -85618,83 +84872,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [120] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7704), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(120), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [122] = { + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7170), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(122), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -85802,83 +85056,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [121] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7822), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(121), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [123] = { + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7245), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(123), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -85986,83 +85240,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [122] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7699), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(122), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [124] = { + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7044), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(124), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -86170,83 +85424,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [123] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7719), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(123), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [125] = { + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7062), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(125), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -86354,83 +85608,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [124] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7916), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(124), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [126] = { + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7121), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(126), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -86538,83 +85792,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [125] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7713), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(125), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [127] = { + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7144), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(127), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -86722,83 +85976,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [126] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7659), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(126), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [128] = { + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7204), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(128), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -86906,82 +86160,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [127] = { - [sym__block_body_statement] = STATE(6068), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(127), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(212), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [129] = { + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7216), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(129), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -87050,7 +86305,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(389), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(591), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(395), [anon_sym_return] = ACTIONS(397), @@ -87090,83 +86344,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [128] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7682), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(128), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), + [130] = { + [sym__block_body_statement] = STATE(5845), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym__block_body] = STATE(7240), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(130), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(101), + [aux_sym__block_body_repeat2] = STATE(137), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), [anon_sym_export] = ACTIONS(347), [anon_sym_alias] = ACTIONS(349), [anon_sym_let] = ACTIONS(351), @@ -87274,273 +86528,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [129] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7547), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), + [131] = { + [sym__block_body_statement] = STATE(6771), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1447), + [sym_val_number] = STATE(1992), [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(129), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [anon_sym_export] = ACTIONS(347), - [anon_sym_alias] = ACTIONS(349), - [anon_sym_let] = ACTIONS(351), - [anon_sym_let_DASHenv] = ACTIONS(351), - [anon_sym_mut] = ACTIONS(353), - [anon_sym_const] = ACTIONS(355), - [aux_sym_cmd_identifier_token1] = ACTIONS(357), - [aux_sym_cmd_identifier_token2] = ACTIONS(359), - [aux_sym_cmd_identifier_token3] = ACTIONS(359), - [aux_sym_cmd_identifier_token4] = ACTIONS(359), - [aux_sym_cmd_identifier_token5] = ACTIONS(359), - [aux_sym_cmd_identifier_token6] = ACTIONS(359), - [aux_sym_cmd_identifier_token7] = ACTIONS(359), - [aux_sym_cmd_identifier_token8] = ACTIONS(357), - [aux_sym_cmd_identifier_token9] = ACTIONS(357), - [aux_sym_cmd_identifier_token10] = ACTIONS(359), - [aux_sym_cmd_identifier_token11] = ACTIONS(359), - [aux_sym_cmd_identifier_token12] = ACTIONS(357), - [aux_sym_cmd_identifier_token13] = ACTIONS(357), - [aux_sym_cmd_identifier_token14] = ACTIONS(357), - [aux_sym_cmd_identifier_token15] = ACTIONS(357), - [aux_sym_cmd_identifier_token16] = ACTIONS(359), - [aux_sym_cmd_identifier_token17] = ACTIONS(359), - [aux_sym_cmd_identifier_token18] = ACTIONS(359), - [aux_sym_cmd_identifier_token19] = ACTIONS(359), - [aux_sym_cmd_identifier_token20] = ACTIONS(359), - [aux_sym_cmd_identifier_token21] = ACTIONS(359), - [aux_sym_cmd_identifier_token22] = ACTIONS(359), - [aux_sym_cmd_identifier_token23] = ACTIONS(359), - [aux_sym_cmd_identifier_token24] = ACTIONS(359), - [aux_sym_cmd_identifier_token25] = ACTIONS(359), - [aux_sym_cmd_identifier_token26] = ACTIONS(359), - [aux_sym_cmd_identifier_token27] = ACTIONS(359), - [aux_sym_cmd_identifier_token28] = ACTIONS(359), - [aux_sym_cmd_identifier_token29] = ACTIONS(359), - [aux_sym_cmd_identifier_token30] = ACTIONS(359), - [aux_sym_cmd_identifier_token31] = ACTIONS(359), - [aux_sym_cmd_identifier_token32] = ACTIONS(359), - [aux_sym_cmd_identifier_token33] = ACTIONS(359), - [aux_sym_cmd_identifier_token34] = ACTIONS(357), - [aux_sym_cmd_identifier_token35] = ACTIONS(359), - [aux_sym_cmd_identifier_token36] = ACTIONS(359), - [aux_sym_cmd_identifier_token37] = ACTIONS(359), - [aux_sym_cmd_identifier_token38] = ACTIONS(357), - [aux_sym_cmd_identifier_token39] = ACTIONS(359), - [aux_sym_cmd_identifier_token40] = ACTIONS(359), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_AT] = ACTIONS(27), - [anon_sym_def] = ACTIONS(363), - [anon_sym_export_DASHenv] = ACTIONS(365), - [anon_sym_extern] = ACTIONS(367), - [anon_sym_module] = ACTIONS(369), - [anon_sym_use] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(373), - [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_break] = ACTIONS(377), - [anon_sym_continue] = ACTIONS(379), - [anon_sym_for] = ACTIONS(381), - [anon_sym_loop] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_do] = ACTIONS(387), - [anon_sym_if] = ACTIONS(389), - [anon_sym_match] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(395), - [anon_sym_return] = ACTIONS(397), - [anon_sym_source] = ACTIONS(399), - [anon_sym_source_DASHenv] = ACTIONS(399), - [anon_sym_hide] = ACTIONS(401), - [anon_sym_hide_DASHenv] = ACTIONS(403), - [anon_sym_overlay] = ACTIONS(405), - [anon_sym_where] = ACTIONS(199), - [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(207), - [anon_sym_DOT_DOT_LT] = ACTIONS(207), - [anon_sym_null] = ACTIONS(209), - [anon_sym_true] = ACTIONS(211), - [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(407), - [aux_sym__val_number_decimal_token2] = ACTIONS(409), - [aux_sym__val_number_decimal_token3] = ACTIONS(411), - [aux_sym__val_number_decimal_token4] = ACTIONS(413), - [aux_sym__val_number_token1] = ACTIONS(223), - [aux_sym__val_number_token2] = ACTIONS(223), - [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(225), - [aux_sym__val_number_token5] = ACTIONS(225), - [aux_sym__val_number_token6] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(243), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(131), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(359), + [anon_sym_export] = ACTIONS(595), + [anon_sym_alias] = ACTIONS(598), + [anon_sym_let] = ACTIONS(601), + [anon_sym_let_DASHenv] = ACTIONS(601), + [anon_sym_mut] = ACTIONS(604), + [anon_sym_const] = ACTIONS(607), + [aux_sym_cmd_identifier_token1] = ACTIONS(610), + [aux_sym_cmd_identifier_token2] = ACTIONS(613), + [aux_sym_cmd_identifier_token3] = ACTIONS(613), + [aux_sym_cmd_identifier_token4] = ACTIONS(613), + [aux_sym_cmd_identifier_token5] = ACTIONS(613), + [aux_sym_cmd_identifier_token6] = ACTIONS(613), + [aux_sym_cmd_identifier_token7] = ACTIONS(613), + [aux_sym_cmd_identifier_token8] = ACTIONS(610), + [aux_sym_cmd_identifier_token9] = ACTIONS(610), + [aux_sym_cmd_identifier_token10] = ACTIONS(613), + [aux_sym_cmd_identifier_token11] = ACTIONS(613), + [aux_sym_cmd_identifier_token12] = ACTIONS(610), + [aux_sym_cmd_identifier_token13] = ACTIONS(610), + [aux_sym_cmd_identifier_token14] = ACTIONS(610), + [aux_sym_cmd_identifier_token15] = ACTIONS(610), + [aux_sym_cmd_identifier_token16] = ACTIONS(613), + [aux_sym_cmd_identifier_token17] = ACTIONS(613), + [aux_sym_cmd_identifier_token18] = ACTIONS(613), + [aux_sym_cmd_identifier_token19] = ACTIONS(613), + [aux_sym_cmd_identifier_token20] = ACTIONS(613), + [aux_sym_cmd_identifier_token21] = ACTIONS(613), + [aux_sym_cmd_identifier_token22] = ACTIONS(613), + [aux_sym_cmd_identifier_token23] = ACTIONS(613), + [aux_sym_cmd_identifier_token24] = ACTIONS(613), + [aux_sym_cmd_identifier_token25] = ACTIONS(613), + [aux_sym_cmd_identifier_token26] = ACTIONS(613), + [aux_sym_cmd_identifier_token27] = ACTIONS(613), + [aux_sym_cmd_identifier_token28] = ACTIONS(613), + [aux_sym_cmd_identifier_token29] = ACTIONS(613), + [aux_sym_cmd_identifier_token30] = ACTIONS(613), + [aux_sym_cmd_identifier_token31] = ACTIONS(613), + [aux_sym_cmd_identifier_token32] = ACTIONS(613), + [aux_sym_cmd_identifier_token33] = ACTIONS(613), + [aux_sym_cmd_identifier_token34] = ACTIONS(610), + [aux_sym_cmd_identifier_token35] = ACTIONS(613), + [aux_sym_cmd_identifier_token36] = ACTIONS(613), + [aux_sym_cmd_identifier_token37] = ACTIONS(613), + [aux_sym_cmd_identifier_token38] = ACTIONS(610), + [aux_sym_cmd_identifier_token39] = ACTIONS(613), + [aux_sym_cmd_identifier_token40] = ACTIONS(613), + [anon_sym_AT] = ACTIONS(616), + [anon_sym_def] = ACTIONS(619), + [anon_sym_export_DASHenv] = ACTIONS(622), + [anon_sym_extern] = ACTIONS(625), + [anon_sym_module] = ACTIONS(628), + [anon_sym_use] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(634), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_DOLLAR] = ACTIONS(640), + [anon_sym_error] = ACTIONS(643), + [anon_sym_DASH2] = ACTIONS(646), + [anon_sym_break] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(652), + [anon_sym_for] = ACTIONS(655), + [anon_sym_loop] = ACTIONS(658), + [anon_sym_while] = ACTIONS(661), + [anon_sym_do] = ACTIONS(664), + [anon_sym_if] = ACTIONS(667), + [anon_sym_match] = ACTIONS(670), + [anon_sym_LBRACE] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(676), + [anon_sym_try] = ACTIONS(679), + [anon_sym_return] = ACTIONS(682), + [anon_sym_source] = ACTIONS(685), + [anon_sym_source_DASHenv] = ACTIONS(685), + [anon_sym_hide] = ACTIONS(688), + [anon_sym_hide_DASHenv] = ACTIONS(691), + [anon_sym_overlay] = ACTIONS(694), + [anon_sym_where] = ACTIONS(697), + [aux_sym_expr_unary_token1] = ACTIONS(700), + [anon_sym_DOT_DOT_EQ] = ACTIONS(703), + [anon_sym_DOT_DOT_LT] = ACTIONS(703), + [anon_sym_null] = ACTIONS(706), + [anon_sym_true] = ACTIONS(709), + [anon_sym_false] = ACTIONS(709), + [aux_sym__val_number_decimal_token1] = ACTIONS(712), + [aux_sym__val_number_decimal_token2] = ACTIONS(715), + [aux_sym__val_number_decimal_token3] = ACTIONS(718), + [aux_sym__val_number_decimal_token4] = ACTIONS(721), + [aux_sym__val_number_token1] = ACTIONS(724), + [aux_sym__val_number_token2] = ACTIONS(724), + [aux_sym__val_number_token3] = ACTIONS(724), + [aux_sym__val_number_token4] = ACTIONS(727), + [aux_sym__val_number_token5] = ACTIONS(727), + [aux_sym__val_number_token6] = ACTIONS(727), + [anon_sym_0b] = ACTIONS(730), + [anon_sym_0o] = ACTIONS(733), + [anon_sym_0x] = ACTIONS(733), + [sym_val_date] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(739), + [sym__str_single_quotes] = ACTIONS(742), + [sym__str_back_ticks] = ACTIONS(742), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(745), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(748), + [aux_sym_env_var_token1] = ACTIONS(751), + [anon_sym_CARET] = ACTIONS(754), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(757), }, - [130] = { - [sym__block_body_statement] = STATE(5996), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym__block_body] = STATE(7620), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(130), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(127), - [aux_sym__block_body_repeat2] = STATE(140), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [anon_sym_export] = ACTIONS(347), - [anon_sym_alias] = ACTIONS(349), - [anon_sym_let] = ACTIONS(351), - [anon_sym_let_DASHenv] = ACTIONS(351), - [anon_sym_mut] = ACTIONS(353), - [anon_sym_const] = ACTIONS(355), + [132] = { + [sym__block_body_statement_parenthesized] = STATE(5493), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), + [sym_comment] = STATE(132), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(133), + [anon_sym_export] = ACTIONS(421), + [anon_sym_alias] = ACTIONS(423), + [anon_sym_let] = ACTIONS(425), + [anon_sym_let_DASHenv] = ACTIONS(425), + [anon_sym_mut] = ACTIONS(427), + [anon_sym_const] = ACTIONS(429), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -87581,8 +86829,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(357), [aux_sym_cmd_identifier_token39] = ACTIONS(359), [aux_sym_cmd_identifier_token40] = ACTIONS(359), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), [anon_sym_AT] = ACTIONS(27), [anon_sym_def] = ACTIONS(363), [anon_sym_export_DASHenv] = ACTIONS(365), @@ -87594,34 +86840,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(269), [anon_sym_error] = ACTIONS(373), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_break] = ACTIONS(377), - [anon_sym_continue] = ACTIONS(379), + [anon_sym_break] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), [anon_sym_for] = ACTIONS(381), [anon_sym_loop] = ACTIONS(383), [anon_sym_while] = ACTIONS(385), - [anon_sym_do] = ACTIONS(387), - [anon_sym_if] = ACTIONS(389), + [anon_sym_do] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(395), - [anon_sym_return] = ACTIONS(397), + [anon_sym_try] = ACTIONS(441), + [anon_sym_return] = ACTIONS(443), [anon_sym_source] = ACTIONS(399), [anon_sym_source_DASHenv] = ACTIONS(399), [anon_sym_hide] = ACTIONS(401), [anon_sym_hide_DASHenv] = ACTIONS(403), [anon_sym_overlay] = ACTIONS(405), - [anon_sym_where] = ACTIONS(199), + [anon_sym_where] = ACTIONS(445), [aux_sym_expr_unary_token1] = ACTIONS(201), [anon_sym_DOT_DOT_EQ] = ACTIONS(207), [anon_sym_DOT_DOT_LT] = ACTIONS(207), [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(407), - [aux_sym__val_number_decimal_token2] = ACTIONS(409), - [aux_sym__val_number_decimal_token3] = ACTIONS(411), - [aux_sym__val_number_decimal_token4] = ACTIONS(413), + [aux_sym__val_number_decimal_token1] = ACTIONS(449), + [aux_sym__val_number_decimal_token2] = ACTIONS(451), + [aux_sym__val_number_decimal_token3] = ACTIONS(453), + [aux_sym__val_number_decimal_token4] = ACTIONS(455), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -87638,91 +86884,631 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(457), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [131] = { - [sym__block_body_statement] = STATE(6015), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), + [133] = { + [sym__block_body_statement_parenthesized] = STATE(6343), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1442), + [sym_val_number] = STATE(1992), [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(131), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat2] = STATE(137), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [anon_sym_export] = ACTIONS(347), - [anon_sym_alias] = ACTIONS(349), - [anon_sym_let] = ACTIONS(351), - [anon_sym_let_DASHenv] = ACTIONS(351), - [anon_sym_mut] = ACTIONS(353), - [anon_sym_const] = ACTIONS(355), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), + [sym_comment] = STATE(133), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(186), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(346), + [aux_sym__parenthesized_body_repeat2] = STATE(133), + [anon_sym_export] = ACTIONS(760), + [anon_sym_alias] = ACTIONS(763), + [anon_sym_let] = ACTIONS(766), + [anon_sym_let_DASHenv] = ACTIONS(766), + [anon_sym_mut] = ACTIONS(769), + [anon_sym_const] = ACTIONS(772), + [aux_sym_cmd_identifier_token1] = ACTIONS(775), + [aux_sym_cmd_identifier_token2] = ACTIONS(778), + [aux_sym_cmd_identifier_token3] = ACTIONS(778), + [aux_sym_cmd_identifier_token4] = ACTIONS(778), + [aux_sym_cmd_identifier_token5] = ACTIONS(778), + [aux_sym_cmd_identifier_token6] = ACTIONS(778), + [aux_sym_cmd_identifier_token7] = ACTIONS(778), + [aux_sym_cmd_identifier_token8] = ACTIONS(775), + [aux_sym_cmd_identifier_token9] = ACTIONS(775), + [aux_sym_cmd_identifier_token10] = ACTIONS(778), + [aux_sym_cmd_identifier_token11] = ACTIONS(778), + [aux_sym_cmd_identifier_token12] = ACTIONS(775), + [aux_sym_cmd_identifier_token13] = ACTIONS(775), + [aux_sym_cmd_identifier_token14] = ACTIONS(775), + [aux_sym_cmd_identifier_token15] = ACTIONS(775), + [aux_sym_cmd_identifier_token16] = ACTIONS(778), + [aux_sym_cmd_identifier_token17] = ACTIONS(778), + [aux_sym_cmd_identifier_token18] = ACTIONS(778), + [aux_sym_cmd_identifier_token19] = ACTIONS(778), + [aux_sym_cmd_identifier_token20] = ACTIONS(778), + [aux_sym_cmd_identifier_token21] = ACTIONS(778), + [aux_sym_cmd_identifier_token22] = ACTIONS(778), + [aux_sym_cmd_identifier_token23] = ACTIONS(778), + [aux_sym_cmd_identifier_token24] = ACTIONS(778), + [aux_sym_cmd_identifier_token25] = ACTIONS(778), + [aux_sym_cmd_identifier_token26] = ACTIONS(778), + [aux_sym_cmd_identifier_token27] = ACTIONS(778), + [aux_sym_cmd_identifier_token28] = ACTIONS(778), + [aux_sym_cmd_identifier_token29] = ACTIONS(778), + [aux_sym_cmd_identifier_token30] = ACTIONS(778), + [aux_sym_cmd_identifier_token31] = ACTIONS(778), + [aux_sym_cmd_identifier_token32] = ACTIONS(778), + [aux_sym_cmd_identifier_token33] = ACTIONS(778), + [aux_sym_cmd_identifier_token34] = ACTIONS(775), + [aux_sym_cmd_identifier_token35] = ACTIONS(778), + [aux_sym_cmd_identifier_token36] = ACTIONS(778), + [aux_sym_cmd_identifier_token37] = ACTIONS(778), + [aux_sym_cmd_identifier_token38] = ACTIONS(775), + [aux_sym_cmd_identifier_token39] = ACTIONS(778), + [aux_sym_cmd_identifier_token40] = ACTIONS(778), + [anon_sym_AT] = ACTIONS(781), + [anon_sym_def] = ACTIONS(784), + [anon_sym_export_DASHenv] = ACTIONS(787), + [anon_sym_extern] = ACTIONS(790), + [anon_sym_module] = ACTIONS(793), + [anon_sym_use] = ACTIONS(796), + [anon_sym_LBRACK] = ACTIONS(799), + [anon_sym_LPAREN] = ACTIONS(802), + [anon_sym_DOLLAR] = ACTIONS(805), + [anon_sym_error] = ACTIONS(808), + [anon_sym_DASH2] = ACTIONS(811), + [anon_sym_break] = ACTIONS(814), + [anon_sym_continue] = ACTIONS(817), + [anon_sym_for] = ACTIONS(820), + [anon_sym_loop] = ACTIONS(823), + [anon_sym_while] = ACTIONS(826), + [anon_sym_do] = ACTIONS(829), + [anon_sym_if] = ACTIONS(832), + [anon_sym_match] = ACTIONS(835), + [anon_sym_LBRACE] = ACTIONS(838), + [anon_sym_DOT_DOT] = ACTIONS(841), + [anon_sym_try] = ACTIONS(844), + [anon_sym_return] = ACTIONS(847), + [anon_sym_source] = ACTIONS(850), + [anon_sym_source_DASHenv] = ACTIONS(850), + [anon_sym_hide] = ACTIONS(853), + [anon_sym_hide_DASHenv] = ACTIONS(856), + [anon_sym_overlay] = ACTIONS(859), + [anon_sym_where] = ACTIONS(862), + [aux_sym_expr_unary_token1] = ACTIONS(865), + [anon_sym_DOT_DOT_EQ] = ACTIONS(868), + [anon_sym_DOT_DOT_LT] = ACTIONS(868), + [anon_sym_null] = ACTIONS(871), + [anon_sym_true] = ACTIONS(874), + [anon_sym_false] = ACTIONS(874), + [aux_sym__val_number_decimal_token1] = ACTIONS(877), + [aux_sym__val_number_decimal_token2] = ACTIONS(880), + [aux_sym__val_number_decimal_token3] = ACTIONS(883), + [aux_sym__val_number_decimal_token4] = ACTIONS(886), + [aux_sym__val_number_token1] = ACTIONS(889), + [aux_sym__val_number_token2] = ACTIONS(889), + [aux_sym__val_number_token3] = ACTIONS(889), + [aux_sym__val_number_token4] = ACTIONS(892), + [aux_sym__val_number_token5] = ACTIONS(892), + [aux_sym__val_number_token6] = ACTIONS(892), + [anon_sym_0b] = ACTIONS(895), + [anon_sym_0o] = ACTIONS(898), + [anon_sym_0x] = ACTIONS(898), + [sym_val_date] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(904), + [sym__str_single_quotes] = ACTIONS(907), + [sym__str_back_ticks] = ACTIONS(907), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(910), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(913), + [aux_sym_env_var_token1] = ACTIONS(916), + [anon_sym_CARET] = ACTIONS(919), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(922), + }, + [134] = { + [sym__block_body_statement] = STATE(5956), + [sym__declaration] = STATE(6440), + [sym_decl_alias] = STATE(6581), + [sym_stmt_let] = STATE(6587), + [sym_stmt_mut] = STATE(6587), + [sym_stmt_const] = STATE(6587), + [sym_assignment] = STATE(6587), + [sym__mutable_assignment_pattern] = STATE(6793), + [sym__statement] = STATE(6440), + [sym_pipeline] = STATE(6587), + [sym_cmd_identifier] = STATE(4425), + [sym_attribute_list] = STATE(6841), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6581), + [sym_decl_export] = STATE(6581), + [sym_decl_extern] = STATE(6581), + [sym_decl_module] = STATE(6581), + [sym_decl_use] = STATE(6581), + [sym__ctrl_statement] = STATE(6587), + [sym__ctrl_expression] = STATE(4740), + [sym_ctrl_for] = STATE(6531), + [sym_ctrl_loop] = STATE(6531), + [sym_ctrl_error] = STATE(6531), + [sym_ctrl_while] = STATE(6531), + [sym_ctrl_do] = STATE(4755), + [sym_ctrl_if] = STATE(4755), + [sym_ctrl_match] = STATE(4755), + [sym_ctrl_try] = STATE(4755), + [sym_ctrl_return] = STATE(4755), + [sym_pipe_element] = STATE(4358), + [sym_stmt_source] = STATE(6587), + [sym__stmt_hide] = STATE(6587), + [sym_hide_mod] = STATE(6561), + [sym_hide_env] = STATE(6561), + [sym__stmt_overlay] = STATE(6587), + [sym_overlay_list] = STATE(6401), + [sym_overlay_hide] = STATE(6401), + [sym_overlay_new] = STATE(6401), + [sym_overlay_use] = STATE(6401), + [sym_where_command] = STATE(4788), + [sym__expression] = STATE(3684), + [sym_expr_unary] = STATE(2328), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2328), + [sym__expr_binary_expression] = STATE(3675), + [sym_expr_parenthesized] = STATE(1929), + [sym_val_range] = STATE(2328), + [sym__value] = STATE(2328), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(2375), + [sym_val_variable] = STATE(1372), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(749), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4788), + [sym_comment] = STATE(134), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(347), + [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_AT] = ACTIONS(27), + [anon_sym_def] = ACTIONS(29), + [anon_sym_export_DASHenv] = ACTIONS(31), + [anon_sym_extern] = ACTIONS(33), + [anon_sym_module] = ACTIONS(35), + [anon_sym_use] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [anon_sym_error] = ACTIONS(45), + [anon_sym_DASH2] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_do] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(67), + [anon_sym_try] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_source] = ACTIONS(73), + [anon_sym_source_DASHenv] = 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(245), + [sym_raw_string_begin] = ACTIONS(121), + }, + [135] = { + [sym__block_body_statement] = STATE(6073), + [sym__declaration] = STATE(6440), + [sym_decl_alias] = STATE(6581), + [sym_stmt_let] = STATE(6587), + [sym_stmt_mut] = STATE(6587), + [sym_stmt_const] = STATE(6587), + [sym_assignment] = STATE(6587), + [sym__mutable_assignment_pattern] = STATE(6793), + [sym__statement] = STATE(6440), + [sym_pipeline] = STATE(6587), + [sym_cmd_identifier] = STATE(4425), + [sym_attribute_list] = STATE(6841), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6581), + [sym_decl_export] = STATE(6581), + [sym_decl_extern] = STATE(6581), + [sym_decl_module] = STATE(6581), + [sym_decl_use] = STATE(6581), + [sym__ctrl_statement] = STATE(6587), + [sym__ctrl_expression] = STATE(4740), + [sym_ctrl_for] = STATE(6531), + [sym_ctrl_loop] = STATE(6531), + [sym_ctrl_error] = STATE(6531), + [sym_ctrl_while] = STATE(6531), + [sym_ctrl_do] = STATE(4755), + [sym_ctrl_if] = STATE(4755), + [sym_ctrl_match] = STATE(4755), + [sym_ctrl_try] = STATE(4755), + [sym_ctrl_return] = STATE(4755), + [sym_pipe_element] = STATE(4358), + [sym_stmt_source] = STATE(6587), + [sym__stmt_hide] = STATE(6587), + [sym_hide_mod] = STATE(6561), + [sym_hide_env] = STATE(6561), + [sym__stmt_overlay] = STATE(6587), + [sym_overlay_list] = STATE(6401), + [sym_overlay_hide] = STATE(6401), + [sym_overlay_new] = STATE(6401), + [sym_overlay_use] = STATE(6401), + [sym_where_command] = STATE(4788), + [sym__expression] = STATE(3684), + [sym_expr_unary] = STATE(2328), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2328), + [sym__expr_binary_expression] = STATE(3675), + [sym_expr_parenthesized] = STATE(1929), + [sym_val_range] = STATE(2328), + [sym__value] = STATE(2328), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(2375), + [sym_val_variable] = STATE(1372), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(749), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4788), + [sym_comment] = STATE(135), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(347), + [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_AT] = ACTIONS(27), + [anon_sym_def] = ACTIONS(29), + [anon_sym_export_DASHenv] = ACTIONS(31), + [anon_sym_extern] = ACTIONS(33), + [anon_sym_module] = ACTIONS(35), + [anon_sym_use] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(43), + [anon_sym_error] = ACTIONS(45), + [anon_sym_DASH2] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [anon_sym_loop] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_do] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(67), + [anon_sym_try] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_source] = ACTIONS(73), + [anon_sym_source_DASHenv] = 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(245), + [sym_raw_string_begin] = ACTIONS(121), + }, + [136] = { + [sym__block_body_statement] = STATE(5683), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1395), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(136), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(343), + [anon_sym_export] = ACTIONS(581), + [anon_sym_alias] = ACTIONS(583), + [anon_sym_let] = ACTIONS(585), + [anon_sym_let_DASHenv] = ACTIONS(585), + [anon_sym_mut] = ACTIONS(587), + [anon_sym_const] = ACTIONS(589), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -87780,12 +87566,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(383), [anon_sym_while] = ACTIONS(385), [anon_sym_do] = ACTIONS(387), - [anon_sym_if] = ACTIONS(389), + [anon_sym_if] = ACTIONS(591), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(395), - [anon_sym_return] = ACTIONS(397), + [anon_sym_return] = ACTIONS(443), [anon_sym_source] = ACTIONS(399), [anon_sym_source_DASHenv] = ACTIONS(399), [anon_sym_hide] = ACTIONS(401), @@ -87798,10 +87584,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(407), - [aux_sym__val_number_decimal_token2] = ACTIONS(409), - [aux_sym__val_number_decimal_token3] = ACTIONS(411), - [aux_sym__val_number_decimal_token4] = ACTIONS(413), + [aux_sym__val_number_decimal_token1] = ACTIONS(449), + [aux_sym__val_number_decimal_token2] = ACTIONS(451), + [aux_sym__val_number_decimal_token3] = ACTIONS(453), + [aux_sym__val_number_decimal_token4] = ACTIONS(455), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -87822,87 +87608,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [132] = { - [sym__block_body_statement] = STATE(6015), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1441), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(132), - [aux_sym_pipeline_repeat1] = STATE(190), - [aux_sym__block_body_repeat2] = STATE(137), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(348), - [anon_sym_export] = ACTIONS(579), - [anon_sym_alias] = ACTIONS(581), - [anon_sym_let] = ACTIONS(583), - [anon_sym_let_DASHenv] = ACTIONS(583), - [anon_sym_mut] = ACTIONS(585), - [anon_sym_const] = ACTIONS(587), + [137] = { + [sym__block_body_statement] = STATE(5683), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(137), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [anon_sym_export] = ACTIONS(347), + [anon_sym_alias] = ACTIONS(349), + [anon_sym_let] = ACTIONS(351), + [anon_sym_let_DASHenv] = ACTIONS(351), + [anon_sym_mut] = ACTIONS(353), + [anon_sym_const] = ACTIONS(355), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -87960,12 +87746,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(383), [anon_sym_while] = ACTIONS(385), [anon_sym_do] = ACTIONS(387), - [anon_sym_if] = ACTIONS(589), + [anon_sym_if] = ACTIONS(389), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(395), - [anon_sym_return] = ACTIONS(443), + [anon_sym_return] = ACTIONS(397), [anon_sym_source] = ACTIONS(399), [anon_sym_source_DASHenv] = ACTIONS(399), [anon_sym_hide] = ACTIONS(401), @@ -87978,10 +87764,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(449), - [aux_sym__val_number_decimal_token2] = ACTIONS(451), - [aux_sym__val_number_decimal_token3] = ACTIONS(453), - [aux_sym__val_number_decimal_token4] = ACTIONS(455), + [aux_sym__val_number_decimal_token1] = ACTIONS(407), + [aux_sym__val_number_decimal_token2] = ACTIONS(409), + [aux_sym__val_number_decimal_token3] = ACTIONS(411), + [aux_sym__val_number_decimal_token4] = ACTIONS(413), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -88002,87 +87788,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [133] = { - [sym__block_body_statement_parenthesized] = STATE(5791), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), - [sym_comment] = STATE(133), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(139), - [anon_sym_export] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(423), - [anon_sym_let] = ACTIONS(425), - [anon_sym_let_DASHenv] = ACTIONS(425), - [anon_sym_mut] = ACTIONS(427), - [anon_sym_const] = ACTIONS(429), + [138] = { + [sym__block_body_statement] = STATE(5766), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1395), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(138), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(343), + [anon_sym_export] = ACTIONS(581), + [anon_sym_alias] = ACTIONS(583), + [anon_sym_let] = ACTIONS(585), + [anon_sym_let_DASHenv] = ACTIONS(585), + [anon_sym_mut] = ACTIONS(587), + [anon_sym_const] = ACTIONS(589), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -88134,24 +87920,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(269), [anon_sym_error] = ACTIONS(373), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_break] = ACTIONS(433), - [anon_sym_continue] = ACTIONS(435), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), [anon_sym_for] = ACTIONS(381), [anon_sym_loop] = ACTIONS(383), [anon_sym_while] = ACTIONS(385), - [anon_sym_do] = ACTIONS(437), - [anon_sym_if] = ACTIONS(439), + [anon_sym_do] = ACTIONS(387), + [anon_sym_if] = ACTIONS(591), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(441), + [anon_sym_try] = ACTIONS(395), [anon_sym_return] = ACTIONS(443), [anon_sym_source] = ACTIONS(399), [anon_sym_source_DASHenv] = ACTIONS(399), [anon_sym_hide] = ACTIONS(401), [anon_sym_hide_DASHenv] = ACTIONS(403), [anon_sym_overlay] = ACTIONS(405), - [anon_sym_where] = ACTIONS(445), + [anon_sym_where] = ACTIONS(199), [aux_sym_expr_unary_token1] = ACTIONS(201), [anon_sym_DOT_DOT_EQ] = ACTIONS(207), [anon_sym_DOT_DOT_LT] = ACTIONS(207), @@ -88178,271 +87964,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [134] = { - [sym__block_body_statement] = STATE(6379), - [sym__declaration] = STATE(6930), - [sym_decl_alias] = STATE(6931), - [sym_stmt_let] = STATE(6971), - [sym_stmt_mut] = STATE(6971), - [sym_stmt_const] = STATE(6971), - [sym_assignment] = STATE(6971), - [sym__mutable_assignment_pattern] = STATE(6974), - [sym__statement] = STATE(6930), - [sym_pipeline] = STATE(6971), - [sym_cmd_identifier] = STATE(4647), - [sym_attribute_list] = STATE(7444), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6931), - [sym_decl_export] = STATE(6931), - [sym_decl_extern] = STATE(6931), - [sym_decl_module] = STATE(6931), - [sym_decl_use] = STATE(6931), - [sym__ctrl_statement] = STATE(6971), - [sym__ctrl_expression] = STATE(5055), - [sym_ctrl_for] = STATE(7087), - [sym_ctrl_loop] = STATE(7087), - [sym_ctrl_error] = STATE(7087), - [sym_ctrl_while] = STATE(7087), - [sym_ctrl_do] = STATE(5153), - [sym_ctrl_if] = STATE(5153), - [sym_ctrl_match] = STATE(5153), - [sym_ctrl_try] = STATE(5153), - [sym_ctrl_return] = STATE(5153), - [sym_pipe_element] = STATE(4584), - [sym_stmt_source] = STATE(6971), - [sym__stmt_hide] = STATE(6971), - [sym_hide_mod] = STATE(7358), - [sym_hide_env] = STATE(7358), - [sym__stmt_overlay] = STATE(6971), - [sym_overlay_list] = STATE(7359), - [sym_overlay_hide] = STATE(7359), - [sym_overlay_new] = STATE(7359), - [sym_overlay_use] = STATE(7359), - [sym_where_command] = STATE(5004), - [sym__expression] = STATE(3881), - [sym_expr_unary] = STATE(2510), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2510), - [sym__expr_binary_expression] = STATE(3843), - [sym_expr_parenthesized] = STATE(2098), - [sym_val_range] = STATE(2510), - [sym__value] = STATE(2510), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(2470), - [sym_val_variable] = STATE(1446), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(778), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(5004), - [sym_comment] = STATE(134), + [139] = { + [sym__block_body_statement] = STATE(5766), + [sym__declaration] = STATE(6273), + [sym_decl_alias] = STATE(6274), + [sym_stmt_let] = STATE(6275), + [sym_stmt_mut] = STATE(6275), + [sym_stmt_const] = STATE(6275), + [sym_assignment] = STATE(6275), + [sym__mutable_assignment_pattern] = STATE(6283), + [sym__statement] = STATE(6273), + [sym_pipeline] = STATE(6275), + [sym_cmd_identifier] = STATE(4261), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6274), + [sym_decl_export] = STATE(6274), + [sym_decl_extern] = STATE(6274), + [sym_decl_module] = STATE(6274), + [sym_decl_use] = STATE(6274), + [sym__ctrl_statement] = STATE(6275), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_stmt_source] = STATE(6275), + [sym__stmt_hide] = STATE(6275), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6275), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1373), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(139), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat2] = STATE(137), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(339), - [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_AT] = ACTIONS(27), - [anon_sym_def] = ACTIONS(29), - [anon_sym_export_DASHenv] = ACTIONS(31), - [anon_sym_extern] = ACTIONS(33), - [anon_sym_module] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_error] = ACTIONS(45), - [anon_sym_DASH2] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), - [anon_sym_do] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(67), - [anon_sym_try] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_source] = ACTIONS(73), - [anon_sym_source_DASHenv] = 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(245), - [sym_raw_string_begin] = ACTIONS(121), - }, - [135] = { - [sym__block_body_statement] = STATE(6068), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1441), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(135), - [aux_sym_pipeline_repeat1] = STATE(190), - [aux_sym__block_body_repeat2] = STATE(137), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(348), - [anon_sym_export] = ACTIONS(579), - [anon_sym_alias] = ACTIONS(581), - [anon_sym_let] = ACTIONS(583), - [anon_sym_let_DASHenv] = ACTIONS(583), - [anon_sym_mut] = ACTIONS(585), - [anon_sym_const] = ACTIONS(587), + [aux_sym__block_body_repeat2] = STATE(131), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_repeat2] = STATE(365), + [anon_sym_export] = ACTIONS(347), + [anon_sym_alias] = ACTIONS(349), + [anon_sym_let] = ACTIONS(351), + [anon_sym_let_DASHenv] = ACTIONS(351), + [anon_sym_mut] = ACTIONS(353), + [anon_sym_const] = ACTIONS(355), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -88500,12 +88106,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(383), [anon_sym_while] = ACTIONS(385), [anon_sym_do] = ACTIONS(387), - [anon_sym_if] = ACTIONS(589), + [anon_sym_if] = ACTIONS(389), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(395), - [anon_sym_return] = ACTIONS(443), + [anon_sym_return] = ACTIONS(397), [anon_sym_source] = ACTIONS(399), [anon_sym_source_DASHenv] = ACTIONS(399), [anon_sym_hide] = ACTIONS(401), @@ -88518,10 +88124,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(449), - [aux_sym__val_number_decimal_token2] = ACTIONS(451), - [aux_sym__val_number_decimal_token3] = ACTIONS(453), - [aux_sym__val_number_decimal_token4] = ACTIONS(455), + [aux_sym__val_number_decimal_token1] = ACTIONS(407), + [aux_sym__val_number_decimal_token2] = ACTIONS(409), + [aux_sym__val_number_decimal_token3] = ACTIONS(411), + [aux_sym__val_number_decimal_token4] = ACTIONS(413), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -88542,441 +88148,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [136] = { - [sym__block_body_statement] = STATE(6520), - [sym__declaration] = STATE(6930), - [sym_decl_alias] = STATE(6931), - [sym_stmt_let] = STATE(6971), - [sym_stmt_mut] = STATE(6971), - [sym_stmt_const] = STATE(6971), - [sym_assignment] = STATE(6971), - [sym__mutable_assignment_pattern] = STATE(6974), - [sym__statement] = STATE(6930), - [sym_pipeline] = STATE(6971), - [sym_cmd_identifier] = STATE(4647), - [sym_attribute_list] = STATE(7444), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6931), - [sym_decl_export] = STATE(6931), - [sym_decl_extern] = STATE(6931), - [sym_decl_module] = STATE(6931), - [sym_decl_use] = STATE(6931), - [sym__ctrl_statement] = STATE(6971), - [sym__ctrl_expression] = STATE(5055), - [sym_ctrl_for] = STATE(7087), - [sym_ctrl_loop] = STATE(7087), - [sym_ctrl_error] = STATE(7087), - [sym_ctrl_while] = STATE(7087), - [sym_ctrl_do] = STATE(5153), - [sym_ctrl_if] = STATE(5153), - [sym_ctrl_match] = STATE(5153), - [sym_ctrl_try] = STATE(5153), - [sym_ctrl_return] = STATE(5153), - [sym_pipe_element] = STATE(4584), - [sym_stmt_source] = STATE(6971), - [sym__stmt_hide] = STATE(6971), - [sym_hide_mod] = STATE(7358), - [sym_hide_env] = STATE(7358), - [sym__stmt_overlay] = STATE(6971), - [sym_overlay_list] = STATE(7359), - [sym_overlay_hide] = STATE(7359), - [sym_overlay_new] = STATE(7359), - [sym_overlay_use] = STATE(7359), - [sym_where_command] = STATE(5004), - [sym__expression] = STATE(3881), - [sym_expr_unary] = STATE(2510), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2510), - [sym__expr_binary_expression] = STATE(3843), - [sym_expr_parenthesized] = STATE(2098), - [sym_val_range] = STATE(2510), - [sym__value] = STATE(2510), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(2470), - [sym_val_variable] = STATE(1446), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(778), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(5004), - [sym_comment] = STATE(136), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat2] = STATE(137), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(339), - [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_AT] = ACTIONS(27), - [anon_sym_def] = ACTIONS(29), - [anon_sym_export_DASHenv] = ACTIONS(31), - [anon_sym_extern] = ACTIONS(33), - [anon_sym_module] = ACTIONS(35), - [anon_sym_use] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [anon_sym_error] = ACTIONS(45), - [anon_sym_DASH2] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_loop] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), - [anon_sym_do] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(67), - [anon_sym_try] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_source] = ACTIONS(73), - [anon_sym_source_DASHenv] = 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(245), - [sym_raw_string_begin] = ACTIONS(121), - }, - [137] = { - [sym__block_body_statement] = STATE(6943), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1524), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(814), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(137), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat2] = STATE(137), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(342), - [anon_sym_export] = ACTIONS(595), - [anon_sym_alias] = ACTIONS(598), - [anon_sym_let] = ACTIONS(601), - [anon_sym_let_DASHenv] = ACTIONS(601), - [anon_sym_mut] = ACTIONS(604), - [anon_sym_const] = ACTIONS(607), - [aux_sym_cmd_identifier_token1] = ACTIONS(610), - [aux_sym_cmd_identifier_token2] = ACTIONS(613), - [aux_sym_cmd_identifier_token3] = ACTIONS(613), - [aux_sym_cmd_identifier_token4] = ACTIONS(613), - [aux_sym_cmd_identifier_token5] = ACTIONS(613), - [aux_sym_cmd_identifier_token6] = ACTIONS(613), - [aux_sym_cmd_identifier_token7] = ACTIONS(613), - [aux_sym_cmd_identifier_token8] = ACTIONS(610), - [aux_sym_cmd_identifier_token9] = ACTIONS(610), - [aux_sym_cmd_identifier_token10] = ACTIONS(613), - [aux_sym_cmd_identifier_token11] = ACTIONS(613), - [aux_sym_cmd_identifier_token12] = ACTIONS(610), - [aux_sym_cmd_identifier_token13] = ACTIONS(610), - [aux_sym_cmd_identifier_token14] = ACTIONS(610), - [aux_sym_cmd_identifier_token15] = ACTIONS(610), - [aux_sym_cmd_identifier_token16] = ACTIONS(613), - [aux_sym_cmd_identifier_token17] = ACTIONS(613), - [aux_sym_cmd_identifier_token18] = ACTIONS(613), - [aux_sym_cmd_identifier_token19] = ACTIONS(613), - [aux_sym_cmd_identifier_token20] = ACTIONS(613), - [aux_sym_cmd_identifier_token21] = ACTIONS(613), - [aux_sym_cmd_identifier_token22] = ACTIONS(613), - [aux_sym_cmd_identifier_token23] = ACTIONS(613), - [aux_sym_cmd_identifier_token24] = ACTIONS(613), - [aux_sym_cmd_identifier_token25] = ACTIONS(613), - [aux_sym_cmd_identifier_token26] = ACTIONS(613), - [aux_sym_cmd_identifier_token27] = ACTIONS(613), - [aux_sym_cmd_identifier_token28] = ACTIONS(613), - [aux_sym_cmd_identifier_token29] = ACTIONS(613), - [aux_sym_cmd_identifier_token30] = ACTIONS(613), - [aux_sym_cmd_identifier_token31] = ACTIONS(613), - [aux_sym_cmd_identifier_token32] = ACTIONS(613), - [aux_sym_cmd_identifier_token33] = ACTIONS(613), - [aux_sym_cmd_identifier_token34] = ACTIONS(610), - [aux_sym_cmd_identifier_token35] = ACTIONS(613), - [aux_sym_cmd_identifier_token36] = ACTIONS(613), - [aux_sym_cmd_identifier_token37] = ACTIONS(613), - [aux_sym_cmd_identifier_token38] = ACTIONS(610), - [aux_sym_cmd_identifier_token39] = ACTIONS(613), - [aux_sym_cmd_identifier_token40] = ACTIONS(613), - [anon_sym_AT] = ACTIONS(616), - [anon_sym_def] = ACTIONS(619), - [anon_sym_export_DASHenv] = ACTIONS(622), - [anon_sym_extern] = ACTIONS(625), - [anon_sym_module] = ACTIONS(628), - [anon_sym_use] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(634), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_DOLLAR] = ACTIONS(640), - [anon_sym_error] = ACTIONS(643), - [anon_sym_DASH2] = ACTIONS(646), - [anon_sym_break] = ACTIONS(649), - [anon_sym_continue] = ACTIONS(652), - [anon_sym_for] = ACTIONS(655), - [anon_sym_loop] = ACTIONS(658), - [anon_sym_while] = ACTIONS(661), - [anon_sym_do] = ACTIONS(664), - [anon_sym_if] = ACTIONS(667), - [anon_sym_match] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(673), - [anon_sym_DOT_DOT] = ACTIONS(676), - [anon_sym_try] = ACTIONS(679), - [anon_sym_return] = ACTIONS(682), - [anon_sym_source] = ACTIONS(685), - [anon_sym_source_DASHenv] = ACTIONS(685), - [anon_sym_hide] = ACTIONS(688), - [anon_sym_hide_DASHenv] = ACTIONS(691), - [anon_sym_overlay] = ACTIONS(694), - [anon_sym_where] = ACTIONS(697), - [aux_sym_expr_unary_token1] = ACTIONS(700), - [anon_sym_DOT_DOT_EQ] = ACTIONS(703), - [anon_sym_DOT_DOT_LT] = ACTIONS(703), - [anon_sym_null] = ACTIONS(706), - [anon_sym_true] = ACTIONS(709), - [anon_sym_false] = ACTIONS(709), - [aux_sym__val_number_decimal_token1] = ACTIONS(712), - [aux_sym__val_number_decimal_token2] = ACTIONS(715), - [aux_sym__val_number_decimal_token3] = ACTIONS(718), - [aux_sym__val_number_decimal_token4] = ACTIONS(721), - [aux_sym__val_number_token1] = ACTIONS(724), - [aux_sym__val_number_token2] = ACTIONS(724), - [aux_sym__val_number_token3] = ACTIONS(724), - [aux_sym__val_number_token4] = ACTIONS(727), - [aux_sym__val_number_token5] = ACTIONS(727), - [aux_sym__val_number_token6] = ACTIONS(727), - [anon_sym_0b] = ACTIONS(730), - [anon_sym_0o] = ACTIONS(733), - [anon_sym_0x] = ACTIONS(733), - [sym_val_date] = ACTIONS(736), - [anon_sym_DQUOTE] = ACTIONS(739), - [sym__str_single_quotes] = ACTIONS(742), - [sym__str_back_ticks] = ACTIONS(742), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(745), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(748), - [aux_sym_env_var_token1] = ACTIONS(751), - [anon_sym_CARET] = ACTIONS(754), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(757), - }, - [138] = { - [sym__block_body_statement_parenthesized] = STATE(5855), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1436), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), - [sym_comment] = STATE(138), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), - [aux_sym__parenthesized_body_repeat2] = STATE(139), + [140] = { + [sym__block_body_statement_parenthesized] = STATE(5584), + [sym__declaration_parenthesized] = STATE(6583), + [sym_decl_alias_parenthesized] = STATE(6596), + [sym_stmt_let_parenthesized] = STATE(6617), + [sym_stmt_mut_parenthesized] = STATE(6617), + [sym_stmt_const_parenthesized] = STATE(6617), + [sym_assignment_parenthesized] = STATE(6617), + [sym__mutable_assignment_pattern_parenthesized] = STATE(6368), + [sym__statement_parenthesized] = STATE(6583), + [sym_pipeline_parenthesized] = STATE(6617), + [sym_cmd_identifier] = STATE(4420), + [sym_attribute_list] = STATE(6979), + [sym_attribute] = STATE(6891), + [sym_decl_def] = STATE(6596), + [sym_decl_export] = STATE(6596), + [sym_decl_extern] = STATE(6596), + [sym_decl_module] = STATE(6596), + [sym_decl_use] = STATE(6596), + [sym__ctrl_statement] = STATE(6617), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_for] = STATE(6291), + [sym_ctrl_loop] = STATE(6291), + [sym_ctrl_error] = STATE(6291), + [sym_ctrl_while] = STATE(6291), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_stmt_source] = STATE(6617), + [sym__stmt_hide] = STATE(6617), + [sym_hide_mod] = STATE(6297), + [sym_hide_env] = STATE(6297), + [sym__stmt_overlay] = STATE(6617), + [sym_overlay_list] = STATE(6298), + [sym_overlay_hide] = STATE(6298), + [sym_overlay_new] = STATE(6298), + [sym_overlay_use] = STATE(6298), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1391), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), + [sym_comment] = STATE(140), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym_attribute_list_repeat1] = STATE(5694), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(421), [anon_sym_alias] = ACTIONS(423), [anon_sym_let] = ACTIONS(425), @@ -89082,371 +88328,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [139] = { - [sym__block_body_statement_parenthesized] = STATE(6470), - [sym__declaration_parenthesized] = STATE(7282), - [sym_decl_alias_parenthesized] = STATE(6793), - [sym_stmt_let_parenthesized] = STATE(6861), - [sym_stmt_mut_parenthesized] = STATE(6861), - [sym_stmt_const_parenthesized] = STATE(6861), - [sym_assignment_parenthesized] = STATE(6861), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6872), - [sym__statement_parenthesized] = STATE(7282), - [sym_pipeline_parenthesized] = STATE(6861), - [sym_cmd_identifier] = STATE(4650), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6793), - [sym_decl_export] = STATE(6793), - [sym_decl_extern] = STATE(6793), - [sym_decl_module] = STATE(6793), - [sym_decl_use] = STATE(6793), - [sym__ctrl_statement] = STATE(6861), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_stmt_source] = STATE(6861), - [sym__stmt_hide] = STATE(6861), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6861), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1516), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(814), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), - [sym_comment] = STATE(139), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(186), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(355), - [aux_sym__parenthesized_body_repeat2] = STATE(139), - [anon_sym_export] = ACTIONS(760), - [anon_sym_alias] = ACTIONS(763), - [anon_sym_let] = ACTIONS(766), - [anon_sym_let_DASHenv] = ACTIONS(766), - [anon_sym_mut] = ACTIONS(769), - [anon_sym_const] = ACTIONS(772), - [aux_sym_cmd_identifier_token1] = ACTIONS(775), - [aux_sym_cmd_identifier_token2] = ACTIONS(778), - [aux_sym_cmd_identifier_token3] = ACTIONS(778), - [aux_sym_cmd_identifier_token4] = ACTIONS(778), - [aux_sym_cmd_identifier_token5] = ACTIONS(778), - [aux_sym_cmd_identifier_token6] = ACTIONS(778), - [aux_sym_cmd_identifier_token7] = ACTIONS(778), - [aux_sym_cmd_identifier_token8] = ACTIONS(775), - [aux_sym_cmd_identifier_token9] = ACTIONS(775), - [aux_sym_cmd_identifier_token10] = ACTIONS(778), - [aux_sym_cmd_identifier_token11] = ACTIONS(778), - [aux_sym_cmd_identifier_token12] = ACTIONS(775), - [aux_sym_cmd_identifier_token13] = ACTIONS(775), - [aux_sym_cmd_identifier_token14] = ACTIONS(775), - [aux_sym_cmd_identifier_token15] = ACTIONS(775), - [aux_sym_cmd_identifier_token16] = ACTIONS(778), - [aux_sym_cmd_identifier_token17] = ACTIONS(778), - [aux_sym_cmd_identifier_token18] = ACTIONS(778), - [aux_sym_cmd_identifier_token19] = ACTIONS(778), - [aux_sym_cmd_identifier_token20] = ACTIONS(778), - [aux_sym_cmd_identifier_token21] = ACTIONS(778), - [aux_sym_cmd_identifier_token22] = ACTIONS(778), - [aux_sym_cmd_identifier_token23] = ACTIONS(778), - [aux_sym_cmd_identifier_token24] = ACTIONS(778), - [aux_sym_cmd_identifier_token25] = ACTIONS(778), - [aux_sym_cmd_identifier_token26] = ACTIONS(778), - [aux_sym_cmd_identifier_token27] = ACTIONS(778), - [aux_sym_cmd_identifier_token28] = ACTIONS(778), - [aux_sym_cmd_identifier_token29] = ACTIONS(778), - [aux_sym_cmd_identifier_token30] = ACTIONS(778), - [aux_sym_cmd_identifier_token31] = ACTIONS(778), - [aux_sym_cmd_identifier_token32] = ACTIONS(778), - [aux_sym_cmd_identifier_token33] = ACTIONS(778), - [aux_sym_cmd_identifier_token34] = ACTIONS(775), - [aux_sym_cmd_identifier_token35] = ACTIONS(778), - [aux_sym_cmd_identifier_token36] = ACTIONS(778), - [aux_sym_cmd_identifier_token37] = ACTIONS(778), - [aux_sym_cmd_identifier_token38] = ACTIONS(775), - [aux_sym_cmd_identifier_token39] = ACTIONS(778), - [aux_sym_cmd_identifier_token40] = ACTIONS(778), - [anon_sym_AT] = ACTIONS(781), - [anon_sym_def] = ACTIONS(784), - [anon_sym_export_DASHenv] = ACTIONS(787), - [anon_sym_extern] = ACTIONS(790), - [anon_sym_module] = ACTIONS(793), - [anon_sym_use] = ACTIONS(796), - [anon_sym_LBRACK] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_error] = ACTIONS(808), - [anon_sym_DASH2] = ACTIONS(811), - [anon_sym_break] = ACTIONS(814), - [anon_sym_continue] = ACTIONS(817), - [anon_sym_for] = ACTIONS(820), - [anon_sym_loop] = ACTIONS(823), - [anon_sym_while] = ACTIONS(826), - [anon_sym_do] = ACTIONS(829), - [anon_sym_if] = ACTIONS(832), - [anon_sym_match] = ACTIONS(835), - [anon_sym_LBRACE] = ACTIONS(838), - [anon_sym_DOT_DOT] = ACTIONS(841), - [anon_sym_try] = ACTIONS(844), - [anon_sym_return] = ACTIONS(847), - [anon_sym_source] = ACTIONS(850), - [anon_sym_source_DASHenv] = ACTIONS(850), - [anon_sym_hide] = ACTIONS(853), - [anon_sym_hide_DASHenv] = ACTIONS(856), - [anon_sym_overlay] = ACTIONS(859), - [anon_sym_where] = ACTIONS(862), - [aux_sym_expr_unary_token1] = ACTIONS(865), - [anon_sym_DOT_DOT_EQ] = ACTIONS(868), - [anon_sym_DOT_DOT_LT] = ACTIONS(868), - [anon_sym_null] = ACTIONS(871), - [anon_sym_true] = ACTIONS(874), - [anon_sym_false] = ACTIONS(874), - [aux_sym__val_number_decimal_token1] = ACTIONS(877), - [aux_sym__val_number_decimal_token2] = ACTIONS(880), - [aux_sym__val_number_decimal_token3] = ACTIONS(883), - [aux_sym__val_number_decimal_token4] = ACTIONS(886), - [aux_sym__val_number_token1] = ACTIONS(889), - [aux_sym__val_number_token2] = ACTIONS(889), - [aux_sym__val_number_token3] = ACTIONS(889), - [aux_sym__val_number_token4] = ACTIONS(892), - [aux_sym__val_number_token5] = ACTIONS(892), - [aux_sym__val_number_token6] = ACTIONS(892), - [anon_sym_0b] = ACTIONS(895), - [anon_sym_0o] = ACTIONS(898), - [anon_sym_0x] = ACTIONS(898), - [sym_val_date] = ACTIONS(901), - [anon_sym_DQUOTE] = ACTIONS(904), - [sym__str_single_quotes] = ACTIONS(907), - [sym__str_back_ticks] = ACTIONS(907), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(910), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(913), - [aux_sym_env_var_token1] = ACTIONS(916), - [anon_sym_CARET] = ACTIONS(919), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(922), - }, - [140] = { - [sym__block_body_statement] = STATE(6068), - [sym__declaration] = STATE(6240), - [sym_decl_alias] = STATE(6241), - [sym_stmt_let] = STATE(6242), - [sym_stmt_mut] = STATE(6242), - [sym_stmt_const] = STATE(6242), - [sym_assignment] = STATE(6242), - [sym__mutable_assignment_pattern] = STATE(6244), - [sym__statement] = STATE(6240), - [sym_pipeline] = STATE(6242), - [sym_cmd_identifier] = STATE(4507), - [sym_attribute_list] = STATE(7543), - [sym_attribute] = STATE(7521), - [sym_decl_def] = STATE(6241), - [sym_decl_export] = STATE(6241), - [sym_decl_extern] = STATE(6241), - [sym_decl_module] = STATE(6241), - [sym_decl_use] = STATE(6241), - [sym__ctrl_statement] = STATE(6242), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_for] = STATE(6257), - [sym_ctrl_loop] = STATE(6257), - [sym_ctrl_error] = STATE(6257), - [sym_ctrl_while] = STATE(6257), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_stmt_source] = STATE(6242), - [sym__stmt_hide] = STATE(6242), - [sym_hide_mod] = STATE(6262), - [sym_hide_env] = STATE(6262), - [sym__stmt_overlay] = STATE(6242), - [sym_overlay_list] = STATE(6265), - [sym_overlay_hide] = STATE(6265), - [sym_overlay_new] = STATE(6265), - [sym_overlay_use] = STATE(6265), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1430), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(140), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym__block_body_repeat2] = STATE(137), - [aux_sym_attribute_list_repeat1] = STATE(6037), - [aux_sym_pipe_element_repeat2] = STATE(341), - [anon_sym_export] = ACTIONS(347), - [anon_sym_alias] = ACTIONS(349), - [anon_sym_let] = ACTIONS(351), - [anon_sym_let_DASHenv] = ACTIONS(351), - [anon_sym_mut] = ACTIONS(353), - [anon_sym_const] = ACTIONS(355), - [aux_sym_cmd_identifier_token1] = ACTIONS(357), - [aux_sym_cmd_identifier_token2] = ACTIONS(359), - [aux_sym_cmd_identifier_token3] = ACTIONS(359), - [aux_sym_cmd_identifier_token4] = ACTIONS(359), - [aux_sym_cmd_identifier_token5] = ACTIONS(359), - [aux_sym_cmd_identifier_token6] = ACTIONS(359), - [aux_sym_cmd_identifier_token7] = ACTIONS(359), - [aux_sym_cmd_identifier_token8] = ACTIONS(357), - [aux_sym_cmd_identifier_token9] = ACTIONS(357), - [aux_sym_cmd_identifier_token10] = ACTIONS(359), - [aux_sym_cmd_identifier_token11] = ACTIONS(359), - [aux_sym_cmd_identifier_token12] = ACTIONS(357), - [aux_sym_cmd_identifier_token13] = ACTIONS(357), - [aux_sym_cmd_identifier_token14] = ACTIONS(357), - [aux_sym_cmd_identifier_token15] = ACTIONS(357), - [aux_sym_cmd_identifier_token16] = ACTIONS(359), - [aux_sym_cmd_identifier_token17] = ACTIONS(359), - [aux_sym_cmd_identifier_token18] = ACTIONS(359), - [aux_sym_cmd_identifier_token19] = ACTIONS(359), - [aux_sym_cmd_identifier_token20] = ACTIONS(359), - [aux_sym_cmd_identifier_token21] = ACTIONS(359), - [aux_sym_cmd_identifier_token22] = ACTIONS(359), - [aux_sym_cmd_identifier_token23] = ACTIONS(359), - [aux_sym_cmd_identifier_token24] = ACTIONS(359), - [aux_sym_cmd_identifier_token25] = ACTIONS(359), - [aux_sym_cmd_identifier_token26] = ACTIONS(359), - [aux_sym_cmd_identifier_token27] = ACTIONS(359), - [aux_sym_cmd_identifier_token28] = ACTIONS(359), - [aux_sym_cmd_identifier_token29] = ACTIONS(359), - [aux_sym_cmd_identifier_token30] = ACTIONS(359), - [aux_sym_cmd_identifier_token31] = ACTIONS(359), - [aux_sym_cmd_identifier_token32] = ACTIONS(359), - [aux_sym_cmd_identifier_token33] = ACTIONS(359), - [aux_sym_cmd_identifier_token34] = ACTIONS(357), - [aux_sym_cmd_identifier_token35] = ACTIONS(359), - [aux_sym_cmd_identifier_token36] = ACTIONS(359), - [aux_sym_cmd_identifier_token37] = ACTIONS(359), - [aux_sym_cmd_identifier_token38] = ACTIONS(357), - [aux_sym_cmd_identifier_token39] = ACTIONS(359), - [aux_sym_cmd_identifier_token40] = ACTIONS(359), - [anon_sym_AT] = ACTIONS(27), - [anon_sym_def] = ACTIONS(363), - [anon_sym_export_DASHenv] = ACTIONS(365), - [anon_sym_extern] = ACTIONS(367), - [anon_sym_module] = ACTIONS(369), - [anon_sym_use] = ACTIONS(371), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(373), - [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_break] = ACTIONS(377), - [anon_sym_continue] = ACTIONS(379), - [anon_sym_for] = ACTIONS(381), - [anon_sym_loop] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_do] = ACTIONS(387), - [anon_sym_if] = ACTIONS(389), - [anon_sym_match] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(395), - [anon_sym_return] = ACTIONS(397), - [anon_sym_source] = ACTIONS(399), - [anon_sym_source_DASHenv] = ACTIONS(399), - [anon_sym_hide] = ACTIONS(401), - [anon_sym_hide_DASHenv] = ACTIONS(403), - [anon_sym_overlay] = ACTIONS(405), - [anon_sym_where] = ACTIONS(199), - [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(207), - [anon_sym_DOT_DOT_LT] = ACTIONS(207), - [anon_sym_null] = ACTIONS(209), - [anon_sym_true] = ACTIONS(211), - [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(407), - [aux_sym__val_number_decimal_token2] = ACTIONS(409), - [aux_sym__val_number_decimal_token3] = ACTIONS(411), - [aux_sym__val_number_decimal_token4] = ACTIONS(413), - [aux_sym__val_number_token1] = ACTIONS(223), - [aux_sym__val_number_token2] = ACTIONS(223), - [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(225), - [aux_sym__val_number_token5] = ACTIONS(225), - [aux_sym__val_number_token6] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(247), - }, [141] = { [sym_cell_path] = STATE(153), [sym_path] = STATE(150), [sym_comment] = STATE(141), - [aux_sym_cell_path_repeat1] = STATE(142), + [aux_sym_cell_path_repeat1] = STATE(143), [anon_sym_export] = ACTIONS(925), [anon_sym_alias] = ACTIONS(925), [anon_sym_EQ] = ACTIONS(925), @@ -89615,7 +88501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [142] = { [sym_path] = STATE(150), [sym_comment] = STATE(142), - [aux_sym_cell_path_repeat1] = STATE(143), + [aux_sym_cell_path_repeat1] = STATE(142), [anon_sym_export] = ACTIONS(931), [anon_sym_alias] = ACTIONS(931), [anon_sym_EQ] = ACTIONS(931), @@ -89761,7 +88647,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(933), [anon_sym_register] = ACTIONS(931), [anon_sym_COLON2] = ACTIONS(933), - [anon_sym_DOT2] = ACTIONS(929), + [anon_sym_DOT2] = ACTIONS(935), [anon_sym_err_GT] = ACTIONS(931), [anon_sym_out_GT] = ACTIONS(931), [anon_sym_e_GT] = ACTIONS(931), @@ -89784,171 +88670,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [143] = { [sym_path] = STATE(150), [sym_comment] = STATE(143), - [aux_sym_cell_path_repeat1] = STATE(143), - [anon_sym_export] = ACTIONS(935), - [anon_sym_alias] = ACTIONS(935), - [anon_sym_EQ] = ACTIONS(935), - [anon_sym_let] = ACTIONS(935), - [anon_sym_let_DASHenv] = ACTIONS(935), - [anon_sym_mut] = ACTIONS(935), - [anon_sym_const] = ACTIONS(935), - [anon_sym_PLUS_EQ] = ACTIONS(937), - [anon_sym_DASH_EQ] = ACTIONS(937), - [anon_sym_STAR_EQ] = ACTIONS(937), - [anon_sym_SLASH_EQ] = ACTIONS(937), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(937), - [aux_sym_cmd_identifier_token1] = ACTIONS(935), - [aux_sym_cmd_identifier_token2] = ACTIONS(937), - [aux_sym_cmd_identifier_token3] = ACTIONS(937), - [aux_sym_cmd_identifier_token4] = ACTIONS(937), - [aux_sym_cmd_identifier_token5] = ACTIONS(937), - [aux_sym_cmd_identifier_token6] = ACTIONS(937), - [aux_sym_cmd_identifier_token7] = ACTIONS(937), - [aux_sym_cmd_identifier_token8] = ACTIONS(935), - [aux_sym_cmd_identifier_token9] = ACTIONS(935), - [aux_sym_cmd_identifier_token10] = ACTIONS(937), - [aux_sym_cmd_identifier_token11] = ACTIONS(937), - [aux_sym_cmd_identifier_token12] = ACTIONS(935), - [aux_sym_cmd_identifier_token13] = ACTIONS(935), - [aux_sym_cmd_identifier_token14] = ACTIONS(935), - [aux_sym_cmd_identifier_token15] = ACTIONS(935), - [aux_sym_cmd_identifier_token16] = ACTIONS(937), - [aux_sym_cmd_identifier_token17] = ACTIONS(937), - [aux_sym_cmd_identifier_token18] = ACTIONS(937), - [aux_sym_cmd_identifier_token19] = ACTIONS(937), - [aux_sym_cmd_identifier_token20] = ACTIONS(937), - [aux_sym_cmd_identifier_token21] = ACTIONS(937), - [aux_sym_cmd_identifier_token22] = ACTIONS(937), - [aux_sym_cmd_identifier_token23] = ACTIONS(937), - [aux_sym_cmd_identifier_token24] = ACTIONS(937), - [aux_sym_cmd_identifier_token25] = ACTIONS(937), - [aux_sym_cmd_identifier_token26] = ACTIONS(937), - [aux_sym_cmd_identifier_token27] = ACTIONS(937), - [aux_sym_cmd_identifier_token28] = ACTIONS(937), - [aux_sym_cmd_identifier_token29] = ACTIONS(937), - [aux_sym_cmd_identifier_token30] = ACTIONS(937), - [aux_sym_cmd_identifier_token31] = ACTIONS(937), - [aux_sym_cmd_identifier_token32] = ACTIONS(937), - [aux_sym_cmd_identifier_token33] = ACTIONS(937), - [aux_sym_cmd_identifier_token34] = ACTIONS(935), - [aux_sym_cmd_identifier_token35] = ACTIONS(937), - [aux_sym_cmd_identifier_token36] = ACTIONS(937), - [aux_sym_cmd_identifier_token37] = ACTIONS(937), - [aux_sym_cmd_identifier_token38] = ACTIONS(935), - [aux_sym_cmd_identifier_token39] = ACTIONS(937), - [aux_sym_cmd_identifier_token40] = ACTIONS(937), - [sym__newline] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(937), - [anon_sym_err_GT_PIPE] = ACTIONS(937), - [anon_sym_out_GT_PIPE] = ACTIONS(937), - [anon_sym_e_GT_PIPE] = ACTIONS(937), - [anon_sym_o_GT_PIPE] = ACTIONS(937), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), - [anon_sym_def] = ACTIONS(935), - [anon_sym_export_DASHenv] = ACTIONS(935), - [anon_sym_extern] = ACTIONS(935), - [anon_sym_module] = ACTIONS(935), - [anon_sym_use] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_COMMA] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(935), - [anon_sym_error] = ACTIONS(935), - [anon_sym_GT2] = ACTIONS(935), - [anon_sym_DASH2] = ACTIONS(935), - [anon_sym_break] = ACTIONS(935), - [anon_sym_continue] = ACTIONS(935), - [anon_sym_for] = ACTIONS(935), - [anon_sym_in2] = ACTIONS(935), - [anon_sym_loop] = ACTIONS(935), - [anon_sym_make] = ACTIONS(935), - [anon_sym_while] = ACTIONS(935), - [anon_sym_do] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_else] = ACTIONS(935), - [anon_sym_match] = ACTIONS(935), - [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_try] = ACTIONS(935), - [anon_sym_catch] = ACTIONS(935), - [anon_sym_return] = ACTIONS(935), - [anon_sym_source] = ACTIONS(935), - [anon_sym_source_DASHenv] = ACTIONS(935), - [anon_sym_hide] = ACTIONS(935), - [anon_sym_hide_DASHenv] = ACTIONS(935), - [anon_sym_overlay] = ACTIONS(935), - [anon_sym_as] = ACTIONS(935), - [anon_sym_STAR2] = ACTIONS(935), - [anon_sym_and2] = ACTIONS(937), - [anon_sym_xor2] = ACTIONS(937), - [anon_sym_or2] = ACTIONS(937), - [anon_sym_not_DASHin2] = ACTIONS(937), - [anon_sym_has2] = ACTIONS(937), - [anon_sym_not_DASHhas2] = ACTIONS(937), - [anon_sym_starts_DASHwith2] = ACTIONS(937), - [anon_sym_ends_DASHwith2] = ACTIONS(937), - [anon_sym_EQ_EQ2] = ACTIONS(937), - [anon_sym_BANG_EQ2] = ACTIONS(937), - [anon_sym_LT2] = ACTIONS(935), - [anon_sym_LT_EQ2] = ACTIONS(937), - [anon_sym_GT_EQ2] = ACTIONS(937), - [anon_sym_EQ_TILDE2] = ACTIONS(937), - [anon_sym_BANG_TILDE2] = ACTIONS(937), - [anon_sym_STAR_STAR2] = ACTIONS(937), - [anon_sym_PLUS_PLUS2] = ACTIONS(935), - [anon_sym_SLASH2] = ACTIONS(935), - [anon_sym_mod2] = ACTIONS(935), - [anon_sym_SLASH_SLASH2] = ACTIONS(937), - [anon_sym_PLUS2] = ACTIONS(935), - [anon_sym_bit_DASHshl2] = ACTIONS(937), - [anon_sym_bit_DASHshr2] = ACTIONS(937), - [anon_sym_bit_DASHand2] = ACTIONS(937), - [anon_sym_bit_DASHxor2] = ACTIONS(937), - [anon_sym_bit_DASHor2] = ACTIONS(937), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(937), - [anon_sym_DOT_DOT2] = ACTIONS(935), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), - [anon_sym_DOT_DOT_LT2] = ACTIONS(937), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(937), - [aux_sym__val_number_decimal_token1] = ACTIONS(935), - [aux_sym__val_number_decimal_token2] = ACTIONS(937), - [aux_sym__val_number_decimal_token3] = ACTIONS(937), - [aux_sym__val_number_decimal_token4] = ACTIONS(937), - [aux_sym__val_number_token1] = ACTIONS(937), - [aux_sym__val_number_token2] = ACTIONS(937), - [aux_sym__val_number_token3] = ACTIONS(937), - [aux_sym__val_number_token4] = ACTIONS(935), - [aux_sym__val_number_token5] = ACTIONS(935), - [aux_sym__val_number_token6] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(937), - [sym__str_single_quotes] = ACTIONS(937), - [sym__str_back_ticks] = ACTIONS(937), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(937), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(937), - [anon_sym_register] = ACTIONS(935), - [anon_sym_COLON2] = ACTIONS(937), - [anon_sym_DOT2] = ACTIONS(939), - [anon_sym_err_GT] = ACTIONS(935), - [anon_sym_out_GT] = ACTIONS(935), - [anon_sym_e_GT] = ACTIONS(935), - [anon_sym_o_GT] = ACTIONS(935), - [anon_sym_err_PLUSout_GT] = ACTIONS(935), - [anon_sym_out_PLUSerr_GT] = ACTIONS(935), - [anon_sym_o_PLUSe_GT] = ACTIONS(935), - [anon_sym_e_PLUSo_GT] = ACTIONS(935), - [anon_sym_err_GT_GT] = ACTIONS(937), - [anon_sym_out_GT_GT] = ACTIONS(937), - [anon_sym_e_GT_GT] = ACTIONS(937), - [anon_sym_o_GT_GT] = ACTIONS(937), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(937), + [aux_sym_cell_path_repeat1] = STATE(142), + [anon_sym_export] = ACTIONS(938), + [anon_sym_alias] = ACTIONS(938), + [anon_sym_EQ] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_let_DASHenv] = ACTIONS(938), + [anon_sym_mut] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [anon_sym_PLUS_EQ] = ACTIONS(940), + [anon_sym_DASH_EQ] = ACTIONS(940), + [anon_sym_STAR_EQ] = ACTIONS(940), + [anon_sym_SLASH_EQ] = ACTIONS(940), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(940), + [aux_sym_cmd_identifier_token1] = ACTIONS(938), + [aux_sym_cmd_identifier_token2] = ACTIONS(940), + [aux_sym_cmd_identifier_token3] = ACTIONS(940), + [aux_sym_cmd_identifier_token4] = ACTIONS(940), + [aux_sym_cmd_identifier_token5] = ACTIONS(940), + [aux_sym_cmd_identifier_token6] = ACTIONS(940), + [aux_sym_cmd_identifier_token7] = ACTIONS(940), + [aux_sym_cmd_identifier_token8] = ACTIONS(938), + [aux_sym_cmd_identifier_token9] = ACTIONS(938), + [aux_sym_cmd_identifier_token10] = ACTIONS(940), + [aux_sym_cmd_identifier_token11] = ACTIONS(940), + [aux_sym_cmd_identifier_token12] = ACTIONS(938), + [aux_sym_cmd_identifier_token13] = ACTIONS(938), + [aux_sym_cmd_identifier_token14] = ACTIONS(938), + [aux_sym_cmd_identifier_token15] = ACTIONS(938), + [aux_sym_cmd_identifier_token16] = ACTIONS(940), + [aux_sym_cmd_identifier_token17] = ACTIONS(940), + [aux_sym_cmd_identifier_token18] = ACTIONS(940), + [aux_sym_cmd_identifier_token19] = ACTIONS(940), + [aux_sym_cmd_identifier_token20] = ACTIONS(940), + [aux_sym_cmd_identifier_token21] = ACTIONS(940), + [aux_sym_cmd_identifier_token22] = ACTIONS(940), + [aux_sym_cmd_identifier_token23] = ACTIONS(940), + [aux_sym_cmd_identifier_token24] = ACTIONS(940), + [aux_sym_cmd_identifier_token25] = ACTIONS(940), + [aux_sym_cmd_identifier_token26] = ACTIONS(940), + [aux_sym_cmd_identifier_token27] = ACTIONS(940), + [aux_sym_cmd_identifier_token28] = ACTIONS(940), + [aux_sym_cmd_identifier_token29] = ACTIONS(940), + [aux_sym_cmd_identifier_token30] = ACTIONS(940), + [aux_sym_cmd_identifier_token31] = ACTIONS(940), + [aux_sym_cmd_identifier_token32] = ACTIONS(940), + [aux_sym_cmd_identifier_token33] = ACTIONS(940), + [aux_sym_cmd_identifier_token34] = ACTIONS(938), + [aux_sym_cmd_identifier_token35] = ACTIONS(940), + [aux_sym_cmd_identifier_token36] = ACTIONS(940), + [aux_sym_cmd_identifier_token37] = ACTIONS(940), + [aux_sym_cmd_identifier_token38] = ACTIONS(938), + [aux_sym_cmd_identifier_token39] = ACTIONS(940), + [aux_sym_cmd_identifier_token40] = ACTIONS(940), + [sym__newline] = ACTIONS(940), + [anon_sym_SEMI] = ACTIONS(940), + [anon_sym_PIPE] = ACTIONS(940), + [anon_sym_err_GT_PIPE] = ACTIONS(940), + [anon_sym_out_GT_PIPE] = ACTIONS(940), + [anon_sym_e_GT_PIPE] = ACTIONS(940), + [anon_sym_o_GT_PIPE] = ACTIONS(940), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(940), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(940), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(940), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(940), + [anon_sym_def] = ACTIONS(938), + [anon_sym_export_DASHenv] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(940), + [anon_sym_COMMA] = ACTIONS(940), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_error] = ACTIONS(938), + [anon_sym_GT2] = ACTIONS(938), + [anon_sym_DASH2] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_in2] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_make] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_else] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(940), + [anon_sym_try] = ACTIONS(938), + [anon_sym_catch] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_STAR2] = ACTIONS(938), + [anon_sym_and2] = ACTIONS(940), + [anon_sym_xor2] = ACTIONS(940), + [anon_sym_or2] = ACTIONS(940), + [anon_sym_not_DASHin2] = ACTIONS(940), + [anon_sym_has2] = ACTIONS(940), + [anon_sym_not_DASHhas2] = ACTIONS(940), + [anon_sym_starts_DASHwith2] = ACTIONS(940), + [anon_sym_ends_DASHwith2] = ACTIONS(940), + [anon_sym_EQ_EQ2] = ACTIONS(940), + [anon_sym_BANG_EQ2] = ACTIONS(940), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ2] = ACTIONS(940), + [anon_sym_GT_EQ2] = ACTIONS(940), + [anon_sym_EQ_TILDE2] = ACTIONS(940), + [anon_sym_BANG_TILDE2] = ACTIONS(940), + [anon_sym_STAR_STAR2] = ACTIONS(940), + [anon_sym_PLUS_PLUS2] = ACTIONS(938), + [anon_sym_SLASH2] = ACTIONS(938), + [anon_sym_mod2] = ACTIONS(938), + [anon_sym_SLASH_SLASH2] = ACTIONS(940), + [anon_sym_PLUS2] = ACTIONS(938), + [anon_sym_bit_DASHshl2] = ACTIONS(940), + [anon_sym_bit_DASHshr2] = ACTIONS(940), + [anon_sym_bit_DASHand2] = ACTIONS(940), + [anon_sym_bit_DASHxor2] = ACTIONS(940), + [anon_sym_bit_DASHor2] = ACTIONS(940), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(940), + [anon_sym_DOT_DOT2] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(940), + [anon_sym_DOT_DOT_LT2] = ACTIONS(940), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(940), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(940), + [aux_sym__val_number_decimal_token3] = ACTIONS(940), + [aux_sym__val_number_decimal_token4] = ACTIONS(940), + [aux_sym__val_number_token1] = ACTIONS(940), + [aux_sym__val_number_token2] = ACTIONS(940), + [aux_sym__val_number_token3] = ACTIONS(940), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(940), + [sym__str_single_quotes] = ACTIONS(940), + [sym__str_back_ticks] = ACTIONS(940), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(940), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(940), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(940), + [anon_sym_register] = ACTIONS(938), + [anon_sym_COLON2] = ACTIONS(940), + [anon_sym_DOT2] = ACTIONS(929), + [anon_sym_err_GT] = ACTIONS(938), + [anon_sym_out_GT] = ACTIONS(938), + [anon_sym_e_GT] = ACTIONS(938), + [anon_sym_o_GT] = ACTIONS(938), + [anon_sym_err_PLUSout_GT] = ACTIONS(938), + [anon_sym_out_PLUSerr_GT] = ACTIONS(938), + [anon_sym_o_PLUSe_GT] = ACTIONS(938), + [anon_sym_e_PLUSo_GT] = ACTIONS(938), + [anon_sym_err_GT_GT] = ACTIONS(940), + [anon_sym_out_GT_GT] = ACTIONS(940), + [anon_sym_e_GT_GT] = ACTIONS(940), + [anon_sym_o_GT_GT] = ACTIONS(940), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(940), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(940), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(940), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(940), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(940), }, [144] = { [sym_comment] = STATE(144), @@ -90048,7 +88934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(942), [anon_sym_as] = ACTIONS(942), [anon_sym_STAR2] = ACTIONS(942), - [anon_sym_QMARK2] = ACTIONS(946), + [anon_sym_QMARK2] = ACTIONS(944), [anon_sym_and2] = ACTIONS(944), [anon_sym_xor2] = ACTIONS(944), [anon_sym_or2] = ACTIONS(944), @@ -90120,174 +89006,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [145] = { [sym_comment] = STATE(145), - [anon_sym_export] = ACTIONS(948), - [anon_sym_alias] = ACTIONS(948), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_let] = ACTIONS(948), - [anon_sym_let_DASHenv] = ACTIONS(948), - [anon_sym_mut] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [anon_sym_PLUS_EQ] = ACTIONS(950), - [anon_sym_DASH_EQ] = ACTIONS(950), - [anon_sym_STAR_EQ] = ACTIONS(950), - [anon_sym_SLASH_EQ] = ACTIONS(950), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(950), - [aux_sym_cmd_identifier_token1] = ACTIONS(948), - [aux_sym_cmd_identifier_token2] = ACTIONS(950), - [aux_sym_cmd_identifier_token3] = ACTIONS(950), - [aux_sym_cmd_identifier_token4] = ACTIONS(950), - [aux_sym_cmd_identifier_token5] = ACTIONS(950), - [aux_sym_cmd_identifier_token6] = ACTIONS(950), - [aux_sym_cmd_identifier_token7] = ACTIONS(950), - [aux_sym_cmd_identifier_token8] = ACTIONS(948), - [aux_sym_cmd_identifier_token9] = ACTIONS(948), - [aux_sym_cmd_identifier_token10] = ACTIONS(950), - [aux_sym_cmd_identifier_token11] = ACTIONS(950), - [aux_sym_cmd_identifier_token12] = ACTIONS(948), - [aux_sym_cmd_identifier_token13] = ACTIONS(948), - [aux_sym_cmd_identifier_token14] = ACTIONS(948), - [aux_sym_cmd_identifier_token15] = ACTIONS(948), - [aux_sym_cmd_identifier_token16] = ACTIONS(950), - [aux_sym_cmd_identifier_token17] = ACTIONS(950), - [aux_sym_cmd_identifier_token18] = ACTIONS(950), - [aux_sym_cmd_identifier_token19] = ACTIONS(950), - [aux_sym_cmd_identifier_token20] = ACTIONS(950), - [aux_sym_cmd_identifier_token21] = ACTIONS(950), - [aux_sym_cmd_identifier_token22] = ACTIONS(950), - [aux_sym_cmd_identifier_token23] = ACTIONS(950), - [aux_sym_cmd_identifier_token24] = ACTIONS(950), - [aux_sym_cmd_identifier_token25] = ACTIONS(950), - [aux_sym_cmd_identifier_token26] = ACTIONS(950), - [aux_sym_cmd_identifier_token27] = ACTIONS(950), - [aux_sym_cmd_identifier_token28] = ACTIONS(950), - [aux_sym_cmd_identifier_token29] = ACTIONS(950), - [aux_sym_cmd_identifier_token30] = ACTIONS(950), - [aux_sym_cmd_identifier_token31] = ACTIONS(950), - [aux_sym_cmd_identifier_token32] = ACTIONS(950), - [aux_sym_cmd_identifier_token33] = ACTIONS(950), - [aux_sym_cmd_identifier_token34] = ACTIONS(948), - [aux_sym_cmd_identifier_token35] = ACTIONS(950), - [aux_sym_cmd_identifier_token36] = ACTIONS(950), - [aux_sym_cmd_identifier_token37] = ACTIONS(950), - [aux_sym_cmd_identifier_token38] = ACTIONS(948), - [aux_sym_cmd_identifier_token39] = ACTIONS(950), - [aux_sym_cmd_identifier_token40] = ACTIONS(950), - [sym__newline] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_PIPE] = ACTIONS(950), - [anon_sym_err_GT_PIPE] = ACTIONS(950), - [anon_sym_out_GT_PIPE] = ACTIONS(950), - [anon_sym_e_GT_PIPE] = ACTIONS(950), - [anon_sym_o_GT_PIPE] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), - [anon_sym_def] = ACTIONS(948), - [anon_sym_export_DASHenv] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_use] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_COMMA] = ACTIONS(950), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_error] = ACTIONS(948), - [anon_sym_GT2] = ACTIONS(948), - [anon_sym_DASH2] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_in2] = ACTIONS(948), - [anon_sym_loop] = ACTIONS(948), - [anon_sym_make] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_match] = ACTIONS(948), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_try] = ACTIONS(948), - [anon_sym_catch] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_source] = ACTIONS(948), - [anon_sym_source_DASHenv] = ACTIONS(948), - [anon_sym_hide] = ACTIONS(948), - [anon_sym_hide_DASHenv] = ACTIONS(948), - [anon_sym_overlay] = ACTIONS(948), - [anon_sym_as] = ACTIONS(948), - [anon_sym_STAR2] = ACTIONS(948), - [anon_sym_QMARK2] = ACTIONS(952), - [anon_sym_and2] = ACTIONS(950), - [anon_sym_xor2] = ACTIONS(950), - [anon_sym_or2] = ACTIONS(950), - [anon_sym_not_DASHin2] = ACTIONS(950), - [anon_sym_has2] = ACTIONS(950), - [anon_sym_not_DASHhas2] = ACTIONS(950), - [anon_sym_starts_DASHwith2] = ACTIONS(950), - [anon_sym_ends_DASHwith2] = ACTIONS(950), - [anon_sym_EQ_EQ2] = ACTIONS(950), - [anon_sym_BANG_EQ2] = ACTIONS(950), - [anon_sym_LT2] = ACTIONS(948), - [anon_sym_LT_EQ2] = ACTIONS(950), - [anon_sym_GT_EQ2] = ACTIONS(950), - [anon_sym_EQ_TILDE2] = ACTIONS(950), - [anon_sym_BANG_TILDE2] = ACTIONS(950), - [anon_sym_STAR_STAR2] = ACTIONS(950), - [anon_sym_PLUS_PLUS2] = ACTIONS(948), - [anon_sym_SLASH2] = ACTIONS(948), - [anon_sym_mod2] = ACTIONS(948), - [anon_sym_SLASH_SLASH2] = ACTIONS(950), - [anon_sym_PLUS2] = ACTIONS(948), - [anon_sym_bit_DASHshl2] = ACTIONS(950), - [anon_sym_bit_DASHshr2] = ACTIONS(950), - [anon_sym_bit_DASHand2] = ACTIONS(950), - [anon_sym_bit_DASHxor2] = ACTIONS(950), - [anon_sym_bit_DASHor2] = ACTIONS(950), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(950), - [anon_sym_DOT_DOT2] = ACTIONS(948), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), - [anon_sym_DOT_DOT_LT2] = ACTIONS(950), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(950), - [aux_sym__val_number_decimal_token1] = ACTIONS(948), - [aux_sym__val_number_decimal_token2] = ACTIONS(950), - [aux_sym__val_number_decimal_token3] = ACTIONS(950), - [aux_sym__val_number_decimal_token4] = ACTIONS(950), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [aux_sym__val_number_token4] = ACTIONS(948), - [aux_sym__val_number_token5] = ACTIONS(948), - [aux_sym__val_number_token6] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(950), - [anon_sym_register] = ACTIONS(948), - [anon_sym_COLON2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(948), - [anon_sym_err_GT] = ACTIONS(948), - [anon_sym_out_GT] = ACTIONS(948), - [anon_sym_e_GT] = ACTIONS(948), - [anon_sym_o_GT] = ACTIONS(948), - [anon_sym_err_PLUSout_GT] = ACTIONS(948), - [anon_sym_out_PLUSerr_GT] = ACTIONS(948), - [anon_sym_o_PLUSe_GT] = ACTIONS(948), - [anon_sym_e_PLUSo_GT] = ACTIONS(948), - [anon_sym_err_GT_GT] = ACTIONS(950), - [anon_sym_out_GT_GT] = ACTIONS(950), - [anon_sym_e_GT_GT] = ACTIONS(950), - [anon_sym_o_GT_GT] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(950), + [anon_sym_export] = ACTIONS(946), + [anon_sym_alias] = ACTIONS(946), + [anon_sym_EQ] = ACTIONS(946), + [anon_sym_let] = ACTIONS(946), + [anon_sym_let_DASHenv] = ACTIONS(946), + [anon_sym_mut] = ACTIONS(946), + [anon_sym_const] = ACTIONS(946), + [anon_sym_PLUS_EQ] = ACTIONS(948), + [anon_sym_DASH_EQ] = ACTIONS(948), + [anon_sym_STAR_EQ] = ACTIONS(948), + [anon_sym_SLASH_EQ] = ACTIONS(948), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(948), + [aux_sym_cmd_identifier_token1] = ACTIONS(946), + [aux_sym_cmd_identifier_token2] = ACTIONS(948), + [aux_sym_cmd_identifier_token3] = ACTIONS(948), + [aux_sym_cmd_identifier_token4] = ACTIONS(948), + [aux_sym_cmd_identifier_token5] = ACTIONS(948), + [aux_sym_cmd_identifier_token6] = ACTIONS(948), + [aux_sym_cmd_identifier_token7] = ACTIONS(948), + [aux_sym_cmd_identifier_token8] = ACTIONS(946), + [aux_sym_cmd_identifier_token9] = ACTIONS(946), + [aux_sym_cmd_identifier_token10] = ACTIONS(948), + [aux_sym_cmd_identifier_token11] = ACTIONS(948), + [aux_sym_cmd_identifier_token12] = ACTIONS(946), + [aux_sym_cmd_identifier_token13] = ACTIONS(946), + [aux_sym_cmd_identifier_token14] = ACTIONS(946), + [aux_sym_cmd_identifier_token15] = ACTIONS(946), + [aux_sym_cmd_identifier_token16] = ACTIONS(948), + [aux_sym_cmd_identifier_token17] = ACTIONS(948), + [aux_sym_cmd_identifier_token18] = ACTIONS(948), + [aux_sym_cmd_identifier_token19] = ACTIONS(948), + [aux_sym_cmd_identifier_token20] = ACTIONS(948), + [aux_sym_cmd_identifier_token21] = ACTIONS(948), + [aux_sym_cmd_identifier_token22] = ACTIONS(948), + [aux_sym_cmd_identifier_token23] = ACTIONS(948), + [aux_sym_cmd_identifier_token24] = ACTIONS(948), + [aux_sym_cmd_identifier_token25] = ACTIONS(948), + [aux_sym_cmd_identifier_token26] = ACTIONS(948), + [aux_sym_cmd_identifier_token27] = ACTIONS(948), + [aux_sym_cmd_identifier_token28] = ACTIONS(948), + [aux_sym_cmd_identifier_token29] = ACTIONS(948), + [aux_sym_cmd_identifier_token30] = ACTIONS(948), + [aux_sym_cmd_identifier_token31] = ACTIONS(948), + [aux_sym_cmd_identifier_token32] = ACTIONS(948), + [aux_sym_cmd_identifier_token33] = ACTIONS(948), + [aux_sym_cmd_identifier_token34] = ACTIONS(946), + [aux_sym_cmd_identifier_token35] = ACTIONS(948), + [aux_sym_cmd_identifier_token36] = ACTIONS(948), + [aux_sym_cmd_identifier_token37] = ACTIONS(948), + [aux_sym_cmd_identifier_token38] = ACTIONS(946), + [aux_sym_cmd_identifier_token39] = ACTIONS(948), + [aux_sym_cmd_identifier_token40] = ACTIONS(948), + [sym__newline] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_PIPE] = ACTIONS(948), + [anon_sym_err_GT_PIPE] = ACTIONS(948), + [anon_sym_out_GT_PIPE] = ACTIONS(948), + [anon_sym_e_GT_PIPE] = ACTIONS(948), + [anon_sym_o_GT_PIPE] = ACTIONS(948), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(948), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(948), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(948), + [anon_sym_def] = ACTIONS(946), + [anon_sym_export_DASHenv] = ACTIONS(946), + [anon_sym_extern] = ACTIONS(946), + [anon_sym_module] = ACTIONS(946), + [anon_sym_use] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(948), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_error] = ACTIONS(946), + [anon_sym_GT2] = ACTIONS(946), + [anon_sym_DASH2] = ACTIONS(946), + [anon_sym_break] = ACTIONS(946), + [anon_sym_continue] = ACTIONS(946), + [anon_sym_for] = ACTIONS(946), + [anon_sym_in2] = ACTIONS(946), + [anon_sym_loop] = ACTIONS(946), + [anon_sym_make] = ACTIONS(946), + [anon_sym_while] = ACTIONS(946), + [anon_sym_do] = ACTIONS(946), + [anon_sym_if] = ACTIONS(946), + [anon_sym_else] = ACTIONS(946), + [anon_sym_match] = ACTIONS(946), + [anon_sym_RBRACE] = ACTIONS(948), + [anon_sym_try] = ACTIONS(946), + [anon_sym_catch] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_source] = ACTIONS(946), + [anon_sym_source_DASHenv] = ACTIONS(946), + [anon_sym_hide] = ACTIONS(946), + [anon_sym_hide_DASHenv] = ACTIONS(946), + [anon_sym_overlay] = ACTIONS(946), + [anon_sym_as] = ACTIONS(946), + [anon_sym_STAR2] = ACTIONS(946), + [anon_sym_QMARK2] = ACTIONS(948), + [anon_sym_and2] = ACTIONS(948), + [anon_sym_xor2] = ACTIONS(948), + [anon_sym_or2] = ACTIONS(948), + [anon_sym_not_DASHin2] = ACTIONS(948), + [anon_sym_has2] = ACTIONS(948), + [anon_sym_not_DASHhas2] = ACTIONS(948), + [anon_sym_starts_DASHwith2] = ACTIONS(948), + [anon_sym_ends_DASHwith2] = ACTIONS(948), + [anon_sym_EQ_EQ2] = ACTIONS(948), + [anon_sym_BANG_EQ2] = ACTIONS(948), + [anon_sym_LT2] = ACTIONS(946), + [anon_sym_LT_EQ2] = ACTIONS(948), + [anon_sym_GT_EQ2] = ACTIONS(948), + [anon_sym_EQ_TILDE2] = ACTIONS(948), + [anon_sym_BANG_TILDE2] = ACTIONS(948), + [anon_sym_STAR_STAR2] = ACTIONS(948), + [anon_sym_PLUS_PLUS2] = ACTIONS(946), + [anon_sym_SLASH2] = ACTIONS(946), + [anon_sym_mod2] = ACTIONS(946), + [anon_sym_SLASH_SLASH2] = ACTIONS(948), + [anon_sym_PLUS2] = ACTIONS(946), + [anon_sym_bit_DASHshl2] = ACTIONS(948), + [anon_sym_bit_DASHshr2] = ACTIONS(948), + [anon_sym_bit_DASHand2] = ACTIONS(948), + [anon_sym_bit_DASHxor2] = ACTIONS(948), + [anon_sym_bit_DASHor2] = ACTIONS(948), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(948), + [anon_sym_DOT_DOT2] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(948), + [anon_sym_DOT_DOT_LT2] = ACTIONS(948), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(948), + [aux_sym__val_number_decimal_token1] = ACTIONS(946), + [aux_sym__val_number_decimal_token2] = ACTIONS(948), + [aux_sym__val_number_decimal_token3] = ACTIONS(948), + [aux_sym__val_number_decimal_token4] = ACTIONS(948), + [aux_sym__val_number_token1] = ACTIONS(948), + [aux_sym__val_number_token2] = ACTIONS(948), + [aux_sym__val_number_token3] = ACTIONS(948), + [aux_sym__val_number_token4] = ACTIONS(946), + [aux_sym__val_number_token5] = ACTIONS(946), + [aux_sym__val_number_token6] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(948), + [sym__str_single_quotes] = ACTIONS(948), + [sym__str_back_ticks] = ACTIONS(948), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(948), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(948), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(948), + [anon_sym_register] = ACTIONS(946), + [anon_sym_COLON2] = ACTIONS(948), + [anon_sym_DOT2] = ACTIONS(946), + [anon_sym_err_GT] = ACTIONS(946), + [anon_sym_out_GT] = ACTIONS(946), + [anon_sym_e_GT] = ACTIONS(946), + [anon_sym_o_GT] = ACTIONS(946), + [anon_sym_err_PLUSout_GT] = ACTIONS(946), + [anon_sym_out_PLUSerr_GT] = ACTIONS(946), + [anon_sym_o_PLUSe_GT] = ACTIONS(946), + [anon_sym_e_PLUSo_GT] = ACTIONS(946), + [anon_sym_err_GT_GT] = ACTIONS(948), + [anon_sym_out_GT_GT] = ACTIONS(948), + [anon_sym_e_GT_GT] = ACTIONS(948), + [anon_sym_o_GT_GT] = ACTIONS(948), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(948), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(948), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(948), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(948), }, [146] = { [sym_comment] = STATE(146), + [anon_sym_export] = ACTIONS(950), + [anon_sym_alias] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(950), + [anon_sym_let] = ACTIONS(950), + [anon_sym_let_DASHenv] = ACTIONS(950), + [anon_sym_mut] = ACTIONS(950), + [anon_sym_const] = ACTIONS(950), + [anon_sym_PLUS_EQ] = ACTIONS(952), + [anon_sym_DASH_EQ] = ACTIONS(952), + [anon_sym_STAR_EQ] = ACTIONS(952), + [anon_sym_SLASH_EQ] = ACTIONS(952), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(952), + [aux_sym_cmd_identifier_token1] = ACTIONS(950), + [aux_sym_cmd_identifier_token2] = ACTIONS(952), + [aux_sym_cmd_identifier_token3] = ACTIONS(952), + [aux_sym_cmd_identifier_token4] = ACTIONS(952), + [aux_sym_cmd_identifier_token5] = ACTIONS(952), + [aux_sym_cmd_identifier_token6] = ACTIONS(952), + [aux_sym_cmd_identifier_token7] = ACTIONS(952), + [aux_sym_cmd_identifier_token8] = ACTIONS(950), + [aux_sym_cmd_identifier_token9] = ACTIONS(950), + [aux_sym_cmd_identifier_token10] = ACTIONS(952), + [aux_sym_cmd_identifier_token11] = ACTIONS(952), + [aux_sym_cmd_identifier_token12] = ACTIONS(950), + [aux_sym_cmd_identifier_token13] = ACTIONS(950), + [aux_sym_cmd_identifier_token14] = ACTIONS(950), + [aux_sym_cmd_identifier_token15] = ACTIONS(950), + [aux_sym_cmd_identifier_token16] = ACTIONS(952), + [aux_sym_cmd_identifier_token17] = ACTIONS(952), + [aux_sym_cmd_identifier_token18] = ACTIONS(952), + [aux_sym_cmd_identifier_token19] = ACTIONS(952), + [aux_sym_cmd_identifier_token20] = ACTIONS(952), + [aux_sym_cmd_identifier_token21] = ACTIONS(952), + [aux_sym_cmd_identifier_token22] = ACTIONS(952), + [aux_sym_cmd_identifier_token23] = ACTIONS(952), + [aux_sym_cmd_identifier_token24] = ACTIONS(952), + [aux_sym_cmd_identifier_token25] = ACTIONS(952), + [aux_sym_cmd_identifier_token26] = ACTIONS(952), + [aux_sym_cmd_identifier_token27] = ACTIONS(952), + [aux_sym_cmd_identifier_token28] = ACTIONS(952), + [aux_sym_cmd_identifier_token29] = ACTIONS(952), + [aux_sym_cmd_identifier_token30] = ACTIONS(952), + [aux_sym_cmd_identifier_token31] = ACTIONS(952), + [aux_sym_cmd_identifier_token32] = ACTIONS(952), + [aux_sym_cmd_identifier_token33] = ACTIONS(952), + [aux_sym_cmd_identifier_token34] = ACTIONS(950), + [aux_sym_cmd_identifier_token35] = ACTIONS(952), + [aux_sym_cmd_identifier_token36] = ACTIONS(952), + [aux_sym_cmd_identifier_token37] = ACTIONS(952), + [aux_sym_cmd_identifier_token38] = ACTIONS(950), + [aux_sym_cmd_identifier_token39] = ACTIONS(952), + [aux_sym_cmd_identifier_token40] = ACTIONS(952), + [sym__newline] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(952), + [anon_sym_PIPE] = ACTIONS(952), + [anon_sym_err_GT_PIPE] = ACTIONS(952), + [anon_sym_out_GT_PIPE] = ACTIONS(952), + [anon_sym_e_GT_PIPE] = ACTIONS(952), + [anon_sym_o_GT_PIPE] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(952), + [anon_sym_def] = ACTIONS(950), + [anon_sym_export_DASHenv] = ACTIONS(950), + [anon_sym_extern] = ACTIONS(950), + [anon_sym_module] = ACTIONS(950), + [anon_sym_use] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_COMMA] = ACTIONS(952), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_error] = ACTIONS(950), + [anon_sym_GT2] = ACTIONS(950), + [anon_sym_DASH2] = ACTIONS(950), + [anon_sym_break] = ACTIONS(950), + [anon_sym_continue] = ACTIONS(950), + [anon_sym_for] = ACTIONS(950), + [anon_sym_in2] = ACTIONS(950), + [anon_sym_loop] = ACTIONS(950), + [anon_sym_make] = ACTIONS(950), + [anon_sym_while] = ACTIONS(950), + [anon_sym_do] = ACTIONS(950), + [anon_sym_if] = ACTIONS(950), + [anon_sym_else] = ACTIONS(950), + [anon_sym_match] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_try] = ACTIONS(950), + [anon_sym_catch] = ACTIONS(950), + [anon_sym_return] = ACTIONS(950), + [anon_sym_source] = ACTIONS(950), + [anon_sym_source_DASHenv] = ACTIONS(950), + [anon_sym_hide] = ACTIONS(950), + [anon_sym_hide_DASHenv] = ACTIONS(950), + [anon_sym_overlay] = ACTIONS(950), + [anon_sym_as] = ACTIONS(950), + [anon_sym_STAR2] = ACTIONS(950), + [anon_sym_QMARK2] = ACTIONS(952), + [anon_sym_and2] = ACTIONS(952), + [anon_sym_xor2] = ACTIONS(952), + [anon_sym_or2] = ACTIONS(952), + [anon_sym_not_DASHin2] = ACTIONS(952), + [anon_sym_has2] = ACTIONS(952), + [anon_sym_not_DASHhas2] = ACTIONS(952), + [anon_sym_starts_DASHwith2] = ACTIONS(952), + [anon_sym_ends_DASHwith2] = ACTIONS(952), + [anon_sym_EQ_EQ2] = ACTIONS(952), + [anon_sym_BANG_EQ2] = ACTIONS(952), + [anon_sym_LT2] = ACTIONS(950), + [anon_sym_LT_EQ2] = ACTIONS(952), + [anon_sym_GT_EQ2] = ACTIONS(952), + [anon_sym_EQ_TILDE2] = ACTIONS(952), + [anon_sym_BANG_TILDE2] = ACTIONS(952), + [anon_sym_STAR_STAR2] = ACTIONS(952), + [anon_sym_PLUS_PLUS2] = ACTIONS(950), + [anon_sym_SLASH2] = ACTIONS(950), + [anon_sym_mod2] = ACTIONS(950), + [anon_sym_SLASH_SLASH2] = ACTIONS(952), + [anon_sym_PLUS2] = ACTIONS(950), + [anon_sym_bit_DASHshl2] = ACTIONS(952), + [anon_sym_bit_DASHshr2] = ACTIONS(952), + [anon_sym_bit_DASHand2] = ACTIONS(952), + [anon_sym_bit_DASHxor2] = ACTIONS(952), + [anon_sym_bit_DASHor2] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(952), + [anon_sym_DOT_DOT2] = ACTIONS(950), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(952), + [anon_sym_DOT_DOT_LT2] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(952), + [aux_sym__val_number_decimal_token1] = ACTIONS(950), + [aux_sym__val_number_decimal_token2] = ACTIONS(952), + [aux_sym__val_number_decimal_token3] = ACTIONS(952), + [aux_sym__val_number_decimal_token4] = ACTIONS(952), + [aux_sym__val_number_token1] = ACTIONS(952), + [aux_sym__val_number_token2] = ACTIONS(952), + [aux_sym__val_number_token3] = ACTIONS(952), + [aux_sym__val_number_token4] = ACTIONS(950), + [aux_sym__val_number_token5] = ACTIONS(950), + [aux_sym__val_number_token6] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(952), + [sym__str_single_quotes] = ACTIONS(952), + [sym__str_back_ticks] = ACTIONS(952), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(952), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(952), + [anon_sym_register] = ACTIONS(950), + [anon_sym_COLON2] = ACTIONS(952), + [anon_sym_DOT2] = ACTIONS(950), + [anon_sym_err_GT] = ACTIONS(950), + [anon_sym_out_GT] = ACTIONS(950), + [anon_sym_e_GT] = ACTIONS(950), + [anon_sym_o_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT] = ACTIONS(950), + [anon_sym_err_GT_GT] = ACTIONS(952), + [anon_sym_out_GT_GT] = ACTIONS(952), + [anon_sym_e_GT_GT] = ACTIONS(952), + [anon_sym_o_GT_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(952), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(952), + }, + [147] = { + [sym_comment] = STATE(147), [anon_sym_export] = ACTIONS(954), [anon_sym_alias] = ACTIONS(954), [anon_sym_EQ] = ACTIONS(954), @@ -90454,8 +89508,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(956), }, - [147] = { - [sym_comment] = STATE(147), + [148] = { + [sym_comment] = STATE(148), [anon_sym_export] = ACTIONS(958), [anon_sym_alias] = ACTIONS(958), [anon_sym_EQ] = ACTIONS(958), @@ -90552,7 +89606,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(958), [anon_sym_as] = ACTIONS(958), [anon_sym_STAR2] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(960), + [anon_sym_QMARK2] = ACTIONS(962), [anon_sym_and2] = ACTIONS(960), [anon_sym_xor2] = ACTIONS(960), [anon_sym_or2] = ACTIONS(960), @@ -90622,341 +89676,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(960), }, - [148] = { - [sym_comment] = STATE(148), - [anon_sym_export] = ACTIONS(962), - [anon_sym_alias] = ACTIONS(962), - [anon_sym_EQ] = ACTIONS(962), - [anon_sym_let] = ACTIONS(962), - [anon_sym_let_DASHenv] = ACTIONS(962), - [anon_sym_mut] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [anon_sym_PLUS_EQ] = ACTIONS(964), - [anon_sym_DASH_EQ] = ACTIONS(964), - [anon_sym_STAR_EQ] = ACTIONS(964), - [anon_sym_SLASH_EQ] = ACTIONS(964), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(964), - [aux_sym_cmd_identifier_token1] = ACTIONS(962), - [aux_sym_cmd_identifier_token2] = ACTIONS(964), - [aux_sym_cmd_identifier_token3] = ACTIONS(964), - [aux_sym_cmd_identifier_token4] = ACTIONS(964), - [aux_sym_cmd_identifier_token5] = ACTIONS(964), - [aux_sym_cmd_identifier_token6] = ACTIONS(964), - [aux_sym_cmd_identifier_token7] = ACTIONS(964), - [aux_sym_cmd_identifier_token8] = ACTIONS(962), - [aux_sym_cmd_identifier_token9] = ACTIONS(962), - [aux_sym_cmd_identifier_token10] = ACTIONS(964), - [aux_sym_cmd_identifier_token11] = ACTIONS(964), - [aux_sym_cmd_identifier_token12] = ACTIONS(962), - [aux_sym_cmd_identifier_token13] = ACTIONS(962), - [aux_sym_cmd_identifier_token14] = ACTIONS(962), - [aux_sym_cmd_identifier_token15] = ACTIONS(962), - [aux_sym_cmd_identifier_token16] = ACTIONS(964), - [aux_sym_cmd_identifier_token17] = ACTIONS(964), - [aux_sym_cmd_identifier_token18] = ACTIONS(964), - [aux_sym_cmd_identifier_token19] = ACTIONS(964), - [aux_sym_cmd_identifier_token20] = ACTIONS(964), - [aux_sym_cmd_identifier_token21] = ACTIONS(964), - [aux_sym_cmd_identifier_token22] = ACTIONS(964), - [aux_sym_cmd_identifier_token23] = ACTIONS(964), - [aux_sym_cmd_identifier_token24] = ACTIONS(964), - [aux_sym_cmd_identifier_token25] = ACTIONS(964), - [aux_sym_cmd_identifier_token26] = ACTIONS(964), - [aux_sym_cmd_identifier_token27] = ACTIONS(964), - [aux_sym_cmd_identifier_token28] = ACTIONS(964), - [aux_sym_cmd_identifier_token29] = ACTIONS(964), - [aux_sym_cmd_identifier_token30] = ACTIONS(964), - [aux_sym_cmd_identifier_token31] = ACTIONS(964), - [aux_sym_cmd_identifier_token32] = ACTIONS(964), - [aux_sym_cmd_identifier_token33] = ACTIONS(964), - [aux_sym_cmd_identifier_token34] = ACTIONS(962), - [aux_sym_cmd_identifier_token35] = ACTIONS(964), - [aux_sym_cmd_identifier_token36] = ACTIONS(964), - [aux_sym_cmd_identifier_token37] = ACTIONS(964), - [aux_sym_cmd_identifier_token38] = ACTIONS(962), - [aux_sym_cmd_identifier_token39] = ACTIONS(964), - [aux_sym_cmd_identifier_token40] = ACTIONS(964), - [sym__newline] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(964), - [anon_sym_err_GT_PIPE] = ACTIONS(964), - [anon_sym_out_GT_PIPE] = ACTIONS(964), - [anon_sym_e_GT_PIPE] = ACTIONS(964), - [anon_sym_o_GT_PIPE] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), - [anon_sym_def] = ACTIONS(962), - [anon_sym_export_DASHenv] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_module] = ACTIONS(962), - [anon_sym_use] = ACTIONS(962), - [anon_sym_LPAREN] = ACTIONS(964), - [anon_sym_COMMA] = ACTIONS(964), - [anon_sym_DOLLAR] = ACTIONS(962), - [anon_sym_error] = ACTIONS(962), - [anon_sym_GT2] = ACTIONS(962), - [anon_sym_DASH2] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_in2] = ACTIONS(962), - [anon_sym_loop] = ACTIONS(962), - [anon_sym_make] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [anon_sym_else] = ACTIONS(962), - [anon_sym_match] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_try] = ACTIONS(962), - [anon_sym_catch] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_source] = ACTIONS(962), - [anon_sym_source_DASHenv] = ACTIONS(962), - [anon_sym_hide] = ACTIONS(962), - [anon_sym_hide_DASHenv] = ACTIONS(962), - [anon_sym_overlay] = ACTIONS(962), - [anon_sym_as] = ACTIONS(962), - [anon_sym_STAR2] = ACTIONS(962), - [anon_sym_QMARK2] = ACTIONS(964), - [anon_sym_and2] = ACTIONS(964), - [anon_sym_xor2] = ACTIONS(964), - [anon_sym_or2] = ACTIONS(964), - [anon_sym_not_DASHin2] = ACTIONS(964), - [anon_sym_has2] = ACTIONS(964), - [anon_sym_not_DASHhas2] = ACTIONS(964), - [anon_sym_starts_DASHwith2] = ACTIONS(964), - [anon_sym_ends_DASHwith2] = ACTIONS(964), - [anon_sym_EQ_EQ2] = ACTIONS(964), - [anon_sym_BANG_EQ2] = ACTIONS(964), - [anon_sym_LT2] = ACTIONS(962), - [anon_sym_LT_EQ2] = ACTIONS(964), - [anon_sym_GT_EQ2] = ACTIONS(964), - [anon_sym_EQ_TILDE2] = ACTIONS(964), - [anon_sym_BANG_TILDE2] = ACTIONS(964), - [anon_sym_STAR_STAR2] = ACTIONS(964), - [anon_sym_PLUS_PLUS2] = ACTIONS(962), - [anon_sym_SLASH2] = ACTIONS(962), - [anon_sym_mod2] = ACTIONS(962), - [anon_sym_SLASH_SLASH2] = ACTIONS(964), - [anon_sym_PLUS2] = ACTIONS(962), - [anon_sym_bit_DASHshl2] = ACTIONS(964), - [anon_sym_bit_DASHshr2] = ACTIONS(964), - [anon_sym_bit_DASHand2] = ACTIONS(964), - [anon_sym_bit_DASHxor2] = ACTIONS(964), - [anon_sym_bit_DASHor2] = ACTIONS(964), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(964), - [anon_sym_DOT_DOT2] = ACTIONS(962), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), - [anon_sym_DOT_DOT_LT2] = ACTIONS(964), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(964), - [aux_sym__val_number_decimal_token1] = ACTIONS(962), - [aux_sym__val_number_decimal_token2] = ACTIONS(964), - [aux_sym__val_number_decimal_token3] = ACTIONS(964), - [aux_sym__val_number_decimal_token4] = ACTIONS(964), - [aux_sym__val_number_token1] = ACTIONS(964), - [aux_sym__val_number_token2] = ACTIONS(964), - [aux_sym__val_number_token3] = ACTIONS(964), - [aux_sym__val_number_token4] = ACTIONS(962), - [aux_sym__val_number_token5] = ACTIONS(962), - [aux_sym__val_number_token6] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym__str_single_quotes] = ACTIONS(964), - [sym__str_back_ticks] = ACTIONS(964), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(964), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(964), - [anon_sym_register] = ACTIONS(962), - [anon_sym_COLON2] = ACTIONS(964), - [anon_sym_DOT2] = ACTIONS(962), - [anon_sym_err_GT] = ACTIONS(962), - [anon_sym_out_GT] = ACTIONS(962), - [anon_sym_e_GT] = ACTIONS(962), - [anon_sym_o_GT] = ACTIONS(962), - [anon_sym_err_PLUSout_GT] = ACTIONS(962), - [anon_sym_out_PLUSerr_GT] = ACTIONS(962), - [anon_sym_o_PLUSe_GT] = ACTIONS(962), - [anon_sym_e_PLUSo_GT] = ACTIONS(962), - [anon_sym_err_GT_GT] = ACTIONS(964), - [anon_sym_out_GT_GT] = ACTIONS(964), - [anon_sym_e_GT_GT] = ACTIONS(964), - [anon_sym_o_GT_GT] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(964), - }, [149] = { [sym_comment] = STATE(149), - [anon_sym_export] = ACTIONS(966), - [anon_sym_alias] = ACTIONS(966), - [anon_sym_EQ] = ACTIONS(966), - [anon_sym_let] = ACTIONS(966), - [anon_sym_let_DASHenv] = ACTIONS(966), - [anon_sym_mut] = ACTIONS(966), - [anon_sym_const] = ACTIONS(966), - [anon_sym_PLUS_EQ] = ACTIONS(968), - [anon_sym_DASH_EQ] = ACTIONS(968), - [anon_sym_STAR_EQ] = ACTIONS(968), - [anon_sym_SLASH_EQ] = ACTIONS(968), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(968), - [aux_sym_cmd_identifier_token1] = ACTIONS(966), - [aux_sym_cmd_identifier_token2] = ACTIONS(968), - [aux_sym_cmd_identifier_token3] = ACTIONS(968), - [aux_sym_cmd_identifier_token4] = ACTIONS(968), - [aux_sym_cmd_identifier_token5] = ACTIONS(968), - [aux_sym_cmd_identifier_token6] = ACTIONS(968), - [aux_sym_cmd_identifier_token7] = ACTIONS(968), - [aux_sym_cmd_identifier_token8] = ACTIONS(966), - [aux_sym_cmd_identifier_token9] = ACTIONS(966), - [aux_sym_cmd_identifier_token10] = ACTIONS(968), - [aux_sym_cmd_identifier_token11] = ACTIONS(968), - [aux_sym_cmd_identifier_token12] = ACTIONS(966), - [aux_sym_cmd_identifier_token13] = ACTIONS(966), - [aux_sym_cmd_identifier_token14] = ACTIONS(966), - [aux_sym_cmd_identifier_token15] = ACTIONS(966), - [aux_sym_cmd_identifier_token16] = ACTIONS(968), - [aux_sym_cmd_identifier_token17] = ACTIONS(968), - [aux_sym_cmd_identifier_token18] = ACTIONS(968), - [aux_sym_cmd_identifier_token19] = ACTIONS(968), - [aux_sym_cmd_identifier_token20] = ACTIONS(968), - [aux_sym_cmd_identifier_token21] = ACTIONS(968), - [aux_sym_cmd_identifier_token22] = ACTIONS(968), - [aux_sym_cmd_identifier_token23] = ACTIONS(968), - [aux_sym_cmd_identifier_token24] = ACTIONS(968), - [aux_sym_cmd_identifier_token25] = ACTIONS(968), - [aux_sym_cmd_identifier_token26] = ACTIONS(968), - [aux_sym_cmd_identifier_token27] = ACTIONS(968), - [aux_sym_cmd_identifier_token28] = ACTIONS(968), - [aux_sym_cmd_identifier_token29] = ACTIONS(968), - [aux_sym_cmd_identifier_token30] = ACTIONS(968), - [aux_sym_cmd_identifier_token31] = ACTIONS(968), - [aux_sym_cmd_identifier_token32] = ACTIONS(968), - [aux_sym_cmd_identifier_token33] = ACTIONS(968), - [aux_sym_cmd_identifier_token34] = ACTIONS(966), - [aux_sym_cmd_identifier_token35] = ACTIONS(968), - [aux_sym_cmd_identifier_token36] = ACTIONS(968), - [aux_sym_cmd_identifier_token37] = ACTIONS(968), - [aux_sym_cmd_identifier_token38] = ACTIONS(966), - [aux_sym_cmd_identifier_token39] = ACTIONS(968), - [aux_sym_cmd_identifier_token40] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_def] = ACTIONS(966), - [anon_sym_export_DASHenv] = ACTIONS(966), - [anon_sym_extern] = ACTIONS(966), - [anon_sym_module] = ACTIONS(966), - [anon_sym_use] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_COMMA] = ACTIONS(968), - [anon_sym_DOLLAR] = ACTIONS(966), - [anon_sym_error] = ACTIONS(966), - [anon_sym_GT2] = ACTIONS(966), - [anon_sym_DASH2] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_in2] = ACTIONS(966), - [anon_sym_loop] = ACTIONS(966), - [anon_sym_make] = ACTIONS(966), - [anon_sym_while] = ACTIONS(966), - [anon_sym_do] = ACTIONS(966), - [anon_sym_if] = ACTIONS(966), - [anon_sym_else] = ACTIONS(966), - [anon_sym_match] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_try] = ACTIONS(966), - [anon_sym_catch] = ACTIONS(966), - [anon_sym_return] = ACTIONS(966), - [anon_sym_source] = ACTIONS(966), - [anon_sym_source_DASHenv] = ACTIONS(966), - [anon_sym_hide] = ACTIONS(966), - [anon_sym_hide_DASHenv] = ACTIONS(966), - [anon_sym_overlay] = ACTIONS(966), - [anon_sym_as] = ACTIONS(966), - [anon_sym_STAR2] = ACTIONS(966), + [anon_sym_export] = ACTIONS(964), + [anon_sym_alias] = ACTIONS(964), + [anon_sym_EQ] = ACTIONS(964), + [anon_sym_let] = ACTIONS(964), + [anon_sym_let_DASHenv] = ACTIONS(964), + [anon_sym_mut] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_PLUS_EQ] = ACTIONS(966), + [anon_sym_DASH_EQ] = ACTIONS(966), + [anon_sym_STAR_EQ] = ACTIONS(966), + [anon_sym_SLASH_EQ] = ACTIONS(966), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(966), + [aux_sym_cmd_identifier_token1] = ACTIONS(964), + [aux_sym_cmd_identifier_token2] = ACTIONS(966), + [aux_sym_cmd_identifier_token3] = ACTIONS(966), + [aux_sym_cmd_identifier_token4] = ACTIONS(966), + [aux_sym_cmd_identifier_token5] = ACTIONS(966), + [aux_sym_cmd_identifier_token6] = ACTIONS(966), + [aux_sym_cmd_identifier_token7] = ACTIONS(966), + [aux_sym_cmd_identifier_token8] = ACTIONS(964), + [aux_sym_cmd_identifier_token9] = ACTIONS(964), + [aux_sym_cmd_identifier_token10] = ACTIONS(966), + [aux_sym_cmd_identifier_token11] = ACTIONS(966), + [aux_sym_cmd_identifier_token12] = ACTIONS(964), + [aux_sym_cmd_identifier_token13] = ACTIONS(964), + [aux_sym_cmd_identifier_token14] = ACTIONS(964), + [aux_sym_cmd_identifier_token15] = ACTIONS(964), + [aux_sym_cmd_identifier_token16] = ACTIONS(966), + [aux_sym_cmd_identifier_token17] = ACTIONS(966), + [aux_sym_cmd_identifier_token18] = ACTIONS(966), + [aux_sym_cmd_identifier_token19] = ACTIONS(966), + [aux_sym_cmd_identifier_token20] = ACTIONS(966), + [aux_sym_cmd_identifier_token21] = ACTIONS(966), + [aux_sym_cmd_identifier_token22] = ACTIONS(966), + [aux_sym_cmd_identifier_token23] = ACTIONS(966), + [aux_sym_cmd_identifier_token24] = ACTIONS(966), + [aux_sym_cmd_identifier_token25] = ACTIONS(966), + [aux_sym_cmd_identifier_token26] = ACTIONS(966), + [aux_sym_cmd_identifier_token27] = ACTIONS(966), + [aux_sym_cmd_identifier_token28] = ACTIONS(966), + [aux_sym_cmd_identifier_token29] = ACTIONS(966), + [aux_sym_cmd_identifier_token30] = ACTIONS(966), + [aux_sym_cmd_identifier_token31] = ACTIONS(966), + [aux_sym_cmd_identifier_token32] = ACTIONS(966), + [aux_sym_cmd_identifier_token33] = ACTIONS(966), + [aux_sym_cmd_identifier_token34] = ACTIONS(964), + [aux_sym_cmd_identifier_token35] = ACTIONS(966), + [aux_sym_cmd_identifier_token36] = ACTIONS(966), + [aux_sym_cmd_identifier_token37] = ACTIONS(966), + [aux_sym_cmd_identifier_token38] = ACTIONS(964), + [aux_sym_cmd_identifier_token39] = ACTIONS(966), + [aux_sym_cmd_identifier_token40] = ACTIONS(966), + [sym__newline] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_err_GT_PIPE] = ACTIONS(966), + [anon_sym_out_GT_PIPE] = ACTIONS(966), + [anon_sym_e_GT_PIPE] = ACTIONS(966), + [anon_sym_o_GT_PIPE] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(966), + [anon_sym_def] = ACTIONS(964), + [anon_sym_export_DASHenv] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym_module] = ACTIONS(964), + [anon_sym_use] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_COMMA] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_error] = ACTIONS(964), + [anon_sym_GT2] = ACTIONS(964), + [anon_sym_DASH2] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_in2] = ACTIONS(964), + [anon_sym_loop] = ACTIONS(964), + [anon_sym_make] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_match] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_try] = ACTIONS(964), + [anon_sym_catch] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_source] = ACTIONS(964), + [anon_sym_source_DASHenv] = ACTIONS(964), + [anon_sym_hide] = ACTIONS(964), + [anon_sym_hide_DASHenv] = ACTIONS(964), + [anon_sym_overlay] = ACTIONS(964), + [anon_sym_as] = ACTIONS(964), + [anon_sym_STAR2] = ACTIONS(964), [anon_sym_QMARK2] = ACTIONS(968), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_has2] = ACTIONS(968), - [anon_sym_not_DASHhas2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(966), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(966), - [anon_sym_SLASH2] = ACTIONS(966), - [anon_sym_mod2] = ACTIONS(966), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(966), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(968), - [anon_sym_DOT_DOT2] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), - [anon_sym_DOT_DOT_LT2] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(968), - [aux_sym__val_number_decimal_token1] = ACTIONS(966), - [aux_sym__val_number_decimal_token2] = ACTIONS(968), - [aux_sym__val_number_decimal_token3] = ACTIONS(968), - [aux_sym__val_number_decimal_token4] = ACTIONS(968), - [aux_sym__val_number_token1] = ACTIONS(968), - [aux_sym__val_number_token2] = ACTIONS(968), - [aux_sym__val_number_token3] = ACTIONS(968), - [aux_sym__val_number_token4] = ACTIONS(966), - [aux_sym__val_number_token5] = ACTIONS(966), - [aux_sym__val_number_token6] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(968), - [sym__str_single_quotes] = ACTIONS(968), - [sym__str_back_ticks] = ACTIONS(968), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(968), - [anon_sym_register] = ACTIONS(966), - [anon_sym_COLON2] = ACTIONS(968), - [anon_sym_DOT2] = ACTIONS(966), - [anon_sym_err_GT] = ACTIONS(966), - [anon_sym_out_GT] = ACTIONS(966), - [anon_sym_e_GT] = ACTIONS(966), - [anon_sym_o_GT] = ACTIONS(966), - [anon_sym_err_PLUSout_GT] = ACTIONS(966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(966), - [anon_sym_o_PLUSe_GT] = ACTIONS(966), - [anon_sym_e_PLUSo_GT] = ACTIONS(966), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(968), + [anon_sym_and2] = ACTIONS(966), + [anon_sym_xor2] = ACTIONS(966), + [anon_sym_or2] = ACTIONS(966), + [anon_sym_not_DASHin2] = ACTIONS(966), + [anon_sym_has2] = ACTIONS(966), + [anon_sym_not_DASHhas2] = ACTIONS(966), + [anon_sym_starts_DASHwith2] = ACTIONS(966), + [anon_sym_ends_DASHwith2] = ACTIONS(966), + [anon_sym_EQ_EQ2] = ACTIONS(966), + [anon_sym_BANG_EQ2] = ACTIONS(966), + [anon_sym_LT2] = ACTIONS(964), + [anon_sym_LT_EQ2] = ACTIONS(966), + [anon_sym_GT_EQ2] = ACTIONS(966), + [anon_sym_EQ_TILDE2] = ACTIONS(966), + [anon_sym_BANG_TILDE2] = ACTIONS(966), + [anon_sym_STAR_STAR2] = ACTIONS(966), + [anon_sym_PLUS_PLUS2] = ACTIONS(964), + [anon_sym_SLASH2] = ACTIONS(964), + [anon_sym_mod2] = ACTIONS(964), + [anon_sym_SLASH_SLASH2] = ACTIONS(966), + [anon_sym_PLUS2] = ACTIONS(964), + [anon_sym_bit_DASHshl2] = ACTIONS(966), + [anon_sym_bit_DASHshr2] = ACTIONS(966), + [anon_sym_bit_DASHand2] = ACTIONS(966), + [anon_sym_bit_DASHxor2] = ACTIONS(966), + [anon_sym_bit_DASHor2] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(966), + [anon_sym_DOT_DOT2] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(966), + [anon_sym_DOT_DOT_LT2] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(964), + [aux_sym__val_number_decimal_token2] = ACTIONS(966), + [aux_sym__val_number_decimal_token3] = ACTIONS(966), + [aux_sym__val_number_decimal_token4] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(964), + [aux_sym__val_number_token5] = ACTIONS(964), + [aux_sym__val_number_token6] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(966), + [anon_sym_register] = ACTIONS(964), + [anon_sym_COLON2] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(964), + [anon_sym_err_GT] = ACTIONS(964), + [anon_sym_out_GT] = ACTIONS(964), + [anon_sym_e_GT] = ACTIONS(964), + [anon_sym_o_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT] = ACTIONS(964), + [anon_sym_err_GT_GT] = ACTIONS(966), + [anon_sym_out_GT_GT] = ACTIONS(966), + [anon_sym_e_GT_GT] = ACTIONS(966), + [anon_sym_o_GT_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(966), }, [150] = { [sym_comment] = STATE(150), @@ -91792,48 +90678,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(992), }, [155] = { - [sym_pipeline] = STATE(6321), - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(814), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym_pipeline] = STATE(6340), + [sym_cmd_identifier] = STATE(4261), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(783), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(155), [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(342), + [aux_sym_pipe_element_repeat2] = STATE(359), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -91919,48 +90805,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [156] = { - [sym_pipeline] = STATE(6316), - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym_pipeline_parenthesized] = STATE(6653), + [sym_cmd_identifier] = STATE(4420), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(156), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym_pipe_element_repeat2] = STATE(341), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -92005,26 +90891,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_break] = ACTIONS(377), - [anon_sym_continue] = ACTIONS(379), - [anon_sym_do] = ACTIONS(387), - [anon_sym_if] = ACTIONS(389), + [anon_sym_break] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_do] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(395), - [anon_sym_return] = ACTIONS(397), - [anon_sym_where] = ACTIONS(199), + [anon_sym_try] = ACTIONS(441), + [anon_sym_return] = ACTIONS(443), + [anon_sym_where] = ACTIONS(445), [aux_sym_expr_unary_token1] = ACTIONS(201), [anon_sym_DOT_DOT_EQ] = ACTIONS(207), [anon_sym_DOT_DOT_LT] = ACTIONS(207), [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(407), - [aux_sym__val_number_decimal_token2] = ACTIONS(409), - [aux_sym__val_number_decimal_token3] = ACTIONS(411), - [aux_sym__val_number_decimal_token4] = ACTIONS(413), + [aux_sym__val_number_decimal_token1] = ACTIONS(449), + [aux_sym__val_number_decimal_token2] = ACTIONS(451), + [aux_sym__val_number_decimal_token3] = ACTIONS(453), + [aux_sym__val_number_decimal_token4] = ACTIONS(455), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -92041,53 +90927,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(457), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, [157] = { - [sym_pipeline] = STATE(6243), - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym_pipeline_parenthesized] = STATE(6463), + [sym_cmd_identifier] = STATE(4420), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(157), - [aux_sym_pipeline_repeat1] = STATE(190), - [aux_sym_pipe_element_repeat2] = STATE(348), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -92132,16 +91018,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_break] = ACTIONS(377), - [anon_sym_continue] = ACTIONS(379), - [anon_sym_do] = ACTIONS(387), - [anon_sym_if] = ACTIONS(589), + [anon_sym_break] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_do] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(395), + [anon_sym_try] = ACTIONS(441), [anon_sym_return] = ACTIONS(443), - [anon_sym_where] = ACTIONS(199), + [anon_sym_where] = ACTIONS(445), [aux_sym_expr_unary_token1] = ACTIONS(201), [anon_sym_DOT_DOT_EQ] = ACTIONS(207), [anon_sym_DOT_DOT_LT] = ACTIONS(207), @@ -92168,53 +91054,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(457), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, [158] = { - [sym_pipeline] = STATE(6321), - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym_pipeline_parenthesized] = STATE(6515), + [sym_cmd_identifier] = STATE(4420), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(158), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym_pipe_element_repeat2] = STATE(341), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -92259,26 +91145,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_break] = ACTIONS(377), - [anon_sym_continue] = ACTIONS(379), - [anon_sym_do] = ACTIONS(387), - [anon_sym_if] = ACTIONS(389), + [anon_sym_break] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_do] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(395), - [anon_sym_return] = ACTIONS(397), - [anon_sym_where] = ACTIONS(199), + [anon_sym_try] = ACTIONS(441), + [anon_sym_return] = ACTIONS(443), + [anon_sym_where] = ACTIONS(445), [aux_sym_expr_unary_token1] = ACTIONS(201), [anon_sym_DOT_DOT_EQ] = ACTIONS(207), [anon_sym_DOT_DOT_LT] = ACTIONS(207), [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(407), - [aux_sym__val_number_decimal_token2] = ACTIONS(409), - [aux_sym__val_number_decimal_token3] = ACTIONS(411), - [aux_sym__val_number_decimal_token4] = ACTIONS(413), + [aux_sym__val_number_decimal_token1] = ACTIONS(449), + [aux_sym__val_number_decimal_token2] = ACTIONS(451), + [aux_sym__val_number_decimal_token3] = ACTIONS(453), + [aux_sym__val_number_decimal_token4] = ACTIONS(455), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -92295,53 +91181,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(457), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, [159] = { - [sym_pipeline] = STATE(6249), - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym_pipeline] = STATE(5985), + [sym_cmd_identifier] = STATE(4261), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(783), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(159), - [aux_sym_pipeline_repeat1] = STATE(190), - [aux_sym_pipe_element_repeat2] = STATE(348), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipe_element_repeat2] = STATE(359), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -92389,12 +91275,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(377), [anon_sym_continue] = ACTIONS(379), [anon_sym_do] = ACTIONS(387), - [anon_sym_if] = ACTIONS(589), + [anon_sym_if] = ACTIONS(1014), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(395), - [anon_sym_return] = ACTIONS(443), + [anon_sym_return] = ACTIONS(1016), [anon_sym_where] = ACTIONS(199), [aux_sym_expr_unary_token1] = ACTIONS(201), [anon_sym_DOT_DOT_EQ] = ACTIONS(207), @@ -92402,10 +91288,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(449), - [aux_sym__val_number_decimal_token2] = ACTIONS(451), - [aux_sym__val_number_decimal_token3] = ACTIONS(453), - [aux_sym__val_number_decimal_token4] = ACTIONS(455), + [aux_sym__val_number_decimal_token1] = ACTIONS(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_decimal_token4] = ACTIONS(1024), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -92427,48 +91313,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [160] = { - [sym_pipeline] = STATE(6250), - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym_pipeline] = STATE(6572), + [sym_cmd_identifier] = STATE(4425), + [sym__ctrl_expression] = STATE(4740), + [sym_ctrl_do] = STATE(4755), + [sym_ctrl_if] = STATE(4755), + [sym_ctrl_match] = STATE(4755), + [sym_ctrl_try] = STATE(4755), + [sym_ctrl_return] = STATE(4755), + [sym_pipe_element] = STATE(4358), + [sym_where_command] = STATE(4788), + [sym__expression] = STATE(3684), + [sym_expr_unary] = STATE(2328), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2328), + [sym__expr_binary_expression] = STATE(3675), + [sym_expr_parenthesized] = STATE(1929), + [sym_val_range] = STATE(2328), + [sym__value] = STATE(2328), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(2375), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(749), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4788), [sym_comment] = STATE(160), [aux_sym_pipeline_repeat1] = STATE(190), - [aux_sym_pipe_element_repeat2] = STATE(348), + [aux_sym_pipe_element_repeat2] = STATE(347), + [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(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_do] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(67), + [anon_sym_try] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [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(245), + [sym_raw_string_begin] = ACTIONS(121), + }, + [161] = { + [sym_pipeline_parenthesized] = STATE(6511), + [sym_cmd_identifier] = STATE(4420), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), + [sym_comment] = STATE(161), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -92513,16 +91526,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_break] = ACTIONS(377), - [anon_sym_continue] = ACTIONS(379), - [anon_sym_do] = ACTIONS(387), - [anon_sym_if] = ACTIONS(589), + [anon_sym_break] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_do] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(395), + [anon_sym_try] = ACTIONS(441), [anon_sym_return] = ACTIONS(443), - [anon_sym_where] = ACTIONS(199), + [anon_sym_where] = ACTIONS(445), [aux_sym_expr_unary_token1] = ACTIONS(201), [anon_sym_DOT_DOT_EQ] = ACTIONS(207), [anon_sym_DOT_DOT_LT] = ACTIONS(207), @@ -92549,53 +91562,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(457), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [161] = { - [sym_pipeline] = STATE(6316), - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(161), - [aux_sym_pipeline_repeat1] = STATE(190), - [aux_sym_pipe_element_repeat2] = STATE(348), + [162] = { + [sym_pipeline] = STATE(6049), + [sym_cmd_identifier] = STATE(4261), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(783), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(162), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipe_element_repeat2] = STATE(359), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -92643,12 +91656,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(377), [anon_sym_continue] = ACTIONS(379), [anon_sym_do] = ACTIONS(387), - [anon_sym_if] = ACTIONS(589), + [anon_sym_if] = ACTIONS(1014), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(395), - [anon_sym_return] = ACTIONS(443), + [anon_sym_return] = ACTIONS(1016), [anon_sym_where] = ACTIONS(199), [aux_sym_expr_unary_token1] = ACTIONS(201), [anon_sym_DOT_DOT_EQ] = ACTIONS(207), @@ -92656,10 +91669,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(449), - [aux_sym__val_number_decimal_token2] = ACTIONS(451), - [aux_sym__val_number_decimal_token3] = ACTIONS(453), - [aux_sym__val_number_decimal_token4] = ACTIONS(455), + [aux_sym__val_number_decimal_token1] = ACTIONS(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_decimal_token4] = ACTIONS(1024), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -92680,49 +91693,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [162] = { - [sym_pipeline] = STATE(6321), - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(162), - [aux_sym_pipeline_repeat1] = STATE(190), - [aux_sym_pipe_element_repeat2] = STATE(348), + [163] = { + [sym_pipeline] = STATE(5985), + [sym_cmd_identifier] = STATE(4261), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(163), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipe_element_repeat2] = STATE(343), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -92770,7 +91783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(377), [anon_sym_continue] = ACTIONS(379), [anon_sym_do] = ACTIONS(387), - [anon_sym_if] = ACTIONS(589), + [anon_sym_if] = ACTIONS(591), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), @@ -92807,49 +91820,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [163] = { - [sym_pipeline_parenthesized] = STATE(6813), - [sym_cmd_identifier] = STATE(4650), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(814), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), - [sym_comment] = STATE(163), + [164] = { + [sym_pipeline_parenthesized] = STATE(6560), + [sym_cmd_identifier] = STATE(4420), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(783), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), + [sym_comment] = STATE(164), [aux_sym_pipeline_parenthesized_repeat1] = STATE(186), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(355), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(346), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -92897,7 +91910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(433), [anon_sym_continue] = ACTIONS(435), [anon_sym_do] = ACTIONS(437), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1028), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), @@ -92934,176 +91947,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [164] = { - [sym_pipeline] = STATE(6835), - [sym_cmd_identifier] = STATE(4647), - [sym__ctrl_expression] = STATE(5055), - [sym_ctrl_do] = STATE(5153), - [sym_ctrl_if] = STATE(5153), - [sym_ctrl_match] = STATE(5153), - [sym_ctrl_try] = STATE(5153), - [sym_ctrl_return] = STATE(5153), - [sym_pipe_element] = STATE(4584), - [sym_where_command] = STATE(5004), - [sym__expression] = STATE(3881), - [sym_expr_unary] = STATE(2510), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2510), - [sym__expr_binary_expression] = STATE(3843), - [sym_expr_parenthesized] = STATE(2098), - [sym_val_range] = STATE(2510), - [sym__value] = STATE(2510), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(2470), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(778), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(5004), - [sym_comment] = STATE(164), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym_pipe_element_repeat2] = STATE(339), - [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(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_DASH2] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_do] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(67), - [anon_sym_try] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [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(245), - [sym_raw_string_begin] = ACTIONS(121), - }, [165] = { - [sym_pipeline_parenthesized] = STATE(7237), - [sym_cmd_identifier] = STATE(4650), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(814), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym_pipeline] = STATE(5985), + [sym_cmd_identifier] = STATE(4261), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(165), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(186), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(355), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(365), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -93148,26 +92034,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_break] = ACTIONS(433), - [anon_sym_continue] = ACTIONS(435), - [anon_sym_do] = ACTIONS(437), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_do] = ACTIONS(387), + [anon_sym_if] = ACTIONS(389), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(441), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_where] = ACTIONS(445), + [anon_sym_try] = ACTIONS(395), + [anon_sym_return] = ACTIONS(397), + [anon_sym_where] = ACTIONS(199), [aux_sym_expr_unary_token1] = ACTIONS(201), [anon_sym_DOT_DOT_EQ] = ACTIONS(207), [anon_sym_DOT_DOT_LT] = ACTIONS(207), [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1022), - [aux_sym__val_number_decimal_token4] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(407), + [aux_sym__val_number_decimal_token2] = ACTIONS(409), + [aux_sym__val_number_decimal_token3] = ACTIONS(411), + [aux_sym__val_number_decimal_token4] = ACTIONS(413), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -93184,53 +92070,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, [166] = { - [sym_pipeline_parenthesized] = STATE(7238), - [sym_cmd_identifier] = STATE(4650), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(814), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym_pipeline] = STATE(6327), + [sym_cmd_identifier] = STATE(4261), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(783), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(166), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(186), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(355), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipe_element_repeat2] = STATE(359), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -93275,16 +92161,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_break] = ACTIONS(433), - [anon_sym_continue] = ACTIONS(435), - [anon_sym_do] = ACTIONS(437), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_do] = ACTIONS(387), + [anon_sym_if] = ACTIONS(1014), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(441), + [anon_sym_try] = ACTIONS(395), [anon_sym_return] = ACTIONS(1016), - [anon_sym_where] = ACTIONS(445), + [anon_sym_where] = ACTIONS(199), [aux_sym_expr_unary_token1] = ACTIONS(201), [anon_sym_DOT_DOT_EQ] = ACTIONS(207), [anon_sym_DOT_DOT_LT] = ACTIONS(207), @@ -93311,53 +92197,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, [167] = { - [sym_pipeline] = STATE(6243), - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(814), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym_pipeline] = STATE(6050), + [sym_cmd_identifier] = STATE(4261), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(783), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(167), [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(342), + [aux_sym_pipe_element_repeat2] = STATE(359), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -93443,48 +92329,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [168] = { - [sym_pipeline] = STATE(6249), - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(814), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym_pipeline] = STATE(6049), + [sym_cmd_identifier] = STATE(4261), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(168), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(342), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(365), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -93532,12 +92418,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(377), [anon_sym_continue] = ACTIONS(379), [anon_sym_do] = ACTIONS(387), - [anon_sym_if] = ACTIONS(1014), + [anon_sym_if] = ACTIONS(389), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(395), - [anon_sym_return] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(397), [anon_sym_where] = ACTIONS(199), [aux_sym_expr_unary_token1] = ACTIONS(201), [anon_sym_DOT_DOT_EQ] = ACTIONS(207), @@ -93545,10 +92431,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1022), - [aux_sym__val_number_decimal_token4] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(407), + [aux_sym__val_number_decimal_token2] = ACTIONS(409), + [aux_sym__val_number_decimal_token3] = ACTIONS(411), + [aux_sym__val_number_decimal_token4] = ACTIONS(413), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -93570,48 +92456,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [169] = { - [sym_pipeline] = STATE(6250), - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(814), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym_pipeline] = STATE(6049), + [sym_cmd_identifier] = STATE(4261), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(169), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(342), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipe_element_repeat2] = STATE(343), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -93659,12 +92545,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(377), [anon_sym_continue] = ACTIONS(379), [anon_sym_do] = ACTIONS(387), - [anon_sym_if] = ACTIONS(1014), + [anon_sym_if] = ACTIONS(591), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(395), - [anon_sym_return] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(443), [anon_sym_where] = ACTIONS(199), [aux_sym_expr_unary_token1] = ACTIONS(201), [anon_sym_DOT_DOT_EQ] = ACTIONS(207), @@ -93672,10 +92558,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1022), - [aux_sym__val_number_decimal_token4] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(449), + [aux_sym__val_number_decimal_token2] = ACTIONS(451), + [aux_sym__val_number_decimal_token3] = ACTIONS(453), + [aux_sym__val_number_decimal_token4] = ACTIONS(455), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -93697,48 +92583,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [170] = { - [sym_pipeline] = STATE(6316), - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(814), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym_pipeline] = STATE(6050), + [sym_cmd_identifier] = STATE(4261), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(170), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(342), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(365), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -93786,12 +92672,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(377), [anon_sym_continue] = ACTIONS(379), [anon_sym_do] = ACTIONS(387), - [anon_sym_if] = ACTIONS(1014), + [anon_sym_if] = ACTIONS(389), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(395), - [anon_sym_return] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(397), [anon_sym_where] = ACTIONS(199), [aux_sym_expr_unary_token1] = ACTIONS(201), [anon_sym_DOT_DOT_EQ] = ACTIONS(207), @@ -93799,10 +92685,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1022), - [aux_sym__val_number_decimal_token4] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(407), + [aux_sym__val_number_decimal_token2] = ACTIONS(409), + [aux_sym__val_number_decimal_token3] = ACTIONS(411), + [aux_sym__val_number_decimal_token4] = ACTIONS(413), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -93824,48 +92710,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [171] = { - [sym_pipeline] = STATE(6243), - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym_pipeline] = STATE(6327), + [sym_cmd_identifier] = STATE(4261), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(171), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym_pipe_element_repeat2] = STATE(341), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(365), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -93951,302 +92837,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [172] = { - [sym_pipeline] = STATE(7010), - [sym_cmd_identifier] = STATE(4647), - [sym__ctrl_expression] = STATE(5055), - [sym_ctrl_do] = STATE(5153), - [sym_ctrl_if] = STATE(5153), - [sym_ctrl_match] = STATE(5153), - [sym_ctrl_try] = STATE(5153), - [sym_ctrl_return] = STATE(5153), - [sym_pipe_element] = STATE(4584), - [sym_where_command] = STATE(5004), - [sym__expression] = STATE(3881), - [sym_expr_unary] = STATE(2510), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2510), - [sym__expr_binary_expression] = STATE(3843), - [sym_expr_parenthesized] = STATE(2098), - [sym_val_range] = STATE(2510), - [sym__value] = STATE(2510), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(2470), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(778), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(5004), + [sym_pipeline] = STATE(6050), + [sym_cmd_identifier] = STATE(4261), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(172), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym_pipe_element_repeat2] = STATE(339), - [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(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_DASH2] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_do] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(67), - [anon_sym_try] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [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(245), - [sym_raw_string_begin] = ACTIONS(121), - }, - [173] = { - [sym_pipeline] = STATE(7018), - [sym_cmd_identifier] = STATE(4647), - [sym__ctrl_expression] = STATE(5055), - [sym_ctrl_do] = STATE(5153), - [sym_ctrl_if] = STATE(5153), - [sym_ctrl_match] = STATE(5153), - [sym_ctrl_try] = STATE(5153), - [sym_ctrl_return] = STATE(5153), - [sym_pipe_element] = STATE(4584), - [sym_where_command] = STATE(5004), - [sym__expression] = STATE(3881), - [sym_expr_unary] = STATE(2510), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2510), - [sym__expr_binary_expression] = STATE(3843), - [sym_expr_parenthesized] = STATE(2098), - [sym_val_range] = STATE(2510), - [sym__value] = STATE(2510), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(2470), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(778), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(5004), - [sym_comment] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym_pipe_element_repeat2] = STATE(339), - [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(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_DASH2] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_do] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(67), - [anon_sym_try] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [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(245), - [sym_raw_string_begin] = ACTIONS(121), - }, - [174] = { - [sym_pipeline_parenthesized] = STATE(6813), - [sym_cmd_identifier] = STATE(4650), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), - [sym_comment] = STATE(174), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipe_element_repeat2] = STATE(343), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -94291,16 +92923,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_break] = ACTIONS(433), - [anon_sym_continue] = ACTIONS(435), - [anon_sym_do] = ACTIONS(437), - [anon_sym_if] = ACTIONS(439), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_do] = ACTIONS(387), + [anon_sym_if] = ACTIONS(591), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(441), + [anon_sym_try] = ACTIONS(395), [anon_sym_return] = ACTIONS(443), - [anon_sym_where] = ACTIONS(445), + [anon_sym_where] = ACTIONS(199), [aux_sym_expr_unary_token1] = ACTIONS(201), [anon_sym_DOT_DOT_EQ] = ACTIONS(207), [anon_sym_DOT_DOT_LT] = ACTIONS(207), @@ -94327,53 +92959,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [175] = { - [sym_pipeline_parenthesized] = STATE(7098), - [sym_cmd_identifier] = STATE(4650), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(814), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), - [sym_comment] = STATE(175), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(186), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(355), + [173] = { + [sym_pipeline] = STATE(6340), + [sym_cmd_identifier] = STATE(4261), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(365), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -94418,26 +93050,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_break] = ACTIONS(433), - [anon_sym_continue] = ACTIONS(435), - [anon_sym_do] = ACTIONS(437), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_do] = ACTIONS(387), + [anon_sym_if] = ACTIONS(389), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(441), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_where] = ACTIONS(445), + [anon_sym_try] = ACTIONS(395), + [anon_sym_return] = ACTIONS(397), + [anon_sym_where] = ACTIONS(199), [aux_sym_expr_unary_token1] = ACTIONS(201), [anon_sym_DOT_DOT_EQ] = ACTIONS(207), [anon_sym_DOT_DOT_LT] = ACTIONS(207), [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1022), - [aux_sym__val_number_decimal_token4] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(407), + [aux_sym__val_number_decimal_token2] = ACTIONS(409), + [aux_sym__val_number_decimal_token3] = ACTIONS(411), + [aux_sym__val_number_decimal_token4] = ACTIONS(413), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -94454,53 +93086,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [176] = { - [sym_pipeline_parenthesized] = STATE(7135), - [sym_cmd_identifier] = STATE(4650), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(814), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), - [sym_comment] = STATE(176), + [174] = { + [sym_pipeline_parenthesized] = STATE(6653), + [sym_cmd_identifier] = STATE(4420), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(783), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), + [sym_comment] = STATE(174), [aux_sym_pipeline_parenthesized_repeat1] = STATE(186), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(355), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(346), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -94548,7 +93180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(433), [anon_sym_continue] = ACTIONS(435), [anon_sym_do] = ACTIONS(437), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1028), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), @@ -94585,49 +93217,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [177] = { - [sym_pipeline] = STATE(6249), - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(177), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym_pipe_element_repeat2] = STATE(341), + [175] = { + [sym_pipeline_parenthesized] = STATE(6560), + [sym_cmd_identifier] = STATE(4420), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), + [sym_comment] = STATE(175), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -94672,26 +93304,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_break] = ACTIONS(377), - [anon_sym_continue] = ACTIONS(379), - [anon_sym_do] = ACTIONS(387), - [anon_sym_if] = ACTIONS(389), + [anon_sym_break] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_do] = ACTIONS(437), + [anon_sym_if] = ACTIONS(439), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(395), - [anon_sym_return] = ACTIONS(397), - [anon_sym_where] = ACTIONS(199), + [anon_sym_try] = ACTIONS(441), + [anon_sym_return] = ACTIONS(443), + [anon_sym_where] = ACTIONS(445), [aux_sym_expr_unary_token1] = ACTIONS(201), [anon_sym_DOT_DOT_EQ] = ACTIONS(207), [anon_sym_DOT_DOT_LT] = ACTIONS(207), [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(407), - [aux_sym__val_number_decimal_token2] = ACTIONS(409), - [aux_sym__val_number_decimal_token3] = ACTIONS(411), - [aux_sym__val_number_decimal_token4] = ACTIONS(413), + [aux_sym__val_number_decimal_token1] = ACTIONS(449), + [aux_sym__val_number_decimal_token2] = ACTIONS(451), + [aux_sym__val_number_decimal_token3] = ACTIONS(453), + [aux_sym__val_number_decimal_token4] = ACTIONS(455), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -94708,180 +93340,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(457), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [178] = { - [sym_pipeline] = STATE(6944), - [sym_cmd_identifier] = STATE(4647), - [sym__ctrl_expression] = STATE(5055), - [sym_ctrl_do] = STATE(5153), - [sym_ctrl_if] = STATE(5153), - [sym_ctrl_match] = STATE(5153), - [sym_ctrl_try] = STATE(5153), - [sym_ctrl_return] = STATE(5153), - [sym_pipe_element] = STATE(4584), - [sym_where_command] = STATE(5004), - [sym__expression] = STATE(3881), - [sym_expr_unary] = STATE(2510), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2510), - [sym__expr_binary_expression] = STATE(3843), - [sym_expr_parenthesized] = STATE(2098), - [sym_val_range] = STATE(2510), - [sym__value] = STATE(2510), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(2470), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(778), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(5004), - [sym_comment] = STATE(178), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym_pipe_element_repeat2] = STATE(339), - [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(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_DASH2] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_do] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(67), - [anon_sym_try] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [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(245), - [sym_raw_string_begin] = ACTIONS(121), - }, - [179] = { - [sym_pipeline] = STATE(6978), - [sym_cmd_identifier] = STATE(4647), - [sym__ctrl_expression] = STATE(5055), - [sym_ctrl_do] = STATE(5153), - [sym_ctrl_if] = STATE(5153), - [sym_ctrl_match] = STATE(5153), - [sym_ctrl_try] = STATE(5153), - [sym_ctrl_return] = STATE(5153), - [sym_pipe_element] = STATE(4584), - [sym_where_command] = STATE(5004), - [sym__expression] = STATE(3881), - [sym_expr_unary] = STATE(2510), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2510), - [sym__expr_binary_expression] = STATE(3843), - [sym_expr_parenthesized] = STATE(2098), - [sym_val_range] = STATE(2510), - [sym__value] = STATE(2510), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(2470), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(778), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(5004), - [sym_comment] = STATE(179), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym_pipe_element_repeat2] = STATE(339), + [176] = { + [sym_pipeline] = STATE(6448), + [sym_cmd_identifier] = STATE(4425), + [sym__ctrl_expression] = STATE(4740), + [sym_ctrl_do] = STATE(4755), + [sym_ctrl_if] = STATE(4755), + [sym_ctrl_match] = STATE(4755), + [sym_ctrl_try] = STATE(4755), + [sym_ctrl_return] = STATE(4755), + [sym_pipe_element] = STATE(4358), + [sym_where_command] = STATE(4788), + [sym__expression] = STATE(3684), + [sym_expr_unary] = STATE(2328), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2328), + [sym__expr_binary_expression] = STATE(3675), + [sym_expr_parenthesized] = STATE(1929), + [sym_val_range] = STATE(2328), + [sym__value] = STATE(2328), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(2375), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(749), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4788), + [sym_comment] = STATE(176), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym_pipe_element_repeat2] = STATE(347), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -94924,7 +93429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(21), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1026), [anon_sym_DASH2] = ACTIONS(47), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), @@ -94966,49 +93471,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(121), }, - [180] = { - [sym_pipeline_parenthesized] = STATE(7237), - [sym_cmd_identifier] = STATE(4650), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), - [sym_comment] = STATE(180), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), + [177] = { + [sym_pipeline_parenthesized] = STATE(6463), + [sym_cmd_identifier] = STATE(4420), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(783), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), + [sym_comment] = STATE(177), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(186), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(346), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -95056,12 +93561,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(433), [anon_sym_continue] = ACTIONS(435), [anon_sym_do] = ACTIONS(437), - [anon_sym_if] = ACTIONS(439), + [anon_sym_if] = ACTIONS(1028), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(441), - [anon_sym_return] = ACTIONS(443), + [anon_sym_return] = ACTIONS(1016), [anon_sym_where] = ACTIONS(445), [aux_sym_expr_unary_token1] = ACTIONS(201), [anon_sym_DOT_DOT_EQ] = ACTIONS(207), @@ -95069,10 +93574,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(449), - [aux_sym__val_number_decimal_token2] = ACTIONS(451), - [aux_sym__val_number_decimal_token3] = ACTIONS(453), - [aux_sym__val_number_decimal_token4] = ACTIONS(455), + [aux_sym__val_number_decimal_token1] = ACTIONS(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_decimal_token4] = ACTIONS(1024), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -95093,49 +93598,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [181] = { - [sym_pipeline_parenthesized] = STATE(7238), - [sym_cmd_identifier] = STATE(4650), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), - [sym_comment] = STATE(181), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), + [178] = { + [sym_pipeline] = STATE(6327), + [sym_cmd_identifier] = STATE(4261), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(178), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipe_element_repeat2] = STATE(343), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -95180,16 +93685,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_break] = ACTIONS(433), - [anon_sym_continue] = ACTIONS(435), - [anon_sym_do] = ACTIONS(437), - [anon_sym_if] = ACTIONS(439), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_do] = ACTIONS(387), + [anon_sym_if] = ACTIONS(591), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(441), + [anon_sym_try] = ACTIONS(395), [anon_sym_return] = ACTIONS(443), - [anon_sym_where] = ACTIONS(445), + [anon_sym_where] = ACTIONS(199), [aux_sym_expr_unary_token1] = ACTIONS(201), [anon_sym_DOT_DOT_EQ] = ACTIONS(207), [anon_sym_DOT_DOT_LT] = ACTIONS(207), @@ -95216,53 +93721,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [182] = { - [sym_pipeline_parenthesized] = STATE(7098), - [sym_cmd_identifier] = STATE(4650), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), - [sym_comment] = STATE(182), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), + [179] = { + [sym_pipeline] = STATE(6586), + [sym_cmd_identifier] = STATE(4425), + [sym__ctrl_expression] = STATE(4740), + [sym_ctrl_do] = STATE(4755), + [sym_ctrl_if] = STATE(4755), + [sym_ctrl_match] = STATE(4755), + [sym_ctrl_try] = STATE(4755), + [sym_ctrl_return] = STATE(4755), + [sym_pipe_element] = STATE(4358), + [sym_where_command] = STATE(4788), + [sym__expression] = STATE(3684), + [sym_expr_unary] = STATE(2328), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2328), + [sym__expr_binary_expression] = STATE(3675), + [sym_expr_parenthesized] = STATE(1929), + [sym_val_range] = STATE(2328), + [sym__value] = STATE(2328), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(2375), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(749), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4788), + [sym_comment] = STATE(179), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym_pipe_element_repeat2] = STATE(347), + [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(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_do] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(67), + [anon_sym_try] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [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(245), + [sym_raw_string_begin] = ACTIONS(121), + }, + [180] = { + [sym_pipeline_parenthesized] = STATE(6511), + [sym_cmd_identifier] = STATE(4420), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(783), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), + [sym_comment] = STATE(180), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(186), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(346), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -95310,12 +93942,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(433), [anon_sym_continue] = ACTIONS(435), [anon_sym_do] = ACTIONS(437), - [anon_sym_if] = ACTIONS(439), + [anon_sym_if] = ACTIONS(1028), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [anon_sym_try] = ACTIONS(441), - [anon_sym_return] = ACTIONS(443), + [anon_sym_return] = ACTIONS(1016), [anon_sym_where] = ACTIONS(445), [aux_sym_expr_unary_token1] = ACTIONS(201), [anon_sym_DOT_DOT_EQ] = ACTIONS(207), @@ -95323,10 +93955,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(449), - [aux_sym__val_number_decimal_token2] = ACTIONS(451), - [aux_sym__val_number_decimal_token3] = ACTIONS(453), - [aux_sym__val_number_decimal_token4] = ACTIONS(455), + [aux_sym__val_number_decimal_token1] = ACTIONS(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_decimal_token4] = ACTIONS(1024), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -95347,49 +93979,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [183] = { - [sym_pipeline_parenthesized] = STATE(7135), - [sym_cmd_identifier] = STATE(4650), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4667), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), - [sym_comment] = STATE(183), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(191), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), + [181] = { + [sym_pipeline] = STATE(6340), + [sym_cmd_identifier] = STATE(4261), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4263), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipe_element_repeat2] = STATE(343), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -95434,16 +94066,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_break] = ACTIONS(433), - [anon_sym_continue] = ACTIONS(435), - [anon_sym_do] = ACTIONS(437), - [anon_sym_if] = ACTIONS(439), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_do] = ACTIONS(387), + [anon_sym_if] = ACTIONS(591), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(441), + [anon_sym_try] = ACTIONS(395), [anon_sym_return] = ACTIONS(443), - [anon_sym_where] = ACTIONS(445), + [anon_sym_where] = ACTIONS(199), [aux_sym_expr_unary_token1] = ACTIONS(201), [anon_sym_DOT_DOT_EQ] = ACTIONS(207), [anon_sym_DOT_DOT_LT] = ACTIONS(207), @@ -95470,53 +94102,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [184] = { - [sym_pipeline] = STATE(6250), - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4501), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), + [182] = { + [sym_pipeline] = STATE(6676), + [sym_cmd_identifier] = STATE(4425), + [sym__ctrl_expression] = STATE(4740), + [sym_ctrl_do] = STATE(4755), + [sym_ctrl_if] = STATE(4755), + [sym_ctrl_match] = STATE(4755), + [sym_ctrl_try] = STATE(4755), + [sym_ctrl_return] = STATE(4755), + [sym_pipe_element] = STATE(4358), + [sym_where_command] = STATE(4788), + [sym__expression] = STATE(3684), + [sym_expr_unary] = STATE(2328), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2328), + [sym__expr_binary_expression] = STATE(3675), + [sym_expr_parenthesized] = STATE(1929), + [sym_val_range] = STATE(2328), + [sym__value] = STATE(2328), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(2375), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(749), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4788), + [sym_comment] = STATE(182), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym_pipe_element_repeat2] = STATE(347), + [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(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_do] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(67), + [anon_sym_try] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [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(245), + [sym_raw_string_begin] = ACTIONS(121), + }, + [183] = { + [sym_pipeline_parenthesized] = STATE(6515), + [sym_cmd_identifier] = STATE(4420), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4483), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(184), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym_pipe_element_repeat2] = STATE(341), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), + [sym_comment] = STATE(183), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(186), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(346), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -95561,26 +94320,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_break] = ACTIONS(377), - [anon_sym_continue] = ACTIONS(379), - [anon_sym_do] = ACTIONS(387), - [anon_sym_if] = ACTIONS(389), + [anon_sym_break] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_do] = ACTIONS(437), + [anon_sym_if] = ACTIONS(1028), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(395), - [anon_sym_return] = ACTIONS(397), - [anon_sym_where] = ACTIONS(199), + [anon_sym_try] = ACTIONS(441), + [anon_sym_return] = ACTIONS(1016), + [anon_sym_where] = ACTIONS(445), [aux_sym_expr_unary_token1] = ACTIONS(201), [anon_sym_DOT_DOT_EQ] = ACTIONS(207), [anon_sym_DOT_DOT_LT] = ACTIONS(207), [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(407), - [aux_sym__val_number_decimal_token2] = ACTIONS(409), - [aux_sym__val_number_decimal_token3] = ACTIONS(411), - [aux_sym__val_number_decimal_token4] = ACTIONS(413), + [aux_sym__val_number_decimal_token1] = ACTIONS(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_decimal_token4] = ACTIONS(1024), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -95597,52 +94356,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(457), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, + [184] = { + [sym_pipeline] = STATE(6442), + [sym_cmd_identifier] = STATE(4425), + [sym__ctrl_expression] = STATE(4740), + [sym_ctrl_do] = STATE(4755), + [sym_ctrl_if] = STATE(4755), + [sym_ctrl_match] = STATE(4755), + [sym_ctrl_try] = STATE(4755), + [sym_ctrl_return] = STATE(4755), + [sym_pipe_element] = STATE(4358), + [sym_where_command] = STATE(4788), + [sym__expression] = STATE(3684), + [sym_expr_unary] = STATE(2328), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2328), + [sym__expr_binary_expression] = STATE(3675), + [sym_expr_parenthesized] = STATE(1929), + [sym_val_range] = STATE(2328), + [sym__value] = STATE(2328), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(2375), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(749), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4788), + [sym_comment] = STATE(184), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym_pipe_element_repeat2] = STATE(347), + [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(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_do] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(67), + [anon_sym_try] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [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(245), + [sym_raw_string_begin] = ACTIONS(121), + }, [185] = { - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4521), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(814), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym_cmd_identifier] = STATE(4261), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4282), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(783), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(185), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(342), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym_pipe_element_repeat2] = STATE(359), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -95728,47 +94614,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [186] = { - [sym_cmd_identifier] = STATE(4650), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4708), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(814), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), + [sym_cmd_identifier] = STATE(4420), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4421), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(783), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), [sym_comment] = STATE(186), [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(355), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(346), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -95816,7 +94702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(433), [anon_sym_continue] = ACTIONS(435), [anon_sym_do] = ACTIONS(437), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1028), [anon_sym_match] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), @@ -95854,173 +94740,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [187] = { - [sym_cmd_identifier] = STATE(4647), - [sym__ctrl_expression] = STATE(5055), - [sym_ctrl_do] = STATE(5153), - [sym_ctrl_if] = STATE(5153), - [sym_ctrl_match] = STATE(5153), - [sym_ctrl_try] = STATE(5153), - [sym_ctrl_return] = STATE(5153), - [sym_pipe_element] = STATE(4594), - [sym_where_command] = STATE(5004), - [sym__expression] = STATE(3881), - [sym_expr_unary] = STATE(2510), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2510), - [sym__expr_binary_expression] = STATE(3843), - [sym_expr_parenthesized] = STATE(2098), - [sym_val_range] = STATE(2510), - [sym__value] = STATE(2510), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(2470), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(778), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(5004), + [sym_cmd_identifier] = STATE(4261), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4282), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(187), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(339), - [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(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_DASH2] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_do] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(67), - [anon_sym_try] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [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_pipeline_repeat1] = STATE(191), + [aux_sym_pipe_element_repeat2] = STATE(365), + [aux_sym_cmd_identifier_token1] = ACTIONS(357), + [aux_sym_cmd_identifier_token2] = ACTIONS(359), + [aux_sym_cmd_identifier_token3] = ACTIONS(359), + [aux_sym_cmd_identifier_token4] = ACTIONS(359), + [aux_sym_cmd_identifier_token5] = ACTIONS(359), + [aux_sym_cmd_identifier_token6] = ACTIONS(359), + [aux_sym_cmd_identifier_token7] = ACTIONS(359), + [aux_sym_cmd_identifier_token8] = ACTIONS(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(357), + [aux_sym_cmd_identifier_token10] = ACTIONS(359), + [aux_sym_cmd_identifier_token11] = ACTIONS(359), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(357), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(357), + [aux_sym_cmd_identifier_token16] = ACTIONS(359), + [aux_sym_cmd_identifier_token17] = ACTIONS(359), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [aux_sym_cmd_identifier_token19] = ACTIONS(359), + [aux_sym_cmd_identifier_token20] = ACTIONS(359), + [aux_sym_cmd_identifier_token21] = ACTIONS(359), + [aux_sym_cmd_identifier_token22] = ACTIONS(359), + [aux_sym_cmd_identifier_token23] = ACTIONS(359), + [aux_sym_cmd_identifier_token24] = ACTIONS(359), + [aux_sym_cmd_identifier_token25] = ACTIONS(359), + [aux_sym_cmd_identifier_token26] = ACTIONS(359), + [aux_sym_cmd_identifier_token27] = ACTIONS(359), + [aux_sym_cmd_identifier_token28] = ACTIONS(359), + [aux_sym_cmd_identifier_token29] = ACTIONS(359), + [aux_sym_cmd_identifier_token30] = ACTIONS(359), + [aux_sym_cmd_identifier_token31] = ACTIONS(359), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(359), + [aux_sym_cmd_identifier_token34] = ACTIONS(357), + [aux_sym_cmd_identifier_token35] = ACTIONS(359), + [aux_sym_cmd_identifier_token36] = ACTIONS(359), + [aux_sym_cmd_identifier_token37] = ACTIONS(359), + [aux_sym_cmd_identifier_token38] = ACTIONS(357), + [aux_sym_cmd_identifier_token39] = ACTIONS(359), + [aux_sym_cmd_identifier_token40] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1012), + [anon_sym_DASH2] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_do] = ACTIONS(387), + [anon_sym_if] = ACTIONS(389), + [anon_sym_match] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(395), + [anon_sym_return] = ACTIONS(397), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(407), + [aux_sym__val_number_decimal_token2] = ACTIONS(409), + [aux_sym__val_number_decimal_token3] = ACTIONS(411), + [aux_sym__val_number_decimal_token4] = ACTIONS(413), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(121), + [sym_raw_string_begin] = ACTIONS(247), }, [188] = { - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(5046), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(826), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), + [sym_cmd_identifier] = STATE(4261), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4282), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), [sym_comment] = STATE(188), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(367), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym_pipe_element_repeat2] = STATE(343), + [aux_sym_cmd_identifier_token1] = ACTIONS(357), + [aux_sym_cmd_identifier_token2] = ACTIONS(359), + [aux_sym_cmd_identifier_token3] = ACTIONS(359), + [aux_sym_cmd_identifier_token4] = ACTIONS(359), + [aux_sym_cmd_identifier_token5] = ACTIONS(359), + [aux_sym_cmd_identifier_token6] = ACTIONS(359), + [aux_sym_cmd_identifier_token7] = ACTIONS(359), + [aux_sym_cmd_identifier_token8] = ACTIONS(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(357), + [aux_sym_cmd_identifier_token10] = ACTIONS(359), + [aux_sym_cmd_identifier_token11] = ACTIONS(359), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(357), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(357), + [aux_sym_cmd_identifier_token16] = ACTIONS(359), + [aux_sym_cmd_identifier_token17] = ACTIONS(359), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [aux_sym_cmd_identifier_token19] = ACTIONS(359), + [aux_sym_cmd_identifier_token20] = ACTIONS(359), + [aux_sym_cmd_identifier_token21] = ACTIONS(359), + [aux_sym_cmd_identifier_token22] = ACTIONS(359), + [aux_sym_cmd_identifier_token23] = ACTIONS(359), + [aux_sym_cmd_identifier_token24] = ACTIONS(359), + [aux_sym_cmd_identifier_token25] = ACTIONS(359), + [aux_sym_cmd_identifier_token26] = ACTIONS(359), + [aux_sym_cmd_identifier_token27] = ACTIONS(359), + [aux_sym_cmd_identifier_token28] = ACTIONS(359), + [aux_sym_cmd_identifier_token29] = ACTIONS(359), + [aux_sym_cmd_identifier_token30] = ACTIONS(359), + [aux_sym_cmd_identifier_token31] = ACTIONS(359), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(359), + [aux_sym_cmd_identifier_token34] = ACTIONS(357), + [aux_sym_cmd_identifier_token35] = ACTIONS(359), + [aux_sym_cmd_identifier_token36] = ACTIONS(359), + [aux_sym_cmd_identifier_token37] = ACTIONS(359), + [aux_sym_cmd_identifier_token38] = ACTIONS(357), + [aux_sym_cmd_identifier_token39] = ACTIONS(359), + [aux_sym_cmd_identifier_token40] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1012), + [anon_sym_DASH2] = ACTIONS(375), + [anon_sym_break] = ACTIONS(377), + [anon_sym_continue] = ACTIONS(379), + [anon_sym_do] = ACTIONS(387), + [anon_sym_if] = ACTIONS(591), + [anon_sym_match] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(395), + [anon_sym_return] = ACTIONS(443), + [anon_sym_where] = ACTIONS(199), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(449), + [aux_sym__val_number_decimal_token2] = ACTIONS(451), + [aux_sym__val_number_decimal_token3] = ACTIONS(453), + [aux_sym__val_number_decimal_token4] = ACTIONS(455), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(243), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(247), + }, + [189] = { + [sym_cmd_identifier] = STATE(4420), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4760), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(797), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), + [sym_comment] = STATE(189), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(351), [aux_sym_cmd_identifier_token1] = ACTIONS(1030), [aux_sym_cmd_identifier_token2] = ACTIONS(1033), [aux_sym_cmd_identifier_token3] = ACTIONS(1033), @@ -96105,48 +95117,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(1135), }, - [189] = { - [sym_cmd_identifier] = STATE(4650), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(5129), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(826), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), - [sym_comment] = STATE(189), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(344), + [190] = { + [sym_cmd_identifier] = STATE(4425), + [sym__ctrl_expression] = STATE(4740), + [sym_ctrl_do] = STATE(4755), + [sym_ctrl_if] = STATE(4755), + [sym_ctrl_match] = STATE(4755), + [sym_ctrl_try] = STATE(4755), + [sym_ctrl_return] = STATE(4755), + [sym_pipe_element] = STATE(4464), + [sym_where_command] = STATE(4788), + [sym__expression] = STATE(3684), + [sym_expr_unary] = STATE(2328), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2328), + [sym__expr_binary_expression] = STATE(3675), + [sym_expr_parenthesized] = STATE(1929), + [sym_val_range] = STATE(2328), + [sym__value] = STATE(2328), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(2375), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(749), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4788), + [sym_comment] = STATE(190), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym_pipe_element_repeat2] = STATE(347), + [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(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_do] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(67), + [anon_sym_try] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [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(245), + [sym_raw_string_begin] = ACTIONS(121), + }, + [191] = { + [sym_cmd_identifier] = STATE(4261), + [sym__ctrl_expression] = STATE(4551), + [sym_ctrl_do] = STATE(4552), + [sym_ctrl_if] = STATE(4552), + [sym_ctrl_match] = STATE(4552), + [sym_ctrl_try] = STATE(4552), + [sym_ctrl_return] = STATE(4552), + [sym_pipe_element] = STATE(4779), + [sym_where_command] = STATE(4553), + [sym__expression] = STATE(3678), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(797), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4553), + [sym_comment] = STATE(191), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym_pipe_element_repeat2] = STATE(356), [aux_sym_cmd_identifier_token1] = ACTIONS(1138), [aux_sym_cmd_identifier_token2] = ACTIONS(1141), [aux_sym_cmd_identifier_token3] = ACTIONS(1141), @@ -96231,174 +95369,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(1243), }, - [190] = { - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4521), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(190), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(348), - [aux_sym_cmd_identifier_token1] = ACTIONS(357), - [aux_sym_cmd_identifier_token2] = ACTIONS(359), - [aux_sym_cmd_identifier_token3] = ACTIONS(359), - [aux_sym_cmd_identifier_token4] = ACTIONS(359), - [aux_sym_cmd_identifier_token5] = ACTIONS(359), - [aux_sym_cmd_identifier_token6] = ACTIONS(359), - [aux_sym_cmd_identifier_token7] = ACTIONS(359), - [aux_sym_cmd_identifier_token8] = ACTIONS(359), - [aux_sym_cmd_identifier_token9] = ACTIONS(357), - [aux_sym_cmd_identifier_token10] = ACTIONS(359), - [aux_sym_cmd_identifier_token11] = ACTIONS(359), - [aux_sym_cmd_identifier_token12] = ACTIONS(359), - [aux_sym_cmd_identifier_token13] = ACTIONS(357), - [aux_sym_cmd_identifier_token14] = ACTIONS(359), - [aux_sym_cmd_identifier_token15] = ACTIONS(357), - [aux_sym_cmd_identifier_token16] = ACTIONS(359), - [aux_sym_cmd_identifier_token17] = ACTIONS(359), - [aux_sym_cmd_identifier_token18] = ACTIONS(359), - [aux_sym_cmd_identifier_token19] = ACTIONS(359), - [aux_sym_cmd_identifier_token20] = ACTIONS(359), - [aux_sym_cmd_identifier_token21] = ACTIONS(359), - [aux_sym_cmd_identifier_token22] = ACTIONS(359), - [aux_sym_cmd_identifier_token23] = ACTIONS(359), - [aux_sym_cmd_identifier_token24] = ACTIONS(359), - [aux_sym_cmd_identifier_token25] = ACTIONS(359), - [aux_sym_cmd_identifier_token26] = ACTIONS(359), - [aux_sym_cmd_identifier_token27] = ACTIONS(359), - [aux_sym_cmd_identifier_token28] = ACTIONS(359), - [aux_sym_cmd_identifier_token29] = ACTIONS(359), - [aux_sym_cmd_identifier_token30] = ACTIONS(359), - [aux_sym_cmd_identifier_token31] = ACTIONS(359), - [aux_sym_cmd_identifier_token32] = ACTIONS(359), - [aux_sym_cmd_identifier_token33] = ACTIONS(359), - [aux_sym_cmd_identifier_token34] = ACTIONS(357), - [aux_sym_cmd_identifier_token35] = ACTIONS(359), - [aux_sym_cmd_identifier_token36] = ACTIONS(359), - [aux_sym_cmd_identifier_token37] = ACTIONS(359), - [aux_sym_cmd_identifier_token38] = ACTIONS(357), - [aux_sym_cmd_identifier_token39] = ACTIONS(359), - [aux_sym_cmd_identifier_token40] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(1012), - [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_break] = ACTIONS(377), - [anon_sym_continue] = ACTIONS(379), - [anon_sym_do] = ACTIONS(387), - [anon_sym_if] = ACTIONS(589), - [anon_sym_match] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(395), - [anon_sym_return] = ACTIONS(443), - [anon_sym_where] = ACTIONS(199), - [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(207), - [anon_sym_DOT_DOT_LT] = ACTIONS(207), - [anon_sym_null] = ACTIONS(209), - [anon_sym_true] = ACTIONS(211), - [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(449), - [aux_sym__val_number_decimal_token2] = ACTIONS(451), - [aux_sym__val_number_decimal_token3] = ACTIONS(453), - [aux_sym__val_number_decimal_token4] = ACTIONS(455), - [aux_sym__val_number_token1] = ACTIONS(223), - [aux_sym__val_number_token2] = ACTIONS(223), - [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(225), - [aux_sym__val_number_token5] = ACTIONS(225), - [aux_sym__val_number_token6] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(247), - }, - [191] = { - [sym_cmd_identifier] = STATE(4650), - [sym__ctrl_expression_parenthesized] = STATE(5038), - [sym_ctrl_do_parenthesized] = STATE(5041), - [sym_ctrl_if_parenthesized] = STATE(5041), - [sym_ctrl_match] = STATE(5041), - [sym_ctrl_try_parenthesized] = STATE(5041), - [sym_ctrl_return] = STATE(5041), - [sym_pipe_element_parenthesized] = STATE(4708), - [sym_where_command_parenthesized] = STATE(5045), - [sym__expression_parenthesized] = STATE(3878), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5128), - [sym_comment] = STATE(191), + [192] = { + [sym_cmd_identifier] = STATE(4420), + [sym__ctrl_expression_parenthesized] = STATE(4783), + [sym_ctrl_do_parenthesized] = STATE(4784), + [sym_ctrl_if_parenthesized] = STATE(4784), + [sym_ctrl_match] = STATE(4784), + [sym_ctrl_try_parenthesized] = STATE(4784), + [sym_ctrl_return] = STATE(4784), + [sym_pipe_element_parenthesized] = STATE(4421), + [sym_where_command_parenthesized] = STATE(4789), + [sym__expression_parenthesized] = STATE(3681), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4796), + [sym_comment] = STATE(192), [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(356), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(353), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -96483,154 +95495,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [192] = { - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression] = STATE(4843), - [sym_ctrl_do] = STATE(4844), - [sym_ctrl_if] = STATE(4844), - [sym_ctrl_match] = STATE(4844), - [sym_ctrl_try] = STATE(4844), - [sym_ctrl_return] = STATE(4844), - [sym_pipe_element] = STATE(4521), - [sym_where_command] = STATE(4866), - [sym__expression] = STATE(3846), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4866), - [sym_comment] = STATE(192), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(341), - [aux_sym_cmd_identifier_token1] = ACTIONS(357), - [aux_sym_cmd_identifier_token2] = ACTIONS(359), - [aux_sym_cmd_identifier_token3] = ACTIONS(359), - [aux_sym_cmd_identifier_token4] = ACTIONS(359), - [aux_sym_cmd_identifier_token5] = ACTIONS(359), - [aux_sym_cmd_identifier_token6] = ACTIONS(359), - [aux_sym_cmd_identifier_token7] = ACTIONS(359), - [aux_sym_cmd_identifier_token8] = ACTIONS(359), - [aux_sym_cmd_identifier_token9] = ACTIONS(357), - [aux_sym_cmd_identifier_token10] = ACTIONS(359), - [aux_sym_cmd_identifier_token11] = ACTIONS(359), - [aux_sym_cmd_identifier_token12] = ACTIONS(359), - [aux_sym_cmd_identifier_token13] = ACTIONS(357), - [aux_sym_cmd_identifier_token14] = ACTIONS(359), - [aux_sym_cmd_identifier_token15] = ACTIONS(357), - [aux_sym_cmd_identifier_token16] = ACTIONS(359), - [aux_sym_cmd_identifier_token17] = ACTIONS(359), - [aux_sym_cmd_identifier_token18] = ACTIONS(359), - [aux_sym_cmd_identifier_token19] = ACTIONS(359), - [aux_sym_cmd_identifier_token20] = ACTIONS(359), - [aux_sym_cmd_identifier_token21] = ACTIONS(359), - [aux_sym_cmd_identifier_token22] = ACTIONS(359), - [aux_sym_cmd_identifier_token23] = ACTIONS(359), - [aux_sym_cmd_identifier_token24] = ACTIONS(359), - [aux_sym_cmd_identifier_token25] = ACTIONS(359), - [aux_sym_cmd_identifier_token26] = ACTIONS(359), - [aux_sym_cmd_identifier_token27] = ACTIONS(359), - [aux_sym_cmd_identifier_token28] = ACTIONS(359), - [aux_sym_cmd_identifier_token29] = ACTIONS(359), - [aux_sym_cmd_identifier_token30] = ACTIONS(359), - [aux_sym_cmd_identifier_token31] = ACTIONS(359), - [aux_sym_cmd_identifier_token32] = ACTIONS(359), - [aux_sym_cmd_identifier_token33] = ACTIONS(359), - [aux_sym_cmd_identifier_token34] = ACTIONS(357), - [aux_sym_cmd_identifier_token35] = ACTIONS(359), - [aux_sym_cmd_identifier_token36] = ACTIONS(359), - [aux_sym_cmd_identifier_token37] = ACTIONS(359), - [aux_sym_cmd_identifier_token38] = ACTIONS(357), - [aux_sym_cmd_identifier_token39] = ACTIONS(359), - [aux_sym_cmd_identifier_token40] = ACTIONS(359), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(1012), - [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_break] = ACTIONS(377), - [anon_sym_continue] = ACTIONS(379), - [anon_sym_do] = ACTIONS(387), - [anon_sym_if] = ACTIONS(389), - [anon_sym_match] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(395), - [anon_sym_return] = ACTIONS(397), - [anon_sym_where] = ACTIONS(199), - [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(207), - [anon_sym_DOT_DOT_LT] = ACTIONS(207), - [anon_sym_null] = ACTIONS(209), - [anon_sym_true] = ACTIONS(211), - [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(407), - [aux_sym__val_number_decimal_token2] = ACTIONS(409), - [aux_sym__val_number_decimal_token3] = ACTIONS(411), - [aux_sym__val_number_decimal_token4] = ACTIONS(413), - [aux_sym__val_number_token1] = ACTIONS(223), - [aux_sym__val_number_token2] = ACTIONS(223), - [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(225), - [aux_sym__val_number_token5] = ACTIONS(225), - [aux_sym__val_number_token6] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(247), - }, [193] = { - [sym_cmd_identifier] = STATE(6333), - [sym_expr_parenthesized] = STATE(7584), - [sym__spread_parenthesized] = STATE(7449), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(7584), - [sym_val_number] = STATE(7584), - [sym__val_number_decimal] = STATE(3661), - [sym__val_number] = STATE(1591), - [sym_val_string] = STATE(7584), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(7584), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym__spread_record] = STATE(7449), - [sym_record_body] = STATE(7849), - [sym_record_entry] = STATE(6953), - [sym__record_key] = STATE(7628), + [sym_cmd_identifier] = STATE(6089), + [sym_expr_parenthesized] = STATE(7080), + [sym__spread_parenthesized] = STATE(6808), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(7080), + [sym_val_number] = STATE(7080), + [sym__val_number_decimal] = STATE(3447), + [sym__val_number] = STATE(1499), + [sym_val_string] = STATE(7080), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(7080), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym__spread_record] = STATE(6808), + [sym_record_body] = STATE(7171), + [sym_record_entry] = STATE(6726), + [sym__record_key] = STATE(7315), [sym_comment] = STATE(193), [aux_sym_shebang_repeat1] = STATE(201), - [aux_sym_record_body_repeat1] = STATE(209), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(279), [anon_sym_alias] = ACTIONS(279), [anon_sym_let] = ACTIONS(279), @@ -96732,27 +95618,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1266), }, [194] = { - [sym_cmd_identifier] = STATE(6333), - [sym_expr_parenthesized] = STATE(7584), - [sym__spread_parenthesized] = STATE(7449), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(7584), - [sym_val_number] = STATE(7584), - [sym__val_number_decimal] = STATE(3661), - [sym__val_number] = STATE(1591), - [sym_val_string] = STATE(7584), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(7584), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym__spread_record] = STATE(7449), - [sym_record_body] = STATE(7613), - [sym_record_entry] = STATE(6953), - [sym__record_key] = STATE(7628), + [sym_cmd_identifier] = STATE(6089), + [sym_expr_parenthesized] = STATE(7080), + [sym__spread_parenthesized] = STATE(6808), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(7080), + [sym_val_number] = STATE(7080), + [sym__val_number_decimal] = STATE(3447), + [sym__val_number] = STATE(1499), + [sym_val_string] = STATE(7080), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(7080), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym__spread_record] = STATE(6808), + [sym_record_body] = STATE(7357), + [sym_record_entry] = STATE(6726), + [sym__record_key] = STATE(7315), [sym_comment] = STATE(194), [aux_sym_shebang_repeat1] = STATE(201), - [aux_sym_record_body_repeat1] = STATE(209), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(279), [anon_sym_alias] = ACTIONS(279), [anon_sym_let] = ACTIONS(279), @@ -96854,27 +95740,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1266), }, [195] = { - [sym_cmd_identifier] = STATE(6333), - [sym_expr_parenthesized] = STATE(7584), - [sym__spread_parenthesized] = STATE(7449), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(7584), - [sym_val_number] = STATE(7584), - [sym__val_number_decimal] = STATE(3661), - [sym__val_number] = STATE(1591), - [sym_val_string] = STATE(7584), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(7584), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym__spread_record] = STATE(7449), - [sym_record_body] = STATE(7743), - [sym_record_entry] = STATE(6953), - [sym__record_key] = STATE(7628), + [sym_cmd_identifier] = STATE(6089), + [sym_expr_parenthesized] = STATE(7080), + [sym__spread_parenthesized] = STATE(6808), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(7080), + [sym_val_number] = STATE(7080), + [sym__val_number_decimal] = STATE(3447), + [sym__val_number] = STATE(1499), + [sym_val_string] = STATE(7080), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(7080), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym__spread_record] = STATE(6808), + [sym_record_body] = STATE(7316), + [sym_record_entry] = STATE(6726), + [sym__record_key] = STATE(7315), [sym_comment] = STATE(195), [aux_sym_shebang_repeat1] = STATE(201), - [aux_sym_record_body_repeat1] = STATE(209), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(279), [anon_sym_alias] = ACTIONS(279), [anon_sym_let] = ACTIONS(279), @@ -96942,7 +95828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(279), [anon_sym_else] = ACTIONS(279), [anon_sym_match] = ACTIONS(279), - [anon_sym_RBRACE] = ACTIONS(323), + [anon_sym_RBRACE] = ACTIONS(1270), [anon_sym_try] = ACTIONS(279), [anon_sym_catch] = ACTIONS(279), [anon_sym_return] = ACTIONS(279), @@ -96976,27 +95862,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1266), }, [196] = { - [sym_cmd_identifier] = STATE(6333), - [sym_expr_parenthesized] = STATE(7584), - [sym__spread_parenthesized] = STATE(7449), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(7584), - [sym_val_number] = STATE(7584), - [sym__val_number_decimal] = STATE(3661), - [sym__val_number] = STATE(1591), - [sym_val_string] = STATE(7584), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(7584), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym__spread_record] = STATE(7449), - [sym_record_body] = STATE(7649), - [sym_record_entry] = STATE(6953), - [sym__record_key] = STATE(7628), + [sym_cmd_identifier] = STATE(6089), + [sym_expr_parenthesized] = STATE(7080), + [sym__spread_parenthesized] = STATE(6808), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(7080), + [sym_val_number] = STATE(7080), + [sym__val_number_decimal] = STATE(3447), + [sym__val_number] = STATE(1499), + [sym_val_string] = STATE(7080), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(7080), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym__spread_record] = STATE(6808), + [sym_record_body] = STATE(7137), + [sym_record_entry] = STATE(6726), + [sym__record_key] = STATE(7315), [sym_comment] = STATE(196), [aux_sym_shebang_repeat1] = STATE(201), - [aux_sym_record_body_repeat1] = STATE(209), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(279), [anon_sym_alias] = ACTIONS(279), [anon_sym_let] = ACTIONS(279), @@ -97064,7 +95950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(279), [anon_sym_else] = ACTIONS(279), [anon_sym_match] = ACTIONS(279), - [anon_sym_RBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(291), [anon_sym_try] = ACTIONS(279), [anon_sym_catch] = ACTIONS(279), [anon_sym_return] = ACTIONS(279), @@ -97098,27 +95984,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1266), }, [197] = { - [sym_cmd_identifier] = STATE(6333), - [sym_expr_parenthesized] = STATE(7584), - [sym__spread_parenthesized] = STATE(7449), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(7584), - [sym_val_number] = STATE(7584), - [sym__val_number_decimal] = STATE(3661), - [sym__val_number] = STATE(1591), - [sym_val_string] = STATE(7584), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(7584), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym__spread_record] = STATE(7449), - [sym_record_body] = STATE(7598), - [sym_record_entry] = STATE(6953), - [sym__record_key] = STATE(7628), + [sym_cmd_identifier] = STATE(6089), + [sym_expr_parenthesized] = STATE(7080), + [sym__spread_parenthesized] = STATE(6808), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(7080), + [sym_val_number] = STATE(7080), + [sym__val_number_decimal] = STATE(3447), + [sym__val_number] = STATE(1499), + [sym_val_string] = STATE(7080), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(7080), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym__spread_record] = STATE(6808), + [sym_record_body] = STATE(7139), + [sym_record_entry] = STATE(6726), + [sym__record_key] = STATE(7315), [sym_comment] = STATE(197), [aux_sym_shebang_repeat1] = STATE(201), - [aux_sym_record_body_repeat1] = STATE(209), + [aux_sym_record_body_repeat1] = STATE(207), [anon_sym_export] = ACTIONS(279), [anon_sym_alias] = ACTIONS(279), [anon_sym_let] = ACTIONS(279), @@ -97186,7 +96072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(279), [anon_sym_else] = ACTIONS(279), [anon_sym_match] = ACTIONS(279), - [anon_sym_RBRACE] = ACTIONS(1270), + [anon_sym_RBRACE] = ACTIONS(323), [anon_sym_try] = ACTIONS(279), [anon_sym_catch] = ACTIONS(279), [anon_sym_return] = ACTIONS(279), @@ -97221,6 +96107,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [198] = { [sym_comment] = STATE(198), + [aux_sym_shebang_repeat1] = STATE(198), [anon_sym_export] = ACTIONS(1272), [anon_sym_alias] = ACTIONS(1272), [anon_sym_let] = ACTIONS(1272), @@ -97228,380 +96115,379 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(1272), [anon_sym_const] = ACTIONS(1272), [aux_sym_cmd_identifier_token1] = ACTIONS(1272), - [aux_sym_cmd_identifier_token2] = ACTIONS(1275), - [aux_sym_cmd_identifier_token3] = ACTIONS(1275), - [aux_sym_cmd_identifier_token4] = ACTIONS(1275), - [aux_sym_cmd_identifier_token5] = ACTIONS(1275), - [aux_sym_cmd_identifier_token6] = ACTIONS(1275), - [aux_sym_cmd_identifier_token7] = ACTIONS(1275), + [aux_sym_cmd_identifier_token2] = ACTIONS(1274), + [aux_sym_cmd_identifier_token3] = ACTIONS(1274), + [aux_sym_cmd_identifier_token4] = ACTIONS(1274), + [aux_sym_cmd_identifier_token5] = ACTIONS(1274), + [aux_sym_cmd_identifier_token6] = ACTIONS(1274), + [aux_sym_cmd_identifier_token7] = ACTIONS(1274), [aux_sym_cmd_identifier_token8] = ACTIONS(1272), [aux_sym_cmd_identifier_token9] = ACTIONS(1272), - [aux_sym_cmd_identifier_token10] = ACTIONS(1275), - [aux_sym_cmd_identifier_token11] = ACTIONS(1275), + [aux_sym_cmd_identifier_token10] = ACTIONS(1274), + [aux_sym_cmd_identifier_token11] = ACTIONS(1274), [aux_sym_cmd_identifier_token12] = ACTIONS(1272), [aux_sym_cmd_identifier_token13] = ACTIONS(1272), [aux_sym_cmd_identifier_token14] = ACTIONS(1272), [aux_sym_cmd_identifier_token15] = ACTIONS(1272), - [aux_sym_cmd_identifier_token16] = ACTIONS(1275), - [aux_sym_cmd_identifier_token17] = ACTIONS(1275), - [aux_sym_cmd_identifier_token18] = ACTIONS(1275), - [aux_sym_cmd_identifier_token19] = ACTIONS(1275), - [aux_sym_cmd_identifier_token20] = ACTIONS(1275), - [aux_sym_cmd_identifier_token21] = ACTIONS(1275), - [aux_sym_cmd_identifier_token22] = ACTIONS(1275), - [aux_sym_cmd_identifier_token23] = ACTIONS(1275), - [aux_sym_cmd_identifier_token24] = ACTIONS(1275), - [aux_sym_cmd_identifier_token25] = ACTIONS(1275), - [aux_sym_cmd_identifier_token26] = ACTIONS(1275), - [aux_sym_cmd_identifier_token27] = ACTIONS(1275), - [aux_sym_cmd_identifier_token28] = ACTIONS(1275), - [aux_sym_cmd_identifier_token29] = ACTIONS(1275), - [aux_sym_cmd_identifier_token30] = ACTIONS(1275), - [aux_sym_cmd_identifier_token31] = ACTIONS(1275), - [aux_sym_cmd_identifier_token32] = ACTIONS(1275), - [aux_sym_cmd_identifier_token33] = ACTIONS(1275), + [aux_sym_cmd_identifier_token16] = ACTIONS(1274), + [aux_sym_cmd_identifier_token17] = ACTIONS(1274), + [aux_sym_cmd_identifier_token18] = ACTIONS(1274), + [aux_sym_cmd_identifier_token19] = ACTIONS(1274), + [aux_sym_cmd_identifier_token20] = ACTIONS(1274), + [aux_sym_cmd_identifier_token21] = ACTIONS(1274), + [aux_sym_cmd_identifier_token22] = ACTIONS(1274), + [aux_sym_cmd_identifier_token23] = ACTIONS(1274), + [aux_sym_cmd_identifier_token24] = ACTIONS(1274), + [aux_sym_cmd_identifier_token25] = ACTIONS(1274), + [aux_sym_cmd_identifier_token26] = ACTIONS(1274), + [aux_sym_cmd_identifier_token27] = ACTIONS(1274), + [aux_sym_cmd_identifier_token28] = ACTIONS(1274), + [aux_sym_cmd_identifier_token29] = ACTIONS(1274), + [aux_sym_cmd_identifier_token30] = ACTIONS(1274), + [aux_sym_cmd_identifier_token31] = ACTIONS(1274), + [aux_sym_cmd_identifier_token32] = ACTIONS(1274), + [aux_sym_cmd_identifier_token33] = ACTIONS(1274), [aux_sym_cmd_identifier_token34] = ACTIONS(1272), - [aux_sym_cmd_identifier_token35] = ACTIONS(1275), - [aux_sym_cmd_identifier_token36] = ACTIONS(1275), - [aux_sym_cmd_identifier_token37] = ACTIONS(1275), + [aux_sym_cmd_identifier_token35] = ACTIONS(1274), + [aux_sym_cmd_identifier_token36] = ACTIONS(1274), + [aux_sym_cmd_identifier_token37] = ACTIONS(1274), [aux_sym_cmd_identifier_token38] = ACTIONS(1272), - [aux_sym_cmd_identifier_token39] = ACTIONS(1275), - [aux_sym_cmd_identifier_token40] = ACTIONS(1275), - [sym__newline] = ACTIONS(1275), - [anon_sym_SEMI] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1278), - [anon_sym_AT] = ACTIONS(1275), + [aux_sym_cmd_identifier_token39] = ACTIONS(1274), + [aux_sym_cmd_identifier_token40] = ACTIONS(1274), + [sym__newline] = ACTIONS(1276), + [anon_sym_SEMI] = ACTIONS(1274), + [anon_sym_PIPE] = ACTIONS(1274), + [anon_sym_AT] = ACTIONS(1274), [anon_sym_def] = ACTIONS(1272), [anon_sym_export_DASHenv] = ACTIONS(1272), [anon_sym_extern] = ACTIONS(1272), [anon_sym_module] = ACTIONS(1272), [anon_sym_use] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1275), - [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1274), + [anon_sym_LPAREN] = ACTIONS(1274), [anon_sym_DOLLAR] = ACTIONS(1272), [anon_sym_error] = ACTIONS(1272), [anon_sym_DASH2] = ACTIONS(1272), [anon_sym_break] = ACTIONS(1272), [anon_sym_continue] = ACTIONS(1272), [anon_sym_for] = ACTIONS(1272), - [anon_sym_in2] = ACTIONS(1280), + [anon_sym_in2] = ACTIONS(1272), [anon_sym_loop] = ACTIONS(1272), - [anon_sym_make] = ACTIONS(1280), + [anon_sym_make] = ACTIONS(1272), [anon_sym_while] = ACTIONS(1272), [anon_sym_do] = ACTIONS(1272), [anon_sym_if] = ACTIONS(1272), - [anon_sym_else] = ACTIONS(1280), + [anon_sym_else] = ACTIONS(1272), [anon_sym_match] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_RBRACE] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1274), [anon_sym_DOT_DOT] = ACTIONS(1272), [anon_sym_try] = ACTIONS(1272), - [anon_sym_catch] = ACTIONS(1280), + [anon_sym_catch] = ACTIONS(1272), [anon_sym_return] = ACTIONS(1272), [anon_sym_source] = ACTIONS(1272), [anon_sym_source_DASHenv] = ACTIONS(1272), [anon_sym_hide] = ACTIONS(1272), [anon_sym_hide_DASHenv] = ACTIONS(1272), [anon_sym_overlay] = ACTIONS(1272), - [anon_sym_as] = ACTIONS(1280), - [anon_sym_where] = ACTIONS(1275), - [aux_sym_expr_unary_token1] = ACTIONS(1275), - [anon_sym_PLUS2] = ACTIONS(1280), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1278), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1275), - [anon_sym_DOT_DOT_LT] = ACTIONS(1275), + [anon_sym_as] = ACTIONS(1272), + [anon_sym_where] = ACTIONS(1274), + [aux_sym_expr_unary_token1] = ACTIONS(1274), + [anon_sym_PLUS2] = ACTIONS(1272), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1274), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1274), + [anon_sym_DOT_DOT_LT] = ACTIONS(1274), [anon_sym_null] = ACTIONS(1272), [anon_sym_true] = ACTIONS(1272), [anon_sym_false] = ACTIONS(1272), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1278), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1274), [aux_sym__val_number_decimal_token1] = ACTIONS(1272), - [aux_sym__val_number_decimal_token2] = ACTIONS(1275), - [aux_sym__val_number_decimal_token3] = ACTIONS(1275), - [aux_sym__val_number_decimal_token4] = ACTIONS(1275), - [aux_sym__val_number_token1] = ACTIONS(1275), - [aux_sym__val_number_token2] = ACTIONS(1275), - [aux_sym__val_number_token3] = ACTIONS(1275), + [aux_sym__val_number_decimal_token2] = ACTIONS(1274), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_token1] = ACTIONS(1274), + [aux_sym__val_number_token2] = ACTIONS(1274), + [aux_sym__val_number_token3] = ACTIONS(1274), [aux_sym__val_number_token4] = ACTIONS(1272), [aux_sym__val_number_token5] = ACTIONS(1272), [aux_sym__val_number_token6] = ACTIONS(1272), [anon_sym_0b] = ACTIONS(1272), [anon_sym_0o] = ACTIONS(1272), [anon_sym_0x] = ACTIONS(1272), - [sym_val_date] = ACTIONS(1275), - [anon_sym_DQUOTE] = ACTIONS(1275), - [sym__str_single_quotes] = ACTIONS(1275), - [sym__str_back_ticks] = ACTIONS(1275), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1275), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1275), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1278), - [anon_sym_register] = ACTIONS(1280), + [sym_val_date] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1274), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1274), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1274), + [anon_sym_register] = ACTIONS(1272), [aux_sym_env_var_token1] = ACTIONS(1272), - [anon_sym_CARET] = ACTIONS(1275), + [anon_sym_CARET] = ACTIONS(1274), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1275), + [sym_raw_string_begin] = ACTIONS(1274), }, [199] = { [sym_comment] = STATE(199), - [aux_sym_shebang_repeat1] = STATE(199), - [anon_sym_export] = ACTIONS(1284), - [anon_sym_alias] = ACTIONS(1284), - [anon_sym_let] = ACTIONS(1284), - [anon_sym_let_DASHenv] = ACTIONS(1284), - [anon_sym_mut] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [aux_sym_cmd_identifier_token1] = ACTIONS(1284), - [aux_sym_cmd_identifier_token2] = ACTIONS(1286), - [aux_sym_cmd_identifier_token3] = ACTIONS(1286), - [aux_sym_cmd_identifier_token4] = ACTIONS(1286), - [aux_sym_cmd_identifier_token5] = ACTIONS(1286), - [aux_sym_cmd_identifier_token6] = ACTIONS(1286), - [aux_sym_cmd_identifier_token7] = ACTIONS(1286), - [aux_sym_cmd_identifier_token8] = ACTIONS(1284), - [aux_sym_cmd_identifier_token9] = ACTIONS(1284), - [aux_sym_cmd_identifier_token10] = ACTIONS(1286), - [aux_sym_cmd_identifier_token11] = ACTIONS(1286), - [aux_sym_cmd_identifier_token12] = ACTIONS(1284), - [aux_sym_cmd_identifier_token13] = ACTIONS(1284), - [aux_sym_cmd_identifier_token14] = ACTIONS(1284), - [aux_sym_cmd_identifier_token15] = ACTIONS(1284), - [aux_sym_cmd_identifier_token16] = ACTIONS(1286), - [aux_sym_cmd_identifier_token17] = ACTIONS(1286), - [aux_sym_cmd_identifier_token18] = ACTIONS(1286), - [aux_sym_cmd_identifier_token19] = ACTIONS(1286), - [aux_sym_cmd_identifier_token20] = ACTIONS(1286), - [aux_sym_cmd_identifier_token21] = ACTIONS(1286), - [aux_sym_cmd_identifier_token22] = ACTIONS(1286), - [aux_sym_cmd_identifier_token23] = ACTIONS(1286), - [aux_sym_cmd_identifier_token24] = ACTIONS(1286), - [aux_sym_cmd_identifier_token25] = ACTIONS(1286), - [aux_sym_cmd_identifier_token26] = ACTIONS(1286), - [aux_sym_cmd_identifier_token27] = ACTIONS(1286), - [aux_sym_cmd_identifier_token28] = ACTIONS(1286), - [aux_sym_cmd_identifier_token29] = ACTIONS(1286), - [aux_sym_cmd_identifier_token30] = ACTIONS(1286), - [aux_sym_cmd_identifier_token31] = ACTIONS(1286), - [aux_sym_cmd_identifier_token32] = ACTIONS(1286), - [aux_sym_cmd_identifier_token33] = ACTIONS(1286), - [aux_sym_cmd_identifier_token34] = ACTIONS(1284), - [aux_sym_cmd_identifier_token35] = ACTIONS(1286), - [aux_sym_cmd_identifier_token36] = ACTIONS(1286), - [aux_sym_cmd_identifier_token37] = ACTIONS(1286), - [aux_sym_cmd_identifier_token38] = ACTIONS(1284), - [aux_sym_cmd_identifier_token39] = ACTIONS(1286), - [aux_sym_cmd_identifier_token40] = ACTIONS(1286), - [sym__newline] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym_PIPE] = ACTIONS(1286), - [anon_sym_AT] = ACTIONS(1286), - [anon_sym_def] = ACTIONS(1284), - [anon_sym_export_DASHenv] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym_module] = ACTIONS(1284), - [anon_sym_use] = ACTIONS(1284), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1284), - [anon_sym_error] = ACTIONS(1284), - [anon_sym_DASH2] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_in2] = ACTIONS(1284), - [anon_sym_loop] = ACTIONS(1284), - [anon_sym_make] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_do] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_else] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_DOT_DOT] = ACTIONS(1284), - [anon_sym_try] = ACTIONS(1284), - [anon_sym_catch] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_source] = ACTIONS(1284), - [anon_sym_source_DASHenv] = ACTIONS(1284), - [anon_sym_hide] = ACTIONS(1284), - [anon_sym_hide_DASHenv] = ACTIONS(1284), - [anon_sym_overlay] = ACTIONS(1284), - [anon_sym_as] = ACTIONS(1284), - [anon_sym_where] = ACTIONS(1286), - [aux_sym_expr_unary_token1] = ACTIONS(1286), - [anon_sym_PLUS2] = ACTIONS(1284), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1286), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1286), - [anon_sym_DOT_DOT_LT] = ACTIONS(1286), - [anon_sym_null] = ACTIONS(1284), - [anon_sym_true] = ACTIONS(1284), - [anon_sym_false] = ACTIONS(1284), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1286), - [aux_sym__val_number_decimal_token1] = ACTIONS(1284), - [aux_sym__val_number_decimal_token2] = ACTIONS(1286), - [aux_sym__val_number_decimal_token3] = ACTIONS(1286), - [aux_sym__val_number_decimal_token4] = ACTIONS(1286), - [aux_sym__val_number_token1] = ACTIONS(1286), - [aux_sym__val_number_token2] = ACTIONS(1286), - [aux_sym__val_number_token3] = ACTIONS(1286), - [aux_sym__val_number_token4] = ACTIONS(1284), - [aux_sym__val_number_token5] = ACTIONS(1284), - [aux_sym__val_number_token6] = ACTIONS(1284), - [anon_sym_0b] = ACTIONS(1284), - [anon_sym_0o] = ACTIONS(1284), - [anon_sym_0x] = ACTIONS(1284), - [sym_val_date] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1286), - [sym__str_back_ticks] = ACTIONS(1286), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1286), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1286), - [anon_sym_register] = ACTIONS(1284), - [aux_sym_env_var_token1] = ACTIONS(1284), - [anon_sym_CARET] = ACTIONS(1286), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1286), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1279), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_let_DASHenv] = ACTIONS(1279), + [anon_sym_mut] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [aux_sym_cmd_identifier_token1] = ACTIONS(1279), + [aux_sym_cmd_identifier_token2] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1282), + [aux_sym_cmd_identifier_token4] = ACTIONS(1282), + [aux_sym_cmd_identifier_token5] = ACTIONS(1282), + [aux_sym_cmd_identifier_token6] = ACTIONS(1282), + [aux_sym_cmd_identifier_token7] = ACTIONS(1282), + [aux_sym_cmd_identifier_token8] = ACTIONS(1279), + [aux_sym_cmd_identifier_token9] = ACTIONS(1279), + [aux_sym_cmd_identifier_token10] = ACTIONS(1282), + [aux_sym_cmd_identifier_token11] = ACTIONS(1282), + [aux_sym_cmd_identifier_token12] = ACTIONS(1279), + [aux_sym_cmd_identifier_token13] = ACTIONS(1279), + [aux_sym_cmd_identifier_token14] = ACTIONS(1279), + [aux_sym_cmd_identifier_token15] = ACTIONS(1279), + [aux_sym_cmd_identifier_token16] = ACTIONS(1282), + [aux_sym_cmd_identifier_token17] = ACTIONS(1282), + [aux_sym_cmd_identifier_token18] = ACTIONS(1282), + [aux_sym_cmd_identifier_token19] = ACTIONS(1282), + [aux_sym_cmd_identifier_token20] = ACTIONS(1282), + [aux_sym_cmd_identifier_token21] = ACTIONS(1282), + [aux_sym_cmd_identifier_token22] = ACTIONS(1282), + [aux_sym_cmd_identifier_token23] = ACTIONS(1282), + [aux_sym_cmd_identifier_token24] = ACTIONS(1282), + [aux_sym_cmd_identifier_token25] = ACTIONS(1282), + [aux_sym_cmd_identifier_token26] = ACTIONS(1282), + [aux_sym_cmd_identifier_token27] = ACTIONS(1282), + [aux_sym_cmd_identifier_token28] = ACTIONS(1282), + [aux_sym_cmd_identifier_token29] = ACTIONS(1282), + [aux_sym_cmd_identifier_token30] = ACTIONS(1282), + [aux_sym_cmd_identifier_token31] = ACTIONS(1282), + [aux_sym_cmd_identifier_token32] = ACTIONS(1282), + [aux_sym_cmd_identifier_token33] = ACTIONS(1282), + [aux_sym_cmd_identifier_token34] = ACTIONS(1279), + [aux_sym_cmd_identifier_token35] = ACTIONS(1282), + [aux_sym_cmd_identifier_token36] = ACTIONS(1282), + [aux_sym_cmd_identifier_token37] = ACTIONS(1282), + [aux_sym_cmd_identifier_token38] = ACTIONS(1279), + [aux_sym_cmd_identifier_token39] = ACTIONS(1282), + [aux_sym_cmd_identifier_token40] = ACTIONS(1282), + [sym__newline] = ACTIONS(1282), + [anon_sym_SEMI] = ACTIONS(1282), + [anon_sym_PIPE] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1282), + [anon_sym_def] = ACTIONS(1279), + [anon_sym_export_DASHenv] = ACTIONS(1279), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_use] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(1282), + [anon_sym_LPAREN] = ACTIONS(1282), + [anon_sym_DOLLAR] = ACTIONS(1279), + [anon_sym_error] = ACTIONS(1279), + [anon_sym_DASH2] = ACTIONS(1279), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_in2] = ACTIONS(1287), + [anon_sym_loop] = ACTIONS(1279), + [anon_sym_make] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_do] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_else] = ACTIONS(1287), + [anon_sym_match] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_RBRACE] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_try] = ACTIONS(1279), + [anon_sym_catch] = ACTIONS(1287), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_source] = ACTIONS(1279), + [anon_sym_source_DASHenv] = ACTIONS(1279), + [anon_sym_hide] = ACTIONS(1279), + [anon_sym_hide_DASHenv] = ACTIONS(1279), + [anon_sym_overlay] = ACTIONS(1279), + [anon_sym_as] = ACTIONS(1287), + [anon_sym_where] = ACTIONS(1282), + [aux_sym_expr_unary_token1] = ACTIONS(1282), + [anon_sym_PLUS2] = ACTIONS(1287), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1285), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1282), + [anon_sym_DOT_DOT_LT] = ACTIONS(1282), + [anon_sym_null] = ACTIONS(1279), + [anon_sym_true] = ACTIONS(1279), + [anon_sym_false] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1285), + [aux_sym__val_number_decimal_token1] = ACTIONS(1279), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1282), + [aux_sym__val_number_decimal_token4] = ACTIONS(1282), + [aux_sym__val_number_token1] = ACTIONS(1282), + [aux_sym__val_number_token2] = ACTIONS(1282), + [aux_sym__val_number_token3] = ACTIONS(1282), + [aux_sym__val_number_token4] = ACTIONS(1279), + [aux_sym__val_number_token5] = ACTIONS(1279), + [aux_sym__val_number_token6] = ACTIONS(1279), + [anon_sym_0b] = ACTIONS(1279), + [anon_sym_0o] = ACTIONS(1279), + [anon_sym_0x] = ACTIONS(1279), + [sym_val_date] = ACTIONS(1282), + [anon_sym_DQUOTE] = ACTIONS(1282), + [sym__str_single_quotes] = ACTIONS(1282), + [sym__str_back_ticks] = ACTIONS(1282), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1282), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1282), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1285), + [anon_sym_register] = ACTIONS(1287), + [aux_sym_env_var_token1] = ACTIONS(1279), + [anon_sym_CARET] = ACTIONS(1282), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1282), }, [200] = { [sym_comment] = STATE(200), - [anon_sym_export] = ACTIONS(1280), - [anon_sym_alias] = ACTIONS(1280), - [anon_sym_let] = ACTIONS(1280), - [anon_sym_let_DASHenv] = ACTIONS(1280), - [anon_sym_mut] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [aux_sym_cmd_identifier_token1] = ACTIONS(1280), - [aux_sym_cmd_identifier_token2] = ACTIONS(1278), - [aux_sym_cmd_identifier_token3] = ACTIONS(1278), - [aux_sym_cmd_identifier_token4] = ACTIONS(1278), - [aux_sym_cmd_identifier_token5] = ACTIONS(1278), - [aux_sym_cmd_identifier_token6] = ACTIONS(1278), - [aux_sym_cmd_identifier_token7] = ACTIONS(1278), - [aux_sym_cmd_identifier_token8] = ACTIONS(1280), - [aux_sym_cmd_identifier_token9] = ACTIONS(1280), - [aux_sym_cmd_identifier_token10] = ACTIONS(1278), - [aux_sym_cmd_identifier_token11] = ACTIONS(1278), - [aux_sym_cmd_identifier_token12] = ACTIONS(1280), - [aux_sym_cmd_identifier_token13] = ACTIONS(1280), - [aux_sym_cmd_identifier_token14] = ACTIONS(1280), - [aux_sym_cmd_identifier_token15] = ACTIONS(1280), - [aux_sym_cmd_identifier_token16] = ACTIONS(1278), - [aux_sym_cmd_identifier_token17] = ACTIONS(1278), - [aux_sym_cmd_identifier_token18] = ACTIONS(1278), - [aux_sym_cmd_identifier_token19] = ACTIONS(1278), - [aux_sym_cmd_identifier_token20] = ACTIONS(1278), - [aux_sym_cmd_identifier_token21] = ACTIONS(1278), - [aux_sym_cmd_identifier_token22] = ACTIONS(1278), - [aux_sym_cmd_identifier_token23] = ACTIONS(1278), - [aux_sym_cmd_identifier_token24] = ACTIONS(1278), - [aux_sym_cmd_identifier_token25] = ACTIONS(1278), - [aux_sym_cmd_identifier_token26] = ACTIONS(1278), - [aux_sym_cmd_identifier_token27] = ACTIONS(1278), - [aux_sym_cmd_identifier_token28] = ACTIONS(1278), - [aux_sym_cmd_identifier_token29] = ACTIONS(1278), - [aux_sym_cmd_identifier_token30] = ACTIONS(1278), - [aux_sym_cmd_identifier_token31] = ACTIONS(1278), - [aux_sym_cmd_identifier_token32] = ACTIONS(1278), - [aux_sym_cmd_identifier_token33] = ACTIONS(1278), - [aux_sym_cmd_identifier_token34] = ACTIONS(1280), - [aux_sym_cmd_identifier_token35] = ACTIONS(1278), - [aux_sym_cmd_identifier_token36] = ACTIONS(1278), - [aux_sym_cmd_identifier_token37] = ACTIONS(1278), - [aux_sym_cmd_identifier_token38] = ACTIONS(1280), - [aux_sym_cmd_identifier_token39] = ACTIONS(1278), - [aux_sym_cmd_identifier_token40] = ACTIONS(1278), - [sym__newline] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_PIPE] = ACTIONS(1278), - [anon_sym_AT] = ACTIONS(1278), - [anon_sym_def] = ACTIONS(1280), - [anon_sym_export_DASHenv] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym_module] = ACTIONS(1280), - [anon_sym_use] = ACTIONS(1280), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_DOLLAR] = ACTIONS(1280), - [anon_sym_error] = ACTIONS(1280), - [anon_sym_DASH2] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_in2] = ACTIONS(1280), - [anon_sym_loop] = ACTIONS(1280), - [anon_sym_make] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_else] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [anon_sym_try] = ACTIONS(1280), - [anon_sym_catch] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_source] = ACTIONS(1280), - [anon_sym_source_DASHenv] = ACTIONS(1280), - [anon_sym_hide] = ACTIONS(1280), - [anon_sym_hide_DASHenv] = ACTIONS(1280), - [anon_sym_overlay] = ACTIONS(1280), - [anon_sym_as] = ACTIONS(1280), - [anon_sym_where] = ACTIONS(1278), - [aux_sym_expr_unary_token1] = ACTIONS(1278), - [anon_sym_PLUS2] = ACTIONS(1280), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1278), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1278), - [anon_sym_DOT_DOT_LT] = ACTIONS(1278), - [anon_sym_null] = ACTIONS(1280), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1278), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1278), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), - [aux_sym__val_number_token1] = ACTIONS(1278), - [aux_sym__val_number_token2] = ACTIONS(1278), - [aux_sym__val_number_token3] = ACTIONS(1278), - [aux_sym__val_number_token4] = ACTIONS(1280), - [aux_sym__val_number_token5] = ACTIONS(1280), - [aux_sym__val_number_token6] = ACTIONS(1280), - [anon_sym_0b] = ACTIONS(1280), - [anon_sym_0o] = ACTIONS(1280), - [anon_sym_0x] = ACTIONS(1280), - [sym_val_date] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym__str_single_quotes] = ACTIONS(1278), - [sym__str_back_ticks] = ACTIONS(1278), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1278), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1278), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1278), - [anon_sym_register] = ACTIONS(1280), - [aux_sym_env_var_token1] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1278), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1278), + [anon_sym_export] = ACTIONS(1287), + [anon_sym_alias] = ACTIONS(1287), + [anon_sym_let] = ACTIONS(1287), + [anon_sym_let_DASHenv] = ACTIONS(1287), + [anon_sym_mut] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [aux_sym_cmd_identifier_token1] = ACTIONS(1287), + [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(1287), + [aux_sym_cmd_identifier_token9] = ACTIONS(1287), + [aux_sym_cmd_identifier_token10] = ACTIONS(1285), + [aux_sym_cmd_identifier_token11] = ACTIONS(1285), + [aux_sym_cmd_identifier_token12] = ACTIONS(1287), + [aux_sym_cmd_identifier_token13] = ACTIONS(1287), + [aux_sym_cmd_identifier_token14] = ACTIONS(1287), + [aux_sym_cmd_identifier_token15] = ACTIONS(1287), + [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(1287), + [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(1287), + [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(1285), + [anon_sym_AT] = ACTIONS(1285), + [anon_sym_def] = ACTIONS(1287), + [anon_sym_export_DASHenv] = ACTIONS(1287), + [anon_sym_extern] = ACTIONS(1287), + [anon_sym_module] = ACTIONS(1287), + [anon_sym_use] = ACTIONS(1287), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1287), + [anon_sym_error] = ACTIONS(1287), + [anon_sym_DASH2] = ACTIONS(1287), + [anon_sym_break] = ACTIONS(1287), + [anon_sym_continue] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1287), + [anon_sym_in2] = ACTIONS(1287), + [anon_sym_loop] = ACTIONS(1287), + [anon_sym_make] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1287), + [anon_sym_else] = ACTIONS(1287), + [anon_sym_match] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_DOT_DOT] = ACTIONS(1287), + [anon_sym_try] = ACTIONS(1287), + [anon_sym_catch] = ACTIONS(1287), + [anon_sym_return] = ACTIONS(1287), + [anon_sym_source] = ACTIONS(1287), + [anon_sym_source_DASHenv] = ACTIONS(1287), + [anon_sym_hide] = ACTIONS(1287), + [anon_sym_hide_DASHenv] = ACTIONS(1287), + [anon_sym_overlay] = ACTIONS(1287), + [anon_sym_as] = ACTIONS(1287), + [anon_sym_where] = ACTIONS(1285), + [aux_sym_expr_unary_token1] = ACTIONS(1285), + [anon_sym_PLUS2] = ACTIONS(1287), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1285), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_DOT_DOT_LT] = ACTIONS(1285), + [anon_sym_null] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(1287), + [anon_sym_false] = ACTIONS(1287), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1285), + [aux_sym__val_number_decimal_token1] = ACTIONS(1287), + [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(1287), + [aux_sym__val_number_token5] = ACTIONS(1287), + [aux_sym__val_number_token6] = ACTIONS(1287), + [anon_sym_0b] = ACTIONS(1287), + [anon_sym_0o] = ACTIONS(1287), + [anon_sym_0x] = ACTIONS(1287), + [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), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1285), + [anon_sym_register] = ACTIONS(1287), + [aux_sym_env_var_token1] = ACTIONS(1287), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1285), }, [201] = { - [sym_cmd_identifier] = STATE(6333), - [sym_expr_parenthesized] = STATE(7584), - [sym__spread_parenthesized] = STATE(7449), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(7584), - [sym_val_number] = STATE(7584), - [sym__val_number_decimal] = STATE(3661), - [sym__val_number] = STATE(1591), - [sym_val_string] = STATE(7584), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(7584), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym__spread_record] = STATE(7449), - [sym_record_entry] = STATE(7015), - [sym__record_key] = STATE(7628), + [sym_cmd_identifier] = STATE(6089), + [sym_expr_parenthesized] = STATE(7080), + [sym__spread_parenthesized] = STATE(6808), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(7080), + [sym_val_number] = STATE(7080), + [sym__val_number_decimal] = STATE(3447), + [sym__val_number] = STATE(1499), + [sym_val_string] = STATE(7080), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(7080), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym__spread_record] = STATE(6808), + [sym_record_entry] = STATE(6453), + [sym__record_key] = STATE(7315), [sym_comment] = STATE(201), - [aux_sym_shebang_repeat1] = STATE(739), - [aux_sym_record_body_repeat1] = STATE(208), + [aux_sym_shebang_repeat1] = STATE(714), + [aux_sym_record_body_repeat1] = STATE(209), [anon_sym_export] = ACTIONS(279), [anon_sym_alias] = ACTIONS(279), [anon_sym_let] = ACTIONS(279), @@ -97702,80 +96588,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1266), }, [202] = { - [sym_cmd_identifier] = STATE(6364), - [sym_expr_parenthesized] = STATE(7726), - [sym__spread_parenthesized] = STATE(694), - [sym__spread_variable] = STATE(732), - [sym_val_variable] = STATE(671), - [sym_val_number] = STATE(7726), - [sym__val_number_decimal] = STATE(3661), - [sym__val_number] = STATE(1591), - [sym_val_string] = STATE(7726), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(7726), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym__spread_record] = STATE(694), - [sym_record_entry] = STATE(740), - [sym__record_key] = STATE(7657), + [sym_cmd_identifier] = STATE(6177), + [sym_expr_parenthesized] = STATE(7053), + [sym__spread_parenthesized] = STATE(693), + [sym__spread_variable] = STATE(694), + [sym_val_variable] = STATE(614), + [sym_val_number] = STATE(7053), + [sym__val_number_decimal] = STATE(3447), + [sym__val_number] = STATE(1499), + [sym_val_string] = STATE(7053), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(7053), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym__spread_record] = STATE(693), + [sym_record_entry] = STATE(676), + [sym__record_key] = STATE(7022), [sym_comment] = STATE(202), - [aux_sym__match_pattern_record_repeat1] = STATE(202), + [aux_sym__match_pattern_record_repeat1] = STATE(203), [anon_sym_export] = ACTIONS(1291), [anon_sym_alias] = ACTIONS(1291), [anon_sym_let] = ACTIONS(1291), [anon_sym_let_DASHenv] = ACTIONS(1291), [anon_sym_mut] = ACTIONS(1291), [anon_sym_const] = ACTIONS(1291), - [aux_sym_cmd_identifier_token1] = ACTIONS(1294), - [aux_sym_cmd_identifier_token2] = ACTIONS(1297), - [aux_sym_cmd_identifier_token3] = ACTIONS(1297), - [aux_sym_cmd_identifier_token4] = ACTIONS(1297), - [aux_sym_cmd_identifier_token5] = ACTIONS(1297), - [aux_sym_cmd_identifier_token6] = ACTIONS(1297), - [aux_sym_cmd_identifier_token7] = ACTIONS(1297), - [aux_sym_cmd_identifier_token8] = ACTIONS(1294), - [aux_sym_cmd_identifier_token9] = ACTIONS(1294), - [aux_sym_cmd_identifier_token10] = ACTIONS(1297), - [aux_sym_cmd_identifier_token11] = ACTIONS(1297), - [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(1297), - [aux_sym_cmd_identifier_token17] = ACTIONS(1297), - [aux_sym_cmd_identifier_token18] = ACTIONS(1297), - [aux_sym_cmd_identifier_token19] = ACTIONS(1297), - [aux_sym_cmd_identifier_token20] = ACTIONS(1297), - [aux_sym_cmd_identifier_token21] = ACTIONS(1297), - [aux_sym_cmd_identifier_token22] = ACTIONS(1297), - [aux_sym_cmd_identifier_token23] = ACTIONS(1297), - [aux_sym_cmd_identifier_token24] = ACTIONS(1297), - [aux_sym_cmd_identifier_token25] = ACTIONS(1297), - [aux_sym_cmd_identifier_token26] = ACTIONS(1297), - [aux_sym_cmd_identifier_token27] = ACTIONS(1297), - [aux_sym_cmd_identifier_token28] = ACTIONS(1297), - [aux_sym_cmd_identifier_token29] = ACTIONS(1297), - [aux_sym_cmd_identifier_token30] = ACTIONS(1297), - [aux_sym_cmd_identifier_token31] = ACTIONS(1297), - [aux_sym_cmd_identifier_token32] = ACTIONS(1297), - [aux_sym_cmd_identifier_token33] = ACTIONS(1297), - [aux_sym_cmd_identifier_token34] = ACTIONS(1294), - [aux_sym_cmd_identifier_token35] = ACTIONS(1297), - [aux_sym_cmd_identifier_token36] = ACTIONS(1297), - [aux_sym_cmd_identifier_token37] = ACTIONS(1297), - [aux_sym_cmd_identifier_token38] = ACTIONS(1294), - [aux_sym_cmd_identifier_token39] = ACTIONS(1297), - [aux_sym_cmd_identifier_token40] = ACTIONS(1297), + [aux_sym_cmd_identifier_token1] = ACTIONS(133), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(133), + [aux_sym_cmd_identifier_token9] = ACTIONS(133), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(133), + [aux_sym_cmd_identifier_token13] = ACTIONS(133), + [aux_sym_cmd_identifier_token14] = ACTIONS(133), + [aux_sym_cmd_identifier_token15] = ACTIONS(133), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(133), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [aux_sym_cmd_identifier_token37] = ACTIONS(135), + [aux_sym_cmd_identifier_token38] = ACTIONS(133), + [aux_sym_cmd_identifier_token39] = ACTIONS(135), + [aux_sym_cmd_identifier_token40] = ACTIONS(135), [anon_sym_def] = ACTIONS(1291), [anon_sym_export_DASHenv] = ACTIONS(1291), [anon_sym_extern] = ACTIONS(1291), [anon_sym_module] = ACTIONS(1291), [anon_sym_use] = ACTIONS(1291), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_DOLLAR] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1248), + [anon_sym_DOLLAR] = ACTIONS(1293), [anon_sym_error] = ACTIONS(1291), - [anon_sym_DASH2] = ACTIONS(1306), + [anon_sym_DASH2] = ACTIONS(203), [anon_sym_break] = ACTIONS(1291), [anon_sym_continue] = ACTIONS(1291), [anon_sym_for] = ACTIONS(1291), @@ -97787,7 +96673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1291), [anon_sym_else] = ACTIONS(1291), [anon_sym_match] = ACTIONS(1291), - [anon_sym_RBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1295), [anon_sym_try] = ACTIONS(1291), [anon_sym_catch] = ACTIONS(1291), [anon_sym_return] = ACTIONS(1291), @@ -97797,55 +96683,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(1291), [anon_sym_overlay] = ACTIONS(1291), [anon_sym_as] = ACTIONS(1291), - [anon_sym_PLUS2] = ACTIONS(1306), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1311), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1314), - [aux_sym__val_number_decimal_token1] = ACTIONS(1317), - [aux_sym__val_number_decimal_token2] = ACTIONS(1320), - [aux_sym__val_number_decimal_token3] = ACTIONS(1323), - [aux_sym__val_number_decimal_token4] = ACTIONS(1326), - [aux_sym__val_number_token1] = ACTIONS(1329), - [aux_sym__val_number_token2] = ACTIONS(1329), - [aux_sym__val_number_token3] = ACTIONS(1329), - [aux_sym__val_number_token4] = ACTIONS(1332), - [aux_sym__val_number_token5] = ACTIONS(1332), - [aux_sym__val_number_token6] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1335), - [sym__str_single_quotes] = ACTIONS(1338), - [sym__str_back_ticks] = ACTIONS(1338), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1341), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1344), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1347), + [anon_sym_PLUS2] = ACTIONS(203), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1299), + [aux_sym__val_number_decimal_token1] = ACTIONS(1254), + [aux_sym__val_number_decimal_token2] = ACTIONS(1256), + [aux_sym__val_number_decimal_token3] = ACTIONS(1258), + [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym__str_single_quotes] = ACTIONS(1264), + [sym__str_back_ticks] = ACTIONS(1264), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1301), [anon_sym_register] = ACTIONS(1291), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1350), + [sym_raw_string_begin] = ACTIONS(1266), }, [203] = { - [sym_cmd_identifier] = STATE(6364), - [sym_expr_parenthesized] = STATE(7726), - [sym__spread_parenthesized] = STATE(694), - [sym__spread_variable] = STATE(732), - [sym_val_variable] = STATE(671), - [sym_val_number] = STATE(7726), - [sym__val_number_decimal] = STATE(3661), - [sym__val_number] = STATE(1591), - [sym_val_string] = STATE(7726), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(7726), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym__spread_record] = STATE(694), - [sym_record_entry] = STATE(740), - [sym__record_key] = STATE(7657), + [sym_cmd_identifier] = STATE(6177), + [sym_expr_parenthesized] = STATE(7053), + [sym__spread_parenthesized] = STATE(693), + [sym__spread_variable] = STATE(694), + [sym_val_variable] = STATE(614), + [sym_val_number] = STATE(7053), + [sym__val_number_decimal] = STATE(3447), + [sym__val_number] = STATE(1499), + [sym_val_string] = STATE(7053), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(7053), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym__spread_record] = STATE(693), + [sym_record_entry] = STATE(676), + [sym__record_key] = STATE(7022), [sym_comment] = STATE(203), - [aux_sym__match_pattern_record_repeat1] = STATE(202), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_alias] = ACTIONS(1353), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_let_DASHenv] = ACTIONS(1353), - [anon_sym_mut] = ACTIONS(1353), - [anon_sym_const] = ACTIONS(1353), + [aux_sym__match_pattern_record_repeat1] = STATE(206), + [anon_sym_export] = ACTIONS(1291), + [anon_sym_alias] = ACTIONS(1291), + [anon_sym_let] = ACTIONS(1291), + [anon_sym_let_DASHenv] = ACTIONS(1291), + [anon_sym_mut] = ACTIONS(1291), + [anon_sym_const] = ACTIONS(1291), [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), @@ -97886,39 +96772,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(133), [aux_sym_cmd_identifier_token39] = ACTIONS(135), [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [anon_sym_def] = ACTIONS(1353), - [anon_sym_export_DASHenv] = ACTIONS(1353), - [anon_sym_extern] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_use] = ACTIONS(1353), + [anon_sym_def] = ACTIONS(1291), + [anon_sym_export_DASHenv] = ACTIONS(1291), + [anon_sym_extern] = ACTIONS(1291), + [anon_sym_module] = ACTIONS(1291), + [anon_sym_use] = ACTIONS(1291), [anon_sym_LPAREN] = ACTIONS(1248), - [anon_sym_DOLLAR] = ACTIONS(1355), - [anon_sym_error] = ACTIONS(1353), + [anon_sym_DOLLAR] = ACTIONS(1293), + [anon_sym_error] = ACTIONS(1291), [anon_sym_DASH2] = ACTIONS(203), - [anon_sym_break] = ACTIONS(1353), - [anon_sym_continue] = ACTIONS(1353), - [anon_sym_for] = ACTIONS(1353), - [anon_sym_in2] = ACTIONS(1353), - [anon_sym_loop] = ACTIONS(1353), - [anon_sym_make] = ACTIONS(1353), - [anon_sym_while] = ACTIONS(1353), - [anon_sym_do] = ACTIONS(1353), - [anon_sym_if] = ACTIONS(1353), - [anon_sym_else] = ACTIONS(1353), - [anon_sym_match] = ACTIONS(1353), - [anon_sym_RBRACE] = ACTIONS(1357), - [anon_sym_try] = ACTIONS(1353), - [anon_sym_catch] = ACTIONS(1353), - [anon_sym_return] = ACTIONS(1353), - [anon_sym_source] = ACTIONS(1353), - [anon_sym_source_DASHenv] = ACTIONS(1353), - [anon_sym_hide] = ACTIONS(1353), - [anon_sym_hide_DASHenv] = ACTIONS(1353), - [anon_sym_overlay] = ACTIONS(1353), - [anon_sym_as] = ACTIONS(1353), + [anon_sym_break] = ACTIONS(1291), + [anon_sym_continue] = ACTIONS(1291), + [anon_sym_for] = ACTIONS(1291), + [anon_sym_in2] = ACTIONS(1291), + [anon_sym_loop] = ACTIONS(1291), + [anon_sym_make] = ACTIONS(1291), + [anon_sym_while] = ACTIONS(1291), + [anon_sym_do] = ACTIONS(1291), + [anon_sym_if] = ACTIONS(1291), + [anon_sym_else] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1291), + [anon_sym_RBRACE] = ACTIONS(1303), + [anon_sym_try] = ACTIONS(1291), + [anon_sym_catch] = ACTIONS(1291), + [anon_sym_return] = ACTIONS(1291), + [anon_sym_source] = ACTIONS(1291), + [anon_sym_source_DASHenv] = ACTIONS(1291), + [anon_sym_hide] = ACTIONS(1291), + [anon_sym_hide_DASHenv] = ACTIONS(1291), + [anon_sym_overlay] = ACTIONS(1291), + [anon_sym_as] = ACTIONS(1291), [anon_sym_PLUS2] = ACTIONS(203), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1359), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1361), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1299), [aux_sym__val_number_decimal_token1] = ACTIONS(1254), [aux_sym__val_number_decimal_token2] = ACTIONS(1256), [aux_sym__val_number_decimal_token3] = ACTIONS(1258), @@ -97934,37 +96820,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1264), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1363), - [anon_sym_register] = ACTIONS(1353), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1301), + [anon_sym_register] = ACTIONS(1291), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(1266), }, [204] = { - [sym_cmd_identifier] = STATE(6364), - [sym_expr_parenthesized] = STATE(7726), - [sym__spread_parenthesized] = STATE(694), - [sym__spread_variable] = STATE(732), - [sym_val_variable] = STATE(671), - [sym_val_number] = STATE(7726), - [sym__val_number_decimal] = STATE(3661), - [sym__val_number] = STATE(1591), - [sym_val_string] = STATE(7726), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(7726), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym__spread_record] = STATE(694), - [sym_record_entry] = STATE(740), - [sym__record_key] = STATE(7657), + [sym_cmd_identifier] = STATE(6177), + [sym_expr_parenthesized] = STATE(7053), + [sym__spread_parenthesized] = STATE(693), + [sym__spread_variable] = STATE(694), + [sym_val_variable] = STATE(614), + [sym_val_number] = STATE(7053), + [sym__val_number_decimal] = STATE(3447), + [sym__val_number] = STATE(1499), + [sym_val_string] = STATE(7053), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(7053), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym__spread_record] = STATE(693), + [sym_record_entry] = STATE(676), + [sym__record_key] = STATE(7022), [sym_comment] = STATE(204), [aux_sym__match_pattern_record_repeat1] = STATE(205), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_alias] = ACTIONS(1353), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_let_DASHenv] = ACTIONS(1353), - [anon_sym_mut] = ACTIONS(1353), - [anon_sym_const] = ACTIONS(1353), + [anon_sym_export] = ACTIONS(1291), + [anon_sym_alias] = ACTIONS(1291), + [anon_sym_let] = ACTIONS(1291), + [anon_sym_let_DASHenv] = ACTIONS(1291), + [anon_sym_mut] = ACTIONS(1291), + [anon_sym_const] = ACTIONS(1291), [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), @@ -98005,39 +96891,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(133), [aux_sym_cmd_identifier_token39] = ACTIONS(135), [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [anon_sym_def] = ACTIONS(1353), - [anon_sym_export_DASHenv] = ACTIONS(1353), - [anon_sym_extern] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_use] = ACTIONS(1353), + [anon_sym_def] = ACTIONS(1291), + [anon_sym_export_DASHenv] = ACTIONS(1291), + [anon_sym_extern] = ACTIONS(1291), + [anon_sym_module] = ACTIONS(1291), + [anon_sym_use] = ACTIONS(1291), [anon_sym_LPAREN] = ACTIONS(1248), - [anon_sym_DOLLAR] = ACTIONS(1355), - [anon_sym_error] = ACTIONS(1353), + [anon_sym_DOLLAR] = ACTIONS(1293), + [anon_sym_error] = ACTIONS(1291), [anon_sym_DASH2] = ACTIONS(203), - [anon_sym_break] = ACTIONS(1353), - [anon_sym_continue] = ACTIONS(1353), - [anon_sym_for] = ACTIONS(1353), - [anon_sym_in2] = ACTIONS(1353), - [anon_sym_loop] = ACTIONS(1353), - [anon_sym_make] = ACTIONS(1353), - [anon_sym_while] = ACTIONS(1353), - [anon_sym_do] = ACTIONS(1353), - [anon_sym_if] = ACTIONS(1353), - [anon_sym_else] = ACTIONS(1353), - [anon_sym_match] = ACTIONS(1353), - [anon_sym_RBRACE] = ACTIONS(1365), - [anon_sym_try] = ACTIONS(1353), - [anon_sym_catch] = ACTIONS(1353), - [anon_sym_return] = ACTIONS(1353), - [anon_sym_source] = ACTIONS(1353), - [anon_sym_source_DASHenv] = ACTIONS(1353), - [anon_sym_hide] = ACTIONS(1353), - [anon_sym_hide_DASHenv] = ACTIONS(1353), - [anon_sym_overlay] = ACTIONS(1353), - [anon_sym_as] = ACTIONS(1353), + [anon_sym_break] = ACTIONS(1291), + [anon_sym_continue] = ACTIONS(1291), + [anon_sym_for] = ACTIONS(1291), + [anon_sym_in2] = ACTIONS(1291), + [anon_sym_loop] = ACTIONS(1291), + [anon_sym_make] = ACTIONS(1291), + [anon_sym_while] = ACTIONS(1291), + [anon_sym_do] = ACTIONS(1291), + [anon_sym_if] = ACTIONS(1291), + [anon_sym_else] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1291), + [anon_sym_RBRACE] = ACTIONS(1305), + [anon_sym_try] = ACTIONS(1291), + [anon_sym_catch] = ACTIONS(1291), + [anon_sym_return] = ACTIONS(1291), + [anon_sym_source] = ACTIONS(1291), + [anon_sym_source_DASHenv] = ACTIONS(1291), + [anon_sym_hide] = ACTIONS(1291), + [anon_sym_hide_DASHenv] = ACTIONS(1291), + [anon_sym_overlay] = ACTIONS(1291), + [anon_sym_as] = ACTIONS(1291), [anon_sym_PLUS2] = ACTIONS(203), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1359), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1361), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1299), [aux_sym__val_number_decimal_token1] = ACTIONS(1254), [aux_sym__val_number_decimal_token2] = ACTIONS(1256), [aux_sym__val_number_decimal_token3] = ACTIONS(1258), @@ -98053,37 +96939,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1264), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1363), - [anon_sym_register] = ACTIONS(1353), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1301), + [anon_sym_register] = ACTIONS(1291), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(1266), }, [205] = { - [sym_cmd_identifier] = STATE(6364), - [sym_expr_parenthesized] = STATE(7726), - [sym__spread_parenthesized] = STATE(694), - [sym__spread_variable] = STATE(732), - [sym_val_variable] = STATE(671), - [sym_val_number] = STATE(7726), - [sym__val_number_decimal] = STATE(3661), - [sym__val_number] = STATE(1591), - [sym_val_string] = STATE(7726), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(7726), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym__spread_record] = STATE(694), - [sym_record_entry] = STATE(740), - [sym__record_key] = STATE(7657), + [sym_cmd_identifier] = STATE(6177), + [sym_expr_parenthesized] = STATE(7053), + [sym__spread_parenthesized] = STATE(693), + [sym__spread_variable] = STATE(694), + [sym_val_variable] = STATE(614), + [sym_val_number] = STATE(7053), + [sym__val_number_decimal] = STATE(3447), + [sym__val_number] = STATE(1499), + [sym_val_string] = STATE(7053), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(7053), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym__spread_record] = STATE(693), + [sym_record_entry] = STATE(676), + [sym__record_key] = STATE(7022), [sym_comment] = STATE(205), - [aux_sym__match_pattern_record_repeat1] = STATE(202), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_alias] = ACTIONS(1353), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_let_DASHenv] = ACTIONS(1353), - [anon_sym_mut] = ACTIONS(1353), - [anon_sym_const] = ACTIONS(1353), + [aux_sym__match_pattern_record_repeat1] = STATE(206), + [anon_sym_export] = ACTIONS(1291), + [anon_sym_alias] = ACTIONS(1291), + [anon_sym_let] = ACTIONS(1291), + [anon_sym_let_DASHenv] = ACTIONS(1291), + [anon_sym_mut] = ACTIONS(1291), + [anon_sym_const] = ACTIONS(1291), [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), @@ -98124,39 +97010,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(133), [aux_sym_cmd_identifier_token39] = ACTIONS(135), [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [anon_sym_def] = ACTIONS(1353), - [anon_sym_export_DASHenv] = ACTIONS(1353), - [anon_sym_extern] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_use] = ACTIONS(1353), + [anon_sym_def] = ACTIONS(1291), + [anon_sym_export_DASHenv] = ACTIONS(1291), + [anon_sym_extern] = ACTIONS(1291), + [anon_sym_module] = ACTIONS(1291), + [anon_sym_use] = ACTIONS(1291), [anon_sym_LPAREN] = ACTIONS(1248), - [anon_sym_DOLLAR] = ACTIONS(1355), - [anon_sym_error] = ACTIONS(1353), + [anon_sym_DOLLAR] = ACTIONS(1293), + [anon_sym_error] = ACTIONS(1291), [anon_sym_DASH2] = ACTIONS(203), - [anon_sym_break] = ACTIONS(1353), - [anon_sym_continue] = ACTIONS(1353), - [anon_sym_for] = ACTIONS(1353), - [anon_sym_in2] = ACTIONS(1353), - [anon_sym_loop] = ACTIONS(1353), - [anon_sym_make] = ACTIONS(1353), - [anon_sym_while] = ACTIONS(1353), - [anon_sym_do] = ACTIONS(1353), - [anon_sym_if] = ACTIONS(1353), - [anon_sym_else] = ACTIONS(1353), - [anon_sym_match] = ACTIONS(1353), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_try] = ACTIONS(1353), - [anon_sym_catch] = ACTIONS(1353), - [anon_sym_return] = ACTIONS(1353), - [anon_sym_source] = ACTIONS(1353), - [anon_sym_source_DASHenv] = ACTIONS(1353), - [anon_sym_hide] = ACTIONS(1353), - [anon_sym_hide_DASHenv] = ACTIONS(1353), - [anon_sym_overlay] = ACTIONS(1353), - [anon_sym_as] = ACTIONS(1353), + [anon_sym_break] = ACTIONS(1291), + [anon_sym_continue] = ACTIONS(1291), + [anon_sym_for] = ACTIONS(1291), + [anon_sym_in2] = ACTIONS(1291), + [anon_sym_loop] = ACTIONS(1291), + [anon_sym_make] = ACTIONS(1291), + [anon_sym_while] = ACTIONS(1291), + [anon_sym_do] = ACTIONS(1291), + [anon_sym_if] = ACTIONS(1291), + [anon_sym_else] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1291), + [anon_sym_RBRACE] = ACTIONS(1307), + [anon_sym_try] = ACTIONS(1291), + [anon_sym_catch] = ACTIONS(1291), + [anon_sym_return] = ACTIONS(1291), + [anon_sym_source] = ACTIONS(1291), + [anon_sym_source_DASHenv] = ACTIONS(1291), + [anon_sym_hide] = ACTIONS(1291), + [anon_sym_hide_DASHenv] = ACTIONS(1291), + [anon_sym_overlay] = ACTIONS(1291), + [anon_sym_as] = ACTIONS(1291), [anon_sym_PLUS2] = ACTIONS(203), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1359), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1361), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1297), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1299), [aux_sym__val_number_decimal_token1] = ACTIONS(1254), [aux_sym__val_number_decimal_token2] = ACTIONS(1256), [aux_sym__val_number_decimal_token3] = ACTIONS(1258), @@ -98172,37 +97058,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1264), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1363), - [anon_sym_register] = ACTIONS(1353), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1301), + [anon_sym_register] = ACTIONS(1291), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(1266), }, [206] = { - [sym_cmd_identifier] = STATE(6364), - [sym_expr_parenthesized] = STATE(7726), - [sym__spread_parenthesized] = STATE(694), - [sym__spread_variable] = STATE(732), - [sym_val_variable] = STATE(671), - [sym_val_number] = STATE(7726), - [sym__val_number_decimal] = STATE(3661), - [sym__val_number] = STATE(1591), - [sym_val_string] = STATE(7726), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(7726), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym__spread_record] = STATE(694), - [sym_record_entry] = STATE(740), - [sym__record_key] = STATE(7657), + [sym_cmd_identifier] = STATE(6177), + [sym_expr_parenthesized] = STATE(7053), + [sym__spread_parenthesized] = STATE(693), + [sym__spread_variable] = STATE(694), + [sym_val_variable] = STATE(614), + [sym_val_number] = STATE(7053), + [sym__val_number_decimal] = STATE(3447), + [sym__val_number] = STATE(1499), + [sym_val_string] = STATE(7053), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(7053), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym__spread_record] = STATE(693), + [sym_record_entry] = STATE(676), + [sym__record_key] = STATE(7022), [sym_comment] = STATE(206), - [aux_sym__match_pattern_record_repeat1] = STATE(203), - [anon_sym_export] = ACTIONS(1353), - [anon_sym_alias] = ACTIONS(1353), - [anon_sym_let] = ACTIONS(1353), - [anon_sym_let_DASHenv] = ACTIONS(1353), - [anon_sym_mut] = ACTIONS(1353), - [anon_sym_const] = ACTIONS(1353), + [aux_sym__match_pattern_record_repeat1] = STATE(206), + [anon_sym_export] = ACTIONS(1309), + [anon_sym_alias] = ACTIONS(1309), + [anon_sym_let] = ACTIONS(1309), + [anon_sym_let_DASHenv] = ACTIONS(1309), + [anon_sym_mut] = ACTIONS(1309), + [anon_sym_const] = ACTIONS(1309), + [aux_sym_cmd_identifier_token1] = ACTIONS(1312), + [aux_sym_cmd_identifier_token2] = ACTIONS(1315), + [aux_sym_cmd_identifier_token3] = ACTIONS(1315), + [aux_sym_cmd_identifier_token4] = ACTIONS(1315), + [aux_sym_cmd_identifier_token5] = ACTIONS(1315), + [aux_sym_cmd_identifier_token6] = ACTIONS(1315), + [aux_sym_cmd_identifier_token7] = ACTIONS(1315), + [aux_sym_cmd_identifier_token8] = ACTIONS(1312), + [aux_sym_cmd_identifier_token9] = ACTIONS(1312), + [aux_sym_cmd_identifier_token10] = ACTIONS(1315), + [aux_sym_cmd_identifier_token11] = ACTIONS(1315), + [aux_sym_cmd_identifier_token12] = ACTIONS(1312), + [aux_sym_cmd_identifier_token13] = ACTIONS(1312), + [aux_sym_cmd_identifier_token14] = ACTIONS(1312), + [aux_sym_cmd_identifier_token15] = ACTIONS(1312), + [aux_sym_cmd_identifier_token16] = ACTIONS(1315), + [aux_sym_cmd_identifier_token17] = ACTIONS(1315), + [aux_sym_cmd_identifier_token18] = ACTIONS(1315), + [aux_sym_cmd_identifier_token19] = ACTIONS(1315), + [aux_sym_cmd_identifier_token20] = ACTIONS(1315), + [aux_sym_cmd_identifier_token21] = ACTIONS(1315), + [aux_sym_cmd_identifier_token22] = ACTIONS(1315), + [aux_sym_cmd_identifier_token23] = ACTIONS(1315), + [aux_sym_cmd_identifier_token24] = ACTIONS(1315), + [aux_sym_cmd_identifier_token25] = ACTIONS(1315), + [aux_sym_cmd_identifier_token26] = ACTIONS(1315), + [aux_sym_cmd_identifier_token27] = ACTIONS(1315), + [aux_sym_cmd_identifier_token28] = ACTIONS(1315), + [aux_sym_cmd_identifier_token29] = ACTIONS(1315), + [aux_sym_cmd_identifier_token30] = ACTIONS(1315), + [aux_sym_cmd_identifier_token31] = ACTIONS(1315), + [aux_sym_cmd_identifier_token32] = ACTIONS(1315), + [aux_sym_cmd_identifier_token33] = ACTIONS(1315), + [aux_sym_cmd_identifier_token34] = ACTIONS(1312), + [aux_sym_cmd_identifier_token35] = ACTIONS(1315), + [aux_sym_cmd_identifier_token36] = ACTIONS(1315), + [aux_sym_cmd_identifier_token37] = ACTIONS(1315), + [aux_sym_cmd_identifier_token38] = ACTIONS(1312), + [aux_sym_cmd_identifier_token39] = ACTIONS(1315), + [aux_sym_cmd_identifier_token40] = ACTIONS(1315), + [anon_sym_def] = ACTIONS(1309), + [anon_sym_export_DASHenv] = ACTIONS(1309), + [anon_sym_extern] = ACTIONS(1309), + [anon_sym_module] = ACTIONS(1309), + [anon_sym_use] = ACTIONS(1309), + [anon_sym_LPAREN] = ACTIONS(1318), + [anon_sym_DOLLAR] = ACTIONS(1321), + [anon_sym_error] = ACTIONS(1309), + [anon_sym_DASH2] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1309), + [anon_sym_continue] = ACTIONS(1309), + [anon_sym_for] = ACTIONS(1309), + [anon_sym_in2] = ACTIONS(1309), + [anon_sym_loop] = ACTIONS(1309), + [anon_sym_make] = ACTIONS(1309), + [anon_sym_while] = ACTIONS(1309), + [anon_sym_do] = ACTIONS(1309), + [anon_sym_if] = ACTIONS(1309), + [anon_sym_else] = ACTIONS(1309), + [anon_sym_match] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1327), + [anon_sym_try] = ACTIONS(1309), + [anon_sym_catch] = ACTIONS(1309), + [anon_sym_return] = ACTIONS(1309), + [anon_sym_source] = ACTIONS(1309), + [anon_sym_source_DASHenv] = ACTIONS(1309), + [anon_sym_hide] = ACTIONS(1309), + [anon_sym_hide_DASHenv] = ACTIONS(1309), + [anon_sym_overlay] = ACTIONS(1309), + [anon_sym_as] = ACTIONS(1309), + [anon_sym_PLUS2] = ACTIONS(1324), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1329), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1332), + [aux_sym__val_number_decimal_token1] = ACTIONS(1335), + [aux_sym__val_number_decimal_token2] = ACTIONS(1338), + [aux_sym__val_number_decimal_token3] = ACTIONS(1341), + [aux_sym__val_number_decimal_token4] = ACTIONS(1344), + [aux_sym__val_number_token1] = ACTIONS(1347), + [aux_sym__val_number_token2] = ACTIONS(1347), + [aux_sym__val_number_token3] = ACTIONS(1347), + [aux_sym__val_number_token4] = ACTIONS(1350), + [aux_sym__val_number_token5] = ACTIONS(1350), + [aux_sym__val_number_token6] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1353), + [sym__str_single_quotes] = ACTIONS(1356), + [sym__str_back_ticks] = ACTIONS(1356), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1359), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1362), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1365), + [anon_sym_register] = ACTIONS(1309), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1368), + }, + [207] = { + [sym_cmd_identifier] = STATE(6089), + [sym_expr_parenthesized] = STATE(7080), + [sym__spread_parenthesized] = STATE(6808), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(7080), + [sym_val_number] = STATE(7080), + [sym__val_number_decimal] = STATE(3447), + [sym__val_number] = STATE(1499), + [sym_val_string] = STATE(7080), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(7080), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym__spread_record] = STATE(6808), + [sym_record_entry] = STATE(6503), + [sym__record_key] = STATE(7315), + [sym_comment] = STATE(207), + [aux_sym_record_body_repeat1] = STATE(208), + [anon_sym_export] = ACTIONS(279), + [anon_sym_alias] = ACTIONS(279), + [anon_sym_let] = ACTIONS(279), + [anon_sym_let_DASHenv] = ACTIONS(279), + [anon_sym_mut] = ACTIONS(279), + [anon_sym_const] = ACTIONS(279), [aux_sym_cmd_identifier_token1] = ACTIONS(133), [aux_sym_cmd_identifier_token2] = ACTIONS(135), [aux_sym_cmd_identifier_token3] = ACTIONS(135), @@ -98243,39 +97248,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(133), [aux_sym_cmd_identifier_token39] = ACTIONS(135), [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [anon_sym_def] = ACTIONS(1353), - [anon_sym_export_DASHenv] = ACTIONS(1353), - [anon_sym_extern] = ACTIONS(1353), - [anon_sym_module] = ACTIONS(1353), - [anon_sym_use] = ACTIONS(1353), + [anon_sym_def] = ACTIONS(279), + [anon_sym_export_DASHenv] = ACTIONS(279), + [anon_sym_extern] = ACTIONS(279), + [anon_sym_module] = ACTIONS(279), + [anon_sym_use] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(1248), - [anon_sym_DOLLAR] = ACTIONS(1355), - [anon_sym_error] = ACTIONS(1353), + [anon_sym_DOLLAR] = ACTIONS(1250), + [anon_sym_error] = ACTIONS(279), [anon_sym_DASH2] = ACTIONS(203), - [anon_sym_break] = ACTIONS(1353), - [anon_sym_continue] = ACTIONS(1353), - [anon_sym_for] = ACTIONS(1353), - [anon_sym_in2] = ACTIONS(1353), - [anon_sym_loop] = ACTIONS(1353), - [anon_sym_make] = ACTIONS(1353), - [anon_sym_while] = ACTIONS(1353), - [anon_sym_do] = ACTIONS(1353), - [anon_sym_if] = ACTIONS(1353), - [anon_sym_else] = ACTIONS(1353), - [anon_sym_match] = ACTIONS(1353), - [anon_sym_RBRACE] = ACTIONS(1369), - [anon_sym_try] = ACTIONS(1353), - [anon_sym_catch] = ACTIONS(1353), - [anon_sym_return] = ACTIONS(1353), - [anon_sym_source] = ACTIONS(1353), - [anon_sym_source_DASHenv] = ACTIONS(1353), - [anon_sym_hide] = ACTIONS(1353), - [anon_sym_hide_DASHenv] = ACTIONS(1353), - [anon_sym_overlay] = ACTIONS(1353), - [anon_sym_as] = ACTIONS(1353), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(279), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in2] = ACTIONS(279), + [anon_sym_loop] = ACTIONS(279), + [anon_sym_make] = ACTIONS(279), + [anon_sym_while] = ACTIONS(279), + [anon_sym_do] = ACTIONS(279), + [anon_sym_if] = ACTIONS(279), + [anon_sym_else] = ACTIONS(279), + [anon_sym_match] = ACTIONS(279), + [anon_sym_try] = ACTIONS(279), + [anon_sym_catch] = ACTIONS(279), + [anon_sym_return] = ACTIONS(279), + [anon_sym_source] = ACTIONS(279), + [anon_sym_source_DASHenv] = ACTIONS(279), + [anon_sym_hide] = ACTIONS(279), + [anon_sym_hide_DASHenv] = ACTIONS(279), + [anon_sym_overlay] = ACTIONS(279), + [anon_sym_as] = ACTIONS(279), [anon_sym_PLUS2] = ACTIONS(203), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1359), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1361), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), [aux_sym__val_number_decimal_token1] = ACTIONS(1254), [aux_sym__val_number_decimal_token2] = ACTIONS(1256), [aux_sym__val_number_decimal_token3] = ACTIONS(1258), @@ -98291,31 +97295,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1264), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1363), - [anon_sym_register] = ACTIONS(1353), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(309), + [anon_sym_register] = ACTIONS(279), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(1266), }, - [207] = { - [sym_cmd_identifier] = STATE(6333), - [sym_expr_parenthesized] = STATE(7584), - [sym__spread_parenthesized] = STATE(7449), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(7584), - [sym_val_number] = STATE(7584), - [sym__val_number_decimal] = STATE(3661), - [sym__val_number] = STATE(1591), - [sym_val_string] = STATE(7584), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(7584), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym__spread_record] = STATE(7449), - [sym_record_entry] = STATE(7514), - [sym__record_key] = STATE(7628), - [sym_comment] = STATE(207), - [aux_sym_record_body_repeat1] = STATE(207), + [208] = { + [sym_cmd_identifier] = STATE(6089), + [sym_expr_parenthesized] = STATE(7080), + [sym__spread_parenthesized] = STATE(6808), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(7080), + [sym_val_number] = STATE(7080), + [sym__val_number_decimal] = STATE(3447), + [sym__val_number] = STATE(1499), + [sym_val_string] = STATE(7080), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(7080), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym__spread_record] = STATE(6808), + [sym_record_entry] = STATE(6833), + [sym__record_key] = STATE(7315), + [sym_comment] = STATE(208), + [aux_sym_record_body_repeat1] = STATE(208), [anon_sym_export] = ACTIONS(1371), [anon_sym_alias] = ACTIONS(1371), [anon_sym_let] = ACTIONS(1371), @@ -98414,144 +97418,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(1428), }, - [208] = { - [sym_cmd_identifier] = STATE(6333), - [sym_expr_parenthesized] = STATE(7584), - [sym__spread_parenthesized] = STATE(7449), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(7584), - [sym_val_number] = STATE(7584), - [sym__val_number_decimal] = STATE(3661), - [sym__val_number] = STATE(1591), - [sym_val_string] = STATE(7584), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(7584), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym__spread_record] = STATE(7449), - [sym_record_entry] = STATE(7140), - [sym__record_key] = STATE(7628), - [sym_comment] = STATE(208), - [aux_sym_record_body_repeat1] = STATE(207), - [anon_sym_export] = ACTIONS(279), - [anon_sym_alias] = ACTIONS(279), - [anon_sym_let] = ACTIONS(279), - [anon_sym_let_DASHenv] = ACTIONS(279), - [anon_sym_mut] = ACTIONS(279), - [anon_sym_const] = ACTIONS(279), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(135), - [aux_sym_cmd_identifier_token3] = ACTIONS(135), - [aux_sym_cmd_identifier_token4] = ACTIONS(135), - [aux_sym_cmd_identifier_token5] = ACTIONS(135), - [aux_sym_cmd_identifier_token6] = ACTIONS(135), - [aux_sym_cmd_identifier_token7] = ACTIONS(135), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(135), - [aux_sym_cmd_identifier_token11] = ACTIONS(135), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(135), - [aux_sym_cmd_identifier_token17] = ACTIONS(135), - [aux_sym_cmd_identifier_token18] = ACTIONS(135), - [aux_sym_cmd_identifier_token19] = ACTIONS(135), - [aux_sym_cmd_identifier_token20] = ACTIONS(135), - [aux_sym_cmd_identifier_token21] = ACTIONS(135), - [aux_sym_cmd_identifier_token22] = ACTIONS(135), - [aux_sym_cmd_identifier_token23] = ACTIONS(135), - [aux_sym_cmd_identifier_token24] = ACTIONS(135), - [aux_sym_cmd_identifier_token25] = ACTIONS(135), - [aux_sym_cmd_identifier_token26] = ACTIONS(135), - [aux_sym_cmd_identifier_token27] = ACTIONS(135), - [aux_sym_cmd_identifier_token28] = ACTIONS(135), - [aux_sym_cmd_identifier_token29] = ACTIONS(135), - [aux_sym_cmd_identifier_token30] = ACTIONS(135), - [aux_sym_cmd_identifier_token31] = ACTIONS(135), - [aux_sym_cmd_identifier_token32] = ACTIONS(135), - [aux_sym_cmd_identifier_token33] = ACTIONS(135), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(135), - [aux_sym_cmd_identifier_token36] = ACTIONS(135), - [aux_sym_cmd_identifier_token37] = ACTIONS(135), - [aux_sym_cmd_identifier_token38] = ACTIONS(133), - [aux_sym_cmd_identifier_token39] = ACTIONS(135), - [aux_sym_cmd_identifier_token40] = ACTIONS(135), - [anon_sym_def] = ACTIONS(279), - [anon_sym_export_DASHenv] = ACTIONS(279), - [anon_sym_extern] = ACTIONS(279), - [anon_sym_module] = ACTIONS(279), - [anon_sym_use] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(1248), - [anon_sym_DOLLAR] = ACTIONS(1250), - [anon_sym_error] = ACTIONS(279), - [anon_sym_DASH2] = ACTIONS(203), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(279), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in2] = ACTIONS(279), - [anon_sym_loop] = ACTIONS(279), - [anon_sym_make] = ACTIONS(279), - [anon_sym_while] = ACTIONS(279), - [anon_sym_do] = ACTIONS(279), - [anon_sym_if] = ACTIONS(279), - [anon_sym_else] = ACTIONS(279), - [anon_sym_match] = ACTIONS(279), - [anon_sym_try] = ACTIONS(279), - [anon_sym_catch] = ACTIONS(279), - [anon_sym_return] = ACTIONS(279), - [anon_sym_source] = ACTIONS(279), - [anon_sym_source_DASHenv] = ACTIONS(279), - [anon_sym_hide] = ACTIONS(279), - [anon_sym_hide_DASHenv] = ACTIONS(279), - [anon_sym_overlay] = ACTIONS(279), - [anon_sym_as] = ACTIONS(279), - [anon_sym_PLUS2] = ACTIONS(203), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(1254), - [aux_sym__val_number_decimal_token2] = ACTIONS(1256), - [aux_sym__val_number_decimal_token3] = ACTIONS(1258), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), - [aux_sym__val_number_token1] = ACTIONS(223), - [aux_sym__val_number_token2] = ACTIONS(223), - [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(225), - [aux_sym__val_number_token5] = ACTIONS(225), - [aux_sym__val_number_token6] = ACTIONS(225), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym__str_single_quotes] = ACTIONS(1264), - [sym__str_back_ticks] = ACTIONS(1264), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(309), - [anon_sym_register] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1266), - }, - [209] = { - [sym_cmd_identifier] = STATE(6333), - [sym_expr_parenthesized] = STATE(7584), - [sym__spread_parenthesized] = STATE(7449), - [sym__spread_variable] = STATE(7478), - [sym_val_variable] = STATE(7584), - [sym_val_number] = STATE(7584), - [sym__val_number_decimal] = STATE(3661), - [sym__val_number] = STATE(1591), - [sym_val_string] = STATE(7584), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(7584), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym__spread_record] = STATE(7449), - [sym_record_entry] = STATE(7038), - [sym__record_key] = STATE(7628), - [sym_comment] = STATE(209), - [aux_sym_record_body_repeat1] = STATE(207), + [209] = { + [sym_cmd_identifier] = STATE(6089), + [sym_expr_parenthesized] = STATE(7080), + [sym__spread_parenthesized] = STATE(6808), + [sym__spread_variable] = STATE(6862), + [sym_val_variable] = STATE(7080), + [sym_val_number] = STATE(7080), + [sym__val_number_decimal] = STATE(3447), + [sym__val_number] = STATE(1499), + [sym_val_string] = STATE(7080), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(7080), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym__spread_record] = STATE(6808), + [sym_record_entry] = STATE(6450), + [sym__record_key] = STATE(7315), + [sym_comment] = STATE(209), + [aux_sym_record_body_repeat1] = STATE(208), [anon_sym_export] = ACTIONS(279), [anon_sym_alias] = ACTIONS(279), [anon_sym_let] = ACTIONS(279), @@ -98651,9 +97537,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1266), }, [210] = { - [sym__expr_parenthesized_immediate] = STATE(470), - [sym__immediate_decimal] = STATE(369), - [sym_val_variable] = STATE(470), + [sym__expr_parenthesized_immediate] = STATE(457), + [sym__immediate_decimal] = STATE(374), + [sym_val_variable] = STATE(457), [sym_comment] = STATE(210), [anon_sym_export] = ACTIONS(1431), [anon_sym_alias] = ACTIONS(1431), @@ -98764,9 +97650,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1445), }, [211] = { - [sym__expr_parenthesized_immediate] = STATE(619), - [sym__immediate_decimal] = STATE(497), - [sym_val_variable] = STATE(619), + [sym__expr_parenthesized_immediate] = STATE(487), + [sym__immediate_decimal] = STATE(402), + [sym_val_variable] = STATE(487), [sym_comment] = STATE(211), [anon_sym_export] = ACTIONS(1431), [anon_sym_alias] = ACTIONS(1431), @@ -98775,6 +97661,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(1431), [anon_sym_const] = ACTIONS(1431), [aux_sym_cmd_identifier_token1] = ACTIONS(1431), + [aux_sym_cmd_identifier_token2] = ACTIONS(1445), + [aux_sym_cmd_identifier_token3] = ACTIONS(1445), + [aux_sym_cmd_identifier_token4] = ACTIONS(1445), + [aux_sym_cmd_identifier_token5] = ACTIONS(1445), + [aux_sym_cmd_identifier_token6] = ACTIONS(1445), + [aux_sym_cmd_identifier_token7] = ACTIONS(1445), + [aux_sym_cmd_identifier_token8] = ACTIONS(1431), + [aux_sym_cmd_identifier_token9] = ACTIONS(1431), + [aux_sym_cmd_identifier_token10] = ACTIONS(1445), + [aux_sym_cmd_identifier_token11] = ACTIONS(1445), + [aux_sym_cmd_identifier_token12] = ACTIONS(1431), + [aux_sym_cmd_identifier_token13] = ACTIONS(1431), + [aux_sym_cmd_identifier_token14] = ACTIONS(1431), + [aux_sym_cmd_identifier_token15] = ACTIONS(1431), + [aux_sym_cmd_identifier_token16] = ACTIONS(1445), + [aux_sym_cmd_identifier_token17] = ACTIONS(1445), + [aux_sym_cmd_identifier_token18] = ACTIONS(1445), + [aux_sym_cmd_identifier_token19] = ACTIONS(1445), + [aux_sym_cmd_identifier_token20] = ACTIONS(1445), + [aux_sym_cmd_identifier_token21] = ACTIONS(1445), + [aux_sym_cmd_identifier_token22] = ACTIONS(1445), + [aux_sym_cmd_identifier_token23] = ACTIONS(1445), + [aux_sym_cmd_identifier_token24] = ACTIONS(1445), + [aux_sym_cmd_identifier_token25] = ACTIONS(1445), + [aux_sym_cmd_identifier_token26] = ACTIONS(1445), + [aux_sym_cmd_identifier_token27] = ACTIONS(1445), + [aux_sym_cmd_identifier_token28] = ACTIONS(1445), + [aux_sym_cmd_identifier_token29] = ACTIONS(1445), + [aux_sym_cmd_identifier_token30] = ACTIONS(1445), + [aux_sym_cmd_identifier_token31] = ACTIONS(1445), + [aux_sym_cmd_identifier_token32] = ACTIONS(1445), + [aux_sym_cmd_identifier_token33] = ACTIONS(1445), + [aux_sym_cmd_identifier_token34] = ACTIONS(1431), + [aux_sym_cmd_identifier_token35] = ACTIONS(1445), + [aux_sym_cmd_identifier_token36] = ACTIONS(1445), + [aux_sym_cmd_identifier_token37] = ACTIONS(1445), + [aux_sym_cmd_identifier_token38] = ACTIONS(1431), + [aux_sym_cmd_identifier_token39] = ACTIONS(1445), + [aux_sym_cmd_identifier_token40] = ACTIONS(1445), + [anon_sym_def] = ACTIONS(1431), + [anon_sym_export_DASHenv] = ACTIONS(1431), + [anon_sym_extern] = ACTIONS(1431), + [anon_sym_module] = ACTIONS(1431), + [anon_sym_use] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_COMMA] = ACTIONS(1445), + [anon_sym_DOLLAR] = ACTIONS(1449), + [anon_sym_error] = ACTIONS(1431), + [anon_sym_DASH2] = ACTIONS(1431), + [anon_sym_break] = ACTIONS(1431), + [anon_sym_continue] = ACTIONS(1431), + [anon_sym_for] = ACTIONS(1431), + [anon_sym_in2] = ACTIONS(1431), + [anon_sym_loop] = ACTIONS(1431), + [anon_sym_make] = ACTIONS(1431), + [anon_sym_while] = ACTIONS(1431), + [anon_sym_do] = ACTIONS(1431), + [anon_sym_if] = ACTIONS(1431), + [anon_sym_else] = ACTIONS(1431), + [anon_sym_match] = ACTIONS(1431), + [anon_sym_RBRACE] = ACTIONS(1445), + [anon_sym_try] = ACTIONS(1431), + [anon_sym_catch] = ACTIONS(1431), + [anon_sym_return] = ACTIONS(1431), + [anon_sym_source] = ACTIONS(1431), + [anon_sym_source_DASHenv] = ACTIONS(1431), + [anon_sym_hide] = ACTIONS(1431), + [anon_sym_hide_DASHenv] = ACTIONS(1431), + [anon_sym_overlay] = ACTIONS(1431), + [anon_sym_as] = ACTIONS(1431), + [anon_sym_LPAREN2] = ACTIONS(1451), + [anon_sym_PLUS2] = ACTIONS(1431), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1445), + [anon_sym_DOT] = ACTIONS(1453), + [aux_sym__immediate_decimal_token1] = ACTIONS(1455), + [aux_sym__immediate_decimal_token3] = ACTIONS(1457), + [aux_sym__immediate_decimal_token4] = ACTIONS(1459), + [aux_sym__immediate_decimal_token5] = ACTIONS(1461), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1445), + [aux_sym__val_number_decimal_token1] = ACTIONS(1431), + [aux_sym__val_number_decimal_token2] = ACTIONS(1431), + [aux_sym__val_number_decimal_token3] = ACTIONS(1431), + [aux_sym__val_number_decimal_token4] = ACTIONS(1431), + [aux_sym__val_number_token1] = ACTIONS(1445), + [aux_sym__val_number_token2] = ACTIONS(1445), + [aux_sym__val_number_token3] = ACTIONS(1445), + [aux_sym__val_number_token4] = ACTIONS(1431), + [aux_sym__val_number_token5] = ACTIONS(1431), + [aux_sym__val_number_token6] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1445), + [sym__str_single_quotes] = ACTIONS(1445), + [sym__str_back_ticks] = ACTIONS(1445), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1445), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1445), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1445), + [anon_sym_register] = ACTIONS(1431), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1447), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1445), + }, + [212] = { + [sym__expr_parenthesized_immediate] = STATE(595), + [sym__immediate_decimal] = STATE(509), + [sym_val_variable] = STATE(595), + [sym_comment] = STATE(212), + [anon_sym_export] = ACTIONS(1431), + [anon_sym_alias] = ACTIONS(1431), + [anon_sym_let] = ACTIONS(1431), + [anon_sym_let_DASHenv] = ACTIONS(1431), + [anon_sym_mut] = ACTIONS(1431), + [anon_sym_const] = ACTIONS(1431), + [aux_sym_cmd_identifier_token1] = ACTIONS(1431), [aux_sym_cmd_identifier_token2] = ACTIONS(1431), [aux_sym_cmd_identifier_token3] = ACTIONS(1431), [aux_sym_cmd_identifier_token4] = ACTIONS(1431), @@ -98821,7 +97819,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1431), [anon_sym_LPAREN] = ACTIONS(1431), [anon_sym_COMMA] = ACTIONS(1431), - [anon_sym_DOLLAR] = ACTIONS(1449), + [anon_sym_DOLLAR] = ACTIONS(1463), [anon_sym_error] = ACTIONS(1431), [anon_sym_DASH2] = ACTIONS(1431), [anon_sym_break] = ACTIONS(1431), @@ -98845,13 +97843,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(1431), [anon_sym_overlay] = ACTIONS(1431), [anon_sym_as] = ACTIONS(1431), - [anon_sym_LPAREN2] = ACTIONS(1451), + [anon_sym_LPAREN2] = ACTIONS(1465), [anon_sym_PLUS2] = ACTIONS(1431), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1431), - [aux_sym__immediate_decimal_token1] = ACTIONS(1453), - [aux_sym__immediate_decimal_token3] = ACTIONS(1453), - [aux_sym__immediate_decimal_token4] = ACTIONS(1455), - [aux_sym__immediate_decimal_token5] = ACTIONS(1457), + [aux_sym__immediate_decimal_token1] = ACTIONS(1467), + [aux_sym__immediate_decimal_token3] = ACTIONS(1467), + [aux_sym__immediate_decimal_token4] = ACTIONS(1469), + [aux_sym__immediate_decimal_token5] = ACTIONS(1471), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1431), [aux_sym__val_number_decimal_token1] = ACTIONS(1431), [aux_sym__val_number_decimal_token2] = ACTIONS(1431), @@ -98875,1048 +97873,936 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1445), }, - [212] = { - [sym_comment] = STATE(212), - [aux_sym__block_body_repeat1] = STATE(212), - [anon_sym_export] = ACTIONS(1459), - [anon_sym_alias] = ACTIONS(1459), - [anon_sym_let] = ACTIONS(1459), - [anon_sym_let_DASHenv] = ACTIONS(1459), - [anon_sym_mut] = ACTIONS(1459), - [anon_sym_const] = ACTIONS(1459), - [aux_sym_cmd_identifier_token1] = ACTIONS(1459), - [aux_sym_cmd_identifier_token2] = ACTIONS(1461), - [aux_sym_cmd_identifier_token3] = ACTIONS(1461), - [aux_sym_cmd_identifier_token4] = ACTIONS(1461), - [aux_sym_cmd_identifier_token5] = ACTIONS(1461), - [aux_sym_cmd_identifier_token6] = ACTIONS(1461), - [aux_sym_cmd_identifier_token7] = ACTIONS(1461), - [aux_sym_cmd_identifier_token8] = ACTIONS(1459), - [aux_sym_cmd_identifier_token9] = ACTIONS(1459), - [aux_sym_cmd_identifier_token10] = ACTIONS(1461), - [aux_sym_cmd_identifier_token11] = ACTIONS(1461), - [aux_sym_cmd_identifier_token12] = ACTIONS(1459), - [aux_sym_cmd_identifier_token13] = ACTIONS(1459), - [aux_sym_cmd_identifier_token14] = ACTIONS(1459), - [aux_sym_cmd_identifier_token15] = ACTIONS(1459), - [aux_sym_cmd_identifier_token16] = ACTIONS(1461), - [aux_sym_cmd_identifier_token17] = ACTIONS(1461), - [aux_sym_cmd_identifier_token18] = ACTIONS(1461), - [aux_sym_cmd_identifier_token19] = ACTIONS(1461), - [aux_sym_cmd_identifier_token20] = ACTIONS(1461), - [aux_sym_cmd_identifier_token21] = ACTIONS(1461), - [aux_sym_cmd_identifier_token22] = ACTIONS(1461), - [aux_sym_cmd_identifier_token23] = ACTIONS(1461), - [aux_sym_cmd_identifier_token24] = ACTIONS(1461), - [aux_sym_cmd_identifier_token25] = ACTIONS(1461), - [aux_sym_cmd_identifier_token26] = ACTIONS(1461), - [aux_sym_cmd_identifier_token27] = ACTIONS(1461), - [aux_sym_cmd_identifier_token28] = ACTIONS(1461), - [aux_sym_cmd_identifier_token29] = ACTIONS(1461), - [aux_sym_cmd_identifier_token30] = ACTIONS(1461), - [aux_sym_cmd_identifier_token31] = ACTIONS(1461), - [aux_sym_cmd_identifier_token32] = ACTIONS(1461), - [aux_sym_cmd_identifier_token33] = ACTIONS(1461), - [aux_sym_cmd_identifier_token34] = ACTIONS(1459), - [aux_sym_cmd_identifier_token35] = ACTIONS(1461), - [aux_sym_cmd_identifier_token36] = ACTIONS(1461), - [aux_sym_cmd_identifier_token37] = ACTIONS(1461), - [aux_sym_cmd_identifier_token38] = ACTIONS(1459), - [aux_sym_cmd_identifier_token39] = ACTIONS(1461), - [aux_sym_cmd_identifier_token40] = ACTIONS(1461), - [sym__newline] = ACTIONS(1463), - [anon_sym_SEMI] = ACTIONS(1463), - [anon_sym_AT] = ACTIONS(1461), - [anon_sym_def] = ACTIONS(1459), - [anon_sym_export_DASHenv] = ACTIONS(1459), - [anon_sym_extern] = ACTIONS(1459), - [anon_sym_module] = ACTIONS(1459), - [anon_sym_use] = ACTIONS(1459), - [anon_sym_LBRACK] = ACTIONS(1461), - [anon_sym_LPAREN] = ACTIONS(1461), - [anon_sym_RPAREN] = ACTIONS(1461), - [anon_sym_DOLLAR] = ACTIONS(1459), - [anon_sym_error] = ACTIONS(1459), - [anon_sym_DASH2] = ACTIONS(1459), - [anon_sym_break] = ACTIONS(1459), - [anon_sym_continue] = ACTIONS(1459), - [anon_sym_for] = ACTIONS(1459), - [anon_sym_loop] = ACTIONS(1459), - [anon_sym_while] = ACTIONS(1459), - [anon_sym_do] = ACTIONS(1459), - [anon_sym_if] = ACTIONS(1459), - [anon_sym_match] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(1461), - [anon_sym_DOT_DOT] = ACTIONS(1459), - [anon_sym_try] = ACTIONS(1459), - [anon_sym_return] = ACTIONS(1459), - [anon_sym_source] = ACTIONS(1459), - [anon_sym_source_DASHenv] = ACTIONS(1459), - [anon_sym_hide] = ACTIONS(1459), - [anon_sym_hide_DASHenv] = ACTIONS(1459), - [anon_sym_overlay] = ACTIONS(1459), - [anon_sym_where] = ACTIONS(1461), - [aux_sym_expr_unary_token1] = ACTIONS(1461), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1461), - [anon_sym_DOT_DOT_LT] = ACTIONS(1461), - [anon_sym_null] = ACTIONS(1459), - [anon_sym_true] = ACTIONS(1459), - [anon_sym_false] = ACTIONS(1459), - [aux_sym__val_number_decimal_token1] = ACTIONS(1459), - [aux_sym__val_number_decimal_token2] = ACTIONS(1461), - [aux_sym__val_number_decimal_token3] = ACTIONS(1461), - [aux_sym__val_number_decimal_token4] = ACTIONS(1461), - [aux_sym__val_number_token1] = ACTIONS(1461), - [aux_sym__val_number_token2] = ACTIONS(1461), - [aux_sym__val_number_token3] = ACTIONS(1461), - [aux_sym__val_number_token4] = ACTIONS(1459), - [aux_sym__val_number_token5] = ACTIONS(1459), - [aux_sym__val_number_token6] = ACTIONS(1459), - [anon_sym_0b] = ACTIONS(1459), - [anon_sym_0o] = ACTIONS(1459), - [anon_sym_0x] = ACTIONS(1459), - [sym_val_date] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1461), - [sym__str_single_quotes] = ACTIONS(1461), - [sym__str_back_ticks] = ACTIONS(1461), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1461), - [aux_sym_env_var_token1] = ACTIONS(1459), - [anon_sym_CARET] = ACTIONS(1461), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1461), - }, [213] = { - [sym__expr_parenthesized_immediate] = STATE(630), - [sym__immediate_decimal] = STATE(506), - [sym_val_variable] = STATE(630), + [sym__expr_parenthesized_immediate] = STATE(608), + [sym__immediate_decimal] = STATE(511), + [sym_val_variable] = STATE(608), [sym_comment] = STATE(213), - [anon_sym_export] = ACTIONS(1466), - [anon_sym_alias] = ACTIONS(1466), - [anon_sym_let] = ACTIONS(1466), - [anon_sym_let_DASHenv] = ACTIONS(1466), - [anon_sym_mut] = ACTIONS(1466), - [anon_sym_const] = ACTIONS(1466), - [aux_sym_cmd_identifier_token1] = ACTIONS(1466), - [aux_sym_cmd_identifier_token2] = ACTIONS(1466), - [aux_sym_cmd_identifier_token3] = ACTIONS(1466), - [aux_sym_cmd_identifier_token4] = ACTIONS(1466), - [aux_sym_cmd_identifier_token5] = ACTIONS(1466), - [aux_sym_cmd_identifier_token6] = ACTIONS(1466), - [aux_sym_cmd_identifier_token7] = ACTIONS(1466), - [aux_sym_cmd_identifier_token8] = ACTIONS(1466), - [aux_sym_cmd_identifier_token9] = ACTIONS(1466), - [aux_sym_cmd_identifier_token10] = ACTIONS(1466), - [aux_sym_cmd_identifier_token11] = ACTIONS(1466), - [aux_sym_cmd_identifier_token12] = ACTIONS(1466), - [aux_sym_cmd_identifier_token13] = ACTIONS(1466), - [aux_sym_cmd_identifier_token14] = ACTIONS(1466), - [aux_sym_cmd_identifier_token15] = ACTIONS(1466), - [aux_sym_cmd_identifier_token16] = ACTIONS(1466), - [aux_sym_cmd_identifier_token17] = ACTIONS(1466), - [aux_sym_cmd_identifier_token18] = ACTIONS(1466), - [aux_sym_cmd_identifier_token19] = ACTIONS(1466), - [aux_sym_cmd_identifier_token20] = ACTIONS(1466), - [aux_sym_cmd_identifier_token21] = ACTIONS(1466), - [aux_sym_cmd_identifier_token22] = ACTIONS(1466), - [aux_sym_cmd_identifier_token23] = ACTIONS(1466), - [aux_sym_cmd_identifier_token24] = ACTIONS(1466), - [aux_sym_cmd_identifier_token25] = ACTIONS(1466), - [aux_sym_cmd_identifier_token26] = ACTIONS(1466), - [aux_sym_cmd_identifier_token27] = ACTIONS(1466), - [aux_sym_cmd_identifier_token28] = ACTIONS(1466), - [aux_sym_cmd_identifier_token29] = ACTIONS(1466), - [aux_sym_cmd_identifier_token30] = ACTIONS(1466), - [aux_sym_cmd_identifier_token31] = ACTIONS(1466), - [aux_sym_cmd_identifier_token32] = ACTIONS(1466), - [aux_sym_cmd_identifier_token33] = ACTIONS(1466), - [aux_sym_cmd_identifier_token34] = ACTIONS(1466), - [aux_sym_cmd_identifier_token35] = ACTIONS(1466), - [aux_sym_cmd_identifier_token36] = ACTIONS(1466), - [aux_sym_cmd_identifier_token37] = ACTIONS(1466), - [aux_sym_cmd_identifier_token38] = ACTIONS(1466), - [aux_sym_cmd_identifier_token39] = ACTIONS(1466), - [aux_sym_cmd_identifier_token40] = ACTIONS(1466), - [anon_sym_def] = ACTIONS(1466), - [anon_sym_export_DASHenv] = ACTIONS(1466), - [anon_sym_extern] = ACTIONS(1466), - [anon_sym_module] = ACTIONS(1466), - [anon_sym_use] = ACTIONS(1466), - [anon_sym_LPAREN] = ACTIONS(1466), - [anon_sym_COMMA] = ACTIONS(1466), - [anon_sym_DOLLAR] = ACTIONS(1449), - [anon_sym_error] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1466), - [anon_sym_break] = ACTIONS(1466), - [anon_sym_continue] = ACTIONS(1466), - [anon_sym_for] = ACTIONS(1466), - [anon_sym_in2] = ACTIONS(1466), - [anon_sym_loop] = ACTIONS(1466), - [anon_sym_make] = ACTIONS(1466), - [anon_sym_while] = ACTIONS(1466), - [anon_sym_do] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1466), - [anon_sym_else] = ACTIONS(1466), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_try] = ACTIONS(1466), - [anon_sym_catch] = ACTIONS(1466), - [anon_sym_return] = ACTIONS(1466), - [anon_sym_source] = ACTIONS(1466), - [anon_sym_source_DASHenv] = ACTIONS(1466), - [anon_sym_hide] = ACTIONS(1466), - [anon_sym_hide_DASHenv] = ACTIONS(1466), - [anon_sym_overlay] = ACTIONS(1466), - [anon_sym_as] = ACTIONS(1466), - [anon_sym_LPAREN2] = ACTIONS(1451), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1466), - [aux_sym__immediate_decimal_token1] = ACTIONS(1453), - [aux_sym__immediate_decimal_token3] = ACTIONS(1453), - [aux_sym__immediate_decimal_token4] = ACTIONS(1455), - [aux_sym__immediate_decimal_token5] = ACTIONS(1457), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1466), - [aux_sym__val_number_decimal_token1] = ACTIONS(1466), - [aux_sym__val_number_decimal_token2] = ACTIONS(1466), - [aux_sym__val_number_decimal_token3] = ACTIONS(1466), - [aux_sym__val_number_decimal_token4] = ACTIONS(1466), - [aux_sym__val_number_token1] = ACTIONS(1466), - [aux_sym__val_number_token2] = ACTIONS(1466), - [aux_sym__val_number_token3] = ACTIONS(1466), - [aux_sym__val_number_token4] = ACTIONS(1466), - [aux_sym__val_number_token5] = ACTIONS(1466), - [aux_sym__val_number_token6] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym__str_single_quotes] = ACTIONS(1466), - [sym__str_back_ticks] = ACTIONS(1466), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1466), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1466), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1466), - [sym__entry_separator] = ACTIONS(1468), - [anon_sym_register] = ACTIONS(1466), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1470), + [anon_sym_export] = ACTIONS(1473), + [anon_sym_alias] = ACTIONS(1473), + [anon_sym_let] = ACTIONS(1473), + [anon_sym_let_DASHenv] = ACTIONS(1473), + [anon_sym_mut] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [aux_sym_cmd_identifier_token1] = ACTIONS(1473), + [aux_sym_cmd_identifier_token2] = ACTIONS(1473), + [aux_sym_cmd_identifier_token3] = ACTIONS(1473), + [aux_sym_cmd_identifier_token4] = ACTIONS(1473), + [aux_sym_cmd_identifier_token5] = ACTIONS(1473), + [aux_sym_cmd_identifier_token6] = ACTIONS(1473), + [aux_sym_cmd_identifier_token7] = ACTIONS(1473), + [aux_sym_cmd_identifier_token8] = ACTIONS(1473), + [aux_sym_cmd_identifier_token9] = ACTIONS(1473), + [aux_sym_cmd_identifier_token10] = ACTIONS(1473), + [aux_sym_cmd_identifier_token11] = ACTIONS(1473), + [aux_sym_cmd_identifier_token12] = ACTIONS(1473), + [aux_sym_cmd_identifier_token13] = ACTIONS(1473), + [aux_sym_cmd_identifier_token14] = ACTIONS(1473), + [aux_sym_cmd_identifier_token15] = ACTIONS(1473), + [aux_sym_cmd_identifier_token16] = ACTIONS(1473), + [aux_sym_cmd_identifier_token17] = ACTIONS(1473), + [aux_sym_cmd_identifier_token18] = ACTIONS(1473), + [aux_sym_cmd_identifier_token19] = ACTIONS(1473), + [aux_sym_cmd_identifier_token20] = ACTIONS(1473), + [aux_sym_cmd_identifier_token21] = ACTIONS(1473), + [aux_sym_cmd_identifier_token22] = ACTIONS(1473), + [aux_sym_cmd_identifier_token23] = ACTIONS(1473), + [aux_sym_cmd_identifier_token24] = ACTIONS(1473), + [aux_sym_cmd_identifier_token25] = ACTIONS(1473), + [aux_sym_cmd_identifier_token26] = ACTIONS(1473), + [aux_sym_cmd_identifier_token27] = ACTIONS(1473), + [aux_sym_cmd_identifier_token28] = ACTIONS(1473), + [aux_sym_cmd_identifier_token29] = ACTIONS(1473), + [aux_sym_cmd_identifier_token30] = ACTIONS(1473), + [aux_sym_cmd_identifier_token31] = ACTIONS(1473), + [aux_sym_cmd_identifier_token32] = ACTIONS(1473), + [aux_sym_cmd_identifier_token33] = ACTIONS(1473), + [aux_sym_cmd_identifier_token34] = ACTIONS(1473), + [aux_sym_cmd_identifier_token35] = ACTIONS(1473), + [aux_sym_cmd_identifier_token36] = ACTIONS(1473), + [aux_sym_cmd_identifier_token37] = ACTIONS(1473), + [aux_sym_cmd_identifier_token38] = ACTIONS(1473), + [aux_sym_cmd_identifier_token39] = ACTIONS(1473), + [aux_sym_cmd_identifier_token40] = ACTIONS(1473), + [anon_sym_def] = ACTIONS(1473), + [anon_sym_export_DASHenv] = ACTIONS(1473), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym_module] = ACTIONS(1473), + [anon_sym_use] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_COMMA] = ACTIONS(1473), + [anon_sym_DOLLAR] = ACTIONS(1463), + [anon_sym_error] = ACTIONS(1473), + [anon_sym_DASH2] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_in2] = ACTIONS(1473), + [anon_sym_loop] = ACTIONS(1473), + [anon_sym_make] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_else] = ACTIONS(1473), + [anon_sym_match] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1473), + [anon_sym_try] = ACTIONS(1473), + [anon_sym_catch] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_source] = ACTIONS(1473), + [anon_sym_source_DASHenv] = ACTIONS(1473), + [anon_sym_hide] = ACTIONS(1473), + [anon_sym_hide_DASHenv] = ACTIONS(1473), + [anon_sym_overlay] = ACTIONS(1473), + [anon_sym_as] = ACTIONS(1473), + [anon_sym_LPAREN2] = ACTIONS(1465), + [anon_sym_PLUS2] = ACTIONS(1473), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1473), + [aux_sym__immediate_decimal_token1] = ACTIONS(1467), + [aux_sym__immediate_decimal_token3] = ACTIONS(1467), + [aux_sym__immediate_decimal_token4] = ACTIONS(1469), + [aux_sym__immediate_decimal_token5] = ACTIONS(1471), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1473), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1473), + [aux_sym__val_number_decimal_token4] = ACTIONS(1473), + [aux_sym__val_number_token1] = ACTIONS(1473), + [aux_sym__val_number_token2] = ACTIONS(1473), + [aux_sym__val_number_token3] = ACTIONS(1473), + [aux_sym__val_number_token4] = ACTIONS(1473), + [aux_sym__val_number_token5] = ACTIONS(1473), + [aux_sym__val_number_token6] = ACTIONS(1473), + [anon_sym_DQUOTE] = ACTIONS(1473), + [sym__str_single_quotes] = ACTIONS(1473), + [sym__str_back_ticks] = ACTIONS(1473), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1473), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1473), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1473), + [sym__entry_separator] = ACTIONS(1475), + [anon_sym_register] = ACTIONS(1473), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1477), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1468), + [sym_raw_string_begin] = ACTIONS(1475), }, [214] = { - [sym__expr_parenthesized_immediate] = STATE(468), - [sym__immediate_decimal] = STATE(469), - [sym_val_variable] = STATE(468), + [sym__expr_parenthesized_immediate] = STATE(455), + [sym__immediate_decimal] = STATE(456), + [sym_val_variable] = STATE(455), [sym_comment] = STATE(214), - [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(1472), - [aux_sym_cmd_identifier_token3] = ACTIONS(1472), - [aux_sym_cmd_identifier_token4] = ACTIONS(1472), - [aux_sym_cmd_identifier_token5] = ACTIONS(1472), - [aux_sym_cmd_identifier_token6] = ACTIONS(1472), - [aux_sym_cmd_identifier_token7] = ACTIONS(1472), - [aux_sym_cmd_identifier_token8] = ACTIONS(1472), - [aux_sym_cmd_identifier_token9] = ACTIONS(1472), - [aux_sym_cmd_identifier_token10] = ACTIONS(1472), - [aux_sym_cmd_identifier_token11] = ACTIONS(1472), - [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(1472), - [aux_sym_cmd_identifier_token17] = ACTIONS(1472), - [aux_sym_cmd_identifier_token18] = ACTIONS(1472), - [aux_sym_cmd_identifier_token19] = ACTIONS(1472), - [aux_sym_cmd_identifier_token20] = ACTIONS(1472), - [aux_sym_cmd_identifier_token21] = ACTIONS(1472), - [aux_sym_cmd_identifier_token22] = ACTIONS(1472), - [aux_sym_cmd_identifier_token23] = ACTIONS(1472), - [aux_sym_cmd_identifier_token24] = ACTIONS(1472), - [aux_sym_cmd_identifier_token25] = ACTIONS(1472), - [aux_sym_cmd_identifier_token26] = ACTIONS(1472), - [aux_sym_cmd_identifier_token27] = ACTIONS(1472), - [aux_sym_cmd_identifier_token28] = ACTIONS(1472), - [aux_sym_cmd_identifier_token29] = ACTIONS(1472), - [aux_sym_cmd_identifier_token30] = ACTIONS(1472), - [aux_sym_cmd_identifier_token31] = ACTIONS(1472), - [aux_sym_cmd_identifier_token32] = ACTIONS(1472), - [aux_sym_cmd_identifier_token33] = ACTIONS(1472), - [aux_sym_cmd_identifier_token34] = ACTIONS(1472), - [aux_sym_cmd_identifier_token35] = ACTIONS(1472), - [aux_sym_cmd_identifier_token36] = ACTIONS(1472), - [aux_sym_cmd_identifier_token37] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1472), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [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_LPAREN] = ACTIONS(1472), - [anon_sym_COMMA] = ACTIONS(1472), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_alias] = ACTIONS(1479), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_let_DASHenv] = ACTIONS(1479), + [anon_sym_mut] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1479), + [aux_sym_cmd_identifier_token1] = ACTIONS(1479), + [aux_sym_cmd_identifier_token2] = ACTIONS(1479), + [aux_sym_cmd_identifier_token3] = ACTIONS(1479), + [aux_sym_cmd_identifier_token4] = ACTIONS(1479), + [aux_sym_cmd_identifier_token5] = ACTIONS(1479), + [aux_sym_cmd_identifier_token6] = ACTIONS(1479), + [aux_sym_cmd_identifier_token7] = ACTIONS(1479), + [aux_sym_cmd_identifier_token8] = ACTIONS(1479), + [aux_sym_cmd_identifier_token9] = ACTIONS(1479), + [aux_sym_cmd_identifier_token10] = ACTIONS(1479), + [aux_sym_cmd_identifier_token11] = ACTIONS(1479), + [aux_sym_cmd_identifier_token12] = ACTIONS(1479), + [aux_sym_cmd_identifier_token13] = ACTIONS(1479), + [aux_sym_cmd_identifier_token14] = ACTIONS(1479), + [aux_sym_cmd_identifier_token15] = ACTIONS(1479), + [aux_sym_cmd_identifier_token16] = ACTIONS(1479), + [aux_sym_cmd_identifier_token17] = ACTIONS(1479), + [aux_sym_cmd_identifier_token18] = ACTIONS(1479), + [aux_sym_cmd_identifier_token19] = ACTIONS(1479), + [aux_sym_cmd_identifier_token20] = ACTIONS(1479), + [aux_sym_cmd_identifier_token21] = ACTIONS(1479), + [aux_sym_cmd_identifier_token22] = ACTIONS(1479), + [aux_sym_cmd_identifier_token23] = ACTIONS(1479), + [aux_sym_cmd_identifier_token24] = ACTIONS(1479), + [aux_sym_cmd_identifier_token25] = ACTIONS(1479), + [aux_sym_cmd_identifier_token26] = ACTIONS(1479), + [aux_sym_cmd_identifier_token27] = ACTIONS(1479), + [aux_sym_cmd_identifier_token28] = ACTIONS(1479), + [aux_sym_cmd_identifier_token29] = ACTIONS(1479), + [aux_sym_cmd_identifier_token30] = ACTIONS(1479), + [aux_sym_cmd_identifier_token31] = ACTIONS(1479), + [aux_sym_cmd_identifier_token32] = ACTIONS(1479), + [aux_sym_cmd_identifier_token33] = ACTIONS(1479), + [aux_sym_cmd_identifier_token34] = ACTIONS(1479), + [aux_sym_cmd_identifier_token35] = ACTIONS(1479), + [aux_sym_cmd_identifier_token36] = ACTIONS(1479), + [aux_sym_cmd_identifier_token37] = ACTIONS(1479), + [aux_sym_cmd_identifier_token38] = ACTIONS(1479), + [aux_sym_cmd_identifier_token39] = ACTIONS(1479), + [aux_sym_cmd_identifier_token40] = ACTIONS(1479), + [anon_sym_def] = ACTIONS(1479), + [anon_sym_export_DASHenv] = ACTIONS(1479), + [anon_sym_extern] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_use] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(1479), [anon_sym_DOLLAR] = ACTIONS(1433), - [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_in2] = ACTIONS(1472), - [anon_sym_loop] = ACTIONS(1472), - [anon_sym_make] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_else] = ACTIONS(1472), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_try] = ACTIONS(1472), - [anon_sym_catch] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_source] = ACTIONS(1472), - [anon_sym_source_DASHenv] = ACTIONS(1472), - [anon_sym_hide] = ACTIONS(1472), - [anon_sym_hide_DASHenv] = ACTIONS(1472), - [anon_sym_overlay] = ACTIONS(1472), - [anon_sym_as] = ACTIONS(1472), + [anon_sym_error] = ACTIONS(1479), + [anon_sym_DASH2] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1479), + [anon_sym_continue] = ACTIONS(1479), + [anon_sym_for] = ACTIONS(1479), + [anon_sym_in2] = ACTIONS(1479), + [anon_sym_loop] = ACTIONS(1479), + [anon_sym_make] = ACTIONS(1479), + [anon_sym_while] = ACTIONS(1479), + [anon_sym_do] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1479), + [anon_sym_match] = ACTIONS(1479), + [anon_sym_RBRACE] = ACTIONS(1479), + [anon_sym_try] = ACTIONS(1479), + [anon_sym_catch] = ACTIONS(1479), + [anon_sym_return] = ACTIONS(1479), + [anon_sym_source] = ACTIONS(1479), + [anon_sym_source_DASHenv] = ACTIONS(1479), + [anon_sym_hide] = ACTIONS(1479), + [anon_sym_hide_DASHenv] = ACTIONS(1479), + [anon_sym_overlay] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(1479), [anon_sym_LPAREN2] = ACTIONS(1435), - [anon_sym_PLUS2] = ACTIONS(1472), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1472), - [anon_sym_DOT] = ACTIONS(1474), - [aux_sym__immediate_decimal_token1] = ACTIONS(1476), - [aux_sym__immediate_decimal_token3] = ACTIONS(1476), - [aux_sym__immediate_decimal_token4] = ACTIONS(1478), - [aux_sym__immediate_decimal_token5] = ACTIONS(1480), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1472), - [aux_sym__val_number_decimal_token1] = ACTIONS(1472), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [aux_sym__val_number_token4] = ACTIONS(1472), - [aux_sym__val_number_token5] = ACTIONS(1472), - [aux_sym__val_number_token6] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1472), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1472), - [sym__entry_separator] = ACTIONS(1482), - [anon_sym_register] = ACTIONS(1472), + [anon_sym_PLUS2] = ACTIONS(1479), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1479), + [anon_sym_DOT] = ACTIONS(1481), + [aux_sym__immediate_decimal_token1] = ACTIONS(1483), + [aux_sym__immediate_decimal_token3] = ACTIONS(1483), + [aux_sym__immediate_decimal_token4] = ACTIONS(1485), + [aux_sym__immediate_decimal_token5] = ACTIONS(1487), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1479), + [aux_sym__val_number_decimal_token1] = ACTIONS(1479), + [aux_sym__val_number_decimal_token2] = ACTIONS(1479), + [aux_sym__val_number_decimal_token3] = ACTIONS(1479), + [aux_sym__val_number_decimal_token4] = ACTIONS(1479), + [aux_sym__val_number_token1] = ACTIONS(1479), + [aux_sym__val_number_token2] = ACTIONS(1479), + [aux_sym__val_number_token3] = ACTIONS(1479), + [aux_sym__val_number_token4] = ACTIONS(1479), + [aux_sym__val_number_token5] = ACTIONS(1479), + [aux_sym__val_number_token6] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1479), + [sym__str_single_quotes] = ACTIONS(1479), + [sym__str_back_ticks] = ACTIONS(1479), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1479), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1479), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1479), + [sym__entry_separator] = ACTIONS(1489), + [anon_sym_register] = ACTIONS(1479), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1482), + [sym_raw_string_begin] = ACTIONS(1489), }, [215] = { [sym_comment] = STATE(215), - [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(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1484), - [aux_sym_cmd_identifier_token4] = ACTIONS(1484), - [aux_sym_cmd_identifier_token5] = ACTIONS(1484), - [aux_sym_cmd_identifier_token6] = ACTIONS(1484), - [aux_sym_cmd_identifier_token7] = ACTIONS(1484), - [aux_sym_cmd_identifier_token8] = ACTIONS(1484), - [aux_sym_cmd_identifier_token9] = ACTIONS(1484), - [aux_sym_cmd_identifier_token10] = ACTIONS(1484), - [aux_sym_cmd_identifier_token11] = ACTIONS(1484), - [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(1484), - [aux_sym_cmd_identifier_token17] = ACTIONS(1484), - [aux_sym_cmd_identifier_token18] = ACTIONS(1484), - [aux_sym_cmd_identifier_token19] = ACTIONS(1484), - [aux_sym_cmd_identifier_token20] = ACTIONS(1484), - [aux_sym_cmd_identifier_token21] = ACTIONS(1484), - [aux_sym_cmd_identifier_token22] = ACTIONS(1484), - [aux_sym_cmd_identifier_token23] = ACTIONS(1484), - [aux_sym_cmd_identifier_token24] = ACTIONS(1484), - [aux_sym_cmd_identifier_token25] = ACTIONS(1484), - [aux_sym_cmd_identifier_token26] = ACTIONS(1484), - [aux_sym_cmd_identifier_token27] = ACTIONS(1484), - [aux_sym_cmd_identifier_token28] = ACTIONS(1484), - [aux_sym_cmd_identifier_token29] = ACTIONS(1484), - [aux_sym_cmd_identifier_token30] = ACTIONS(1484), - [aux_sym_cmd_identifier_token31] = ACTIONS(1484), - [aux_sym_cmd_identifier_token32] = ACTIONS(1484), - [aux_sym_cmd_identifier_token33] = ACTIONS(1484), - [aux_sym_cmd_identifier_token34] = ACTIONS(1484), - [aux_sym_cmd_identifier_token35] = ACTIONS(1484), - [aux_sym_cmd_identifier_token36] = ACTIONS(1484), - [aux_sym_cmd_identifier_token37] = ACTIONS(1484), - [aux_sym_cmd_identifier_token38] = ACTIONS(1484), - [aux_sym_cmd_identifier_token39] = ACTIONS(1484), - [aux_sym_cmd_identifier_token40] = ACTIONS(1484), - [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_LPAREN] = ACTIONS(1484), - [anon_sym_COMMA] = ACTIONS(1484), - [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_in2] = ACTIONS(1484), - [anon_sym_loop] = ACTIONS(1484), - [anon_sym_make] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_else] = ACTIONS(1484), - [anon_sym_match] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_try] = ACTIONS(1484), - [anon_sym_catch] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_source] = ACTIONS(1484), - [anon_sym_source_DASHenv] = ACTIONS(1484), - [anon_sym_hide] = ACTIONS(1484), - [anon_sym_hide_DASHenv] = ACTIONS(1484), - [anon_sym_overlay] = ACTIONS(1484), - [anon_sym_as] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_PLUS2] = ACTIONS(1484), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1484), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [aux_sym__immediate_decimal_token1] = ACTIONS(1488), - [aux_sym__immediate_decimal_token2] = ACTIONS(1490), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1484), - [aux_sym__val_number_decimal_token1] = ACTIONS(1484), - [aux_sym__val_number_decimal_token2] = ACTIONS(1484), - [aux_sym__val_number_decimal_token3] = ACTIONS(1484), - [aux_sym__val_number_decimal_token4] = ACTIONS(1484), - [aux_sym__val_number_token1] = ACTIONS(1484), - [aux_sym__val_number_token2] = ACTIONS(1484), - [aux_sym__val_number_token3] = ACTIONS(1484), - [aux_sym__val_number_token4] = ACTIONS(1484), - [aux_sym__val_number_token5] = ACTIONS(1484), - [aux_sym__val_number_token6] = ACTIONS(1484), - [sym_filesize_unit] = ACTIONS(1484), - [sym_duration_unit] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [sym__str_single_quotes] = ACTIONS(1484), - [sym__str_back_ticks] = ACTIONS(1484), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1484), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1484), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1484), - [sym__entry_separator] = ACTIONS(1486), - [anon_sym_register] = ACTIONS(1484), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1484), + [anon_sym_export] = ACTIONS(1491), + [anon_sym_alias] = ACTIONS(1491), + [anon_sym_let] = ACTIONS(1491), + [anon_sym_let_DASHenv] = ACTIONS(1491), + [anon_sym_mut] = ACTIONS(1491), + [anon_sym_const] = ACTIONS(1491), + [aux_sym_cmd_identifier_token1] = ACTIONS(1491), + [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(1491), + [aux_sym_cmd_identifier_token9] = ACTIONS(1491), + [aux_sym_cmd_identifier_token10] = ACTIONS(1491), + [aux_sym_cmd_identifier_token11] = ACTIONS(1491), + [aux_sym_cmd_identifier_token12] = ACTIONS(1491), + [aux_sym_cmd_identifier_token13] = ACTIONS(1491), + [aux_sym_cmd_identifier_token14] = ACTIONS(1491), + [aux_sym_cmd_identifier_token15] = ACTIONS(1491), + [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(1491), + [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(1491), + [aux_sym_cmd_identifier_token39] = ACTIONS(1491), + [aux_sym_cmd_identifier_token40] = ACTIONS(1491), + [anon_sym_def] = ACTIONS(1491), + [anon_sym_export_DASHenv] = ACTIONS(1491), + [anon_sym_extern] = ACTIONS(1491), + [anon_sym_module] = ACTIONS(1491), + [anon_sym_use] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_COMMA] = ACTIONS(1491), + [anon_sym_DOLLAR] = ACTIONS(1491), + [anon_sym_error] = ACTIONS(1491), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_break] = ACTIONS(1491), + [anon_sym_continue] = ACTIONS(1491), + [anon_sym_for] = ACTIONS(1491), + [anon_sym_in2] = ACTIONS(1491), + [anon_sym_loop] = ACTIONS(1491), + [anon_sym_make] = ACTIONS(1491), + [anon_sym_while] = ACTIONS(1491), + [anon_sym_do] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1491), + [anon_sym_else] = ACTIONS(1491), + [anon_sym_match] = ACTIONS(1491), + [anon_sym_RBRACE] = ACTIONS(1491), + [anon_sym_try] = ACTIONS(1491), + [anon_sym_catch] = ACTIONS(1491), + [anon_sym_return] = ACTIONS(1491), + [anon_sym_source] = ACTIONS(1491), + [anon_sym_source_DASHenv] = ACTIONS(1491), + [anon_sym_hide] = ACTIONS(1491), + [anon_sym_hide_DASHenv] = ACTIONS(1491), + [anon_sym_overlay] = ACTIONS(1491), + [anon_sym_as] = ACTIONS(1491), + [anon_sym_LPAREN2] = ACTIONS(1493), + [anon_sym_PLUS2] = ACTIONS(1491), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1491), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [aux_sym__immediate_decimal_token1] = ACTIONS(1495), + [aux_sym__immediate_decimal_token2] = ACTIONS(1497), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1491), + [aux_sym__val_number_decimal_token1] = ACTIONS(1491), + [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(1491), + [aux_sym__val_number_token5] = ACTIONS(1491), + [aux_sym__val_number_token6] = ACTIONS(1491), + [sym_filesize_unit] = ACTIONS(1491), + [sym_duration_unit] = 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), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1491), + [sym__entry_separator] = ACTIONS(1493), + [anon_sym_register] = ACTIONS(1491), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1491), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1486), + [sym_raw_string_begin] = ACTIONS(1493), }, [216] = { [sym_comment] = STATE(216), - [anon_sym_export] = ACTIONS(1492), - [anon_sym_alias] = ACTIONS(1492), - [anon_sym_let] = ACTIONS(1492), - [anon_sym_let_DASHenv] = ACTIONS(1492), - [anon_sym_mut] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [aux_sym_cmd_identifier_token1] = ACTIONS(1492), - [aux_sym_cmd_identifier_token2] = ACTIONS(1492), - [aux_sym_cmd_identifier_token3] = ACTIONS(1492), - [aux_sym_cmd_identifier_token4] = ACTIONS(1492), - [aux_sym_cmd_identifier_token5] = ACTIONS(1492), - [aux_sym_cmd_identifier_token6] = ACTIONS(1492), - [aux_sym_cmd_identifier_token7] = ACTIONS(1492), - [aux_sym_cmd_identifier_token8] = ACTIONS(1492), - [aux_sym_cmd_identifier_token9] = ACTIONS(1492), - [aux_sym_cmd_identifier_token10] = ACTIONS(1492), - [aux_sym_cmd_identifier_token11] = ACTIONS(1492), - [aux_sym_cmd_identifier_token12] = ACTIONS(1492), - [aux_sym_cmd_identifier_token13] = ACTIONS(1492), - [aux_sym_cmd_identifier_token14] = ACTIONS(1492), - [aux_sym_cmd_identifier_token15] = ACTIONS(1492), - [aux_sym_cmd_identifier_token16] = ACTIONS(1492), - [aux_sym_cmd_identifier_token17] = ACTIONS(1492), - [aux_sym_cmd_identifier_token18] = ACTIONS(1492), - [aux_sym_cmd_identifier_token19] = ACTIONS(1492), - [aux_sym_cmd_identifier_token20] = ACTIONS(1492), - [aux_sym_cmd_identifier_token21] = ACTIONS(1492), - [aux_sym_cmd_identifier_token22] = ACTIONS(1492), - [aux_sym_cmd_identifier_token23] = ACTIONS(1492), - [aux_sym_cmd_identifier_token24] = ACTIONS(1492), - [aux_sym_cmd_identifier_token25] = ACTIONS(1492), - [aux_sym_cmd_identifier_token26] = ACTIONS(1492), - [aux_sym_cmd_identifier_token27] = ACTIONS(1492), - [aux_sym_cmd_identifier_token28] = ACTIONS(1492), - [aux_sym_cmd_identifier_token29] = ACTIONS(1492), - [aux_sym_cmd_identifier_token30] = ACTIONS(1492), - [aux_sym_cmd_identifier_token31] = ACTIONS(1492), - [aux_sym_cmd_identifier_token32] = ACTIONS(1492), - [aux_sym_cmd_identifier_token33] = ACTIONS(1492), - [aux_sym_cmd_identifier_token34] = ACTIONS(1492), - [aux_sym_cmd_identifier_token35] = ACTIONS(1492), - [aux_sym_cmd_identifier_token36] = ACTIONS(1492), - [aux_sym_cmd_identifier_token37] = ACTIONS(1492), - [aux_sym_cmd_identifier_token38] = ACTIONS(1492), - [aux_sym_cmd_identifier_token39] = ACTIONS(1492), - [aux_sym_cmd_identifier_token40] = ACTIONS(1492), - [anon_sym_def] = ACTIONS(1492), - [anon_sym_export_DASHenv] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1492), - [anon_sym_module] = ACTIONS(1492), - [anon_sym_use] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_DOLLAR] = ACTIONS(1492), - [anon_sym_error] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_loop] = ACTIONS(1492), - [anon_sym_make] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_else] = ACTIONS(1492), - [anon_sym_match] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_try] = ACTIONS(1492), - [anon_sym_catch] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_source] = ACTIONS(1492), - [anon_sym_source_DASHenv] = ACTIONS(1492), - [anon_sym_hide] = ACTIONS(1492), - [anon_sym_hide_DASHenv] = ACTIONS(1492), - [anon_sym_overlay] = ACTIONS(1492), - [anon_sym_as] = ACTIONS(1492), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT] = ACTIONS(1496), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1492), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1492), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), - [aux_sym__val_number_token1] = ACTIONS(1492), - [aux_sym__val_number_token2] = ACTIONS(1492), - [aux_sym__val_number_token3] = ACTIONS(1492), - [aux_sym__val_number_token4] = ACTIONS(1492), - [aux_sym__val_number_token5] = ACTIONS(1492), - [aux_sym__val_number_token6] = ACTIONS(1492), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1492), - [sym__str_single_quotes] = ACTIONS(1492), - [sym__str_back_ticks] = ACTIONS(1492), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1492), - [sym__entry_separator] = ACTIONS(1494), - [anon_sym_register] = ACTIONS(1492), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1492), + [anon_sym_export] = ACTIONS(1499), + [anon_sym_alias] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1499), + [anon_sym_let_DASHenv] = ACTIONS(1499), + [anon_sym_mut] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(1499), + [aux_sym_cmd_identifier_token1] = ACTIONS(1499), + [aux_sym_cmd_identifier_token2] = ACTIONS(1499), + [aux_sym_cmd_identifier_token3] = ACTIONS(1499), + [aux_sym_cmd_identifier_token4] = ACTIONS(1499), + [aux_sym_cmd_identifier_token5] = ACTIONS(1499), + [aux_sym_cmd_identifier_token6] = ACTIONS(1499), + [aux_sym_cmd_identifier_token7] = ACTIONS(1499), + [aux_sym_cmd_identifier_token8] = ACTIONS(1499), + [aux_sym_cmd_identifier_token9] = ACTIONS(1499), + [aux_sym_cmd_identifier_token10] = ACTIONS(1499), + [aux_sym_cmd_identifier_token11] = ACTIONS(1499), + [aux_sym_cmd_identifier_token12] = ACTIONS(1499), + [aux_sym_cmd_identifier_token13] = ACTIONS(1499), + [aux_sym_cmd_identifier_token14] = ACTIONS(1499), + [aux_sym_cmd_identifier_token15] = ACTIONS(1499), + [aux_sym_cmd_identifier_token16] = ACTIONS(1499), + [aux_sym_cmd_identifier_token17] = ACTIONS(1499), + [aux_sym_cmd_identifier_token18] = ACTIONS(1499), + [aux_sym_cmd_identifier_token19] = ACTIONS(1499), + [aux_sym_cmd_identifier_token20] = ACTIONS(1499), + [aux_sym_cmd_identifier_token21] = ACTIONS(1499), + [aux_sym_cmd_identifier_token22] = ACTIONS(1499), + [aux_sym_cmd_identifier_token23] = ACTIONS(1499), + [aux_sym_cmd_identifier_token24] = ACTIONS(1499), + [aux_sym_cmd_identifier_token25] = ACTIONS(1499), + [aux_sym_cmd_identifier_token26] = ACTIONS(1499), + [aux_sym_cmd_identifier_token27] = ACTIONS(1499), + [aux_sym_cmd_identifier_token28] = ACTIONS(1499), + [aux_sym_cmd_identifier_token29] = ACTIONS(1499), + [aux_sym_cmd_identifier_token30] = ACTIONS(1499), + [aux_sym_cmd_identifier_token31] = ACTIONS(1499), + [aux_sym_cmd_identifier_token32] = ACTIONS(1499), + [aux_sym_cmd_identifier_token33] = ACTIONS(1499), + [aux_sym_cmd_identifier_token34] = ACTIONS(1499), + [aux_sym_cmd_identifier_token35] = ACTIONS(1499), + [aux_sym_cmd_identifier_token36] = ACTIONS(1499), + [aux_sym_cmd_identifier_token37] = ACTIONS(1499), + [aux_sym_cmd_identifier_token38] = ACTIONS(1499), + [aux_sym_cmd_identifier_token39] = ACTIONS(1499), + [aux_sym_cmd_identifier_token40] = ACTIONS(1499), + [anon_sym_def] = ACTIONS(1499), + [anon_sym_export_DASHenv] = ACTIONS(1499), + [anon_sym_extern] = ACTIONS(1499), + [anon_sym_module] = ACTIONS(1499), + [anon_sym_use] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_COMMA] = ACTIONS(1499), + [anon_sym_DOLLAR] = ACTIONS(1499), + [anon_sym_error] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_break] = ACTIONS(1499), + [anon_sym_continue] = ACTIONS(1499), + [anon_sym_for] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_loop] = ACTIONS(1499), + [anon_sym_make] = ACTIONS(1499), + [anon_sym_while] = ACTIONS(1499), + [anon_sym_do] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1499), + [anon_sym_else] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_try] = ACTIONS(1499), + [anon_sym_catch] = ACTIONS(1499), + [anon_sym_return] = ACTIONS(1499), + [anon_sym_source] = ACTIONS(1499), + [anon_sym_source_DASHenv] = ACTIONS(1499), + [anon_sym_hide] = ACTIONS(1499), + [anon_sym_hide_DASHenv] = ACTIONS(1499), + [anon_sym_overlay] = ACTIONS(1499), + [anon_sym_as] = ACTIONS(1499), + [anon_sym_LPAREN2] = ACTIONS(1501), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT] = ACTIONS(1503), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(1505), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1499), + [aux_sym__val_number_decimal_token1] = ACTIONS(1499), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1499), + [aux_sym__val_number_decimal_token4] = ACTIONS(1499), + [aux_sym__val_number_token1] = ACTIONS(1499), + [aux_sym__val_number_token2] = ACTIONS(1499), + [aux_sym__val_number_token3] = ACTIONS(1499), + [aux_sym__val_number_token4] = ACTIONS(1499), + [aux_sym__val_number_token5] = ACTIONS(1499), + [aux_sym__val_number_token6] = ACTIONS(1499), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [sym__str_single_quotes] = ACTIONS(1499), + [sym__str_back_ticks] = ACTIONS(1499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1499), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1499), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1499), + [sym__entry_separator] = ACTIONS(1501), + [anon_sym_register] = ACTIONS(1499), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1494), + [sym_raw_string_begin] = ACTIONS(1501), }, [217] = { - [sym__expr_parenthesized_immediate] = STATE(529), - [sym__immediate_decimal] = STATE(387), - [sym_val_variable] = STATE(529), [sym_comment] = STATE(217), - [anon_sym_export] = ACTIONS(1431), - [anon_sym_alias] = ACTIONS(1431), - [anon_sym_let] = ACTIONS(1431), - [anon_sym_let_DASHenv] = ACTIONS(1431), - [anon_sym_mut] = ACTIONS(1431), - [anon_sym_const] = ACTIONS(1431), - [aux_sym_cmd_identifier_token1] = ACTIONS(1431), - [aux_sym_cmd_identifier_token2] = ACTIONS(1445), - [aux_sym_cmd_identifier_token3] = ACTIONS(1445), - [aux_sym_cmd_identifier_token4] = ACTIONS(1445), - [aux_sym_cmd_identifier_token5] = ACTIONS(1445), - [aux_sym_cmd_identifier_token6] = ACTIONS(1445), - [aux_sym_cmd_identifier_token7] = ACTIONS(1445), - [aux_sym_cmd_identifier_token8] = ACTIONS(1431), - [aux_sym_cmd_identifier_token9] = ACTIONS(1431), - [aux_sym_cmd_identifier_token10] = ACTIONS(1445), - [aux_sym_cmd_identifier_token11] = ACTIONS(1445), - [aux_sym_cmd_identifier_token12] = ACTIONS(1431), - [aux_sym_cmd_identifier_token13] = ACTIONS(1431), - [aux_sym_cmd_identifier_token14] = ACTIONS(1431), - [aux_sym_cmd_identifier_token15] = ACTIONS(1431), - [aux_sym_cmd_identifier_token16] = ACTIONS(1445), - [aux_sym_cmd_identifier_token17] = ACTIONS(1445), - [aux_sym_cmd_identifier_token18] = ACTIONS(1445), - [aux_sym_cmd_identifier_token19] = ACTIONS(1445), - [aux_sym_cmd_identifier_token20] = ACTIONS(1445), - [aux_sym_cmd_identifier_token21] = ACTIONS(1445), - [aux_sym_cmd_identifier_token22] = ACTIONS(1445), - [aux_sym_cmd_identifier_token23] = ACTIONS(1445), - [aux_sym_cmd_identifier_token24] = ACTIONS(1445), - [aux_sym_cmd_identifier_token25] = ACTIONS(1445), - [aux_sym_cmd_identifier_token26] = ACTIONS(1445), - [aux_sym_cmd_identifier_token27] = ACTIONS(1445), - [aux_sym_cmd_identifier_token28] = ACTIONS(1445), - [aux_sym_cmd_identifier_token29] = ACTIONS(1445), - [aux_sym_cmd_identifier_token30] = ACTIONS(1445), - [aux_sym_cmd_identifier_token31] = ACTIONS(1445), - [aux_sym_cmd_identifier_token32] = ACTIONS(1445), - [aux_sym_cmd_identifier_token33] = ACTIONS(1445), - [aux_sym_cmd_identifier_token34] = ACTIONS(1431), - [aux_sym_cmd_identifier_token35] = ACTIONS(1445), - [aux_sym_cmd_identifier_token36] = ACTIONS(1445), - [aux_sym_cmd_identifier_token37] = ACTIONS(1445), - [aux_sym_cmd_identifier_token38] = ACTIONS(1431), - [aux_sym_cmd_identifier_token39] = ACTIONS(1445), - [aux_sym_cmd_identifier_token40] = ACTIONS(1445), - [anon_sym_def] = ACTIONS(1431), - [anon_sym_export_DASHenv] = ACTIONS(1431), - [anon_sym_extern] = ACTIONS(1431), - [anon_sym_module] = ACTIONS(1431), - [anon_sym_use] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_COMMA] = ACTIONS(1445), - [anon_sym_DOLLAR] = ACTIONS(1500), - [anon_sym_error] = ACTIONS(1431), - [anon_sym_DASH2] = ACTIONS(1431), - [anon_sym_break] = ACTIONS(1431), - [anon_sym_continue] = ACTIONS(1431), - [anon_sym_for] = ACTIONS(1431), - [anon_sym_in2] = ACTIONS(1431), - [anon_sym_loop] = ACTIONS(1431), - [anon_sym_make] = ACTIONS(1431), - [anon_sym_while] = ACTIONS(1431), - [anon_sym_do] = ACTIONS(1431), - [anon_sym_if] = ACTIONS(1431), - [anon_sym_else] = ACTIONS(1431), - [anon_sym_match] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1445), - [anon_sym_try] = ACTIONS(1431), - [anon_sym_catch] = ACTIONS(1431), - [anon_sym_return] = ACTIONS(1431), - [anon_sym_source] = ACTIONS(1431), - [anon_sym_source_DASHenv] = ACTIONS(1431), - [anon_sym_hide] = ACTIONS(1431), - [anon_sym_hide_DASHenv] = ACTIONS(1431), - [anon_sym_overlay] = ACTIONS(1431), - [anon_sym_as] = ACTIONS(1431), - [anon_sym_LPAREN2] = ACTIONS(1502), - [anon_sym_PLUS2] = ACTIONS(1431), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1445), - [anon_sym_DOT] = ACTIONS(1504), - [aux_sym__immediate_decimal_token1] = ACTIONS(1506), - [aux_sym__immediate_decimal_token3] = ACTIONS(1508), - [aux_sym__immediate_decimal_token4] = ACTIONS(1510), - [aux_sym__immediate_decimal_token5] = ACTIONS(1512), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1445), - [aux_sym__val_number_decimal_token1] = ACTIONS(1431), - [aux_sym__val_number_decimal_token2] = ACTIONS(1431), - [aux_sym__val_number_decimal_token3] = ACTIONS(1431), - [aux_sym__val_number_decimal_token4] = ACTIONS(1431), - [aux_sym__val_number_token1] = ACTIONS(1445), - [aux_sym__val_number_token2] = ACTIONS(1445), - [aux_sym__val_number_token3] = ACTIONS(1445), - [aux_sym__val_number_token4] = ACTIONS(1431), - [aux_sym__val_number_token5] = ACTIONS(1431), - [aux_sym__val_number_token6] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(1445), - [sym__str_single_quotes] = ACTIONS(1445), - [sym__str_back_ticks] = ACTIONS(1445), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1445), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1445), - [anon_sym_register] = ACTIONS(1431), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1447), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1445), + [aux_sym__block_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(1507), + [anon_sym_alias] = ACTIONS(1507), + [anon_sym_let] = ACTIONS(1507), + [anon_sym_let_DASHenv] = ACTIONS(1507), + [anon_sym_mut] = ACTIONS(1507), + [anon_sym_const] = ACTIONS(1507), + [aux_sym_cmd_identifier_token1] = ACTIONS(1507), + [aux_sym_cmd_identifier_token2] = ACTIONS(1509), + [aux_sym_cmd_identifier_token3] = ACTIONS(1509), + [aux_sym_cmd_identifier_token4] = ACTIONS(1509), + [aux_sym_cmd_identifier_token5] = ACTIONS(1509), + [aux_sym_cmd_identifier_token6] = ACTIONS(1509), + [aux_sym_cmd_identifier_token7] = ACTIONS(1509), + [aux_sym_cmd_identifier_token8] = ACTIONS(1507), + [aux_sym_cmd_identifier_token9] = ACTIONS(1507), + [aux_sym_cmd_identifier_token10] = ACTIONS(1509), + [aux_sym_cmd_identifier_token11] = ACTIONS(1509), + [aux_sym_cmd_identifier_token12] = ACTIONS(1507), + [aux_sym_cmd_identifier_token13] = ACTIONS(1507), + [aux_sym_cmd_identifier_token14] = ACTIONS(1507), + [aux_sym_cmd_identifier_token15] = ACTIONS(1507), + [aux_sym_cmd_identifier_token16] = ACTIONS(1509), + [aux_sym_cmd_identifier_token17] = ACTIONS(1509), + [aux_sym_cmd_identifier_token18] = ACTIONS(1509), + [aux_sym_cmd_identifier_token19] = ACTIONS(1509), + [aux_sym_cmd_identifier_token20] = ACTIONS(1509), + [aux_sym_cmd_identifier_token21] = ACTIONS(1509), + [aux_sym_cmd_identifier_token22] = ACTIONS(1509), + [aux_sym_cmd_identifier_token23] = ACTIONS(1509), + [aux_sym_cmd_identifier_token24] = ACTIONS(1509), + [aux_sym_cmd_identifier_token25] = ACTIONS(1509), + [aux_sym_cmd_identifier_token26] = ACTIONS(1509), + [aux_sym_cmd_identifier_token27] = ACTIONS(1509), + [aux_sym_cmd_identifier_token28] = ACTIONS(1509), + [aux_sym_cmd_identifier_token29] = ACTIONS(1509), + [aux_sym_cmd_identifier_token30] = ACTIONS(1509), + [aux_sym_cmd_identifier_token31] = ACTIONS(1509), + [aux_sym_cmd_identifier_token32] = ACTIONS(1509), + [aux_sym_cmd_identifier_token33] = ACTIONS(1509), + [aux_sym_cmd_identifier_token34] = ACTIONS(1507), + [aux_sym_cmd_identifier_token35] = ACTIONS(1509), + [aux_sym_cmd_identifier_token36] = ACTIONS(1509), + [aux_sym_cmd_identifier_token37] = ACTIONS(1509), + [aux_sym_cmd_identifier_token38] = ACTIONS(1507), + [aux_sym_cmd_identifier_token39] = ACTIONS(1509), + [aux_sym_cmd_identifier_token40] = ACTIONS(1509), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_def] = ACTIONS(1507), + [anon_sym_export_DASHenv] = ACTIONS(1507), + [anon_sym_extern] = ACTIONS(1507), + [anon_sym_module] = ACTIONS(1507), + [anon_sym_use] = ACTIONS(1507), + [anon_sym_LBRACK] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1509), + [anon_sym_RPAREN] = ACTIONS(1511), + [anon_sym_DOLLAR] = ACTIONS(1507), + [anon_sym_error] = ACTIONS(1507), + [anon_sym_DASH2] = ACTIONS(1507), + [anon_sym_break] = ACTIONS(1507), + [anon_sym_continue] = ACTIONS(1507), + [anon_sym_for] = ACTIONS(1507), + [anon_sym_loop] = ACTIONS(1507), + [anon_sym_while] = ACTIONS(1507), + [anon_sym_do] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_match] = ACTIONS(1507), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_RBRACE] = ACTIONS(1511), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_try] = ACTIONS(1507), + [anon_sym_return] = ACTIONS(1507), + [anon_sym_source] = ACTIONS(1507), + [anon_sym_source_DASHenv] = ACTIONS(1507), + [anon_sym_hide] = ACTIONS(1507), + [anon_sym_hide_DASHenv] = ACTIONS(1507), + [anon_sym_overlay] = ACTIONS(1507), + [anon_sym_where] = ACTIONS(1509), + [aux_sym_expr_unary_token1] = ACTIONS(1509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1509), + [anon_sym_DOT_DOT_LT] = ACTIONS(1509), + [anon_sym_null] = ACTIONS(1507), + [anon_sym_true] = ACTIONS(1507), + [anon_sym_false] = ACTIONS(1507), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1509), + [aux_sym__val_number_decimal_token4] = ACTIONS(1509), + [aux_sym__val_number_token1] = ACTIONS(1509), + [aux_sym__val_number_token2] = ACTIONS(1509), + [aux_sym__val_number_token3] = ACTIONS(1509), + [aux_sym__val_number_token4] = ACTIONS(1507), + [aux_sym__val_number_token5] = ACTIONS(1507), + [aux_sym__val_number_token6] = ACTIONS(1507), + [anon_sym_0b] = ACTIONS(1507), + [anon_sym_0o] = ACTIONS(1507), + [anon_sym_0x] = ACTIONS(1507), + [sym_val_date] = ACTIONS(1509), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym__str_single_quotes] = ACTIONS(1509), + [sym__str_back_ticks] = ACTIONS(1509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1509), + [aux_sym_env_var_token1] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1509), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1509), }, [218] = { [sym_comment] = STATE(218), - [aux_sym__block_body_repeat1] = STATE(212), - [anon_sym_export] = ACTIONS(1514), - [anon_sym_alias] = ACTIONS(1514), - [anon_sym_let] = ACTIONS(1514), - [anon_sym_let_DASHenv] = ACTIONS(1514), - [anon_sym_mut] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [aux_sym_cmd_identifier_token1] = ACTIONS(1514), - [aux_sym_cmd_identifier_token2] = ACTIONS(1516), - [aux_sym_cmd_identifier_token3] = ACTIONS(1516), - [aux_sym_cmd_identifier_token4] = ACTIONS(1516), - [aux_sym_cmd_identifier_token5] = ACTIONS(1516), - [aux_sym_cmd_identifier_token6] = ACTIONS(1516), - [aux_sym_cmd_identifier_token7] = ACTIONS(1516), - [aux_sym_cmd_identifier_token8] = ACTIONS(1514), - [aux_sym_cmd_identifier_token9] = ACTIONS(1514), - [aux_sym_cmd_identifier_token10] = ACTIONS(1516), - [aux_sym_cmd_identifier_token11] = ACTIONS(1516), - [aux_sym_cmd_identifier_token12] = ACTIONS(1514), - [aux_sym_cmd_identifier_token13] = ACTIONS(1514), - [aux_sym_cmd_identifier_token14] = ACTIONS(1514), - [aux_sym_cmd_identifier_token15] = ACTIONS(1514), - [aux_sym_cmd_identifier_token16] = ACTIONS(1516), - [aux_sym_cmd_identifier_token17] = ACTIONS(1516), - [aux_sym_cmd_identifier_token18] = ACTIONS(1516), - [aux_sym_cmd_identifier_token19] = ACTIONS(1516), - [aux_sym_cmd_identifier_token20] = ACTIONS(1516), - [aux_sym_cmd_identifier_token21] = ACTIONS(1516), - [aux_sym_cmd_identifier_token22] = ACTIONS(1516), - [aux_sym_cmd_identifier_token23] = ACTIONS(1516), - [aux_sym_cmd_identifier_token24] = ACTIONS(1516), - [aux_sym_cmd_identifier_token25] = ACTIONS(1516), - [aux_sym_cmd_identifier_token26] = ACTIONS(1516), - [aux_sym_cmd_identifier_token27] = ACTIONS(1516), - [aux_sym_cmd_identifier_token28] = ACTIONS(1516), - [aux_sym_cmd_identifier_token29] = ACTIONS(1516), - [aux_sym_cmd_identifier_token30] = ACTIONS(1516), - [aux_sym_cmd_identifier_token31] = ACTIONS(1516), - [aux_sym_cmd_identifier_token32] = ACTIONS(1516), - [aux_sym_cmd_identifier_token33] = ACTIONS(1516), - [aux_sym_cmd_identifier_token34] = ACTIONS(1514), - [aux_sym_cmd_identifier_token35] = ACTIONS(1516), - [aux_sym_cmd_identifier_token36] = ACTIONS(1516), - [aux_sym_cmd_identifier_token37] = ACTIONS(1516), - [aux_sym_cmd_identifier_token38] = ACTIONS(1514), - [aux_sym_cmd_identifier_token39] = ACTIONS(1516), - [aux_sym_cmd_identifier_token40] = ACTIONS(1516), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_AT] = ACTIONS(1516), - [anon_sym_def] = ACTIONS(1514), - [anon_sym_export_DASHenv] = ACTIONS(1514), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym_module] = ACTIONS(1514), - [anon_sym_use] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_LPAREN] = ACTIONS(1516), - [anon_sym_RPAREN] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(1514), - [anon_sym_error] = ACTIONS(1514), - [anon_sym_DASH2] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_loop] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_do] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_match] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_RBRACE] = ACTIONS(1518), - [anon_sym_DOT_DOT] = ACTIONS(1514), - [anon_sym_try] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_source] = ACTIONS(1514), - [anon_sym_source_DASHenv] = ACTIONS(1514), - [anon_sym_hide] = ACTIONS(1514), - [anon_sym_hide_DASHenv] = ACTIONS(1514), - [anon_sym_overlay] = ACTIONS(1514), - [anon_sym_where] = ACTIONS(1516), - [aux_sym_expr_unary_token1] = ACTIONS(1516), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1516), - [anon_sym_DOT_DOT_LT] = ACTIONS(1516), - [anon_sym_null] = ACTIONS(1514), - [anon_sym_true] = ACTIONS(1514), - [anon_sym_false] = ACTIONS(1514), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1516), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), - [aux_sym__val_number_token1] = ACTIONS(1516), - [aux_sym__val_number_token2] = ACTIONS(1516), - [aux_sym__val_number_token3] = ACTIONS(1516), - [aux_sym__val_number_token4] = ACTIONS(1514), - [aux_sym__val_number_token5] = ACTIONS(1514), - [aux_sym__val_number_token6] = ACTIONS(1514), - [anon_sym_0b] = ACTIONS(1514), - [anon_sym_0o] = ACTIONS(1514), - [anon_sym_0x] = ACTIONS(1514), - [sym_val_date] = ACTIONS(1516), - [anon_sym_DQUOTE] = ACTIONS(1516), - [sym__str_single_quotes] = ACTIONS(1516), - [sym__str_back_ticks] = ACTIONS(1516), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1516), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1516), - [aux_sym_env_var_token1] = ACTIONS(1514), - [anon_sym_CARET] = ACTIONS(1516), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1516), + [aux_sym__block_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(1513), + [anon_sym_alias] = ACTIONS(1513), + [anon_sym_let] = ACTIONS(1513), + [anon_sym_let_DASHenv] = ACTIONS(1513), + [anon_sym_mut] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [aux_sym_cmd_identifier_token1] = ACTIONS(1513), + [aux_sym_cmd_identifier_token2] = ACTIONS(1515), + [aux_sym_cmd_identifier_token3] = ACTIONS(1515), + [aux_sym_cmd_identifier_token4] = ACTIONS(1515), + [aux_sym_cmd_identifier_token5] = ACTIONS(1515), + [aux_sym_cmd_identifier_token6] = ACTIONS(1515), + [aux_sym_cmd_identifier_token7] = ACTIONS(1515), + [aux_sym_cmd_identifier_token8] = ACTIONS(1513), + [aux_sym_cmd_identifier_token9] = ACTIONS(1513), + [aux_sym_cmd_identifier_token10] = ACTIONS(1515), + [aux_sym_cmd_identifier_token11] = ACTIONS(1515), + [aux_sym_cmd_identifier_token12] = ACTIONS(1513), + [aux_sym_cmd_identifier_token13] = ACTIONS(1513), + [aux_sym_cmd_identifier_token14] = ACTIONS(1513), + [aux_sym_cmd_identifier_token15] = ACTIONS(1513), + [aux_sym_cmd_identifier_token16] = ACTIONS(1515), + [aux_sym_cmd_identifier_token17] = ACTIONS(1515), + [aux_sym_cmd_identifier_token18] = ACTIONS(1515), + [aux_sym_cmd_identifier_token19] = ACTIONS(1515), + [aux_sym_cmd_identifier_token20] = ACTIONS(1515), + [aux_sym_cmd_identifier_token21] = ACTIONS(1515), + [aux_sym_cmd_identifier_token22] = ACTIONS(1515), + [aux_sym_cmd_identifier_token23] = ACTIONS(1515), + [aux_sym_cmd_identifier_token24] = ACTIONS(1515), + [aux_sym_cmd_identifier_token25] = ACTIONS(1515), + [aux_sym_cmd_identifier_token26] = ACTIONS(1515), + [aux_sym_cmd_identifier_token27] = ACTIONS(1515), + [aux_sym_cmd_identifier_token28] = ACTIONS(1515), + [aux_sym_cmd_identifier_token29] = ACTIONS(1515), + [aux_sym_cmd_identifier_token30] = ACTIONS(1515), + [aux_sym_cmd_identifier_token31] = ACTIONS(1515), + [aux_sym_cmd_identifier_token32] = ACTIONS(1515), + [aux_sym_cmd_identifier_token33] = ACTIONS(1515), + [aux_sym_cmd_identifier_token34] = ACTIONS(1513), + [aux_sym_cmd_identifier_token35] = ACTIONS(1515), + [aux_sym_cmd_identifier_token36] = ACTIONS(1515), + [aux_sym_cmd_identifier_token37] = ACTIONS(1515), + [aux_sym_cmd_identifier_token38] = ACTIONS(1513), + [aux_sym_cmd_identifier_token39] = ACTIONS(1515), + [aux_sym_cmd_identifier_token40] = ACTIONS(1515), + [sym__newline] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1517), + [anon_sym_AT] = ACTIONS(1515), + [anon_sym_def] = ACTIONS(1513), + [anon_sym_export_DASHenv] = ACTIONS(1513), + [anon_sym_extern] = ACTIONS(1513), + [anon_sym_module] = ACTIONS(1513), + [anon_sym_use] = ACTIONS(1513), + [anon_sym_LBRACK] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_RPAREN] = ACTIONS(1515), + [anon_sym_DOLLAR] = ACTIONS(1513), + [anon_sym_error] = ACTIONS(1513), + [anon_sym_DASH2] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_loop] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_match] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1515), + [anon_sym_RBRACE] = ACTIONS(1515), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_try] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_source] = ACTIONS(1513), + [anon_sym_source_DASHenv] = ACTIONS(1513), + [anon_sym_hide] = ACTIONS(1513), + [anon_sym_hide_DASHenv] = ACTIONS(1513), + [anon_sym_overlay] = ACTIONS(1513), + [anon_sym_where] = ACTIONS(1515), + [aux_sym_expr_unary_token1] = ACTIONS(1515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_null] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1513), + [aux_sym__val_number_decimal_token2] = ACTIONS(1515), + [aux_sym__val_number_decimal_token3] = ACTIONS(1515), + [aux_sym__val_number_decimal_token4] = ACTIONS(1515), + [aux_sym__val_number_token1] = ACTIONS(1515), + [aux_sym__val_number_token2] = ACTIONS(1515), + [aux_sym__val_number_token3] = ACTIONS(1515), + [aux_sym__val_number_token4] = ACTIONS(1513), + [aux_sym__val_number_token5] = ACTIONS(1513), + [aux_sym__val_number_token6] = ACTIONS(1513), + [anon_sym_0b] = ACTIONS(1513), + [anon_sym_0o] = ACTIONS(1513), + [anon_sym_0x] = ACTIONS(1513), + [sym_val_date] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), + [sym__str_single_quotes] = ACTIONS(1515), + [sym__str_back_ticks] = ACTIONS(1515), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1515), + [aux_sym_env_var_token1] = ACTIONS(1513), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1515), }, [219] = { [sym_comment] = STATE(219), - [aux_sym__block_body_repeat1] = STATE(212), - [anon_sym_export] = ACTIONS(1514), - [anon_sym_alias] = ACTIONS(1514), - [anon_sym_let] = ACTIONS(1514), - [anon_sym_let_DASHenv] = ACTIONS(1514), - [anon_sym_mut] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [aux_sym_cmd_identifier_token1] = ACTIONS(1514), - [aux_sym_cmd_identifier_token2] = ACTIONS(1516), - [aux_sym_cmd_identifier_token3] = ACTIONS(1516), - [aux_sym_cmd_identifier_token4] = ACTIONS(1516), - [aux_sym_cmd_identifier_token5] = ACTIONS(1516), - [aux_sym_cmd_identifier_token6] = ACTIONS(1516), - [aux_sym_cmd_identifier_token7] = ACTIONS(1516), - [aux_sym_cmd_identifier_token8] = ACTIONS(1514), - [aux_sym_cmd_identifier_token9] = ACTIONS(1514), - [aux_sym_cmd_identifier_token10] = ACTIONS(1516), - [aux_sym_cmd_identifier_token11] = ACTIONS(1516), - [aux_sym_cmd_identifier_token12] = ACTIONS(1514), - [aux_sym_cmd_identifier_token13] = ACTIONS(1514), - [aux_sym_cmd_identifier_token14] = ACTIONS(1514), - [aux_sym_cmd_identifier_token15] = ACTIONS(1514), - [aux_sym_cmd_identifier_token16] = ACTIONS(1516), - [aux_sym_cmd_identifier_token17] = ACTIONS(1516), - [aux_sym_cmd_identifier_token18] = ACTIONS(1516), - [aux_sym_cmd_identifier_token19] = ACTIONS(1516), - [aux_sym_cmd_identifier_token20] = ACTIONS(1516), - [aux_sym_cmd_identifier_token21] = ACTIONS(1516), - [aux_sym_cmd_identifier_token22] = ACTIONS(1516), - [aux_sym_cmd_identifier_token23] = ACTIONS(1516), - [aux_sym_cmd_identifier_token24] = ACTIONS(1516), - [aux_sym_cmd_identifier_token25] = ACTIONS(1516), - [aux_sym_cmd_identifier_token26] = ACTIONS(1516), - [aux_sym_cmd_identifier_token27] = ACTIONS(1516), - [aux_sym_cmd_identifier_token28] = ACTIONS(1516), - [aux_sym_cmd_identifier_token29] = ACTIONS(1516), - [aux_sym_cmd_identifier_token30] = ACTIONS(1516), - [aux_sym_cmd_identifier_token31] = ACTIONS(1516), - [aux_sym_cmd_identifier_token32] = ACTIONS(1516), - [aux_sym_cmd_identifier_token33] = ACTIONS(1516), - [aux_sym_cmd_identifier_token34] = ACTIONS(1514), - [aux_sym_cmd_identifier_token35] = ACTIONS(1516), - [aux_sym_cmd_identifier_token36] = ACTIONS(1516), - [aux_sym_cmd_identifier_token37] = ACTIONS(1516), - [aux_sym_cmd_identifier_token38] = ACTIONS(1514), - [aux_sym_cmd_identifier_token39] = ACTIONS(1516), - [aux_sym_cmd_identifier_token40] = ACTIONS(1516), + [aux_sym__block_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(1507), + [anon_sym_alias] = ACTIONS(1507), + [anon_sym_let] = ACTIONS(1507), + [anon_sym_let_DASHenv] = ACTIONS(1507), + [anon_sym_mut] = ACTIONS(1507), + [anon_sym_const] = ACTIONS(1507), + [aux_sym_cmd_identifier_token1] = ACTIONS(1507), + [aux_sym_cmd_identifier_token2] = ACTIONS(1509), + [aux_sym_cmd_identifier_token3] = ACTIONS(1509), + [aux_sym_cmd_identifier_token4] = ACTIONS(1509), + [aux_sym_cmd_identifier_token5] = ACTIONS(1509), + [aux_sym_cmd_identifier_token6] = ACTIONS(1509), + [aux_sym_cmd_identifier_token7] = ACTIONS(1509), + [aux_sym_cmd_identifier_token8] = ACTIONS(1507), + [aux_sym_cmd_identifier_token9] = ACTIONS(1507), + [aux_sym_cmd_identifier_token10] = ACTIONS(1509), + [aux_sym_cmd_identifier_token11] = ACTIONS(1509), + [aux_sym_cmd_identifier_token12] = ACTIONS(1507), + [aux_sym_cmd_identifier_token13] = ACTIONS(1507), + [aux_sym_cmd_identifier_token14] = ACTIONS(1507), + [aux_sym_cmd_identifier_token15] = ACTIONS(1507), + [aux_sym_cmd_identifier_token16] = ACTIONS(1509), + [aux_sym_cmd_identifier_token17] = ACTIONS(1509), + [aux_sym_cmd_identifier_token18] = ACTIONS(1509), + [aux_sym_cmd_identifier_token19] = ACTIONS(1509), + [aux_sym_cmd_identifier_token20] = ACTIONS(1509), + [aux_sym_cmd_identifier_token21] = ACTIONS(1509), + [aux_sym_cmd_identifier_token22] = ACTIONS(1509), + [aux_sym_cmd_identifier_token23] = ACTIONS(1509), + [aux_sym_cmd_identifier_token24] = ACTIONS(1509), + [aux_sym_cmd_identifier_token25] = ACTIONS(1509), + [aux_sym_cmd_identifier_token26] = ACTIONS(1509), + [aux_sym_cmd_identifier_token27] = ACTIONS(1509), + [aux_sym_cmd_identifier_token28] = ACTIONS(1509), + [aux_sym_cmd_identifier_token29] = ACTIONS(1509), + [aux_sym_cmd_identifier_token30] = ACTIONS(1509), + [aux_sym_cmd_identifier_token31] = ACTIONS(1509), + [aux_sym_cmd_identifier_token32] = ACTIONS(1509), + [aux_sym_cmd_identifier_token33] = ACTIONS(1509), + [aux_sym_cmd_identifier_token34] = ACTIONS(1507), + [aux_sym_cmd_identifier_token35] = ACTIONS(1509), + [aux_sym_cmd_identifier_token36] = ACTIONS(1509), + [aux_sym_cmd_identifier_token37] = ACTIONS(1509), + [aux_sym_cmd_identifier_token38] = ACTIONS(1507), + [aux_sym_cmd_identifier_token39] = ACTIONS(1509), + [aux_sym_cmd_identifier_token40] = ACTIONS(1509), [sym__newline] = ACTIONS(139), [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_AT] = ACTIONS(1516), - [anon_sym_def] = ACTIONS(1514), - [anon_sym_export_DASHenv] = ACTIONS(1514), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym_module] = ACTIONS(1514), - [anon_sym_use] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_def] = ACTIONS(1507), + [anon_sym_export_DASHenv] = ACTIONS(1507), + [anon_sym_extern] = ACTIONS(1507), + [anon_sym_module] = ACTIONS(1507), + [anon_sym_use] = ACTIONS(1507), + [anon_sym_LBRACK] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1509), [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1514), - [anon_sym_error] = ACTIONS(1514), - [anon_sym_DASH2] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_loop] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_do] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_match] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1507), + [anon_sym_error] = ACTIONS(1507), + [anon_sym_DASH2] = ACTIONS(1507), + [anon_sym_break] = ACTIONS(1507), + [anon_sym_continue] = ACTIONS(1507), + [anon_sym_for] = ACTIONS(1507), + [anon_sym_loop] = ACTIONS(1507), + [anon_sym_while] = ACTIONS(1507), + [anon_sym_do] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_match] = ACTIONS(1507), + [anon_sym_LBRACE] = ACTIONS(1509), [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1514), - [anon_sym_try] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_source] = ACTIONS(1514), - [anon_sym_source_DASHenv] = ACTIONS(1514), - [anon_sym_hide] = ACTIONS(1514), - [anon_sym_hide_DASHenv] = ACTIONS(1514), - [anon_sym_overlay] = ACTIONS(1514), - [anon_sym_where] = ACTIONS(1516), - [aux_sym_expr_unary_token1] = ACTIONS(1516), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1516), - [anon_sym_DOT_DOT_LT] = ACTIONS(1516), - [anon_sym_null] = ACTIONS(1514), - [anon_sym_true] = ACTIONS(1514), - [anon_sym_false] = ACTIONS(1514), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1516), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), - [aux_sym__val_number_token1] = ACTIONS(1516), - [aux_sym__val_number_token2] = ACTIONS(1516), - [aux_sym__val_number_token3] = ACTIONS(1516), - [aux_sym__val_number_token4] = ACTIONS(1514), - [aux_sym__val_number_token5] = ACTIONS(1514), - [aux_sym__val_number_token6] = ACTIONS(1514), - [anon_sym_0b] = ACTIONS(1514), - [anon_sym_0o] = ACTIONS(1514), - [anon_sym_0x] = ACTIONS(1514), - [sym_val_date] = ACTIONS(1516), - [anon_sym_DQUOTE] = ACTIONS(1516), - [sym__str_single_quotes] = ACTIONS(1516), - [sym__str_back_ticks] = ACTIONS(1516), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1516), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1516), - [aux_sym_env_var_token1] = ACTIONS(1514), - [anon_sym_CARET] = ACTIONS(1516), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1516), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_try] = ACTIONS(1507), + [anon_sym_return] = ACTIONS(1507), + [anon_sym_source] = ACTIONS(1507), + [anon_sym_source_DASHenv] = ACTIONS(1507), + [anon_sym_hide] = ACTIONS(1507), + [anon_sym_hide_DASHenv] = ACTIONS(1507), + [anon_sym_overlay] = ACTIONS(1507), + [anon_sym_where] = ACTIONS(1509), + [aux_sym_expr_unary_token1] = ACTIONS(1509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1509), + [anon_sym_DOT_DOT_LT] = ACTIONS(1509), + [anon_sym_null] = ACTIONS(1507), + [anon_sym_true] = ACTIONS(1507), + [anon_sym_false] = ACTIONS(1507), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1509), + [aux_sym__val_number_decimal_token4] = ACTIONS(1509), + [aux_sym__val_number_token1] = ACTIONS(1509), + [aux_sym__val_number_token2] = ACTIONS(1509), + [aux_sym__val_number_token3] = ACTIONS(1509), + [aux_sym__val_number_token4] = ACTIONS(1507), + [aux_sym__val_number_token5] = ACTIONS(1507), + [aux_sym__val_number_token6] = ACTIONS(1507), + [anon_sym_0b] = ACTIONS(1507), + [anon_sym_0o] = ACTIONS(1507), + [anon_sym_0x] = ACTIONS(1507), + [sym_val_date] = ACTIONS(1509), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym__str_single_quotes] = ACTIONS(1509), + [sym__str_back_ticks] = ACTIONS(1509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1509), + [aux_sym_env_var_token1] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1509), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1509), }, [220] = { [sym_comment] = STATE(220), - [aux_sym__block_body_repeat1] = STATE(212), - [anon_sym_export] = ACTIONS(1514), - [anon_sym_alias] = ACTIONS(1514), - [anon_sym_let] = ACTIONS(1514), - [anon_sym_let_DASHenv] = ACTIONS(1514), - [anon_sym_mut] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [aux_sym_cmd_identifier_token1] = ACTIONS(1514), - [aux_sym_cmd_identifier_token2] = ACTIONS(1516), - [aux_sym_cmd_identifier_token3] = ACTIONS(1516), - [aux_sym_cmd_identifier_token4] = ACTIONS(1516), - [aux_sym_cmd_identifier_token5] = ACTIONS(1516), - [aux_sym_cmd_identifier_token6] = ACTIONS(1516), - [aux_sym_cmd_identifier_token7] = ACTIONS(1516), - [aux_sym_cmd_identifier_token8] = ACTIONS(1514), - [aux_sym_cmd_identifier_token9] = ACTIONS(1514), - [aux_sym_cmd_identifier_token10] = ACTIONS(1516), - [aux_sym_cmd_identifier_token11] = ACTIONS(1516), - [aux_sym_cmd_identifier_token12] = ACTIONS(1514), - [aux_sym_cmd_identifier_token13] = ACTIONS(1514), - [aux_sym_cmd_identifier_token14] = ACTIONS(1514), - [aux_sym_cmd_identifier_token15] = ACTIONS(1514), - [aux_sym_cmd_identifier_token16] = ACTIONS(1516), - [aux_sym_cmd_identifier_token17] = ACTIONS(1516), - [aux_sym_cmd_identifier_token18] = ACTIONS(1516), - [aux_sym_cmd_identifier_token19] = ACTIONS(1516), - [aux_sym_cmd_identifier_token20] = ACTIONS(1516), - [aux_sym_cmd_identifier_token21] = ACTIONS(1516), - [aux_sym_cmd_identifier_token22] = ACTIONS(1516), - [aux_sym_cmd_identifier_token23] = ACTIONS(1516), - [aux_sym_cmd_identifier_token24] = ACTIONS(1516), - [aux_sym_cmd_identifier_token25] = ACTIONS(1516), - [aux_sym_cmd_identifier_token26] = ACTIONS(1516), - [aux_sym_cmd_identifier_token27] = ACTIONS(1516), - [aux_sym_cmd_identifier_token28] = ACTIONS(1516), - [aux_sym_cmd_identifier_token29] = ACTIONS(1516), - [aux_sym_cmd_identifier_token30] = ACTIONS(1516), - [aux_sym_cmd_identifier_token31] = ACTIONS(1516), - [aux_sym_cmd_identifier_token32] = ACTIONS(1516), - [aux_sym_cmd_identifier_token33] = ACTIONS(1516), - [aux_sym_cmd_identifier_token34] = ACTIONS(1514), - [aux_sym_cmd_identifier_token35] = ACTIONS(1516), - [aux_sym_cmd_identifier_token36] = ACTIONS(1516), - [aux_sym_cmd_identifier_token37] = ACTIONS(1516), - [aux_sym_cmd_identifier_token38] = ACTIONS(1514), - [aux_sym_cmd_identifier_token39] = ACTIONS(1516), - [aux_sym_cmd_identifier_token40] = ACTIONS(1516), + [aux_sym__block_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(1507), + [anon_sym_alias] = ACTIONS(1507), + [anon_sym_let] = ACTIONS(1507), + [anon_sym_let_DASHenv] = ACTIONS(1507), + [anon_sym_mut] = ACTIONS(1507), + [anon_sym_const] = ACTIONS(1507), + [aux_sym_cmd_identifier_token1] = ACTIONS(1507), + [aux_sym_cmd_identifier_token2] = ACTIONS(1509), + [aux_sym_cmd_identifier_token3] = ACTIONS(1509), + [aux_sym_cmd_identifier_token4] = ACTIONS(1509), + [aux_sym_cmd_identifier_token5] = ACTIONS(1509), + [aux_sym_cmd_identifier_token6] = ACTIONS(1509), + [aux_sym_cmd_identifier_token7] = ACTIONS(1509), + [aux_sym_cmd_identifier_token8] = ACTIONS(1507), + [aux_sym_cmd_identifier_token9] = ACTIONS(1507), + [aux_sym_cmd_identifier_token10] = ACTIONS(1509), + [aux_sym_cmd_identifier_token11] = ACTIONS(1509), + [aux_sym_cmd_identifier_token12] = ACTIONS(1507), + [aux_sym_cmd_identifier_token13] = ACTIONS(1507), + [aux_sym_cmd_identifier_token14] = ACTIONS(1507), + [aux_sym_cmd_identifier_token15] = ACTIONS(1507), + [aux_sym_cmd_identifier_token16] = ACTIONS(1509), + [aux_sym_cmd_identifier_token17] = ACTIONS(1509), + [aux_sym_cmd_identifier_token18] = ACTIONS(1509), + [aux_sym_cmd_identifier_token19] = ACTIONS(1509), + [aux_sym_cmd_identifier_token20] = ACTIONS(1509), + [aux_sym_cmd_identifier_token21] = ACTIONS(1509), + [aux_sym_cmd_identifier_token22] = ACTIONS(1509), + [aux_sym_cmd_identifier_token23] = ACTIONS(1509), + [aux_sym_cmd_identifier_token24] = ACTIONS(1509), + [aux_sym_cmd_identifier_token25] = ACTIONS(1509), + [aux_sym_cmd_identifier_token26] = ACTIONS(1509), + [aux_sym_cmd_identifier_token27] = ACTIONS(1509), + [aux_sym_cmd_identifier_token28] = ACTIONS(1509), + [aux_sym_cmd_identifier_token29] = ACTIONS(1509), + [aux_sym_cmd_identifier_token30] = ACTIONS(1509), + [aux_sym_cmd_identifier_token31] = ACTIONS(1509), + [aux_sym_cmd_identifier_token32] = ACTIONS(1509), + [aux_sym_cmd_identifier_token33] = ACTIONS(1509), + [aux_sym_cmd_identifier_token34] = ACTIONS(1507), + [aux_sym_cmd_identifier_token35] = ACTIONS(1509), + [aux_sym_cmd_identifier_token36] = ACTIONS(1509), + [aux_sym_cmd_identifier_token37] = ACTIONS(1509), + [aux_sym_cmd_identifier_token38] = ACTIONS(1507), + [aux_sym_cmd_identifier_token39] = ACTIONS(1509), + [aux_sym_cmd_identifier_token40] = ACTIONS(1509), [sym__newline] = ACTIONS(139), [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_AT] = ACTIONS(1516), - [anon_sym_def] = ACTIONS(1514), - [anon_sym_export_DASHenv] = ACTIONS(1514), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym_module] = ACTIONS(1514), - [anon_sym_use] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_def] = ACTIONS(1507), + [anon_sym_export_DASHenv] = ACTIONS(1507), + [anon_sym_extern] = ACTIONS(1507), + [anon_sym_module] = ACTIONS(1507), + [anon_sym_use] = ACTIONS(1507), + [anon_sym_LBRACK] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1509), [anon_sym_RPAREN] = ACTIONS(1522), - [anon_sym_DOLLAR] = ACTIONS(1514), - [anon_sym_error] = ACTIONS(1514), - [anon_sym_DASH2] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_loop] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_do] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_match] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1507), + [anon_sym_error] = ACTIONS(1507), + [anon_sym_DASH2] = ACTIONS(1507), + [anon_sym_break] = ACTIONS(1507), + [anon_sym_continue] = ACTIONS(1507), + [anon_sym_for] = ACTIONS(1507), + [anon_sym_loop] = ACTIONS(1507), + [anon_sym_while] = ACTIONS(1507), + [anon_sym_do] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_match] = ACTIONS(1507), + [anon_sym_LBRACE] = ACTIONS(1509), [anon_sym_RBRACE] = ACTIONS(1522), - [anon_sym_DOT_DOT] = ACTIONS(1514), - [anon_sym_try] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_source] = ACTIONS(1514), - [anon_sym_source_DASHenv] = ACTIONS(1514), - [anon_sym_hide] = ACTIONS(1514), - [anon_sym_hide_DASHenv] = ACTIONS(1514), - [anon_sym_overlay] = ACTIONS(1514), - [anon_sym_where] = ACTIONS(1516), - [aux_sym_expr_unary_token1] = ACTIONS(1516), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1516), - [anon_sym_DOT_DOT_LT] = ACTIONS(1516), - [anon_sym_null] = ACTIONS(1514), - [anon_sym_true] = ACTIONS(1514), - [anon_sym_false] = ACTIONS(1514), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1516), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), - [aux_sym__val_number_token1] = ACTIONS(1516), - [aux_sym__val_number_token2] = ACTIONS(1516), - [aux_sym__val_number_token3] = ACTIONS(1516), - [aux_sym__val_number_token4] = ACTIONS(1514), - [aux_sym__val_number_token5] = ACTIONS(1514), - [aux_sym__val_number_token6] = ACTIONS(1514), - [anon_sym_0b] = ACTIONS(1514), - [anon_sym_0o] = ACTIONS(1514), - [anon_sym_0x] = ACTIONS(1514), - [sym_val_date] = ACTIONS(1516), - [anon_sym_DQUOTE] = ACTIONS(1516), - [sym__str_single_quotes] = ACTIONS(1516), - [sym__str_back_ticks] = ACTIONS(1516), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1516), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1516), - [aux_sym_env_var_token1] = ACTIONS(1514), - [anon_sym_CARET] = ACTIONS(1516), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1516), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_try] = ACTIONS(1507), + [anon_sym_return] = ACTIONS(1507), + [anon_sym_source] = ACTIONS(1507), + [anon_sym_source_DASHenv] = ACTIONS(1507), + [anon_sym_hide] = ACTIONS(1507), + [anon_sym_hide_DASHenv] = ACTIONS(1507), + [anon_sym_overlay] = ACTIONS(1507), + [anon_sym_where] = ACTIONS(1509), + [aux_sym_expr_unary_token1] = ACTIONS(1509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1509), + [anon_sym_DOT_DOT_LT] = ACTIONS(1509), + [anon_sym_null] = ACTIONS(1507), + [anon_sym_true] = ACTIONS(1507), + [anon_sym_false] = ACTIONS(1507), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1509), + [aux_sym__val_number_decimal_token4] = ACTIONS(1509), + [aux_sym__val_number_token1] = ACTIONS(1509), + [aux_sym__val_number_token2] = ACTIONS(1509), + [aux_sym__val_number_token3] = ACTIONS(1509), + [aux_sym__val_number_token4] = ACTIONS(1507), + [aux_sym__val_number_token5] = ACTIONS(1507), + [aux_sym__val_number_token6] = ACTIONS(1507), + [anon_sym_0b] = ACTIONS(1507), + [anon_sym_0o] = ACTIONS(1507), + [anon_sym_0x] = ACTIONS(1507), + [sym_val_date] = ACTIONS(1509), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym__str_single_quotes] = ACTIONS(1509), + [sym__str_back_ticks] = ACTIONS(1509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1509), + [aux_sym_env_var_token1] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1509), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1509), }, [221] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5032), - [sym_block] = STATE(5085), - [sym__expression_parenthesized] = STATE(5085), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1184), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5085), + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4885), + [sym_block] = STATE(4886), + [sym__expression_parenthesized] = STATE(4886), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1134), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4886), [sym_comment] = STATE(221), - [aux_sym_shebang_repeat1] = STATE(1202), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -99995,6 +98881,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(247), }, [222] = { + [sym__expr_parenthesized_immediate] = STATE(606), + [sym__immediate_decimal] = STATE(607), + [sym_val_variable] = STATE(606), [sym_comment] = STATE(222), [anon_sym_export] = ACTIONS(1538), [anon_sym_alias] = ACTIONS(1538), @@ -100049,7 +98938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1538), [anon_sym_LPAREN] = ACTIONS(1538), [anon_sym_COMMA] = ACTIONS(1538), - [anon_sym_DOLLAR] = ACTIONS(1538), + [anon_sym_DOLLAR] = ACTIONS(1463), [anon_sym_error] = ACTIONS(1538), [anon_sym_DASH2] = ACTIONS(1538), [anon_sym_break] = ACTIONS(1538), @@ -100073,13 +98962,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(1538), [anon_sym_overlay] = ACTIONS(1538), [anon_sym_as] = ACTIONS(1538), - [anon_sym_LPAREN2] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1465), [anon_sym_PLUS2] = ACTIONS(1538), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [aux_sym__immediate_decimal_token2] = ACTIONS(1542), + [aux_sym__immediate_decimal_token1] = ACTIONS(1540), + [aux_sym__immediate_decimal_token3] = ACTIONS(1540), + [aux_sym__immediate_decimal_token4] = ACTIONS(1542), + [aux_sym__immediate_decimal_token5] = ACTIONS(1544), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1538), [aux_sym__val_number_decimal_token1] = ACTIONS(1538), [aux_sym__val_number_decimal_token2] = ACTIONS(1538), @@ -100091,165 +98980,1272 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(1538), [aux_sym__val_number_token5] = ACTIONS(1538), [aux_sym__val_number_token6] = ACTIONS(1538), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = 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), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1538), - [sym__entry_separator] = ACTIONS(1540), + [sym__entry_separator] = ACTIONS(1546), [anon_sym_register] = ACTIONS(1538), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1538), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1540), + [sym_raw_string_begin] = ACTIONS(1546), }, [223] = { - [sym__expr_parenthesized_immediate] = STATE(628), - [sym__immediate_decimal] = STATE(629), - [sym_val_variable] = STATE(628), + [sym__expr_parenthesized_immediate] = STATE(655), + [sym__immediate_decimal] = STATE(534), + [sym_val_variable] = STATE(655), [sym_comment] = STATE(223), - [anon_sym_export] = ACTIONS(1544), - [anon_sym_alias] = ACTIONS(1544), - [anon_sym_let] = ACTIONS(1544), - [anon_sym_let_DASHenv] = ACTIONS(1544), - [anon_sym_mut] = ACTIONS(1544), - [anon_sym_const] = ACTIONS(1544), - [aux_sym_cmd_identifier_token1] = ACTIONS(1544), - [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(1544), - [aux_sym_cmd_identifier_token9] = ACTIONS(1544), - [aux_sym_cmd_identifier_token10] = ACTIONS(1544), - [aux_sym_cmd_identifier_token11] = ACTIONS(1544), - [aux_sym_cmd_identifier_token12] = ACTIONS(1544), - [aux_sym_cmd_identifier_token13] = ACTIONS(1544), - [aux_sym_cmd_identifier_token14] = ACTIONS(1544), - [aux_sym_cmd_identifier_token15] = ACTIONS(1544), - [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(1544), - [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(1544), - [aux_sym_cmd_identifier_token39] = ACTIONS(1544), - [aux_sym_cmd_identifier_token40] = ACTIONS(1544), - [anon_sym_def] = ACTIONS(1544), - [anon_sym_export_DASHenv] = ACTIONS(1544), - [anon_sym_extern] = ACTIONS(1544), - [anon_sym_module] = ACTIONS(1544), - [anon_sym_use] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1544), - [anon_sym_COMMA] = ACTIONS(1544), + [anon_sym_export] = ACTIONS(1431), + [anon_sym_alias] = ACTIONS(1431), + [anon_sym_let] = ACTIONS(1431), + [anon_sym_let_DASHenv] = ACTIONS(1431), + [anon_sym_mut] = ACTIONS(1431), + [anon_sym_const] = ACTIONS(1431), + [aux_sym_cmd_identifier_token1] = ACTIONS(1431), + [aux_sym_cmd_identifier_token2] = ACTIONS(1445), + [aux_sym_cmd_identifier_token3] = ACTIONS(1445), + [aux_sym_cmd_identifier_token4] = ACTIONS(1445), + [aux_sym_cmd_identifier_token5] = ACTIONS(1445), + [aux_sym_cmd_identifier_token6] = ACTIONS(1445), + [aux_sym_cmd_identifier_token7] = ACTIONS(1445), + [aux_sym_cmd_identifier_token8] = ACTIONS(1431), + [aux_sym_cmd_identifier_token9] = ACTIONS(1431), + [aux_sym_cmd_identifier_token10] = ACTIONS(1445), + [aux_sym_cmd_identifier_token11] = ACTIONS(1445), + [aux_sym_cmd_identifier_token12] = ACTIONS(1431), + [aux_sym_cmd_identifier_token13] = ACTIONS(1431), + [aux_sym_cmd_identifier_token14] = ACTIONS(1431), + [aux_sym_cmd_identifier_token15] = ACTIONS(1431), + [aux_sym_cmd_identifier_token16] = ACTIONS(1445), + [aux_sym_cmd_identifier_token17] = ACTIONS(1445), + [aux_sym_cmd_identifier_token18] = ACTIONS(1445), + [aux_sym_cmd_identifier_token19] = ACTIONS(1445), + [aux_sym_cmd_identifier_token20] = ACTIONS(1445), + [aux_sym_cmd_identifier_token21] = ACTIONS(1445), + [aux_sym_cmd_identifier_token22] = ACTIONS(1445), + [aux_sym_cmd_identifier_token23] = ACTIONS(1445), + [aux_sym_cmd_identifier_token24] = ACTIONS(1445), + [aux_sym_cmd_identifier_token25] = ACTIONS(1445), + [aux_sym_cmd_identifier_token26] = ACTIONS(1445), + [aux_sym_cmd_identifier_token27] = ACTIONS(1445), + [aux_sym_cmd_identifier_token28] = ACTIONS(1445), + [aux_sym_cmd_identifier_token29] = ACTIONS(1445), + [aux_sym_cmd_identifier_token30] = ACTIONS(1445), + [aux_sym_cmd_identifier_token31] = ACTIONS(1445), + [aux_sym_cmd_identifier_token32] = ACTIONS(1445), + [aux_sym_cmd_identifier_token33] = ACTIONS(1445), + [aux_sym_cmd_identifier_token34] = ACTIONS(1431), + [aux_sym_cmd_identifier_token35] = ACTIONS(1445), + [aux_sym_cmd_identifier_token36] = ACTIONS(1445), + [aux_sym_cmd_identifier_token37] = ACTIONS(1445), + [aux_sym_cmd_identifier_token38] = ACTIONS(1431), + [aux_sym_cmd_identifier_token39] = ACTIONS(1445), + [aux_sym_cmd_identifier_token40] = ACTIONS(1445), + [anon_sym_def] = ACTIONS(1431), + [anon_sym_export_DASHenv] = ACTIONS(1431), + [anon_sym_extern] = ACTIONS(1431), + [anon_sym_module] = ACTIONS(1431), + [anon_sym_use] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_COMMA] = ACTIONS(1445), + [anon_sym_DOLLAR] = ACTIONS(1293), + [anon_sym_error] = ACTIONS(1431), + [anon_sym_DASH2] = ACTIONS(1431), + [anon_sym_break] = ACTIONS(1431), + [anon_sym_continue] = ACTIONS(1431), + [anon_sym_for] = ACTIONS(1431), + [anon_sym_in2] = ACTIONS(1431), + [anon_sym_loop] = ACTIONS(1431), + [anon_sym_make] = ACTIONS(1431), + [anon_sym_while] = ACTIONS(1431), + [anon_sym_do] = ACTIONS(1431), + [anon_sym_if] = ACTIONS(1431), + [anon_sym_else] = ACTIONS(1431), + [anon_sym_match] = ACTIONS(1431), + [anon_sym_RBRACE] = ACTIONS(1445), + [anon_sym_try] = ACTIONS(1431), + [anon_sym_catch] = ACTIONS(1431), + [anon_sym_return] = ACTIONS(1431), + [anon_sym_source] = ACTIONS(1431), + [anon_sym_source_DASHenv] = ACTIONS(1431), + [anon_sym_hide] = ACTIONS(1431), + [anon_sym_hide_DASHenv] = ACTIONS(1431), + [anon_sym_overlay] = ACTIONS(1431), + [anon_sym_as] = ACTIONS(1431), + [anon_sym_LPAREN2] = ACTIONS(1548), + [anon_sym_PLUS2] = ACTIONS(1431), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1445), + [aux_sym__immediate_decimal_token1] = ACTIONS(1550), + [aux_sym__immediate_decimal_token3] = ACTIONS(1552), + [aux_sym__immediate_decimal_token4] = ACTIONS(1554), + [aux_sym__immediate_decimal_token5] = ACTIONS(1556), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1445), + [aux_sym__val_number_decimal_token1] = ACTIONS(1431), + [aux_sym__val_number_decimal_token2] = ACTIONS(1431), + [aux_sym__val_number_decimal_token3] = ACTIONS(1431), + [aux_sym__val_number_decimal_token4] = ACTIONS(1431), + [aux_sym__val_number_token1] = ACTIONS(1445), + [aux_sym__val_number_token2] = ACTIONS(1445), + [aux_sym__val_number_token3] = ACTIONS(1445), + [aux_sym__val_number_token4] = ACTIONS(1431), + [aux_sym__val_number_token5] = ACTIONS(1431), + [aux_sym__val_number_token6] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1445), + [sym__str_single_quotes] = ACTIONS(1445), + [sym__str_back_ticks] = ACTIONS(1445), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1445), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1445), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1445), + [anon_sym_register] = ACTIONS(1431), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1447), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1445), + }, + [224] = { + [sym__expr_parenthesized_immediate] = STATE(668), + [sym__immediate_decimal] = STATE(540), + [sym_val_variable] = STATE(668), + [sym_comment] = STATE(224), + [anon_sym_export] = ACTIONS(1473), + [anon_sym_alias] = ACTIONS(1473), + [anon_sym_let] = ACTIONS(1473), + [anon_sym_let_DASHenv] = ACTIONS(1473), + [anon_sym_mut] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [aux_sym_cmd_identifier_token1] = ACTIONS(1473), + [aux_sym_cmd_identifier_token2] = ACTIONS(1475), + [aux_sym_cmd_identifier_token3] = ACTIONS(1475), + [aux_sym_cmd_identifier_token4] = ACTIONS(1475), + [aux_sym_cmd_identifier_token5] = ACTIONS(1475), + [aux_sym_cmd_identifier_token6] = ACTIONS(1475), + [aux_sym_cmd_identifier_token7] = ACTIONS(1475), + [aux_sym_cmd_identifier_token8] = ACTIONS(1473), + [aux_sym_cmd_identifier_token9] = ACTIONS(1473), + [aux_sym_cmd_identifier_token10] = ACTIONS(1475), + [aux_sym_cmd_identifier_token11] = ACTIONS(1475), + [aux_sym_cmd_identifier_token12] = ACTIONS(1473), + [aux_sym_cmd_identifier_token13] = ACTIONS(1473), + [aux_sym_cmd_identifier_token14] = ACTIONS(1473), + [aux_sym_cmd_identifier_token15] = ACTIONS(1473), + [aux_sym_cmd_identifier_token16] = ACTIONS(1475), + [aux_sym_cmd_identifier_token17] = ACTIONS(1475), + [aux_sym_cmd_identifier_token18] = ACTIONS(1475), + [aux_sym_cmd_identifier_token19] = ACTIONS(1475), + [aux_sym_cmd_identifier_token20] = ACTIONS(1475), + [aux_sym_cmd_identifier_token21] = ACTIONS(1475), + [aux_sym_cmd_identifier_token22] = ACTIONS(1475), + [aux_sym_cmd_identifier_token23] = ACTIONS(1475), + [aux_sym_cmd_identifier_token24] = ACTIONS(1475), + [aux_sym_cmd_identifier_token25] = ACTIONS(1475), + [aux_sym_cmd_identifier_token26] = ACTIONS(1475), + [aux_sym_cmd_identifier_token27] = ACTIONS(1475), + [aux_sym_cmd_identifier_token28] = ACTIONS(1475), + [aux_sym_cmd_identifier_token29] = ACTIONS(1475), + [aux_sym_cmd_identifier_token30] = ACTIONS(1475), + [aux_sym_cmd_identifier_token31] = ACTIONS(1475), + [aux_sym_cmd_identifier_token32] = ACTIONS(1475), + [aux_sym_cmd_identifier_token33] = ACTIONS(1475), + [aux_sym_cmd_identifier_token34] = ACTIONS(1473), + [aux_sym_cmd_identifier_token35] = ACTIONS(1475), + [aux_sym_cmd_identifier_token36] = ACTIONS(1475), + [aux_sym_cmd_identifier_token37] = ACTIONS(1475), + [aux_sym_cmd_identifier_token38] = ACTIONS(1473), + [aux_sym_cmd_identifier_token39] = ACTIONS(1475), + [aux_sym_cmd_identifier_token40] = ACTIONS(1475), + [anon_sym_def] = ACTIONS(1473), + [anon_sym_export_DASHenv] = ACTIONS(1473), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym_module] = ACTIONS(1473), + [anon_sym_use] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_COMMA] = ACTIONS(1475), + [anon_sym_DOLLAR] = ACTIONS(1293), + [anon_sym_error] = ACTIONS(1473), + [anon_sym_DASH2] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_in2] = ACTIONS(1473), + [anon_sym_loop] = ACTIONS(1473), + [anon_sym_make] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_else] = ACTIONS(1473), + [anon_sym_match] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_try] = ACTIONS(1473), + [anon_sym_catch] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_source] = ACTIONS(1473), + [anon_sym_source_DASHenv] = ACTIONS(1473), + [anon_sym_hide] = ACTIONS(1473), + [anon_sym_hide_DASHenv] = ACTIONS(1473), + [anon_sym_overlay] = ACTIONS(1473), + [anon_sym_as] = ACTIONS(1473), + [anon_sym_LPAREN2] = ACTIONS(1548), + [anon_sym_PLUS2] = ACTIONS(1473), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1475), + [aux_sym__immediate_decimal_token1] = ACTIONS(1550), + [aux_sym__immediate_decimal_token3] = ACTIONS(1552), + [aux_sym__immediate_decimal_token4] = ACTIONS(1554), + [aux_sym__immediate_decimal_token5] = ACTIONS(1556), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1475), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1473), + [aux_sym__val_number_decimal_token4] = ACTIONS(1473), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [aux_sym__val_number_token4] = ACTIONS(1473), + [aux_sym__val_number_token5] = ACTIONS(1473), + [aux_sym__val_number_token6] = ACTIONS(1473), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1475), + [anon_sym_register] = ACTIONS(1473), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1477), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1475), + }, + [225] = { + [sym_comment] = STATE(225), + [aux_sym__block_body_repeat1] = STATE(288), + [ts_builtin_sym_end] = ACTIONS(1511), + [anon_sym_export] = ACTIONS(1507), + [anon_sym_alias] = ACTIONS(1507), + [anon_sym_let] = ACTIONS(1507), + [anon_sym_let_DASHenv] = ACTIONS(1507), + [anon_sym_mut] = ACTIONS(1507), + [anon_sym_const] = ACTIONS(1507), + [aux_sym_cmd_identifier_token1] = ACTIONS(1507), + [aux_sym_cmd_identifier_token2] = ACTIONS(1509), + [aux_sym_cmd_identifier_token3] = ACTIONS(1509), + [aux_sym_cmd_identifier_token4] = ACTIONS(1509), + [aux_sym_cmd_identifier_token5] = ACTIONS(1509), + [aux_sym_cmd_identifier_token6] = ACTIONS(1509), + [aux_sym_cmd_identifier_token7] = ACTIONS(1509), + [aux_sym_cmd_identifier_token8] = ACTIONS(1507), + [aux_sym_cmd_identifier_token9] = ACTIONS(1507), + [aux_sym_cmd_identifier_token10] = ACTIONS(1509), + [aux_sym_cmd_identifier_token11] = ACTIONS(1509), + [aux_sym_cmd_identifier_token12] = ACTIONS(1507), + [aux_sym_cmd_identifier_token13] = ACTIONS(1507), + [aux_sym_cmd_identifier_token14] = ACTIONS(1507), + [aux_sym_cmd_identifier_token15] = ACTIONS(1507), + [aux_sym_cmd_identifier_token16] = ACTIONS(1509), + [aux_sym_cmd_identifier_token17] = ACTIONS(1509), + [aux_sym_cmd_identifier_token18] = ACTIONS(1509), + [aux_sym_cmd_identifier_token19] = ACTIONS(1509), + [aux_sym_cmd_identifier_token20] = ACTIONS(1509), + [aux_sym_cmd_identifier_token21] = ACTIONS(1509), + [aux_sym_cmd_identifier_token22] = ACTIONS(1509), + [aux_sym_cmd_identifier_token23] = ACTIONS(1509), + [aux_sym_cmd_identifier_token24] = ACTIONS(1509), + [aux_sym_cmd_identifier_token25] = ACTIONS(1509), + [aux_sym_cmd_identifier_token26] = ACTIONS(1509), + [aux_sym_cmd_identifier_token27] = ACTIONS(1509), + [aux_sym_cmd_identifier_token28] = ACTIONS(1509), + [aux_sym_cmd_identifier_token29] = ACTIONS(1509), + [aux_sym_cmd_identifier_token30] = ACTIONS(1509), + [aux_sym_cmd_identifier_token31] = ACTIONS(1509), + [aux_sym_cmd_identifier_token32] = ACTIONS(1509), + [aux_sym_cmd_identifier_token33] = ACTIONS(1509), + [aux_sym_cmd_identifier_token34] = ACTIONS(1507), + [aux_sym_cmd_identifier_token35] = ACTIONS(1509), + [aux_sym_cmd_identifier_token36] = ACTIONS(1509), + [aux_sym_cmd_identifier_token37] = ACTIONS(1509), + [aux_sym_cmd_identifier_token38] = ACTIONS(1507), + [aux_sym_cmd_identifier_token39] = ACTIONS(1509), + [aux_sym_cmd_identifier_token40] = ACTIONS(1509), + [sym__newline] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_def] = ACTIONS(1507), + [anon_sym_export_DASHenv] = ACTIONS(1507), + [anon_sym_extern] = ACTIONS(1507), + [anon_sym_module] = ACTIONS(1507), + [anon_sym_use] = ACTIONS(1507), + [anon_sym_LBRACK] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1507), + [anon_sym_error] = ACTIONS(1507), + [anon_sym_DASH2] = ACTIONS(1507), + [anon_sym_break] = ACTIONS(1507), + [anon_sym_continue] = ACTIONS(1507), + [anon_sym_for] = ACTIONS(1507), + [anon_sym_loop] = ACTIONS(1507), + [anon_sym_while] = ACTIONS(1507), + [anon_sym_do] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_match] = ACTIONS(1507), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_try] = ACTIONS(1507), + [anon_sym_return] = ACTIONS(1507), + [anon_sym_source] = ACTIONS(1507), + [anon_sym_source_DASHenv] = ACTIONS(1507), + [anon_sym_hide] = ACTIONS(1507), + [anon_sym_hide_DASHenv] = ACTIONS(1507), + [anon_sym_overlay] = ACTIONS(1507), + [anon_sym_where] = ACTIONS(1509), + [aux_sym_expr_unary_token1] = ACTIONS(1509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1509), + [anon_sym_DOT_DOT_LT] = ACTIONS(1509), + [anon_sym_null] = ACTIONS(1507), + [anon_sym_true] = ACTIONS(1507), + [anon_sym_false] = ACTIONS(1507), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1509), + [aux_sym__val_number_decimal_token4] = ACTIONS(1509), + [aux_sym__val_number_token1] = ACTIONS(1509), + [aux_sym__val_number_token2] = ACTIONS(1509), + [aux_sym__val_number_token3] = ACTIONS(1509), + [aux_sym__val_number_token4] = ACTIONS(1507), + [aux_sym__val_number_token5] = ACTIONS(1507), + [aux_sym__val_number_token6] = ACTIONS(1507), + [anon_sym_0b] = ACTIONS(1507), + [anon_sym_0o] = ACTIONS(1507), + [anon_sym_0x] = ACTIONS(1507), + [sym_val_date] = ACTIONS(1509), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym__str_single_quotes] = ACTIONS(1509), + [sym__str_back_ticks] = ACTIONS(1509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1509), + [aux_sym_env_var_token1] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1509), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1509), + }, + [226] = { + [sym_comment] = STATE(226), + [aux_sym_shebang_repeat1] = STATE(226), + [anon_sym_export] = ACTIONS(1272), + [anon_sym_alias] = ACTIONS(1272), + [anon_sym_let] = ACTIONS(1272), + [anon_sym_let_DASHenv] = ACTIONS(1272), + [anon_sym_mut] = ACTIONS(1272), + [anon_sym_const] = ACTIONS(1272), + [aux_sym_cmd_identifier_token1] = ACTIONS(1272), + [aux_sym_cmd_identifier_token2] = ACTIONS(1274), + [aux_sym_cmd_identifier_token3] = ACTIONS(1274), + [aux_sym_cmd_identifier_token4] = ACTIONS(1274), + [aux_sym_cmd_identifier_token5] = ACTIONS(1274), + [aux_sym_cmd_identifier_token6] = ACTIONS(1274), + [aux_sym_cmd_identifier_token7] = ACTIONS(1274), + [aux_sym_cmd_identifier_token8] = ACTIONS(1272), + [aux_sym_cmd_identifier_token9] = ACTIONS(1272), + [aux_sym_cmd_identifier_token10] = ACTIONS(1274), + [aux_sym_cmd_identifier_token11] = ACTIONS(1274), + [aux_sym_cmd_identifier_token12] = ACTIONS(1272), + [aux_sym_cmd_identifier_token13] = ACTIONS(1272), + [aux_sym_cmd_identifier_token14] = ACTIONS(1272), + [aux_sym_cmd_identifier_token15] = ACTIONS(1272), + [aux_sym_cmd_identifier_token16] = ACTIONS(1274), + [aux_sym_cmd_identifier_token17] = ACTIONS(1274), + [aux_sym_cmd_identifier_token18] = ACTIONS(1274), + [aux_sym_cmd_identifier_token19] = ACTIONS(1274), + [aux_sym_cmd_identifier_token20] = ACTIONS(1274), + [aux_sym_cmd_identifier_token21] = ACTIONS(1274), + [aux_sym_cmd_identifier_token22] = ACTIONS(1274), + [aux_sym_cmd_identifier_token23] = ACTIONS(1274), + [aux_sym_cmd_identifier_token24] = ACTIONS(1274), + [aux_sym_cmd_identifier_token25] = ACTIONS(1274), + [aux_sym_cmd_identifier_token26] = ACTIONS(1274), + [aux_sym_cmd_identifier_token27] = ACTIONS(1274), + [aux_sym_cmd_identifier_token28] = ACTIONS(1274), + [aux_sym_cmd_identifier_token29] = ACTIONS(1274), + [aux_sym_cmd_identifier_token30] = ACTIONS(1274), + [aux_sym_cmd_identifier_token31] = ACTIONS(1274), + [aux_sym_cmd_identifier_token32] = ACTIONS(1274), + [aux_sym_cmd_identifier_token33] = ACTIONS(1274), + [aux_sym_cmd_identifier_token34] = ACTIONS(1272), + [aux_sym_cmd_identifier_token35] = ACTIONS(1274), + [aux_sym_cmd_identifier_token36] = ACTIONS(1274), + [aux_sym_cmd_identifier_token37] = ACTIONS(1274), + [aux_sym_cmd_identifier_token38] = ACTIONS(1272), + [aux_sym_cmd_identifier_token39] = ACTIONS(1274), + [aux_sym_cmd_identifier_token40] = ACTIONS(1274), + [sym__newline] = ACTIONS(1558), + [anon_sym_SEMI] = ACTIONS(1274), + [anon_sym_PIPE] = ACTIONS(1274), + [anon_sym_AT] = ACTIONS(1274), + [anon_sym_def] = ACTIONS(1272), + [anon_sym_export_DASHenv] = ACTIONS(1272), + [anon_sym_extern] = ACTIONS(1272), + [anon_sym_module] = ACTIONS(1272), + [anon_sym_use] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(1274), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_DOLLAR] = ACTIONS(1272), + [anon_sym_error] = ACTIONS(1272), + [anon_sym_DASH2] = ACTIONS(1272), + [anon_sym_break] = ACTIONS(1272), + [anon_sym_continue] = ACTIONS(1272), + [anon_sym_for] = ACTIONS(1272), + [anon_sym_loop] = ACTIONS(1272), + [anon_sym_while] = ACTIONS(1272), + [anon_sym_do] = ACTIONS(1272), + [anon_sym_if] = ACTIONS(1272), + [anon_sym_match] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_DOT_DOT] = ACTIONS(1272), + [anon_sym_try] = ACTIONS(1272), + [anon_sym_return] = ACTIONS(1272), + [anon_sym_source] = ACTIONS(1272), + [anon_sym_source_DASHenv] = ACTIONS(1272), + [anon_sym_hide] = ACTIONS(1272), + [anon_sym_hide_DASHenv] = ACTIONS(1272), + [anon_sym_overlay] = ACTIONS(1272), + [anon_sym_where] = ACTIONS(1274), + [aux_sym_expr_unary_token1] = ACTIONS(1274), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1274), + [anon_sym_DOT_DOT_LT] = ACTIONS(1274), + [anon_sym_null] = ACTIONS(1272), + [anon_sym_true] = ACTIONS(1272), + [anon_sym_false] = ACTIONS(1272), + [aux_sym__val_number_decimal_token1] = ACTIONS(1272), + [aux_sym__val_number_decimal_token2] = ACTIONS(1274), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_token1] = ACTIONS(1274), + [aux_sym__val_number_token2] = ACTIONS(1274), + [aux_sym__val_number_token3] = ACTIONS(1274), + [aux_sym__val_number_token4] = ACTIONS(1272), + [aux_sym__val_number_token5] = ACTIONS(1272), + [aux_sym__val_number_token6] = ACTIONS(1272), + [anon_sym_0b] = ACTIONS(1272), + [anon_sym_0o] = ACTIONS(1272), + [anon_sym_0x] = ACTIONS(1272), + [sym_val_date] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1274), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1274), + [aux_sym_env_var_token1] = ACTIONS(1272), + [anon_sym_CARET] = ACTIONS(1274), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1274), + }, + [227] = { + [sym_comment] = STATE(227), + [anon_sym_export] = ACTIONS(1491), + [anon_sym_alias] = ACTIONS(1491), + [anon_sym_let] = ACTIONS(1491), + [anon_sym_let_DASHenv] = ACTIONS(1491), + [anon_sym_mut] = ACTIONS(1491), + [anon_sym_const] = ACTIONS(1491), + [aux_sym_cmd_identifier_token1] = ACTIONS(1491), + [aux_sym_cmd_identifier_token2] = ACTIONS(1493), + [aux_sym_cmd_identifier_token3] = ACTIONS(1493), + [aux_sym_cmd_identifier_token4] = ACTIONS(1493), + [aux_sym_cmd_identifier_token5] = ACTIONS(1493), + [aux_sym_cmd_identifier_token6] = ACTIONS(1493), + [aux_sym_cmd_identifier_token7] = ACTIONS(1493), + [aux_sym_cmd_identifier_token8] = ACTIONS(1491), + [aux_sym_cmd_identifier_token9] = ACTIONS(1491), + [aux_sym_cmd_identifier_token10] = ACTIONS(1493), + [aux_sym_cmd_identifier_token11] = ACTIONS(1493), + [aux_sym_cmd_identifier_token12] = ACTIONS(1491), + [aux_sym_cmd_identifier_token13] = ACTIONS(1491), + [aux_sym_cmd_identifier_token14] = ACTIONS(1491), + [aux_sym_cmd_identifier_token15] = ACTIONS(1491), + [aux_sym_cmd_identifier_token16] = ACTIONS(1493), + [aux_sym_cmd_identifier_token17] = ACTIONS(1493), + [aux_sym_cmd_identifier_token18] = ACTIONS(1493), + [aux_sym_cmd_identifier_token19] = ACTIONS(1493), + [aux_sym_cmd_identifier_token20] = ACTIONS(1493), + [aux_sym_cmd_identifier_token21] = ACTIONS(1493), + [aux_sym_cmd_identifier_token22] = ACTIONS(1493), + [aux_sym_cmd_identifier_token23] = ACTIONS(1493), + [aux_sym_cmd_identifier_token24] = ACTIONS(1493), + [aux_sym_cmd_identifier_token25] = ACTIONS(1493), + [aux_sym_cmd_identifier_token26] = ACTIONS(1493), + [aux_sym_cmd_identifier_token27] = ACTIONS(1493), + [aux_sym_cmd_identifier_token28] = ACTIONS(1493), + [aux_sym_cmd_identifier_token29] = ACTIONS(1493), + [aux_sym_cmd_identifier_token30] = ACTIONS(1493), + [aux_sym_cmd_identifier_token31] = ACTIONS(1493), + [aux_sym_cmd_identifier_token32] = ACTIONS(1493), + [aux_sym_cmd_identifier_token33] = ACTIONS(1493), + [aux_sym_cmd_identifier_token34] = ACTIONS(1491), + [aux_sym_cmd_identifier_token35] = ACTIONS(1493), + [aux_sym_cmd_identifier_token36] = ACTIONS(1493), + [aux_sym_cmd_identifier_token37] = ACTIONS(1493), + [aux_sym_cmd_identifier_token38] = ACTIONS(1491), + [aux_sym_cmd_identifier_token39] = ACTIONS(1493), + [aux_sym_cmd_identifier_token40] = ACTIONS(1493), + [anon_sym_def] = ACTIONS(1491), + [anon_sym_export_DASHenv] = ACTIONS(1491), + [anon_sym_extern] = ACTIONS(1491), + [anon_sym_module] = ACTIONS(1491), + [anon_sym_use] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_COMMA] = ACTIONS(1493), + [anon_sym_DOLLAR] = ACTIONS(1491), + [anon_sym_error] = ACTIONS(1491), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_break] = ACTIONS(1491), + [anon_sym_continue] = ACTIONS(1491), + [anon_sym_for] = ACTIONS(1491), + [anon_sym_in2] = ACTIONS(1491), + [anon_sym_loop] = ACTIONS(1491), + [anon_sym_make] = ACTIONS(1491), + [anon_sym_while] = ACTIONS(1491), + [anon_sym_do] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1491), + [anon_sym_else] = ACTIONS(1491), + [anon_sym_match] = ACTIONS(1491), + [anon_sym_RBRACE] = ACTIONS(1493), + [anon_sym_try] = ACTIONS(1491), + [anon_sym_catch] = ACTIONS(1491), + [anon_sym_return] = ACTIONS(1491), + [anon_sym_source] = ACTIONS(1491), + [anon_sym_source_DASHenv] = ACTIONS(1491), + [anon_sym_hide] = ACTIONS(1491), + [anon_sym_hide_DASHenv] = ACTIONS(1491), + [anon_sym_overlay] = ACTIONS(1491), + [anon_sym_as] = ACTIONS(1491), + [anon_sym_LPAREN2] = ACTIONS(1493), + [anon_sym_PLUS2] = ACTIONS(1491), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1493), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [aux_sym__immediate_decimal_token1] = ACTIONS(1561), + [aux_sym__immediate_decimal_token2] = ACTIONS(1563), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1493), + [aux_sym__val_number_decimal_token1] = ACTIONS(1491), + [aux_sym__val_number_decimal_token2] = ACTIONS(1493), + [aux_sym__val_number_decimal_token3] = ACTIONS(1493), + [aux_sym__val_number_decimal_token4] = ACTIONS(1493), + [aux_sym__val_number_token1] = ACTIONS(1493), + [aux_sym__val_number_token2] = ACTIONS(1493), + [aux_sym__val_number_token3] = ACTIONS(1493), + [aux_sym__val_number_token4] = ACTIONS(1491), + [aux_sym__val_number_token5] = ACTIONS(1491), + [aux_sym__val_number_token6] = ACTIONS(1491), + [sym_filesize_unit] = ACTIONS(1491), + [sym_duration_unit] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1493), + [sym__str_single_quotes] = ACTIONS(1493), + [sym__str_back_ticks] = ACTIONS(1493), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1493), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1493), + [anon_sym_register] = ACTIONS(1491), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1493), + }, + [228] = { + [sym_comment] = STATE(228), + [anon_sym_export] = ACTIONS(1499), + [anon_sym_alias] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1499), + [anon_sym_let_DASHenv] = ACTIONS(1499), + [anon_sym_mut] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(1499), + [aux_sym_cmd_identifier_token1] = ACTIONS(1499), + [aux_sym_cmd_identifier_token2] = ACTIONS(1501), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [aux_sym_cmd_identifier_token6] = ACTIONS(1501), + [aux_sym_cmd_identifier_token7] = ACTIONS(1501), + [aux_sym_cmd_identifier_token8] = ACTIONS(1499), + [aux_sym_cmd_identifier_token9] = ACTIONS(1499), + [aux_sym_cmd_identifier_token10] = ACTIONS(1501), + [aux_sym_cmd_identifier_token11] = ACTIONS(1501), + [aux_sym_cmd_identifier_token12] = ACTIONS(1499), + [aux_sym_cmd_identifier_token13] = ACTIONS(1499), + [aux_sym_cmd_identifier_token14] = ACTIONS(1499), + [aux_sym_cmd_identifier_token15] = ACTIONS(1499), + [aux_sym_cmd_identifier_token16] = ACTIONS(1501), + [aux_sym_cmd_identifier_token17] = ACTIONS(1501), + [aux_sym_cmd_identifier_token18] = ACTIONS(1501), + [aux_sym_cmd_identifier_token19] = ACTIONS(1501), + [aux_sym_cmd_identifier_token20] = ACTIONS(1501), + [aux_sym_cmd_identifier_token21] = ACTIONS(1501), + [aux_sym_cmd_identifier_token22] = ACTIONS(1501), + [aux_sym_cmd_identifier_token23] = ACTIONS(1501), + [aux_sym_cmd_identifier_token24] = ACTIONS(1501), + [aux_sym_cmd_identifier_token25] = ACTIONS(1501), + [aux_sym_cmd_identifier_token26] = ACTIONS(1501), + [aux_sym_cmd_identifier_token27] = ACTIONS(1501), + [aux_sym_cmd_identifier_token28] = ACTIONS(1501), + [aux_sym_cmd_identifier_token29] = ACTIONS(1501), + [aux_sym_cmd_identifier_token30] = ACTIONS(1501), + [aux_sym_cmd_identifier_token31] = ACTIONS(1501), + [aux_sym_cmd_identifier_token32] = ACTIONS(1501), + [aux_sym_cmd_identifier_token33] = ACTIONS(1501), + [aux_sym_cmd_identifier_token34] = ACTIONS(1499), + [aux_sym_cmd_identifier_token35] = ACTIONS(1501), + [aux_sym_cmd_identifier_token36] = ACTIONS(1501), + [aux_sym_cmd_identifier_token37] = ACTIONS(1501), + [aux_sym_cmd_identifier_token38] = ACTIONS(1499), + [aux_sym_cmd_identifier_token39] = ACTIONS(1501), + [aux_sym_cmd_identifier_token40] = ACTIONS(1501), + [anon_sym_def] = ACTIONS(1499), + [anon_sym_export_DASHenv] = ACTIONS(1499), + [anon_sym_extern] = ACTIONS(1499), + [anon_sym_module] = ACTIONS(1499), + [anon_sym_use] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_COMMA] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(1499), + [anon_sym_error] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_break] = ACTIONS(1499), + [anon_sym_continue] = ACTIONS(1499), + [anon_sym_for] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_loop] = ACTIONS(1499), + [anon_sym_make] = ACTIONS(1499), + [anon_sym_while] = ACTIONS(1499), + [anon_sym_do] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1499), + [anon_sym_else] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1501), + [anon_sym_try] = ACTIONS(1499), + [anon_sym_catch] = ACTIONS(1499), + [anon_sym_return] = ACTIONS(1499), + [anon_sym_source] = ACTIONS(1499), + [anon_sym_source_DASHenv] = ACTIONS(1499), + [anon_sym_hide] = ACTIONS(1499), + [anon_sym_hide_DASHenv] = ACTIONS(1499), + [anon_sym_overlay] = ACTIONS(1499), + [anon_sym_as] = ACTIONS(1499), + [anon_sym_LPAREN2] = ACTIONS(1501), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1501), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(1567), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1501), + [aux_sym__val_number_decimal_token1] = ACTIONS(1499), + [aux_sym__val_number_decimal_token2] = ACTIONS(1501), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1501), + [aux_sym__val_number_token1] = ACTIONS(1501), + [aux_sym__val_number_token2] = ACTIONS(1501), + [aux_sym__val_number_token3] = ACTIONS(1501), + [aux_sym__val_number_token4] = ACTIONS(1499), + [aux_sym__val_number_token5] = ACTIONS(1499), + [aux_sym__val_number_token6] = ACTIONS(1499), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1501), + [sym__str_single_quotes] = ACTIONS(1501), + [sym__str_back_ticks] = ACTIONS(1501), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1501), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1501), + [anon_sym_register] = ACTIONS(1499), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1501), + }, + [229] = { + [sym_comment] = STATE(229), + [anon_sym_export] = ACTIONS(1499), + [anon_sym_alias] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1499), + [anon_sym_let_DASHenv] = ACTIONS(1499), + [anon_sym_mut] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(1499), + [aux_sym_cmd_identifier_token1] = ACTIONS(1499), + [aux_sym_cmd_identifier_token2] = ACTIONS(1499), + [aux_sym_cmd_identifier_token3] = ACTIONS(1499), + [aux_sym_cmd_identifier_token4] = ACTIONS(1499), + [aux_sym_cmd_identifier_token5] = ACTIONS(1499), + [aux_sym_cmd_identifier_token6] = ACTIONS(1499), + [aux_sym_cmd_identifier_token7] = ACTIONS(1499), + [aux_sym_cmd_identifier_token8] = ACTIONS(1499), + [aux_sym_cmd_identifier_token9] = ACTIONS(1499), + [aux_sym_cmd_identifier_token10] = ACTIONS(1499), + [aux_sym_cmd_identifier_token11] = ACTIONS(1499), + [aux_sym_cmd_identifier_token12] = ACTIONS(1499), + [aux_sym_cmd_identifier_token13] = ACTIONS(1499), + [aux_sym_cmd_identifier_token14] = ACTIONS(1499), + [aux_sym_cmd_identifier_token15] = ACTIONS(1499), + [aux_sym_cmd_identifier_token16] = ACTIONS(1499), + [aux_sym_cmd_identifier_token17] = ACTIONS(1499), + [aux_sym_cmd_identifier_token18] = ACTIONS(1499), + [aux_sym_cmd_identifier_token19] = ACTIONS(1499), + [aux_sym_cmd_identifier_token20] = ACTIONS(1499), + [aux_sym_cmd_identifier_token21] = ACTIONS(1499), + [aux_sym_cmd_identifier_token22] = ACTIONS(1499), + [aux_sym_cmd_identifier_token23] = ACTIONS(1499), + [aux_sym_cmd_identifier_token24] = ACTIONS(1499), + [aux_sym_cmd_identifier_token25] = ACTIONS(1499), + [aux_sym_cmd_identifier_token26] = ACTIONS(1499), + [aux_sym_cmd_identifier_token27] = ACTIONS(1499), + [aux_sym_cmd_identifier_token28] = ACTIONS(1499), + [aux_sym_cmd_identifier_token29] = ACTIONS(1499), + [aux_sym_cmd_identifier_token30] = ACTIONS(1499), + [aux_sym_cmd_identifier_token31] = ACTIONS(1499), + [aux_sym_cmd_identifier_token32] = ACTIONS(1499), + [aux_sym_cmd_identifier_token33] = ACTIONS(1499), + [aux_sym_cmd_identifier_token34] = ACTIONS(1499), + [aux_sym_cmd_identifier_token35] = ACTIONS(1499), + [aux_sym_cmd_identifier_token36] = ACTIONS(1499), + [aux_sym_cmd_identifier_token37] = ACTIONS(1499), + [aux_sym_cmd_identifier_token38] = ACTIONS(1499), + [aux_sym_cmd_identifier_token39] = ACTIONS(1499), + [aux_sym_cmd_identifier_token40] = ACTIONS(1499), + [anon_sym_def] = ACTIONS(1499), + [anon_sym_export_DASHenv] = ACTIONS(1499), + [anon_sym_extern] = ACTIONS(1499), + [anon_sym_module] = ACTIONS(1499), + [anon_sym_use] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_COMMA] = ACTIONS(1499), + [anon_sym_DOLLAR] = ACTIONS(1499), + [anon_sym_error] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_break] = ACTIONS(1499), + [anon_sym_continue] = ACTIONS(1499), + [anon_sym_for] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_loop] = ACTIONS(1499), + [anon_sym_make] = ACTIONS(1499), + [anon_sym_while] = ACTIONS(1499), + [anon_sym_do] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1499), + [anon_sym_else] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_try] = ACTIONS(1499), + [anon_sym_catch] = ACTIONS(1499), + [anon_sym_return] = ACTIONS(1499), + [anon_sym_source] = ACTIONS(1499), + [anon_sym_source_DASHenv] = ACTIONS(1499), + [anon_sym_hide] = ACTIONS(1499), + [anon_sym_hide_DASHenv] = ACTIONS(1499), + [anon_sym_overlay] = ACTIONS(1499), + [anon_sym_as] = ACTIONS(1499), + [anon_sym_LPAREN2] = ACTIONS(1501), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(1505), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1499), + [aux_sym__val_number_decimal_token1] = ACTIONS(1499), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1499), + [aux_sym__val_number_decimal_token4] = ACTIONS(1499), + [aux_sym__val_number_token1] = ACTIONS(1499), + [aux_sym__val_number_token2] = ACTIONS(1499), + [aux_sym__val_number_token3] = ACTIONS(1499), + [aux_sym__val_number_token4] = ACTIONS(1499), + [aux_sym__val_number_token5] = ACTIONS(1499), + [aux_sym__val_number_token6] = ACTIONS(1499), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [sym__str_single_quotes] = ACTIONS(1499), + [sym__str_back_ticks] = ACTIONS(1499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1499), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1499), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1499), + [sym__entry_separator] = ACTIONS(1501), + [anon_sym_register] = ACTIONS(1499), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1501), + }, + [230] = { + [sym__expr_parenthesized_immediate] = STATE(485), + [sym__immediate_decimal] = STATE(486), + [sym_val_variable] = STATE(485), + [sym_comment] = STATE(230), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_alias] = ACTIONS(1479), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_let_DASHenv] = ACTIONS(1479), + [anon_sym_mut] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1479), + [aux_sym_cmd_identifier_token1] = ACTIONS(1479), + [aux_sym_cmd_identifier_token2] = ACTIONS(1489), + [aux_sym_cmd_identifier_token3] = ACTIONS(1489), + [aux_sym_cmd_identifier_token4] = ACTIONS(1489), + [aux_sym_cmd_identifier_token5] = ACTIONS(1489), + [aux_sym_cmd_identifier_token6] = ACTIONS(1489), + [aux_sym_cmd_identifier_token7] = ACTIONS(1489), + [aux_sym_cmd_identifier_token8] = ACTIONS(1479), + [aux_sym_cmd_identifier_token9] = ACTIONS(1479), + [aux_sym_cmd_identifier_token10] = ACTIONS(1489), + [aux_sym_cmd_identifier_token11] = ACTIONS(1489), + [aux_sym_cmd_identifier_token12] = ACTIONS(1479), + [aux_sym_cmd_identifier_token13] = ACTIONS(1479), + [aux_sym_cmd_identifier_token14] = ACTIONS(1479), + [aux_sym_cmd_identifier_token15] = ACTIONS(1479), + [aux_sym_cmd_identifier_token16] = ACTIONS(1489), + [aux_sym_cmd_identifier_token17] = ACTIONS(1489), + [aux_sym_cmd_identifier_token18] = ACTIONS(1489), + [aux_sym_cmd_identifier_token19] = ACTIONS(1489), + [aux_sym_cmd_identifier_token20] = ACTIONS(1489), + [aux_sym_cmd_identifier_token21] = ACTIONS(1489), + [aux_sym_cmd_identifier_token22] = ACTIONS(1489), + [aux_sym_cmd_identifier_token23] = ACTIONS(1489), + [aux_sym_cmd_identifier_token24] = ACTIONS(1489), + [aux_sym_cmd_identifier_token25] = ACTIONS(1489), + [aux_sym_cmd_identifier_token26] = ACTIONS(1489), + [aux_sym_cmd_identifier_token27] = ACTIONS(1489), + [aux_sym_cmd_identifier_token28] = ACTIONS(1489), + [aux_sym_cmd_identifier_token29] = ACTIONS(1489), + [aux_sym_cmd_identifier_token30] = ACTIONS(1489), + [aux_sym_cmd_identifier_token31] = ACTIONS(1489), + [aux_sym_cmd_identifier_token32] = ACTIONS(1489), + [aux_sym_cmd_identifier_token33] = ACTIONS(1489), + [aux_sym_cmd_identifier_token34] = ACTIONS(1479), + [aux_sym_cmd_identifier_token35] = ACTIONS(1489), + [aux_sym_cmd_identifier_token36] = ACTIONS(1489), + [aux_sym_cmd_identifier_token37] = ACTIONS(1489), + [aux_sym_cmd_identifier_token38] = ACTIONS(1479), + [aux_sym_cmd_identifier_token39] = ACTIONS(1489), + [aux_sym_cmd_identifier_token40] = ACTIONS(1489), + [anon_sym_def] = ACTIONS(1479), + [anon_sym_export_DASHenv] = ACTIONS(1479), + [anon_sym_extern] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_use] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(1489), [anon_sym_DOLLAR] = ACTIONS(1449), - [anon_sym_error] = ACTIONS(1544), - [anon_sym_DASH2] = ACTIONS(1544), - [anon_sym_break] = ACTIONS(1544), - [anon_sym_continue] = ACTIONS(1544), - [anon_sym_for] = ACTIONS(1544), - [anon_sym_in2] = ACTIONS(1544), - [anon_sym_loop] = ACTIONS(1544), - [anon_sym_make] = ACTIONS(1544), - [anon_sym_while] = ACTIONS(1544), - [anon_sym_do] = ACTIONS(1544), - [anon_sym_if] = ACTIONS(1544), - [anon_sym_else] = ACTIONS(1544), - [anon_sym_match] = ACTIONS(1544), - [anon_sym_RBRACE] = ACTIONS(1544), - [anon_sym_try] = ACTIONS(1544), - [anon_sym_catch] = ACTIONS(1544), - [anon_sym_return] = ACTIONS(1544), - [anon_sym_source] = ACTIONS(1544), - [anon_sym_source_DASHenv] = ACTIONS(1544), - [anon_sym_hide] = ACTIONS(1544), - [anon_sym_hide_DASHenv] = ACTIONS(1544), - [anon_sym_overlay] = ACTIONS(1544), - [anon_sym_as] = ACTIONS(1544), + [anon_sym_error] = ACTIONS(1479), + [anon_sym_DASH2] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1479), + [anon_sym_continue] = ACTIONS(1479), + [anon_sym_for] = ACTIONS(1479), + [anon_sym_in2] = ACTIONS(1479), + [anon_sym_loop] = ACTIONS(1479), + [anon_sym_make] = ACTIONS(1479), + [anon_sym_while] = ACTIONS(1479), + [anon_sym_do] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1479), + [anon_sym_match] = ACTIONS(1479), + [anon_sym_RBRACE] = ACTIONS(1489), + [anon_sym_try] = ACTIONS(1479), + [anon_sym_catch] = ACTIONS(1479), + [anon_sym_return] = ACTIONS(1479), + [anon_sym_source] = ACTIONS(1479), + [anon_sym_source_DASHenv] = ACTIONS(1479), + [anon_sym_hide] = ACTIONS(1479), + [anon_sym_hide_DASHenv] = ACTIONS(1479), + [anon_sym_overlay] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(1479), [anon_sym_LPAREN2] = ACTIONS(1451), - [anon_sym_PLUS2] = ACTIONS(1544), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1544), - [aux_sym__immediate_decimal_token1] = ACTIONS(1546), - [aux_sym__immediate_decimal_token3] = ACTIONS(1546), - [aux_sym__immediate_decimal_token4] = ACTIONS(1548), - [aux_sym__immediate_decimal_token5] = ACTIONS(1550), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1544), - [aux_sym__val_number_decimal_token1] = ACTIONS(1544), - [aux_sym__val_number_decimal_token2] = ACTIONS(1544), - [aux_sym__val_number_decimal_token3] = ACTIONS(1544), - [aux_sym__val_number_decimal_token4] = ACTIONS(1544), - [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_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_DOT_DOT_DOT_LBRACE] = ACTIONS(1544), - [sym__entry_separator] = ACTIONS(1552), - [anon_sym_register] = ACTIONS(1544), + [anon_sym_PLUS2] = ACTIONS(1479), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1489), + [anon_sym_DOT] = ACTIONS(1569), + [aux_sym__immediate_decimal_token1] = ACTIONS(1571), + [aux_sym__immediate_decimal_token3] = ACTIONS(1573), + [aux_sym__immediate_decimal_token4] = ACTIONS(1575), + [aux_sym__immediate_decimal_token5] = ACTIONS(1577), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1489), + [aux_sym__val_number_decimal_token1] = ACTIONS(1479), + [aux_sym__val_number_decimal_token2] = ACTIONS(1479), + [aux_sym__val_number_decimal_token3] = ACTIONS(1479), + [aux_sym__val_number_decimal_token4] = ACTIONS(1479), + [aux_sym__val_number_token1] = ACTIONS(1489), + [aux_sym__val_number_token2] = ACTIONS(1489), + [aux_sym__val_number_token3] = ACTIONS(1489), + [aux_sym__val_number_token4] = ACTIONS(1479), + [aux_sym__val_number_token5] = ACTIONS(1479), + [aux_sym__val_number_token6] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1489), + [sym__str_single_quotes] = ACTIONS(1489), + [sym__str_back_ticks] = ACTIONS(1489), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1489), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1489), + [anon_sym_register] = ACTIONS(1479), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1489), + }, + [231] = { + [sym_comment] = STATE(231), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [aux_sym_cmd_identifier_token1] = ACTIONS(1579), + [aux_sym_cmd_identifier_token2] = ACTIONS(1579), + [aux_sym_cmd_identifier_token3] = ACTIONS(1579), + [aux_sym_cmd_identifier_token4] = ACTIONS(1579), + [aux_sym_cmd_identifier_token5] = ACTIONS(1579), + [aux_sym_cmd_identifier_token6] = ACTIONS(1579), + [aux_sym_cmd_identifier_token7] = ACTIONS(1579), + [aux_sym_cmd_identifier_token8] = ACTIONS(1579), + [aux_sym_cmd_identifier_token9] = ACTIONS(1579), + [aux_sym_cmd_identifier_token10] = ACTIONS(1579), + [aux_sym_cmd_identifier_token11] = ACTIONS(1579), + [aux_sym_cmd_identifier_token12] = ACTIONS(1579), + [aux_sym_cmd_identifier_token13] = ACTIONS(1579), + [aux_sym_cmd_identifier_token14] = ACTIONS(1579), + [aux_sym_cmd_identifier_token15] = ACTIONS(1579), + [aux_sym_cmd_identifier_token16] = ACTIONS(1579), + [aux_sym_cmd_identifier_token17] = ACTIONS(1579), + [aux_sym_cmd_identifier_token18] = ACTIONS(1579), + [aux_sym_cmd_identifier_token19] = ACTIONS(1579), + [aux_sym_cmd_identifier_token20] = ACTIONS(1579), + [aux_sym_cmd_identifier_token21] = ACTIONS(1579), + [aux_sym_cmd_identifier_token22] = ACTIONS(1579), + [aux_sym_cmd_identifier_token23] = ACTIONS(1579), + [aux_sym_cmd_identifier_token24] = ACTIONS(1579), + [aux_sym_cmd_identifier_token25] = ACTIONS(1579), + [aux_sym_cmd_identifier_token26] = ACTIONS(1579), + [aux_sym_cmd_identifier_token27] = ACTIONS(1579), + [aux_sym_cmd_identifier_token28] = ACTIONS(1579), + [aux_sym_cmd_identifier_token29] = ACTIONS(1579), + [aux_sym_cmd_identifier_token30] = ACTIONS(1579), + [aux_sym_cmd_identifier_token31] = ACTIONS(1579), + [aux_sym_cmd_identifier_token32] = ACTIONS(1579), + [aux_sym_cmd_identifier_token33] = ACTIONS(1579), + [aux_sym_cmd_identifier_token34] = ACTIONS(1579), + [aux_sym_cmd_identifier_token35] = ACTIONS(1579), + [aux_sym_cmd_identifier_token36] = ACTIONS(1579), + [aux_sym_cmd_identifier_token37] = ACTIONS(1579), + [aux_sym_cmd_identifier_token38] = ACTIONS(1579), + [aux_sym_cmd_identifier_token39] = ACTIONS(1579), + [aux_sym_cmd_identifier_token40] = ACTIONS(1579), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_COMMA] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_DASH2] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in2] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_make] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_else] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_catch] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_as] = ACTIONS(1579), + [anon_sym_LPAREN2] = ACTIONS(1581), + [anon_sym_PLUS2] = ACTIONS(1579), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1579), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [aux_sym__immediate_decimal_token2] = ACTIONS(1583), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_decimal_token2] = ACTIONS(1579), + [aux_sym__val_number_decimal_token3] = ACTIONS(1579), + [aux_sym__val_number_decimal_token4] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [sym_filesize_unit] = ACTIONS(1579), + [sym_duration_unit] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1579), + [sym__entry_separator] = ACTIONS(1581), + [anon_sym_register] = ACTIONS(1579), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1552), + [sym_raw_string_begin] = ACTIONS(1581), }, - [224] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(4988), - [sym_block] = STATE(4994), - [sym__expression_parenthesized] = STATE(4994), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1184), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(4994), - [sym_comment] = STATE(224), - [aux_sym_shebang_repeat1] = STATE(225), + [232] = { + [sym_comment] = STATE(232), + [aux_sym__block_body_repeat1] = STATE(288), + [ts_builtin_sym_end] = ACTIONS(1520), + [anon_sym_export] = ACTIONS(1507), + [anon_sym_alias] = ACTIONS(1507), + [anon_sym_let] = ACTIONS(1507), + [anon_sym_let_DASHenv] = ACTIONS(1507), + [anon_sym_mut] = ACTIONS(1507), + [anon_sym_const] = ACTIONS(1507), + [aux_sym_cmd_identifier_token1] = ACTIONS(1507), + [aux_sym_cmd_identifier_token2] = ACTIONS(1509), + [aux_sym_cmd_identifier_token3] = ACTIONS(1509), + [aux_sym_cmd_identifier_token4] = ACTIONS(1509), + [aux_sym_cmd_identifier_token5] = ACTIONS(1509), + [aux_sym_cmd_identifier_token6] = ACTIONS(1509), + [aux_sym_cmd_identifier_token7] = ACTIONS(1509), + [aux_sym_cmd_identifier_token8] = ACTIONS(1507), + [aux_sym_cmd_identifier_token9] = ACTIONS(1507), + [aux_sym_cmd_identifier_token10] = ACTIONS(1509), + [aux_sym_cmd_identifier_token11] = ACTIONS(1509), + [aux_sym_cmd_identifier_token12] = ACTIONS(1507), + [aux_sym_cmd_identifier_token13] = ACTIONS(1507), + [aux_sym_cmd_identifier_token14] = ACTIONS(1507), + [aux_sym_cmd_identifier_token15] = ACTIONS(1507), + [aux_sym_cmd_identifier_token16] = ACTIONS(1509), + [aux_sym_cmd_identifier_token17] = ACTIONS(1509), + [aux_sym_cmd_identifier_token18] = ACTIONS(1509), + [aux_sym_cmd_identifier_token19] = ACTIONS(1509), + [aux_sym_cmd_identifier_token20] = ACTIONS(1509), + [aux_sym_cmd_identifier_token21] = ACTIONS(1509), + [aux_sym_cmd_identifier_token22] = ACTIONS(1509), + [aux_sym_cmd_identifier_token23] = ACTIONS(1509), + [aux_sym_cmd_identifier_token24] = ACTIONS(1509), + [aux_sym_cmd_identifier_token25] = ACTIONS(1509), + [aux_sym_cmd_identifier_token26] = ACTIONS(1509), + [aux_sym_cmd_identifier_token27] = ACTIONS(1509), + [aux_sym_cmd_identifier_token28] = ACTIONS(1509), + [aux_sym_cmd_identifier_token29] = ACTIONS(1509), + [aux_sym_cmd_identifier_token30] = ACTIONS(1509), + [aux_sym_cmd_identifier_token31] = ACTIONS(1509), + [aux_sym_cmd_identifier_token32] = ACTIONS(1509), + [aux_sym_cmd_identifier_token33] = ACTIONS(1509), + [aux_sym_cmd_identifier_token34] = ACTIONS(1507), + [aux_sym_cmd_identifier_token35] = ACTIONS(1509), + [aux_sym_cmd_identifier_token36] = ACTIONS(1509), + [aux_sym_cmd_identifier_token37] = ACTIONS(1509), + [aux_sym_cmd_identifier_token38] = ACTIONS(1507), + [aux_sym_cmd_identifier_token39] = ACTIONS(1509), + [aux_sym_cmd_identifier_token40] = ACTIONS(1509), + [sym__newline] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_def] = ACTIONS(1507), + [anon_sym_export_DASHenv] = ACTIONS(1507), + [anon_sym_extern] = ACTIONS(1507), + [anon_sym_module] = ACTIONS(1507), + [anon_sym_use] = ACTIONS(1507), + [anon_sym_LBRACK] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1507), + [anon_sym_error] = ACTIONS(1507), + [anon_sym_DASH2] = ACTIONS(1507), + [anon_sym_break] = ACTIONS(1507), + [anon_sym_continue] = ACTIONS(1507), + [anon_sym_for] = ACTIONS(1507), + [anon_sym_loop] = ACTIONS(1507), + [anon_sym_while] = ACTIONS(1507), + [anon_sym_do] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_match] = ACTIONS(1507), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_try] = ACTIONS(1507), + [anon_sym_return] = ACTIONS(1507), + [anon_sym_source] = ACTIONS(1507), + [anon_sym_source_DASHenv] = ACTIONS(1507), + [anon_sym_hide] = ACTIONS(1507), + [anon_sym_hide_DASHenv] = ACTIONS(1507), + [anon_sym_overlay] = ACTIONS(1507), + [anon_sym_where] = ACTIONS(1509), + [aux_sym_expr_unary_token1] = ACTIONS(1509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1509), + [anon_sym_DOT_DOT_LT] = ACTIONS(1509), + [anon_sym_null] = ACTIONS(1507), + [anon_sym_true] = ACTIONS(1507), + [anon_sym_false] = ACTIONS(1507), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1509), + [aux_sym__val_number_decimal_token4] = ACTIONS(1509), + [aux_sym__val_number_token1] = ACTIONS(1509), + [aux_sym__val_number_token2] = ACTIONS(1509), + [aux_sym__val_number_token3] = ACTIONS(1509), + [aux_sym__val_number_token4] = ACTIONS(1507), + [aux_sym__val_number_token5] = ACTIONS(1507), + [aux_sym__val_number_token6] = ACTIONS(1507), + [anon_sym_0b] = ACTIONS(1507), + [anon_sym_0o] = ACTIONS(1507), + [anon_sym_0x] = ACTIONS(1507), + [sym_val_date] = ACTIONS(1509), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym__str_single_quotes] = ACTIONS(1509), + [sym__str_back_ticks] = ACTIONS(1509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1509), + [aux_sym_env_var_token1] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1509), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1509), + }, + [233] = { + [sym_comment] = STATE(233), + [aux_sym_shebang_repeat1] = STATE(6482), + [aux_sym__parenthesized_body_repeat1] = STATE(233), + [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), + [sym__newline] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1592), + [anon_sym_AT] = 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_LBRACK] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [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_loop] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_match] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1585), + [anon_sym_try] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_source] = ACTIONS(1585), + [anon_sym_source_DASHenv] = ACTIONS(1585), + [anon_sym_hide] = ACTIONS(1585), + [anon_sym_hide_DASHenv] = ACTIONS(1585), + [anon_sym_overlay] = ACTIONS(1585), + [anon_sym_where] = ACTIONS(1587), + [aux_sym_expr_unary_token1] = ACTIONS(1587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT] = ACTIONS(1587), + [anon_sym_null] = ACTIONS(1585), + [anon_sym_true] = ACTIONS(1585), + [anon_sym_false] = ACTIONS(1585), + [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), + [anon_sym_0b] = ACTIONS(1585), + [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), + [aux_sym_env_var_token1] = ACTIONS(1585), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1587), + }, + [234] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4712), + [sym_block] = STATE(4713), + [sym__expression_parenthesized] = STATE(4713), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1134), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4713), + [sym_comment] = STATE(234), + [aux_sym_shebang_repeat1] = STATE(221), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -100327,40 +100323,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [225] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5121), - [sym_block] = STATE(5124), - [sym__expression_parenthesized] = STATE(5124), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1184), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5124), - [sym_comment] = STATE(225), - [aux_sym_shebang_repeat1] = STATE(1202), + [235] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4885), + [sym_block] = STATE(4886), + [sym__expression_parenthesized] = STATE(4886), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1134), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4886), + [sym_comment] = STATE(235), + [aux_sym_shebang_repeat1] = STATE(238), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -100438,40 +100434,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [226] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5121), - [sym_block] = STATE(5124), - [sym__expression_parenthesized] = STATE(5124), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1184), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5124), - [sym_comment] = STATE(226), - [aux_sym_shebang_repeat1] = STATE(229), + [236] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4888), + [sym_block] = STATE(4876), + [sym__expression_parenthesized] = STATE(4876), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1134), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4876), + [sym_comment] = STATE(236), + [aux_sym_shebang_repeat1] = STATE(240), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -100549,40 +100545,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [227] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(4999), - [sym_block] = STATE(5003), - [sym__expression_parenthesized] = STATE(5003), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1184), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5003), - [sym_comment] = STATE(227), - [aux_sym_shebang_repeat1] = STATE(231), + [237] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4766), + [sym_block] = STATE(4879), + [sym__expression_parenthesized] = STATE(4879), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1134), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4879), + [sym_comment] = STATE(237), + [aux_sym_shebang_repeat1] = STATE(242), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -100660,40 +100656,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [228] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5054), - [sym_block] = STATE(5020), - [sym__expression_parenthesized] = STATE(5020), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1184), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5020), - [sym_comment] = STATE(228), - [aux_sym_shebang_repeat1] = STATE(233), + [238] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4732), + [sym_block] = STATE(4733), + [sym__expression_parenthesized] = STATE(4733), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1134), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4733), + [sym_comment] = STATE(238), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -100771,40 +100767,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [229] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5158), - [sym_block] = STATE(5080), - [sym__expression_parenthesized] = STATE(5080), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1184), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5080), - [sym_comment] = STATE(229), - [aux_sym_shebang_repeat1] = STATE(1202), + [239] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4732), + [sym_block] = STATE(4733), + [sym__expression_parenthesized] = STATE(4733), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1134), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4733), + [sym_comment] = STATE(239), + [aux_sym_shebang_repeat1] = STATE(245), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -100882,40 +100878,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [230] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5158), - [sym_block] = STATE(5080), - [sym__expression_parenthesized] = STATE(5080), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1184), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5080), - [sym_comment] = STATE(230), - [aux_sym_shebang_repeat1] = STATE(236), + [240] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4734), + [sym_block] = STATE(4735), + [sym__expression_parenthesized] = STATE(4735), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1134), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4735), + [sym_comment] = STATE(240), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -100993,40 +100989,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [231] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5150), - [sym_block] = STATE(5152), - [sym__expression_parenthesized] = STATE(5152), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1184), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5152), - [sym_comment] = STATE(231), - [aux_sym_shebang_repeat1] = STATE(1202), + [241] = { + [sym_comment] = STATE(241), + [anon_sym_export] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1279), + [anon_sym_let] = ACTIONS(1279), + [anon_sym_let_DASHenv] = ACTIONS(1279), + [anon_sym_mut] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [aux_sym_cmd_identifier_token1] = ACTIONS(1279), + [aux_sym_cmd_identifier_token2] = ACTIONS(1282), + [aux_sym_cmd_identifier_token3] = ACTIONS(1282), + [aux_sym_cmd_identifier_token4] = ACTIONS(1282), + [aux_sym_cmd_identifier_token5] = ACTIONS(1282), + [aux_sym_cmd_identifier_token6] = ACTIONS(1282), + [aux_sym_cmd_identifier_token7] = ACTIONS(1282), + [aux_sym_cmd_identifier_token8] = ACTIONS(1279), + [aux_sym_cmd_identifier_token9] = ACTIONS(1279), + [aux_sym_cmd_identifier_token10] = ACTIONS(1282), + [aux_sym_cmd_identifier_token11] = ACTIONS(1282), + [aux_sym_cmd_identifier_token12] = ACTIONS(1279), + [aux_sym_cmd_identifier_token13] = ACTIONS(1279), + [aux_sym_cmd_identifier_token14] = ACTIONS(1279), + [aux_sym_cmd_identifier_token15] = ACTIONS(1279), + [aux_sym_cmd_identifier_token16] = ACTIONS(1282), + [aux_sym_cmd_identifier_token17] = ACTIONS(1282), + [aux_sym_cmd_identifier_token18] = ACTIONS(1282), + [aux_sym_cmd_identifier_token19] = ACTIONS(1282), + [aux_sym_cmd_identifier_token20] = ACTIONS(1282), + [aux_sym_cmd_identifier_token21] = ACTIONS(1282), + [aux_sym_cmd_identifier_token22] = ACTIONS(1282), + [aux_sym_cmd_identifier_token23] = ACTIONS(1282), + [aux_sym_cmd_identifier_token24] = ACTIONS(1282), + [aux_sym_cmd_identifier_token25] = ACTIONS(1282), + [aux_sym_cmd_identifier_token26] = ACTIONS(1282), + [aux_sym_cmd_identifier_token27] = ACTIONS(1282), + [aux_sym_cmd_identifier_token28] = ACTIONS(1282), + [aux_sym_cmd_identifier_token29] = ACTIONS(1282), + [aux_sym_cmd_identifier_token30] = ACTIONS(1282), + [aux_sym_cmd_identifier_token31] = ACTIONS(1282), + [aux_sym_cmd_identifier_token32] = ACTIONS(1282), + [aux_sym_cmd_identifier_token33] = ACTIONS(1282), + [aux_sym_cmd_identifier_token34] = ACTIONS(1279), + [aux_sym_cmd_identifier_token35] = ACTIONS(1282), + [aux_sym_cmd_identifier_token36] = ACTIONS(1282), + [aux_sym_cmd_identifier_token37] = ACTIONS(1282), + [aux_sym_cmd_identifier_token38] = ACTIONS(1279), + [aux_sym_cmd_identifier_token39] = ACTIONS(1282), + [aux_sym_cmd_identifier_token40] = ACTIONS(1282), + [sym__newline] = ACTIONS(1282), + [anon_sym_SEMI] = ACTIONS(1282), + [anon_sym_PIPE] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1282), + [anon_sym_def] = ACTIONS(1279), + [anon_sym_export_DASHenv] = ACTIONS(1279), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym_module] = ACTIONS(1279), + [anon_sym_use] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(1282), + [anon_sym_LPAREN] = ACTIONS(1282), + [anon_sym_DOLLAR] = ACTIONS(1279), + [anon_sym_error] = ACTIONS(1279), + [anon_sym_DASH2] = ACTIONS(1279), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_loop] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_do] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_match] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_RBRACE] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_try] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_source] = ACTIONS(1279), + [anon_sym_source_DASHenv] = ACTIONS(1279), + [anon_sym_hide] = ACTIONS(1279), + [anon_sym_hide_DASHenv] = ACTIONS(1279), + [anon_sym_overlay] = ACTIONS(1279), + [anon_sym_where] = ACTIONS(1282), + [aux_sym_expr_unary_token1] = ACTIONS(1282), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1282), + [anon_sym_DOT_DOT_LT] = ACTIONS(1282), + [anon_sym_null] = ACTIONS(1279), + [anon_sym_true] = ACTIONS(1279), + [anon_sym_false] = ACTIONS(1279), + [aux_sym__val_number_decimal_token1] = ACTIONS(1279), + [aux_sym__val_number_decimal_token2] = ACTIONS(1282), + [aux_sym__val_number_decimal_token3] = ACTIONS(1282), + [aux_sym__val_number_decimal_token4] = ACTIONS(1282), + [aux_sym__val_number_token1] = ACTIONS(1282), + [aux_sym__val_number_token2] = ACTIONS(1282), + [aux_sym__val_number_token3] = ACTIONS(1282), + [aux_sym__val_number_token4] = ACTIONS(1279), + [aux_sym__val_number_token5] = ACTIONS(1279), + [aux_sym__val_number_token6] = ACTIONS(1279), + [anon_sym_0b] = ACTIONS(1279), + [anon_sym_0o] = ACTIONS(1279), + [anon_sym_0x] = ACTIONS(1279), + [sym_val_date] = ACTIONS(1282), + [anon_sym_DQUOTE] = ACTIONS(1282), + [sym__str_single_quotes] = ACTIONS(1282), + [sym__str_back_ticks] = ACTIONS(1282), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1282), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1282), + [aux_sym_env_var_token1] = ACTIONS(1279), + [anon_sym_CARET] = ACTIONS(1282), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1282), + }, + [242] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4845), + [sym_block] = STATE(4856), + [sym__expression_parenthesized] = STATE(4856), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1134), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4856), + [sym_comment] = STATE(242), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -101104,40 +101211,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [232] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5150), - [sym_block] = STATE(5152), - [sym__expression_parenthesized] = STATE(5152), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1184), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5152), - [sym_comment] = STATE(232), - [aux_sym_shebang_repeat1] = STATE(237), + [243] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4845), + [sym_block] = STATE(4856), + [sym__expression_parenthesized] = STATE(4856), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1134), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4856), + [sym_comment] = STATE(243), + [aux_sym_shebang_repeat1] = STATE(248), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -101215,40 +101322,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [233] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5154), - [sym_block] = STATE(5155), - [sym__expression_parenthesized] = STATE(5155), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1184), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5155), - [sym_comment] = STATE(233), - [aux_sym_shebang_repeat1] = STATE(1202), + [244] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4862), + [sym_block] = STATE(4869), + [sym__expression_parenthesized] = STATE(4869), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1134), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4869), + [sym_comment] = STATE(244), + [aux_sym_shebang_repeat1] = STATE(250), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -101326,40 +101433,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [234] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5154), - [sym_block] = STATE(5155), - [sym__expression_parenthesized] = STATE(5155), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1184), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5155), - [sym_comment] = STATE(234), - [aux_sym_shebang_repeat1] = STATE(239), + [245] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4774), + [sym_block] = STATE(4790), + [sym__expression_parenthesized] = STATE(4790), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1134), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4790), + [sym_comment] = STATE(245), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -101437,40 +101544,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [235] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5122), - [sym_block] = STATE(4984), - [sym__expression_parenthesized] = STATE(4984), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1184), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(4984), - [sym_comment] = STATE(235), - [aux_sym_shebang_repeat1] = STATE(241), + [246] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4791), + [sym_block] = STATE(4793), + [sym__expression_parenthesized] = STATE(4793), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1134), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4793), + [sym_comment] = STATE(246), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -101548,40 +101655,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [236] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5071), - [sym_block] = STATE(5112), - [sym__expression_parenthesized] = STATE(5112), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1184), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5112), - [sym_comment] = STATE(236), - [aux_sym_shebang_repeat1] = STATE(1202), + [247] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4791), + [sym_block] = STATE(4793), + [sym__expression_parenthesized] = STATE(4793), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1134), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4793), + [sym_comment] = STATE(247), + [aux_sym_shebang_repeat1] = STATE(252), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -101659,40 +101766,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [237] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5114), - [sym_block] = STATE(5118), - [sym__expression_parenthesized] = STATE(5118), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1184), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5118), - [sym_comment] = STATE(237), - [aux_sym_shebang_repeat1] = STATE(1202), + [248] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4794), + [sym_block] = STATE(4889), + [sym__expression_parenthesized] = STATE(4889), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1134), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4889), + [sym_comment] = STATE(248), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -101770,40 +101877,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [238] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5114), - [sym_block] = STATE(5118), - [sym__expression_parenthesized] = STATE(5118), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1184), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5118), - [sym_comment] = STATE(238), - [aux_sym_shebang_repeat1] = STATE(243), + [249] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4794), + [sym_block] = STATE(4889), + [sym__expression_parenthesized] = STATE(4889), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1134), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4889), + [sym_comment] = STATE(249), + [aux_sym_shebang_repeat1] = STATE(253), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -101881,40 +101988,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [239] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5110), - [sym_block] = STATE(5139), - [sym__expression_parenthesized] = STATE(5139), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1184), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5139), - [sym_comment] = STATE(239), - [aux_sym_shebang_repeat1] = STATE(1202), + [250] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4807), + [sym_block] = STATE(4814), + [sym__expression_parenthesized] = STATE(4814), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1134), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4814), + [sym_comment] = STATE(250), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -101992,40 +102099,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [240] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5110), - [sym_block] = STATE(5139), - [sym__expression_parenthesized] = STATE(5139), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1184), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5139), - [sym_comment] = STATE(240), - [aux_sym_shebang_repeat1] = STATE(244), + [251] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4807), + [sym_block] = STATE(4814), + [sym__expression_parenthesized] = STATE(4814), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1134), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4814), + [sym_comment] = STATE(251), + [aux_sym_shebang_repeat1] = STATE(254), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -102103,40 +102210,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [241] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5075), - [sym_block] = STATE(4982), - [sym__expression_parenthesized] = STATE(4982), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1184), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(4982), - [sym_comment] = STATE(241), - [aux_sym_shebang_repeat1] = STATE(1202), + [252] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4816), + [sym_block] = STATE(4832), + [sym__expression_parenthesized] = STATE(4832), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1134), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4832), + [sym_comment] = STATE(252), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -102214,40 +102321,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [242] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5075), - [sym_block] = STATE(4982), - [sym__expression_parenthesized] = STATE(4982), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1184), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(4982), - [sym_comment] = STATE(242), - [aux_sym_shebang_repeat1] = STATE(221), + [253] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4833), + [sym_block] = STATE(4838), + [sym__expression_parenthesized] = STATE(4838), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1134), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4838), + [sym_comment] = STATE(253), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -102325,40 +102432,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [243] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5083), - [sym_block] = STATE(5086), - [sym__expression_parenthesized] = STATE(5086), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1184), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5086), - [sym_comment] = STATE(243), - [aux_sym_shebang_repeat1] = STATE(1202), + [254] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4839), + [sym_block] = STATE(4843), + [sym__expression_parenthesized] = STATE(4843), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1134), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4843), + [sym_comment] = STATE(254), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -102436,40 +102543,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [244] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5087), - [sym_block] = STATE(5095), - [sym__expression_parenthesized] = STATE(5095), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1184), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5095), - [sym_comment] = STATE(244), - [aux_sym_shebang_repeat1] = STATE(1202), + [255] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4839), + [sym_block] = STATE(4843), + [sym__expression_parenthesized] = STATE(4843), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1134), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4843), + [sym_comment] = STATE(255), + [aux_sym_shebang_repeat1] = STATE(256), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -102547,40 +102654,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [245] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5032), - [sym_block] = STATE(5085), - [sym__expression_parenthesized] = STATE(5085), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1184), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5085), - [sym_comment] = STATE(245), - [aux_sym_shebang_repeat1] = STATE(246), + [256] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4850), + [sym_block] = STATE(4854), + [sym__expression_parenthesized] = STATE(4854), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1134), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4854), + [sym_comment] = STATE(256), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -102658,40 +102765,262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [246] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5025), - [sym_block] = STATE(5026), - [sym__expression_parenthesized] = STATE(5026), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1184), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5026), - [sym_comment] = STATE(246), - [aux_sym_shebang_repeat1] = STATE(1202), + [257] = { + [sym_comment] = STATE(257), + [ts_builtin_sym_end] = ACTIONS(1289), + [anon_sym_POUND_BANG] = ACTIONS(1285), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_alias] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_let_DASHenv] = ACTIONS(1595), + [anon_sym_mut] = ACTIONS(1595), + [anon_sym_const] = ACTIONS(1595), + [aux_sym_cmd_identifier_token1] = ACTIONS(1595), + [aux_sym_cmd_identifier_token2] = ACTIONS(1289), + [aux_sym_cmd_identifier_token3] = ACTIONS(1289), + [aux_sym_cmd_identifier_token4] = ACTIONS(1289), + [aux_sym_cmd_identifier_token5] = ACTIONS(1289), + [aux_sym_cmd_identifier_token6] = ACTIONS(1289), + [aux_sym_cmd_identifier_token7] = ACTIONS(1289), + [aux_sym_cmd_identifier_token8] = ACTIONS(1595), + [aux_sym_cmd_identifier_token9] = ACTIONS(1595), + [aux_sym_cmd_identifier_token10] = ACTIONS(1289), + [aux_sym_cmd_identifier_token11] = ACTIONS(1289), + [aux_sym_cmd_identifier_token12] = ACTIONS(1595), + [aux_sym_cmd_identifier_token13] = ACTIONS(1595), + [aux_sym_cmd_identifier_token14] = ACTIONS(1595), + [aux_sym_cmd_identifier_token15] = ACTIONS(1595), + [aux_sym_cmd_identifier_token16] = ACTIONS(1289), + [aux_sym_cmd_identifier_token17] = ACTIONS(1289), + [aux_sym_cmd_identifier_token18] = ACTIONS(1289), + [aux_sym_cmd_identifier_token19] = ACTIONS(1289), + [aux_sym_cmd_identifier_token20] = ACTIONS(1289), + [aux_sym_cmd_identifier_token21] = ACTIONS(1289), + [aux_sym_cmd_identifier_token22] = ACTIONS(1289), + [aux_sym_cmd_identifier_token23] = ACTIONS(1289), + [aux_sym_cmd_identifier_token24] = ACTIONS(1289), + [aux_sym_cmd_identifier_token25] = ACTIONS(1289), + [aux_sym_cmd_identifier_token26] = ACTIONS(1289), + [aux_sym_cmd_identifier_token27] = ACTIONS(1289), + [aux_sym_cmd_identifier_token28] = ACTIONS(1289), + [aux_sym_cmd_identifier_token29] = ACTIONS(1289), + [aux_sym_cmd_identifier_token30] = ACTIONS(1289), + [aux_sym_cmd_identifier_token31] = ACTIONS(1289), + [aux_sym_cmd_identifier_token32] = ACTIONS(1289), + [aux_sym_cmd_identifier_token33] = ACTIONS(1289), + [aux_sym_cmd_identifier_token34] = ACTIONS(1595), + [aux_sym_cmd_identifier_token35] = ACTIONS(1289), + [aux_sym_cmd_identifier_token36] = ACTIONS(1289), + [aux_sym_cmd_identifier_token37] = ACTIONS(1289), + [aux_sym_cmd_identifier_token38] = ACTIONS(1595), + [aux_sym_cmd_identifier_token39] = ACTIONS(1289), + [aux_sym_cmd_identifier_token40] = ACTIONS(1289), + [sym__newline] = ACTIONS(1282), + [anon_sym_SEMI] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1289), + [anon_sym_def] = ACTIONS(1595), + [anon_sym_export_DASHenv] = ACTIONS(1595), + [anon_sym_extern] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_use] = ACTIONS(1595), + [anon_sym_LBRACK] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1289), + [anon_sym_DOLLAR] = ACTIONS(1595), + [anon_sym_error] = ACTIONS(1595), + [anon_sym_DASH2] = ACTIONS(1595), + [anon_sym_break] = ACTIONS(1595), + [anon_sym_continue] = ACTIONS(1595), + [anon_sym_for] = ACTIONS(1595), + [anon_sym_loop] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(1595), + [anon_sym_do] = ACTIONS(1595), + [anon_sym_if] = ACTIONS(1595), + [anon_sym_match] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_try] = ACTIONS(1595), + [anon_sym_return] = ACTIONS(1595), + [anon_sym_source] = ACTIONS(1595), + [anon_sym_source_DASHenv] = ACTIONS(1595), + [anon_sym_hide] = ACTIONS(1595), + [anon_sym_hide_DASHenv] = ACTIONS(1595), + [anon_sym_overlay] = ACTIONS(1595), + [anon_sym_where] = ACTIONS(1289), + [aux_sym_expr_unary_token1] = ACTIONS(1289), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1289), + [anon_sym_DOT_DOT_LT] = ACTIONS(1289), + [anon_sym_null] = ACTIONS(1595), + [anon_sym_true] = ACTIONS(1595), + [anon_sym_false] = ACTIONS(1595), + [aux_sym__val_number_decimal_token1] = ACTIONS(1595), + [aux_sym__val_number_decimal_token2] = ACTIONS(1289), + [aux_sym__val_number_decimal_token3] = ACTIONS(1289), + [aux_sym__val_number_decimal_token4] = ACTIONS(1289), + [aux_sym__val_number_token1] = ACTIONS(1289), + [aux_sym__val_number_token2] = ACTIONS(1289), + [aux_sym__val_number_token3] = ACTIONS(1289), + [aux_sym__val_number_token4] = ACTIONS(1595), + [aux_sym__val_number_token5] = ACTIONS(1595), + [aux_sym__val_number_token6] = ACTIONS(1595), + [anon_sym_0b] = ACTIONS(1595), + [anon_sym_0o] = ACTIONS(1595), + [anon_sym_0x] = ACTIONS(1595), + [sym_val_date] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1289), + [sym__str_single_quotes] = ACTIONS(1289), + [sym__str_back_ticks] = ACTIONS(1289), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1289), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1289), + [aux_sym_env_var_token1] = ACTIONS(1595), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1289), + }, + [258] = { + [sym_comment] = STATE(258), + [aux_sym__block_body_repeat1] = STATE(288), + [ts_builtin_sym_end] = ACTIONS(1522), + [anon_sym_export] = ACTIONS(1507), + [anon_sym_alias] = ACTIONS(1507), + [anon_sym_let] = ACTIONS(1507), + [anon_sym_let_DASHenv] = ACTIONS(1507), + [anon_sym_mut] = ACTIONS(1507), + [anon_sym_const] = ACTIONS(1507), + [aux_sym_cmd_identifier_token1] = ACTIONS(1507), + [aux_sym_cmd_identifier_token2] = ACTIONS(1509), + [aux_sym_cmd_identifier_token3] = ACTIONS(1509), + [aux_sym_cmd_identifier_token4] = ACTIONS(1509), + [aux_sym_cmd_identifier_token5] = ACTIONS(1509), + [aux_sym_cmd_identifier_token6] = ACTIONS(1509), + [aux_sym_cmd_identifier_token7] = ACTIONS(1509), + [aux_sym_cmd_identifier_token8] = ACTIONS(1507), + [aux_sym_cmd_identifier_token9] = ACTIONS(1507), + [aux_sym_cmd_identifier_token10] = ACTIONS(1509), + [aux_sym_cmd_identifier_token11] = ACTIONS(1509), + [aux_sym_cmd_identifier_token12] = ACTIONS(1507), + [aux_sym_cmd_identifier_token13] = ACTIONS(1507), + [aux_sym_cmd_identifier_token14] = ACTIONS(1507), + [aux_sym_cmd_identifier_token15] = ACTIONS(1507), + [aux_sym_cmd_identifier_token16] = ACTIONS(1509), + [aux_sym_cmd_identifier_token17] = ACTIONS(1509), + [aux_sym_cmd_identifier_token18] = ACTIONS(1509), + [aux_sym_cmd_identifier_token19] = ACTIONS(1509), + [aux_sym_cmd_identifier_token20] = ACTIONS(1509), + [aux_sym_cmd_identifier_token21] = ACTIONS(1509), + [aux_sym_cmd_identifier_token22] = ACTIONS(1509), + [aux_sym_cmd_identifier_token23] = ACTIONS(1509), + [aux_sym_cmd_identifier_token24] = ACTIONS(1509), + [aux_sym_cmd_identifier_token25] = ACTIONS(1509), + [aux_sym_cmd_identifier_token26] = ACTIONS(1509), + [aux_sym_cmd_identifier_token27] = ACTIONS(1509), + [aux_sym_cmd_identifier_token28] = ACTIONS(1509), + [aux_sym_cmd_identifier_token29] = ACTIONS(1509), + [aux_sym_cmd_identifier_token30] = ACTIONS(1509), + [aux_sym_cmd_identifier_token31] = ACTIONS(1509), + [aux_sym_cmd_identifier_token32] = ACTIONS(1509), + [aux_sym_cmd_identifier_token33] = ACTIONS(1509), + [aux_sym_cmd_identifier_token34] = ACTIONS(1507), + [aux_sym_cmd_identifier_token35] = ACTIONS(1509), + [aux_sym_cmd_identifier_token36] = ACTIONS(1509), + [aux_sym_cmd_identifier_token37] = ACTIONS(1509), + [aux_sym_cmd_identifier_token38] = ACTIONS(1507), + [aux_sym_cmd_identifier_token39] = ACTIONS(1509), + [aux_sym_cmd_identifier_token40] = ACTIONS(1509), + [sym__newline] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_def] = ACTIONS(1507), + [anon_sym_export_DASHenv] = ACTIONS(1507), + [anon_sym_extern] = ACTIONS(1507), + [anon_sym_module] = ACTIONS(1507), + [anon_sym_use] = ACTIONS(1507), + [anon_sym_LBRACK] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1507), + [anon_sym_error] = ACTIONS(1507), + [anon_sym_DASH2] = ACTIONS(1507), + [anon_sym_break] = ACTIONS(1507), + [anon_sym_continue] = ACTIONS(1507), + [anon_sym_for] = ACTIONS(1507), + [anon_sym_loop] = ACTIONS(1507), + [anon_sym_while] = ACTIONS(1507), + [anon_sym_do] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_match] = ACTIONS(1507), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_try] = ACTIONS(1507), + [anon_sym_return] = ACTIONS(1507), + [anon_sym_source] = ACTIONS(1507), + [anon_sym_source_DASHenv] = ACTIONS(1507), + [anon_sym_hide] = ACTIONS(1507), + [anon_sym_hide_DASHenv] = ACTIONS(1507), + [anon_sym_overlay] = ACTIONS(1507), + [anon_sym_where] = ACTIONS(1509), + [aux_sym_expr_unary_token1] = ACTIONS(1509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1509), + [anon_sym_DOT_DOT_LT] = ACTIONS(1509), + [anon_sym_null] = ACTIONS(1507), + [anon_sym_true] = ACTIONS(1507), + [anon_sym_false] = ACTIONS(1507), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1509), + [aux_sym__val_number_decimal_token4] = ACTIONS(1509), + [aux_sym__val_number_token1] = ACTIONS(1509), + [aux_sym__val_number_token2] = ACTIONS(1509), + [aux_sym__val_number_token3] = ACTIONS(1509), + [aux_sym__val_number_token4] = ACTIONS(1507), + [aux_sym__val_number_token5] = ACTIONS(1507), + [aux_sym__val_number_token6] = ACTIONS(1507), + [anon_sym_0b] = ACTIONS(1507), + [anon_sym_0o] = ACTIONS(1507), + [anon_sym_0x] = ACTIONS(1507), + [sym_val_date] = ACTIONS(1509), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym__str_single_quotes] = ACTIONS(1509), + [sym__str_back_ticks] = ACTIONS(1509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1509), + [aux_sym_env_var_token1] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1509), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1509), + }, + [259] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4712), + [sym_block] = STATE(4713), + [sym__expression_parenthesized] = STATE(4713), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1109), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4713), + [sym_comment] = STATE(259), + [aux_sym_shebang_repeat1] = STATE(284), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -102737,7 +103066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_if] = ACTIONS(1526), + [anon_sym_if] = ACTIONS(439), [anon_sym_LBRACE] = ACTIONS(1528), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(201), @@ -102746,10 +103075,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1530), - [aux_sym__val_number_decimal_token2] = ACTIONS(1532), - [aux_sym__val_number_decimal_token3] = ACTIONS(1534), - [aux_sym__val_number_decimal_token4] = ACTIONS(1536), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1603), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -102769,262 +103098,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [247] = { - [sym_comment] = STATE(247), - [aux_sym__block_body_repeat1] = STATE(248), - [ts_builtin_sym_end] = ACTIONS(1522), - [anon_sym_export] = ACTIONS(1514), - [anon_sym_alias] = ACTIONS(1514), - [anon_sym_let] = ACTIONS(1514), - [anon_sym_let_DASHenv] = ACTIONS(1514), - [anon_sym_mut] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [aux_sym_cmd_identifier_token1] = ACTIONS(1514), - [aux_sym_cmd_identifier_token2] = ACTIONS(1516), - [aux_sym_cmd_identifier_token3] = ACTIONS(1516), - [aux_sym_cmd_identifier_token4] = ACTIONS(1516), - [aux_sym_cmd_identifier_token5] = ACTIONS(1516), - [aux_sym_cmd_identifier_token6] = ACTIONS(1516), - [aux_sym_cmd_identifier_token7] = ACTIONS(1516), - [aux_sym_cmd_identifier_token8] = ACTIONS(1514), - [aux_sym_cmd_identifier_token9] = ACTIONS(1514), - [aux_sym_cmd_identifier_token10] = ACTIONS(1516), - [aux_sym_cmd_identifier_token11] = ACTIONS(1516), - [aux_sym_cmd_identifier_token12] = ACTIONS(1514), - [aux_sym_cmd_identifier_token13] = ACTIONS(1514), - [aux_sym_cmd_identifier_token14] = ACTIONS(1514), - [aux_sym_cmd_identifier_token15] = ACTIONS(1514), - [aux_sym_cmd_identifier_token16] = ACTIONS(1516), - [aux_sym_cmd_identifier_token17] = ACTIONS(1516), - [aux_sym_cmd_identifier_token18] = ACTIONS(1516), - [aux_sym_cmd_identifier_token19] = ACTIONS(1516), - [aux_sym_cmd_identifier_token20] = ACTIONS(1516), - [aux_sym_cmd_identifier_token21] = ACTIONS(1516), - [aux_sym_cmd_identifier_token22] = ACTIONS(1516), - [aux_sym_cmd_identifier_token23] = ACTIONS(1516), - [aux_sym_cmd_identifier_token24] = ACTIONS(1516), - [aux_sym_cmd_identifier_token25] = ACTIONS(1516), - [aux_sym_cmd_identifier_token26] = ACTIONS(1516), - [aux_sym_cmd_identifier_token27] = ACTIONS(1516), - [aux_sym_cmd_identifier_token28] = ACTIONS(1516), - [aux_sym_cmd_identifier_token29] = ACTIONS(1516), - [aux_sym_cmd_identifier_token30] = ACTIONS(1516), - [aux_sym_cmd_identifier_token31] = ACTIONS(1516), - [aux_sym_cmd_identifier_token32] = ACTIONS(1516), - [aux_sym_cmd_identifier_token33] = ACTIONS(1516), - [aux_sym_cmd_identifier_token34] = ACTIONS(1514), - [aux_sym_cmd_identifier_token35] = ACTIONS(1516), - [aux_sym_cmd_identifier_token36] = ACTIONS(1516), - [aux_sym_cmd_identifier_token37] = ACTIONS(1516), - [aux_sym_cmd_identifier_token38] = ACTIONS(1514), - [aux_sym_cmd_identifier_token39] = ACTIONS(1516), - [aux_sym_cmd_identifier_token40] = ACTIONS(1516), - [sym__newline] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(1516), - [anon_sym_def] = ACTIONS(1514), - [anon_sym_export_DASHenv] = ACTIONS(1514), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym_module] = ACTIONS(1514), - [anon_sym_use] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_LPAREN] = ACTIONS(1516), - [anon_sym_DOLLAR] = ACTIONS(1514), - [anon_sym_error] = ACTIONS(1514), - [anon_sym_DASH2] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_loop] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_do] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_match] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_DOT_DOT] = ACTIONS(1514), - [anon_sym_try] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_source] = ACTIONS(1514), - [anon_sym_source_DASHenv] = ACTIONS(1514), - [anon_sym_hide] = ACTIONS(1514), - [anon_sym_hide_DASHenv] = ACTIONS(1514), - [anon_sym_overlay] = ACTIONS(1514), - [anon_sym_where] = ACTIONS(1516), - [aux_sym_expr_unary_token1] = ACTIONS(1516), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1516), - [anon_sym_DOT_DOT_LT] = ACTIONS(1516), - [anon_sym_null] = ACTIONS(1514), - [anon_sym_true] = ACTIONS(1514), - [anon_sym_false] = ACTIONS(1514), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1516), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), - [aux_sym__val_number_token1] = ACTIONS(1516), - [aux_sym__val_number_token2] = ACTIONS(1516), - [aux_sym__val_number_token3] = ACTIONS(1516), - [aux_sym__val_number_token4] = ACTIONS(1514), - [aux_sym__val_number_token5] = ACTIONS(1514), - [aux_sym__val_number_token6] = ACTIONS(1514), - [anon_sym_0b] = ACTIONS(1514), - [anon_sym_0o] = ACTIONS(1514), - [anon_sym_0x] = ACTIONS(1514), - [sym_val_date] = ACTIONS(1516), - [anon_sym_DQUOTE] = ACTIONS(1516), - [sym__str_single_quotes] = ACTIONS(1516), - [sym__str_back_ticks] = ACTIONS(1516), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1516), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1516), - [aux_sym_env_var_token1] = ACTIONS(1514), - [anon_sym_CARET] = ACTIONS(1516), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1516), - }, - [248] = { - [sym_comment] = STATE(248), - [aux_sym__block_body_repeat1] = STATE(248), - [ts_builtin_sym_end] = ACTIONS(1461), - [anon_sym_export] = ACTIONS(1459), - [anon_sym_alias] = ACTIONS(1459), - [anon_sym_let] = ACTIONS(1459), - [anon_sym_let_DASHenv] = ACTIONS(1459), - [anon_sym_mut] = ACTIONS(1459), - [anon_sym_const] = ACTIONS(1459), - [aux_sym_cmd_identifier_token1] = ACTIONS(1459), - [aux_sym_cmd_identifier_token2] = ACTIONS(1461), - [aux_sym_cmd_identifier_token3] = ACTIONS(1461), - [aux_sym_cmd_identifier_token4] = ACTIONS(1461), - [aux_sym_cmd_identifier_token5] = ACTIONS(1461), - [aux_sym_cmd_identifier_token6] = ACTIONS(1461), - [aux_sym_cmd_identifier_token7] = ACTIONS(1461), - [aux_sym_cmd_identifier_token8] = ACTIONS(1459), - [aux_sym_cmd_identifier_token9] = ACTIONS(1459), - [aux_sym_cmd_identifier_token10] = ACTIONS(1461), - [aux_sym_cmd_identifier_token11] = ACTIONS(1461), - [aux_sym_cmd_identifier_token12] = ACTIONS(1459), - [aux_sym_cmd_identifier_token13] = ACTIONS(1459), - [aux_sym_cmd_identifier_token14] = ACTIONS(1459), - [aux_sym_cmd_identifier_token15] = ACTIONS(1459), - [aux_sym_cmd_identifier_token16] = ACTIONS(1461), - [aux_sym_cmd_identifier_token17] = ACTIONS(1461), - [aux_sym_cmd_identifier_token18] = ACTIONS(1461), - [aux_sym_cmd_identifier_token19] = ACTIONS(1461), - [aux_sym_cmd_identifier_token20] = ACTIONS(1461), - [aux_sym_cmd_identifier_token21] = ACTIONS(1461), - [aux_sym_cmd_identifier_token22] = ACTIONS(1461), - [aux_sym_cmd_identifier_token23] = ACTIONS(1461), - [aux_sym_cmd_identifier_token24] = ACTIONS(1461), - [aux_sym_cmd_identifier_token25] = ACTIONS(1461), - [aux_sym_cmd_identifier_token26] = ACTIONS(1461), - [aux_sym_cmd_identifier_token27] = ACTIONS(1461), - [aux_sym_cmd_identifier_token28] = ACTIONS(1461), - [aux_sym_cmd_identifier_token29] = ACTIONS(1461), - [aux_sym_cmd_identifier_token30] = ACTIONS(1461), - [aux_sym_cmd_identifier_token31] = ACTIONS(1461), - [aux_sym_cmd_identifier_token32] = ACTIONS(1461), - [aux_sym_cmd_identifier_token33] = ACTIONS(1461), - [aux_sym_cmd_identifier_token34] = ACTIONS(1459), - [aux_sym_cmd_identifier_token35] = ACTIONS(1461), - [aux_sym_cmd_identifier_token36] = ACTIONS(1461), - [aux_sym_cmd_identifier_token37] = ACTIONS(1461), - [aux_sym_cmd_identifier_token38] = ACTIONS(1459), - [aux_sym_cmd_identifier_token39] = ACTIONS(1461), - [aux_sym_cmd_identifier_token40] = ACTIONS(1461), - [sym__newline] = ACTIONS(1554), - [anon_sym_SEMI] = ACTIONS(1554), - [anon_sym_AT] = ACTIONS(1461), - [anon_sym_def] = ACTIONS(1459), - [anon_sym_export_DASHenv] = ACTIONS(1459), - [anon_sym_extern] = ACTIONS(1459), - [anon_sym_module] = ACTIONS(1459), - [anon_sym_use] = ACTIONS(1459), - [anon_sym_LBRACK] = ACTIONS(1461), - [anon_sym_LPAREN] = ACTIONS(1461), - [anon_sym_DOLLAR] = ACTIONS(1459), - [anon_sym_error] = ACTIONS(1459), - [anon_sym_DASH2] = ACTIONS(1459), - [anon_sym_break] = ACTIONS(1459), - [anon_sym_continue] = ACTIONS(1459), - [anon_sym_for] = ACTIONS(1459), - [anon_sym_loop] = ACTIONS(1459), - [anon_sym_while] = ACTIONS(1459), - [anon_sym_do] = ACTIONS(1459), - [anon_sym_if] = ACTIONS(1459), - [anon_sym_match] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_DOT_DOT] = ACTIONS(1459), - [anon_sym_try] = ACTIONS(1459), - [anon_sym_return] = ACTIONS(1459), - [anon_sym_source] = ACTIONS(1459), - [anon_sym_source_DASHenv] = ACTIONS(1459), - [anon_sym_hide] = ACTIONS(1459), - [anon_sym_hide_DASHenv] = ACTIONS(1459), - [anon_sym_overlay] = ACTIONS(1459), - [anon_sym_where] = ACTIONS(1461), - [aux_sym_expr_unary_token1] = ACTIONS(1461), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1461), - [anon_sym_DOT_DOT_LT] = ACTIONS(1461), - [anon_sym_null] = ACTIONS(1459), - [anon_sym_true] = ACTIONS(1459), - [anon_sym_false] = ACTIONS(1459), - [aux_sym__val_number_decimal_token1] = ACTIONS(1459), - [aux_sym__val_number_decimal_token2] = ACTIONS(1461), - [aux_sym__val_number_decimal_token3] = ACTIONS(1461), - [aux_sym__val_number_decimal_token4] = ACTIONS(1461), - [aux_sym__val_number_token1] = ACTIONS(1461), - [aux_sym__val_number_token2] = ACTIONS(1461), - [aux_sym__val_number_token3] = ACTIONS(1461), - [aux_sym__val_number_token4] = ACTIONS(1459), - [aux_sym__val_number_token5] = ACTIONS(1459), - [aux_sym__val_number_token6] = ACTIONS(1459), - [anon_sym_0b] = ACTIONS(1459), - [anon_sym_0o] = ACTIONS(1459), - [anon_sym_0x] = ACTIONS(1459), - [sym_val_date] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1461), - [sym__str_single_quotes] = ACTIONS(1461), - [sym__str_back_ticks] = ACTIONS(1461), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1461), - [aux_sym_env_var_token1] = ACTIONS(1459), - [anon_sym_CARET] = ACTIONS(1461), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1461), - }, - [249] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(4988), - [sym_block] = STATE(4994), - [sym__expression_parenthesized] = STATE(4994), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1174), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(4994), - [sym_comment] = STATE(249), - [aux_sym_shebang_repeat1] = STATE(251), + [260] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4712), + [sym_block] = STATE(4713), + [sym__expression_parenthesized] = STATE(4713), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1126), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4713), + [sym_comment] = STATE(260), + [aux_sym_shebang_repeat1] = STATE(261), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -103070,7 +103177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1028), [anon_sym_LBRACE] = ACTIONS(1528), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(201), @@ -103079,10 +103186,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1557), - [aux_sym__val_number_decimal_token2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1563), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1611), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -103102,151 +103209,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [250] = { - [sym__expr_parenthesized_immediate] = STATE(747), - [sym__immediate_decimal] = STATE(571), - [sym_val_variable] = STATE(747), - [sym_comment] = STATE(250), - [anon_sym_export] = ACTIONS(1431), - [anon_sym_alias] = ACTIONS(1431), - [anon_sym_let] = ACTIONS(1431), - [anon_sym_let_DASHenv] = ACTIONS(1431), - [anon_sym_mut] = ACTIONS(1431), - [anon_sym_const] = ACTIONS(1431), - [aux_sym_cmd_identifier_token1] = ACTIONS(1431), - [aux_sym_cmd_identifier_token2] = ACTIONS(1445), - [aux_sym_cmd_identifier_token3] = ACTIONS(1445), - [aux_sym_cmd_identifier_token4] = ACTIONS(1445), - [aux_sym_cmd_identifier_token5] = ACTIONS(1445), - [aux_sym_cmd_identifier_token6] = ACTIONS(1445), - [aux_sym_cmd_identifier_token7] = ACTIONS(1445), - [aux_sym_cmd_identifier_token8] = ACTIONS(1431), - [aux_sym_cmd_identifier_token9] = ACTIONS(1431), - [aux_sym_cmd_identifier_token10] = ACTIONS(1445), - [aux_sym_cmd_identifier_token11] = ACTIONS(1445), - [aux_sym_cmd_identifier_token12] = ACTIONS(1431), - [aux_sym_cmd_identifier_token13] = ACTIONS(1431), - [aux_sym_cmd_identifier_token14] = ACTIONS(1431), - [aux_sym_cmd_identifier_token15] = ACTIONS(1431), - [aux_sym_cmd_identifier_token16] = ACTIONS(1445), - [aux_sym_cmd_identifier_token17] = ACTIONS(1445), - [aux_sym_cmd_identifier_token18] = ACTIONS(1445), - [aux_sym_cmd_identifier_token19] = ACTIONS(1445), - [aux_sym_cmd_identifier_token20] = ACTIONS(1445), - [aux_sym_cmd_identifier_token21] = ACTIONS(1445), - [aux_sym_cmd_identifier_token22] = ACTIONS(1445), - [aux_sym_cmd_identifier_token23] = ACTIONS(1445), - [aux_sym_cmd_identifier_token24] = ACTIONS(1445), - [aux_sym_cmd_identifier_token25] = ACTIONS(1445), - [aux_sym_cmd_identifier_token26] = ACTIONS(1445), - [aux_sym_cmd_identifier_token27] = ACTIONS(1445), - [aux_sym_cmd_identifier_token28] = ACTIONS(1445), - [aux_sym_cmd_identifier_token29] = ACTIONS(1445), - [aux_sym_cmd_identifier_token30] = ACTIONS(1445), - [aux_sym_cmd_identifier_token31] = ACTIONS(1445), - [aux_sym_cmd_identifier_token32] = ACTIONS(1445), - [aux_sym_cmd_identifier_token33] = ACTIONS(1445), - [aux_sym_cmd_identifier_token34] = ACTIONS(1431), - [aux_sym_cmd_identifier_token35] = ACTIONS(1445), - [aux_sym_cmd_identifier_token36] = ACTIONS(1445), - [aux_sym_cmd_identifier_token37] = ACTIONS(1445), - [aux_sym_cmd_identifier_token38] = ACTIONS(1431), - [aux_sym_cmd_identifier_token39] = ACTIONS(1445), - [aux_sym_cmd_identifier_token40] = ACTIONS(1445), - [anon_sym_def] = ACTIONS(1431), - [anon_sym_export_DASHenv] = ACTIONS(1431), - [anon_sym_extern] = ACTIONS(1431), - [anon_sym_module] = ACTIONS(1431), - [anon_sym_use] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_COMMA] = ACTIONS(1445), - [anon_sym_DOLLAR] = ACTIONS(1355), - [anon_sym_error] = ACTIONS(1431), - [anon_sym_DASH2] = ACTIONS(1431), - [anon_sym_break] = ACTIONS(1431), - [anon_sym_continue] = ACTIONS(1431), - [anon_sym_for] = ACTIONS(1431), - [anon_sym_in2] = ACTIONS(1431), - [anon_sym_loop] = ACTIONS(1431), - [anon_sym_make] = ACTIONS(1431), - [anon_sym_while] = ACTIONS(1431), - [anon_sym_do] = ACTIONS(1431), - [anon_sym_if] = ACTIONS(1431), - [anon_sym_else] = ACTIONS(1431), - [anon_sym_match] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1445), - [anon_sym_try] = ACTIONS(1431), - [anon_sym_catch] = ACTIONS(1431), - [anon_sym_return] = ACTIONS(1431), - [anon_sym_source] = ACTIONS(1431), - [anon_sym_source_DASHenv] = ACTIONS(1431), - [anon_sym_hide] = ACTIONS(1431), - [anon_sym_hide_DASHenv] = ACTIONS(1431), - [anon_sym_overlay] = ACTIONS(1431), - [anon_sym_as] = ACTIONS(1431), - [anon_sym_LPAREN2] = ACTIONS(1565), - [anon_sym_PLUS2] = ACTIONS(1431), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1445), - [aux_sym__immediate_decimal_token1] = ACTIONS(1567), - [aux_sym__immediate_decimal_token3] = ACTIONS(1569), - [aux_sym__immediate_decimal_token4] = ACTIONS(1571), - [aux_sym__immediate_decimal_token5] = ACTIONS(1573), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1445), - [aux_sym__val_number_decimal_token1] = ACTIONS(1431), - [aux_sym__val_number_decimal_token2] = ACTIONS(1431), - [aux_sym__val_number_decimal_token3] = ACTIONS(1431), - [aux_sym__val_number_decimal_token4] = ACTIONS(1431), - [aux_sym__val_number_token1] = ACTIONS(1445), - [aux_sym__val_number_token2] = ACTIONS(1445), - [aux_sym__val_number_token3] = ACTIONS(1445), - [aux_sym__val_number_token4] = ACTIONS(1431), - [aux_sym__val_number_token5] = ACTIONS(1431), - [aux_sym__val_number_token6] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(1445), - [sym__str_single_quotes] = ACTIONS(1445), - [sym__str_back_ticks] = ACTIONS(1445), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1445), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1445), - [anon_sym_register] = ACTIONS(1431), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1447), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1445), - }, - [251] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5121), - [sym_block] = STATE(5124), - [sym__expression_parenthesized] = STATE(5124), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1174), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5124), - [sym_comment] = STATE(251), - [aux_sym_shebang_repeat1] = STATE(1202), + [261] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4885), + [sym_block] = STATE(4886), + [sym__expression_parenthesized] = STATE(4886), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1126), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4886), + [sym_comment] = STATE(261), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -103292,7 +103288,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1028), [anon_sym_LBRACE] = ACTIONS(1528), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(201), @@ -103301,10 +103297,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1557), - [aux_sym__val_number_decimal_token2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1563), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1611), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -103324,40 +103320,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [252] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5121), - [sym_block] = STATE(5124), - [sym__expression_parenthesized] = STATE(5124), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1174), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5124), - [sym_comment] = STATE(252), - [aux_sym_shebang_repeat1] = STATE(255), + [262] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4885), + [sym_block] = STATE(4886), + [sym__expression_parenthesized] = STATE(4886), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1126), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4886), + [sym_comment] = STATE(262), + [aux_sym_shebang_repeat1] = STATE(265), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -103403,7 +103399,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1028), [anon_sym_LBRACE] = ACTIONS(1528), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(201), @@ -103412,10 +103408,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1557), - [aux_sym__val_number_decimal_token2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1563), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1611), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -103435,40 +103431,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [253] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(4999), - [sym_block] = STATE(5003), - [sym__expression_parenthesized] = STATE(5003), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1174), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5003), - [sym_comment] = STATE(253), - [aux_sym_shebang_repeat1] = STATE(257), + [263] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4888), + [sym_block] = STATE(4876), + [sym__expression_parenthesized] = STATE(4876), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1126), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4876), + [sym_comment] = STATE(263), + [aux_sym_shebang_repeat1] = STATE(267), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -103514,7 +103510,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1028), [anon_sym_LBRACE] = ACTIONS(1528), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(201), @@ -103523,10 +103519,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1557), - [aux_sym__val_number_decimal_token2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1563), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1611), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -103546,40 +103542,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [254] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5054), - [sym_block] = STATE(5020), - [sym__expression_parenthesized] = STATE(5020), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1174), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5020), - [sym_comment] = STATE(254), - [aux_sym_shebang_repeat1] = STATE(259), + [264] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4766), + [sym_block] = STATE(4879), + [sym__expression_parenthesized] = STATE(4879), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1126), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4879), + [sym_comment] = STATE(264), + [aux_sym_shebang_repeat1] = STATE(269), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -103625,7 +103621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1028), [anon_sym_LBRACE] = ACTIONS(1528), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(201), @@ -103634,10 +103630,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1557), - [aux_sym__val_number_decimal_token2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1563), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1611), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -103657,40 +103653,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [255] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5158), - [sym_block] = STATE(5080), - [sym__expression_parenthesized] = STATE(5080), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1174), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5080), - [sym_comment] = STATE(255), - [aux_sym_shebang_repeat1] = STATE(1202), + [265] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4732), + [sym_block] = STATE(4733), + [sym__expression_parenthesized] = STATE(4733), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1126), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4733), + [sym_comment] = STATE(265), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -103736,7 +103732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1028), [anon_sym_LBRACE] = ACTIONS(1528), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(201), @@ -103745,10 +103741,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1557), - [aux_sym__val_number_decimal_token2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1563), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1611), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -103768,40 +103764,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [256] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5158), - [sym_block] = STATE(5080), - [sym__expression_parenthesized] = STATE(5080), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1174), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5080), - [sym_comment] = STATE(256), - [aux_sym_shebang_repeat1] = STATE(262), + [266] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4732), + [sym_block] = STATE(4733), + [sym__expression_parenthesized] = STATE(4733), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1126), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4733), + [sym_comment] = STATE(266), + [aux_sym_shebang_repeat1] = STATE(272), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -103847,7 +103843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1028), [anon_sym_LBRACE] = ACTIONS(1528), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(201), @@ -103856,10 +103852,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1557), - [aux_sym__val_number_decimal_token2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1563), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1611), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -103879,40 +103875,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [257] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5150), - [sym_block] = STATE(5152), - [sym__expression_parenthesized] = STATE(5152), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1174), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5152), - [sym_comment] = STATE(257), - [aux_sym_shebang_repeat1] = STATE(1202), + [267] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4734), + [sym_block] = STATE(4735), + [sym__expression_parenthesized] = STATE(4735), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1126), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4735), + [sym_comment] = STATE(267), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -103958,7 +103954,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1028), [anon_sym_LBRACE] = ACTIONS(1528), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(201), @@ -103967,10 +103963,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1557), - [aux_sym__val_number_decimal_token2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1563), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1611), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -103990,40 +103986,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [258] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5150), - [sym_block] = STATE(5152), - [sym__expression_parenthesized] = STATE(5152), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1174), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5152), - [sym_comment] = STATE(258), - [aux_sym_shebang_repeat1] = STATE(263), + [268] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4734), + [sym_block] = STATE(4735), + [sym__expression_parenthesized] = STATE(4735), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1126), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4735), + [sym_comment] = STATE(268), + [aux_sym_shebang_repeat1] = STATE(273), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -104069,7 +104065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1028), [anon_sym_LBRACE] = ACTIONS(1528), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(201), @@ -104078,10 +104074,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1557), - [aux_sym__val_number_decimal_token2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1563), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1611), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -104101,40 +104097,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [259] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5154), - [sym_block] = STATE(5155), - [sym__expression_parenthesized] = STATE(5155), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1174), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5155), - [sym_comment] = STATE(259), - [aux_sym_shebang_repeat1] = STATE(1202), + [269] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4845), + [sym_block] = STATE(4856), + [sym__expression_parenthesized] = STATE(4856), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1126), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4856), + [sym_comment] = STATE(269), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -104180,7 +104176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1028), [anon_sym_LBRACE] = ACTIONS(1528), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(201), @@ -104189,10 +104185,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1557), - [aux_sym__val_number_decimal_token2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1563), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1611), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -104212,40 +104208,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [260] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5154), - [sym_block] = STATE(5155), - [sym__expression_parenthesized] = STATE(5155), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1174), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5155), - [sym_comment] = STATE(260), - [aux_sym_shebang_repeat1] = STATE(265), + [270] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4845), + [sym_block] = STATE(4856), + [sym__expression_parenthesized] = STATE(4856), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1126), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4856), + [sym_comment] = STATE(270), + [aux_sym_shebang_repeat1] = STATE(275), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -104291,7 +104287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1028), [anon_sym_LBRACE] = ACTIONS(1528), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(201), @@ -104300,10 +104296,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1557), - [aux_sym__val_number_decimal_token2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1563), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1611), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -104323,40 +104319,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [261] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5122), - [sym_block] = STATE(4984), - [sym__expression_parenthesized] = STATE(4984), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1174), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(4984), - [sym_comment] = STATE(261), - [aux_sym_shebang_repeat1] = STATE(267), + [271] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4862), + [sym_block] = STATE(4869), + [sym__expression_parenthesized] = STATE(4869), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1126), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4869), + [sym_comment] = STATE(271), + [aux_sym_shebang_repeat1] = STATE(277), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -104402,7 +104398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1028), [anon_sym_LBRACE] = ACTIONS(1528), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(201), @@ -104411,10 +104407,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1557), - [aux_sym__val_number_decimal_token2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1563), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1611), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -104434,40 +104430,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [262] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5071), - [sym_block] = STATE(5112), - [sym__expression_parenthesized] = STATE(5112), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1174), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5112), - [sym_comment] = STATE(262), - [aux_sym_shebang_repeat1] = STATE(1202), + [272] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4774), + [sym_block] = STATE(4790), + [sym__expression_parenthesized] = STATE(4790), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1126), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4790), + [sym_comment] = STATE(272), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -104513,7 +104509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1028), [anon_sym_LBRACE] = ACTIONS(1528), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(201), @@ -104522,10 +104518,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1557), - [aux_sym__val_number_decimal_token2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1563), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1611), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -104545,40 +104541,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [263] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5114), - [sym_block] = STATE(5118), - [sym__expression_parenthesized] = STATE(5118), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1174), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5118), - [sym_comment] = STATE(263), - [aux_sym_shebang_repeat1] = STATE(1202), + [273] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4791), + [sym_block] = STATE(4793), + [sym__expression_parenthesized] = STATE(4793), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1126), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4793), + [sym_comment] = STATE(273), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -104624,7 +104620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1028), [anon_sym_LBRACE] = ACTIONS(1528), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(201), @@ -104633,10 +104629,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1557), - [aux_sym__val_number_decimal_token2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1563), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1611), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -104656,40 +104652,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [264] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5114), - [sym_block] = STATE(5118), - [sym__expression_parenthesized] = STATE(5118), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1174), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5118), - [sym_comment] = STATE(264), - [aux_sym_shebang_repeat1] = STATE(269), + [274] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4791), + [sym_block] = STATE(4793), + [sym__expression_parenthesized] = STATE(4793), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1126), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4793), + [sym_comment] = STATE(274), + [aux_sym_shebang_repeat1] = STATE(279), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -104735,7 +104731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1028), [anon_sym_LBRACE] = ACTIONS(1528), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(201), @@ -104744,10 +104740,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1557), - [aux_sym__val_number_decimal_token2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1563), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1611), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -104767,40 +104763,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [265] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5110), - [sym_block] = STATE(5139), - [sym__expression_parenthesized] = STATE(5139), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1174), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5139), - [sym_comment] = STATE(265), - [aux_sym_shebang_repeat1] = STATE(1202), + [275] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4794), + [sym_block] = STATE(4889), + [sym__expression_parenthesized] = STATE(4889), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1126), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4889), + [sym_comment] = STATE(275), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -104846,7 +104842,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1028), [anon_sym_LBRACE] = ACTIONS(1528), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(201), @@ -104855,10 +104851,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1557), - [aux_sym__val_number_decimal_token2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1563), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1611), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -104878,40 +104874,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [266] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5110), - [sym_block] = STATE(5139), - [sym__expression_parenthesized] = STATE(5139), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1174), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5139), - [sym_comment] = STATE(266), - [aux_sym_shebang_repeat1] = STATE(270), + [276] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4794), + [sym_block] = STATE(4889), + [sym__expression_parenthesized] = STATE(4889), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1126), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4889), + [sym_comment] = STATE(276), + [aux_sym_shebang_repeat1] = STATE(280), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -104957,7 +104953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1028), [anon_sym_LBRACE] = ACTIONS(1528), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(201), @@ -104966,10 +104962,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1557), - [aux_sym__val_number_decimal_token2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1563), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1611), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -104989,40 +104985,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [267] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5075), - [sym_block] = STATE(4982), - [sym__expression_parenthesized] = STATE(4982), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1174), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(4982), - [sym_comment] = STATE(267), - [aux_sym_shebang_repeat1] = STATE(1202), + [277] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4807), + [sym_block] = STATE(4814), + [sym__expression_parenthesized] = STATE(4814), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1126), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4814), + [sym_comment] = STATE(277), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -105068,7 +105064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1028), [anon_sym_LBRACE] = ACTIONS(1528), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(201), @@ -105077,10 +105073,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1557), - [aux_sym__val_number_decimal_token2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1563), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1611), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -105100,40 +105096,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [268] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5075), - [sym_block] = STATE(4982), - [sym__expression_parenthesized] = STATE(4982), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1174), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(4982), - [sym_comment] = STATE(268), - [aux_sym_shebang_repeat1] = STATE(271), + [278] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4807), + [sym_block] = STATE(4814), + [sym__expression_parenthesized] = STATE(4814), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1126), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4814), + [sym_comment] = STATE(278), + [aux_sym_shebang_repeat1] = STATE(281), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -105179,7 +105175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1028), [anon_sym_LBRACE] = ACTIONS(1528), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(201), @@ -105188,10 +105184,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1557), - [aux_sym__val_number_decimal_token2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1563), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1611), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -105211,40 +105207,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [269] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5083), - [sym_block] = STATE(5086), - [sym__expression_parenthesized] = STATE(5086), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1174), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5086), - [sym_comment] = STATE(269), - [aux_sym_shebang_repeat1] = STATE(1202), + [279] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4816), + [sym_block] = STATE(4832), + [sym__expression_parenthesized] = STATE(4832), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1126), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4832), + [sym_comment] = STATE(279), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -105290,7 +105286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1028), [anon_sym_LBRACE] = ACTIONS(1528), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(201), @@ -105299,10 +105295,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1557), - [aux_sym__val_number_decimal_token2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1563), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1611), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -105322,40 +105318,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [270] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5087), - [sym_block] = STATE(5095), - [sym__expression_parenthesized] = STATE(5095), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1174), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5095), - [sym_comment] = STATE(270), - [aux_sym_shebang_repeat1] = STATE(1202), + [280] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4833), + [sym_block] = STATE(4838), + [sym__expression_parenthesized] = STATE(4838), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1126), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4838), + [sym_comment] = STATE(280), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -105401,7 +105397,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1028), [anon_sym_LBRACE] = ACTIONS(1528), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(201), @@ -105410,10 +105406,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1557), - [aux_sym__val_number_decimal_token2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1563), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1611), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -105433,40 +105429,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [271] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5032), - [sym_block] = STATE(5085), - [sym__expression_parenthesized] = STATE(5085), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1174), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5085), - [sym_comment] = STATE(271), - [aux_sym_shebang_repeat1] = STATE(1202), + [281] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4839), + [sym_block] = STATE(4843), + [sym__expression_parenthesized] = STATE(4843), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1126), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4843), + [sym_comment] = STATE(281), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -105512,7 +105508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1028), [anon_sym_LBRACE] = ACTIONS(1528), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(201), @@ -105521,10 +105517,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1557), - [aux_sym__val_number_decimal_token2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1563), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1611), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -105544,40 +105540,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [272] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5032), - [sym_block] = STATE(5085), - [sym__expression_parenthesized] = STATE(5085), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1174), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5085), - [sym_comment] = STATE(272), - [aux_sym_shebang_repeat1] = STATE(273), + [282] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4839), + [sym_block] = STATE(4843), + [sym__expression_parenthesized] = STATE(4843), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1126), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4843), + [sym_comment] = STATE(282), + [aux_sym_shebang_repeat1] = STATE(283), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -105623,7 +105619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1028), [anon_sym_LBRACE] = ACTIONS(1528), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(201), @@ -105632,10 +105628,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1557), - [aux_sym__val_number_decimal_token2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1563), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1611), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -105655,40 +105651,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [273] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5025), - [sym_block] = STATE(5026), - [sym__expression_parenthesized] = STATE(5026), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1174), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5026), - [sym_comment] = STATE(273), - [aux_sym_shebang_repeat1] = STATE(1202), + [283] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4850), + [sym_block] = STATE(4854), + [sym__expression_parenthesized] = STATE(4854), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1126), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4854), + [sym_comment] = STATE(283), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -105734,7 +105730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1028), [anon_sym_LBRACE] = ACTIONS(1528), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(201), @@ -105743,10 +105739,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1557), - [aux_sym__val_number_decimal_token2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1563), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1611), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -105766,1039 +105762,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [274] = { - [sym__expr_parenthesized_immediate] = STATE(680), - [sym__immediate_decimal] = STATE(576), - [sym_val_variable] = STATE(680), - [sym_comment] = STATE(274), - [anon_sym_export] = ACTIONS(1466), - [anon_sym_alias] = ACTIONS(1466), - [anon_sym_let] = ACTIONS(1466), - [anon_sym_let_DASHenv] = ACTIONS(1466), - [anon_sym_mut] = ACTIONS(1466), - [anon_sym_const] = ACTIONS(1466), - [aux_sym_cmd_identifier_token1] = ACTIONS(1466), - [aux_sym_cmd_identifier_token2] = ACTIONS(1468), - [aux_sym_cmd_identifier_token3] = ACTIONS(1468), - [aux_sym_cmd_identifier_token4] = ACTIONS(1468), - [aux_sym_cmd_identifier_token5] = ACTIONS(1468), - [aux_sym_cmd_identifier_token6] = ACTIONS(1468), - [aux_sym_cmd_identifier_token7] = ACTIONS(1468), - [aux_sym_cmd_identifier_token8] = ACTIONS(1466), - [aux_sym_cmd_identifier_token9] = ACTIONS(1466), - [aux_sym_cmd_identifier_token10] = ACTIONS(1468), - [aux_sym_cmd_identifier_token11] = ACTIONS(1468), - [aux_sym_cmd_identifier_token12] = ACTIONS(1466), - [aux_sym_cmd_identifier_token13] = ACTIONS(1466), - [aux_sym_cmd_identifier_token14] = ACTIONS(1466), - [aux_sym_cmd_identifier_token15] = ACTIONS(1466), - [aux_sym_cmd_identifier_token16] = ACTIONS(1468), - [aux_sym_cmd_identifier_token17] = ACTIONS(1468), - [aux_sym_cmd_identifier_token18] = ACTIONS(1468), - [aux_sym_cmd_identifier_token19] = ACTIONS(1468), - [aux_sym_cmd_identifier_token20] = ACTIONS(1468), - [aux_sym_cmd_identifier_token21] = ACTIONS(1468), - [aux_sym_cmd_identifier_token22] = ACTIONS(1468), - [aux_sym_cmd_identifier_token23] = ACTIONS(1468), - [aux_sym_cmd_identifier_token24] = ACTIONS(1468), - [aux_sym_cmd_identifier_token25] = ACTIONS(1468), - [aux_sym_cmd_identifier_token26] = ACTIONS(1468), - [aux_sym_cmd_identifier_token27] = ACTIONS(1468), - [aux_sym_cmd_identifier_token28] = ACTIONS(1468), - [aux_sym_cmd_identifier_token29] = ACTIONS(1468), - [aux_sym_cmd_identifier_token30] = ACTIONS(1468), - [aux_sym_cmd_identifier_token31] = ACTIONS(1468), - [aux_sym_cmd_identifier_token32] = ACTIONS(1468), - [aux_sym_cmd_identifier_token33] = ACTIONS(1468), - [aux_sym_cmd_identifier_token34] = ACTIONS(1466), - [aux_sym_cmd_identifier_token35] = ACTIONS(1468), - [aux_sym_cmd_identifier_token36] = ACTIONS(1468), - [aux_sym_cmd_identifier_token37] = ACTIONS(1468), - [aux_sym_cmd_identifier_token38] = ACTIONS(1466), - [aux_sym_cmd_identifier_token39] = ACTIONS(1468), - [aux_sym_cmd_identifier_token40] = ACTIONS(1468), - [anon_sym_def] = ACTIONS(1466), - [anon_sym_export_DASHenv] = ACTIONS(1466), - [anon_sym_extern] = ACTIONS(1466), - [anon_sym_module] = ACTIONS(1466), - [anon_sym_use] = ACTIONS(1466), - [anon_sym_LPAREN] = ACTIONS(1466), - [anon_sym_COMMA] = ACTIONS(1468), - [anon_sym_DOLLAR] = ACTIONS(1355), - [anon_sym_error] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1466), - [anon_sym_break] = ACTIONS(1466), - [anon_sym_continue] = ACTIONS(1466), - [anon_sym_for] = ACTIONS(1466), - [anon_sym_in2] = ACTIONS(1466), - [anon_sym_loop] = ACTIONS(1466), - [anon_sym_make] = ACTIONS(1466), - [anon_sym_while] = ACTIONS(1466), - [anon_sym_do] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1466), - [anon_sym_else] = ACTIONS(1466), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_try] = ACTIONS(1466), - [anon_sym_catch] = ACTIONS(1466), - [anon_sym_return] = ACTIONS(1466), - [anon_sym_source] = ACTIONS(1466), - [anon_sym_source_DASHenv] = ACTIONS(1466), - [anon_sym_hide] = ACTIONS(1466), - [anon_sym_hide_DASHenv] = ACTIONS(1466), - [anon_sym_overlay] = ACTIONS(1466), - [anon_sym_as] = ACTIONS(1466), - [anon_sym_LPAREN2] = ACTIONS(1565), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1468), - [aux_sym__immediate_decimal_token1] = ACTIONS(1567), - [aux_sym__immediate_decimal_token3] = ACTIONS(1569), - [aux_sym__immediate_decimal_token4] = ACTIONS(1571), - [aux_sym__immediate_decimal_token5] = ACTIONS(1573), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1468), - [aux_sym__val_number_decimal_token1] = ACTIONS(1466), - [aux_sym__val_number_decimal_token2] = ACTIONS(1466), - [aux_sym__val_number_decimal_token3] = ACTIONS(1466), - [aux_sym__val_number_decimal_token4] = ACTIONS(1466), - [aux_sym__val_number_token1] = ACTIONS(1468), - [aux_sym__val_number_token2] = ACTIONS(1468), - [aux_sym__val_number_token3] = ACTIONS(1468), - [aux_sym__val_number_token4] = ACTIONS(1466), - [aux_sym__val_number_token5] = ACTIONS(1466), - [aux_sym__val_number_token6] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1468), - [sym__str_single_quotes] = ACTIONS(1468), - [sym__str_back_ticks] = ACTIONS(1468), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1468), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1468), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1468), - [anon_sym_register] = ACTIONS(1466), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1468), - }, - [275] = { - [sym__expr_parenthesized_immediate] = STATE(626), - [sym__immediate_decimal] = STATE(627), - [sym_val_variable] = STATE(626), - [sym_comment] = STATE(275), - [anon_sym_export] = ACTIONS(1575), - [anon_sym_alias] = ACTIONS(1575), - [anon_sym_let] = ACTIONS(1575), - [anon_sym_let_DASHenv] = ACTIONS(1575), - [anon_sym_mut] = ACTIONS(1575), - [anon_sym_const] = ACTIONS(1575), - [aux_sym_cmd_identifier_token1] = ACTIONS(1575), - [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(1575), - [aux_sym_cmd_identifier_token9] = ACTIONS(1575), - [aux_sym_cmd_identifier_token10] = ACTIONS(1575), - [aux_sym_cmd_identifier_token11] = ACTIONS(1575), - [aux_sym_cmd_identifier_token12] = ACTIONS(1575), - [aux_sym_cmd_identifier_token13] = ACTIONS(1575), - [aux_sym_cmd_identifier_token14] = ACTIONS(1575), - [aux_sym_cmd_identifier_token15] = ACTIONS(1575), - [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(1575), - [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(1575), - [aux_sym_cmd_identifier_token39] = ACTIONS(1575), - [aux_sym_cmd_identifier_token40] = ACTIONS(1575), - [anon_sym_def] = ACTIONS(1575), - [anon_sym_export_DASHenv] = ACTIONS(1575), - [anon_sym_extern] = ACTIONS(1575), - [anon_sym_module] = ACTIONS(1575), - [anon_sym_use] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_COMMA] = ACTIONS(1575), - [anon_sym_DOLLAR] = ACTIONS(1449), - [anon_sym_error] = ACTIONS(1575), - [anon_sym_DASH2] = ACTIONS(1575), - [anon_sym_break] = ACTIONS(1575), - [anon_sym_continue] = ACTIONS(1575), - [anon_sym_for] = ACTIONS(1575), - [anon_sym_in2] = ACTIONS(1575), - [anon_sym_loop] = ACTIONS(1575), - [anon_sym_make] = ACTIONS(1575), - [anon_sym_while] = ACTIONS(1575), - [anon_sym_do] = ACTIONS(1575), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_else] = ACTIONS(1575), - [anon_sym_match] = ACTIONS(1575), - [anon_sym_RBRACE] = ACTIONS(1575), - [anon_sym_try] = ACTIONS(1575), - [anon_sym_catch] = ACTIONS(1575), - [anon_sym_return] = ACTIONS(1575), - [anon_sym_source] = ACTIONS(1575), - [anon_sym_source_DASHenv] = ACTIONS(1575), - [anon_sym_hide] = ACTIONS(1575), - [anon_sym_hide_DASHenv] = ACTIONS(1575), - [anon_sym_overlay] = ACTIONS(1575), - [anon_sym_as] = ACTIONS(1575), - [anon_sym_LPAREN2] = ACTIONS(1451), - [anon_sym_PLUS2] = ACTIONS(1575), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1575), - [aux_sym__immediate_decimal_token1] = ACTIONS(1546), - [aux_sym__immediate_decimal_token3] = ACTIONS(1546), - [aux_sym__immediate_decimal_token4] = ACTIONS(1548), - [aux_sym__immediate_decimal_token5] = ACTIONS(1550), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1575), - [aux_sym__val_number_decimal_token1] = ACTIONS(1575), - [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_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_DOT_DOT_DOT_LBRACE] = ACTIONS(1575), - [sym__entry_separator] = ACTIONS(1577), - [anon_sym_register] = ACTIONS(1575), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1577), - }, - [276] = { - [sym__expr_parenthesized_immediate] = STATE(7527), - [sym_comment] = STATE(276), - [anon_sym_export] = ACTIONS(1579), - [anon_sym_alias] = ACTIONS(1579), - [anon_sym_let] = ACTIONS(1579), - [anon_sym_let_DASHenv] = ACTIONS(1579), - [anon_sym_mut] = ACTIONS(1579), - [anon_sym_const] = ACTIONS(1579), - [aux_sym_cmd_identifier_token1] = ACTIONS(1579), - [aux_sym_cmd_identifier_token2] = ACTIONS(1579), - [aux_sym_cmd_identifier_token3] = ACTIONS(1579), - [aux_sym_cmd_identifier_token4] = ACTIONS(1579), - [aux_sym_cmd_identifier_token5] = ACTIONS(1579), - [aux_sym_cmd_identifier_token6] = ACTIONS(1579), - [aux_sym_cmd_identifier_token7] = ACTIONS(1579), - [aux_sym_cmd_identifier_token8] = ACTIONS(1579), - [aux_sym_cmd_identifier_token9] = ACTIONS(1579), - [aux_sym_cmd_identifier_token10] = ACTIONS(1579), - [aux_sym_cmd_identifier_token11] = ACTIONS(1579), - [aux_sym_cmd_identifier_token12] = ACTIONS(1579), - [aux_sym_cmd_identifier_token13] = ACTIONS(1579), - [aux_sym_cmd_identifier_token14] = ACTIONS(1579), - [aux_sym_cmd_identifier_token15] = ACTIONS(1579), - [aux_sym_cmd_identifier_token16] = ACTIONS(1579), - [aux_sym_cmd_identifier_token17] = ACTIONS(1579), - [aux_sym_cmd_identifier_token18] = ACTIONS(1579), - [aux_sym_cmd_identifier_token19] = ACTIONS(1579), - [aux_sym_cmd_identifier_token20] = ACTIONS(1579), - [aux_sym_cmd_identifier_token21] = ACTIONS(1579), - [aux_sym_cmd_identifier_token22] = ACTIONS(1579), - [aux_sym_cmd_identifier_token23] = ACTIONS(1579), - [aux_sym_cmd_identifier_token24] = ACTIONS(1579), - [aux_sym_cmd_identifier_token25] = ACTIONS(1579), - [aux_sym_cmd_identifier_token26] = ACTIONS(1579), - [aux_sym_cmd_identifier_token27] = ACTIONS(1579), - [aux_sym_cmd_identifier_token28] = ACTIONS(1579), - [aux_sym_cmd_identifier_token29] = ACTIONS(1579), - [aux_sym_cmd_identifier_token30] = ACTIONS(1579), - [aux_sym_cmd_identifier_token31] = ACTIONS(1579), - [aux_sym_cmd_identifier_token32] = ACTIONS(1579), - [aux_sym_cmd_identifier_token33] = ACTIONS(1579), - [aux_sym_cmd_identifier_token34] = ACTIONS(1579), - [aux_sym_cmd_identifier_token35] = ACTIONS(1579), - [aux_sym_cmd_identifier_token36] = ACTIONS(1579), - [aux_sym_cmd_identifier_token37] = ACTIONS(1579), - [aux_sym_cmd_identifier_token38] = ACTIONS(1579), - [aux_sym_cmd_identifier_token39] = ACTIONS(1579), - [aux_sym_cmd_identifier_token40] = ACTIONS(1579), - [anon_sym_def] = ACTIONS(1579), - [anon_sym_export_DASHenv] = ACTIONS(1579), - [anon_sym_extern] = ACTIONS(1579), - [anon_sym_module] = ACTIONS(1579), - [anon_sym_use] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_COMMA] = ACTIONS(1579), - [anon_sym_DOLLAR] = ACTIONS(1579), - [anon_sym_error] = ACTIONS(1579), - [anon_sym_DASH2] = ACTIONS(1579), - [anon_sym_break] = ACTIONS(1579), - [anon_sym_continue] = ACTIONS(1579), - [anon_sym_for] = ACTIONS(1579), - [anon_sym_in2] = ACTIONS(1579), - [anon_sym_loop] = ACTIONS(1579), - [anon_sym_make] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1579), - [anon_sym_if] = ACTIONS(1579), - [anon_sym_else] = ACTIONS(1579), - [anon_sym_match] = ACTIONS(1579), - [anon_sym_RBRACE] = ACTIONS(1579), - [anon_sym_try] = ACTIONS(1579), - [anon_sym_catch] = ACTIONS(1579), - [anon_sym_return] = ACTIONS(1579), - [anon_sym_source] = ACTIONS(1579), - [anon_sym_source_DASHenv] = ACTIONS(1579), - [anon_sym_hide] = ACTIONS(1579), - [anon_sym_hide_DASHenv] = ACTIONS(1579), - [anon_sym_overlay] = ACTIONS(1579), - [anon_sym_as] = ACTIONS(1579), - [anon_sym_LPAREN2] = ACTIONS(1581), - [anon_sym_PLUS2] = ACTIONS(1579), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1579), - [anon_sym_DOT_DOT2] = ACTIONS(1583), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1585), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1585), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1579), - [aux_sym__val_number_decimal_token1] = ACTIONS(1579), - [aux_sym__val_number_decimal_token2] = ACTIONS(1579), - [aux_sym__val_number_decimal_token3] = ACTIONS(1579), - [aux_sym__val_number_decimal_token4] = ACTIONS(1579), - [aux_sym__val_number_token1] = ACTIONS(1579), - [aux_sym__val_number_token2] = ACTIONS(1579), - [aux_sym__val_number_token3] = ACTIONS(1579), - [aux_sym__val_number_token4] = ACTIONS(1579), - [aux_sym__val_number_token5] = ACTIONS(1579), - [aux_sym__val_number_token6] = ACTIONS(1579), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym__str_single_quotes] = ACTIONS(1579), - [sym__str_back_ticks] = ACTIONS(1579), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1579), - [sym__entry_separator] = ACTIONS(1591), - [anon_sym_register] = ACTIONS(1579), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1593), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1591), - }, - [277] = { - [sym_comment] = STATE(277), - [aux_sym_shebang_repeat1] = STATE(325), - [aux_sym__parenthesized_body_repeat1] = STATE(281), - [anon_sym_export] = ACTIONS(1595), - [anon_sym_alias] = ACTIONS(1595), - [anon_sym_let] = ACTIONS(1595), - [anon_sym_let_DASHenv] = ACTIONS(1595), - [anon_sym_mut] = ACTIONS(1595), - [anon_sym_const] = ACTIONS(1595), - [aux_sym_cmd_identifier_token1] = ACTIONS(1595), - [aux_sym_cmd_identifier_token2] = ACTIONS(1597), - [aux_sym_cmd_identifier_token3] = ACTIONS(1597), - [aux_sym_cmd_identifier_token4] = ACTIONS(1597), - [aux_sym_cmd_identifier_token5] = ACTIONS(1597), - [aux_sym_cmd_identifier_token6] = ACTIONS(1597), - [aux_sym_cmd_identifier_token7] = ACTIONS(1597), - [aux_sym_cmd_identifier_token8] = ACTIONS(1595), - [aux_sym_cmd_identifier_token9] = ACTIONS(1595), - [aux_sym_cmd_identifier_token10] = ACTIONS(1597), - [aux_sym_cmd_identifier_token11] = ACTIONS(1597), - [aux_sym_cmd_identifier_token12] = ACTIONS(1595), - [aux_sym_cmd_identifier_token13] = ACTIONS(1595), - [aux_sym_cmd_identifier_token14] = ACTIONS(1595), - [aux_sym_cmd_identifier_token15] = ACTIONS(1595), - [aux_sym_cmd_identifier_token16] = ACTIONS(1597), - [aux_sym_cmd_identifier_token17] = ACTIONS(1597), - [aux_sym_cmd_identifier_token18] = ACTIONS(1597), - [aux_sym_cmd_identifier_token19] = ACTIONS(1597), - [aux_sym_cmd_identifier_token20] = ACTIONS(1597), - [aux_sym_cmd_identifier_token21] = ACTIONS(1597), - [aux_sym_cmd_identifier_token22] = ACTIONS(1597), - [aux_sym_cmd_identifier_token23] = ACTIONS(1597), - [aux_sym_cmd_identifier_token24] = ACTIONS(1597), - [aux_sym_cmd_identifier_token25] = ACTIONS(1597), - [aux_sym_cmd_identifier_token26] = ACTIONS(1597), - [aux_sym_cmd_identifier_token27] = ACTIONS(1597), - [aux_sym_cmd_identifier_token28] = ACTIONS(1597), - [aux_sym_cmd_identifier_token29] = ACTIONS(1597), - [aux_sym_cmd_identifier_token30] = ACTIONS(1597), - [aux_sym_cmd_identifier_token31] = ACTIONS(1597), - [aux_sym_cmd_identifier_token32] = ACTIONS(1597), - [aux_sym_cmd_identifier_token33] = ACTIONS(1597), - [aux_sym_cmd_identifier_token34] = ACTIONS(1595), - [aux_sym_cmd_identifier_token35] = ACTIONS(1597), - [aux_sym_cmd_identifier_token36] = ACTIONS(1597), - [aux_sym_cmd_identifier_token37] = ACTIONS(1597), - [aux_sym_cmd_identifier_token38] = ACTIONS(1595), - [aux_sym_cmd_identifier_token39] = ACTIONS(1597), - [aux_sym_cmd_identifier_token40] = ACTIONS(1597), - [sym__newline] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1601), - [anon_sym_AT] = ACTIONS(1597), - [anon_sym_def] = ACTIONS(1595), - [anon_sym_export_DASHenv] = ACTIONS(1595), - [anon_sym_extern] = ACTIONS(1595), - [anon_sym_module] = ACTIONS(1595), - [anon_sym_use] = ACTIONS(1595), - [anon_sym_LBRACK] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_DOLLAR] = ACTIONS(1595), - [anon_sym_error] = ACTIONS(1595), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1595), - [anon_sym_continue] = ACTIONS(1595), - [anon_sym_for] = ACTIONS(1595), - [anon_sym_loop] = ACTIONS(1595), - [anon_sym_while] = ACTIONS(1595), - [anon_sym_do] = ACTIONS(1595), - [anon_sym_if] = ACTIONS(1595), - [anon_sym_match] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1595), - [anon_sym_try] = ACTIONS(1595), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_source] = ACTIONS(1595), - [anon_sym_source_DASHenv] = ACTIONS(1595), - [anon_sym_hide] = ACTIONS(1595), - [anon_sym_hide_DASHenv] = ACTIONS(1595), - [anon_sym_overlay] = ACTIONS(1595), - [anon_sym_where] = ACTIONS(1597), - [aux_sym_expr_unary_token1] = ACTIONS(1597), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT] = ACTIONS(1597), - [anon_sym_null] = ACTIONS(1595), - [anon_sym_true] = ACTIONS(1595), - [anon_sym_false] = ACTIONS(1595), - [aux_sym__val_number_decimal_token1] = ACTIONS(1595), - [aux_sym__val_number_decimal_token2] = ACTIONS(1597), - [aux_sym__val_number_decimal_token3] = ACTIONS(1597), - [aux_sym__val_number_decimal_token4] = ACTIONS(1597), - [aux_sym__val_number_token1] = ACTIONS(1597), - [aux_sym__val_number_token2] = ACTIONS(1597), - [aux_sym__val_number_token3] = ACTIONS(1597), - [aux_sym__val_number_token4] = ACTIONS(1595), - [aux_sym__val_number_token5] = ACTIONS(1595), - [aux_sym__val_number_token6] = ACTIONS(1595), - [anon_sym_0b] = ACTIONS(1595), - [anon_sym_0o] = ACTIONS(1595), - [anon_sym_0x] = ACTIONS(1595), - [sym_val_date] = ACTIONS(1597), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym__str_single_quotes] = ACTIONS(1597), - [sym__str_back_ticks] = ACTIONS(1597), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1597), - [aux_sym_env_var_token1] = ACTIONS(1595), - [anon_sym_CARET] = ACTIONS(1597), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1597), - }, - [278] = { - [sym_comment] = STATE(278), - [aux_sym_shebang_repeat1] = STATE(278), - [anon_sym_export] = ACTIONS(1284), - [anon_sym_alias] = ACTIONS(1284), - [anon_sym_let] = ACTIONS(1284), - [anon_sym_let_DASHenv] = ACTIONS(1284), - [anon_sym_mut] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [aux_sym_cmd_identifier_token1] = ACTIONS(1284), - [aux_sym_cmd_identifier_token2] = ACTIONS(1286), - [aux_sym_cmd_identifier_token3] = ACTIONS(1286), - [aux_sym_cmd_identifier_token4] = ACTIONS(1286), - [aux_sym_cmd_identifier_token5] = ACTIONS(1286), - [aux_sym_cmd_identifier_token6] = ACTIONS(1286), - [aux_sym_cmd_identifier_token7] = ACTIONS(1286), - [aux_sym_cmd_identifier_token8] = ACTIONS(1284), - [aux_sym_cmd_identifier_token9] = ACTIONS(1284), - [aux_sym_cmd_identifier_token10] = ACTIONS(1286), - [aux_sym_cmd_identifier_token11] = ACTIONS(1286), - [aux_sym_cmd_identifier_token12] = ACTIONS(1284), - [aux_sym_cmd_identifier_token13] = ACTIONS(1284), - [aux_sym_cmd_identifier_token14] = ACTIONS(1284), - [aux_sym_cmd_identifier_token15] = ACTIONS(1284), - [aux_sym_cmd_identifier_token16] = ACTIONS(1286), - [aux_sym_cmd_identifier_token17] = ACTIONS(1286), - [aux_sym_cmd_identifier_token18] = ACTIONS(1286), - [aux_sym_cmd_identifier_token19] = ACTIONS(1286), - [aux_sym_cmd_identifier_token20] = ACTIONS(1286), - [aux_sym_cmd_identifier_token21] = ACTIONS(1286), - [aux_sym_cmd_identifier_token22] = ACTIONS(1286), - [aux_sym_cmd_identifier_token23] = ACTIONS(1286), - [aux_sym_cmd_identifier_token24] = ACTIONS(1286), - [aux_sym_cmd_identifier_token25] = ACTIONS(1286), - [aux_sym_cmd_identifier_token26] = ACTIONS(1286), - [aux_sym_cmd_identifier_token27] = ACTIONS(1286), - [aux_sym_cmd_identifier_token28] = ACTIONS(1286), - [aux_sym_cmd_identifier_token29] = ACTIONS(1286), - [aux_sym_cmd_identifier_token30] = ACTIONS(1286), - [aux_sym_cmd_identifier_token31] = ACTIONS(1286), - [aux_sym_cmd_identifier_token32] = ACTIONS(1286), - [aux_sym_cmd_identifier_token33] = ACTIONS(1286), - [aux_sym_cmd_identifier_token34] = ACTIONS(1284), - [aux_sym_cmd_identifier_token35] = ACTIONS(1286), - [aux_sym_cmd_identifier_token36] = ACTIONS(1286), - [aux_sym_cmd_identifier_token37] = ACTIONS(1286), - [aux_sym_cmd_identifier_token38] = ACTIONS(1284), - [aux_sym_cmd_identifier_token39] = ACTIONS(1286), - [aux_sym_cmd_identifier_token40] = ACTIONS(1286), - [sym__newline] = ACTIONS(1603), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym_PIPE] = ACTIONS(1286), - [anon_sym_AT] = ACTIONS(1286), - [anon_sym_def] = ACTIONS(1284), - [anon_sym_export_DASHenv] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym_module] = ACTIONS(1284), - [anon_sym_use] = ACTIONS(1284), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1284), - [anon_sym_error] = ACTIONS(1284), - [anon_sym_DASH2] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_loop] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_do] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_DOT_DOT] = ACTIONS(1284), - [anon_sym_try] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_source] = ACTIONS(1284), - [anon_sym_source_DASHenv] = ACTIONS(1284), - [anon_sym_hide] = ACTIONS(1284), - [anon_sym_hide_DASHenv] = ACTIONS(1284), - [anon_sym_overlay] = ACTIONS(1284), - [anon_sym_where] = ACTIONS(1286), - [aux_sym_expr_unary_token1] = ACTIONS(1286), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1286), - [anon_sym_DOT_DOT_LT] = ACTIONS(1286), - [anon_sym_null] = ACTIONS(1284), - [anon_sym_true] = ACTIONS(1284), - [anon_sym_false] = ACTIONS(1284), - [aux_sym__val_number_decimal_token1] = ACTIONS(1284), - [aux_sym__val_number_decimal_token2] = ACTIONS(1286), - [aux_sym__val_number_decimal_token3] = ACTIONS(1286), - [aux_sym__val_number_decimal_token4] = ACTIONS(1286), - [aux_sym__val_number_token1] = ACTIONS(1286), - [aux_sym__val_number_token2] = ACTIONS(1286), - [aux_sym__val_number_token3] = ACTIONS(1286), - [aux_sym__val_number_token4] = ACTIONS(1284), - [aux_sym__val_number_token5] = ACTIONS(1284), - [aux_sym__val_number_token6] = ACTIONS(1284), - [anon_sym_0b] = ACTIONS(1284), - [anon_sym_0o] = ACTIONS(1284), - [anon_sym_0x] = ACTIONS(1284), - [sym_val_date] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1286), - [sym__str_back_ticks] = ACTIONS(1286), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1286), - [aux_sym_env_var_token1] = ACTIONS(1284), - [anon_sym_CARET] = ACTIONS(1286), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1286), - }, - [279] = { - [sym__expr_parenthesized_immediate] = STATE(527), - [sym__immediate_decimal] = STATE(528), - [sym_val_variable] = STATE(527), - [sym_comment] = STATE(279), - [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(1482), - [aux_sym_cmd_identifier_token3] = ACTIONS(1482), - [aux_sym_cmd_identifier_token4] = ACTIONS(1482), - [aux_sym_cmd_identifier_token5] = ACTIONS(1482), - [aux_sym_cmd_identifier_token6] = ACTIONS(1482), - [aux_sym_cmd_identifier_token7] = ACTIONS(1482), - [aux_sym_cmd_identifier_token8] = ACTIONS(1472), - [aux_sym_cmd_identifier_token9] = ACTIONS(1472), - [aux_sym_cmd_identifier_token10] = ACTIONS(1482), - [aux_sym_cmd_identifier_token11] = ACTIONS(1482), - [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(1482), - [aux_sym_cmd_identifier_token17] = ACTIONS(1482), - [aux_sym_cmd_identifier_token18] = ACTIONS(1482), - [aux_sym_cmd_identifier_token19] = ACTIONS(1482), - [aux_sym_cmd_identifier_token20] = ACTIONS(1482), - [aux_sym_cmd_identifier_token21] = ACTIONS(1482), - [aux_sym_cmd_identifier_token22] = ACTIONS(1482), - [aux_sym_cmd_identifier_token23] = ACTIONS(1482), - [aux_sym_cmd_identifier_token24] = ACTIONS(1482), - [aux_sym_cmd_identifier_token25] = ACTIONS(1482), - [aux_sym_cmd_identifier_token26] = ACTIONS(1482), - [aux_sym_cmd_identifier_token27] = ACTIONS(1482), - [aux_sym_cmd_identifier_token28] = ACTIONS(1482), - [aux_sym_cmd_identifier_token29] = ACTIONS(1482), - [aux_sym_cmd_identifier_token30] = ACTIONS(1482), - [aux_sym_cmd_identifier_token31] = ACTIONS(1482), - [aux_sym_cmd_identifier_token32] = ACTIONS(1482), - [aux_sym_cmd_identifier_token33] = ACTIONS(1482), - [aux_sym_cmd_identifier_token34] = ACTIONS(1472), - [aux_sym_cmd_identifier_token35] = ACTIONS(1482), - [aux_sym_cmd_identifier_token36] = ACTIONS(1482), - [aux_sym_cmd_identifier_token37] = ACTIONS(1482), - [aux_sym_cmd_identifier_token38] = ACTIONS(1472), - [aux_sym_cmd_identifier_token39] = ACTIONS(1482), - [aux_sym_cmd_identifier_token40] = ACTIONS(1482), - [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_LPAREN] = ACTIONS(1472), - [anon_sym_COMMA] = ACTIONS(1482), - [anon_sym_DOLLAR] = ACTIONS(1500), - [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_in2] = ACTIONS(1472), - [anon_sym_loop] = ACTIONS(1472), - [anon_sym_make] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_else] = ACTIONS(1472), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1482), - [anon_sym_try] = ACTIONS(1472), - [anon_sym_catch] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_source] = ACTIONS(1472), - [anon_sym_source_DASHenv] = ACTIONS(1472), - [anon_sym_hide] = ACTIONS(1472), - [anon_sym_hide_DASHenv] = ACTIONS(1472), - [anon_sym_overlay] = ACTIONS(1472), - [anon_sym_as] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(1502), - [anon_sym_PLUS2] = ACTIONS(1472), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1482), - [anon_sym_DOT] = ACTIONS(1606), - [aux_sym__immediate_decimal_token1] = ACTIONS(1608), - [aux_sym__immediate_decimal_token3] = ACTIONS(1610), - [aux_sym__immediate_decimal_token4] = ACTIONS(1612), - [aux_sym__immediate_decimal_token5] = ACTIONS(1614), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1482), - [aux_sym__val_number_decimal_token1] = ACTIONS(1472), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1482), - [aux_sym__val_number_token2] = ACTIONS(1482), - [aux_sym__val_number_token3] = ACTIONS(1482), - [aux_sym__val_number_token4] = ACTIONS(1472), - [aux_sym__val_number_token5] = ACTIONS(1472), - [aux_sym__val_number_token6] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym__str_single_quotes] = ACTIONS(1482), - [sym__str_back_ticks] = ACTIONS(1482), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1482), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1482), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1482), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1482), - }, - [280] = { - [sym_comment] = STATE(280), - [aux_sym__block_body_repeat1] = STATE(248), - [ts_builtin_sym_end] = ACTIONS(1520), - [anon_sym_export] = ACTIONS(1514), - [anon_sym_alias] = ACTIONS(1514), - [anon_sym_let] = ACTIONS(1514), - [anon_sym_let_DASHenv] = ACTIONS(1514), - [anon_sym_mut] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [aux_sym_cmd_identifier_token1] = ACTIONS(1514), - [aux_sym_cmd_identifier_token2] = ACTIONS(1516), - [aux_sym_cmd_identifier_token3] = ACTIONS(1516), - [aux_sym_cmd_identifier_token4] = ACTIONS(1516), - [aux_sym_cmd_identifier_token5] = ACTIONS(1516), - [aux_sym_cmd_identifier_token6] = ACTIONS(1516), - [aux_sym_cmd_identifier_token7] = ACTIONS(1516), - [aux_sym_cmd_identifier_token8] = ACTIONS(1514), - [aux_sym_cmd_identifier_token9] = ACTIONS(1514), - [aux_sym_cmd_identifier_token10] = ACTIONS(1516), - [aux_sym_cmd_identifier_token11] = ACTIONS(1516), - [aux_sym_cmd_identifier_token12] = ACTIONS(1514), - [aux_sym_cmd_identifier_token13] = ACTIONS(1514), - [aux_sym_cmd_identifier_token14] = ACTIONS(1514), - [aux_sym_cmd_identifier_token15] = ACTIONS(1514), - [aux_sym_cmd_identifier_token16] = ACTIONS(1516), - [aux_sym_cmd_identifier_token17] = ACTIONS(1516), - [aux_sym_cmd_identifier_token18] = ACTIONS(1516), - [aux_sym_cmd_identifier_token19] = ACTIONS(1516), - [aux_sym_cmd_identifier_token20] = ACTIONS(1516), - [aux_sym_cmd_identifier_token21] = ACTIONS(1516), - [aux_sym_cmd_identifier_token22] = ACTIONS(1516), - [aux_sym_cmd_identifier_token23] = ACTIONS(1516), - [aux_sym_cmd_identifier_token24] = ACTIONS(1516), - [aux_sym_cmd_identifier_token25] = ACTIONS(1516), - [aux_sym_cmd_identifier_token26] = ACTIONS(1516), - [aux_sym_cmd_identifier_token27] = ACTIONS(1516), - [aux_sym_cmd_identifier_token28] = ACTIONS(1516), - [aux_sym_cmd_identifier_token29] = ACTIONS(1516), - [aux_sym_cmd_identifier_token30] = ACTIONS(1516), - [aux_sym_cmd_identifier_token31] = ACTIONS(1516), - [aux_sym_cmd_identifier_token32] = ACTIONS(1516), - [aux_sym_cmd_identifier_token33] = ACTIONS(1516), - [aux_sym_cmd_identifier_token34] = ACTIONS(1514), - [aux_sym_cmd_identifier_token35] = ACTIONS(1516), - [aux_sym_cmd_identifier_token36] = ACTIONS(1516), - [aux_sym_cmd_identifier_token37] = ACTIONS(1516), - [aux_sym_cmd_identifier_token38] = ACTIONS(1514), - [aux_sym_cmd_identifier_token39] = ACTIONS(1516), - [aux_sym_cmd_identifier_token40] = ACTIONS(1516), - [sym__newline] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(1516), - [anon_sym_def] = ACTIONS(1514), - [anon_sym_export_DASHenv] = ACTIONS(1514), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym_module] = ACTIONS(1514), - [anon_sym_use] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_LPAREN] = ACTIONS(1516), - [anon_sym_DOLLAR] = ACTIONS(1514), - [anon_sym_error] = ACTIONS(1514), - [anon_sym_DASH2] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_loop] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_do] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_match] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_DOT_DOT] = ACTIONS(1514), - [anon_sym_try] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_source] = ACTIONS(1514), - [anon_sym_source_DASHenv] = ACTIONS(1514), - [anon_sym_hide] = ACTIONS(1514), - [anon_sym_hide_DASHenv] = ACTIONS(1514), - [anon_sym_overlay] = ACTIONS(1514), - [anon_sym_where] = ACTIONS(1516), - [aux_sym_expr_unary_token1] = ACTIONS(1516), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1516), - [anon_sym_DOT_DOT_LT] = ACTIONS(1516), - [anon_sym_null] = ACTIONS(1514), - [anon_sym_true] = ACTIONS(1514), - [anon_sym_false] = ACTIONS(1514), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1516), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), - [aux_sym__val_number_token1] = ACTIONS(1516), - [aux_sym__val_number_token2] = ACTIONS(1516), - [aux_sym__val_number_token3] = ACTIONS(1516), - [aux_sym__val_number_token4] = ACTIONS(1514), - [aux_sym__val_number_token5] = ACTIONS(1514), - [aux_sym__val_number_token6] = ACTIONS(1514), - [anon_sym_0b] = ACTIONS(1514), - [anon_sym_0o] = ACTIONS(1514), - [anon_sym_0x] = ACTIONS(1514), - [sym_val_date] = ACTIONS(1516), - [anon_sym_DQUOTE] = ACTIONS(1516), - [sym__str_single_quotes] = ACTIONS(1516), - [sym__str_back_ticks] = ACTIONS(1516), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1516), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1516), - [aux_sym_env_var_token1] = ACTIONS(1514), - [anon_sym_CARET] = ACTIONS(1516), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1516), - }, - [281] = { - [sym_comment] = STATE(281), - [aux_sym_shebang_repeat1] = STATE(7165), - [aux_sym__parenthesized_body_repeat1] = STATE(281), - [anon_sym_export] = ACTIONS(1616), - [anon_sym_alias] = ACTIONS(1616), - [anon_sym_let] = ACTIONS(1616), - [anon_sym_let_DASHenv] = ACTIONS(1616), - [anon_sym_mut] = ACTIONS(1616), - [anon_sym_const] = ACTIONS(1616), - [aux_sym_cmd_identifier_token1] = ACTIONS(1616), - [aux_sym_cmd_identifier_token2] = ACTIONS(1618), - [aux_sym_cmd_identifier_token3] = ACTIONS(1618), - [aux_sym_cmd_identifier_token4] = ACTIONS(1618), - [aux_sym_cmd_identifier_token5] = ACTIONS(1618), - [aux_sym_cmd_identifier_token6] = ACTIONS(1618), - [aux_sym_cmd_identifier_token7] = ACTIONS(1618), - [aux_sym_cmd_identifier_token8] = ACTIONS(1616), - [aux_sym_cmd_identifier_token9] = ACTIONS(1616), - [aux_sym_cmd_identifier_token10] = ACTIONS(1618), - [aux_sym_cmd_identifier_token11] = ACTIONS(1618), - [aux_sym_cmd_identifier_token12] = ACTIONS(1616), - [aux_sym_cmd_identifier_token13] = ACTIONS(1616), - [aux_sym_cmd_identifier_token14] = ACTIONS(1616), - [aux_sym_cmd_identifier_token15] = ACTIONS(1616), - [aux_sym_cmd_identifier_token16] = ACTIONS(1618), - [aux_sym_cmd_identifier_token17] = ACTIONS(1618), - [aux_sym_cmd_identifier_token18] = ACTIONS(1618), - [aux_sym_cmd_identifier_token19] = ACTIONS(1618), - [aux_sym_cmd_identifier_token20] = ACTIONS(1618), - [aux_sym_cmd_identifier_token21] = ACTIONS(1618), - [aux_sym_cmd_identifier_token22] = ACTIONS(1618), - [aux_sym_cmd_identifier_token23] = ACTIONS(1618), - [aux_sym_cmd_identifier_token24] = ACTIONS(1618), - [aux_sym_cmd_identifier_token25] = ACTIONS(1618), - [aux_sym_cmd_identifier_token26] = ACTIONS(1618), - [aux_sym_cmd_identifier_token27] = ACTIONS(1618), - [aux_sym_cmd_identifier_token28] = ACTIONS(1618), - [aux_sym_cmd_identifier_token29] = ACTIONS(1618), - [aux_sym_cmd_identifier_token30] = ACTIONS(1618), - [aux_sym_cmd_identifier_token31] = ACTIONS(1618), - [aux_sym_cmd_identifier_token32] = ACTIONS(1618), - [aux_sym_cmd_identifier_token33] = ACTIONS(1618), - [aux_sym_cmd_identifier_token34] = ACTIONS(1616), - [aux_sym_cmd_identifier_token35] = ACTIONS(1618), - [aux_sym_cmd_identifier_token36] = ACTIONS(1618), - [aux_sym_cmd_identifier_token37] = ACTIONS(1618), - [aux_sym_cmd_identifier_token38] = ACTIONS(1616), - [aux_sym_cmd_identifier_token39] = ACTIONS(1618), - [aux_sym_cmd_identifier_token40] = ACTIONS(1618), - [sym__newline] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_def] = ACTIONS(1616), - [anon_sym_export_DASHenv] = ACTIONS(1616), - [anon_sym_extern] = ACTIONS(1616), - [anon_sym_module] = ACTIONS(1616), - [anon_sym_use] = ACTIONS(1616), - [anon_sym_LBRACK] = ACTIONS(1618), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_DOLLAR] = ACTIONS(1616), - [anon_sym_error] = ACTIONS(1616), - [anon_sym_DASH2] = ACTIONS(1616), - [anon_sym_break] = ACTIONS(1616), - [anon_sym_continue] = ACTIONS(1616), - [anon_sym_for] = ACTIONS(1616), - [anon_sym_loop] = ACTIONS(1616), - [anon_sym_while] = ACTIONS(1616), - [anon_sym_do] = ACTIONS(1616), - [anon_sym_if] = ACTIONS(1616), - [anon_sym_match] = ACTIONS(1616), - [anon_sym_LBRACE] = ACTIONS(1618), - [anon_sym_DOT_DOT] = ACTIONS(1616), - [anon_sym_try] = ACTIONS(1616), - [anon_sym_return] = ACTIONS(1616), - [anon_sym_source] = ACTIONS(1616), - [anon_sym_source_DASHenv] = ACTIONS(1616), - [anon_sym_hide] = ACTIONS(1616), - [anon_sym_hide_DASHenv] = ACTIONS(1616), - [anon_sym_overlay] = ACTIONS(1616), - [anon_sym_where] = ACTIONS(1618), - [aux_sym_expr_unary_token1] = ACTIONS(1618), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1618), - [anon_sym_DOT_DOT_LT] = ACTIONS(1618), - [anon_sym_null] = ACTIONS(1616), - [anon_sym_true] = ACTIONS(1616), - [anon_sym_false] = ACTIONS(1616), - [aux_sym__val_number_decimal_token1] = ACTIONS(1616), - [aux_sym__val_number_decimal_token2] = ACTIONS(1618), - [aux_sym__val_number_decimal_token3] = ACTIONS(1618), - [aux_sym__val_number_decimal_token4] = ACTIONS(1618), - [aux_sym__val_number_token1] = ACTIONS(1618), - [aux_sym__val_number_token2] = ACTIONS(1618), - [aux_sym__val_number_token3] = ACTIONS(1618), - [aux_sym__val_number_token4] = ACTIONS(1616), - [aux_sym__val_number_token5] = ACTIONS(1616), - [aux_sym__val_number_token6] = ACTIONS(1616), - [anon_sym_0b] = ACTIONS(1616), - [anon_sym_0o] = ACTIONS(1616), - [anon_sym_0x] = ACTIONS(1616), - [sym_val_date] = ACTIONS(1618), - [anon_sym_DQUOTE] = ACTIONS(1618), - [sym__str_single_quotes] = ACTIONS(1618), - [sym__str_back_ticks] = ACTIONS(1618), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1618), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1618), - [aux_sym_env_var_token1] = ACTIONS(1616), - [anon_sym_CARET] = ACTIONS(1618), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1618), - }, - [282] = { - [sym_comment] = STATE(282), - [aux_sym__block_body_repeat1] = STATE(248), - [ts_builtin_sym_end] = ACTIONS(1518), - [anon_sym_export] = ACTIONS(1514), - [anon_sym_alias] = ACTIONS(1514), - [anon_sym_let] = ACTIONS(1514), - [anon_sym_let_DASHenv] = ACTIONS(1514), - [anon_sym_mut] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [aux_sym_cmd_identifier_token1] = ACTIONS(1514), - [aux_sym_cmd_identifier_token2] = ACTIONS(1516), - [aux_sym_cmd_identifier_token3] = ACTIONS(1516), - [aux_sym_cmd_identifier_token4] = ACTIONS(1516), - [aux_sym_cmd_identifier_token5] = ACTIONS(1516), - [aux_sym_cmd_identifier_token6] = ACTIONS(1516), - [aux_sym_cmd_identifier_token7] = ACTIONS(1516), - [aux_sym_cmd_identifier_token8] = ACTIONS(1514), - [aux_sym_cmd_identifier_token9] = ACTIONS(1514), - [aux_sym_cmd_identifier_token10] = ACTIONS(1516), - [aux_sym_cmd_identifier_token11] = ACTIONS(1516), - [aux_sym_cmd_identifier_token12] = ACTIONS(1514), - [aux_sym_cmd_identifier_token13] = ACTIONS(1514), - [aux_sym_cmd_identifier_token14] = ACTIONS(1514), - [aux_sym_cmd_identifier_token15] = ACTIONS(1514), - [aux_sym_cmd_identifier_token16] = ACTIONS(1516), - [aux_sym_cmd_identifier_token17] = ACTIONS(1516), - [aux_sym_cmd_identifier_token18] = ACTIONS(1516), - [aux_sym_cmd_identifier_token19] = ACTIONS(1516), - [aux_sym_cmd_identifier_token20] = ACTIONS(1516), - [aux_sym_cmd_identifier_token21] = ACTIONS(1516), - [aux_sym_cmd_identifier_token22] = ACTIONS(1516), - [aux_sym_cmd_identifier_token23] = ACTIONS(1516), - [aux_sym_cmd_identifier_token24] = ACTIONS(1516), - [aux_sym_cmd_identifier_token25] = ACTIONS(1516), - [aux_sym_cmd_identifier_token26] = ACTIONS(1516), - [aux_sym_cmd_identifier_token27] = ACTIONS(1516), - [aux_sym_cmd_identifier_token28] = ACTIONS(1516), - [aux_sym_cmd_identifier_token29] = ACTIONS(1516), - [aux_sym_cmd_identifier_token30] = ACTIONS(1516), - [aux_sym_cmd_identifier_token31] = ACTIONS(1516), - [aux_sym_cmd_identifier_token32] = ACTIONS(1516), - [aux_sym_cmd_identifier_token33] = ACTIONS(1516), - [aux_sym_cmd_identifier_token34] = ACTIONS(1514), - [aux_sym_cmd_identifier_token35] = ACTIONS(1516), - [aux_sym_cmd_identifier_token36] = ACTIONS(1516), - [aux_sym_cmd_identifier_token37] = ACTIONS(1516), - [aux_sym_cmd_identifier_token38] = ACTIONS(1514), - [aux_sym_cmd_identifier_token39] = ACTIONS(1516), - [aux_sym_cmd_identifier_token40] = ACTIONS(1516), - [sym__newline] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(1516), - [anon_sym_def] = ACTIONS(1514), - [anon_sym_export_DASHenv] = ACTIONS(1514), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym_module] = ACTIONS(1514), - [anon_sym_use] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_LPAREN] = ACTIONS(1516), - [anon_sym_DOLLAR] = ACTIONS(1514), - [anon_sym_error] = ACTIONS(1514), - [anon_sym_DASH2] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_loop] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_do] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_match] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_DOT_DOT] = ACTIONS(1514), - [anon_sym_try] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_source] = ACTIONS(1514), - [anon_sym_source_DASHenv] = ACTIONS(1514), - [anon_sym_hide] = ACTIONS(1514), - [anon_sym_hide_DASHenv] = ACTIONS(1514), - [anon_sym_overlay] = ACTIONS(1514), - [anon_sym_where] = ACTIONS(1516), - [aux_sym_expr_unary_token1] = ACTIONS(1516), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1516), - [anon_sym_DOT_DOT_LT] = ACTIONS(1516), - [anon_sym_null] = ACTIONS(1514), - [anon_sym_true] = ACTIONS(1514), - [anon_sym_false] = ACTIONS(1514), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1516), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), - [aux_sym__val_number_token1] = ACTIONS(1516), - [aux_sym__val_number_token2] = ACTIONS(1516), - [aux_sym__val_number_token3] = ACTIONS(1516), - [aux_sym__val_number_token4] = ACTIONS(1514), - [aux_sym__val_number_token5] = ACTIONS(1514), - [aux_sym__val_number_token6] = ACTIONS(1514), - [anon_sym_0b] = ACTIONS(1514), - [anon_sym_0o] = ACTIONS(1514), - [anon_sym_0x] = ACTIONS(1514), - [sym_val_date] = ACTIONS(1516), - [anon_sym_DQUOTE] = ACTIONS(1516), - [sym__str_single_quotes] = ACTIONS(1516), - [sym__str_back_ticks] = ACTIONS(1516), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1516), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1516), - [aux_sym_env_var_token1] = ACTIONS(1514), - [anon_sym_CARET] = ACTIONS(1516), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1516), - }, - [283] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(4988), - [sym_block] = STATE(4994), - [sym__expression_parenthesized] = STATE(4994), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1149), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(4994), - [sym_comment] = STATE(283), - [aux_sym_shebang_repeat1] = STATE(284), + [284] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4885), + [sym_block] = STATE(4886), + [sym__expression_parenthesized] = STATE(4886), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1109), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4886), + [sym_comment] = STATE(284), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -106853,10 +105850,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1626), - [aux_sym__val_number_decimal_token2] = ACTIONS(1628), - [aux_sym__val_number_decimal_token3] = ACTIONS(1630), - [aux_sym__val_number_decimal_token4] = ACTIONS(1632), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1603), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -106876,40 +105873,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [284] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5121), - [sym_block] = STATE(5124), - [sym__expression_parenthesized] = STATE(5124), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1149), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5124), - [sym_comment] = STATE(284), - [aux_sym_shebang_repeat1] = STATE(1202), + [285] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4885), + [sym_block] = STATE(4886), + [sym__expression_parenthesized] = STATE(4886), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1109), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4886), + [sym_comment] = STATE(285), + [aux_sym_shebang_repeat1] = STATE(290), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -106964,10 +105961,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1626), - [aux_sym__val_number_decimal_token2] = ACTIONS(1628), - [aux_sym__val_number_decimal_token3] = ACTIONS(1630), - [aux_sym__val_number_decimal_token4] = ACTIONS(1632), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1603), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -106987,40 +105984,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [285] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5121), - [sym_block] = STATE(5124), - [sym__expression_parenthesized] = STATE(5124), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1149), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5124), - [sym_comment] = STATE(285), - [aux_sym_shebang_repeat1] = STATE(289), + [286] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4888), + [sym_block] = STATE(4876), + [sym__expression_parenthesized] = STATE(4876), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1109), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4876), + [sym_comment] = STATE(286), + [aux_sym_shebang_repeat1] = STATE(292), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -107075,10 +106072,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1626), - [aux_sym__val_number_decimal_token2] = ACTIONS(1628), - [aux_sym__val_number_decimal_token3] = ACTIONS(1630), - [aux_sym__val_number_decimal_token4] = ACTIONS(1632), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1603), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -107098,40 +106095,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [286] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(4999), - [sym_block] = STATE(5003), - [sym__expression_parenthesized] = STATE(5003), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1149), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5003), - [sym_comment] = STATE(286), - [aux_sym_shebang_repeat1] = STATE(291), + [287] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4766), + [sym_block] = STATE(4879), + [sym__expression_parenthesized] = STATE(4879), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1109), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4879), + [sym_comment] = STATE(287), + [aux_sym_shebang_repeat1] = STATE(294), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -107186,10 +106183,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1626), - [aux_sym__val_number_decimal_token2] = ACTIONS(1628), - [aux_sym__val_number_decimal_token3] = ACTIONS(1630), - [aux_sym__val_number_decimal_token4] = ACTIONS(1632), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1603), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -107209,40 +106206,262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [287] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5054), - [sym_block] = STATE(5020), - [sym__expression_parenthesized] = STATE(5020), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1149), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5020), - [sym_comment] = STATE(287), - [aux_sym_shebang_repeat1] = STATE(293), + [288] = { + [sym_comment] = STATE(288), + [aux_sym__block_body_repeat1] = STATE(288), + [ts_builtin_sym_end] = ACTIONS(1515), + [anon_sym_export] = ACTIONS(1513), + [anon_sym_alias] = ACTIONS(1513), + [anon_sym_let] = ACTIONS(1513), + [anon_sym_let_DASHenv] = ACTIONS(1513), + [anon_sym_mut] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [aux_sym_cmd_identifier_token1] = ACTIONS(1513), + [aux_sym_cmd_identifier_token2] = ACTIONS(1515), + [aux_sym_cmd_identifier_token3] = ACTIONS(1515), + [aux_sym_cmd_identifier_token4] = ACTIONS(1515), + [aux_sym_cmd_identifier_token5] = ACTIONS(1515), + [aux_sym_cmd_identifier_token6] = ACTIONS(1515), + [aux_sym_cmd_identifier_token7] = ACTIONS(1515), + [aux_sym_cmd_identifier_token8] = ACTIONS(1513), + [aux_sym_cmd_identifier_token9] = ACTIONS(1513), + [aux_sym_cmd_identifier_token10] = ACTIONS(1515), + [aux_sym_cmd_identifier_token11] = ACTIONS(1515), + [aux_sym_cmd_identifier_token12] = ACTIONS(1513), + [aux_sym_cmd_identifier_token13] = ACTIONS(1513), + [aux_sym_cmd_identifier_token14] = ACTIONS(1513), + [aux_sym_cmd_identifier_token15] = ACTIONS(1513), + [aux_sym_cmd_identifier_token16] = ACTIONS(1515), + [aux_sym_cmd_identifier_token17] = ACTIONS(1515), + [aux_sym_cmd_identifier_token18] = ACTIONS(1515), + [aux_sym_cmd_identifier_token19] = ACTIONS(1515), + [aux_sym_cmd_identifier_token20] = ACTIONS(1515), + [aux_sym_cmd_identifier_token21] = ACTIONS(1515), + [aux_sym_cmd_identifier_token22] = ACTIONS(1515), + [aux_sym_cmd_identifier_token23] = ACTIONS(1515), + [aux_sym_cmd_identifier_token24] = ACTIONS(1515), + [aux_sym_cmd_identifier_token25] = ACTIONS(1515), + [aux_sym_cmd_identifier_token26] = ACTIONS(1515), + [aux_sym_cmd_identifier_token27] = ACTIONS(1515), + [aux_sym_cmd_identifier_token28] = ACTIONS(1515), + [aux_sym_cmd_identifier_token29] = ACTIONS(1515), + [aux_sym_cmd_identifier_token30] = ACTIONS(1515), + [aux_sym_cmd_identifier_token31] = ACTIONS(1515), + [aux_sym_cmd_identifier_token32] = ACTIONS(1515), + [aux_sym_cmd_identifier_token33] = ACTIONS(1515), + [aux_sym_cmd_identifier_token34] = ACTIONS(1513), + [aux_sym_cmd_identifier_token35] = ACTIONS(1515), + [aux_sym_cmd_identifier_token36] = ACTIONS(1515), + [aux_sym_cmd_identifier_token37] = ACTIONS(1515), + [aux_sym_cmd_identifier_token38] = ACTIONS(1513), + [aux_sym_cmd_identifier_token39] = ACTIONS(1515), + [aux_sym_cmd_identifier_token40] = ACTIONS(1515), + [sym__newline] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1613), + [anon_sym_AT] = ACTIONS(1515), + [anon_sym_def] = ACTIONS(1513), + [anon_sym_export_DASHenv] = ACTIONS(1513), + [anon_sym_extern] = ACTIONS(1513), + [anon_sym_module] = ACTIONS(1513), + [anon_sym_use] = ACTIONS(1513), + [anon_sym_LBRACK] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_DOLLAR] = ACTIONS(1513), + [anon_sym_error] = ACTIONS(1513), + [anon_sym_DASH2] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_loop] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_match] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1515), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_try] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_source] = ACTIONS(1513), + [anon_sym_source_DASHenv] = ACTIONS(1513), + [anon_sym_hide] = ACTIONS(1513), + [anon_sym_hide_DASHenv] = ACTIONS(1513), + [anon_sym_overlay] = ACTIONS(1513), + [anon_sym_where] = ACTIONS(1515), + [aux_sym_expr_unary_token1] = ACTIONS(1515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT] = ACTIONS(1515), + [anon_sym_null] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [aux_sym__val_number_decimal_token1] = ACTIONS(1513), + [aux_sym__val_number_decimal_token2] = ACTIONS(1515), + [aux_sym__val_number_decimal_token3] = ACTIONS(1515), + [aux_sym__val_number_decimal_token4] = ACTIONS(1515), + [aux_sym__val_number_token1] = ACTIONS(1515), + [aux_sym__val_number_token2] = ACTIONS(1515), + [aux_sym__val_number_token3] = ACTIONS(1515), + [aux_sym__val_number_token4] = ACTIONS(1513), + [aux_sym__val_number_token5] = ACTIONS(1513), + [aux_sym__val_number_token6] = ACTIONS(1513), + [anon_sym_0b] = ACTIONS(1513), + [anon_sym_0o] = ACTIONS(1513), + [anon_sym_0x] = ACTIONS(1513), + [sym_val_date] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), + [sym__str_single_quotes] = ACTIONS(1515), + [sym__str_back_ticks] = ACTIONS(1515), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1515), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1515), + [aux_sym_env_var_token1] = ACTIONS(1513), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1515), + }, + [289] = { + [sym__expr_parenthesized_immediate] = STATE(6956), + [sym_comment] = STATE(289), + [anon_sym_export] = ACTIONS(1616), + [anon_sym_alias] = ACTIONS(1616), + [anon_sym_let] = ACTIONS(1616), + [anon_sym_let_DASHenv] = ACTIONS(1616), + [anon_sym_mut] = ACTIONS(1616), + [anon_sym_const] = ACTIONS(1616), + [aux_sym_cmd_identifier_token1] = ACTIONS(1616), + [aux_sym_cmd_identifier_token2] = ACTIONS(1616), + [aux_sym_cmd_identifier_token3] = ACTIONS(1616), + [aux_sym_cmd_identifier_token4] = ACTIONS(1616), + [aux_sym_cmd_identifier_token5] = ACTIONS(1616), + [aux_sym_cmd_identifier_token6] = ACTIONS(1616), + [aux_sym_cmd_identifier_token7] = ACTIONS(1616), + [aux_sym_cmd_identifier_token8] = ACTIONS(1616), + [aux_sym_cmd_identifier_token9] = ACTIONS(1616), + [aux_sym_cmd_identifier_token10] = ACTIONS(1616), + [aux_sym_cmd_identifier_token11] = ACTIONS(1616), + [aux_sym_cmd_identifier_token12] = ACTIONS(1616), + [aux_sym_cmd_identifier_token13] = ACTIONS(1616), + [aux_sym_cmd_identifier_token14] = ACTIONS(1616), + [aux_sym_cmd_identifier_token15] = ACTIONS(1616), + [aux_sym_cmd_identifier_token16] = ACTIONS(1616), + [aux_sym_cmd_identifier_token17] = ACTIONS(1616), + [aux_sym_cmd_identifier_token18] = ACTIONS(1616), + [aux_sym_cmd_identifier_token19] = ACTIONS(1616), + [aux_sym_cmd_identifier_token20] = ACTIONS(1616), + [aux_sym_cmd_identifier_token21] = ACTIONS(1616), + [aux_sym_cmd_identifier_token22] = ACTIONS(1616), + [aux_sym_cmd_identifier_token23] = ACTIONS(1616), + [aux_sym_cmd_identifier_token24] = ACTIONS(1616), + [aux_sym_cmd_identifier_token25] = ACTIONS(1616), + [aux_sym_cmd_identifier_token26] = ACTIONS(1616), + [aux_sym_cmd_identifier_token27] = ACTIONS(1616), + [aux_sym_cmd_identifier_token28] = ACTIONS(1616), + [aux_sym_cmd_identifier_token29] = ACTIONS(1616), + [aux_sym_cmd_identifier_token30] = ACTIONS(1616), + [aux_sym_cmd_identifier_token31] = ACTIONS(1616), + [aux_sym_cmd_identifier_token32] = ACTIONS(1616), + [aux_sym_cmd_identifier_token33] = ACTIONS(1616), + [aux_sym_cmd_identifier_token34] = ACTIONS(1616), + [aux_sym_cmd_identifier_token35] = ACTIONS(1616), + [aux_sym_cmd_identifier_token36] = ACTIONS(1616), + [aux_sym_cmd_identifier_token37] = ACTIONS(1616), + [aux_sym_cmd_identifier_token38] = ACTIONS(1616), + [aux_sym_cmd_identifier_token39] = ACTIONS(1616), + [aux_sym_cmd_identifier_token40] = ACTIONS(1616), + [anon_sym_def] = ACTIONS(1616), + [anon_sym_export_DASHenv] = ACTIONS(1616), + [anon_sym_extern] = ACTIONS(1616), + [anon_sym_module] = ACTIONS(1616), + [anon_sym_use] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1616), + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_error] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_break] = ACTIONS(1616), + [anon_sym_continue] = ACTIONS(1616), + [anon_sym_for] = ACTIONS(1616), + [anon_sym_in2] = ACTIONS(1616), + [anon_sym_loop] = ACTIONS(1616), + [anon_sym_make] = ACTIONS(1616), + [anon_sym_while] = ACTIONS(1616), + [anon_sym_do] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_else] = ACTIONS(1616), + [anon_sym_match] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1616), + [anon_sym_try] = ACTIONS(1616), + [anon_sym_catch] = ACTIONS(1616), + [anon_sym_return] = ACTIONS(1616), + [anon_sym_source] = ACTIONS(1616), + [anon_sym_source_DASHenv] = ACTIONS(1616), + [anon_sym_hide] = ACTIONS(1616), + [anon_sym_hide_DASHenv] = ACTIONS(1616), + [anon_sym_overlay] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), + [anon_sym_LPAREN2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1616), + [anon_sym_DOT_DOT2] = ACTIONS(1620), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1622), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1622), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1616), + [aux_sym__val_number_decimal_token1] = ACTIONS(1616), + [aux_sym__val_number_decimal_token2] = ACTIONS(1616), + [aux_sym__val_number_decimal_token3] = ACTIONS(1616), + [aux_sym__val_number_decimal_token4] = ACTIONS(1616), + [aux_sym__val_number_token1] = ACTIONS(1616), + [aux_sym__val_number_token2] = ACTIONS(1616), + [aux_sym__val_number_token3] = ACTIONS(1616), + [aux_sym__val_number_token4] = ACTIONS(1616), + [aux_sym__val_number_token5] = ACTIONS(1616), + [aux_sym__val_number_token6] = ACTIONS(1616), + [sym_filesize_unit] = ACTIONS(1624), + [sym_duration_unit] = ACTIONS(1626), + [anon_sym_DQUOTE] = ACTIONS(1616), + [sym__str_single_quotes] = ACTIONS(1616), + [sym__str_back_ticks] = ACTIONS(1616), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1616), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1616), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1616), + [sym__entry_separator] = ACTIONS(1628), + [anon_sym_register] = ACTIONS(1616), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1630), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1628), + }, + [290] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4732), + [sym_block] = STATE(4733), + [sym__expression_parenthesized] = STATE(4733), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1109), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4733), + [sym_comment] = STATE(290), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -107297,10 +106516,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1626), - [aux_sym__val_number_decimal_token2] = ACTIONS(1628), - [aux_sym__val_number_decimal_token3] = ACTIONS(1630), - [aux_sym__val_number_decimal_token4] = ACTIONS(1632), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1603), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -107320,151 +106539,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [288] = { - [sym_comment] = STATE(288), - [ts_builtin_sym_end] = ACTIONS(1282), - [anon_sym_POUND_BANG] = ACTIONS(1278), - [anon_sym_export] = ACTIONS(1634), - [anon_sym_alias] = ACTIONS(1634), - [anon_sym_let] = ACTIONS(1634), - [anon_sym_let_DASHenv] = ACTIONS(1634), - [anon_sym_mut] = ACTIONS(1634), - [anon_sym_const] = ACTIONS(1634), - [aux_sym_cmd_identifier_token1] = ACTIONS(1634), - [aux_sym_cmd_identifier_token2] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1282), - [aux_sym_cmd_identifier_token4] = ACTIONS(1282), - [aux_sym_cmd_identifier_token5] = ACTIONS(1282), - [aux_sym_cmd_identifier_token6] = ACTIONS(1282), - [aux_sym_cmd_identifier_token7] = ACTIONS(1282), - [aux_sym_cmd_identifier_token8] = ACTIONS(1634), - [aux_sym_cmd_identifier_token9] = ACTIONS(1634), - [aux_sym_cmd_identifier_token10] = ACTIONS(1282), - [aux_sym_cmd_identifier_token11] = ACTIONS(1282), - [aux_sym_cmd_identifier_token12] = ACTIONS(1634), - [aux_sym_cmd_identifier_token13] = ACTIONS(1634), - [aux_sym_cmd_identifier_token14] = ACTIONS(1634), - [aux_sym_cmd_identifier_token15] = ACTIONS(1634), - [aux_sym_cmd_identifier_token16] = ACTIONS(1282), - [aux_sym_cmd_identifier_token17] = ACTIONS(1282), - [aux_sym_cmd_identifier_token18] = ACTIONS(1282), - [aux_sym_cmd_identifier_token19] = ACTIONS(1282), - [aux_sym_cmd_identifier_token20] = ACTIONS(1282), - [aux_sym_cmd_identifier_token21] = ACTIONS(1282), - [aux_sym_cmd_identifier_token22] = ACTIONS(1282), - [aux_sym_cmd_identifier_token23] = ACTIONS(1282), - [aux_sym_cmd_identifier_token24] = ACTIONS(1282), - [aux_sym_cmd_identifier_token25] = ACTIONS(1282), - [aux_sym_cmd_identifier_token26] = ACTIONS(1282), - [aux_sym_cmd_identifier_token27] = ACTIONS(1282), - [aux_sym_cmd_identifier_token28] = ACTIONS(1282), - [aux_sym_cmd_identifier_token29] = ACTIONS(1282), - [aux_sym_cmd_identifier_token30] = ACTIONS(1282), - [aux_sym_cmd_identifier_token31] = ACTIONS(1282), - [aux_sym_cmd_identifier_token32] = ACTIONS(1282), - [aux_sym_cmd_identifier_token33] = ACTIONS(1282), - [aux_sym_cmd_identifier_token34] = ACTIONS(1634), - [aux_sym_cmd_identifier_token35] = ACTIONS(1282), - [aux_sym_cmd_identifier_token36] = ACTIONS(1282), - [aux_sym_cmd_identifier_token37] = ACTIONS(1282), - [aux_sym_cmd_identifier_token38] = ACTIONS(1634), - [aux_sym_cmd_identifier_token39] = ACTIONS(1282), - [aux_sym_cmd_identifier_token40] = ACTIONS(1282), - [sym__newline] = ACTIONS(1275), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(1282), - [anon_sym_def] = ACTIONS(1634), - [anon_sym_export_DASHenv] = ACTIONS(1634), - [anon_sym_extern] = ACTIONS(1634), - [anon_sym_module] = ACTIONS(1634), - [anon_sym_use] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(1634), - [anon_sym_error] = ACTIONS(1634), - [anon_sym_DASH2] = ACTIONS(1634), - [anon_sym_break] = ACTIONS(1634), - [anon_sym_continue] = ACTIONS(1634), - [anon_sym_for] = ACTIONS(1634), - [anon_sym_loop] = ACTIONS(1634), - [anon_sym_while] = ACTIONS(1634), - [anon_sym_do] = ACTIONS(1634), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_match] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_DOT_DOT] = ACTIONS(1634), - [anon_sym_try] = ACTIONS(1634), - [anon_sym_return] = ACTIONS(1634), - [anon_sym_source] = ACTIONS(1634), - [anon_sym_source_DASHenv] = ACTIONS(1634), - [anon_sym_hide] = ACTIONS(1634), - [anon_sym_hide_DASHenv] = ACTIONS(1634), - [anon_sym_overlay] = ACTIONS(1634), - [anon_sym_where] = ACTIONS(1282), - [aux_sym_expr_unary_token1] = ACTIONS(1282), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1282), - [anon_sym_DOT_DOT_LT] = ACTIONS(1282), - [anon_sym_null] = ACTIONS(1634), - [anon_sym_true] = ACTIONS(1634), - [anon_sym_false] = ACTIONS(1634), - [aux_sym__val_number_decimal_token1] = ACTIONS(1634), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1282), - [aux_sym__val_number_decimal_token4] = ACTIONS(1282), - [aux_sym__val_number_token1] = ACTIONS(1282), - [aux_sym__val_number_token2] = ACTIONS(1282), - [aux_sym__val_number_token3] = ACTIONS(1282), - [aux_sym__val_number_token4] = ACTIONS(1634), - [aux_sym__val_number_token5] = ACTIONS(1634), - [aux_sym__val_number_token6] = ACTIONS(1634), - [anon_sym_0b] = ACTIONS(1634), - [anon_sym_0o] = ACTIONS(1634), - [anon_sym_0x] = ACTIONS(1634), - [sym_val_date] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym__str_single_quotes] = ACTIONS(1282), - [sym__str_back_ticks] = ACTIONS(1282), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1282), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1282), - [aux_sym_env_var_token1] = ACTIONS(1634), - [anon_sym_CARET] = ACTIONS(1282), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1282), - }, - [289] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5158), - [sym_block] = STATE(5080), - [sym__expression_parenthesized] = STATE(5080), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1149), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5080), - [sym_comment] = STATE(289), - [aux_sym_shebang_repeat1] = STATE(1202), + [291] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4732), + [sym_block] = STATE(4733), + [sym__expression_parenthesized] = STATE(4733), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1109), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4733), + [sym_comment] = STATE(291), + [aux_sym_shebang_repeat1] = STATE(297), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -107519,10 +106627,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1626), - [aux_sym__val_number_decimal_token2] = ACTIONS(1628), - [aux_sym__val_number_decimal_token3] = ACTIONS(1630), - [aux_sym__val_number_decimal_token4] = ACTIONS(1632), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1603), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -107542,40 +106650,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [290] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5158), - [sym_block] = STATE(5080), - [sym__expression_parenthesized] = STATE(5080), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1149), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5080), - [sym_comment] = STATE(290), - [aux_sym_shebang_repeat1] = STATE(296), + [292] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4734), + [sym_block] = STATE(4735), + [sym__expression_parenthesized] = STATE(4735), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1109), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4735), + [sym_comment] = STATE(292), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -107630,10 +106738,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1626), - [aux_sym__val_number_decimal_token2] = ACTIONS(1628), - [aux_sym__val_number_decimal_token3] = ACTIONS(1630), - [aux_sym__val_number_decimal_token4] = ACTIONS(1632), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1603), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -107653,40 +106761,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [291] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5150), - [sym_block] = STATE(5152), - [sym__expression_parenthesized] = STATE(5152), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1149), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5152), - [sym_comment] = STATE(291), - [aux_sym_shebang_repeat1] = STATE(1202), + [293] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4734), + [sym_block] = STATE(4735), + [sym__expression_parenthesized] = STATE(4735), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1109), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4735), + [sym_comment] = STATE(293), + [aux_sym_shebang_repeat1] = STATE(298), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -107741,10 +106849,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1626), - [aux_sym__val_number_decimal_token2] = ACTIONS(1628), - [aux_sym__val_number_decimal_token3] = ACTIONS(1630), - [aux_sym__val_number_decimal_token4] = ACTIONS(1632), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1603), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -107764,40 +106872,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [292] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5150), - [sym_block] = STATE(5152), - [sym__expression_parenthesized] = STATE(5152), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1149), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5152), - [sym_comment] = STATE(292), - [aux_sym_shebang_repeat1] = STATE(297), + [294] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4845), + [sym_block] = STATE(4856), + [sym__expression_parenthesized] = STATE(4856), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1109), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4856), + [sym_comment] = STATE(294), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -107852,10 +106960,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1626), - [aux_sym__val_number_decimal_token2] = ACTIONS(1628), - [aux_sym__val_number_decimal_token3] = ACTIONS(1630), - [aux_sym__val_number_decimal_token4] = ACTIONS(1632), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1603), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -107875,40 +106983,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [293] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5154), - [sym_block] = STATE(5155), - [sym__expression_parenthesized] = STATE(5155), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1149), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5155), - [sym_comment] = STATE(293), - [aux_sym_shebang_repeat1] = STATE(1202), + [295] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4845), + [sym_block] = STATE(4856), + [sym__expression_parenthesized] = STATE(4856), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1109), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4856), + [sym_comment] = STATE(295), + [aux_sym_shebang_repeat1] = STATE(300), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -107963,10 +107071,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1626), - [aux_sym__val_number_decimal_token2] = ACTIONS(1628), - [aux_sym__val_number_decimal_token3] = ACTIONS(1630), - [aux_sym__val_number_decimal_token4] = ACTIONS(1632), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1603), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -107986,40 +107094,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [294] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5154), - [sym_block] = STATE(5155), - [sym__expression_parenthesized] = STATE(5155), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1149), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5155), - [sym_comment] = STATE(294), - [aux_sym_shebang_repeat1] = STATE(299), + [296] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4862), + [sym_block] = STATE(4869), + [sym__expression_parenthesized] = STATE(4869), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1109), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4869), + [sym_comment] = STATE(296), + [aux_sym_shebang_repeat1] = STATE(302), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -108074,10 +107182,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1626), - [aux_sym__val_number_decimal_token2] = ACTIONS(1628), - [aux_sym__val_number_decimal_token3] = ACTIONS(1630), - [aux_sym__val_number_decimal_token4] = ACTIONS(1632), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1603), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -108097,40 +107205,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [295] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5122), - [sym_block] = STATE(4984), - [sym__expression_parenthesized] = STATE(4984), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1149), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(4984), - [sym_comment] = STATE(295), - [aux_sym_shebang_repeat1] = STATE(301), + [297] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4774), + [sym_block] = STATE(4790), + [sym__expression_parenthesized] = STATE(4790), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1109), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4790), + [sym_comment] = STATE(297), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -108185,10 +107293,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1626), - [aux_sym__val_number_decimal_token2] = ACTIONS(1628), - [aux_sym__val_number_decimal_token3] = ACTIONS(1630), - [aux_sym__val_number_decimal_token4] = ACTIONS(1632), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1603), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -108208,40 +107316,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [296] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5071), - [sym_block] = STATE(5112), - [sym__expression_parenthesized] = STATE(5112), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1149), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5112), - [sym_comment] = STATE(296), - [aux_sym_shebang_repeat1] = STATE(1202), + [298] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4791), + [sym_block] = STATE(4793), + [sym__expression_parenthesized] = STATE(4793), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1109), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4793), + [sym_comment] = STATE(298), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -108296,10 +107404,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1626), - [aux_sym__val_number_decimal_token2] = ACTIONS(1628), - [aux_sym__val_number_decimal_token3] = ACTIONS(1630), - [aux_sym__val_number_decimal_token4] = ACTIONS(1632), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1603), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -108319,40 +107427,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [297] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5114), - [sym_block] = STATE(5118), - [sym__expression_parenthesized] = STATE(5118), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1149), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5118), - [sym_comment] = STATE(297), - [aux_sym_shebang_repeat1] = STATE(1202), + [299] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4791), + [sym_block] = STATE(4793), + [sym__expression_parenthesized] = STATE(4793), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1109), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4793), + [sym_comment] = STATE(299), + [aux_sym_shebang_repeat1] = STATE(304), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -108407,10 +107515,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1626), - [aux_sym__val_number_decimal_token2] = ACTIONS(1628), - [aux_sym__val_number_decimal_token3] = ACTIONS(1630), - [aux_sym__val_number_decimal_token4] = ACTIONS(1632), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1603), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -108430,40 +107538,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [298] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5114), - [sym_block] = STATE(5118), - [sym__expression_parenthesized] = STATE(5118), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1149), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5118), - [sym_comment] = STATE(298), - [aux_sym_shebang_repeat1] = STATE(304), + [300] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4794), + [sym_block] = STATE(4889), + [sym__expression_parenthesized] = STATE(4889), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1109), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4889), + [sym_comment] = STATE(300), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -108518,10 +107626,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1626), - [aux_sym__val_number_decimal_token2] = ACTIONS(1628), - [aux_sym__val_number_decimal_token3] = ACTIONS(1630), - [aux_sym__val_number_decimal_token4] = ACTIONS(1632), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1603), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -108541,40 +107649,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [299] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5110), - [sym_block] = STATE(5139), - [sym__expression_parenthesized] = STATE(5139), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1149), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5139), - [sym_comment] = STATE(299), - [aux_sym_shebang_repeat1] = STATE(1202), + [301] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4794), + [sym_block] = STATE(4889), + [sym__expression_parenthesized] = STATE(4889), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1109), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4889), + [sym_comment] = STATE(301), + [aux_sym_shebang_repeat1] = STATE(305), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -108629,10 +107737,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1626), - [aux_sym__val_number_decimal_token2] = ACTIONS(1628), - [aux_sym__val_number_decimal_token3] = ACTIONS(1630), - [aux_sym__val_number_decimal_token4] = ACTIONS(1632), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1603), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -108652,40 +107760,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [300] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5110), - [sym_block] = STATE(5139), - [sym__expression_parenthesized] = STATE(5139), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1149), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5139), - [sym_comment] = STATE(300), - [aux_sym_shebang_repeat1] = STATE(305), + [302] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4807), + [sym_block] = STATE(4814), + [sym__expression_parenthesized] = STATE(4814), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1109), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4814), + [sym_comment] = STATE(302), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -108740,10 +107848,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1626), - [aux_sym__val_number_decimal_token2] = ACTIONS(1628), - [aux_sym__val_number_decimal_token3] = ACTIONS(1630), - [aux_sym__val_number_decimal_token4] = ACTIONS(1632), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1603), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -108763,40 +107871,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [301] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5075), - [sym_block] = STATE(4982), - [sym__expression_parenthesized] = STATE(4982), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1149), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(4982), - [sym_comment] = STATE(301), - [aux_sym_shebang_repeat1] = STATE(1202), + [303] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4807), + [sym_block] = STATE(4814), + [sym__expression_parenthesized] = STATE(4814), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1109), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4814), + [sym_comment] = STATE(303), + [aux_sym_shebang_repeat1] = STATE(306), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -108851,10 +107959,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1626), - [aux_sym__val_number_decimal_token2] = ACTIONS(1628), - [aux_sym__val_number_decimal_token3] = ACTIONS(1630), - [aux_sym__val_number_decimal_token4] = ACTIONS(1632), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1603), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -108874,151 +107982,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [302] = { - [sym__expr_parenthesized_immediate] = STATE(616), - [sym__immediate_decimal] = STATE(617), - [sym_val_variable] = STATE(616), - [sym_comment] = STATE(302), - [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(1472), - [aux_sym_cmd_identifier_token3] = ACTIONS(1472), - [aux_sym_cmd_identifier_token4] = ACTIONS(1472), - [aux_sym_cmd_identifier_token5] = ACTIONS(1472), - [aux_sym_cmd_identifier_token6] = ACTIONS(1472), - [aux_sym_cmd_identifier_token7] = ACTIONS(1472), - [aux_sym_cmd_identifier_token8] = ACTIONS(1472), - [aux_sym_cmd_identifier_token9] = ACTIONS(1472), - [aux_sym_cmd_identifier_token10] = ACTIONS(1472), - [aux_sym_cmd_identifier_token11] = ACTIONS(1472), - [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(1472), - [aux_sym_cmd_identifier_token17] = ACTIONS(1472), - [aux_sym_cmd_identifier_token18] = ACTIONS(1472), - [aux_sym_cmd_identifier_token19] = ACTIONS(1472), - [aux_sym_cmd_identifier_token20] = ACTIONS(1472), - [aux_sym_cmd_identifier_token21] = ACTIONS(1472), - [aux_sym_cmd_identifier_token22] = ACTIONS(1472), - [aux_sym_cmd_identifier_token23] = ACTIONS(1472), - [aux_sym_cmd_identifier_token24] = ACTIONS(1472), - [aux_sym_cmd_identifier_token25] = ACTIONS(1472), - [aux_sym_cmd_identifier_token26] = ACTIONS(1472), - [aux_sym_cmd_identifier_token27] = ACTIONS(1472), - [aux_sym_cmd_identifier_token28] = ACTIONS(1472), - [aux_sym_cmd_identifier_token29] = ACTIONS(1472), - [aux_sym_cmd_identifier_token30] = ACTIONS(1472), - [aux_sym_cmd_identifier_token31] = ACTIONS(1472), - [aux_sym_cmd_identifier_token32] = ACTIONS(1472), - [aux_sym_cmd_identifier_token33] = ACTIONS(1472), - [aux_sym_cmd_identifier_token34] = ACTIONS(1472), - [aux_sym_cmd_identifier_token35] = ACTIONS(1472), - [aux_sym_cmd_identifier_token36] = ACTIONS(1472), - [aux_sym_cmd_identifier_token37] = ACTIONS(1472), - [aux_sym_cmd_identifier_token38] = ACTIONS(1472), - [aux_sym_cmd_identifier_token39] = ACTIONS(1472), - [aux_sym_cmd_identifier_token40] = ACTIONS(1472), - [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_LPAREN] = ACTIONS(1472), - [anon_sym_COMMA] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(1449), - [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_in2] = ACTIONS(1472), - [anon_sym_loop] = ACTIONS(1472), - [anon_sym_make] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_else] = ACTIONS(1472), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_try] = ACTIONS(1472), - [anon_sym_catch] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_source] = ACTIONS(1472), - [anon_sym_source_DASHenv] = ACTIONS(1472), - [anon_sym_hide] = ACTIONS(1472), - [anon_sym_hide_DASHenv] = ACTIONS(1472), - [anon_sym_overlay] = ACTIONS(1472), - [anon_sym_as] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(1451), - [anon_sym_PLUS2] = ACTIONS(1472), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1472), - [aux_sym__immediate_decimal_token1] = ACTIONS(1546), - [aux_sym__immediate_decimal_token3] = ACTIONS(1546), - [aux_sym__immediate_decimal_token4] = ACTIONS(1548), - [aux_sym__immediate_decimal_token5] = ACTIONS(1550), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1472), - [aux_sym__val_number_decimal_token1] = ACTIONS(1472), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1472), - [aux_sym__val_number_token2] = ACTIONS(1472), - [aux_sym__val_number_token3] = ACTIONS(1472), - [aux_sym__val_number_token4] = ACTIONS(1472), - [aux_sym__val_number_token5] = ACTIONS(1472), - [aux_sym__val_number_token6] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1472), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1472), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1472), - [sym__entry_separator] = ACTIONS(1482), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1482), - }, - [303] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5075), - [sym_block] = STATE(4982), - [sym__expression_parenthesized] = STATE(4982), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1149), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(4982), - [sym_comment] = STATE(303), - [aux_sym_shebang_repeat1] = STATE(306), + [304] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4816), + [sym_block] = STATE(4832), + [sym__expression_parenthesized] = STATE(4832), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1109), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4832), + [sym_comment] = STATE(304), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -109073,10 +108070,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1626), - [aux_sym__val_number_decimal_token2] = ACTIONS(1628), - [aux_sym__val_number_decimal_token3] = ACTIONS(1630), - [aux_sym__val_number_decimal_token4] = ACTIONS(1632), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1603), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -109096,40 +108093,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [304] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5083), - [sym_block] = STATE(5086), - [sym__expression_parenthesized] = STATE(5086), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1149), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5086), - [sym_comment] = STATE(304), - [aux_sym_shebang_repeat1] = STATE(1202), + [305] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4833), + [sym_block] = STATE(4838), + [sym__expression_parenthesized] = STATE(4838), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1109), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4838), + [sym_comment] = STATE(305), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -109184,10 +108181,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1626), - [aux_sym__val_number_decimal_token2] = ACTIONS(1628), - [aux_sym__val_number_decimal_token3] = ACTIONS(1630), - [aux_sym__val_number_decimal_token4] = ACTIONS(1632), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1603), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -109207,40 +108204,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [305] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5087), - [sym_block] = STATE(5095), - [sym__expression_parenthesized] = STATE(5095), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1149), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5095), - [sym_comment] = STATE(305), - [aux_sym_shebang_repeat1] = STATE(1202), + [306] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4839), + [sym_block] = STATE(4843), + [sym__expression_parenthesized] = STATE(4843), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1109), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4843), + [sym_comment] = STATE(306), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -109295,10 +108292,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1626), - [aux_sym__val_number_decimal_token2] = ACTIONS(1628), - [aux_sym__val_number_decimal_token3] = ACTIONS(1630), - [aux_sym__val_number_decimal_token4] = ACTIONS(1632), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1603), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -109318,40 +108315,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [306] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5032), - [sym_block] = STATE(5085), - [sym__expression_parenthesized] = STATE(5085), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1149), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5085), - [sym_comment] = STATE(306), - [aux_sym_shebang_repeat1] = STATE(1202), + [307] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4839), + [sym_block] = STATE(4843), + [sym__expression_parenthesized] = STATE(4843), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1109), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4843), + [sym_comment] = STATE(307), + [aux_sym_shebang_repeat1] = STATE(308), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -109406,10 +108403,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1626), - [aux_sym__val_number_decimal_token2] = ACTIONS(1628), - [aux_sym__val_number_decimal_token3] = ACTIONS(1630), - [aux_sym__val_number_decimal_token4] = ACTIONS(1632), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1603), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -109429,40 +108426,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [307] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5032), - [sym_block] = STATE(5085), - [sym__expression_parenthesized] = STATE(5085), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1149), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5085), - [sym_comment] = STATE(307), - [aux_sym_shebang_repeat1] = STATE(309), + [308] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4850), + [sym_block] = STATE(4854), + [sym__expression_parenthesized] = STATE(4854), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1109), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4854), + [sym_comment] = STATE(308), + [aux_sym_shebang_repeat1] = STATE(1140), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -109517,10 +108514,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1626), - [aux_sym__val_number_decimal_token2] = ACTIONS(1628), - [aux_sym__val_number_decimal_token3] = ACTIONS(1630), - [aux_sym__val_number_decimal_token4] = ACTIONS(1632), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1603), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -109540,565 +108537,454 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [308] = { - [sym_comment] = STATE(308), - [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(1486), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [aux_sym_cmd_identifier_token6] = ACTIONS(1486), - [aux_sym_cmd_identifier_token7] = ACTIONS(1486), - [aux_sym_cmd_identifier_token8] = ACTIONS(1484), - [aux_sym_cmd_identifier_token9] = ACTIONS(1484), - [aux_sym_cmd_identifier_token10] = ACTIONS(1486), - [aux_sym_cmd_identifier_token11] = ACTIONS(1486), - [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(1486), - [aux_sym_cmd_identifier_token17] = ACTIONS(1486), - [aux_sym_cmd_identifier_token18] = ACTIONS(1486), - [aux_sym_cmd_identifier_token19] = ACTIONS(1486), - [aux_sym_cmd_identifier_token20] = ACTIONS(1486), - [aux_sym_cmd_identifier_token21] = ACTIONS(1486), - [aux_sym_cmd_identifier_token22] = ACTIONS(1486), - [aux_sym_cmd_identifier_token23] = ACTIONS(1486), - [aux_sym_cmd_identifier_token24] = ACTIONS(1486), - [aux_sym_cmd_identifier_token25] = ACTIONS(1486), - [aux_sym_cmd_identifier_token26] = ACTIONS(1486), - [aux_sym_cmd_identifier_token27] = ACTIONS(1486), - [aux_sym_cmd_identifier_token28] = ACTIONS(1486), - [aux_sym_cmd_identifier_token29] = ACTIONS(1486), - [aux_sym_cmd_identifier_token30] = ACTIONS(1486), - [aux_sym_cmd_identifier_token31] = ACTIONS(1486), - [aux_sym_cmd_identifier_token32] = ACTIONS(1486), - [aux_sym_cmd_identifier_token33] = ACTIONS(1486), - [aux_sym_cmd_identifier_token34] = ACTIONS(1484), - [aux_sym_cmd_identifier_token35] = ACTIONS(1486), - [aux_sym_cmd_identifier_token36] = ACTIONS(1486), - [aux_sym_cmd_identifier_token37] = ACTIONS(1486), - [aux_sym_cmd_identifier_token38] = ACTIONS(1484), - [aux_sym_cmd_identifier_token39] = ACTIONS(1486), - [aux_sym_cmd_identifier_token40] = ACTIONS(1486), - [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_LPAREN] = ACTIONS(1484), - [anon_sym_COMMA] = ACTIONS(1486), - [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_in2] = ACTIONS(1484), - [anon_sym_loop] = ACTIONS(1484), - [anon_sym_make] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_else] = ACTIONS(1484), - [anon_sym_match] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1486), - [anon_sym_try] = ACTIONS(1484), - [anon_sym_catch] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_source] = ACTIONS(1484), - [anon_sym_source_DASHenv] = ACTIONS(1484), - [anon_sym_hide] = ACTIONS(1484), - [anon_sym_hide_DASHenv] = ACTIONS(1484), - [anon_sym_overlay] = ACTIONS(1484), - [anon_sym_as] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_PLUS2] = ACTIONS(1484), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1486), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [aux_sym__immediate_decimal_token1] = ACTIONS(1636), - [aux_sym__immediate_decimal_token2] = ACTIONS(1638), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1486), - [aux_sym__val_number_decimal_token1] = ACTIONS(1484), - [aux_sym__val_number_decimal_token2] = ACTIONS(1486), - [aux_sym__val_number_decimal_token3] = ACTIONS(1486), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), - [aux_sym__val_number_token1] = ACTIONS(1486), - [aux_sym__val_number_token2] = ACTIONS(1486), - [aux_sym__val_number_token3] = ACTIONS(1486), - [aux_sym__val_number_token4] = ACTIONS(1484), - [aux_sym__val_number_token5] = ACTIONS(1484), - [aux_sym__val_number_token6] = ACTIONS(1484), - [sym_filesize_unit] = ACTIONS(1484), - [sym_duration_unit] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym__str_single_quotes] = ACTIONS(1486), - [sym__str_back_ticks] = ACTIONS(1486), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1486), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1486), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1486), - [anon_sym_register] = ACTIONS(1484), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1484), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1486), - }, [309] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if_parenthesized] = STATE(5025), - [sym_block] = STATE(5026), - [sym__expression_parenthesized] = STATE(5026), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3809), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1149), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(5026), [sym_comment] = STATE(309), - [aux_sym_shebang_repeat1] = STATE(1202), - [aux_sym_cmd_identifier_token1] = ACTIONS(357), - [aux_sym_cmd_identifier_token2] = ACTIONS(359), - [aux_sym_cmd_identifier_token3] = ACTIONS(359), - [aux_sym_cmd_identifier_token4] = ACTIONS(359), - [aux_sym_cmd_identifier_token5] = ACTIONS(359), - [aux_sym_cmd_identifier_token6] = ACTIONS(359), - [aux_sym_cmd_identifier_token7] = ACTIONS(359), - [aux_sym_cmd_identifier_token8] = ACTIONS(359), - [aux_sym_cmd_identifier_token9] = ACTIONS(357), - [aux_sym_cmd_identifier_token10] = ACTIONS(359), - [aux_sym_cmd_identifier_token11] = ACTIONS(359), - [aux_sym_cmd_identifier_token12] = ACTIONS(359), - [aux_sym_cmd_identifier_token13] = ACTIONS(357), - [aux_sym_cmd_identifier_token14] = ACTIONS(359), - [aux_sym_cmd_identifier_token15] = ACTIONS(357), - [aux_sym_cmd_identifier_token16] = ACTIONS(359), - [aux_sym_cmd_identifier_token17] = ACTIONS(359), - [aux_sym_cmd_identifier_token18] = ACTIONS(359), - [aux_sym_cmd_identifier_token19] = ACTIONS(359), - [aux_sym_cmd_identifier_token20] = ACTIONS(359), - [aux_sym_cmd_identifier_token21] = ACTIONS(359), - [aux_sym_cmd_identifier_token22] = ACTIONS(359), - [aux_sym_cmd_identifier_token23] = ACTIONS(359), - [aux_sym_cmd_identifier_token24] = ACTIONS(359), - [aux_sym_cmd_identifier_token25] = ACTIONS(359), - [aux_sym_cmd_identifier_token26] = ACTIONS(359), - [aux_sym_cmd_identifier_token27] = ACTIONS(359), - [aux_sym_cmd_identifier_token28] = ACTIONS(359), - [aux_sym_cmd_identifier_token29] = ACTIONS(359), - [aux_sym_cmd_identifier_token30] = ACTIONS(359), - [aux_sym_cmd_identifier_token31] = ACTIONS(359), - [aux_sym_cmd_identifier_token32] = ACTIONS(359), - [aux_sym_cmd_identifier_token33] = ACTIONS(359), - [aux_sym_cmd_identifier_token34] = ACTIONS(357), - [aux_sym_cmd_identifier_token35] = ACTIONS(359), - [aux_sym_cmd_identifier_token36] = ACTIONS(359), - [aux_sym_cmd_identifier_token37] = ACTIONS(359), - [aux_sym_cmd_identifier_token38] = ACTIONS(357), - [aux_sym_cmd_identifier_token39] = ACTIONS(359), - [aux_sym_cmd_identifier_token40] = ACTIONS(359), - [sym__newline] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(1012), - [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_if] = ACTIONS(439), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_DOT_DOT] = ACTIONS(185), - [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(207), - [anon_sym_DOT_DOT_LT] = ACTIONS(207), - [anon_sym_null] = ACTIONS(209), - [anon_sym_true] = ACTIONS(211), - [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1626), - [aux_sym__val_number_decimal_token2] = ACTIONS(1628), - [aux_sym__val_number_decimal_token3] = ACTIONS(1630), - [aux_sym__val_number_decimal_token4] = ACTIONS(1632), - [aux_sym__val_number_token1] = ACTIONS(223), - [aux_sym__val_number_token2] = ACTIONS(223), - [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(225), - [aux_sym__val_number_token5] = ACTIONS(225), - [aux_sym__val_number_token6] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_CARET] = ACTIONS(243), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_alias] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_let_DASHenv] = ACTIONS(1595), + [anon_sym_mut] = ACTIONS(1595), + [anon_sym_const] = ACTIONS(1595), + [aux_sym_cmd_identifier_token1] = ACTIONS(1595), + [aux_sym_cmd_identifier_token2] = ACTIONS(1289), + [aux_sym_cmd_identifier_token3] = ACTIONS(1289), + [aux_sym_cmd_identifier_token4] = ACTIONS(1289), + [aux_sym_cmd_identifier_token5] = ACTIONS(1289), + [aux_sym_cmd_identifier_token6] = ACTIONS(1289), + [aux_sym_cmd_identifier_token7] = ACTIONS(1289), + [aux_sym_cmd_identifier_token8] = ACTIONS(1595), + [aux_sym_cmd_identifier_token9] = ACTIONS(1595), + [aux_sym_cmd_identifier_token10] = ACTIONS(1289), + [aux_sym_cmd_identifier_token11] = ACTIONS(1289), + [aux_sym_cmd_identifier_token12] = ACTIONS(1595), + [aux_sym_cmd_identifier_token13] = ACTIONS(1595), + [aux_sym_cmd_identifier_token14] = ACTIONS(1595), + [aux_sym_cmd_identifier_token15] = ACTIONS(1595), + [aux_sym_cmd_identifier_token16] = ACTIONS(1289), + [aux_sym_cmd_identifier_token17] = ACTIONS(1289), + [aux_sym_cmd_identifier_token18] = ACTIONS(1289), + [aux_sym_cmd_identifier_token19] = ACTIONS(1289), + [aux_sym_cmd_identifier_token20] = ACTIONS(1289), + [aux_sym_cmd_identifier_token21] = ACTIONS(1289), + [aux_sym_cmd_identifier_token22] = ACTIONS(1289), + [aux_sym_cmd_identifier_token23] = ACTIONS(1289), + [aux_sym_cmd_identifier_token24] = ACTIONS(1289), + [aux_sym_cmd_identifier_token25] = ACTIONS(1289), + [aux_sym_cmd_identifier_token26] = ACTIONS(1289), + [aux_sym_cmd_identifier_token27] = ACTIONS(1289), + [aux_sym_cmd_identifier_token28] = ACTIONS(1289), + [aux_sym_cmd_identifier_token29] = ACTIONS(1289), + [aux_sym_cmd_identifier_token30] = ACTIONS(1289), + [aux_sym_cmd_identifier_token31] = ACTIONS(1289), + [aux_sym_cmd_identifier_token32] = ACTIONS(1289), + [aux_sym_cmd_identifier_token33] = ACTIONS(1289), + [aux_sym_cmd_identifier_token34] = ACTIONS(1595), + [aux_sym_cmd_identifier_token35] = ACTIONS(1289), + [aux_sym_cmd_identifier_token36] = ACTIONS(1289), + [aux_sym_cmd_identifier_token37] = ACTIONS(1289), + [aux_sym_cmd_identifier_token38] = ACTIONS(1595), + [aux_sym_cmd_identifier_token39] = ACTIONS(1289), + [aux_sym_cmd_identifier_token40] = ACTIONS(1289), + [sym__newline] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1289), + [anon_sym_def] = ACTIONS(1595), + [anon_sym_export_DASHenv] = ACTIONS(1595), + [anon_sym_extern] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_use] = ACTIONS(1595), + [anon_sym_LBRACK] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1289), + [anon_sym_RPAREN] = ACTIONS(1289), + [anon_sym_DOLLAR] = ACTIONS(1595), + [anon_sym_error] = ACTIONS(1595), + [anon_sym_DASH2] = ACTIONS(1595), + [anon_sym_break] = ACTIONS(1595), + [anon_sym_continue] = ACTIONS(1595), + [anon_sym_for] = ACTIONS(1595), + [anon_sym_loop] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(1595), + [anon_sym_do] = ACTIONS(1595), + [anon_sym_if] = ACTIONS(1595), + [anon_sym_match] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_try] = ACTIONS(1595), + [anon_sym_return] = ACTIONS(1595), + [anon_sym_source] = ACTIONS(1595), + [anon_sym_source_DASHenv] = ACTIONS(1595), + [anon_sym_hide] = ACTIONS(1595), + [anon_sym_hide_DASHenv] = ACTIONS(1595), + [anon_sym_overlay] = ACTIONS(1595), + [anon_sym_where] = ACTIONS(1289), + [aux_sym_expr_unary_token1] = ACTIONS(1289), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1289), + [anon_sym_DOT_DOT_LT] = ACTIONS(1289), + [anon_sym_null] = ACTIONS(1595), + [anon_sym_true] = ACTIONS(1595), + [anon_sym_false] = ACTIONS(1595), + [aux_sym__val_number_decimal_token1] = ACTIONS(1595), + [aux_sym__val_number_decimal_token2] = ACTIONS(1289), + [aux_sym__val_number_decimal_token3] = ACTIONS(1289), + [aux_sym__val_number_decimal_token4] = ACTIONS(1289), + [aux_sym__val_number_token1] = ACTIONS(1289), + [aux_sym__val_number_token2] = ACTIONS(1289), + [aux_sym__val_number_token3] = ACTIONS(1289), + [aux_sym__val_number_token4] = ACTIONS(1595), + [aux_sym__val_number_token5] = ACTIONS(1595), + [aux_sym__val_number_token6] = ACTIONS(1595), + [anon_sym_0b] = ACTIONS(1595), + [anon_sym_0o] = ACTIONS(1595), + [anon_sym_0x] = ACTIONS(1595), + [sym_val_date] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1289), + [sym__str_single_quotes] = ACTIONS(1289), + [sym__str_back_ticks] = ACTIONS(1289), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1289), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1289), + [aux_sym_env_var_token1] = ACTIONS(1595), + [anon_sym_CARET] = ACTIONS(1289), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1289), }, [310] = { + [sym__expr_parenthesized_immediate] = STATE(593), + [sym__immediate_decimal] = STATE(594), + [sym_val_variable] = STATE(593), [sym_comment] = STATE(310), - [anon_sym_export] = ACTIONS(1634), - [anon_sym_alias] = ACTIONS(1634), - [anon_sym_let] = ACTIONS(1634), - [anon_sym_let_DASHenv] = ACTIONS(1634), - [anon_sym_mut] = ACTIONS(1634), - [anon_sym_const] = ACTIONS(1634), - [aux_sym_cmd_identifier_token1] = ACTIONS(1634), - [aux_sym_cmd_identifier_token2] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1282), - [aux_sym_cmd_identifier_token4] = ACTIONS(1282), - [aux_sym_cmd_identifier_token5] = ACTIONS(1282), - [aux_sym_cmd_identifier_token6] = ACTIONS(1282), - [aux_sym_cmd_identifier_token7] = ACTIONS(1282), - [aux_sym_cmd_identifier_token8] = ACTIONS(1634), - [aux_sym_cmd_identifier_token9] = ACTIONS(1634), - [aux_sym_cmd_identifier_token10] = ACTIONS(1282), - [aux_sym_cmd_identifier_token11] = ACTIONS(1282), - [aux_sym_cmd_identifier_token12] = ACTIONS(1634), - [aux_sym_cmd_identifier_token13] = ACTIONS(1634), - [aux_sym_cmd_identifier_token14] = ACTIONS(1634), - [aux_sym_cmd_identifier_token15] = ACTIONS(1634), - [aux_sym_cmd_identifier_token16] = ACTIONS(1282), - [aux_sym_cmd_identifier_token17] = ACTIONS(1282), - [aux_sym_cmd_identifier_token18] = ACTIONS(1282), - [aux_sym_cmd_identifier_token19] = ACTIONS(1282), - [aux_sym_cmd_identifier_token20] = ACTIONS(1282), - [aux_sym_cmd_identifier_token21] = ACTIONS(1282), - [aux_sym_cmd_identifier_token22] = ACTIONS(1282), - [aux_sym_cmd_identifier_token23] = ACTIONS(1282), - [aux_sym_cmd_identifier_token24] = ACTIONS(1282), - [aux_sym_cmd_identifier_token25] = ACTIONS(1282), - [aux_sym_cmd_identifier_token26] = ACTIONS(1282), - [aux_sym_cmd_identifier_token27] = ACTIONS(1282), - [aux_sym_cmd_identifier_token28] = ACTIONS(1282), - [aux_sym_cmd_identifier_token29] = ACTIONS(1282), - [aux_sym_cmd_identifier_token30] = ACTIONS(1282), - [aux_sym_cmd_identifier_token31] = ACTIONS(1282), - [aux_sym_cmd_identifier_token32] = ACTIONS(1282), - [aux_sym_cmd_identifier_token33] = ACTIONS(1282), - [aux_sym_cmd_identifier_token34] = ACTIONS(1634), - [aux_sym_cmd_identifier_token35] = ACTIONS(1282), - [aux_sym_cmd_identifier_token36] = ACTIONS(1282), - [aux_sym_cmd_identifier_token37] = ACTIONS(1282), - [aux_sym_cmd_identifier_token38] = ACTIONS(1634), - [aux_sym_cmd_identifier_token39] = ACTIONS(1282), - [aux_sym_cmd_identifier_token40] = ACTIONS(1282), - [sym__newline] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(1282), - [anon_sym_def] = ACTIONS(1634), - [anon_sym_export_DASHenv] = ACTIONS(1634), - [anon_sym_extern] = ACTIONS(1634), - [anon_sym_module] = ACTIONS(1634), - [anon_sym_use] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1282), - [anon_sym_RPAREN] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(1634), - [anon_sym_error] = ACTIONS(1634), - [anon_sym_DASH2] = ACTIONS(1634), - [anon_sym_break] = ACTIONS(1634), - [anon_sym_continue] = ACTIONS(1634), - [anon_sym_for] = ACTIONS(1634), - [anon_sym_loop] = ACTIONS(1634), - [anon_sym_while] = ACTIONS(1634), - [anon_sym_do] = ACTIONS(1634), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_match] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_RBRACE] = ACTIONS(1282), - [anon_sym_DOT_DOT] = ACTIONS(1634), - [anon_sym_try] = ACTIONS(1634), - [anon_sym_return] = ACTIONS(1634), - [anon_sym_source] = ACTIONS(1634), - [anon_sym_source_DASHenv] = ACTIONS(1634), - [anon_sym_hide] = ACTIONS(1634), - [anon_sym_hide_DASHenv] = ACTIONS(1634), - [anon_sym_overlay] = ACTIONS(1634), - [anon_sym_where] = ACTIONS(1282), - [aux_sym_expr_unary_token1] = ACTIONS(1282), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1282), - [anon_sym_DOT_DOT_LT] = ACTIONS(1282), - [anon_sym_null] = ACTIONS(1634), - [anon_sym_true] = ACTIONS(1634), - [anon_sym_false] = ACTIONS(1634), - [aux_sym__val_number_decimal_token1] = ACTIONS(1634), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1282), - [aux_sym__val_number_decimal_token4] = ACTIONS(1282), - [aux_sym__val_number_token1] = ACTIONS(1282), - [aux_sym__val_number_token2] = ACTIONS(1282), - [aux_sym__val_number_token3] = ACTIONS(1282), - [aux_sym__val_number_token4] = ACTIONS(1634), - [aux_sym__val_number_token5] = ACTIONS(1634), - [aux_sym__val_number_token6] = ACTIONS(1634), - [anon_sym_0b] = ACTIONS(1634), - [anon_sym_0o] = ACTIONS(1634), - [anon_sym_0x] = ACTIONS(1634), - [sym_val_date] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym__str_single_quotes] = ACTIONS(1282), - [sym__str_back_ticks] = ACTIONS(1282), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1282), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1282), - [aux_sym_env_var_token1] = ACTIONS(1634), - [anon_sym_CARET] = ACTIONS(1282), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1282), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_alias] = ACTIONS(1479), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_let_DASHenv] = ACTIONS(1479), + [anon_sym_mut] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1479), + [aux_sym_cmd_identifier_token1] = ACTIONS(1479), + [aux_sym_cmd_identifier_token2] = ACTIONS(1479), + [aux_sym_cmd_identifier_token3] = ACTIONS(1479), + [aux_sym_cmd_identifier_token4] = ACTIONS(1479), + [aux_sym_cmd_identifier_token5] = ACTIONS(1479), + [aux_sym_cmd_identifier_token6] = ACTIONS(1479), + [aux_sym_cmd_identifier_token7] = ACTIONS(1479), + [aux_sym_cmd_identifier_token8] = ACTIONS(1479), + [aux_sym_cmd_identifier_token9] = ACTIONS(1479), + [aux_sym_cmd_identifier_token10] = ACTIONS(1479), + [aux_sym_cmd_identifier_token11] = ACTIONS(1479), + [aux_sym_cmd_identifier_token12] = ACTIONS(1479), + [aux_sym_cmd_identifier_token13] = ACTIONS(1479), + [aux_sym_cmd_identifier_token14] = ACTIONS(1479), + [aux_sym_cmd_identifier_token15] = ACTIONS(1479), + [aux_sym_cmd_identifier_token16] = ACTIONS(1479), + [aux_sym_cmd_identifier_token17] = ACTIONS(1479), + [aux_sym_cmd_identifier_token18] = ACTIONS(1479), + [aux_sym_cmd_identifier_token19] = ACTIONS(1479), + [aux_sym_cmd_identifier_token20] = ACTIONS(1479), + [aux_sym_cmd_identifier_token21] = ACTIONS(1479), + [aux_sym_cmd_identifier_token22] = ACTIONS(1479), + [aux_sym_cmd_identifier_token23] = ACTIONS(1479), + [aux_sym_cmd_identifier_token24] = ACTIONS(1479), + [aux_sym_cmd_identifier_token25] = ACTIONS(1479), + [aux_sym_cmd_identifier_token26] = ACTIONS(1479), + [aux_sym_cmd_identifier_token27] = ACTIONS(1479), + [aux_sym_cmd_identifier_token28] = ACTIONS(1479), + [aux_sym_cmd_identifier_token29] = ACTIONS(1479), + [aux_sym_cmd_identifier_token30] = ACTIONS(1479), + [aux_sym_cmd_identifier_token31] = ACTIONS(1479), + [aux_sym_cmd_identifier_token32] = ACTIONS(1479), + [aux_sym_cmd_identifier_token33] = ACTIONS(1479), + [aux_sym_cmd_identifier_token34] = ACTIONS(1479), + [aux_sym_cmd_identifier_token35] = ACTIONS(1479), + [aux_sym_cmd_identifier_token36] = ACTIONS(1479), + [aux_sym_cmd_identifier_token37] = ACTIONS(1479), + [aux_sym_cmd_identifier_token38] = ACTIONS(1479), + [aux_sym_cmd_identifier_token39] = ACTIONS(1479), + [aux_sym_cmd_identifier_token40] = ACTIONS(1479), + [anon_sym_def] = ACTIONS(1479), + [anon_sym_export_DASHenv] = ACTIONS(1479), + [anon_sym_extern] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_use] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(1479), + [anon_sym_DOLLAR] = ACTIONS(1463), + [anon_sym_error] = ACTIONS(1479), + [anon_sym_DASH2] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1479), + [anon_sym_continue] = ACTIONS(1479), + [anon_sym_for] = ACTIONS(1479), + [anon_sym_in2] = ACTIONS(1479), + [anon_sym_loop] = ACTIONS(1479), + [anon_sym_make] = ACTIONS(1479), + [anon_sym_while] = ACTIONS(1479), + [anon_sym_do] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1479), + [anon_sym_match] = ACTIONS(1479), + [anon_sym_RBRACE] = ACTIONS(1479), + [anon_sym_try] = ACTIONS(1479), + [anon_sym_catch] = ACTIONS(1479), + [anon_sym_return] = ACTIONS(1479), + [anon_sym_source] = ACTIONS(1479), + [anon_sym_source_DASHenv] = ACTIONS(1479), + [anon_sym_hide] = ACTIONS(1479), + [anon_sym_hide_DASHenv] = ACTIONS(1479), + [anon_sym_overlay] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(1479), + [anon_sym_LPAREN2] = ACTIONS(1465), + [anon_sym_PLUS2] = ACTIONS(1479), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1479), + [aux_sym__immediate_decimal_token1] = ACTIONS(1540), + [aux_sym__immediate_decimal_token3] = ACTIONS(1540), + [aux_sym__immediate_decimal_token4] = ACTIONS(1542), + [aux_sym__immediate_decimal_token5] = ACTIONS(1544), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1479), + [aux_sym__val_number_decimal_token1] = ACTIONS(1479), + [aux_sym__val_number_decimal_token2] = ACTIONS(1479), + [aux_sym__val_number_decimal_token3] = ACTIONS(1479), + [aux_sym__val_number_decimal_token4] = ACTIONS(1479), + [aux_sym__val_number_token1] = ACTIONS(1479), + [aux_sym__val_number_token2] = ACTIONS(1479), + [aux_sym__val_number_token3] = ACTIONS(1479), + [aux_sym__val_number_token4] = ACTIONS(1479), + [aux_sym__val_number_token5] = ACTIONS(1479), + [aux_sym__val_number_token6] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1479), + [sym__str_single_quotes] = ACTIONS(1479), + [sym__str_back_ticks] = ACTIONS(1479), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1479), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1479), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1479), + [sym__entry_separator] = ACTIONS(1489), + [anon_sym_register] = ACTIONS(1479), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1489), }, [311] = { + [sym__expr_parenthesized_immediate] = STATE(602), + [sym__immediate_decimal] = STATE(603), + [sym_val_variable] = STATE(602), [sym_comment] = STATE(311), - [anon_sym_export] = ACTIONS(1492), - [anon_sym_alias] = ACTIONS(1492), - [anon_sym_let] = ACTIONS(1492), - [anon_sym_let_DASHenv] = ACTIONS(1492), - [anon_sym_mut] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [aux_sym_cmd_identifier_token1] = ACTIONS(1492), - [aux_sym_cmd_identifier_token2] = ACTIONS(1494), - [aux_sym_cmd_identifier_token3] = ACTIONS(1494), - [aux_sym_cmd_identifier_token4] = ACTIONS(1494), - [aux_sym_cmd_identifier_token5] = ACTIONS(1494), - [aux_sym_cmd_identifier_token6] = ACTIONS(1494), - [aux_sym_cmd_identifier_token7] = ACTIONS(1494), - [aux_sym_cmd_identifier_token8] = ACTIONS(1492), - [aux_sym_cmd_identifier_token9] = ACTIONS(1492), - [aux_sym_cmd_identifier_token10] = ACTIONS(1494), - [aux_sym_cmd_identifier_token11] = ACTIONS(1494), - [aux_sym_cmd_identifier_token12] = ACTIONS(1492), - [aux_sym_cmd_identifier_token13] = ACTIONS(1492), - [aux_sym_cmd_identifier_token14] = ACTIONS(1492), - [aux_sym_cmd_identifier_token15] = ACTIONS(1492), - [aux_sym_cmd_identifier_token16] = ACTIONS(1494), - [aux_sym_cmd_identifier_token17] = ACTIONS(1494), - [aux_sym_cmd_identifier_token18] = ACTIONS(1494), - [aux_sym_cmd_identifier_token19] = ACTIONS(1494), - [aux_sym_cmd_identifier_token20] = ACTIONS(1494), - [aux_sym_cmd_identifier_token21] = ACTIONS(1494), - [aux_sym_cmd_identifier_token22] = ACTIONS(1494), - [aux_sym_cmd_identifier_token23] = ACTIONS(1494), - [aux_sym_cmd_identifier_token24] = ACTIONS(1494), - [aux_sym_cmd_identifier_token25] = ACTIONS(1494), - [aux_sym_cmd_identifier_token26] = ACTIONS(1494), - [aux_sym_cmd_identifier_token27] = ACTIONS(1494), - [aux_sym_cmd_identifier_token28] = ACTIONS(1494), - [aux_sym_cmd_identifier_token29] = ACTIONS(1494), - [aux_sym_cmd_identifier_token30] = ACTIONS(1494), - [aux_sym_cmd_identifier_token31] = ACTIONS(1494), - [aux_sym_cmd_identifier_token32] = ACTIONS(1494), - [aux_sym_cmd_identifier_token33] = ACTIONS(1494), - [aux_sym_cmd_identifier_token34] = ACTIONS(1492), - [aux_sym_cmd_identifier_token35] = ACTIONS(1494), - [aux_sym_cmd_identifier_token36] = ACTIONS(1494), - [aux_sym_cmd_identifier_token37] = ACTIONS(1494), - [aux_sym_cmd_identifier_token38] = ACTIONS(1492), - [aux_sym_cmd_identifier_token39] = ACTIONS(1494), - [aux_sym_cmd_identifier_token40] = ACTIONS(1494), - [anon_sym_def] = ACTIONS(1492), - [anon_sym_export_DASHenv] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1492), - [anon_sym_module] = ACTIONS(1492), - [anon_sym_use] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1492), - [anon_sym_error] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_loop] = ACTIONS(1492), - [anon_sym_make] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_else] = ACTIONS(1492), - [anon_sym_match] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1494), - [anon_sym_try] = ACTIONS(1492), - [anon_sym_catch] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_source] = ACTIONS(1492), - [anon_sym_source_DASHenv] = ACTIONS(1492), - [anon_sym_hide] = ACTIONS(1492), - [anon_sym_hide_DASHenv] = ACTIONS(1492), - [anon_sym_overlay] = ACTIONS(1492), - [anon_sym_as] = ACTIONS(1492), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1494), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT] = ACTIONS(1640), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(1642), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1494), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1494), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(1494), - [aux_sym__val_number_token2] = ACTIONS(1494), - [aux_sym__val_number_token3] = ACTIONS(1494), - [aux_sym__val_number_token4] = ACTIONS(1492), - [aux_sym__val_number_token5] = ACTIONS(1492), - [aux_sym__val_number_token6] = ACTIONS(1492), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym__str_single_quotes] = ACTIONS(1494), - [sym__str_back_ticks] = ACTIONS(1494), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1494), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1494), - [anon_sym_register] = ACTIONS(1492), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1494), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_alias] = ACTIONS(1632), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_let_DASHenv] = ACTIONS(1632), + [anon_sym_mut] = ACTIONS(1632), + [anon_sym_const] = ACTIONS(1632), + [aux_sym_cmd_identifier_token1] = ACTIONS(1632), + [aux_sym_cmd_identifier_token2] = ACTIONS(1632), + [aux_sym_cmd_identifier_token3] = ACTIONS(1632), + [aux_sym_cmd_identifier_token4] = ACTIONS(1632), + [aux_sym_cmd_identifier_token5] = ACTIONS(1632), + [aux_sym_cmd_identifier_token6] = ACTIONS(1632), + [aux_sym_cmd_identifier_token7] = ACTIONS(1632), + [aux_sym_cmd_identifier_token8] = ACTIONS(1632), + [aux_sym_cmd_identifier_token9] = ACTIONS(1632), + [aux_sym_cmd_identifier_token10] = ACTIONS(1632), + [aux_sym_cmd_identifier_token11] = ACTIONS(1632), + [aux_sym_cmd_identifier_token12] = ACTIONS(1632), + [aux_sym_cmd_identifier_token13] = ACTIONS(1632), + [aux_sym_cmd_identifier_token14] = ACTIONS(1632), + [aux_sym_cmd_identifier_token15] = ACTIONS(1632), + [aux_sym_cmd_identifier_token16] = ACTIONS(1632), + [aux_sym_cmd_identifier_token17] = ACTIONS(1632), + [aux_sym_cmd_identifier_token18] = ACTIONS(1632), + [aux_sym_cmd_identifier_token19] = ACTIONS(1632), + [aux_sym_cmd_identifier_token20] = ACTIONS(1632), + [aux_sym_cmd_identifier_token21] = ACTIONS(1632), + [aux_sym_cmd_identifier_token22] = ACTIONS(1632), + [aux_sym_cmd_identifier_token23] = ACTIONS(1632), + [aux_sym_cmd_identifier_token24] = ACTIONS(1632), + [aux_sym_cmd_identifier_token25] = ACTIONS(1632), + [aux_sym_cmd_identifier_token26] = ACTIONS(1632), + [aux_sym_cmd_identifier_token27] = ACTIONS(1632), + [aux_sym_cmd_identifier_token28] = ACTIONS(1632), + [aux_sym_cmd_identifier_token29] = ACTIONS(1632), + [aux_sym_cmd_identifier_token30] = ACTIONS(1632), + [aux_sym_cmd_identifier_token31] = ACTIONS(1632), + [aux_sym_cmd_identifier_token32] = ACTIONS(1632), + [aux_sym_cmd_identifier_token33] = ACTIONS(1632), + [aux_sym_cmd_identifier_token34] = ACTIONS(1632), + [aux_sym_cmd_identifier_token35] = ACTIONS(1632), + [aux_sym_cmd_identifier_token36] = ACTIONS(1632), + [aux_sym_cmd_identifier_token37] = ACTIONS(1632), + [aux_sym_cmd_identifier_token38] = ACTIONS(1632), + [aux_sym_cmd_identifier_token39] = ACTIONS(1632), + [aux_sym_cmd_identifier_token40] = ACTIONS(1632), + [anon_sym_def] = ACTIONS(1632), + [anon_sym_export_DASHenv] = ACTIONS(1632), + [anon_sym_extern] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_use] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(1632), + [anon_sym_COMMA] = ACTIONS(1632), + [anon_sym_DOLLAR] = ACTIONS(1463), + [anon_sym_error] = ACTIONS(1632), + [anon_sym_DASH2] = ACTIONS(1632), + [anon_sym_break] = ACTIONS(1632), + [anon_sym_continue] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1632), + [anon_sym_in2] = ACTIONS(1632), + [anon_sym_loop] = ACTIONS(1632), + [anon_sym_make] = ACTIONS(1632), + [anon_sym_while] = ACTIONS(1632), + [anon_sym_do] = ACTIONS(1632), + [anon_sym_if] = ACTIONS(1632), + [anon_sym_else] = ACTIONS(1632), + [anon_sym_match] = ACTIONS(1632), + [anon_sym_RBRACE] = ACTIONS(1632), + [anon_sym_try] = ACTIONS(1632), + [anon_sym_catch] = ACTIONS(1632), + [anon_sym_return] = ACTIONS(1632), + [anon_sym_source] = ACTIONS(1632), + [anon_sym_source_DASHenv] = ACTIONS(1632), + [anon_sym_hide] = ACTIONS(1632), + [anon_sym_hide_DASHenv] = ACTIONS(1632), + [anon_sym_overlay] = ACTIONS(1632), + [anon_sym_as] = ACTIONS(1632), + [anon_sym_LPAREN2] = ACTIONS(1465), + [anon_sym_PLUS2] = ACTIONS(1632), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1632), + [aux_sym__immediate_decimal_token1] = ACTIONS(1540), + [aux_sym__immediate_decimal_token3] = ACTIONS(1540), + [aux_sym__immediate_decimal_token4] = ACTIONS(1542), + [aux_sym__immediate_decimal_token5] = ACTIONS(1544), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1632), + [aux_sym__val_number_decimal_token1] = ACTIONS(1632), + [aux_sym__val_number_decimal_token2] = ACTIONS(1632), + [aux_sym__val_number_decimal_token3] = ACTIONS(1632), + [aux_sym__val_number_decimal_token4] = ACTIONS(1632), + [aux_sym__val_number_token1] = ACTIONS(1632), + [aux_sym__val_number_token2] = ACTIONS(1632), + [aux_sym__val_number_token3] = ACTIONS(1632), + [aux_sym__val_number_token4] = ACTIONS(1632), + [aux_sym__val_number_token5] = ACTIONS(1632), + [aux_sym__val_number_token6] = ACTIONS(1632), + [anon_sym_DQUOTE] = ACTIONS(1632), + [sym__str_single_quotes] = ACTIONS(1632), + [sym__str_back_ticks] = ACTIONS(1632), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1632), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1632), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1632), + [sym__entry_separator] = ACTIONS(1634), + [anon_sym_register] = ACTIONS(1632), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1634), }, [312] = { [sym_comment] = STATE(312), - [anon_sym_export] = ACTIONS(1492), - [anon_sym_alias] = ACTIONS(1492), - [anon_sym_let] = ACTIONS(1492), - [anon_sym_let_DASHenv] = ACTIONS(1492), - [anon_sym_mut] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [aux_sym_cmd_identifier_token1] = ACTIONS(1492), - [aux_sym_cmd_identifier_token2] = ACTIONS(1492), - [aux_sym_cmd_identifier_token3] = ACTIONS(1492), - [aux_sym_cmd_identifier_token4] = ACTIONS(1492), - [aux_sym_cmd_identifier_token5] = ACTIONS(1492), - [aux_sym_cmd_identifier_token6] = ACTIONS(1492), - [aux_sym_cmd_identifier_token7] = ACTIONS(1492), - [aux_sym_cmd_identifier_token8] = ACTIONS(1492), - [aux_sym_cmd_identifier_token9] = ACTIONS(1492), - [aux_sym_cmd_identifier_token10] = ACTIONS(1492), - [aux_sym_cmd_identifier_token11] = ACTIONS(1492), - [aux_sym_cmd_identifier_token12] = ACTIONS(1492), - [aux_sym_cmd_identifier_token13] = ACTIONS(1492), - [aux_sym_cmd_identifier_token14] = ACTIONS(1492), - [aux_sym_cmd_identifier_token15] = ACTIONS(1492), - [aux_sym_cmd_identifier_token16] = ACTIONS(1492), - [aux_sym_cmd_identifier_token17] = ACTIONS(1492), - [aux_sym_cmd_identifier_token18] = ACTIONS(1492), - [aux_sym_cmd_identifier_token19] = ACTIONS(1492), - [aux_sym_cmd_identifier_token20] = ACTIONS(1492), - [aux_sym_cmd_identifier_token21] = ACTIONS(1492), - [aux_sym_cmd_identifier_token22] = ACTIONS(1492), - [aux_sym_cmd_identifier_token23] = ACTIONS(1492), - [aux_sym_cmd_identifier_token24] = ACTIONS(1492), - [aux_sym_cmd_identifier_token25] = ACTIONS(1492), - [aux_sym_cmd_identifier_token26] = ACTIONS(1492), - [aux_sym_cmd_identifier_token27] = ACTIONS(1492), - [aux_sym_cmd_identifier_token28] = ACTIONS(1492), - [aux_sym_cmd_identifier_token29] = ACTIONS(1492), - [aux_sym_cmd_identifier_token30] = ACTIONS(1492), - [aux_sym_cmd_identifier_token31] = ACTIONS(1492), - [aux_sym_cmd_identifier_token32] = ACTIONS(1492), - [aux_sym_cmd_identifier_token33] = ACTIONS(1492), - [aux_sym_cmd_identifier_token34] = ACTIONS(1492), - [aux_sym_cmd_identifier_token35] = ACTIONS(1492), - [aux_sym_cmd_identifier_token36] = ACTIONS(1492), - [aux_sym_cmd_identifier_token37] = ACTIONS(1492), - [aux_sym_cmd_identifier_token38] = ACTIONS(1492), - [aux_sym_cmd_identifier_token39] = ACTIONS(1492), - [aux_sym_cmd_identifier_token40] = ACTIONS(1492), - [anon_sym_def] = ACTIONS(1492), - [anon_sym_export_DASHenv] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1492), - [anon_sym_module] = ACTIONS(1492), - [anon_sym_use] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_DOLLAR] = ACTIONS(1492), - [anon_sym_error] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_loop] = ACTIONS(1492), - [anon_sym_make] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_else] = ACTIONS(1492), - [anon_sym_match] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_try] = ACTIONS(1492), - [anon_sym_catch] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_source] = ACTIONS(1492), - [anon_sym_source_DASHenv] = ACTIONS(1492), - [anon_sym_hide] = ACTIONS(1492), - [anon_sym_hide_DASHenv] = ACTIONS(1492), - [anon_sym_overlay] = ACTIONS(1492), - [anon_sym_as] = ACTIONS(1492), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1492), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1492), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), - [aux_sym__val_number_token1] = ACTIONS(1492), - [aux_sym__val_number_token2] = ACTIONS(1492), - [aux_sym__val_number_token3] = ACTIONS(1492), - [aux_sym__val_number_token4] = ACTIONS(1492), - [aux_sym__val_number_token5] = ACTIONS(1492), - [aux_sym__val_number_token6] = ACTIONS(1492), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1492), - [sym__str_single_quotes] = ACTIONS(1492), - [sym__str_back_ticks] = ACTIONS(1492), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1492), - [sym__entry_separator] = ACTIONS(1494), - [anon_sym_register] = ACTIONS(1492), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1494), + [aux_sym_shebang_repeat1] = STATE(317), + [aux_sym__parenthesized_body_repeat1] = STATE(233), + [anon_sym_export] = ACTIONS(1636), + [anon_sym_alias] = ACTIONS(1636), + [anon_sym_let] = ACTIONS(1636), + [anon_sym_let_DASHenv] = ACTIONS(1636), + [anon_sym_mut] = ACTIONS(1636), + [anon_sym_const] = ACTIONS(1636), + [aux_sym_cmd_identifier_token1] = ACTIONS(1636), + [aux_sym_cmd_identifier_token2] = ACTIONS(1638), + [aux_sym_cmd_identifier_token3] = ACTIONS(1638), + [aux_sym_cmd_identifier_token4] = ACTIONS(1638), + [aux_sym_cmd_identifier_token5] = ACTIONS(1638), + [aux_sym_cmd_identifier_token6] = ACTIONS(1638), + [aux_sym_cmd_identifier_token7] = ACTIONS(1638), + [aux_sym_cmd_identifier_token8] = ACTIONS(1636), + [aux_sym_cmd_identifier_token9] = ACTIONS(1636), + [aux_sym_cmd_identifier_token10] = ACTIONS(1638), + [aux_sym_cmd_identifier_token11] = ACTIONS(1638), + [aux_sym_cmd_identifier_token12] = ACTIONS(1636), + [aux_sym_cmd_identifier_token13] = ACTIONS(1636), + [aux_sym_cmd_identifier_token14] = ACTIONS(1636), + [aux_sym_cmd_identifier_token15] = ACTIONS(1636), + [aux_sym_cmd_identifier_token16] = ACTIONS(1638), + [aux_sym_cmd_identifier_token17] = ACTIONS(1638), + [aux_sym_cmd_identifier_token18] = ACTIONS(1638), + [aux_sym_cmd_identifier_token19] = ACTIONS(1638), + [aux_sym_cmd_identifier_token20] = ACTIONS(1638), + [aux_sym_cmd_identifier_token21] = ACTIONS(1638), + [aux_sym_cmd_identifier_token22] = ACTIONS(1638), + [aux_sym_cmd_identifier_token23] = ACTIONS(1638), + [aux_sym_cmd_identifier_token24] = ACTIONS(1638), + [aux_sym_cmd_identifier_token25] = ACTIONS(1638), + [aux_sym_cmd_identifier_token26] = ACTIONS(1638), + [aux_sym_cmd_identifier_token27] = ACTIONS(1638), + [aux_sym_cmd_identifier_token28] = ACTIONS(1638), + [aux_sym_cmd_identifier_token29] = ACTIONS(1638), + [aux_sym_cmd_identifier_token30] = ACTIONS(1638), + [aux_sym_cmd_identifier_token31] = ACTIONS(1638), + [aux_sym_cmd_identifier_token32] = ACTIONS(1638), + [aux_sym_cmd_identifier_token33] = ACTIONS(1638), + [aux_sym_cmd_identifier_token34] = ACTIONS(1636), + [aux_sym_cmd_identifier_token35] = ACTIONS(1638), + [aux_sym_cmd_identifier_token36] = ACTIONS(1638), + [aux_sym_cmd_identifier_token37] = ACTIONS(1638), + [aux_sym_cmd_identifier_token38] = ACTIONS(1636), + [aux_sym_cmd_identifier_token39] = ACTIONS(1638), + [aux_sym_cmd_identifier_token40] = ACTIONS(1638), + [sym__newline] = ACTIONS(1640), + [anon_sym_SEMI] = ACTIONS(1642), + [anon_sym_AT] = ACTIONS(1638), + [anon_sym_def] = ACTIONS(1636), + [anon_sym_export_DASHenv] = ACTIONS(1636), + [anon_sym_extern] = ACTIONS(1636), + [anon_sym_module] = ACTIONS(1636), + [anon_sym_use] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_DOLLAR] = ACTIONS(1636), + [anon_sym_error] = ACTIONS(1636), + [anon_sym_DASH2] = ACTIONS(1636), + [anon_sym_break] = ACTIONS(1636), + [anon_sym_continue] = ACTIONS(1636), + [anon_sym_for] = ACTIONS(1636), + [anon_sym_loop] = ACTIONS(1636), + [anon_sym_while] = ACTIONS(1636), + [anon_sym_do] = ACTIONS(1636), + [anon_sym_if] = ACTIONS(1636), + [anon_sym_match] = ACTIONS(1636), + [anon_sym_LBRACE] = ACTIONS(1638), + [anon_sym_DOT_DOT] = ACTIONS(1636), + [anon_sym_try] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1636), + [anon_sym_source] = ACTIONS(1636), + [anon_sym_source_DASHenv] = ACTIONS(1636), + [anon_sym_hide] = ACTIONS(1636), + [anon_sym_hide_DASHenv] = ACTIONS(1636), + [anon_sym_overlay] = ACTIONS(1636), + [anon_sym_where] = ACTIONS(1638), + [aux_sym_expr_unary_token1] = ACTIONS(1638), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1638), + [anon_sym_DOT_DOT_LT] = ACTIONS(1638), + [anon_sym_null] = ACTIONS(1636), + [anon_sym_true] = ACTIONS(1636), + [anon_sym_false] = ACTIONS(1636), + [aux_sym__val_number_decimal_token1] = ACTIONS(1636), + [aux_sym__val_number_decimal_token2] = ACTIONS(1638), + [aux_sym__val_number_decimal_token3] = ACTIONS(1638), + [aux_sym__val_number_decimal_token4] = ACTIONS(1638), + [aux_sym__val_number_token1] = ACTIONS(1638), + [aux_sym__val_number_token2] = ACTIONS(1638), + [aux_sym__val_number_token3] = ACTIONS(1638), + [aux_sym__val_number_token4] = ACTIONS(1636), + [aux_sym__val_number_token5] = ACTIONS(1636), + [aux_sym__val_number_token6] = ACTIONS(1636), + [anon_sym_0b] = ACTIONS(1636), + [anon_sym_0o] = ACTIONS(1636), + [anon_sym_0x] = ACTIONS(1636), + [sym_val_date] = ACTIONS(1638), + [anon_sym_DQUOTE] = ACTIONS(1638), + [sym__str_single_quotes] = ACTIONS(1638), + [sym__str_back_ticks] = ACTIONS(1638), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1638), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1638), + [aux_sym_env_var_token1] = ACTIONS(1636), + [anon_sym_CARET] = ACTIONS(1638), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1638), }, [313] = { - [sym__expr_parenthesized_immediate] = STATE(624), - [sym__immediate_decimal] = STATE(625), - [sym_val_variable] = STATE(624), + [sym__expr_parenthesized_immediate] = STATE(604), + [sym__immediate_decimal] = STATE(605), + [sym_val_variable] = STATE(604), [sym_comment] = STATE(313), [anon_sym_export] = ACTIONS(1644), [anon_sym_alias] = ACTIONS(1644), @@ -110153,7 +109039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1644), [anon_sym_LPAREN] = ACTIONS(1644), [anon_sym_COMMA] = ACTIONS(1644), - [anon_sym_DOLLAR] = ACTIONS(1449), + [anon_sym_DOLLAR] = ACTIONS(1463), [anon_sym_error] = ACTIONS(1644), [anon_sym_DASH2] = ACTIONS(1644), [anon_sym_break] = ACTIONS(1644), @@ -110177,13 +109063,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(1644), [anon_sym_overlay] = ACTIONS(1644), [anon_sym_as] = ACTIONS(1644), - [anon_sym_LPAREN2] = ACTIONS(1451), + [anon_sym_LPAREN2] = ACTIONS(1465), [anon_sym_PLUS2] = ACTIONS(1644), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1644), - [aux_sym__immediate_decimal_token1] = ACTIONS(1546), - [aux_sym__immediate_decimal_token3] = ACTIONS(1546), - [aux_sym__immediate_decimal_token4] = ACTIONS(1548), - [aux_sym__immediate_decimal_token5] = ACTIONS(1550), + [aux_sym__immediate_decimal_token1] = ACTIONS(1540), + [aux_sym__immediate_decimal_token3] = ACTIONS(1540), + [aux_sym__immediate_decimal_token4] = ACTIONS(1542), + [aux_sym__immediate_decimal_token5] = ACTIONS(1544), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1644), [aux_sym__val_number_decimal_token1] = ACTIONS(1644), [aux_sym__val_number_decimal_token2] = ACTIONS(1644), @@ -110207,139 +109093,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1646), }, [314] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if_parenthesized] = STATE(4734), + [sym_block] = STATE(4735), + [sym__expression_parenthesized] = STATE(4735), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1134), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4735), [sym_comment] = STATE(314), - [anon_sym_export] = ACTIONS(1272), - [anon_sym_alias] = ACTIONS(1272), - [anon_sym_let] = ACTIONS(1272), - [anon_sym_let_DASHenv] = ACTIONS(1272), - [anon_sym_mut] = ACTIONS(1272), - [anon_sym_const] = ACTIONS(1272), - [aux_sym_cmd_identifier_token1] = ACTIONS(1272), - [aux_sym_cmd_identifier_token2] = ACTIONS(1275), - [aux_sym_cmd_identifier_token3] = ACTIONS(1275), - [aux_sym_cmd_identifier_token4] = ACTIONS(1275), - [aux_sym_cmd_identifier_token5] = ACTIONS(1275), - [aux_sym_cmd_identifier_token6] = ACTIONS(1275), - [aux_sym_cmd_identifier_token7] = ACTIONS(1275), - [aux_sym_cmd_identifier_token8] = ACTIONS(1272), - [aux_sym_cmd_identifier_token9] = ACTIONS(1272), - [aux_sym_cmd_identifier_token10] = ACTIONS(1275), - [aux_sym_cmd_identifier_token11] = ACTIONS(1275), - [aux_sym_cmd_identifier_token12] = ACTIONS(1272), - [aux_sym_cmd_identifier_token13] = ACTIONS(1272), - [aux_sym_cmd_identifier_token14] = ACTIONS(1272), - [aux_sym_cmd_identifier_token15] = ACTIONS(1272), - [aux_sym_cmd_identifier_token16] = ACTIONS(1275), - [aux_sym_cmd_identifier_token17] = ACTIONS(1275), - [aux_sym_cmd_identifier_token18] = ACTIONS(1275), - [aux_sym_cmd_identifier_token19] = ACTIONS(1275), - [aux_sym_cmd_identifier_token20] = ACTIONS(1275), - [aux_sym_cmd_identifier_token21] = ACTIONS(1275), - [aux_sym_cmd_identifier_token22] = ACTIONS(1275), - [aux_sym_cmd_identifier_token23] = ACTIONS(1275), - [aux_sym_cmd_identifier_token24] = ACTIONS(1275), - [aux_sym_cmd_identifier_token25] = ACTIONS(1275), - [aux_sym_cmd_identifier_token26] = ACTIONS(1275), - [aux_sym_cmd_identifier_token27] = ACTIONS(1275), - [aux_sym_cmd_identifier_token28] = ACTIONS(1275), - [aux_sym_cmd_identifier_token29] = ACTIONS(1275), - [aux_sym_cmd_identifier_token30] = ACTIONS(1275), - [aux_sym_cmd_identifier_token31] = ACTIONS(1275), - [aux_sym_cmd_identifier_token32] = ACTIONS(1275), - [aux_sym_cmd_identifier_token33] = ACTIONS(1275), - [aux_sym_cmd_identifier_token34] = ACTIONS(1272), - [aux_sym_cmd_identifier_token35] = ACTIONS(1275), - [aux_sym_cmd_identifier_token36] = ACTIONS(1275), - [aux_sym_cmd_identifier_token37] = ACTIONS(1275), - [aux_sym_cmd_identifier_token38] = ACTIONS(1272), - [aux_sym_cmd_identifier_token39] = ACTIONS(1275), - [aux_sym_cmd_identifier_token40] = ACTIONS(1275), - [sym__newline] = ACTIONS(1275), - [anon_sym_SEMI] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1278), - [anon_sym_AT] = ACTIONS(1275), - [anon_sym_def] = ACTIONS(1272), - [anon_sym_export_DASHenv] = ACTIONS(1272), - [anon_sym_extern] = ACTIONS(1272), - [anon_sym_module] = ACTIONS(1272), - [anon_sym_use] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1275), - [anon_sym_LPAREN] = ACTIONS(1275), - [anon_sym_DOLLAR] = ACTIONS(1272), - [anon_sym_error] = ACTIONS(1272), - [anon_sym_DASH2] = ACTIONS(1272), - [anon_sym_break] = ACTIONS(1272), - [anon_sym_continue] = ACTIONS(1272), - [anon_sym_for] = ACTIONS(1272), - [anon_sym_loop] = ACTIONS(1272), - [anon_sym_while] = ACTIONS(1272), - [anon_sym_do] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1272), - [anon_sym_match] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_RBRACE] = ACTIONS(1282), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_try] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1272), - [anon_sym_source] = ACTIONS(1272), - [anon_sym_source_DASHenv] = ACTIONS(1272), - [anon_sym_hide] = ACTIONS(1272), - [anon_sym_hide_DASHenv] = ACTIONS(1272), - [anon_sym_overlay] = ACTIONS(1272), - [anon_sym_where] = ACTIONS(1275), - [aux_sym_expr_unary_token1] = ACTIONS(1275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1275), - [anon_sym_DOT_DOT_LT] = ACTIONS(1275), - [anon_sym_null] = ACTIONS(1272), - [anon_sym_true] = ACTIONS(1272), - [anon_sym_false] = ACTIONS(1272), - [aux_sym__val_number_decimal_token1] = ACTIONS(1272), - [aux_sym__val_number_decimal_token2] = ACTIONS(1275), - [aux_sym__val_number_decimal_token3] = ACTIONS(1275), - [aux_sym__val_number_decimal_token4] = ACTIONS(1275), - [aux_sym__val_number_token1] = ACTIONS(1275), - [aux_sym__val_number_token2] = ACTIONS(1275), - [aux_sym__val_number_token3] = ACTIONS(1275), - [aux_sym__val_number_token4] = ACTIONS(1272), - [aux_sym__val_number_token5] = ACTIONS(1272), - [aux_sym__val_number_token6] = ACTIONS(1272), - [anon_sym_0b] = ACTIONS(1272), - [anon_sym_0o] = ACTIONS(1272), - [anon_sym_0x] = ACTIONS(1272), - [sym_val_date] = ACTIONS(1275), - [anon_sym_DQUOTE] = ACTIONS(1275), - [sym__str_single_quotes] = ACTIONS(1275), - [sym__str_back_ticks] = ACTIONS(1275), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1275), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1275), - [aux_sym_env_var_token1] = ACTIONS(1272), - [anon_sym_CARET] = ACTIONS(1275), + [aux_sym_shebang_repeat1] = STATE(246), + [aux_sym_cmd_identifier_token1] = ACTIONS(357), + [aux_sym_cmd_identifier_token2] = ACTIONS(359), + [aux_sym_cmd_identifier_token3] = ACTIONS(359), + [aux_sym_cmd_identifier_token4] = ACTIONS(359), + [aux_sym_cmd_identifier_token5] = ACTIONS(359), + [aux_sym_cmd_identifier_token6] = ACTIONS(359), + [aux_sym_cmd_identifier_token7] = ACTIONS(359), + [aux_sym_cmd_identifier_token8] = ACTIONS(359), + [aux_sym_cmd_identifier_token9] = ACTIONS(357), + [aux_sym_cmd_identifier_token10] = ACTIONS(359), + [aux_sym_cmd_identifier_token11] = ACTIONS(359), + [aux_sym_cmd_identifier_token12] = ACTIONS(359), + [aux_sym_cmd_identifier_token13] = ACTIONS(357), + [aux_sym_cmd_identifier_token14] = ACTIONS(359), + [aux_sym_cmd_identifier_token15] = ACTIONS(357), + [aux_sym_cmd_identifier_token16] = ACTIONS(359), + [aux_sym_cmd_identifier_token17] = ACTIONS(359), + [aux_sym_cmd_identifier_token18] = ACTIONS(359), + [aux_sym_cmd_identifier_token19] = ACTIONS(359), + [aux_sym_cmd_identifier_token20] = ACTIONS(359), + [aux_sym_cmd_identifier_token21] = ACTIONS(359), + [aux_sym_cmd_identifier_token22] = ACTIONS(359), + [aux_sym_cmd_identifier_token23] = ACTIONS(359), + [aux_sym_cmd_identifier_token24] = ACTIONS(359), + [aux_sym_cmd_identifier_token25] = ACTIONS(359), + [aux_sym_cmd_identifier_token26] = ACTIONS(359), + [aux_sym_cmd_identifier_token27] = ACTIONS(359), + [aux_sym_cmd_identifier_token28] = ACTIONS(359), + [aux_sym_cmd_identifier_token29] = ACTIONS(359), + [aux_sym_cmd_identifier_token30] = ACTIONS(359), + [aux_sym_cmd_identifier_token31] = ACTIONS(359), + [aux_sym_cmd_identifier_token32] = ACTIONS(359), + [aux_sym_cmd_identifier_token33] = ACTIONS(359), + [aux_sym_cmd_identifier_token34] = ACTIONS(357), + [aux_sym_cmd_identifier_token35] = ACTIONS(359), + [aux_sym_cmd_identifier_token36] = ACTIONS(359), + [aux_sym_cmd_identifier_token37] = ACTIONS(359), + [aux_sym_cmd_identifier_token38] = ACTIONS(357), + [aux_sym_cmd_identifier_token39] = ACTIONS(359), + [aux_sym_cmd_identifier_token40] = ACTIONS(359), + [sym__newline] = ACTIONS(1524), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1012), + [anon_sym_DASH2] = ACTIONS(375), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_DOT_DOT] = ACTIONS(185), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(209), + [anon_sym_true] = ACTIONS(211), + [anon_sym_false] = ACTIONS(211), + [aux_sym__val_number_decimal_token1] = ACTIONS(1530), + [aux_sym__val_number_decimal_token2] = ACTIONS(1532), + [aux_sym__val_number_decimal_token3] = ACTIONS(1534), + [aux_sym__val_number_decimal_token4] = ACTIONS(1536), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(225), + [aux_sym__val_number_token5] = ACTIONS(225), + [aux_sym__val_number_token6] = ACTIONS(225), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_CARET] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1275), + [sym_raw_string_begin] = ACTIONS(247), }, [315] = { [sym_comment] = STATE(315), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), + [ts_builtin_sym_end] = ACTIONS(1648), + [anon_sym_export] = ACTIONS(1650), + [anon_sym_alias] = ACTIONS(1650), + [anon_sym_let] = ACTIONS(1650), + [anon_sym_let_DASHenv] = ACTIONS(1650), + [anon_sym_mut] = ACTIONS(1650), + [anon_sym_const] = ACTIONS(1650), + [aux_sym_cmd_identifier_token1] = ACTIONS(1650), [aux_sym_cmd_identifier_token2] = ACTIONS(1648), [aux_sym_cmd_identifier_token3] = ACTIONS(1648), [aux_sym_cmd_identifier_token4] = ACTIONS(1648), [aux_sym_cmd_identifier_token5] = ACTIONS(1648), [aux_sym_cmd_identifier_token6] = ACTIONS(1648), [aux_sym_cmd_identifier_token7] = ACTIONS(1648), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), + [aux_sym_cmd_identifier_token8] = ACTIONS(1650), + [aux_sym_cmd_identifier_token9] = ACTIONS(1650), [aux_sym_cmd_identifier_token10] = ACTIONS(1648), [aux_sym_cmd_identifier_token11] = ACTIONS(1648), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), + [aux_sym_cmd_identifier_token12] = ACTIONS(1650), + [aux_sym_cmd_identifier_token13] = ACTIONS(1650), + [aux_sym_cmd_identifier_token14] = ACTIONS(1650), + [aux_sym_cmd_identifier_token15] = ACTIONS(1650), [aux_sym_cmd_identifier_token16] = ACTIONS(1648), [aux_sym_cmd_identifier_token17] = ACTIONS(1648), [aux_sym_cmd_identifier_token18] = ACTIONS(1648), @@ -110358,520 +109245,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(1648), [aux_sym_cmd_identifier_token32] = ACTIONS(1648), [aux_sym_cmd_identifier_token33] = ACTIONS(1648), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), + [aux_sym_cmd_identifier_token34] = ACTIONS(1650), [aux_sym_cmd_identifier_token35] = ACTIONS(1648), [aux_sym_cmd_identifier_token36] = ACTIONS(1648), [aux_sym_cmd_identifier_token37] = ACTIONS(1648), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), + [aux_sym_cmd_identifier_token38] = ACTIONS(1650), [aux_sym_cmd_identifier_token39] = ACTIONS(1648), [aux_sym_cmd_identifier_token40] = ACTIONS(1648), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), + [sym__newline] = ACTIONS(1648), + [anon_sym_SEMI] = ACTIONS(1648), + [anon_sym_AT] = ACTIONS(1648), + [anon_sym_def] = ACTIONS(1650), + [anon_sym_export_DASHenv] = ACTIONS(1650), + [anon_sym_extern] = ACTIONS(1650), + [anon_sym_module] = ACTIONS(1650), + [anon_sym_use] = ACTIONS(1650), + [anon_sym_LBRACK] = ACTIONS(1648), [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_COMMA] = ACTIONS(1648), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_DASH2] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in2] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_PLUS2] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1648), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [aux_sym__immediate_decimal_token1] = ACTIONS(1652), - [aux_sym__immediate_decimal_token2] = ACTIONS(1654), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1648), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1650), + [anon_sym_error] = ACTIONS(1650), + [anon_sym_DASH2] = ACTIONS(1650), + [anon_sym_break] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(1650), + [anon_sym_for] = ACTIONS(1650), + [anon_sym_loop] = ACTIONS(1650), + [anon_sym_while] = ACTIONS(1650), + [anon_sym_do] = ACTIONS(1650), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_match] = ACTIONS(1650), + [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_DOT_DOT] = ACTIONS(1650), + [anon_sym_try] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_source] = ACTIONS(1650), + [anon_sym_source_DASHenv] = ACTIONS(1650), + [anon_sym_hide] = ACTIONS(1650), + [anon_sym_hide_DASHenv] = ACTIONS(1650), + [anon_sym_overlay] = ACTIONS(1650), + [anon_sym_where] = ACTIONS(1648), + [aux_sym_expr_unary_token1] = ACTIONS(1648), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1648), + [anon_sym_DOT_DOT_LT] = ACTIONS(1648), + [anon_sym_null] = ACTIONS(1650), + [anon_sym_true] = ACTIONS(1650), + [anon_sym_false] = ACTIONS(1650), + [aux_sym__val_number_decimal_token1] = ACTIONS(1650), [aux_sym__val_number_decimal_token2] = ACTIONS(1648), [aux_sym__val_number_decimal_token3] = ACTIONS(1648), [aux_sym__val_number_decimal_token4] = ACTIONS(1648), [aux_sym__val_number_token1] = ACTIONS(1648), [aux_sym__val_number_token2] = ACTIONS(1648), [aux_sym__val_number_token3] = ACTIONS(1648), - [aux_sym__val_number_token4] = ACTIONS(1648), - [aux_sym__val_number_token5] = ACTIONS(1648), - [aux_sym__val_number_token6] = ACTIONS(1648), + [aux_sym__val_number_token4] = ACTIONS(1650), + [aux_sym__val_number_token5] = ACTIONS(1650), + [aux_sym__val_number_token6] = ACTIONS(1650), + [anon_sym_0b] = ACTIONS(1650), + [anon_sym_0o] = ACTIONS(1650), + [anon_sym_0x] = ACTIONS(1650), + [sym_val_date] = ACTIONS(1648), [anon_sym_DQUOTE] = ACTIONS(1648), [sym__str_single_quotes] = ACTIONS(1648), [sym__str_back_ticks] = ACTIONS(1648), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1648), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1648), - [sym__entry_separator] = ACTIONS(1650), - [anon_sym_register] = ACTIONS(1648), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1650), + [aux_sym_env_var_token1] = ACTIONS(1650), + [anon_sym_CARET] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1648), }, [316] = { - [sym__expr_parenthesized_immediate] = STATE(7448), + [sym__expr_parenthesized_immediate] = STATE(659), + [sym__immediate_decimal] = STATE(660), + [sym_val_variable] = STATE(659), [sym_comment] = STATE(316), - [anon_sym_export] = ACTIONS(1579), - [anon_sym_alias] = ACTIONS(1579), - [anon_sym_let] = ACTIONS(1579), - [anon_sym_let_DASHenv] = ACTIONS(1579), - [anon_sym_mut] = ACTIONS(1579), - [anon_sym_const] = ACTIONS(1579), - [aux_sym_cmd_identifier_token1] = ACTIONS(1579), - [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(1579), - [aux_sym_cmd_identifier_token9] = ACTIONS(1579), - [aux_sym_cmd_identifier_token10] = ACTIONS(1591), - [aux_sym_cmd_identifier_token11] = ACTIONS(1591), - [aux_sym_cmd_identifier_token12] = ACTIONS(1579), - [aux_sym_cmd_identifier_token13] = ACTIONS(1579), - [aux_sym_cmd_identifier_token14] = ACTIONS(1579), - [aux_sym_cmd_identifier_token15] = ACTIONS(1579), - [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(1579), - [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(1579), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [anon_sym_def] = ACTIONS(1579), - [anon_sym_export_DASHenv] = ACTIONS(1579), - [anon_sym_extern] = ACTIONS(1579), - [anon_sym_module] = ACTIONS(1579), - [anon_sym_use] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_COMMA] = ACTIONS(1591), - [anon_sym_DOLLAR] = ACTIONS(1579), - [anon_sym_error] = ACTIONS(1579), - [anon_sym_DASH2] = ACTIONS(1579), - [anon_sym_break] = ACTIONS(1579), - [anon_sym_continue] = ACTIONS(1579), - [anon_sym_for] = ACTIONS(1579), - [anon_sym_in2] = ACTIONS(1579), - [anon_sym_loop] = ACTIONS(1579), - [anon_sym_make] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1579), - [anon_sym_if] = ACTIONS(1579), - [anon_sym_else] = ACTIONS(1579), - [anon_sym_match] = ACTIONS(1579), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_try] = ACTIONS(1579), - [anon_sym_catch] = ACTIONS(1579), - [anon_sym_return] = ACTIONS(1579), - [anon_sym_source] = ACTIONS(1579), - [anon_sym_source_DASHenv] = ACTIONS(1579), - [anon_sym_hide] = ACTIONS(1579), - [anon_sym_hide_DASHenv] = ACTIONS(1579), - [anon_sym_overlay] = ACTIONS(1579), - [anon_sym_as] = ACTIONS(1579), - [anon_sym_LPAREN2] = ACTIONS(1581), - [anon_sym_PLUS2] = ACTIONS(1579), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1591), - [anon_sym_DOT_DOT2] = ACTIONS(1656), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1658), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1658), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1591), - [aux_sym__val_number_decimal_token1] = ACTIONS(1579), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [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(1579), - [aux_sym__val_number_token5] = ACTIONS(1579), - [aux_sym__val_number_token6] = ACTIONS(1579), - [sym_filesize_unit] = ACTIONS(1660), - [sym_duration_unit] = ACTIONS(1662), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1591), - [anon_sym_register] = ACTIONS(1579), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1664), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1591), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_alias] = ACTIONS(1632), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_let_DASHenv] = ACTIONS(1632), + [anon_sym_mut] = ACTIONS(1632), + [anon_sym_const] = ACTIONS(1632), + [aux_sym_cmd_identifier_token1] = ACTIONS(1632), + [aux_sym_cmd_identifier_token2] = ACTIONS(1634), + [aux_sym_cmd_identifier_token3] = ACTIONS(1634), + [aux_sym_cmd_identifier_token4] = ACTIONS(1634), + [aux_sym_cmd_identifier_token5] = ACTIONS(1634), + [aux_sym_cmd_identifier_token6] = ACTIONS(1634), + [aux_sym_cmd_identifier_token7] = ACTIONS(1634), + [aux_sym_cmd_identifier_token8] = ACTIONS(1632), + [aux_sym_cmd_identifier_token9] = ACTIONS(1632), + [aux_sym_cmd_identifier_token10] = ACTIONS(1634), + [aux_sym_cmd_identifier_token11] = ACTIONS(1634), + [aux_sym_cmd_identifier_token12] = ACTIONS(1632), + [aux_sym_cmd_identifier_token13] = ACTIONS(1632), + [aux_sym_cmd_identifier_token14] = ACTIONS(1632), + [aux_sym_cmd_identifier_token15] = ACTIONS(1632), + [aux_sym_cmd_identifier_token16] = ACTIONS(1634), + [aux_sym_cmd_identifier_token17] = ACTIONS(1634), + [aux_sym_cmd_identifier_token18] = ACTIONS(1634), + [aux_sym_cmd_identifier_token19] = ACTIONS(1634), + [aux_sym_cmd_identifier_token20] = ACTIONS(1634), + [aux_sym_cmd_identifier_token21] = ACTIONS(1634), + [aux_sym_cmd_identifier_token22] = ACTIONS(1634), + [aux_sym_cmd_identifier_token23] = ACTIONS(1634), + [aux_sym_cmd_identifier_token24] = ACTIONS(1634), + [aux_sym_cmd_identifier_token25] = ACTIONS(1634), + [aux_sym_cmd_identifier_token26] = ACTIONS(1634), + [aux_sym_cmd_identifier_token27] = ACTIONS(1634), + [aux_sym_cmd_identifier_token28] = ACTIONS(1634), + [aux_sym_cmd_identifier_token29] = ACTIONS(1634), + [aux_sym_cmd_identifier_token30] = ACTIONS(1634), + [aux_sym_cmd_identifier_token31] = ACTIONS(1634), + [aux_sym_cmd_identifier_token32] = ACTIONS(1634), + [aux_sym_cmd_identifier_token33] = ACTIONS(1634), + [aux_sym_cmd_identifier_token34] = ACTIONS(1632), + [aux_sym_cmd_identifier_token35] = ACTIONS(1634), + [aux_sym_cmd_identifier_token36] = ACTIONS(1634), + [aux_sym_cmd_identifier_token37] = ACTIONS(1634), + [aux_sym_cmd_identifier_token38] = ACTIONS(1632), + [aux_sym_cmd_identifier_token39] = ACTIONS(1634), + [aux_sym_cmd_identifier_token40] = ACTIONS(1634), + [anon_sym_def] = ACTIONS(1632), + [anon_sym_export_DASHenv] = ACTIONS(1632), + [anon_sym_extern] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_use] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(1632), + [anon_sym_COMMA] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1293), + [anon_sym_error] = ACTIONS(1632), + [anon_sym_DASH2] = ACTIONS(1632), + [anon_sym_break] = ACTIONS(1632), + [anon_sym_continue] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1632), + [anon_sym_in2] = ACTIONS(1632), + [anon_sym_loop] = ACTIONS(1632), + [anon_sym_make] = ACTIONS(1632), + [anon_sym_while] = ACTIONS(1632), + [anon_sym_do] = ACTIONS(1632), + [anon_sym_if] = ACTIONS(1632), + [anon_sym_else] = ACTIONS(1632), + [anon_sym_match] = ACTIONS(1632), + [anon_sym_RBRACE] = ACTIONS(1634), + [anon_sym_try] = ACTIONS(1632), + [anon_sym_catch] = ACTIONS(1632), + [anon_sym_return] = ACTIONS(1632), + [anon_sym_source] = ACTIONS(1632), + [anon_sym_source_DASHenv] = ACTIONS(1632), + [anon_sym_hide] = ACTIONS(1632), + [anon_sym_hide_DASHenv] = ACTIONS(1632), + [anon_sym_overlay] = ACTIONS(1632), + [anon_sym_as] = ACTIONS(1632), + [anon_sym_LPAREN2] = ACTIONS(1548), + [anon_sym_PLUS2] = ACTIONS(1632), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1634), + [aux_sym__immediate_decimal_token1] = ACTIONS(1652), + [aux_sym__immediate_decimal_token3] = ACTIONS(1654), + [aux_sym__immediate_decimal_token4] = ACTIONS(1656), + [aux_sym__immediate_decimal_token5] = ACTIONS(1658), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1634), + [aux_sym__val_number_decimal_token1] = ACTIONS(1632), + [aux_sym__val_number_decimal_token2] = ACTIONS(1632), + [aux_sym__val_number_decimal_token3] = ACTIONS(1632), + [aux_sym__val_number_decimal_token4] = ACTIONS(1632), + [aux_sym__val_number_token1] = ACTIONS(1634), + [aux_sym__val_number_token2] = ACTIONS(1634), + [aux_sym__val_number_token3] = ACTIONS(1634), + [aux_sym__val_number_token4] = ACTIONS(1632), + [aux_sym__val_number_token5] = ACTIONS(1632), + [aux_sym__val_number_token6] = ACTIONS(1632), + [anon_sym_DQUOTE] = ACTIONS(1634), + [sym__str_single_quotes] = ACTIONS(1634), + [sym__str_back_ticks] = ACTIONS(1634), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1634), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1634), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1634), + [anon_sym_register] = ACTIONS(1632), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1634), }, [317] = { [sym_comment] = STATE(317), - [anon_sym_export] = ACTIONS(1280), - [anon_sym_alias] = ACTIONS(1280), - [anon_sym_let] = ACTIONS(1280), - [anon_sym_let_DASHenv] = ACTIONS(1280), - [anon_sym_mut] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [aux_sym_cmd_identifier_token1] = ACTIONS(1280), - [aux_sym_cmd_identifier_token2] = ACTIONS(1278), - [aux_sym_cmd_identifier_token3] = ACTIONS(1278), - [aux_sym_cmd_identifier_token4] = ACTIONS(1278), - [aux_sym_cmd_identifier_token5] = ACTIONS(1278), - [aux_sym_cmd_identifier_token6] = ACTIONS(1278), - [aux_sym_cmd_identifier_token7] = ACTIONS(1278), - [aux_sym_cmd_identifier_token8] = ACTIONS(1280), - [aux_sym_cmd_identifier_token9] = ACTIONS(1280), - [aux_sym_cmd_identifier_token10] = ACTIONS(1278), - [aux_sym_cmd_identifier_token11] = ACTIONS(1278), - [aux_sym_cmd_identifier_token12] = ACTIONS(1280), - [aux_sym_cmd_identifier_token13] = ACTIONS(1280), - [aux_sym_cmd_identifier_token14] = ACTIONS(1280), - [aux_sym_cmd_identifier_token15] = ACTIONS(1280), - [aux_sym_cmd_identifier_token16] = ACTIONS(1278), - [aux_sym_cmd_identifier_token17] = ACTIONS(1278), - [aux_sym_cmd_identifier_token18] = ACTIONS(1278), - [aux_sym_cmd_identifier_token19] = ACTIONS(1278), - [aux_sym_cmd_identifier_token20] = ACTIONS(1278), - [aux_sym_cmd_identifier_token21] = ACTIONS(1278), - [aux_sym_cmd_identifier_token22] = ACTIONS(1278), - [aux_sym_cmd_identifier_token23] = ACTIONS(1278), - [aux_sym_cmd_identifier_token24] = ACTIONS(1278), - [aux_sym_cmd_identifier_token25] = ACTIONS(1278), - [aux_sym_cmd_identifier_token26] = ACTIONS(1278), - [aux_sym_cmd_identifier_token27] = ACTIONS(1278), - [aux_sym_cmd_identifier_token28] = ACTIONS(1278), - [aux_sym_cmd_identifier_token29] = ACTIONS(1278), - [aux_sym_cmd_identifier_token30] = ACTIONS(1278), - [aux_sym_cmd_identifier_token31] = ACTIONS(1278), - [aux_sym_cmd_identifier_token32] = ACTIONS(1278), - [aux_sym_cmd_identifier_token33] = ACTIONS(1278), - [aux_sym_cmd_identifier_token34] = ACTIONS(1280), - [aux_sym_cmd_identifier_token35] = ACTIONS(1278), - [aux_sym_cmd_identifier_token36] = ACTIONS(1278), - [aux_sym_cmd_identifier_token37] = ACTIONS(1278), - [aux_sym_cmd_identifier_token38] = ACTIONS(1280), - [aux_sym_cmd_identifier_token39] = ACTIONS(1278), - [aux_sym_cmd_identifier_token40] = ACTIONS(1278), - [sym__newline] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_PIPE] = ACTIONS(1278), - [anon_sym_AT] = ACTIONS(1278), - [anon_sym_def] = ACTIONS(1280), - [anon_sym_export_DASHenv] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym_module] = ACTIONS(1280), - [anon_sym_use] = ACTIONS(1280), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_DOLLAR] = ACTIONS(1280), - [anon_sym_error] = ACTIONS(1280), - [anon_sym_DASH2] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_loop] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [anon_sym_try] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_source] = ACTIONS(1280), - [anon_sym_source_DASHenv] = ACTIONS(1280), - [anon_sym_hide] = ACTIONS(1280), - [anon_sym_hide_DASHenv] = ACTIONS(1280), - [anon_sym_overlay] = ACTIONS(1280), - [anon_sym_where] = ACTIONS(1278), - [aux_sym_expr_unary_token1] = ACTIONS(1278), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1278), - [anon_sym_DOT_DOT_LT] = ACTIONS(1278), - [anon_sym_null] = ACTIONS(1280), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1278), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), - [aux_sym__val_number_token1] = ACTIONS(1278), - [aux_sym__val_number_token2] = ACTIONS(1278), - [aux_sym__val_number_token3] = ACTIONS(1278), - [aux_sym__val_number_token4] = ACTIONS(1280), - [aux_sym__val_number_token5] = ACTIONS(1280), - [aux_sym__val_number_token6] = ACTIONS(1280), - [anon_sym_0b] = ACTIONS(1280), - [anon_sym_0o] = ACTIONS(1280), - [anon_sym_0x] = ACTIONS(1280), - [sym_val_date] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym__str_single_quotes] = ACTIONS(1278), - [sym__str_back_ticks] = ACTIONS(1278), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1278), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1278), - [aux_sym_env_var_token1] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1278), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1278), + [aux_sym_shebang_repeat1] = STATE(226), + [anon_sym_export] = ACTIONS(1660), + [anon_sym_alias] = ACTIONS(1660), + [anon_sym_let] = ACTIONS(1660), + [anon_sym_let_DASHenv] = ACTIONS(1660), + [anon_sym_mut] = ACTIONS(1660), + [anon_sym_const] = ACTIONS(1660), + [aux_sym_cmd_identifier_token1] = ACTIONS(1660), + [aux_sym_cmd_identifier_token2] = ACTIONS(1662), + [aux_sym_cmd_identifier_token3] = ACTIONS(1662), + [aux_sym_cmd_identifier_token4] = ACTIONS(1662), + [aux_sym_cmd_identifier_token5] = ACTIONS(1662), + [aux_sym_cmd_identifier_token6] = ACTIONS(1662), + [aux_sym_cmd_identifier_token7] = ACTIONS(1662), + [aux_sym_cmd_identifier_token8] = ACTIONS(1660), + [aux_sym_cmd_identifier_token9] = ACTIONS(1660), + [aux_sym_cmd_identifier_token10] = ACTIONS(1662), + [aux_sym_cmd_identifier_token11] = ACTIONS(1662), + [aux_sym_cmd_identifier_token12] = ACTIONS(1660), + [aux_sym_cmd_identifier_token13] = ACTIONS(1660), + [aux_sym_cmd_identifier_token14] = ACTIONS(1660), + [aux_sym_cmd_identifier_token15] = ACTIONS(1660), + [aux_sym_cmd_identifier_token16] = ACTIONS(1662), + [aux_sym_cmd_identifier_token17] = ACTIONS(1662), + [aux_sym_cmd_identifier_token18] = ACTIONS(1662), + [aux_sym_cmd_identifier_token19] = ACTIONS(1662), + [aux_sym_cmd_identifier_token20] = ACTIONS(1662), + [aux_sym_cmd_identifier_token21] = ACTIONS(1662), + [aux_sym_cmd_identifier_token22] = ACTIONS(1662), + [aux_sym_cmd_identifier_token23] = ACTIONS(1662), + [aux_sym_cmd_identifier_token24] = ACTIONS(1662), + [aux_sym_cmd_identifier_token25] = ACTIONS(1662), + [aux_sym_cmd_identifier_token26] = ACTIONS(1662), + [aux_sym_cmd_identifier_token27] = ACTIONS(1662), + [aux_sym_cmd_identifier_token28] = ACTIONS(1662), + [aux_sym_cmd_identifier_token29] = ACTIONS(1662), + [aux_sym_cmd_identifier_token30] = ACTIONS(1662), + [aux_sym_cmd_identifier_token31] = ACTIONS(1662), + [aux_sym_cmd_identifier_token32] = ACTIONS(1662), + [aux_sym_cmd_identifier_token33] = ACTIONS(1662), + [aux_sym_cmd_identifier_token34] = ACTIONS(1660), + [aux_sym_cmd_identifier_token35] = ACTIONS(1662), + [aux_sym_cmd_identifier_token36] = ACTIONS(1662), + [aux_sym_cmd_identifier_token37] = ACTIONS(1662), + [aux_sym_cmd_identifier_token38] = ACTIONS(1660), + [aux_sym_cmd_identifier_token39] = ACTIONS(1662), + [aux_sym_cmd_identifier_token40] = ACTIONS(1662), + [sym__newline] = ACTIONS(1640), + [anon_sym_SEMI] = ACTIONS(1664), + [anon_sym_AT] = ACTIONS(1662), + [anon_sym_def] = ACTIONS(1660), + [anon_sym_export_DASHenv] = ACTIONS(1660), + [anon_sym_extern] = ACTIONS(1660), + [anon_sym_module] = ACTIONS(1660), + [anon_sym_use] = ACTIONS(1660), + [anon_sym_LBRACK] = ACTIONS(1662), + [anon_sym_LPAREN] = ACTIONS(1662), + [anon_sym_DOLLAR] = ACTIONS(1660), + [anon_sym_error] = ACTIONS(1660), + [anon_sym_DASH2] = ACTIONS(1660), + [anon_sym_break] = ACTIONS(1660), + [anon_sym_continue] = ACTIONS(1660), + [anon_sym_for] = ACTIONS(1660), + [anon_sym_loop] = ACTIONS(1660), + [anon_sym_while] = ACTIONS(1660), + [anon_sym_do] = ACTIONS(1660), + [anon_sym_if] = ACTIONS(1660), + [anon_sym_match] = ACTIONS(1660), + [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_DOT_DOT] = ACTIONS(1660), + [anon_sym_try] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1660), + [anon_sym_source] = ACTIONS(1660), + [anon_sym_source_DASHenv] = ACTIONS(1660), + [anon_sym_hide] = ACTIONS(1660), + [anon_sym_hide_DASHenv] = ACTIONS(1660), + [anon_sym_overlay] = ACTIONS(1660), + [anon_sym_where] = ACTIONS(1662), + [aux_sym_expr_unary_token1] = ACTIONS(1662), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1662), + [anon_sym_DOT_DOT_LT] = ACTIONS(1662), + [anon_sym_null] = ACTIONS(1660), + [anon_sym_true] = ACTIONS(1660), + [anon_sym_false] = ACTIONS(1660), + [aux_sym__val_number_decimal_token1] = ACTIONS(1660), + [aux_sym__val_number_decimal_token2] = ACTIONS(1662), + [aux_sym__val_number_decimal_token3] = ACTIONS(1662), + [aux_sym__val_number_decimal_token4] = ACTIONS(1662), + [aux_sym__val_number_token1] = ACTIONS(1662), + [aux_sym__val_number_token2] = ACTIONS(1662), + [aux_sym__val_number_token3] = ACTIONS(1662), + [aux_sym__val_number_token4] = ACTIONS(1660), + [aux_sym__val_number_token5] = ACTIONS(1660), + [aux_sym__val_number_token6] = ACTIONS(1660), + [anon_sym_0b] = ACTIONS(1660), + [anon_sym_0o] = ACTIONS(1660), + [anon_sym_0x] = ACTIONS(1660), + [sym_val_date] = ACTIONS(1662), + [anon_sym_DQUOTE] = ACTIONS(1662), + [sym__str_single_quotes] = ACTIONS(1662), + [sym__str_back_ticks] = ACTIONS(1662), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1662), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1662), + [aux_sym_env_var_token1] = ACTIONS(1660), + [anon_sym_CARET] = ACTIONS(1662), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1662), }, [318] = { + [sym__expr_parenthesized_immediate] = STATE(661), + [sym__immediate_decimal] = STATE(663), + [sym_val_variable] = STATE(661), [sym_comment] = STATE(318), - [anon_sym_export] = ACTIONS(1666), - [anon_sym_alias] = ACTIONS(1666), - [anon_sym_let] = ACTIONS(1666), - [anon_sym_let_DASHenv] = ACTIONS(1666), - [anon_sym_mut] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [aux_sym_cmd_identifier_token1] = ACTIONS(1666), - [aux_sym_cmd_identifier_token2] = ACTIONS(1666), - [aux_sym_cmd_identifier_token3] = ACTIONS(1666), - [aux_sym_cmd_identifier_token4] = ACTIONS(1666), - [aux_sym_cmd_identifier_token5] = ACTIONS(1666), - [aux_sym_cmd_identifier_token6] = ACTIONS(1666), - [aux_sym_cmd_identifier_token7] = ACTIONS(1666), - [aux_sym_cmd_identifier_token8] = ACTIONS(1666), - [aux_sym_cmd_identifier_token9] = ACTIONS(1666), - [aux_sym_cmd_identifier_token10] = ACTIONS(1666), - [aux_sym_cmd_identifier_token11] = ACTIONS(1666), - [aux_sym_cmd_identifier_token12] = ACTIONS(1666), - [aux_sym_cmd_identifier_token13] = ACTIONS(1666), - [aux_sym_cmd_identifier_token14] = ACTIONS(1666), - [aux_sym_cmd_identifier_token15] = ACTIONS(1666), - [aux_sym_cmd_identifier_token16] = ACTIONS(1666), - [aux_sym_cmd_identifier_token17] = ACTIONS(1666), - [aux_sym_cmd_identifier_token18] = ACTIONS(1666), - [aux_sym_cmd_identifier_token19] = ACTIONS(1666), - [aux_sym_cmd_identifier_token20] = ACTIONS(1666), - [aux_sym_cmd_identifier_token21] = ACTIONS(1666), - [aux_sym_cmd_identifier_token22] = ACTIONS(1666), - [aux_sym_cmd_identifier_token23] = ACTIONS(1666), - [aux_sym_cmd_identifier_token24] = ACTIONS(1666), - [aux_sym_cmd_identifier_token25] = ACTIONS(1666), - [aux_sym_cmd_identifier_token26] = ACTIONS(1666), - [aux_sym_cmd_identifier_token27] = ACTIONS(1666), - [aux_sym_cmd_identifier_token28] = ACTIONS(1666), - [aux_sym_cmd_identifier_token29] = ACTIONS(1666), - [aux_sym_cmd_identifier_token30] = ACTIONS(1666), - [aux_sym_cmd_identifier_token31] = ACTIONS(1666), - [aux_sym_cmd_identifier_token32] = ACTIONS(1666), - [aux_sym_cmd_identifier_token33] = ACTIONS(1666), - [aux_sym_cmd_identifier_token34] = ACTIONS(1666), - [aux_sym_cmd_identifier_token35] = ACTIONS(1666), - [aux_sym_cmd_identifier_token36] = ACTIONS(1666), - [aux_sym_cmd_identifier_token37] = ACTIONS(1666), - [aux_sym_cmd_identifier_token38] = ACTIONS(1666), - [aux_sym_cmd_identifier_token39] = ACTIONS(1666), - [aux_sym_cmd_identifier_token40] = ACTIONS(1666), - [anon_sym_def] = ACTIONS(1666), - [anon_sym_export_DASHenv] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_module] = ACTIONS(1666), - [anon_sym_use] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_COMMA] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_error] = ACTIONS(1666), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_in2] = ACTIONS(1666), - [anon_sym_loop] = ACTIONS(1666), - [anon_sym_make] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_do] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_match] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(1666), - [anon_sym_try] = ACTIONS(1666), - [anon_sym_catch] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_source] = ACTIONS(1666), - [anon_sym_source_DASHenv] = ACTIONS(1666), - [anon_sym_hide] = ACTIONS(1666), - [anon_sym_hide_DASHenv] = ACTIONS(1666), - [anon_sym_overlay] = ACTIONS(1666), - [anon_sym_as] = ACTIONS(1666), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_PLUS2] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1666), - [anon_sym_DOT_DOT2] = ACTIONS(1666), - [anon_sym_DOT] = ACTIONS(1670), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [aux_sym__immediate_decimal_token2] = ACTIONS(1672), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1666), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1666), - [aux_sym__val_number_decimal_token3] = ACTIONS(1666), - [aux_sym__val_number_decimal_token4] = ACTIONS(1666), - [aux_sym__val_number_token1] = ACTIONS(1666), - [aux_sym__val_number_token2] = ACTIONS(1666), - [aux_sym__val_number_token3] = ACTIONS(1666), - [aux_sym__val_number_token4] = ACTIONS(1666), - [aux_sym__val_number_token5] = ACTIONS(1666), - [aux_sym__val_number_token6] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1666), - [sym__str_single_quotes] = ACTIONS(1666), - [sym__str_back_ticks] = ACTIONS(1666), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1666), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1666), - [sym__entry_separator] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1666), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1668), - }, - [319] = { - [sym__expr_parenthesized_immediate] = STATE(745), - [sym__immediate_decimal] = STATE(746), - [sym_val_variable] = STATE(745), - [sym_comment] = STATE(319), - [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(1482), - [aux_sym_cmd_identifier_token3] = ACTIONS(1482), - [aux_sym_cmd_identifier_token4] = ACTIONS(1482), - [aux_sym_cmd_identifier_token5] = ACTIONS(1482), - [aux_sym_cmd_identifier_token6] = ACTIONS(1482), - [aux_sym_cmd_identifier_token7] = ACTIONS(1482), - [aux_sym_cmd_identifier_token8] = ACTIONS(1472), - [aux_sym_cmd_identifier_token9] = ACTIONS(1472), - [aux_sym_cmd_identifier_token10] = ACTIONS(1482), - [aux_sym_cmd_identifier_token11] = ACTIONS(1482), - [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(1482), - [aux_sym_cmd_identifier_token17] = ACTIONS(1482), - [aux_sym_cmd_identifier_token18] = ACTIONS(1482), - [aux_sym_cmd_identifier_token19] = ACTIONS(1482), - [aux_sym_cmd_identifier_token20] = ACTIONS(1482), - [aux_sym_cmd_identifier_token21] = ACTIONS(1482), - [aux_sym_cmd_identifier_token22] = ACTIONS(1482), - [aux_sym_cmd_identifier_token23] = ACTIONS(1482), - [aux_sym_cmd_identifier_token24] = ACTIONS(1482), - [aux_sym_cmd_identifier_token25] = ACTIONS(1482), - [aux_sym_cmd_identifier_token26] = ACTIONS(1482), - [aux_sym_cmd_identifier_token27] = ACTIONS(1482), - [aux_sym_cmd_identifier_token28] = ACTIONS(1482), - [aux_sym_cmd_identifier_token29] = ACTIONS(1482), - [aux_sym_cmd_identifier_token30] = ACTIONS(1482), - [aux_sym_cmd_identifier_token31] = ACTIONS(1482), - [aux_sym_cmd_identifier_token32] = ACTIONS(1482), - [aux_sym_cmd_identifier_token33] = ACTIONS(1482), - [aux_sym_cmd_identifier_token34] = ACTIONS(1472), - [aux_sym_cmd_identifier_token35] = ACTIONS(1482), - [aux_sym_cmd_identifier_token36] = ACTIONS(1482), - [aux_sym_cmd_identifier_token37] = ACTIONS(1482), - [aux_sym_cmd_identifier_token38] = ACTIONS(1472), - [aux_sym_cmd_identifier_token39] = ACTIONS(1482), - [aux_sym_cmd_identifier_token40] = ACTIONS(1482), - [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_LPAREN] = ACTIONS(1472), - [anon_sym_COMMA] = ACTIONS(1482), - [anon_sym_DOLLAR] = ACTIONS(1355), - [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_in2] = ACTIONS(1472), - [anon_sym_loop] = ACTIONS(1472), - [anon_sym_make] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_else] = ACTIONS(1472), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1482), - [anon_sym_try] = ACTIONS(1472), - [anon_sym_catch] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_source] = ACTIONS(1472), - [anon_sym_source_DASHenv] = ACTIONS(1472), - [anon_sym_hide] = ACTIONS(1472), - [anon_sym_hide_DASHenv] = ACTIONS(1472), - [anon_sym_overlay] = ACTIONS(1472), - [anon_sym_as] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(1565), - [anon_sym_PLUS2] = ACTIONS(1472), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1482), - [aux_sym__immediate_decimal_token1] = ACTIONS(1674), - [aux_sym__immediate_decimal_token3] = ACTIONS(1676), - [aux_sym__immediate_decimal_token4] = ACTIONS(1678), - [aux_sym__immediate_decimal_token5] = ACTIONS(1680), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1482), - [aux_sym__val_number_decimal_token1] = ACTIONS(1472), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1482), - [aux_sym__val_number_token2] = ACTIONS(1482), - [aux_sym__val_number_token3] = ACTIONS(1482), - [aux_sym__val_number_token4] = ACTIONS(1472), - [aux_sym__val_number_token5] = ACTIONS(1472), - [aux_sym__val_number_token6] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym__str_single_quotes] = ACTIONS(1482), - [sym__str_back_ticks] = ACTIONS(1482), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1482), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1482), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1482), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1482), - }, - [320] = { - [sym__expr_parenthesized_immediate] = STATE(715), - [sym__immediate_decimal] = STATE(716), - [sym_val_variable] = STATE(715), - [sym_comment] = STATE(320), [anon_sym_export] = ACTIONS(1644), [anon_sym_alias] = ACTIONS(1644), [anon_sym_let] = ACTIONS(1644), @@ -110925,7 +109591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1644), [anon_sym_LPAREN] = ACTIONS(1644), [anon_sym_COMMA] = ACTIONS(1646), - [anon_sym_DOLLAR] = ACTIONS(1355), + [anon_sym_DOLLAR] = ACTIONS(1293), [anon_sym_error] = ACTIONS(1644), [anon_sym_DASH2] = ACTIONS(1644), [anon_sym_break] = ACTIONS(1644), @@ -110949,13 +109615,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(1644), [anon_sym_overlay] = ACTIONS(1644), [anon_sym_as] = ACTIONS(1644), - [anon_sym_LPAREN2] = ACTIONS(1565), + [anon_sym_LPAREN2] = ACTIONS(1548), [anon_sym_PLUS2] = ACTIONS(1644), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1646), - [aux_sym__immediate_decimal_token1] = ACTIONS(1674), - [aux_sym__immediate_decimal_token3] = ACTIONS(1676), - [aux_sym__immediate_decimal_token4] = ACTIONS(1678), - [aux_sym__immediate_decimal_token5] = ACTIONS(1680), + [aux_sym__immediate_decimal_token1] = ACTIONS(1652), + [aux_sym__immediate_decimal_token3] = ACTIONS(1654), + [aux_sym__immediate_decimal_token4] = ACTIONS(1656), + [aux_sym__immediate_decimal_token5] = ACTIONS(1658), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1646), [aux_sym__val_number_decimal_token1] = ACTIONS(1644), [aux_sym__val_number_decimal_token2] = ACTIONS(1644), @@ -110977,231 +109643,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(1646), }, - [321] = { - [sym_comment] = STATE(321), - [ts_builtin_sym_end] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1684), - [anon_sym_alias] = ACTIONS(1684), - [anon_sym_let] = ACTIONS(1684), - [anon_sym_let_DASHenv] = ACTIONS(1684), - [anon_sym_mut] = ACTIONS(1684), - [anon_sym_const] = ACTIONS(1684), - [aux_sym_cmd_identifier_token1] = ACTIONS(1684), - [aux_sym_cmd_identifier_token2] = ACTIONS(1682), - [aux_sym_cmd_identifier_token3] = ACTIONS(1682), - [aux_sym_cmd_identifier_token4] = ACTIONS(1682), - [aux_sym_cmd_identifier_token5] = ACTIONS(1682), - [aux_sym_cmd_identifier_token6] = ACTIONS(1682), - [aux_sym_cmd_identifier_token7] = ACTIONS(1682), - [aux_sym_cmd_identifier_token8] = ACTIONS(1684), - [aux_sym_cmd_identifier_token9] = ACTIONS(1684), - [aux_sym_cmd_identifier_token10] = ACTIONS(1682), - [aux_sym_cmd_identifier_token11] = ACTIONS(1682), - [aux_sym_cmd_identifier_token12] = ACTIONS(1684), - [aux_sym_cmd_identifier_token13] = ACTIONS(1684), - [aux_sym_cmd_identifier_token14] = ACTIONS(1684), - [aux_sym_cmd_identifier_token15] = ACTIONS(1684), - [aux_sym_cmd_identifier_token16] = ACTIONS(1682), - [aux_sym_cmd_identifier_token17] = ACTIONS(1682), - [aux_sym_cmd_identifier_token18] = ACTIONS(1682), - [aux_sym_cmd_identifier_token19] = ACTIONS(1682), - [aux_sym_cmd_identifier_token20] = ACTIONS(1682), - [aux_sym_cmd_identifier_token21] = ACTIONS(1682), - [aux_sym_cmd_identifier_token22] = ACTIONS(1682), - [aux_sym_cmd_identifier_token23] = ACTIONS(1682), - [aux_sym_cmd_identifier_token24] = ACTIONS(1682), - [aux_sym_cmd_identifier_token25] = ACTIONS(1682), - [aux_sym_cmd_identifier_token26] = ACTIONS(1682), - [aux_sym_cmd_identifier_token27] = ACTIONS(1682), - [aux_sym_cmd_identifier_token28] = ACTIONS(1682), - [aux_sym_cmd_identifier_token29] = ACTIONS(1682), - [aux_sym_cmd_identifier_token30] = ACTIONS(1682), - [aux_sym_cmd_identifier_token31] = ACTIONS(1682), - [aux_sym_cmd_identifier_token32] = ACTIONS(1682), - [aux_sym_cmd_identifier_token33] = ACTIONS(1682), - [aux_sym_cmd_identifier_token34] = ACTIONS(1684), - [aux_sym_cmd_identifier_token35] = ACTIONS(1682), - [aux_sym_cmd_identifier_token36] = ACTIONS(1682), - [aux_sym_cmd_identifier_token37] = ACTIONS(1682), - [aux_sym_cmd_identifier_token38] = ACTIONS(1684), - [aux_sym_cmd_identifier_token39] = ACTIONS(1682), - [aux_sym_cmd_identifier_token40] = ACTIONS(1682), - [sym__newline] = ACTIONS(1682), - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_AT] = ACTIONS(1682), - [anon_sym_def] = ACTIONS(1684), - [anon_sym_export_DASHenv] = ACTIONS(1684), - [anon_sym_extern] = ACTIONS(1684), - [anon_sym_module] = ACTIONS(1684), - [anon_sym_use] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_DOLLAR] = ACTIONS(1684), - [anon_sym_error] = ACTIONS(1684), - [anon_sym_DASH2] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_loop] = ACTIONS(1684), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_do] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_match] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_DOT_DOT] = ACTIONS(1684), - [anon_sym_try] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_source] = ACTIONS(1684), - [anon_sym_source_DASHenv] = ACTIONS(1684), - [anon_sym_hide] = ACTIONS(1684), - [anon_sym_hide_DASHenv] = ACTIONS(1684), - [anon_sym_overlay] = ACTIONS(1684), - [anon_sym_where] = ACTIONS(1682), - [aux_sym_expr_unary_token1] = ACTIONS(1682), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1682), - [anon_sym_DOT_DOT_LT] = ACTIONS(1682), - [anon_sym_null] = ACTIONS(1684), - [anon_sym_true] = ACTIONS(1684), - [anon_sym_false] = ACTIONS(1684), - [aux_sym__val_number_decimal_token1] = ACTIONS(1684), - [aux_sym__val_number_decimal_token2] = ACTIONS(1682), - [aux_sym__val_number_decimal_token3] = ACTIONS(1682), - [aux_sym__val_number_decimal_token4] = ACTIONS(1682), - [aux_sym__val_number_token1] = ACTIONS(1682), - [aux_sym__val_number_token2] = ACTIONS(1682), - [aux_sym__val_number_token3] = ACTIONS(1682), - [aux_sym__val_number_token4] = ACTIONS(1684), - [aux_sym__val_number_token5] = ACTIONS(1684), - [aux_sym__val_number_token6] = ACTIONS(1684), - [anon_sym_0b] = ACTIONS(1684), - [anon_sym_0o] = ACTIONS(1684), - [anon_sym_0x] = ACTIONS(1684), - [sym_val_date] = ACTIONS(1682), - [anon_sym_DQUOTE] = ACTIONS(1682), - [sym__str_single_quotes] = ACTIONS(1682), - [sym__str_back_ticks] = ACTIONS(1682), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1682), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1682), - [aux_sym_env_var_token1] = ACTIONS(1684), - [anon_sym_CARET] = ACTIONS(1682), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1682), - }, - [322] = { - [sym_comment] = STATE(322), - [ts_builtin_sym_end] = ACTIONS(1686), - [anon_sym_export] = ACTIONS(1688), - [anon_sym_alias] = ACTIONS(1688), - [anon_sym_let] = ACTIONS(1688), - [anon_sym_let_DASHenv] = ACTIONS(1688), - [anon_sym_mut] = ACTIONS(1688), - [anon_sym_const] = ACTIONS(1688), - [aux_sym_cmd_identifier_token1] = ACTIONS(1688), - [aux_sym_cmd_identifier_token2] = ACTIONS(1686), - [aux_sym_cmd_identifier_token3] = ACTIONS(1686), - [aux_sym_cmd_identifier_token4] = ACTIONS(1686), - [aux_sym_cmd_identifier_token5] = ACTIONS(1686), - [aux_sym_cmd_identifier_token6] = ACTIONS(1686), - [aux_sym_cmd_identifier_token7] = ACTIONS(1686), - [aux_sym_cmd_identifier_token8] = ACTIONS(1688), - [aux_sym_cmd_identifier_token9] = ACTIONS(1688), - [aux_sym_cmd_identifier_token10] = ACTIONS(1686), - [aux_sym_cmd_identifier_token11] = ACTIONS(1686), - [aux_sym_cmd_identifier_token12] = ACTIONS(1688), - [aux_sym_cmd_identifier_token13] = ACTIONS(1688), - [aux_sym_cmd_identifier_token14] = ACTIONS(1688), - [aux_sym_cmd_identifier_token15] = ACTIONS(1688), - [aux_sym_cmd_identifier_token16] = ACTIONS(1686), - [aux_sym_cmd_identifier_token17] = ACTIONS(1686), - [aux_sym_cmd_identifier_token18] = ACTIONS(1686), - [aux_sym_cmd_identifier_token19] = ACTIONS(1686), - [aux_sym_cmd_identifier_token20] = ACTIONS(1686), - [aux_sym_cmd_identifier_token21] = ACTIONS(1686), - [aux_sym_cmd_identifier_token22] = ACTIONS(1686), - [aux_sym_cmd_identifier_token23] = ACTIONS(1686), - [aux_sym_cmd_identifier_token24] = ACTIONS(1686), - [aux_sym_cmd_identifier_token25] = ACTIONS(1686), - [aux_sym_cmd_identifier_token26] = ACTIONS(1686), - [aux_sym_cmd_identifier_token27] = ACTIONS(1686), - [aux_sym_cmd_identifier_token28] = ACTIONS(1686), - [aux_sym_cmd_identifier_token29] = ACTIONS(1686), - [aux_sym_cmd_identifier_token30] = ACTIONS(1686), - [aux_sym_cmd_identifier_token31] = ACTIONS(1686), - [aux_sym_cmd_identifier_token32] = ACTIONS(1686), - [aux_sym_cmd_identifier_token33] = ACTIONS(1686), - [aux_sym_cmd_identifier_token34] = ACTIONS(1688), - [aux_sym_cmd_identifier_token35] = ACTIONS(1686), - [aux_sym_cmd_identifier_token36] = ACTIONS(1686), - [aux_sym_cmd_identifier_token37] = ACTIONS(1686), - [aux_sym_cmd_identifier_token38] = ACTIONS(1688), - [aux_sym_cmd_identifier_token39] = ACTIONS(1686), - [aux_sym_cmd_identifier_token40] = ACTIONS(1686), - [sym__newline] = ACTIONS(1686), - [anon_sym_SEMI] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1686), - [anon_sym_def] = ACTIONS(1688), - [anon_sym_export_DASHenv] = ACTIONS(1688), - [anon_sym_extern] = ACTIONS(1688), - [anon_sym_module] = ACTIONS(1688), - [anon_sym_use] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(1686), - [anon_sym_LPAREN] = ACTIONS(1686), - [anon_sym_DOLLAR] = ACTIONS(1688), - [anon_sym_error] = ACTIONS(1688), - [anon_sym_DASH2] = ACTIONS(1688), - [anon_sym_break] = ACTIONS(1688), - [anon_sym_continue] = ACTIONS(1688), - [anon_sym_for] = ACTIONS(1688), - [anon_sym_loop] = ACTIONS(1688), - [anon_sym_while] = ACTIONS(1688), - [anon_sym_do] = ACTIONS(1688), - [anon_sym_if] = ACTIONS(1688), - [anon_sym_match] = ACTIONS(1688), - [anon_sym_LBRACE] = ACTIONS(1686), - [anon_sym_DOT_DOT] = ACTIONS(1688), - [anon_sym_try] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1688), - [anon_sym_source] = ACTIONS(1688), - [anon_sym_source_DASHenv] = ACTIONS(1688), - [anon_sym_hide] = ACTIONS(1688), - [anon_sym_hide_DASHenv] = ACTIONS(1688), - [anon_sym_overlay] = ACTIONS(1688), - [anon_sym_where] = ACTIONS(1686), - [aux_sym_expr_unary_token1] = ACTIONS(1686), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1686), - [anon_sym_DOT_DOT_LT] = ACTIONS(1686), - [anon_sym_null] = ACTIONS(1688), - [anon_sym_true] = ACTIONS(1688), - [anon_sym_false] = ACTIONS(1688), - [aux_sym__val_number_decimal_token1] = ACTIONS(1688), - [aux_sym__val_number_decimal_token2] = ACTIONS(1686), - [aux_sym__val_number_decimal_token3] = ACTIONS(1686), - [aux_sym__val_number_decimal_token4] = ACTIONS(1686), - [aux_sym__val_number_token1] = ACTIONS(1686), - [aux_sym__val_number_token2] = ACTIONS(1686), - [aux_sym__val_number_token3] = ACTIONS(1686), - [aux_sym__val_number_token4] = ACTIONS(1688), - [aux_sym__val_number_token5] = ACTIONS(1688), - [aux_sym__val_number_token6] = ACTIONS(1688), - [anon_sym_0b] = ACTIONS(1688), - [anon_sym_0o] = ACTIONS(1688), - [anon_sym_0x] = ACTIONS(1688), - [sym_val_date] = ACTIONS(1686), - [anon_sym_DQUOTE] = ACTIONS(1686), - [sym__str_single_quotes] = ACTIONS(1686), - [sym__str_back_ticks] = ACTIONS(1686), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1686), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1686), - [aux_sym_env_var_token1] = ACTIONS(1688), - [anon_sym_CARET] = ACTIONS(1686), + [319] = { + [sym_comment] = STATE(319), + [ts_builtin_sym_end] = ACTIONS(1289), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_alias] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_let_DASHenv] = ACTIONS(1595), + [anon_sym_mut] = ACTIONS(1595), + [anon_sym_const] = ACTIONS(1595), + [aux_sym_cmd_identifier_token1] = ACTIONS(1595), + [aux_sym_cmd_identifier_token2] = ACTIONS(1289), + [aux_sym_cmd_identifier_token3] = ACTIONS(1289), + [aux_sym_cmd_identifier_token4] = ACTIONS(1289), + [aux_sym_cmd_identifier_token5] = ACTIONS(1289), + [aux_sym_cmd_identifier_token6] = ACTIONS(1289), + [aux_sym_cmd_identifier_token7] = ACTIONS(1289), + [aux_sym_cmd_identifier_token8] = ACTIONS(1595), + [aux_sym_cmd_identifier_token9] = ACTIONS(1595), + [aux_sym_cmd_identifier_token10] = ACTIONS(1289), + [aux_sym_cmd_identifier_token11] = ACTIONS(1289), + [aux_sym_cmd_identifier_token12] = ACTIONS(1595), + [aux_sym_cmd_identifier_token13] = ACTIONS(1595), + [aux_sym_cmd_identifier_token14] = ACTIONS(1595), + [aux_sym_cmd_identifier_token15] = ACTIONS(1595), + [aux_sym_cmd_identifier_token16] = ACTIONS(1289), + [aux_sym_cmd_identifier_token17] = ACTIONS(1289), + [aux_sym_cmd_identifier_token18] = ACTIONS(1289), + [aux_sym_cmd_identifier_token19] = ACTIONS(1289), + [aux_sym_cmd_identifier_token20] = ACTIONS(1289), + [aux_sym_cmd_identifier_token21] = ACTIONS(1289), + [aux_sym_cmd_identifier_token22] = ACTIONS(1289), + [aux_sym_cmd_identifier_token23] = ACTIONS(1289), + [aux_sym_cmd_identifier_token24] = ACTIONS(1289), + [aux_sym_cmd_identifier_token25] = ACTIONS(1289), + [aux_sym_cmd_identifier_token26] = ACTIONS(1289), + [aux_sym_cmd_identifier_token27] = ACTIONS(1289), + [aux_sym_cmd_identifier_token28] = ACTIONS(1289), + [aux_sym_cmd_identifier_token29] = ACTIONS(1289), + [aux_sym_cmd_identifier_token30] = ACTIONS(1289), + [aux_sym_cmd_identifier_token31] = ACTIONS(1289), + [aux_sym_cmd_identifier_token32] = ACTIONS(1289), + [aux_sym_cmd_identifier_token33] = ACTIONS(1289), + [aux_sym_cmd_identifier_token34] = ACTIONS(1595), + [aux_sym_cmd_identifier_token35] = ACTIONS(1289), + [aux_sym_cmd_identifier_token36] = ACTIONS(1289), + [aux_sym_cmd_identifier_token37] = ACTIONS(1289), + [aux_sym_cmd_identifier_token38] = ACTIONS(1595), + [aux_sym_cmd_identifier_token39] = ACTIONS(1289), + [aux_sym_cmd_identifier_token40] = ACTIONS(1289), + [sym__newline] = ACTIONS(1289), + [anon_sym_SEMI] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1289), + [anon_sym_def] = ACTIONS(1595), + [anon_sym_export_DASHenv] = ACTIONS(1595), + [anon_sym_extern] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_use] = ACTIONS(1595), + [anon_sym_LBRACK] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1289), + [anon_sym_DOLLAR] = ACTIONS(1595), + [anon_sym_error] = ACTIONS(1595), + [anon_sym_DASH2] = ACTIONS(1595), + [anon_sym_break] = ACTIONS(1595), + [anon_sym_continue] = ACTIONS(1595), + [anon_sym_for] = ACTIONS(1595), + [anon_sym_loop] = ACTIONS(1595), + [anon_sym_while] = ACTIONS(1595), + [anon_sym_do] = ACTIONS(1595), + [anon_sym_if] = ACTIONS(1595), + [anon_sym_match] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_try] = ACTIONS(1595), + [anon_sym_return] = ACTIONS(1595), + [anon_sym_source] = ACTIONS(1595), + [anon_sym_source_DASHenv] = ACTIONS(1595), + [anon_sym_hide] = ACTIONS(1595), + [anon_sym_hide_DASHenv] = ACTIONS(1595), + [anon_sym_overlay] = ACTIONS(1595), + [anon_sym_where] = ACTIONS(1289), + [aux_sym_expr_unary_token1] = ACTIONS(1289), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1289), + [anon_sym_DOT_DOT_LT] = ACTIONS(1289), + [anon_sym_null] = ACTIONS(1595), + [anon_sym_true] = ACTIONS(1595), + [anon_sym_false] = ACTIONS(1595), + [aux_sym__val_number_decimal_token1] = ACTIONS(1595), + [aux_sym__val_number_decimal_token2] = ACTIONS(1289), + [aux_sym__val_number_decimal_token3] = ACTIONS(1289), + [aux_sym__val_number_decimal_token4] = ACTIONS(1289), + [aux_sym__val_number_token1] = ACTIONS(1289), + [aux_sym__val_number_token2] = ACTIONS(1289), + [aux_sym__val_number_token3] = ACTIONS(1289), + [aux_sym__val_number_token4] = ACTIONS(1595), + [aux_sym__val_number_token5] = ACTIONS(1595), + [aux_sym__val_number_token6] = ACTIONS(1595), + [anon_sym_0b] = ACTIONS(1595), + [anon_sym_0o] = ACTIONS(1595), + [anon_sym_0x] = ACTIONS(1595), + [sym_val_date] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1289), + [sym__str_single_quotes] = ACTIONS(1289), + [sym__str_back_ticks] = ACTIONS(1289), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1289), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1289), + [aux_sym_env_var_token1] = ACTIONS(1595), + [anon_sym_CARET] = ACTIONS(1289), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1686), + [sym_raw_string_begin] = ACTIONS(1289), }, - [323] = { - [sym_cell_path] = STATE(447), - [sym_path] = STATE(431), - [sym_comment] = STATE(323), - [aux_sym_cell_path_repeat1] = STATE(358), + [320] = { + [sym_cell_path] = STATE(436), + [sym_path] = STATE(414), + [sym_comment] = STATE(320), + [aux_sym_cell_path_repeat1] = STATE(348), [anon_sym_export] = ACTIONS(925), [anon_sym_alias] = ACTIONS(925), [anon_sym_let] = ACTIONS(925), @@ -111303,452 +109859,675 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(925), [sym__entry_separator] = ACTIONS(927), [anon_sym_register] = ACTIONS(925), - [anon_sym_DOT2] = ACTIONS(1690), + [anon_sym_DOT2] = ACTIONS(1666), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(927), }, + [321] = { + [sym_comment] = STATE(321), + [aux_sym__block_body_repeat1] = STATE(218), + [anon_sym_export] = ACTIONS(1507), + [anon_sym_alias] = ACTIONS(1507), + [anon_sym_let] = ACTIONS(1507), + [anon_sym_let_DASHenv] = ACTIONS(1507), + [anon_sym_mut] = ACTIONS(1507), + [anon_sym_const] = ACTIONS(1507), + [aux_sym_cmd_identifier_token1] = ACTIONS(1507), + [aux_sym_cmd_identifier_token2] = ACTIONS(1509), + [aux_sym_cmd_identifier_token3] = ACTIONS(1509), + [aux_sym_cmd_identifier_token4] = ACTIONS(1509), + [aux_sym_cmd_identifier_token5] = ACTIONS(1509), + [aux_sym_cmd_identifier_token6] = ACTIONS(1509), + [aux_sym_cmd_identifier_token7] = ACTIONS(1509), + [aux_sym_cmd_identifier_token8] = ACTIONS(1507), + [aux_sym_cmd_identifier_token9] = ACTIONS(1507), + [aux_sym_cmd_identifier_token10] = ACTIONS(1509), + [aux_sym_cmd_identifier_token11] = ACTIONS(1509), + [aux_sym_cmd_identifier_token12] = ACTIONS(1507), + [aux_sym_cmd_identifier_token13] = ACTIONS(1507), + [aux_sym_cmd_identifier_token14] = ACTIONS(1507), + [aux_sym_cmd_identifier_token15] = ACTIONS(1507), + [aux_sym_cmd_identifier_token16] = ACTIONS(1509), + [aux_sym_cmd_identifier_token17] = ACTIONS(1509), + [aux_sym_cmd_identifier_token18] = ACTIONS(1509), + [aux_sym_cmd_identifier_token19] = ACTIONS(1509), + [aux_sym_cmd_identifier_token20] = ACTIONS(1509), + [aux_sym_cmd_identifier_token21] = ACTIONS(1509), + [aux_sym_cmd_identifier_token22] = ACTIONS(1509), + [aux_sym_cmd_identifier_token23] = ACTIONS(1509), + [aux_sym_cmd_identifier_token24] = ACTIONS(1509), + [aux_sym_cmd_identifier_token25] = ACTIONS(1509), + [aux_sym_cmd_identifier_token26] = ACTIONS(1509), + [aux_sym_cmd_identifier_token27] = ACTIONS(1509), + [aux_sym_cmd_identifier_token28] = ACTIONS(1509), + [aux_sym_cmd_identifier_token29] = ACTIONS(1509), + [aux_sym_cmd_identifier_token30] = ACTIONS(1509), + [aux_sym_cmd_identifier_token31] = ACTIONS(1509), + [aux_sym_cmd_identifier_token32] = ACTIONS(1509), + [aux_sym_cmd_identifier_token33] = ACTIONS(1509), + [aux_sym_cmd_identifier_token34] = ACTIONS(1507), + [aux_sym_cmd_identifier_token35] = ACTIONS(1509), + [aux_sym_cmd_identifier_token36] = ACTIONS(1509), + [aux_sym_cmd_identifier_token37] = ACTIONS(1509), + [aux_sym_cmd_identifier_token38] = ACTIONS(1507), + [aux_sym_cmd_identifier_token39] = ACTIONS(1509), + [aux_sym_cmd_identifier_token40] = ACTIONS(1509), + [sym__newline] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_AT] = ACTIONS(1509), + [anon_sym_def] = ACTIONS(1507), + [anon_sym_export_DASHenv] = ACTIONS(1507), + [anon_sym_extern] = ACTIONS(1507), + [anon_sym_module] = ACTIONS(1507), + [anon_sym_use] = ACTIONS(1507), + [anon_sym_LBRACK] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1507), + [anon_sym_error] = ACTIONS(1507), + [anon_sym_DASH2] = ACTIONS(1507), + [anon_sym_break] = ACTIONS(1507), + [anon_sym_continue] = ACTIONS(1507), + [anon_sym_for] = ACTIONS(1507), + [anon_sym_loop] = ACTIONS(1507), + [anon_sym_while] = ACTIONS(1507), + [anon_sym_do] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1507), + [anon_sym_match] = ACTIONS(1507), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_try] = ACTIONS(1507), + [anon_sym_return] = ACTIONS(1507), + [anon_sym_source] = ACTIONS(1507), + [anon_sym_source_DASHenv] = ACTIONS(1507), + [anon_sym_hide] = ACTIONS(1507), + [anon_sym_hide_DASHenv] = ACTIONS(1507), + [anon_sym_overlay] = ACTIONS(1507), + [anon_sym_where] = ACTIONS(1509), + [aux_sym_expr_unary_token1] = ACTIONS(1509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1509), + [anon_sym_DOT_DOT_LT] = ACTIONS(1509), + [anon_sym_null] = ACTIONS(1507), + [anon_sym_true] = ACTIONS(1507), + [anon_sym_false] = ACTIONS(1507), + [aux_sym__val_number_decimal_token1] = ACTIONS(1507), + [aux_sym__val_number_decimal_token2] = ACTIONS(1509), + [aux_sym__val_number_decimal_token3] = ACTIONS(1509), + [aux_sym__val_number_decimal_token4] = ACTIONS(1509), + [aux_sym__val_number_token1] = ACTIONS(1509), + [aux_sym__val_number_token2] = ACTIONS(1509), + [aux_sym__val_number_token3] = ACTIONS(1509), + [aux_sym__val_number_token4] = ACTIONS(1507), + [aux_sym__val_number_token5] = ACTIONS(1507), + [aux_sym__val_number_token6] = ACTIONS(1507), + [anon_sym_0b] = ACTIONS(1507), + [anon_sym_0o] = ACTIONS(1507), + [anon_sym_0x] = ACTIONS(1507), + [sym_val_date] = ACTIONS(1509), + [anon_sym_DQUOTE] = ACTIONS(1509), + [sym__str_single_quotes] = ACTIONS(1509), + [sym__str_back_ticks] = ACTIONS(1509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1509), + [aux_sym_env_var_token1] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1509), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1509), + }, + [322] = { + [sym_comment] = STATE(322), + [anon_sym_export] = ACTIONS(1287), + [anon_sym_alias] = ACTIONS(1287), + [anon_sym_let] = ACTIONS(1287), + [anon_sym_let_DASHenv] = ACTIONS(1287), + [anon_sym_mut] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [aux_sym_cmd_identifier_token1] = ACTIONS(1287), + [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(1287), + [aux_sym_cmd_identifier_token9] = ACTIONS(1287), + [aux_sym_cmd_identifier_token10] = ACTIONS(1285), + [aux_sym_cmd_identifier_token11] = ACTIONS(1285), + [aux_sym_cmd_identifier_token12] = ACTIONS(1287), + [aux_sym_cmd_identifier_token13] = ACTIONS(1287), + [aux_sym_cmd_identifier_token14] = ACTIONS(1287), + [aux_sym_cmd_identifier_token15] = ACTIONS(1287), + [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(1287), + [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(1287), + [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(1285), + [anon_sym_AT] = ACTIONS(1285), + [anon_sym_def] = ACTIONS(1287), + [anon_sym_export_DASHenv] = ACTIONS(1287), + [anon_sym_extern] = ACTIONS(1287), + [anon_sym_module] = ACTIONS(1287), + [anon_sym_use] = ACTIONS(1287), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1287), + [anon_sym_error] = ACTIONS(1287), + [anon_sym_DASH2] = ACTIONS(1287), + [anon_sym_break] = ACTIONS(1287), + [anon_sym_continue] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1287), + [anon_sym_loop] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1287), + [anon_sym_match] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_DOT_DOT] = ACTIONS(1287), + [anon_sym_try] = ACTIONS(1287), + [anon_sym_return] = ACTIONS(1287), + [anon_sym_source] = ACTIONS(1287), + [anon_sym_source_DASHenv] = ACTIONS(1287), + [anon_sym_hide] = ACTIONS(1287), + [anon_sym_hide_DASHenv] = ACTIONS(1287), + [anon_sym_overlay] = ACTIONS(1287), + [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(1287), + [anon_sym_true] = ACTIONS(1287), + [anon_sym_false] = ACTIONS(1287), + [aux_sym__val_number_decimal_token1] = ACTIONS(1287), + [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(1287), + [aux_sym__val_number_token5] = ACTIONS(1287), + [aux_sym__val_number_token6] = ACTIONS(1287), + [anon_sym_0b] = ACTIONS(1287), + [anon_sym_0o] = ACTIONS(1287), + [anon_sym_0x] = ACTIONS(1287), + [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(1287), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1285), + }, + [323] = { + [sym_comment] = STATE(323), + [anon_sym_export] = ACTIONS(1499), + [anon_sym_alias] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1499), + [anon_sym_let_DASHenv] = ACTIONS(1499), + [anon_sym_mut] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(1499), + [aux_sym_cmd_identifier_token1] = ACTIONS(1499), + [aux_sym_cmd_identifier_token2] = ACTIONS(1501), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [aux_sym_cmd_identifier_token6] = ACTIONS(1501), + [aux_sym_cmd_identifier_token7] = ACTIONS(1501), + [aux_sym_cmd_identifier_token8] = ACTIONS(1499), + [aux_sym_cmd_identifier_token9] = ACTIONS(1499), + [aux_sym_cmd_identifier_token10] = ACTIONS(1501), + [aux_sym_cmd_identifier_token11] = ACTIONS(1501), + [aux_sym_cmd_identifier_token12] = ACTIONS(1499), + [aux_sym_cmd_identifier_token13] = ACTIONS(1499), + [aux_sym_cmd_identifier_token14] = ACTIONS(1499), + [aux_sym_cmd_identifier_token15] = ACTIONS(1499), + [aux_sym_cmd_identifier_token16] = ACTIONS(1501), + [aux_sym_cmd_identifier_token17] = ACTIONS(1501), + [aux_sym_cmd_identifier_token18] = ACTIONS(1501), + [aux_sym_cmd_identifier_token19] = ACTIONS(1501), + [aux_sym_cmd_identifier_token20] = ACTIONS(1501), + [aux_sym_cmd_identifier_token21] = ACTIONS(1501), + [aux_sym_cmd_identifier_token22] = ACTIONS(1501), + [aux_sym_cmd_identifier_token23] = ACTIONS(1501), + [aux_sym_cmd_identifier_token24] = ACTIONS(1501), + [aux_sym_cmd_identifier_token25] = ACTIONS(1501), + [aux_sym_cmd_identifier_token26] = ACTIONS(1501), + [aux_sym_cmd_identifier_token27] = ACTIONS(1501), + [aux_sym_cmd_identifier_token28] = ACTIONS(1501), + [aux_sym_cmd_identifier_token29] = ACTIONS(1501), + [aux_sym_cmd_identifier_token30] = ACTIONS(1501), + [aux_sym_cmd_identifier_token31] = ACTIONS(1501), + [aux_sym_cmd_identifier_token32] = ACTIONS(1501), + [aux_sym_cmd_identifier_token33] = ACTIONS(1501), + [aux_sym_cmd_identifier_token34] = ACTIONS(1499), + [aux_sym_cmd_identifier_token35] = ACTIONS(1501), + [aux_sym_cmd_identifier_token36] = ACTIONS(1501), + [aux_sym_cmd_identifier_token37] = ACTIONS(1501), + [aux_sym_cmd_identifier_token38] = ACTIONS(1499), + [aux_sym_cmd_identifier_token39] = ACTIONS(1501), + [aux_sym_cmd_identifier_token40] = ACTIONS(1501), + [anon_sym_def] = ACTIONS(1499), + [anon_sym_export_DASHenv] = ACTIONS(1499), + [anon_sym_extern] = ACTIONS(1499), + [anon_sym_module] = ACTIONS(1499), + [anon_sym_use] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_COMMA] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(1499), + [anon_sym_error] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_break] = ACTIONS(1499), + [anon_sym_continue] = ACTIONS(1499), + [anon_sym_for] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_loop] = ACTIONS(1499), + [anon_sym_make] = ACTIONS(1499), + [anon_sym_while] = ACTIONS(1499), + [anon_sym_do] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1499), + [anon_sym_else] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1501), + [anon_sym_try] = ACTIONS(1499), + [anon_sym_catch] = ACTIONS(1499), + [anon_sym_return] = ACTIONS(1499), + [anon_sym_source] = ACTIONS(1499), + [anon_sym_source_DASHenv] = ACTIONS(1499), + [anon_sym_hide] = ACTIONS(1499), + [anon_sym_hide_DASHenv] = ACTIONS(1499), + [anon_sym_overlay] = ACTIONS(1499), + [anon_sym_as] = ACTIONS(1499), + [anon_sym_LPAREN2] = ACTIONS(1501), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1501), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(1567), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1501), + [aux_sym__val_number_decimal_token1] = ACTIONS(1499), + [aux_sym__val_number_decimal_token2] = ACTIONS(1501), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1501), + [aux_sym__val_number_token1] = ACTIONS(1501), + [aux_sym__val_number_token2] = ACTIONS(1501), + [aux_sym__val_number_token3] = ACTIONS(1501), + [aux_sym__val_number_token4] = ACTIONS(1499), + [aux_sym__val_number_token5] = ACTIONS(1499), + [aux_sym__val_number_token6] = ACTIONS(1499), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1501), + [sym__str_single_quotes] = ACTIONS(1501), + [sym__str_back_ticks] = ACTIONS(1501), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1501), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1501), + [anon_sym_register] = ACTIONS(1499), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1501), + }, [324] = { + [sym_cell_path] = STATE(452), + [sym_path] = STATE(414), [sym_comment] = STATE(324), - [anon_sym_export] = ACTIONS(1492), - [anon_sym_alias] = ACTIONS(1492), - [anon_sym_let] = ACTIONS(1492), - [anon_sym_let_DASHenv] = ACTIONS(1492), - [anon_sym_mut] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [aux_sym_cmd_identifier_token1] = ACTIONS(1492), - [aux_sym_cmd_identifier_token2] = ACTIONS(1494), - [aux_sym_cmd_identifier_token3] = ACTIONS(1494), - [aux_sym_cmd_identifier_token4] = ACTIONS(1494), - [aux_sym_cmd_identifier_token5] = ACTIONS(1494), - [aux_sym_cmd_identifier_token6] = ACTIONS(1494), - [aux_sym_cmd_identifier_token7] = ACTIONS(1494), - [aux_sym_cmd_identifier_token8] = ACTIONS(1492), - [aux_sym_cmd_identifier_token9] = ACTIONS(1492), - [aux_sym_cmd_identifier_token10] = ACTIONS(1494), - [aux_sym_cmd_identifier_token11] = ACTIONS(1494), - [aux_sym_cmd_identifier_token12] = ACTIONS(1492), - [aux_sym_cmd_identifier_token13] = ACTIONS(1492), - [aux_sym_cmd_identifier_token14] = ACTIONS(1492), - [aux_sym_cmd_identifier_token15] = ACTIONS(1492), - [aux_sym_cmd_identifier_token16] = ACTIONS(1494), - [aux_sym_cmd_identifier_token17] = ACTIONS(1494), - [aux_sym_cmd_identifier_token18] = ACTIONS(1494), - [aux_sym_cmd_identifier_token19] = ACTIONS(1494), - [aux_sym_cmd_identifier_token20] = ACTIONS(1494), - [aux_sym_cmd_identifier_token21] = ACTIONS(1494), - [aux_sym_cmd_identifier_token22] = ACTIONS(1494), - [aux_sym_cmd_identifier_token23] = ACTIONS(1494), - [aux_sym_cmd_identifier_token24] = ACTIONS(1494), - [aux_sym_cmd_identifier_token25] = ACTIONS(1494), - [aux_sym_cmd_identifier_token26] = ACTIONS(1494), - [aux_sym_cmd_identifier_token27] = ACTIONS(1494), - [aux_sym_cmd_identifier_token28] = ACTIONS(1494), - [aux_sym_cmd_identifier_token29] = ACTIONS(1494), - [aux_sym_cmd_identifier_token30] = ACTIONS(1494), - [aux_sym_cmd_identifier_token31] = ACTIONS(1494), - [aux_sym_cmd_identifier_token32] = ACTIONS(1494), - [aux_sym_cmd_identifier_token33] = ACTIONS(1494), - [aux_sym_cmd_identifier_token34] = ACTIONS(1492), - [aux_sym_cmd_identifier_token35] = ACTIONS(1494), - [aux_sym_cmd_identifier_token36] = ACTIONS(1494), - [aux_sym_cmd_identifier_token37] = ACTIONS(1494), - [aux_sym_cmd_identifier_token38] = ACTIONS(1492), - [aux_sym_cmd_identifier_token39] = ACTIONS(1494), - [aux_sym_cmd_identifier_token40] = ACTIONS(1494), - [anon_sym_def] = ACTIONS(1492), - [anon_sym_export_DASHenv] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1492), - [anon_sym_module] = ACTIONS(1492), - [anon_sym_use] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1492), - [anon_sym_error] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_loop] = ACTIONS(1492), - [anon_sym_make] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_else] = ACTIONS(1492), - [anon_sym_match] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1494), - [anon_sym_try] = ACTIONS(1492), - [anon_sym_catch] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_source] = ACTIONS(1492), - [anon_sym_source_DASHenv] = ACTIONS(1492), - [anon_sym_hide] = ACTIONS(1492), - [anon_sym_hide_DASHenv] = ACTIONS(1492), - [anon_sym_overlay] = ACTIONS(1492), - [anon_sym_as] = ACTIONS(1492), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1494), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(1642), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1494), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1494), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(1494), - [aux_sym__val_number_token2] = ACTIONS(1494), - [aux_sym__val_number_token3] = ACTIONS(1494), - [aux_sym__val_number_token4] = ACTIONS(1492), - [aux_sym__val_number_token5] = ACTIONS(1492), - [aux_sym__val_number_token6] = ACTIONS(1492), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym__str_single_quotes] = ACTIONS(1494), - [sym__str_back_ticks] = ACTIONS(1494), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1494), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1494), - [anon_sym_register] = ACTIONS(1492), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1494), + [aux_sym_cell_path_repeat1] = STATE(348), + [anon_sym_export] = ACTIONS(1668), + [anon_sym_alias] = ACTIONS(1668), + [anon_sym_let] = ACTIONS(1668), + [anon_sym_let_DASHenv] = ACTIONS(1668), + [anon_sym_mut] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1668), + [aux_sym_cmd_identifier_token1] = ACTIONS(1668), + [aux_sym_cmd_identifier_token2] = ACTIONS(1668), + [aux_sym_cmd_identifier_token3] = ACTIONS(1668), + [aux_sym_cmd_identifier_token4] = ACTIONS(1668), + [aux_sym_cmd_identifier_token5] = ACTIONS(1668), + [aux_sym_cmd_identifier_token6] = ACTIONS(1668), + [aux_sym_cmd_identifier_token7] = ACTIONS(1668), + [aux_sym_cmd_identifier_token8] = ACTIONS(1668), + [aux_sym_cmd_identifier_token9] = ACTIONS(1668), + [aux_sym_cmd_identifier_token10] = ACTIONS(1668), + [aux_sym_cmd_identifier_token11] = ACTIONS(1668), + [aux_sym_cmd_identifier_token12] = ACTIONS(1668), + [aux_sym_cmd_identifier_token13] = ACTIONS(1668), + [aux_sym_cmd_identifier_token14] = ACTIONS(1668), + [aux_sym_cmd_identifier_token15] = ACTIONS(1668), + [aux_sym_cmd_identifier_token16] = ACTIONS(1668), + [aux_sym_cmd_identifier_token17] = ACTIONS(1668), + [aux_sym_cmd_identifier_token18] = ACTIONS(1668), + [aux_sym_cmd_identifier_token19] = ACTIONS(1668), + [aux_sym_cmd_identifier_token20] = ACTIONS(1668), + [aux_sym_cmd_identifier_token21] = ACTIONS(1668), + [aux_sym_cmd_identifier_token22] = ACTIONS(1668), + [aux_sym_cmd_identifier_token23] = ACTIONS(1668), + [aux_sym_cmd_identifier_token24] = ACTIONS(1668), + [aux_sym_cmd_identifier_token25] = ACTIONS(1668), + [aux_sym_cmd_identifier_token26] = ACTIONS(1668), + [aux_sym_cmd_identifier_token27] = ACTIONS(1668), + [aux_sym_cmd_identifier_token28] = ACTIONS(1668), + [aux_sym_cmd_identifier_token29] = ACTIONS(1668), + [aux_sym_cmd_identifier_token30] = ACTIONS(1668), + [aux_sym_cmd_identifier_token31] = ACTIONS(1668), + [aux_sym_cmd_identifier_token32] = ACTIONS(1668), + [aux_sym_cmd_identifier_token33] = ACTIONS(1668), + [aux_sym_cmd_identifier_token34] = ACTIONS(1668), + [aux_sym_cmd_identifier_token35] = ACTIONS(1668), + [aux_sym_cmd_identifier_token36] = ACTIONS(1668), + [aux_sym_cmd_identifier_token37] = ACTIONS(1668), + [aux_sym_cmd_identifier_token38] = ACTIONS(1668), + [aux_sym_cmd_identifier_token39] = ACTIONS(1668), + [aux_sym_cmd_identifier_token40] = ACTIONS(1668), + [anon_sym_def] = ACTIONS(1668), + [anon_sym_export_DASHenv] = ACTIONS(1668), + [anon_sym_extern] = ACTIONS(1668), + [anon_sym_module] = ACTIONS(1668), + [anon_sym_use] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1668), + [anon_sym_COMMA] = ACTIONS(1668), + [anon_sym_DOLLAR] = ACTIONS(1668), + [anon_sym_error] = ACTIONS(1668), + [anon_sym_DASH2] = ACTIONS(1668), + [anon_sym_break] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(1668), + [anon_sym_for] = ACTIONS(1668), + [anon_sym_in2] = ACTIONS(1668), + [anon_sym_loop] = ACTIONS(1668), + [anon_sym_make] = ACTIONS(1668), + [anon_sym_while] = ACTIONS(1668), + [anon_sym_do] = ACTIONS(1668), + [anon_sym_if] = ACTIONS(1668), + [anon_sym_else] = ACTIONS(1668), + [anon_sym_match] = ACTIONS(1668), + [anon_sym_RBRACE] = ACTIONS(1668), + [anon_sym_try] = ACTIONS(1668), + [anon_sym_catch] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_source] = ACTIONS(1668), + [anon_sym_source_DASHenv] = ACTIONS(1668), + [anon_sym_hide] = ACTIONS(1668), + [anon_sym_hide_DASHenv] = ACTIONS(1668), + [anon_sym_overlay] = ACTIONS(1668), + [anon_sym_as] = ACTIONS(1668), + [anon_sym_PLUS2] = ACTIONS(1668), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1668), + [anon_sym_DOT_DOT2] = ACTIONS(1668), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1670), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1670), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1668), + [aux_sym__val_number_decimal_token1] = ACTIONS(1668), + [aux_sym__val_number_decimal_token2] = ACTIONS(1668), + [aux_sym__val_number_decimal_token3] = ACTIONS(1668), + [aux_sym__val_number_decimal_token4] = ACTIONS(1668), + [aux_sym__val_number_token1] = ACTIONS(1668), + [aux_sym__val_number_token2] = ACTIONS(1668), + [aux_sym__val_number_token3] = ACTIONS(1668), + [aux_sym__val_number_token4] = ACTIONS(1668), + [aux_sym__val_number_token5] = ACTIONS(1668), + [aux_sym__val_number_token6] = ACTIONS(1668), + [anon_sym_DQUOTE] = ACTIONS(1668), + [sym__str_single_quotes] = ACTIONS(1668), + [sym__str_back_ticks] = ACTIONS(1668), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1668), + [sym__entry_separator] = ACTIONS(1670), + [anon_sym_register] = ACTIONS(1668), + [anon_sym_DOT2] = ACTIONS(1666), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1670), }, [325] = { [sym_comment] = STATE(325), - [aux_sym_shebang_repeat1] = STATE(278), - [anon_sym_export] = ACTIONS(1692), - [anon_sym_alias] = ACTIONS(1692), - [anon_sym_let] = ACTIONS(1692), - [anon_sym_let_DASHenv] = ACTIONS(1692), - [anon_sym_mut] = ACTIONS(1692), - [anon_sym_const] = ACTIONS(1692), - [aux_sym_cmd_identifier_token1] = ACTIONS(1692), - [aux_sym_cmd_identifier_token2] = ACTIONS(1694), - [aux_sym_cmd_identifier_token3] = ACTIONS(1694), - [aux_sym_cmd_identifier_token4] = ACTIONS(1694), - [aux_sym_cmd_identifier_token5] = ACTIONS(1694), - [aux_sym_cmd_identifier_token6] = ACTIONS(1694), - [aux_sym_cmd_identifier_token7] = ACTIONS(1694), - [aux_sym_cmd_identifier_token8] = ACTIONS(1692), - [aux_sym_cmd_identifier_token9] = ACTIONS(1692), - [aux_sym_cmd_identifier_token10] = ACTIONS(1694), - [aux_sym_cmd_identifier_token11] = ACTIONS(1694), - [aux_sym_cmd_identifier_token12] = ACTIONS(1692), - [aux_sym_cmd_identifier_token13] = ACTIONS(1692), - [aux_sym_cmd_identifier_token14] = ACTIONS(1692), - [aux_sym_cmd_identifier_token15] = ACTIONS(1692), - [aux_sym_cmd_identifier_token16] = ACTIONS(1694), - [aux_sym_cmd_identifier_token17] = ACTIONS(1694), - [aux_sym_cmd_identifier_token18] = ACTIONS(1694), - [aux_sym_cmd_identifier_token19] = ACTIONS(1694), - [aux_sym_cmd_identifier_token20] = ACTIONS(1694), - [aux_sym_cmd_identifier_token21] = ACTIONS(1694), - [aux_sym_cmd_identifier_token22] = ACTIONS(1694), - [aux_sym_cmd_identifier_token23] = ACTIONS(1694), - [aux_sym_cmd_identifier_token24] = ACTIONS(1694), - [aux_sym_cmd_identifier_token25] = ACTIONS(1694), - [aux_sym_cmd_identifier_token26] = ACTIONS(1694), - [aux_sym_cmd_identifier_token27] = ACTIONS(1694), - [aux_sym_cmd_identifier_token28] = ACTIONS(1694), - [aux_sym_cmd_identifier_token29] = ACTIONS(1694), - [aux_sym_cmd_identifier_token30] = ACTIONS(1694), - [aux_sym_cmd_identifier_token31] = ACTIONS(1694), - [aux_sym_cmd_identifier_token32] = ACTIONS(1694), - [aux_sym_cmd_identifier_token33] = ACTIONS(1694), - [aux_sym_cmd_identifier_token34] = ACTIONS(1692), - [aux_sym_cmd_identifier_token35] = ACTIONS(1694), - [aux_sym_cmd_identifier_token36] = ACTIONS(1694), - [aux_sym_cmd_identifier_token37] = ACTIONS(1694), - [aux_sym_cmd_identifier_token38] = ACTIONS(1692), - [aux_sym_cmd_identifier_token39] = ACTIONS(1694), - [aux_sym_cmd_identifier_token40] = ACTIONS(1694), - [sym__newline] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(1694), - [anon_sym_def] = ACTIONS(1692), - [anon_sym_export_DASHenv] = ACTIONS(1692), - [anon_sym_extern] = ACTIONS(1692), - [anon_sym_module] = ACTIONS(1692), - [anon_sym_use] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1694), - [anon_sym_LPAREN] = ACTIONS(1694), - [anon_sym_DOLLAR] = ACTIONS(1692), - [anon_sym_error] = ACTIONS(1692), - [anon_sym_DASH2] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_continue] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_loop] = ACTIONS(1692), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_do] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_match] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1692), - [anon_sym_try] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_source] = ACTIONS(1692), - [anon_sym_source_DASHenv] = ACTIONS(1692), - [anon_sym_hide] = ACTIONS(1692), - [anon_sym_hide_DASHenv] = ACTIONS(1692), - [anon_sym_overlay] = ACTIONS(1692), - [anon_sym_where] = ACTIONS(1694), - [aux_sym_expr_unary_token1] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1694), - [anon_sym_DOT_DOT_LT] = ACTIONS(1694), - [anon_sym_null] = ACTIONS(1692), - [anon_sym_true] = ACTIONS(1692), - [anon_sym_false] = ACTIONS(1692), - [aux_sym__val_number_decimal_token1] = ACTIONS(1692), - [aux_sym__val_number_decimal_token2] = ACTIONS(1694), - [aux_sym__val_number_decimal_token3] = ACTIONS(1694), - [aux_sym__val_number_decimal_token4] = ACTIONS(1694), - [aux_sym__val_number_token1] = ACTIONS(1694), - [aux_sym__val_number_token2] = ACTIONS(1694), - [aux_sym__val_number_token3] = ACTIONS(1694), - [aux_sym__val_number_token4] = ACTIONS(1692), - [aux_sym__val_number_token5] = ACTIONS(1692), - [aux_sym__val_number_token6] = ACTIONS(1692), - [anon_sym_0b] = ACTIONS(1692), - [anon_sym_0o] = ACTIONS(1692), - [anon_sym_0x] = ACTIONS(1692), - [sym_val_date] = ACTIONS(1694), - [anon_sym_DQUOTE] = ACTIONS(1694), - [sym__str_single_quotes] = ACTIONS(1694), - [sym__str_back_ticks] = ACTIONS(1694), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1694), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1694), - [aux_sym_env_var_token1] = ACTIONS(1692), - [anon_sym_CARET] = ACTIONS(1694), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1694), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [aux_sym_cmd_identifier_token1] = ACTIONS(1579), + [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(1579), + [aux_sym_cmd_identifier_token9] = ACTIONS(1579), + [aux_sym_cmd_identifier_token10] = ACTIONS(1581), + [aux_sym_cmd_identifier_token11] = ACTIONS(1581), + [aux_sym_cmd_identifier_token12] = ACTIONS(1579), + [aux_sym_cmd_identifier_token13] = ACTIONS(1579), + [aux_sym_cmd_identifier_token14] = ACTIONS(1579), + [aux_sym_cmd_identifier_token15] = ACTIONS(1579), + [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(1579), + [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(1579), + [aux_sym_cmd_identifier_token39] = ACTIONS(1581), + [aux_sym_cmd_identifier_token40] = ACTIONS(1581), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_COMMA] = ACTIONS(1581), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_DASH2] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in2] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_make] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_else] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_catch] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_as] = ACTIONS(1579), + [anon_sym_LPAREN2] = ACTIONS(1581), + [anon_sym_PLUS2] = ACTIONS(1579), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1581), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [aux_sym__immediate_decimal_token2] = ACTIONS(1672), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1581), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [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(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [sym_filesize_unit] = ACTIONS(1579), + [sym_duration_unit] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1581), + [sym__str_single_quotes] = ACTIONS(1581), + [sym__str_back_ticks] = ACTIONS(1581), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1581), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1581), + [anon_sym_register] = ACTIONS(1579), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1581), }, [326] = { [sym_comment] = STATE(326), - [ts_builtin_sym_end] = ACTIONS(1282), - [anon_sym_export] = ACTIONS(1634), - [anon_sym_alias] = ACTIONS(1634), - [anon_sym_let] = ACTIONS(1634), - [anon_sym_let_DASHenv] = ACTIONS(1634), - [anon_sym_mut] = ACTIONS(1634), - [anon_sym_const] = ACTIONS(1634), - [aux_sym_cmd_identifier_token1] = ACTIONS(1634), - [aux_sym_cmd_identifier_token2] = ACTIONS(1282), - [aux_sym_cmd_identifier_token3] = ACTIONS(1282), - [aux_sym_cmd_identifier_token4] = ACTIONS(1282), - [aux_sym_cmd_identifier_token5] = ACTIONS(1282), - [aux_sym_cmd_identifier_token6] = ACTIONS(1282), - [aux_sym_cmd_identifier_token7] = ACTIONS(1282), - [aux_sym_cmd_identifier_token8] = ACTIONS(1634), - [aux_sym_cmd_identifier_token9] = ACTIONS(1634), - [aux_sym_cmd_identifier_token10] = ACTIONS(1282), - [aux_sym_cmd_identifier_token11] = ACTIONS(1282), - [aux_sym_cmd_identifier_token12] = ACTIONS(1634), - [aux_sym_cmd_identifier_token13] = ACTIONS(1634), - [aux_sym_cmd_identifier_token14] = ACTIONS(1634), - [aux_sym_cmd_identifier_token15] = ACTIONS(1634), - [aux_sym_cmd_identifier_token16] = ACTIONS(1282), - [aux_sym_cmd_identifier_token17] = ACTIONS(1282), - [aux_sym_cmd_identifier_token18] = ACTIONS(1282), - [aux_sym_cmd_identifier_token19] = ACTIONS(1282), - [aux_sym_cmd_identifier_token20] = ACTIONS(1282), - [aux_sym_cmd_identifier_token21] = ACTIONS(1282), - [aux_sym_cmd_identifier_token22] = ACTIONS(1282), - [aux_sym_cmd_identifier_token23] = ACTIONS(1282), - [aux_sym_cmd_identifier_token24] = ACTIONS(1282), - [aux_sym_cmd_identifier_token25] = ACTIONS(1282), - [aux_sym_cmd_identifier_token26] = ACTIONS(1282), - [aux_sym_cmd_identifier_token27] = ACTIONS(1282), - [aux_sym_cmd_identifier_token28] = ACTIONS(1282), - [aux_sym_cmd_identifier_token29] = ACTIONS(1282), - [aux_sym_cmd_identifier_token30] = ACTIONS(1282), - [aux_sym_cmd_identifier_token31] = ACTIONS(1282), - [aux_sym_cmd_identifier_token32] = ACTIONS(1282), - [aux_sym_cmd_identifier_token33] = ACTIONS(1282), - [aux_sym_cmd_identifier_token34] = ACTIONS(1634), - [aux_sym_cmd_identifier_token35] = ACTIONS(1282), - [aux_sym_cmd_identifier_token36] = ACTIONS(1282), - [aux_sym_cmd_identifier_token37] = ACTIONS(1282), - [aux_sym_cmd_identifier_token38] = ACTIONS(1634), - [aux_sym_cmd_identifier_token39] = ACTIONS(1282), - [aux_sym_cmd_identifier_token40] = ACTIONS(1282), - [sym__newline] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(1282), - [anon_sym_def] = ACTIONS(1634), - [anon_sym_export_DASHenv] = ACTIONS(1634), - [anon_sym_extern] = ACTIONS(1634), - [anon_sym_module] = ACTIONS(1634), - [anon_sym_use] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(1634), - [anon_sym_error] = ACTIONS(1634), - [anon_sym_DASH2] = ACTIONS(1634), - [anon_sym_break] = ACTIONS(1634), - [anon_sym_continue] = ACTIONS(1634), - [anon_sym_for] = ACTIONS(1634), - [anon_sym_loop] = ACTIONS(1634), - [anon_sym_while] = ACTIONS(1634), - [anon_sym_do] = ACTIONS(1634), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_match] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_DOT_DOT] = ACTIONS(1634), - [anon_sym_try] = ACTIONS(1634), - [anon_sym_return] = ACTIONS(1634), - [anon_sym_source] = ACTIONS(1634), - [anon_sym_source_DASHenv] = ACTIONS(1634), - [anon_sym_hide] = ACTIONS(1634), - [anon_sym_hide_DASHenv] = ACTIONS(1634), - [anon_sym_overlay] = ACTIONS(1634), - [anon_sym_where] = ACTIONS(1282), - [aux_sym_expr_unary_token1] = ACTIONS(1282), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1282), - [anon_sym_DOT_DOT_LT] = ACTIONS(1282), - [anon_sym_null] = ACTIONS(1634), - [anon_sym_true] = ACTIONS(1634), - [anon_sym_false] = ACTIONS(1634), - [aux_sym__val_number_decimal_token1] = ACTIONS(1634), - [aux_sym__val_number_decimal_token2] = ACTIONS(1282), - [aux_sym__val_number_decimal_token3] = ACTIONS(1282), - [aux_sym__val_number_decimal_token4] = ACTIONS(1282), - [aux_sym__val_number_token1] = ACTIONS(1282), - [aux_sym__val_number_token2] = ACTIONS(1282), - [aux_sym__val_number_token3] = ACTIONS(1282), - [aux_sym__val_number_token4] = ACTIONS(1634), - [aux_sym__val_number_token5] = ACTIONS(1634), - [aux_sym__val_number_token6] = ACTIONS(1634), - [anon_sym_0b] = ACTIONS(1634), - [anon_sym_0o] = ACTIONS(1634), - [anon_sym_0x] = ACTIONS(1634), - [sym_val_date] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym__str_single_quotes] = ACTIONS(1282), - [sym__str_back_ticks] = ACTIONS(1282), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1282), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1282), - [aux_sym_env_var_token1] = ACTIONS(1634), - [anon_sym_CARET] = ACTIONS(1282), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1282), + [anon_sym_export] = ACTIONS(1499), + [anon_sym_alias] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1499), + [anon_sym_let_DASHenv] = ACTIONS(1499), + [anon_sym_mut] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(1499), + [aux_sym_cmd_identifier_token1] = ACTIONS(1499), + [aux_sym_cmd_identifier_token2] = ACTIONS(1499), + [aux_sym_cmd_identifier_token3] = ACTIONS(1499), + [aux_sym_cmd_identifier_token4] = ACTIONS(1499), + [aux_sym_cmd_identifier_token5] = ACTIONS(1499), + [aux_sym_cmd_identifier_token6] = ACTIONS(1499), + [aux_sym_cmd_identifier_token7] = ACTIONS(1499), + [aux_sym_cmd_identifier_token8] = ACTIONS(1499), + [aux_sym_cmd_identifier_token9] = ACTIONS(1499), + [aux_sym_cmd_identifier_token10] = ACTIONS(1499), + [aux_sym_cmd_identifier_token11] = ACTIONS(1499), + [aux_sym_cmd_identifier_token12] = ACTIONS(1499), + [aux_sym_cmd_identifier_token13] = ACTIONS(1499), + [aux_sym_cmd_identifier_token14] = ACTIONS(1499), + [aux_sym_cmd_identifier_token15] = ACTIONS(1499), + [aux_sym_cmd_identifier_token16] = ACTIONS(1499), + [aux_sym_cmd_identifier_token17] = ACTIONS(1499), + [aux_sym_cmd_identifier_token18] = ACTIONS(1499), + [aux_sym_cmd_identifier_token19] = ACTIONS(1499), + [aux_sym_cmd_identifier_token20] = ACTIONS(1499), + [aux_sym_cmd_identifier_token21] = ACTIONS(1499), + [aux_sym_cmd_identifier_token22] = ACTIONS(1499), + [aux_sym_cmd_identifier_token23] = ACTIONS(1499), + [aux_sym_cmd_identifier_token24] = ACTIONS(1499), + [aux_sym_cmd_identifier_token25] = ACTIONS(1499), + [aux_sym_cmd_identifier_token26] = ACTIONS(1499), + [aux_sym_cmd_identifier_token27] = ACTIONS(1499), + [aux_sym_cmd_identifier_token28] = ACTIONS(1499), + [aux_sym_cmd_identifier_token29] = ACTIONS(1499), + [aux_sym_cmd_identifier_token30] = ACTIONS(1499), + [aux_sym_cmd_identifier_token31] = ACTIONS(1499), + [aux_sym_cmd_identifier_token32] = ACTIONS(1499), + [aux_sym_cmd_identifier_token33] = ACTIONS(1499), + [aux_sym_cmd_identifier_token34] = ACTIONS(1499), + [aux_sym_cmd_identifier_token35] = ACTIONS(1499), + [aux_sym_cmd_identifier_token36] = ACTIONS(1499), + [aux_sym_cmd_identifier_token37] = ACTIONS(1499), + [aux_sym_cmd_identifier_token38] = ACTIONS(1499), + [aux_sym_cmd_identifier_token39] = ACTIONS(1499), + [aux_sym_cmd_identifier_token40] = ACTIONS(1499), + [anon_sym_def] = ACTIONS(1499), + [anon_sym_export_DASHenv] = ACTIONS(1499), + [anon_sym_extern] = ACTIONS(1499), + [anon_sym_module] = ACTIONS(1499), + [anon_sym_use] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_COMMA] = ACTIONS(1499), + [anon_sym_DOLLAR] = ACTIONS(1499), + [anon_sym_error] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_break] = ACTIONS(1499), + [anon_sym_continue] = ACTIONS(1499), + [anon_sym_for] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_loop] = ACTIONS(1499), + [anon_sym_make] = ACTIONS(1499), + [anon_sym_while] = ACTIONS(1499), + [anon_sym_do] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1499), + [anon_sym_else] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_try] = ACTIONS(1499), + [anon_sym_catch] = ACTIONS(1499), + [anon_sym_return] = ACTIONS(1499), + [anon_sym_source] = ACTIONS(1499), + [anon_sym_source_DASHenv] = ACTIONS(1499), + [anon_sym_hide] = ACTIONS(1499), + [anon_sym_hide_DASHenv] = ACTIONS(1499), + [anon_sym_overlay] = ACTIONS(1499), + [anon_sym_as] = ACTIONS(1499), + [anon_sym_LPAREN2] = ACTIONS(1501), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1499), + [aux_sym__val_number_decimal_token1] = ACTIONS(1499), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1499), + [aux_sym__val_number_decimal_token4] = ACTIONS(1499), + [aux_sym__val_number_token1] = ACTIONS(1499), + [aux_sym__val_number_token2] = ACTIONS(1499), + [aux_sym__val_number_token3] = ACTIONS(1499), + [aux_sym__val_number_token4] = ACTIONS(1499), + [aux_sym__val_number_token5] = ACTIONS(1499), + [aux_sym__val_number_token6] = ACTIONS(1499), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [sym__str_single_quotes] = ACTIONS(1499), + [sym__str_back_ticks] = ACTIONS(1499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1499), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1499), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1499), + [sym__entry_separator] = ACTIONS(1501), + [anon_sym_register] = ACTIONS(1499), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1501), }, [327] = { - [sym_cell_path] = STATE(439), - [sym_path] = STATE(431), + [sym__expr_parenthesized_immediate] = STATE(665), + [sym__immediate_decimal] = STATE(666), + [sym_val_variable] = STATE(665), [sym_comment] = STATE(327), - [aux_sym_cell_path_repeat1] = STATE(358), - [anon_sym_export] = ACTIONS(1698), - [anon_sym_alias] = ACTIONS(1698), - [anon_sym_let] = ACTIONS(1698), - [anon_sym_let_DASHenv] = ACTIONS(1698), - [anon_sym_mut] = ACTIONS(1698), - [anon_sym_const] = ACTIONS(1698), - [aux_sym_cmd_identifier_token1] = ACTIONS(1698), - [aux_sym_cmd_identifier_token2] = ACTIONS(1698), - [aux_sym_cmd_identifier_token3] = ACTIONS(1698), - [aux_sym_cmd_identifier_token4] = ACTIONS(1698), - [aux_sym_cmd_identifier_token5] = ACTIONS(1698), - [aux_sym_cmd_identifier_token6] = ACTIONS(1698), - [aux_sym_cmd_identifier_token7] = ACTIONS(1698), - [aux_sym_cmd_identifier_token8] = ACTIONS(1698), - [aux_sym_cmd_identifier_token9] = ACTIONS(1698), - [aux_sym_cmd_identifier_token10] = ACTIONS(1698), - [aux_sym_cmd_identifier_token11] = ACTIONS(1698), - [aux_sym_cmd_identifier_token12] = ACTIONS(1698), - [aux_sym_cmd_identifier_token13] = ACTIONS(1698), - [aux_sym_cmd_identifier_token14] = ACTIONS(1698), - [aux_sym_cmd_identifier_token15] = ACTIONS(1698), - [aux_sym_cmd_identifier_token16] = ACTIONS(1698), - [aux_sym_cmd_identifier_token17] = ACTIONS(1698), - [aux_sym_cmd_identifier_token18] = ACTIONS(1698), - [aux_sym_cmd_identifier_token19] = ACTIONS(1698), - [aux_sym_cmd_identifier_token20] = ACTIONS(1698), - [aux_sym_cmd_identifier_token21] = ACTIONS(1698), - [aux_sym_cmd_identifier_token22] = ACTIONS(1698), - [aux_sym_cmd_identifier_token23] = ACTIONS(1698), - [aux_sym_cmd_identifier_token24] = ACTIONS(1698), - [aux_sym_cmd_identifier_token25] = ACTIONS(1698), - [aux_sym_cmd_identifier_token26] = ACTIONS(1698), - [aux_sym_cmd_identifier_token27] = ACTIONS(1698), - [aux_sym_cmd_identifier_token28] = ACTIONS(1698), - [aux_sym_cmd_identifier_token29] = ACTIONS(1698), - [aux_sym_cmd_identifier_token30] = ACTIONS(1698), - [aux_sym_cmd_identifier_token31] = ACTIONS(1698), - [aux_sym_cmd_identifier_token32] = ACTIONS(1698), - [aux_sym_cmd_identifier_token33] = ACTIONS(1698), - [aux_sym_cmd_identifier_token34] = ACTIONS(1698), - [aux_sym_cmd_identifier_token35] = ACTIONS(1698), - [aux_sym_cmd_identifier_token36] = ACTIONS(1698), - [aux_sym_cmd_identifier_token37] = ACTIONS(1698), - [aux_sym_cmd_identifier_token38] = ACTIONS(1698), - [aux_sym_cmd_identifier_token39] = ACTIONS(1698), - [aux_sym_cmd_identifier_token40] = ACTIONS(1698), - [anon_sym_def] = ACTIONS(1698), - [anon_sym_export_DASHenv] = ACTIONS(1698), - [anon_sym_extern] = ACTIONS(1698), - [anon_sym_module] = ACTIONS(1698), - [anon_sym_use] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_DOLLAR] = ACTIONS(1698), - [anon_sym_error] = ACTIONS(1698), - [anon_sym_DASH2] = ACTIONS(1698), - [anon_sym_break] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(1698), - [anon_sym_for] = ACTIONS(1698), - [anon_sym_in2] = ACTIONS(1698), - [anon_sym_loop] = ACTIONS(1698), - [anon_sym_make] = ACTIONS(1698), - [anon_sym_while] = ACTIONS(1698), - [anon_sym_do] = ACTIONS(1698), - [anon_sym_if] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1698), - [anon_sym_match] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_try] = ACTIONS(1698), - [anon_sym_catch] = ACTIONS(1698), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_source] = ACTIONS(1698), - [anon_sym_source_DASHenv] = ACTIONS(1698), - [anon_sym_hide] = ACTIONS(1698), - [anon_sym_hide_DASHenv] = ACTIONS(1698), - [anon_sym_overlay] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1698), - [anon_sym_PLUS2] = ACTIONS(1698), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1698), - [anon_sym_DOT_DOT2] = ACTIONS(1698), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1700), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1700), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1698), - [aux_sym__val_number_decimal_token1] = ACTIONS(1698), - [aux_sym__val_number_decimal_token2] = ACTIONS(1698), - [aux_sym__val_number_decimal_token3] = ACTIONS(1698), - [aux_sym__val_number_decimal_token4] = ACTIONS(1698), - [aux_sym__val_number_token1] = ACTIONS(1698), - [aux_sym__val_number_token2] = ACTIONS(1698), - [aux_sym__val_number_token3] = ACTIONS(1698), - [aux_sym__val_number_token4] = ACTIONS(1698), - [aux_sym__val_number_token5] = ACTIONS(1698), - [aux_sym__val_number_token6] = ACTIONS(1698), - [anon_sym_DQUOTE] = ACTIONS(1698), - [sym__str_single_quotes] = ACTIONS(1698), - [sym__str_back_ticks] = ACTIONS(1698), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1698), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1698), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1698), - [sym__entry_separator] = ACTIONS(1700), - [anon_sym_register] = ACTIONS(1698), - [anon_sym_DOT2] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1700), - }, - [328] = { - [sym_comment] = STATE(328), [anon_sym_export] = ACTIONS(1538), [anon_sym_alias] = ACTIONS(1538), [anon_sym_let] = ACTIONS(1538), @@ -111756,53 +110535,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(1538), [anon_sym_const] = ACTIONS(1538), [aux_sym_cmd_identifier_token1] = ACTIONS(1538), - [aux_sym_cmd_identifier_token2] = ACTIONS(1540), - [aux_sym_cmd_identifier_token3] = ACTIONS(1540), - [aux_sym_cmd_identifier_token4] = ACTIONS(1540), - [aux_sym_cmd_identifier_token5] = ACTIONS(1540), - [aux_sym_cmd_identifier_token6] = ACTIONS(1540), - [aux_sym_cmd_identifier_token7] = ACTIONS(1540), + [aux_sym_cmd_identifier_token2] = ACTIONS(1546), + [aux_sym_cmd_identifier_token3] = ACTIONS(1546), + [aux_sym_cmd_identifier_token4] = ACTIONS(1546), + [aux_sym_cmd_identifier_token5] = ACTIONS(1546), + [aux_sym_cmd_identifier_token6] = ACTIONS(1546), + [aux_sym_cmd_identifier_token7] = ACTIONS(1546), [aux_sym_cmd_identifier_token8] = ACTIONS(1538), [aux_sym_cmd_identifier_token9] = ACTIONS(1538), - [aux_sym_cmd_identifier_token10] = ACTIONS(1540), - [aux_sym_cmd_identifier_token11] = ACTIONS(1540), + [aux_sym_cmd_identifier_token10] = ACTIONS(1546), + [aux_sym_cmd_identifier_token11] = ACTIONS(1546), [aux_sym_cmd_identifier_token12] = ACTIONS(1538), [aux_sym_cmd_identifier_token13] = ACTIONS(1538), [aux_sym_cmd_identifier_token14] = ACTIONS(1538), [aux_sym_cmd_identifier_token15] = ACTIONS(1538), - [aux_sym_cmd_identifier_token16] = ACTIONS(1540), - [aux_sym_cmd_identifier_token17] = ACTIONS(1540), - [aux_sym_cmd_identifier_token18] = ACTIONS(1540), - [aux_sym_cmd_identifier_token19] = ACTIONS(1540), - [aux_sym_cmd_identifier_token20] = ACTIONS(1540), - [aux_sym_cmd_identifier_token21] = ACTIONS(1540), - [aux_sym_cmd_identifier_token22] = ACTIONS(1540), - [aux_sym_cmd_identifier_token23] = ACTIONS(1540), - [aux_sym_cmd_identifier_token24] = ACTIONS(1540), - [aux_sym_cmd_identifier_token25] = ACTIONS(1540), - [aux_sym_cmd_identifier_token26] = ACTIONS(1540), - [aux_sym_cmd_identifier_token27] = ACTIONS(1540), - [aux_sym_cmd_identifier_token28] = ACTIONS(1540), - [aux_sym_cmd_identifier_token29] = ACTIONS(1540), - [aux_sym_cmd_identifier_token30] = ACTIONS(1540), - [aux_sym_cmd_identifier_token31] = ACTIONS(1540), - [aux_sym_cmd_identifier_token32] = ACTIONS(1540), - [aux_sym_cmd_identifier_token33] = ACTIONS(1540), + [aux_sym_cmd_identifier_token16] = ACTIONS(1546), + [aux_sym_cmd_identifier_token17] = ACTIONS(1546), + [aux_sym_cmd_identifier_token18] = ACTIONS(1546), + [aux_sym_cmd_identifier_token19] = ACTIONS(1546), + [aux_sym_cmd_identifier_token20] = ACTIONS(1546), + [aux_sym_cmd_identifier_token21] = ACTIONS(1546), + [aux_sym_cmd_identifier_token22] = ACTIONS(1546), + [aux_sym_cmd_identifier_token23] = ACTIONS(1546), + [aux_sym_cmd_identifier_token24] = ACTIONS(1546), + [aux_sym_cmd_identifier_token25] = ACTIONS(1546), + [aux_sym_cmd_identifier_token26] = ACTIONS(1546), + [aux_sym_cmd_identifier_token27] = ACTIONS(1546), + [aux_sym_cmd_identifier_token28] = ACTIONS(1546), + [aux_sym_cmd_identifier_token29] = ACTIONS(1546), + [aux_sym_cmd_identifier_token30] = ACTIONS(1546), + [aux_sym_cmd_identifier_token31] = ACTIONS(1546), + [aux_sym_cmd_identifier_token32] = ACTIONS(1546), + [aux_sym_cmd_identifier_token33] = ACTIONS(1546), [aux_sym_cmd_identifier_token34] = ACTIONS(1538), - [aux_sym_cmd_identifier_token35] = ACTIONS(1540), - [aux_sym_cmd_identifier_token36] = ACTIONS(1540), - [aux_sym_cmd_identifier_token37] = ACTIONS(1540), + [aux_sym_cmd_identifier_token35] = ACTIONS(1546), + [aux_sym_cmd_identifier_token36] = ACTIONS(1546), + [aux_sym_cmd_identifier_token37] = ACTIONS(1546), [aux_sym_cmd_identifier_token38] = ACTIONS(1538), - [aux_sym_cmd_identifier_token39] = ACTIONS(1540), - [aux_sym_cmd_identifier_token40] = ACTIONS(1540), + [aux_sym_cmd_identifier_token39] = ACTIONS(1546), + [aux_sym_cmd_identifier_token40] = ACTIONS(1546), [anon_sym_def] = ACTIONS(1538), [anon_sym_export_DASHenv] = ACTIONS(1538), [anon_sym_extern] = ACTIONS(1538), [anon_sym_module] = ACTIONS(1538), [anon_sym_use] = ACTIONS(1538), [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_COMMA] = ACTIONS(1540), - [anon_sym_DOLLAR] = ACTIONS(1538), + [anon_sym_COMMA] = ACTIONS(1546), + [anon_sym_DOLLAR] = ACTIONS(1293), [anon_sym_error] = ACTIONS(1538), [anon_sym_DASH2] = ACTIONS(1538), [anon_sym_break] = ACTIONS(1538), @@ -111816,7 +110595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1538), [anon_sym_else] = ACTIONS(1538), [anon_sym_match] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1546), [anon_sym_try] = ACTIONS(1538), [anon_sym_catch] = ACTIONS(1538), [anon_sym_return] = ACTIONS(1538), @@ -111826,1029 +110605,1245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(1538), [anon_sym_overlay] = ACTIONS(1538), [anon_sym_as] = ACTIONS(1538), - [anon_sym_LPAREN2] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1548), [anon_sym_PLUS2] = ACTIONS(1538), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1540), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [aux_sym__immediate_decimal_token2] = ACTIONS(1702), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1540), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1546), + [aux_sym__immediate_decimal_token1] = ACTIONS(1652), + [aux_sym__immediate_decimal_token3] = ACTIONS(1654), + [aux_sym__immediate_decimal_token4] = ACTIONS(1656), + [aux_sym__immediate_decimal_token5] = ACTIONS(1658), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1546), [aux_sym__val_number_decimal_token1] = ACTIONS(1538), - [aux_sym__val_number_decimal_token2] = ACTIONS(1540), - [aux_sym__val_number_decimal_token3] = ACTIONS(1540), - [aux_sym__val_number_decimal_token4] = ACTIONS(1540), - [aux_sym__val_number_token1] = ACTIONS(1540), - [aux_sym__val_number_token2] = ACTIONS(1540), - [aux_sym__val_number_token3] = ACTIONS(1540), + [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(1546), + [aux_sym__val_number_token2] = ACTIONS(1546), + [aux_sym__val_number_token3] = ACTIONS(1546), [aux_sym__val_number_token4] = ACTIONS(1538), [aux_sym__val_number_token5] = ACTIONS(1538), [aux_sym__val_number_token6] = ACTIONS(1538), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(1540), - [sym__str_single_quotes] = ACTIONS(1540), - [sym__str_back_ticks] = ACTIONS(1540), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1540), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1540), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1546), + [sym__str_single_quotes] = ACTIONS(1546), + [sym__str_back_ticks] = ACTIONS(1546), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1546), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1546), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1546), [anon_sym_register] = ACTIONS(1538), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1538), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1540), + [sym_raw_string_begin] = ACTIONS(1546), + }, + [328] = { + [sym_cell_path] = STATE(453), + [sym_path] = STATE(414), + [sym_comment] = STATE(328), + [aux_sym_cell_path_repeat1] = STATE(348), + [anon_sym_export] = ACTIONS(1674), + [anon_sym_alias] = ACTIONS(1674), + [anon_sym_let] = ACTIONS(1674), + [anon_sym_let_DASHenv] = ACTIONS(1674), + [anon_sym_mut] = ACTIONS(1674), + [anon_sym_const] = ACTIONS(1674), + [aux_sym_cmd_identifier_token1] = ACTIONS(1674), + [aux_sym_cmd_identifier_token2] = ACTIONS(1674), + [aux_sym_cmd_identifier_token3] = ACTIONS(1674), + [aux_sym_cmd_identifier_token4] = ACTIONS(1674), + [aux_sym_cmd_identifier_token5] = ACTIONS(1674), + [aux_sym_cmd_identifier_token6] = ACTIONS(1674), + [aux_sym_cmd_identifier_token7] = ACTIONS(1674), + [aux_sym_cmd_identifier_token8] = ACTIONS(1674), + [aux_sym_cmd_identifier_token9] = ACTIONS(1674), + [aux_sym_cmd_identifier_token10] = ACTIONS(1674), + [aux_sym_cmd_identifier_token11] = ACTIONS(1674), + [aux_sym_cmd_identifier_token12] = ACTIONS(1674), + [aux_sym_cmd_identifier_token13] = ACTIONS(1674), + [aux_sym_cmd_identifier_token14] = ACTIONS(1674), + [aux_sym_cmd_identifier_token15] = ACTIONS(1674), + [aux_sym_cmd_identifier_token16] = ACTIONS(1674), + [aux_sym_cmd_identifier_token17] = ACTIONS(1674), + [aux_sym_cmd_identifier_token18] = ACTIONS(1674), + [aux_sym_cmd_identifier_token19] = ACTIONS(1674), + [aux_sym_cmd_identifier_token20] = ACTIONS(1674), + [aux_sym_cmd_identifier_token21] = ACTIONS(1674), + [aux_sym_cmd_identifier_token22] = ACTIONS(1674), + [aux_sym_cmd_identifier_token23] = ACTIONS(1674), + [aux_sym_cmd_identifier_token24] = ACTIONS(1674), + [aux_sym_cmd_identifier_token25] = ACTIONS(1674), + [aux_sym_cmd_identifier_token26] = ACTIONS(1674), + [aux_sym_cmd_identifier_token27] = ACTIONS(1674), + [aux_sym_cmd_identifier_token28] = ACTIONS(1674), + [aux_sym_cmd_identifier_token29] = ACTIONS(1674), + [aux_sym_cmd_identifier_token30] = ACTIONS(1674), + [aux_sym_cmd_identifier_token31] = ACTIONS(1674), + [aux_sym_cmd_identifier_token32] = ACTIONS(1674), + [aux_sym_cmd_identifier_token33] = ACTIONS(1674), + [aux_sym_cmd_identifier_token34] = ACTIONS(1674), + [aux_sym_cmd_identifier_token35] = ACTIONS(1674), + [aux_sym_cmd_identifier_token36] = ACTIONS(1674), + [aux_sym_cmd_identifier_token37] = ACTIONS(1674), + [aux_sym_cmd_identifier_token38] = ACTIONS(1674), + [aux_sym_cmd_identifier_token39] = ACTIONS(1674), + [aux_sym_cmd_identifier_token40] = ACTIONS(1674), + [anon_sym_def] = ACTIONS(1674), + [anon_sym_export_DASHenv] = ACTIONS(1674), + [anon_sym_extern] = ACTIONS(1674), + [anon_sym_module] = ACTIONS(1674), + [anon_sym_use] = ACTIONS(1674), + [anon_sym_LPAREN] = ACTIONS(1674), + [anon_sym_COMMA] = ACTIONS(1674), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_error] = ACTIONS(1674), + [anon_sym_DASH2] = ACTIONS(1674), + [anon_sym_break] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(1674), + [anon_sym_for] = ACTIONS(1674), + [anon_sym_in2] = ACTIONS(1674), + [anon_sym_loop] = ACTIONS(1674), + [anon_sym_make] = ACTIONS(1674), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1674), + [anon_sym_if] = ACTIONS(1674), + [anon_sym_else] = ACTIONS(1674), + [anon_sym_match] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_try] = ACTIONS(1674), + [anon_sym_catch] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_source] = ACTIONS(1674), + [anon_sym_source_DASHenv] = ACTIONS(1674), + [anon_sym_hide] = ACTIONS(1674), + [anon_sym_hide_DASHenv] = ACTIONS(1674), + [anon_sym_overlay] = ACTIONS(1674), + [anon_sym_as] = ACTIONS(1674), + [anon_sym_PLUS2] = ACTIONS(1674), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1674), + [anon_sym_DOT_DOT2] = ACTIONS(1674), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1676), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1676), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1674), + [aux_sym__val_number_decimal_token1] = ACTIONS(1674), + [aux_sym__val_number_decimal_token2] = ACTIONS(1674), + [aux_sym__val_number_decimal_token3] = ACTIONS(1674), + [aux_sym__val_number_decimal_token4] = ACTIONS(1674), + [aux_sym__val_number_token1] = ACTIONS(1674), + [aux_sym__val_number_token2] = ACTIONS(1674), + [aux_sym__val_number_token3] = ACTIONS(1674), + [aux_sym__val_number_token4] = ACTIONS(1674), + [aux_sym__val_number_token5] = ACTIONS(1674), + [aux_sym__val_number_token6] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym__str_single_quotes] = ACTIONS(1674), + [sym__str_back_ticks] = ACTIONS(1674), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1674), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1674), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1674), + [sym__entry_separator] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1674), + [anon_sym_DOT2] = ACTIONS(1666), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1676), }, [329] = { [sym_comment] = STATE(329), - [aux_sym__block_body_repeat1] = STATE(212), - [anon_sym_export] = ACTIONS(1514), - [anon_sym_alias] = ACTIONS(1514), - [anon_sym_let] = ACTIONS(1514), - [anon_sym_let_DASHenv] = ACTIONS(1514), - [anon_sym_mut] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [aux_sym_cmd_identifier_token1] = ACTIONS(1514), - [aux_sym_cmd_identifier_token2] = ACTIONS(1516), - [aux_sym_cmd_identifier_token3] = ACTIONS(1516), - [aux_sym_cmd_identifier_token4] = ACTIONS(1516), - [aux_sym_cmd_identifier_token5] = ACTIONS(1516), - [aux_sym_cmd_identifier_token6] = ACTIONS(1516), - [aux_sym_cmd_identifier_token7] = ACTIONS(1516), - [aux_sym_cmd_identifier_token8] = ACTIONS(1514), - [aux_sym_cmd_identifier_token9] = ACTIONS(1514), - [aux_sym_cmd_identifier_token10] = ACTIONS(1516), - [aux_sym_cmd_identifier_token11] = ACTIONS(1516), - [aux_sym_cmd_identifier_token12] = ACTIONS(1514), - [aux_sym_cmd_identifier_token13] = ACTIONS(1514), - [aux_sym_cmd_identifier_token14] = ACTIONS(1514), - [aux_sym_cmd_identifier_token15] = ACTIONS(1514), - [aux_sym_cmd_identifier_token16] = ACTIONS(1516), - [aux_sym_cmd_identifier_token17] = ACTIONS(1516), - [aux_sym_cmd_identifier_token18] = ACTIONS(1516), - [aux_sym_cmd_identifier_token19] = ACTIONS(1516), - [aux_sym_cmd_identifier_token20] = ACTIONS(1516), - [aux_sym_cmd_identifier_token21] = ACTIONS(1516), - [aux_sym_cmd_identifier_token22] = ACTIONS(1516), - [aux_sym_cmd_identifier_token23] = ACTIONS(1516), - [aux_sym_cmd_identifier_token24] = ACTIONS(1516), - [aux_sym_cmd_identifier_token25] = ACTIONS(1516), - [aux_sym_cmd_identifier_token26] = ACTIONS(1516), - [aux_sym_cmd_identifier_token27] = ACTIONS(1516), - [aux_sym_cmd_identifier_token28] = ACTIONS(1516), - [aux_sym_cmd_identifier_token29] = ACTIONS(1516), - [aux_sym_cmd_identifier_token30] = ACTIONS(1516), - [aux_sym_cmd_identifier_token31] = ACTIONS(1516), - [aux_sym_cmd_identifier_token32] = ACTIONS(1516), - [aux_sym_cmd_identifier_token33] = ACTIONS(1516), - [aux_sym_cmd_identifier_token34] = ACTIONS(1514), - [aux_sym_cmd_identifier_token35] = ACTIONS(1516), - [aux_sym_cmd_identifier_token36] = ACTIONS(1516), - [aux_sym_cmd_identifier_token37] = ACTIONS(1516), - [aux_sym_cmd_identifier_token38] = ACTIONS(1514), - [aux_sym_cmd_identifier_token39] = ACTIONS(1516), - [aux_sym_cmd_identifier_token40] = ACTIONS(1516), - [sym__newline] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_AT] = ACTIONS(1516), - [anon_sym_def] = ACTIONS(1514), - [anon_sym_export_DASHenv] = ACTIONS(1514), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym_module] = ACTIONS(1514), - [anon_sym_use] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_LPAREN] = ACTIONS(1516), - [anon_sym_DOLLAR] = ACTIONS(1514), - [anon_sym_error] = ACTIONS(1514), - [anon_sym_DASH2] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_loop] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_do] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_match] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_DOT_DOT] = ACTIONS(1514), - [anon_sym_try] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_source] = ACTIONS(1514), - [anon_sym_source_DASHenv] = ACTIONS(1514), - [anon_sym_hide] = ACTIONS(1514), - [anon_sym_hide_DASHenv] = ACTIONS(1514), - [anon_sym_overlay] = ACTIONS(1514), - [anon_sym_where] = ACTIONS(1516), - [aux_sym_expr_unary_token1] = ACTIONS(1516), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1516), - [anon_sym_DOT_DOT_LT] = ACTIONS(1516), - [anon_sym_null] = ACTIONS(1514), - [anon_sym_true] = ACTIONS(1514), - [anon_sym_false] = ACTIONS(1514), - [aux_sym__val_number_decimal_token1] = ACTIONS(1514), - [aux_sym__val_number_decimal_token2] = ACTIONS(1516), - [aux_sym__val_number_decimal_token3] = ACTIONS(1516), - [aux_sym__val_number_decimal_token4] = ACTIONS(1516), - [aux_sym__val_number_token1] = ACTIONS(1516), - [aux_sym__val_number_token2] = ACTIONS(1516), - [aux_sym__val_number_token3] = ACTIONS(1516), - [aux_sym__val_number_token4] = ACTIONS(1514), - [aux_sym__val_number_token5] = ACTIONS(1514), - [aux_sym__val_number_token6] = ACTIONS(1514), - [anon_sym_0b] = ACTIONS(1514), - [anon_sym_0o] = ACTIONS(1514), - [anon_sym_0x] = ACTIONS(1514), - [sym_val_date] = ACTIONS(1516), - [anon_sym_DQUOTE] = ACTIONS(1516), - [sym__str_single_quotes] = ACTIONS(1516), - [sym__str_back_ticks] = ACTIONS(1516), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1516), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1516), - [aux_sym_env_var_token1] = ACTIONS(1514), - [anon_sym_CARET] = ACTIONS(1516), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1516), + [anon_sym_export] = ACTIONS(1491), + [anon_sym_alias] = ACTIONS(1491), + [anon_sym_let] = ACTIONS(1491), + [anon_sym_let_DASHenv] = ACTIONS(1491), + [anon_sym_mut] = ACTIONS(1491), + [anon_sym_const] = ACTIONS(1491), + [aux_sym_cmd_identifier_token1] = ACTIONS(1491), + [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(1491), + [aux_sym_cmd_identifier_token9] = ACTIONS(1491), + [aux_sym_cmd_identifier_token10] = ACTIONS(1491), + [aux_sym_cmd_identifier_token11] = ACTIONS(1491), + [aux_sym_cmd_identifier_token12] = ACTIONS(1491), + [aux_sym_cmd_identifier_token13] = ACTIONS(1491), + [aux_sym_cmd_identifier_token14] = ACTIONS(1491), + [aux_sym_cmd_identifier_token15] = ACTIONS(1491), + [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(1491), + [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(1491), + [aux_sym_cmd_identifier_token39] = ACTIONS(1491), + [aux_sym_cmd_identifier_token40] = ACTIONS(1491), + [anon_sym_def] = ACTIONS(1491), + [anon_sym_export_DASHenv] = ACTIONS(1491), + [anon_sym_extern] = ACTIONS(1491), + [anon_sym_module] = ACTIONS(1491), + [anon_sym_use] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_COMMA] = ACTIONS(1491), + [anon_sym_DOLLAR] = ACTIONS(1491), + [anon_sym_error] = ACTIONS(1491), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_break] = ACTIONS(1491), + [anon_sym_continue] = ACTIONS(1491), + [anon_sym_for] = ACTIONS(1491), + [anon_sym_in2] = ACTIONS(1491), + [anon_sym_loop] = ACTIONS(1491), + [anon_sym_make] = ACTIONS(1491), + [anon_sym_while] = ACTIONS(1491), + [anon_sym_do] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1491), + [anon_sym_else] = ACTIONS(1491), + [anon_sym_match] = ACTIONS(1491), + [anon_sym_RBRACE] = ACTIONS(1491), + [anon_sym_try] = ACTIONS(1491), + [anon_sym_catch] = ACTIONS(1491), + [anon_sym_return] = ACTIONS(1491), + [anon_sym_source] = ACTIONS(1491), + [anon_sym_source_DASHenv] = ACTIONS(1491), + [anon_sym_hide] = ACTIONS(1491), + [anon_sym_hide_DASHenv] = ACTIONS(1491), + [anon_sym_overlay] = ACTIONS(1491), + [anon_sym_as] = ACTIONS(1491), + [anon_sym_LPAREN2] = ACTIONS(1493), + [anon_sym_PLUS2] = ACTIONS(1491), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1491), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1491), + [aux_sym__val_number_decimal_token1] = ACTIONS(1491), + [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(1491), + [aux_sym__val_number_token5] = ACTIONS(1491), + [aux_sym__val_number_token6] = ACTIONS(1491), + [sym_filesize_unit] = ACTIONS(1491), + [sym_duration_unit] = 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), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1491), + [sym__entry_separator] = ACTIONS(1493), + [anon_sym_register] = ACTIONS(1491), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1493), }, [330] = { - [sym__expr_parenthesized_immediate] = STATE(676), - [sym__immediate_decimal] = STATE(677), - [sym_val_variable] = STATE(676), [sym_comment] = STATE(330), - [anon_sym_export] = ACTIONS(1575), - [anon_sym_alias] = ACTIONS(1575), - [anon_sym_let] = ACTIONS(1575), - [anon_sym_let_DASHenv] = ACTIONS(1575), - [anon_sym_mut] = ACTIONS(1575), - [anon_sym_const] = ACTIONS(1575), - [aux_sym_cmd_identifier_token1] = ACTIONS(1575), - [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(1575), - [aux_sym_cmd_identifier_token9] = ACTIONS(1575), - [aux_sym_cmd_identifier_token10] = ACTIONS(1577), - [aux_sym_cmd_identifier_token11] = ACTIONS(1577), - [aux_sym_cmd_identifier_token12] = ACTIONS(1575), - [aux_sym_cmd_identifier_token13] = ACTIONS(1575), - [aux_sym_cmd_identifier_token14] = ACTIONS(1575), - [aux_sym_cmd_identifier_token15] = ACTIONS(1575), - [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(1575), - [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(1575), - [aux_sym_cmd_identifier_token39] = ACTIONS(1577), - [aux_sym_cmd_identifier_token40] = ACTIONS(1577), - [anon_sym_def] = ACTIONS(1575), - [anon_sym_export_DASHenv] = ACTIONS(1575), - [anon_sym_extern] = ACTIONS(1575), - [anon_sym_module] = ACTIONS(1575), - [anon_sym_use] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_COMMA] = ACTIONS(1577), - [anon_sym_DOLLAR] = ACTIONS(1355), - [anon_sym_error] = ACTIONS(1575), - [anon_sym_DASH2] = ACTIONS(1575), - [anon_sym_break] = ACTIONS(1575), - [anon_sym_continue] = ACTIONS(1575), - [anon_sym_for] = ACTIONS(1575), - [anon_sym_in2] = ACTIONS(1575), - [anon_sym_loop] = ACTIONS(1575), - [anon_sym_make] = ACTIONS(1575), - [anon_sym_while] = ACTIONS(1575), - [anon_sym_do] = ACTIONS(1575), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_else] = ACTIONS(1575), - [anon_sym_match] = ACTIONS(1575), - [anon_sym_RBRACE] = ACTIONS(1577), - [anon_sym_try] = ACTIONS(1575), - [anon_sym_catch] = ACTIONS(1575), - [anon_sym_return] = ACTIONS(1575), - [anon_sym_source] = ACTIONS(1575), - [anon_sym_source_DASHenv] = ACTIONS(1575), - [anon_sym_hide] = ACTIONS(1575), - [anon_sym_hide_DASHenv] = ACTIONS(1575), - [anon_sym_overlay] = ACTIONS(1575), - [anon_sym_as] = ACTIONS(1575), - [anon_sym_LPAREN2] = ACTIONS(1565), - [anon_sym_PLUS2] = ACTIONS(1575), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1577), - [aux_sym__immediate_decimal_token1] = ACTIONS(1674), - [aux_sym__immediate_decimal_token3] = ACTIONS(1676), - [aux_sym__immediate_decimal_token4] = ACTIONS(1678), - [aux_sym__immediate_decimal_token5] = ACTIONS(1680), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1577), - [aux_sym__val_number_decimal_token1] = ACTIONS(1575), - [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(1577), - [aux_sym__val_number_token2] = ACTIONS(1577), - [aux_sym__val_number_token3] = ACTIONS(1577), - [aux_sym__val_number_token4] = ACTIONS(1575), - [aux_sym__val_number_token5] = ACTIONS(1575), - [aux_sym__val_number_token6] = ACTIONS(1575), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1577), - [anon_sym_register] = ACTIONS(1575), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1577), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [aux_sym_cmd_identifier_token1] = ACTIONS(1579), + [aux_sym_cmd_identifier_token2] = ACTIONS(1579), + [aux_sym_cmd_identifier_token3] = ACTIONS(1579), + [aux_sym_cmd_identifier_token4] = ACTIONS(1579), + [aux_sym_cmd_identifier_token5] = ACTIONS(1579), + [aux_sym_cmd_identifier_token6] = ACTIONS(1579), + [aux_sym_cmd_identifier_token7] = ACTIONS(1579), + [aux_sym_cmd_identifier_token8] = ACTIONS(1579), + [aux_sym_cmd_identifier_token9] = ACTIONS(1579), + [aux_sym_cmd_identifier_token10] = ACTIONS(1579), + [aux_sym_cmd_identifier_token11] = ACTIONS(1579), + [aux_sym_cmd_identifier_token12] = ACTIONS(1579), + [aux_sym_cmd_identifier_token13] = ACTIONS(1579), + [aux_sym_cmd_identifier_token14] = ACTIONS(1579), + [aux_sym_cmd_identifier_token15] = ACTIONS(1579), + [aux_sym_cmd_identifier_token16] = ACTIONS(1579), + [aux_sym_cmd_identifier_token17] = ACTIONS(1579), + [aux_sym_cmd_identifier_token18] = ACTIONS(1579), + [aux_sym_cmd_identifier_token19] = ACTIONS(1579), + [aux_sym_cmd_identifier_token20] = ACTIONS(1579), + [aux_sym_cmd_identifier_token21] = ACTIONS(1579), + [aux_sym_cmd_identifier_token22] = ACTIONS(1579), + [aux_sym_cmd_identifier_token23] = ACTIONS(1579), + [aux_sym_cmd_identifier_token24] = ACTIONS(1579), + [aux_sym_cmd_identifier_token25] = ACTIONS(1579), + [aux_sym_cmd_identifier_token26] = ACTIONS(1579), + [aux_sym_cmd_identifier_token27] = ACTIONS(1579), + [aux_sym_cmd_identifier_token28] = ACTIONS(1579), + [aux_sym_cmd_identifier_token29] = ACTIONS(1579), + [aux_sym_cmd_identifier_token30] = ACTIONS(1579), + [aux_sym_cmd_identifier_token31] = ACTIONS(1579), + [aux_sym_cmd_identifier_token32] = ACTIONS(1579), + [aux_sym_cmd_identifier_token33] = ACTIONS(1579), + [aux_sym_cmd_identifier_token34] = ACTIONS(1579), + [aux_sym_cmd_identifier_token35] = ACTIONS(1579), + [aux_sym_cmd_identifier_token36] = ACTIONS(1579), + [aux_sym_cmd_identifier_token37] = ACTIONS(1579), + [aux_sym_cmd_identifier_token38] = ACTIONS(1579), + [aux_sym_cmd_identifier_token39] = ACTIONS(1579), + [aux_sym_cmd_identifier_token40] = ACTIONS(1579), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_COMMA] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_DASH2] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in2] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_make] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_else] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_catch] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_as] = ACTIONS(1579), + [anon_sym_LPAREN2] = ACTIONS(1581), + [anon_sym_PLUS2] = ACTIONS(1579), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1579), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1579), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [aux_sym__val_number_decimal_token2] = ACTIONS(1579), + [aux_sym__val_number_decimal_token3] = ACTIONS(1579), + [aux_sym__val_number_decimal_token4] = ACTIONS(1579), + [aux_sym__val_number_token1] = ACTIONS(1579), + [aux_sym__val_number_token2] = ACTIONS(1579), + [aux_sym__val_number_token3] = ACTIONS(1579), + [aux_sym__val_number_token4] = ACTIONS(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [sym_filesize_unit] = ACTIONS(1579), + [sym_duration_unit] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym__str_single_quotes] = ACTIONS(1579), + [sym__str_back_ticks] = ACTIONS(1579), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1579), + [sym__entry_separator] = ACTIONS(1581), + [anon_sym_register] = ACTIONS(1579), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1581), }, [331] = { [sym_comment] = STATE(331), - [anon_sym_export] = ACTIONS(1492), - [anon_sym_alias] = ACTIONS(1492), - [anon_sym_let] = ACTIONS(1492), - [anon_sym_let_DASHenv] = ACTIONS(1492), - [anon_sym_mut] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [aux_sym_cmd_identifier_token1] = ACTIONS(1492), - [aux_sym_cmd_identifier_token2] = ACTIONS(1492), - [aux_sym_cmd_identifier_token3] = ACTIONS(1492), - [aux_sym_cmd_identifier_token4] = ACTIONS(1492), - [aux_sym_cmd_identifier_token5] = ACTIONS(1492), - [aux_sym_cmd_identifier_token6] = ACTIONS(1492), - [aux_sym_cmd_identifier_token7] = ACTIONS(1492), - [aux_sym_cmd_identifier_token8] = ACTIONS(1492), - [aux_sym_cmd_identifier_token9] = ACTIONS(1492), - [aux_sym_cmd_identifier_token10] = ACTIONS(1492), - [aux_sym_cmd_identifier_token11] = ACTIONS(1492), - [aux_sym_cmd_identifier_token12] = ACTIONS(1492), - [aux_sym_cmd_identifier_token13] = ACTIONS(1492), - [aux_sym_cmd_identifier_token14] = ACTIONS(1492), - [aux_sym_cmd_identifier_token15] = ACTIONS(1492), - [aux_sym_cmd_identifier_token16] = ACTIONS(1492), - [aux_sym_cmd_identifier_token17] = ACTIONS(1492), - [aux_sym_cmd_identifier_token18] = ACTIONS(1492), - [aux_sym_cmd_identifier_token19] = ACTIONS(1492), - [aux_sym_cmd_identifier_token20] = ACTIONS(1492), - [aux_sym_cmd_identifier_token21] = ACTIONS(1492), - [aux_sym_cmd_identifier_token22] = ACTIONS(1492), - [aux_sym_cmd_identifier_token23] = ACTIONS(1492), - [aux_sym_cmd_identifier_token24] = ACTIONS(1492), - [aux_sym_cmd_identifier_token25] = ACTIONS(1492), - [aux_sym_cmd_identifier_token26] = ACTIONS(1492), - [aux_sym_cmd_identifier_token27] = ACTIONS(1492), - [aux_sym_cmd_identifier_token28] = ACTIONS(1492), - [aux_sym_cmd_identifier_token29] = ACTIONS(1492), - [aux_sym_cmd_identifier_token30] = ACTIONS(1492), - [aux_sym_cmd_identifier_token31] = ACTIONS(1492), - [aux_sym_cmd_identifier_token32] = ACTIONS(1492), - [aux_sym_cmd_identifier_token33] = ACTIONS(1492), - [aux_sym_cmd_identifier_token34] = ACTIONS(1492), - [aux_sym_cmd_identifier_token35] = ACTIONS(1492), - [aux_sym_cmd_identifier_token36] = ACTIONS(1492), - [aux_sym_cmd_identifier_token37] = ACTIONS(1492), - [aux_sym_cmd_identifier_token38] = ACTIONS(1492), - [aux_sym_cmd_identifier_token39] = ACTIONS(1492), - [aux_sym_cmd_identifier_token40] = ACTIONS(1492), - [anon_sym_def] = ACTIONS(1492), - [anon_sym_export_DASHenv] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1492), - [anon_sym_module] = ACTIONS(1492), - [anon_sym_use] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_DOLLAR] = ACTIONS(1492), - [anon_sym_error] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_loop] = ACTIONS(1492), - [anon_sym_make] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_else] = ACTIONS(1492), - [anon_sym_match] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_try] = ACTIONS(1492), - [anon_sym_catch] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_source] = ACTIONS(1492), - [anon_sym_source_DASHenv] = ACTIONS(1492), - [anon_sym_hide] = ACTIONS(1492), - [anon_sym_hide_DASHenv] = ACTIONS(1492), - [anon_sym_overlay] = ACTIONS(1492), - [anon_sym_as] = ACTIONS(1492), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1492), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1492), - [aux_sym__val_number_decimal_token3] = ACTIONS(1492), - [aux_sym__val_number_decimal_token4] = ACTIONS(1492), - [aux_sym__val_number_token1] = ACTIONS(1492), - [aux_sym__val_number_token2] = ACTIONS(1492), - [aux_sym__val_number_token3] = ACTIONS(1492), - [aux_sym__val_number_token4] = ACTIONS(1492), - [aux_sym__val_number_token5] = ACTIONS(1492), - [aux_sym__val_number_token6] = ACTIONS(1492), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1492), - [sym__str_single_quotes] = ACTIONS(1492), - [sym__str_back_ticks] = ACTIONS(1492), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1492), - [sym__entry_separator] = ACTIONS(1494), - [anon_sym_register] = ACTIONS(1492), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1492), + [anon_sym_export] = ACTIONS(1678), + [anon_sym_alias] = ACTIONS(1678), + [anon_sym_let] = ACTIONS(1678), + [anon_sym_let_DASHenv] = ACTIONS(1678), + [anon_sym_mut] = ACTIONS(1678), + [anon_sym_const] = ACTIONS(1678), + [aux_sym_cmd_identifier_token1] = ACTIONS(1678), + [aux_sym_cmd_identifier_token2] = ACTIONS(1678), + [aux_sym_cmd_identifier_token3] = ACTIONS(1678), + [aux_sym_cmd_identifier_token4] = ACTIONS(1678), + [aux_sym_cmd_identifier_token5] = ACTIONS(1678), + [aux_sym_cmd_identifier_token6] = ACTIONS(1678), + [aux_sym_cmd_identifier_token7] = ACTIONS(1678), + [aux_sym_cmd_identifier_token8] = ACTIONS(1678), + [aux_sym_cmd_identifier_token9] = ACTIONS(1678), + [aux_sym_cmd_identifier_token10] = ACTIONS(1678), + [aux_sym_cmd_identifier_token11] = ACTIONS(1678), + [aux_sym_cmd_identifier_token12] = ACTIONS(1678), + [aux_sym_cmd_identifier_token13] = ACTIONS(1678), + [aux_sym_cmd_identifier_token14] = ACTIONS(1678), + [aux_sym_cmd_identifier_token15] = ACTIONS(1678), + [aux_sym_cmd_identifier_token16] = ACTIONS(1678), + [aux_sym_cmd_identifier_token17] = ACTIONS(1678), + [aux_sym_cmd_identifier_token18] = ACTIONS(1678), + [aux_sym_cmd_identifier_token19] = ACTIONS(1678), + [aux_sym_cmd_identifier_token20] = ACTIONS(1678), + [aux_sym_cmd_identifier_token21] = ACTIONS(1678), + [aux_sym_cmd_identifier_token22] = ACTIONS(1678), + [aux_sym_cmd_identifier_token23] = ACTIONS(1678), + [aux_sym_cmd_identifier_token24] = ACTIONS(1678), + [aux_sym_cmd_identifier_token25] = ACTIONS(1678), + [aux_sym_cmd_identifier_token26] = ACTIONS(1678), + [aux_sym_cmd_identifier_token27] = ACTIONS(1678), + [aux_sym_cmd_identifier_token28] = ACTIONS(1678), + [aux_sym_cmd_identifier_token29] = ACTIONS(1678), + [aux_sym_cmd_identifier_token30] = ACTIONS(1678), + [aux_sym_cmd_identifier_token31] = ACTIONS(1678), + [aux_sym_cmd_identifier_token32] = ACTIONS(1678), + [aux_sym_cmd_identifier_token33] = ACTIONS(1678), + [aux_sym_cmd_identifier_token34] = ACTIONS(1678), + [aux_sym_cmd_identifier_token35] = ACTIONS(1678), + [aux_sym_cmd_identifier_token36] = ACTIONS(1678), + [aux_sym_cmd_identifier_token37] = ACTIONS(1678), + [aux_sym_cmd_identifier_token38] = ACTIONS(1678), + [aux_sym_cmd_identifier_token39] = ACTIONS(1678), + [aux_sym_cmd_identifier_token40] = ACTIONS(1678), + [anon_sym_def] = ACTIONS(1678), + [anon_sym_export_DASHenv] = ACTIONS(1678), + [anon_sym_extern] = ACTIONS(1678), + [anon_sym_module] = ACTIONS(1678), + [anon_sym_use] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1678), + [anon_sym_COMMA] = ACTIONS(1678), + [anon_sym_DOLLAR] = ACTIONS(1678), + [anon_sym_error] = ACTIONS(1678), + [anon_sym_DASH2] = ACTIONS(1678), + [anon_sym_break] = ACTIONS(1678), + [anon_sym_continue] = ACTIONS(1678), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_in2] = ACTIONS(1678), + [anon_sym_loop] = ACTIONS(1678), + [anon_sym_make] = ACTIONS(1678), + [anon_sym_while] = ACTIONS(1678), + [anon_sym_do] = ACTIONS(1678), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_else] = ACTIONS(1678), + [anon_sym_match] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_try] = ACTIONS(1678), + [anon_sym_catch] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1678), + [anon_sym_source] = ACTIONS(1678), + [anon_sym_source_DASHenv] = ACTIONS(1678), + [anon_sym_hide] = ACTIONS(1678), + [anon_sym_hide_DASHenv] = ACTIONS(1678), + [anon_sym_overlay] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1678), + [anon_sym_LPAREN2] = ACTIONS(1680), + [anon_sym_PLUS2] = ACTIONS(1678), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1678), + [anon_sym_DOT_DOT2] = ACTIONS(1678), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1680), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1680), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1678), + [aux_sym__val_number_decimal_token1] = ACTIONS(1678), + [aux_sym__val_number_decimal_token2] = ACTIONS(1678), + [aux_sym__val_number_decimal_token3] = ACTIONS(1678), + [aux_sym__val_number_decimal_token4] = ACTIONS(1678), + [aux_sym__val_number_token1] = ACTIONS(1678), + [aux_sym__val_number_token2] = ACTIONS(1678), + [aux_sym__val_number_token3] = ACTIONS(1678), + [aux_sym__val_number_token4] = ACTIONS(1678), + [aux_sym__val_number_token5] = ACTIONS(1678), + [aux_sym__val_number_token6] = ACTIONS(1678), + [sym_filesize_unit] = ACTIONS(1678), + [sym_duration_unit] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym__str_single_quotes] = ACTIONS(1678), + [sym__str_back_ticks] = ACTIONS(1678), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1678), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1678), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1678), + [sym__entry_separator] = ACTIONS(1680), + [anon_sym_register] = ACTIONS(1678), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1678), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1494), + [sym_raw_string_begin] = ACTIONS(1680), }, [332] = { + [sym__expr_parenthesized_immediate] = STATE(652), + [sym__immediate_decimal] = STATE(653), + [sym_val_variable] = STATE(652), [sym_comment] = STATE(332), - [anon_sym_export] = ACTIONS(1704), - [anon_sym_alias] = ACTIONS(1704), - [anon_sym_let] = ACTIONS(1704), - [anon_sym_let_DASHenv] = ACTIONS(1704), - [anon_sym_mut] = ACTIONS(1704), - [anon_sym_const] = ACTIONS(1704), - [aux_sym_cmd_identifier_token1] = ACTIONS(1704), - [aux_sym_cmd_identifier_token2] = ACTIONS(1706), - [aux_sym_cmd_identifier_token3] = ACTIONS(1706), - [aux_sym_cmd_identifier_token4] = ACTIONS(1706), - [aux_sym_cmd_identifier_token5] = ACTIONS(1706), - [aux_sym_cmd_identifier_token6] = ACTIONS(1706), - [aux_sym_cmd_identifier_token7] = ACTIONS(1706), - [aux_sym_cmd_identifier_token8] = ACTIONS(1704), - [aux_sym_cmd_identifier_token9] = ACTIONS(1704), - [aux_sym_cmd_identifier_token10] = ACTIONS(1706), - [aux_sym_cmd_identifier_token11] = ACTIONS(1706), - [aux_sym_cmd_identifier_token12] = ACTIONS(1704), - [aux_sym_cmd_identifier_token13] = ACTIONS(1704), - [aux_sym_cmd_identifier_token14] = ACTIONS(1704), - [aux_sym_cmd_identifier_token15] = ACTIONS(1704), - [aux_sym_cmd_identifier_token16] = ACTIONS(1706), - [aux_sym_cmd_identifier_token17] = ACTIONS(1706), - [aux_sym_cmd_identifier_token18] = ACTIONS(1706), - [aux_sym_cmd_identifier_token19] = ACTIONS(1706), - [aux_sym_cmd_identifier_token20] = ACTIONS(1706), - [aux_sym_cmd_identifier_token21] = ACTIONS(1706), - [aux_sym_cmd_identifier_token22] = ACTIONS(1706), - [aux_sym_cmd_identifier_token23] = ACTIONS(1706), - [aux_sym_cmd_identifier_token24] = ACTIONS(1706), - [aux_sym_cmd_identifier_token25] = ACTIONS(1706), - [aux_sym_cmd_identifier_token26] = ACTIONS(1706), - [aux_sym_cmd_identifier_token27] = ACTIONS(1706), - [aux_sym_cmd_identifier_token28] = ACTIONS(1706), - [aux_sym_cmd_identifier_token29] = ACTIONS(1706), - [aux_sym_cmd_identifier_token30] = ACTIONS(1706), - [aux_sym_cmd_identifier_token31] = ACTIONS(1706), - [aux_sym_cmd_identifier_token32] = ACTIONS(1706), - [aux_sym_cmd_identifier_token33] = ACTIONS(1706), - [aux_sym_cmd_identifier_token34] = ACTIONS(1704), - [aux_sym_cmd_identifier_token35] = ACTIONS(1706), - [aux_sym_cmd_identifier_token36] = ACTIONS(1706), - [aux_sym_cmd_identifier_token37] = ACTIONS(1706), - [aux_sym_cmd_identifier_token38] = ACTIONS(1704), - [aux_sym_cmd_identifier_token39] = ACTIONS(1706), - [aux_sym_cmd_identifier_token40] = ACTIONS(1706), - [sym__newline] = ACTIONS(1708), - [anon_sym_SEMI] = ACTIONS(1708), - [anon_sym_AT] = ACTIONS(1706), - [anon_sym_def] = ACTIONS(1704), - [anon_sym_export_DASHenv] = ACTIONS(1704), - [anon_sym_extern] = ACTIONS(1704), - [anon_sym_module] = ACTIONS(1704), - [anon_sym_use] = ACTIONS(1704), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(1704), - [anon_sym_error] = ACTIONS(1704), - [anon_sym_DASH2] = ACTIONS(1704), - [anon_sym_break] = ACTIONS(1704), - [anon_sym_continue] = ACTIONS(1704), - [anon_sym_for] = ACTIONS(1704), - [anon_sym_loop] = ACTIONS(1704), - [anon_sym_while] = ACTIONS(1704), - [anon_sym_do] = ACTIONS(1704), - [anon_sym_if] = ACTIONS(1704), - [anon_sym_match] = ACTIONS(1704), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_DOT_DOT] = ACTIONS(1704), - [anon_sym_try] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1704), - [anon_sym_source] = ACTIONS(1704), - [anon_sym_source_DASHenv] = ACTIONS(1704), - [anon_sym_hide] = ACTIONS(1704), - [anon_sym_hide_DASHenv] = ACTIONS(1704), - [anon_sym_overlay] = ACTIONS(1704), - [anon_sym_where] = ACTIONS(1706), - [aux_sym_expr_unary_token1] = ACTIONS(1706), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1706), - [anon_sym_DOT_DOT_LT] = ACTIONS(1706), - [anon_sym_null] = ACTIONS(1704), - [anon_sym_true] = ACTIONS(1704), - [anon_sym_false] = ACTIONS(1704), - [aux_sym__val_number_decimal_token1] = ACTIONS(1704), - [aux_sym__val_number_decimal_token2] = ACTIONS(1706), - [aux_sym__val_number_decimal_token3] = ACTIONS(1706), - [aux_sym__val_number_decimal_token4] = ACTIONS(1706), - [aux_sym__val_number_token1] = ACTIONS(1706), - [aux_sym__val_number_token2] = ACTIONS(1706), - [aux_sym__val_number_token3] = ACTIONS(1706), - [aux_sym__val_number_token4] = ACTIONS(1704), - [aux_sym__val_number_token5] = ACTIONS(1704), - [aux_sym__val_number_token6] = ACTIONS(1704), - [anon_sym_0b] = ACTIONS(1704), - [anon_sym_0o] = ACTIONS(1704), - [anon_sym_0x] = ACTIONS(1704), - [sym_val_date] = ACTIONS(1706), - [anon_sym_DQUOTE] = ACTIONS(1706), - [sym__str_single_quotes] = ACTIONS(1706), - [sym__str_back_ticks] = ACTIONS(1706), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1706), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1706), - [aux_sym_env_var_token1] = ACTIONS(1704), - [anon_sym_CARET] = ACTIONS(1706), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1706), + [anon_sym_export] = ACTIONS(1479), + [anon_sym_alias] = ACTIONS(1479), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_let_DASHenv] = ACTIONS(1479), + [anon_sym_mut] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1479), + [aux_sym_cmd_identifier_token1] = ACTIONS(1479), + [aux_sym_cmd_identifier_token2] = ACTIONS(1489), + [aux_sym_cmd_identifier_token3] = ACTIONS(1489), + [aux_sym_cmd_identifier_token4] = ACTIONS(1489), + [aux_sym_cmd_identifier_token5] = ACTIONS(1489), + [aux_sym_cmd_identifier_token6] = ACTIONS(1489), + [aux_sym_cmd_identifier_token7] = ACTIONS(1489), + [aux_sym_cmd_identifier_token8] = ACTIONS(1479), + [aux_sym_cmd_identifier_token9] = ACTIONS(1479), + [aux_sym_cmd_identifier_token10] = ACTIONS(1489), + [aux_sym_cmd_identifier_token11] = ACTIONS(1489), + [aux_sym_cmd_identifier_token12] = ACTIONS(1479), + [aux_sym_cmd_identifier_token13] = ACTIONS(1479), + [aux_sym_cmd_identifier_token14] = ACTIONS(1479), + [aux_sym_cmd_identifier_token15] = ACTIONS(1479), + [aux_sym_cmd_identifier_token16] = ACTIONS(1489), + [aux_sym_cmd_identifier_token17] = ACTIONS(1489), + [aux_sym_cmd_identifier_token18] = ACTIONS(1489), + [aux_sym_cmd_identifier_token19] = ACTIONS(1489), + [aux_sym_cmd_identifier_token20] = ACTIONS(1489), + [aux_sym_cmd_identifier_token21] = ACTIONS(1489), + [aux_sym_cmd_identifier_token22] = ACTIONS(1489), + [aux_sym_cmd_identifier_token23] = ACTIONS(1489), + [aux_sym_cmd_identifier_token24] = ACTIONS(1489), + [aux_sym_cmd_identifier_token25] = ACTIONS(1489), + [aux_sym_cmd_identifier_token26] = ACTIONS(1489), + [aux_sym_cmd_identifier_token27] = ACTIONS(1489), + [aux_sym_cmd_identifier_token28] = ACTIONS(1489), + [aux_sym_cmd_identifier_token29] = ACTIONS(1489), + [aux_sym_cmd_identifier_token30] = ACTIONS(1489), + [aux_sym_cmd_identifier_token31] = ACTIONS(1489), + [aux_sym_cmd_identifier_token32] = ACTIONS(1489), + [aux_sym_cmd_identifier_token33] = ACTIONS(1489), + [aux_sym_cmd_identifier_token34] = ACTIONS(1479), + [aux_sym_cmd_identifier_token35] = ACTIONS(1489), + [aux_sym_cmd_identifier_token36] = ACTIONS(1489), + [aux_sym_cmd_identifier_token37] = ACTIONS(1489), + [aux_sym_cmd_identifier_token38] = ACTIONS(1479), + [aux_sym_cmd_identifier_token39] = ACTIONS(1489), + [aux_sym_cmd_identifier_token40] = ACTIONS(1489), + [anon_sym_def] = ACTIONS(1479), + [anon_sym_export_DASHenv] = ACTIONS(1479), + [anon_sym_extern] = ACTIONS(1479), + [anon_sym_module] = ACTIONS(1479), + [anon_sym_use] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(1489), + [anon_sym_DOLLAR] = ACTIONS(1293), + [anon_sym_error] = ACTIONS(1479), + [anon_sym_DASH2] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1479), + [anon_sym_continue] = ACTIONS(1479), + [anon_sym_for] = ACTIONS(1479), + [anon_sym_in2] = ACTIONS(1479), + [anon_sym_loop] = ACTIONS(1479), + [anon_sym_make] = ACTIONS(1479), + [anon_sym_while] = ACTIONS(1479), + [anon_sym_do] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1479), + [anon_sym_match] = ACTIONS(1479), + [anon_sym_RBRACE] = ACTIONS(1489), + [anon_sym_try] = ACTIONS(1479), + [anon_sym_catch] = ACTIONS(1479), + [anon_sym_return] = ACTIONS(1479), + [anon_sym_source] = ACTIONS(1479), + [anon_sym_source_DASHenv] = ACTIONS(1479), + [anon_sym_hide] = ACTIONS(1479), + [anon_sym_hide_DASHenv] = ACTIONS(1479), + [anon_sym_overlay] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(1479), + [anon_sym_LPAREN2] = ACTIONS(1548), + [anon_sym_PLUS2] = ACTIONS(1479), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1489), + [aux_sym__immediate_decimal_token1] = ACTIONS(1652), + [aux_sym__immediate_decimal_token3] = ACTIONS(1654), + [aux_sym__immediate_decimal_token4] = ACTIONS(1656), + [aux_sym__immediate_decimal_token5] = ACTIONS(1658), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1489), + [aux_sym__val_number_decimal_token1] = ACTIONS(1479), + [aux_sym__val_number_decimal_token2] = ACTIONS(1479), + [aux_sym__val_number_decimal_token3] = ACTIONS(1479), + [aux_sym__val_number_decimal_token4] = ACTIONS(1479), + [aux_sym__val_number_token1] = ACTIONS(1489), + [aux_sym__val_number_token2] = ACTIONS(1489), + [aux_sym__val_number_token3] = ACTIONS(1489), + [aux_sym__val_number_token4] = ACTIONS(1479), + [aux_sym__val_number_token5] = ACTIONS(1479), + [aux_sym__val_number_token6] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1489), + [sym__str_single_quotes] = ACTIONS(1489), + [sym__str_back_ticks] = ACTIONS(1489), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1489), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1489), + [anon_sym_register] = ACTIONS(1479), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1489), }, [333] = { - [sym__expr_parenthesized_immediate] = STATE(678), - [sym__immediate_decimal] = STATE(679), - [sym_val_variable] = STATE(678), [sym_comment] = STATE(333), - [anon_sym_export] = ACTIONS(1544), - [anon_sym_alias] = ACTIONS(1544), - [anon_sym_let] = ACTIONS(1544), - [anon_sym_let_DASHenv] = ACTIONS(1544), - [anon_sym_mut] = ACTIONS(1544), - [anon_sym_const] = ACTIONS(1544), - [aux_sym_cmd_identifier_token1] = ACTIONS(1544), - [aux_sym_cmd_identifier_token2] = ACTIONS(1552), - [aux_sym_cmd_identifier_token3] = ACTIONS(1552), - [aux_sym_cmd_identifier_token4] = ACTIONS(1552), - [aux_sym_cmd_identifier_token5] = ACTIONS(1552), - [aux_sym_cmd_identifier_token6] = ACTIONS(1552), - [aux_sym_cmd_identifier_token7] = ACTIONS(1552), - [aux_sym_cmd_identifier_token8] = ACTIONS(1544), - [aux_sym_cmd_identifier_token9] = ACTIONS(1544), - [aux_sym_cmd_identifier_token10] = ACTIONS(1552), - [aux_sym_cmd_identifier_token11] = ACTIONS(1552), - [aux_sym_cmd_identifier_token12] = ACTIONS(1544), - [aux_sym_cmd_identifier_token13] = ACTIONS(1544), - [aux_sym_cmd_identifier_token14] = ACTIONS(1544), - [aux_sym_cmd_identifier_token15] = ACTIONS(1544), - [aux_sym_cmd_identifier_token16] = ACTIONS(1552), - [aux_sym_cmd_identifier_token17] = ACTIONS(1552), - [aux_sym_cmd_identifier_token18] = ACTIONS(1552), - [aux_sym_cmd_identifier_token19] = ACTIONS(1552), - [aux_sym_cmd_identifier_token20] = ACTIONS(1552), - [aux_sym_cmd_identifier_token21] = ACTIONS(1552), - [aux_sym_cmd_identifier_token22] = ACTIONS(1552), - [aux_sym_cmd_identifier_token23] = ACTIONS(1552), - [aux_sym_cmd_identifier_token24] = ACTIONS(1552), - [aux_sym_cmd_identifier_token25] = ACTIONS(1552), - [aux_sym_cmd_identifier_token26] = ACTIONS(1552), - [aux_sym_cmd_identifier_token27] = ACTIONS(1552), - [aux_sym_cmd_identifier_token28] = ACTIONS(1552), - [aux_sym_cmd_identifier_token29] = ACTIONS(1552), - [aux_sym_cmd_identifier_token30] = ACTIONS(1552), - [aux_sym_cmd_identifier_token31] = ACTIONS(1552), - [aux_sym_cmd_identifier_token32] = ACTIONS(1552), - [aux_sym_cmd_identifier_token33] = ACTIONS(1552), - [aux_sym_cmd_identifier_token34] = ACTIONS(1544), - [aux_sym_cmd_identifier_token35] = ACTIONS(1552), - [aux_sym_cmd_identifier_token36] = ACTIONS(1552), - [aux_sym_cmd_identifier_token37] = ACTIONS(1552), - [aux_sym_cmd_identifier_token38] = ACTIONS(1544), - [aux_sym_cmd_identifier_token39] = ACTIONS(1552), - [aux_sym_cmd_identifier_token40] = ACTIONS(1552), - [anon_sym_def] = ACTIONS(1544), - [anon_sym_export_DASHenv] = ACTIONS(1544), - [anon_sym_extern] = ACTIONS(1544), - [anon_sym_module] = ACTIONS(1544), - [anon_sym_use] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1544), - [anon_sym_COMMA] = ACTIONS(1552), - [anon_sym_DOLLAR] = ACTIONS(1355), - [anon_sym_error] = ACTIONS(1544), - [anon_sym_DASH2] = ACTIONS(1544), - [anon_sym_break] = ACTIONS(1544), - [anon_sym_continue] = ACTIONS(1544), - [anon_sym_for] = ACTIONS(1544), - [anon_sym_in2] = ACTIONS(1544), - [anon_sym_loop] = ACTIONS(1544), - [anon_sym_make] = ACTIONS(1544), - [anon_sym_while] = ACTIONS(1544), - [anon_sym_do] = ACTIONS(1544), - [anon_sym_if] = ACTIONS(1544), - [anon_sym_else] = ACTIONS(1544), - [anon_sym_match] = ACTIONS(1544), - [anon_sym_RBRACE] = ACTIONS(1552), - [anon_sym_try] = ACTIONS(1544), - [anon_sym_catch] = ACTIONS(1544), - [anon_sym_return] = ACTIONS(1544), - [anon_sym_source] = ACTIONS(1544), - [anon_sym_source_DASHenv] = ACTIONS(1544), - [anon_sym_hide] = ACTIONS(1544), - [anon_sym_hide_DASHenv] = ACTIONS(1544), - [anon_sym_overlay] = ACTIONS(1544), - [anon_sym_as] = ACTIONS(1544), - [anon_sym_LPAREN2] = ACTIONS(1565), - [anon_sym_PLUS2] = ACTIONS(1544), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1552), - [aux_sym__immediate_decimal_token1] = ACTIONS(1674), - [aux_sym__immediate_decimal_token3] = ACTIONS(1676), - [aux_sym__immediate_decimal_token4] = ACTIONS(1678), - [aux_sym__immediate_decimal_token5] = ACTIONS(1680), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1552), - [aux_sym__val_number_decimal_token1] = ACTIONS(1544), - [aux_sym__val_number_decimal_token2] = ACTIONS(1544), - [aux_sym__val_number_decimal_token3] = ACTIONS(1544), - [aux_sym__val_number_decimal_token4] = ACTIONS(1544), - [aux_sym__val_number_token1] = ACTIONS(1552), - [aux_sym__val_number_token2] = ACTIONS(1552), - [aux_sym__val_number_token3] = ACTIONS(1552), - [aux_sym__val_number_token4] = ACTIONS(1544), - [aux_sym__val_number_token5] = ACTIONS(1544), - [aux_sym__val_number_token6] = ACTIONS(1544), - [anon_sym_DQUOTE] = ACTIONS(1552), - [sym__str_single_quotes] = ACTIONS(1552), - [sym__str_back_ticks] = ACTIONS(1552), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1552), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1552), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1552), - [anon_sym_register] = ACTIONS(1544), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1552), + [ts_builtin_sym_end] = ACTIONS(1682), + [anon_sym_export] = ACTIONS(1684), + [anon_sym_alias] = ACTIONS(1684), + [anon_sym_let] = ACTIONS(1684), + [anon_sym_let_DASHenv] = ACTIONS(1684), + [anon_sym_mut] = ACTIONS(1684), + [anon_sym_const] = ACTIONS(1684), + [aux_sym_cmd_identifier_token1] = ACTIONS(1684), + [aux_sym_cmd_identifier_token2] = ACTIONS(1682), + [aux_sym_cmd_identifier_token3] = ACTIONS(1682), + [aux_sym_cmd_identifier_token4] = ACTIONS(1682), + [aux_sym_cmd_identifier_token5] = ACTIONS(1682), + [aux_sym_cmd_identifier_token6] = ACTIONS(1682), + [aux_sym_cmd_identifier_token7] = ACTIONS(1682), + [aux_sym_cmd_identifier_token8] = ACTIONS(1684), + [aux_sym_cmd_identifier_token9] = ACTIONS(1684), + [aux_sym_cmd_identifier_token10] = ACTIONS(1682), + [aux_sym_cmd_identifier_token11] = ACTIONS(1682), + [aux_sym_cmd_identifier_token12] = ACTIONS(1684), + [aux_sym_cmd_identifier_token13] = ACTIONS(1684), + [aux_sym_cmd_identifier_token14] = ACTIONS(1684), + [aux_sym_cmd_identifier_token15] = ACTIONS(1684), + [aux_sym_cmd_identifier_token16] = ACTIONS(1682), + [aux_sym_cmd_identifier_token17] = ACTIONS(1682), + [aux_sym_cmd_identifier_token18] = ACTIONS(1682), + [aux_sym_cmd_identifier_token19] = ACTIONS(1682), + [aux_sym_cmd_identifier_token20] = ACTIONS(1682), + [aux_sym_cmd_identifier_token21] = ACTIONS(1682), + [aux_sym_cmd_identifier_token22] = ACTIONS(1682), + [aux_sym_cmd_identifier_token23] = ACTIONS(1682), + [aux_sym_cmd_identifier_token24] = ACTIONS(1682), + [aux_sym_cmd_identifier_token25] = ACTIONS(1682), + [aux_sym_cmd_identifier_token26] = ACTIONS(1682), + [aux_sym_cmd_identifier_token27] = ACTIONS(1682), + [aux_sym_cmd_identifier_token28] = ACTIONS(1682), + [aux_sym_cmd_identifier_token29] = ACTIONS(1682), + [aux_sym_cmd_identifier_token30] = ACTIONS(1682), + [aux_sym_cmd_identifier_token31] = ACTIONS(1682), + [aux_sym_cmd_identifier_token32] = ACTIONS(1682), + [aux_sym_cmd_identifier_token33] = ACTIONS(1682), + [aux_sym_cmd_identifier_token34] = ACTIONS(1684), + [aux_sym_cmd_identifier_token35] = ACTIONS(1682), + [aux_sym_cmd_identifier_token36] = ACTIONS(1682), + [aux_sym_cmd_identifier_token37] = ACTIONS(1682), + [aux_sym_cmd_identifier_token38] = ACTIONS(1684), + [aux_sym_cmd_identifier_token39] = ACTIONS(1682), + [aux_sym_cmd_identifier_token40] = ACTIONS(1682), + [sym__newline] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(1682), + [anon_sym_def] = ACTIONS(1684), + [anon_sym_export_DASHenv] = ACTIONS(1684), + [anon_sym_extern] = ACTIONS(1684), + [anon_sym_module] = ACTIONS(1684), + [anon_sym_use] = ACTIONS(1684), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_DOLLAR] = ACTIONS(1684), + [anon_sym_error] = ACTIONS(1684), + [anon_sym_DASH2] = ACTIONS(1684), + [anon_sym_break] = ACTIONS(1684), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_for] = ACTIONS(1684), + [anon_sym_loop] = ACTIONS(1684), + [anon_sym_while] = ACTIONS(1684), + [anon_sym_do] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(1684), + [anon_sym_match] = ACTIONS(1684), + [anon_sym_LBRACE] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_try] = ACTIONS(1684), + [anon_sym_return] = ACTIONS(1684), + [anon_sym_source] = ACTIONS(1684), + [anon_sym_source_DASHenv] = ACTIONS(1684), + [anon_sym_hide] = ACTIONS(1684), + [anon_sym_hide_DASHenv] = ACTIONS(1684), + [anon_sym_overlay] = ACTIONS(1684), + [anon_sym_where] = ACTIONS(1682), + [aux_sym_expr_unary_token1] = ACTIONS(1682), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1682), + [anon_sym_DOT_DOT_LT] = ACTIONS(1682), + [anon_sym_null] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1684), + [anon_sym_false] = ACTIONS(1684), + [aux_sym__val_number_decimal_token1] = ACTIONS(1684), + [aux_sym__val_number_decimal_token2] = ACTIONS(1682), + [aux_sym__val_number_decimal_token3] = ACTIONS(1682), + [aux_sym__val_number_decimal_token4] = ACTIONS(1682), + [aux_sym__val_number_token1] = ACTIONS(1682), + [aux_sym__val_number_token2] = ACTIONS(1682), + [aux_sym__val_number_token3] = ACTIONS(1682), + [aux_sym__val_number_token4] = ACTIONS(1684), + [aux_sym__val_number_token5] = ACTIONS(1684), + [aux_sym__val_number_token6] = ACTIONS(1684), + [anon_sym_0b] = ACTIONS(1684), + [anon_sym_0o] = ACTIONS(1684), + [anon_sym_0x] = ACTIONS(1684), + [sym_val_date] = ACTIONS(1682), + [anon_sym_DQUOTE] = ACTIONS(1682), + [sym__str_single_quotes] = ACTIONS(1682), + [sym__str_back_ticks] = ACTIONS(1682), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1682), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1682), + [aux_sym_env_var_token1] = ACTIONS(1684), + [anon_sym_CARET] = ACTIONS(1682), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1682), }, [334] = { [sym_comment] = STATE(334), - [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(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1484), - [aux_sym_cmd_identifier_token4] = ACTIONS(1484), - [aux_sym_cmd_identifier_token5] = ACTIONS(1484), - [aux_sym_cmd_identifier_token6] = ACTIONS(1484), - [aux_sym_cmd_identifier_token7] = ACTIONS(1484), - [aux_sym_cmd_identifier_token8] = ACTIONS(1484), - [aux_sym_cmd_identifier_token9] = ACTIONS(1484), - [aux_sym_cmd_identifier_token10] = ACTIONS(1484), - [aux_sym_cmd_identifier_token11] = ACTIONS(1484), - [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(1484), - [aux_sym_cmd_identifier_token17] = ACTIONS(1484), - [aux_sym_cmd_identifier_token18] = ACTIONS(1484), - [aux_sym_cmd_identifier_token19] = ACTIONS(1484), - [aux_sym_cmd_identifier_token20] = ACTIONS(1484), - [aux_sym_cmd_identifier_token21] = ACTIONS(1484), - [aux_sym_cmd_identifier_token22] = ACTIONS(1484), - [aux_sym_cmd_identifier_token23] = ACTIONS(1484), - [aux_sym_cmd_identifier_token24] = ACTIONS(1484), - [aux_sym_cmd_identifier_token25] = ACTIONS(1484), - [aux_sym_cmd_identifier_token26] = ACTIONS(1484), - [aux_sym_cmd_identifier_token27] = ACTIONS(1484), - [aux_sym_cmd_identifier_token28] = ACTIONS(1484), - [aux_sym_cmd_identifier_token29] = ACTIONS(1484), - [aux_sym_cmd_identifier_token30] = ACTIONS(1484), - [aux_sym_cmd_identifier_token31] = ACTIONS(1484), - [aux_sym_cmd_identifier_token32] = ACTIONS(1484), - [aux_sym_cmd_identifier_token33] = ACTIONS(1484), - [aux_sym_cmd_identifier_token34] = ACTIONS(1484), - [aux_sym_cmd_identifier_token35] = ACTIONS(1484), - [aux_sym_cmd_identifier_token36] = ACTIONS(1484), - [aux_sym_cmd_identifier_token37] = ACTIONS(1484), - [aux_sym_cmd_identifier_token38] = ACTIONS(1484), - [aux_sym_cmd_identifier_token39] = ACTIONS(1484), - [aux_sym_cmd_identifier_token40] = ACTIONS(1484), - [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_LPAREN] = ACTIONS(1484), - [anon_sym_COMMA] = ACTIONS(1484), - [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_in2] = ACTIONS(1484), - [anon_sym_loop] = ACTIONS(1484), - [anon_sym_make] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_else] = ACTIONS(1484), - [anon_sym_match] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_try] = ACTIONS(1484), - [anon_sym_catch] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_source] = ACTIONS(1484), - [anon_sym_source_DASHenv] = ACTIONS(1484), - [anon_sym_hide] = ACTIONS(1484), - [anon_sym_hide_DASHenv] = ACTIONS(1484), - [anon_sym_overlay] = ACTIONS(1484), - [anon_sym_as] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_PLUS2] = ACTIONS(1484), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1484), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1484), - [aux_sym__val_number_decimal_token1] = ACTIONS(1484), - [aux_sym__val_number_decimal_token2] = ACTIONS(1484), - [aux_sym__val_number_decimal_token3] = ACTIONS(1484), - [aux_sym__val_number_decimal_token4] = ACTIONS(1484), - [aux_sym__val_number_token1] = ACTIONS(1484), - [aux_sym__val_number_token2] = ACTIONS(1484), - [aux_sym__val_number_token3] = ACTIONS(1484), - [aux_sym__val_number_token4] = ACTIONS(1484), - [aux_sym__val_number_token5] = ACTIONS(1484), - [aux_sym__val_number_token6] = ACTIONS(1484), - [sym_filesize_unit] = ACTIONS(1484), - [sym_duration_unit] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [sym__str_single_quotes] = ACTIONS(1484), - [sym__str_back_ticks] = ACTIONS(1484), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1484), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1484), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1484), - [sym__entry_separator] = ACTIONS(1486), - [anon_sym_register] = ACTIONS(1484), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1484), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1486), - }, - [335] = { - [sym_cell_path] = STATE(465), - [sym_path] = STATE(431), - [sym_comment] = STATE(335), - [aux_sym_cell_path_repeat1] = STATE(358), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_alias] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_let_DASHenv] = ACTIONS(1711), - [anon_sym_mut] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [aux_sym_cmd_identifier_token1] = ACTIONS(1711), - [aux_sym_cmd_identifier_token2] = ACTIONS(1711), - [aux_sym_cmd_identifier_token3] = ACTIONS(1711), - [aux_sym_cmd_identifier_token4] = ACTIONS(1711), - [aux_sym_cmd_identifier_token5] = ACTIONS(1711), - [aux_sym_cmd_identifier_token6] = ACTIONS(1711), - [aux_sym_cmd_identifier_token7] = ACTIONS(1711), - [aux_sym_cmd_identifier_token8] = ACTIONS(1711), - [aux_sym_cmd_identifier_token9] = ACTIONS(1711), - [aux_sym_cmd_identifier_token10] = ACTIONS(1711), - [aux_sym_cmd_identifier_token11] = ACTIONS(1711), - [aux_sym_cmd_identifier_token12] = ACTIONS(1711), - [aux_sym_cmd_identifier_token13] = ACTIONS(1711), - [aux_sym_cmd_identifier_token14] = ACTIONS(1711), - [aux_sym_cmd_identifier_token15] = ACTIONS(1711), - [aux_sym_cmd_identifier_token16] = ACTIONS(1711), - [aux_sym_cmd_identifier_token17] = ACTIONS(1711), - [aux_sym_cmd_identifier_token18] = ACTIONS(1711), - [aux_sym_cmd_identifier_token19] = ACTIONS(1711), - [aux_sym_cmd_identifier_token20] = ACTIONS(1711), - [aux_sym_cmd_identifier_token21] = ACTIONS(1711), - [aux_sym_cmd_identifier_token22] = ACTIONS(1711), - [aux_sym_cmd_identifier_token23] = ACTIONS(1711), - [aux_sym_cmd_identifier_token24] = ACTIONS(1711), - [aux_sym_cmd_identifier_token25] = ACTIONS(1711), - [aux_sym_cmd_identifier_token26] = ACTIONS(1711), - [aux_sym_cmd_identifier_token27] = ACTIONS(1711), - [aux_sym_cmd_identifier_token28] = ACTIONS(1711), - [aux_sym_cmd_identifier_token29] = ACTIONS(1711), - [aux_sym_cmd_identifier_token30] = ACTIONS(1711), - [aux_sym_cmd_identifier_token31] = ACTIONS(1711), - [aux_sym_cmd_identifier_token32] = ACTIONS(1711), - [aux_sym_cmd_identifier_token33] = ACTIONS(1711), - [aux_sym_cmd_identifier_token34] = ACTIONS(1711), - [aux_sym_cmd_identifier_token35] = ACTIONS(1711), - [aux_sym_cmd_identifier_token36] = ACTIONS(1711), - [aux_sym_cmd_identifier_token37] = ACTIONS(1711), - [aux_sym_cmd_identifier_token38] = ACTIONS(1711), - [aux_sym_cmd_identifier_token39] = ACTIONS(1711), - [aux_sym_cmd_identifier_token40] = ACTIONS(1711), - [anon_sym_def] = ACTIONS(1711), - [anon_sym_export_DASHenv] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_use] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_COMMA] = ACTIONS(1711), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_error] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_loop] = ACTIONS(1711), - [anon_sym_make] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1711), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_catch] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_source] = ACTIONS(1711), - [anon_sym_source_DASHenv] = ACTIONS(1711), - [anon_sym_hide] = ACTIONS(1711), - [anon_sym_hide_DASHenv] = ACTIONS(1711), - [anon_sym_overlay] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1711), - [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(1711), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1711), - [aux_sym__val_number_decimal_token3] = ACTIONS(1711), - [aux_sym__val_number_decimal_token4] = ACTIONS(1711), - [aux_sym__val_number_token1] = ACTIONS(1711), - [aux_sym__val_number_token2] = ACTIONS(1711), - [aux_sym__val_number_token3] = ACTIONS(1711), - [aux_sym__val_number_token4] = ACTIONS(1711), - [aux_sym__val_number_token5] = ACTIONS(1711), - [aux_sym__val_number_token6] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1711), - [sym__str_single_quotes] = ACTIONS(1711), - [sym__str_back_ticks] = ACTIONS(1711), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1711), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1711), - [sym__entry_separator] = ACTIONS(1713), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_DOT2] = ACTIONS(1690), + [anon_sym_export] = ACTIONS(1686), + [anon_sym_alias] = ACTIONS(1686), + [anon_sym_let] = ACTIONS(1686), + [anon_sym_let_DASHenv] = ACTIONS(1686), + [anon_sym_mut] = ACTIONS(1686), + [anon_sym_const] = ACTIONS(1686), + [aux_sym_cmd_identifier_token1] = ACTIONS(1686), + [aux_sym_cmd_identifier_token2] = ACTIONS(1686), + [aux_sym_cmd_identifier_token3] = ACTIONS(1686), + [aux_sym_cmd_identifier_token4] = ACTIONS(1686), + [aux_sym_cmd_identifier_token5] = ACTIONS(1686), + [aux_sym_cmd_identifier_token6] = ACTIONS(1686), + [aux_sym_cmd_identifier_token7] = ACTIONS(1686), + [aux_sym_cmd_identifier_token8] = ACTIONS(1686), + [aux_sym_cmd_identifier_token9] = ACTIONS(1686), + [aux_sym_cmd_identifier_token10] = ACTIONS(1686), + [aux_sym_cmd_identifier_token11] = ACTIONS(1686), + [aux_sym_cmd_identifier_token12] = ACTIONS(1686), + [aux_sym_cmd_identifier_token13] = ACTIONS(1686), + [aux_sym_cmd_identifier_token14] = ACTIONS(1686), + [aux_sym_cmd_identifier_token15] = ACTIONS(1686), + [aux_sym_cmd_identifier_token16] = ACTIONS(1686), + [aux_sym_cmd_identifier_token17] = ACTIONS(1686), + [aux_sym_cmd_identifier_token18] = ACTIONS(1686), + [aux_sym_cmd_identifier_token19] = ACTIONS(1686), + [aux_sym_cmd_identifier_token20] = ACTIONS(1686), + [aux_sym_cmd_identifier_token21] = ACTIONS(1686), + [aux_sym_cmd_identifier_token22] = ACTIONS(1686), + [aux_sym_cmd_identifier_token23] = ACTIONS(1686), + [aux_sym_cmd_identifier_token24] = ACTIONS(1686), + [aux_sym_cmd_identifier_token25] = ACTIONS(1686), + [aux_sym_cmd_identifier_token26] = ACTIONS(1686), + [aux_sym_cmd_identifier_token27] = ACTIONS(1686), + [aux_sym_cmd_identifier_token28] = ACTIONS(1686), + [aux_sym_cmd_identifier_token29] = ACTIONS(1686), + [aux_sym_cmd_identifier_token30] = ACTIONS(1686), + [aux_sym_cmd_identifier_token31] = ACTIONS(1686), + [aux_sym_cmd_identifier_token32] = ACTIONS(1686), + [aux_sym_cmd_identifier_token33] = ACTIONS(1686), + [aux_sym_cmd_identifier_token34] = ACTIONS(1686), + [aux_sym_cmd_identifier_token35] = ACTIONS(1686), + [aux_sym_cmd_identifier_token36] = ACTIONS(1686), + [aux_sym_cmd_identifier_token37] = ACTIONS(1686), + [aux_sym_cmd_identifier_token38] = ACTIONS(1686), + [aux_sym_cmd_identifier_token39] = ACTIONS(1686), + [aux_sym_cmd_identifier_token40] = ACTIONS(1686), + [anon_sym_def] = ACTIONS(1686), + [anon_sym_export_DASHenv] = ACTIONS(1686), + [anon_sym_extern] = ACTIONS(1686), + [anon_sym_module] = ACTIONS(1686), + [anon_sym_use] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_error] = ACTIONS(1686), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_break] = ACTIONS(1686), + [anon_sym_continue] = ACTIONS(1686), + [anon_sym_for] = ACTIONS(1686), + [anon_sym_in2] = ACTIONS(1686), + [anon_sym_loop] = ACTIONS(1686), + [anon_sym_make] = ACTIONS(1686), + [anon_sym_while] = ACTIONS(1686), + [anon_sym_do] = ACTIONS(1686), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_else] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1686), + [anon_sym_try] = ACTIONS(1686), + [anon_sym_catch] = ACTIONS(1686), + [anon_sym_return] = ACTIONS(1686), + [anon_sym_source] = ACTIONS(1686), + [anon_sym_source_DASHenv] = ACTIONS(1686), + [anon_sym_hide] = ACTIONS(1686), + [anon_sym_hide_DASHenv] = ACTIONS(1686), + [anon_sym_overlay] = ACTIONS(1686), + [anon_sym_as] = ACTIONS(1686), + [anon_sym_LPAREN2] = ACTIONS(1688), + [anon_sym_PLUS2] = ACTIONS(1686), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1686), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [aux_sym__immediate_decimal_token1] = ACTIONS(1690), + [aux_sym__immediate_decimal_token2] = ACTIONS(1692), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1686), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1686), + [aux_sym__val_number_decimal_token3] = ACTIONS(1686), + [aux_sym__val_number_decimal_token4] = ACTIONS(1686), + [aux_sym__val_number_token1] = ACTIONS(1686), + [aux_sym__val_number_token2] = ACTIONS(1686), + [aux_sym__val_number_token3] = ACTIONS(1686), + [aux_sym__val_number_token4] = ACTIONS(1686), + [aux_sym__val_number_token5] = ACTIONS(1686), + [aux_sym__val_number_token6] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1686), + [sym__str_single_quotes] = ACTIONS(1686), + [sym__str_back_ticks] = ACTIONS(1686), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1686), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1686), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1686), + [sym__entry_separator] = ACTIONS(1688), + [anon_sym_register] = ACTIONS(1686), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1686), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1713), + [sym_raw_string_begin] = ACTIONS(1688), + }, + [335] = { + [sym_comment] = STATE(335), + [anon_sym_export] = ACTIONS(1694), + [anon_sym_alias] = ACTIONS(1694), + [anon_sym_let] = ACTIONS(1694), + [anon_sym_let_DASHenv] = ACTIONS(1694), + [anon_sym_mut] = ACTIONS(1694), + [anon_sym_const] = ACTIONS(1694), + [aux_sym_cmd_identifier_token1] = ACTIONS(1694), + [aux_sym_cmd_identifier_token2] = ACTIONS(1696), + [aux_sym_cmd_identifier_token3] = ACTIONS(1696), + [aux_sym_cmd_identifier_token4] = ACTIONS(1696), + [aux_sym_cmd_identifier_token5] = ACTIONS(1696), + [aux_sym_cmd_identifier_token6] = ACTIONS(1696), + [aux_sym_cmd_identifier_token7] = ACTIONS(1696), + [aux_sym_cmd_identifier_token8] = ACTIONS(1694), + [aux_sym_cmd_identifier_token9] = ACTIONS(1694), + [aux_sym_cmd_identifier_token10] = ACTIONS(1696), + [aux_sym_cmd_identifier_token11] = ACTIONS(1696), + [aux_sym_cmd_identifier_token12] = ACTIONS(1694), + [aux_sym_cmd_identifier_token13] = ACTIONS(1694), + [aux_sym_cmd_identifier_token14] = ACTIONS(1694), + [aux_sym_cmd_identifier_token15] = ACTIONS(1694), + [aux_sym_cmd_identifier_token16] = ACTIONS(1696), + [aux_sym_cmd_identifier_token17] = ACTIONS(1696), + [aux_sym_cmd_identifier_token18] = ACTIONS(1696), + [aux_sym_cmd_identifier_token19] = ACTIONS(1696), + [aux_sym_cmd_identifier_token20] = ACTIONS(1696), + [aux_sym_cmd_identifier_token21] = ACTIONS(1696), + [aux_sym_cmd_identifier_token22] = ACTIONS(1696), + [aux_sym_cmd_identifier_token23] = ACTIONS(1696), + [aux_sym_cmd_identifier_token24] = ACTIONS(1696), + [aux_sym_cmd_identifier_token25] = ACTIONS(1696), + [aux_sym_cmd_identifier_token26] = ACTIONS(1696), + [aux_sym_cmd_identifier_token27] = ACTIONS(1696), + [aux_sym_cmd_identifier_token28] = ACTIONS(1696), + [aux_sym_cmd_identifier_token29] = ACTIONS(1696), + [aux_sym_cmd_identifier_token30] = ACTIONS(1696), + [aux_sym_cmd_identifier_token31] = ACTIONS(1696), + [aux_sym_cmd_identifier_token32] = ACTIONS(1696), + [aux_sym_cmd_identifier_token33] = ACTIONS(1696), + [aux_sym_cmd_identifier_token34] = ACTIONS(1694), + [aux_sym_cmd_identifier_token35] = ACTIONS(1696), + [aux_sym_cmd_identifier_token36] = ACTIONS(1696), + [aux_sym_cmd_identifier_token37] = ACTIONS(1696), + [aux_sym_cmd_identifier_token38] = ACTIONS(1694), + [aux_sym_cmd_identifier_token39] = ACTIONS(1696), + [aux_sym_cmd_identifier_token40] = ACTIONS(1696), + [sym__newline] = ACTIONS(1698), + [anon_sym_SEMI] = ACTIONS(1698), + [anon_sym_AT] = ACTIONS(1696), + [anon_sym_def] = ACTIONS(1694), + [anon_sym_export_DASHenv] = ACTIONS(1694), + [anon_sym_extern] = ACTIONS(1694), + [anon_sym_module] = ACTIONS(1694), + [anon_sym_use] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1289), + [anon_sym_DOLLAR] = ACTIONS(1694), + [anon_sym_error] = ACTIONS(1694), + [anon_sym_DASH2] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_loop] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_do] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_match] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_DOT_DOT] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_source] = ACTIONS(1694), + [anon_sym_source_DASHenv] = ACTIONS(1694), + [anon_sym_hide] = ACTIONS(1694), + [anon_sym_hide_DASHenv] = ACTIONS(1694), + [anon_sym_overlay] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1696), + [aux_sym_expr_unary_token1] = ACTIONS(1696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), + [anon_sym_DOT_DOT_LT] = ACTIONS(1696), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [aux_sym__val_number_decimal_token1] = ACTIONS(1694), + [aux_sym__val_number_decimal_token2] = ACTIONS(1696), + [aux_sym__val_number_decimal_token3] = ACTIONS(1696), + [aux_sym__val_number_decimal_token4] = ACTIONS(1696), + [aux_sym__val_number_token1] = ACTIONS(1696), + [aux_sym__val_number_token2] = ACTIONS(1696), + [aux_sym__val_number_token3] = ACTIONS(1696), + [aux_sym__val_number_token4] = ACTIONS(1694), + [aux_sym__val_number_token5] = ACTIONS(1694), + [aux_sym__val_number_token6] = ACTIONS(1694), + [anon_sym_0b] = ACTIONS(1694), + [anon_sym_0o] = ACTIONS(1694), + [anon_sym_0x] = ACTIONS(1694), + [sym_val_date] = ACTIONS(1696), + [anon_sym_DQUOTE] = ACTIONS(1696), + [sym__str_single_quotes] = ACTIONS(1696), + [sym__str_back_ticks] = ACTIONS(1696), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1696), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1696), + [aux_sym_env_var_token1] = ACTIONS(1694), + [anon_sym_CARET] = ACTIONS(1696), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1696), }, [336] = { [sym_comment] = STATE(336), - [anon_sym_export] = ACTIONS(1538), - [anon_sym_alias] = ACTIONS(1538), - [anon_sym_let] = ACTIONS(1538), - [anon_sym_let_DASHenv] = ACTIONS(1538), - [anon_sym_mut] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(1538), - [aux_sym_cmd_identifier_token1] = ACTIONS(1538), - [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(1538), - [aux_sym_cmd_identifier_token9] = ACTIONS(1538), - [aux_sym_cmd_identifier_token10] = ACTIONS(1538), - [aux_sym_cmd_identifier_token11] = ACTIONS(1538), - [aux_sym_cmd_identifier_token12] = ACTIONS(1538), - [aux_sym_cmd_identifier_token13] = ACTIONS(1538), - [aux_sym_cmd_identifier_token14] = ACTIONS(1538), - [aux_sym_cmd_identifier_token15] = ACTIONS(1538), - [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(1538), - [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(1538), - [aux_sym_cmd_identifier_token39] = ACTIONS(1538), - [aux_sym_cmd_identifier_token40] = ACTIONS(1538), - [anon_sym_def] = ACTIONS(1538), - [anon_sym_export_DASHenv] = ACTIONS(1538), - [anon_sym_extern] = ACTIONS(1538), - [anon_sym_module] = ACTIONS(1538), - [anon_sym_use] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_COMMA] = ACTIONS(1538), - [anon_sym_DOLLAR] = ACTIONS(1538), - [anon_sym_error] = ACTIONS(1538), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_break] = ACTIONS(1538), - [anon_sym_continue] = ACTIONS(1538), - [anon_sym_for] = ACTIONS(1538), - [anon_sym_in2] = ACTIONS(1538), - [anon_sym_loop] = ACTIONS(1538), - [anon_sym_make] = ACTIONS(1538), - [anon_sym_while] = ACTIONS(1538), - [anon_sym_do] = ACTIONS(1538), - [anon_sym_if] = ACTIONS(1538), - [anon_sym_else] = ACTIONS(1538), - [anon_sym_match] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(1538), - [anon_sym_catch] = ACTIONS(1538), - [anon_sym_return] = ACTIONS(1538), - [anon_sym_source] = ACTIONS(1538), - [anon_sym_source_DASHenv] = ACTIONS(1538), - [anon_sym_hide] = ACTIONS(1538), - [anon_sym_hide_DASHenv] = ACTIONS(1538), - [anon_sym_overlay] = ACTIONS(1538), - [anon_sym_as] = ACTIONS(1538), - [anon_sym_LPAREN2] = ACTIONS(1540), - [anon_sym_PLUS2] = ACTIONS(1538), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1538), - [aux_sym__val_number_decimal_token1] = ACTIONS(1538), - [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(1538), - [aux_sym__val_number_token5] = ACTIONS(1538), - [aux_sym__val_number_token6] = ACTIONS(1538), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = 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), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1538), - [sym__entry_separator] = ACTIONS(1540), - [anon_sym_register] = ACTIONS(1538), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1538), + [anon_sym_export] = ACTIONS(1701), + [anon_sym_alias] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1701), + [anon_sym_let_DASHenv] = ACTIONS(1701), + [anon_sym_mut] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [aux_sym_cmd_identifier_token1] = ACTIONS(1701), + [aux_sym_cmd_identifier_token2] = ACTIONS(1701), + [aux_sym_cmd_identifier_token3] = ACTIONS(1701), + [aux_sym_cmd_identifier_token4] = ACTIONS(1701), + [aux_sym_cmd_identifier_token5] = ACTIONS(1701), + [aux_sym_cmd_identifier_token6] = ACTIONS(1701), + [aux_sym_cmd_identifier_token7] = ACTIONS(1701), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1701), + [aux_sym_cmd_identifier_token11] = ACTIONS(1701), + [aux_sym_cmd_identifier_token12] = ACTIONS(1701), + [aux_sym_cmd_identifier_token13] = ACTIONS(1701), + [aux_sym_cmd_identifier_token14] = ACTIONS(1701), + [aux_sym_cmd_identifier_token15] = ACTIONS(1701), + [aux_sym_cmd_identifier_token16] = ACTIONS(1701), + [aux_sym_cmd_identifier_token17] = ACTIONS(1701), + [aux_sym_cmd_identifier_token18] = ACTIONS(1701), + [aux_sym_cmd_identifier_token19] = ACTIONS(1701), + [aux_sym_cmd_identifier_token20] = ACTIONS(1701), + [aux_sym_cmd_identifier_token21] = ACTIONS(1701), + [aux_sym_cmd_identifier_token22] = ACTIONS(1701), + [aux_sym_cmd_identifier_token23] = ACTIONS(1701), + [aux_sym_cmd_identifier_token24] = ACTIONS(1701), + [aux_sym_cmd_identifier_token25] = ACTIONS(1701), + [aux_sym_cmd_identifier_token26] = ACTIONS(1701), + [aux_sym_cmd_identifier_token27] = ACTIONS(1701), + [aux_sym_cmd_identifier_token28] = ACTIONS(1701), + [aux_sym_cmd_identifier_token29] = ACTIONS(1701), + [aux_sym_cmd_identifier_token30] = ACTIONS(1701), + [aux_sym_cmd_identifier_token31] = ACTIONS(1701), + [aux_sym_cmd_identifier_token32] = ACTIONS(1701), + [aux_sym_cmd_identifier_token33] = ACTIONS(1701), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1701), + [aux_sym_cmd_identifier_token36] = ACTIONS(1701), + [aux_sym_cmd_identifier_token37] = ACTIONS(1701), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1701), + [aux_sym_cmd_identifier_token40] = ACTIONS(1701), + [anon_sym_def] = ACTIONS(1701), + [anon_sym_export_DASHenv] = ACTIONS(1701), + [anon_sym_extern] = ACTIONS(1701), + [anon_sym_module] = ACTIONS(1701), + [anon_sym_use] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_COMMA] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = ACTIONS(1701), + [anon_sym_loop] = ACTIONS(1701), + [anon_sym_make] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_do] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_else] = ACTIONS(1701), + [anon_sym_match] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1701), + [anon_sym_try] = ACTIONS(1701), + [anon_sym_catch] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_source] = ACTIONS(1701), + [anon_sym_source_DASHenv] = ACTIONS(1701), + [anon_sym_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1701), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1701), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1701), + [aux_sym__val_number_decimal_token3] = ACTIONS(1701), + [aux_sym__val_number_decimal_token4] = ACTIONS(1701), + [aux_sym__val_number_token1] = ACTIONS(1701), + [aux_sym__val_number_token2] = ACTIONS(1701), + [aux_sym__val_number_token3] = ACTIONS(1701), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [sym__str_single_quotes] = ACTIONS(1701), + [sym__str_back_ticks] = ACTIONS(1701), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1701), + [sym__entry_separator] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1701), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1540), + [sym_raw_string_begin] = ACTIONS(1703), }, [337] = { + [sym__expr_parenthesized_immediate] = STATE(6927), [sym_comment] = STATE(337), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_alias] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_let_DASHenv] = ACTIONS(1715), - [anon_sym_mut] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [aux_sym_cmd_identifier_token1] = ACTIONS(1715), - [aux_sym_cmd_identifier_token2] = ACTIONS(1715), - [aux_sym_cmd_identifier_token3] = ACTIONS(1715), - [aux_sym_cmd_identifier_token4] = ACTIONS(1715), - [aux_sym_cmd_identifier_token5] = ACTIONS(1715), - [aux_sym_cmd_identifier_token6] = ACTIONS(1715), - [aux_sym_cmd_identifier_token7] = ACTIONS(1715), - [aux_sym_cmd_identifier_token8] = ACTIONS(1715), - [aux_sym_cmd_identifier_token9] = ACTIONS(1715), - [aux_sym_cmd_identifier_token10] = ACTIONS(1715), - [aux_sym_cmd_identifier_token11] = ACTIONS(1715), - [aux_sym_cmd_identifier_token12] = ACTIONS(1715), - [aux_sym_cmd_identifier_token13] = ACTIONS(1715), - [aux_sym_cmd_identifier_token14] = ACTIONS(1715), - [aux_sym_cmd_identifier_token15] = ACTIONS(1715), - [aux_sym_cmd_identifier_token16] = ACTIONS(1715), - [aux_sym_cmd_identifier_token17] = ACTIONS(1715), - [aux_sym_cmd_identifier_token18] = ACTIONS(1715), - [aux_sym_cmd_identifier_token19] = ACTIONS(1715), - [aux_sym_cmd_identifier_token20] = ACTIONS(1715), - [aux_sym_cmd_identifier_token21] = ACTIONS(1715), - [aux_sym_cmd_identifier_token22] = ACTIONS(1715), - [aux_sym_cmd_identifier_token23] = ACTIONS(1715), - [aux_sym_cmd_identifier_token24] = ACTIONS(1715), - [aux_sym_cmd_identifier_token25] = ACTIONS(1715), - [aux_sym_cmd_identifier_token26] = ACTIONS(1715), - [aux_sym_cmd_identifier_token27] = ACTIONS(1715), - [aux_sym_cmd_identifier_token28] = ACTIONS(1715), - [aux_sym_cmd_identifier_token29] = ACTIONS(1715), - [aux_sym_cmd_identifier_token30] = ACTIONS(1715), - [aux_sym_cmd_identifier_token31] = ACTIONS(1715), - [aux_sym_cmd_identifier_token32] = ACTIONS(1715), - [aux_sym_cmd_identifier_token33] = ACTIONS(1715), - [aux_sym_cmd_identifier_token34] = ACTIONS(1715), - [aux_sym_cmd_identifier_token35] = ACTIONS(1715), - [aux_sym_cmd_identifier_token36] = ACTIONS(1715), - [aux_sym_cmd_identifier_token37] = ACTIONS(1715), - [aux_sym_cmd_identifier_token38] = ACTIONS(1715), - [aux_sym_cmd_identifier_token39] = ACTIONS(1715), - [aux_sym_cmd_identifier_token40] = ACTIONS(1715), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_export_DASHenv] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_COMMA] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_DASH2] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_in2] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_make] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_catch] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_PLUS2] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1715), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1715), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1715), - [aux_sym__val_number_decimal_token3] = ACTIONS(1715), - [aux_sym__val_number_decimal_token4] = ACTIONS(1715), - [aux_sym__val_number_token1] = ACTIONS(1715), - [aux_sym__val_number_token2] = ACTIONS(1715), - [aux_sym__val_number_token3] = ACTIONS(1715), - [aux_sym__val_number_token4] = ACTIONS(1715), - [aux_sym__val_number_token5] = ACTIONS(1715), - [aux_sym__val_number_token6] = ACTIONS(1715), - [sym_filesize_unit] = ACTIONS(1715), + [anon_sym_export] = ACTIONS(1616), + [anon_sym_alias] = ACTIONS(1616), + [anon_sym_let] = ACTIONS(1616), + [anon_sym_let_DASHenv] = ACTIONS(1616), + [anon_sym_mut] = ACTIONS(1616), + [anon_sym_const] = ACTIONS(1616), + [aux_sym_cmd_identifier_token1] = ACTIONS(1616), + [aux_sym_cmd_identifier_token2] = ACTIONS(1628), + [aux_sym_cmd_identifier_token3] = ACTIONS(1628), + [aux_sym_cmd_identifier_token4] = ACTIONS(1628), + [aux_sym_cmd_identifier_token5] = ACTIONS(1628), + [aux_sym_cmd_identifier_token6] = ACTIONS(1628), + [aux_sym_cmd_identifier_token7] = ACTIONS(1628), + [aux_sym_cmd_identifier_token8] = ACTIONS(1616), + [aux_sym_cmd_identifier_token9] = ACTIONS(1616), + [aux_sym_cmd_identifier_token10] = ACTIONS(1628), + [aux_sym_cmd_identifier_token11] = ACTIONS(1628), + [aux_sym_cmd_identifier_token12] = ACTIONS(1616), + [aux_sym_cmd_identifier_token13] = ACTIONS(1616), + [aux_sym_cmd_identifier_token14] = ACTIONS(1616), + [aux_sym_cmd_identifier_token15] = ACTIONS(1616), + [aux_sym_cmd_identifier_token16] = ACTIONS(1628), + [aux_sym_cmd_identifier_token17] = ACTIONS(1628), + [aux_sym_cmd_identifier_token18] = ACTIONS(1628), + [aux_sym_cmd_identifier_token19] = ACTIONS(1628), + [aux_sym_cmd_identifier_token20] = ACTIONS(1628), + [aux_sym_cmd_identifier_token21] = ACTIONS(1628), + [aux_sym_cmd_identifier_token22] = ACTIONS(1628), + [aux_sym_cmd_identifier_token23] = ACTIONS(1628), + [aux_sym_cmd_identifier_token24] = ACTIONS(1628), + [aux_sym_cmd_identifier_token25] = ACTIONS(1628), + [aux_sym_cmd_identifier_token26] = ACTIONS(1628), + [aux_sym_cmd_identifier_token27] = ACTIONS(1628), + [aux_sym_cmd_identifier_token28] = ACTIONS(1628), + [aux_sym_cmd_identifier_token29] = ACTIONS(1628), + [aux_sym_cmd_identifier_token30] = ACTIONS(1628), + [aux_sym_cmd_identifier_token31] = ACTIONS(1628), + [aux_sym_cmd_identifier_token32] = ACTIONS(1628), + [aux_sym_cmd_identifier_token33] = ACTIONS(1628), + [aux_sym_cmd_identifier_token34] = ACTIONS(1616), + [aux_sym_cmd_identifier_token35] = ACTIONS(1628), + [aux_sym_cmd_identifier_token36] = ACTIONS(1628), + [aux_sym_cmd_identifier_token37] = ACTIONS(1628), + [aux_sym_cmd_identifier_token38] = ACTIONS(1616), + [aux_sym_cmd_identifier_token39] = ACTIONS(1628), + [aux_sym_cmd_identifier_token40] = ACTIONS(1628), + [anon_sym_def] = ACTIONS(1616), + [anon_sym_export_DASHenv] = ACTIONS(1616), + [anon_sym_extern] = ACTIONS(1616), + [anon_sym_module] = ACTIONS(1616), + [anon_sym_use] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1616), + [anon_sym_COMMA] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_error] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_break] = ACTIONS(1616), + [anon_sym_continue] = ACTIONS(1616), + [anon_sym_for] = ACTIONS(1616), + [anon_sym_in2] = ACTIONS(1616), + [anon_sym_loop] = ACTIONS(1616), + [anon_sym_make] = ACTIONS(1616), + [anon_sym_while] = ACTIONS(1616), + [anon_sym_do] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_else] = ACTIONS(1616), + [anon_sym_match] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_try] = ACTIONS(1616), + [anon_sym_catch] = ACTIONS(1616), + [anon_sym_return] = ACTIONS(1616), + [anon_sym_source] = ACTIONS(1616), + [anon_sym_source_DASHenv] = ACTIONS(1616), + [anon_sym_hide] = ACTIONS(1616), + [anon_sym_hide_DASHenv] = ACTIONS(1616), + [anon_sym_overlay] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), + [anon_sym_LPAREN2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1628), + [anon_sym_DOT_DOT2] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1628), + [aux_sym__val_number_decimal_token1] = ACTIONS(1616), + [aux_sym__val_number_decimal_token2] = ACTIONS(1628), + [aux_sym__val_number_decimal_token3] = ACTIONS(1628), + [aux_sym__val_number_decimal_token4] = ACTIONS(1628), + [aux_sym__val_number_token1] = ACTIONS(1628), + [aux_sym__val_number_token2] = ACTIONS(1628), + [aux_sym__val_number_token3] = ACTIONS(1628), + [aux_sym__val_number_token4] = ACTIONS(1616), + [aux_sym__val_number_token5] = ACTIONS(1616), + [aux_sym__val_number_token6] = ACTIONS(1616), + [sym_filesize_unit] = ACTIONS(1713), [sym_duration_unit] = ACTIONS(1715), - [anon_sym_DQUOTE] = ACTIONS(1715), - [sym__str_single_quotes] = ACTIONS(1715), - [sym__str_back_ticks] = ACTIONS(1715), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1715), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1715), - [sym__entry_separator] = ACTIONS(1717), - [anon_sym_register] = ACTIONS(1715), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1628), + [sym__str_single_quotes] = ACTIONS(1628), + [sym__str_back_ticks] = ACTIONS(1628), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1628), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1628), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1628), + [anon_sym_register] = ACTIONS(1616), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1717), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1628), }, [338] = { [sym_comment] = STATE(338), + [anon_sym_export] = ACTIONS(1491), + [anon_sym_alias] = ACTIONS(1491), + [anon_sym_let] = ACTIONS(1491), + [anon_sym_let_DASHenv] = ACTIONS(1491), + [anon_sym_mut] = ACTIONS(1491), + [anon_sym_const] = ACTIONS(1491), + [aux_sym_cmd_identifier_token1] = ACTIONS(1491), + [aux_sym_cmd_identifier_token2] = ACTIONS(1493), + [aux_sym_cmd_identifier_token3] = ACTIONS(1493), + [aux_sym_cmd_identifier_token4] = ACTIONS(1493), + [aux_sym_cmd_identifier_token5] = ACTIONS(1493), + [aux_sym_cmd_identifier_token6] = ACTIONS(1493), + [aux_sym_cmd_identifier_token7] = ACTIONS(1493), + [aux_sym_cmd_identifier_token8] = ACTIONS(1491), + [aux_sym_cmd_identifier_token9] = ACTIONS(1491), + [aux_sym_cmd_identifier_token10] = ACTIONS(1493), + [aux_sym_cmd_identifier_token11] = ACTIONS(1493), + [aux_sym_cmd_identifier_token12] = ACTIONS(1491), + [aux_sym_cmd_identifier_token13] = ACTIONS(1491), + [aux_sym_cmd_identifier_token14] = ACTIONS(1491), + [aux_sym_cmd_identifier_token15] = ACTIONS(1491), + [aux_sym_cmd_identifier_token16] = ACTIONS(1493), + [aux_sym_cmd_identifier_token17] = ACTIONS(1493), + [aux_sym_cmd_identifier_token18] = ACTIONS(1493), + [aux_sym_cmd_identifier_token19] = ACTIONS(1493), + [aux_sym_cmd_identifier_token20] = ACTIONS(1493), + [aux_sym_cmd_identifier_token21] = ACTIONS(1493), + [aux_sym_cmd_identifier_token22] = ACTIONS(1493), + [aux_sym_cmd_identifier_token23] = ACTIONS(1493), + [aux_sym_cmd_identifier_token24] = ACTIONS(1493), + [aux_sym_cmd_identifier_token25] = ACTIONS(1493), + [aux_sym_cmd_identifier_token26] = ACTIONS(1493), + [aux_sym_cmd_identifier_token27] = ACTIONS(1493), + [aux_sym_cmd_identifier_token28] = ACTIONS(1493), + [aux_sym_cmd_identifier_token29] = ACTIONS(1493), + [aux_sym_cmd_identifier_token30] = ACTIONS(1493), + [aux_sym_cmd_identifier_token31] = ACTIONS(1493), + [aux_sym_cmd_identifier_token32] = ACTIONS(1493), + [aux_sym_cmd_identifier_token33] = ACTIONS(1493), + [aux_sym_cmd_identifier_token34] = ACTIONS(1491), + [aux_sym_cmd_identifier_token35] = ACTIONS(1493), + [aux_sym_cmd_identifier_token36] = ACTIONS(1493), + [aux_sym_cmd_identifier_token37] = ACTIONS(1493), + [aux_sym_cmd_identifier_token38] = ACTIONS(1491), + [aux_sym_cmd_identifier_token39] = ACTIONS(1493), + [aux_sym_cmd_identifier_token40] = ACTIONS(1493), + [anon_sym_def] = ACTIONS(1491), + [anon_sym_export_DASHenv] = ACTIONS(1491), + [anon_sym_extern] = ACTIONS(1491), + [anon_sym_module] = ACTIONS(1491), + [anon_sym_use] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_COMMA] = ACTIONS(1493), + [anon_sym_DOLLAR] = ACTIONS(1491), + [anon_sym_error] = ACTIONS(1491), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_break] = ACTIONS(1491), + [anon_sym_continue] = ACTIONS(1491), + [anon_sym_for] = ACTIONS(1491), + [anon_sym_in2] = ACTIONS(1491), + [anon_sym_loop] = ACTIONS(1491), + [anon_sym_make] = ACTIONS(1491), + [anon_sym_while] = ACTIONS(1491), + [anon_sym_do] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1491), + [anon_sym_else] = ACTIONS(1491), + [anon_sym_match] = ACTIONS(1491), + [anon_sym_RBRACE] = ACTIONS(1493), + [anon_sym_try] = ACTIONS(1491), + [anon_sym_catch] = ACTIONS(1491), + [anon_sym_return] = ACTIONS(1491), + [anon_sym_source] = ACTIONS(1491), + [anon_sym_source_DASHenv] = ACTIONS(1491), + [anon_sym_hide] = ACTIONS(1491), + [anon_sym_hide_DASHenv] = ACTIONS(1491), + [anon_sym_overlay] = ACTIONS(1491), + [anon_sym_as] = ACTIONS(1491), + [anon_sym_LPAREN2] = ACTIONS(1493), + [anon_sym_PLUS2] = ACTIONS(1491), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1493), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1493), + [aux_sym__val_number_decimal_token1] = ACTIONS(1491), + [aux_sym__val_number_decimal_token2] = ACTIONS(1493), + [aux_sym__val_number_decimal_token3] = ACTIONS(1493), + [aux_sym__val_number_decimal_token4] = ACTIONS(1493), + [aux_sym__val_number_token1] = ACTIONS(1493), + [aux_sym__val_number_token2] = ACTIONS(1493), + [aux_sym__val_number_token3] = ACTIONS(1493), + [aux_sym__val_number_token4] = ACTIONS(1491), + [aux_sym__val_number_token5] = ACTIONS(1491), + [aux_sym__val_number_token6] = ACTIONS(1491), + [sym_filesize_unit] = ACTIONS(1491), + [sym_duration_unit] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1493), + [sym__str_single_quotes] = ACTIONS(1493), + [sym__str_back_ticks] = ACTIONS(1493), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1493), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1493), + [anon_sym_register] = ACTIONS(1491), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1493), + }, + [339] = { + [sym_comment] = STATE(339), [anon_sym_export] = ACTIONS(1719), [anon_sym_alias] = ACTIONS(1719), [anon_sym_let] = ACTIONS(1719), @@ -112856,139 +111851,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(1719), [anon_sym_const] = ACTIONS(1719), [aux_sym_cmd_identifier_token1] = ACTIONS(1719), - [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_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(1719), [aux_sym_cmd_identifier_token9] = ACTIONS(1719), - [aux_sym_cmd_identifier_token10] = ACTIONS(1719), - [aux_sym_cmd_identifier_token11] = ACTIONS(1719), + [aux_sym_cmd_identifier_token10] = ACTIONS(1721), + [aux_sym_cmd_identifier_token11] = ACTIONS(1721), [aux_sym_cmd_identifier_token12] = ACTIONS(1719), [aux_sym_cmd_identifier_token13] = ACTIONS(1719), [aux_sym_cmd_identifier_token14] = ACTIONS(1719), [aux_sym_cmd_identifier_token15] = ACTIONS(1719), - [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_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(1719), - [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_token35] = ACTIONS(1721), + [aux_sym_cmd_identifier_token36] = ACTIONS(1721), + [aux_sym_cmd_identifier_token37] = ACTIONS(1721), [aux_sym_cmd_identifier_token38] = ACTIONS(1719), - [aux_sym_cmd_identifier_token39] = ACTIONS(1719), - [aux_sym_cmd_identifier_token40] = ACTIONS(1719), + [aux_sym_cmd_identifier_token39] = ACTIONS(1721), + [aux_sym_cmd_identifier_token40] = ACTIONS(1721), + [sym__newline] = ACTIONS(1721), + [anon_sym_SEMI] = ACTIONS(1721), + [anon_sym_AT] = ACTIONS(1721), [anon_sym_def] = ACTIONS(1719), [anon_sym_export_DASHenv] = ACTIONS(1719), [anon_sym_extern] = ACTIONS(1719), [anon_sym_module] = ACTIONS(1719), [anon_sym_use] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_COMMA] = ACTIONS(1719), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1721), [anon_sym_DOLLAR] = ACTIONS(1719), [anon_sym_error] = ACTIONS(1719), [anon_sym_DASH2] = ACTIONS(1719), [anon_sym_break] = ACTIONS(1719), [anon_sym_continue] = ACTIONS(1719), [anon_sym_for] = ACTIONS(1719), - [anon_sym_in2] = ACTIONS(1719), [anon_sym_loop] = ACTIONS(1719), - [anon_sym_make] = ACTIONS(1719), [anon_sym_while] = ACTIONS(1719), [anon_sym_do] = ACTIONS(1719), [anon_sym_if] = ACTIONS(1719), - [anon_sym_else] = ACTIONS(1719), [anon_sym_match] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(1721), + [anon_sym_DOT_DOT] = ACTIONS(1719), [anon_sym_try] = ACTIONS(1719), - [anon_sym_catch] = ACTIONS(1719), [anon_sym_return] = ACTIONS(1719), [anon_sym_source] = ACTIONS(1719), [anon_sym_source_DASHenv] = ACTIONS(1719), [anon_sym_hide] = ACTIONS(1719), [anon_sym_hide_DASHenv] = ACTIONS(1719), [anon_sym_overlay] = ACTIONS(1719), - [anon_sym_as] = ACTIONS(1719), - [anon_sym_LPAREN2] = ACTIONS(1721), - [anon_sym_PLUS2] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1719), - [anon_sym_DOT_DOT2] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1721), - [aux_sym__immediate_decimal_token2] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1719), + [anon_sym_where] = ACTIONS(1721), + [aux_sym_expr_unary_token1] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), + [anon_sym_DOT_DOT_LT] = ACTIONS(1721), + [anon_sym_null] = ACTIONS(1719), + [anon_sym_true] = ACTIONS(1719), + [anon_sym_false] = ACTIONS(1719), [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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_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(1719), [aux_sym__val_number_token5] = ACTIONS(1719), [aux_sym__val_number_token6] = 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_DOT_DOT_DOT_LBRACE] = ACTIONS(1719), - [sym__entry_separator] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1719), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_0b] = ACTIONS(1719), + [anon_sym_0o] = ACTIONS(1719), + [anon_sym_0x] = ACTIONS(1719), + [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), + [aux_sym_env_var_token1] = ACTIONS(1719), + [anon_sym_CARET] = ACTIONS(1721), + [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(1721), }, - [339] = { - [sym_cmd_identifier] = STATE(4647), - [sym__expression] = STATE(3880), - [sym_expr_unary] = STATE(2510), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2510), - [sym__expr_binary_expression] = STATE(3843), - [sym_expr_parenthesized] = STATE(2098), - [sym_val_range] = STATE(2510), - [sym__value] = STATE(2510), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(2470), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(778), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(5056), - [sym_comment] = STATE(339), - [aux_sym_pipe_element_repeat2] = STATE(1190), + [340] = { + [sym_cell_path] = STATE(506), + [sym_path] = STATE(434), + [sym_comment] = STATE(340), + [aux_sym_cell_path_repeat1] = STATE(375), + [anon_sym_export] = ACTIONS(925), + [anon_sym_alias] = ACTIONS(925), + [anon_sym_let] = ACTIONS(925), + [anon_sym_let_DASHenv] = ACTIONS(925), + [anon_sym_mut] = ACTIONS(925), + [anon_sym_const] = ACTIONS(925), + [aux_sym_cmd_identifier_token1] = ACTIONS(925), + [aux_sym_cmd_identifier_token2] = ACTIONS(927), + [aux_sym_cmd_identifier_token3] = ACTIONS(927), + [aux_sym_cmd_identifier_token4] = ACTIONS(927), + [aux_sym_cmd_identifier_token5] = ACTIONS(927), + [aux_sym_cmd_identifier_token6] = ACTIONS(927), + [aux_sym_cmd_identifier_token7] = ACTIONS(927), + [aux_sym_cmd_identifier_token8] = ACTIONS(925), + [aux_sym_cmd_identifier_token9] = ACTIONS(925), + [aux_sym_cmd_identifier_token10] = ACTIONS(927), + [aux_sym_cmd_identifier_token11] = ACTIONS(927), + [aux_sym_cmd_identifier_token12] = ACTIONS(925), + [aux_sym_cmd_identifier_token13] = ACTIONS(925), + [aux_sym_cmd_identifier_token14] = ACTIONS(925), + [aux_sym_cmd_identifier_token15] = ACTIONS(925), + [aux_sym_cmd_identifier_token16] = ACTIONS(927), + [aux_sym_cmd_identifier_token17] = ACTIONS(927), + [aux_sym_cmd_identifier_token18] = ACTIONS(927), + [aux_sym_cmd_identifier_token19] = ACTIONS(927), + [aux_sym_cmd_identifier_token20] = ACTIONS(927), + [aux_sym_cmd_identifier_token21] = ACTIONS(927), + [aux_sym_cmd_identifier_token22] = ACTIONS(927), + [aux_sym_cmd_identifier_token23] = ACTIONS(927), + [aux_sym_cmd_identifier_token24] = ACTIONS(927), + [aux_sym_cmd_identifier_token25] = ACTIONS(927), + [aux_sym_cmd_identifier_token26] = ACTIONS(927), + [aux_sym_cmd_identifier_token27] = ACTIONS(927), + [aux_sym_cmd_identifier_token28] = ACTIONS(927), + [aux_sym_cmd_identifier_token29] = ACTIONS(927), + [aux_sym_cmd_identifier_token30] = ACTIONS(927), + [aux_sym_cmd_identifier_token31] = ACTIONS(927), + [aux_sym_cmd_identifier_token32] = ACTIONS(927), + [aux_sym_cmd_identifier_token33] = ACTIONS(927), + [aux_sym_cmd_identifier_token34] = ACTIONS(925), + [aux_sym_cmd_identifier_token35] = ACTIONS(927), + [aux_sym_cmd_identifier_token36] = ACTIONS(927), + [aux_sym_cmd_identifier_token37] = ACTIONS(927), + [aux_sym_cmd_identifier_token38] = ACTIONS(925), + [aux_sym_cmd_identifier_token39] = ACTIONS(927), + [aux_sym_cmd_identifier_token40] = ACTIONS(927), + [anon_sym_def] = ACTIONS(925), + [anon_sym_export_DASHenv] = ACTIONS(925), + [anon_sym_extern] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_use] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(927), + [anon_sym_COMMA] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_error] = ACTIONS(925), + [anon_sym_DASH2] = ACTIONS(925), + [anon_sym_break] = ACTIONS(925), + [anon_sym_continue] = ACTIONS(925), + [anon_sym_for] = ACTIONS(925), + [anon_sym_in2] = ACTIONS(925), + [anon_sym_loop] = ACTIONS(925), + [anon_sym_make] = ACTIONS(925), + [anon_sym_while] = ACTIONS(925), + [anon_sym_do] = ACTIONS(925), + [anon_sym_if] = ACTIONS(925), + [anon_sym_else] = ACTIONS(925), + [anon_sym_match] = ACTIONS(925), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_try] = ACTIONS(925), + [anon_sym_catch] = ACTIONS(925), + [anon_sym_return] = ACTIONS(925), + [anon_sym_source] = ACTIONS(925), + [anon_sym_source_DASHenv] = ACTIONS(925), + [anon_sym_hide] = ACTIONS(925), + [anon_sym_hide_DASHenv] = ACTIONS(925), + [anon_sym_overlay] = ACTIONS(925), + [anon_sym_as] = ACTIONS(925), + [anon_sym_PLUS2] = ACTIONS(925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(927), + [anon_sym_DOT_DOT2] = ACTIONS(925), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(927), + [anon_sym_DOT_DOT_LT2] = ACTIONS(927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(927), + [aux_sym__val_number_decimal_token1] = ACTIONS(925), + [aux_sym__val_number_decimal_token2] = ACTIONS(927), + [aux_sym__val_number_decimal_token3] = ACTIONS(927), + [aux_sym__val_number_decimal_token4] = ACTIONS(927), + [aux_sym__val_number_token1] = ACTIONS(927), + [aux_sym__val_number_token2] = ACTIONS(927), + [aux_sym__val_number_token3] = ACTIONS(927), + [aux_sym__val_number_token4] = ACTIONS(925), + [aux_sym__val_number_token5] = ACTIONS(925), + [aux_sym__val_number_token6] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(927), + [sym__str_single_quotes] = ACTIONS(927), + [sym__str_back_ticks] = ACTIONS(927), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(927), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(927), + [anon_sym_register] = ACTIONS(925), + [anon_sym_DOT2] = ACTIONS(1723), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(927), + }, + [341] = { + [sym_comment] = STATE(341), + [anon_sym_export] = ACTIONS(1694), + [anon_sym_alias] = ACTIONS(1694), + [anon_sym_let] = ACTIONS(1694), + [anon_sym_let_DASHenv] = ACTIONS(1694), + [anon_sym_mut] = ACTIONS(1694), + [anon_sym_const] = ACTIONS(1694), + [aux_sym_cmd_identifier_token1] = ACTIONS(1694), + [aux_sym_cmd_identifier_token2] = ACTIONS(1696), + [aux_sym_cmd_identifier_token3] = ACTIONS(1696), + [aux_sym_cmd_identifier_token4] = ACTIONS(1696), + [aux_sym_cmd_identifier_token5] = ACTIONS(1696), + [aux_sym_cmd_identifier_token6] = ACTIONS(1696), + [aux_sym_cmd_identifier_token7] = ACTIONS(1696), + [aux_sym_cmd_identifier_token8] = ACTIONS(1694), + [aux_sym_cmd_identifier_token9] = ACTIONS(1694), + [aux_sym_cmd_identifier_token10] = ACTIONS(1696), + [aux_sym_cmd_identifier_token11] = ACTIONS(1696), + [aux_sym_cmd_identifier_token12] = ACTIONS(1694), + [aux_sym_cmd_identifier_token13] = ACTIONS(1694), + [aux_sym_cmd_identifier_token14] = ACTIONS(1694), + [aux_sym_cmd_identifier_token15] = ACTIONS(1694), + [aux_sym_cmd_identifier_token16] = ACTIONS(1696), + [aux_sym_cmd_identifier_token17] = ACTIONS(1696), + [aux_sym_cmd_identifier_token18] = ACTIONS(1696), + [aux_sym_cmd_identifier_token19] = ACTIONS(1696), + [aux_sym_cmd_identifier_token20] = ACTIONS(1696), + [aux_sym_cmd_identifier_token21] = ACTIONS(1696), + [aux_sym_cmd_identifier_token22] = ACTIONS(1696), + [aux_sym_cmd_identifier_token23] = ACTIONS(1696), + [aux_sym_cmd_identifier_token24] = ACTIONS(1696), + [aux_sym_cmd_identifier_token25] = ACTIONS(1696), + [aux_sym_cmd_identifier_token26] = ACTIONS(1696), + [aux_sym_cmd_identifier_token27] = ACTIONS(1696), + [aux_sym_cmd_identifier_token28] = ACTIONS(1696), + [aux_sym_cmd_identifier_token29] = ACTIONS(1696), + [aux_sym_cmd_identifier_token30] = ACTIONS(1696), + [aux_sym_cmd_identifier_token31] = ACTIONS(1696), + [aux_sym_cmd_identifier_token32] = ACTIONS(1696), + [aux_sym_cmd_identifier_token33] = ACTIONS(1696), + [aux_sym_cmd_identifier_token34] = ACTIONS(1694), + [aux_sym_cmd_identifier_token35] = ACTIONS(1696), + [aux_sym_cmd_identifier_token36] = ACTIONS(1696), + [aux_sym_cmd_identifier_token37] = ACTIONS(1696), + [aux_sym_cmd_identifier_token38] = ACTIONS(1694), + [aux_sym_cmd_identifier_token39] = ACTIONS(1696), + [aux_sym_cmd_identifier_token40] = ACTIONS(1696), + [sym__newline] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_AT] = ACTIONS(1696), + [anon_sym_def] = ACTIONS(1694), + [anon_sym_export_DASHenv] = ACTIONS(1694), + [anon_sym_extern] = ACTIONS(1694), + [anon_sym_module] = ACTIONS(1694), + [anon_sym_use] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_DOLLAR] = ACTIONS(1694), + [anon_sym_error] = ACTIONS(1694), + [anon_sym_DASH2] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_loop] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_do] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_match] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_DOT_DOT] = ACTIONS(1694), + [anon_sym_try] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_source] = ACTIONS(1694), + [anon_sym_source_DASHenv] = ACTIONS(1694), + [anon_sym_hide] = ACTIONS(1694), + [anon_sym_hide_DASHenv] = ACTIONS(1694), + [anon_sym_overlay] = ACTIONS(1694), + [anon_sym_where] = ACTIONS(1696), + [aux_sym_expr_unary_token1] = ACTIONS(1696), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), + [anon_sym_DOT_DOT_LT] = ACTIONS(1696), + [anon_sym_null] = ACTIONS(1694), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [aux_sym__val_number_decimal_token1] = ACTIONS(1694), + [aux_sym__val_number_decimal_token2] = ACTIONS(1696), + [aux_sym__val_number_decimal_token3] = ACTIONS(1696), + [aux_sym__val_number_decimal_token4] = ACTIONS(1696), + [aux_sym__val_number_token1] = ACTIONS(1696), + [aux_sym__val_number_token2] = ACTIONS(1696), + [aux_sym__val_number_token3] = ACTIONS(1696), + [aux_sym__val_number_token4] = ACTIONS(1694), + [aux_sym__val_number_token5] = ACTIONS(1694), + [aux_sym__val_number_token6] = ACTIONS(1694), + [anon_sym_0b] = ACTIONS(1694), + [anon_sym_0o] = ACTIONS(1694), + [anon_sym_0x] = ACTIONS(1694), + [sym_val_date] = ACTIONS(1696), + [anon_sym_DQUOTE] = ACTIONS(1696), + [sym__str_single_quotes] = ACTIONS(1696), + [sym__str_back_ticks] = ACTIONS(1696), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1696), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1696), + [aux_sym_env_var_token1] = ACTIONS(1694), + [anon_sym_CARET] = ACTIONS(1696), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1696), + }, + [342] = { + [sym_cmd_identifier] = STATE(4425), + [sym_ctrl_if] = STATE(4797), + [sym_block] = STATE(4798), + [sym__expression] = STATE(4798), + [sym_expr_unary] = STATE(2328), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2328), + [sym__expr_binary_expression] = STATE(3677), + [sym_expr_parenthesized] = STATE(1929), + [sym_val_range] = STATE(2328), + [sym__value] = STATE(2328), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(2375), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(1113), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_command] = STATE(4798), + [sym_comment] = STATE(342), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -113031,9 +112244,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(21), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1026), [anon_sym_DASH2] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_if] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(1725), [anon_sym_DOT_DOT] = ACTIONS(67), [aux_sym_expr_unary_token1] = ACTIONS(83), [anon_sym_DOT_DOT_EQ] = ACTIONS(85), @@ -113041,10 +112255,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(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1729), + [aux_sym__val_number_decimal_token3] = ACTIONS(1731), + [aux_sym__val_number_decimal_token4] = ACTIONS(1733), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), @@ -113060,153 +112274,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(245), [sym_raw_string_begin] = ACTIONS(121), }, - [340] = { - [sym_cell_path] = STATE(536), - [sym_path] = STATE(445), - [sym_comment] = STATE(340), - [aux_sym_cell_path_repeat1] = STATE(378), - [anon_sym_export] = ACTIONS(1698), - [anon_sym_alias] = ACTIONS(1698), - [anon_sym_let] = ACTIONS(1698), - [anon_sym_let_DASHenv] = ACTIONS(1698), - [anon_sym_mut] = ACTIONS(1698), - [anon_sym_const] = ACTIONS(1698), - [aux_sym_cmd_identifier_token1] = ACTIONS(1698), - [aux_sym_cmd_identifier_token2] = ACTIONS(1700), - [aux_sym_cmd_identifier_token3] = ACTIONS(1700), - [aux_sym_cmd_identifier_token4] = ACTIONS(1700), - [aux_sym_cmd_identifier_token5] = ACTIONS(1700), - [aux_sym_cmd_identifier_token6] = ACTIONS(1700), - [aux_sym_cmd_identifier_token7] = ACTIONS(1700), - [aux_sym_cmd_identifier_token8] = ACTIONS(1698), - [aux_sym_cmd_identifier_token9] = ACTIONS(1698), - [aux_sym_cmd_identifier_token10] = ACTIONS(1700), - [aux_sym_cmd_identifier_token11] = ACTIONS(1700), - [aux_sym_cmd_identifier_token12] = ACTIONS(1698), - [aux_sym_cmd_identifier_token13] = ACTIONS(1698), - [aux_sym_cmd_identifier_token14] = ACTIONS(1698), - [aux_sym_cmd_identifier_token15] = ACTIONS(1698), - [aux_sym_cmd_identifier_token16] = ACTIONS(1700), - [aux_sym_cmd_identifier_token17] = ACTIONS(1700), - [aux_sym_cmd_identifier_token18] = ACTIONS(1700), - [aux_sym_cmd_identifier_token19] = ACTIONS(1700), - [aux_sym_cmd_identifier_token20] = ACTIONS(1700), - [aux_sym_cmd_identifier_token21] = ACTIONS(1700), - [aux_sym_cmd_identifier_token22] = ACTIONS(1700), - [aux_sym_cmd_identifier_token23] = ACTIONS(1700), - [aux_sym_cmd_identifier_token24] = ACTIONS(1700), - [aux_sym_cmd_identifier_token25] = ACTIONS(1700), - [aux_sym_cmd_identifier_token26] = ACTIONS(1700), - [aux_sym_cmd_identifier_token27] = ACTIONS(1700), - [aux_sym_cmd_identifier_token28] = ACTIONS(1700), - [aux_sym_cmd_identifier_token29] = ACTIONS(1700), - [aux_sym_cmd_identifier_token30] = ACTIONS(1700), - [aux_sym_cmd_identifier_token31] = ACTIONS(1700), - [aux_sym_cmd_identifier_token32] = ACTIONS(1700), - [aux_sym_cmd_identifier_token33] = ACTIONS(1700), - [aux_sym_cmd_identifier_token34] = ACTIONS(1698), - [aux_sym_cmd_identifier_token35] = ACTIONS(1700), - [aux_sym_cmd_identifier_token36] = ACTIONS(1700), - [aux_sym_cmd_identifier_token37] = ACTIONS(1700), - [aux_sym_cmd_identifier_token38] = ACTIONS(1698), - [aux_sym_cmd_identifier_token39] = ACTIONS(1700), - [aux_sym_cmd_identifier_token40] = ACTIONS(1700), - [anon_sym_def] = ACTIONS(1698), - [anon_sym_export_DASHenv] = ACTIONS(1698), - [anon_sym_extern] = ACTIONS(1698), - [anon_sym_module] = ACTIONS(1698), - [anon_sym_use] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_COMMA] = ACTIONS(1700), - [anon_sym_DOLLAR] = ACTIONS(1698), - [anon_sym_error] = ACTIONS(1698), - [anon_sym_DASH2] = ACTIONS(1698), - [anon_sym_break] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(1698), - [anon_sym_for] = ACTIONS(1698), - [anon_sym_in2] = ACTIONS(1698), - [anon_sym_loop] = ACTIONS(1698), - [anon_sym_make] = ACTIONS(1698), - [anon_sym_while] = ACTIONS(1698), - [anon_sym_do] = ACTIONS(1698), - [anon_sym_if] = ACTIONS(1698), - [anon_sym_else] = ACTIONS(1698), - [anon_sym_match] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1700), - [anon_sym_try] = ACTIONS(1698), - [anon_sym_catch] = ACTIONS(1698), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_source] = ACTIONS(1698), - [anon_sym_source_DASHenv] = ACTIONS(1698), - [anon_sym_hide] = ACTIONS(1698), - [anon_sym_hide_DASHenv] = ACTIONS(1698), - [anon_sym_overlay] = ACTIONS(1698), - [anon_sym_as] = ACTIONS(1698), - [anon_sym_PLUS2] = ACTIONS(1698), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1700), - [anon_sym_DOT_DOT2] = ACTIONS(1698), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1700), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1700), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1700), - [aux_sym__val_number_decimal_token1] = ACTIONS(1698), - [aux_sym__val_number_decimal_token2] = ACTIONS(1700), - [aux_sym__val_number_decimal_token3] = ACTIONS(1700), - [aux_sym__val_number_decimal_token4] = ACTIONS(1700), - [aux_sym__val_number_token1] = ACTIONS(1700), - [aux_sym__val_number_token2] = ACTIONS(1700), - [aux_sym__val_number_token3] = ACTIONS(1700), - [aux_sym__val_number_token4] = ACTIONS(1698), - [aux_sym__val_number_token5] = ACTIONS(1698), - [aux_sym__val_number_token6] = ACTIONS(1698), - [anon_sym_DQUOTE] = ACTIONS(1700), - [sym__str_single_quotes] = ACTIONS(1700), - [sym__str_back_ticks] = ACTIONS(1700), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1700), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1700), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1700), - [anon_sym_register] = ACTIONS(1698), - [anon_sym_DOT2] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1700), - }, - [341] = { - [sym_cmd_identifier] = STATE(4507), - [sym__expression] = STATE(3845), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(783), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4764), - [sym_comment] = STATE(341), - [aux_sym_pipe_element_repeat2] = STATE(1190), + [343] = { + [sym_cmd_identifier] = STATE(4261), + [sym__expression] = STATE(3668), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4567), + [sym_comment] = STATE(343), + [aux_sym_pipe_element_repeat2] = STATE(1148), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -113259,10 +112363,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(407), - [aux_sym__val_number_decimal_token2] = ACTIONS(409), - [aux_sym__val_number_decimal_token3] = ACTIONS(411), - [aux_sym__val_number_decimal_token4] = ACTIONS(413), + [aux_sym__val_number_decimal_token1] = ACTIONS(449), + [aux_sym__val_number_decimal_token2] = ACTIONS(451), + [aux_sym__val_number_decimal_token3] = ACTIONS(453), + [aux_sym__val_number_decimal_token4] = ACTIONS(455), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -113283,39 +112387,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [342] = { - [sym_cmd_identifier] = STATE(4507), - [sym__expression] = STATE(3845), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(814), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4764), - [sym_comment] = STATE(342), - [aux_sym_pipe_element_repeat2] = STATE(1190), + [344] = { + [sym_comment] = STATE(344), + [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(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_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_token16] = ACTIONS(1737), + [aux_sym_cmd_identifier_token17] = ACTIONS(1737), + [aux_sym_cmd_identifier_token18] = ACTIONS(1737), + [aux_sym_cmd_identifier_token19] = ACTIONS(1737), + [aux_sym_cmd_identifier_token20] = ACTIONS(1737), + [aux_sym_cmd_identifier_token21] = ACTIONS(1737), + [aux_sym_cmd_identifier_token22] = ACTIONS(1737), + [aux_sym_cmd_identifier_token23] = ACTIONS(1737), + [aux_sym_cmd_identifier_token24] = ACTIONS(1737), + [aux_sym_cmd_identifier_token25] = ACTIONS(1737), + [aux_sym_cmd_identifier_token26] = ACTIONS(1737), + [aux_sym_cmd_identifier_token27] = ACTIONS(1737), + [aux_sym_cmd_identifier_token28] = ACTIONS(1737), + [aux_sym_cmd_identifier_token29] = ACTIONS(1737), + [aux_sym_cmd_identifier_token30] = ACTIONS(1737), + [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_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_token39] = ACTIONS(1737), + [aux_sym_cmd_identifier_token40] = ACTIONS(1737), + [sym__newline] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1737), + [anon_sym_AT] = 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_LBRACK] = ACTIONS(1737), + [anon_sym_LPAREN] = ACTIONS(1737), + [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_loop] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_where] = ACTIONS(1737), + [aux_sym_expr_unary_token1] = ACTIONS(1737), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1737), + [anon_sym_DOT_DOT_LT] = ACTIONS(1737), + [anon_sym_null] = ACTIONS(1735), + [anon_sym_true] = ACTIONS(1735), + [anon_sym_false] = ACTIONS(1735), + [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(1735), + [aux_sym__val_number_token5] = ACTIONS(1735), + [aux_sym__val_number_token6] = ACTIONS(1735), + [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), + [aux_sym_env_var_token1] = ACTIONS(1735), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1737), + }, + [345] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if] = STATE(4597), + [sym_block] = STATE(4598), + [sym__expression] = STATE(4598), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3669), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1109), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4598), + [sym_comment] = STATE(345), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -113360,7 +112573,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_if] = ACTIONS(591), + [anon_sym_LBRACE] = ACTIONS(1528), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(201), [anon_sym_DOT_DOT_EQ] = ACTIONS(207), @@ -113368,10 +112582,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1022), - [aux_sym__val_number_decimal_token4] = ACTIONS(1024), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1601), + [aux_sym__val_number_decimal_token4] = ACTIONS(1603), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -113387,44 +112601,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [343] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if] = STATE(4765), - [sym_block] = STATE(4766), - [sym__expression] = STATE(4766), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3844), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1174), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(4766), - [sym_comment] = STATE(343), + [346] = { + [sym_cmd_identifier] = STATE(4420), + [sym__expression_parenthesized] = STATE(3680), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(783), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4756), + [sym_comment] = STATE(346), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1143), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -113469,8 +112682,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_if] = ACTIONS(1014), - [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(201), [anon_sym_DOT_DOT_EQ] = ACTIONS(207), @@ -113478,10 +112690,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1557), - [aux_sym__val_number_decimal_token2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1563), + [aux_sym__val_number_decimal_token1] = ACTIONS(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1022), + [aux_sym__val_number_decimal_token4] = ACTIONS(1024), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -113497,43 +112709,480 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_CARET] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(457), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [344] = { - [sym_cmd_identifier] = STATE(4650), - [sym__expression_parenthesized] = STATE(3879), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(826), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5145), - [sym_comment] = STATE(344), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1195), + [347] = { + [sym_cmd_identifier] = STATE(4425), + [sym__expression] = STATE(3682), + [sym_expr_unary] = STATE(2328), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2328), + [sym__expr_binary_expression] = STATE(3675), + [sym_expr_parenthesized] = STATE(1929), + [sym_val_range] = STATE(2328), + [sym__value] = STATE(2328), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(2375), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(749), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4730), + [sym_comment] = STATE(347), + [aux_sym_pipe_element_repeat2] = STATE(1148), + [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(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(67), + [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(245), + [sym_raw_string_begin] = ACTIONS(121), + }, + [348] = { + [sym_path] = STATE(414), + [sym_comment] = STATE(348), + [aux_sym_cell_path_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(938), + [anon_sym_alias] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_let_DASHenv] = ACTIONS(938), + [anon_sym_mut] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [aux_sym_cmd_identifier_token1] = ACTIONS(938), + [aux_sym_cmd_identifier_token2] = ACTIONS(938), + [aux_sym_cmd_identifier_token3] = ACTIONS(938), + [aux_sym_cmd_identifier_token4] = ACTIONS(938), + [aux_sym_cmd_identifier_token5] = ACTIONS(938), + [aux_sym_cmd_identifier_token6] = ACTIONS(938), + [aux_sym_cmd_identifier_token7] = ACTIONS(938), + [aux_sym_cmd_identifier_token8] = ACTIONS(938), + [aux_sym_cmd_identifier_token9] = ACTIONS(938), + [aux_sym_cmd_identifier_token10] = ACTIONS(938), + [aux_sym_cmd_identifier_token11] = ACTIONS(938), + [aux_sym_cmd_identifier_token12] = ACTIONS(938), + [aux_sym_cmd_identifier_token13] = ACTIONS(938), + [aux_sym_cmd_identifier_token14] = ACTIONS(938), + [aux_sym_cmd_identifier_token15] = ACTIONS(938), + [aux_sym_cmd_identifier_token16] = ACTIONS(938), + [aux_sym_cmd_identifier_token17] = ACTIONS(938), + [aux_sym_cmd_identifier_token18] = ACTIONS(938), + [aux_sym_cmd_identifier_token19] = ACTIONS(938), + [aux_sym_cmd_identifier_token20] = ACTIONS(938), + [aux_sym_cmd_identifier_token21] = ACTIONS(938), + [aux_sym_cmd_identifier_token22] = ACTIONS(938), + [aux_sym_cmd_identifier_token23] = ACTIONS(938), + [aux_sym_cmd_identifier_token24] = ACTIONS(938), + [aux_sym_cmd_identifier_token25] = ACTIONS(938), + [aux_sym_cmd_identifier_token26] = ACTIONS(938), + [aux_sym_cmd_identifier_token27] = ACTIONS(938), + [aux_sym_cmd_identifier_token28] = ACTIONS(938), + [aux_sym_cmd_identifier_token29] = ACTIONS(938), + [aux_sym_cmd_identifier_token30] = ACTIONS(938), + [aux_sym_cmd_identifier_token31] = ACTIONS(938), + [aux_sym_cmd_identifier_token32] = ACTIONS(938), + [aux_sym_cmd_identifier_token33] = ACTIONS(938), + [aux_sym_cmd_identifier_token34] = ACTIONS(938), + [aux_sym_cmd_identifier_token35] = ACTIONS(938), + [aux_sym_cmd_identifier_token36] = ACTIONS(938), + [aux_sym_cmd_identifier_token37] = ACTIONS(938), + [aux_sym_cmd_identifier_token38] = ACTIONS(938), + [aux_sym_cmd_identifier_token39] = ACTIONS(938), + [aux_sym_cmd_identifier_token40] = ACTIONS(938), + [anon_sym_def] = ACTIONS(938), + [anon_sym_export_DASHenv] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_COMMA] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_error] = ACTIONS(938), + [anon_sym_DASH2] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_in2] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_make] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_else] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_try] = ACTIONS(938), + [anon_sym_catch] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_PLUS2] = ACTIONS(938), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(938), + [anon_sym_DOT_DOT2] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(940), + [anon_sym_DOT_DOT_LT2] = ACTIONS(940), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_decimal_token4] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(938), + [sym__entry_separator] = ACTIONS(940), + [anon_sym_register] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(1666), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(940), + }, + [349] = { + [sym_path] = STATE(414), + [sym_comment] = STATE(349), + [aux_sym_cell_path_repeat1] = STATE(349), + [anon_sym_export] = ACTIONS(931), + [anon_sym_alias] = ACTIONS(931), + [anon_sym_let] = ACTIONS(931), + [anon_sym_let_DASHenv] = ACTIONS(931), + [anon_sym_mut] = ACTIONS(931), + [anon_sym_const] = ACTIONS(931), + [aux_sym_cmd_identifier_token1] = ACTIONS(931), + [aux_sym_cmd_identifier_token2] = ACTIONS(931), + [aux_sym_cmd_identifier_token3] = ACTIONS(931), + [aux_sym_cmd_identifier_token4] = ACTIONS(931), + [aux_sym_cmd_identifier_token5] = ACTIONS(931), + [aux_sym_cmd_identifier_token6] = ACTIONS(931), + [aux_sym_cmd_identifier_token7] = ACTIONS(931), + [aux_sym_cmd_identifier_token8] = ACTIONS(931), + [aux_sym_cmd_identifier_token9] = ACTIONS(931), + [aux_sym_cmd_identifier_token10] = ACTIONS(931), + [aux_sym_cmd_identifier_token11] = ACTIONS(931), + [aux_sym_cmd_identifier_token12] = ACTIONS(931), + [aux_sym_cmd_identifier_token13] = ACTIONS(931), + [aux_sym_cmd_identifier_token14] = ACTIONS(931), + [aux_sym_cmd_identifier_token15] = ACTIONS(931), + [aux_sym_cmd_identifier_token16] = ACTIONS(931), + [aux_sym_cmd_identifier_token17] = ACTIONS(931), + [aux_sym_cmd_identifier_token18] = ACTIONS(931), + [aux_sym_cmd_identifier_token19] = ACTIONS(931), + [aux_sym_cmd_identifier_token20] = ACTIONS(931), + [aux_sym_cmd_identifier_token21] = ACTIONS(931), + [aux_sym_cmd_identifier_token22] = ACTIONS(931), + [aux_sym_cmd_identifier_token23] = ACTIONS(931), + [aux_sym_cmd_identifier_token24] = ACTIONS(931), + [aux_sym_cmd_identifier_token25] = ACTIONS(931), + [aux_sym_cmd_identifier_token26] = ACTIONS(931), + [aux_sym_cmd_identifier_token27] = ACTIONS(931), + [aux_sym_cmd_identifier_token28] = ACTIONS(931), + [aux_sym_cmd_identifier_token29] = ACTIONS(931), + [aux_sym_cmd_identifier_token30] = ACTIONS(931), + [aux_sym_cmd_identifier_token31] = ACTIONS(931), + [aux_sym_cmd_identifier_token32] = ACTIONS(931), + [aux_sym_cmd_identifier_token33] = ACTIONS(931), + [aux_sym_cmd_identifier_token34] = ACTIONS(931), + [aux_sym_cmd_identifier_token35] = ACTIONS(931), + [aux_sym_cmd_identifier_token36] = ACTIONS(931), + [aux_sym_cmd_identifier_token37] = ACTIONS(931), + [aux_sym_cmd_identifier_token38] = ACTIONS(931), + [aux_sym_cmd_identifier_token39] = ACTIONS(931), + [aux_sym_cmd_identifier_token40] = ACTIONS(931), + [anon_sym_def] = ACTIONS(931), + [anon_sym_export_DASHenv] = ACTIONS(931), + [anon_sym_extern] = ACTIONS(931), + [anon_sym_module] = ACTIONS(931), + [anon_sym_use] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_COMMA] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_error] = ACTIONS(931), + [anon_sym_DASH2] = ACTIONS(931), + [anon_sym_break] = ACTIONS(931), + [anon_sym_continue] = ACTIONS(931), + [anon_sym_for] = ACTIONS(931), + [anon_sym_in2] = ACTIONS(931), + [anon_sym_loop] = ACTIONS(931), + [anon_sym_make] = ACTIONS(931), + [anon_sym_while] = ACTIONS(931), + [anon_sym_do] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_else] = ACTIONS(931), + [anon_sym_match] = ACTIONS(931), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_try] = ACTIONS(931), + [anon_sym_catch] = ACTIONS(931), + [anon_sym_return] = ACTIONS(931), + [anon_sym_source] = ACTIONS(931), + [anon_sym_source_DASHenv] = ACTIONS(931), + [anon_sym_hide] = ACTIONS(931), + [anon_sym_hide_DASHenv] = ACTIONS(931), + [anon_sym_overlay] = ACTIONS(931), + [anon_sym_as] = ACTIONS(931), + [anon_sym_PLUS2] = ACTIONS(931), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(931), + [anon_sym_DOT_DOT2] = ACTIONS(931), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(933), + [anon_sym_DOT_DOT_LT2] = ACTIONS(933), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(931), + [aux_sym__val_number_decimal_token1] = ACTIONS(931), + [aux_sym__val_number_decimal_token2] = ACTIONS(931), + [aux_sym__val_number_decimal_token3] = ACTIONS(931), + [aux_sym__val_number_decimal_token4] = ACTIONS(931), + [aux_sym__val_number_token1] = ACTIONS(931), + [aux_sym__val_number_token2] = ACTIONS(931), + [aux_sym__val_number_token3] = ACTIONS(931), + [aux_sym__val_number_token4] = ACTIONS(931), + [aux_sym__val_number_token5] = ACTIONS(931), + [aux_sym__val_number_token6] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [sym__str_single_quotes] = ACTIONS(931), + [sym__str_back_ticks] = ACTIONS(931), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(931), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(931), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(931), + [sym__entry_separator] = ACTIONS(933), + [anon_sym_register] = ACTIONS(931), + [anon_sym_DOT2] = ACTIONS(1739), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(933), + }, + [350] = { + [sym_cell_path] = STATE(512), + [sym_path] = STATE(434), + [sym_comment] = STATE(350), + [aux_sym_cell_path_repeat1] = STATE(375), + [anon_sym_export] = ACTIONS(1674), + [anon_sym_alias] = ACTIONS(1674), + [anon_sym_let] = ACTIONS(1674), + [anon_sym_let_DASHenv] = ACTIONS(1674), + [anon_sym_mut] = ACTIONS(1674), + [anon_sym_const] = ACTIONS(1674), + [aux_sym_cmd_identifier_token1] = ACTIONS(1674), + [aux_sym_cmd_identifier_token2] = ACTIONS(1676), + [aux_sym_cmd_identifier_token3] = ACTIONS(1676), + [aux_sym_cmd_identifier_token4] = ACTIONS(1676), + [aux_sym_cmd_identifier_token5] = ACTIONS(1676), + [aux_sym_cmd_identifier_token6] = ACTIONS(1676), + [aux_sym_cmd_identifier_token7] = ACTIONS(1676), + [aux_sym_cmd_identifier_token8] = ACTIONS(1674), + [aux_sym_cmd_identifier_token9] = ACTIONS(1674), + [aux_sym_cmd_identifier_token10] = ACTIONS(1676), + [aux_sym_cmd_identifier_token11] = ACTIONS(1676), + [aux_sym_cmd_identifier_token12] = ACTIONS(1674), + [aux_sym_cmd_identifier_token13] = ACTIONS(1674), + [aux_sym_cmd_identifier_token14] = ACTIONS(1674), + [aux_sym_cmd_identifier_token15] = ACTIONS(1674), + [aux_sym_cmd_identifier_token16] = ACTIONS(1676), + [aux_sym_cmd_identifier_token17] = ACTIONS(1676), + [aux_sym_cmd_identifier_token18] = ACTIONS(1676), + [aux_sym_cmd_identifier_token19] = ACTIONS(1676), + [aux_sym_cmd_identifier_token20] = ACTIONS(1676), + [aux_sym_cmd_identifier_token21] = ACTIONS(1676), + [aux_sym_cmd_identifier_token22] = ACTIONS(1676), + [aux_sym_cmd_identifier_token23] = ACTIONS(1676), + [aux_sym_cmd_identifier_token24] = ACTIONS(1676), + [aux_sym_cmd_identifier_token25] = ACTIONS(1676), + [aux_sym_cmd_identifier_token26] = ACTIONS(1676), + [aux_sym_cmd_identifier_token27] = ACTIONS(1676), + [aux_sym_cmd_identifier_token28] = ACTIONS(1676), + [aux_sym_cmd_identifier_token29] = ACTIONS(1676), + [aux_sym_cmd_identifier_token30] = ACTIONS(1676), + [aux_sym_cmd_identifier_token31] = ACTIONS(1676), + [aux_sym_cmd_identifier_token32] = ACTIONS(1676), + [aux_sym_cmd_identifier_token33] = ACTIONS(1676), + [aux_sym_cmd_identifier_token34] = ACTIONS(1674), + [aux_sym_cmd_identifier_token35] = ACTIONS(1676), + [aux_sym_cmd_identifier_token36] = ACTIONS(1676), + [aux_sym_cmd_identifier_token37] = ACTIONS(1676), + [aux_sym_cmd_identifier_token38] = ACTIONS(1674), + [aux_sym_cmd_identifier_token39] = ACTIONS(1676), + [aux_sym_cmd_identifier_token40] = ACTIONS(1676), + [anon_sym_def] = ACTIONS(1674), + [anon_sym_export_DASHenv] = ACTIONS(1674), + [anon_sym_extern] = ACTIONS(1674), + [anon_sym_module] = ACTIONS(1674), + [anon_sym_use] = ACTIONS(1674), + [anon_sym_LPAREN] = ACTIONS(1676), + [anon_sym_COMMA] = ACTIONS(1676), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_error] = ACTIONS(1674), + [anon_sym_DASH2] = ACTIONS(1674), + [anon_sym_break] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(1674), + [anon_sym_for] = ACTIONS(1674), + [anon_sym_in2] = ACTIONS(1674), + [anon_sym_loop] = ACTIONS(1674), + [anon_sym_make] = ACTIONS(1674), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1674), + [anon_sym_if] = ACTIONS(1674), + [anon_sym_else] = ACTIONS(1674), + [anon_sym_match] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1676), + [anon_sym_try] = ACTIONS(1674), + [anon_sym_catch] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_source] = ACTIONS(1674), + [anon_sym_source_DASHenv] = ACTIONS(1674), + [anon_sym_hide] = ACTIONS(1674), + [anon_sym_hide_DASHenv] = ACTIONS(1674), + [anon_sym_overlay] = ACTIONS(1674), + [anon_sym_as] = ACTIONS(1674), + [anon_sym_PLUS2] = ACTIONS(1674), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1676), + [anon_sym_DOT_DOT2] = ACTIONS(1674), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1676), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1676), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1676), + [aux_sym__val_number_decimal_token1] = ACTIONS(1674), + [aux_sym__val_number_decimal_token2] = ACTIONS(1676), + [aux_sym__val_number_decimal_token3] = ACTIONS(1676), + [aux_sym__val_number_decimal_token4] = ACTIONS(1676), + [aux_sym__val_number_token1] = ACTIONS(1676), + [aux_sym__val_number_token2] = ACTIONS(1676), + [aux_sym__val_number_token3] = ACTIONS(1676), + [aux_sym__val_number_token4] = ACTIONS(1674), + [aux_sym__val_number_token5] = ACTIONS(1674), + [aux_sym__val_number_token6] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1676), + [sym__str_single_quotes] = ACTIONS(1676), + [sym__str_back_ticks] = ACTIONS(1676), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1676), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1674), + [anon_sym_DOT2] = ACTIONS(1723), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1676), + }, + [351] = { + [sym_cmd_identifier] = STATE(4420), + [sym__expression_parenthesized] = STATE(3680), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(797), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4756), + [sym_comment] = STATE(351), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1143), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -113586,10 +113235,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1727), - [aux_sym__val_number_decimal_token2] = ACTIONS(1729), - [aux_sym__val_number_decimal_token3] = ACTIONS(1731), - [aux_sym__val_number_decimal_token4] = ACTIONS(1733), + [aux_sym__val_number_decimal_token1] = ACTIONS(1742), + [aux_sym__val_number_decimal_token2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_decimal_token4] = ACTIONS(1748), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -113610,39 +113259,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [345] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if] = STATE(4765), - [sym_block] = STATE(4766), - [sym__expression] = STATE(4766), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3844), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1153), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(4766), - [sym_comment] = STATE(345), + [352] = { + [sym_comment] = STATE(352), + [anon_sym_export] = ACTIONS(1499), + [anon_sym_alias] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1499), + [anon_sym_let_DASHenv] = ACTIONS(1499), + [anon_sym_mut] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(1499), + [aux_sym_cmd_identifier_token1] = ACTIONS(1499), + [aux_sym_cmd_identifier_token2] = ACTIONS(1501), + [aux_sym_cmd_identifier_token3] = ACTIONS(1501), + [aux_sym_cmd_identifier_token4] = ACTIONS(1501), + [aux_sym_cmd_identifier_token5] = ACTIONS(1501), + [aux_sym_cmd_identifier_token6] = ACTIONS(1501), + [aux_sym_cmd_identifier_token7] = ACTIONS(1501), + [aux_sym_cmd_identifier_token8] = ACTIONS(1499), + [aux_sym_cmd_identifier_token9] = ACTIONS(1499), + [aux_sym_cmd_identifier_token10] = ACTIONS(1501), + [aux_sym_cmd_identifier_token11] = ACTIONS(1501), + [aux_sym_cmd_identifier_token12] = ACTIONS(1499), + [aux_sym_cmd_identifier_token13] = ACTIONS(1499), + [aux_sym_cmd_identifier_token14] = ACTIONS(1499), + [aux_sym_cmd_identifier_token15] = ACTIONS(1499), + [aux_sym_cmd_identifier_token16] = ACTIONS(1501), + [aux_sym_cmd_identifier_token17] = ACTIONS(1501), + [aux_sym_cmd_identifier_token18] = ACTIONS(1501), + [aux_sym_cmd_identifier_token19] = ACTIONS(1501), + [aux_sym_cmd_identifier_token20] = ACTIONS(1501), + [aux_sym_cmd_identifier_token21] = ACTIONS(1501), + [aux_sym_cmd_identifier_token22] = ACTIONS(1501), + [aux_sym_cmd_identifier_token23] = ACTIONS(1501), + [aux_sym_cmd_identifier_token24] = ACTIONS(1501), + [aux_sym_cmd_identifier_token25] = ACTIONS(1501), + [aux_sym_cmd_identifier_token26] = ACTIONS(1501), + [aux_sym_cmd_identifier_token27] = ACTIONS(1501), + [aux_sym_cmd_identifier_token28] = ACTIONS(1501), + [aux_sym_cmd_identifier_token29] = ACTIONS(1501), + [aux_sym_cmd_identifier_token30] = ACTIONS(1501), + [aux_sym_cmd_identifier_token31] = ACTIONS(1501), + [aux_sym_cmd_identifier_token32] = ACTIONS(1501), + [aux_sym_cmd_identifier_token33] = ACTIONS(1501), + [aux_sym_cmd_identifier_token34] = ACTIONS(1499), + [aux_sym_cmd_identifier_token35] = ACTIONS(1501), + [aux_sym_cmd_identifier_token36] = ACTIONS(1501), + [aux_sym_cmd_identifier_token37] = ACTIONS(1501), + [aux_sym_cmd_identifier_token38] = ACTIONS(1499), + [aux_sym_cmd_identifier_token39] = ACTIONS(1501), + [aux_sym_cmd_identifier_token40] = ACTIONS(1501), + [anon_sym_def] = ACTIONS(1499), + [anon_sym_export_DASHenv] = ACTIONS(1499), + [anon_sym_extern] = ACTIONS(1499), + [anon_sym_module] = ACTIONS(1499), + [anon_sym_use] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_COMMA] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(1499), + [anon_sym_error] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_break] = ACTIONS(1499), + [anon_sym_continue] = ACTIONS(1499), + [anon_sym_for] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_loop] = ACTIONS(1499), + [anon_sym_make] = ACTIONS(1499), + [anon_sym_while] = ACTIONS(1499), + [anon_sym_do] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1499), + [anon_sym_else] = ACTIONS(1499), + [anon_sym_match] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1501), + [anon_sym_try] = ACTIONS(1499), + [anon_sym_catch] = ACTIONS(1499), + [anon_sym_return] = ACTIONS(1499), + [anon_sym_source] = ACTIONS(1499), + [anon_sym_source_DASHenv] = ACTIONS(1499), + [anon_sym_hide] = ACTIONS(1499), + [anon_sym_hide_DASHenv] = ACTIONS(1499), + [anon_sym_overlay] = ACTIONS(1499), + [anon_sym_as] = ACTIONS(1499), + [anon_sym_LPAREN2] = ACTIONS(1501), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1501), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1501), + [aux_sym__val_number_decimal_token1] = ACTIONS(1499), + [aux_sym__val_number_decimal_token2] = ACTIONS(1501), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1501), + [aux_sym__val_number_token1] = ACTIONS(1501), + [aux_sym__val_number_token2] = ACTIONS(1501), + [aux_sym__val_number_token3] = ACTIONS(1501), + [aux_sym__val_number_token4] = ACTIONS(1499), + [aux_sym__val_number_token5] = ACTIONS(1499), + [aux_sym__val_number_token6] = ACTIONS(1499), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1501), + [sym__str_single_quotes] = ACTIONS(1501), + [sym__str_back_ticks] = ACTIONS(1501), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1501), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1501), + [anon_sym_register] = ACTIONS(1499), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1501), + }, + [353] = { + [sym_cmd_identifier] = STATE(4420), + [sym__expression_parenthesized] = STATE(3680), + [sym_expr_unary] = STATE(2260), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2260), + [sym__expr_binary_expression_parenthesized] = STATE(3611), + [sym_expr_parenthesized] = STATE(1707), + [sym_val_range] = STATE(2260), + [sym__value] = STATE(2260), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(748), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6548), + [sym__command_parenthesized] = STATE(4756), + [sym_comment] = STATE(353), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1143), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -113687,8 +113445,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_if] = ACTIONS(389), - [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(201), [anon_sym_DOT_DOT_EQ] = ACTIONS(207), @@ -113696,10 +113453,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1735), - [aux_sym__val_number_decimal_token2] = ACTIONS(1737), - [aux_sym__val_number_decimal_token3] = ACTIONS(1739), - [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_decimal_token1] = ACTIONS(449), + [aux_sym__val_number_decimal_token2] = ACTIONS(451), + [aux_sym__val_number_decimal_token3] = ACTIONS(453), + [aux_sym__val_number_decimal_token4] = ACTIONS(455), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -113715,261 +113472,262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_CARET] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(457), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [346] = { - [sym_comment] = STATE(346), - [anon_sym_export] = ACTIONS(1743), - [anon_sym_alias] = ACTIONS(1743), - [anon_sym_let] = ACTIONS(1743), - [anon_sym_let_DASHenv] = ACTIONS(1743), - [anon_sym_mut] = ACTIONS(1743), - [anon_sym_const] = ACTIONS(1743), - [aux_sym_cmd_identifier_token1] = ACTIONS(1743), - [aux_sym_cmd_identifier_token2] = ACTIONS(1745), - [aux_sym_cmd_identifier_token3] = ACTIONS(1745), - [aux_sym_cmd_identifier_token4] = ACTIONS(1745), - [aux_sym_cmd_identifier_token5] = ACTIONS(1745), - [aux_sym_cmd_identifier_token6] = ACTIONS(1745), - [aux_sym_cmd_identifier_token7] = ACTIONS(1745), - [aux_sym_cmd_identifier_token8] = ACTIONS(1743), - [aux_sym_cmd_identifier_token9] = ACTIONS(1743), - [aux_sym_cmd_identifier_token10] = ACTIONS(1745), - [aux_sym_cmd_identifier_token11] = ACTIONS(1745), - [aux_sym_cmd_identifier_token12] = ACTIONS(1743), - [aux_sym_cmd_identifier_token13] = ACTIONS(1743), - [aux_sym_cmd_identifier_token14] = ACTIONS(1743), - [aux_sym_cmd_identifier_token15] = ACTIONS(1743), - [aux_sym_cmd_identifier_token16] = ACTIONS(1745), - [aux_sym_cmd_identifier_token17] = ACTIONS(1745), - [aux_sym_cmd_identifier_token18] = ACTIONS(1745), - [aux_sym_cmd_identifier_token19] = ACTIONS(1745), - [aux_sym_cmd_identifier_token20] = ACTIONS(1745), - [aux_sym_cmd_identifier_token21] = ACTIONS(1745), - [aux_sym_cmd_identifier_token22] = ACTIONS(1745), - [aux_sym_cmd_identifier_token23] = ACTIONS(1745), - [aux_sym_cmd_identifier_token24] = ACTIONS(1745), - [aux_sym_cmd_identifier_token25] = ACTIONS(1745), - [aux_sym_cmd_identifier_token26] = ACTIONS(1745), - [aux_sym_cmd_identifier_token27] = ACTIONS(1745), - [aux_sym_cmd_identifier_token28] = ACTIONS(1745), - [aux_sym_cmd_identifier_token29] = ACTIONS(1745), - [aux_sym_cmd_identifier_token30] = ACTIONS(1745), - [aux_sym_cmd_identifier_token31] = ACTIONS(1745), - [aux_sym_cmd_identifier_token32] = ACTIONS(1745), - [aux_sym_cmd_identifier_token33] = ACTIONS(1745), - [aux_sym_cmd_identifier_token34] = ACTIONS(1743), - [aux_sym_cmd_identifier_token35] = ACTIONS(1745), - [aux_sym_cmd_identifier_token36] = ACTIONS(1745), - [aux_sym_cmd_identifier_token37] = ACTIONS(1745), - [aux_sym_cmd_identifier_token38] = ACTIONS(1743), - [aux_sym_cmd_identifier_token39] = ACTIONS(1745), - [aux_sym_cmd_identifier_token40] = ACTIONS(1745), - [sym__newline] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_AT] = ACTIONS(1745), - [anon_sym_def] = ACTIONS(1743), - [anon_sym_export_DASHenv] = ACTIONS(1743), - [anon_sym_extern] = ACTIONS(1743), - [anon_sym_module] = ACTIONS(1743), - [anon_sym_use] = ACTIONS(1743), - [anon_sym_LBRACK] = ACTIONS(1745), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_DOLLAR] = ACTIONS(1743), - [anon_sym_error] = ACTIONS(1743), - [anon_sym_DASH2] = ACTIONS(1743), - [anon_sym_break] = ACTIONS(1743), - [anon_sym_continue] = ACTIONS(1743), - [anon_sym_for] = ACTIONS(1743), - [anon_sym_loop] = ACTIONS(1743), - [anon_sym_while] = ACTIONS(1743), - [anon_sym_do] = ACTIONS(1743), - [anon_sym_if] = ACTIONS(1743), - [anon_sym_match] = ACTIONS(1743), - [anon_sym_LBRACE] = ACTIONS(1745), - [anon_sym_DOT_DOT] = ACTIONS(1743), - [anon_sym_try] = ACTIONS(1743), - [anon_sym_return] = ACTIONS(1743), - [anon_sym_source] = ACTIONS(1743), - [anon_sym_source_DASHenv] = ACTIONS(1743), - [anon_sym_hide] = ACTIONS(1743), - [anon_sym_hide_DASHenv] = ACTIONS(1743), - [anon_sym_overlay] = ACTIONS(1743), - [anon_sym_where] = ACTIONS(1745), - [aux_sym_expr_unary_token1] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT] = ACTIONS(1745), - [anon_sym_null] = ACTIONS(1743), - [anon_sym_true] = ACTIONS(1743), - [anon_sym_false] = ACTIONS(1743), - [aux_sym__val_number_decimal_token1] = ACTIONS(1743), - [aux_sym__val_number_decimal_token2] = ACTIONS(1745), - [aux_sym__val_number_decimal_token3] = ACTIONS(1745), - [aux_sym__val_number_decimal_token4] = ACTIONS(1745), - [aux_sym__val_number_token1] = ACTIONS(1745), - [aux_sym__val_number_token2] = ACTIONS(1745), - [aux_sym__val_number_token3] = ACTIONS(1745), - [aux_sym__val_number_token4] = ACTIONS(1743), - [aux_sym__val_number_token5] = ACTIONS(1743), - [aux_sym__val_number_token6] = ACTIONS(1743), - [anon_sym_0b] = ACTIONS(1743), - [anon_sym_0o] = ACTIONS(1743), - [anon_sym_0x] = ACTIONS(1743), - [sym_val_date] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1745), - [sym__str_single_quotes] = ACTIONS(1745), - [sym__str_back_ticks] = ACTIONS(1745), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1745), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1745), - [aux_sym_env_var_token1] = ACTIONS(1743), - [anon_sym_CARET] = ACTIONS(1745), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1745), - }, - [347] = { - [sym_cell_path] = STATE(531), - [sym_path] = STATE(445), - [sym_comment] = STATE(347), - [aux_sym_cell_path_repeat1] = STATE(378), - [anon_sym_export] = ACTIONS(925), - [anon_sym_alias] = ACTIONS(925), - [anon_sym_let] = ACTIONS(925), - [anon_sym_let_DASHenv] = ACTIONS(925), - [anon_sym_mut] = ACTIONS(925), - [anon_sym_const] = ACTIONS(925), - [aux_sym_cmd_identifier_token1] = ACTIONS(925), - [aux_sym_cmd_identifier_token2] = ACTIONS(927), - [aux_sym_cmd_identifier_token3] = ACTIONS(927), - [aux_sym_cmd_identifier_token4] = ACTIONS(927), - [aux_sym_cmd_identifier_token5] = ACTIONS(927), - [aux_sym_cmd_identifier_token6] = ACTIONS(927), - [aux_sym_cmd_identifier_token7] = ACTIONS(927), - [aux_sym_cmd_identifier_token8] = ACTIONS(925), - [aux_sym_cmd_identifier_token9] = ACTIONS(925), - [aux_sym_cmd_identifier_token10] = ACTIONS(927), - [aux_sym_cmd_identifier_token11] = ACTIONS(927), - [aux_sym_cmd_identifier_token12] = ACTIONS(925), - [aux_sym_cmd_identifier_token13] = ACTIONS(925), - [aux_sym_cmd_identifier_token14] = ACTIONS(925), - [aux_sym_cmd_identifier_token15] = ACTIONS(925), - [aux_sym_cmd_identifier_token16] = ACTIONS(927), - [aux_sym_cmd_identifier_token17] = ACTIONS(927), - [aux_sym_cmd_identifier_token18] = ACTIONS(927), - [aux_sym_cmd_identifier_token19] = ACTIONS(927), - [aux_sym_cmd_identifier_token20] = ACTIONS(927), - [aux_sym_cmd_identifier_token21] = ACTIONS(927), - [aux_sym_cmd_identifier_token22] = ACTIONS(927), - [aux_sym_cmd_identifier_token23] = ACTIONS(927), - [aux_sym_cmd_identifier_token24] = ACTIONS(927), - [aux_sym_cmd_identifier_token25] = ACTIONS(927), - [aux_sym_cmd_identifier_token26] = ACTIONS(927), - [aux_sym_cmd_identifier_token27] = ACTIONS(927), - [aux_sym_cmd_identifier_token28] = ACTIONS(927), - [aux_sym_cmd_identifier_token29] = ACTIONS(927), - [aux_sym_cmd_identifier_token30] = ACTIONS(927), - [aux_sym_cmd_identifier_token31] = ACTIONS(927), - [aux_sym_cmd_identifier_token32] = ACTIONS(927), - [aux_sym_cmd_identifier_token33] = ACTIONS(927), - [aux_sym_cmd_identifier_token34] = ACTIONS(925), - [aux_sym_cmd_identifier_token35] = ACTIONS(927), - [aux_sym_cmd_identifier_token36] = ACTIONS(927), - [aux_sym_cmd_identifier_token37] = ACTIONS(927), - [aux_sym_cmd_identifier_token38] = ACTIONS(925), - [aux_sym_cmd_identifier_token39] = ACTIONS(927), - [aux_sym_cmd_identifier_token40] = ACTIONS(927), - [anon_sym_def] = ACTIONS(925), - [anon_sym_export_DASHenv] = ACTIONS(925), - [anon_sym_extern] = ACTIONS(925), - [anon_sym_module] = ACTIONS(925), - [anon_sym_use] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(927), - [anon_sym_COMMA] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(925), - [anon_sym_error] = ACTIONS(925), - [anon_sym_DASH2] = ACTIONS(925), - [anon_sym_break] = ACTIONS(925), - [anon_sym_continue] = ACTIONS(925), - [anon_sym_for] = ACTIONS(925), - [anon_sym_in2] = ACTIONS(925), - [anon_sym_loop] = ACTIONS(925), - [anon_sym_make] = ACTIONS(925), - [anon_sym_while] = ACTIONS(925), - [anon_sym_do] = ACTIONS(925), - [anon_sym_if] = ACTIONS(925), - [anon_sym_else] = ACTIONS(925), - [anon_sym_match] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(927), - [anon_sym_try] = ACTIONS(925), - [anon_sym_catch] = ACTIONS(925), - [anon_sym_return] = ACTIONS(925), - [anon_sym_source] = ACTIONS(925), - [anon_sym_source_DASHenv] = ACTIONS(925), - [anon_sym_hide] = ACTIONS(925), - [anon_sym_hide_DASHenv] = ACTIONS(925), - [anon_sym_overlay] = ACTIONS(925), - [anon_sym_as] = ACTIONS(925), - [anon_sym_PLUS2] = ACTIONS(925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(927), - [anon_sym_DOT_DOT2] = ACTIONS(925), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(927), - [anon_sym_DOT_DOT_LT2] = ACTIONS(927), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(927), - [aux_sym__val_number_decimal_token1] = ACTIONS(925), - [aux_sym__val_number_decimal_token2] = ACTIONS(927), - [aux_sym__val_number_decimal_token3] = ACTIONS(927), - [aux_sym__val_number_decimal_token4] = ACTIONS(927), - [aux_sym__val_number_token1] = ACTIONS(927), - [aux_sym__val_number_token2] = ACTIONS(927), - [aux_sym__val_number_token3] = ACTIONS(927), - [aux_sym__val_number_token4] = ACTIONS(925), - [aux_sym__val_number_token5] = ACTIONS(925), - [aux_sym__val_number_token6] = ACTIONS(925), - [anon_sym_DQUOTE] = ACTIONS(927), - [sym__str_single_quotes] = ACTIONS(927), - [sym__str_back_ticks] = ACTIONS(927), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(927), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(927), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(927), - [anon_sym_register] = ACTIONS(925), - [anon_sym_DOT2] = ACTIONS(1725), + [354] = { + [sym_comment] = STATE(354), + [anon_sym_export] = ACTIONS(1579), + [anon_sym_alias] = ACTIONS(1579), + [anon_sym_let] = ACTIONS(1579), + [anon_sym_let_DASHenv] = ACTIONS(1579), + [anon_sym_mut] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1579), + [aux_sym_cmd_identifier_token1] = ACTIONS(1579), + [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(1579), + [aux_sym_cmd_identifier_token9] = ACTIONS(1579), + [aux_sym_cmd_identifier_token10] = ACTIONS(1581), + [aux_sym_cmd_identifier_token11] = ACTIONS(1581), + [aux_sym_cmd_identifier_token12] = ACTIONS(1579), + [aux_sym_cmd_identifier_token13] = ACTIONS(1579), + [aux_sym_cmd_identifier_token14] = ACTIONS(1579), + [aux_sym_cmd_identifier_token15] = ACTIONS(1579), + [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(1579), + [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(1579), + [aux_sym_cmd_identifier_token39] = ACTIONS(1581), + [aux_sym_cmd_identifier_token40] = ACTIONS(1581), + [anon_sym_def] = ACTIONS(1579), + [anon_sym_export_DASHenv] = ACTIONS(1579), + [anon_sym_extern] = ACTIONS(1579), + [anon_sym_module] = ACTIONS(1579), + [anon_sym_use] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_COMMA] = ACTIONS(1581), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_error] = ACTIONS(1579), + [anon_sym_DASH2] = ACTIONS(1579), + [anon_sym_break] = ACTIONS(1579), + [anon_sym_continue] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1579), + [anon_sym_in2] = ACTIONS(1579), + [anon_sym_loop] = ACTIONS(1579), + [anon_sym_make] = ACTIONS(1579), + [anon_sym_while] = ACTIONS(1579), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1579), + [anon_sym_else] = ACTIONS(1579), + [anon_sym_match] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_try] = ACTIONS(1579), + [anon_sym_catch] = ACTIONS(1579), + [anon_sym_return] = ACTIONS(1579), + [anon_sym_source] = ACTIONS(1579), + [anon_sym_source_DASHenv] = ACTIONS(1579), + [anon_sym_hide] = ACTIONS(1579), + [anon_sym_hide_DASHenv] = ACTIONS(1579), + [anon_sym_overlay] = ACTIONS(1579), + [anon_sym_as] = ACTIONS(1579), + [anon_sym_LPAREN2] = ACTIONS(1581), + [anon_sym_PLUS2] = ACTIONS(1579), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1581), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1581), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [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(1579), + [aux_sym__val_number_token5] = ACTIONS(1579), + [aux_sym__val_number_token6] = ACTIONS(1579), + [sym_filesize_unit] = ACTIONS(1579), + [sym_duration_unit] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1581), + [sym__str_single_quotes] = ACTIONS(1581), + [sym__str_back_ticks] = ACTIONS(1581), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1581), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1581), + [anon_sym_register] = ACTIONS(1579), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(927), + [sym_raw_string_begin] = ACTIONS(1581), }, - [348] = { - [sym_cmd_identifier] = STATE(4507), - [sym__expression] = STATE(3845), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4764), - [sym_comment] = STATE(348), - [aux_sym_pipe_element_repeat2] = STATE(1190), + [355] = { + [sym_comment] = STATE(355), + [anon_sym_export] = ACTIONS(1678), + [anon_sym_alias] = ACTIONS(1678), + [anon_sym_let] = ACTIONS(1678), + [anon_sym_let_DASHenv] = ACTIONS(1678), + [anon_sym_mut] = ACTIONS(1678), + [anon_sym_const] = ACTIONS(1678), + [aux_sym_cmd_identifier_token1] = ACTIONS(1678), + [aux_sym_cmd_identifier_token2] = ACTIONS(1680), + [aux_sym_cmd_identifier_token3] = ACTIONS(1680), + [aux_sym_cmd_identifier_token4] = ACTIONS(1680), + [aux_sym_cmd_identifier_token5] = ACTIONS(1680), + [aux_sym_cmd_identifier_token6] = ACTIONS(1680), + [aux_sym_cmd_identifier_token7] = ACTIONS(1680), + [aux_sym_cmd_identifier_token8] = ACTIONS(1678), + [aux_sym_cmd_identifier_token9] = ACTIONS(1678), + [aux_sym_cmd_identifier_token10] = ACTIONS(1680), + [aux_sym_cmd_identifier_token11] = ACTIONS(1680), + [aux_sym_cmd_identifier_token12] = ACTIONS(1678), + [aux_sym_cmd_identifier_token13] = ACTIONS(1678), + [aux_sym_cmd_identifier_token14] = ACTIONS(1678), + [aux_sym_cmd_identifier_token15] = ACTIONS(1678), + [aux_sym_cmd_identifier_token16] = ACTIONS(1680), + [aux_sym_cmd_identifier_token17] = ACTIONS(1680), + [aux_sym_cmd_identifier_token18] = ACTIONS(1680), + [aux_sym_cmd_identifier_token19] = ACTIONS(1680), + [aux_sym_cmd_identifier_token20] = ACTIONS(1680), + [aux_sym_cmd_identifier_token21] = ACTIONS(1680), + [aux_sym_cmd_identifier_token22] = ACTIONS(1680), + [aux_sym_cmd_identifier_token23] = ACTIONS(1680), + [aux_sym_cmd_identifier_token24] = ACTIONS(1680), + [aux_sym_cmd_identifier_token25] = ACTIONS(1680), + [aux_sym_cmd_identifier_token26] = ACTIONS(1680), + [aux_sym_cmd_identifier_token27] = ACTIONS(1680), + [aux_sym_cmd_identifier_token28] = ACTIONS(1680), + [aux_sym_cmd_identifier_token29] = ACTIONS(1680), + [aux_sym_cmd_identifier_token30] = ACTIONS(1680), + [aux_sym_cmd_identifier_token31] = ACTIONS(1680), + [aux_sym_cmd_identifier_token32] = ACTIONS(1680), + [aux_sym_cmd_identifier_token33] = ACTIONS(1680), + [aux_sym_cmd_identifier_token34] = ACTIONS(1678), + [aux_sym_cmd_identifier_token35] = ACTIONS(1680), + [aux_sym_cmd_identifier_token36] = ACTIONS(1680), + [aux_sym_cmd_identifier_token37] = ACTIONS(1680), + [aux_sym_cmd_identifier_token38] = ACTIONS(1678), + [aux_sym_cmd_identifier_token39] = ACTIONS(1680), + [aux_sym_cmd_identifier_token40] = ACTIONS(1680), + [anon_sym_def] = ACTIONS(1678), + [anon_sym_export_DASHenv] = ACTIONS(1678), + [anon_sym_extern] = ACTIONS(1678), + [anon_sym_module] = ACTIONS(1678), + [anon_sym_use] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1678), + [anon_sym_COMMA] = ACTIONS(1680), + [anon_sym_DOLLAR] = ACTIONS(1678), + [anon_sym_error] = ACTIONS(1678), + [anon_sym_DASH2] = ACTIONS(1678), + [anon_sym_break] = ACTIONS(1678), + [anon_sym_continue] = ACTIONS(1678), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_in2] = ACTIONS(1678), + [anon_sym_loop] = ACTIONS(1678), + [anon_sym_make] = ACTIONS(1678), + [anon_sym_while] = ACTIONS(1678), + [anon_sym_do] = ACTIONS(1678), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_else] = ACTIONS(1678), + [anon_sym_match] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1680), + [anon_sym_try] = ACTIONS(1678), + [anon_sym_catch] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1678), + [anon_sym_source] = ACTIONS(1678), + [anon_sym_source_DASHenv] = ACTIONS(1678), + [anon_sym_hide] = ACTIONS(1678), + [anon_sym_hide_DASHenv] = ACTIONS(1678), + [anon_sym_overlay] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1678), + [anon_sym_LPAREN2] = ACTIONS(1680), + [anon_sym_PLUS2] = ACTIONS(1678), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1680), + [anon_sym_DOT_DOT2] = ACTIONS(1678), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1680), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1680), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1680), + [aux_sym__val_number_decimal_token1] = ACTIONS(1678), + [aux_sym__val_number_decimal_token2] = ACTIONS(1680), + [aux_sym__val_number_decimal_token3] = ACTIONS(1680), + [aux_sym__val_number_decimal_token4] = ACTIONS(1680), + [aux_sym__val_number_token1] = ACTIONS(1680), + [aux_sym__val_number_token2] = ACTIONS(1680), + [aux_sym__val_number_token3] = ACTIONS(1680), + [aux_sym__val_number_token4] = ACTIONS(1678), + [aux_sym__val_number_token5] = ACTIONS(1678), + [aux_sym__val_number_token6] = ACTIONS(1678), + [sym_filesize_unit] = ACTIONS(1678), + [sym_duration_unit] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1680), + [sym__str_single_quotes] = ACTIONS(1680), + [sym__str_back_ticks] = ACTIONS(1680), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1680), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1680), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1680), + [anon_sym_register] = ACTIONS(1678), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1678), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1680), + }, + [356] = { + [sym_cmd_identifier] = STATE(4261), + [sym__expression] = STATE(3668), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(797), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4567), + [sym_comment] = STATE(356), + [aux_sym_pipe_element_repeat2] = STATE(1148), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -114022,10 +113780,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(449), - [aux_sym__val_number_decimal_token2] = ACTIONS(451), - [aux_sym__val_number_decimal_token3] = ACTIONS(453), - [aux_sym__val_number_decimal_token4] = ACTIONS(455), + [aux_sym__val_number_decimal_token1] = ACTIONS(1742), + [aux_sym__val_number_decimal_token2] = ACTIONS(1744), + [aux_sym__val_number_decimal_token3] = ACTIONS(1746), + [aux_sym__val_number_decimal_token4] = ACTIONS(1748), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -114046,475 +113804,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [349] = { - [sym_comment] = STATE(349), - [anon_sym_export] = ACTIONS(1616), - [anon_sym_alias] = ACTIONS(1616), - [anon_sym_let] = ACTIONS(1616), - [anon_sym_let_DASHenv] = ACTIONS(1616), - [anon_sym_mut] = ACTIONS(1616), - [anon_sym_const] = ACTIONS(1616), - [aux_sym_cmd_identifier_token1] = ACTIONS(1616), - [aux_sym_cmd_identifier_token2] = ACTIONS(1618), - [aux_sym_cmd_identifier_token3] = ACTIONS(1618), - [aux_sym_cmd_identifier_token4] = ACTIONS(1618), - [aux_sym_cmd_identifier_token5] = ACTIONS(1618), - [aux_sym_cmd_identifier_token6] = ACTIONS(1618), - [aux_sym_cmd_identifier_token7] = ACTIONS(1618), - [aux_sym_cmd_identifier_token8] = ACTIONS(1616), - [aux_sym_cmd_identifier_token9] = ACTIONS(1616), - [aux_sym_cmd_identifier_token10] = ACTIONS(1618), - [aux_sym_cmd_identifier_token11] = ACTIONS(1618), - [aux_sym_cmd_identifier_token12] = ACTIONS(1616), - [aux_sym_cmd_identifier_token13] = ACTIONS(1616), - [aux_sym_cmd_identifier_token14] = ACTIONS(1616), - [aux_sym_cmd_identifier_token15] = ACTIONS(1616), - [aux_sym_cmd_identifier_token16] = ACTIONS(1618), - [aux_sym_cmd_identifier_token17] = ACTIONS(1618), - [aux_sym_cmd_identifier_token18] = ACTIONS(1618), - [aux_sym_cmd_identifier_token19] = ACTIONS(1618), - [aux_sym_cmd_identifier_token20] = ACTIONS(1618), - [aux_sym_cmd_identifier_token21] = ACTIONS(1618), - [aux_sym_cmd_identifier_token22] = ACTIONS(1618), - [aux_sym_cmd_identifier_token23] = ACTIONS(1618), - [aux_sym_cmd_identifier_token24] = ACTIONS(1618), - [aux_sym_cmd_identifier_token25] = ACTIONS(1618), - [aux_sym_cmd_identifier_token26] = ACTIONS(1618), - [aux_sym_cmd_identifier_token27] = ACTIONS(1618), - [aux_sym_cmd_identifier_token28] = ACTIONS(1618), - [aux_sym_cmd_identifier_token29] = ACTIONS(1618), - [aux_sym_cmd_identifier_token30] = ACTIONS(1618), - [aux_sym_cmd_identifier_token31] = ACTIONS(1618), - [aux_sym_cmd_identifier_token32] = ACTIONS(1618), - [aux_sym_cmd_identifier_token33] = ACTIONS(1618), - [aux_sym_cmd_identifier_token34] = ACTIONS(1616), - [aux_sym_cmd_identifier_token35] = ACTIONS(1618), - [aux_sym_cmd_identifier_token36] = ACTIONS(1618), - [aux_sym_cmd_identifier_token37] = ACTIONS(1618), - [aux_sym_cmd_identifier_token38] = ACTIONS(1616), - [aux_sym_cmd_identifier_token39] = ACTIONS(1618), - [aux_sym_cmd_identifier_token40] = ACTIONS(1618), - [sym__newline] = ACTIONS(1618), - [anon_sym_SEMI] = ACTIONS(1618), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_def] = ACTIONS(1616), - [anon_sym_export_DASHenv] = ACTIONS(1616), - [anon_sym_extern] = ACTIONS(1616), - [anon_sym_module] = ACTIONS(1616), - [anon_sym_use] = ACTIONS(1616), - [anon_sym_LBRACK] = ACTIONS(1618), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_DOLLAR] = ACTIONS(1616), - [anon_sym_error] = ACTIONS(1616), - [anon_sym_DASH2] = ACTIONS(1616), - [anon_sym_break] = ACTIONS(1616), - [anon_sym_continue] = ACTIONS(1616), - [anon_sym_for] = ACTIONS(1616), - [anon_sym_loop] = ACTIONS(1616), - [anon_sym_while] = ACTIONS(1616), - [anon_sym_do] = ACTIONS(1616), - [anon_sym_if] = ACTIONS(1616), - [anon_sym_match] = ACTIONS(1616), - [anon_sym_LBRACE] = ACTIONS(1618), - [anon_sym_DOT_DOT] = ACTIONS(1616), - [anon_sym_try] = ACTIONS(1616), - [anon_sym_return] = ACTIONS(1616), - [anon_sym_source] = ACTIONS(1616), - [anon_sym_source_DASHenv] = ACTIONS(1616), - [anon_sym_hide] = ACTIONS(1616), - [anon_sym_hide_DASHenv] = ACTIONS(1616), - [anon_sym_overlay] = ACTIONS(1616), - [anon_sym_where] = ACTIONS(1618), - [aux_sym_expr_unary_token1] = ACTIONS(1618), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1618), - [anon_sym_DOT_DOT_LT] = ACTIONS(1618), - [anon_sym_null] = ACTIONS(1616), - [anon_sym_true] = ACTIONS(1616), - [anon_sym_false] = ACTIONS(1616), - [aux_sym__val_number_decimal_token1] = ACTIONS(1616), - [aux_sym__val_number_decimal_token2] = ACTIONS(1618), - [aux_sym__val_number_decimal_token3] = ACTIONS(1618), - [aux_sym__val_number_decimal_token4] = ACTIONS(1618), - [aux_sym__val_number_token1] = ACTIONS(1618), - [aux_sym__val_number_token2] = ACTIONS(1618), - [aux_sym__val_number_token3] = ACTIONS(1618), - [aux_sym__val_number_token4] = ACTIONS(1616), - [aux_sym__val_number_token5] = ACTIONS(1616), - [aux_sym__val_number_token6] = ACTIONS(1616), - [anon_sym_0b] = ACTIONS(1616), - [anon_sym_0o] = ACTIONS(1616), - [anon_sym_0x] = ACTIONS(1616), - [sym_val_date] = ACTIONS(1618), - [anon_sym_DQUOTE] = ACTIONS(1618), - [sym__str_single_quotes] = ACTIONS(1618), - [sym__str_back_ticks] = ACTIONS(1618), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1618), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1618), - [aux_sym_env_var_token1] = ACTIONS(1616), - [anon_sym_CARET] = ACTIONS(1618), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1618), - }, - [350] = { - [sym_comment] = STATE(350), - [anon_sym_export] = ACTIONS(1704), - [anon_sym_alias] = ACTIONS(1704), - [anon_sym_let] = ACTIONS(1704), - [anon_sym_let_DASHenv] = ACTIONS(1704), - [anon_sym_mut] = ACTIONS(1704), - [anon_sym_const] = ACTIONS(1704), - [aux_sym_cmd_identifier_token1] = ACTIONS(1704), - [aux_sym_cmd_identifier_token2] = ACTIONS(1706), - [aux_sym_cmd_identifier_token3] = ACTIONS(1706), - [aux_sym_cmd_identifier_token4] = ACTIONS(1706), - [aux_sym_cmd_identifier_token5] = ACTIONS(1706), - [aux_sym_cmd_identifier_token6] = ACTIONS(1706), - [aux_sym_cmd_identifier_token7] = ACTIONS(1706), - [aux_sym_cmd_identifier_token8] = ACTIONS(1704), - [aux_sym_cmd_identifier_token9] = ACTIONS(1704), - [aux_sym_cmd_identifier_token10] = ACTIONS(1706), - [aux_sym_cmd_identifier_token11] = ACTIONS(1706), - [aux_sym_cmd_identifier_token12] = ACTIONS(1704), - [aux_sym_cmd_identifier_token13] = ACTIONS(1704), - [aux_sym_cmd_identifier_token14] = ACTIONS(1704), - [aux_sym_cmd_identifier_token15] = ACTIONS(1704), - [aux_sym_cmd_identifier_token16] = ACTIONS(1706), - [aux_sym_cmd_identifier_token17] = ACTIONS(1706), - [aux_sym_cmd_identifier_token18] = ACTIONS(1706), - [aux_sym_cmd_identifier_token19] = ACTIONS(1706), - [aux_sym_cmd_identifier_token20] = ACTIONS(1706), - [aux_sym_cmd_identifier_token21] = ACTIONS(1706), - [aux_sym_cmd_identifier_token22] = ACTIONS(1706), - [aux_sym_cmd_identifier_token23] = ACTIONS(1706), - [aux_sym_cmd_identifier_token24] = ACTIONS(1706), - [aux_sym_cmd_identifier_token25] = ACTIONS(1706), - [aux_sym_cmd_identifier_token26] = ACTIONS(1706), - [aux_sym_cmd_identifier_token27] = ACTIONS(1706), - [aux_sym_cmd_identifier_token28] = ACTIONS(1706), - [aux_sym_cmd_identifier_token29] = ACTIONS(1706), - [aux_sym_cmd_identifier_token30] = ACTIONS(1706), - [aux_sym_cmd_identifier_token31] = ACTIONS(1706), - [aux_sym_cmd_identifier_token32] = ACTIONS(1706), - [aux_sym_cmd_identifier_token33] = ACTIONS(1706), - [aux_sym_cmd_identifier_token34] = ACTIONS(1704), - [aux_sym_cmd_identifier_token35] = ACTIONS(1706), - [aux_sym_cmd_identifier_token36] = ACTIONS(1706), - [aux_sym_cmd_identifier_token37] = ACTIONS(1706), - [aux_sym_cmd_identifier_token38] = ACTIONS(1704), - [aux_sym_cmd_identifier_token39] = ACTIONS(1706), - [aux_sym_cmd_identifier_token40] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_AT] = ACTIONS(1706), - [anon_sym_def] = ACTIONS(1704), - [anon_sym_export_DASHenv] = ACTIONS(1704), - [anon_sym_extern] = ACTIONS(1704), - [anon_sym_module] = ACTIONS(1704), - [anon_sym_use] = ACTIONS(1704), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_DOLLAR] = ACTIONS(1704), - [anon_sym_error] = ACTIONS(1704), - [anon_sym_DASH2] = ACTIONS(1704), - [anon_sym_break] = ACTIONS(1704), - [anon_sym_continue] = ACTIONS(1704), - [anon_sym_for] = ACTIONS(1704), - [anon_sym_loop] = ACTIONS(1704), - [anon_sym_while] = ACTIONS(1704), - [anon_sym_do] = ACTIONS(1704), - [anon_sym_if] = ACTIONS(1704), - [anon_sym_match] = ACTIONS(1704), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_DOT_DOT] = ACTIONS(1704), - [anon_sym_try] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1704), - [anon_sym_source] = ACTIONS(1704), - [anon_sym_source_DASHenv] = ACTIONS(1704), - [anon_sym_hide] = ACTIONS(1704), - [anon_sym_hide_DASHenv] = ACTIONS(1704), - [anon_sym_overlay] = ACTIONS(1704), - [anon_sym_where] = ACTIONS(1706), - [aux_sym_expr_unary_token1] = ACTIONS(1706), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1706), - [anon_sym_DOT_DOT_LT] = ACTIONS(1706), - [anon_sym_null] = ACTIONS(1704), - [anon_sym_true] = ACTIONS(1704), - [anon_sym_false] = ACTIONS(1704), - [aux_sym__val_number_decimal_token1] = ACTIONS(1704), - [aux_sym__val_number_decimal_token2] = ACTIONS(1706), - [aux_sym__val_number_decimal_token3] = ACTIONS(1706), - [aux_sym__val_number_decimal_token4] = ACTIONS(1706), - [aux_sym__val_number_token1] = ACTIONS(1706), - [aux_sym__val_number_token2] = ACTIONS(1706), - [aux_sym__val_number_token3] = ACTIONS(1706), - [aux_sym__val_number_token4] = ACTIONS(1704), - [aux_sym__val_number_token5] = ACTIONS(1704), - [aux_sym__val_number_token6] = ACTIONS(1704), - [anon_sym_0b] = ACTIONS(1704), - [anon_sym_0o] = ACTIONS(1704), - [anon_sym_0x] = ACTIONS(1704), - [sym_val_date] = ACTIONS(1706), - [anon_sym_DQUOTE] = ACTIONS(1706), - [sym__str_single_quotes] = ACTIONS(1706), - [sym__str_back_ticks] = ACTIONS(1706), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1706), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1706), - [aux_sym_env_var_token1] = ACTIONS(1704), - [anon_sym_CARET] = ACTIONS(1706), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1706), - }, - [351] = { - [sym_cmd_identifier] = STATE(4647), - [sym_ctrl_if] = STATE(5059), - [sym_block] = STATE(5107), - [sym__expression] = STATE(5107), - [sym_expr_unary] = STATE(2510), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2510), - [sym__expr_binary_expression] = STATE(3857), - [sym_expr_parenthesized] = STATE(2098), - [sym_val_range] = STATE(2510), - [sym__value] = STATE(2510), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(2470), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(1154), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_command] = STATE(5107), - [sym_comment] = STATE(351), - [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(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_DASH2] = ACTIONS(47), - [anon_sym_if] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(67), - [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(1749), - [aux_sym__val_number_decimal_token2] = ACTIONS(1751), - [aux_sym__val_number_decimal_token3] = ACTIONS(1753), - [aux_sym__val_number_decimal_token4] = ACTIONS(1755), - [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(245), - [sym_raw_string_begin] = ACTIONS(121), - }, - [352] = { - [sym_comment] = STATE(352), - [anon_sym_export] = ACTIONS(1757), - [anon_sym_alias] = ACTIONS(1757), - [anon_sym_let] = ACTIONS(1757), - [anon_sym_let_DASHenv] = ACTIONS(1757), - [anon_sym_mut] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [aux_sym_cmd_identifier_token1] = ACTIONS(1757), - [aux_sym_cmd_identifier_token2] = ACTIONS(1759), - [aux_sym_cmd_identifier_token3] = ACTIONS(1759), - [aux_sym_cmd_identifier_token4] = ACTIONS(1759), - [aux_sym_cmd_identifier_token5] = ACTIONS(1759), - [aux_sym_cmd_identifier_token6] = ACTIONS(1759), - [aux_sym_cmd_identifier_token7] = ACTIONS(1759), - [aux_sym_cmd_identifier_token8] = ACTIONS(1757), - [aux_sym_cmd_identifier_token9] = ACTIONS(1757), - [aux_sym_cmd_identifier_token10] = ACTIONS(1759), - [aux_sym_cmd_identifier_token11] = ACTIONS(1759), - [aux_sym_cmd_identifier_token12] = ACTIONS(1757), - [aux_sym_cmd_identifier_token13] = ACTIONS(1757), - [aux_sym_cmd_identifier_token14] = ACTIONS(1757), - [aux_sym_cmd_identifier_token15] = ACTIONS(1757), - [aux_sym_cmd_identifier_token16] = ACTIONS(1759), - [aux_sym_cmd_identifier_token17] = ACTIONS(1759), - [aux_sym_cmd_identifier_token18] = ACTIONS(1759), - [aux_sym_cmd_identifier_token19] = ACTIONS(1759), - [aux_sym_cmd_identifier_token20] = ACTIONS(1759), - [aux_sym_cmd_identifier_token21] = ACTIONS(1759), - [aux_sym_cmd_identifier_token22] = ACTIONS(1759), - [aux_sym_cmd_identifier_token23] = ACTIONS(1759), - [aux_sym_cmd_identifier_token24] = ACTIONS(1759), - [aux_sym_cmd_identifier_token25] = ACTIONS(1759), - [aux_sym_cmd_identifier_token26] = ACTIONS(1759), - [aux_sym_cmd_identifier_token27] = ACTIONS(1759), - [aux_sym_cmd_identifier_token28] = ACTIONS(1759), - [aux_sym_cmd_identifier_token29] = ACTIONS(1759), - [aux_sym_cmd_identifier_token30] = ACTIONS(1759), - [aux_sym_cmd_identifier_token31] = ACTIONS(1759), - [aux_sym_cmd_identifier_token32] = ACTIONS(1759), - [aux_sym_cmd_identifier_token33] = ACTIONS(1759), - [aux_sym_cmd_identifier_token34] = ACTIONS(1757), - [aux_sym_cmd_identifier_token35] = ACTIONS(1759), - [aux_sym_cmd_identifier_token36] = ACTIONS(1759), - [aux_sym_cmd_identifier_token37] = ACTIONS(1759), - [aux_sym_cmd_identifier_token38] = ACTIONS(1757), - [aux_sym_cmd_identifier_token39] = ACTIONS(1759), - [aux_sym_cmd_identifier_token40] = ACTIONS(1759), - [sym__newline] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1759), - [anon_sym_AT] = ACTIONS(1759), - [anon_sym_def] = ACTIONS(1757), - [anon_sym_export_DASHenv] = ACTIONS(1757), - [anon_sym_extern] = ACTIONS(1757), - [anon_sym_module] = ACTIONS(1757), - [anon_sym_use] = ACTIONS(1757), - [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_error] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_loop] = ACTIONS(1757), - [anon_sym_while] = ACTIONS(1757), - [anon_sym_do] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_source] = ACTIONS(1757), - [anon_sym_source_DASHenv] = ACTIONS(1757), - [anon_sym_hide] = ACTIONS(1757), - [anon_sym_hide_DASHenv] = ACTIONS(1757), - [anon_sym_overlay] = ACTIONS(1757), - [anon_sym_where] = ACTIONS(1759), - [aux_sym_expr_unary_token1] = ACTIONS(1759), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1759), - [anon_sym_DOT_DOT_LT] = ACTIONS(1759), - [anon_sym_null] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1759), - [aux_sym__val_number_decimal_token3] = ACTIONS(1759), - [aux_sym__val_number_decimal_token4] = ACTIONS(1759), - [aux_sym__val_number_token1] = ACTIONS(1759), - [aux_sym__val_number_token2] = ACTIONS(1759), - [aux_sym__val_number_token3] = ACTIONS(1759), - [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(1757), - [anon_sym_0o] = ACTIONS(1757), - [anon_sym_0x] = ACTIONS(1757), - [sym_val_date] = ACTIONS(1759), - [anon_sym_DQUOTE] = ACTIONS(1759), - [sym__str_single_quotes] = ACTIONS(1759), - [sym__str_back_ticks] = ACTIONS(1759), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1759), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1759), - [aux_sym_env_var_token1] = ACTIONS(1757), - [anon_sym_CARET] = ACTIONS(1759), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1759), + [357] = { + [sym_comment] = STATE(357), + [anon_sym_export] = ACTIONS(1750), + [anon_sym_alias] = ACTIONS(1750), + [anon_sym_let] = ACTIONS(1750), + [anon_sym_let_DASHenv] = ACTIONS(1750), + [anon_sym_mut] = ACTIONS(1750), + [anon_sym_const] = ACTIONS(1750), + [aux_sym_cmd_identifier_token1] = ACTIONS(1750), + [aux_sym_cmd_identifier_token2] = ACTIONS(1752), + [aux_sym_cmd_identifier_token3] = ACTIONS(1752), + [aux_sym_cmd_identifier_token4] = ACTIONS(1752), + [aux_sym_cmd_identifier_token5] = ACTIONS(1752), + [aux_sym_cmd_identifier_token6] = ACTIONS(1752), + [aux_sym_cmd_identifier_token7] = ACTIONS(1752), + [aux_sym_cmd_identifier_token8] = ACTIONS(1750), + [aux_sym_cmd_identifier_token9] = ACTIONS(1750), + [aux_sym_cmd_identifier_token10] = ACTIONS(1752), + [aux_sym_cmd_identifier_token11] = ACTIONS(1752), + [aux_sym_cmd_identifier_token12] = ACTIONS(1750), + [aux_sym_cmd_identifier_token13] = ACTIONS(1750), + [aux_sym_cmd_identifier_token14] = ACTIONS(1750), + [aux_sym_cmd_identifier_token15] = ACTIONS(1750), + [aux_sym_cmd_identifier_token16] = ACTIONS(1752), + [aux_sym_cmd_identifier_token17] = ACTIONS(1752), + [aux_sym_cmd_identifier_token18] = ACTIONS(1752), + [aux_sym_cmd_identifier_token19] = ACTIONS(1752), + [aux_sym_cmd_identifier_token20] = ACTIONS(1752), + [aux_sym_cmd_identifier_token21] = ACTIONS(1752), + [aux_sym_cmd_identifier_token22] = ACTIONS(1752), + [aux_sym_cmd_identifier_token23] = ACTIONS(1752), + [aux_sym_cmd_identifier_token24] = ACTIONS(1752), + [aux_sym_cmd_identifier_token25] = ACTIONS(1752), + [aux_sym_cmd_identifier_token26] = ACTIONS(1752), + [aux_sym_cmd_identifier_token27] = ACTIONS(1752), + [aux_sym_cmd_identifier_token28] = ACTIONS(1752), + [aux_sym_cmd_identifier_token29] = ACTIONS(1752), + [aux_sym_cmd_identifier_token30] = ACTIONS(1752), + [aux_sym_cmd_identifier_token31] = ACTIONS(1752), + [aux_sym_cmd_identifier_token32] = ACTIONS(1752), + [aux_sym_cmd_identifier_token33] = ACTIONS(1752), + [aux_sym_cmd_identifier_token34] = ACTIONS(1750), + [aux_sym_cmd_identifier_token35] = ACTIONS(1752), + [aux_sym_cmd_identifier_token36] = ACTIONS(1752), + [aux_sym_cmd_identifier_token37] = ACTIONS(1752), + [aux_sym_cmd_identifier_token38] = ACTIONS(1750), + [aux_sym_cmd_identifier_token39] = ACTIONS(1752), + [aux_sym_cmd_identifier_token40] = ACTIONS(1752), + [sym__newline] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(1752), + [anon_sym_def] = ACTIONS(1750), + [anon_sym_export_DASHenv] = ACTIONS(1750), + [anon_sym_extern] = ACTIONS(1750), + [anon_sym_module] = ACTIONS(1750), + [anon_sym_use] = ACTIONS(1750), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_DOLLAR] = ACTIONS(1750), + [anon_sym_error] = ACTIONS(1750), + [anon_sym_DASH2] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_for] = ACTIONS(1750), + [anon_sym_loop] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_do] = ACTIONS(1750), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_match] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1750), + [anon_sym_try] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_source] = ACTIONS(1750), + [anon_sym_source_DASHenv] = ACTIONS(1750), + [anon_sym_hide] = ACTIONS(1750), + [anon_sym_hide_DASHenv] = ACTIONS(1750), + [anon_sym_overlay] = ACTIONS(1750), + [anon_sym_where] = ACTIONS(1752), + [aux_sym_expr_unary_token1] = ACTIONS(1752), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1752), + [anon_sym_DOT_DOT_LT] = ACTIONS(1752), + [anon_sym_null] = ACTIONS(1750), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), + [aux_sym__val_number_decimal_token1] = ACTIONS(1750), + [aux_sym__val_number_decimal_token2] = ACTIONS(1752), + [aux_sym__val_number_decimal_token3] = ACTIONS(1752), + [aux_sym__val_number_decimal_token4] = ACTIONS(1752), + [aux_sym__val_number_token1] = ACTIONS(1752), + [aux_sym__val_number_token2] = ACTIONS(1752), + [aux_sym__val_number_token3] = ACTIONS(1752), + [aux_sym__val_number_token4] = ACTIONS(1750), + [aux_sym__val_number_token5] = ACTIONS(1750), + [aux_sym__val_number_token6] = ACTIONS(1750), + [anon_sym_0b] = ACTIONS(1750), + [anon_sym_0o] = ACTIONS(1750), + [anon_sym_0x] = ACTIONS(1750), + [sym_val_date] = ACTIONS(1752), + [anon_sym_DQUOTE] = ACTIONS(1752), + [sym__str_single_quotes] = ACTIONS(1752), + [sym__str_back_ticks] = ACTIONS(1752), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1752), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1752), + [aux_sym_env_var_token1] = ACTIONS(1750), + [anon_sym_CARET] = ACTIONS(1752), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1752), }, - [353] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if] = STATE(4765), - [sym_block] = STATE(4766), - [sym__expression] = STATE(4766), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3844), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1149), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(4766), - [sym_comment] = STATE(353), + [358] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if] = STATE(4597), + [sym_block] = STATE(4598), + [sym__expression] = STATE(4598), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3669), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1134), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4598), + [sym_comment] = STATE(358), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -114559,7 +113990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_if] = ACTIONS(589), + [anon_sym_if] = ACTIONS(1754), [anon_sym_LBRACE] = ACTIONS(1528), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(201), @@ -114568,10 +113999,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1626), - [aux_sym__val_number_decimal_token2] = ACTIONS(1628), - [aux_sym__val_number_decimal_token3] = ACTIONS(1630), - [aux_sym__val_number_decimal_token4] = ACTIONS(1632), + [aux_sym__val_number_decimal_token1] = ACTIONS(1530), + [aux_sym__val_number_decimal_token2] = ACTIONS(1532), + [aux_sym__val_number_decimal_token3] = ACTIONS(1534), + [aux_sym__val_number_decimal_token4] = ACTIONS(1536), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -114591,148 +114022,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [354] = { - [sym_comment] = STATE(354), - [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), - [sym__newline] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_AT] = 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_LBRACK] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(1763), - [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_loop] = ACTIONS(1761), - [anon_sym_while] = ACTIONS(1761), - [anon_sym_do] = ACTIONS(1761), - [anon_sym_if] = ACTIONS(1761), - [anon_sym_match] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1761), - [anon_sym_try] = ACTIONS(1761), - [anon_sym_return] = ACTIONS(1761), - [anon_sym_source] = ACTIONS(1761), - [anon_sym_source_DASHenv] = ACTIONS(1761), - [anon_sym_hide] = ACTIONS(1761), - [anon_sym_hide_DASHenv] = ACTIONS(1761), - [anon_sym_overlay] = ACTIONS(1761), - [anon_sym_where] = ACTIONS(1763), - [aux_sym_expr_unary_token1] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1763), - [anon_sym_DOT_DOT_LT] = ACTIONS(1763), - [anon_sym_null] = ACTIONS(1761), - [anon_sym_true] = ACTIONS(1761), - [anon_sym_false] = ACTIONS(1761), - [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), - [anon_sym_0b] = ACTIONS(1761), - [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), - [aux_sym_env_var_token1] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(1763), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1763), - }, - [355] = { - [sym_cmd_identifier] = STATE(4650), - [sym__expression_parenthesized] = STATE(3879), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(814), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5145), - [sym_comment] = STATE(355), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1195), + [359] = { + [sym_cmd_identifier] = STATE(4261), + [sym__expression] = STATE(3668), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(783), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4567), + [sym_comment] = STATE(359), + [aux_sym_pipe_element_repeat2] = STATE(1148), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -114805,43 +114127,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [356] = { - [sym_cmd_identifier] = STATE(4650), - [sym__expression_parenthesized] = STATE(3879), - [sym_expr_unary] = STATE(2352), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2352), - [sym__expr_binary_expression_parenthesized] = STATE(3803), - [sym_expr_parenthesized] = STATE(1775), - [sym_val_range] = STATE(2352), - [sym__value] = STATE(2352), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(779), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(6972), - [sym__command_parenthesized] = STATE(5145), - [sym_comment] = STATE(356), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1195), + [360] = { + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if] = STATE(4597), + [sym_block] = STATE(4598), + [sym__expression] = STATE(4598), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3669), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1126), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4598), + [sym_comment] = STATE(360), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -114886,7 +114208,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_if] = ACTIONS(1014), + [anon_sym_LBRACE] = ACTIONS(1528), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(201), [anon_sym_DOT_DOT_EQ] = ACTIONS(207), @@ -114894,10 +114217,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(449), - [aux_sym__val_number_decimal_token2] = ACTIONS(451), - [aux_sym__val_number_decimal_token3] = ACTIONS(453), - [aux_sym__val_number_decimal_token4] = ACTIONS(455), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1609), + [aux_sym__val_number_decimal_token4] = ACTIONS(1611), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -114913,1134 +114236,479 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(457), + [anon_sym_CARET] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [357] = { - [sym_cell_path] = STATE(538), - [sym_path] = STATE(445), - [sym_comment] = STATE(357), - [aux_sym_cell_path_repeat1] = STATE(378), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_alias] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_let_DASHenv] = ACTIONS(1711), - [anon_sym_mut] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [aux_sym_cmd_identifier_token1] = ACTIONS(1711), - [aux_sym_cmd_identifier_token2] = ACTIONS(1713), - [aux_sym_cmd_identifier_token3] = ACTIONS(1713), - [aux_sym_cmd_identifier_token4] = ACTIONS(1713), - [aux_sym_cmd_identifier_token5] = ACTIONS(1713), - [aux_sym_cmd_identifier_token6] = ACTIONS(1713), - [aux_sym_cmd_identifier_token7] = ACTIONS(1713), - [aux_sym_cmd_identifier_token8] = ACTIONS(1711), - [aux_sym_cmd_identifier_token9] = ACTIONS(1711), - [aux_sym_cmd_identifier_token10] = ACTIONS(1713), - [aux_sym_cmd_identifier_token11] = ACTIONS(1713), - [aux_sym_cmd_identifier_token12] = ACTIONS(1711), - [aux_sym_cmd_identifier_token13] = ACTIONS(1711), - [aux_sym_cmd_identifier_token14] = ACTIONS(1711), - [aux_sym_cmd_identifier_token15] = ACTIONS(1711), - [aux_sym_cmd_identifier_token16] = ACTIONS(1713), - [aux_sym_cmd_identifier_token17] = ACTIONS(1713), - [aux_sym_cmd_identifier_token18] = ACTIONS(1713), - [aux_sym_cmd_identifier_token19] = ACTIONS(1713), - [aux_sym_cmd_identifier_token20] = ACTIONS(1713), - [aux_sym_cmd_identifier_token21] = ACTIONS(1713), - [aux_sym_cmd_identifier_token22] = ACTIONS(1713), - [aux_sym_cmd_identifier_token23] = ACTIONS(1713), - [aux_sym_cmd_identifier_token24] = ACTIONS(1713), - [aux_sym_cmd_identifier_token25] = ACTIONS(1713), - [aux_sym_cmd_identifier_token26] = ACTIONS(1713), - [aux_sym_cmd_identifier_token27] = ACTIONS(1713), - [aux_sym_cmd_identifier_token28] = ACTIONS(1713), - [aux_sym_cmd_identifier_token29] = ACTIONS(1713), - [aux_sym_cmd_identifier_token30] = ACTIONS(1713), - [aux_sym_cmd_identifier_token31] = ACTIONS(1713), - [aux_sym_cmd_identifier_token32] = ACTIONS(1713), - [aux_sym_cmd_identifier_token33] = ACTIONS(1713), - [aux_sym_cmd_identifier_token34] = ACTIONS(1711), - [aux_sym_cmd_identifier_token35] = ACTIONS(1713), - [aux_sym_cmd_identifier_token36] = ACTIONS(1713), - [aux_sym_cmd_identifier_token37] = ACTIONS(1713), - [aux_sym_cmd_identifier_token38] = ACTIONS(1711), - [aux_sym_cmd_identifier_token39] = ACTIONS(1713), - [aux_sym_cmd_identifier_token40] = ACTIONS(1713), - [anon_sym_def] = ACTIONS(1711), - [anon_sym_export_DASHenv] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_use] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_COMMA] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_error] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_loop] = ACTIONS(1711), - [anon_sym_make] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_catch] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_source] = ACTIONS(1711), - [anon_sym_source_DASHenv] = ACTIONS(1711), - [anon_sym_hide] = ACTIONS(1711), - [anon_sym_hide_DASHenv] = ACTIONS(1711), - [anon_sym_overlay] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1713), - [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(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1711), - [aux_sym__val_number_token5] = ACTIONS(1711), - [aux_sym__val_number_token6] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1713), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_DOT2] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1713), - }, - [358] = { - [sym_path] = STATE(431), - [sym_comment] = STATE(358), - [aux_sym_cell_path_repeat1] = STATE(359), - [anon_sym_export] = ACTIONS(931), - [anon_sym_alias] = ACTIONS(931), - [anon_sym_let] = ACTIONS(931), - [anon_sym_let_DASHenv] = ACTIONS(931), - [anon_sym_mut] = ACTIONS(931), - [anon_sym_const] = ACTIONS(931), - [aux_sym_cmd_identifier_token1] = ACTIONS(931), - [aux_sym_cmd_identifier_token2] = ACTIONS(931), - [aux_sym_cmd_identifier_token3] = ACTIONS(931), - [aux_sym_cmd_identifier_token4] = ACTIONS(931), - [aux_sym_cmd_identifier_token5] = ACTIONS(931), - [aux_sym_cmd_identifier_token6] = ACTIONS(931), - [aux_sym_cmd_identifier_token7] = ACTIONS(931), - [aux_sym_cmd_identifier_token8] = ACTIONS(931), - [aux_sym_cmd_identifier_token9] = ACTIONS(931), - [aux_sym_cmd_identifier_token10] = ACTIONS(931), - [aux_sym_cmd_identifier_token11] = ACTIONS(931), - [aux_sym_cmd_identifier_token12] = ACTIONS(931), - [aux_sym_cmd_identifier_token13] = ACTIONS(931), - [aux_sym_cmd_identifier_token14] = ACTIONS(931), - [aux_sym_cmd_identifier_token15] = ACTIONS(931), - [aux_sym_cmd_identifier_token16] = ACTIONS(931), - [aux_sym_cmd_identifier_token17] = ACTIONS(931), - [aux_sym_cmd_identifier_token18] = ACTIONS(931), - [aux_sym_cmd_identifier_token19] = ACTIONS(931), - [aux_sym_cmd_identifier_token20] = ACTIONS(931), - [aux_sym_cmd_identifier_token21] = ACTIONS(931), - [aux_sym_cmd_identifier_token22] = ACTIONS(931), - [aux_sym_cmd_identifier_token23] = ACTIONS(931), - [aux_sym_cmd_identifier_token24] = ACTIONS(931), - [aux_sym_cmd_identifier_token25] = ACTIONS(931), - [aux_sym_cmd_identifier_token26] = ACTIONS(931), - [aux_sym_cmd_identifier_token27] = ACTIONS(931), - [aux_sym_cmd_identifier_token28] = ACTIONS(931), - [aux_sym_cmd_identifier_token29] = ACTIONS(931), - [aux_sym_cmd_identifier_token30] = ACTIONS(931), - [aux_sym_cmd_identifier_token31] = ACTIONS(931), - [aux_sym_cmd_identifier_token32] = ACTIONS(931), - [aux_sym_cmd_identifier_token33] = ACTIONS(931), - [aux_sym_cmd_identifier_token34] = ACTIONS(931), - [aux_sym_cmd_identifier_token35] = ACTIONS(931), - [aux_sym_cmd_identifier_token36] = ACTIONS(931), - [aux_sym_cmd_identifier_token37] = ACTIONS(931), - [aux_sym_cmd_identifier_token38] = ACTIONS(931), - [aux_sym_cmd_identifier_token39] = ACTIONS(931), - [aux_sym_cmd_identifier_token40] = ACTIONS(931), - [anon_sym_def] = ACTIONS(931), - [anon_sym_export_DASHenv] = ACTIONS(931), - [anon_sym_extern] = ACTIONS(931), - [anon_sym_module] = ACTIONS(931), - [anon_sym_use] = ACTIONS(931), - [anon_sym_LPAREN] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(931), - [anon_sym_error] = ACTIONS(931), - [anon_sym_DASH2] = ACTIONS(931), - [anon_sym_break] = ACTIONS(931), - [anon_sym_continue] = ACTIONS(931), - [anon_sym_for] = ACTIONS(931), - [anon_sym_in2] = ACTIONS(931), - [anon_sym_loop] = ACTIONS(931), - [anon_sym_make] = ACTIONS(931), - [anon_sym_while] = ACTIONS(931), - [anon_sym_do] = ACTIONS(931), - [anon_sym_if] = ACTIONS(931), - [anon_sym_else] = ACTIONS(931), - [anon_sym_match] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_try] = ACTIONS(931), - [anon_sym_catch] = ACTIONS(931), - [anon_sym_return] = ACTIONS(931), - [anon_sym_source] = ACTIONS(931), - [anon_sym_source_DASHenv] = ACTIONS(931), - [anon_sym_hide] = ACTIONS(931), - [anon_sym_hide_DASHenv] = ACTIONS(931), - [anon_sym_overlay] = ACTIONS(931), - [anon_sym_as] = ACTIONS(931), - [anon_sym_PLUS2] = ACTIONS(931), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(931), - [anon_sym_DOT_DOT2] = ACTIONS(931), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(933), - [anon_sym_DOT_DOT_LT2] = ACTIONS(933), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(931), - [aux_sym__val_number_decimal_token1] = ACTIONS(931), - [aux_sym__val_number_decimal_token2] = ACTIONS(931), - [aux_sym__val_number_decimal_token3] = ACTIONS(931), - [aux_sym__val_number_decimal_token4] = ACTIONS(931), - [aux_sym__val_number_token1] = ACTIONS(931), - [aux_sym__val_number_token2] = ACTIONS(931), - [aux_sym__val_number_token3] = ACTIONS(931), - [aux_sym__val_number_token4] = ACTIONS(931), - [aux_sym__val_number_token5] = ACTIONS(931), - [aux_sym__val_number_token6] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(931), - [sym__str_single_quotes] = ACTIONS(931), - [sym__str_back_ticks] = ACTIONS(931), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(931), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(931), - [sym__entry_separator] = ACTIONS(933), - [anon_sym_register] = ACTIONS(931), - [anon_sym_DOT2] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(933), - }, - [359] = { - [sym_path] = STATE(431), - [sym_comment] = STATE(359), - [aux_sym_cell_path_repeat1] = STATE(359), - [anon_sym_export] = ACTIONS(935), - [anon_sym_alias] = ACTIONS(935), - [anon_sym_let] = ACTIONS(935), - [anon_sym_let_DASHenv] = ACTIONS(935), - [anon_sym_mut] = ACTIONS(935), - [anon_sym_const] = ACTIONS(935), - [aux_sym_cmd_identifier_token1] = ACTIONS(935), - [aux_sym_cmd_identifier_token2] = ACTIONS(935), - [aux_sym_cmd_identifier_token3] = ACTIONS(935), - [aux_sym_cmd_identifier_token4] = ACTIONS(935), - [aux_sym_cmd_identifier_token5] = ACTIONS(935), - [aux_sym_cmd_identifier_token6] = ACTIONS(935), - [aux_sym_cmd_identifier_token7] = ACTIONS(935), - [aux_sym_cmd_identifier_token8] = ACTIONS(935), - [aux_sym_cmd_identifier_token9] = ACTIONS(935), - [aux_sym_cmd_identifier_token10] = ACTIONS(935), - [aux_sym_cmd_identifier_token11] = ACTIONS(935), - [aux_sym_cmd_identifier_token12] = ACTIONS(935), - [aux_sym_cmd_identifier_token13] = ACTIONS(935), - [aux_sym_cmd_identifier_token14] = ACTIONS(935), - [aux_sym_cmd_identifier_token15] = ACTIONS(935), - [aux_sym_cmd_identifier_token16] = ACTIONS(935), - [aux_sym_cmd_identifier_token17] = ACTIONS(935), - [aux_sym_cmd_identifier_token18] = ACTIONS(935), - [aux_sym_cmd_identifier_token19] = ACTIONS(935), - [aux_sym_cmd_identifier_token20] = ACTIONS(935), - [aux_sym_cmd_identifier_token21] = ACTIONS(935), - [aux_sym_cmd_identifier_token22] = ACTIONS(935), - [aux_sym_cmd_identifier_token23] = ACTIONS(935), - [aux_sym_cmd_identifier_token24] = ACTIONS(935), - [aux_sym_cmd_identifier_token25] = ACTIONS(935), - [aux_sym_cmd_identifier_token26] = ACTIONS(935), - [aux_sym_cmd_identifier_token27] = ACTIONS(935), - [aux_sym_cmd_identifier_token28] = ACTIONS(935), - [aux_sym_cmd_identifier_token29] = ACTIONS(935), - [aux_sym_cmd_identifier_token30] = ACTIONS(935), - [aux_sym_cmd_identifier_token31] = ACTIONS(935), - [aux_sym_cmd_identifier_token32] = ACTIONS(935), - [aux_sym_cmd_identifier_token33] = ACTIONS(935), - [aux_sym_cmd_identifier_token34] = ACTIONS(935), - [aux_sym_cmd_identifier_token35] = ACTIONS(935), - [aux_sym_cmd_identifier_token36] = ACTIONS(935), - [aux_sym_cmd_identifier_token37] = ACTIONS(935), - [aux_sym_cmd_identifier_token38] = ACTIONS(935), - [aux_sym_cmd_identifier_token39] = ACTIONS(935), - [aux_sym_cmd_identifier_token40] = ACTIONS(935), - [anon_sym_def] = ACTIONS(935), - [anon_sym_export_DASHenv] = ACTIONS(935), - [anon_sym_extern] = ACTIONS(935), - [anon_sym_module] = ACTIONS(935), - [anon_sym_use] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_COMMA] = ACTIONS(935), - [anon_sym_DOLLAR] = ACTIONS(935), - [anon_sym_error] = ACTIONS(935), - [anon_sym_DASH2] = ACTIONS(935), - [anon_sym_break] = ACTIONS(935), - [anon_sym_continue] = ACTIONS(935), - [anon_sym_for] = ACTIONS(935), - [anon_sym_in2] = ACTIONS(935), - [anon_sym_loop] = ACTIONS(935), - [anon_sym_make] = ACTIONS(935), - [anon_sym_while] = ACTIONS(935), - [anon_sym_do] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_else] = ACTIONS(935), - [anon_sym_match] = ACTIONS(935), - [anon_sym_RBRACE] = ACTIONS(935), - [anon_sym_try] = ACTIONS(935), - [anon_sym_catch] = ACTIONS(935), - [anon_sym_return] = ACTIONS(935), - [anon_sym_source] = ACTIONS(935), - [anon_sym_source_DASHenv] = ACTIONS(935), - [anon_sym_hide] = ACTIONS(935), - [anon_sym_hide_DASHenv] = ACTIONS(935), - [anon_sym_overlay] = ACTIONS(935), - [anon_sym_as] = ACTIONS(935), - [anon_sym_PLUS2] = ACTIONS(935), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(935), - [anon_sym_DOT_DOT2] = ACTIONS(935), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), - [anon_sym_DOT_DOT_LT2] = ACTIONS(937), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(935), - [aux_sym__val_number_decimal_token1] = ACTIONS(935), - [aux_sym__val_number_decimal_token2] = ACTIONS(935), - [aux_sym__val_number_decimal_token3] = ACTIONS(935), - [aux_sym__val_number_decimal_token4] = ACTIONS(935), - [aux_sym__val_number_token1] = ACTIONS(935), - [aux_sym__val_number_token2] = ACTIONS(935), - [aux_sym__val_number_token3] = ACTIONS(935), - [aux_sym__val_number_token4] = ACTIONS(935), - [aux_sym__val_number_token5] = ACTIONS(935), - [aux_sym__val_number_token6] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym__str_single_quotes] = ACTIONS(935), - [sym__str_back_ticks] = ACTIONS(935), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(935), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(935), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(935), - [sym__entry_separator] = ACTIONS(937), - [anon_sym_register] = ACTIONS(935), - [anon_sym_DOT2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(937), - }, - [360] = { - [sym_comment] = STATE(360), - [anon_sym_export] = ACTIONS(1666), - [anon_sym_alias] = ACTIONS(1666), - [anon_sym_let] = ACTIONS(1666), - [anon_sym_let_DASHenv] = ACTIONS(1666), - [anon_sym_mut] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [aux_sym_cmd_identifier_token1] = ACTIONS(1666), - [aux_sym_cmd_identifier_token2] = ACTIONS(1666), - [aux_sym_cmd_identifier_token3] = ACTIONS(1666), - [aux_sym_cmd_identifier_token4] = ACTIONS(1666), - [aux_sym_cmd_identifier_token5] = ACTIONS(1666), - [aux_sym_cmd_identifier_token6] = ACTIONS(1666), - [aux_sym_cmd_identifier_token7] = ACTIONS(1666), - [aux_sym_cmd_identifier_token8] = ACTIONS(1666), - [aux_sym_cmd_identifier_token9] = ACTIONS(1666), - [aux_sym_cmd_identifier_token10] = ACTIONS(1666), - [aux_sym_cmd_identifier_token11] = ACTIONS(1666), - [aux_sym_cmd_identifier_token12] = ACTIONS(1666), - [aux_sym_cmd_identifier_token13] = ACTIONS(1666), - [aux_sym_cmd_identifier_token14] = ACTIONS(1666), - [aux_sym_cmd_identifier_token15] = ACTIONS(1666), - [aux_sym_cmd_identifier_token16] = ACTIONS(1666), - [aux_sym_cmd_identifier_token17] = ACTIONS(1666), - [aux_sym_cmd_identifier_token18] = ACTIONS(1666), - [aux_sym_cmd_identifier_token19] = ACTIONS(1666), - [aux_sym_cmd_identifier_token20] = ACTIONS(1666), - [aux_sym_cmd_identifier_token21] = ACTIONS(1666), - [aux_sym_cmd_identifier_token22] = ACTIONS(1666), - [aux_sym_cmd_identifier_token23] = ACTIONS(1666), - [aux_sym_cmd_identifier_token24] = ACTIONS(1666), - [aux_sym_cmd_identifier_token25] = ACTIONS(1666), - [aux_sym_cmd_identifier_token26] = ACTIONS(1666), - [aux_sym_cmd_identifier_token27] = ACTIONS(1666), - [aux_sym_cmd_identifier_token28] = ACTIONS(1666), - [aux_sym_cmd_identifier_token29] = ACTIONS(1666), - [aux_sym_cmd_identifier_token30] = ACTIONS(1666), - [aux_sym_cmd_identifier_token31] = ACTIONS(1666), - [aux_sym_cmd_identifier_token32] = ACTIONS(1666), - [aux_sym_cmd_identifier_token33] = ACTIONS(1666), - [aux_sym_cmd_identifier_token34] = ACTIONS(1666), - [aux_sym_cmd_identifier_token35] = ACTIONS(1666), - [aux_sym_cmd_identifier_token36] = ACTIONS(1666), - [aux_sym_cmd_identifier_token37] = ACTIONS(1666), - [aux_sym_cmd_identifier_token38] = ACTIONS(1666), - [aux_sym_cmd_identifier_token39] = ACTIONS(1666), - [aux_sym_cmd_identifier_token40] = ACTIONS(1666), - [anon_sym_def] = ACTIONS(1666), - [anon_sym_export_DASHenv] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_module] = ACTIONS(1666), - [anon_sym_use] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_COMMA] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_error] = ACTIONS(1666), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_in2] = ACTIONS(1666), - [anon_sym_loop] = ACTIONS(1666), - [anon_sym_make] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_do] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_match] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(1666), - [anon_sym_try] = ACTIONS(1666), - [anon_sym_catch] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_source] = ACTIONS(1666), - [anon_sym_source_DASHenv] = ACTIONS(1666), - [anon_sym_hide] = ACTIONS(1666), - [anon_sym_hide_DASHenv] = ACTIONS(1666), - [anon_sym_overlay] = ACTIONS(1666), - [anon_sym_as] = ACTIONS(1666), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_PLUS2] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1666), - [anon_sym_DOT_DOT2] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [aux_sym__immediate_decimal_token2] = ACTIONS(1672), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1666), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1666), - [aux_sym__val_number_decimal_token3] = ACTIONS(1666), - [aux_sym__val_number_decimal_token4] = ACTIONS(1666), - [aux_sym__val_number_token1] = ACTIONS(1666), - [aux_sym__val_number_token2] = ACTIONS(1666), - [aux_sym__val_number_token3] = ACTIONS(1666), - [aux_sym__val_number_token4] = ACTIONS(1666), - [aux_sym__val_number_token5] = ACTIONS(1666), - [aux_sym__val_number_token6] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1666), - [sym__str_single_quotes] = ACTIONS(1666), - [sym__str_back_ticks] = ACTIONS(1666), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1666), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1666), - [sym__entry_separator] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1666), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1668), - }, - [361] = { - [sym_comment] = STATE(361), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), - [aux_sym_cmd_identifier_token2] = ACTIONS(1650), - [aux_sym_cmd_identifier_token3] = ACTIONS(1650), - [aux_sym_cmd_identifier_token4] = ACTIONS(1650), - [aux_sym_cmd_identifier_token5] = ACTIONS(1650), - [aux_sym_cmd_identifier_token6] = ACTIONS(1650), - [aux_sym_cmd_identifier_token7] = ACTIONS(1650), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), - [aux_sym_cmd_identifier_token10] = ACTIONS(1650), - [aux_sym_cmd_identifier_token11] = ACTIONS(1650), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), - [aux_sym_cmd_identifier_token16] = ACTIONS(1650), - [aux_sym_cmd_identifier_token17] = ACTIONS(1650), - [aux_sym_cmd_identifier_token18] = ACTIONS(1650), - [aux_sym_cmd_identifier_token19] = ACTIONS(1650), - [aux_sym_cmd_identifier_token20] = ACTIONS(1650), - [aux_sym_cmd_identifier_token21] = ACTIONS(1650), - [aux_sym_cmd_identifier_token22] = ACTIONS(1650), - [aux_sym_cmd_identifier_token23] = ACTIONS(1650), - [aux_sym_cmd_identifier_token24] = ACTIONS(1650), - [aux_sym_cmd_identifier_token25] = ACTIONS(1650), - [aux_sym_cmd_identifier_token26] = ACTIONS(1650), - [aux_sym_cmd_identifier_token27] = ACTIONS(1650), - [aux_sym_cmd_identifier_token28] = ACTIONS(1650), - [aux_sym_cmd_identifier_token29] = ACTIONS(1650), - [aux_sym_cmd_identifier_token30] = ACTIONS(1650), - [aux_sym_cmd_identifier_token31] = ACTIONS(1650), - [aux_sym_cmd_identifier_token32] = ACTIONS(1650), - [aux_sym_cmd_identifier_token33] = ACTIONS(1650), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), - [aux_sym_cmd_identifier_token35] = ACTIONS(1650), - [aux_sym_cmd_identifier_token36] = ACTIONS(1650), - [aux_sym_cmd_identifier_token37] = ACTIONS(1650), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), - [aux_sym_cmd_identifier_token39] = ACTIONS(1650), - [aux_sym_cmd_identifier_token40] = ACTIONS(1650), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_DASH2] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in2] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_PLUS2] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1650), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [aux_sym__immediate_decimal_token1] = ACTIONS(1768), - [aux_sym__immediate_decimal_token2] = ACTIONS(1770), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [aux_sym__val_number_token4] = ACTIONS(1648), - [aux_sym__val_number_token5] = ACTIONS(1648), - [aux_sym__val_number_token6] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1650), - [anon_sym_register] = ACTIONS(1648), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1650), + [361] = { + [sym_comment] = STATE(361), + [anon_sym_export] = ACTIONS(1686), + [anon_sym_alias] = ACTIONS(1686), + [anon_sym_let] = ACTIONS(1686), + [anon_sym_let_DASHenv] = ACTIONS(1686), + [anon_sym_mut] = ACTIONS(1686), + [anon_sym_const] = ACTIONS(1686), + [aux_sym_cmd_identifier_token1] = ACTIONS(1686), + [aux_sym_cmd_identifier_token2] = ACTIONS(1688), + [aux_sym_cmd_identifier_token3] = ACTIONS(1688), + [aux_sym_cmd_identifier_token4] = ACTIONS(1688), + [aux_sym_cmd_identifier_token5] = ACTIONS(1688), + [aux_sym_cmd_identifier_token6] = ACTIONS(1688), + [aux_sym_cmd_identifier_token7] = ACTIONS(1688), + [aux_sym_cmd_identifier_token8] = ACTIONS(1686), + [aux_sym_cmd_identifier_token9] = ACTIONS(1686), + [aux_sym_cmd_identifier_token10] = ACTIONS(1688), + [aux_sym_cmd_identifier_token11] = ACTIONS(1688), + [aux_sym_cmd_identifier_token12] = ACTIONS(1686), + [aux_sym_cmd_identifier_token13] = ACTIONS(1686), + [aux_sym_cmd_identifier_token14] = ACTIONS(1686), + [aux_sym_cmd_identifier_token15] = ACTIONS(1686), + [aux_sym_cmd_identifier_token16] = ACTIONS(1688), + [aux_sym_cmd_identifier_token17] = ACTIONS(1688), + [aux_sym_cmd_identifier_token18] = ACTIONS(1688), + [aux_sym_cmd_identifier_token19] = ACTIONS(1688), + [aux_sym_cmd_identifier_token20] = ACTIONS(1688), + [aux_sym_cmd_identifier_token21] = ACTIONS(1688), + [aux_sym_cmd_identifier_token22] = ACTIONS(1688), + [aux_sym_cmd_identifier_token23] = ACTIONS(1688), + [aux_sym_cmd_identifier_token24] = ACTIONS(1688), + [aux_sym_cmd_identifier_token25] = ACTIONS(1688), + [aux_sym_cmd_identifier_token26] = ACTIONS(1688), + [aux_sym_cmd_identifier_token27] = ACTIONS(1688), + [aux_sym_cmd_identifier_token28] = ACTIONS(1688), + [aux_sym_cmd_identifier_token29] = ACTIONS(1688), + [aux_sym_cmd_identifier_token30] = ACTIONS(1688), + [aux_sym_cmd_identifier_token31] = ACTIONS(1688), + [aux_sym_cmd_identifier_token32] = ACTIONS(1688), + [aux_sym_cmd_identifier_token33] = ACTIONS(1688), + [aux_sym_cmd_identifier_token34] = ACTIONS(1686), + [aux_sym_cmd_identifier_token35] = ACTIONS(1688), + [aux_sym_cmd_identifier_token36] = ACTIONS(1688), + [aux_sym_cmd_identifier_token37] = ACTIONS(1688), + [aux_sym_cmd_identifier_token38] = ACTIONS(1686), + [aux_sym_cmd_identifier_token39] = ACTIONS(1688), + [aux_sym_cmd_identifier_token40] = ACTIONS(1688), + [anon_sym_def] = ACTIONS(1686), + [anon_sym_export_DASHenv] = ACTIONS(1686), + [anon_sym_extern] = ACTIONS(1686), + [anon_sym_module] = ACTIONS(1686), + [anon_sym_use] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_error] = ACTIONS(1686), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_break] = ACTIONS(1686), + [anon_sym_continue] = ACTIONS(1686), + [anon_sym_for] = ACTIONS(1686), + [anon_sym_in2] = ACTIONS(1686), + [anon_sym_loop] = ACTIONS(1686), + [anon_sym_make] = ACTIONS(1686), + [anon_sym_while] = ACTIONS(1686), + [anon_sym_do] = ACTIONS(1686), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_else] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_try] = ACTIONS(1686), + [anon_sym_catch] = ACTIONS(1686), + [anon_sym_return] = ACTIONS(1686), + [anon_sym_source] = ACTIONS(1686), + [anon_sym_source_DASHenv] = ACTIONS(1686), + [anon_sym_hide] = ACTIONS(1686), + [anon_sym_hide_DASHenv] = ACTIONS(1686), + [anon_sym_overlay] = ACTIONS(1686), + [anon_sym_as] = ACTIONS(1686), + [anon_sym_LPAREN2] = ACTIONS(1688), + [anon_sym_PLUS2] = ACTIONS(1686), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1688), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [aux_sym__immediate_decimal_token1] = ACTIONS(1756), + [aux_sym__immediate_decimal_token2] = ACTIONS(1758), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1688), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1688), + [aux_sym__val_number_decimal_token3] = ACTIONS(1688), + [aux_sym__val_number_decimal_token4] = ACTIONS(1688), + [aux_sym__val_number_token1] = ACTIONS(1688), + [aux_sym__val_number_token2] = ACTIONS(1688), + [aux_sym__val_number_token3] = ACTIONS(1688), + [aux_sym__val_number_token4] = ACTIONS(1686), + [aux_sym__val_number_token5] = ACTIONS(1686), + [aux_sym__val_number_token6] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [sym__str_single_quotes] = ACTIONS(1688), + [sym__str_back_ticks] = ACTIONS(1688), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1688), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1688), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1688), + [anon_sym_register] = ACTIONS(1686), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1688), }, [362] = { [sym_comment] = STATE(362), - [anon_sym_export] = ACTIONS(1492), - [anon_sym_alias] = ACTIONS(1492), - [anon_sym_let] = ACTIONS(1492), - [anon_sym_let_DASHenv] = ACTIONS(1492), - [anon_sym_mut] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [aux_sym_cmd_identifier_token1] = ACTIONS(1492), - [aux_sym_cmd_identifier_token2] = ACTIONS(1494), - [aux_sym_cmd_identifier_token3] = ACTIONS(1494), - [aux_sym_cmd_identifier_token4] = ACTIONS(1494), - [aux_sym_cmd_identifier_token5] = ACTIONS(1494), - [aux_sym_cmd_identifier_token6] = ACTIONS(1494), - [aux_sym_cmd_identifier_token7] = ACTIONS(1494), - [aux_sym_cmd_identifier_token8] = ACTIONS(1492), - [aux_sym_cmd_identifier_token9] = ACTIONS(1492), - [aux_sym_cmd_identifier_token10] = ACTIONS(1494), - [aux_sym_cmd_identifier_token11] = ACTIONS(1494), - [aux_sym_cmd_identifier_token12] = ACTIONS(1492), - [aux_sym_cmd_identifier_token13] = ACTIONS(1492), - [aux_sym_cmd_identifier_token14] = ACTIONS(1492), - [aux_sym_cmd_identifier_token15] = ACTIONS(1492), - [aux_sym_cmd_identifier_token16] = ACTIONS(1494), - [aux_sym_cmd_identifier_token17] = ACTIONS(1494), - [aux_sym_cmd_identifier_token18] = ACTIONS(1494), - [aux_sym_cmd_identifier_token19] = ACTIONS(1494), - [aux_sym_cmd_identifier_token20] = ACTIONS(1494), - [aux_sym_cmd_identifier_token21] = ACTIONS(1494), - [aux_sym_cmd_identifier_token22] = ACTIONS(1494), - [aux_sym_cmd_identifier_token23] = ACTIONS(1494), - [aux_sym_cmd_identifier_token24] = ACTIONS(1494), - [aux_sym_cmd_identifier_token25] = ACTIONS(1494), - [aux_sym_cmd_identifier_token26] = ACTIONS(1494), - [aux_sym_cmd_identifier_token27] = ACTIONS(1494), - [aux_sym_cmd_identifier_token28] = ACTIONS(1494), - [aux_sym_cmd_identifier_token29] = ACTIONS(1494), - [aux_sym_cmd_identifier_token30] = ACTIONS(1494), - [aux_sym_cmd_identifier_token31] = ACTIONS(1494), - [aux_sym_cmd_identifier_token32] = ACTIONS(1494), - [aux_sym_cmd_identifier_token33] = ACTIONS(1494), - [aux_sym_cmd_identifier_token34] = ACTIONS(1492), - [aux_sym_cmd_identifier_token35] = ACTIONS(1494), - [aux_sym_cmd_identifier_token36] = ACTIONS(1494), - [aux_sym_cmd_identifier_token37] = ACTIONS(1494), - [aux_sym_cmd_identifier_token38] = ACTIONS(1492), - [aux_sym_cmd_identifier_token39] = ACTIONS(1494), - [aux_sym_cmd_identifier_token40] = ACTIONS(1494), - [anon_sym_def] = ACTIONS(1492), - [anon_sym_export_DASHenv] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1492), - [anon_sym_module] = ACTIONS(1492), - [anon_sym_use] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1492), - [anon_sym_error] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_loop] = ACTIONS(1492), - [anon_sym_make] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_else] = ACTIONS(1492), - [anon_sym_match] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1494), - [anon_sym_try] = ACTIONS(1492), - [anon_sym_catch] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_source] = ACTIONS(1492), - [anon_sym_source_DASHenv] = ACTIONS(1492), - [anon_sym_hide] = ACTIONS(1492), - [anon_sym_hide_DASHenv] = ACTIONS(1492), - [anon_sym_overlay] = ACTIONS(1492), - [anon_sym_as] = ACTIONS(1492), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1494), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1494), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1494), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(1494), - [aux_sym__val_number_token2] = ACTIONS(1494), - [aux_sym__val_number_token3] = ACTIONS(1494), - [aux_sym__val_number_token4] = ACTIONS(1492), - [aux_sym__val_number_token5] = ACTIONS(1492), - [aux_sym__val_number_token6] = ACTIONS(1492), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym__str_single_quotes] = ACTIONS(1494), - [sym__str_back_ticks] = ACTIONS(1494), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1494), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1494), - [anon_sym_register] = ACTIONS(1492), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1494), + [anon_sym_export] = ACTIONS(1701), + [anon_sym_alias] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1701), + [anon_sym_let_DASHenv] = ACTIONS(1701), + [anon_sym_mut] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [aux_sym_cmd_identifier_token1] = ACTIONS(1701), + [aux_sym_cmd_identifier_token2] = ACTIONS(1701), + [aux_sym_cmd_identifier_token3] = ACTIONS(1701), + [aux_sym_cmd_identifier_token4] = ACTIONS(1701), + [aux_sym_cmd_identifier_token5] = ACTIONS(1701), + [aux_sym_cmd_identifier_token6] = ACTIONS(1701), + [aux_sym_cmd_identifier_token7] = ACTIONS(1701), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1701), + [aux_sym_cmd_identifier_token11] = ACTIONS(1701), + [aux_sym_cmd_identifier_token12] = ACTIONS(1701), + [aux_sym_cmd_identifier_token13] = ACTIONS(1701), + [aux_sym_cmd_identifier_token14] = ACTIONS(1701), + [aux_sym_cmd_identifier_token15] = ACTIONS(1701), + [aux_sym_cmd_identifier_token16] = ACTIONS(1701), + [aux_sym_cmd_identifier_token17] = ACTIONS(1701), + [aux_sym_cmd_identifier_token18] = ACTIONS(1701), + [aux_sym_cmd_identifier_token19] = ACTIONS(1701), + [aux_sym_cmd_identifier_token20] = ACTIONS(1701), + [aux_sym_cmd_identifier_token21] = ACTIONS(1701), + [aux_sym_cmd_identifier_token22] = ACTIONS(1701), + [aux_sym_cmd_identifier_token23] = ACTIONS(1701), + [aux_sym_cmd_identifier_token24] = ACTIONS(1701), + [aux_sym_cmd_identifier_token25] = ACTIONS(1701), + [aux_sym_cmd_identifier_token26] = ACTIONS(1701), + [aux_sym_cmd_identifier_token27] = ACTIONS(1701), + [aux_sym_cmd_identifier_token28] = ACTIONS(1701), + [aux_sym_cmd_identifier_token29] = ACTIONS(1701), + [aux_sym_cmd_identifier_token30] = ACTIONS(1701), + [aux_sym_cmd_identifier_token31] = ACTIONS(1701), + [aux_sym_cmd_identifier_token32] = ACTIONS(1701), + [aux_sym_cmd_identifier_token33] = ACTIONS(1701), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1701), + [aux_sym_cmd_identifier_token36] = ACTIONS(1701), + [aux_sym_cmd_identifier_token37] = ACTIONS(1701), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1701), + [aux_sym_cmd_identifier_token40] = ACTIONS(1701), + [anon_sym_def] = ACTIONS(1701), + [anon_sym_export_DASHenv] = ACTIONS(1701), + [anon_sym_extern] = ACTIONS(1701), + [anon_sym_module] = ACTIONS(1701), + [anon_sym_use] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_COMMA] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = ACTIONS(1701), + [anon_sym_loop] = ACTIONS(1701), + [anon_sym_make] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_do] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_else] = ACTIONS(1701), + [anon_sym_match] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1701), + [anon_sym_try] = ACTIONS(1701), + [anon_sym_catch] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_source] = ACTIONS(1701), + [anon_sym_source_DASHenv] = ACTIONS(1701), + [anon_sym_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1701), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1701), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1701), + [aux_sym__val_number_decimal_token3] = ACTIONS(1701), + [aux_sym__val_number_decimal_token4] = ACTIONS(1701), + [aux_sym__val_number_token1] = ACTIONS(1701), + [aux_sym__val_number_token2] = ACTIONS(1701), + [aux_sym__val_number_token3] = ACTIONS(1701), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [sym__str_single_quotes] = ACTIONS(1701), + [sym__str_back_ticks] = ACTIONS(1701), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1701), + [sym__entry_separator] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1703), }, [363] = { + [sym_cell_path] = STATE(503), + [sym_path] = STATE(434), [sym_comment] = STATE(363), - [anon_sym_export] = ACTIONS(1666), - [anon_sym_alias] = ACTIONS(1666), - [anon_sym_let] = ACTIONS(1666), - [anon_sym_let_DASHenv] = ACTIONS(1666), - [anon_sym_mut] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [aux_sym_cmd_identifier_token1] = ACTIONS(1666), - [aux_sym_cmd_identifier_token2] = ACTIONS(1668), - [aux_sym_cmd_identifier_token3] = ACTIONS(1668), - [aux_sym_cmd_identifier_token4] = ACTIONS(1668), - [aux_sym_cmd_identifier_token5] = ACTIONS(1668), - [aux_sym_cmd_identifier_token6] = ACTIONS(1668), - [aux_sym_cmd_identifier_token7] = ACTIONS(1668), - [aux_sym_cmd_identifier_token8] = ACTIONS(1666), - [aux_sym_cmd_identifier_token9] = ACTIONS(1666), - [aux_sym_cmd_identifier_token10] = ACTIONS(1668), - [aux_sym_cmd_identifier_token11] = ACTIONS(1668), - [aux_sym_cmd_identifier_token12] = ACTIONS(1666), - [aux_sym_cmd_identifier_token13] = ACTIONS(1666), - [aux_sym_cmd_identifier_token14] = ACTIONS(1666), - [aux_sym_cmd_identifier_token15] = ACTIONS(1666), - [aux_sym_cmd_identifier_token16] = ACTIONS(1668), - [aux_sym_cmd_identifier_token17] = ACTIONS(1668), - [aux_sym_cmd_identifier_token18] = ACTIONS(1668), - [aux_sym_cmd_identifier_token19] = ACTIONS(1668), - [aux_sym_cmd_identifier_token20] = ACTIONS(1668), - [aux_sym_cmd_identifier_token21] = ACTIONS(1668), - [aux_sym_cmd_identifier_token22] = ACTIONS(1668), - [aux_sym_cmd_identifier_token23] = ACTIONS(1668), - [aux_sym_cmd_identifier_token24] = ACTIONS(1668), - [aux_sym_cmd_identifier_token25] = ACTIONS(1668), - [aux_sym_cmd_identifier_token26] = ACTIONS(1668), - [aux_sym_cmd_identifier_token27] = ACTIONS(1668), - [aux_sym_cmd_identifier_token28] = ACTIONS(1668), - [aux_sym_cmd_identifier_token29] = ACTIONS(1668), - [aux_sym_cmd_identifier_token30] = ACTIONS(1668), - [aux_sym_cmd_identifier_token31] = ACTIONS(1668), - [aux_sym_cmd_identifier_token32] = ACTIONS(1668), - [aux_sym_cmd_identifier_token33] = ACTIONS(1668), - [aux_sym_cmd_identifier_token34] = ACTIONS(1666), - [aux_sym_cmd_identifier_token35] = ACTIONS(1668), - [aux_sym_cmd_identifier_token36] = ACTIONS(1668), - [aux_sym_cmd_identifier_token37] = ACTIONS(1668), - [aux_sym_cmd_identifier_token38] = ACTIONS(1666), - [aux_sym_cmd_identifier_token39] = ACTIONS(1668), - [aux_sym_cmd_identifier_token40] = ACTIONS(1668), - [anon_sym_def] = ACTIONS(1666), - [anon_sym_export_DASHenv] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_module] = ACTIONS(1666), - [anon_sym_use] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_error] = ACTIONS(1666), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_in2] = ACTIONS(1666), - [anon_sym_loop] = ACTIONS(1666), - [anon_sym_make] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_do] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_match] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_try] = ACTIONS(1666), - [anon_sym_catch] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_source] = ACTIONS(1666), - [anon_sym_source_DASHenv] = ACTIONS(1666), - [anon_sym_hide] = ACTIONS(1666), - [anon_sym_hide_DASHenv] = ACTIONS(1666), - [anon_sym_overlay] = ACTIONS(1666), - [anon_sym_as] = ACTIONS(1666), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_PLUS2] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1668), - [anon_sym_DOT_DOT2] = ACTIONS(1666), - [anon_sym_DOT] = ACTIONS(1772), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [aux_sym__immediate_decimal_token2] = ACTIONS(1774), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1666), - [aux_sym__val_number_token5] = ACTIONS(1666), - [aux_sym__val_number_token6] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1666), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1666), + [aux_sym_cell_path_repeat1] = STATE(375), + [anon_sym_export] = ACTIONS(1668), + [anon_sym_alias] = ACTIONS(1668), + [anon_sym_let] = ACTIONS(1668), + [anon_sym_let_DASHenv] = ACTIONS(1668), + [anon_sym_mut] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1668), + [aux_sym_cmd_identifier_token1] = ACTIONS(1668), + [aux_sym_cmd_identifier_token2] = ACTIONS(1670), + [aux_sym_cmd_identifier_token3] = ACTIONS(1670), + [aux_sym_cmd_identifier_token4] = ACTIONS(1670), + [aux_sym_cmd_identifier_token5] = ACTIONS(1670), + [aux_sym_cmd_identifier_token6] = ACTIONS(1670), + [aux_sym_cmd_identifier_token7] = ACTIONS(1670), + [aux_sym_cmd_identifier_token8] = ACTIONS(1668), + [aux_sym_cmd_identifier_token9] = ACTIONS(1668), + [aux_sym_cmd_identifier_token10] = ACTIONS(1670), + [aux_sym_cmd_identifier_token11] = ACTIONS(1670), + [aux_sym_cmd_identifier_token12] = ACTIONS(1668), + [aux_sym_cmd_identifier_token13] = ACTIONS(1668), + [aux_sym_cmd_identifier_token14] = ACTIONS(1668), + [aux_sym_cmd_identifier_token15] = ACTIONS(1668), + [aux_sym_cmd_identifier_token16] = ACTIONS(1670), + [aux_sym_cmd_identifier_token17] = ACTIONS(1670), + [aux_sym_cmd_identifier_token18] = ACTIONS(1670), + [aux_sym_cmd_identifier_token19] = ACTIONS(1670), + [aux_sym_cmd_identifier_token20] = ACTIONS(1670), + [aux_sym_cmd_identifier_token21] = ACTIONS(1670), + [aux_sym_cmd_identifier_token22] = ACTIONS(1670), + [aux_sym_cmd_identifier_token23] = ACTIONS(1670), + [aux_sym_cmd_identifier_token24] = ACTIONS(1670), + [aux_sym_cmd_identifier_token25] = ACTIONS(1670), + [aux_sym_cmd_identifier_token26] = ACTIONS(1670), + [aux_sym_cmd_identifier_token27] = ACTIONS(1670), + [aux_sym_cmd_identifier_token28] = ACTIONS(1670), + [aux_sym_cmd_identifier_token29] = ACTIONS(1670), + [aux_sym_cmd_identifier_token30] = ACTIONS(1670), + [aux_sym_cmd_identifier_token31] = ACTIONS(1670), + [aux_sym_cmd_identifier_token32] = ACTIONS(1670), + [aux_sym_cmd_identifier_token33] = ACTIONS(1670), + [aux_sym_cmd_identifier_token34] = ACTIONS(1668), + [aux_sym_cmd_identifier_token35] = ACTIONS(1670), + [aux_sym_cmd_identifier_token36] = ACTIONS(1670), + [aux_sym_cmd_identifier_token37] = ACTIONS(1670), + [aux_sym_cmd_identifier_token38] = ACTIONS(1668), + [aux_sym_cmd_identifier_token39] = ACTIONS(1670), + [aux_sym_cmd_identifier_token40] = ACTIONS(1670), + [anon_sym_def] = ACTIONS(1668), + [anon_sym_export_DASHenv] = ACTIONS(1668), + [anon_sym_extern] = ACTIONS(1668), + [anon_sym_module] = ACTIONS(1668), + [anon_sym_use] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_COMMA] = ACTIONS(1670), + [anon_sym_DOLLAR] = ACTIONS(1668), + [anon_sym_error] = ACTIONS(1668), + [anon_sym_DASH2] = ACTIONS(1668), + [anon_sym_break] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(1668), + [anon_sym_for] = ACTIONS(1668), + [anon_sym_in2] = ACTIONS(1668), + [anon_sym_loop] = ACTIONS(1668), + [anon_sym_make] = ACTIONS(1668), + [anon_sym_while] = ACTIONS(1668), + [anon_sym_do] = ACTIONS(1668), + [anon_sym_if] = ACTIONS(1668), + [anon_sym_else] = ACTIONS(1668), + [anon_sym_match] = ACTIONS(1668), + [anon_sym_RBRACE] = ACTIONS(1670), + [anon_sym_try] = ACTIONS(1668), + [anon_sym_catch] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_source] = ACTIONS(1668), + [anon_sym_source_DASHenv] = ACTIONS(1668), + [anon_sym_hide] = ACTIONS(1668), + [anon_sym_hide_DASHenv] = ACTIONS(1668), + [anon_sym_overlay] = ACTIONS(1668), + [anon_sym_as] = ACTIONS(1668), + [anon_sym_PLUS2] = ACTIONS(1668), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1670), + [anon_sym_DOT_DOT2] = ACTIONS(1668), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1670), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1670), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1670), + [aux_sym__val_number_decimal_token1] = ACTIONS(1668), + [aux_sym__val_number_decimal_token2] = ACTIONS(1670), + [aux_sym__val_number_decimal_token3] = ACTIONS(1670), + [aux_sym__val_number_decimal_token4] = ACTIONS(1670), + [aux_sym__val_number_token1] = ACTIONS(1670), + [aux_sym__val_number_token2] = ACTIONS(1670), + [aux_sym__val_number_token3] = ACTIONS(1670), + [aux_sym__val_number_token4] = ACTIONS(1668), + [aux_sym__val_number_token5] = ACTIONS(1668), + [aux_sym__val_number_token6] = ACTIONS(1668), + [anon_sym_DQUOTE] = ACTIONS(1670), + [sym__str_single_quotes] = ACTIONS(1670), + [sym__str_back_ticks] = ACTIONS(1670), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1670), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1670), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1670), + [anon_sym_register] = ACTIONS(1668), + [anon_sym_DOT2] = ACTIONS(1723), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), + [sym_raw_string_begin] = ACTIONS(1670), }, [364] = { [sym_comment] = STATE(364), - [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(1486), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [aux_sym_cmd_identifier_token6] = ACTIONS(1486), - [aux_sym_cmd_identifier_token7] = ACTIONS(1486), - [aux_sym_cmd_identifier_token8] = ACTIONS(1484), - [aux_sym_cmd_identifier_token9] = ACTIONS(1484), - [aux_sym_cmd_identifier_token10] = ACTIONS(1486), - [aux_sym_cmd_identifier_token11] = ACTIONS(1486), - [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(1486), - [aux_sym_cmd_identifier_token17] = ACTIONS(1486), - [aux_sym_cmd_identifier_token18] = ACTIONS(1486), - [aux_sym_cmd_identifier_token19] = ACTIONS(1486), - [aux_sym_cmd_identifier_token20] = ACTIONS(1486), - [aux_sym_cmd_identifier_token21] = ACTIONS(1486), - [aux_sym_cmd_identifier_token22] = ACTIONS(1486), - [aux_sym_cmd_identifier_token23] = ACTIONS(1486), - [aux_sym_cmd_identifier_token24] = ACTIONS(1486), - [aux_sym_cmd_identifier_token25] = ACTIONS(1486), - [aux_sym_cmd_identifier_token26] = ACTIONS(1486), - [aux_sym_cmd_identifier_token27] = ACTIONS(1486), - [aux_sym_cmd_identifier_token28] = ACTIONS(1486), - [aux_sym_cmd_identifier_token29] = ACTIONS(1486), - [aux_sym_cmd_identifier_token30] = ACTIONS(1486), - [aux_sym_cmd_identifier_token31] = ACTIONS(1486), - [aux_sym_cmd_identifier_token32] = ACTIONS(1486), - [aux_sym_cmd_identifier_token33] = ACTIONS(1486), - [aux_sym_cmd_identifier_token34] = ACTIONS(1484), - [aux_sym_cmd_identifier_token35] = ACTIONS(1486), - [aux_sym_cmd_identifier_token36] = ACTIONS(1486), - [aux_sym_cmd_identifier_token37] = ACTIONS(1486), - [aux_sym_cmd_identifier_token38] = ACTIONS(1484), - [aux_sym_cmd_identifier_token39] = ACTIONS(1486), - [aux_sym_cmd_identifier_token40] = ACTIONS(1486), - [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_LPAREN] = ACTIONS(1484), - [anon_sym_COMMA] = ACTIONS(1486), - [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_in2] = ACTIONS(1484), - [anon_sym_loop] = ACTIONS(1484), - [anon_sym_make] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_else] = ACTIONS(1484), - [anon_sym_match] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1486), - [anon_sym_try] = ACTIONS(1484), - [anon_sym_catch] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_source] = ACTIONS(1484), - [anon_sym_source_DASHenv] = ACTIONS(1484), - [anon_sym_hide] = ACTIONS(1484), - [anon_sym_hide_DASHenv] = ACTIONS(1484), - [anon_sym_overlay] = ACTIONS(1484), - [anon_sym_as] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_PLUS2] = ACTIONS(1484), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1486), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1486), - [aux_sym__val_number_decimal_token1] = ACTIONS(1484), - [aux_sym__val_number_decimal_token2] = ACTIONS(1486), - [aux_sym__val_number_decimal_token3] = ACTIONS(1486), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), - [aux_sym__val_number_token1] = ACTIONS(1486), - [aux_sym__val_number_token2] = ACTIONS(1486), - [aux_sym__val_number_token3] = ACTIONS(1486), - [aux_sym__val_number_token4] = ACTIONS(1484), - [aux_sym__val_number_token5] = ACTIONS(1484), - [aux_sym__val_number_token6] = ACTIONS(1484), - [sym_filesize_unit] = ACTIONS(1484), - [sym_duration_unit] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym__str_single_quotes] = ACTIONS(1486), - [sym__str_back_ticks] = ACTIONS(1486), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1486), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1486), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1486), - [anon_sym_register] = ACTIONS(1484), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1484), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1760), + [anon_sym_alias] = ACTIONS(1760), + [anon_sym_let] = ACTIONS(1760), + [anon_sym_let_DASHenv] = ACTIONS(1760), + [anon_sym_mut] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [aux_sym_cmd_identifier_token1] = ACTIONS(1760), + [aux_sym_cmd_identifier_token2] = ACTIONS(1760), + [aux_sym_cmd_identifier_token3] = ACTIONS(1760), + [aux_sym_cmd_identifier_token4] = ACTIONS(1760), + [aux_sym_cmd_identifier_token5] = ACTIONS(1760), + [aux_sym_cmd_identifier_token6] = ACTIONS(1760), + [aux_sym_cmd_identifier_token7] = ACTIONS(1760), + [aux_sym_cmd_identifier_token8] = ACTIONS(1760), + [aux_sym_cmd_identifier_token9] = ACTIONS(1760), + [aux_sym_cmd_identifier_token10] = ACTIONS(1760), + [aux_sym_cmd_identifier_token11] = ACTIONS(1760), + [aux_sym_cmd_identifier_token12] = ACTIONS(1760), + [aux_sym_cmd_identifier_token13] = ACTIONS(1760), + [aux_sym_cmd_identifier_token14] = ACTIONS(1760), + [aux_sym_cmd_identifier_token15] = ACTIONS(1760), + [aux_sym_cmd_identifier_token16] = ACTIONS(1760), + [aux_sym_cmd_identifier_token17] = ACTIONS(1760), + [aux_sym_cmd_identifier_token18] = ACTIONS(1760), + [aux_sym_cmd_identifier_token19] = ACTIONS(1760), + [aux_sym_cmd_identifier_token20] = ACTIONS(1760), + [aux_sym_cmd_identifier_token21] = ACTIONS(1760), + [aux_sym_cmd_identifier_token22] = ACTIONS(1760), + [aux_sym_cmd_identifier_token23] = ACTIONS(1760), + [aux_sym_cmd_identifier_token24] = ACTIONS(1760), + [aux_sym_cmd_identifier_token25] = ACTIONS(1760), + [aux_sym_cmd_identifier_token26] = ACTIONS(1760), + [aux_sym_cmd_identifier_token27] = ACTIONS(1760), + [aux_sym_cmd_identifier_token28] = ACTIONS(1760), + [aux_sym_cmd_identifier_token29] = ACTIONS(1760), + [aux_sym_cmd_identifier_token30] = ACTIONS(1760), + [aux_sym_cmd_identifier_token31] = ACTIONS(1760), + [aux_sym_cmd_identifier_token32] = ACTIONS(1760), + [aux_sym_cmd_identifier_token33] = ACTIONS(1760), + [aux_sym_cmd_identifier_token34] = ACTIONS(1760), + [aux_sym_cmd_identifier_token35] = ACTIONS(1760), + [aux_sym_cmd_identifier_token36] = ACTIONS(1760), + [aux_sym_cmd_identifier_token37] = ACTIONS(1760), + [aux_sym_cmd_identifier_token38] = ACTIONS(1760), + [aux_sym_cmd_identifier_token39] = ACTIONS(1760), + [aux_sym_cmd_identifier_token40] = ACTIONS(1760), + [anon_sym_def] = ACTIONS(1760), + [anon_sym_export_DASHenv] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym_module] = ACTIONS(1760), + [anon_sym_use] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_COMMA] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_error] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_loop] = ACTIONS(1760), + [anon_sym_make] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_do] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_match] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_catch] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_source] = ACTIONS(1760), + [anon_sym_source_DASHenv] = ACTIONS(1760), + [anon_sym_hide] = ACTIONS(1760), + [anon_sym_hide_DASHenv] = ACTIONS(1760), + [anon_sym_overlay] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(1764), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1760), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1760), + [aux_sym__val_number_decimal_token4] = ACTIONS(1760), + [aux_sym__val_number_token1] = ACTIONS(1760), + [aux_sym__val_number_token2] = ACTIONS(1760), + [aux_sym__val_number_token3] = ACTIONS(1760), + [aux_sym__val_number_token4] = ACTIONS(1760), + [aux_sym__val_number_token5] = ACTIONS(1760), + [aux_sym__val_number_token6] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1760), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1760), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1760), + [sym__entry_separator] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1760), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1762), }, [365] = { + [sym_cmd_identifier] = STATE(4261), + [sym__expression] = STATE(3668), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3653), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(761), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_env_var] = STATE(6844), + [sym_command] = STATE(4567), [sym_comment] = STATE(365), - [anon_sym_export] = ACTIONS(1538), - [anon_sym_alias] = ACTIONS(1538), - [anon_sym_let] = ACTIONS(1538), - [anon_sym_let_DASHenv] = ACTIONS(1538), - [anon_sym_mut] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(1538), - [aux_sym_cmd_identifier_token1] = ACTIONS(1538), - [aux_sym_cmd_identifier_token2] = ACTIONS(1540), - [aux_sym_cmd_identifier_token3] = ACTIONS(1540), - [aux_sym_cmd_identifier_token4] = ACTIONS(1540), - [aux_sym_cmd_identifier_token5] = ACTIONS(1540), - [aux_sym_cmd_identifier_token6] = ACTIONS(1540), - [aux_sym_cmd_identifier_token7] = ACTIONS(1540), - [aux_sym_cmd_identifier_token8] = ACTIONS(1538), - [aux_sym_cmd_identifier_token9] = ACTIONS(1538), - [aux_sym_cmd_identifier_token10] = ACTIONS(1540), - [aux_sym_cmd_identifier_token11] = ACTIONS(1540), - [aux_sym_cmd_identifier_token12] = ACTIONS(1538), - [aux_sym_cmd_identifier_token13] = ACTIONS(1538), - [aux_sym_cmd_identifier_token14] = ACTIONS(1538), - [aux_sym_cmd_identifier_token15] = ACTIONS(1538), - [aux_sym_cmd_identifier_token16] = ACTIONS(1540), - [aux_sym_cmd_identifier_token17] = ACTIONS(1540), - [aux_sym_cmd_identifier_token18] = ACTIONS(1540), - [aux_sym_cmd_identifier_token19] = ACTIONS(1540), - [aux_sym_cmd_identifier_token20] = ACTIONS(1540), - [aux_sym_cmd_identifier_token21] = ACTIONS(1540), - [aux_sym_cmd_identifier_token22] = ACTIONS(1540), - [aux_sym_cmd_identifier_token23] = ACTIONS(1540), - [aux_sym_cmd_identifier_token24] = ACTIONS(1540), - [aux_sym_cmd_identifier_token25] = ACTIONS(1540), - [aux_sym_cmd_identifier_token26] = ACTIONS(1540), - [aux_sym_cmd_identifier_token27] = ACTIONS(1540), - [aux_sym_cmd_identifier_token28] = ACTIONS(1540), - [aux_sym_cmd_identifier_token29] = ACTIONS(1540), - [aux_sym_cmd_identifier_token30] = ACTIONS(1540), - [aux_sym_cmd_identifier_token31] = ACTIONS(1540), - [aux_sym_cmd_identifier_token32] = ACTIONS(1540), - [aux_sym_cmd_identifier_token33] = ACTIONS(1540), - [aux_sym_cmd_identifier_token34] = ACTIONS(1538), - [aux_sym_cmd_identifier_token35] = ACTIONS(1540), - [aux_sym_cmd_identifier_token36] = ACTIONS(1540), - [aux_sym_cmd_identifier_token37] = ACTIONS(1540), - [aux_sym_cmd_identifier_token38] = ACTIONS(1538), - [aux_sym_cmd_identifier_token39] = ACTIONS(1540), - [aux_sym_cmd_identifier_token40] = ACTIONS(1540), - [anon_sym_def] = ACTIONS(1538), - [anon_sym_export_DASHenv] = ACTIONS(1538), - [anon_sym_extern] = ACTIONS(1538), - [anon_sym_module] = ACTIONS(1538), - [anon_sym_use] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_COMMA] = ACTIONS(1540), - [anon_sym_DOLLAR] = ACTIONS(1538), - [anon_sym_error] = ACTIONS(1538), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_break] = ACTIONS(1538), - [anon_sym_continue] = ACTIONS(1538), - [anon_sym_for] = ACTIONS(1538), - [anon_sym_in2] = ACTIONS(1538), - [anon_sym_loop] = ACTIONS(1538), - [anon_sym_make] = ACTIONS(1538), - [anon_sym_while] = ACTIONS(1538), - [anon_sym_do] = ACTIONS(1538), - [anon_sym_if] = ACTIONS(1538), - [anon_sym_else] = ACTIONS(1538), - [anon_sym_match] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1540), - [anon_sym_try] = ACTIONS(1538), - [anon_sym_catch] = ACTIONS(1538), - [anon_sym_return] = ACTIONS(1538), - [anon_sym_source] = ACTIONS(1538), - [anon_sym_source_DASHenv] = ACTIONS(1538), - [anon_sym_hide] = ACTIONS(1538), - [anon_sym_hide_DASHenv] = ACTIONS(1538), - [anon_sym_overlay] = ACTIONS(1538), - [anon_sym_as] = ACTIONS(1538), - [anon_sym_LPAREN2] = ACTIONS(1540), - [anon_sym_PLUS2] = ACTIONS(1538), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1540), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1540), - [aux_sym__val_number_decimal_token1] = ACTIONS(1538), - [aux_sym__val_number_decimal_token2] = ACTIONS(1540), - [aux_sym__val_number_decimal_token3] = ACTIONS(1540), - [aux_sym__val_number_decimal_token4] = ACTIONS(1540), - [aux_sym__val_number_token1] = ACTIONS(1540), - [aux_sym__val_number_token2] = ACTIONS(1540), - [aux_sym__val_number_token3] = ACTIONS(1540), - [aux_sym__val_number_token4] = ACTIONS(1538), - [aux_sym__val_number_token5] = ACTIONS(1538), - [aux_sym__val_number_token6] = ACTIONS(1538), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(1540), - [sym__str_single_quotes] = ACTIONS(1540), - [sym__str_back_ticks] = ACTIONS(1540), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1540), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1540), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1540), - [anon_sym_register] = ACTIONS(1538), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1540), - }, - [366] = { - [sym_comment] = STATE(366), - [anon_sym_export] = ACTIONS(1715), - [anon_sym_alias] = ACTIONS(1715), - [anon_sym_let] = ACTIONS(1715), - [anon_sym_let_DASHenv] = ACTIONS(1715), - [anon_sym_mut] = ACTIONS(1715), - [anon_sym_const] = ACTIONS(1715), - [aux_sym_cmd_identifier_token1] = ACTIONS(1715), - [aux_sym_cmd_identifier_token2] = ACTIONS(1717), - [aux_sym_cmd_identifier_token3] = ACTIONS(1717), - [aux_sym_cmd_identifier_token4] = ACTIONS(1717), - [aux_sym_cmd_identifier_token5] = ACTIONS(1717), - [aux_sym_cmd_identifier_token6] = ACTIONS(1717), - [aux_sym_cmd_identifier_token7] = ACTIONS(1717), - [aux_sym_cmd_identifier_token8] = ACTIONS(1715), - [aux_sym_cmd_identifier_token9] = ACTIONS(1715), - [aux_sym_cmd_identifier_token10] = ACTIONS(1717), - [aux_sym_cmd_identifier_token11] = ACTIONS(1717), - [aux_sym_cmd_identifier_token12] = ACTIONS(1715), - [aux_sym_cmd_identifier_token13] = ACTIONS(1715), - [aux_sym_cmd_identifier_token14] = ACTIONS(1715), - [aux_sym_cmd_identifier_token15] = ACTIONS(1715), - [aux_sym_cmd_identifier_token16] = ACTIONS(1717), - [aux_sym_cmd_identifier_token17] = ACTIONS(1717), - [aux_sym_cmd_identifier_token18] = ACTIONS(1717), - [aux_sym_cmd_identifier_token19] = ACTIONS(1717), - [aux_sym_cmd_identifier_token20] = ACTIONS(1717), - [aux_sym_cmd_identifier_token21] = ACTIONS(1717), - [aux_sym_cmd_identifier_token22] = ACTIONS(1717), - [aux_sym_cmd_identifier_token23] = ACTIONS(1717), - [aux_sym_cmd_identifier_token24] = ACTIONS(1717), - [aux_sym_cmd_identifier_token25] = ACTIONS(1717), - [aux_sym_cmd_identifier_token26] = ACTIONS(1717), - [aux_sym_cmd_identifier_token27] = ACTIONS(1717), - [aux_sym_cmd_identifier_token28] = ACTIONS(1717), - [aux_sym_cmd_identifier_token29] = ACTIONS(1717), - [aux_sym_cmd_identifier_token30] = ACTIONS(1717), - [aux_sym_cmd_identifier_token31] = ACTIONS(1717), - [aux_sym_cmd_identifier_token32] = ACTIONS(1717), - [aux_sym_cmd_identifier_token33] = ACTIONS(1717), - [aux_sym_cmd_identifier_token34] = ACTIONS(1715), - [aux_sym_cmd_identifier_token35] = ACTIONS(1717), - [aux_sym_cmd_identifier_token36] = ACTIONS(1717), - [aux_sym_cmd_identifier_token37] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1715), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [anon_sym_def] = ACTIONS(1715), - [anon_sym_export_DASHenv] = ACTIONS(1715), - [anon_sym_extern] = ACTIONS(1715), - [anon_sym_module] = ACTIONS(1715), - [anon_sym_use] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_COMMA] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_error] = ACTIONS(1715), - [anon_sym_DASH2] = ACTIONS(1715), - [anon_sym_break] = ACTIONS(1715), - [anon_sym_continue] = ACTIONS(1715), - [anon_sym_for] = ACTIONS(1715), - [anon_sym_in2] = ACTIONS(1715), - [anon_sym_loop] = ACTIONS(1715), - [anon_sym_make] = ACTIONS(1715), - [anon_sym_while] = ACTIONS(1715), - [anon_sym_do] = ACTIONS(1715), - [anon_sym_if] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_match] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1715), - [anon_sym_catch] = ACTIONS(1715), - [anon_sym_return] = ACTIONS(1715), - [anon_sym_source] = ACTIONS(1715), - [anon_sym_source_DASHenv] = ACTIONS(1715), - [anon_sym_hide] = ACTIONS(1715), - [anon_sym_hide_DASHenv] = ACTIONS(1715), - [anon_sym_overlay] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_PLUS2] = ACTIONS(1715), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [aux_sym__val_number_token4] = ACTIONS(1715), - [aux_sym__val_number_token5] = ACTIONS(1715), - [aux_sym__val_number_token6] = ACTIONS(1715), - [sym_filesize_unit] = ACTIONS(1715), - [sym_duration_unit] = ACTIONS(1715), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), - [anon_sym_register] = ACTIONS(1715), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1717), - }, - [367] = { - [sym_cmd_identifier] = STATE(4507), - [sym__expression] = STATE(3845), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3850), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(826), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_env_var] = STATE(7534), - [sym_command] = STATE(4764), - [sym_comment] = STATE(367), - [aux_sym_pipe_element_repeat2] = STATE(1190), + [aux_sym_pipe_element_repeat2] = STATE(1148), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), [aux_sym_cmd_identifier_token3] = ACTIONS(359), @@ -116093,10 +114761,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1727), - [aux_sym__val_number_decimal_token2] = ACTIONS(1729), - [aux_sym__val_number_decimal_token3] = ACTIONS(1731), - [aux_sym__val_number_decimal_token4] = ACTIONS(1733), + [aux_sym__val_number_decimal_token1] = ACTIONS(407), + [aux_sym__val_number_decimal_token2] = ACTIONS(409), + [aux_sym__val_number_decimal_token3] = ACTIONS(411), + [aux_sym__val_number_decimal_token4] = ACTIONS(413), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -116117,38 +114785,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, + [366] = { + [sym_comment] = STATE(366), + [anon_sym_export] = ACTIONS(1701), + [anon_sym_alias] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1701), + [anon_sym_let_DASHenv] = ACTIONS(1701), + [anon_sym_mut] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [aux_sym_cmd_identifier_token1] = ACTIONS(1701), + [aux_sym_cmd_identifier_token2] = ACTIONS(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [aux_sym_cmd_identifier_token12] = ACTIONS(1701), + [aux_sym_cmd_identifier_token13] = ACTIONS(1701), + [aux_sym_cmd_identifier_token14] = ACTIONS(1701), + [aux_sym_cmd_identifier_token15] = ACTIONS(1701), + [aux_sym_cmd_identifier_token16] = ACTIONS(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [aux_sym_cmd_identifier_token37] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [anon_sym_def] = ACTIONS(1701), + [anon_sym_export_DASHenv] = ACTIONS(1701), + [anon_sym_extern] = ACTIONS(1701), + [anon_sym_module] = ACTIONS(1701), + [anon_sym_use] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_COMMA] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = ACTIONS(1701), + [anon_sym_loop] = ACTIONS(1701), + [anon_sym_make] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_do] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_else] = ACTIONS(1701), + [anon_sym_match] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_try] = ACTIONS(1701), + [anon_sym_catch] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_source] = ACTIONS(1701), + [anon_sym_source_DASHenv] = ACTIONS(1701), + [anon_sym_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(1768), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [367] = { + [sym_comment] = STATE(367), + [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), + [sym__newline] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_AT] = 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_LBRACK] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [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_loop] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_match] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1585), + [anon_sym_try] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_source] = ACTIONS(1585), + [anon_sym_source_DASHenv] = ACTIONS(1585), + [anon_sym_hide] = ACTIONS(1585), + [anon_sym_hide_DASHenv] = ACTIONS(1585), + [anon_sym_overlay] = ACTIONS(1585), + [anon_sym_where] = ACTIONS(1587), + [aux_sym_expr_unary_token1] = ACTIONS(1587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), + [anon_sym_DOT_DOT_LT] = ACTIONS(1587), + [anon_sym_null] = ACTIONS(1585), + [anon_sym_true] = ACTIONS(1585), + [anon_sym_false] = ACTIONS(1585), + [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), + [anon_sym_0b] = ACTIONS(1585), + [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), + [aux_sym_env_var_token1] = ACTIONS(1585), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1587), + }, [368] = { - [sym_cmd_identifier] = STATE(4507), - [sym_ctrl_if] = STATE(4765), - [sym_block] = STATE(4766), - [sym__expression] = STATE(4766), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3844), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1184), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_command] = STATE(4766), + [sym_cmd_identifier] = STATE(4261), + [sym_ctrl_if] = STATE(4597), + [sym_block] = STATE(4598), + [sym__expression] = STATE(4598), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3669), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1106), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_command] = STATE(4598), [sym_comment] = STATE(368), [aux_sym_cmd_identifier_token1] = ACTIONS(357), [aux_sym_cmd_identifier_token2] = ACTIONS(359), @@ -116194,7 +115080,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_if] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(1528), [anon_sym_DOT_DOT] = ACTIONS(185), [aux_sym_expr_unary_token1] = ACTIONS(201), @@ -116203,10 +115089,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(209), [anon_sym_true] = ACTIONS(211), [anon_sym_false] = ACTIONS(211), - [aux_sym__val_number_decimal_token1] = ACTIONS(1530), - [aux_sym__val_number_decimal_token2] = ACTIONS(1532), - [aux_sym__val_number_decimal_token3] = ACTIONS(1534), - [aux_sym__val_number_decimal_token4] = ACTIONS(1536), + [aux_sym__val_number_decimal_token1] = ACTIONS(1770), + [aux_sym__val_number_decimal_token2] = ACTIONS(1772), + [aux_sym__val_number_decimal_token3] = ACTIONS(1774), + [aux_sym__val_number_decimal_token4] = ACTIONS(1776), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -116228,438 +115114,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [369] = { [sym_comment] = STATE(369), - [anon_sym_export] = ACTIONS(1778), - [anon_sym_alias] = ACTIONS(1778), - [anon_sym_let] = ACTIONS(1778), - [anon_sym_let_DASHenv] = ACTIONS(1778), - [anon_sym_mut] = ACTIONS(1778), - [anon_sym_const] = ACTIONS(1778), - [aux_sym_cmd_identifier_token1] = ACTIONS(1778), - [aux_sym_cmd_identifier_token2] = ACTIONS(1778), - [aux_sym_cmd_identifier_token3] = ACTIONS(1778), - [aux_sym_cmd_identifier_token4] = ACTIONS(1778), - [aux_sym_cmd_identifier_token5] = ACTIONS(1778), - [aux_sym_cmd_identifier_token6] = ACTIONS(1778), - [aux_sym_cmd_identifier_token7] = ACTIONS(1778), - [aux_sym_cmd_identifier_token8] = ACTIONS(1778), - [aux_sym_cmd_identifier_token9] = ACTIONS(1778), - [aux_sym_cmd_identifier_token10] = ACTIONS(1778), - [aux_sym_cmd_identifier_token11] = ACTIONS(1778), - [aux_sym_cmd_identifier_token12] = ACTIONS(1778), - [aux_sym_cmd_identifier_token13] = ACTIONS(1778), - [aux_sym_cmd_identifier_token14] = ACTIONS(1778), - [aux_sym_cmd_identifier_token15] = ACTIONS(1778), - [aux_sym_cmd_identifier_token16] = ACTIONS(1778), - [aux_sym_cmd_identifier_token17] = ACTIONS(1778), - [aux_sym_cmd_identifier_token18] = ACTIONS(1778), - [aux_sym_cmd_identifier_token19] = ACTIONS(1778), - [aux_sym_cmd_identifier_token20] = ACTIONS(1778), - [aux_sym_cmd_identifier_token21] = ACTIONS(1778), - [aux_sym_cmd_identifier_token22] = ACTIONS(1778), - [aux_sym_cmd_identifier_token23] = ACTIONS(1778), - [aux_sym_cmd_identifier_token24] = ACTIONS(1778), - [aux_sym_cmd_identifier_token25] = ACTIONS(1778), - [aux_sym_cmd_identifier_token26] = ACTIONS(1778), - [aux_sym_cmd_identifier_token27] = ACTIONS(1778), - [aux_sym_cmd_identifier_token28] = ACTIONS(1778), - [aux_sym_cmd_identifier_token29] = ACTIONS(1778), - [aux_sym_cmd_identifier_token30] = ACTIONS(1778), - [aux_sym_cmd_identifier_token31] = ACTIONS(1778), - [aux_sym_cmd_identifier_token32] = ACTIONS(1778), - [aux_sym_cmd_identifier_token33] = ACTIONS(1778), - [aux_sym_cmd_identifier_token34] = ACTIONS(1778), - [aux_sym_cmd_identifier_token35] = ACTIONS(1778), - [aux_sym_cmd_identifier_token36] = ACTIONS(1778), - [aux_sym_cmd_identifier_token37] = ACTIONS(1778), - [aux_sym_cmd_identifier_token38] = ACTIONS(1778), - [aux_sym_cmd_identifier_token39] = ACTIONS(1778), - [aux_sym_cmd_identifier_token40] = ACTIONS(1778), - [anon_sym_def] = ACTIONS(1778), - [anon_sym_export_DASHenv] = ACTIONS(1778), - [anon_sym_extern] = ACTIONS(1778), - [anon_sym_module] = ACTIONS(1778), - [anon_sym_use] = ACTIONS(1778), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_COMMA] = ACTIONS(1778), - [anon_sym_DOLLAR] = ACTIONS(1778), - [anon_sym_error] = ACTIONS(1778), - [anon_sym_DASH2] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1778), - [anon_sym_in2] = ACTIONS(1778), - [anon_sym_loop] = ACTIONS(1778), - [anon_sym_make] = ACTIONS(1778), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_do] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_match] = ACTIONS(1778), - [anon_sym_RBRACE] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_catch] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_source] = ACTIONS(1778), - [anon_sym_source_DASHenv] = ACTIONS(1778), - [anon_sym_hide] = ACTIONS(1778), - [anon_sym_hide_DASHenv] = ACTIONS(1778), - [anon_sym_overlay] = ACTIONS(1778), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_LPAREN2] = ACTIONS(1780), - [anon_sym_PLUS2] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1778), - [anon_sym_DOT_DOT2] = ACTIONS(1782), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1784), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1784), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1778), - [aux_sym__val_number_decimal_token1] = ACTIONS(1778), - [aux_sym__val_number_decimal_token2] = ACTIONS(1778), - [aux_sym__val_number_decimal_token3] = ACTIONS(1778), - [aux_sym__val_number_decimal_token4] = ACTIONS(1778), - [aux_sym__val_number_token1] = ACTIONS(1778), - [aux_sym__val_number_token2] = ACTIONS(1778), - [aux_sym__val_number_token3] = ACTIONS(1778), - [aux_sym__val_number_token4] = ACTIONS(1778), - [aux_sym__val_number_token5] = ACTIONS(1778), - [aux_sym__val_number_token6] = ACTIONS(1778), - [anon_sym_DQUOTE] = ACTIONS(1778), - [sym__str_single_quotes] = ACTIONS(1778), - [sym__str_back_ticks] = ACTIONS(1778), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1778), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1778), - [sym__entry_separator] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1778), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1788), + [anon_sym_export] = ACTIONS(946), + [anon_sym_alias] = ACTIONS(946), + [anon_sym_let] = ACTIONS(946), + [anon_sym_let_DASHenv] = ACTIONS(946), + [anon_sym_mut] = ACTIONS(946), + [anon_sym_const] = ACTIONS(946), + [aux_sym_cmd_identifier_token1] = ACTIONS(946), + [aux_sym_cmd_identifier_token2] = ACTIONS(946), + [aux_sym_cmd_identifier_token3] = ACTIONS(946), + [aux_sym_cmd_identifier_token4] = ACTIONS(946), + [aux_sym_cmd_identifier_token5] = ACTIONS(946), + [aux_sym_cmd_identifier_token6] = ACTIONS(946), + [aux_sym_cmd_identifier_token7] = ACTIONS(946), + [aux_sym_cmd_identifier_token8] = ACTIONS(946), + [aux_sym_cmd_identifier_token9] = ACTIONS(946), + [aux_sym_cmd_identifier_token10] = ACTIONS(946), + [aux_sym_cmd_identifier_token11] = ACTIONS(946), + [aux_sym_cmd_identifier_token12] = ACTIONS(946), + [aux_sym_cmd_identifier_token13] = ACTIONS(946), + [aux_sym_cmd_identifier_token14] = ACTIONS(946), + [aux_sym_cmd_identifier_token15] = ACTIONS(946), + [aux_sym_cmd_identifier_token16] = ACTIONS(946), + [aux_sym_cmd_identifier_token17] = ACTIONS(946), + [aux_sym_cmd_identifier_token18] = ACTIONS(946), + [aux_sym_cmd_identifier_token19] = ACTIONS(946), + [aux_sym_cmd_identifier_token20] = ACTIONS(946), + [aux_sym_cmd_identifier_token21] = ACTIONS(946), + [aux_sym_cmd_identifier_token22] = ACTIONS(946), + [aux_sym_cmd_identifier_token23] = ACTIONS(946), + [aux_sym_cmd_identifier_token24] = ACTIONS(946), + [aux_sym_cmd_identifier_token25] = ACTIONS(946), + [aux_sym_cmd_identifier_token26] = ACTIONS(946), + [aux_sym_cmd_identifier_token27] = ACTIONS(946), + [aux_sym_cmd_identifier_token28] = ACTIONS(946), + [aux_sym_cmd_identifier_token29] = ACTIONS(946), + [aux_sym_cmd_identifier_token30] = ACTIONS(946), + [aux_sym_cmd_identifier_token31] = ACTIONS(946), + [aux_sym_cmd_identifier_token32] = ACTIONS(946), + [aux_sym_cmd_identifier_token33] = ACTIONS(946), + [aux_sym_cmd_identifier_token34] = ACTIONS(946), + [aux_sym_cmd_identifier_token35] = ACTIONS(946), + [aux_sym_cmd_identifier_token36] = ACTIONS(946), + [aux_sym_cmd_identifier_token37] = ACTIONS(946), + [aux_sym_cmd_identifier_token38] = ACTIONS(946), + [aux_sym_cmd_identifier_token39] = ACTIONS(946), + [aux_sym_cmd_identifier_token40] = ACTIONS(946), + [anon_sym_def] = ACTIONS(946), + [anon_sym_export_DASHenv] = ACTIONS(946), + [anon_sym_extern] = ACTIONS(946), + [anon_sym_module] = ACTIONS(946), + [anon_sym_use] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(946), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_error] = ACTIONS(946), + [anon_sym_DASH2] = ACTIONS(946), + [anon_sym_break] = ACTIONS(946), + [anon_sym_continue] = ACTIONS(946), + [anon_sym_for] = ACTIONS(946), + [anon_sym_in2] = ACTIONS(946), + [anon_sym_loop] = ACTIONS(946), + [anon_sym_make] = ACTIONS(946), + [anon_sym_while] = ACTIONS(946), + [anon_sym_do] = ACTIONS(946), + [anon_sym_if] = ACTIONS(946), + [anon_sym_else] = ACTIONS(946), + [anon_sym_match] = ACTIONS(946), + [anon_sym_RBRACE] = ACTIONS(946), + [anon_sym_try] = ACTIONS(946), + [anon_sym_catch] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_source] = ACTIONS(946), + [anon_sym_source_DASHenv] = ACTIONS(946), + [anon_sym_hide] = ACTIONS(946), + [anon_sym_hide_DASHenv] = ACTIONS(946), + [anon_sym_overlay] = ACTIONS(946), + [anon_sym_as] = ACTIONS(946), + [anon_sym_QMARK2] = ACTIONS(946), + [anon_sym_PLUS2] = ACTIONS(946), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(946), + [anon_sym_DOT_DOT2] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(948), + [anon_sym_DOT_DOT_LT2] = ACTIONS(948), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(946), + [aux_sym__val_number_decimal_token1] = ACTIONS(946), + [aux_sym__val_number_decimal_token2] = ACTIONS(946), + [aux_sym__val_number_decimal_token3] = ACTIONS(946), + [aux_sym__val_number_decimal_token4] = ACTIONS(946), + [aux_sym__val_number_token1] = ACTIONS(946), + [aux_sym__val_number_token2] = ACTIONS(946), + [aux_sym__val_number_token3] = ACTIONS(946), + [aux_sym__val_number_token4] = ACTIONS(946), + [aux_sym__val_number_token5] = ACTIONS(946), + [aux_sym__val_number_token6] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(946), + [sym__str_single_quotes] = ACTIONS(946), + [sym__str_back_ticks] = ACTIONS(946), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(946), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(946), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(946), + [sym__entry_separator] = ACTIONS(948), + [anon_sym_register] = ACTIONS(946), + [anon_sym_DOT2] = ACTIONS(946), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1786), + [sym_raw_string_begin] = ACTIONS(948), }, [370] = { [sym_comment] = STATE(370), - [anon_sym_export] = ACTIONS(1790), - [anon_sym_alias] = ACTIONS(1790), - [anon_sym_let] = ACTIONS(1790), - [anon_sym_let_DASHenv] = ACTIONS(1790), - [anon_sym_mut] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [aux_sym_cmd_identifier_token1] = ACTIONS(1790), - [aux_sym_cmd_identifier_token2] = ACTIONS(1790), - [aux_sym_cmd_identifier_token3] = ACTIONS(1790), - [aux_sym_cmd_identifier_token4] = ACTIONS(1790), - [aux_sym_cmd_identifier_token5] = ACTIONS(1790), - [aux_sym_cmd_identifier_token6] = ACTIONS(1790), - [aux_sym_cmd_identifier_token7] = ACTIONS(1790), - [aux_sym_cmd_identifier_token8] = ACTIONS(1790), - [aux_sym_cmd_identifier_token9] = ACTIONS(1790), - [aux_sym_cmd_identifier_token10] = ACTIONS(1790), - [aux_sym_cmd_identifier_token11] = ACTIONS(1790), - [aux_sym_cmd_identifier_token12] = ACTIONS(1790), - [aux_sym_cmd_identifier_token13] = ACTIONS(1790), - [aux_sym_cmd_identifier_token14] = ACTIONS(1790), - [aux_sym_cmd_identifier_token15] = ACTIONS(1790), - [aux_sym_cmd_identifier_token16] = ACTIONS(1790), - [aux_sym_cmd_identifier_token17] = ACTIONS(1790), - [aux_sym_cmd_identifier_token18] = ACTIONS(1790), - [aux_sym_cmd_identifier_token19] = ACTIONS(1790), - [aux_sym_cmd_identifier_token20] = ACTIONS(1790), - [aux_sym_cmd_identifier_token21] = ACTIONS(1790), - [aux_sym_cmd_identifier_token22] = ACTIONS(1790), - [aux_sym_cmd_identifier_token23] = ACTIONS(1790), - [aux_sym_cmd_identifier_token24] = ACTIONS(1790), - [aux_sym_cmd_identifier_token25] = ACTIONS(1790), - [aux_sym_cmd_identifier_token26] = ACTIONS(1790), - [aux_sym_cmd_identifier_token27] = ACTIONS(1790), - [aux_sym_cmd_identifier_token28] = ACTIONS(1790), - [aux_sym_cmd_identifier_token29] = ACTIONS(1790), - [aux_sym_cmd_identifier_token30] = ACTIONS(1790), - [aux_sym_cmd_identifier_token31] = ACTIONS(1790), - [aux_sym_cmd_identifier_token32] = ACTIONS(1790), - [aux_sym_cmd_identifier_token33] = ACTIONS(1790), - [aux_sym_cmd_identifier_token34] = ACTIONS(1790), - [aux_sym_cmd_identifier_token35] = ACTIONS(1790), - [aux_sym_cmd_identifier_token36] = ACTIONS(1790), - [aux_sym_cmd_identifier_token37] = ACTIONS(1790), - [aux_sym_cmd_identifier_token38] = ACTIONS(1790), - [aux_sym_cmd_identifier_token39] = ACTIONS(1790), - [aux_sym_cmd_identifier_token40] = ACTIONS(1790), - [anon_sym_def] = ACTIONS(1790), - [anon_sym_export_DASHenv] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym_module] = ACTIONS(1790), - [anon_sym_use] = ACTIONS(1790), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_COMMA] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(1790), - [anon_sym_error] = ACTIONS(1790), - [anon_sym_DASH2] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_in2] = ACTIONS(1790), - [anon_sym_loop] = ACTIONS(1790), - [anon_sym_make] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_match] = ACTIONS(1790), - [anon_sym_RBRACE] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_catch] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_source] = ACTIONS(1790), - [anon_sym_source_DASHenv] = ACTIONS(1790), - [anon_sym_hide] = ACTIONS(1790), - [anon_sym_hide_DASHenv] = ACTIONS(1790), - [anon_sym_overlay] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_PLUS2] = ACTIONS(1790), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1790), - [anon_sym_DOT_DOT2] = ACTIONS(1790), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1792), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1792), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1790), - [aux_sym__val_number_decimal_token1] = ACTIONS(1790), - [aux_sym__val_number_decimal_token2] = ACTIONS(1790), - [aux_sym__val_number_decimal_token3] = ACTIONS(1790), - [aux_sym__val_number_decimal_token4] = ACTIONS(1790), - [aux_sym__val_number_token1] = ACTIONS(1790), - [aux_sym__val_number_token2] = ACTIONS(1790), - [aux_sym__val_number_token3] = ACTIONS(1790), - [aux_sym__val_number_token4] = ACTIONS(1790), - [aux_sym__val_number_token5] = ACTIONS(1790), - [aux_sym__val_number_token6] = ACTIONS(1790), - [anon_sym_DQUOTE] = ACTIONS(1790), - [sym__str_single_quotes] = ACTIONS(1790), - [sym__str_back_ticks] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1790), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1790), - [sym__entry_separator] = ACTIONS(1792), - [anon_sym_register] = ACTIONS(1790), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [anon_sym_export] = ACTIONS(1701), + [anon_sym_alias] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1701), + [anon_sym_let_DASHenv] = ACTIONS(1701), + [anon_sym_mut] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [aux_sym_cmd_identifier_token1] = ACTIONS(1701), + [aux_sym_cmd_identifier_token2] = ACTIONS(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [aux_sym_cmd_identifier_token12] = ACTIONS(1701), + [aux_sym_cmd_identifier_token13] = ACTIONS(1701), + [aux_sym_cmd_identifier_token14] = ACTIONS(1701), + [aux_sym_cmd_identifier_token15] = ACTIONS(1701), + [aux_sym_cmd_identifier_token16] = ACTIONS(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [aux_sym_cmd_identifier_token37] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [anon_sym_def] = ACTIONS(1701), + [anon_sym_export_DASHenv] = ACTIONS(1701), + [anon_sym_extern] = ACTIONS(1701), + [anon_sym_module] = ACTIONS(1701), + [anon_sym_use] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_COMMA] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = ACTIONS(1701), + [anon_sym_loop] = ACTIONS(1701), + [anon_sym_make] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_do] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_else] = ACTIONS(1701), + [anon_sym_match] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_try] = ACTIONS(1701), + [anon_sym_catch] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_source] = ACTIONS(1701), + [anon_sym_source_DASHenv] = ACTIONS(1701), + [anon_sym_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(1768), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), }, [371] = { [sym_comment] = STATE(371), - [anon_sym_export] = ACTIONS(1666), - [anon_sym_alias] = ACTIONS(1666), - [anon_sym_let] = ACTIONS(1666), - [anon_sym_let_DASHenv] = ACTIONS(1666), - [anon_sym_mut] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [aux_sym_cmd_identifier_token1] = ACTIONS(1666), - [aux_sym_cmd_identifier_token2] = ACTIONS(1666), - [aux_sym_cmd_identifier_token3] = ACTIONS(1666), - [aux_sym_cmd_identifier_token4] = ACTIONS(1666), - [aux_sym_cmd_identifier_token5] = ACTIONS(1666), - [aux_sym_cmd_identifier_token6] = ACTIONS(1666), - [aux_sym_cmd_identifier_token7] = ACTIONS(1666), - [aux_sym_cmd_identifier_token8] = ACTIONS(1666), - [aux_sym_cmd_identifier_token9] = ACTIONS(1666), - [aux_sym_cmd_identifier_token10] = ACTIONS(1666), - [aux_sym_cmd_identifier_token11] = ACTIONS(1666), - [aux_sym_cmd_identifier_token12] = ACTIONS(1666), - [aux_sym_cmd_identifier_token13] = ACTIONS(1666), - [aux_sym_cmd_identifier_token14] = ACTIONS(1666), - [aux_sym_cmd_identifier_token15] = ACTIONS(1666), - [aux_sym_cmd_identifier_token16] = ACTIONS(1666), - [aux_sym_cmd_identifier_token17] = ACTIONS(1666), - [aux_sym_cmd_identifier_token18] = ACTIONS(1666), - [aux_sym_cmd_identifier_token19] = ACTIONS(1666), - [aux_sym_cmd_identifier_token20] = ACTIONS(1666), - [aux_sym_cmd_identifier_token21] = ACTIONS(1666), - [aux_sym_cmd_identifier_token22] = ACTIONS(1666), - [aux_sym_cmd_identifier_token23] = ACTIONS(1666), - [aux_sym_cmd_identifier_token24] = ACTIONS(1666), - [aux_sym_cmd_identifier_token25] = ACTIONS(1666), - [aux_sym_cmd_identifier_token26] = ACTIONS(1666), - [aux_sym_cmd_identifier_token27] = ACTIONS(1666), - [aux_sym_cmd_identifier_token28] = ACTIONS(1666), - [aux_sym_cmd_identifier_token29] = ACTIONS(1666), - [aux_sym_cmd_identifier_token30] = ACTIONS(1666), - [aux_sym_cmd_identifier_token31] = ACTIONS(1666), - [aux_sym_cmd_identifier_token32] = ACTIONS(1666), - [aux_sym_cmd_identifier_token33] = ACTIONS(1666), - [aux_sym_cmd_identifier_token34] = ACTIONS(1666), - [aux_sym_cmd_identifier_token35] = ACTIONS(1666), - [aux_sym_cmd_identifier_token36] = ACTIONS(1666), - [aux_sym_cmd_identifier_token37] = ACTIONS(1666), - [aux_sym_cmd_identifier_token38] = ACTIONS(1666), - [aux_sym_cmd_identifier_token39] = ACTIONS(1666), - [aux_sym_cmd_identifier_token40] = ACTIONS(1666), - [anon_sym_def] = ACTIONS(1666), - [anon_sym_export_DASHenv] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_module] = ACTIONS(1666), - [anon_sym_use] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_COMMA] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_error] = ACTIONS(1666), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_in2] = ACTIONS(1666), - [anon_sym_loop] = ACTIONS(1666), - [anon_sym_make] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_do] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_match] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(1666), - [anon_sym_try] = ACTIONS(1666), - [anon_sym_catch] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_source] = ACTIONS(1666), - [anon_sym_source_DASHenv] = ACTIONS(1666), - [anon_sym_hide] = ACTIONS(1666), - [anon_sym_hide_DASHenv] = ACTIONS(1666), - [anon_sym_overlay] = ACTIONS(1666), - [anon_sym_as] = ACTIONS(1666), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_PLUS2] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1666), - [anon_sym_DOT_DOT2] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1666), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1666), - [aux_sym__val_number_decimal_token3] = ACTIONS(1666), - [aux_sym__val_number_decimal_token4] = ACTIONS(1666), - [aux_sym__val_number_token1] = ACTIONS(1666), - [aux_sym__val_number_token2] = ACTIONS(1666), - [aux_sym__val_number_token3] = ACTIONS(1666), - [aux_sym__val_number_token4] = ACTIONS(1666), - [aux_sym__val_number_token5] = ACTIONS(1666), - [aux_sym__val_number_token6] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1666), - [sym__str_single_quotes] = ACTIONS(1666), - [sym__str_back_ticks] = ACTIONS(1666), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1666), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1666), - [sym__entry_separator] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1666), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1668), - }, - [372] = { - [sym_comment] = STATE(372), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), - [aux_sym_cmd_identifier_token2] = ACTIONS(1648), - [aux_sym_cmd_identifier_token3] = ACTIONS(1648), - [aux_sym_cmd_identifier_token4] = ACTIONS(1648), - [aux_sym_cmd_identifier_token5] = ACTIONS(1648), - [aux_sym_cmd_identifier_token6] = ACTIONS(1648), - [aux_sym_cmd_identifier_token7] = ACTIONS(1648), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), - [aux_sym_cmd_identifier_token10] = ACTIONS(1648), - [aux_sym_cmd_identifier_token11] = ACTIONS(1648), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), - [aux_sym_cmd_identifier_token16] = ACTIONS(1648), - [aux_sym_cmd_identifier_token17] = ACTIONS(1648), - [aux_sym_cmd_identifier_token18] = ACTIONS(1648), - [aux_sym_cmd_identifier_token19] = ACTIONS(1648), - [aux_sym_cmd_identifier_token20] = ACTIONS(1648), - [aux_sym_cmd_identifier_token21] = ACTIONS(1648), - [aux_sym_cmd_identifier_token22] = ACTIONS(1648), - [aux_sym_cmd_identifier_token23] = ACTIONS(1648), - [aux_sym_cmd_identifier_token24] = ACTIONS(1648), - [aux_sym_cmd_identifier_token25] = ACTIONS(1648), - [aux_sym_cmd_identifier_token26] = ACTIONS(1648), - [aux_sym_cmd_identifier_token27] = ACTIONS(1648), - [aux_sym_cmd_identifier_token28] = ACTIONS(1648), - [aux_sym_cmd_identifier_token29] = ACTIONS(1648), - [aux_sym_cmd_identifier_token30] = ACTIONS(1648), - [aux_sym_cmd_identifier_token31] = ACTIONS(1648), - [aux_sym_cmd_identifier_token32] = ACTIONS(1648), - [aux_sym_cmd_identifier_token33] = ACTIONS(1648), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), - [aux_sym_cmd_identifier_token35] = ACTIONS(1648), - [aux_sym_cmd_identifier_token36] = ACTIONS(1648), - [aux_sym_cmd_identifier_token37] = ACTIONS(1648), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), - [aux_sym_cmd_identifier_token39] = ACTIONS(1648), - [aux_sym_cmd_identifier_token40] = ACTIONS(1648), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_COMMA] = ACTIONS(1648), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_DASH2] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in2] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_PLUS2] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1648), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [aux_sym__immediate_decimal_token1] = ACTIONS(1794), - [aux_sym__immediate_decimal_token2] = ACTIONS(1796), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1648), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1648), - [aux_sym__val_number_decimal_token3] = ACTIONS(1648), - [aux_sym__val_number_decimal_token4] = ACTIONS(1648), - [aux_sym__val_number_token1] = ACTIONS(1648), - [aux_sym__val_number_token2] = ACTIONS(1648), - [aux_sym__val_number_token3] = ACTIONS(1648), - [aux_sym__val_number_token4] = ACTIONS(1648), - [aux_sym__val_number_token5] = ACTIONS(1648), - [aux_sym__val_number_token6] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1648), - [sym__str_single_quotes] = ACTIONS(1648), - [sym__str_back_ticks] = ACTIONS(1648), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1648), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1648), - [sym__entry_separator] = ACTIONS(1650), - [anon_sym_register] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1650), - }, - [373] = { - [sym_comment] = STATE(373), [anon_sym_export] = ACTIONS(958), [anon_sym_alias] = ACTIONS(958), [anon_sym_let] = ACTIONS(958), @@ -116737,7 +115407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(958), [anon_sym_overlay] = ACTIONS(958), [anon_sym_as] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(958), + [anon_sym_QMARK2] = ACTIONS(1778), [anon_sym_PLUS2] = ACTIONS(958), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(958), [anon_sym_DOT_DOT2] = ACTIONS(958), @@ -116766,8 +115436,1088 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(960), }, + [372] = { + [sym_comment] = STATE(372), + [anon_sym_export] = ACTIONS(1760), + [anon_sym_alias] = ACTIONS(1760), + [anon_sym_let] = ACTIONS(1760), + [anon_sym_let_DASHenv] = ACTIONS(1760), + [anon_sym_mut] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [aux_sym_cmd_identifier_token1] = ACTIONS(1760), + [aux_sym_cmd_identifier_token2] = ACTIONS(1762), + [aux_sym_cmd_identifier_token3] = ACTIONS(1762), + [aux_sym_cmd_identifier_token4] = ACTIONS(1762), + [aux_sym_cmd_identifier_token5] = ACTIONS(1762), + [aux_sym_cmd_identifier_token6] = ACTIONS(1762), + [aux_sym_cmd_identifier_token7] = ACTIONS(1762), + [aux_sym_cmd_identifier_token8] = ACTIONS(1760), + [aux_sym_cmd_identifier_token9] = ACTIONS(1760), + [aux_sym_cmd_identifier_token10] = ACTIONS(1762), + [aux_sym_cmd_identifier_token11] = ACTIONS(1762), + [aux_sym_cmd_identifier_token12] = ACTIONS(1760), + [aux_sym_cmd_identifier_token13] = ACTIONS(1760), + [aux_sym_cmd_identifier_token14] = ACTIONS(1760), + [aux_sym_cmd_identifier_token15] = ACTIONS(1760), + [aux_sym_cmd_identifier_token16] = ACTIONS(1762), + [aux_sym_cmd_identifier_token17] = ACTIONS(1762), + [aux_sym_cmd_identifier_token18] = ACTIONS(1762), + [aux_sym_cmd_identifier_token19] = ACTIONS(1762), + [aux_sym_cmd_identifier_token20] = ACTIONS(1762), + [aux_sym_cmd_identifier_token21] = ACTIONS(1762), + [aux_sym_cmd_identifier_token22] = ACTIONS(1762), + [aux_sym_cmd_identifier_token23] = ACTIONS(1762), + [aux_sym_cmd_identifier_token24] = ACTIONS(1762), + [aux_sym_cmd_identifier_token25] = ACTIONS(1762), + [aux_sym_cmd_identifier_token26] = ACTIONS(1762), + [aux_sym_cmd_identifier_token27] = ACTIONS(1762), + [aux_sym_cmd_identifier_token28] = ACTIONS(1762), + [aux_sym_cmd_identifier_token29] = ACTIONS(1762), + [aux_sym_cmd_identifier_token30] = ACTIONS(1762), + [aux_sym_cmd_identifier_token31] = ACTIONS(1762), + [aux_sym_cmd_identifier_token32] = ACTIONS(1762), + [aux_sym_cmd_identifier_token33] = ACTIONS(1762), + [aux_sym_cmd_identifier_token34] = ACTIONS(1760), + [aux_sym_cmd_identifier_token35] = ACTIONS(1762), + [aux_sym_cmd_identifier_token36] = ACTIONS(1762), + [aux_sym_cmd_identifier_token37] = ACTIONS(1762), + [aux_sym_cmd_identifier_token38] = ACTIONS(1760), + [aux_sym_cmd_identifier_token39] = ACTIONS(1762), + [aux_sym_cmd_identifier_token40] = ACTIONS(1762), + [anon_sym_def] = ACTIONS(1760), + [anon_sym_export_DASHenv] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym_module] = ACTIONS(1760), + [anon_sym_use] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_error] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_loop] = ACTIONS(1760), + [anon_sym_make] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_do] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_match] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_catch] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_source] = ACTIONS(1760), + [anon_sym_source_DASHenv] = ACTIONS(1760), + [anon_sym_hide] = ACTIONS(1760), + [anon_sym_hide_DASHenv] = ACTIONS(1760), + [anon_sym_overlay] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1762), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(1780), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1760), + [aux_sym__val_number_token5] = ACTIONS(1760), + [aux_sym__val_number_token6] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1760), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1762), + }, + [373] = { + [sym_comment] = STATE(373), + [anon_sym_export] = ACTIONS(1701), + [anon_sym_alias] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1701), + [anon_sym_let_DASHenv] = ACTIONS(1701), + [anon_sym_mut] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [aux_sym_cmd_identifier_token1] = ACTIONS(1701), + [aux_sym_cmd_identifier_token2] = ACTIONS(1701), + [aux_sym_cmd_identifier_token3] = ACTIONS(1701), + [aux_sym_cmd_identifier_token4] = ACTIONS(1701), + [aux_sym_cmd_identifier_token5] = ACTIONS(1701), + [aux_sym_cmd_identifier_token6] = ACTIONS(1701), + [aux_sym_cmd_identifier_token7] = ACTIONS(1701), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1701), + [aux_sym_cmd_identifier_token11] = ACTIONS(1701), + [aux_sym_cmd_identifier_token12] = ACTIONS(1701), + [aux_sym_cmd_identifier_token13] = ACTIONS(1701), + [aux_sym_cmd_identifier_token14] = ACTIONS(1701), + [aux_sym_cmd_identifier_token15] = ACTIONS(1701), + [aux_sym_cmd_identifier_token16] = ACTIONS(1701), + [aux_sym_cmd_identifier_token17] = ACTIONS(1701), + [aux_sym_cmd_identifier_token18] = ACTIONS(1701), + [aux_sym_cmd_identifier_token19] = ACTIONS(1701), + [aux_sym_cmd_identifier_token20] = ACTIONS(1701), + [aux_sym_cmd_identifier_token21] = ACTIONS(1701), + [aux_sym_cmd_identifier_token22] = ACTIONS(1701), + [aux_sym_cmd_identifier_token23] = ACTIONS(1701), + [aux_sym_cmd_identifier_token24] = ACTIONS(1701), + [aux_sym_cmd_identifier_token25] = ACTIONS(1701), + [aux_sym_cmd_identifier_token26] = ACTIONS(1701), + [aux_sym_cmd_identifier_token27] = ACTIONS(1701), + [aux_sym_cmd_identifier_token28] = ACTIONS(1701), + [aux_sym_cmd_identifier_token29] = ACTIONS(1701), + [aux_sym_cmd_identifier_token30] = ACTIONS(1701), + [aux_sym_cmd_identifier_token31] = ACTIONS(1701), + [aux_sym_cmd_identifier_token32] = ACTIONS(1701), + [aux_sym_cmd_identifier_token33] = ACTIONS(1701), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1701), + [aux_sym_cmd_identifier_token36] = ACTIONS(1701), + [aux_sym_cmd_identifier_token37] = ACTIONS(1701), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1701), + [aux_sym_cmd_identifier_token40] = ACTIONS(1701), + [anon_sym_def] = ACTIONS(1701), + [anon_sym_export_DASHenv] = ACTIONS(1701), + [anon_sym_extern] = ACTIONS(1701), + [anon_sym_module] = ACTIONS(1701), + [anon_sym_use] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_COMMA] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = ACTIONS(1701), + [anon_sym_loop] = ACTIONS(1701), + [anon_sym_make] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_do] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_else] = ACTIONS(1701), + [anon_sym_match] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1701), + [anon_sym_try] = ACTIONS(1701), + [anon_sym_catch] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_source] = ACTIONS(1701), + [anon_sym_source_DASHenv] = ACTIONS(1701), + [anon_sym_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1701), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1701), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1701), + [aux_sym__val_number_decimal_token3] = ACTIONS(1701), + [aux_sym__val_number_decimal_token4] = ACTIONS(1701), + [aux_sym__val_number_token1] = ACTIONS(1701), + [aux_sym__val_number_token2] = ACTIONS(1701), + [aux_sym__val_number_token3] = ACTIONS(1701), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [sym__str_single_quotes] = ACTIONS(1701), + [sym__str_back_ticks] = ACTIONS(1701), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1701), + [sym__entry_separator] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1703), + }, [374] = { [sym_comment] = STATE(374), + [anon_sym_export] = ACTIONS(1782), + [anon_sym_alias] = ACTIONS(1782), + [anon_sym_let] = ACTIONS(1782), + [anon_sym_let_DASHenv] = ACTIONS(1782), + [anon_sym_mut] = ACTIONS(1782), + [anon_sym_const] = ACTIONS(1782), + [aux_sym_cmd_identifier_token1] = ACTIONS(1782), + [aux_sym_cmd_identifier_token2] = ACTIONS(1782), + [aux_sym_cmd_identifier_token3] = ACTIONS(1782), + [aux_sym_cmd_identifier_token4] = ACTIONS(1782), + [aux_sym_cmd_identifier_token5] = ACTIONS(1782), + [aux_sym_cmd_identifier_token6] = ACTIONS(1782), + [aux_sym_cmd_identifier_token7] = ACTIONS(1782), + [aux_sym_cmd_identifier_token8] = ACTIONS(1782), + [aux_sym_cmd_identifier_token9] = ACTIONS(1782), + [aux_sym_cmd_identifier_token10] = ACTIONS(1782), + [aux_sym_cmd_identifier_token11] = ACTIONS(1782), + [aux_sym_cmd_identifier_token12] = ACTIONS(1782), + [aux_sym_cmd_identifier_token13] = ACTIONS(1782), + [aux_sym_cmd_identifier_token14] = ACTIONS(1782), + [aux_sym_cmd_identifier_token15] = ACTIONS(1782), + [aux_sym_cmd_identifier_token16] = ACTIONS(1782), + [aux_sym_cmd_identifier_token17] = ACTIONS(1782), + [aux_sym_cmd_identifier_token18] = ACTIONS(1782), + [aux_sym_cmd_identifier_token19] = ACTIONS(1782), + [aux_sym_cmd_identifier_token20] = ACTIONS(1782), + [aux_sym_cmd_identifier_token21] = ACTIONS(1782), + [aux_sym_cmd_identifier_token22] = ACTIONS(1782), + [aux_sym_cmd_identifier_token23] = ACTIONS(1782), + [aux_sym_cmd_identifier_token24] = ACTIONS(1782), + [aux_sym_cmd_identifier_token25] = ACTIONS(1782), + [aux_sym_cmd_identifier_token26] = ACTIONS(1782), + [aux_sym_cmd_identifier_token27] = ACTIONS(1782), + [aux_sym_cmd_identifier_token28] = ACTIONS(1782), + [aux_sym_cmd_identifier_token29] = ACTIONS(1782), + [aux_sym_cmd_identifier_token30] = ACTIONS(1782), + [aux_sym_cmd_identifier_token31] = ACTIONS(1782), + [aux_sym_cmd_identifier_token32] = ACTIONS(1782), + [aux_sym_cmd_identifier_token33] = ACTIONS(1782), + [aux_sym_cmd_identifier_token34] = ACTIONS(1782), + [aux_sym_cmd_identifier_token35] = ACTIONS(1782), + [aux_sym_cmd_identifier_token36] = ACTIONS(1782), + [aux_sym_cmd_identifier_token37] = ACTIONS(1782), + [aux_sym_cmd_identifier_token38] = ACTIONS(1782), + [aux_sym_cmd_identifier_token39] = ACTIONS(1782), + [aux_sym_cmd_identifier_token40] = ACTIONS(1782), + [anon_sym_def] = ACTIONS(1782), + [anon_sym_export_DASHenv] = ACTIONS(1782), + [anon_sym_extern] = ACTIONS(1782), + [anon_sym_module] = ACTIONS(1782), + [anon_sym_use] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_DOLLAR] = ACTIONS(1782), + [anon_sym_error] = ACTIONS(1782), + [anon_sym_DASH2] = ACTIONS(1782), + [anon_sym_break] = ACTIONS(1782), + [anon_sym_continue] = ACTIONS(1782), + [anon_sym_for] = ACTIONS(1782), + [anon_sym_in2] = ACTIONS(1782), + [anon_sym_loop] = ACTIONS(1782), + [anon_sym_make] = ACTIONS(1782), + [anon_sym_while] = ACTIONS(1782), + [anon_sym_do] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1782), + [anon_sym_match] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_try] = ACTIONS(1782), + [anon_sym_catch] = ACTIONS(1782), + [anon_sym_return] = ACTIONS(1782), + [anon_sym_source] = ACTIONS(1782), + [anon_sym_source_DASHenv] = ACTIONS(1782), + [anon_sym_hide] = ACTIONS(1782), + [anon_sym_hide_DASHenv] = ACTIONS(1782), + [anon_sym_overlay] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1782), + [anon_sym_LPAREN2] = ACTIONS(1784), + [anon_sym_PLUS2] = ACTIONS(1782), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1782), + [anon_sym_DOT_DOT2] = ACTIONS(1786), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1788), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1782), + [aux_sym__val_number_decimal_token1] = ACTIONS(1782), + [aux_sym__val_number_decimal_token2] = ACTIONS(1782), + [aux_sym__val_number_decimal_token3] = ACTIONS(1782), + [aux_sym__val_number_decimal_token4] = ACTIONS(1782), + [aux_sym__val_number_token1] = ACTIONS(1782), + [aux_sym__val_number_token2] = ACTIONS(1782), + [aux_sym__val_number_token3] = ACTIONS(1782), + [aux_sym__val_number_token4] = ACTIONS(1782), + [aux_sym__val_number_token5] = ACTIONS(1782), + [aux_sym__val_number_token6] = ACTIONS(1782), + [anon_sym_DQUOTE] = ACTIONS(1782), + [sym__str_single_quotes] = ACTIONS(1782), + [sym__str_back_ticks] = ACTIONS(1782), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1782), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1782), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1782), + [sym__entry_separator] = ACTIONS(1790), + [anon_sym_register] = ACTIONS(1782), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1790), + }, + [375] = { + [sym_path] = STATE(434), + [sym_comment] = STATE(375), + [aux_sym_cell_path_repeat1] = STATE(377), + [anon_sym_export] = ACTIONS(938), + [anon_sym_alias] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_let_DASHenv] = ACTIONS(938), + [anon_sym_mut] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [aux_sym_cmd_identifier_token1] = ACTIONS(938), + [aux_sym_cmd_identifier_token2] = ACTIONS(940), + [aux_sym_cmd_identifier_token3] = ACTIONS(940), + [aux_sym_cmd_identifier_token4] = ACTIONS(940), + [aux_sym_cmd_identifier_token5] = ACTIONS(940), + [aux_sym_cmd_identifier_token6] = ACTIONS(940), + [aux_sym_cmd_identifier_token7] = ACTIONS(940), + [aux_sym_cmd_identifier_token8] = ACTIONS(938), + [aux_sym_cmd_identifier_token9] = ACTIONS(938), + [aux_sym_cmd_identifier_token10] = ACTIONS(940), + [aux_sym_cmd_identifier_token11] = ACTIONS(940), + [aux_sym_cmd_identifier_token12] = ACTIONS(938), + [aux_sym_cmd_identifier_token13] = ACTIONS(938), + [aux_sym_cmd_identifier_token14] = ACTIONS(938), + [aux_sym_cmd_identifier_token15] = ACTIONS(938), + [aux_sym_cmd_identifier_token16] = ACTIONS(940), + [aux_sym_cmd_identifier_token17] = ACTIONS(940), + [aux_sym_cmd_identifier_token18] = ACTIONS(940), + [aux_sym_cmd_identifier_token19] = ACTIONS(940), + [aux_sym_cmd_identifier_token20] = ACTIONS(940), + [aux_sym_cmd_identifier_token21] = ACTIONS(940), + [aux_sym_cmd_identifier_token22] = ACTIONS(940), + [aux_sym_cmd_identifier_token23] = ACTIONS(940), + [aux_sym_cmd_identifier_token24] = ACTIONS(940), + [aux_sym_cmd_identifier_token25] = ACTIONS(940), + [aux_sym_cmd_identifier_token26] = ACTIONS(940), + [aux_sym_cmd_identifier_token27] = ACTIONS(940), + [aux_sym_cmd_identifier_token28] = ACTIONS(940), + [aux_sym_cmd_identifier_token29] = ACTIONS(940), + [aux_sym_cmd_identifier_token30] = ACTIONS(940), + [aux_sym_cmd_identifier_token31] = ACTIONS(940), + [aux_sym_cmd_identifier_token32] = ACTIONS(940), + [aux_sym_cmd_identifier_token33] = ACTIONS(940), + [aux_sym_cmd_identifier_token34] = ACTIONS(938), + [aux_sym_cmd_identifier_token35] = ACTIONS(940), + [aux_sym_cmd_identifier_token36] = ACTIONS(940), + [aux_sym_cmd_identifier_token37] = ACTIONS(940), + [aux_sym_cmd_identifier_token38] = ACTIONS(938), + [aux_sym_cmd_identifier_token39] = ACTIONS(940), + [aux_sym_cmd_identifier_token40] = ACTIONS(940), + [anon_sym_def] = ACTIONS(938), + [anon_sym_export_DASHenv] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(940), + [anon_sym_COMMA] = ACTIONS(940), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_error] = ACTIONS(938), + [anon_sym_DASH2] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_in2] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_make] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_else] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(940), + [anon_sym_try] = ACTIONS(938), + [anon_sym_catch] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_PLUS2] = ACTIONS(938), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(940), + [anon_sym_DOT_DOT2] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(940), + [anon_sym_DOT_DOT_LT2] = ACTIONS(940), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(940), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(940), + [aux_sym__val_number_decimal_token3] = ACTIONS(940), + [aux_sym__val_number_decimal_token4] = ACTIONS(940), + [aux_sym__val_number_token1] = ACTIONS(940), + [aux_sym__val_number_token2] = ACTIONS(940), + [aux_sym__val_number_token3] = ACTIONS(940), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(940), + [sym__str_single_quotes] = ACTIONS(940), + [sym__str_back_ticks] = ACTIONS(940), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(940), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(940), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(940), + [anon_sym_register] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(1723), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(940), + }, + [376] = { + [sym_comment] = STATE(376), + [anon_sym_export] = ACTIONS(1686), + [anon_sym_alias] = ACTIONS(1686), + [anon_sym_let] = ACTIONS(1686), + [anon_sym_let_DASHenv] = ACTIONS(1686), + [anon_sym_mut] = ACTIONS(1686), + [anon_sym_const] = ACTIONS(1686), + [aux_sym_cmd_identifier_token1] = ACTIONS(1686), + [aux_sym_cmd_identifier_token2] = ACTIONS(1686), + [aux_sym_cmd_identifier_token3] = ACTIONS(1686), + [aux_sym_cmd_identifier_token4] = ACTIONS(1686), + [aux_sym_cmd_identifier_token5] = ACTIONS(1686), + [aux_sym_cmd_identifier_token6] = ACTIONS(1686), + [aux_sym_cmd_identifier_token7] = ACTIONS(1686), + [aux_sym_cmd_identifier_token8] = ACTIONS(1686), + [aux_sym_cmd_identifier_token9] = ACTIONS(1686), + [aux_sym_cmd_identifier_token10] = ACTIONS(1686), + [aux_sym_cmd_identifier_token11] = ACTIONS(1686), + [aux_sym_cmd_identifier_token12] = ACTIONS(1686), + [aux_sym_cmd_identifier_token13] = ACTIONS(1686), + [aux_sym_cmd_identifier_token14] = ACTIONS(1686), + [aux_sym_cmd_identifier_token15] = ACTIONS(1686), + [aux_sym_cmd_identifier_token16] = ACTIONS(1686), + [aux_sym_cmd_identifier_token17] = ACTIONS(1686), + [aux_sym_cmd_identifier_token18] = ACTIONS(1686), + [aux_sym_cmd_identifier_token19] = ACTIONS(1686), + [aux_sym_cmd_identifier_token20] = ACTIONS(1686), + [aux_sym_cmd_identifier_token21] = ACTIONS(1686), + [aux_sym_cmd_identifier_token22] = ACTIONS(1686), + [aux_sym_cmd_identifier_token23] = ACTIONS(1686), + [aux_sym_cmd_identifier_token24] = ACTIONS(1686), + [aux_sym_cmd_identifier_token25] = ACTIONS(1686), + [aux_sym_cmd_identifier_token26] = ACTIONS(1686), + [aux_sym_cmd_identifier_token27] = ACTIONS(1686), + [aux_sym_cmd_identifier_token28] = ACTIONS(1686), + [aux_sym_cmd_identifier_token29] = ACTIONS(1686), + [aux_sym_cmd_identifier_token30] = ACTIONS(1686), + [aux_sym_cmd_identifier_token31] = ACTIONS(1686), + [aux_sym_cmd_identifier_token32] = ACTIONS(1686), + [aux_sym_cmd_identifier_token33] = ACTIONS(1686), + [aux_sym_cmd_identifier_token34] = ACTIONS(1686), + [aux_sym_cmd_identifier_token35] = ACTIONS(1686), + [aux_sym_cmd_identifier_token36] = ACTIONS(1686), + [aux_sym_cmd_identifier_token37] = ACTIONS(1686), + [aux_sym_cmd_identifier_token38] = ACTIONS(1686), + [aux_sym_cmd_identifier_token39] = ACTIONS(1686), + [aux_sym_cmd_identifier_token40] = ACTIONS(1686), + [anon_sym_def] = ACTIONS(1686), + [anon_sym_export_DASHenv] = ACTIONS(1686), + [anon_sym_extern] = ACTIONS(1686), + [anon_sym_module] = ACTIONS(1686), + [anon_sym_use] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_error] = ACTIONS(1686), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_break] = ACTIONS(1686), + [anon_sym_continue] = ACTIONS(1686), + [anon_sym_for] = ACTIONS(1686), + [anon_sym_in2] = ACTIONS(1686), + [anon_sym_loop] = ACTIONS(1686), + [anon_sym_make] = ACTIONS(1686), + [anon_sym_while] = ACTIONS(1686), + [anon_sym_do] = ACTIONS(1686), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_else] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1686), + [anon_sym_try] = ACTIONS(1686), + [anon_sym_catch] = ACTIONS(1686), + [anon_sym_return] = ACTIONS(1686), + [anon_sym_source] = ACTIONS(1686), + [anon_sym_source_DASHenv] = ACTIONS(1686), + [anon_sym_hide] = ACTIONS(1686), + [anon_sym_hide_DASHenv] = ACTIONS(1686), + [anon_sym_overlay] = ACTIONS(1686), + [anon_sym_as] = ACTIONS(1686), + [anon_sym_LPAREN2] = ACTIONS(1688), + [anon_sym_PLUS2] = ACTIONS(1686), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1686), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1686), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1686), + [aux_sym__val_number_decimal_token3] = ACTIONS(1686), + [aux_sym__val_number_decimal_token4] = ACTIONS(1686), + [aux_sym__val_number_token1] = ACTIONS(1686), + [aux_sym__val_number_token2] = ACTIONS(1686), + [aux_sym__val_number_token3] = ACTIONS(1686), + [aux_sym__val_number_token4] = ACTIONS(1686), + [aux_sym__val_number_token5] = ACTIONS(1686), + [aux_sym__val_number_token6] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1686), + [sym__str_single_quotes] = ACTIONS(1686), + [sym__str_back_ticks] = ACTIONS(1686), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1686), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1686), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1686), + [sym__entry_separator] = ACTIONS(1688), + [anon_sym_register] = ACTIONS(1686), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1688), + }, + [377] = { + [sym_path] = STATE(434), + [sym_comment] = STATE(377), + [aux_sym_cell_path_repeat1] = STATE(377), + [anon_sym_export] = ACTIONS(931), + [anon_sym_alias] = ACTIONS(931), + [anon_sym_let] = ACTIONS(931), + [anon_sym_let_DASHenv] = ACTIONS(931), + [anon_sym_mut] = ACTIONS(931), + [anon_sym_const] = ACTIONS(931), + [aux_sym_cmd_identifier_token1] = ACTIONS(931), + [aux_sym_cmd_identifier_token2] = ACTIONS(933), + [aux_sym_cmd_identifier_token3] = ACTIONS(933), + [aux_sym_cmd_identifier_token4] = ACTIONS(933), + [aux_sym_cmd_identifier_token5] = ACTIONS(933), + [aux_sym_cmd_identifier_token6] = ACTIONS(933), + [aux_sym_cmd_identifier_token7] = ACTIONS(933), + [aux_sym_cmd_identifier_token8] = ACTIONS(931), + [aux_sym_cmd_identifier_token9] = ACTIONS(931), + [aux_sym_cmd_identifier_token10] = ACTIONS(933), + [aux_sym_cmd_identifier_token11] = ACTIONS(933), + [aux_sym_cmd_identifier_token12] = ACTIONS(931), + [aux_sym_cmd_identifier_token13] = ACTIONS(931), + [aux_sym_cmd_identifier_token14] = ACTIONS(931), + [aux_sym_cmd_identifier_token15] = ACTIONS(931), + [aux_sym_cmd_identifier_token16] = ACTIONS(933), + [aux_sym_cmd_identifier_token17] = ACTIONS(933), + [aux_sym_cmd_identifier_token18] = ACTIONS(933), + [aux_sym_cmd_identifier_token19] = ACTIONS(933), + [aux_sym_cmd_identifier_token20] = ACTIONS(933), + [aux_sym_cmd_identifier_token21] = ACTIONS(933), + [aux_sym_cmd_identifier_token22] = ACTIONS(933), + [aux_sym_cmd_identifier_token23] = ACTIONS(933), + [aux_sym_cmd_identifier_token24] = ACTIONS(933), + [aux_sym_cmd_identifier_token25] = ACTIONS(933), + [aux_sym_cmd_identifier_token26] = ACTIONS(933), + [aux_sym_cmd_identifier_token27] = ACTIONS(933), + [aux_sym_cmd_identifier_token28] = ACTIONS(933), + [aux_sym_cmd_identifier_token29] = ACTIONS(933), + [aux_sym_cmd_identifier_token30] = ACTIONS(933), + [aux_sym_cmd_identifier_token31] = ACTIONS(933), + [aux_sym_cmd_identifier_token32] = ACTIONS(933), + [aux_sym_cmd_identifier_token33] = ACTIONS(933), + [aux_sym_cmd_identifier_token34] = ACTIONS(931), + [aux_sym_cmd_identifier_token35] = ACTIONS(933), + [aux_sym_cmd_identifier_token36] = ACTIONS(933), + [aux_sym_cmd_identifier_token37] = ACTIONS(933), + [aux_sym_cmd_identifier_token38] = ACTIONS(931), + [aux_sym_cmd_identifier_token39] = ACTIONS(933), + [aux_sym_cmd_identifier_token40] = ACTIONS(933), + [anon_sym_def] = ACTIONS(931), + [anon_sym_export_DASHenv] = ACTIONS(931), + [anon_sym_extern] = ACTIONS(931), + [anon_sym_module] = ACTIONS(931), + [anon_sym_use] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_COMMA] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_error] = ACTIONS(931), + [anon_sym_DASH2] = ACTIONS(931), + [anon_sym_break] = ACTIONS(931), + [anon_sym_continue] = ACTIONS(931), + [anon_sym_for] = ACTIONS(931), + [anon_sym_in2] = ACTIONS(931), + [anon_sym_loop] = ACTIONS(931), + [anon_sym_make] = ACTIONS(931), + [anon_sym_while] = ACTIONS(931), + [anon_sym_do] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_else] = ACTIONS(931), + [anon_sym_match] = ACTIONS(931), + [anon_sym_RBRACE] = ACTIONS(933), + [anon_sym_try] = ACTIONS(931), + [anon_sym_catch] = ACTIONS(931), + [anon_sym_return] = ACTIONS(931), + [anon_sym_source] = ACTIONS(931), + [anon_sym_source_DASHenv] = ACTIONS(931), + [anon_sym_hide] = ACTIONS(931), + [anon_sym_hide_DASHenv] = ACTIONS(931), + [anon_sym_overlay] = ACTIONS(931), + [anon_sym_as] = ACTIONS(931), + [anon_sym_PLUS2] = ACTIONS(931), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(933), + [anon_sym_DOT_DOT2] = ACTIONS(931), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(933), + [anon_sym_DOT_DOT_LT2] = ACTIONS(933), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(933), + [aux_sym__val_number_decimal_token1] = ACTIONS(931), + [aux_sym__val_number_decimal_token2] = ACTIONS(933), + [aux_sym__val_number_decimal_token3] = ACTIONS(933), + [aux_sym__val_number_decimal_token4] = ACTIONS(933), + [aux_sym__val_number_token1] = ACTIONS(933), + [aux_sym__val_number_token2] = ACTIONS(933), + [aux_sym__val_number_token3] = ACTIONS(933), + [aux_sym__val_number_token4] = ACTIONS(931), + [aux_sym__val_number_token5] = ACTIONS(931), + [aux_sym__val_number_token6] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym__str_single_quotes] = ACTIONS(933), + [sym__str_back_ticks] = ACTIONS(933), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(933), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(933), + [anon_sym_register] = ACTIONS(931), + [anon_sym_DOT2] = ACTIONS(1794), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(933), + }, + [378] = { + [sym_comment] = STATE(378), + [anon_sym_export] = ACTIONS(1760), + [anon_sym_alias] = ACTIONS(1760), + [anon_sym_let] = ACTIONS(1760), + [anon_sym_let_DASHenv] = ACTIONS(1760), + [anon_sym_mut] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [aux_sym_cmd_identifier_token1] = ACTIONS(1760), + [aux_sym_cmd_identifier_token2] = ACTIONS(1760), + [aux_sym_cmd_identifier_token3] = ACTIONS(1760), + [aux_sym_cmd_identifier_token4] = ACTIONS(1760), + [aux_sym_cmd_identifier_token5] = ACTIONS(1760), + [aux_sym_cmd_identifier_token6] = ACTIONS(1760), + [aux_sym_cmd_identifier_token7] = ACTIONS(1760), + [aux_sym_cmd_identifier_token8] = ACTIONS(1760), + [aux_sym_cmd_identifier_token9] = ACTIONS(1760), + [aux_sym_cmd_identifier_token10] = ACTIONS(1760), + [aux_sym_cmd_identifier_token11] = ACTIONS(1760), + [aux_sym_cmd_identifier_token12] = ACTIONS(1760), + [aux_sym_cmd_identifier_token13] = ACTIONS(1760), + [aux_sym_cmd_identifier_token14] = ACTIONS(1760), + [aux_sym_cmd_identifier_token15] = ACTIONS(1760), + [aux_sym_cmd_identifier_token16] = ACTIONS(1760), + [aux_sym_cmd_identifier_token17] = ACTIONS(1760), + [aux_sym_cmd_identifier_token18] = ACTIONS(1760), + [aux_sym_cmd_identifier_token19] = ACTIONS(1760), + [aux_sym_cmd_identifier_token20] = ACTIONS(1760), + [aux_sym_cmd_identifier_token21] = ACTIONS(1760), + [aux_sym_cmd_identifier_token22] = ACTIONS(1760), + [aux_sym_cmd_identifier_token23] = ACTIONS(1760), + [aux_sym_cmd_identifier_token24] = ACTIONS(1760), + [aux_sym_cmd_identifier_token25] = ACTIONS(1760), + [aux_sym_cmd_identifier_token26] = ACTIONS(1760), + [aux_sym_cmd_identifier_token27] = ACTIONS(1760), + [aux_sym_cmd_identifier_token28] = ACTIONS(1760), + [aux_sym_cmd_identifier_token29] = ACTIONS(1760), + [aux_sym_cmd_identifier_token30] = ACTIONS(1760), + [aux_sym_cmd_identifier_token31] = ACTIONS(1760), + [aux_sym_cmd_identifier_token32] = ACTIONS(1760), + [aux_sym_cmd_identifier_token33] = ACTIONS(1760), + [aux_sym_cmd_identifier_token34] = ACTIONS(1760), + [aux_sym_cmd_identifier_token35] = ACTIONS(1760), + [aux_sym_cmd_identifier_token36] = ACTIONS(1760), + [aux_sym_cmd_identifier_token37] = ACTIONS(1760), + [aux_sym_cmd_identifier_token38] = ACTIONS(1760), + [aux_sym_cmd_identifier_token39] = ACTIONS(1760), + [aux_sym_cmd_identifier_token40] = ACTIONS(1760), + [anon_sym_def] = ACTIONS(1760), + [anon_sym_export_DASHenv] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym_module] = ACTIONS(1760), + [anon_sym_use] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_COMMA] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_error] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_loop] = ACTIONS(1760), + [anon_sym_make] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_do] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_match] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_catch] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_source] = ACTIONS(1760), + [anon_sym_source_DASHenv] = ACTIONS(1760), + [anon_sym_hide] = ACTIONS(1760), + [anon_sym_hide_DASHenv] = ACTIONS(1760), + [anon_sym_overlay] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1760), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1760), + [aux_sym__val_number_decimal_token4] = ACTIONS(1760), + [aux_sym__val_number_token1] = ACTIONS(1760), + [aux_sym__val_number_token2] = ACTIONS(1760), + [aux_sym__val_number_token3] = ACTIONS(1760), + [aux_sym__val_number_token4] = ACTIONS(1760), + [aux_sym__val_number_token5] = ACTIONS(1760), + [aux_sym__val_number_token6] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1760), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1760), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1760), + [sym__entry_separator] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1760), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1762), + }, + [379] = { + [sym_comment] = STATE(379), + [anon_sym_export] = ACTIONS(1797), + [anon_sym_alias] = ACTIONS(1797), + [anon_sym_let] = ACTIONS(1797), + [anon_sym_let_DASHenv] = ACTIONS(1797), + [anon_sym_mut] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(1797), + [aux_sym_cmd_identifier_token1] = ACTIONS(1797), + [aux_sym_cmd_identifier_token2] = ACTIONS(1797), + [aux_sym_cmd_identifier_token3] = ACTIONS(1797), + [aux_sym_cmd_identifier_token4] = ACTIONS(1797), + [aux_sym_cmd_identifier_token5] = ACTIONS(1797), + [aux_sym_cmd_identifier_token6] = ACTIONS(1797), + [aux_sym_cmd_identifier_token7] = ACTIONS(1797), + [aux_sym_cmd_identifier_token8] = ACTIONS(1797), + [aux_sym_cmd_identifier_token9] = ACTIONS(1797), + [aux_sym_cmd_identifier_token10] = ACTIONS(1797), + [aux_sym_cmd_identifier_token11] = ACTIONS(1797), + [aux_sym_cmd_identifier_token12] = ACTIONS(1797), + [aux_sym_cmd_identifier_token13] = ACTIONS(1797), + [aux_sym_cmd_identifier_token14] = ACTIONS(1797), + [aux_sym_cmd_identifier_token15] = ACTIONS(1797), + [aux_sym_cmd_identifier_token16] = ACTIONS(1797), + [aux_sym_cmd_identifier_token17] = ACTIONS(1797), + [aux_sym_cmd_identifier_token18] = ACTIONS(1797), + [aux_sym_cmd_identifier_token19] = ACTIONS(1797), + [aux_sym_cmd_identifier_token20] = ACTIONS(1797), + [aux_sym_cmd_identifier_token21] = ACTIONS(1797), + [aux_sym_cmd_identifier_token22] = ACTIONS(1797), + [aux_sym_cmd_identifier_token23] = ACTIONS(1797), + [aux_sym_cmd_identifier_token24] = ACTIONS(1797), + [aux_sym_cmd_identifier_token25] = ACTIONS(1797), + [aux_sym_cmd_identifier_token26] = ACTIONS(1797), + [aux_sym_cmd_identifier_token27] = ACTIONS(1797), + [aux_sym_cmd_identifier_token28] = ACTIONS(1797), + [aux_sym_cmd_identifier_token29] = ACTIONS(1797), + [aux_sym_cmd_identifier_token30] = ACTIONS(1797), + [aux_sym_cmd_identifier_token31] = ACTIONS(1797), + [aux_sym_cmd_identifier_token32] = ACTIONS(1797), + [aux_sym_cmd_identifier_token33] = ACTIONS(1797), + [aux_sym_cmd_identifier_token34] = ACTIONS(1797), + [aux_sym_cmd_identifier_token35] = ACTIONS(1797), + [aux_sym_cmd_identifier_token36] = ACTIONS(1797), + [aux_sym_cmd_identifier_token37] = ACTIONS(1797), + [aux_sym_cmd_identifier_token38] = ACTIONS(1797), + [aux_sym_cmd_identifier_token39] = ACTIONS(1797), + [aux_sym_cmd_identifier_token40] = ACTIONS(1797), + [anon_sym_def] = ACTIONS(1797), + [anon_sym_export_DASHenv] = ACTIONS(1797), + [anon_sym_extern] = ACTIONS(1797), + [anon_sym_module] = ACTIONS(1797), + [anon_sym_use] = ACTIONS(1797), + [anon_sym_LPAREN] = ACTIONS(1797), + [anon_sym_COMMA] = ACTIONS(1797), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_error] = ACTIONS(1797), + [anon_sym_DASH2] = ACTIONS(1797), + [anon_sym_break] = ACTIONS(1797), + [anon_sym_continue] = ACTIONS(1797), + [anon_sym_for] = ACTIONS(1797), + [anon_sym_in2] = ACTIONS(1797), + [anon_sym_loop] = ACTIONS(1797), + [anon_sym_make] = ACTIONS(1797), + [anon_sym_while] = ACTIONS(1797), + [anon_sym_do] = ACTIONS(1797), + [anon_sym_if] = ACTIONS(1797), + [anon_sym_else] = ACTIONS(1797), + [anon_sym_match] = ACTIONS(1797), + [anon_sym_RBRACE] = ACTIONS(1797), + [anon_sym_try] = ACTIONS(1797), + [anon_sym_catch] = ACTIONS(1797), + [anon_sym_return] = ACTIONS(1797), + [anon_sym_source] = ACTIONS(1797), + [anon_sym_source_DASHenv] = ACTIONS(1797), + [anon_sym_hide] = ACTIONS(1797), + [anon_sym_hide_DASHenv] = ACTIONS(1797), + [anon_sym_overlay] = ACTIONS(1797), + [anon_sym_as] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(1799), + [anon_sym_PLUS2] = ACTIONS(1797), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1797), + [anon_sym_DOT_DOT2] = ACTIONS(1797), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1799), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1797), + [aux_sym__val_number_decimal_token1] = ACTIONS(1797), + [aux_sym__val_number_decimal_token2] = ACTIONS(1797), + [aux_sym__val_number_decimal_token3] = ACTIONS(1797), + [aux_sym__val_number_decimal_token4] = ACTIONS(1797), + [aux_sym__val_number_token1] = ACTIONS(1797), + [aux_sym__val_number_token2] = ACTIONS(1797), + [aux_sym__val_number_token3] = ACTIONS(1797), + [aux_sym__val_number_token4] = ACTIONS(1797), + [aux_sym__val_number_token5] = ACTIONS(1797), + [aux_sym__val_number_token6] = ACTIONS(1797), + [anon_sym_DQUOTE] = ACTIONS(1797), + [sym__str_single_quotes] = ACTIONS(1797), + [sym__str_back_ticks] = ACTIONS(1797), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1797), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1797), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1797), + [sym__entry_separator] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1797), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1797), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1799), + }, + [380] = { + [sym_comment] = STATE(380), + [anon_sym_export] = ACTIONS(1686), + [anon_sym_alias] = ACTIONS(1686), + [anon_sym_let] = ACTIONS(1686), + [anon_sym_let_DASHenv] = ACTIONS(1686), + [anon_sym_mut] = ACTIONS(1686), + [anon_sym_const] = ACTIONS(1686), + [aux_sym_cmd_identifier_token1] = ACTIONS(1686), + [aux_sym_cmd_identifier_token2] = ACTIONS(1686), + [aux_sym_cmd_identifier_token3] = ACTIONS(1686), + [aux_sym_cmd_identifier_token4] = ACTIONS(1686), + [aux_sym_cmd_identifier_token5] = ACTIONS(1686), + [aux_sym_cmd_identifier_token6] = ACTIONS(1686), + [aux_sym_cmd_identifier_token7] = ACTIONS(1686), + [aux_sym_cmd_identifier_token8] = ACTIONS(1686), + [aux_sym_cmd_identifier_token9] = ACTIONS(1686), + [aux_sym_cmd_identifier_token10] = ACTIONS(1686), + [aux_sym_cmd_identifier_token11] = ACTIONS(1686), + [aux_sym_cmd_identifier_token12] = ACTIONS(1686), + [aux_sym_cmd_identifier_token13] = ACTIONS(1686), + [aux_sym_cmd_identifier_token14] = ACTIONS(1686), + [aux_sym_cmd_identifier_token15] = ACTIONS(1686), + [aux_sym_cmd_identifier_token16] = ACTIONS(1686), + [aux_sym_cmd_identifier_token17] = ACTIONS(1686), + [aux_sym_cmd_identifier_token18] = ACTIONS(1686), + [aux_sym_cmd_identifier_token19] = ACTIONS(1686), + [aux_sym_cmd_identifier_token20] = ACTIONS(1686), + [aux_sym_cmd_identifier_token21] = ACTIONS(1686), + [aux_sym_cmd_identifier_token22] = ACTIONS(1686), + [aux_sym_cmd_identifier_token23] = ACTIONS(1686), + [aux_sym_cmd_identifier_token24] = ACTIONS(1686), + [aux_sym_cmd_identifier_token25] = ACTIONS(1686), + [aux_sym_cmd_identifier_token26] = ACTIONS(1686), + [aux_sym_cmd_identifier_token27] = ACTIONS(1686), + [aux_sym_cmd_identifier_token28] = ACTIONS(1686), + [aux_sym_cmd_identifier_token29] = ACTIONS(1686), + [aux_sym_cmd_identifier_token30] = ACTIONS(1686), + [aux_sym_cmd_identifier_token31] = ACTIONS(1686), + [aux_sym_cmd_identifier_token32] = ACTIONS(1686), + [aux_sym_cmd_identifier_token33] = ACTIONS(1686), + [aux_sym_cmd_identifier_token34] = ACTIONS(1686), + [aux_sym_cmd_identifier_token35] = ACTIONS(1686), + [aux_sym_cmd_identifier_token36] = ACTIONS(1686), + [aux_sym_cmd_identifier_token37] = ACTIONS(1686), + [aux_sym_cmd_identifier_token38] = ACTIONS(1686), + [aux_sym_cmd_identifier_token39] = ACTIONS(1686), + [aux_sym_cmd_identifier_token40] = ACTIONS(1686), + [anon_sym_def] = ACTIONS(1686), + [anon_sym_export_DASHenv] = ACTIONS(1686), + [anon_sym_extern] = ACTIONS(1686), + [anon_sym_module] = ACTIONS(1686), + [anon_sym_use] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_error] = ACTIONS(1686), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_break] = ACTIONS(1686), + [anon_sym_continue] = ACTIONS(1686), + [anon_sym_for] = ACTIONS(1686), + [anon_sym_in2] = ACTIONS(1686), + [anon_sym_loop] = ACTIONS(1686), + [anon_sym_make] = ACTIONS(1686), + [anon_sym_while] = ACTIONS(1686), + [anon_sym_do] = ACTIONS(1686), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_else] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1686), + [anon_sym_try] = ACTIONS(1686), + [anon_sym_catch] = ACTIONS(1686), + [anon_sym_return] = ACTIONS(1686), + [anon_sym_source] = ACTIONS(1686), + [anon_sym_source_DASHenv] = ACTIONS(1686), + [anon_sym_hide] = ACTIONS(1686), + [anon_sym_hide_DASHenv] = ACTIONS(1686), + [anon_sym_overlay] = ACTIONS(1686), + [anon_sym_as] = ACTIONS(1686), + [anon_sym_PLUS2] = ACTIONS(1686), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1686), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [aux_sym__immediate_decimal_token1] = ACTIONS(1801), + [aux_sym__immediate_decimal_token2] = ACTIONS(1803), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1686), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1686), + [aux_sym__val_number_decimal_token3] = ACTIONS(1686), + [aux_sym__val_number_decimal_token4] = ACTIONS(1686), + [aux_sym__val_number_token1] = ACTIONS(1686), + [aux_sym__val_number_token2] = ACTIONS(1686), + [aux_sym__val_number_token3] = ACTIONS(1686), + [aux_sym__val_number_token4] = ACTIONS(1686), + [aux_sym__val_number_token5] = ACTIONS(1686), + [aux_sym__val_number_token6] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1686), + [sym__str_single_quotes] = ACTIONS(1686), + [sym__str_back_ticks] = ACTIONS(1686), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1686), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1686), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1686), + [sym__entry_separator] = ACTIONS(1688), + [anon_sym_register] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1688), + }, + [381] = { + [sym_comment] = STATE(381), + [anon_sym_export] = ACTIONS(950), + [anon_sym_alias] = ACTIONS(950), + [anon_sym_let] = ACTIONS(950), + [anon_sym_let_DASHenv] = ACTIONS(950), + [anon_sym_mut] = ACTIONS(950), + [anon_sym_const] = ACTIONS(950), + [aux_sym_cmd_identifier_token1] = ACTIONS(950), + [aux_sym_cmd_identifier_token2] = ACTIONS(950), + [aux_sym_cmd_identifier_token3] = ACTIONS(950), + [aux_sym_cmd_identifier_token4] = ACTIONS(950), + [aux_sym_cmd_identifier_token5] = ACTIONS(950), + [aux_sym_cmd_identifier_token6] = ACTIONS(950), + [aux_sym_cmd_identifier_token7] = ACTIONS(950), + [aux_sym_cmd_identifier_token8] = ACTIONS(950), + [aux_sym_cmd_identifier_token9] = ACTIONS(950), + [aux_sym_cmd_identifier_token10] = ACTIONS(950), + [aux_sym_cmd_identifier_token11] = ACTIONS(950), + [aux_sym_cmd_identifier_token12] = ACTIONS(950), + [aux_sym_cmd_identifier_token13] = ACTIONS(950), + [aux_sym_cmd_identifier_token14] = ACTIONS(950), + [aux_sym_cmd_identifier_token15] = ACTIONS(950), + [aux_sym_cmd_identifier_token16] = ACTIONS(950), + [aux_sym_cmd_identifier_token17] = ACTIONS(950), + [aux_sym_cmd_identifier_token18] = ACTIONS(950), + [aux_sym_cmd_identifier_token19] = ACTIONS(950), + [aux_sym_cmd_identifier_token20] = ACTIONS(950), + [aux_sym_cmd_identifier_token21] = ACTIONS(950), + [aux_sym_cmd_identifier_token22] = ACTIONS(950), + [aux_sym_cmd_identifier_token23] = ACTIONS(950), + [aux_sym_cmd_identifier_token24] = ACTIONS(950), + [aux_sym_cmd_identifier_token25] = ACTIONS(950), + [aux_sym_cmd_identifier_token26] = ACTIONS(950), + [aux_sym_cmd_identifier_token27] = ACTIONS(950), + [aux_sym_cmd_identifier_token28] = ACTIONS(950), + [aux_sym_cmd_identifier_token29] = ACTIONS(950), + [aux_sym_cmd_identifier_token30] = ACTIONS(950), + [aux_sym_cmd_identifier_token31] = ACTIONS(950), + [aux_sym_cmd_identifier_token32] = ACTIONS(950), + [aux_sym_cmd_identifier_token33] = ACTIONS(950), + [aux_sym_cmd_identifier_token34] = ACTIONS(950), + [aux_sym_cmd_identifier_token35] = ACTIONS(950), + [aux_sym_cmd_identifier_token36] = ACTIONS(950), + [aux_sym_cmd_identifier_token37] = ACTIONS(950), + [aux_sym_cmd_identifier_token38] = ACTIONS(950), + [aux_sym_cmd_identifier_token39] = ACTIONS(950), + [aux_sym_cmd_identifier_token40] = ACTIONS(950), + [anon_sym_def] = ACTIONS(950), + [anon_sym_export_DASHenv] = ACTIONS(950), + [anon_sym_extern] = ACTIONS(950), + [anon_sym_module] = ACTIONS(950), + [anon_sym_use] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(950), + [anon_sym_COMMA] = ACTIONS(950), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_error] = ACTIONS(950), + [anon_sym_DASH2] = ACTIONS(950), + [anon_sym_break] = ACTIONS(950), + [anon_sym_continue] = ACTIONS(950), + [anon_sym_for] = ACTIONS(950), + [anon_sym_in2] = ACTIONS(950), + [anon_sym_loop] = ACTIONS(950), + [anon_sym_make] = ACTIONS(950), + [anon_sym_while] = ACTIONS(950), + [anon_sym_do] = ACTIONS(950), + [anon_sym_if] = ACTIONS(950), + [anon_sym_else] = ACTIONS(950), + [anon_sym_match] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(950), + [anon_sym_try] = ACTIONS(950), + [anon_sym_catch] = ACTIONS(950), + [anon_sym_return] = ACTIONS(950), + [anon_sym_source] = ACTIONS(950), + [anon_sym_source_DASHenv] = ACTIONS(950), + [anon_sym_hide] = ACTIONS(950), + [anon_sym_hide_DASHenv] = ACTIONS(950), + [anon_sym_overlay] = ACTIONS(950), + [anon_sym_as] = ACTIONS(950), + [anon_sym_QMARK2] = ACTIONS(950), + [anon_sym_PLUS2] = ACTIONS(950), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(950), + [anon_sym_DOT_DOT2] = ACTIONS(950), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(952), + [anon_sym_DOT_DOT_LT2] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(950), + [aux_sym__val_number_decimal_token1] = ACTIONS(950), + [aux_sym__val_number_decimal_token2] = ACTIONS(950), + [aux_sym__val_number_decimal_token3] = ACTIONS(950), + [aux_sym__val_number_decimal_token4] = ACTIONS(950), + [aux_sym__val_number_token1] = ACTIONS(950), + [aux_sym__val_number_token2] = ACTIONS(950), + [aux_sym__val_number_token3] = ACTIONS(950), + [aux_sym__val_number_token4] = ACTIONS(950), + [aux_sym__val_number_token5] = ACTIONS(950), + [aux_sym__val_number_token6] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym__str_single_quotes] = ACTIONS(950), + [sym__str_back_ticks] = ACTIONS(950), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(950), + [sym__entry_separator] = ACTIONS(952), + [anon_sym_register] = ACTIONS(950), + [anon_sym_DOT2] = ACTIONS(950), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(952), + }, + [382] = { + [sym_comment] = STATE(382), [anon_sym_export] = ACTIONS(942), [anon_sym_alias] = ACTIONS(942), [anon_sym_let] = ACTIONS(942), @@ -116845,7 +116595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(942), [anon_sym_overlay] = ACTIONS(942), [anon_sym_as] = ACTIONS(942), - [anon_sym_QMARK2] = ACTIONS(1798), + [anon_sym_QMARK2] = ACTIONS(942), [anon_sym_PLUS2] = ACTIONS(942), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(942), [anon_sym_DOT_DOT2] = ACTIONS(942), @@ -116874,116 +116624,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(944), }, - [375] = { - [sym_comment] = STATE(375), - [anon_sym_export] = ACTIONS(948), - [anon_sym_alias] = ACTIONS(948), - [anon_sym_let] = ACTIONS(948), - [anon_sym_let_DASHenv] = ACTIONS(948), - [anon_sym_mut] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [aux_sym_cmd_identifier_token1] = ACTIONS(948), - [aux_sym_cmd_identifier_token2] = ACTIONS(948), - [aux_sym_cmd_identifier_token3] = ACTIONS(948), - [aux_sym_cmd_identifier_token4] = ACTIONS(948), - [aux_sym_cmd_identifier_token5] = ACTIONS(948), - [aux_sym_cmd_identifier_token6] = ACTIONS(948), - [aux_sym_cmd_identifier_token7] = ACTIONS(948), - [aux_sym_cmd_identifier_token8] = ACTIONS(948), - [aux_sym_cmd_identifier_token9] = ACTIONS(948), - [aux_sym_cmd_identifier_token10] = ACTIONS(948), - [aux_sym_cmd_identifier_token11] = ACTIONS(948), - [aux_sym_cmd_identifier_token12] = ACTIONS(948), - [aux_sym_cmd_identifier_token13] = ACTIONS(948), - [aux_sym_cmd_identifier_token14] = ACTIONS(948), - [aux_sym_cmd_identifier_token15] = ACTIONS(948), - [aux_sym_cmd_identifier_token16] = ACTIONS(948), - [aux_sym_cmd_identifier_token17] = ACTIONS(948), - [aux_sym_cmd_identifier_token18] = ACTIONS(948), - [aux_sym_cmd_identifier_token19] = ACTIONS(948), - [aux_sym_cmd_identifier_token20] = ACTIONS(948), - [aux_sym_cmd_identifier_token21] = ACTIONS(948), - [aux_sym_cmd_identifier_token22] = ACTIONS(948), - [aux_sym_cmd_identifier_token23] = ACTIONS(948), - [aux_sym_cmd_identifier_token24] = ACTIONS(948), - [aux_sym_cmd_identifier_token25] = ACTIONS(948), - [aux_sym_cmd_identifier_token26] = ACTIONS(948), - [aux_sym_cmd_identifier_token27] = ACTIONS(948), - [aux_sym_cmd_identifier_token28] = ACTIONS(948), - [aux_sym_cmd_identifier_token29] = ACTIONS(948), - [aux_sym_cmd_identifier_token30] = ACTIONS(948), - [aux_sym_cmd_identifier_token31] = ACTIONS(948), - [aux_sym_cmd_identifier_token32] = ACTIONS(948), - [aux_sym_cmd_identifier_token33] = ACTIONS(948), - [aux_sym_cmd_identifier_token34] = ACTIONS(948), - [aux_sym_cmd_identifier_token35] = ACTIONS(948), - [aux_sym_cmd_identifier_token36] = ACTIONS(948), - [aux_sym_cmd_identifier_token37] = ACTIONS(948), - [aux_sym_cmd_identifier_token38] = ACTIONS(948), - [aux_sym_cmd_identifier_token39] = ACTIONS(948), - [aux_sym_cmd_identifier_token40] = ACTIONS(948), - [anon_sym_def] = ACTIONS(948), - [anon_sym_export_DASHenv] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_use] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(948), - [anon_sym_COMMA] = ACTIONS(948), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_error] = ACTIONS(948), - [anon_sym_DASH2] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_in2] = ACTIONS(948), - [anon_sym_loop] = ACTIONS(948), - [anon_sym_make] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_match] = ACTIONS(948), - [anon_sym_RBRACE] = ACTIONS(948), - [anon_sym_try] = ACTIONS(948), - [anon_sym_catch] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_source] = ACTIONS(948), - [anon_sym_source_DASHenv] = ACTIONS(948), - [anon_sym_hide] = ACTIONS(948), - [anon_sym_hide_DASHenv] = ACTIONS(948), - [anon_sym_overlay] = ACTIONS(948), - [anon_sym_as] = ACTIONS(948), - [anon_sym_QMARK2] = ACTIONS(1800), - [anon_sym_PLUS2] = ACTIONS(948), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(948), - [anon_sym_DOT_DOT2] = ACTIONS(948), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), - [anon_sym_DOT_DOT_LT2] = ACTIONS(950), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(948), - [aux_sym__val_number_decimal_token1] = ACTIONS(948), - [aux_sym__val_number_decimal_token2] = ACTIONS(948), - [aux_sym__val_number_decimal_token3] = ACTIONS(948), - [aux_sym__val_number_decimal_token4] = ACTIONS(948), - [aux_sym__val_number_token1] = ACTIONS(948), - [aux_sym__val_number_token2] = ACTIONS(948), - [aux_sym__val_number_token3] = ACTIONS(948), - [aux_sym__val_number_token4] = ACTIONS(948), - [aux_sym__val_number_token5] = ACTIONS(948), - [aux_sym__val_number_token6] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(948), - [sym__str_single_quotes] = ACTIONS(948), - [sym__str_back_ticks] = ACTIONS(948), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(948), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(948), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(948), - [sym__entry_separator] = ACTIONS(950), - [anon_sym_register] = ACTIONS(948), - [anon_sym_DOT2] = ACTIONS(948), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(950), - }, - [376] = { - [sym_comment] = STATE(376), + [383] = { + [sym_comment] = STATE(383), [anon_sym_export] = ACTIONS(954), [anon_sym_alias] = ACTIONS(954), [anon_sym_let] = ACTIONS(954), @@ -117090,1412 +116732,549 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(956), }, - [377] = { - [sym_comment] = STATE(377), - [anon_sym_export] = ACTIONS(962), - [anon_sym_alias] = ACTIONS(962), - [anon_sym_let] = ACTIONS(962), - [anon_sym_let_DASHenv] = ACTIONS(962), - [anon_sym_mut] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [aux_sym_cmd_identifier_token1] = ACTIONS(962), - [aux_sym_cmd_identifier_token2] = ACTIONS(962), - [aux_sym_cmd_identifier_token3] = ACTIONS(962), - [aux_sym_cmd_identifier_token4] = ACTIONS(962), - [aux_sym_cmd_identifier_token5] = ACTIONS(962), - [aux_sym_cmd_identifier_token6] = ACTIONS(962), - [aux_sym_cmd_identifier_token7] = ACTIONS(962), - [aux_sym_cmd_identifier_token8] = ACTIONS(962), - [aux_sym_cmd_identifier_token9] = ACTIONS(962), - [aux_sym_cmd_identifier_token10] = ACTIONS(962), - [aux_sym_cmd_identifier_token11] = ACTIONS(962), - [aux_sym_cmd_identifier_token12] = ACTIONS(962), - [aux_sym_cmd_identifier_token13] = ACTIONS(962), - [aux_sym_cmd_identifier_token14] = ACTIONS(962), - [aux_sym_cmd_identifier_token15] = ACTIONS(962), - [aux_sym_cmd_identifier_token16] = ACTIONS(962), - [aux_sym_cmd_identifier_token17] = ACTIONS(962), - [aux_sym_cmd_identifier_token18] = ACTIONS(962), - [aux_sym_cmd_identifier_token19] = ACTIONS(962), - [aux_sym_cmd_identifier_token20] = ACTIONS(962), - [aux_sym_cmd_identifier_token21] = ACTIONS(962), - [aux_sym_cmd_identifier_token22] = ACTIONS(962), - [aux_sym_cmd_identifier_token23] = ACTIONS(962), - [aux_sym_cmd_identifier_token24] = ACTIONS(962), - [aux_sym_cmd_identifier_token25] = ACTIONS(962), - [aux_sym_cmd_identifier_token26] = ACTIONS(962), - [aux_sym_cmd_identifier_token27] = ACTIONS(962), - [aux_sym_cmd_identifier_token28] = ACTIONS(962), - [aux_sym_cmd_identifier_token29] = ACTIONS(962), - [aux_sym_cmd_identifier_token30] = ACTIONS(962), - [aux_sym_cmd_identifier_token31] = ACTIONS(962), - [aux_sym_cmd_identifier_token32] = ACTIONS(962), - [aux_sym_cmd_identifier_token33] = ACTIONS(962), - [aux_sym_cmd_identifier_token34] = ACTIONS(962), - [aux_sym_cmd_identifier_token35] = ACTIONS(962), - [aux_sym_cmd_identifier_token36] = ACTIONS(962), - [aux_sym_cmd_identifier_token37] = ACTIONS(962), - [aux_sym_cmd_identifier_token38] = ACTIONS(962), - [aux_sym_cmd_identifier_token39] = ACTIONS(962), - [aux_sym_cmd_identifier_token40] = ACTIONS(962), - [anon_sym_def] = ACTIONS(962), - [anon_sym_export_DASHenv] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_module] = ACTIONS(962), - [anon_sym_use] = ACTIONS(962), - [anon_sym_LPAREN] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(962), - [anon_sym_error] = ACTIONS(962), - [anon_sym_DASH2] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_in2] = ACTIONS(962), - [anon_sym_loop] = ACTIONS(962), - [anon_sym_make] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [anon_sym_else] = ACTIONS(962), - [anon_sym_match] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(962), - [anon_sym_try] = ACTIONS(962), - [anon_sym_catch] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_source] = ACTIONS(962), - [anon_sym_source_DASHenv] = ACTIONS(962), - [anon_sym_hide] = ACTIONS(962), - [anon_sym_hide_DASHenv] = ACTIONS(962), - [anon_sym_overlay] = ACTIONS(962), - [anon_sym_as] = ACTIONS(962), - [anon_sym_QMARK2] = ACTIONS(962), - [anon_sym_PLUS2] = ACTIONS(962), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(962), - [anon_sym_DOT_DOT2] = ACTIONS(962), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), - [anon_sym_DOT_DOT_LT2] = ACTIONS(964), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(962), - [aux_sym__val_number_decimal_token1] = ACTIONS(962), - [aux_sym__val_number_decimal_token2] = ACTIONS(962), - [aux_sym__val_number_decimal_token3] = ACTIONS(962), - [aux_sym__val_number_decimal_token4] = ACTIONS(962), - [aux_sym__val_number_token1] = ACTIONS(962), - [aux_sym__val_number_token2] = ACTIONS(962), - [aux_sym__val_number_token3] = ACTIONS(962), - [aux_sym__val_number_token4] = ACTIONS(962), - [aux_sym__val_number_token5] = ACTIONS(962), - [aux_sym__val_number_token6] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym__str_single_quotes] = ACTIONS(962), - [sym__str_back_ticks] = ACTIONS(962), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(962), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(962), - [sym__entry_separator] = ACTIONS(964), - [anon_sym_register] = ACTIONS(962), - [anon_sym_DOT2] = ACTIONS(962), + [384] = { + [sym_comment] = STATE(384), + [anon_sym_export] = ACTIONS(1805), + [anon_sym_alias] = ACTIONS(1805), + [anon_sym_let] = ACTIONS(1805), + [anon_sym_let_DASHenv] = ACTIONS(1805), + [anon_sym_mut] = ACTIONS(1805), + [anon_sym_const] = ACTIONS(1805), + [aux_sym_cmd_identifier_token1] = ACTIONS(1805), + [aux_sym_cmd_identifier_token2] = ACTIONS(1805), + [aux_sym_cmd_identifier_token3] = ACTIONS(1805), + [aux_sym_cmd_identifier_token4] = ACTIONS(1805), + [aux_sym_cmd_identifier_token5] = ACTIONS(1805), + [aux_sym_cmd_identifier_token6] = ACTIONS(1805), + [aux_sym_cmd_identifier_token7] = ACTIONS(1805), + [aux_sym_cmd_identifier_token8] = ACTIONS(1805), + [aux_sym_cmd_identifier_token9] = ACTIONS(1805), + [aux_sym_cmd_identifier_token10] = ACTIONS(1805), + [aux_sym_cmd_identifier_token11] = ACTIONS(1805), + [aux_sym_cmd_identifier_token12] = ACTIONS(1805), + [aux_sym_cmd_identifier_token13] = ACTIONS(1805), + [aux_sym_cmd_identifier_token14] = ACTIONS(1805), + [aux_sym_cmd_identifier_token15] = ACTIONS(1805), + [aux_sym_cmd_identifier_token16] = ACTIONS(1805), + [aux_sym_cmd_identifier_token17] = ACTIONS(1805), + [aux_sym_cmd_identifier_token18] = ACTIONS(1805), + [aux_sym_cmd_identifier_token19] = ACTIONS(1805), + [aux_sym_cmd_identifier_token20] = ACTIONS(1805), + [aux_sym_cmd_identifier_token21] = ACTIONS(1805), + [aux_sym_cmd_identifier_token22] = ACTIONS(1805), + [aux_sym_cmd_identifier_token23] = ACTIONS(1805), + [aux_sym_cmd_identifier_token24] = ACTIONS(1805), + [aux_sym_cmd_identifier_token25] = ACTIONS(1805), + [aux_sym_cmd_identifier_token26] = ACTIONS(1805), + [aux_sym_cmd_identifier_token27] = ACTIONS(1805), + [aux_sym_cmd_identifier_token28] = ACTIONS(1805), + [aux_sym_cmd_identifier_token29] = ACTIONS(1805), + [aux_sym_cmd_identifier_token30] = ACTIONS(1805), + [aux_sym_cmd_identifier_token31] = ACTIONS(1805), + [aux_sym_cmd_identifier_token32] = ACTIONS(1805), + [aux_sym_cmd_identifier_token33] = ACTIONS(1805), + [aux_sym_cmd_identifier_token34] = ACTIONS(1805), + [aux_sym_cmd_identifier_token35] = ACTIONS(1805), + [aux_sym_cmd_identifier_token36] = ACTIONS(1805), + [aux_sym_cmd_identifier_token37] = ACTIONS(1805), + [aux_sym_cmd_identifier_token38] = ACTIONS(1805), + [aux_sym_cmd_identifier_token39] = ACTIONS(1805), + [aux_sym_cmd_identifier_token40] = ACTIONS(1805), + [anon_sym_def] = ACTIONS(1805), + [anon_sym_export_DASHenv] = ACTIONS(1805), + [anon_sym_extern] = ACTIONS(1805), + [anon_sym_module] = ACTIONS(1805), + [anon_sym_use] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1805), + [anon_sym_COMMA] = ACTIONS(1805), + [anon_sym_DOLLAR] = ACTIONS(1805), + [anon_sym_error] = ACTIONS(1805), + [anon_sym_DASH2] = ACTIONS(1805), + [anon_sym_break] = ACTIONS(1805), + [anon_sym_continue] = ACTIONS(1805), + [anon_sym_for] = ACTIONS(1805), + [anon_sym_in2] = ACTIONS(1805), + [anon_sym_loop] = ACTIONS(1805), + [anon_sym_make] = ACTIONS(1805), + [anon_sym_while] = ACTIONS(1805), + [anon_sym_do] = ACTIONS(1805), + [anon_sym_if] = ACTIONS(1805), + [anon_sym_else] = ACTIONS(1805), + [anon_sym_match] = ACTIONS(1805), + [anon_sym_RBRACE] = ACTIONS(1805), + [anon_sym_try] = ACTIONS(1805), + [anon_sym_catch] = ACTIONS(1805), + [anon_sym_return] = ACTIONS(1805), + [anon_sym_source] = ACTIONS(1805), + [anon_sym_source_DASHenv] = ACTIONS(1805), + [anon_sym_hide] = ACTIONS(1805), + [anon_sym_hide_DASHenv] = ACTIONS(1805), + [anon_sym_overlay] = ACTIONS(1805), + [anon_sym_as] = ACTIONS(1805), + [anon_sym_LPAREN2] = ACTIONS(1807), + [anon_sym_PLUS2] = ACTIONS(1805), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1805), + [anon_sym_DOT_DOT2] = ACTIONS(1809), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1811), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1811), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1805), + [aux_sym__val_number_decimal_token1] = ACTIONS(1805), + [aux_sym__val_number_decimal_token2] = ACTIONS(1805), + [aux_sym__val_number_decimal_token3] = ACTIONS(1805), + [aux_sym__val_number_decimal_token4] = ACTIONS(1805), + [aux_sym__val_number_token1] = ACTIONS(1805), + [aux_sym__val_number_token2] = ACTIONS(1805), + [aux_sym__val_number_token3] = ACTIONS(1805), + [aux_sym__val_number_token4] = ACTIONS(1805), + [aux_sym__val_number_token5] = ACTIONS(1805), + [aux_sym__val_number_token6] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1805), + [sym__str_single_quotes] = ACTIONS(1805), + [sym__str_back_ticks] = ACTIONS(1805), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1805), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1805), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1805), + [sym__entry_separator] = ACTIONS(1813), + [anon_sym_register] = ACTIONS(1805), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1447), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(964), - }, - [378] = { - [sym_path] = STATE(445), - [sym_comment] = STATE(378), - [aux_sym_cell_path_repeat1] = STATE(381), - [anon_sym_export] = ACTIONS(931), - [anon_sym_alias] = ACTIONS(931), - [anon_sym_let] = ACTIONS(931), - [anon_sym_let_DASHenv] = ACTIONS(931), - [anon_sym_mut] = ACTIONS(931), - [anon_sym_const] = ACTIONS(931), - [aux_sym_cmd_identifier_token1] = ACTIONS(931), - [aux_sym_cmd_identifier_token2] = ACTIONS(933), - [aux_sym_cmd_identifier_token3] = ACTIONS(933), - [aux_sym_cmd_identifier_token4] = ACTIONS(933), - [aux_sym_cmd_identifier_token5] = ACTIONS(933), - [aux_sym_cmd_identifier_token6] = ACTIONS(933), - [aux_sym_cmd_identifier_token7] = ACTIONS(933), - [aux_sym_cmd_identifier_token8] = ACTIONS(931), - [aux_sym_cmd_identifier_token9] = ACTIONS(931), - [aux_sym_cmd_identifier_token10] = ACTIONS(933), - [aux_sym_cmd_identifier_token11] = ACTIONS(933), - [aux_sym_cmd_identifier_token12] = ACTIONS(931), - [aux_sym_cmd_identifier_token13] = ACTIONS(931), - [aux_sym_cmd_identifier_token14] = ACTIONS(931), - [aux_sym_cmd_identifier_token15] = ACTIONS(931), - [aux_sym_cmd_identifier_token16] = ACTIONS(933), - [aux_sym_cmd_identifier_token17] = ACTIONS(933), - [aux_sym_cmd_identifier_token18] = ACTIONS(933), - [aux_sym_cmd_identifier_token19] = ACTIONS(933), - [aux_sym_cmd_identifier_token20] = ACTIONS(933), - [aux_sym_cmd_identifier_token21] = ACTIONS(933), - [aux_sym_cmd_identifier_token22] = ACTIONS(933), - [aux_sym_cmd_identifier_token23] = ACTIONS(933), - [aux_sym_cmd_identifier_token24] = ACTIONS(933), - [aux_sym_cmd_identifier_token25] = ACTIONS(933), - [aux_sym_cmd_identifier_token26] = ACTIONS(933), - [aux_sym_cmd_identifier_token27] = ACTIONS(933), - [aux_sym_cmd_identifier_token28] = ACTIONS(933), - [aux_sym_cmd_identifier_token29] = ACTIONS(933), - [aux_sym_cmd_identifier_token30] = ACTIONS(933), - [aux_sym_cmd_identifier_token31] = ACTIONS(933), - [aux_sym_cmd_identifier_token32] = ACTIONS(933), - [aux_sym_cmd_identifier_token33] = ACTIONS(933), - [aux_sym_cmd_identifier_token34] = ACTIONS(931), - [aux_sym_cmd_identifier_token35] = ACTIONS(933), - [aux_sym_cmd_identifier_token36] = ACTIONS(933), - [aux_sym_cmd_identifier_token37] = ACTIONS(933), - [aux_sym_cmd_identifier_token38] = ACTIONS(931), - [aux_sym_cmd_identifier_token39] = ACTIONS(933), - [aux_sym_cmd_identifier_token40] = ACTIONS(933), - [anon_sym_def] = ACTIONS(931), - [anon_sym_export_DASHenv] = ACTIONS(931), - [anon_sym_extern] = ACTIONS(931), - [anon_sym_module] = ACTIONS(931), - [anon_sym_use] = ACTIONS(931), - [anon_sym_LPAREN] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(933), - [anon_sym_DOLLAR] = ACTIONS(931), - [anon_sym_error] = ACTIONS(931), - [anon_sym_DASH2] = ACTIONS(931), - [anon_sym_break] = ACTIONS(931), - [anon_sym_continue] = ACTIONS(931), - [anon_sym_for] = ACTIONS(931), - [anon_sym_in2] = ACTIONS(931), - [anon_sym_loop] = ACTIONS(931), - [anon_sym_make] = ACTIONS(931), - [anon_sym_while] = ACTIONS(931), - [anon_sym_do] = ACTIONS(931), - [anon_sym_if] = ACTIONS(931), - [anon_sym_else] = ACTIONS(931), - [anon_sym_match] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(933), - [anon_sym_try] = ACTIONS(931), - [anon_sym_catch] = ACTIONS(931), - [anon_sym_return] = ACTIONS(931), - [anon_sym_source] = ACTIONS(931), - [anon_sym_source_DASHenv] = ACTIONS(931), - [anon_sym_hide] = ACTIONS(931), - [anon_sym_hide_DASHenv] = ACTIONS(931), - [anon_sym_overlay] = ACTIONS(931), - [anon_sym_as] = ACTIONS(931), - [anon_sym_PLUS2] = ACTIONS(931), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(933), - [anon_sym_DOT_DOT2] = ACTIONS(931), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(933), - [anon_sym_DOT_DOT_LT2] = ACTIONS(933), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(933), - [aux_sym__val_number_decimal_token1] = ACTIONS(931), - [aux_sym__val_number_decimal_token2] = ACTIONS(933), - [aux_sym__val_number_decimal_token3] = ACTIONS(933), - [aux_sym__val_number_decimal_token4] = ACTIONS(933), - [aux_sym__val_number_token1] = ACTIONS(933), - [aux_sym__val_number_token2] = ACTIONS(933), - [aux_sym__val_number_token3] = ACTIONS(933), - [aux_sym__val_number_token4] = ACTIONS(931), - [aux_sym__val_number_token5] = ACTIONS(931), - [aux_sym__val_number_token6] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym__str_single_quotes] = ACTIONS(933), - [sym__str_back_ticks] = ACTIONS(933), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(933), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(933), - [anon_sym_register] = ACTIONS(931), - [anon_sym_DOT2] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(933), + [sym_raw_string_begin] = ACTIONS(1813), }, - [379] = { - [sym_comment] = STATE(379), - [anon_sym_export] = ACTIONS(966), - [anon_sym_alias] = ACTIONS(966), - [anon_sym_let] = ACTIONS(966), - [anon_sym_let_DASHenv] = ACTIONS(966), - [anon_sym_mut] = ACTIONS(966), - [anon_sym_const] = ACTIONS(966), - [aux_sym_cmd_identifier_token1] = ACTIONS(966), - [aux_sym_cmd_identifier_token2] = ACTIONS(966), - [aux_sym_cmd_identifier_token3] = ACTIONS(966), - [aux_sym_cmd_identifier_token4] = ACTIONS(966), - [aux_sym_cmd_identifier_token5] = ACTIONS(966), - [aux_sym_cmd_identifier_token6] = ACTIONS(966), - [aux_sym_cmd_identifier_token7] = ACTIONS(966), - [aux_sym_cmd_identifier_token8] = ACTIONS(966), - [aux_sym_cmd_identifier_token9] = ACTIONS(966), - [aux_sym_cmd_identifier_token10] = ACTIONS(966), - [aux_sym_cmd_identifier_token11] = ACTIONS(966), - [aux_sym_cmd_identifier_token12] = ACTIONS(966), - [aux_sym_cmd_identifier_token13] = ACTIONS(966), - [aux_sym_cmd_identifier_token14] = ACTIONS(966), - [aux_sym_cmd_identifier_token15] = ACTIONS(966), - [aux_sym_cmd_identifier_token16] = ACTIONS(966), - [aux_sym_cmd_identifier_token17] = ACTIONS(966), - [aux_sym_cmd_identifier_token18] = ACTIONS(966), - [aux_sym_cmd_identifier_token19] = ACTIONS(966), - [aux_sym_cmd_identifier_token20] = ACTIONS(966), - [aux_sym_cmd_identifier_token21] = ACTIONS(966), - [aux_sym_cmd_identifier_token22] = ACTIONS(966), - [aux_sym_cmd_identifier_token23] = ACTIONS(966), - [aux_sym_cmd_identifier_token24] = ACTIONS(966), - [aux_sym_cmd_identifier_token25] = ACTIONS(966), - [aux_sym_cmd_identifier_token26] = ACTIONS(966), - [aux_sym_cmd_identifier_token27] = ACTIONS(966), - [aux_sym_cmd_identifier_token28] = ACTIONS(966), - [aux_sym_cmd_identifier_token29] = ACTIONS(966), - [aux_sym_cmd_identifier_token30] = ACTIONS(966), - [aux_sym_cmd_identifier_token31] = ACTIONS(966), - [aux_sym_cmd_identifier_token32] = ACTIONS(966), - [aux_sym_cmd_identifier_token33] = ACTIONS(966), - [aux_sym_cmd_identifier_token34] = ACTIONS(966), - [aux_sym_cmd_identifier_token35] = ACTIONS(966), - [aux_sym_cmd_identifier_token36] = ACTIONS(966), - [aux_sym_cmd_identifier_token37] = ACTIONS(966), - [aux_sym_cmd_identifier_token38] = ACTIONS(966), - [aux_sym_cmd_identifier_token39] = ACTIONS(966), - [aux_sym_cmd_identifier_token40] = ACTIONS(966), - [anon_sym_def] = ACTIONS(966), - [anon_sym_export_DASHenv] = ACTIONS(966), - [anon_sym_extern] = ACTIONS(966), - [anon_sym_module] = ACTIONS(966), - [anon_sym_use] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(966), - [anon_sym_COMMA] = ACTIONS(966), - [anon_sym_DOLLAR] = ACTIONS(966), - [anon_sym_error] = ACTIONS(966), - [anon_sym_DASH2] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_in2] = ACTIONS(966), - [anon_sym_loop] = ACTIONS(966), - [anon_sym_make] = ACTIONS(966), - [anon_sym_while] = ACTIONS(966), - [anon_sym_do] = ACTIONS(966), - [anon_sym_if] = ACTIONS(966), - [anon_sym_else] = ACTIONS(966), - [anon_sym_match] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(966), - [anon_sym_try] = ACTIONS(966), - [anon_sym_catch] = ACTIONS(966), - [anon_sym_return] = ACTIONS(966), - [anon_sym_source] = ACTIONS(966), - [anon_sym_source_DASHenv] = ACTIONS(966), - [anon_sym_hide] = ACTIONS(966), - [anon_sym_hide_DASHenv] = ACTIONS(966), - [anon_sym_overlay] = ACTIONS(966), - [anon_sym_as] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(966), - [anon_sym_PLUS2] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(966), - [anon_sym_DOT_DOT2] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), - [anon_sym_DOT_DOT_LT2] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(966), - [aux_sym__val_number_decimal_token1] = ACTIONS(966), - [aux_sym__val_number_decimal_token2] = ACTIONS(966), - [aux_sym__val_number_decimal_token3] = ACTIONS(966), - [aux_sym__val_number_decimal_token4] = ACTIONS(966), - [aux_sym__val_number_token1] = ACTIONS(966), - [aux_sym__val_number_token2] = ACTIONS(966), - [aux_sym__val_number_token3] = ACTIONS(966), - [aux_sym__val_number_token4] = ACTIONS(966), - [aux_sym__val_number_token5] = ACTIONS(966), - [aux_sym__val_number_token6] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [sym__str_single_quotes] = ACTIONS(966), - [sym__str_back_ticks] = ACTIONS(966), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(966), - [sym__entry_separator] = ACTIONS(968), - [anon_sym_register] = ACTIONS(966), - [anon_sym_DOT2] = ACTIONS(966), + [385] = { + [sym_comment] = STATE(385), + [anon_sym_export] = ACTIONS(964), + [anon_sym_alias] = ACTIONS(964), + [anon_sym_let] = ACTIONS(964), + [anon_sym_let_DASHenv] = ACTIONS(964), + [anon_sym_mut] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [aux_sym_cmd_identifier_token1] = ACTIONS(964), + [aux_sym_cmd_identifier_token2] = ACTIONS(964), + [aux_sym_cmd_identifier_token3] = ACTIONS(964), + [aux_sym_cmd_identifier_token4] = ACTIONS(964), + [aux_sym_cmd_identifier_token5] = ACTIONS(964), + [aux_sym_cmd_identifier_token6] = ACTIONS(964), + [aux_sym_cmd_identifier_token7] = ACTIONS(964), + [aux_sym_cmd_identifier_token8] = ACTIONS(964), + [aux_sym_cmd_identifier_token9] = ACTIONS(964), + [aux_sym_cmd_identifier_token10] = ACTIONS(964), + [aux_sym_cmd_identifier_token11] = ACTIONS(964), + [aux_sym_cmd_identifier_token12] = ACTIONS(964), + [aux_sym_cmd_identifier_token13] = ACTIONS(964), + [aux_sym_cmd_identifier_token14] = ACTIONS(964), + [aux_sym_cmd_identifier_token15] = ACTIONS(964), + [aux_sym_cmd_identifier_token16] = ACTIONS(964), + [aux_sym_cmd_identifier_token17] = ACTIONS(964), + [aux_sym_cmd_identifier_token18] = ACTIONS(964), + [aux_sym_cmd_identifier_token19] = ACTIONS(964), + [aux_sym_cmd_identifier_token20] = ACTIONS(964), + [aux_sym_cmd_identifier_token21] = ACTIONS(964), + [aux_sym_cmd_identifier_token22] = ACTIONS(964), + [aux_sym_cmd_identifier_token23] = ACTIONS(964), + [aux_sym_cmd_identifier_token24] = ACTIONS(964), + [aux_sym_cmd_identifier_token25] = ACTIONS(964), + [aux_sym_cmd_identifier_token26] = ACTIONS(964), + [aux_sym_cmd_identifier_token27] = ACTIONS(964), + [aux_sym_cmd_identifier_token28] = ACTIONS(964), + [aux_sym_cmd_identifier_token29] = ACTIONS(964), + [aux_sym_cmd_identifier_token30] = ACTIONS(964), + [aux_sym_cmd_identifier_token31] = ACTIONS(964), + [aux_sym_cmd_identifier_token32] = ACTIONS(964), + [aux_sym_cmd_identifier_token33] = ACTIONS(964), + [aux_sym_cmd_identifier_token34] = ACTIONS(964), + [aux_sym_cmd_identifier_token35] = ACTIONS(964), + [aux_sym_cmd_identifier_token36] = ACTIONS(964), + [aux_sym_cmd_identifier_token37] = ACTIONS(964), + [aux_sym_cmd_identifier_token38] = ACTIONS(964), + [aux_sym_cmd_identifier_token39] = ACTIONS(964), + [aux_sym_cmd_identifier_token40] = ACTIONS(964), + [anon_sym_def] = ACTIONS(964), + [anon_sym_export_DASHenv] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym_module] = ACTIONS(964), + [anon_sym_use] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_COMMA] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_error] = ACTIONS(964), + [anon_sym_DASH2] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_in2] = ACTIONS(964), + [anon_sym_loop] = ACTIONS(964), + [anon_sym_make] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_match] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_try] = ACTIONS(964), + [anon_sym_catch] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_source] = ACTIONS(964), + [anon_sym_source_DASHenv] = ACTIONS(964), + [anon_sym_hide] = ACTIONS(964), + [anon_sym_hide_DASHenv] = ACTIONS(964), + [anon_sym_overlay] = ACTIONS(964), + [anon_sym_as] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(1815), + [anon_sym_PLUS2] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(964), + [anon_sym_DOT_DOT2] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(966), + [anon_sym_DOT_DOT_LT2] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(964), + [aux_sym__val_number_decimal_token1] = ACTIONS(964), + [aux_sym__val_number_decimal_token2] = ACTIONS(964), + [aux_sym__val_number_decimal_token3] = ACTIONS(964), + [aux_sym__val_number_decimal_token4] = ACTIONS(964), + [aux_sym__val_number_token1] = ACTIONS(964), + [aux_sym__val_number_token2] = ACTIONS(964), + [aux_sym__val_number_token3] = ACTIONS(964), + [aux_sym__val_number_token4] = ACTIONS(964), + [aux_sym__val_number_token5] = ACTIONS(964), + [aux_sym__val_number_token6] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(964), + [sym__str_single_quotes] = ACTIONS(964), + [sym__str_back_ticks] = ACTIONS(964), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(964), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(964), + [sym__entry_separator] = ACTIONS(966), + [anon_sym_register] = ACTIONS(964), + [anon_sym_DOT2] = ACTIONS(964), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(968), + [sym_raw_string_begin] = ACTIONS(966), }, - [380] = { - [sym_comment] = STATE(380), - [anon_sym_export] = ACTIONS(1666), - [anon_sym_alias] = ACTIONS(1666), - [anon_sym_let] = ACTIONS(1666), - [anon_sym_let_DASHenv] = ACTIONS(1666), - [anon_sym_mut] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [aux_sym_cmd_identifier_token1] = ACTIONS(1666), - [aux_sym_cmd_identifier_token2] = ACTIONS(1666), - [aux_sym_cmd_identifier_token3] = ACTIONS(1666), - [aux_sym_cmd_identifier_token4] = ACTIONS(1666), - [aux_sym_cmd_identifier_token5] = ACTIONS(1666), - [aux_sym_cmd_identifier_token6] = ACTIONS(1666), - [aux_sym_cmd_identifier_token7] = ACTIONS(1666), - [aux_sym_cmd_identifier_token8] = ACTIONS(1666), - [aux_sym_cmd_identifier_token9] = ACTIONS(1666), - [aux_sym_cmd_identifier_token10] = ACTIONS(1666), - [aux_sym_cmd_identifier_token11] = ACTIONS(1666), - [aux_sym_cmd_identifier_token12] = ACTIONS(1666), - [aux_sym_cmd_identifier_token13] = ACTIONS(1666), - [aux_sym_cmd_identifier_token14] = ACTIONS(1666), - [aux_sym_cmd_identifier_token15] = ACTIONS(1666), - [aux_sym_cmd_identifier_token16] = ACTIONS(1666), - [aux_sym_cmd_identifier_token17] = ACTIONS(1666), - [aux_sym_cmd_identifier_token18] = ACTIONS(1666), - [aux_sym_cmd_identifier_token19] = ACTIONS(1666), - [aux_sym_cmd_identifier_token20] = ACTIONS(1666), - [aux_sym_cmd_identifier_token21] = ACTIONS(1666), - [aux_sym_cmd_identifier_token22] = ACTIONS(1666), - [aux_sym_cmd_identifier_token23] = ACTIONS(1666), - [aux_sym_cmd_identifier_token24] = ACTIONS(1666), - [aux_sym_cmd_identifier_token25] = ACTIONS(1666), - [aux_sym_cmd_identifier_token26] = ACTIONS(1666), - [aux_sym_cmd_identifier_token27] = ACTIONS(1666), - [aux_sym_cmd_identifier_token28] = ACTIONS(1666), - [aux_sym_cmd_identifier_token29] = ACTIONS(1666), - [aux_sym_cmd_identifier_token30] = ACTIONS(1666), - [aux_sym_cmd_identifier_token31] = ACTIONS(1666), - [aux_sym_cmd_identifier_token32] = ACTIONS(1666), - [aux_sym_cmd_identifier_token33] = ACTIONS(1666), - [aux_sym_cmd_identifier_token34] = ACTIONS(1666), - [aux_sym_cmd_identifier_token35] = ACTIONS(1666), - [aux_sym_cmd_identifier_token36] = ACTIONS(1666), - [aux_sym_cmd_identifier_token37] = ACTIONS(1666), - [aux_sym_cmd_identifier_token38] = ACTIONS(1666), - [aux_sym_cmd_identifier_token39] = ACTIONS(1666), - [aux_sym_cmd_identifier_token40] = ACTIONS(1666), - [anon_sym_def] = ACTIONS(1666), - [anon_sym_export_DASHenv] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_module] = ACTIONS(1666), - [anon_sym_use] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_COMMA] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_error] = ACTIONS(1666), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_in2] = ACTIONS(1666), - [anon_sym_loop] = ACTIONS(1666), - [anon_sym_make] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_do] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_match] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(1666), - [anon_sym_try] = ACTIONS(1666), - [anon_sym_catch] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_source] = ACTIONS(1666), - [anon_sym_source_DASHenv] = ACTIONS(1666), - [anon_sym_hide] = ACTIONS(1666), - [anon_sym_hide_DASHenv] = ACTIONS(1666), - [anon_sym_overlay] = ACTIONS(1666), - [anon_sym_as] = ACTIONS(1666), - [anon_sym_PLUS2] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1666), - [anon_sym_DOT_DOT2] = ACTIONS(1666), - [anon_sym_DOT] = ACTIONS(1802), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [aux_sym__immediate_decimal_token2] = ACTIONS(1804), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1666), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1666), - [aux_sym__val_number_decimal_token3] = ACTIONS(1666), - [aux_sym__val_number_decimal_token4] = ACTIONS(1666), - [aux_sym__val_number_token1] = ACTIONS(1666), - [aux_sym__val_number_token2] = ACTIONS(1666), - [aux_sym__val_number_token3] = ACTIONS(1666), - [aux_sym__val_number_token4] = ACTIONS(1666), - [aux_sym__val_number_token5] = ACTIONS(1666), - [aux_sym__val_number_token6] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1666), - [sym__str_single_quotes] = ACTIONS(1666), - [sym__str_back_ticks] = ACTIONS(1666), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1666), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1666), - [sym__entry_separator] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1666), + [386] = { + [sym_comment] = STATE(386), + [anon_sym_export] = ACTIONS(1701), + [anon_sym_alias] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1701), + [anon_sym_let_DASHenv] = ACTIONS(1701), + [anon_sym_mut] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [aux_sym_cmd_identifier_token1] = ACTIONS(1701), + [aux_sym_cmd_identifier_token2] = ACTIONS(1701), + [aux_sym_cmd_identifier_token3] = ACTIONS(1701), + [aux_sym_cmd_identifier_token4] = ACTIONS(1701), + [aux_sym_cmd_identifier_token5] = ACTIONS(1701), + [aux_sym_cmd_identifier_token6] = ACTIONS(1701), + [aux_sym_cmd_identifier_token7] = ACTIONS(1701), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1701), + [aux_sym_cmd_identifier_token11] = ACTIONS(1701), + [aux_sym_cmd_identifier_token12] = ACTIONS(1701), + [aux_sym_cmd_identifier_token13] = ACTIONS(1701), + [aux_sym_cmd_identifier_token14] = ACTIONS(1701), + [aux_sym_cmd_identifier_token15] = ACTIONS(1701), + [aux_sym_cmd_identifier_token16] = ACTIONS(1701), + [aux_sym_cmd_identifier_token17] = ACTIONS(1701), + [aux_sym_cmd_identifier_token18] = ACTIONS(1701), + [aux_sym_cmd_identifier_token19] = ACTIONS(1701), + [aux_sym_cmd_identifier_token20] = ACTIONS(1701), + [aux_sym_cmd_identifier_token21] = ACTIONS(1701), + [aux_sym_cmd_identifier_token22] = ACTIONS(1701), + [aux_sym_cmd_identifier_token23] = ACTIONS(1701), + [aux_sym_cmd_identifier_token24] = ACTIONS(1701), + [aux_sym_cmd_identifier_token25] = ACTIONS(1701), + [aux_sym_cmd_identifier_token26] = ACTIONS(1701), + [aux_sym_cmd_identifier_token27] = ACTIONS(1701), + [aux_sym_cmd_identifier_token28] = ACTIONS(1701), + [aux_sym_cmd_identifier_token29] = ACTIONS(1701), + [aux_sym_cmd_identifier_token30] = ACTIONS(1701), + [aux_sym_cmd_identifier_token31] = ACTIONS(1701), + [aux_sym_cmd_identifier_token32] = ACTIONS(1701), + [aux_sym_cmd_identifier_token33] = ACTIONS(1701), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1701), + [aux_sym_cmd_identifier_token36] = ACTIONS(1701), + [aux_sym_cmd_identifier_token37] = ACTIONS(1701), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1701), + [aux_sym_cmd_identifier_token40] = ACTIONS(1701), + [anon_sym_def] = ACTIONS(1701), + [anon_sym_export_DASHenv] = ACTIONS(1701), + [anon_sym_extern] = ACTIONS(1701), + [anon_sym_module] = ACTIONS(1701), + [anon_sym_use] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_COMMA] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = ACTIONS(1701), + [anon_sym_loop] = ACTIONS(1701), + [anon_sym_make] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_do] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_else] = ACTIONS(1701), + [anon_sym_match] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1701), + [anon_sym_try] = ACTIONS(1701), + [anon_sym_catch] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_source] = ACTIONS(1701), + [anon_sym_source_DASHenv] = ACTIONS(1701), + [anon_sym_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1701), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(1817), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(1819), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1701), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1701), + [aux_sym__val_number_decimal_token3] = ACTIONS(1701), + [aux_sym__val_number_decimal_token4] = ACTIONS(1701), + [aux_sym__val_number_token1] = ACTIONS(1701), + [aux_sym__val_number_token2] = ACTIONS(1701), + [aux_sym__val_number_token3] = ACTIONS(1701), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [sym__str_single_quotes] = ACTIONS(1701), + [sym__str_back_ticks] = ACTIONS(1701), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1701), + [sym__entry_separator] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1668), + [sym_raw_string_begin] = ACTIONS(1703), }, - [381] = { - [sym_path] = STATE(445), - [sym_comment] = STATE(381), - [aux_sym_cell_path_repeat1] = STATE(381), - [anon_sym_export] = ACTIONS(935), - [anon_sym_alias] = ACTIONS(935), - [anon_sym_let] = ACTIONS(935), - [anon_sym_let_DASHenv] = ACTIONS(935), - [anon_sym_mut] = ACTIONS(935), - [anon_sym_const] = ACTIONS(935), - [aux_sym_cmd_identifier_token1] = ACTIONS(935), - [aux_sym_cmd_identifier_token2] = ACTIONS(937), - [aux_sym_cmd_identifier_token3] = ACTIONS(937), - [aux_sym_cmd_identifier_token4] = ACTIONS(937), - [aux_sym_cmd_identifier_token5] = ACTIONS(937), - [aux_sym_cmd_identifier_token6] = ACTIONS(937), - [aux_sym_cmd_identifier_token7] = ACTIONS(937), - [aux_sym_cmd_identifier_token8] = ACTIONS(935), - [aux_sym_cmd_identifier_token9] = ACTIONS(935), - [aux_sym_cmd_identifier_token10] = ACTIONS(937), - [aux_sym_cmd_identifier_token11] = ACTIONS(937), - [aux_sym_cmd_identifier_token12] = ACTIONS(935), - [aux_sym_cmd_identifier_token13] = ACTIONS(935), - [aux_sym_cmd_identifier_token14] = ACTIONS(935), - [aux_sym_cmd_identifier_token15] = ACTIONS(935), - [aux_sym_cmd_identifier_token16] = ACTIONS(937), - [aux_sym_cmd_identifier_token17] = ACTIONS(937), - [aux_sym_cmd_identifier_token18] = ACTIONS(937), - [aux_sym_cmd_identifier_token19] = ACTIONS(937), - [aux_sym_cmd_identifier_token20] = ACTIONS(937), - [aux_sym_cmd_identifier_token21] = ACTIONS(937), - [aux_sym_cmd_identifier_token22] = ACTIONS(937), - [aux_sym_cmd_identifier_token23] = ACTIONS(937), - [aux_sym_cmd_identifier_token24] = ACTIONS(937), - [aux_sym_cmd_identifier_token25] = ACTIONS(937), - [aux_sym_cmd_identifier_token26] = ACTIONS(937), - [aux_sym_cmd_identifier_token27] = ACTIONS(937), - [aux_sym_cmd_identifier_token28] = ACTIONS(937), - [aux_sym_cmd_identifier_token29] = ACTIONS(937), - [aux_sym_cmd_identifier_token30] = ACTIONS(937), - [aux_sym_cmd_identifier_token31] = ACTIONS(937), - [aux_sym_cmd_identifier_token32] = ACTIONS(937), - [aux_sym_cmd_identifier_token33] = ACTIONS(937), - [aux_sym_cmd_identifier_token34] = ACTIONS(935), - [aux_sym_cmd_identifier_token35] = ACTIONS(937), - [aux_sym_cmd_identifier_token36] = ACTIONS(937), - [aux_sym_cmd_identifier_token37] = ACTIONS(937), - [aux_sym_cmd_identifier_token38] = ACTIONS(935), - [aux_sym_cmd_identifier_token39] = ACTIONS(937), - [aux_sym_cmd_identifier_token40] = ACTIONS(937), - [anon_sym_def] = ACTIONS(935), - [anon_sym_export_DASHenv] = ACTIONS(935), - [anon_sym_extern] = ACTIONS(935), - [anon_sym_module] = ACTIONS(935), - [anon_sym_use] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_COMMA] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(935), - [anon_sym_error] = ACTIONS(935), - [anon_sym_DASH2] = ACTIONS(935), - [anon_sym_break] = ACTIONS(935), - [anon_sym_continue] = ACTIONS(935), - [anon_sym_for] = ACTIONS(935), - [anon_sym_in2] = ACTIONS(935), - [anon_sym_loop] = ACTIONS(935), - [anon_sym_make] = ACTIONS(935), - [anon_sym_while] = ACTIONS(935), - [anon_sym_do] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_else] = ACTIONS(935), - [anon_sym_match] = ACTIONS(935), - [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_try] = ACTIONS(935), - [anon_sym_catch] = ACTIONS(935), - [anon_sym_return] = ACTIONS(935), - [anon_sym_source] = ACTIONS(935), - [anon_sym_source_DASHenv] = ACTIONS(935), - [anon_sym_hide] = ACTIONS(935), - [anon_sym_hide_DASHenv] = ACTIONS(935), - [anon_sym_overlay] = ACTIONS(935), - [anon_sym_as] = ACTIONS(935), - [anon_sym_PLUS2] = ACTIONS(935), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(937), - [anon_sym_DOT_DOT2] = ACTIONS(935), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), - [anon_sym_DOT_DOT_LT2] = ACTIONS(937), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(937), - [aux_sym__val_number_decimal_token1] = ACTIONS(935), - [aux_sym__val_number_decimal_token2] = ACTIONS(937), - [aux_sym__val_number_decimal_token3] = ACTIONS(937), - [aux_sym__val_number_decimal_token4] = ACTIONS(937), - [aux_sym__val_number_token1] = ACTIONS(937), - [aux_sym__val_number_token2] = ACTIONS(937), - [aux_sym__val_number_token3] = ACTIONS(937), - [aux_sym__val_number_token4] = ACTIONS(935), - [aux_sym__val_number_token5] = ACTIONS(935), - [aux_sym__val_number_token6] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(937), - [sym__str_single_quotes] = ACTIONS(937), - [sym__str_back_ticks] = ACTIONS(937), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(937), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(937), - [anon_sym_register] = ACTIONS(935), - [anon_sym_DOT2] = ACTIONS(1806), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(937), - }, - [382] = { - [sym_comment] = STATE(382), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_alias] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_let_DASHenv] = ACTIONS(1719), - [anon_sym_mut] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [aux_sym_cmd_identifier_token1] = ACTIONS(1719), - [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(1719), - [aux_sym_cmd_identifier_token9] = ACTIONS(1719), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1719), - [aux_sym_cmd_identifier_token13] = ACTIONS(1719), - [aux_sym_cmd_identifier_token14] = ACTIONS(1719), - [aux_sym_cmd_identifier_token15] = ACTIONS(1719), - [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(1719), - [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(1719), - [aux_sym_cmd_identifier_token39] = ACTIONS(1721), - [aux_sym_cmd_identifier_token40] = ACTIONS(1721), - [anon_sym_def] = ACTIONS(1719), - [anon_sym_export_DASHenv] = ACTIONS(1719), - [anon_sym_extern] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_use] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_COMMA] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_error] = ACTIONS(1719), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_in2] = ACTIONS(1719), - [anon_sym_loop] = ACTIONS(1719), - [anon_sym_make] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_match] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_catch] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_source] = ACTIONS(1719), - [anon_sym_source_DASHenv] = ACTIONS(1719), - [anon_sym_hide] = ACTIONS(1719), - [anon_sym_hide_DASHenv] = ACTIONS(1719), - [anon_sym_overlay] = ACTIONS(1719), - [anon_sym_as] = ACTIONS(1719), - [anon_sym_LPAREN2] = ACTIONS(1721), - [anon_sym_PLUS2] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), - [anon_sym_DOT_DOT2] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1721), - [aux_sym__immediate_decimal_token2] = ACTIONS(1809), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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(1719), - [aux_sym__val_number_token5] = ACTIONS(1719), - [aux_sym__val_number_token6] = ACTIONS(1719), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1719), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1721), - }, - [383] = { - [sym_comment] = STATE(383), - [anon_sym_export] = ACTIONS(1666), - [anon_sym_alias] = ACTIONS(1666), - [anon_sym_let] = ACTIONS(1666), - [anon_sym_let_DASHenv] = ACTIONS(1666), - [anon_sym_mut] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [aux_sym_cmd_identifier_token1] = ACTIONS(1666), - [aux_sym_cmd_identifier_token2] = ACTIONS(1668), - [aux_sym_cmd_identifier_token3] = ACTIONS(1668), - [aux_sym_cmd_identifier_token4] = ACTIONS(1668), - [aux_sym_cmd_identifier_token5] = ACTIONS(1668), - [aux_sym_cmd_identifier_token6] = ACTIONS(1668), - [aux_sym_cmd_identifier_token7] = ACTIONS(1668), - [aux_sym_cmd_identifier_token8] = ACTIONS(1666), - [aux_sym_cmd_identifier_token9] = ACTIONS(1666), - [aux_sym_cmd_identifier_token10] = ACTIONS(1668), - [aux_sym_cmd_identifier_token11] = ACTIONS(1668), - [aux_sym_cmd_identifier_token12] = ACTIONS(1666), - [aux_sym_cmd_identifier_token13] = ACTIONS(1666), - [aux_sym_cmd_identifier_token14] = ACTIONS(1666), - [aux_sym_cmd_identifier_token15] = ACTIONS(1666), - [aux_sym_cmd_identifier_token16] = ACTIONS(1668), - [aux_sym_cmd_identifier_token17] = ACTIONS(1668), - [aux_sym_cmd_identifier_token18] = ACTIONS(1668), - [aux_sym_cmd_identifier_token19] = ACTIONS(1668), - [aux_sym_cmd_identifier_token20] = ACTIONS(1668), - [aux_sym_cmd_identifier_token21] = ACTIONS(1668), - [aux_sym_cmd_identifier_token22] = ACTIONS(1668), - [aux_sym_cmd_identifier_token23] = ACTIONS(1668), - [aux_sym_cmd_identifier_token24] = ACTIONS(1668), - [aux_sym_cmd_identifier_token25] = ACTIONS(1668), - [aux_sym_cmd_identifier_token26] = ACTIONS(1668), - [aux_sym_cmd_identifier_token27] = ACTIONS(1668), - [aux_sym_cmd_identifier_token28] = ACTIONS(1668), - [aux_sym_cmd_identifier_token29] = ACTIONS(1668), - [aux_sym_cmd_identifier_token30] = ACTIONS(1668), - [aux_sym_cmd_identifier_token31] = ACTIONS(1668), - [aux_sym_cmd_identifier_token32] = ACTIONS(1668), - [aux_sym_cmd_identifier_token33] = ACTIONS(1668), - [aux_sym_cmd_identifier_token34] = ACTIONS(1666), - [aux_sym_cmd_identifier_token35] = ACTIONS(1668), - [aux_sym_cmd_identifier_token36] = ACTIONS(1668), - [aux_sym_cmd_identifier_token37] = ACTIONS(1668), - [aux_sym_cmd_identifier_token38] = ACTIONS(1666), - [aux_sym_cmd_identifier_token39] = ACTIONS(1668), - [aux_sym_cmd_identifier_token40] = ACTIONS(1668), - [anon_sym_def] = ACTIONS(1666), - [anon_sym_export_DASHenv] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_module] = ACTIONS(1666), - [anon_sym_use] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_error] = ACTIONS(1666), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_in2] = ACTIONS(1666), - [anon_sym_loop] = ACTIONS(1666), - [anon_sym_make] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_do] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_match] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_try] = ACTIONS(1666), - [anon_sym_catch] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_source] = ACTIONS(1666), - [anon_sym_source_DASHenv] = ACTIONS(1666), - [anon_sym_hide] = ACTIONS(1666), - [anon_sym_hide_DASHenv] = ACTIONS(1666), - [anon_sym_overlay] = ACTIONS(1666), - [anon_sym_as] = ACTIONS(1666), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_PLUS2] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1668), - [anon_sym_DOT_DOT2] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [aux_sym__immediate_decimal_token2] = ACTIONS(1774), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1666), - [aux_sym__val_number_token5] = ACTIONS(1666), - [aux_sym__val_number_token6] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1666), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), - }, - [384] = { - [sym_comment] = STATE(384), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), - [aux_sym_cmd_identifier_token2] = ACTIONS(1648), - [aux_sym_cmd_identifier_token3] = ACTIONS(1648), - [aux_sym_cmd_identifier_token4] = ACTIONS(1648), - [aux_sym_cmd_identifier_token5] = ACTIONS(1648), - [aux_sym_cmd_identifier_token6] = ACTIONS(1648), - [aux_sym_cmd_identifier_token7] = ACTIONS(1648), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), - [aux_sym_cmd_identifier_token10] = ACTIONS(1648), - [aux_sym_cmd_identifier_token11] = ACTIONS(1648), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), - [aux_sym_cmd_identifier_token16] = ACTIONS(1648), - [aux_sym_cmd_identifier_token17] = ACTIONS(1648), - [aux_sym_cmd_identifier_token18] = ACTIONS(1648), - [aux_sym_cmd_identifier_token19] = ACTIONS(1648), - [aux_sym_cmd_identifier_token20] = ACTIONS(1648), - [aux_sym_cmd_identifier_token21] = ACTIONS(1648), - [aux_sym_cmd_identifier_token22] = ACTIONS(1648), - [aux_sym_cmd_identifier_token23] = ACTIONS(1648), - [aux_sym_cmd_identifier_token24] = ACTIONS(1648), - [aux_sym_cmd_identifier_token25] = ACTIONS(1648), - [aux_sym_cmd_identifier_token26] = ACTIONS(1648), - [aux_sym_cmd_identifier_token27] = ACTIONS(1648), - [aux_sym_cmd_identifier_token28] = ACTIONS(1648), - [aux_sym_cmd_identifier_token29] = ACTIONS(1648), - [aux_sym_cmd_identifier_token30] = ACTIONS(1648), - [aux_sym_cmd_identifier_token31] = ACTIONS(1648), - [aux_sym_cmd_identifier_token32] = ACTIONS(1648), - [aux_sym_cmd_identifier_token33] = ACTIONS(1648), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), - [aux_sym_cmd_identifier_token35] = ACTIONS(1648), - [aux_sym_cmd_identifier_token36] = ACTIONS(1648), - [aux_sym_cmd_identifier_token37] = ACTIONS(1648), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), - [aux_sym_cmd_identifier_token39] = ACTIONS(1648), - [aux_sym_cmd_identifier_token40] = ACTIONS(1648), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_COMMA] = ACTIONS(1648), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_DASH2] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in2] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_PLUS2] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1648), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1648), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1648), - [aux_sym__val_number_decimal_token3] = ACTIONS(1648), - [aux_sym__val_number_decimal_token4] = ACTIONS(1648), - [aux_sym__val_number_token1] = ACTIONS(1648), - [aux_sym__val_number_token2] = ACTIONS(1648), - [aux_sym__val_number_token3] = ACTIONS(1648), - [aux_sym__val_number_token4] = ACTIONS(1648), - [aux_sym__val_number_token5] = ACTIONS(1648), - [aux_sym__val_number_token6] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1648), - [sym__str_single_quotes] = ACTIONS(1648), - [sym__str_back_ticks] = ACTIONS(1648), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1648), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1648), - [sym__entry_separator] = ACTIONS(1650), - [anon_sym_register] = ACTIONS(1648), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1650), - }, - [385] = { - [sym_comment] = STATE(385), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_alias] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_let_DASHenv] = ACTIONS(1719), - [anon_sym_mut] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [aux_sym_cmd_identifier_token1] = ACTIONS(1719), - [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(1719), - [aux_sym_cmd_identifier_token9] = ACTIONS(1719), - [aux_sym_cmd_identifier_token10] = ACTIONS(1719), - [aux_sym_cmd_identifier_token11] = ACTIONS(1719), - [aux_sym_cmd_identifier_token12] = ACTIONS(1719), - [aux_sym_cmd_identifier_token13] = ACTIONS(1719), - [aux_sym_cmd_identifier_token14] = ACTIONS(1719), - [aux_sym_cmd_identifier_token15] = ACTIONS(1719), - [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(1719), - [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(1719), - [aux_sym_cmd_identifier_token39] = ACTIONS(1719), - [aux_sym_cmd_identifier_token40] = ACTIONS(1719), - [anon_sym_def] = ACTIONS(1719), - [anon_sym_export_DASHenv] = ACTIONS(1719), - [anon_sym_extern] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_use] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_COMMA] = ACTIONS(1719), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_error] = ACTIONS(1719), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_in2] = ACTIONS(1719), - [anon_sym_loop] = ACTIONS(1719), - [anon_sym_make] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_match] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_catch] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_source] = ACTIONS(1719), - [anon_sym_source_DASHenv] = ACTIONS(1719), - [anon_sym_hide] = ACTIONS(1719), - [anon_sym_hide_DASHenv] = ACTIONS(1719), - [anon_sym_overlay] = ACTIONS(1719), - [anon_sym_as] = ACTIONS(1719), - [anon_sym_LPAREN2] = ACTIONS(1721), - [anon_sym_PLUS2] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1719), - [anon_sym_DOT_DOT2] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1719), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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_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_DOT_DOT_DOT_LBRACE] = ACTIONS(1719), - [sym__entry_separator] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1719), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1721), - }, - [386] = { - [sym_comment] = STATE(386), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_alias] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_let_DASHenv] = ACTIONS(1811), - [anon_sym_mut] = ACTIONS(1811), - [anon_sym_const] = ACTIONS(1811), - [aux_sym_cmd_identifier_token1] = ACTIONS(1811), - [aux_sym_cmd_identifier_token2] = ACTIONS(1811), - [aux_sym_cmd_identifier_token3] = ACTIONS(1811), - [aux_sym_cmd_identifier_token4] = ACTIONS(1811), - [aux_sym_cmd_identifier_token5] = ACTIONS(1811), - [aux_sym_cmd_identifier_token6] = ACTIONS(1811), - [aux_sym_cmd_identifier_token7] = ACTIONS(1811), - [aux_sym_cmd_identifier_token8] = ACTIONS(1811), - [aux_sym_cmd_identifier_token9] = ACTIONS(1811), - [aux_sym_cmd_identifier_token10] = ACTIONS(1811), - [aux_sym_cmd_identifier_token11] = ACTIONS(1811), - [aux_sym_cmd_identifier_token12] = ACTIONS(1811), - [aux_sym_cmd_identifier_token13] = ACTIONS(1811), - [aux_sym_cmd_identifier_token14] = ACTIONS(1811), - [aux_sym_cmd_identifier_token15] = ACTIONS(1811), - [aux_sym_cmd_identifier_token16] = ACTIONS(1811), - [aux_sym_cmd_identifier_token17] = ACTIONS(1811), - [aux_sym_cmd_identifier_token18] = ACTIONS(1811), - [aux_sym_cmd_identifier_token19] = ACTIONS(1811), - [aux_sym_cmd_identifier_token20] = ACTIONS(1811), - [aux_sym_cmd_identifier_token21] = ACTIONS(1811), - [aux_sym_cmd_identifier_token22] = ACTIONS(1811), - [aux_sym_cmd_identifier_token23] = ACTIONS(1811), - [aux_sym_cmd_identifier_token24] = ACTIONS(1811), - [aux_sym_cmd_identifier_token25] = ACTIONS(1811), - [aux_sym_cmd_identifier_token26] = ACTIONS(1811), - [aux_sym_cmd_identifier_token27] = ACTIONS(1811), - [aux_sym_cmd_identifier_token28] = ACTIONS(1811), - [aux_sym_cmd_identifier_token29] = ACTIONS(1811), - [aux_sym_cmd_identifier_token30] = ACTIONS(1811), - [aux_sym_cmd_identifier_token31] = ACTIONS(1811), - [aux_sym_cmd_identifier_token32] = ACTIONS(1811), - [aux_sym_cmd_identifier_token33] = ACTIONS(1811), - [aux_sym_cmd_identifier_token34] = ACTIONS(1811), - [aux_sym_cmd_identifier_token35] = ACTIONS(1811), - [aux_sym_cmd_identifier_token36] = ACTIONS(1811), - [aux_sym_cmd_identifier_token37] = ACTIONS(1811), - [aux_sym_cmd_identifier_token38] = ACTIONS(1811), - [aux_sym_cmd_identifier_token39] = ACTIONS(1811), - [aux_sym_cmd_identifier_token40] = ACTIONS(1811), - [anon_sym_def] = ACTIONS(1811), - [anon_sym_export_DASHenv] = ACTIONS(1811), - [anon_sym_extern] = ACTIONS(1811), - [anon_sym_module] = ACTIONS(1811), - [anon_sym_use] = ACTIONS(1811), - [anon_sym_LPAREN] = ACTIONS(1811), - [anon_sym_COMMA] = ACTIONS(1811), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_error] = ACTIONS(1811), - [anon_sym_DASH2] = ACTIONS(1811), - [anon_sym_break] = ACTIONS(1811), - [anon_sym_continue] = ACTIONS(1811), - [anon_sym_for] = ACTIONS(1811), - [anon_sym_in2] = ACTIONS(1811), - [anon_sym_loop] = ACTIONS(1811), - [anon_sym_make] = ACTIONS(1811), - [anon_sym_while] = ACTIONS(1811), - [anon_sym_do] = ACTIONS(1811), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_else] = ACTIONS(1811), - [anon_sym_match] = ACTIONS(1811), - [anon_sym_RBRACE] = ACTIONS(1811), - [anon_sym_try] = ACTIONS(1811), - [anon_sym_catch] = ACTIONS(1811), - [anon_sym_return] = ACTIONS(1811), - [anon_sym_source] = ACTIONS(1811), - [anon_sym_source_DASHenv] = ACTIONS(1811), - [anon_sym_hide] = ACTIONS(1811), - [anon_sym_hide_DASHenv] = ACTIONS(1811), - [anon_sym_overlay] = ACTIONS(1811), - [anon_sym_as] = ACTIONS(1811), - [anon_sym_LPAREN2] = ACTIONS(1813), - [anon_sym_PLUS2] = ACTIONS(1811), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1811), - [anon_sym_DOT_DOT2] = ACTIONS(1815), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1817), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1817), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1811), - [aux_sym__val_number_decimal_token1] = ACTIONS(1811), - [aux_sym__val_number_decimal_token2] = ACTIONS(1811), - [aux_sym__val_number_decimal_token3] = ACTIONS(1811), - [aux_sym__val_number_decimal_token4] = ACTIONS(1811), - [aux_sym__val_number_token1] = ACTIONS(1811), - [aux_sym__val_number_token2] = ACTIONS(1811), - [aux_sym__val_number_token3] = ACTIONS(1811), - [aux_sym__val_number_token4] = ACTIONS(1811), - [aux_sym__val_number_token5] = ACTIONS(1811), - [aux_sym__val_number_token6] = ACTIONS(1811), - [anon_sym_DQUOTE] = ACTIONS(1811), - [sym__str_single_quotes] = ACTIONS(1811), - [sym__str_back_ticks] = ACTIONS(1811), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1811), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1811), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1811), - [sym__entry_separator] = ACTIONS(1819), - [anon_sym_register] = ACTIONS(1811), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1447), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1819), - }, - [387] = { - [sym_comment] = STATE(387), - [anon_sym_export] = ACTIONS(1778), - [anon_sym_alias] = ACTIONS(1778), - [anon_sym_let] = ACTIONS(1778), - [anon_sym_let_DASHenv] = ACTIONS(1778), - [anon_sym_mut] = ACTIONS(1778), - [anon_sym_const] = ACTIONS(1778), - [aux_sym_cmd_identifier_token1] = ACTIONS(1778), - [aux_sym_cmd_identifier_token2] = ACTIONS(1786), - [aux_sym_cmd_identifier_token3] = ACTIONS(1786), - [aux_sym_cmd_identifier_token4] = ACTIONS(1786), - [aux_sym_cmd_identifier_token5] = ACTIONS(1786), - [aux_sym_cmd_identifier_token6] = ACTIONS(1786), - [aux_sym_cmd_identifier_token7] = ACTIONS(1786), - [aux_sym_cmd_identifier_token8] = ACTIONS(1778), - [aux_sym_cmd_identifier_token9] = ACTIONS(1778), - [aux_sym_cmd_identifier_token10] = ACTIONS(1786), - [aux_sym_cmd_identifier_token11] = ACTIONS(1786), - [aux_sym_cmd_identifier_token12] = ACTIONS(1778), - [aux_sym_cmd_identifier_token13] = ACTIONS(1778), - [aux_sym_cmd_identifier_token14] = ACTIONS(1778), - [aux_sym_cmd_identifier_token15] = ACTIONS(1778), - [aux_sym_cmd_identifier_token16] = ACTIONS(1786), - [aux_sym_cmd_identifier_token17] = ACTIONS(1786), - [aux_sym_cmd_identifier_token18] = ACTIONS(1786), - [aux_sym_cmd_identifier_token19] = ACTIONS(1786), - [aux_sym_cmd_identifier_token20] = ACTIONS(1786), - [aux_sym_cmd_identifier_token21] = ACTIONS(1786), - [aux_sym_cmd_identifier_token22] = ACTIONS(1786), - [aux_sym_cmd_identifier_token23] = ACTIONS(1786), - [aux_sym_cmd_identifier_token24] = ACTIONS(1786), - [aux_sym_cmd_identifier_token25] = ACTIONS(1786), - [aux_sym_cmd_identifier_token26] = ACTIONS(1786), - [aux_sym_cmd_identifier_token27] = ACTIONS(1786), - [aux_sym_cmd_identifier_token28] = ACTIONS(1786), - [aux_sym_cmd_identifier_token29] = ACTIONS(1786), - [aux_sym_cmd_identifier_token30] = ACTIONS(1786), - [aux_sym_cmd_identifier_token31] = ACTIONS(1786), - [aux_sym_cmd_identifier_token32] = ACTIONS(1786), - [aux_sym_cmd_identifier_token33] = ACTIONS(1786), - [aux_sym_cmd_identifier_token34] = ACTIONS(1778), - [aux_sym_cmd_identifier_token35] = ACTIONS(1786), - [aux_sym_cmd_identifier_token36] = ACTIONS(1786), - [aux_sym_cmd_identifier_token37] = ACTIONS(1786), - [aux_sym_cmd_identifier_token38] = ACTIONS(1778), - [aux_sym_cmd_identifier_token39] = ACTIONS(1786), - [aux_sym_cmd_identifier_token40] = ACTIONS(1786), - [anon_sym_def] = ACTIONS(1778), - [anon_sym_export_DASHenv] = ACTIONS(1778), - [anon_sym_extern] = ACTIONS(1778), - [anon_sym_module] = ACTIONS(1778), - [anon_sym_use] = ACTIONS(1778), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_DOLLAR] = ACTIONS(1778), - [anon_sym_error] = ACTIONS(1778), - [anon_sym_DASH2] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1778), - [anon_sym_in2] = ACTIONS(1778), - [anon_sym_loop] = ACTIONS(1778), - [anon_sym_make] = ACTIONS(1778), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_do] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_match] = ACTIONS(1778), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_catch] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_source] = ACTIONS(1778), - [anon_sym_source_DASHenv] = ACTIONS(1778), - [anon_sym_hide] = ACTIONS(1778), - [anon_sym_hide_DASHenv] = ACTIONS(1778), - [anon_sym_overlay] = ACTIONS(1778), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_LPAREN2] = ACTIONS(1780), - [anon_sym_PLUS2] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1786), - [anon_sym_DOT_DOT2] = ACTIONS(1821), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1823), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1823), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1786), - [aux_sym__val_number_decimal_token1] = ACTIONS(1778), - [aux_sym__val_number_decimal_token2] = ACTIONS(1786), - [aux_sym__val_number_decimal_token3] = ACTIONS(1786), - [aux_sym__val_number_decimal_token4] = ACTIONS(1786), - [aux_sym__val_number_token1] = ACTIONS(1786), - [aux_sym__val_number_token2] = ACTIONS(1786), - [aux_sym__val_number_token3] = ACTIONS(1786), - [aux_sym__val_number_token4] = ACTIONS(1778), - [aux_sym__val_number_token5] = ACTIONS(1778), - [aux_sym__val_number_token6] = ACTIONS(1778), - [anon_sym_DQUOTE] = ACTIONS(1786), - [sym__str_single_quotes] = ACTIONS(1786), - [sym__str_back_ticks] = ACTIONS(1786), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1786), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1786), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1778), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1786), + [387] = { + [sym_cell_path] = STATE(591), + [sym_path] = STATE(541), + [sym_comment] = STATE(387), + [aux_sym_cell_path_repeat1] = STATE(430), + [anon_sym_export] = ACTIONS(925), + [anon_sym_alias] = ACTIONS(925), + [anon_sym_let] = ACTIONS(925), + [anon_sym_let_DASHenv] = ACTIONS(925), + [anon_sym_mut] = ACTIONS(925), + [anon_sym_const] = ACTIONS(925), + [aux_sym_cmd_identifier_token1] = ACTIONS(925), + [aux_sym_cmd_identifier_token2] = ACTIONS(927), + [aux_sym_cmd_identifier_token3] = ACTIONS(927), + [aux_sym_cmd_identifier_token4] = ACTIONS(927), + [aux_sym_cmd_identifier_token5] = ACTIONS(927), + [aux_sym_cmd_identifier_token6] = ACTIONS(927), + [aux_sym_cmd_identifier_token7] = ACTIONS(927), + [aux_sym_cmd_identifier_token8] = ACTIONS(925), + [aux_sym_cmd_identifier_token9] = ACTIONS(925), + [aux_sym_cmd_identifier_token10] = ACTIONS(927), + [aux_sym_cmd_identifier_token11] = ACTIONS(927), + [aux_sym_cmd_identifier_token12] = ACTIONS(925), + [aux_sym_cmd_identifier_token13] = ACTIONS(925), + [aux_sym_cmd_identifier_token14] = ACTIONS(925), + [aux_sym_cmd_identifier_token15] = ACTIONS(925), + [aux_sym_cmd_identifier_token16] = ACTIONS(927), + [aux_sym_cmd_identifier_token17] = ACTIONS(927), + [aux_sym_cmd_identifier_token18] = ACTIONS(927), + [aux_sym_cmd_identifier_token19] = ACTIONS(927), + [aux_sym_cmd_identifier_token20] = ACTIONS(927), + [aux_sym_cmd_identifier_token21] = ACTIONS(927), + [aux_sym_cmd_identifier_token22] = ACTIONS(927), + [aux_sym_cmd_identifier_token23] = ACTIONS(927), + [aux_sym_cmd_identifier_token24] = ACTIONS(927), + [aux_sym_cmd_identifier_token25] = ACTIONS(927), + [aux_sym_cmd_identifier_token26] = ACTIONS(927), + [aux_sym_cmd_identifier_token27] = ACTIONS(927), + [aux_sym_cmd_identifier_token28] = ACTIONS(927), + [aux_sym_cmd_identifier_token29] = ACTIONS(927), + [aux_sym_cmd_identifier_token30] = ACTIONS(927), + [aux_sym_cmd_identifier_token31] = ACTIONS(927), + [aux_sym_cmd_identifier_token32] = ACTIONS(927), + [aux_sym_cmd_identifier_token33] = ACTIONS(927), + [aux_sym_cmd_identifier_token34] = ACTIONS(925), + [aux_sym_cmd_identifier_token35] = ACTIONS(927), + [aux_sym_cmd_identifier_token36] = ACTIONS(927), + [aux_sym_cmd_identifier_token37] = ACTIONS(927), + [aux_sym_cmd_identifier_token38] = ACTIONS(925), + [aux_sym_cmd_identifier_token39] = ACTIONS(927), + [aux_sym_cmd_identifier_token40] = ACTIONS(927), + [anon_sym_def] = ACTIONS(925), + [anon_sym_export_DASHenv] = ACTIONS(925), + [anon_sym_extern] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_use] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(927), + [anon_sym_COMMA] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_error] = ACTIONS(925), + [anon_sym_DASH2] = ACTIONS(925), + [anon_sym_break] = ACTIONS(925), + [anon_sym_continue] = ACTIONS(925), + [anon_sym_for] = ACTIONS(925), + [anon_sym_in2] = ACTIONS(925), + [anon_sym_loop] = ACTIONS(925), + [anon_sym_make] = ACTIONS(925), + [anon_sym_while] = ACTIONS(925), + [anon_sym_do] = ACTIONS(925), + [anon_sym_if] = ACTIONS(925), + [anon_sym_else] = ACTIONS(925), + [anon_sym_match] = ACTIONS(925), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_try] = ACTIONS(925), + [anon_sym_catch] = ACTIONS(925), + [anon_sym_return] = ACTIONS(925), + [anon_sym_source] = ACTIONS(925), + [anon_sym_source_DASHenv] = ACTIONS(925), + [anon_sym_hide] = ACTIONS(925), + [anon_sym_hide_DASHenv] = ACTIONS(925), + [anon_sym_overlay] = ACTIONS(925), + [anon_sym_as] = ACTIONS(925), + [anon_sym_PLUS2] = ACTIONS(925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(927), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(927), + [aux_sym__val_number_decimal_token1] = ACTIONS(925), + [aux_sym__val_number_decimal_token2] = ACTIONS(927), + [aux_sym__val_number_decimal_token3] = ACTIONS(927), + [aux_sym__val_number_decimal_token4] = ACTIONS(927), + [aux_sym__val_number_token1] = ACTIONS(927), + [aux_sym__val_number_token2] = ACTIONS(927), + [aux_sym__val_number_token3] = ACTIONS(927), + [aux_sym__val_number_token4] = ACTIONS(925), + [aux_sym__val_number_token5] = ACTIONS(925), + [aux_sym__val_number_token6] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(927), + [sym__str_single_quotes] = ACTIONS(927), + [sym__str_back_ticks] = ACTIONS(927), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(927), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(927), + [anon_sym_register] = ACTIONS(925), + [anon_sym_COLON2] = ACTIONS(927), + [anon_sym_DOT2] = ACTIONS(1821), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(927), }, [388] = { + [sym_cell_path] = STATE(644), + [sym_path] = STATE(533), [sym_comment] = STATE(388), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), - [aux_sym_cmd_identifier_token2] = ACTIONS(1650), - [aux_sym_cmd_identifier_token3] = ACTIONS(1650), - [aux_sym_cmd_identifier_token4] = ACTIONS(1650), - [aux_sym_cmd_identifier_token5] = ACTIONS(1650), - [aux_sym_cmd_identifier_token6] = ACTIONS(1650), - [aux_sym_cmd_identifier_token7] = ACTIONS(1650), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), - [aux_sym_cmd_identifier_token10] = ACTIONS(1650), - [aux_sym_cmd_identifier_token11] = ACTIONS(1650), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), - [aux_sym_cmd_identifier_token16] = ACTIONS(1650), - [aux_sym_cmd_identifier_token17] = ACTIONS(1650), - [aux_sym_cmd_identifier_token18] = ACTIONS(1650), - [aux_sym_cmd_identifier_token19] = ACTIONS(1650), - [aux_sym_cmd_identifier_token20] = ACTIONS(1650), - [aux_sym_cmd_identifier_token21] = ACTIONS(1650), - [aux_sym_cmd_identifier_token22] = ACTIONS(1650), - [aux_sym_cmd_identifier_token23] = ACTIONS(1650), - [aux_sym_cmd_identifier_token24] = ACTIONS(1650), - [aux_sym_cmd_identifier_token25] = ACTIONS(1650), - [aux_sym_cmd_identifier_token26] = ACTIONS(1650), - [aux_sym_cmd_identifier_token27] = ACTIONS(1650), - [aux_sym_cmd_identifier_token28] = ACTIONS(1650), - [aux_sym_cmd_identifier_token29] = ACTIONS(1650), - [aux_sym_cmd_identifier_token30] = ACTIONS(1650), - [aux_sym_cmd_identifier_token31] = ACTIONS(1650), - [aux_sym_cmd_identifier_token32] = ACTIONS(1650), - [aux_sym_cmd_identifier_token33] = ACTIONS(1650), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), - [aux_sym_cmd_identifier_token35] = ACTIONS(1650), - [aux_sym_cmd_identifier_token36] = ACTIONS(1650), - [aux_sym_cmd_identifier_token37] = ACTIONS(1650), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), - [aux_sym_cmd_identifier_token39] = ACTIONS(1650), - [aux_sym_cmd_identifier_token40] = ACTIONS(1650), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_DASH2] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in2] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_PLUS2] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1650), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [aux_sym__immediate_decimal_token1] = ACTIONS(1825), - [aux_sym__immediate_decimal_token2] = ACTIONS(1827), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [aux_sym__val_number_token4] = ACTIONS(1648), - [aux_sym__val_number_token5] = ACTIONS(1648), - [aux_sym__val_number_token6] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1650), - [anon_sym_register] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1650), + [aux_sym_cell_path_repeat1] = STATE(435), + [anon_sym_export] = ACTIONS(1823), + [anon_sym_alias] = ACTIONS(1823), + [anon_sym_let] = ACTIONS(1823), + [anon_sym_let_DASHenv] = ACTIONS(1823), + [anon_sym_mut] = ACTIONS(1823), + [anon_sym_const] = ACTIONS(1823), + [aux_sym_cmd_identifier_token1] = ACTIONS(1823), + [aux_sym_cmd_identifier_token2] = ACTIONS(1823), + [aux_sym_cmd_identifier_token3] = ACTIONS(1823), + [aux_sym_cmd_identifier_token4] = ACTIONS(1823), + [aux_sym_cmd_identifier_token5] = ACTIONS(1823), + [aux_sym_cmd_identifier_token6] = ACTIONS(1823), + [aux_sym_cmd_identifier_token7] = ACTIONS(1823), + [aux_sym_cmd_identifier_token8] = ACTIONS(1823), + [aux_sym_cmd_identifier_token9] = ACTIONS(1823), + [aux_sym_cmd_identifier_token10] = ACTIONS(1823), + [aux_sym_cmd_identifier_token11] = ACTIONS(1823), + [aux_sym_cmd_identifier_token12] = ACTIONS(1823), + [aux_sym_cmd_identifier_token13] = ACTIONS(1823), + [aux_sym_cmd_identifier_token14] = ACTIONS(1823), + [aux_sym_cmd_identifier_token15] = ACTIONS(1823), + [aux_sym_cmd_identifier_token16] = ACTIONS(1823), + [aux_sym_cmd_identifier_token17] = ACTIONS(1823), + [aux_sym_cmd_identifier_token18] = ACTIONS(1823), + [aux_sym_cmd_identifier_token19] = ACTIONS(1823), + [aux_sym_cmd_identifier_token20] = ACTIONS(1823), + [aux_sym_cmd_identifier_token21] = ACTIONS(1823), + [aux_sym_cmd_identifier_token22] = ACTIONS(1823), + [aux_sym_cmd_identifier_token23] = ACTIONS(1823), + [aux_sym_cmd_identifier_token24] = ACTIONS(1823), + [aux_sym_cmd_identifier_token25] = ACTIONS(1823), + [aux_sym_cmd_identifier_token26] = ACTIONS(1823), + [aux_sym_cmd_identifier_token27] = ACTIONS(1823), + [aux_sym_cmd_identifier_token28] = ACTIONS(1823), + [aux_sym_cmd_identifier_token29] = ACTIONS(1823), + [aux_sym_cmd_identifier_token30] = ACTIONS(1823), + [aux_sym_cmd_identifier_token31] = ACTIONS(1823), + [aux_sym_cmd_identifier_token32] = ACTIONS(1823), + [aux_sym_cmd_identifier_token33] = ACTIONS(1823), + [aux_sym_cmd_identifier_token34] = ACTIONS(1823), + [aux_sym_cmd_identifier_token35] = ACTIONS(1823), + [aux_sym_cmd_identifier_token36] = ACTIONS(1823), + [aux_sym_cmd_identifier_token37] = ACTIONS(1823), + [aux_sym_cmd_identifier_token38] = ACTIONS(1823), + [aux_sym_cmd_identifier_token39] = ACTIONS(1823), + [aux_sym_cmd_identifier_token40] = ACTIONS(1823), + [anon_sym_def] = ACTIONS(1823), + [anon_sym_export_DASHenv] = ACTIONS(1823), + [anon_sym_extern] = ACTIONS(1823), + [anon_sym_module] = ACTIONS(1823), + [anon_sym_use] = ACTIONS(1823), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_COMMA] = ACTIONS(1823), + [anon_sym_DOLLAR] = ACTIONS(1823), + [anon_sym_error] = ACTIONS(1823), + [anon_sym_DASH2] = ACTIONS(1823), + [anon_sym_break] = ACTIONS(1823), + [anon_sym_continue] = ACTIONS(1823), + [anon_sym_for] = ACTIONS(1823), + [anon_sym_in2] = ACTIONS(1823), + [anon_sym_loop] = ACTIONS(1823), + [anon_sym_make] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(1823), + [anon_sym_do] = ACTIONS(1823), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_else] = ACTIONS(1823), + [anon_sym_match] = ACTIONS(1823), + [anon_sym_RBRACE] = ACTIONS(1823), + [anon_sym_try] = ACTIONS(1823), + [anon_sym_catch] = ACTIONS(1823), + [anon_sym_return] = ACTIONS(1823), + [anon_sym_source] = ACTIONS(1823), + [anon_sym_source_DASHenv] = ACTIONS(1823), + [anon_sym_hide] = ACTIONS(1823), + [anon_sym_hide_DASHenv] = ACTIONS(1823), + [anon_sym_overlay] = ACTIONS(1823), + [anon_sym_as] = ACTIONS(1823), + [anon_sym_PLUS2] = ACTIONS(1823), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1823), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1823), + [aux_sym__val_number_decimal_token1] = ACTIONS(1823), + [aux_sym__val_number_decimal_token2] = ACTIONS(1823), + [aux_sym__val_number_decimal_token3] = ACTIONS(1823), + [aux_sym__val_number_decimal_token4] = ACTIONS(1823), + [aux_sym__val_number_token1] = ACTIONS(1823), + [aux_sym__val_number_token2] = ACTIONS(1823), + [aux_sym__val_number_token3] = ACTIONS(1823), + [aux_sym__val_number_token4] = ACTIONS(1823), + [aux_sym__val_number_token5] = ACTIONS(1823), + [aux_sym__val_number_token6] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1823), + [sym__str_single_quotes] = ACTIONS(1823), + [sym__str_back_ticks] = ACTIONS(1823), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1823), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1823), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1823), + [sym__entry_separator] = ACTIONS(1825), + [anon_sym_register] = ACTIONS(1823), + [anon_sym_DOT2] = ACTIONS(1827), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1825), }, [389] = { + [sym_cell_path] = STATE(579), + [sym_path] = STATE(533), [sym_comment] = STATE(389), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_alias] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_let_DASHenv] = ACTIONS(1719), - [anon_sym_mut] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [aux_sym_cmd_identifier_token1] = ACTIONS(1719), - [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(1719), - [aux_sym_cmd_identifier_token9] = ACTIONS(1719), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1719), - [aux_sym_cmd_identifier_token13] = ACTIONS(1719), - [aux_sym_cmd_identifier_token14] = ACTIONS(1719), - [aux_sym_cmd_identifier_token15] = ACTIONS(1719), - [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(1719), - [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(1719), - [aux_sym_cmd_identifier_token39] = ACTIONS(1721), - [aux_sym_cmd_identifier_token40] = ACTIONS(1721), - [anon_sym_def] = ACTIONS(1719), - [anon_sym_export_DASHenv] = ACTIONS(1719), - [anon_sym_extern] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_use] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_COMMA] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_error] = ACTIONS(1719), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_in2] = ACTIONS(1719), - [anon_sym_loop] = ACTIONS(1719), - [anon_sym_make] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_match] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_catch] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_source] = ACTIONS(1719), - [anon_sym_source_DASHenv] = ACTIONS(1719), - [anon_sym_hide] = ACTIONS(1719), - [anon_sym_hide_DASHenv] = ACTIONS(1719), - [anon_sym_overlay] = ACTIONS(1719), - [anon_sym_as] = ACTIONS(1719), - [anon_sym_LPAREN2] = ACTIONS(1721), - [anon_sym_PLUS2] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), - [anon_sym_DOT_DOT2] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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(1719), - [aux_sym__val_number_token5] = ACTIONS(1719), - [aux_sym__val_number_token6] = ACTIONS(1719), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1719), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1721), - }, - [390] = { - [sym_cell_path] = STATE(650), - [sym_path] = STATE(558), - [sym_comment] = STATE(390), - [aux_sym_cell_path_repeat1] = STATE(446), + [aux_sym_cell_path_repeat1] = STATE(435), [anon_sym_export] = ACTIONS(1829), [anon_sym_alias] = ACTIONS(1829), [anon_sym_let] = ACTIONS(1829), @@ -118594,876 +117373,1625 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1829), [sym__entry_separator] = ACTIONS(1831), [anon_sym_register] = ACTIONS(1829), - [anon_sym_DOT2] = ACTIONS(1833), + [anon_sym_DOT2] = ACTIONS(1827), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1831), }, + [390] = { + [sym_cell_path] = STATE(571), + [sym_path] = STATE(533), + [sym_comment] = STATE(390), + [aux_sym_cell_path_repeat1] = STATE(435), + [anon_sym_export] = ACTIONS(1833), + [anon_sym_alias] = ACTIONS(1833), + [anon_sym_let] = ACTIONS(1833), + [anon_sym_let_DASHenv] = ACTIONS(1833), + [anon_sym_mut] = ACTIONS(1833), + [anon_sym_const] = ACTIONS(1833), + [aux_sym_cmd_identifier_token1] = ACTIONS(1833), + [aux_sym_cmd_identifier_token2] = ACTIONS(1833), + [aux_sym_cmd_identifier_token3] = ACTIONS(1833), + [aux_sym_cmd_identifier_token4] = ACTIONS(1833), + [aux_sym_cmd_identifier_token5] = ACTIONS(1833), + [aux_sym_cmd_identifier_token6] = ACTIONS(1833), + [aux_sym_cmd_identifier_token7] = ACTIONS(1833), + [aux_sym_cmd_identifier_token8] = ACTIONS(1833), + [aux_sym_cmd_identifier_token9] = ACTIONS(1833), + [aux_sym_cmd_identifier_token10] = ACTIONS(1833), + [aux_sym_cmd_identifier_token11] = ACTIONS(1833), + [aux_sym_cmd_identifier_token12] = ACTIONS(1833), + [aux_sym_cmd_identifier_token13] = ACTIONS(1833), + [aux_sym_cmd_identifier_token14] = ACTIONS(1833), + [aux_sym_cmd_identifier_token15] = ACTIONS(1833), + [aux_sym_cmd_identifier_token16] = ACTIONS(1833), + [aux_sym_cmd_identifier_token17] = ACTIONS(1833), + [aux_sym_cmd_identifier_token18] = ACTIONS(1833), + [aux_sym_cmd_identifier_token19] = ACTIONS(1833), + [aux_sym_cmd_identifier_token20] = ACTIONS(1833), + [aux_sym_cmd_identifier_token21] = ACTIONS(1833), + [aux_sym_cmd_identifier_token22] = ACTIONS(1833), + [aux_sym_cmd_identifier_token23] = ACTIONS(1833), + [aux_sym_cmd_identifier_token24] = ACTIONS(1833), + [aux_sym_cmd_identifier_token25] = ACTIONS(1833), + [aux_sym_cmd_identifier_token26] = ACTIONS(1833), + [aux_sym_cmd_identifier_token27] = ACTIONS(1833), + [aux_sym_cmd_identifier_token28] = ACTIONS(1833), + [aux_sym_cmd_identifier_token29] = ACTIONS(1833), + [aux_sym_cmd_identifier_token30] = ACTIONS(1833), + [aux_sym_cmd_identifier_token31] = ACTIONS(1833), + [aux_sym_cmd_identifier_token32] = ACTIONS(1833), + [aux_sym_cmd_identifier_token33] = ACTIONS(1833), + [aux_sym_cmd_identifier_token34] = ACTIONS(1833), + [aux_sym_cmd_identifier_token35] = ACTIONS(1833), + [aux_sym_cmd_identifier_token36] = ACTIONS(1833), + [aux_sym_cmd_identifier_token37] = ACTIONS(1833), + [aux_sym_cmd_identifier_token38] = ACTIONS(1833), + [aux_sym_cmd_identifier_token39] = ACTIONS(1833), + [aux_sym_cmd_identifier_token40] = ACTIONS(1833), + [anon_sym_def] = ACTIONS(1833), + [anon_sym_export_DASHenv] = ACTIONS(1833), + [anon_sym_extern] = ACTIONS(1833), + [anon_sym_module] = ACTIONS(1833), + [anon_sym_use] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1833), + [anon_sym_COMMA] = ACTIONS(1833), + [anon_sym_DOLLAR] = ACTIONS(1833), + [anon_sym_error] = ACTIONS(1833), + [anon_sym_DASH2] = ACTIONS(1833), + [anon_sym_break] = ACTIONS(1833), + [anon_sym_continue] = ACTIONS(1833), + [anon_sym_for] = ACTIONS(1833), + [anon_sym_in2] = ACTIONS(1833), + [anon_sym_loop] = ACTIONS(1833), + [anon_sym_make] = ACTIONS(1833), + [anon_sym_while] = ACTIONS(1833), + [anon_sym_do] = ACTIONS(1833), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_else] = ACTIONS(1833), + [anon_sym_match] = ACTIONS(1833), + [anon_sym_RBRACE] = ACTIONS(1833), + [anon_sym_try] = ACTIONS(1833), + [anon_sym_catch] = ACTIONS(1833), + [anon_sym_return] = ACTIONS(1833), + [anon_sym_source] = ACTIONS(1833), + [anon_sym_source_DASHenv] = ACTIONS(1833), + [anon_sym_hide] = ACTIONS(1833), + [anon_sym_hide_DASHenv] = ACTIONS(1833), + [anon_sym_overlay] = ACTIONS(1833), + [anon_sym_as] = ACTIONS(1833), + [anon_sym_PLUS2] = ACTIONS(1833), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1833), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1833), + [aux_sym__val_number_decimal_token1] = ACTIONS(1833), + [aux_sym__val_number_decimal_token2] = ACTIONS(1833), + [aux_sym__val_number_decimal_token3] = ACTIONS(1833), + [aux_sym__val_number_decimal_token4] = ACTIONS(1833), + [aux_sym__val_number_token1] = ACTIONS(1833), + [aux_sym__val_number_token2] = ACTIONS(1833), + [aux_sym__val_number_token3] = ACTIONS(1833), + [aux_sym__val_number_token4] = ACTIONS(1833), + [aux_sym__val_number_token5] = ACTIONS(1833), + [aux_sym__val_number_token6] = ACTIONS(1833), + [anon_sym_DQUOTE] = ACTIONS(1833), + [sym__str_single_quotes] = ACTIONS(1833), + [sym__str_back_ticks] = ACTIONS(1833), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1833), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1833), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1833), + [sym__entry_separator] = ACTIONS(1835), + [anon_sym_register] = ACTIONS(1833), + [anon_sym_DOT2] = ACTIONS(1827), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1835), + }, [391] = { - [sym_cell_path] = STATE(651), - [sym_path] = STATE(558), [sym_comment] = STATE(391), - [aux_sym_cell_path_repeat1] = STATE(446), - [anon_sym_export] = ACTIONS(1835), - [anon_sym_alias] = ACTIONS(1835), - [anon_sym_let] = ACTIONS(1835), - [anon_sym_let_DASHenv] = ACTIONS(1835), - [anon_sym_mut] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [aux_sym_cmd_identifier_token1] = ACTIONS(1835), - [aux_sym_cmd_identifier_token2] = ACTIONS(1835), - [aux_sym_cmd_identifier_token3] = ACTIONS(1835), - [aux_sym_cmd_identifier_token4] = ACTIONS(1835), - [aux_sym_cmd_identifier_token5] = ACTIONS(1835), - [aux_sym_cmd_identifier_token6] = ACTIONS(1835), - [aux_sym_cmd_identifier_token7] = ACTIONS(1835), - [aux_sym_cmd_identifier_token8] = ACTIONS(1835), - [aux_sym_cmd_identifier_token9] = ACTIONS(1835), - [aux_sym_cmd_identifier_token10] = ACTIONS(1835), - [aux_sym_cmd_identifier_token11] = ACTIONS(1835), - [aux_sym_cmd_identifier_token12] = ACTIONS(1835), - [aux_sym_cmd_identifier_token13] = ACTIONS(1835), - [aux_sym_cmd_identifier_token14] = ACTIONS(1835), - [aux_sym_cmd_identifier_token15] = ACTIONS(1835), - [aux_sym_cmd_identifier_token16] = ACTIONS(1835), - [aux_sym_cmd_identifier_token17] = ACTIONS(1835), - [aux_sym_cmd_identifier_token18] = ACTIONS(1835), - [aux_sym_cmd_identifier_token19] = ACTIONS(1835), - [aux_sym_cmd_identifier_token20] = ACTIONS(1835), - [aux_sym_cmd_identifier_token21] = ACTIONS(1835), - [aux_sym_cmd_identifier_token22] = ACTIONS(1835), - [aux_sym_cmd_identifier_token23] = ACTIONS(1835), - [aux_sym_cmd_identifier_token24] = ACTIONS(1835), - [aux_sym_cmd_identifier_token25] = ACTIONS(1835), - [aux_sym_cmd_identifier_token26] = ACTIONS(1835), - [aux_sym_cmd_identifier_token27] = ACTIONS(1835), - [aux_sym_cmd_identifier_token28] = ACTIONS(1835), - [aux_sym_cmd_identifier_token29] = ACTIONS(1835), - [aux_sym_cmd_identifier_token30] = ACTIONS(1835), - [aux_sym_cmd_identifier_token31] = ACTIONS(1835), - [aux_sym_cmd_identifier_token32] = ACTIONS(1835), - [aux_sym_cmd_identifier_token33] = ACTIONS(1835), - [aux_sym_cmd_identifier_token34] = ACTIONS(1835), - [aux_sym_cmd_identifier_token35] = ACTIONS(1835), - [aux_sym_cmd_identifier_token36] = ACTIONS(1835), - [aux_sym_cmd_identifier_token37] = ACTIONS(1835), - [aux_sym_cmd_identifier_token38] = ACTIONS(1835), - [aux_sym_cmd_identifier_token39] = ACTIONS(1835), - [aux_sym_cmd_identifier_token40] = ACTIONS(1835), - [anon_sym_def] = ACTIONS(1835), - [anon_sym_export_DASHenv] = ACTIONS(1835), - [anon_sym_extern] = ACTIONS(1835), - [anon_sym_module] = ACTIONS(1835), - [anon_sym_use] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1835), - [anon_sym_COMMA] = ACTIONS(1835), - [anon_sym_DOLLAR] = ACTIONS(1835), - [anon_sym_error] = ACTIONS(1835), - [anon_sym_DASH2] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1835), - [anon_sym_continue] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_in2] = ACTIONS(1835), - [anon_sym_loop] = ACTIONS(1835), - [anon_sym_make] = ACTIONS(1835), - [anon_sym_while] = ACTIONS(1835), - [anon_sym_do] = ACTIONS(1835), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_else] = ACTIONS(1835), - [anon_sym_match] = ACTIONS(1835), - [anon_sym_RBRACE] = ACTIONS(1835), - [anon_sym_try] = ACTIONS(1835), - [anon_sym_catch] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_source] = ACTIONS(1835), - [anon_sym_source_DASHenv] = ACTIONS(1835), - [anon_sym_hide] = ACTIONS(1835), - [anon_sym_hide_DASHenv] = ACTIONS(1835), - [anon_sym_overlay] = ACTIONS(1835), - [anon_sym_as] = ACTIONS(1835), - [anon_sym_PLUS2] = ACTIONS(1835), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1835), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1835), - [aux_sym__val_number_decimal_token1] = ACTIONS(1835), - [aux_sym__val_number_decimal_token2] = ACTIONS(1835), - [aux_sym__val_number_decimal_token3] = ACTIONS(1835), - [aux_sym__val_number_decimal_token4] = ACTIONS(1835), - [aux_sym__val_number_token1] = ACTIONS(1835), - [aux_sym__val_number_token2] = ACTIONS(1835), - [aux_sym__val_number_token3] = ACTIONS(1835), - [aux_sym__val_number_token4] = ACTIONS(1835), - [aux_sym__val_number_token5] = ACTIONS(1835), - [aux_sym__val_number_token6] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(1835), - [sym__str_single_quotes] = ACTIONS(1835), - [sym__str_back_ticks] = ACTIONS(1835), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1835), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1835), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1835), - [sym__entry_separator] = ACTIONS(1837), - [anon_sym_register] = ACTIONS(1835), - [anon_sym_DOT2] = ACTIONS(1833), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1805), + [anon_sym_alias] = ACTIONS(1805), + [anon_sym_let] = ACTIONS(1805), + [anon_sym_let_DASHenv] = ACTIONS(1805), + [anon_sym_mut] = ACTIONS(1805), + [anon_sym_const] = ACTIONS(1805), + [aux_sym_cmd_identifier_token1] = ACTIONS(1805), + [aux_sym_cmd_identifier_token2] = ACTIONS(1813), + [aux_sym_cmd_identifier_token3] = ACTIONS(1813), + [aux_sym_cmd_identifier_token4] = ACTIONS(1813), + [aux_sym_cmd_identifier_token5] = ACTIONS(1813), + [aux_sym_cmd_identifier_token6] = ACTIONS(1813), + [aux_sym_cmd_identifier_token7] = ACTIONS(1813), + [aux_sym_cmd_identifier_token8] = ACTIONS(1805), + [aux_sym_cmd_identifier_token9] = ACTIONS(1805), + [aux_sym_cmd_identifier_token10] = ACTIONS(1813), + [aux_sym_cmd_identifier_token11] = ACTIONS(1813), + [aux_sym_cmd_identifier_token12] = ACTIONS(1805), + [aux_sym_cmd_identifier_token13] = ACTIONS(1805), + [aux_sym_cmd_identifier_token14] = ACTIONS(1805), + [aux_sym_cmd_identifier_token15] = ACTIONS(1805), + [aux_sym_cmd_identifier_token16] = ACTIONS(1813), + [aux_sym_cmd_identifier_token17] = ACTIONS(1813), + [aux_sym_cmd_identifier_token18] = ACTIONS(1813), + [aux_sym_cmd_identifier_token19] = ACTIONS(1813), + [aux_sym_cmd_identifier_token20] = ACTIONS(1813), + [aux_sym_cmd_identifier_token21] = ACTIONS(1813), + [aux_sym_cmd_identifier_token22] = ACTIONS(1813), + [aux_sym_cmd_identifier_token23] = ACTIONS(1813), + [aux_sym_cmd_identifier_token24] = ACTIONS(1813), + [aux_sym_cmd_identifier_token25] = ACTIONS(1813), + [aux_sym_cmd_identifier_token26] = ACTIONS(1813), + [aux_sym_cmd_identifier_token27] = ACTIONS(1813), + [aux_sym_cmd_identifier_token28] = ACTIONS(1813), + [aux_sym_cmd_identifier_token29] = ACTIONS(1813), + [aux_sym_cmd_identifier_token30] = ACTIONS(1813), + [aux_sym_cmd_identifier_token31] = ACTIONS(1813), + [aux_sym_cmd_identifier_token32] = ACTIONS(1813), + [aux_sym_cmd_identifier_token33] = ACTIONS(1813), + [aux_sym_cmd_identifier_token34] = ACTIONS(1805), + [aux_sym_cmd_identifier_token35] = ACTIONS(1813), + [aux_sym_cmd_identifier_token36] = ACTIONS(1813), + [aux_sym_cmd_identifier_token37] = ACTIONS(1813), + [aux_sym_cmd_identifier_token38] = ACTIONS(1805), + [aux_sym_cmd_identifier_token39] = ACTIONS(1813), + [aux_sym_cmd_identifier_token40] = ACTIONS(1813), + [anon_sym_def] = ACTIONS(1805), + [anon_sym_export_DASHenv] = ACTIONS(1805), + [anon_sym_extern] = ACTIONS(1805), + [anon_sym_module] = ACTIONS(1805), + [anon_sym_use] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1805), + [anon_sym_COMMA] = ACTIONS(1813), + [anon_sym_DOLLAR] = ACTIONS(1805), + [anon_sym_error] = ACTIONS(1805), + [anon_sym_DASH2] = ACTIONS(1805), + [anon_sym_break] = ACTIONS(1805), + [anon_sym_continue] = ACTIONS(1805), + [anon_sym_for] = ACTIONS(1805), + [anon_sym_in2] = ACTIONS(1805), + [anon_sym_loop] = ACTIONS(1805), + [anon_sym_make] = ACTIONS(1805), + [anon_sym_while] = ACTIONS(1805), + [anon_sym_do] = ACTIONS(1805), + [anon_sym_if] = ACTIONS(1805), + [anon_sym_else] = ACTIONS(1805), + [anon_sym_match] = ACTIONS(1805), + [anon_sym_RBRACE] = ACTIONS(1813), + [anon_sym_try] = ACTIONS(1805), + [anon_sym_catch] = ACTIONS(1805), + [anon_sym_return] = ACTIONS(1805), + [anon_sym_source] = ACTIONS(1805), + [anon_sym_source_DASHenv] = ACTIONS(1805), + [anon_sym_hide] = ACTIONS(1805), + [anon_sym_hide_DASHenv] = ACTIONS(1805), + [anon_sym_overlay] = ACTIONS(1805), + [anon_sym_as] = ACTIONS(1805), + [anon_sym_LPAREN2] = ACTIONS(1807), + [anon_sym_PLUS2] = ACTIONS(1805), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1813), + [anon_sym_DOT_DOT2] = ACTIONS(1837), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1839), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1839), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1813), + [aux_sym__val_number_decimal_token1] = ACTIONS(1805), + [aux_sym__val_number_decimal_token2] = ACTIONS(1813), + [aux_sym__val_number_decimal_token3] = ACTIONS(1813), + [aux_sym__val_number_decimal_token4] = ACTIONS(1813), + [aux_sym__val_number_token1] = ACTIONS(1813), + [aux_sym__val_number_token2] = ACTIONS(1813), + [aux_sym__val_number_token3] = ACTIONS(1813), + [aux_sym__val_number_token4] = ACTIONS(1805), + [aux_sym__val_number_token5] = ACTIONS(1805), + [aux_sym__val_number_token6] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1813), + [sym__str_single_quotes] = ACTIONS(1813), + [sym__str_back_ticks] = ACTIONS(1813), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1813), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1813), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1813), + [anon_sym_register] = ACTIONS(1805), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1447), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1813), }, [392] = { - [sym_cell_path] = STATE(590), - [sym_path] = STATE(558), [sym_comment] = STATE(392), - [aux_sym_cell_path_repeat1] = STATE(446), - [anon_sym_export] = ACTIONS(925), - [anon_sym_alias] = ACTIONS(925), - [anon_sym_let] = ACTIONS(925), - [anon_sym_let_DASHenv] = ACTIONS(925), - [anon_sym_mut] = ACTIONS(925), - [anon_sym_const] = ACTIONS(925), - [aux_sym_cmd_identifier_token1] = ACTIONS(925), - [aux_sym_cmd_identifier_token2] = ACTIONS(925), - [aux_sym_cmd_identifier_token3] = ACTIONS(925), - [aux_sym_cmd_identifier_token4] = ACTIONS(925), - [aux_sym_cmd_identifier_token5] = ACTIONS(925), - [aux_sym_cmd_identifier_token6] = ACTIONS(925), - [aux_sym_cmd_identifier_token7] = ACTIONS(925), - [aux_sym_cmd_identifier_token8] = ACTIONS(925), - [aux_sym_cmd_identifier_token9] = ACTIONS(925), - [aux_sym_cmd_identifier_token10] = ACTIONS(925), - [aux_sym_cmd_identifier_token11] = ACTIONS(925), - [aux_sym_cmd_identifier_token12] = ACTIONS(925), - [aux_sym_cmd_identifier_token13] = ACTIONS(925), - [aux_sym_cmd_identifier_token14] = ACTIONS(925), - [aux_sym_cmd_identifier_token15] = ACTIONS(925), - [aux_sym_cmd_identifier_token16] = ACTIONS(925), - [aux_sym_cmd_identifier_token17] = ACTIONS(925), - [aux_sym_cmd_identifier_token18] = ACTIONS(925), - [aux_sym_cmd_identifier_token19] = ACTIONS(925), - [aux_sym_cmd_identifier_token20] = ACTIONS(925), - [aux_sym_cmd_identifier_token21] = ACTIONS(925), - [aux_sym_cmd_identifier_token22] = ACTIONS(925), - [aux_sym_cmd_identifier_token23] = ACTIONS(925), - [aux_sym_cmd_identifier_token24] = ACTIONS(925), - [aux_sym_cmd_identifier_token25] = ACTIONS(925), - [aux_sym_cmd_identifier_token26] = ACTIONS(925), - [aux_sym_cmd_identifier_token27] = ACTIONS(925), - [aux_sym_cmd_identifier_token28] = ACTIONS(925), - [aux_sym_cmd_identifier_token29] = ACTIONS(925), - [aux_sym_cmd_identifier_token30] = ACTIONS(925), - [aux_sym_cmd_identifier_token31] = ACTIONS(925), - [aux_sym_cmd_identifier_token32] = ACTIONS(925), - [aux_sym_cmd_identifier_token33] = ACTIONS(925), - [aux_sym_cmd_identifier_token34] = ACTIONS(925), - [aux_sym_cmd_identifier_token35] = ACTIONS(925), - [aux_sym_cmd_identifier_token36] = ACTIONS(925), - [aux_sym_cmd_identifier_token37] = ACTIONS(925), - [aux_sym_cmd_identifier_token38] = ACTIONS(925), - [aux_sym_cmd_identifier_token39] = ACTIONS(925), - [aux_sym_cmd_identifier_token40] = ACTIONS(925), - [anon_sym_def] = ACTIONS(925), - [anon_sym_export_DASHenv] = ACTIONS(925), - [anon_sym_extern] = ACTIONS(925), - [anon_sym_module] = ACTIONS(925), - [anon_sym_use] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_COMMA] = ACTIONS(925), - [anon_sym_DOLLAR] = ACTIONS(925), - [anon_sym_error] = ACTIONS(925), - [anon_sym_DASH2] = ACTIONS(925), - [anon_sym_break] = ACTIONS(925), - [anon_sym_continue] = ACTIONS(925), - [anon_sym_for] = ACTIONS(925), - [anon_sym_in2] = ACTIONS(925), - [anon_sym_loop] = ACTIONS(925), - [anon_sym_make] = ACTIONS(925), - [anon_sym_while] = ACTIONS(925), - [anon_sym_do] = ACTIONS(925), - [anon_sym_if] = ACTIONS(925), - [anon_sym_else] = ACTIONS(925), - [anon_sym_match] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_try] = ACTIONS(925), - [anon_sym_catch] = ACTIONS(925), - [anon_sym_return] = ACTIONS(925), - [anon_sym_source] = ACTIONS(925), - [anon_sym_source_DASHenv] = ACTIONS(925), - [anon_sym_hide] = ACTIONS(925), - [anon_sym_hide_DASHenv] = ACTIONS(925), - [anon_sym_overlay] = ACTIONS(925), - [anon_sym_as] = ACTIONS(925), - [anon_sym_PLUS2] = ACTIONS(925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(925), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(925), - [aux_sym__val_number_decimal_token1] = ACTIONS(925), - [aux_sym__val_number_decimal_token2] = ACTIONS(925), - [aux_sym__val_number_decimal_token3] = ACTIONS(925), - [aux_sym__val_number_decimal_token4] = ACTIONS(925), - [aux_sym__val_number_token1] = ACTIONS(925), - [aux_sym__val_number_token2] = ACTIONS(925), - [aux_sym__val_number_token3] = ACTIONS(925), - [aux_sym__val_number_token4] = ACTIONS(925), - [aux_sym__val_number_token5] = ACTIONS(925), - [aux_sym__val_number_token6] = ACTIONS(925), - [anon_sym_DQUOTE] = ACTIONS(925), - [sym__str_single_quotes] = ACTIONS(925), - [sym__str_back_ticks] = ACTIONS(925), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(925), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(925), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(925), - [sym__entry_separator] = ACTIONS(927), - [anon_sym_register] = ACTIONS(925), - [anon_sym_DOT2] = ACTIONS(1833), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(927), + [anon_sym_export] = ACTIONS(954), + [anon_sym_alias] = ACTIONS(954), + [anon_sym_let] = ACTIONS(954), + [anon_sym_let_DASHenv] = ACTIONS(954), + [anon_sym_mut] = ACTIONS(954), + [anon_sym_const] = ACTIONS(954), + [aux_sym_cmd_identifier_token1] = ACTIONS(954), + [aux_sym_cmd_identifier_token2] = ACTIONS(956), + [aux_sym_cmd_identifier_token3] = ACTIONS(956), + [aux_sym_cmd_identifier_token4] = ACTIONS(956), + [aux_sym_cmd_identifier_token5] = ACTIONS(956), + [aux_sym_cmd_identifier_token6] = ACTIONS(956), + [aux_sym_cmd_identifier_token7] = ACTIONS(956), + [aux_sym_cmd_identifier_token8] = ACTIONS(954), + [aux_sym_cmd_identifier_token9] = ACTIONS(954), + [aux_sym_cmd_identifier_token10] = ACTIONS(956), + [aux_sym_cmd_identifier_token11] = ACTIONS(956), + [aux_sym_cmd_identifier_token12] = ACTIONS(954), + [aux_sym_cmd_identifier_token13] = ACTIONS(954), + [aux_sym_cmd_identifier_token14] = ACTIONS(954), + [aux_sym_cmd_identifier_token15] = ACTIONS(954), + [aux_sym_cmd_identifier_token16] = ACTIONS(956), + [aux_sym_cmd_identifier_token17] = ACTIONS(956), + [aux_sym_cmd_identifier_token18] = ACTIONS(956), + [aux_sym_cmd_identifier_token19] = ACTIONS(956), + [aux_sym_cmd_identifier_token20] = ACTIONS(956), + [aux_sym_cmd_identifier_token21] = ACTIONS(956), + [aux_sym_cmd_identifier_token22] = ACTIONS(956), + [aux_sym_cmd_identifier_token23] = ACTIONS(956), + [aux_sym_cmd_identifier_token24] = ACTIONS(956), + [aux_sym_cmd_identifier_token25] = ACTIONS(956), + [aux_sym_cmd_identifier_token26] = ACTIONS(956), + [aux_sym_cmd_identifier_token27] = ACTIONS(956), + [aux_sym_cmd_identifier_token28] = ACTIONS(956), + [aux_sym_cmd_identifier_token29] = ACTIONS(956), + [aux_sym_cmd_identifier_token30] = ACTIONS(956), + [aux_sym_cmd_identifier_token31] = ACTIONS(956), + [aux_sym_cmd_identifier_token32] = ACTIONS(956), + [aux_sym_cmd_identifier_token33] = ACTIONS(956), + [aux_sym_cmd_identifier_token34] = ACTIONS(954), + [aux_sym_cmd_identifier_token35] = ACTIONS(956), + [aux_sym_cmd_identifier_token36] = ACTIONS(956), + [aux_sym_cmd_identifier_token37] = ACTIONS(956), + [aux_sym_cmd_identifier_token38] = ACTIONS(954), + [aux_sym_cmd_identifier_token39] = ACTIONS(956), + [aux_sym_cmd_identifier_token40] = ACTIONS(956), + [anon_sym_def] = ACTIONS(954), + [anon_sym_export_DASHenv] = ACTIONS(954), + [anon_sym_extern] = ACTIONS(954), + [anon_sym_module] = ACTIONS(954), + [anon_sym_use] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(956), + [anon_sym_COMMA] = ACTIONS(956), + [anon_sym_DOLLAR] = ACTIONS(954), + [anon_sym_error] = ACTIONS(954), + [anon_sym_DASH2] = ACTIONS(954), + [anon_sym_break] = ACTIONS(954), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_for] = ACTIONS(954), + [anon_sym_in2] = ACTIONS(954), + [anon_sym_loop] = ACTIONS(954), + [anon_sym_make] = ACTIONS(954), + [anon_sym_while] = ACTIONS(954), + [anon_sym_do] = ACTIONS(954), + [anon_sym_if] = ACTIONS(954), + [anon_sym_else] = ACTIONS(954), + [anon_sym_match] = ACTIONS(954), + [anon_sym_RBRACE] = ACTIONS(956), + [anon_sym_try] = ACTIONS(954), + [anon_sym_catch] = ACTIONS(954), + [anon_sym_return] = ACTIONS(954), + [anon_sym_source] = ACTIONS(954), + [anon_sym_source_DASHenv] = ACTIONS(954), + [anon_sym_hide] = ACTIONS(954), + [anon_sym_hide_DASHenv] = ACTIONS(954), + [anon_sym_overlay] = ACTIONS(954), + [anon_sym_as] = ACTIONS(954), + [anon_sym_QMARK2] = ACTIONS(956), + [anon_sym_PLUS2] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(956), + [anon_sym_DOT_DOT2] = ACTIONS(954), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(956), + [anon_sym_DOT_DOT_LT2] = ACTIONS(956), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(956), + [aux_sym__val_number_decimal_token1] = ACTIONS(954), + [aux_sym__val_number_decimal_token2] = ACTIONS(956), + [aux_sym__val_number_decimal_token3] = ACTIONS(956), + [aux_sym__val_number_decimal_token4] = ACTIONS(956), + [aux_sym__val_number_token1] = ACTIONS(956), + [aux_sym__val_number_token2] = ACTIONS(956), + [aux_sym__val_number_token3] = ACTIONS(956), + [aux_sym__val_number_token4] = ACTIONS(954), + [aux_sym__val_number_token5] = ACTIONS(954), + [aux_sym__val_number_token6] = ACTIONS(954), + [anon_sym_DQUOTE] = ACTIONS(956), + [sym__str_single_quotes] = ACTIONS(956), + [sym__str_back_ticks] = ACTIONS(956), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(956), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(956), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(956), + [anon_sym_register] = ACTIONS(954), + [anon_sym_DOT2] = ACTIONS(954), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(956), }, [393] = { - [sym_cell_path] = STATE(642), - [sym_path] = STATE(558), [sym_comment] = STATE(393), - [aux_sym_cell_path_repeat1] = STATE(446), - [anon_sym_export] = ACTIONS(1839), - [anon_sym_alias] = ACTIONS(1839), - [anon_sym_let] = ACTIONS(1839), - [anon_sym_let_DASHenv] = ACTIONS(1839), - [anon_sym_mut] = ACTIONS(1839), - [anon_sym_const] = ACTIONS(1839), - [aux_sym_cmd_identifier_token1] = ACTIONS(1839), - [aux_sym_cmd_identifier_token2] = ACTIONS(1839), - [aux_sym_cmd_identifier_token3] = ACTIONS(1839), - [aux_sym_cmd_identifier_token4] = ACTIONS(1839), - [aux_sym_cmd_identifier_token5] = ACTIONS(1839), - [aux_sym_cmd_identifier_token6] = ACTIONS(1839), - [aux_sym_cmd_identifier_token7] = ACTIONS(1839), - [aux_sym_cmd_identifier_token8] = ACTIONS(1839), - [aux_sym_cmd_identifier_token9] = ACTIONS(1839), - [aux_sym_cmd_identifier_token10] = ACTIONS(1839), - [aux_sym_cmd_identifier_token11] = ACTIONS(1839), - [aux_sym_cmd_identifier_token12] = ACTIONS(1839), - [aux_sym_cmd_identifier_token13] = ACTIONS(1839), - [aux_sym_cmd_identifier_token14] = ACTIONS(1839), - [aux_sym_cmd_identifier_token15] = ACTIONS(1839), - [aux_sym_cmd_identifier_token16] = ACTIONS(1839), - [aux_sym_cmd_identifier_token17] = ACTIONS(1839), - [aux_sym_cmd_identifier_token18] = ACTIONS(1839), - [aux_sym_cmd_identifier_token19] = ACTIONS(1839), - [aux_sym_cmd_identifier_token20] = ACTIONS(1839), - [aux_sym_cmd_identifier_token21] = ACTIONS(1839), - [aux_sym_cmd_identifier_token22] = ACTIONS(1839), - [aux_sym_cmd_identifier_token23] = ACTIONS(1839), - [aux_sym_cmd_identifier_token24] = ACTIONS(1839), - [aux_sym_cmd_identifier_token25] = ACTIONS(1839), - [aux_sym_cmd_identifier_token26] = ACTIONS(1839), - [aux_sym_cmd_identifier_token27] = ACTIONS(1839), - [aux_sym_cmd_identifier_token28] = ACTIONS(1839), - [aux_sym_cmd_identifier_token29] = ACTIONS(1839), - [aux_sym_cmd_identifier_token30] = ACTIONS(1839), - [aux_sym_cmd_identifier_token31] = ACTIONS(1839), - [aux_sym_cmd_identifier_token32] = ACTIONS(1839), - [aux_sym_cmd_identifier_token33] = ACTIONS(1839), - [aux_sym_cmd_identifier_token34] = ACTIONS(1839), - [aux_sym_cmd_identifier_token35] = ACTIONS(1839), - [aux_sym_cmd_identifier_token36] = ACTIONS(1839), - [aux_sym_cmd_identifier_token37] = ACTIONS(1839), - [aux_sym_cmd_identifier_token38] = ACTIONS(1839), - [aux_sym_cmd_identifier_token39] = ACTIONS(1839), - [aux_sym_cmd_identifier_token40] = ACTIONS(1839), - [anon_sym_def] = ACTIONS(1839), - [anon_sym_export_DASHenv] = ACTIONS(1839), - [anon_sym_extern] = ACTIONS(1839), - [anon_sym_module] = ACTIONS(1839), - [anon_sym_use] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_DOLLAR] = ACTIONS(1839), - [anon_sym_error] = ACTIONS(1839), - [anon_sym_DASH2] = ACTIONS(1839), - [anon_sym_break] = ACTIONS(1839), - [anon_sym_continue] = ACTIONS(1839), - [anon_sym_for] = ACTIONS(1839), - [anon_sym_in2] = ACTIONS(1839), - [anon_sym_loop] = ACTIONS(1839), - [anon_sym_make] = ACTIONS(1839), - [anon_sym_while] = ACTIONS(1839), - [anon_sym_do] = ACTIONS(1839), - [anon_sym_if] = ACTIONS(1839), - [anon_sym_else] = ACTIONS(1839), - [anon_sym_match] = ACTIONS(1839), - [anon_sym_RBRACE] = ACTIONS(1839), - [anon_sym_try] = ACTIONS(1839), - [anon_sym_catch] = ACTIONS(1839), - [anon_sym_return] = ACTIONS(1839), - [anon_sym_source] = ACTIONS(1839), - [anon_sym_source_DASHenv] = ACTIONS(1839), - [anon_sym_hide] = ACTIONS(1839), - [anon_sym_hide_DASHenv] = ACTIONS(1839), - [anon_sym_overlay] = ACTIONS(1839), - [anon_sym_as] = ACTIONS(1839), - [anon_sym_PLUS2] = ACTIONS(1839), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1839), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1839), - [aux_sym__val_number_decimal_token1] = ACTIONS(1839), - [aux_sym__val_number_decimal_token2] = ACTIONS(1839), - [aux_sym__val_number_decimal_token3] = ACTIONS(1839), - [aux_sym__val_number_decimal_token4] = ACTIONS(1839), - [aux_sym__val_number_token1] = ACTIONS(1839), - [aux_sym__val_number_token2] = ACTIONS(1839), - [aux_sym__val_number_token3] = ACTIONS(1839), - [aux_sym__val_number_token4] = ACTIONS(1839), - [aux_sym__val_number_token5] = ACTIONS(1839), - [aux_sym__val_number_token6] = ACTIONS(1839), - [anon_sym_DQUOTE] = ACTIONS(1839), - [sym__str_single_quotes] = ACTIONS(1839), - [sym__str_back_ticks] = ACTIONS(1839), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1839), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1839), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1839), - [sym__entry_separator] = ACTIONS(1841), - [anon_sym_register] = ACTIONS(1839), - [anon_sym_DOT2] = ACTIONS(1833), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1841), + [anon_sym_export] = ACTIONS(946), + [anon_sym_alias] = ACTIONS(946), + [anon_sym_let] = ACTIONS(946), + [anon_sym_let_DASHenv] = ACTIONS(946), + [anon_sym_mut] = ACTIONS(946), + [anon_sym_const] = ACTIONS(946), + [aux_sym_cmd_identifier_token1] = ACTIONS(946), + [aux_sym_cmd_identifier_token2] = ACTIONS(948), + [aux_sym_cmd_identifier_token3] = ACTIONS(948), + [aux_sym_cmd_identifier_token4] = ACTIONS(948), + [aux_sym_cmd_identifier_token5] = ACTIONS(948), + [aux_sym_cmd_identifier_token6] = ACTIONS(948), + [aux_sym_cmd_identifier_token7] = ACTIONS(948), + [aux_sym_cmd_identifier_token8] = ACTIONS(946), + [aux_sym_cmd_identifier_token9] = ACTIONS(946), + [aux_sym_cmd_identifier_token10] = ACTIONS(948), + [aux_sym_cmd_identifier_token11] = ACTIONS(948), + [aux_sym_cmd_identifier_token12] = ACTIONS(946), + [aux_sym_cmd_identifier_token13] = ACTIONS(946), + [aux_sym_cmd_identifier_token14] = ACTIONS(946), + [aux_sym_cmd_identifier_token15] = ACTIONS(946), + [aux_sym_cmd_identifier_token16] = ACTIONS(948), + [aux_sym_cmd_identifier_token17] = ACTIONS(948), + [aux_sym_cmd_identifier_token18] = ACTIONS(948), + [aux_sym_cmd_identifier_token19] = ACTIONS(948), + [aux_sym_cmd_identifier_token20] = ACTIONS(948), + [aux_sym_cmd_identifier_token21] = ACTIONS(948), + [aux_sym_cmd_identifier_token22] = ACTIONS(948), + [aux_sym_cmd_identifier_token23] = ACTIONS(948), + [aux_sym_cmd_identifier_token24] = ACTIONS(948), + [aux_sym_cmd_identifier_token25] = ACTIONS(948), + [aux_sym_cmd_identifier_token26] = ACTIONS(948), + [aux_sym_cmd_identifier_token27] = ACTIONS(948), + [aux_sym_cmd_identifier_token28] = ACTIONS(948), + [aux_sym_cmd_identifier_token29] = ACTIONS(948), + [aux_sym_cmd_identifier_token30] = ACTIONS(948), + [aux_sym_cmd_identifier_token31] = ACTIONS(948), + [aux_sym_cmd_identifier_token32] = ACTIONS(948), + [aux_sym_cmd_identifier_token33] = ACTIONS(948), + [aux_sym_cmd_identifier_token34] = ACTIONS(946), + [aux_sym_cmd_identifier_token35] = ACTIONS(948), + [aux_sym_cmd_identifier_token36] = ACTIONS(948), + [aux_sym_cmd_identifier_token37] = ACTIONS(948), + [aux_sym_cmd_identifier_token38] = ACTIONS(946), + [aux_sym_cmd_identifier_token39] = ACTIONS(948), + [aux_sym_cmd_identifier_token40] = ACTIONS(948), + [anon_sym_def] = ACTIONS(946), + [anon_sym_export_DASHenv] = ACTIONS(946), + [anon_sym_extern] = ACTIONS(946), + [anon_sym_module] = ACTIONS(946), + [anon_sym_use] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(948), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_error] = ACTIONS(946), + [anon_sym_DASH2] = ACTIONS(946), + [anon_sym_break] = ACTIONS(946), + [anon_sym_continue] = ACTIONS(946), + [anon_sym_for] = ACTIONS(946), + [anon_sym_in2] = ACTIONS(946), + [anon_sym_loop] = ACTIONS(946), + [anon_sym_make] = ACTIONS(946), + [anon_sym_while] = ACTIONS(946), + [anon_sym_do] = ACTIONS(946), + [anon_sym_if] = ACTIONS(946), + [anon_sym_else] = ACTIONS(946), + [anon_sym_match] = ACTIONS(946), + [anon_sym_RBRACE] = ACTIONS(948), + [anon_sym_try] = ACTIONS(946), + [anon_sym_catch] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_source] = ACTIONS(946), + [anon_sym_source_DASHenv] = ACTIONS(946), + [anon_sym_hide] = ACTIONS(946), + [anon_sym_hide_DASHenv] = ACTIONS(946), + [anon_sym_overlay] = ACTIONS(946), + [anon_sym_as] = ACTIONS(946), + [anon_sym_QMARK2] = ACTIONS(948), + [anon_sym_PLUS2] = ACTIONS(946), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(948), + [anon_sym_DOT_DOT2] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(948), + [anon_sym_DOT_DOT_LT2] = ACTIONS(948), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(948), + [aux_sym__val_number_decimal_token1] = ACTIONS(946), + [aux_sym__val_number_decimal_token2] = ACTIONS(948), + [aux_sym__val_number_decimal_token3] = ACTIONS(948), + [aux_sym__val_number_decimal_token4] = ACTIONS(948), + [aux_sym__val_number_token1] = ACTIONS(948), + [aux_sym__val_number_token2] = ACTIONS(948), + [aux_sym__val_number_token3] = ACTIONS(948), + [aux_sym__val_number_token4] = ACTIONS(946), + [aux_sym__val_number_token5] = ACTIONS(946), + [aux_sym__val_number_token6] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(948), + [sym__str_single_quotes] = ACTIONS(948), + [sym__str_back_ticks] = ACTIONS(948), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(948), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(948), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(948), + [anon_sym_register] = ACTIONS(946), + [anon_sym_DOT2] = ACTIONS(946), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(948), }, [394] = { - [sym_cell_path] = STATE(662), - [sym_path] = STATE(558), + [sym_cell_path] = STATE(570), + [sym_path] = STATE(533), [sym_comment] = STATE(394), - [aux_sym_cell_path_repeat1] = STATE(446), - [anon_sym_export] = ACTIONS(1843), - [anon_sym_alias] = ACTIONS(1843), - [anon_sym_let] = ACTIONS(1843), - [anon_sym_let_DASHenv] = ACTIONS(1843), - [anon_sym_mut] = ACTIONS(1843), - [anon_sym_const] = ACTIONS(1843), - [aux_sym_cmd_identifier_token1] = ACTIONS(1843), - [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(1843), - [aux_sym_cmd_identifier_token9] = ACTIONS(1843), - [aux_sym_cmd_identifier_token10] = ACTIONS(1843), - [aux_sym_cmd_identifier_token11] = ACTIONS(1843), - [aux_sym_cmd_identifier_token12] = ACTIONS(1843), - [aux_sym_cmd_identifier_token13] = ACTIONS(1843), - [aux_sym_cmd_identifier_token14] = ACTIONS(1843), - [aux_sym_cmd_identifier_token15] = ACTIONS(1843), - [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(1843), - [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(1843), - [aux_sym_cmd_identifier_token39] = ACTIONS(1843), - [aux_sym_cmd_identifier_token40] = ACTIONS(1843), - [anon_sym_def] = ACTIONS(1843), - [anon_sym_export_DASHenv] = ACTIONS(1843), - [anon_sym_extern] = ACTIONS(1843), - [anon_sym_module] = ACTIONS(1843), - [anon_sym_use] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_COMMA] = ACTIONS(1843), - [anon_sym_DOLLAR] = ACTIONS(1843), - [anon_sym_error] = ACTIONS(1843), - [anon_sym_DASH2] = ACTIONS(1843), - [anon_sym_break] = ACTIONS(1843), - [anon_sym_continue] = ACTIONS(1843), - [anon_sym_for] = ACTIONS(1843), - [anon_sym_in2] = ACTIONS(1843), - [anon_sym_loop] = ACTIONS(1843), - [anon_sym_make] = ACTIONS(1843), - [anon_sym_while] = ACTIONS(1843), - [anon_sym_do] = ACTIONS(1843), - [anon_sym_if] = ACTIONS(1843), - [anon_sym_else] = ACTIONS(1843), - [anon_sym_match] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_try] = ACTIONS(1843), - [anon_sym_catch] = ACTIONS(1843), - [anon_sym_return] = ACTIONS(1843), - [anon_sym_source] = ACTIONS(1843), - [anon_sym_source_DASHenv] = ACTIONS(1843), - [anon_sym_hide] = ACTIONS(1843), - [anon_sym_hide_DASHenv] = ACTIONS(1843), - [anon_sym_overlay] = ACTIONS(1843), - [anon_sym_as] = ACTIONS(1843), - [anon_sym_PLUS2] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1843), - [aux_sym__val_number_decimal_token1] = ACTIONS(1843), - [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_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_DOT_DOT_DOT_LBRACE] = ACTIONS(1843), - [sym__entry_separator] = ACTIONS(1845), - [anon_sym_register] = ACTIONS(1843), - [anon_sym_DOT2] = ACTIONS(1833), + [aux_sym_cell_path_repeat1] = STATE(435), + [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1841), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1841), + [sym__entry_separator] = ACTIONS(1843), + [anon_sym_register] = ACTIONS(1841), + [anon_sym_DOT2] = ACTIONS(1827), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1845), + [sym_raw_string_begin] = ACTIONS(1843), }, [395] = { - [sym_cell_path] = STATE(652), - [sym_path] = STATE(558), + [sym_cell_path] = STATE(630), + [sym_path] = STATE(533), [sym_comment] = STATE(395), - [aux_sym_cell_path_repeat1] = STATE(446), - [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(1847), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1847), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1847), - [sym__entry_separator] = ACTIONS(1849), - [anon_sym_register] = ACTIONS(1847), - [anon_sym_DOT2] = ACTIONS(1833), + [aux_sym_cell_path_repeat1] = STATE(435), + [anon_sym_export] = ACTIONS(1845), + [anon_sym_alias] = ACTIONS(1845), + [anon_sym_let] = ACTIONS(1845), + [anon_sym_let_DASHenv] = ACTIONS(1845), + [anon_sym_mut] = ACTIONS(1845), + [anon_sym_const] = ACTIONS(1845), + [aux_sym_cmd_identifier_token1] = ACTIONS(1845), + [aux_sym_cmd_identifier_token2] = ACTIONS(1845), + [aux_sym_cmd_identifier_token3] = ACTIONS(1845), + [aux_sym_cmd_identifier_token4] = ACTIONS(1845), + [aux_sym_cmd_identifier_token5] = ACTIONS(1845), + [aux_sym_cmd_identifier_token6] = ACTIONS(1845), + [aux_sym_cmd_identifier_token7] = ACTIONS(1845), + [aux_sym_cmd_identifier_token8] = ACTIONS(1845), + [aux_sym_cmd_identifier_token9] = ACTIONS(1845), + [aux_sym_cmd_identifier_token10] = ACTIONS(1845), + [aux_sym_cmd_identifier_token11] = ACTIONS(1845), + [aux_sym_cmd_identifier_token12] = ACTIONS(1845), + [aux_sym_cmd_identifier_token13] = ACTIONS(1845), + [aux_sym_cmd_identifier_token14] = ACTIONS(1845), + [aux_sym_cmd_identifier_token15] = ACTIONS(1845), + [aux_sym_cmd_identifier_token16] = ACTIONS(1845), + [aux_sym_cmd_identifier_token17] = ACTIONS(1845), + [aux_sym_cmd_identifier_token18] = ACTIONS(1845), + [aux_sym_cmd_identifier_token19] = ACTIONS(1845), + [aux_sym_cmd_identifier_token20] = ACTIONS(1845), + [aux_sym_cmd_identifier_token21] = ACTIONS(1845), + [aux_sym_cmd_identifier_token22] = ACTIONS(1845), + [aux_sym_cmd_identifier_token23] = ACTIONS(1845), + [aux_sym_cmd_identifier_token24] = ACTIONS(1845), + [aux_sym_cmd_identifier_token25] = ACTIONS(1845), + [aux_sym_cmd_identifier_token26] = ACTIONS(1845), + [aux_sym_cmd_identifier_token27] = ACTIONS(1845), + [aux_sym_cmd_identifier_token28] = ACTIONS(1845), + [aux_sym_cmd_identifier_token29] = ACTIONS(1845), + [aux_sym_cmd_identifier_token30] = ACTIONS(1845), + [aux_sym_cmd_identifier_token31] = ACTIONS(1845), + [aux_sym_cmd_identifier_token32] = ACTIONS(1845), + [aux_sym_cmd_identifier_token33] = ACTIONS(1845), + [aux_sym_cmd_identifier_token34] = ACTIONS(1845), + [aux_sym_cmd_identifier_token35] = ACTIONS(1845), + [aux_sym_cmd_identifier_token36] = ACTIONS(1845), + [aux_sym_cmd_identifier_token37] = ACTIONS(1845), + [aux_sym_cmd_identifier_token38] = ACTIONS(1845), + [aux_sym_cmd_identifier_token39] = ACTIONS(1845), + [aux_sym_cmd_identifier_token40] = ACTIONS(1845), + [anon_sym_def] = ACTIONS(1845), + [anon_sym_export_DASHenv] = ACTIONS(1845), + [anon_sym_extern] = ACTIONS(1845), + [anon_sym_module] = ACTIONS(1845), + [anon_sym_use] = ACTIONS(1845), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_COMMA] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1845), + [anon_sym_error] = ACTIONS(1845), + [anon_sym_DASH2] = ACTIONS(1845), + [anon_sym_break] = ACTIONS(1845), + [anon_sym_continue] = ACTIONS(1845), + [anon_sym_for] = ACTIONS(1845), + [anon_sym_in2] = ACTIONS(1845), + [anon_sym_loop] = ACTIONS(1845), + [anon_sym_make] = ACTIONS(1845), + [anon_sym_while] = ACTIONS(1845), + [anon_sym_do] = ACTIONS(1845), + [anon_sym_if] = ACTIONS(1845), + [anon_sym_else] = ACTIONS(1845), + [anon_sym_match] = ACTIONS(1845), + [anon_sym_RBRACE] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1845), + [anon_sym_catch] = ACTIONS(1845), + [anon_sym_return] = ACTIONS(1845), + [anon_sym_source] = ACTIONS(1845), + [anon_sym_source_DASHenv] = ACTIONS(1845), + [anon_sym_hide] = ACTIONS(1845), + [anon_sym_hide_DASHenv] = ACTIONS(1845), + [anon_sym_overlay] = ACTIONS(1845), + [anon_sym_as] = ACTIONS(1845), + [anon_sym_PLUS2] = ACTIONS(1845), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1845), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1845), + [aux_sym__val_number_decimal_token1] = ACTIONS(1845), + [aux_sym__val_number_decimal_token2] = ACTIONS(1845), + [aux_sym__val_number_decimal_token3] = ACTIONS(1845), + [aux_sym__val_number_decimal_token4] = ACTIONS(1845), + [aux_sym__val_number_token1] = ACTIONS(1845), + [aux_sym__val_number_token2] = ACTIONS(1845), + [aux_sym__val_number_token3] = ACTIONS(1845), + [aux_sym__val_number_token4] = ACTIONS(1845), + [aux_sym__val_number_token5] = ACTIONS(1845), + [aux_sym__val_number_token6] = ACTIONS(1845), + [anon_sym_DQUOTE] = ACTIONS(1845), + [sym__str_single_quotes] = ACTIONS(1845), + [sym__str_back_ticks] = ACTIONS(1845), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1845), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1845), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1845), + [sym__entry_separator] = ACTIONS(1847), + [anon_sym_register] = ACTIONS(1845), + [anon_sym_DOT2] = ACTIONS(1827), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1849), + [sym_raw_string_begin] = ACTIONS(1847), }, [396] = { - [sym_cell_path] = STATE(653), - [sym_path] = STATE(558), [sym_comment] = STATE(396), - [aux_sym_cell_path_repeat1] = STATE(446), - [anon_sym_export] = ACTIONS(1851), - [anon_sym_alias] = ACTIONS(1851), - [anon_sym_let] = ACTIONS(1851), - [anon_sym_let_DASHenv] = ACTIONS(1851), - [anon_sym_mut] = ACTIONS(1851), - [anon_sym_const] = ACTIONS(1851), - [aux_sym_cmd_identifier_token1] = ACTIONS(1851), - [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(1851), - [aux_sym_cmd_identifier_token9] = ACTIONS(1851), - [aux_sym_cmd_identifier_token10] = ACTIONS(1851), - [aux_sym_cmd_identifier_token11] = ACTIONS(1851), - [aux_sym_cmd_identifier_token12] = ACTIONS(1851), - [aux_sym_cmd_identifier_token13] = ACTIONS(1851), - [aux_sym_cmd_identifier_token14] = ACTIONS(1851), - [aux_sym_cmd_identifier_token15] = ACTIONS(1851), - [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(1851), - [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(1851), - [aux_sym_cmd_identifier_token39] = ACTIONS(1851), - [aux_sym_cmd_identifier_token40] = ACTIONS(1851), - [anon_sym_def] = ACTIONS(1851), - [anon_sym_export_DASHenv] = ACTIONS(1851), - [anon_sym_extern] = ACTIONS(1851), - [anon_sym_module] = ACTIONS(1851), - [anon_sym_use] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_COMMA] = ACTIONS(1851), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_error] = ACTIONS(1851), - [anon_sym_DASH2] = ACTIONS(1851), - [anon_sym_break] = ACTIONS(1851), - [anon_sym_continue] = ACTIONS(1851), - [anon_sym_for] = ACTIONS(1851), - [anon_sym_in2] = ACTIONS(1851), - [anon_sym_loop] = ACTIONS(1851), - [anon_sym_make] = ACTIONS(1851), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_else] = ACTIONS(1851), - [anon_sym_match] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_try] = ACTIONS(1851), - [anon_sym_catch] = ACTIONS(1851), - [anon_sym_return] = ACTIONS(1851), - [anon_sym_source] = ACTIONS(1851), - [anon_sym_source_DASHenv] = ACTIONS(1851), - [anon_sym_hide] = ACTIONS(1851), - [anon_sym_hide_DASHenv] = ACTIONS(1851), - [anon_sym_overlay] = ACTIONS(1851), - [anon_sym_as] = ACTIONS(1851), - [anon_sym_PLUS2] = ACTIONS(1851), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1851), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1851), - [aux_sym__val_number_decimal_token1] = ACTIONS(1851), - [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_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_DOT_DOT_DOT_LBRACE] = ACTIONS(1851), - [sym__entry_separator] = ACTIONS(1853), - [anon_sym_register] = ACTIONS(1851), - [anon_sym_DOT2] = ACTIONS(1833), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1701), + [anon_sym_alias] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1701), + [anon_sym_let_DASHenv] = ACTIONS(1701), + [anon_sym_mut] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [aux_sym_cmd_identifier_token1] = ACTIONS(1701), + [aux_sym_cmd_identifier_token2] = ACTIONS(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [aux_sym_cmd_identifier_token12] = ACTIONS(1701), + [aux_sym_cmd_identifier_token13] = ACTIONS(1701), + [aux_sym_cmd_identifier_token14] = ACTIONS(1701), + [aux_sym_cmd_identifier_token15] = ACTIONS(1701), + [aux_sym_cmd_identifier_token16] = ACTIONS(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [aux_sym_cmd_identifier_token37] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [anon_sym_def] = ACTIONS(1701), + [anon_sym_export_DASHenv] = ACTIONS(1701), + [anon_sym_extern] = ACTIONS(1701), + [anon_sym_module] = ACTIONS(1701), + [anon_sym_use] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_COMMA] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = ACTIONS(1701), + [anon_sym_loop] = ACTIONS(1701), + [anon_sym_make] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_do] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_else] = ACTIONS(1701), + [anon_sym_match] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_try] = ACTIONS(1701), + [anon_sym_catch] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_source] = ACTIONS(1701), + [anon_sym_source_DASHenv] = ACTIONS(1701), + [anon_sym_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), }, [397] = { - [sym_cell_path] = STATE(663), - [sym_path] = STATE(558), [sym_comment] = STATE(397), - [aux_sym_cell_path_repeat1] = STATE(446), - [anon_sym_export] = ACTIONS(1855), - [anon_sym_alias] = ACTIONS(1855), - [anon_sym_let] = ACTIONS(1855), - [anon_sym_let_DASHenv] = ACTIONS(1855), - [anon_sym_mut] = ACTIONS(1855), - [anon_sym_const] = ACTIONS(1855), - [aux_sym_cmd_identifier_token1] = ACTIONS(1855), - [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(1855), - [aux_sym_cmd_identifier_token9] = ACTIONS(1855), - [aux_sym_cmd_identifier_token10] = ACTIONS(1855), - [aux_sym_cmd_identifier_token11] = ACTIONS(1855), - [aux_sym_cmd_identifier_token12] = ACTIONS(1855), - [aux_sym_cmd_identifier_token13] = ACTIONS(1855), - [aux_sym_cmd_identifier_token14] = ACTIONS(1855), - [aux_sym_cmd_identifier_token15] = ACTIONS(1855), - [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(1855), - [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(1855), - [aux_sym_cmd_identifier_token39] = ACTIONS(1855), - [aux_sym_cmd_identifier_token40] = ACTIONS(1855), - [anon_sym_def] = ACTIONS(1855), - [anon_sym_export_DASHenv] = ACTIONS(1855), - [anon_sym_extern] = ACTIONS(1855), - [anon_sym_module] = ACTIONS(1855), - [anon_sym_use] = ACTIONS(1855), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_COMMA] = ACTIONS(1855), - [anon_sym_DOLLAR] = ACTIONS(1855), - [anon_sym_error] = ACTIONS(1855), - [anon_sym_DASH2] = ACTIONS(1855), - [anon_sym_break] = ACTIONS(1855), - [anon_sym_continue] = ACTIONS(1855), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_in2] = ACTIONS(1855), - [anon_sym_loop] = ACTIONS(1855), - [anon_sym_make] = ACTIONS(1855), - [anon_sym_while] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_else] = ACTIONS(1855), - [anon_sym_match] = ACTIONS(1855), - [anon_sym_RBRACE] = ACTIONS(1855), - [anon_sym_try] = ACTIONS(1855), - [anon_sym_catch] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1855), - [anon_sym_source] = ACTIONS(1855), - [anon_sym_source_DASHenv] = ACTIONS(1855), - [anon_sym_hide] = ACTIONS(1855), - [anon_sym_hide_DASHenv] = ACTIONS(1855), - [anon_sym_overlay] = ACTIONS(1855), - [anon_sym_as] = ACTIONS(1855), - [anon_sym_PLUS2] = ACTIONS(1855), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1855), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1855), - [aux_sym__val_number_decimal_token1] = ACTIONS(1855), - [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(1855), - [aux_sym__val_number_token5] = ACTIONS(1855), - [aux_sym__val_number_token6] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1855), - [sym__str_single_quotes] = ACTIONS(1855), - [sym__str_back_ticks] = ACTIONS(1855), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1855), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1855), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1855), - [sym__entry_separator] = ACTIONS(1857), - [anon_sym_register] = ACTIONS(1855), - [anon_sym_DOT2] = ACTIONS(1833), + [anon_sym_export] = ACTIONS(974), + [anon_sym_alias] = ACTIONS(974), + [anon_sym_let] = ACTIONS(974), + [anon_sym_let_DASHenv] = ACTIONS(974), + [anon_sym_mut] = ACTIONS(974), + [anon_sym_const] = ACTIONS(974), + [aux_sym_cmd_identifier_token1] = ACTIONS(974), + [aux_sym_cmd_identifier_token2] = ACTIONS(974), + [aux_sym_cmd_identifier_token3] = ACTIONS(974), + [aux_sym_cmd_identifier_token4] = ACTIONS(974), + [aux_sym_cmd_identifier_token5] = ACTIONS(974), + [aux_sym_cmd_identifier_token6] = ACTIONS(974), + [aux_sym_cmd_identifier_token7] = ACTIONS(974), + [aux_sym_cmd_identifier_token8] = ACTIONS(974), + [aux_sym_cmd_identifier_token9] = ACTIONS(974), + [aux_sym_cmd_identifier_token10] = ACTIONS(974), + [aux_sym_cmd_identifier_token11] = ACTIONS(974), + [aux_sym_cmd_identifier_token12] = ACTIONS(974), + [aux_sym_cmd_identifier_token13] = ACTIONS(974), + [aux_sym_cmd_identifier_token14] = ACTIONS(974), + [aux_sym_cmd_identifier_token15] = ACTIONS(974), + [aux_sym_cmd_identifier_token16] = ACTIONS(974), + [aux_sym_cmd_identifier_token17] = ACTIONS(974), + [aux_sym_cmd_identifier_token18] = ACTIONS(974), + [aux_sym_cmd_identifier_token19] = ACTIONS(974), + [aux_sym_cmd_identifier_token20] = ACTIONS(974), + [aux_sym_cmd_identifier_token21] = ACTIONS(974), + [aux_sym_cmd_identifier_token22] = ACTIONS(974), + [aux_sym_cmd_identifier_token23] = ACTIONS(974), + [aux_sym_cmd_identifier_token24] = ACTIONS(974), + [aux_sym_cmd_identifier_token25] = ACTIONS(974), + [aux_sym_cmd_identifier_token26] = ACTIONS(974), + [aux_sym_cmd_identifier_token27] = ACTIONS(974), + [aux_sym_cmd_identifier_token28] = ACTIONS(974), + [aux_sym_cmd_identifier_token29] = ACTIONS(974), + [aux_sym_cmd_identifier_token30] = ACTIONS(974), + [aux_sym_cmd_identifier_token31] = ACTIONS(974), + [aux_sym_cmd_identifier_token32] = ACTIONS(974), + [aux_sym_cmd_identifier_token33] = ACTIONS(974), + [aux_sym_cmd_identifier_token34] = ACTIONS(974), + [aux_sym_cmd_identifier_token35] = ACTIONS(974), + [aux_sym_cmd_identifier_token36] = ACTIONS(974), + [aux_sym_cmd_identifier_token37] = ACTIONS(974), + [aux_sym_cmd_identifier_token38] = ACTIONS(974), + [aux_sym_cmd_identifier_token39] = ACTIONS(974), + [aux_sym_cmd_identifier_token40] = ACTIONS(974), + [anon_sym_def] = ACTIONS(974), + [anon_sym_export_DASHenv] = ACTIONS(974), + [anon_sym_extern] = ACTIONS(974), + [anon_sym_module] = ACTIONS(974), + [anon_sym_use] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(974), + [anon_sym_COMMA] = ACTIONS(974), + [anon_sym_DOLLAR] = ACTIONS(974), + [anon_sym_error] = ACTIONS(974), + [anon_sym_DASH2] = ACTIONS(974), + [anon_sym_break] = ACTIONS(974), + [anon_sym_continue] = ACTIONS(974), + [anon_sym_for] = ACTIONS(974), + [anon_sym_in2] = ACTIONS(974), + [anon_sym_loop] = ACTIONS(974), + [anon_sym_make] = ACTIONS(974), + [anon_sym_while] = ACTIONS(974), + [anon_sym_do] = ACTIONS(974), + [anon_sym_if] = ACTIONS(974), + [anon_sym_else] = ACTIONS(974), + [anon_sym_match] = ACTIONS(974), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_try] = ACTIONS(974), + [anon_sym_catch] = ACTIONS(974), + [anon_sym_return] = ACTIONS(974), + [anon_sym_source] = ACTIONS(974), + [anon_sym_source_DASHenv] = ACTIONS(974), + [anon_sym_hide] = ACTIONS(974), + [anon_sym_hide_DASHenv] = ACTIONS(974), + [anon_sym_overlay] = ACTIONS(974), + [anon_sym_as] = ACTIONS(974), + [anon_sym_PLUS2] = ACTIONS(974), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(974), + [anon_sym_DOT_DOT2] = ACTIONS(974), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(976), + [anon_sym_DOT_DOT_LT2] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(974), + [aux_sym__val_number_decimal_token1] = ACTIONS(974), + [aux_sym__val_number_decimal_token2] = ACTIONS(974), + [aux_sym__val_number_decimal_token3] = ACTIONS(974), + [aux_sym__val_number_decimal_token4] = ACTIONS(974), + [aux_sym__val_number_token1] = ACTIONS(974), + [aux_sym__val_number_token2] = ACTIONS(974), + [aux_sym__val_number_token3] = ACTIONS(974), + [aux_sym__val_number_token4] = ACTIONS(974), + [aux_sym__val_number_token5] = ACTIONS(974), + [aux_sym__val_number_token6] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym__str_single_quotes] = ACTIONS(974), + [sym__str_back_ticks] = ACTIONS(974), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(974), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(974), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(974), + [sym__entry_separator] = ACTIONS(976), + [anon_sym_register] = ACTIONS(974), + [anon_sym_DOT2] = ACTIONS(974), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1857), + [sym_raw_string_begin] = ACTIONS(976), }, [398] = { - [sym_cell_path] = STATE(654), - [sym_path] = STATE(558), + [sym_cell_path] = STATE(573), + [sym_path] = STATE(533), [sym_comment] = STATE(398), - [aux_sym_cell_path_repeat1] = STATE(446), - [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_COMMA] = 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_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_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_DOLLAR_SQUOTE] = ACTIONS(1859), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1859), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1859), - [sym__entry_separator] = ACTIONS(1861), - [anon_sym_register] = ACTIONS(1859), - [anon_sym_DOT2] = ACTIONS(1833), + [aux_sym_cell_path_repeat1] = STATE(435), + [anon_sym_export] = ACTIONS(1849), + [anon_sym_alias] = ACTIONS(1849), + [anon_sym_let] = ACTIONS(1849), + [anon_sym_let_DASHenv] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1849), + [aux_sym_cmd_identifier_token1] = ACTIONS(1849), + [aux_sym_cmd_identifier_token2] = ACTIONS(1849), + [aux_sym_cmd_identifier_token3] = ACTIONS(1849), + [aux_sym_cmd_identifier_token4] = ACTIONS(1849), + [aux_sym_cmd_identifier_token5] = ACTIONS(1849), + [aux_sym_cmd_identifier_token6] = ACTIONS(1849), + [aux_sym_cmd_identifier_token7] = ACTIONS(1849), + [aux_sym_cmd_identifier_token8] = ACTIONS(1849), + [aux_sym_cmd_identifier_token9] = ACTIONS(1849), + [aux_sym_cmd_identifier_token10] = ACTIONS(1849), + [aux_sym_cmd_identifier_token11] = ACTIONS(1849), + [aux_sym_cmd_identifier_token12] = ACTIONS(1849), + [aux_sym_cmd_identifier_token13] = ACTIONS(1849), + [aux_sym_cmd_identifier_token14] = ACTIONS(1849), + [aux_sym_cmd_identifier_token15] = ACTIONS(1849), + [aux_sym_cmd_identifier_token16] = ACTIONS(1849), + [aux_sym_cmd_identifier_token17] = ACTIONS(1849), + [aux_sym_cmd_identifier_token18] = ACTIONS(1849), + [aux_sym_cmd_identifier_token19] = ACTIONS(1849), + [aux_sym_cmd_identifier_token20] = ACTIONS(1849), + [aux_sym_cmd_identifier_token21] = ACTIONS(1849), + [aux_sym_cmd_identifier_token22] = ACTIONS(1849), + [aux_sym_cmd_identifier_token23] = ACTIONS(1849), + [aux_sym_cmd_identifier_token24] = ACTIONS(1849), + [aux_sym_cmd_identifier_token25] = ACTIONS(1849), + [aux_sym_cmd_identifier_token26] = ACTIONS(1849), + [aux_sym_cmd_identifier_token27] = ACTIONS(1849), + [aux_sym_cmd_identifier_token28] = ACTIONS(1849), + [aux_sym_cmd_identifier_token29] = ACTIONS(1849), + [aux_sym_cmd_identifier_token30] = ACTIONS(1849), + [aux_sym_cmd_identifier_token31] = ACTIONS(1849), + [aux_sym_cmd_identifier_token32] = ACTIONS(1849), + [aux_sym_cmd_identifier_token33] = ACTIONS(1849), + [aux_sym_cmd_identifier_token34] = ACTIONS(1849), + [aux_sym_cmd_identifier_token35] = ACTIONS(1849), + [aux_sym_cmd_identifier_token36] = ACTIONS(1849), + [aux_sym_cmd_identifier_token37] = ACTIONS(1849), + [aux_sym_cmd_identifier_token38] = ACTIONS(1849), + [aux_sym_cmd_identifier_token39] = ACTIONS(1849), + [aux_sym_cmd_identifier_token40] = ACTIONS(1849), + [anon_sym_def] = ACTIONS(1849), + [anon_sym_export_DASHenv] = ACTIONS(1849), + [anon_sym_extern] = ACTIONS(1849), + [anon_sym_module] = ACTIONS(1849), + [anon_sym_use] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_DOLLAR] = ACTIONS(1849), + [anon_sym_error] = ACTIONS(1849), + [anon_sym_DASH2] = ACTIONS(1849), + [anon_sym_break] = ACTIONS(1849), + [anon_sym_continue] = ACTIONS(1849), + [anon_sym_for] = ACTIONS(1849), + [anon_sym_in2] = ACTIONS(1849), + [anon_sym_loop] = ACTIONS(1849), + [anon_sym_make] = ACTIONS(1849), + [anon_sym_while] = ACTIONS(1849), + [anon_sym_do] = ACTIONS(1849), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_else] = ACTIONS(1849), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_RBRACE] = ACTIONS(1849), + [anon_sym_try] = ACTIONS(1849), + [anon_sym_catch] = ACTIONS(1849), + [anon_sym_return] = ACTIONS(1849), + [anon_sym_source] = ACTIONS(1849), + [anon_sym_source_DASHenv] = ACTIONS(1849), + [anon_sym_hide] = ACTIONS(1849), + [anon_sym_hide_DASHenv] = ACTIONS(1849), + [anon_sym_overlay] = ACTIONS(1849), + [anon_sym_as] = ACTIONS(1849), + [anon_sym_PLUS2] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1849), + [aux_sym__val_number_decimal_token1] = ACTIONS(1849), + [aux_sym__val_number_decimal_token2] = ACTIONS(1849), + [aux_sym__val_number_decimal_token3] = ACTIONS(1849), + [aux_sym__val_number_decimal_token4] = ACTIONS(1849), + [aux_sym__val_number_token1] = ACTIONS(1849), + [aux_sym__val_number_token2] = ACTIONS(1849), + [aux_sym__val_number_token3] = ACTIONS(1849), + [aux_sym__val_number_token4] = ACTIONS(1849), + [aux_sym__val_number_token5] = ACTIONS(1849), + [aux_sym__val_number_token6] = ACTIONS(1849), + [anon_sym_DQUOTE] = ACTIONS(1849), + [sym__str_single_quotes] = ACTIONS(1849), + [sym__str_back_ticks] = ACTIONS(1849), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1849), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1849), + [sym__entry_separator] = ACTIONS(1851), + [anon_sym_register] = ACTIONS(1849), + [anon_sym_DOT2] = ACTIONS(1827), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1861), + [sym_raw_string_begin] = ACTIONS(1851), }, [399] = { - [sym_cell_path] = STATE(655), - [sym_path] = STATE(558), [sym_comment] = STATE(399), - [aux_sym_cell_path_repeat1] = STATE(446), - [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_export] = ACTIONS(1686), + [anon_sym_alias] = ACTIONS(1686), + [anon_sym_let] = ACTIONS(1686), + [anon_sym_let_DASHenv] = ACTIONS(1686), + [anon_sym_mut] = ACTIONS(1686), + [anon_sym_const] = ACTIONS(1686), + [aux_sym_cmd_identifier_token1] = ACTIONS(1686), + [aux_sym_cmd_identifier_token2] = ACTIONS(1688), + [aux_sym_cmd_identifier_token3] = ACTIONS(1688), + [aux_sym_cmd_identifier_token4] = ACTIONS(1688), + [aux_sym_cmd_identifier_token5] = ACTIONS(1688), + [aux_sym_cmd_identifier_token6] = ACTIONS(1688), + [aux_sym_cmd_identifier_token7] = ACTIONS(1688), + [aux_sym_cmd_identifier_token8] = ACTIONS(1686), + [aux_sym_cmd_identifier_token9] = ACTIONS(1686), + [aux_sym_cmd_identifier_token10] = ACTIONS(1688), + [aux_sym_cmd_identifier_token11] = ACTIONS(1688), + [aux_sym_cmd_identifier_token12] = ACTIONS(1686), + [aux_sym_cmd_identifier_token13] = ACTIONS(1686), + [aux_sym_cmd_identifier_token14] = ACTIONS(1686), + [aux_sym_cmd_identifier_token15] = ACTIONS(1686), + [aux_sym_cmd_identifier_token16] = ACTIONS(1688), + [aux_sym_cmd_identifier_token17] = ACTIONS(1688), + [aux_sym_cmd_identifier_token18] = ACTIONS(1688), + [aux_sym_cmd_identifier_token19] = ACTIONS(1688), + [aux_sym_cmd_identifier_token20] = ACTIONS(1688), + [aux_sym_cmd_identifier_token21] = ACTIONS(1688), + [aux_sym_cmd_identifier_token22] = ACTIONS(1688), + [aux_sym_cmd_identifier_token23] = ACTIONS(1688), + [aux_sym_cmd_identifier_token24] = ACTIONS(1688), + [aux_sym_cmd_identifier_token25] = ACTIONS(1688), + [aux_sym_cmd_identifier_token26] = ACTIONS(1688), + [aux_sym_cmd_identifier_token27] = ACTIONS(1688), + [aux_sym_cmd_identifier_token28] = ACTIONS(1688), + [aux_sym_cmd_identifier_token29] = ACTIONS(1688), + [aux_sym_cmd_identifier_token30] = ACTIONS(1688), + [aux_sym_cmd_identifier_token31] = ACTIONS(1688), + [aux_sym_cmd_identifier_token32] = ACTIONS(1688), + [aux_sym_cmd_identifier_token33] = ACTIONS(1688), + [aux_sym_cmd_identifier_token34] = ACTIONS(1686), + [aux_sym_cmd_identifier_token35] = ACTIONS(1688), + [aux_sym_cmd_identifier_token36] = ACTIONS(1688), + [aux_sym_cmd_identifier_token37] = ACTIONS(1688), + [aux_sym_cmd_identifier_token38] = ACTIONS(1686), + [aux_sym_cmd_identifier_token39] = ACTIONS(1688), + [aux_sym_cmd_identifier_token40] = ACTIONS(1688), + [anon_sym_def] = ACTIONS(1686), + [anon_sym_export_DASHenv] = ACTIONS(1686), + [anon_sym_extern] = ACTIONS(1686), + [anon_sym_module] = ACTIONS(1686), + [anon_sym_use] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_error] = ACTIONS(1686), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_break] = ACTIONS(1686), + [anon_sym_continue] = ACTIONS(1686), + [anon_sym_for] = ACTIONS(1686), + [anon_sym_in2] = ACTIONS(1686), + [anon_sym_loop] = ACTIONS(1686), + [anon_sym_make] = ACTIONS(1686), + [anon_sym_while] = ACTIONS(1686), + [anon_sym_do] = ACTIONS(1686), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_else] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_try] = ACTIONS(1686), + [anon_sym_catch] = ACTIONS(1686), + [anon_sym_return] = ACTIONS(1686), + [anon_sym_source] = ACTIONS(1686), + [anon_sym_source_DASHenv] = ACTIONS(1686), + [anon_sym_hide] = ACTIONS(1686), + [anon_sym_hide_DASHenv] = ACTIONS(1686), + [anon_sym_overlay] = ACTIONS(1686), + [anon_sym_as] = ACTIONS(1686), + [anon_sym_LPAREN2] = ACTIONS(1688), + [anon_sym_PLUS2] = ACTIONS(1686), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1688), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1688), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1688), + [aux_sym__val_number_decimal_token3] = ACTIONS(1688), + [aux_sym__val_number_decimal_token4] = ACTIONS(1688), + [aux_sym__val_number_token1] = ACTIONS(1688), + [aux_sym__val_number_token2] = ACTIONS(1688), + [aux_sym__val_number_token3] = ACTIONS(1688), + [aux_sym__val_number_token4] = ACTIONS(1686), + [aux_sym__val_number_token5] = ACTIONS(1686), + [aux_sym__val_number_token6] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [sym__str_single_quotes] = ACTIONS(1688), + [sym__str_back_ticks] = ACTIONS(1688), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1688), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1688), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1688), + [anon_sym_register] = ACTIONS(1686), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1688), + }, + [400] = { + [sym_comment] = STATE(400), + [anon_sym_export] = ACTIONS(958), + [anon_sym_alias] = ACTIONS(958), + [anon_sym_let] = ACTIONS(958), + [anon_sym_let_DASHenv] = ACTIONS(958), + [anon_sym_mut] = ACTIONS(958), + [anon_sym_const] = ACTIONS(958), + [aux_sym_cmd_identifier_token1] = ACTIONS(958), + [aux_sym_cmd_identifier_token2] = ACTIONS(960), + [aux_sym_cmd_identifier_token3] = ACTIONS(960), + [aux_sym_cmd_identifier_token4] = ACTIONS(960), + [aux_sym_cmd_identifier_token5] = ACTIONS(960), + [aux_sym_cmd_identifier_token6] = ACTIONS(960), + [aux_sym_cmd_identifier_token7] = ACTIONS(960), + [aux_sym_cmd_identifier_token8] = ACTIONS(958), + [aux_sym_cmd_identifier_token9] = ACTIONS(958), + [aux_sym_cmd_identifier_token10] = ACTIONS(960), + [aux_sym_cmd_identifier_token11] = ACTIONS(960), + [aux_sym_cmd_identifier_token12] = ACTIONS(958), + [aux_sym_cmd_identifier_token13] = ACTIONS(958), + [aux_sym_cmd_identifier_token14] = ACTIONS(958), + [aux_sym_cmd_identifier_token15] = ACTIONS(958), + [aux_sym_cmd_identifier_token16] = ACTIONS(960), + [aux_sym_cmd_identifier_token17] = ACTIONS(960), + [aux_sym_cmd_identifier_token18] = ACTIONS(960), + [aux_sym_cmd_identifier_token19] = ACTIONS(960), + [aux_sym_cmd_identifier_token20] = ACTIONS(960), + [aux_sym_cmd_identifier_token21] = ACTIONS(960), + [aux_sym_cmd_identifier_token22] = ACTIONS(960), + [aux_sym_cmd_identifier_token23] = ACTIONS(960), + [aux_sym_cmd_identifier_token24] = ACTIONS(960), + [aux_sym_cmd_identifier_token25] = ACTIONS(960), + [aux_sym_cmd_identifier_token26] = ACTIONS(960), + [aux_sym_cmd_identifier_token27] = ACTIONS(960), + [aux_sym_cmd_identifier_token28] = ACTIONS(960), + [aux_sym_cmd_identifier_token29] = ACTIONS(960), + [aux_sym_cmd_identifier_token30] = ACTIONS(960), + [aux_sym_cmd_identifier_token31] = ACTIONS(960), + [aux_sym_cmd_identifier_token32] = ACTIONS(960), + [aux_sym_cmd_identifier_token33] = ACTIONS(960), + [aux_sym_cmd_identifier_token34] = ACTIONS(958), + [aux_sym_cmd_identifier_token35] = ACTIONS(960), + [aux_sym_cmd_identifier_token36] = ACTIONS(960), + [aux_sym_cmd_identifier_token37] = ACTIONS(960), + [aux_sym_cmd_identifier_token38] = ACTIONS(958), + [aux_sym_cmd_identifier_token39] = ACTIONS(960), + [aux_sym_cmd_identifier_token40] = ACTIONS(960), + [anon_sym_def] = ACTIONS(958), + [anon_sym_export_DASHenv] = ACTIONS(958), + [anon_sym_extern] = ACTIONS(958), + [anon_sym_module] = ACTIONS(958), + [anon_sym_use] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_COMMA] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(958), + [anon_sym_error] = ACTIONS(958), + [anon_sym_DASH2] = ACTIONS(958), + [anon_sym_break] = ACTIONS(958), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_for] = ACTIONS(958), + [anon_sym_in2] = ACTIONS(958), + [anon_sym_loop] = ACTIONS(958), + [anon_sym_make] = ACTIONS(958), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(958), + [anon_sym_if] = ACTIONS(958), + [anon_sym_else] = ACTIONS(958), + [anon_sym_match] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_try] = ACTIONS(958), + [anon_sym_catch] = ACTIONS(958), + [anon_sym_return] = ACTIONS(958), + [anon_sym_source] = ACTIONS(958), + [anon_sym_source_DASHenv] = ACTIONS(958), + [anon_sym_hide] = ACTIONS(958), + [anon_sym_hide_DASHenv] = ACTIONS(958), + [anon_sym_overlay] = ACTIONS(958), + [anon_sym_as] = ACTIONS(958), + [anon_sym_QMARK2] = ACTIONS(1853), + [anon_sym_PLUS2] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(960), + [anon_sym_DOT_DOT2] = ACTIONS(958), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(960), + [anon_sym_DOT_DOT_LT2] = ACTIONS(960), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(960), + [aux_sym__val_number_decimal_token1] = ACTIONS(958), + [aux_sym__val_number_decimal_token2] = ACTIONS(960), + [aux_sym__val_number_decimal_token3] = ACTIONS(960), + [aux_sym__val_number_decimal_token4] = ACTIONS(960), + [aux_sym__val_number_token1] = ACTIONS(960), + [aux_sym__val_number_token2] = ACTIONS(960), + [aux_sym__val_number_token3] = ACTIONS(960), + [aux_sym__val_number_token4] = ACTIONS(958), + [aux_sym__val_number_token5] = ACTIONS(958), + [aux_sym__val_number_token6] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(960), + [sym__str_single_quotes] = ACTIONS(960), + [sym__str_back_ticks] = ACTIONS(960), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(960), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(960), + [anon_sym_register] = ACTIONS(958), + [anon_sym_DOT2] = ACTIONS(958), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(960), + }, + [401] = { + [sym_comment] = STATE(401), + [anon_sym_export] = ACTIONS(1760), + [anon_sym_alias] = ACTIONS(1760), + [anon_sym_let] = ACTIONS(1760), + [anon_sym_let_DASHenv] = ACTIONS(1760), + [anon_sym_mut] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [aux_sym_cmd_identifier_token1] = ACTIONS(1760), + [aux_sym_cmd_identifier_token2] = ACTIONS(1762), + [aux_sym_cmd_identifier_token3] = ACTIONS(1762), + [aux_sym_cmd_identifier_token4] = ACTIONS(1762), + [aux_sym_cmd_identifier_token5] = ACTIONS(1762), + [aux_sym_cmd_identifier_token6] = ACTIONS(1762), + [aux_sym_cmd_identifier_token7] = ACTIONS(1762), + [aux_sym_cmd_identifier_token8] = ACTIONS(1760), + [aux_sym_cmd_identifier_token9] = ACTIONS(1760), + [aux_sym_cmd_identifier_token10] = ACTIONS(1762), + [aux_sym_cmd_identifier_token11] = ACTIONS(1762), + [aux_sym_cmd_identifier_token12] = ACTIONS(1760), + [aux_sym_cmd_identifier_token13] = ACTIONS(1760), + [aux_sym_cmd_identifier_token14] = ACTIONS(1760), + [aux_sym_cmd_identifier_token15] = ACTIONS(1760), + [aux_sym_cmd_identifier_token16] = ACTIONS(1762), + [aux_sym_cmd_identifier_token17] = ACTIONS(1762), + [aux_sym_cmd_identifier_token18] = ACTIONS(1762), + [aux_sym_cmd_identifier_token19] = ACTIONS(1762), + [aux_sym_cmd_identifier_token20] = ACTIONS(1762), + [aux_sym_cmd_identifier_token21] = ACTIONS(1762), + [aux_sym_cmd_identifier_token22] = ACTIONS(1762), + [aux_sym_cmd_identifier_token23] = ACTIONS(1762), + [aux_sym_cmd_identifier_token24] = ACTIONS(1762), + [aux_sym_cmd_identifier_token25] = ACTIONS(1762), + [aux_sym_cmd_identifier_token26] = ACTIONS(1762), + [aux_sym_cmd_identifier_token27] = ACTIONS(1762), + [aux_sym_cmd_identifier_token28] = ACTIONS(1762), + [aux_sym_cmd_identifier_token29] = ACTIONS(1762), + [aux_sym_cmd_identifier_token30] = ACTIONS(1762), + [aux_sym_cmd_identifier_token31] = ACTIONS(1762), + [aux_sym_cmd_identifier_token32] = ACTIONS(1762), + [aux_sym_cmd_identifier_token33] = ACTIONS(1762), + [aux_sym_cmd_identifier_token34] = ACTIONS(1760), + [aux_sym_cmd_identifier_token35] = ACTIONS(1762), + [aux_sym_cmd_identifier_token36] = ACTIONS(1762), + [aux_sym_cmd_identifier_token37] = ACTIONS(1762), + [aux_sym_cmd_identifier_token38] = ACTIONS(1760), + [aux_sym_cmd_identifier_token39] = ACTIONS(1762), + [aux_sym_cmd_identifier_token40] = ACTIONS(1762), + [anon_sym_def] = ACTIONS(1760), + [anon_sym_export_DASHenv] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym_module] = ACTIONS(1760), + [anon_sym_use] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_error] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_loop] = ACTIONS(1760), + [anon_sym_make] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_do] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_match] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_catch] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_source] = ACTIONS(1760), + [anon_sym_source_DASHenv] = ACTIONS(1760), + [anon_sym_hide] = ACTIONS(1760), + [anon_sym_hide_DASHenv] = ACTIONS(1760), + [anon_sym_overlay] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1762), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1760), + [aux_sym__val_number_token5] = ACTIONS(1760), + [aux_sym__val_number_token6] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1760), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1762), + }, + [402] = { + [sym_comment] = STATE(402), + [anon_sym_export] = ACTIONS(1782), + [anon_sym_alias] = ACTIONS(1782), + [anon_sym_let] = ACTIONS(1782), + [anon_sym_let_DASHenv] = ACTIONS(1782), + [anon_sym_mut] = ACTIONS(1782), + [anon_sym_const] = ACTIONS(1782), + [aux_sym_cmd_identifier_token1] = ACTIONS(1782), + [aux_sym_cmd_identifier_token2] = ACTIONS(1790), + [aux_sym_cmd_identifier_token3] = ACTIONS(1790), + [aux_sym_cmd_identifier_token4] = ACTIONS(1790), + [aux_sym_cmd_identifier_token5] = ACTIONS(1790), + [aux_sym_cmd_identifier_token6] = ACTIONS(1790), + [aux_sym_cmd_identifier_token7] = ACTIONS(1790), + [aux_sym_cmd_identifier_token8] = ACTIONS(1782), + [aux_sym_cmd_identifier_token9] = ACTIONS(1782), + [aux_sym_cmd_identifier_token10] = ACTIONS(1790), + [aux_sym_cmd_identifier_token11] = ACTIONS(1790), + [aux_sym_cmd_identifier_token12] = ACTIONS(1782), + [aux_sym_cmd_identifier_token13] = ACTIONS(1782), + [aux_sym_cmd_identifier_token14] = ACTIONS(1782), + [aux_sym_cmd_identifier_token15] = ACTIONS(1782), + [aux_sym_cmd_identifier_token16] = ACTIONS(1790), + [aux_sym_cmd_identifier_token17] = ACTIONS(1790), + [aux_sym_cmd_identifier_token18] = ACTIONS(1790), + [aux_sym_cmd_identifier_token19] = ACTIONS(1790), + [aux_sym_cmd_identifier_token20] = ACTIONS(1790), + [aux_sym_cmd_identifier_token21] = ACTIONS(1790), + [aux_sym_cmd_identifier_token22] = ACTIONS(1790), + [aux_sym_cmd_identifier_token23] = ACTIONS(1790), + [aux_sym_cmd_identifier_token24] = ACTIONS(1790), + [aux_sym_cmd_identifier_token25] = ACTIONS(1790), + [aux_sym_cmd_identifier_token26] = ACTIONS(1790), + [aux_sym_cmd_identifier_token27] = ACTIONS(1790), + [aux_sym_cmd_identifier_token28] = ACTIONS(1790), + [aux_sym_cmd_identifier_token29] = ACTIONS(1790), + [aux_sym_cmd_identifier_token30] = ACTIONS(1790), + [aux_sym_cmd_identifier_token31] = ACTIONS(1790), + [aux_sym_cmd_identifier_token32] = ACTIONS(1790), + [aux_sym_cmd_identifier_token33] = ACTIONS(1790), + [aux_sym_cmd_identifier_token34] = ACTIONS(1782), + [aux_sym_cmd_identifier_token35] = ACTIONS(1790), + [aux_sym_cmd_identifier_token36] = ACTIONS(1790), + [aux_sym_cmd_identifier_token37] = ACTIONS(1790), + [aux_sym_cmd_identifier_token38] = ACTIONS(1782), + [aux_sym_cmd_identifier_token39] = ACTIONS(1790), + [aux_sym_cmd_identifier_token40] = ACTIONS(1790), + [anon_sym_def] = ACTIONS(1782), + [anon_sym_export_DASHenv] = ACTIONS(1782), + [anon_sym_extern] = ACTIONS(1782), + [anon_sym_module] = ACTIONS(1782), + [anon_sym_use] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1790), + [anon_sym_DOLLAR] = ACTIONS(1782), + [anon_sym_error] = ACTIONS(1782), + [anon_sym_DASH2] = ACTIONS(1782), + [anon_sym_break] = ACTIONS(1782), + [anon_sym_continue] = ACTIONS(1782), + [anon_sym_for] = ACTIONS(1782), + [anon_sym_in2] = ACTIONS(1782), + [anon_sym_loop] = ACTIONS(1782), + [anon_sym_make] = ACTIONS(1782), + [anon_sym_while] = ACTIONS(1782), + [anon_sym_do] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1782), + [anon_sym_match] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1782), + [anon_sym_catch] = ACTIONS(1782), + [anon_sym_return] = ACTIONS(1782), + [anon_sym_source] = ACTIONS(1782), + [anon_sym_source_DASHenv] = ACTIONS(1782), + [anon_sym_hide] = ACTIONS(1782), + [anon_sym_hide_DASHenv] = ACTIONS(1782), + [anon_sym_overlay] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1782), + [anon_sym_LPAREN2] = ACTIONS(1784), + [anon_sym_PLUS2] = ACTIONS(1782), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1790), + [anon_sym_DOT_DOT2] = ACTIONS(1855), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1857), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1857), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1790), + [aux_sym__val_number_decimal_token1] = ACTIONS(1782), + [aux_sym__val_number_decimal_token2] = ACTIONS(1790), + [aux_sym__val_number_decimal_token3] = ACTIONS(1790), + [aux_sym__val_number_decimal_token4] = ACTIONS(1790), + [aux_sym__val_number_token1] = ACTIONS(1790), + [aux_sym__val_number_token2] = ACTIONS(1790), + [aux_sym__val_number_token3] = ACTIONS(1790), + [aux_sym__val_number_token4] = ACTIONS(1782), + [aux_sym__val_number_token5] = ACTIONS(1782), + [aux_sym__val_number_token6] = ACTIONS(1782), + [anon_sym_DQUOTE] = ACTIONS(1790), + [sym__str_single_quotes] = ACTIONS(1790), + [sym__str_back_ticks] = ACTIONS(1790), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1790), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1790), + [anon_sym_register] = ACTIONS(1782), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1790), + }, + [403] = { + [sym_comment] = STATE(403), + [anon_sym_export] = ACTIONS(1797), + [anon_sym_alias] = ACTIONS(1797), + [anon_sym_let] = ACTIONS(1797), + [anon_sym_let_DASHenv] = ACTIONS(1797), + [anon_sym_mut] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(1797), + [aux_sym_cmd_identifier_token1] = ACTIONS(1797), + [aux_sym_cmd_identifier_token2] = ACTIONS(1799), + [aux_sym_cmd_identifier_token3] = ACTIONS(1799), + [aux_sym_cmd_identifier_token4] = ACTIONS(1799), + [aux_sym_cmd_identifier_token5] = ACTIONS(1799), + [aux_sym_cmd_identifier_token6] = ACTIONS(1799), + [aux_sym_cmd_identifier_token7] = ACTIONS(1799), + [aux_sym_cmd_identifier_token8] = ACTIONS(1797), + [aux_sym_cmd_identifier_token9] = ACTIONS(1797), + [aux_sym_cmd_identifier_token10] = ACTIONS(1799), + [aux_sym_cmd_identifier_token11] = ACTIONS(1799), + [aux_sym_cmd_identifier_token12] = ACTIONS(1797), + [aux_sym_cmd_identifier_token13] = ACTIONS(1797), + [aux_sym_cmd_identifier_token14] = ACTIONS(1797), + [aux_sym_cmd_identifier_token15] = ACTIONS(1797), + [aux_sym_cmd_identifier_token16] = ACTIONS(1799), + [aux_sym_cmd_identifier_token17] = ACTIONS(1799), + [aux_sym_cmd_identifier_token18] = ACTIONS(1799), + [aux_sym_cmd_identifier_token19] = ACTIONS(1799), + [aux_sym_cmd_identifier_token20] = ACTIONS(1799), + [aux_sym_cmd_identifier_token21] = ACTIONS(1799), + [aux_sym_cmd_identifier_token22] = ACTIONS(1799), + [aux_sym_cmd_identifier_token23] = ACTIONS(1799), + [aux_sym_cmd_identifier_token24] = ACTIONS(1799), + [aux_sym_cmd_identifier_token25] = ACTIONS(1799), + [aux_sym_cmd_identifier_token26] = ACTIONS(1799), + [aux_sym_cmd_identifier_token27] = ACTIONS(1799), + [aux_sym_cmd_identifier_token28] = ACTIONS(1799), + [aux_sym_cmd_identifier_token29] = ACTIONS(1799), + [aux_sym_cmd_identifier_token30] = ACTIONS(1799), + [aux_sym_cmd_identifier_token31] = ACTIONS(1799), + [aux_sym_cmd_identifier_token32] = ACTIONS(1799), + [aux_sym_cmd_identifier_token33] = ACTIONS(1799), + [aux_sym_cmd_identifier_token34] = ACTIONS(1797), + [aux_sym_cmd_identifier_token35] = ACTIONS(1799), + [aux_sym_cmd_identifier_token36] = ACTIONS(1799), + [aux_sym_cmd_identifier_token37] = ACTIONS(1799), + [aux_sym_cmd_identifier_token38] = ACTIONS(1797), + [aux_sym_cmd_identifier_token39] = ACTIONS(1799), + [aux_sym_cmd_identifier_token40] = ACTIONS(1799), + [anon_sym_def] = ACTIONS(1797), + [anon_sym_export_DASHenv] = ACTIONS(1797), + [anon_sym_extern] = ACTIONS(1797), + [anon_sym_module] = ACTIONS(1797), + [anon_sym_use] = ACTIONS(1797), + [anon_sym_LPAREN] = ACTIONS(1797), + [anon_sym_COMMA] = ACTIONS(1799), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_error] = ACTIONS(1797), + [anon_sym_DASH2] = ACTIONS(1797), + [anon_sym_break] = ACTIONS(1797), + [anon_sym_continue] = ACTIONS(1797), + [anon_sym_for] = ACTIONS(1797), + [anon_sym_in2] = ACTIONS(1797), + [anon_sym_loop] = ACTIONS(1797), + [anon_sym_make] = ACTIONS(1797), + [anon_sym_while] = ACTIONS(1797), + [anon_sym_do] = ACTIONS(1797), + [anon_sym_if] = ACTIONS(1797), + [anon_sym_else] = ACTIONS(1797), + [anon_sym_match] = ACTIONS(1797), + [anon_sym_RBRACE] = ACTIONS(1799), + [anon_sym_try] = ACTIONS(1797), + [anon_sym_catch] = ACTIONS(1797), + [anon_sym_return] = ACTIONS(1797), + [anon_sym_source] = ACTIONS(1797), + [anon_sym_source_DASHenv] = ACTIONS(1797), + [anon_sym_hide] = ACTIONS(1797), + [anon_sym_hide_DASHenv] = ACTIONS(1797), + [anon_sym_overlay] = ACTIONS(1797), + [anon_sym_as] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(1799), + [anon_sym_PLUS2] = ACTIONS(1797), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1799), + [anon_sym_DOT_DOT2] = ACTIONS(1797), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1799), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1799), + [aux_sym__val_number_decimal_token1] = ACTIONS(1797), + [aux_sym__val_number_decimal_token2] = ACTIONS(1799), + [aux_sym__val_number_decimal_token3] = ACTIONS(1799), + [aux_sym__val_number_decimal_token4] = ACTIONS(1799), + [aux_sym__val_number_token1] = ACTIONS(1799), + [aux_sym__val_number_token2] = ACTIONS(1799), + [aux_sym__val_number_token3] = ACTIONS(1799), + [aux_sym__val_number_token4] = ACTIONS(1797), + [aux_sym__val_number_token5] = ACTIONS(1797), + [aux_sym__val_number_token6] = ACTIONS(1797), + [anon_sym_DQUOTE] = ACTIONS(1799), + [sym__str_single_quotes] = ACTIONS(1799), + [sym__str_back_ticks] = ACTIONS(1799), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1799), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1797), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1797), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1799), + }, + [404] = { + [sym_comment] = STATE(404), + [anon_sym_export] = ACTIONS(1686), + [anon_sym_alias] = ACTIONS(1686), + [anon_sym_let] = ACTIONS(1686), + [anon_sym_let_DASHenv] = ACTIONS(1686), + [anon_sym_mut] = ACTIONS(1686), + [anon_sym_const] = ACTIONS(1686), + [aux_sym_cmd_identifier_token1] = ACTIONS(1686), + [aux_sym_cmd_identifier_token2] = ACTIONS(1688), + [aux_sym_cmd_identifier_token3] = ACTIONS(1688), + [aux_sym_cmd_identifier_token4] = ACTIONS(1688), + [aux_sym_cmd_identifier_token5] = ACTIONS(1688), + [aux_sym_cmd_identifier_token6] = ACTIONS(1688), + [aux_sym_cmd_identifier_token7] = ACTIONS(1688), + [aux_sym_cmd_identifier_token8] = ACTIONS(1686), + [aux_sym_cmd_identifier_token9] = ACTIONS(1686), + [aux_sym_cmd_identifier_token10] = ACTIONS(1688), + [aux_sym_cmd_identifier_token11] = ACTIONS(1688), + [aux_sym_cmd_identifier_token12] = ACTIONS(1686), + [aux_sym_cmd_identifier_token13] = ACTIONS(1686), + [aux_sym_cmd_identifier_token14] = ACTIONS(1686), + [aux_sym_cmd_identifier_token15] = ACTIONS(1686), + [aux_sym_cmd_identifier_token16] = ACTIONS(1688), + [aux_sym_cmd_identifier_token17] = ACTIONS(1688), + [aux_sym_cmd_identifier_token18] = ACTIONS(1688), + [aux_sym_cmd_identifier_token19] = ACTIONS(1688), + [aux_sym_cmd_identifier_token20] = ACTIONS(1688), + [aux_sym_cmd_identifier_token21] = ACTIONS(1688), + [aux_sym_cmd_identifier_token22] = ACTIONS(1688), + [aux_sym_cmd_identifier_token23] = ACTIONS(1688), + [aux_sym_cmd_identifier_token24] = ACTIONS(1688), + [aux_sym_cmd_identifier_token25] = ACTIONS(1688), + [aux_sym_cmd_identifier_token26] = ACTIONS(1688), + [aux_sym_cmd_identifier_token27] = ACTIONS(1688), + [aux_sym_cmd_identifier_token28] = ACTIONS(1688), + [aux_sym_cmd_identifier_token29] = ACTIONS(1688), + [aux_sym_cmd_identifier_token30] = ACTIONS(1688), + [aux_sym_cmd_identifier_token31] = ACTIONS(1688), + [aux_sym_cmd_identifier_token32] = ACTIONS(1688), + [aux_sym_cmd_identifier_token33] = ACTIONS(1688), + [aux_sym_cmd_identifier_token34] = ACTIONS(1686), + [aux_sym_cmd_identifier_token35] = ACTIONS(1688), + [aux_sym_cmd_identifier_token36] = ACTIONS(1688), + [aux_sym_cmd_identifier_token37] = ACTIONS(1688), + [aux_sym_cmd_identifier_token38] = ACTIONS(1686), + [aux_sym_cmd_identifier_token39] = ACTIONS(1688), + [aux_sym_cmd_identifier_token40] = ACTIONS(1688), + [anon_sym_def] = ACTIONS(1686), + [anon_sym_export_DASHenv] = ACTIONS(1686), + [anon_sym_extern] = ACTIONS(1686), + [anon_sym_module] = ACTIONS(1686), + [anon_sym_use] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1688), + [anon_sym_COMMA] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_error] = ACTIONS(1686), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_break] = ACTIONS(1686), + [anon_sym_continue] = ACTIONS(1686), + [anon_sym_for] = ACTIONS(1686), + [anon_sym_in2] = ACTIONS(1686), + [anon_sym_loop] = ACTIONS(1686), + [anon_sym_make] = ACTIONS(1686), + [anon_sym_while] = ACTIONS(1686), + [anon_sym_do] = ACTIONS(1686), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_else] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_try] = ACTIONS(1686), + [anon_sym_catch] = ACTIONS(1686), + [anon_sym_return] = ACTIONS(1686), + [anon_sym_source] = ACTIONS(1686), + [anon_sym_source_DASHenv] = ACTIONS(1686), + [anon_sym_hide] = ACTIONS(1686), + [anon_sym_hide_DASHenv] = ACTIONS(1686), + [anon_sym_overlay] = ACTIONS(1686), + [anon_sym_as] = ACTIONS(1686), + [anon_sym_PLUS2] = ACTIONS(1686), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1688), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [aux_sym__immediate_decimal_token1] = ACTIONS(1859), + [aux_sym__immediate_decimal_token2] = ACTIONS(1861), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1688), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1688), + [aux_sym__val_number_decimal_token3] = ACTIONS(1688), + [aux_sym__val_number_decimal_token4] = ACTIONS(1688), + [aux_sym__val_number_token1] = ACTIONS(1688), + [aux_sym__val_number_token2] = ACTIONS(1688), + [aux_sym__val_number_token3] = ACTIONS(1688), + [aux_sym__val_number_token4] = ACTIONS(1686), + [aux_sym__val_number_token5] = ACTIONS(1686), + [aux_sym__val_number_token6] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [sym__str_single_quotes] = ACTIONS(1688), + [sym__str_back_ticks] = ACTIONS(1688), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1688), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1688), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1688), + [anon_sym_register] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1688), + }, + [405] = { + [sym_cell_path] = STATE(574), + [sym_path] = STATE(533), + [sym_comment] = STATE(405), + [aux_sym_cell_path_repeat1] = STATE(435), + [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), @@ -119557,15 +119085,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1863), [sym__entry_separator] = ACTIONS(1865), [anon_sym_register] = ACTIONS(1863), - [anon_sym_DOT2] = ACTIONS(1833), + [anon_sym_DOT2] = ACTIONS(1827), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1865), }, - [400] = { - [sym_cell_path] = STATE(597), - [sym_path] = STATE(558), - [sym_comment] = STATE(400), - [aux_sym_cell_path_repeat1] = STATE(446), + [406] = { + [sym_cell_path] = STATE(621), + [sym_path] = STATE(533), + [sym_comment] = STATE(406), + [aux_sym_cell_path_repeat1] = STATE(435), [anon_sym_export] = ACTIONS(1867), [anon_sym_alias] = ACTIONS(1867), [anon_sym_let] = ACTIONS(1867), @@ -119664,15 +119192,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1867), [sym__entry_separator] = ACTIONS(1869), [anon_sym_register] = ACTIONS(1867), - [anon_sym_DOT2] = ACTIONS(1833), + [anon_sym_DOT2] = ACTIONS(1827), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1869), }, - [401] = { - [sym_cell_path] = STATE(595), - [sym_path] = STATE(558), - [sym_comment] = STATE(401), - [aux_sym_cell_path_repeat1] = STATE(446), + [407] = { + [sym_cell_path] = STATE(578), + [sym_path] = STATE(533), + [sym_comment] = STATE(407), + [aux_sym_cell_path_repeat1] = STATE(435), [anon_sym_export] = ACTIONS(1871), [anon_sym_alias] = ACTIONS(1871), [anon_sym_let] = ACTIONS(1871), @@ -119771,15 +119299,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1871), [sym__entry_separator] = ACTIONS(1873), [anon_sym_register] = ACTIONS(1871), - [anon_sym_DOT2] = ACTIONS(1833), + [anon_sym_DOT2] = ACTIONS(1827), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1873), }, - [402] = { - [sym_cell_path] = STATE(656), - [sym_path] = STATE(558), - [sym_comment] = STATE(402), - [aux_sym_cell_path_repeat1] = STATE(446), + [408] = { + [sym_cell_path] = STATE(619), + [sym_path] = STATE(533), + [sym_comment] = STATE(408), + [aux_sym_cell_path_repeat1] = STATE(435), + [anon_sym_export] = ACTIONS(925), + [anon_sym_alias] = ACTIONS(925), + [anon_sym_let] = ACTIONS(925), + [anon_sym_let_DASHenv] = ACTIONS(925), + [anon_sym_mut] = ACTIONS(925), + [anon_sym_const] = ACTIONS(925), + [aux_sym_cmd_identifier_token1] = ACTIONS(925), + [aux_sym_cmd_identifier_token2] = ACTIONS(925), + [aux_sym_cmd_identifier_token3] = ACTIONS(925), + [aux_sym_cmd_identifier_token4] = ACTIONS(925), + [aux_sym_cmd_identifier_token5] = ACTIONS(925), + [aux_sym_cmd_identifier_token6] = ACTIONS(925), + [aux_sym_cmd_identifier_token7] = ACTIONS(925), + [aux_sym_cmd_identifier_token8] = ACTIONS(925), + [aux_sym_cmd_identifier_token9] = ACTIONS(925), + [aux_sym_cmd_identifier_token10] = ACTIONS(925), + [aux_sym_cmd_identifier_token11] = ACTIONS(925), + [aux_sym_cmd_identifier_token12] = ACTIONS(925), + [aux_sym_cmd_identifier_token13] = ACTIONS(925), + [aux_sym_cmd_identifier_token14] = ACTIONS(925), + [aux_sym_cmd_identifier_token15] = ACTIONS(925), + [aux_sym_cmd_identifier_token16] = ACTIONS(925), + [aux_sym_cmd_identifier_token17] = ACTIONS(925), + [aux_sym_cmd_identifier_token18] = ACTIONS(925), + [aux_sym_cmd_identifier_token19] = ACTIONS(925), + [aux_sym_cmd_identifier_token20] = ACTIONS(925), + [aux_sym_cmd_identifier_token21] = ACTIONS(925), + [aux_sym_cmd_identifier_token22] = ACTIONS(925), + [aux_sym_cmd_identifier_token23] = ACTIONS(925), + [aux_sym_cmd_identifier_token24] = ACTIONS(925), + [aux_sym_cmd_identifier_token25] = ACTIONS(925), + [aux_sym_cmd_identifier_token26] = ACTIONS(925), + [aux_sym_cmd_identifier_token27] = ACTIONS(925), + [aux_sym_cmd_identifier_token28] = ACTIONS(925), + [aux_sym_cmd_identifier_token29] = ACTIONS(925), + [aux_sym_cmd_identifier_token30] = ACTIONS(925), + [aux_sym_cmd_identifier_token31] = ACTIONS(925), + [aux_sym_cmd_identifier_token32] = ACTIONS(925), + [aux_sym_cmd_identifier_token33] = ACTIONS(925), + [aux_sym_cmd_identifier_token34] = ACTIONS(925), + [aux_sym_cmd_identifier_token35] = ACTIONS(925), + [aux_sym_cmd_identifier_token36] = ACTIONS(925), + [aux_sym_cmd_identifier_token37] = ACTIONS(925), + [aux_sym_cmd_identifier_token38] = ACTIONS(925), + [aux_sym_cmd_identifier_token39] = ACTIONS(925), + [aux_sym_cmd_identifier_token40] = ACTIONS(925), + [anon_sym_def] = ACTIONS(925), + [anon_sym_export_DASHenv] = ACTIONS(925), + [anon_sym_extern] = ACTIONS(925), + [anon_sym_module] = ACTIONS(925), + [anon_sym_use] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_COMMA] = ACTIONS(925), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_error] = ACTIONS(925), + [anon_sym_DASH2] = ACTIONS(925), + [anon_sym_break] = ACTIONS(925), + [anon_sym_continue] = ACTIONS(925), + [anon_sym_for] = ACTIONS(925), + [anon_sym_in2] = ACTIONS(925), + [anon_sym_loop] = ACTIONS(925), + [anon_sym_make] = ACTIONS(925), + [anon_sym_while] = ACTIONS(925), + [anon_sym_do] = ACTIONS(925), + [anon_sym_if] = ACTIONS(925), + [anon_sym_else] = ACTIONS(925), + [anon_sym_match] = ACTIONS(925), + [anon_sym_RBRACE] = ACTIONS(925), + [anon_sym_try] = ACTIONS(925), + [anon_sym_catch] = ACTIONS(925), + [anon_sym_return] = ACTIONS(925), + [anon_sym_source] = ACTIONS(925), + [anon_sym_source_DASHenv] = ACTIONS(925), + [anon_sym_hide] = ACTIONS(925), + [anon_sym_hide_DASHenv] = ACTIONS(925), + [anon_sym_overlay] = ACTIONS(925), + [anon_sym_as] = ACTIONS(925), + [anon_sym_PLUS2] = ACTIONS(925), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(925), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(925), + [aux_sym__val_number_decimal_token1] = ACTIONS(925), + [aux_sym__val_number_decimal_token2] = ACTIONS(925), + [aux_sym__val_number_decimal_token3] = ACTIONS(925), + [aux_sym__val_number_decimal_token4] = ACTIONS(925), + [aux_sym__val_number_token1] = ACTIONS(925), + [aux_sym__val_number_token2] = ACTIONS(925), + [aux_sym__val_number_token3] = ACTIONS(925), + [aux_sym__val_number_token4] = ACTIONS(925), + [aux_sym__val_number_token5] = ACTIONS(925), + [aux_sym__val_number_token6] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(925), + [sym__str_single_quotes] = ACTIONS(925), + [sym__str_back_ticks] = ACTIONS(925), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(925), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(925), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(925), + [sym__entry_separator] = ACTIONS(927), + [anon_sym_register] = ACTIONS(925), + [anon_sym_DOT2] = ACTIONS(1827), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(927), + }, + [409] = { + [sym_cell_path] = STATE(618), + [sym_path] = STATE(533), + [sym_comment] = STATE(409), + [aux_sym_cell_path_repeat1] = STATE(435), [anon_sym_export] = ACTIONS(1875), [anon_sym_alias] = ACTIONS(1875), [anon_sym_let] = ACTIONS(1875), @@ -119878,122 +119513,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1875), [sym__entry_separator] = ACTIONS(1877), [anon_sym_register] = ACTIONS(1875), - [anon_sym_DOT2] = ACTIONS(1833), + [anon_sym_DOT2] = ACTIONS(1827), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1877), }, - [403] = { - [sym_comment] = STATE(403), - [anon_sym_export] = ACTIONS(1666), - [anon_sym_alias] = ACTIONS(1666), - [anon_sym_let] = ACTIONS(1666), - [anon_sym_let_DASHenv] = ACTIONS(1666), - [anon_sym_mut] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [aux_sym_cmd_identifier_token1] = ACTIONS(1666), - [aux_sym_cmd_identifier_token2] = ACTIONS(1668), - [aux_sym_cmd_identifier_token3] = ACTIONS(1668), - [aux_sym_cmd_identifier_token4] = ACTIONS(1668), - [aux_sym_cmd_identifier_token5] = ACTIONS(1668), - [aux_sym_cmd_identifier_token6] = ACTIONS(1668), - [aux_sym_cmd_identifier_token7] = ACTIONS(1668), - [aux_sym_cmd_identifier_token8] = ACTIONS(1666), - [aux_sym_cmd_identifier_token9] = ACTIONS(1666), - [aux_sym_cmd_identifier_token10] = ACTIONS(1668), - [aux_sym_cmd_identifier_token11] = ACTIONS(1668), - [aux_sym_cmd_identifier_token12] = ACTIONS(1666), - [aux_sym_cmd_identifier_token13] = ACTIONS(1666), - [aux_sym_cmd_identifier_token14] = ACTIONS(1666), - [aux_sym_cmd_identifier_token15] = ACTIONS(1666), - [aux_sym_cmd_identifier_token16] = ACTIONS(1668), - [aux_sym_cmd_identifier_token17] = ACTIONS(1668), - [aux_sym_cmd_identifier_token18] = ACTIONS(1668), - [aux_sym_cmd_identifier_token19] = ACTIONS(1668), - [aux_sym_cmd_identifier_token20] = ACTIONS(1668), - [aux_sym_cmd_identifier_token21] = ACTIONS(1668), - [aux_sym_cmd_identifier_token22] = ACTIONS(1668), - [aux_sym_cmd_identifier_token23] = ACTIONS(1668), - [aux_sym_cmd_identifier_token24] = ACTIONS(1668), - [aux_sym_cmd_identifier_token25] = ACTIONS(1668), - [aux_sym_cmd_identifier_token26] = ACTIONS(1668), - [aux_sym_cmd_identifier_token27] = ACTIONS(1668), - [aux_sym_cmd_identifier_token28] = ACTIONS(1668), - [aux_sym_cmd_identifier_token29] = ACTIONS(1668), - [aux_sym_cmd_identifier_token30] = ACTIONS(1668), - [aux_sym_cmd_identifier_token31] = ACTIONS(1668), - [aux_sym_cmd_identifier_token32] = ACTIONS(1668), - [aux_sym_cmd_identifier_token33] = ACTIONS(1668), - [aux_sym_cmd_identifier_token34] = ACTIONS(1666), - [aux_sym_cmd_identifier_token35] = ACTIONS(1668), - [aux_sym_cmd_identifier_token36] = ACTIONS(1668), - [aux_sym_cmd_identifier_token37] = ACTIONS(1668), - [aux_sym_cmd_identifier_token38] = ACTIONS(1666), - [aux_sym_cmd_identifier_token39] = ACTIONS(1668), - [aux_sym_cmd_identifier_token40] = ACTIONS(1668), - [anon_sym_def] = ACTIONS(1666), - [anon_sym_export_DASHenv] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_module] = ACTIONS(1666), - [anon_sym_use] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_error] = ACTIONS(1666), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_in2] = ACTIONS(1666), - [anon_sym_loop] = ACTIONS(1666), - [anon_sym_make] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_do] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_match] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_try] = ACTIONS(1666), - [anon_sym_catch] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_source] = ACTIONS(1666), - [anon_sym_source_DASHenv] = ACTIONS(1666), - [anon_sym_hide] = ACTIONS(1666), - [anon_sym_hide_DASHenv] = ACTIONS(1666), - [anon_sym_overlay] = ACTIONS(1666), - [anon_sym_as] = ACTIONS(1666), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_PLUS2] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1668), - [anon_sym_DOT_DOT2] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1666), - [aux_sym__val_number_token5] = ACTIONS(1666), - [aux_sym__val_number_token6] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1666), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), - }, - [404] = { - [sym_cell_path] = STATE(658), - [sym_path] = STATE(558), - [sym_comment] = STATE(404), - [aux_sym_cell_path_repeat1] = STATE(446), + [410] = { + [sym_cell_path] = STATE(572), + [sym_path] = STATE(533), + [sym_comment] = STATE(410), + [aux_sym_cell_path_repeat1] = STATE(435), [anon_sym_export] = ACTIONS(1879), [anon_sym_alias] = ACTIONS(1879), [anon_sym_let] = ACTIONS(1879), @@ -120092,122 +119620,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1879), [sym__entry_separator] = ACTIONS(1881), [anon_sym_register] = ACTIONS(1879), - [anon_sym_DOT2] = ACTIONS(1833), + [anon_sym_DOT2] = ACTIONS(1827), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1881), }, - [405] = { - [sym_comment] = STATE(405), - [anon_sym_export] = ACTIONS(958), - [anon_sym_alias] = ACTIONS(958), - [anon_sym_let] = ACTIONS(958), - [anon_sym_let_DASHenv] = ACTIONS(958), - [anon_sym_mut] = ACTIONS(958), - [anon_sym_const] = ACTIONS(958), - [aux_sym_cmd_identifier_token1] = ACTIONS(958), - [aux_sym_cmd_identifier_token2] = ACTIONS(960), - [aux_sym_cmd_identifier_token3] = ACTIONS(960), - [aux_sym_cmd_identifier_token4] = ACTIONS(960), - [aux_sym_cmd_identifier_token5] = ACTIONS(960), - [aux_sym_cmd_identifier_token6] = ACTIONS(960), - [aux_sym_cmd_identifier_token7] = ACTIONS(960), - [aux_sym_cmd_identifier_token8] = ACTIONS(958), - [aux_sym_cmd_identifier_token9] = ACTIONS(958), - [aux_sym_cmd_identifier_token10] = ACTIONS(960), - [aux_sym_cmd_identifier_token11] = ACTIONS(960), - [aux_sym_cmd_identifier_token12] = ACTIONS(958), - [aux_sym_cmd_identifier_token13] = ACTIONS(958), - [aux_sym_cmd_identifier_token14] = ACTIONS(958), - [aux_sym_cmd_identifier_token15] = ACTIONS(958), - [aux_sym_cmd_identifier_token16] = ACTIONS(960), - [aux_sym_cmd_identifier_token17] = ACTIONS(960), - [aux_sym_cmd_identifier_token18] = ACTIONS(960), - [aux_sym_cmd_identifier_token19] = ACTIONS(960), - [aux_sym_cmd_identifier_token20] = ACTIONS(960), - [aux_sym_cmd_identifier_token21] = ACTIONS(960), - [aux_sym_cmd_identifier_token22] = ACTIONS(960), - [aux_sym_cmd_identifier_token23] = ACTIONS(960), - [aux_sym_cmd_identifier_token24] = ACTIONS(960), - [aux_sym_cmd_identifier_token25] = ACTIONS(960), - [aux_sym_cmd_identifier_token26] = ACTIONS(960), - [aux_sym_cmd_identifier_token27] = ACTIONS(960), - [aux_sym_cmd_identifier_token28] = ACTIONS(960), - [aux_sym_cmd_identifier_token29] = ACTIONS(960), - [aux_sym_cmd_identifier_token30] = ACTIONS(960), - [aux_sym_cmd_identifier_token31] = ACTIONS(960), - [aux_sym_cmd_identifier_token32] = ACTIONS(960), - [aux_sym_cmd_identifier_token33] = ACTIONS(960), - [aux_sym_cmd_identifier_token34] = ACTIONS(958), - [aux_sym_cmd_identifier_token35] = ACTIONS(960), - [aux_sym_cmd_identifier_token36] = ACTIONS(960), - [aux_sym_cmd_identifier_token37] = ACTIONS(960), - [aux_sym_cmd_identifier_token38] = ACTIONS(958), - [aux_sym_cmd_identifier_token39] = ACTIONS(960), - [aux_sym_cmd_identifier_token40] = ACTIONS(960), - [anon_sym_def] = ACTIONS(958), - [anon_sym_export_DASHenv] = ACTIONS(958), - [anon_sym_extern] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_use] = ACTIONS(958), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_COMMA] = ACTIONS(960), - [anon_sym_DOLLAR] = ACTIONS(958), - [anon_sym_error] = ACTIONS(958), - [anon_sym_DASH2] = ACTIONS(958), - [anon_sym_break] = ACTIONS(958), - [anon_sym_continue] = ACTIONS(958), - [anon_sym_for] = ACTIONS(958), - [anon_sym_in2] = ACTIONS(958), - [anon_sym_loop] = ACTIONS(958), - [anon_sym_make] = ACTIONS(958), - [anon_sym_while] = ACTIONS(958), - [anon_sym_do] = ACTIONS(958), - [anon_sym_if] = ACTIONS(958), - [anon_sym_else] = ACTIONS(958), - [anon_sym_match] = ACTIONS(958), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_try] = ACTIONS(958), - [anon_sym_catch] = ACTIONS(958), - [anon_sym_return] = ACTIONS(958), - [anon_sym_source] = ACTIONS(958), - [anon_sym_source_DASHenv] = ACTIONS(958), - [anon_sym_hide] = ACTIONS(958), - [anon_sym_hide_DASHenv] = ACTIONS(958), - [anon_sym_overlay] = ACTIONS(958), - [anon_sym_as] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(960), - [anon_sym_PLUS2] = ACTIONS(958), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(960), - [anon_sym_DOT_DOT2] = ACTIONS(958), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(960), - [anon_sym_DOT_DOT_LT2] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(960), - [aux_sym__val_number_decimal_token1] = ACTIONS(958), - [aux_sym__val_number_decimal_token2] = ACTIONS(960), - [aux_sym__val_number_decimal_token3] = ACTIONS(960), - [aux_sym__val_number_decimal_token4] = ACTIONS(960), - [aux_sym__val_number_token1] = ACTIONS(960), - [aux_sym__val_number_token2] = ACTIONS(960), - [aux_sym__val_number_token3] = ACTIONS(960), - [aux_sym__val_number_token4] = ACTIONS(958), - [aux_sym__val_number_token5] = ACTIONS(958), - [aux_sym__val_number_token6] = ACTIONS(958), - [anon_sym_DQUOTE] = ACTIONS(960), - [sym__str_single_quotes] = ACTIONS(960), - [sym__str_back_ticks] = ACTIONS(960), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(960), - [anon_sym_register] = ACTIONS(958), - [anon_sym_DOT2] = ACTIONS(958), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(960), - }, - [406] = { - [sym_cell_path] = STATE(664), - [sym_path] = STATE(558), - [sym_comment] = STATE(406), - [aux_sym_cell_path_repeat1] = STATE(446), + [411] = { + [sym_cell_path] = STATE(631), + [sym_path] = STATE(533), + [sym_comment] = STATE(411), + [aux_sym_cell_path_repeat1] = STATE(435), [anon_sym_export] = ACTIONS(1883), [anon_sym_alias] = ACTIONS(1883), [anon_sym_let] = ACTIONS(1883), @@ -120306,1510 +119727,1189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1883), [sym__entry_separator] = ACTIONS(1885), [anon_sym_register] = ACTIONS(1883), - [anon_sym_DOT2] = ACTIONS(1833), + [anon_sym_DOT2] = ACTIONS(1827), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1885), }, - [407] = { - [sym_comment] = STATE(407), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), - [aux_sym_cmd_identifier_token2] = ACTIONS(1648), - [aux_sym_cmd_identifier_token3] = ACTIONS(1648), - [aux_sym_cmd_identifier_token4] = ACTIONS(1648), - [aux_sym_cmd_identifier_token5] = ACTIONS(1648), - [aux_sym_cmd_identifier_token6] = ACTIONS(1648), - [aux_sym_cmd_identifier_token7] = ACTIONS(1648), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), - [aux_sym_cmd_identifier_token10] = ACTIONS(1648), - [aux_sym_cmd_identifier_token11] = ACTIONS(1648), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), - [aux_sym_cmd_identifier_token16] = ACTIONS(1648), - [aux_sym_cmd_identifier_token17] = ACTIONS(1648), - [aux_sym_cmd_identifier_token18] = ACTIONS(1648), - [aux_sym_cmd_identifier_token19] = ACTIONS(1648), - [aux_sym_cmd_identifier_token20] = ACTIONS(1648), - [aux_sym_cmd_identifier_token21] = ACTIONS(1648), - [aux_sym_cmd_identifier_token22] = ACTIONS(1648), - [aux_sym_cmd_identifier_token23] = ACTIONS(1648), - [aux_sym_cmd_identifier_token24] = ACTIONS(1648), - [aux_sym_cmd_identifier_token25] = ACTIONS(1648), - [aux_sym_cmd_identifier_token26] = ACTIONS(1648), - [aux_sym_cmd_identifier_token27] = ACTIONS(1648), - [aux_sym_cmd_identifier_token28] = ACTIONS(1648), - [aux_sym_cmd_identifier_token29] = ACTIONS(1648), - [aux_sym_cmd_identifier_token30] = ACTIONS(1648), - [aux_sym_cmd_identifier_token31] = ACTIONS(1648), - [aux_sym_cmd_identifier_token32] = ACTIONS(1648), - [aux_sym_cmd_identifier_token33] = ACTIONS(1648), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), - [aux_sym_cmd_identifier_token35] = ACTIONS(1648), - [aux_sym_cmd_identifier_token36] = ACTIONS(1648), - [aux_sym_cmd_identifier_token37] = ACTIONS(1648), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), - [aux_sym_cmd_identifier_token39] = ACTIONS(1648), - [aux_sym_cmd_identifier_token40] = ACTIONS(1648), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_COMMA] = ACTIONS(1648), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_DASH2] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in2] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_PLUS2] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1648), - [aux_sym__immediate_decimal_token1] = ACTIONS(1887), - [aux_sym__immediate_decimal_token2] = ACTIONS(1889), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1648), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1648), - [aux_sym__val_number_decimal_token3] = ACTIONS(1648), - [aux_sym__val_number_decimal_token4] = ACTIONS(1648), - [aux_sym__val_number_token1] = ACTIONS(1648), - [aux_sym__val_number_token2] = ACTIONS(1648), - [aux_sym__val_number_token3] = ACTIONS(1648), - [aux_sym__val_number_token4] = ACTIONS(1648), - [aux_sym__val_number_token5] = ACTIONS(1648), - [aux_sym__val_number_token6] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1648), - [sym__str_single_quotes] = ACTIONS(1648), - [sym__str_back_ticks] = ACTIONS(1648), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1648), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1648), - [sym__entry_separator] = ACTIONS(1650), - [anon_sym_register] = ACTIONS(1648), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1650), - }, - [408] = { - [sym_comment] = STATE(408), - [anon_sym_export] = ACTIONS(954), - [anon_sym_alias] = ACTIONS(954), - [anon_sym_let] = ACTIONS(954), - [anon_sym_let_DASHenv] = ACTIONS(954), - [anon_sym_mut] = ACTIONS(954), - [anon_sym_const] = ACTIONS(954), - [aux_sym_cmd_identifier_token1] = ACTIONS(954), - [aux_sym_cmd_identifier_token2] = ACTIONS(956), - [aux_sym_cmd_identifier_token3] = ACTIONS(956), - [aux_sym_cmd_identifier_token4] = ACTIONS(956), - [aux_sym_cmd_identifier_token5] = ACTIONS(956), - [aux_sym_cmd_identifier_token6] = ACTIONS(956), - [aux_sym_cmd_identifier_token7] = ACTIONS(956), - [aux_sym_cmd_identifier_token8] = ACTIONS(954), - [aux_sym_cmd_identifier_token9] = ACTIONS(954), - [aux_sym_cmd_identifier_token10] = ACTIONS(956), - [aux_sym_cmd_identifier_token11] = ACTIONS(956), - [aux_sym_cmd_identifier_token12] = ACTIONS(954), - [aux_sym_cmd_identifier_token13] = ACTIONS(954), - [aux_sym_cmd_identifier_token14] = ACTIONS(954), - [aux_sym_cmd_identifier_token15] = ACTIONS(954), - [aux_sym_cmd_identifier_token16] = ACTIONS(956), - [aux_sym_cmd_identifier_token17] = ACTIONS(956), - [aux_sym_cmd_identifier_token18] = ACTIONS(956), - [aux_sym_cmd_identifier_token19] = ACTIONS(956), - [aux_sym_cmd_identifier_token20] = ACTIONS(956), - [aux_sym_cmd_identifier_token21] = ACTIONS(956), - [aux_sym_cmd_identifier_token22] = ACTIONS(956), - [aux_sym_cmd_identifier_token23] = ACTIONS(956), - [aux_sym_cmd_identifier_token24] = ACTIONS(956), - [aux_sym_cmd_identifier_token25] = ACTIONS(956), - [aux_sym_cmd_identifier_token26] = ACTIONS(956), - [aux_sym_cmd_identifier_token27] = ACTIONS(956), - [aux_sym_cmd_identifier_token28] = ACTIONS(956), - [aux_sym_cmd_identifier_token29] = ACTIONS(956), - [aux_sym_cmd_identifier_token30] = ACTIONS(956), - [aux_sym_cmd_identifier_token31] = ACTIONS(956), - [aux_sym_cmd_identifier_token32] = ACTIONS(956), - [aux_sym_cmd_identifier_token33] = ACTIONS(956), - [aux_sym_cmd_identifier_token34] = ACTIONS(954), - [aux_sym_cmd_identifier_token35] = ACTIONS(956), - [aux_sym_cmd_identifier_token36] = ACTIONS(956), - [aux_sym_cmd_identifier_token37] = ACTIONS(956), - [aux_sym_cmd_identifier_token38] = ACTIONS(954), - [aux_sym_cmd_identifier_token39] = ACTIONS(956), - [aux_sym_cmd_identifier_token40] = ACTIONS(956), - [anon_sym_def] = ACTIONS(954), - [anon_sym_export_DASHenv] = ACTIONS(954), - [anon_sym_extern] = ACTIONS(954), - [anon_sym_module] = ACTIONS(954), - [anon_sym_use] = ACTIONS(954), - [anon_sym_LPAREN] = ACTIONS(956), - [anon_sym_COMMA] = ACTIONS(956), - [anon_sym_DOLLAR] = ACTIONS(954), - [anon_sym_error] = ACTIONS(954), - [anon_sym_DASH2] = ACTIONS(954), - [anon_sym_break] = ACTIONS(954), - [anon_sym_continue] = ACTIONS(954), - [anon_sym_for] = ACTIONS(954), - [anon_sym_in2] = ACTIONS(954), - [anon_sym_loop] = ACTIONS(954), - [anon_sym_make] = ACTIONS(954), - [anon_sym_while] = ACTIONS(954), - [anon_sym_do] = ACTIONS(954), - [anon_sym_if] = ACTIONS(954), - [anon_sym_else] = ACTIONS(954), - [anon_sym_match] = ACTIONS(954), - [anon_sym_RBRACE] = ACTIONS(956), - [anon_sym_try] = ACTIONS(954), - [anon_sym_catch] = ACTIONS(954), - [anon_sym_return] = ACTIONS(954), - [anon_sym_source] = ACTIONS(954), - [anon_sym_source_DASHenv] = ACTIONS(954), - [anon_sym_hide] = ACTIONS(954), - [anon_sym_hide_DASHenv] = ACTIONS(954), - [anon_sym_overlay] = ACTIONS(954), - [anon_sym_as] = ACTIONS(954), - [anon_sym_QMARK2] = ACTIONS(956), - [anon_sym_PLUS2] = ACTIONS(954), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(956), - [anon_sym_DOT_DOT2] = ACTIONS(954), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(956), - [anon_sym_DOT_DOT_LT2] = ACTIONS(956), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(956), - [aux_sym__val_number_decimal_token1] = ACTIONS(954), - [aux_sym__val_number_decimal_token2] = ACTIONS(956), - [aux_sym__val_number_decimal_token3] = ACTIONS(956), - [aux_sym__val_number_decimal_token4] = ACTIONS(956), - [aux_sym__val_number_token1] = ACTIONS(956), - [aux_sym__val_number_token2] = ACTIONS(956), - [aux_sym__val_number_token3] = ACTIONS(956), - [aux_sym__val_number_token4] = ACTIONS(954), - [aux_sym__val_number_token5] = ACTIONS(954), - [aux_sym__val_number_token6] = ACTIONS(954), - [anon_sym_DQUOTE] = ACTIONS(956), - [sym__str_single_quotes] = ACTIONS(956), - [sym__str_back_ticks] = ACTIONS(956), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(956), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(956), - [anon_sym_register] = ACTIONS(954), - [anon_sym_DOT2] = ACTIONS(954), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(956), - }, - [409] = { - [sym_comment] = STATE(409), - [anon_sym_export] = ACTIONS(962), - [anon_sym_alias] = ACTIONS(962), - [anon_sym_let] = ACTIONS(962), - [anon_sym_let_DASHenv] = ACTIONS(962), - [anon_sym_mut] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [aux_sym_cmd_identifier_token1] = ACTIONS(962), - [aux_sym_cmd_identifier_token2] = ACTIONS(964), - [aux_sym_cmd_identifier_token3] = ACTIONS(964), - [aux_sym_cmd_identifier_token4] = ACTIONS(964), - [aux_sym_cmd_identifier_token5] = ACTIONS(964), - [aux_sym_cmd_identifier_token6] = ACTIONS(964), - [aux_sym_cmd_identifier_token7] = ACTIONS(964), - [aux_sym_cmd_identifier_token8] = ACTIONS(962), - [aux_sym_cmd_identifier_token9] = ACTIONS(962), - [aux_sym_cmd_identifier_token10] = ACTIONS(964), - [aux_sym_cmd_identifier_token11] = ACTIONS(964), - [aux_sym_cmd_identifier_token12] = ACTIONS(962), - [aux_sym_cmd_identifier_token13] = ACTIONS(962), - [aux_sym_cmd_identifier_token14] = ACTIONS(962), - [aux_sym_cmd_identifier_token15] = ACTIONS(962), - [aux_sym_cmd_identifier_token16] = ACTIONS(964), - [aux_sym_cmd_identifier_token17] = ACTIONS(964), - [aux_sym_cmd_identifier_token18] = ACTIONS(964), - [aux_sym_cmd_identifier_token19] = ACTIONS(964), - [aux_sym_cmd_identifier_token20] = ACTIONS(964), - [aux_sym_cmd_identifier_token21] = ACTIONS(964), - [aux_sym_cmd_identifier_token22] = ACTIONS(964), - [aux_sym_cmd_identifier_token23] = ACTIONS(964), - [aux_sym_cmd_identifier_token24] = ACTIONS(964), - [aux_sym_cmd_identifier_token25] = ACTIONS(964), - [aux_sym_cmd_identifier_token26] = ACTIONS(964), - [aux_sym_cmd_identifier_token27] = ACTIONS(964), - [aux_sym_cmd_identifier_token28] = ACTIONS(964), - [aux_sym_cmd_identifier_token29] = ACTIONS(964), - [aux_sym_cmd_identifier_token30] = ACTIONS(964), - [aux_sym_cmd_identifier_token31] = ACTIONS(964), - [aux_sym_cmd_identifier_token32] = ACTIONS(964), - [aux_sym_cmd_identifier_token33] = ACTIONS(964), - [aux_sym_cmd_identifier_token34] = ACTIONS(962), - [aux_sym_cmd_identifier_token35] = ACTIONS(964), - [aux_sym_cmd_identifier_token36] = ACTIONS(964), - [aux_sym_cmd_identifier_token37] = ACTIONS(964), - [aux_sym_cmd_identifier_token38] = ACTIONS(962), - [aux_sym_cmd_identifier_token39] = ACTIONS(964), - [aux_sym_cmd_identifier_token40] = ACTIONS(964), - [anon_sym_def] = ACTIONS(962), - [anon_sym_export_DASHenv] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_module] = ACTIONS(962), - [anon_sym_use] = ACTIONS(962), - [anon_sym_LPAREN] = ACTIONS(964), - [anon_sym_COMMA] = ACTIONS(964), - [anon_sym_DOLLAR] = ACTIONS(962), - [anon_sym_error] = ACTIONS(962), - [anon_sym_DASH2] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_in2] = ACTIONS(962), - [anon_sym_loop] = ACTIONS(962), - [anon_sym_make] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [anon_sym_else] = ACTIONS(962), - [anon_sym_match] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_try] = ACTIONS(962), - [anon_sym_catch] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_source] = ACTIONS(962), - [anon_sym_source_DASHenv] = ACTIONS(962), - [anon_sym_hide] = ACTIONS(962), - [anon_sym_hide_DASHenv] = ACTIONS(962), - [anon_sym_overlay] = ACTIONS(962), - [anon_sym_as] = ACTIONS(962), - [anon_sym_QMARK2] = ACTIONS(964), - [anon_sym_PLUS2] = ACTIONS(962), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(964), - [anon_sym_DOT_DOT2] = ACTIONS(962), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), - [anon_sym_DOT_DOT_LT2] = ACTIONS(964), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(964), - [aux_sym__val_number_decimal_token1] = ACTIONS(962), - [aux_sym__val_number_decimal_token2] = ACTIONS(964), - [aux_sym__val_number_decimal_token3] = ACTIONS(964), - [aux_sym__val_number_decimal_token4] = ACTIONS(964), - [aux_sym__val_number_token1] = ACTIONS(964), - [aux_sym__val_number_token2] = ACTIONS(964), - [aux_sym__val_number_token3] = ACTIONS(964), - [aux_sym__val_number_token4] = ACTIONS(962), - [aux_sym__val_number_token5] = ACTIONS(962), - [aux_sym__val_number_token6] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym__str_single_quotes] = ACTIONS(964), - [sym__str_back_ticks] = ACTIONS(964), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(964), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(964), - [anon_sym_register] = ACTIONS(962), - [anon_sym_DOT2] = ACTIONS(962), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(964), - }, - [410] = { - [sym_comment] = STATE(410), - [anon_sym_export] = ACTIONS(1666), - [anon_sym_alias] = ACTIONS(1666), - [anon_sym_let] = ACTIONS(1666), - [anon_sym_let_DASHenv] = ACTIONS(1666), - [anon_sym_mut] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [aux_sym_cmd_identifier_token1] = ACTIONS(1666), - [aux_sym_cmd_identifier_token2] = ACTIONS(1666), - [aux_sym_cmd_identifier_token3] = ACTIONS(1666), - [aux_sym_cmd_identifier_token4] = ACTIONS(1666), - [aux_sym_cmd_identifier_token5] = ACTIONS(1666), - [aux_sym_cmd_identifier_token6] = ACTIONS(1666), - [aux_sym_cmd_identifier_token7] = ACTIONS(1666), - [aux_sym_cmd_identifier_token8] = ACTIONS(1666), - [aux_sym_cmd_identifier_token9] = ACTIONS(1666), - [aux_sym_cmd_identifier_token10] = ACTIONS(1666), - [aux_sym_cmd_identifier_token11] = ACTIONS(1666), - [aux_sym_cmd_identifier_token12] = ACTIONS(1666), - [aux_sym_cmd_identifier_token13] = ACTIONS(1666), - [aux_sym_cmd_identifier_token14] = ACTIONS(1666), - [aux_sym_cmd_identifier_token15] = ACTIONS(1666), - [aux_sym_cmd_identifier_token16] = ACTIONS(1666), - [aux_sym_cmd_identifier_token17] = ACTIONS(1666), - [aux_sym_cmd_identifier_token18] = ACTIONS(1666), - [aux_sym_cmd_identifier_token19] = ACTIONS(1666), - [aux_sym_cmd_identifier_token20] = ACTIONS(1666), - [aux_sym_cmd_identifier_token21] = ACTIONS(1666), - [aux_sym_cmd_identifier_token22] = ACTIONS(1666), - [aux_sym_cmd_identifier_token23] = ACTIONS(1666), - [aux_sym_cmd_identifier_token24] = ACTIONS(1666), - [aux_sym_cmd_identifier_token25] = ACTIONS(1666), - [aux_sym_cmd_identifier_token26] = ACTIONS(1666), - [aux_sym_cmd_identifier_token27] = ACTIONS(1666), - [aux_sym_cmd_identifier_token28] = ACTIONS(1666), - [aux_sym_cmd_identifier_token29] = ACTIONS(1666), - [aux_sym_cmd_identifier_token30] = ACTIONS(1666), - [aux_sym_cmd_identifier_token31] = ACTIONS(1666), - [aux_sym_cmd_identifier_token32] = ACTIONS(1666), - [aux_sym_cmd_identifier_token33] = ACTIONS(1666), - [aux_sym_cmd_identifier_token34] = ACTIONS(1666), - [aux_sym_cmd_identifier_token35] = ACTIONS(1666), - [aux_sym_cmd_identifier_token36] = ACTIONS(1666), - [aux_sym_cmd_identifier_token37] = ACTIONS(1666), - [aux_sym_cmd_identifier_token38] = ACTIONS(1666), - [aux_sym_cmd_identifier_token39] = ACTIONS(1666), - [aux_sym_cmd_identifier_token40] = ACTIONS(1666), - [anon_sym_def] = ACTIONS(1666), - [anon_sym_export_DASHenv] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_module] = ACTIONS(1666), - [anon_sym_use] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_COMMA] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_error] = ACTIONS(1666), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_in2] = ACTIONS(1666), - [anon_sym_loop] = ACTIONS(1666), - [anon_sym_make] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_do] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_match] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(1666), - [anon_sym_try] = ACTIONS(1666), - [anon_sym_catch] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_source] = ACTIONS(1666), - [anon_sym_source_DASHenv] = ACTIONS(1666), - [anon_sym_hide] = ACTIONS(1666), - [anon_sym_hide_DASHenv] = ACTIONS(1666), - [anon_sym_overlay] = ACTIONS(1666), - [anon_sym_as] = ACTIONS(1666), - [anon_sym_PLUS2] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1666), - [anon_sym_DOT_DOT2] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [aux_sym__immediate_decimal_token2] = ACTIONS(1804), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1666), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1666), - [aux_sym__val_number_decimal_token3] = ACTIONS(1666), - [aux_sym__val_number_decimal_token4] = ACTIONS(1666), - [aux_sym__val_number_token1] = ACTIONS(1666), - [aux_sym__val_number_token2] = ACTIONS(1666), - [aux_sym__val_number_token3] = ACTIONS(1666), - [aux_sym__val_number_token4] = ACTIONS(1666), - [aux_sym__val_number_token5] = ACTIONS(1666), - [aux_sym__val_number_token6] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1666), - [sym__str_single_quotes] = ACTIONS(1666), - [sym__str_back_ticks] = ACTIONS(1666), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1666), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1666), - [sym__entry_separator] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1668), - }, - [411] = { - [sym_comment] = STATE(411), - [anon_sym_export] = ACTIONS(1790), - [anon_sym_alias] = ACTIONS(1790), - [anon_sym_let] = ACTIONS(1790), - [anon_sym_let_DASHenv] = ACTIONS(1790), - [anon_sym_mut] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [aux_sym_cmd_identifier_token1] = ACTIONS(1790), - [aux_sym_cmd_identifier_token2] = ACTIONS(1792), - [aux_sym_cmd_identifier_token3] = ACTIONS(1792), - [aux_sym_cmd_identifier_token4] = ACTIONS(1792), - [aux_sym_cmd_identifier_token5] = ACTIONS(1792), - [aux_sym_cmd_identifier_token6] = ACTIONS(1792), - [aux_sym_cmd_identifier_token7] = ACTIONS(1792), - [aux_sym_cmd_identifier_token8] = ACTIONS(1790), - [aux_sym_cmd_identifier_token9] = ACTIONS(1790), - [aux_sym_cmd_identifier_token10] = ACTIONS(1792), - [aux_sym_cmd_identifier_token11] = ACTIONS(1792), - [aux_sym_cmd_identifier_token12] = ACTIONS(1790), - [aux_sym_cmd_identifier_token13] = ACTIONS(1790), - [aux_sym_cmd_identifier_token14] = ACTIONS(1790), - [aux_sym_cmd_identifier_token15] = ACTIONS(1790), - [aux_sym_cmd_identifier_token16] = ACTIONS(1792), - [aux_sym_cmd_identifier_token17] = ACTIONS(1792), - [aux_sym_cmd_identifier_token18] = ACTIONS(1792), - [aux_sym_cmd_identifier_token19] = ACTIONS(1792), - [aux_sym_cmd_identifier_token20] = ACTIONS(1792), - [aux_sym_cmd_identifier_token21] = ACTIONS(1792), - [aux_sym_cmd_identifier_token22] = ACTIONS(1792), - [aux_sym_cmd_identifier_token23] = ACTIONS(1792), - [aux_sym_cmd_identifier_token24] = ACTIONS(1792), - [aux_sym_cmd_identifier_token25] = ACTIONS(1792), - [aux_sym_cmd_identifier_token26] = ACTIONS(1792), - [aux_sym_cmd_identifier_token27] = ACTIONS(1792), - [aux_sym_cmd_identifier_token28] = ACTIONS(1792), - [aux_sym_cmd_identifier_token29] = ACTIONS(1792), - [aux_sym_cmd_identifier_token30] = ACTIONS(1792), - [aux_sym_cmd_identifier_token31] = ACTIONS(1792), - [aux_sym_cmd_identifier_token32] = ACTIONS(1792), - [aux_sym_cmd_identifier_token33] = ACTIONS(1792), - [aux_sym_cmd_identifier_token34] = ACTIONS(1790), - [aux_sym_cmd_identifier_token35] = ACTIONS(1792), - [aux_sym_cmd_identifier_token36] = ACTIONS(1792), - [aux_sym_cmd_identifier_token37] = ACTIONS(1792), - [aux_sym_cmd_identifier_token38] = ACTIONS(1790), - [aux_sym_cmd_identifier_token39] = ACTIONS(1792), - [aux_sym_cmd_identifier_token40] = ACTIONS(1792), - [anon_sym_def] = ACTIONS(1790), - [anon_sym_export_DASHenv] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym_module] = ACTIONS(1790), - [anon_sym_use] = ACTIONS(1790), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1790), - [anon_sym_error] = ACTIONS(1790), - [anon_sym_DASH2] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_in2] = ACTIONS(1790), - [anon_sym_loop] = ACTIONS(1790), - [anon_sym_make] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_match] = ACTIONS(1790), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_catch] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_source] = ACTIONS(1790), - [anon_sym_source_DASHenv] = ACTIONS(1790), - [anon_sym_hide] = ACTIONS(1790), - [anon_sym_hide_DASHenv] = ACTIONS(1790), - [anon_sym_overlay] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_PLUS2] = ACTIONS(1790), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1792), - [anon_sym_DOT_DOT2] = ACTIONS(1790), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1792), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1792), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1792), - [aux_sym__val_number_decimal_token1] = ACTIONS(1790), - [aux_sym__val_number_decimal_token2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1792), - [aux_sym__val_number_decimal_token4] = ACTIONS(1792), - [aux_sym__val_number_token1] = ACTIONS(1792), - [aux_sym__val_number_token2] = ACTIONS(1792), - [aux_sym__val_number_token3] = ACTIONS(1792), - [aux_sym__val_number_token4] = ACTIONS(1790), - [aux_sym__val_number_token5] = ACTIONS(1790), - [aux_sym__val_number_token6] = ACTIONS(1790), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym__str_single_quotes] = ACTIONS(1792), - [sym__str_back_ticks] = ACTIONS(1792), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1792), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1792), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1792), - [anon_sym_register] = ACTIONS(1790), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1792), - }, [412] = { - [sym_cell_path] = STATE(588), - [sym_path] = STATE(558), [sym_comment] = STATE(412), - [aux_sym_cell_path_repeat1] = STATE(446), - [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_COMMA] = 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_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_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_DOLLAR_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1891), - [sym__entry_separator] = ACTIONS(1893), - [anon_sym_register] = ACTIONS(1891), - [anon_sym_DOT2] = ACTIONS(1833), + [anon_sym_export] = ACTIONS(1686), + [anon_sym_alias] = ACTIONS(1686), + [anon_sym_let] = ACTIONS(1686), + [anon_sym_let_DASHenv] = ACTIONS(1686), + [anon_sym_mut] = ACTIONS(1686), + [anon_sym_const] = ACTIONS(1686), + [aux_sym_cmd_identifier_token1] = ACTIONS(1686), + [aux_sym_cmd_identifier_token2] = ACTIONS(1686), + [aux_sym_cmd_identifier_token3] = ACTIONS(1686), + [aux_sym_cmd_identifier_token4] = ACTIONS(1686), + [aux_sym_cmd_identifier_token5] = ACTIONS(1686), + [aux_sym_cmd_identifier_token6] = ACTIONS(1686), + [aux_sym_cmd_identifier_token7] = ACTIONS(1686), + [aux_sym_cmd_identifier_token8] = ACTIONS(1686), + [aux_sym_cmd_identifier_token9] = ACTIONS(1686), + [aux_sym_cmd_identifier_token10] = ACTIONS(1686), + [aux_sym_cmd_identifier_token11] = ACTIONS(1686), + [aux_sym_cmd_identifier_token12] = ACTIONS(1686), + [aux_sym_cmd_identifier_token13] = ACTIONS(1686), + [aux_sym_cmd_identifier_token14] = ACTIONS(1686), + [aux_sym_cmd_identifier_token15] = ACTIONS(1686), + [aux_sym_cmd_identifier_token16] = ACTIONS(1686), + [aux_sym_cmd_identifier_token17] = ACTIONS(1686), + [aux_sym_cmd_identifier_token18] = ACTIONS(1686), + [aux_sym_cmd_identifier_token19] = ACTIONS(1686), + [aux_sym_cmd_identifier_token20] = ACTIONS(1686), + [aux_sym_cmd_identifier_token21] = ACTIONS(1686), + [aux_sym_cmd_identifier_token22] = ACTIONS(1686), + [aux_sym_cmd_identifier_token23] = ACTIONS(1686), + [aux_sym_cmd_identifier_token24] = ACTIONS(1686), + [aux_sym_cmd_identifier_token25] = ACTIONS(1686), + [aux_sym_cmd_identifier_token26] = ACTIONS(1686), + [aux_sym_cmd_identifier_token27] = ACTIONS(1686), + [aux_sym_cmd_identifier_token28] = ACTIONS(1686), + [aux_sym_cmd_identifier_token29] = ACTIONS(1686), + [aux_sym_cmd_identifier_token30] = ACTIONS(1686), + [aux_sym_cmd_identifier_token31] = ACTIONS(1686), + [aux_sym_cmd_identifier_token32] = ACTIONS(1686), + [aux_sym_cmd_identifier_token33] = ACTIONS(1686), + [aux_sym_cmd_identifier_token34] = ACTIONS(1686), + [aux_sym_cmd_identifier_token35] = ACTIONS(1686), + [aux_sym_cmd_identifier_token36] = ACTIONS(1686), + [aux_sym_cmd_identifier_token37] = ACTIONS(1686), + [aux_sym_cmd_identifier_token38] = ACTIONS(1686), + [aux_sym_cmd_identifier_token39] = ACTIONS(1686), + [aux_sym_cmd_identifier_token40] = ACTIONS(1686), + [anon_sym_def] = ACTIONS(1686), + [anon_sym_export_DASHenv] = ACTIONS(1686), + [anon_sym_extern] = ACTIONS(1686), + [anon_sym_module] = ACTIONS(1686), + [anon_sym_use] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_error] = ACTIONS(1686), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_break] = ACTIONS(1686), + [anon_sym_continue] = ACTIONS(1686), + [anon_sym_for] = ACTIONS(1686), + [anon_sym_in2] = ACTIONS(1686), + [anon_sym_loop] = ACTIONS(1686), + [anon_sym_make] = ACTIONS(1686), + [anon_sym_while] = ACTIONS(1686), + [anon_sym_do] = ACTIONS(1686), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_else] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1686), + [anon_sym_try] = ACTIONS(1686), + [anon_sym_catch] = ACTIONS(1686), + [anon_sym_return] = ACTIONS(1686), + [anon_sym_source] = ACTIONS(1686), + [anon_sym_source_DASHenv] = ACTIONS(1686), + [anon_sym_hide] = ACTIONS(1686), + [anon_sym_hide_DASHenv] = ACTIONS(1686), + [anon_sym_overlay] = ACTIONS(1686), + [anon_sym_as] = ACTIONS(1686), + [anon_sym_LPAREN2] = ACTIONS(1688), + [anon_sym_PLUS2] = ACTIONS(1686), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1686), + [aux_sym__immediate_decimal_token1] = ACTIONS(1887), + [aux_sym__immediate_decimal_token2] = ACTIONS(1889), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1686), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1686), + [aux_sym__val_number_decimal_token3] = ACTIONS(1686), + [aux_sym__val_number_decimal_token4] = ACTIONS(1686), + [aux_sym__val_number_token1] = ACTIONS(1686), + [aux_sym__val_number_token2] = ACTIONS(1686), + [aux_sym__val_number_token3] = ACTIONS(1686), + [aux_sym__val_number_token4] = ACTIONS(1686), + [aux_sym__val_number_token5] = ACTIONS(1686), + [aux_sym__val_number_token6] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1686), + [sym__str_single_quotes] = ACTIONS(1686), + [sym__str_back_ticks] = ACTIONS(1686), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1686), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1686), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1686), + [sym__entry_separator] = ACTIONS(1688), + [anon_sym_register] = ACTIONS(1686), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1686), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1893), + [sym_raw_string_begin] = ACTIONS(1688), }, [413] = { - [sym_cell_path] = STATE(659), - [sym_path] = STATE(558), [sym_comment] = STATE(413), - [aux_sym_cell_path_repeat1] = STATE(446), - [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_COMMA] = 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_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_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_DOLLAR_SQUOTE] = ACTIONS(1895), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1895), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1895), - [sym__entry_separator] = ACTIONS(1897), - [anon_sym_register] = ACTIONS(1895), - [anon_sym_DOT2] = ACTIONS(1833), + [anon_sym_export] = ACTIONS(1701), + [anon_sym_alias] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1701), + [anon_sym_let_DASHenv] = ACTIONS(1701), + [anon_sym_mut] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [aux_sym_cmd_identifier_token1] = ACTIONS(1701), + [aux_sym_cmd_identifier_token2] = ACTIONS(1701), + [aux_sym_cmd_identifier_token3] = ACTIONS(1701), + [aux_sym_cmd_identifier_token4] = ACTIONS(1701), + [aux_sym_cmd_identifier_token5] = ACTIONS(1701), + [aux_sym_cmd_identifier_token6] = ACTIONS(1701), + [aux_sym_cmd_identifier_token7] = ACTIONS(1701), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1701), + [aux_sym_cmd_identifier_token11] = ACTIONS(1701), + [aux_sym_cmd_identifier_token12] = ACTIONS(1701), + [aux_sym_cmd_identifier_token13] = ACTIONS(1701), + [aux_sym_cmd_identifier_token14] = ACTIONS(1701), + [aux_sym_cmd_identifier_token15] = ACTIONS(1701), + [aux_sym_cmd_identifier_token16] = ACTIONS(1701), + [aux_sym_cmd_identifier_token17] = ACTIONS(1701), + [aux_sym_cmd_identifier_token18] = ACTIONS(1701), + [aux_sym_cmd_identifier_token19] = ACTIONS(1701), + [aux_sym_cmd_identifier_token20] = ACTIONS(1701), + [aux_sym_cmd_identifier_token21] = ACTIONS(1701), + [aux_sym_cmd_identifier_token22] = ACTIONS(1701), + [aux_sym_cmd_identifier_token23] = ACTIONS(1701), + [aux_sym_cmd_identifier_token24] = ACTIONS(1701), + [aux_sym_cmd_identifier_token25] = ACTIONS(1701), + [aux_sym_cmd_identifier_token26] = ACTIONS(1701), + [aux_sym_cmd_identifier_token27] = ACTIONS(1701), + [aux_sym_cmd_identifier_token28] = ACTIONS(1701), + [aux_sym_cmd_identifier_token29] = ACTIONS(1701), + [aux_sym_cmd_identifier_token30] = ACTIONS(1701), + [aux_sym_cmd_identifier_token31] = ACTIONS(1701), + [aux_sym_cmd_identifier_token32] = ACTIONS(1701), + [aux_sym_cmd_identifier_token33] = ACTIONS(1701), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1701), + [aux_sym_cmd_identifier_token36] = ACTIONS(1701), + [aux_sym_cmd_identifier_token37] = ACTIONS(1701), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1701), + [aux_sym_cmd_identifier_token40] = ACTIONS(1701), + [anon_sym_def] = ACTIONS(1701), + [anon_sym_export_DASHenv] = ACTIONS(1701), + [anon_sym_extern] = ACTIONS(1701), + [anon_sym_module] = ACTIONS(1701), + [anon_sym_use] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_COMMA] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = ACTIONS(1701), + [anon_sym_loop] = ACTIONS(1701), + [anon_sym_make] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_do] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_else] = ACTIONS(1701), + [anon_sym_match] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1701), + [anon_sym_try] = ACTIONS(1701), + [anon_sym_catch] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_source] = ACTIONS(1701), + [anon_sym_source_DASHenv] = ACTIONS(1701), + [anon_sym_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1701), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(1819), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1701), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1701), + [aux_sym__val_number_decimal_token3] = ACTIONS(1701), + [aux_sym__val_number_decimal_token4] = ACTIONS(1701), + [aux_sym__val_number_token1] = ACTIONS(1701), + [aux_sym__val_number_token2] = ACTIONS(1701), + [aux_sym__val_number_token3] = ACTIONS(1701), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [sym__str_single_quotes] = ACTIONS(1701), + [sym__str_back_ticks] = ACTIONS(1701), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1701), + [sym__entry_separator] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1897), + [sym_raw_string_begin] = ACTIONS(1703), }, [414] = { [sym_comment] = STATE(414), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_alias] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_let_DASHenv] = ACTIONS(1719), - [anon_sym_mut] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [aux_sym_cmd_identifier_token1] = ACTIONS(1719), - [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(1719), - [aux_sym_cmd_identifier_token9] = ACTIONS(1719), - [aux_sym_cmd_identifier_token10] = ACTIONS(1719), - [aux_sym_cmd_identifier_token11] = ACTIONS(1719), - [aux_sym_cmd_identifier_token12] = ACTIONS(1719), - [aux_sym_cmd_identifier_token13] = ACTIONS(1719), - [aux_sym_cmd_identifier_token14] = ACTIONS(1719), - [aux_sym_cmd_identifier_token15] = ACTIONS(1719), - [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(1719), - [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(1719), - [aux_sym_cmd_identifier_token39] = ACTIONS(1719), - [aux_sym_cmd_identifier_token40] = ACTIONS(1719), - [anon_sym_def] = ACTIONS(1719), - [anon_sym_export_DASHenv] = ACTIONS(1719), - [anon_sym_extern] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_use] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_COMMA] = ACTIONS(1719), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_error] = ACTIONS(1719), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_in2] = ACTIONS(1719), - [anon_sym_loop] = ACTIONS(1719), - [anon_sym_make] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_match] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_catch] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_source] = ACTIONS(1719), - [anon_sym_source_DASHenv] = ACTIONS(1719), - [anon_sym_hide] = ACTIONS(1719), - [anon_sym_hide_DASHenv] = ACTIONS(1719), - [anon_sym_overlay] = ACTIONS(1719), - [anon_sym_as] = ACTIONS(1719), - [anon_sym_PLUS2] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1719), - [anon_sym_DOT_DOT2] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1721), - [aux_sym__immediate_decimal_token2] = ACTIONS(1899), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1719), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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_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_DOT_DOT_DOT_LBRACE] = ACTIONS(1719), - [sym__entry_separator] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1719), + [anon_sym_export] = ACTIONS(970), + [anon_sym_alias] = ACTIONS(970), + [anon_sym_let] = ACTIONS(970), + [anon_sym_let_DASHenv] = ACTIONS(970), + [anon_sym_mut] = ACTIONS(970), + [anon_sym_const] = ACTIONS(970), + [aux_sym_cmd_identifier_token1] = ACTIONS(970), + [aux_sym_cmd_identifier_token2] = ACTIONS(970), + [aux_sym_cmd_identifier_token3] = ACTIONS(970), + [aux_sym_cmd_identifier_token4] = ACTIONS(970), + [aux_sym_cmd_identifier_token5] = ACTIONS(970), + [aux_sym_cmd_identifier_token6] = ACTIONS(970), + [aux_sym_cmd_identifier_token7] = ACTIONS(970), + [aux_sym_cmd_identifier_token8] = ACTIONS(970), + [aux_sym_cmd_identifier_token9] = ACTIONS(970), + [aux_sym_cmd_identifier_token10] = ACTIONS(970), + [aux_sym_cmd_identifier_token11] = ACTIONS(970), + [aux_sym_cmd_identifier_token12] = ACTIONS(970), + [aux_sym_cmd_identifier_token13] = ACTIONS(970), + [aux_sym_cmd_identifier_token14] = ACTIONS(970), + [aux_sym_cmd_identifier_token15] = ACTIONS(970), + [aux_sym_cmd_identifier_token16] = ACTIONS(970), + [aux_sym_cmd_identifier_token17] = ACTIONS(970), + [aux_sym_cmd_identifier_token18] = ACTIONS(970), + [aux_sym_cmd_identifier_token19] = ACTIONS(970), + [aux_sym_cmd_identifier_token20] = ACTIONS(970), + [aux_sym_cmd_identifier_token21] = ACTIONS(970), + [aux_sym_cmd_identifier_token22] = ACTIONS(970), + [aux_sym_cmd_identifier_token23] = ACTIONS(970), + [aux_sym_cmd_identifier_token24] = ACTIONS(970), + [aux_sym_cmd_identifier_token25] = ACTIONS(970), + [aux_sym_cmd_identifier_token26] = ACTIONS(970), + [aux_sym_cmd_identifier_token27] = ACTIONS(970), + [aux_sym_cmd_identifier_token28] = ACTIONS(970), + [aux_sym_cmd_identifier_token29] = ACTIONS(970), + [aux_sym_cmd_identifier_token30] = ACTIONS(970), + [aux_sym_cmd_identifier_token31] = ACTIONS(970), + [aux_sym_cmd_identifier_token32] = ACTIONS(970), + [aux_sym_cmd_identifier_token33] = ACTIONS(970), + [aux_sym_cmd_identifier_token34] = ACTIONS(970), + [aux_sym_cmd_identifier_token35] = ACTIONS(970), + [aux_sym_cmd_identifier_token36] = ACTIONS(970), + [aux_sym_cmd_identifier_token37] = ACTIONS(970), + [aux_sym_cmd_identifier_token38] = ACTIONS(970), + [aux_sym_cmd_identifier_token39] = ACTIONS(970), + [aux_sym_cmd_identifier_token40] = ACTIONS(970), + [anon_sym_def] = ACTIONS(970), + [anon_sym_export_DASHenv] = ACTIONS(970), + [anon_sym_extern] = ACTIONS(970), + [anon_sym_module] = ACTIONS(970), + [anon_sym_use] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(970), + [anon_sym_COMMA] = ACTIONS(970), + [anon_sym_DOLLAR] = ACTIONS(970), + [anon_sym_error] = ACTIONS(970), + [anon_sym_DASH2] = ACTIONS(970), + [anon_sym_break] = ACTIONS(970), + [anon_sym_continue] = ACTIONS(970), + [anon_sym_for] = ACTIONS(970), + [anon_sym_in2] = ACTIONS(970), + [anon_sym_loop] = ACTIONS(970), + [anon_sym_make] = ACTIONS(970), + [anon_sym_while] = ACTIONS(970), + [anon_sym_do] = ACTIONS(970), + [anon_sym_if] = ACTIONS(970), + [anon_sym_else] = ACTIONS(970), + [anon_sym_match] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_try] = ACTIONS(970), + [anon_sym_catch] = ACTIONS(970), + [anon_sym_return] = ACTIONS(970), + [anon_sym_source] = ACTIONS(970), + [anon_sym_source_DASHenv] = ACTIONS(970), + [anon_sym_hide] = ACTIONS(970), + [anon_sym_hide_DASHenv] = ACTIONS(970), + [anon_sym_overlay] = ACTIONS(970), + [anon_sym_as] = ACTIONS(970), + [anon_sym_PLUS2] = ACTIONS(970), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(970), + [anon_sym_DOT_DOT2] = ACTIONS(970), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(972), + [anon_sym_DOT_DOT_LT2] = ACTIONS(972), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(970), + [aux_sym__val_number_decimal_token1] = ACTIONS(970), + [aux_sym__val_number_decimal_token2] = ACTIONS(970), + [aux_sym__val_number_decimal_token3] = ACTIONS(970), + [aux_sym__val_number_decimal_token4] = ACTIONS(970), + [aux_sym__val_number_token1] = ACTIONS(970), + [aux_sym__val_number_token2] = ACTIONS(970), + [aux_sym__val_number_token3] = ACTIONS(970), + [aux_sym__val_number_token4] = ACTIONS(970), + [aux_sym__val_number_token5] = ACTIONS(970), + [aux_sym__val_number_token6] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym__str_single_quotes] = ACTIONS(970), + [sym__str_back_ticks] = ACTIONS(970), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(970), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(970), + [sym__entry_separator] = ACTIONS(972), + [anon_sym_register] = ACTIONS(970), + [anon_sym_DOT2] = ACTIONS(970), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1721), + [sym_raw_string_begin] = ACTIONS(972), }, [415] = { - [sym_cell_path] = STATE(599), - [sym_path] = STATE(558), [sym_comment] = STATE(415), - [aux_sym_cell_path_repeat1] = STATE(446), - [anon_sym_export] = ACTIONS(1901), - [anon_sym_alias] = ACTIONS(1901), - [anon_sym_let] = ACTIONS(1901), - [anon_sym_let_DASHenv] = ACTIONS(1901), - [anon_sym_mut] = ACTIONS(1901), - [anon_sym_const] = ACTIONS(1901), - [aux_sym_cmd_identifier_token1] = ACTIONS(1901), - [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(1901), - [aux_sym_cmd_identifier_token9] = ACTIONS(1901), - [aux_sym_cmd_identifier_token10] = ACTIONS(1901), - [aux_sym_cmd_identifier_token11] = ACTIONS(1901), - [aux_sym_cmd_identifier_token12] = ACTIONS(1901), - [aux_sym_cmd_identifier_token13] = ACTIONS(1901), - [aux_sym_cmd_identifier_token14] = ACTIONS(1901), - [aux_sym_cmd_identifier_token15] = ACTIONS(1901), - [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(1901), - [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(1901), - [aux_sym_cmd_identifier_token39] = ACTIONS(1901), - [aux_sym_cmd_identifier_token40] = ACTIONS(1901), - [anon_sym_def] = ACTIONS(1901), - [anon_sym_export_DASHenv] = ACTIONS(1901), - [anon_sym_extern] = ACTIONS(1901), - [anon_sym_module] = ACTIONS(1901), - [anon_sym_use] = ACTIONS(1901), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_COMMA] = ACTIONS(1901), - [anon_sym_DOLLAR] = ACTIONS(1901), - [anon_sym_error] = ACTIONS(1901), - [anon_sym_DASH2] = ACTIONS(1901), - [anon_sym_break] = ACTIONS(1901), - [anon_sym_continue] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_in2] = ACTIONS(1901), - [anon_sym_loop] = ACTIONS(1901), - [anon_sym_make] = ACTIONS(1901), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_do] = ACTIONS(1901), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_else] = ACTIONS(1901), - [anon_sym_match] = ACTIONS(1901), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_try] = ACTIONS(1901), - [anon_sym_catch] = ACTIONS(1901), - [anon_sym_return] = ACTIONS(1901), - [anon_sym_source] = ACTIONS(1901), - [anon_sym_source_DASHenv] = ACTIONS(1901), - [anon_sym_hide] = ACTIONS(1901), - [anon_sym_hide_DASHenv] = ACTIONS(1901), - [anon_sym_overlay] = ACTIONS(1901), - [anon_sym_as] = ACTIONS(1901), - [anon_sym_PLUS2] = ACTIONS(1901), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1901), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1901), - [aux_sym__val_number_decimal_token1] = ACTIONS(1901), - [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_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_DOT_DOT_DOT_LBRACE] = ACTIONS(1901), - [sym__entry_separator] = ACTIONS(1903), - [anon_sym_register] = ACTIONS(1901), - [anon_sym_DOT2] = ACTIONS(1833), + [anon_sym_export] = ACTIONS(1760), + [anon_sym_alias] = ACTIONS(1760), + [anon_sym_let] = ACTIONS(1760), + [anon_sym_let_DASHenv] = ACTIONS(1760), + [anon_sym_mut] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [aux_sym_cmd_identifier_token1] = ACTIONS(1760), + [aux_sym_cmd_identifier_token2] = ACTIONS(1760), + [aux_sym_cmd_identifier_token3] = ACTIONS(1760), + [aux_sym_cmd_identifier_token4] = ACTIONS(1760), + [aux_sym_cmd_identifier_token5] = ACTIONS(1760), + [aux_sym_cmd_identifier_token6] = ACTIONS(1760), + [aux_sym_cmd_identifier_token7] = ACTIONS(1760), + [aux_sym_cmd_identifier_token8] = ACTIONS(1760), + [aux_sym_cmd_identifier_token9] = ACTIONS(1760), + [aux_sym_cmd_identifier_token10] = ACTIONS(1760), + [aux_sym_cmd_identifier_token11] = ACTIONS(1760), + [aux_sym_cmd_identifier_token12] = ACTIONS(1760), + [aux_sym_cmd_identifier_token13] = ACTIONS(1760), + [aux_sym_cmd_identifier_token14] = ACTIONS(1760), + [aux_sym_cmd_identifier_token15] = ACTIONS(1760), + [aux_sym_cmd_identifier_token16] = ACTIONS(1760), + [aux_sym_cmd_identifier_token17] = ACTIONS(1760), + [aux_sym_cmd_identifier_token18] = ACTIONS(1760), + [aux_sym_cmd_identifier_token19] = ACTIONS(1760), + [aux_sym_cmd_identifier_token20] = ACTIONS(1760), + [aux_sym_cmd_identifier_token21] = ACTIONS(1760), + [aux_sym_cmd_identifier_token22] = ACTIONS(1760), + [aux_sym_cmd_identifier_token23] = ACTIONS(1760), + [aux_sym_cmd_identifier_token24] = ACTIONS(1760), + [aux_sym_cmd_identifier_token25] = ACTIONS(1760), + [aux_sym_cmd_identifier_token26] = ACTIONS(1760), + [aux_sym_cmd_identifier_token27] = ACTIONS(1760), + [aux_sym_cmd_identifier_token28] = ACTIONS(1760), + [aux_sym_cmd_identifier_token29] = ACTIONS(1760), + [aux_sym_cmd_identifier_token30] = ACTIONS(1760), + [aux_sym_cmd_identifier_token31] = ACTIONS(1760), + [aux_sym_cmd_identifier_token32] = ACTIONS(1760), + [aux_sym_cmd_identifier_token33] = ACTIONS(1760), + [aux_sym_cmd_identifier_token34] = ACTIONS(1760), + [aux_sym_cmd_identifier_token35] = ACTIONS(1760), + [aux_sym_cmd_identifier_token36] = ACTIONS(1760), + [aux_sym_cmd_identifier_token37] = ACTIONS(1760), + [aux_sym_cmd_identifier_token38] = ACTIONS(1760), + [aux_sym_cmd_identifier_token39] = ACTIONS(1760), + [aux_sym_cmd_identifier_token40] = ACTIONS(1760), + [anon_sym_def] = ACTIONS(1760), + [anon_sym_export_DASHenv] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym_module] = ACTIONS(1760), + [anon_sym_use] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_COMMA] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_error] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_loop] = ACTIONS(1760), + [anon_sym_make] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_do] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_match] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_catch] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_source] = ACTIONS(1760), + [anon_sym_source_DASHenv] = ACTIONS(1760), + [anon_sym_hide] = ACTIONS(1760), + [anon_sym_hide_DASHenv] = ACTIONS(1760), + [anon_sym_overlay] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(1891), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1760), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1760), + [aux_sym__val_number_decimal_token4] = ACTIONS(1760), + [aux_sym__val_number_token1] = ACTIONS(1760), + [aux_sym__val_number_token2] = ACTIONS(1760), + [aux_sym__val_number_token3] = ACTIONS(1760), + [aux_sym__val_number_token4] = ACTIONS(1760), + [aux_sym__val_number_token5] = ACTIONS(1760), + [aux_sym__val_number_token6] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1760), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1760), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1760), + [sym__entry_separator] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1760), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1903), + [sym_raw_string_begin] = ACTIONS(1762), }, [416] = { - [sym_cell_path] = STATE(598), - [sym_path] = STATE(558), + [sym_cell_path] = STATE(639), + [sym_path] = STATE(533), [sym_comment] = STATE(416), - [aux_sym_cell_path_repeat1] = STATE(446), - [anon_sym_export] = ACTIONS(1905), - [anon_sym_alias] = ACTIONS(1905), - [anon_sym_let] = ACTIONS(1905), - [anon_sym_let_DASHenv] = ACTIONS(1905), - [anon_sym_mut] = ACTIONS(1905), - [anon_sym_const] = ACTIONS(1905), - [aux_sym_cmd_identifier_token1] = ACTIONS(1905), - [aux_sym_cmd_identifier_token2] = ACTIONS(1905), - [aux_sym_cmd_identifier_token3] = ACTIONS(1905), - [aux_sym_cmd_identifier_token4] = ACTIONS(1905), - [aux_sym_cmd_identifier_token5] = ACTIONS(1905), - [aux_sym_cmd_identifier_token6] = ACTIONS(1905), - [aux_sym_cmd_identifier_token7] = ACTIONS(1905), - [aux_sym_cmd_identifier_token8] = ACTIONS(1905), - [aux_sym_cmd_identifier_token9] = ACTIONS(1905), - [aux_sym_cmd_identifier_token10] = ACTIONS(1905), - [aux_sym_cmd_identifier_token11] = ACTIONS(1905), - [aux_sym_cmd_identifier_token12] = ACTIONS(1905), - [aux_sym_cmd_identifier_token13] = ACTIONS(1905), - [aux_sym_cmd_identifier_token14] = ACTIONS(1905), - [aux_sym_cmd_identifier_token15] = ACTIONS(1905), - [aux_sym_cmd_identifier_token16] = ACTIONS(1905), - [aux_sym_cmd_identifier_token17] = ACTIONS(1905), - [aux_sym_cmd_identifier_token18] = ACTIONS(1905), - [aux_sym_cmd_identifier_token19] = ACTIONS(1905), - [aux_sym_cmd_identifier_token20] = ACTIONS(1905), - [aux_sym_cmd_identifier_token21] = ACTIONS(1905), - [aux_sym_cmd_identifier_token22] = ACTIONS(1905), - [aux_sym_cmd_identifier_token23] = ACTIONS(1905), - [aux_sym_cmd_identifier_token24] = ACTIONS(1905), - [aux_sym_cmd_identifier_token25] = ACTIONS(1905), - [aux_sym_cmd_identifier_token26] = ACTIONS(1905), - [aux_sym_cmd_identifier_token27] = ACTIONS(1905), - [aux_sym_cmd_identifier_token28] = ACTIONS(1905), - [aux_sym_cmd_identifier_token29] = ACTIONS(1905), - [aux_sym_cmd_identifier_token30] = ACTIONS(1905), - [aux_sym_cmd_identifier_token31] = ACTIONS(1905), - [aux_sym_cmd_identifier_token32] = ACTIONS(1905), - [aux_sym_cmd_identifier_token33] = ACTIONS(1905), - [aux_sym_cmd_identifier_token34] = ACTIONS(1905), - [aux_sym_cmd_identifier_token35] = ACTIONS(1905), - [aux_sym_cmd_identifier_token36] = ACTIONS(1905), - [aux_sym_cmd_identifier_token37] = ACTIONS(1905), - [aux_sym_cmd_identifier_token38] = ACTIONS(1905), - [aux_sym_cmd_identifier_token39] = ACTIONS(1905), - [aux_sym_cmd_identifier_token40] = ACTIONS(1905), - [anon_sym_def] = ACTIONS(1905), - [anon_sym_export_DASHenv] = ACTIONS(1905), - [anon_sym_extern] = ACTIONS(1905), - [anon_sym_module] = ACTIONS(1905), - [anon_sym_use] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_COMMA] = ACTIONS(1905), - [anon_sym_DOLLAR] = ACTIONS(1905), - [anon_sym_error] = ACTIONS(1905), - [anon_sym_DASH2] = ACTIONS(1905), - [anon_sym_break] = ACTIONS(1905), - [anon_sym_continue] = ACTIONS(1905), - [anon_sym_for] = ACTIONS(1905), - [anon_sym_in2] = ACTIONS(1905), - [anon_sym_loop] = ACTIONS(1905), - [anon_sym_make] = ACTIONS(1905), - [anon_sym_while] = ACTIONS(1905), - [anon_sym_do] = ACTIONS(1905), - [anon_sym_if] = ACTIONS(1905), - [anon_sym_else] = ACTIONS(1905), - [anon_sym_match] = ACTIONS(1905), - [anon_sym_RBRACE] = ACTIONS(1905), - [anon_sym_try] = ACTIONS(1905), - [anon_sym_catch] = ACTIONS(1905), - [anon_sym_return] = ACTIONS(1905), - [anon_sym_source] = ACTIONS(1905), - [anon_sym_source_DASHenv] = ACTIONS(1905), - [anon_sym_hide] = ACTIONS(1905), - [anon_sym_hide_DASHenv] = ACTIONS(1905), - [anon_sym_overlay] = ACTIONS(1905), - [anon_sym_as] = ACTIONS(1905), - [anon_sym_PLUS2] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1905), - [aux_sym__val_number_decimal_token1] = ACTIONS(1905), - [aux_sym__val_number_decimal_token2] = ACTIONS(1905), - [aux_sym__val_number_decimal_token3] = ACTIONS(1905), - [aux_sym__val_number_decimal_token4] = ACTIONS(1905), - [aux_sym__val_number_token1] = ACTIONS(1905), - [aux_sym__val_number_token2] = ACTIONS(1905), - [aux_sym__val_number_token3] = ACTIONS(1905), - [aux_sym__val_number_token4] = ACTIONS(1905), - [aux_sym__val_number_token5] = ACTIONS(1905), - [aux_sym__val_number_token6] = ACTIONS(1905), - [anon_sym_DQUOTE] = ACTIONS(1905), - [sym__str_single_quotes] = ACTIONS(1905), - [sym__str_back_ticks] = ACTIONS(1905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1905), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1905), - [sym__entry_separator] = ACTIONS(1907), - [anon_sym_register] = ACTIONS(1905), - [anon_sym_DOT2] = ACTIONS(1833), + [aux_sym_cell_path_repeat1] = STATE(435), + [anon_sym_export] = ACTIONS(1893), + [anon_sym_alias] = ACTIONS(1893), + [anon_sym_let] = ACTIONS(1893), + [anon_sym_let_DASHenv] = ACTIONS(1893), + [anon_sym_mut] = ACTIONS(1893), + [anon_sym_const] = ACTIONS(1893), + [aux_sym_cmd_identifier_token1] = ACTIONS(1893), + [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(1893), + [aux_sym_cmd_identifier_token9] = ACTIONS(1893), + [aux_sym_cmd_identifier_token10] = ACTIONS(1893), + [aux_sym_cmd_identifier_token11] = ACTIONS(1893), + [aux_sym_cmd_identifier_token12] = ACTIONS(1893), + [aux_sym_cmd_identifier_token13] = ACTIONS(1893), + [aux_sym_cmd_identifier_token14] = ACTIONS(1893), + [aux_sym_cmd_identifier_token15] = ACTIONS(1893), + [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(1893), + [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(1893), + [aux_sym_cmd_identifier_token39] = ACTIONS(1893), + [aux_sym_cmd_identifier_token40] = ACTIONS(1893), + [anon_sym_def] = ACTIONS(1893), + [anon_sym_export_DASHenv] = ACTIONS(1893), + [anon_sym_extern] = ACTIONS(1893), + [anon_sym_module] = ACTIONS(1893), + [anon_sym_use] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1893), + [anon_sym_COMMA] = ACTIONS(1893), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_error] = ACTIONS(1893), + [anon_sym_DASH2] = ACTIONS(1893), + [anon_sym_break] = ACTIONS(1893), + [anon_sym_continue] = ACTIONS(1893), + [anon_sym_for] = ACTIONS(1893), + [anon_sym_in2] = ACTIONS(1893), + [anon_sym_loop] = ACTIONS(1893), + [anon_sym_make] = ACTIONS(1893), + [anon_sym_while] = ACTIONS(1893), + [anon_sym_do] = ACTIONS(1893), + [anon_sym_if] = ACTIONS(1893), + [anon_sym_else] = ACTIONS(1893), + [anon_sym_match] = ACTIONS(1893), + [anon_sym_RBRACE] = ACTIONS(1893), + [anon_sym_try] = ACTIONS(1893), + [anon_sym_catch] = ACTIONS(1893), + [anon_sym_return] = ACTIONS(1893), + [anon_sym_source] = ACTIONS(1893), + [anon_sym_source_DASHenv] = ACTIONS(1893), + [anon_sym_hide] = ACTIONS(1893), + [anon_sym_hide_DASHenv] = ACTIONS(1893), + [anon_sym_overlay] = ACTIONS(1893), + [anon_sym_as] = ACTIONS(1893), + [anon_sym_PLUS2] = ACTIONS(1893), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1893), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1893), + [aux_sym__val_number_decimal_token1] = ACTIONS(1893), + [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_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_DOT_DOT_DOT_LBRACE] = ACTIONS(1893), + [sym__entry_separator] = ACTIONS(1895), + [anon_sym_register] = ACTIONS(1893), + [anon_sym_DOT2] = ACTIONS(1827), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1907), + [sym_raw_string_begin] = ACTIONS(1895), }, [417] = { + [sym_cell_path] = STATE(599), + [sym_path] = STATE(533), [sym_comment] = STATE(417), - [anon_sym_export] = ACTIONS(1666), - [anon_sym_alias] = ACTIONS(1666), - [anon_sym_let] = ACTIONS(1666), - [anon_sym_let_DASHenv] = ACTIONS(1666), - [anon_sym_mut] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [aux_sym_cmd_identifier_token1] = ACTIONS(1666), - [aux_sym_cmd_identifier_token2] = ACTIONS(1668), - [aux_sym_cmd_identifier_token3] = ACTIONS(1668), - [aux_sym_cmd_identifier_token4] = ACTIONS(1668), - [aux_sym_cmd_identifier_token5] = ACTIONS(1668), - [aux_sym_cmd_identifier_token6] = ACTIONS(1668), - [aux_sym_cmd_identifier_token7] = ACTIONS(1668), - [aux_sym_cmd_identifier_token8] = ACTIONS(1666), - [aux_sym_cmd_identifier_token9] = ACTIONS(1666), - [aux_sym_cmd_identifier_token10] = ACTIONS(1668), - [aux_sym_cmd_identifier_token11] = ACTIONS(1668), - [aux_sym_cmd_identifier_token12] = ACTIONS(1666), - [aux_sym_cmd_identifier_token13] = ACTIONS(1666), - [aux_sym_cmd_identifier_token14] = ACTIONS(1666), - [aux_sym_cmd_identifier_token15] = ACTIONS(1666), - [aux_sym_cmd_identifier_token16] = ACTIONS(1668), - [aux_sym_cmd_identifier_token17] = ACTIONS(1668), - [aux_sym_cmd_identifier_token18] = ACTIONS(1668), - [aux_sym_cmd_identifier_token19] = ACTIONS(1668), - [aux_sym_cmd_identifier_token20] = ACTIONS(1668), - [aux_sym_cmd_identifier_token21] = ACTIONS(1668), - [aux_sym_cmd_identifier_token22] = ACTIONS(1668), - [aux_sym_cmd_identifier_token23] = ACTIONS(1668), - [aux_sym_cmd_identifier_token24] = ACTIONS(1668), - [aux_sym_cmd_identifier_token25] = ACTIONS(1668), - [aux_sym_cmd_identifier_token26] = ACTIONS(1668), - [aux_sym_cmd_identifier_token27] = ACTIONS(1668), - [aux_sym_cmd_identifier_token28] = ACTIONS(1668), - [aux_sym_cmd_identifier_token29] = ACTIONS(1668), - [aux_sym_cmd_identifier_token30] = ACTIONS(1668), - [aux_sym_cmd_identifier_token31] = ACTIONS(1668), - [aux_sym_cmd_identifier_token32] = ACTIONS(1668), - [aux_sym_cmd_identifier_token33] = ACTIONS(1668), - [aux_sym_cmd_identifier_token34] = ACTIONS(1666), - [aux_sym_cmd_identifier_token35] = ACTIONS(1668), - [aux_sym_cmd_identifier_token36] = ACTIONS(1668), - [aux_sym_cmd_identifier_token37] = ACTIONS(1668), - [aux_sym_cmd_identifier_token38] = ACTIONS(1666), - [aux_sym_cmd_identifier_token39] = ACTIONS(1668), - [aux_sym_cmd_identifier_token40] = ACTIONS(1668), - [anon_sym_def] = ACTIONS(1666), - [anon_sym_export_DASHenv] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_module] = ACTIONS(1666), - [anon_sym_use] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_error] = ACTIONS(1666), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_in2] = ACTIONS(1666), - [anon_sym_loop] = ACTIONS(1666), - [anon_sym_make] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_do] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_match] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_try] = ACTIONS(1666), - [anon_sym_catch] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_source] = ACTIONS(1666), - [anon_sym_source_DASHenv] = ACTIONS(1666), - [anon_sym_hide] = ACTIONS(1666), - [anon_sym_hide_DASHenv] = ACTIONS(1666), - [anon_sym_overlay] = ACTIONS(1666), - [anon_sym_as] = ACTIONS(1666), - [anon_sym_PLUS2] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1668), - [anon_sym_DOT_DOT2] = ACTIONS(1666), - [anon_sym_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [aux_sym__immediate_decimal_token2] = ACTIONS(1911), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1666), - [aux_sym__val_number_token5] = ACTIONS(1666), - [aux_sym__val_number_token6] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), + [aux_sym_cell_path_repeat1] = STATE(435), + [anon_sym_export] = ACTIONS(1897), + [anon_sym_alias] = ACTIONS(1897), + [anon_sym_let] = ACTIONS(1897), + [anon_sym_let_DASHenv] = ACTIONS(1897), + [anon_sym_mut] = ACTIONS(1897), + [anon_sym_const] = ACTIONS(1897), + [aux_sym_cmd_identifier_token1] = ACTIONS(1897), + [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(1897), + [aux_sym_cmd_identifier_token9] = ACTIONS(1897), + [aux_sym_cmd_identifier_token10] = ACTIONS(1897), + [aux_sym_cmd_identifier_token11] = ACTIONS(1897), + [aux_sym_cmd_identifier_token12] = ACTIONS(1897), + [aux_sym_cmd_identifier_token13] = ACTIONS(1897), + [aux_sym_cmd_identifier_token14] = ACTIONS(1897), + [aux_sym_cmd_identifier_token15] = ACTIONS(1897), + [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(1897), + [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(1897), + [aux_sym_cmd_identifier_token39] = ACTIONS(1897), + [aux_sym_cmd_identifier_token40] = ACTIONS(1897), + [anon_sym_def] = ACTIONS(1897), + [anon_sym_export_DASHenv] = ACTIONS(1897), + [anon_sym_extern] = ACTIONS(1897), + [anon_sym_module] = ACTIONS(1897), + [anon_sym_use] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_COMMA] = ACTIONS(1897), + [anon_sym_DOLLAR] = ACTIONS(1897), + [anon_sym_error] = ACTIONS(1897), + [anon_sym_DASH2] = ACTIONS(1897), + [anon_sym_break] = ACTIONS(1897), + [anon_sym_continue] = ACTIONS(1897), + [anon_sym_for] = ACTIONS(1897), + [anon_sym_in2] = ACTIONS(1897), + [anon_sym_loop] = ACTIONS(1897), + [anon_sym_make] = ACTIONS(1897), + [anon_sym_while] = ACTIONS(1897), + [anon_sym_do] = ACTIONS(1897), + [anon_sym_if] = ACTIONS(1897), + [anon_sym_else] = ACTIONS(1897), + [anon_sym_match] = ACTIONS(1897), + [anon_sym_RBRACE] = ACTIONS(1897), + [anon_sym_try] = ACTIONS(1897), + [anon_sym_catch] = ACTIONS(1897), + [anon_sym_return] = ACTIONS(1897), + [anon_sym_source] = ACTIONS(1897), + [anon_sym_source_DASHenv] = ACTIONS(1897), + [anon_sym_hide] = ACTIONS(1897), + [anon_sym_hide_DASHenv] = ACTIONS(1897), + [anon_sym_overlay] = ACTIONS(1897), + [anon_sym_as] = ACTIONS(1897), + [anon_sym_PLUS2] = ACTIONS(1897), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1897), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1897), + [aux_sym__val_number_decimal_token1] = ACTIONS(1897), + [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_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_DOT_DOT_DOT_LBRACE] = ACTIONS(1897), + [sym__entry_separator] = ACTIONS(1899), + [anon_sym_register] = ACTIONS(1897), + [anon_sym_DOT2] = ACTIONS(1827), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1899), }, [418] = { - [sym_cell_path] = STATE(660), - [sym_path] = STATE(558), [sym_comment] = STATE(418), - [aux_sym_cell_path_repeat1] = STATE(446), - [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(1913), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1913), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1913), - [sym__entry_separator] = ACTIONS(1915), - [anon_sym_register] = ACTIONS(1913), - [anon_sym_DOT2] = ACTIONS(1833), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1915), + [anon_sym_export] = ACTIONS(1701), + [anon_sym_alias] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1701), + [anon_sym_let_DASHenv] = ACTIONS(1701), + [anon_sym_mut] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [aux_sym_cmd_identifier_token1] = ACTIONS(1701), + [aux_sym_cmd_identifier_token2] = ACTIONS(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [aux_sym_cmd_identifier_token12] = ACTIONS(1701), + [aux_sym_cmd_identifier_token13] = ACTIONS(1701), + [aux_sym_cmd_identifier_token14] = ACTIONS(1701), + [aux_sym_cmd_identifier_token15] = ACTIONS(1701), + [aux_sym_cmd_identifier_token16] = ACTIONS(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [aux_sym_cmd_identifier_token37] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [anon_sym_def] = ACTIONS(1701), + [anon_sym_export_DASHenv] = ACTIONS(1701), + [anon_sym_extern] = ACTIONS(1701), + [anon_sym_module] = ACTIONS(1701), + [anon_sym_use] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_COMMA] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = ACTIONS(1701), + [anon_sym_loop] = ACTIONS(1701), + [anon_sym_make] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_do] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_else] = ACTIONS(1701), + [anon_sym_match] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_try] = ACTIONS(1701), + [anon_sym_catch] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_source] = ACTIONS(1701), + [anon_sym_source_DASHenv] = ACTIONS(1701), + [anon_sym_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(1901), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), }, [419] = { [sym_comment] = STATE(419), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), - [aux_sym_cmd_identifier_token2] = ACTIONS(1650), - [aux_sym_cmd_identifier_token3] = ACTIONS(1650), - [aux_sym_cmd_identifier_token4] = ACTIONS(1650), - [aux_sym_cmd_identifier_token5] = ACTIONS(1650), - [aux_sym_cmd_identifier_token6] = ACTIONS(1650), - [aux_sym_cmd_identifier_token7] = ACTIONS(1650), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), - [aux_sym_cmd_identifier_token10] = ACTIONS(1650), - [aux_sym_cmd_identifier_token11] = ACTIONS(1650), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), - [aux_sym_cmd_identifier_token16] = ACTIONS(1650), - [aux_sym_cmd_identifier_token17] = ACTIONS(1650), - [aux_sym_cmd_identifier_token18] = ACTIONS(1650), - [aux_sym_cmd_identifier_token19] = ACTIONS(1650), - [aux_sym_cmd_identifier_token20] = ACTIONS(1650), - [aux_sym_cmd_identifier_token21] = ACTIONS(1650), - [aux_sym_cmd_identifier_token22] = ACTIONS(1650), - [aux_sym_cmd_identifier_token23] = ACTIONS(1650), - [aux_sym_cmd_identifier_token24] = ACTIONS(1650), - [aux_sym_cmd_identifier_token25] = ACTIONS(1650), - [aux_sym_cmd_identifier_token26] = ACTIONS(1650), - [aux_sym_cmd_identifier_token27] = ACTIONS(1650), - [aux_sym_cmd_identifier_token28] = ACTIONS(1650), - [aux_sym_cmd_identifier_token29] = ACTIONS(1650), - [aux_sym_cmd_identifier_token30] = ACTIONS(1650), - [aux_sym_cmd_identifier_token31] = ACTIONS(1650), - [aux_sym_cmd_identifier_token32] = ACTIONS(1650), - [aux_sym_cmd_identifier_token33] = ACTIONS(1650), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), - [aux_sym_cmd_identifier_token35] = ACTIONS(1650), - [aux_sym_cmd_identifier_token36] = ACTIONS(1650), - [aux_sym_cmd_identifier_token37] = ACTIONS(1650), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), - [aux_sym_cmd_identifier_token39] = ACTIONS(1650), - [aux_sym_cmd_identifier_token40] = ACTIONS(1650), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_DASH2] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in2] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_PLUS2] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1650), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [aux_sym__val_number_token4] = ACTIONS(1648), - [aux_sym__val_number_token5] = ACTIONS(1648), - [aux_sym__val_number_token6] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1650), - [anon_sym_register] = ACTIONS(1648), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1650), + [anon_sym_export] = ACTIONS(964), + [anon_sym_alias] = ACTIONS(964), + [anon_sym_let] = ACTIONS(964), + [anon_sym_let_DASHenv] = ACTIONS(964), + [anon_sym_mut] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [aux_sym_cmd_identifier_token1] = ACTIONS(964), + [aux_sym_cmd_identifier_token2] = ACTIONS(966), + [aux_sym_cmd_identifier_token3] = ACTIONS(966), + [aux_sym_cmd_identifier_token4] = ACTIONS(966), + [aux_sym_cmd_identifier_token5] = ACTIONS(966), + [aux_sym_cmd_identifier_token6] = ACTIONS(966), + [aux_sym_cmd_identifier_token7] = ACTIONS(966), + [aux_sym_cmd_identifier_token8] = ACTIONS(964), + [aux_sym_cmd_identifier_token9] = ACTIONS(964), + [aux_sym_cmd_identifier_token10] = ACTIONS(966), + [aux_sym_cmd_identifier_token11] = ACTIONS(966), + [aux_sym_cmd_identifier_token12] = ACTIONS(964), + [aux_sym_cmd_identifier_token13] = ACTIONS(964), + [aux_sym_cmd_identifier_token14] = ACTIONS(964), + [aux_sym_cmd_identifier_token15] = ACTIONS(964), + [aux_sym_cmd_identifier_token16] = ACTIONS(966), + [aux_sym_cmd_identifier_token17] = ACTIONS(966), + [aux_sym_cmd_identifier_token18] = ACTIONS(966), + [aux_sym_cmd_identifier_token19] = ACTIONS(966), + [aux_sym_cmd_identifier_token20] = ACTIONS(966), + [aux_sym_cmd_identifier_token21] = ACTIONS(966), + [aux_sym_cmd_identifier_token22] = ACTIONS(966), + [aux_sym_cmd_identifier_token23] = ACTIONS(966), + [aux_sym_cmd_identifier_token24] = ACTIONS(966), + [aux_sym_cmd_identifier_token25] = ACTIONS(966), + [aux_sym_cmd_identifier_token26] = ACTIONS(966), + [aux_sym_cmd_identifier_token27] = ACTIONS(966), + [aux_sym_cmd_identifier_token28] = ACTIONS(966), + [aux_sym_cmd_identifier_token29] = ACTIONS(966), + [aux_sym_cmd_identifier_token30] = ACTIONS(966), + [aux_sym_cmd_identifier_token31] = ACTIONS(966), + [aux_sym_cmd_identifier_token32] = ACTIONS(966), + [aux_sym_cmd_identifier_token33] = ACTIONS(966), + [aux_sym_cmd_identifier_token34] = ACTIONS(964), + [aux_sym_cmd_identifier_token35] = ACTIONS(966), + [aux_sym_cmd_identifier_token36] = ACTIONS(966), + [aux_sym_cmd_identifier_token37] = ACTIONS(966), + [aux_sym_cmd_identifier_token38] = ACTIONS(964), + [aux_sym_cmd_identifier_token39] = ACTIONS(966), + [aux_sym_cmd_identifier_token40] = ACTIONS(966), + [anon_sym_def] = ACTIONS(964), + [anon_sym_export_DASHenv] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym_module] = ACTIONS(964), + [anon_sym_use] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_COMMA] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_error] = ACTIONS(964), + [anon_sym_DASH2] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_in2] = ACTIONS(964), + [anon_sym_loop] = ACTIONS(964), + [anon_sym_make] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_match] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_try] = ACTIONS(964), + [anon_sym_catch] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_source] = ACTIONS(964), + [anon_sym_source_DASHenv] = ACTIONS(964), + [anon_sym_hide] = ACTIONS(964), + [anon_sym_hide_DASHenv] = ACTIONS(964), + [anon_sym_overlay] = ACTIONS(964), + [anon_sym_as] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(1905), + [anon_sym_PLUS2] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(966), + [anon_sym_DOT_DOT2] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(966), + [anon_sym_DOT_DOT_LT2] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(964), + [aux_sym__val_number_decimal_token2] = ACTIONS(966), + [aux_sym__val_number_decimal_token3] = ACTIONS(966), + [aux_sym__val_number_decimal_token4] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(964), + [aux_sym__val_number_token5] = ACTIONS(964), + [aux_sym__val_number_token6] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(966), + [anon_sym_register] = ACTIONS(964), + [anon_sym_DOT2] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(966), }, [420] = { + [sym_cell_path] = STATE(575), + [sym_path] = STATE(533), [sym_comment] = STATE(420), - [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(978), - [aux_sym_cmd_identifier_token3] = ACTIONS(978), - [aux_sym_cmd_identifier_token4] = ACTIONS(978), - [aux_sym_cmd_identifier_token5] = ACTIONS(978), - [aux_sym_cmd_identifier_token6] = ACTIONS(978), - [aux_sym_cmd_identifier_token7] = ACTIONS(978), - [aux_sym_cmd_identifier_token8] = ACTIONS(978), - [aux_sym_cmd_identifier_token9] = ACTIONS(978), - [aux_sym_cmd_identifier_token10] = ACTIONS(978), - [aux_sym_cmd_identifier_token11] = ACTIONS(978), - [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(978), - [aux_sym_cmd_identifier_token17] = ACTIONS(978), - [aux_sym_cmd_identifier_token18] = ACTIONS(978), - [aux_sym_cmd_identifier_token19] = ACTIONS(978), - [aux_sym_cmd_identifier_token20] = ACTIONS(978), - [aux_sym_cmd_identifier_token21] = ACTIONS(978), - [aux_sym_cmd_identifier_token22] = ACTIONS(978), - [aux_sym_cmd_identifier_token23] = ACTIONS(978), - [aux_sym_cmd_identifier_token24] = ACTIONS(978), - [aux_sym_cmd_identifier_token25] = ACTIONS(978), - [aux_sym_cmd_identifier_token26] = ACTIONS(978), - [aux_sym_cmd_identifier_token27] = ACTIONS(978), - [aux_sym_cmd_identifier_token28] = ACTIONS(978), - [aux_sym_cmd_identifier_token29] = ACTIONS(978), - [aux_sym_cmd_identifier_token30] = ACTIONS(978), - [aux_sym_cmd_identifier_token31] = ACTIONS(978), - [aux_sym_cmd_identifier_token32] = ACTIONS(978), - [aux_sym_cmd_identifier_token33] = ACTIONS(978), - [aux_sym_cmd_identifier_token34] = ACTIONS(978), - [aux_sym_cmd_identifier_token35] = ACTIONS(978), - [aux_sym_cmd_identifier_token36] = ACTIONS(978), - [aux_sym_cmd_identifier_token37] = ACTIONS(978), - [aux_sym_cmd_identifier_token38] = ACTIONS(978), - [aux_sym_cmd_identifier_token39] = ACTIONS(978), - [aux_sym_cmd_identifier_token40] = ACTIONS(978), - [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(978), - [anon_sym_COMMA] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(978), - [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(978), - [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_hide] = ACTIONS(978), - [anon_sym_hide_DASHenv] = ACTIONS(978), - [anon_sym_overlay] = ACTIONS(978), - [anon_sym_as] = ACTIONS(978), - [anon_sym_PLUS2] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), - [anon_sym_DOT_DOT2] = ACTIONS(978), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), - [anon_sym_DOT_DOT_LT2] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), - [aux_sym__val_number_decimal_token1] = ACTIONS(978), - [aux_sym__val_number_decimal_token2] = ACTIONS(978), - [aux_sym__val_number_decimal_token3] = ACTIONS(978), - [aux_sym__val_number_decimal_token4] = ACTIONS(978), - [aux_sym__val_number_token1] = ACTIONS(978), - [aux_sym__val_number_token2] = ACTIONS(978), - [aux_sym__val_number_token3] = ACTIONS(978), - [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(978), - [sym__str_single_quotes] = ACTIONS(978), - [sym__str_back_ticks] = ACTIONS(978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(978), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(978), - [sym__entry_separator] = ACTIONS(980), - [anon_sym_register] = ACTIONS(978), - [anon_sym_DOT2] = ACTIONS(978), + [aux_sym_cell_path_repeat1] = STATE(435), + [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(1907), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1907), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1907), + [sym__entry_separator] = ACTIONS(1909), + [anon_sym_register] = ACTIONS(1907), + [anon_sym_DOT2] = ACTIONS(1827), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(980), + [sym_raw_string_begin] = ACTIONS(1909), }, [421] = { [sym_comment] = STATE(421), + [anon_sym_export] = ACTIONS(1701), + [anon_sym_alias] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1701), + [anon_sym_let_DASHenv] = ACTIONS(1701), + [anon_sym_mut] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [aux_sym_cmd_identifier_token1] = ACTIONS(1701), + [aux_sym_cmd_identifier_token2] = ACTIONS(1701), + [aux_sym_cmd_identifier_token3] = ACTIONS(1701), + [aux_sym_cmd_identifier_token4] = ACTIONS(1701), + [aux_sym_cmd_identifier_token5] = ACTIONS(1701), + [aux_sym_cmd_identifier_token6] = ACTIONS(1701), + [aux_sym_cmd_identifier_token7] = ACTIONS(1701), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1701), + [aux_sym_cmd_identifier_token11] = ACTIONS(1701), + [aux_sym_cmd_identifier_token12] = ACTIONS(1701), + [aux_sym_cmd_identifier_token13] = ACTIONS(1701), + [aux_sym_cmd_identifier_token14] = ACTIONS(1701), + [aux_sym_cmd_identifier_token15] = ACTIONS(1701), + [aux_sym_cmd_identifier_token16] = ACTIONS(1701), + [aux_sym_cmd_identifier_token17] = ACTIONS(1701), + [aux_sym_cmd_identifier_token18] = ACTIONS(1701), + [aux_sym_cmd_identifier_token19] = ACTIONS(1701), + [aux_sym_cmd_identifier_token20] = ACTIONS(1701), + [aux_sym_cmd_identifier_token21] = ACTIONS(1701), + [aux_sym_cmd_identifier_token22] = ACTIONS(1701), + [aux_sym_cmd_identifier_token23] = ACTIONS(1701), + [aux_sym_cmd_identifier_token24] = ACTIONS(1701), + [aux_sym_cmd_identifier_token25] = ACTIONS(1701), + [aux_sym_cmd_identifier_token26] = ACTIONS(1701), + [aux_sym_cmd_identifier_token27] = ACTIONS(1701), + [aux_sym_cmd_identifier_token28] = ACTIONS(1701), + [aux_sym_cmd_identifier_token29] = ACTIONS(1701), + [aux_sym_cmd_identifier_token30] = ACTIONS(1701), + [aux_sym_cmd_identifier_token31] = ACTIONS(1701), + [aux_sym_cmd_identifier_token32] = ACTIONS(1701), + [aux_sym_cmd_identifier_token33] = ACTIONS(1701), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1701), + [aux_sym_cmd_identifier_token36] = ACTIONS(1701), + [aux_sym_cmd_identifier_token37] = ACTIONS(1701), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1701), + [aux_sym_cmd_identifier_token40] = ACTIONS(1701), + [anon_sym_def] = ACTIONS(1701), + [anon_sym_export_DASHenv] = ACTIONS(1701), + [anon_sym_extern] = ACTIONS(1701), + [anon_sym_module] = ACTIONS(1701), + [anon_sym_use] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_COMMA] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = ACTIONS(1701), + [anon_sym_loop] = ACTIONS(1701), + [anon_sym_make] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_do] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_else] = ACTIONS(1701), + [anon_sym_match] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1701), + [anon_sym_try] = ACTIONS(1701), + [anon_sym_catch] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_source] = ACTIONS(1701), + [anon_sym_source_DASHenv] = ACTIONS(1701), + [anon_sym_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(1911), + [aux_sym__immediate_decimal_token2] = ACTIONS(1913), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1701), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1701), + [aux_sym__val_number_decimal_token3] = ACTIONS(1701), + [aux_sym__val_number_decimal_token4] = ACTIONS(1701), + [aux_sym__val_number_token1] = ACTIONS(1701), + [aux_sym__val_number_token2] = ACTIONS(1701), + [aux_sym__val_number_token3] = ACTIONS(1701), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [sym__str_single_quotes] = ACTIONS(1701), + [sym__str_back_ticks] = ACTIONS(1701), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1701), + [sym__entry_separator] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [422] = { + [sym_comment] = STATE(422), + [anon_sym_export] = ACTIONS(950), + [anon_sym_alias] = ACTIONS(950), + [anon_sym_let] = ACTIONS(950), + [anon_sym_let_DASHenv] = ACTIONS(950), + [anon_sym_mut] = ACTIONS(950), + [anon_sym_const] = ACTIONS(950), + [aux_sym_cmd_identifier_token1] = ACTIONS(950), + [aux_sym_cmd_identifier_token2] = ACTIONS(952), + [aux_sym_cmd_identifier_token3] = ACTIONS(952), + [aux_sym_cmd_identifier_token4] = ACTIONS(952), + [aux_sym_cmd_identifier_token5] = ACTIONS(952), + [aux_sym_cmd_identifier_token6] = ACTIONS(952), + [aux_sym_cmd_identifier_token7] = ACTIONS(952), + [aux_sym_cmd_identifier_token8] = ACTIONS(950), + [aux_sym_cmd_identifier_token9] = ACTIONS(950), + [aux_sym_cmd_identifier_token10] = ACTIONS(952), + [aux_sym_cmd_identifier_token11] = ACTIONS(952), + [aux_sym_cmd_identifier_token12] = ACTIONS(950), + [aux_sym_cmd_identifier_token13] = ACTIONS(950), + [aux_sym_cmd_identifier_token14] = ACTIONS(950), + [aux_sym_cmd_identifier_token15] = ACTIONS(950), + [aux_sym_cmd_identifier_token16] = ACTIONS(952), + [aux_sym_cmd_identifier_token17] = ACTIONS(952), + [aux_sym_cmd_identifier_token18] = ACTIONS(952), + [aux_sym_cmd_identifier_token19] = ACTIONS(952), + [aux_sym_cmd_identifier_token20] = ACTIONS(952), + [aux_sym_cmd_identifier_token21] = ACTIONS(952), + [aux_sym_cmd_identifier_token22] = ACTIONS(952), + [aux_sym_cmd_identifier_token23] = ACTIONS(952), + [aux_sym_cmd_identifier_token24] = ACTIONS(952), + [aux_sym_cmd_identifier_token25] = ACTIONS(952), + [aux_sym_cmd_identifier_token26] = ACTIONS(952), + [aux_sym_cmd_identifier_token27] = ACTIONS(952), + [aux_sym_cmd_identifier_token28] = ACTIONS(952), + [aux_sym_cmd_identifier_token29] = ACTIONS(952), + [aux_sym_cmd_identifier_token30] = ACTIONS(952), + [aux_sym_cmd_identifier_token31] = ACTIONS(952), + [aux_sym_cmd_identifier_token32] = ACTIONS(952), + [aux_sym_cmd_identifier_token33] = ACTIONS(952), + [aux_sym_cmd_identifier_token34] = ACTIONS(950), + [aux_sym_cmd_identifier_token35] = ACTIONS(952), + [aux_sym_cmd_identifier_token36] = ACTIONS(952), + [aux_sym_cmd_identifier_token37] = ACTIONS(952), + [aux_sym_cmd_identifier_token38] = ACTIONS(950), + [aux_sym_cmd_identifier_token39] = ACTIONS(952), + [aux_sym_cmd_identifier_token40] = ACTIONS(952), + [anon_sym_def] = ACTIONS(950), + [anon_sym_export_DASHenv] = ACTIONS(950), + [anon_sym_extern] = ACTIONS(950), + [anon_sym_module] = ACTIONS(950), + [anon_sym_use] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_COMMA] = ACTIONS(952), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_error] = ACTIONS(950), + [anon_sym_DASH2] = ACTIONS(950), + [anon_sym_break] = ACTIONS(950), + [anon_sym_continue] = ACTIONS(950), + [anon_sym_for] = ACTIONS(950), + [anon_sym_in2] = ACTIONS(950), + [anon_sym_loop] = ACTIONS(950), + [anon_sym_make] = ACTIONS(950), + [anon_sym_while] = ACTIONS(950), + [anon_sym_do] = ACTIONS(950), + [anon_sym_if] = ACTIONS(950), + [anon_sym_else] = ACTIONS(950), + [anon_sym_match] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_try] = ACTIONS(950), + [anon_sym_catch] = ACTIONS(950), + [anon_sym_return] = ACTIONS(950), + [anon_sym_source] = ACTIONS(950), + [anon_sym_source_DASHenv] = ACTIONS(950), + [anon_sym_hide] = ACTIONS(950), + [anon_sym_hide_DASHenv] = ACTIONS(950), + [anon_sym_overlay] = ACTIONS(950), + [anon_sym_as] = ACTIONS(950), + [anon_sym_QMARK2] = ACTIONS(952), + [anon_sym_PLUS2] = ACTIONS(950), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(952), + [anon_sym_DOT_DOT2] = ACTIONS(950), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(952), + [anon_sym_DOT_DOT_LT2] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(952), + [aux_sym__val_number_decimal_token1] = ACTIONS(950), + [aux_sym__val_number_decimal_token2] = ACTIONS(952), + [aux_sym__val_number_decimal_token3] = ACTIONS(952), + [aux_sym__val_number_decimal_token4] = ACTIONS(952), + [aux_sym__val_number_token1] = ACTIONS(952), + [aux_sym__val_number_token2] = ACTIONS(952), + [aux_sym__val_number_token3] = ACTIONS(952), + [aux_sym__val_number_token4] = ACTIONS(950), + [aux_sym__val_number_token5] = ACTIONS(950), + [aux_sym__val_number_token6] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(952), + [sym__str_single_quotes] = ACTIONS(952), + [sym__str_back_ticks] = ACTIONS(952), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(952), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(952), + [anon_sym_register] = ACTIONS(950), + [anon_sym_DOT2] = ACTIONS(950), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(952), + }, + [423] = { + [sym_comment] = STATE(423), [anon_sym_export] = ACTIONS(942), [anon_sym_alias] = ACTIONS(942), [anon_sym_let] = ACTIONS(942), @@ -121887,7 +120987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(942), [anon_sym_overlay] = ACTIONS(942), [anon_sym_as] = ACTIONS(942), - [anon_sym_QMARK2] = ACTIONS(1917), + [anon_sym_QMARK2] = ACTIONS(944), [anon_sym_PLUS2] = ACTIONS(942), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(944), [anon_sym_DOT_DOT2] = ACTIONS(942), @@ -121915,118 +121015,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(944), }, - [422] = { - [sym_comment] = STATE(422), - [anon_sym_export] = ACTIONS(1666), - [anon_sym_alias] = ACTIONS(1666), - [anon_sym_let] = ACTIONS(1666), - [anon_sym_let_DASHenv] = ACTIONS(1666), - [anon_sym_mut] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [aux_sym_cmd_identifier_token1] = ACTIONS(1666), - [aux_sym_cmd_identifier_token2] = ACTIONS(1666), - [aux_sym_cmd_identifier_token3] = ACTIONS(1666), - [aux_sym_cmd_identifier_token4] = ACTIONS(1666), - [aux_sym_cmd_identifier_token5] = ACTIONS(1666), - [aux_sym_cmd_identifier_token6] = ACTIONS(1666), - [aux_sym_cmd_identifier_token7] = ACTIONS(1666), - [aux_sym_cmd_identifier_token8] = ACTIONS(1666), - [aux_sym_cmd_identifier_token9] = ACTIONS(1666), - [aux_sym_cmd_identifier_token10] = ACTIONS(1666), - [aux_sym_cmd_identifier_token11] = ACTIONS(1666), - [aux_sym_cmd_identifier_token12] = ACTIONS(1666), - [aux_sym_cmd_identifier_token13] = ACTIONS(1666), - [aux_sym_cmd_identifier_token14] = ACTIONS(1666), - [aux_sym_cmd_identifier_token15] = ACTIONS(1666), - [aux_sym_cmd_identifier_token16] = ACTIONS(1666), - [aux_sym_cmd_identifier_token17] = ACTIONS(1666), - [aux_sym_cmd_identifier_token18] = ACTIONS(1666), - [aux_sym_cmd_identifier_token19] = ACTIONS(1666), - [aux_sym_cmd_identifier_token20] = ACTIONS(1666), - [aux_sym_cmd_identifier_token21] = ACTIONS(1666), - [aux_sym_cmd_identifier_token22] = ACTIONS(1666), - [aux_sym_cmd_identifier_token23] = ACTIONS(1666), - [aux_sym_cmd_identifier_token24] = ACTIONS(1666), - [aux_sym_cmd_identifier_token25] = ACTIONS(1666), - [aux_sym_cmd_identifier_token26] = ACTIONS(1666), - [aux_sym_cmd_identifier_token27] = ACTIONS(1666), - [aux_sym_cmd_identifier_token28] = ACTIONS(1666), - [aux_sym_cmd_identifier_token29] = ACTIONS(1666), - [aux_sym_cmd_identifier_token30] = ACTIONS(1666), - [aux_sym_cmd_identifier_token31] = ACTIONS(1666), - [aux_sym_cmd_identifier_token32] = ACTIONS(1666), - [aux_sym_cmd_identifier_token33] = ACTIONS(1666), - [aux_sym_cmd_identifier_token34] = ACTIONS(1666), - [aux_sym_cmd_identifier_token35] = ACTIONS(1666), - [aux_sym_cmd_identifier_token36] = ACTIONS(1666), - [aux_sym_cmd_identifier_token37] = ACTIONS(1666), - [aux_sym_cmd_identifier_token38] = ACTIONS(1666), - [aux_sym_cmd_identifier_token39] = ACTIONS(1666), - [aux_sym_cmd_identifier_token40] = ACTIONS(1666), - [anon_sym_def] = ACTIONS(1666), - [anon_sym_export_DASHenv] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_module] = ACTIONS(1666), - [anon_sym_use] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_COMMA] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_error] = ACTIONS(1666), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_in2] = ACTIONS(1666), - [anon_sym_loop] = ACTIONS(1666), - [anon_sym_make] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_do] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_match] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(1666), - [anon_sym_try] = ACTIONS(1666), - [anon_sym_catch] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_source] = ACTIONS(1666), - [anon_sym_source_DASHenv] = ACTIONS(1666), - [anon_sym_hide] = ACTIONS(1666), - [anon_sym_hide_DASHenv] = ACTIONS(1666), - [anon_sym_overlay] = ACTIONS(1666), - [anon_sym_as] = ACTIONS(1666), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_PLUS2] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1666), - [anon_sym_DOT] = ACTIONS(1919), - [aux_sym__immediate_decimal_token2] = ACTIONS(1921), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1666), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1666), - [aux_sym__val_number_decimal_token3] = ACTIONS(1666), - [aux_sym__val_number_decimal_token4] = ACTIONS(1666), - [aux_sym__val_number_token1] = ACTIONS(1666), - [aux_sym__val_number_token2] = ACTIONS(1666), - [aux_sym__val_number_token3] = ACTIONS(1666), - [aux_sym__val_number_token4] = ACTIONS(1666), - [aux_sym__val_number_token5] = ACTIONS(1666), - [aux_sym__val_number_token6] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1666), - [sym__str_single_quotes] = ACTIONS(1666), - [sym__str_back_ticks] = ACTIONS(1666), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1666), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1666), - [sym__entry_separator] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1666), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1666), + [424] = { + [sym_cell_path] = STATE(616), + [sym_path] = STATE(533), + [sym_comment] = STATE(424), + [aux_sym_cell_path_repeat1] = STATE(435), + [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(1915), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1915), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1915), + [sym__entry_separator] = ACTIONS(1917), + [anon_sym_register] = ACTIONS(1915), + [anon_sym_DOT2] = ACTIONS(1827), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1668), + [sym_raw_string_begin] = ACTIONS(1917), }, - [423] = { - [sym_cell_path] = STATE(666), - [sym_path] = STATE(558), - [sym_comment] = STATE(423), - [aux_sym_cell_path_repeat1] = STATE(446), + [425] = { + [sym_cell_path] = STATE(645), + [sym_path] = STATE(533), + [sym_comment] = STATE(425), + [aux_sym_cell_path_repeat1] = STATE(435), + [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_COMMA] = 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_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_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_DOLLAR_SQUOTE] = ACTIONS(1919), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1919), + [sym__entry_separator] = ACTIONS(1921), + [anon_sym_register] = ACTIONS(1919), + [anon_sym_DOT2] = ACTIONS(1827), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1921), + }, + [426] = { + [sym_cell_path] = STATE(615), + [sym_path] = STATE(533), + [sym_comment] = STATE(426), + [aux_sym_cell_path_repeat1] = STATE(435), [anon_sym_export] = ACTIONS(1923), [anon_sym_alias] = ACTIONS(1923), [anon_sym_let] = ACTIONS(1923), @@ -122125,761 +121332,755 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1923), [sym__entry_separator] = ACTIONS(1925), [anon_sym_register] = ACTIONS(1923), - [anon_sym_DOT2] = ACTIONS(1833), + [anon_sym_DOT2] = ACTIONS(1827), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1925), }, - [424] = { - [sym_cell_path] = STATE(643), - [sym_path] = STATE(558), - [sym_comment] = STATE(424), - [aux_sym_cell_path_repeat1] = STATE(446), - [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1927), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1927), - [sym__entry_separator] = ACTIONS(1929), - [anon_sym_register] = ACTIONS(1927), - [anon_sym_DOT2] = ACTIONS(1833), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1929), - }, - [425] = { - [sym_cell_path] = STATE(667), - [sym_path] = STATE(558), - [sym_comment] = STATE(425), - [aux_sym_cell_path_repeat1] = STATE(446), - [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_COMMA] = 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_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_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_DOLLAR_SQUOTE] = ACTIONS(1931), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1931), - [sym__entry_separator] = ACTIONS(1933), - [anon_sym_register] = ACTIONS(1931), - [anon_sym_DOT2] = ACTIONS(1833), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1933), - }, - [426] = { - [sym_cell_path] = STATE(668), - [sym_path] = STATE(558), - [sym_comment] = STATE(426), - [aux_sym_cell_path_repeat1] = STATE(446), - [anon_sym_export] = ACTIONS(1935), - [anon_sym_alias] = ACTIONS(1935), - [anon_sym_let] = ACTIONS(1935), - [anon_sym_let_DASHenv] = ACTIONS(1935), - [anon_sym_mut] = ACTIONS(1935), - [anon_sym_const] = ACTIONS(1935), - [aux_sym_cmd_identifier_token1] = ACTIONS(1935), - [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(1935), - [aux_sym_cmd_identifier_token9] = ACTIONS(1935), - [aux_sym_cmd_identifier_token10] = ACTIONS(1935), - [aux_sym_cmd_identifier_token11] = ACTIONS(1935), - [aux_sym_cmd_identifier_token12] = ACTIONS(1935), - [aux_sym_cmd_identifier_token13] = ACTIONS(1935), - [aux_sym_cmd_identifier_token14] = ACTIONS(1935), - [aux_sym_cmd_identifier_token15] = ACTIONS(1935), - [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(1935), - [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(1935), - [aux_sym_cmd_identifier_token39] = ACTIONS(1935), - [aux_sym_cmd_identifier_token40] = ACTIONS(1935), - [anon_sym_def] = ACTIONS(1935), - [anon_sym_export_DASHenv] = ACTIONS(1935), - [anon_sym_extern] = ACTIONS(1935), - [anon_sym_module] = ACTIONS(1935), - [anon_sym_use] = ACTIONS(1935), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_COMMA] = ACTIONS(1935), - [anon_sym_DOLLAR] = ACTIONS(1935), - [anon_sym_error] = ACTIONS(1935), - [anon_sym_DASH2] = ACTIONS(1935), - [anon_sym_break] = ACTIONS(1935), - [anon_sym_continue] = ACTIONS(1935), - [anon_sym_for] = ACTIONS(1935), - [anon_sym_in2] = ACTIONS(1935), - [anon_sym_loop] = ACTIONS(1935), - [anon_sym_make] = ACTIONS(1935), - [anon_sym_while] = ACTIONS(1935), - [anon_sym_do] = ACTIONS(1935), - [anon_sym_if] = ACTIONS(1935), - [anon_sym_else] = ACTIONS(1935), - [anon_sym_match] = ACTIONS(1935), - [anon_sym_RBRACE] = ACTIONS(1935), - [anon_sym_try] = ACTIONS(1935), - [anon_sym_catch] = ACTIONS(1935), - [anon_sym_return] = ACTIONS(1935), - [anon_sym_source] = ACTIONS(1935), - [anon_sym_source_DASHenv] = ACTIONS(1935), - [anon_sym_hide] = ACTIONS(1935), - [anon_sym_hide_DASHenv] = ACTIONS(1935), - [anon_sym_overlay] = ACTIONS(1935), - [anon_sym_as] = ACTIONS(1935), - [anon_sym_PLUS2] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1935), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [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_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_DOT_DOT_DOT_LBRACE] = ACTIONS(1935), - [sym__entry_separator] = ACTIONS(1937), - [anon_sym_register] = ACTIONS(1935), - [anon_sym_DOT2] = ACTIONS(1833), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1937), - }, [427] = { [sym_comment] = STATE(427), - [anon_sym_export] = ACTIONS(948), - [anon_sym_alias] = ACTIONS(948), - [anon_sym_let] = ACTIONS(948), - [anon_sym_let_DASHenv] = ACTIONS(948), - [anon_sym_mut] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [aux_sym_cmd_identifier_token1] = ACTIONS(948), - [aux_sym_cmd_identifier_token2] = ACTIONS(950), - [aux_sym_cmd_identifier_token3] = ACTIONS(950), - [aux_sym_cmd_identifier_token4] = ACTIONS(950), - [aux_sym_cmd_identifier_token5] = ACTIONS(950), - [aux_sym_cmd_identifier_token6] = ACTIONS(950), - [aux_sym_cmd_identifier_token7] = ACTIONS(950), - [aux_sym_cmd_identifier_token8] = ACTIONS(948), - [aux_sym_cmd_identifier_token9] = ACTIONS(948), - [aux_sym_cmd_identifier_token10] = ACTIONS(950), - [aux_sym_cmd_identifier_token11] = ACTIONS(950), - [aux_sym_cmd_identifier_token12] = ACTIONS(948), - [aux_sym_cmd_identifier_token13] = ACTIONS(948), - [aux_sym_cmd_identifier_token14] = ACTIONS(948), - [aux_sym_cmd_identifier_token15] = ACTIONS(948), - [aux_sym_cmd_identifier_token16] = ACTIONS(950), - [aux_sym_cmd_identifier_token17] = ACTIONS(950), - [aux_sym_cmd_identifier_token18] = ACTIONS(950), - [aux_sym_cmd_identifier_token19] = ACTIONS(950), - [aux_sym_cmd_identifier_token20] = ACTIONS(950), - [aux_sym_cmd_identifier_token21] = ACTIONS(950), - [aux_sym_cmd_identifier_token22] = ACTIONS(950), - [aux_sym_cmd_identifier_token23] = ACTIONS(950), - [aux_sym_cmd_identifier_token24] = ACTIONS(950), - [aux_sym_cmd_identifier_token25] = ACTIONS(950), - [aux_sym_cmd_identifier_token26] = ACTIONS(950), - [aux_sym_cmd_identifier_token27] = ACTIONS(950), - [aux_sym_cmd_identifier_token28] = ACTIONS(950), - [aux_sym_cmd_identifier_token29] = ACTIONS(950), - [aux_sym_cmd_identifier_token30] = ACTIONS(950), - [aux_sym_cmd_identifier_token31] = ACTIONS(950), - [aux_sym_cmd_identifier_token32] = ACTIONS(950), - [aux_sym_cmd_identifier_token33] = ACTIONS(950), - [aux_sym_cmd_identifier_token34] = ACTIONS(948), - [aux_sym_cmd_identifier_token35] = ACTIONS(950), - [aux_sym_cmd_identifier_token36] = ACTIONS(950), - [aux_sym_cmd_identifier_token37] = ACTIONS(950), - [aux_sym_cmd_identifier_token38] = ACTIONS(948), - [aux_sym_cmd_identifier_token39] = ACTIONS(950), - [aux_sym_cmd_identifier_token40] = ACTIONS(950), - [anon_sym_def] = ACTIONS(948), - [anon_sym_export_DASHenv] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_use] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_COMMA] = ACTIONS(950), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_error] = ACTIONS(948), - [anon_sym_DASH2] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_in2] = ACTIONS(948), - [anon_sym_loop] = ACTIONS(948), - [anon_sym_make] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_match] = ACTIONS(948), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_try] = ACTIONS(948), - [anon_sym_catch] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_source] = ACTIONS(948), - [anon_sym_source_DASHenv] = ACTIONS(948), - [anon_sym_hide] = ACTIONS(948), - [anon_sym_hide_DASHenv] = ACTIONS(948), - [anon_sym_overlay] = ACTIONS(948), - [anon_sym_as] = ACTIONS(948), - [anon_sym_QMARK2] = ACTIONS(1939), - [anon_sym_PLUS2] = ACTIONS(948), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(950), - [anon_sym_DOT_DOT2] = ACTIONS(948), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), - [anon_sym_DOT_DOT_LT2] = ACTIONS(950), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(950), - [aux_sym__val_number_decimal_token1] = ACTIONS(948), - [aux_sym__val_number_decimal_token2] = ACTIONS(950), - [aux_sym__val_number_decimal_token3] = ACTIONS(950), - [aux_sym__val_number_decimal_token4] = ACTIONS(950), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [aux_sym__val_number_token4] = ACTIONS(948), - [aux_sym__val_number_token5] = ACTIONS(948), - [aux_sym__val_number_token6] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(950), - [anon_sym_register] = ACTIONS(948), - [anon_sym_DOT2] = ACTIONS(948), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(950), + [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(978), + [aux_sym_cmd_identifier_token3] = ACTIONS(978), + [aux_sym_cmd_identifier_token4] = ACTIONS(978), + [aux_sym_cmd_identifier_token5] = ACTIONS(978), + [aux_sym_cmd_identifier_token6] = ACTIONS(978), + [aux_sym_cmd_identifier_token7] = ACTIONS(978), + [aux_sym_cmd_identifier_token8] = ACTIONS(978), + [aux_sym_cmd_identifier_token9] = ACTIONS(978), + [aux_sym_cmd_identifier_token10] = ACTIONS(978), + [aux_sym_cmd_identifier_token11] = ACTIONS(978), + [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(978), + [aux_sym_cmd_identifier_token17] = ACTIONS(978), + [aux_sym_cmd_identifier_token18] = ACTIONS(978), + [aux_sym_cmd_identifier_token19] = ACTIONS(978), + [aux_sym_cmd_identifier_token20] = ACTIONS(978), + [aux_sym_cmd_identifier_token21] = ACTIONS(978), + [aux_sym_cmd_identifier_token22] = ACTIONS(978), + [aux_sym_cmd_identifier_token23] = ACTIONS(978), + [aux_sym_cmd_identifier_token24] = ACTIONS(978), + [aux_sym_cmd_identifier_token25] = ACTIONS(978), + [aux_sym_cmd_identifier_token26] = ACTIONS(978), + [aux_sym_cmd_identifier_token27] = ACTIONS(978), + [aux_sym_cmd_identifier_token28] = ACTIONS(978), + [aux_sym_cmd_identifier_token29] = ACTIONS(978), + [aux_sym_cmd_identifier_token30] = ACTIONS(978), + [aux_sym_cmd_identifier_token31] = ACTIONS(978), + [aux_sym_cmd_identifier_token32] = ACTIONS(978), + [aux_sym_cmd_identifier_token33] = ACTIONS(978), + [aux_sym_cmd_identifier_token34] = ACTIONS(978), + [aux_sym_cmd_identifier_token35] = ACTIONS(978), + [aux_sym_cmd_identifier_token36] = ACTIONS(978), + [aux_sym_cmd_identifier_token37] = ACTIONS(978), + [aux_sym_cmd_identifier_token38] = ACTIONS(978), + [aux_sym_cmd_identifier_token39] = ACTIONS(978), + [aux_sym_cmd_identifier_token40] = ACTIONS(978), + [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(978), + [anon_sym_COMMA] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(978), + [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(978), + [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_hide] = ACTIONS(978), + [anon_sym_hide_DASHenv] = ACTIONS(978), + [anon_sym_overlay] = ACTIONS(978), + [anon_sym_as] = ACTIONS(978), + [anon_sym_PLUS2] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), + [anon_sym_DOT_DOT2] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), + [anon_sym_DOT_DOT_LT2] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), + [aux_sym__val_number_decimal_token1] = ACTIONS(978), + [aux_sym__val_number_decimal_token2] = ACTIONS(978), + [aux_sym__val_number_decimal_token3] = ACTIONS(978), + [aux_sym__val_number_decimal_token4] = ACTIONS(978), + [aux_sym__val_number_token1] = ACTIONS(978), + [aux_sym__val_number_token2] = ACTIONS(978), + [aux_sym__val_number_token3] = ACTIONS(978), + [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(978), + [sym__str_single_quotes] = ACTIONS(978), + [sym__str_back_ticks] = ACTIONS(978), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(978), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(978), + [sym__entry_separator] = ACTIONS(980), + [anon_sym_register] = ACTIONS(978), + [anon_sym_DOT2] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(980), }, [428] = { - [sym_cell_path] = STATE(633), - [sym_path] = STATE(558), [sym_comment] = STATE(428), - [aux_sym_cell_path_repeat1] = STATE(446), - [anon_sym_export] = ACTIONS(1941), - [anon_sym_alias] = ACTIONS(1941), - [anon_sym_let] = ACTIONS(1941), - [anon_sym_let_DASHenv] = ACTIONS(1941), - [anon_sym_mut] = ACTIONS(1941), - [anon_sym_const] = ACTIONS(1941), - [aux_sym_cmd_identifier_token1] = ACTIONS(1941), - [aux_sym_cmd_identifier_token2] = ACTIONS(1941), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [aux_sym_cmd_identifier_token6] = ACTIONS(1941), - [aux_sym_cmd_identifier_token7] = ACTIONS(1941), - [aux_sym_cmd_identifier_token8] = ACTIONS(1941), - [aux_sym_cmd_identifier_token9] = ACTIONS(1941), - [aux_sym_cmd_identifier_token10] = ACTIONS(1941), - [aux_sym_cmd_identifier_token11] = ACTIONS(1941), - [aux_sym_cmd_identifier_token12] = ACTIONS(1941), - [aux_sym_cmd_identifier_token13] = ACTIONS(1941), - [aux_sym_cmd_identifier_token14] = ACTIONS(1941), - [aux_sym_cmd_identifier_token15] = ACTIONS(1941), - [aux_sym_cmd_identifier_token16] = ACTIONS(1941), - [aux_sym_cmd_identifier_token17] = ACTIONS(1941), - [aux_sym_cmd_identifier_token18] = ACTIONS(1941), - [aux_sym_cmd_identifier_token19] = ACTIONS(1941), - [aux_sym_cmd_identifier_token20] = ACTIONS(1941), - [aux_sym_cmd_identifier_token21] = ACTIONS(1941), - [aux_sym_cmd_identifier_token22] = ACTIONS(1941), - [aux_sym_cmd_identifier_token23] = ACTIONS(1941), - [aux_sym_cmd_identifier_token24] = ACTIONS(1941), - [aux_sym_cmd_identifier_token25] = ACTIONS(1941), - [aux_sym_cmd_identifier_token26] = ACTIONS(1941), - [aux_sym_cmd_identifier_token27] = ACTIONS(1941), - [aux_sym_cmd_identifier_token28] = ACTIONS(1941), - [aux_sym_cmd_identifier_token29] = ACTIONS(1941), - [aux_sym_cmd_identifier_token30] = ACTIONS(1941), - [aux_sym_cmd_identifier_token31] = ACTIONS(1941), - [aux_sym_cmd_identifier_token32] = ACTIONS(1941), - [aux_sym_cmd_identifier_token33] = ACTIONS(1941), - [aux_sym_cmd_identifier_token34] = ACTIONS(1941), - [aux_sym_cmd_identifier_token35] = ACTIONS(1941), - [aux_sym_cmd_identifier_token36] = ACTIONS(1941), - [aux_sym_cmd_identifier_token37] = ACTIONS(1941), - [aux_sym_cmd_identifier_token38] = ACTIONS(1941), - [aux_sym_cmd_identifier_token39] = ACTIONS(1941), - [aux_sym_cmd_identifier_token40] = ACTIONS(1941), - [anon_sym_def] = ACTIONS(1941), - [anon_sym_export_DASHenv] = ACTIONS(1941), - [anon_sym_extern] = ACTIONS(1941), - [anon_sym_module] = ACTIONS(1941), - [anon_sym_use] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_COMMA] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1941), - [anon_sym_error] = ACTIONS(1941), - [anon_sym_DASH2] = ACTIONS(1941), - [anon_sym_break] = ACTIONS(1941), - [anon_sym_continue] = ACTIONS(1941), - [anon_sym_for] = ACTIONS(1941), - [anon_sym_in2] = ACTIONS(1941), - [anon_sym_loop] = ACTIONS(1941), - [anon_sym_make] = ACTIONS(1941), - [anon_sym_while] = ACTIONS(1941), - [anon_sym_do] = ACTIONS(1941), - [anon_sym_if] = ACTIONS(1941), - [anon_sym_else] = ACTIONS(1941), - [anon_sym_match] = ACTIONS(1941), - [anon_sym_RBRACE] = ACTIONS(1941), - [anon_sym_try] = ACTIONS(1941), - [anon_sym_catch] = ACTIONS(1941), - [anon_sym_return] = ACTIONS(1941), - [anon_sym_source] = ACTIONS(1941), - [anon_sym_source_DASHenv] = ACTIONS(1941), - [anon_sym_hide] = ACTIONS(1941), - [anon_sym_hide_DASHenv] = ACTIONS(1941), - [anon_sym_overlay] = ACTIONS(1941), - [anon_sym_as] = ACTIONS(1941), - [anon_sym_PLUS2] = ACTIONS(1941), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1941), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1941), - [aux_sym__val_number_decimal_token2] = ACTIONS(1941), - [aux_sym__val_number_decimal_token3] = ACTIONS(1941), - [aux_sym__val_number_decimal_token4] = ACTIONS(1941), - [aux_sym__val_number_token1] = ACTIONS(1941), - [aux_sym__val_number_token2] = ACTIONS(1941), - [aux_sym__val_number_token3] = ACTIONS(1941), - [aux_sym__val_number_token4] = ACTIONS(1941), - [aux_sym__val_number_token5] = ACTIONS(1941), - [aux_sym__val_number_token6] = ACTIONS(1941), - [anon_sym_DQUOTE] = ACTIONS(1941), - [sym__str_single_quotes] = ACTIONS(1941), - [sym__str_back_ticks] = ACTIONS(1941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1941), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1941), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1941), - [sym__entry_separator] = ACTIONS(1943), - [anon_sym_register] = ACTIONS(1941), - [anon_sym_DOT2] = ACTIONS(1833), + [anon_sym_export] = ACTIONS(1701), + [anon_sym_alias] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1701), + [anon_sym_let_DASHenv] = ACTIONS(1701), + [anon_sym_mut] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [aux_sym_cmd_identifier_token1] = ACTIONS(1701), + [aux_sym_cmd_identifier_token2] = ACTIONS(1701), + [aux_sym_cmd_identifier_token3] = ACTIONS(1701), + [aux_sym_cmd_identifier_token4] = ACTIONS(1701), + [aux_sym_cmd_identifier_token5] = ACTIONS(1701), + [aux_sym_cmd_identifier_token6] = ACTIONS(1701), + [aux_sym_cmd_identifier_token7] = ACTIONS(1701), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1701), + [aux_sym_cmd_identifier_token11] = ACTIONS(1701), + [aux_sym_cmd_identifier_token12] = ACTIONS(1701), + [aux_sym_cmd_identifier_token13] = ACTIONS(1701), + [aux_sym_cmd_identifier_token14] = ACTIONS(1701), + [aux_sym_cmd_identifier_token15] = ACTIONS(1701), + [aux_sym_cmd_identifier_token16] = ACTIONS(1701), + [aux_sym_cmd_identifier_token17] = ACTIONS(1701), + [aux_sym_cmd_identifier_token18] = ACTIONS(1701), + [aux_sym_cmd_identifier_token19] = ACTIONS(1701), + [aux_sym_cmd_identifier_token20] = ACTIONS(1701), + [aux_sym_cmd_identifier_token21] = ACTIONS(1701), + [aux_sym_cmd_identifier_token22] = ACTIONS(1701), + [aux_sym_cmd_identifier_token23] = ACTIONS(1701), + [aux_sym_cmd_identifier_token24] = ACTIONS(1701), + [aux_sym_cmd_identifier_token25] = ACTIONS(1701), + [aux_sym_cmd_identifier_token26] = ACTIONS(1701), + [aux_sym_cmd_identifier_token27] = ACTIONS(1701), + [aux_sym_cmd_identifier_token28] = ACTIONS(1701), + [aux_sym_cmd_identifier_token29] = ACTIONS(1701), + [aux_sym_cmd_identifier_token30] = ACTIONS(1701), + [aux_sym_cmd_identifier_token31] = ACTIONS(1701), + [aux_sym_cmd_identifier_token32] = ACTIONS(1701), + [aux_sym_cmd_identifier_token33] = ACTIONS(1701), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1701), + [aux_sym_cmd_identifier_token36] = ACTIONS(1701), + [aux_sym_cmd_identifier_token37] = ACTIONS(1701), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1701), + [aux_sym_cmd_identifier_token40] = ACTIONS(1701), + [anon_sym_def] = ACTIONS(1701), + [anon_sym_export_DASHenv] = ACTIONS(1701), + [anon_sym_extern] = ACTIONS(1701), + [anon_sym_module] = ACTIONS(1701), + [anon_sym_use] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_COMMA] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = ACTIONS(1701), + [anon_sym_loop] = ACTIONS(1701), + [anon_sym_make] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_do] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_else] = ACTIONS(1701), + [anon_sym_match] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1701), + [anon_sym_try] = ACTIONS(1701), + [anon_sym_catch] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_source] = ACTIONS(1701), + [anon_sym_source_DASHenv] = ACTIONS(1701), + [anon_sym_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1701), + [aux_sym__immediate_decimal_token2] = ACTIONS(1913), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1701), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1701), + [aux_sym__val_number_decimal_token3] = ACTIONS(1701), + [aux_sym__val_number_decimal_token4] = ACTIONS(1701), + [aux_sym__val_number_token1] = ACTIONS(1701), + [aux_sym__val_number_token2] = ACTIONS(1701), + [aux_sym__val_number_token3] = ACTIONS(1701), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [sym__str_single_quotes] = ACTIONS(1701), + [sym__str_back_ticks] = ACTIONS(1701), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1701), + [sym__entry_separator] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1701), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1943), + [sym_raw_string_begin] = ACTIONS(1703), }, [429] = { - [sym_cell_path] = STATE(661), - [sym_path] = STATE(558), [sym_comment] = STATE(429), - [aux_sym_cell_path_repeat1] = STATE(446), - [anon_sym_export] = ACTIONS(1945), - [anon_sym_alias] = ACTIONS(1945), - [anon_sym_let] = ACTIONS(1945), - [anon_sym_let_DASHenv] = ACTIONS(1945), - [anon_sym_mut] = ACTIONS(1945), - [anon_sym_const] = ACTIONS(1945), - [aux_sym_cmd_identifier_token1] = ACTIONS(1945), - [aux_sym_cmd_identifier_token2] = ACTIONS(1945), - [aux_sym_cmd_identifier_token3] = ACTIONS(1945), - [aux_sym_cmd_identifier_token4] = ACTIONS(1945), - [aux_sym_cmd_identifier_token5] = ACTIONS(1945), - [aux_sym_cmd_identifier_token6] = ACTIONS(1945), - [aux_sym_cmd_identifier_token7] = ACTIONS(1945), - [aux_sym_cmd_identifier_token8] = ACTIONS(1945), - [aux_sym_cmd_identifier_token9] = ACTIONS(1945), - [aux_sym_cmd_identifier_token10] = ACTIONS(1945), - [aux_sym_cmd_identifier_token11] = ACTIONS(1945), - [aux_sym_cmd_identifier_token12] = ACTIONS(1945), - [aux_sym_cmd_identifier_token13] = ACTIONS(1945), - [aux_sym_cmd_identifier_token14] = ACTIONS(1945), - [aux_sym_cmd_identifier_token15] = ACTIONS(1945), - [aux_sym_cmd_identifier_token16] = ACTIONS(1945), - [aux_sym_cmd_identifier_token17] = ACTIONS(1945), - [aux_sym_cmd_identifier_token18] = ACTIONS(1945), - [aux_sym_cmd_identifier_token19] = ACTIONS(1945), - [aux_sym_cmd_identifier_token20] = ACTIONS(1945), - [aux_sym_cmd_identifier_token21] = ACTIONS(1945), - [aux_sym_cmd_identifier_token22] = ACTIONS(1945), - [aux_sym_cmd_identifier_token23] = ACTIONS(1945), - [aux_sym_cmd_identifier_token24] = ACTIONS(1945), - [aux_sym_cmd_identifier_token25] = ACTIONS(1945), - [aux_sym_cmd_identifier_token26] = ACTIONS(1945), - [aux_sym_cmd_identifier_token27] = ACTIONS(1945), - [aux_sym_cmd_identifier_token28] = ACTIONS(1945), - [aux_sym_cmd_identifier_token29] = ACTIONS(1945), - [aux_sym_cmd_identifier_token30] = ACTIONS(1945), - [aux_sym_cmd_identifier_token31] = ACTIONS(1945), - [aux_sym_cmd_identifier_token32] = ACTIONS(1945), - [aux_sym_cmd_identifier_token33] = ACTIONS(1945), - [aux_sym_cmd_identifier_token34] = ACTIONS(1945), - [aux_sym_cmd_identifier_token35] = ACTIONS(1945), - [aux_sym_cmd_identifier_token36] = ACTIONS(1945), - [aux_sym_cmd_identifier_token37] = ACTIONS(1945), - [aux_sym_cmd_identifier_token38] = ACTIONS(1945), - [aux_sym_cmd_identifier_token39] = ACTIONS(1945), - [aux_sym_cmd_identifier_token40] = ACTIONS(1945), - [anon_sym_def] = ACTIONS(1945), - [anon_sym_export_DASHenv] = ACTIONS(1945), - [anon_sym_extern] = ACTIONS(1945), - [anon_sym_module] = ACTIONS(1945), - [anon_sym_use] = ACTIONS(1945), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_COMMA] = ACTIONS(1945), - [anon_sym_DOLLAR] = ACTIONS(1945), - [anon_sym_error] = ACTIONS(1945), - [anon_sym_DASH2] = ACTIONS(1945), - [anon_sym_break] = ACTIONS(1945), - [anon_sym_continue] = ACTIONS(1945), - [anon_sym_for] = ACTIONS(1945), - [anon_sym_in2] = ACTIONS(1945), - [anon_sym_loop] = ACTIONS(1945), - [anon_sym_make] = ACTIONS(1945), - [anon_sym_while] = ACTIONS(1945), - [anon_sym_do] = ACTIONS(1945), - [anon_sym_if] = ACTIONS(1945), - [anon_sym_else] = ACTIONS(1945), - [anon_sym_match] = ACTIONS(1945), - [anon_sym_RBRACE] = ACTIONS(1945), - [anon_sym_try] = ACTIONS(1945), - [anon_sym_catch] = ACTIONS(1945), - [anon_sym_return] = ACTIONS(1945), - [anon_sym_source] = ACTIONS(1945), - [anon_sym_source_DASHenv] = ACTIONS(1945), - [anon_sym_hide] = ACTIONS(1945), - [anon_sym_hide_DASHenv] = ACTIONS(1945), - [anon_sym_overlay] = ACTIONS(1945), - [anon_sym_as] = ACTIONS(1945), - [anon_sym_PLUS2] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1945), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1945), - [aux_sym__val_number_decimal_token4] = ACTIONS(1945), - [aux_sym__val_number_token1] = ACTIONS(1945), - [aux_sym__val_number_token2] = ACTIONS(1945), - [aux_sym__val_number_token3] = ACTIONS(1945), - [aux_sym__val_number_token4] = ACTIONS(1945), - [aux_sym__val_number_token5] = ACTIONS(1945), - [aux_sym__val_number_token6] = ACTIONS(1945), - [anon_sym_DQUOTE] = ACTIONS(1945), - [sym__str_single_quotes] = ACTIONS(1945), - [sym__str_back_ticks] = ACTIONS(1945), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1945), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1945), - [sym__entry_separator] = ACTIONS(1947), - [anon_sym_register] = ACTIONS(1945), - [anon_sym_DOT2] = ACTIONS(1833), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1947), + [anon_sym_export] = ACTIONS(1701), + [anon_sym_alias] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1701), + [anon_sym_let_DASHenv] = ACTIONS(1701), + [anon_sym_mut] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [aux_sym_cmd_identifier_token1] = ACTIONS(1701), + [aux_sym_cmd_identifier_token2] = ACTIONS(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [aux_sym_cmd_identifier_token12] = ACTIONS(1701), + [aux_sym_cmd_identifier_token13] = ACTIONS(1701), + [aux_sym_cmd_identifier_token14] = ACTIONS(1701), + [aux_sym_cmd_identifier_token15] = ACTIONS(1701), + [aux_sym_cmd_identifier_token16] = ACTIONS(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [aux_sym_cmd_identifier_token37] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [anon_sym_def] = ACTIONS(1701), + [anon_sym_export_DASHenv] = ACTIONS(1701), + [anon_sym_extern] = ACTIONS(1701), + [anon_sym_module] = ACTIONS(1701), + [anon_sym_use] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_COMMA] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = ACTIONS(1701), + [anon_sym_loop] = ACTIONS(1701), + [anon_sym_make] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_do] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_else] = ACTIONS(1701), + [anon_sym_match] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_try] = ACTIONS(1701), + [anon_sym_catch] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_source] = ACTIONS(1701), + [anon_sym_source_DASHenv] = ACTIONS(1701), + [anon_sym_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [anon_sym_DOT] = ACTIONS(1927), + [aux_sym__immediate_decimal_token2] = ACTIONS(1929), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), }, [430] = { + [sym_path] = STATE(541), [sym_comment] = STATE(430), - [anon_sym_export] = ACTIONS(974), - [anon_sym_alias] = ACTIONS(974), - [anon_sym_let] = ACTIONS(974), - [anon_sym_let_DASHenv] = ACTIONS(974), - [anon_sym_mut] = ACTIONS(974), - [anon_sym_const] = ACTIONS(974), - [aux_sym_cmd_identifier_token1] = ACTIONS(974), - [aux_sym_cmd_identifier_token2] = ACTIONS(974), - [aux_sym_cmd_identifier_token3] = ACTIONS(974), - [aux_sym_cmd_identifier_token4] = ACTIONS(974), - [aux_sym_cmd_identifier_token5] = ACTIONS(974), - [aux_sym_cmd_identifier_token6] = ACTIONS(974), - [aux_sym_cmd_identifier_token7] = ACTIONS(974), - [aux_sym_cmd_identifier_token8] = ACTIONS(974), - [aux_sym_cmd_identifier_token9] = ACTIONS(974), - [aux_sym_cmd_identifier_token10] = ACTIONS(974), - [aux_sym_cmd_identifier_token11] = ACTIONS(974), - [aux_sym_cmd_identifier_token12] = ACTIONS(974), - [aux_sym_cmd_identifier_token13] = ACTIONS(974), - [aux_sym_cmd_identifier_token14] = ACTIONS(974), - [aux_sym_cmd_identifier_token15] = ACTIONS(974), - [aux_sym_cmd_identifier_token16] = ACTIONS(974), - [aux_sym_cmd_identifier_token17] = ACTIONS(974), - [aux_sym_cmd_identifier_token18] = ACTIONS(974), - [aux_sym_cmd_identifier_token19] = ACTIONS(974), - [aux_sym_cmd_identifier_token20] = ACTIONS(974), - [aux_sym_cmd_identifier_token21] = ACTIONS(974), - [aux_sym_cmd_identifier_token22] = ACTIONS(974), - [aux_sym_cmd_identifier_token23] = ACTIONS(974), - [aux_sym_cmd_identifier_token24] = ACTIONS(974), - [aux_sym_cmd_identifier_token25] = ACTIONS(974), - [aux_sym_cmd_identifier_token26] = ACTIONS(974), - [aux_sym_cmd_identifier_token27] = ACTIONS(974), - [aux_sym_cmd_identifier_token28] = ACTIONS(974), - [aux_sym_cmd_identifier_token29] = ACTIONS(974), - [aux_sym_cmd_identifier_token30] = ACTIONS(974), - [aux_sym_cmd_identifier_token31] = ACTIONS(974), - [aux_sym_cmd_identifier_token32] = ACTIONS(974), - [aux_sym_cmd_identifier_token33] = ACTIONS(974), - [aux_sym_cmd_identifier_token34] = ACTIONS(974), - [aux_sym_cmd_identifier_token35] = ACTIONS(974), - [aux_sym_cmd_identifier_token36] = ACTIONS(974), - [aux_sym_cmd_identifier_token37] = ACTIONS(974), - [aux_sym_cmd_identifier_token38] = ACTIONS(974), - [aux_sym_cmd_identifier_token39] = ACTIONS(974), - [aux_sym_cmd_identifier_token40] = ACTIONS(974), - [anon_sym_def] = ACTIONS(974), - [anon_sym_export_DASHenv] = ACTIONS(974), - [anon_sym_extern] = ACTIONS(974), - [anon_sym_module] = ACTIONS(974), - [anon_sym_use] = ACTIONS(974), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_COMMA] = ACTIONS(974), - [anon_sym_DOLLAR] = ACTIONS(974), - [anon_sym_error] = ACTIONS(974), - [anon_sym_DASH2] = ACTIONS(974), - [anon_sym_break] = ACTIONS(974), - [anon_sym_continue] = ACTIONS(974), - [anon_sym_for] = ACTIONS(974), - [anon_sym_in2] = ACTIONS(974), - [anon_sym_loop] = ACTIONS(974), - [anon_sym_make] = ACTIONS(974), - [anon_sym_while] = ACTIONS(974), - [anon_sym_do] = ACTIONS(974), - [anon_sym_if] = ACTIONS(974), - [anon_sym_else] = ACTIONS(974), - [anon_sym_match] = ACTIONS(974), - [anon_sym_RBRACE] = ACTIONS(974), - [anon_sym_try] = ACTIONS(974), - [anon_sym_catch] = ACTIONS(974), - [anon_sym_return] = ACTIONS(974), - [anon_sym_source] = ACTIONS(974), - [anon_sym_source_DASHenv] = ACTIONS(974), - [anon_sym_hide] = ACTIONS(974), - [anon_sym_hide_DASHenv] = ACTIONS(974), - [anon_sym_overlay] = ACTIONS(974), - [anon_sym_as] = ACTIONS(974), - [anon_sym_PLUS2] = ACTIONS(974), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(974), - [anon_sym_DOT_DOT2] = ACTIONS(974), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(976), - [anon_sym_DOT_DOT_LT2] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(974), - [aux_sym__val_number_decimal_token1] = ACTIONS(974), - [aux_sym__val_number_decimal_token2] = ACTIONS(974), - [aux_sym__val_number_decimal_token3] = ACTIONS(974), - [aux_sym__val_number_decimal_token4] = ACTIONS(974), - [aux_sym__val_number_token1] = ACTIONS(974), - [aux_sym__val_number_token2] = ACTIONS(974), - [aux_sym__val_number_token3] = ACTIONS(974), - [aux_sym__val_number_token4] = ACTIONS(974), - [aux_sym__val_number_token5] = ACTIONS(974), - [aux_sym__val_number_token6] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(974), - [sym__str_single_quotes] = ACTIONS(974), - [sym__str_back_ticks] = ACTIONS(974), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(974), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(974), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(974), - [sym__entry_separator] = ACTIONS(976), - [anon_sym_register] = ACTIONS(974), - [anon_sym_DOT2] = ACTIONS(974), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(976), + [aux_sym_cell_path_repeat1] = STATE(431), + [anon_sym_export] = ACTIONS(938), + [anon_sym_alias] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_let_DASHenv] = ACTIONS(938), + [anon_sym_mut] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [aux_sym_cmd_identifier_token1] = ACTIONS(938), + [aux_sym_cmd_identifier_token2] = ACTIONS(940), + [aux_sym_cmd_identifier_token3] = ACTIONS(940), + [aux_sym_cmd_identifier_token4] = ACTIONS(940), + [aux_sym_cmd_identifier_token5] = ACTIONS(940), + [aux_sym_cmd_identifier_token6] = ACTIONS(940), + [aux_sym_cmd_identifier_token7] = ACTIONS(940), + [aux_sym_cmd_identifier_token8] = ACTIONS(938), + [aux_sym_cmd_identifier_token9] = ACTIONS(938), + [aux_sym_cmd_identifier_token10] = ACTIONS(940), + [aux_sym_cmd_identifier_token11] = ACTIONS(940), + [aux_sym_cmd_identifier_token12] = ACTIONS(938), + [aux_sym_cmd_identifier_token13] = ACTIONS(938), + [aux_sym_cmd_identifier_token14] = ACTIONS(938), + [aux_sym_cmd_identifier_token15] = ACTIONS(938), + [aux_sym_cmd_identifier_token16] = ACTIONS(940), + [aux_sym_cmd_identifier_token17] = ACTIONS(940), + [aux_sym_cmd_identifier_token18] = ACTIONS(940), + [aux_sym_cmd_identifier_token19] = ACTIONS(940), + [aux_sym_cmd_identifier_token20] = ACTIONS(940), + [aux_sym_cmd_identifier_token21] = ACTIONS(940), + [aux_sym_cmd_identifier_token22] = ACTIONS(940), + [aux_sym_cmd_identifier_token23] = ACTIONS(940), + [aux_sym_cmd_identifier_token24] = ACTIONS(940), + [aux_sym_cmd_identifier_token25] = ACTIONS(940), + [aux_sym_cmd_identifier_token26] = ACTIONS(940), + [aux_sym_cmd_identifier_token27] = ACTIONS(940), + [aux_sym_cmd_identifier_token28] = ACTIONS(940), + [aux_sym_cmd_identifier_token29] = ACTIONS(940), + [aux_sym_cmd_identifier_token30] = ACTIONS(940), + [aux_sym_cmd_identifier_token31] = ACTIONS(940), + [aux_sym_cmd_identifier_token32] = ACTIONS(940), + [aux_sym_cmd_identifier_token33] = ACTIONS(940), + [aux_sym_cmd_identifier_token34] = ACTIONS(938), + [aux_sym_cmd_identifier_token35] = ACTIONS(940), + [aux_sym_cmd_identifier_token36] = ACTIONS(940), + [aux_sym_cmd_identifier_token37] = ACTIONS(940), + [aux_sym_cmd_identifier_token38] = ACTIONS(938), + [aux_sym_cmd_identifier_token39] = ACTIONS(940), + [aux_sym_cmd_identifier_token40] = ACTIONS(940), + [anon_sym_def] = ACTIONS(938), + [anon_sym_export_DASHenv] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(940), + [anon_sym_COMMA] = ACTIONS(940), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_error] = ACTIONS(938), + [anon_sym_DASH2] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_in2] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_make] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_else] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(940), + [anon_sym_try] = ACTIONS(938), + [anon_sym_catch] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_PLUS2] = ACTIONS(938), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(940), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(940), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(940), + [aux_sym__val_number_decimal_token3] = ACTIONS(940), + [aux_sym__val_number_decimal_token4] = ACTIONS(940), + [aux_sym__val_number_token1] = ACTIONS(940), + [aux_sym__val_number_token2] = ACTIONS(940), + [aux_sym__val_number_token3] = ACTIONS(940), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(940), + [sym__str_single_quotes] = ACTIONS(940), + [sym__str_back_ticks] = ACTIONS(940), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(940), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(940), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(940), + [anon_sym_register] = ACTIONS(938), + [anon_sym_COLON2] = ACTIONS(940), + [anon_sym_DOT2] = ACTIONS(1821), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(940), }, [431] = { + [sym_path] = STATE(541), [sym_comment] = STATE(431), + [aux_sym_cell_path_repeat1] = STATE(431), + [anon_sym_export] = ACTIONS(931), + [anon_sym_alias] = ACTIONS(931), + [anon_sym_let] = ACTIONS(931), + [anon_sym_let_DASHenv] = ACTIONS(931), + [anon_sym_mut] = ACTIONS(931), + [anon_sym_const] = ACTIONS(931), + [aux_sym_cmd_identifier_token1] = ACTIONS(931), + [aux_sym_cmd_identifier_token2] = ACTIONS(933), + [aux_sym_cmd_identifier_token3] = ACTIONS(933), + [aux_sym_cmd_identifier_token4] = ACTIONS(933), + [aux_sym_cmd_identifier_token5] = ACTIONS(933), + [aux_sym_cmd_identifier_token6] = ACTIONS(933), + [aux_sym_cmd_identifier_token7] = ACTIONS(933), + [aux_sym_cmd_identifier_token8] = ACTIONS(931), + [aux_sym_cmd_identifier_token9] = ACTIONS(931), + [aux_sym_cmd_identifier_token10] = ACTIONS(933), + [aux_sym_cmd_identifier_token11] = ACTIONS(933), + [aux_sym_cmd_identifier_token12] = ACTIONS(931), + [aux_sym_cmd_identifier_token13] = ACTIONS(931), + [aux_sym_cmd_identifier_token14] = ACTIONS(931), + [aux_sym_cmd_identifier_token15] = ACTIONS(931), + [aux_sym_cmd_identifier_token16] = ACTIONS(933), + [aux_sym_cmd_identifier_token17] = ACTIONS(933), + [aux_sym_cmd_identifier_token18] = ACTIONS(933), + [aux_sym_cmd_identifier_token19] = ACTIONS(933), + [aux_sym_cmd_identifier_token20] = ACTIONS(933), + [aux_sym_cmd_identifier_token21] = ACTIONS(933), + [aux_sym_cmd_identifier_token22] = ACTIONS(933), + [aux_sym_cmd_identifier_token23] = ACTIONS(933), + [aux_sym_cmd_identifier_token24] = ACTIONS(933), + [aux_sym_cmd_identifier_token25] = ACTIONS(933), + [aux_sym_cmd_identifier_token26] = ACTIONS(933), + [aux_sym_cmd_identifier_token27] = ACTIONS(933), + [aux_sym_cmd_identifier_token28] = ACTIONS(933), + [aux_sym_cmd_identifier_token29] = ACTIONS(933), + [aux_sym_cmd_identifier_token30] = ACTIONS(933), + [aux_sym_cmd_identifier_token31] = ACTIONS(933), + [aux_sym_cmd_identifier_token32] = ACTIONS(933), + [aux_sym_cmd_identifier_token33] = ACTIONS(933), + [aux_sym_cmd_identifier_token34] = ACTIONS(931), + [aux_sym_cmd_identifier_token35] = ACTIONS(933), + [aux_sym_cmd_identifier_token36] = ACTIONS(933), + [aux_sym_cmd_identifier_token37] = ACTIONS(933), + [aux_sym_cmd_identifier_token38] = ACTIONS(931), + [aux_sym_cmd_identifier_token39] = ACTIONS(933), + [aux_sym_cmd_identifier_token40] = ACTIONS(933), + [anon_sym_def] = ACTIONS(931), + [anon_sym_export_DASHenv] = ACTIONS(931), + [anon_sym_extern] = ACTIONS(931), + [anon_sym_module] = ACTIONS(931), + [anon_sym_use] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_COMMA] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_error] = ACTIONS(931), + [anon_sym_DASH2] = ACTIONS(931), + [anon_sym_break] = ACTIONS(931), + [anon_sym_continue] = ACTIONS(931), + [anon_sym_for] = ACTIONS(931), + [anon_sym_in2] = ACTIONS(931), + [anon_sym_loop] = ACTIONS(931), + [anon_sym_make] = ACTIONS(931), + [anon_sym_while] = ACTIONS(931), + [anon_sym_do] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_else] = ACTIONS(931), + [anon_sym_match] = ACTIONS(931), + [anon_sym_RBRACE] = ACTIONS(933), + [anon_sym_try] = ACTIONS(931), + [anon_sym_catch] = ACTIONS(931), + [anon_sym_return] = ACTIONS(931), + [anon_sym_source] = ACTIONS(931), + [anon_sym_source_DASHenv] = ACTIONS(931), + [anon_sym_hide] = ACTIONS(931), + [anon_sym_hide_DASHenv] = ACTIONS(931), + [anon_sym_overlay] = ACTIONS(931), + [anon_sym_as] = ACTIONS(931), + [anon_sym_PLUS2] = ACTIONS(931), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(933), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(933), + [aux_sym__val_number_decimal_token1] = ACTIONS(931), + [aux_sym__val_number_decimal_token2] = ACTIONS(933), + [aux_sym__val_number_decimal_token3] = ACTIONS(933), + [aux_sym__val_number_decimal_token4] = ACTIONS(933), + [aux_sym__val_number_token1] = ACTIONS(933), + [aux_sym__val_number_token2] = ACTIONS(933), + [aux_sym__val_number_token3] = ACTIONS(933), + [aux_sym__val_number_token4] = ACTIONS(931), + [aux_sym__val_number_token5] = ACTIONS(931), + [aux_sym__val_number_token6] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym__str_single_quotes] = ACTIONS(933), + [sym__str_back_ticks] = ACTIONS(933), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(933), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(933), + [anon_sym_register] = ACTIONS(931), + [anon_sym_COLON2] = ACTIONS(933), + [anon_sym_DOT2] = ACTIONS(1931), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(933), + }, + [432] = { + [sym_comment] = STATE(432), + [anon_sym_export] = ACTIONS(1934), + [anon_sym_alias] = ACTIONS(1934), + [anon_sym_let] = ACTIONS(1934), + [anon_sym_let_DASHenv] = ACTIONS(1934), + [anon_sym_mut] = ACTIONS(1934), + [anon_sym_const] = ACTIONS(1934), + [aux_sym_cmd_identifier_token1] = ACTIONS(1934), + [aux_sym_cmd_identifier_token2] = ACTIONS(1934), + [aux_sym_cmd_identifier_token3] = ACTIONS(1934), + [aux_sym_cmd_identifier_token4] = ACTIONS(1934), + [aux_sym_cmd_identifier_token5] = ACTIONS(1934), + [aux_sym_cmd_identifier_token6] = ACTIONS(1934), + [aux_sym_cmd_identifier_token7] = ACTIONS(1934), + [aux_sym_cmd_identifier_token8] = ACTIONS(1934), + [aux_sym_cmd_identifier_token9] = ACTIONS(1934), + [aux_sym_cmd_identifier_token10] = ACTIONS(1934), + [aux_sym_cmd_identifier_token11] = ACTIONS(1934), + [aux_sym_cmd_identifier_token12] = ACTIONS(1934), + [aux_sym_cmd_identifier_token13] = ACTIONS(1934), + [aux_sym_cmd_identifier_token14] = ACTIONS(1934), + [aux_sym_cmd_identifier_token15] = ACTIONS(1934), + [aux_sym_cmd_identifier_token16] = ACTIONS(1934), + [aux_sym_cmd_identifier_token17] = ACTIONS(1934), + [aux_sym_cmd_identifier_token18] = ACTIONS(1934), + [aux_sym_cmd_identifier_token19] = ACTIONS(1934), + [aux_sym_cmd_identifier_token20] = ACTIONS(1934), + [aux_sym_cmd_identifier_token21] = ACTIONS(1934), + [aux_sym_cmd_identifier_token22] = ACTIONS(1934), + [aux_sym_cmd_identifier_token23] = ACTIONS(1934), + [aux_sym_cmd_identifier_token24] = ACTIONS(1934), + [aux_sym_cmd_identifier_token25] = ACTIONS(1934), + [aux_sym_cmd_identifier_token26] = ACTIONS(1934), + [aux_sym_cmd_identifier_token27] = ACTIONS(1934), + [aux_sym_cmd_identifier_token28] = ACTIONS(1934), + [aux_sym_cmd_identifier_token29] = ACTIONS(1934), + [aux_sym_cmd_identifier_token30] = ACTIONS(1934), + [aux_sym_cmd_identifier_token31] = ACTIONS(1934), + [aux_sym_cmd_identifier_token32] = ACTIONS(1934), + [aux_sym_cmd_identifier_token33] = ACTIONS(1934), + [aux_sym_cmd_identifier_token34] = ACTIONS(1934), + [aux_sym_cmd_identifier_token35] = ACTIONS(1934), + [aux_sym_cmd_identifier_token36] = ACTIONS(1934), + [aux_sym_cmd_identifier_token37] = ACTIONS(1934), + [aux_sym_cmd_identifier_token38] = ACTIONS(1934), + [aux_sym_cmd_identifier_token39] = ACTIONS(1934), + [aux_sym_cmd_identifier_token40] = ACTIONS(1934), + [anon_sym_def] = ACTIONS(1934), + [anon_sym_export_DASHenv] = ACTIONS(1934), + [anon_sym_extern] = ACTIONS(1934), + [anon_sym_module] = ACTIONS(1934), + [anon_sym_use] = ACTIONS(1934), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_COMMA] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1934), + [anon_sym_error] = ACTIONS(1934), + [anon_sym_DASH2] = ACTIONS(1934), + [anon_sym_break] = ACTIONS(1934), + [anon_sym_continue] = ACTIONS(1934), + [anon_sym_for] = ACTIONS(1934), + [anon_sym_in2] = ACTIONS(1934), + [anon_sym_loop] = ACTIONS(1934), + [anon_sym_make] = ACTIONS(1934), + [anon_sym_while] = ACTIONS(1934), + [anon_sym_do] = ACTIONS(1934), + [anon_sym_if] = ACTIONS(1934), + [anon_sym_else] = ACTIONS(1934), + [anon_sym_match] = ACTIONS(1934), + [anon_sym_RBRACE] = ACTIONS(1934), + [anon_sym_try] = ACTIONS(1934), + [anon_sym_catch] = ACTIONS(1934), + [anon_sym_return] = ACTIONS(1934), + [anon_sym_source] = ACTIONS(1934), + [anon_sym_source_DASHenv] = ACTIONS(1934), + [anon_sym_hide] = ACTIONS(1934), + [anon_sym_hide_DASHenv] = ACTIONS(1934), + [anon_sym_overlay] = ACTIONS(1934), + [anon_sym_as] = ACTIONS(1934), + [anon_sym_PLUS2] = ACTIONS(1934), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1934), + [anon_sym_DOT_DOT2] = ACTIONS(1936), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1938), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1938), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1934), + [aux_sym__val_number_decimal_token1] = ACTIONS(1934), + [aux_sym__val_number_decimal_token2] = ACTIONS(1934), + [aux_sym__val_number_decimal_token3] = ACTIONS(1934), + [aux_sym__val_number_decimal_token4] = ACTIONS(1934), + [aux_sym__val_number_token1] = ACTIONS(1934), + [aux_sym__val_number_token2] = ACTIONS(1934), + [aux_sym__val_number_token3] = ACTIONS(1934), + [aux_sym__val_number_token4] = ACTIONS(1934), + [aux_sym__val_number_token5] = ACTIONS(1934), + [aux_sym__val_number_token6] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1934), + [sym__str_single_quotes] = ACTIONS(1934), + [sym__str_back_ticks] = ACTIONS(1934), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1934), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1934), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1934), + [sym__entry_separator] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1934), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1940), + }, + [433] = { + [sym_cell_path] = STATE(674), + [sym_path] = STATE(541), + [sym_comment] = STATE(433), + [aux_sym_cell_path_repeat1] = STATE(430), + [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_COMMA] = ACTIONS(1885), + [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(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_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_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_DOLLAR_SQUOTE] = ACTIONS(1885), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1885), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1885), + [anon_sym_register] = ACTIONS(1883), + [anon_sym_DOT2] = ACTIONS(1821), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1885), + }, + [434] = { + [sym_comment] = STATE(434), [anon_sym_export] = ACTIONS(970), [anon_sym_alias] = ACTIONS(970), [anon_sym_let] = ACTIONS(970), @@ -122887,52 +122088,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(970), [anon_sym_const] = ACTIONS(970), [aux_sym_cmd_identifier_token1] = ACTIONS(970), - [aux_sym_cmd_identifier_token2] = ACTIONS(970), - [aux_sym_cmd_identifier_token3] = ACTIONS(970), - [aux_sym_cmd_identifier_token4] = ACTIONS(970), - [aux_sym_cmd_identifier_token5] = ACTIONS(970), - [aux_sym_cmd_identifier_token6] = ACTIONS(970), - [aux_sym_cmd_identifier_token7] = ACTIONS(970), + [aux_sym_cmd_identifier_token2] = ACTIONS(972), + [aux_sym_cmd_identifier_token3] = ACTIONS(972), + [aux_sym_cmd_identifier_token4] = ACTIONS(972), + [aux_sym_cmd_identifier_token5] = ACTIONS(972), + [aux_sym_cmd_identifier_token6] = ACTIONS(972), + [aux_sym_cmd_identifier_token7] = ACTIONS(972), [aux_sym_cmd_identifier_token8] = ACTIONS(970), [aux_sym_cmd_identifier_token9] = ACTIONS(970), - [aux_sym_cmd_identifier_token10] = ACTIONS(970), - [aux_sym_cmd_identifier_token11] = ACTIONS(970), + [aux_sym_cmd_identifier_token10] = ACTIONS(972), + [aux_sym_cmd_identifier_token11] = ACTIONS(972), [aux_sym_cmd_identifier_token12] = ACTIONS(970), [aux_sym_cmd_identifier_token13] = ACTIONS(970), [aux_sym_cmd_identifier_token14] = ACTIONS(970), [aux_sym_cmd_identifier_token15] = ACTIONS(970), - [aux_sym_cmd_identifier_token16] = ACTIONS(970), - [aux_sym_cmd_identifier_token17] = ACTIONS(970), - [aux_sym_cmd_identifier_token18] = ACTIONS(970), - [aux_sym_cmd_identifier_token19] = ACTIONS(970), - [aux_sym_cmd_identifier_token20] = ACTIONS(970), - [aux_sym_cmd_identifier_token21] = ACTIONS(970), - [aux_sym_cmd_identifier_token22] = ACTIONS(970), - [aux_sym_cmd_identifier_token23] = ACTIONS(970), - [aux_sym_cmd_identifier_token24] = ACTIONS(970), - [aux_sym_cmd_identifier_token25] = ACTIONS(970), - [aux_sym_cmd_identifier_token26] = ACTIONS(970), - [aux_sym_cmd_identifier_token27] = ACTIONS(970), - [aux_sym_cmd_identifier_token28] = ACTIONS(970), - [aux_sym_cmd_identifier_token29] = ACTIONS(970), - [aux_sym_cmd_identifier_token30] = ACTIONS(970), - [aux_sym_cmd_identifier_token31] = ACTIONS(970), - [aux_sym_cmd_identifier_token32] = ACTIONS(970), - [aux_sym_cmd_identifier_token33] = ACTIONS(970), + [aux_sym_cmd_identifier_token16] = ACTIONS(972), + [aux_sym_cmd_identifier_token17] = ACTIONS(972), + [aux_sym_cmd_identifier_token18] = ACTIONS(972), + [aux_sym_cmd_identifier_token19] = ACTIONS(972), + [aux_sym_cmd_identifier_token20] = ACTIONS(972), + [aux_sym_cmd_identifier_token21] = ACTIONS(972), + [aux_sym_cmd_identifier_token22] = ACTIONS(972), + [aux_sym_cmd_identifier_token23] = ACTIONS(972), + [aux_sym_cmd_identifier_token24] = ACTIONS(972), + [aux_sym_cmd_identifier_token25] = ACTIONS(972), + [aux_sym_cmd_identifier_token26] = ACTIONS(972), + [aux_sym_cmd_identifier_token27] = ACTIONS(972), + [aux_sym_cmd_identifier_token28] = ACTIONS(972), + [aux_sym_cmd_identifier_token29] = ACTIONS(972), + [aux_sym_cmd_identifier_token30] = ACTIONS(972), + [aux_sym_cmd_identifier_token31] = ACTIONS(972), + [aux_sym_cmd_identifier_token32] = ACTIONS(972), + [aux_sym_cmd_identifier_token33] = ACTIONS(972), [aux_sym_cmd_identifier_token34] = ACTIONS(970), - [aux_sym_cmd_identifier_token35] = ACTIONS(970), - [aux_sym_cmd_identifier_token36] = ACTIONS(970), - [aux_sym_cmd_identifier_token37] = ACTIONS(970), + [aux_sym_cmd_identifier_token35] = ACTIONS(972), + [aux_sym_cmd_identifier_token36] = ACTIONS(972), + [aux_sym_cmd_identifier_token37] = ACTIONS(972), [aux_sym_cmd_identifier_token38] = ACTIONS(970), - [aux_sym_cmd_identifier_token39] = ACTIONS(970), - [aux_sym_cmd_identifier_token40] = ACTIONS(970), + [aux_sym_cmd_identifier_token39] = ACTIONS(972), + [aux_sym_cmd_identifier_token40] = ACTIONS(972), [anon_sym_def] = ACTIONS(970), [anon_sym_export_DASHenv] = ACTIONS(970), [anon_sym_extern] = ACTIONS(970), [anon_sym_module] = ACTIONS(970), [anon_sym_use] = ACTIONS(970), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_COMMA] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(972), + [anon_sym_COMMA] = ACTIONS(972), [anon_sym_DOLLAR] = ACTIONS(970), [anon_sym_error] = ACTIONS(970), [anon_sym_DASH2] = ACTIONS(970), @@ -122947,7 +122148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(970), [anon_sym_else] = ACTIONS(970), [anon_sym_match] = ACTIONS(970), - [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(972), [anon_sym_try] = ACTIONS(970), [anon_sym_catch] = ACTIONS(970), [anon_sym_return] = ACTIONS(970), @@ -122958,1508 +122159,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(970), [anon_sym_as] = ACTIONS(970), [anon_sym_PLUS2] = ACTIONS(970), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(970), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(972), [anon_sym_DOT_DOT2] = ACTIONS(970), [anon_sym_DOT_DOT_EQ2] = ACTIONS(972), [anon_sym_DOT_DOT_LT2] = ACTIONS(972), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(970), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(972), [aux_sym__val_number_decimal_token1] = ACTIONS(970), - [aux_sym__val_number_decimal_token2] = ACTIONS(970), - [aux_sym__val_number_decimal_token3] = ACTIONS(970), - [aux_sym__val_number_decimal_token4] = ACTIONS(970), - [aux_sym__val_number_token1] = ACTIONS(970), - [aux_sym__val_number_token2] = ACTIONS(970), - [aux_sym__val_number_token3] = ACTIONS(970), - [aux_sym__val_number_token4] = ACTIONS(970), - [aux_sym__val_number_token5] = ACTIONS(970), - [aux_sym__val_number_token6] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [sym__str_single_quotes] = ACTIONS(970), - [sym__str_back_ticks] = ACTIONS(970), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(970), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(970), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(970), - [sym__entry_separator] = ACTIONS(972), - [anon_sym_register] = ACTIONS(970), - [anon_sym_DOT2] = ACTIONS(970), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(972), - }, - [432] = { - [sym_cell_path] = STATE(602), - [sym_path] = STATE(585), - [sym_comment] = STATE(432), - [aux_sym_cell_path_repeat1] = STATE(443), - [anon_sym_export] = ACTIONS(925), - [anon_sym_alias] = ACTIONS(925), - [anon_sym_let] = ACTIONS(925), - [anon_sym_let_DASHenv] = ACTIONS(925), - [anon_sym_mut] = ACTIONS(925), - [anon_sym_const] = ACTIONS(925), - [aux_sym_cmd_identifier_token1] = ACTIONS(925), - [aux_sym_cmd_identifier_token2] = ACTIONS(927), - [aux_sym_cmd_identifier_token3] = ACTIONS(927), - [aux_sym_cmd_identifier_token4] = ACTIONS(927), - [aux_sym_cmd_identifier_token5] = ACTIONS(927), - [aux_sym_cmd_identifier_token6] = ACTIONS(927), - [aux_sym_cmd_identifier_token7] = ACTIONS(927), - [aux_sym_cmd_identifier_token8] = ACTIONS(925), - [aux_sym_cmd_identifier_token9] = ACTIONS(925), - [aux_sym_cmd_identifier_token10] = ACTIONS(927), - [aux_sym_cmd_identifier_token11] = ACTIONS(927), - [aux_sym_cmd_identifier_token12] = ACTIONS(925), - [aux_sym_cmd_identifier_token13] = ACTIONS(925), - [aux_sym_cmd_identifier_token14] = ACTIONS(925), - [aux_sym_cmd_identifier_token15] = ACTIONS(925), - [aux_sym_cmd_identifier_token16] = ACTIONS(927), - [aux_sym_cmd_identifier_token17] = ACTIONS(927), - [aux_sym_cmd_identifier_token18] = ACTIONS(927), - [aux_sym_cmd_identifier_token19] = ACTIONS(927), - [aux_sym_cmd_identifier_token20] = ACTIONS(927), - [aux_sym_cmd_identifier_token21] = ACTIONS(927), - [aux_sym_cmd_identifier_token22] = ACTIONS(927), - [aux_sym_cmd_identifier_token23] = ACTIONS(927), - [aux_sym_cmd_identifier_token24] = ACTIONS(927), - [aux_sym_cmd_identifier_token25] = ACTIONS(927), - [aux_sym_cmd_identifier_token26] = ACTIONS(927), - [aux_sym_cmd_identifier_token27] = ACTIONS(927), - [aux_sym_cmd_identifier_token28] = ACTIONS(927), - [aux_sym_cmd_identifier_token29] = ACTIONS(927), - [aux_sym_cmd_identifier_token30] = ACTIONS(927), - [aux_sym_cmd_identifier_token31] = ACTIONS(927), - [aux_sym_cmd_identifier_token32] = ACTIONS(927), - [aux_sym_cmd_identifier_token33] = ACTIONS(927), - [aux_sym_cmd_identifier_token34] = ACTIONS(925), - [aux_sym_cmd_identifier_token35] = ACTIONS(927), - [aux_sym_cmd_identifier_token36] = ACTIONS(927), - [aux_sym_cmd_identifier_token37] = ACTIONS(927), - [aux_sym_cmd_identifier_token38] = ACTIONS(925), - [aux_sym_cmd_identifier_token39] = ACTIONS(927), - [aux_sym_cmd_identifier_token40] = ACTIONS(927), - [anon_sym_def] = ACTIONS(925), - [anon_sym_export_DASHenv] = ACTIONS(925), - [anon_sym_extern] = ACTIONS(925), - [anon_sym_module] = ACTIONS(925), - [anon_sym_use] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(927), - [anon_sym_COMMA] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(925), - [anon_sym_error] = ACTIONS(925), - [anon_sym_DASH2] = ACTIONS(925), - [anon_sym_break] = ACTIONS(925), - [anon_sym_continue] = ACTIONS(925), - [anon_sym_for] = ACTIONS(925), - [anon_sym_in2] = ACTIONS(925), - [anon_sym_loop] = ACTIONS(925), - [anon_sym_make] = ACTIONS(925), - [anon_sym_while] = ACTIONS(925), - [anon_sym_do] = ACTIONS(925), - [anon_sym_if] = ACTIONS(925), - [anon_sym_else] = ACTIONS(925), - [anon_sym_match] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(927), - [anon_sym_try] = ACTIONS(925), - [anon_sym_catch] = ACTIONS(925), - [anon_sym_return] = ACTIONS(925), - [anon_sym_source] = ACTIONS(925), - [anon_sym_source_DASHenv] = ACTIONS(925), - [anon_sym_hide] = ACTIONS(925), - [anon_sym_hide_DASHenv] = ACTIONS(925), - [anon_sym_overlay] = ACTIONS(925), - [anon_sym_as] = ACTIONS(925), - [anon_sym_PLUS2] = ACTIONS(925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(927), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(927), - [aux_sym__val_number_decimal_token1] = ACTIONS(925), - [aux_sym__val_number_decimal_token2] = ACTIONS(927), - [aux_sym__val_number_decimal_token3] = ACTIONS(927), - [aux_sym__val_number_decimal_token4] = ACTIONS(927), - [aux_sym__val_number_token1] = ACTIONS(927), - [aux_sym__val_number_token2] = ACTIONS(927), - [aux_sym__val_number_token3] = ACTIONS(927), - [aux_sym__val_number_token4] = ACTIONS(925), - [aux_sym__val_number_token5] = ACTIONS(925), - [aux_sym__val_number_token6] = ACTIONS(925), - [anon_sym_DQUOTE] = ACTIONS(927), - [sym__str_single_quotes] = ACTIONS(927), - [sym__str_back_ticks] = ACTIONS(927), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(927), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(927), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(927), - [anon_sym_register] = ACTIONS(925), - [anon_sym_COLON2] = ACTIONS(927), - [anon_sym_DOT2] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(927), - }, - [433] = { - [sym_comment] = STATE(433), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_alias] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_let_DASHenv] = ACTIONS(1811), - [anon_sym_mut] = ACTIONS(1811), - [anon_sym_const] = ACTIONS(1811), - [aux_sym_cmd_identifier_token1] = ACTIONS(1811), - [aux_sym_cmd_identifier_token2] = ACTIONS(1819), - [aux_sym_cmd_identifier_token3] = ACTIONS(1819), - [aux_sym_cmd_identifier_token4] = ACTIONS(1819), - [aux_sym_cmd_identifier_token5] = ACTIONS(1819), - [aux_sym_cmd_identifier_token6] = ACTIONS(1819), - [aux_sym_cmd_identifier_token7] = ACTIONS(1819), - [aux_sym_cmd_identifier_token8] = ACTIONS(1811), - [aux_sym_cmd_identifier_token9] = ACTIONS(1811), - [aux_sym_cmd_identifier_token10] = ACTIONS(1819), - [aux_sym_cmd_identifier_token11] = ACTIONS(1819), - [aux_sym_cmd_identifier_token12] = ACTIONS(1811), - [aux_sym_cmd_identifier_token13] = ACTIONS(1811), - [aux_sym_cmd_identifier_token14] = ACTIONS(1811), - [aux_sym_cmd_identifier_token15] = ACTIONS(1811), - [aux_sym_cmd_identifier_token16] = ACTIONS(1819), - [aux_sym_cmd_identifier_token17] = ACTIONS(1819), - [aux_sym_cmd_identifier_token18] = ACTIONS(1819), - [aux_sym_cmd_identifier_token19] = ACTIONS(1819), - [aux_sym_cmd_identifier_token20] = ACTIONS(1819), - [aux_sym_cmd_identifier_token21] = ACTIONS(1819), - [aux_sym_cmd_identifier_token22] = ACTIONS(1819), - [aux_sym_cmd_identifier_token23] = ACTIONS(1819), - [aux_sym_cmd_identifier_token24] = ACTIONS(1819), - [aux_sym_cmd_identifier_token25] = ACTIONS(1819), - [aux_sym_cmd_identifier_token26] = ACTIONS(1819), - [aux_sym_cmd_identifier_token27] = ACTIONS(1819), - [aux_sym_cmd_identifier_token28] = ACTIONS(1819), - [aux_sym_cmd_identifier_token29] = ACTIONS(1819), - [aux_sym_cmd_identifier_token30] = ACTIONS(1819), - [aux_sym_cmd_identifier_token31] = ACTIONS(1819), - [aux_sym_cmd_identifier_token32] = ACTIONS(1819), - [aux_sym_cmd_identifier_token33] = ACTIONS(1819), - [aux_sym_cmd_identifier_token34] = ACTIONS(1811), - [aux_sym_cmd_identifier_token35] = ACTIONS(1819), - [aux_sym_cmd_identifier_token36] = ACTIONS(1819), - [aux_sym_cmd_identifier_token37] = ACTIONS(1819), - [aux_sym_cmd_identifier_token38] = ACTIONS(1811), - [aux_sym_cmd_identifier_token39] = ACTIONS(1819), - [aux_sym_cmd_identifier_token40] = ACTIONS(1819), - [anon_sym_def] = ACTIONS(1811), - [anon_sym_export_DASHenv] = ACTIONS(1811), - [anon_sym_extern] = ACTIONS(1811), - [anon_sym_module] = ACTIONS(1811), - [anon_sym_use] = ACTIONS(1811), - [anon_sym_LPAREN] = ACTIONS(1811), - [anon_sym_COMMA] = ACTIONS(1819), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_error] = ACTIONS(1811), - [anon_sym_DASH2] = ACTIONS(1811), - [anon_sym_break] = ACTIONS(1811), - [anon_sym_continue] = ACTIONS(1811), - [anon_sym_for] = ACTIONS(1811), - [anon_sym_in2] = ACTIONS(1811), - [anon_sym_loop] = ACTIONS(1811), - [anon_sym_make] = ACTIONS(1811), - [anon_sym_while] = ACTIONS(1811), - [anon_sym_do] = ACTIONS(1811), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_else] = ACTIONS(1811), - [anon_sym_match] = ACTIONS(1811), - [anon_sym_RBRACE] = ACTIONS(1819), - [anon_sym_try] = ACTIONS(1811), - [anon_sym_catch] = ACTIONS(1811), - [anon_sym_return] = ACTIONS(1811), - [anon_sym_source] = ACTIONS(1811), - [anon_sym_source_DASHenv] = ACTIONS(1811), - [anon_sym_hide] = ACTIONS(1811), - [anon_sym_hide_DASHenv] = ACTIONS(1811), - [anon_sym_overlay] = ACTIONS(1811), - [anon_sym_as] = ACTIONS(1811), - [anon_sym_LPAREN2] = ACTIONS(1813), - [anon_sym_PLUS2] = ACTIONS(1811), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1819), - [anon_sym_DOT_DOT2] = ACTIONS(1951), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1953), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1819), - [aux_sym__val_number_decimal_token1] = ACTIONS(1811), - [aux_sym__val_number_decimal_token2] = ACTIONS(1819), - [aux_sym__val_number_decimal_token3] = ACTIONS(1819), - [aux_sym__val_number_decimal_token4] = ACTIONS(1819), - [aux_sym__val_number_token1] = ACTIONS(1819), - [aux_sym__val_number_token2] = ACTIONS(1819), - [aux_sym__val_number_token3] = ACTIONS(1819), - [aux_sym__val_number_token4] = ACTIONS(1811), - [aux_sym__val_number_token5] = ACTIONS(1811), - [aux_sym__val_number_token6] = ACTIONS(1811), - [anon_sym_DQUOTE] = ACTIONS(1819), - [sym__str_single_quotes] = ACTIONS(1819), - [sym__str_back_ticks] = ACTIONS(1819), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1819), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1819), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1819), - [anon_sym_register] = ACTIONS(1811), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1447), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1819), - }, - [434] = { - [sym_cell_path] = STATE(618), - [sym_path] = STATE(558), - [sym_comment] = STATE(434), - [aux_sym_cell_path_repeat1] = STATE(446), - [anon_sym_export] = ACTIONS(1955), - [anon_sym_alias] = ACTIONS(1955), - [anon_sym_let] = ACTIONS(1955), - [anon_sym_let_DASHenv] = ACTIONS(1955), - [anon_sym_mut] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [aux_sym_cmd_identifier_token1] = ACTIONS(1955), - [aux_sym_cmd_identifier_token2] = ACTIONS(1955), - [aux_sym_cmd_identifier_token3] = ACTIONS(1955), - [aux_sym_cmd_identifier_token4] = ACTIONS(1955), - [aux_sym_cmd_identifier_token5] = ACTIONS(1955), - [aux_sym_cmd_identifier_token6] = ACTIONS(1955), - [aux_sym_cmd_identifier_token7] = ACTIONS(1955), - [aux_sym_cmd_identifier_token8] = ACTIONS(1955), - [aux_sym_cmd_identifier_token9] = ACTIONS(1955), - [aux_sym_cmd_identifier_token10] = ACTIONS(1955), - [aux_sym_cmd_identifier_token11] = ACTIONS(1955), - [aux_sym_cmd_identifier_token12] = ACTIONS(1955), - [aux_sym_cmd_identifier_token13] = ACTIONS(1955), - [aux_sym_cmd_identifier_token14] = ACTIONS(1955), - [aux_sym_cmd_identifier_token15] = ACTIONS(1955), - [aux_sym_cmd_identifier_token16] = ACTIONS(1955), - [aux_sym_cmd_identifier_token17] = ACTIONS(1955), - [aux_sym_cmd_identifier_token18] = ACTIONS(1955), - [aux_sym_cmd_identifier_token19] = ACTIONS(1955), - [aux_sym_cmd_identifier_token20] = ACTIONS(1955), - [aux_sym_cmd_identifier_token21] = ACTIONS(1955), - [aux_sym_cmd_identifier_token22] = ACTIONS(1955), - [aux_sym_cmd_identifier_token23] = ACTIONS(1955), - [aux_sym_cmd_identifier_token24] = ACTIONS(1955), - [aux_sym_cmd_identifier_token25] = ACTIONS(1955), - [aux_sym_cmd_identifier_token26] = ACTIONS(1955), - [aux_sym_cmd_identifier_token27] = ACTIONS(1955), - [aux_sym_cmd_identifier_token28] = ACTIONS(1955), - [aux_sym_cmd_identifier_token29] = ACTIONS(1955), - [aux_sym_cmd_identifier_token30] = ACTIONS(1955), - [aux_sym_cmd_identifier_token31] = ACTIONS(1955), - [aux_sym_cmd_identifier_token32] = ACTIONS(1955), - [aux_sym_cmd_identifier_token33] = ACTIONS(1955), - [aux_sym_cmd_identifier_token34] = ACTIONS(1955), - [aux_sym_cmd_identifier_token35] = ACTIONS(1955), - [aux_sym_cmd_identifier_token36] = ACTIONS(1955), - [aux_sym_cmd_identifier_token37] = ACTIONS(1955), - [aux_sym_cmd_identifier_token38] = ACTIONS(1955), - [aux_sym_cmd_identifier_token39] = ACTIONS(1955), - [aux_sym_cmd_identifier_token40] = ACTIONS(1955), - [anon_sym_def] = ACTIONS(1955), - [anon_sym_export_DASHenv] = ACTIONS(1955), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym_module] = ACTIONS(1955), - [anon_sym_use] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_COMMA] = ACTIONS(1955), - [anon_sym_DOLLAR] = ACTIONS(1955), - [anon_sym_error] = ACTIONS(1955), - [anon_sym_DASH2] = ACTIONS(1955), - [anon_sym_break] = ACTIONS(1955), - [anon_sym_continue] = ACTIONS(1955), - [anon_sym_for] = ACTIONS(1955), - [anon_sym_in2] = ACTIONS(1955), - [anon_sym_loop] = ACTIONS(1955), - [anon_sym_make] = ACTIONS(1955), - [anon_sym_while] = ACTIONS(1955), - [anon_sym_do] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1955), - [anon_sym_else] = ACTIONS(1955), - [anon_sym_match] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1955), - [anon_sym_try] = ACTIONS(1955), - [anon_sym_catch] = ACTIONS(1955), - [anon_sym_return] = ACTIONS(1955), - [anon_sym_source] = ACTIONS(1955), - [anon_sym_source_DASHenv] = ACTIONS(1955), - [anon_sym_hide] = ACTIONS(1955), - [anon_sym_hide_DASHenv] = ACTIONS(1955), - [anon_sym_overlay] = ACTIONS(1955), - [anon_sym_as] = ACTIONS(1955), - [anon_sym_PLUS2] = ACTIONS(1955), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1955), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1955), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1955), - [aux_sym__val_number_decimal_token3] = ACTIONS(1955), - [aux_sym__val_number_decimal_token4] = ACTIONS(1955), - [aux_sym__val_number_token1] = ACTIONS(1955), - [aux_sym__val_number_token2] = ACTIONS(1955), - [aux_sym__val_number_token3] = ACTIONS(1955), - [aux_sym__val_number_token4] = ACTIONS(1955), - [aux_sym__val_number_token5] = ACTIONS(1955), - [aux_sym__val_number_token6] = ACTIONS(1955), - [anon_sym_DQUOTE] = ACTIONS(1955), - [sym__str_single_quotes] = ACTIONS(1955), - [sym__str_back_ticks] = ACTIONS(1955), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1955), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1955), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1955), - [sym__entry_separator] = ACTIONS(1957), - [anon_sym_register] = ACTIONS(1955), - [anon_sym_DOT2] = ACTIONS(1833), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1957), - }, - [435] = { - [sym_cell_path] = STATE(636), - [sym_path] = STATE(558), - [sym_comment] = STATE(435), - [aux_sym_cell_path_repeat1] = STATE(446), - [anon_sym_export] = ACTIONS(1959), - [anon_sym_alias] = ACTIONS(1959), - [anon_sym_let] = ACTIONS(1959), - [anon_sym_let_DASHenv] = ACTIONS(1959), - [anon_sym_mut] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(1959), - [aux_sym_cmd_identifier_token1] = ACTIONS(1959), - [aux_sym_cmd_identifier_token2] = ACTIONS(1959), - [aux_sym_cmd_identifier_token3] = ACTIONS(1959), - [aux_sym_cmd_identifier_token4] = ACTIONS(1959), - [aux_sym_cmd_identifier_token5] = ACTIONS(1959), - [aux_sym_cmd_identifier_token6] = ACTIONS(1959), - [aux_sym_cmd_identifier_token7] = ACTIONS(1959), - [aux_sym_cmd_identifier_token8] = ACTIONS(1959), - [aux_sym_cmd_identifier_token9] = ACTIONS(1959), - [aux_sym_cmd_identifier_token10] = ACTIONS(1959), - [aux_sym_cmd_identifier_token11] = ACTIONS(1959), - [aux_sym_cmd_identifier_token12] = ACTIONS(1959), - [aux_sym_cmd_identifier_token13] = ACTIONS(1959), - [aux_sym_cmd_identifier_token14] = ACTIONS(1959), - [aux_sym_cmd_identifier_token15] = ACTIONS(1959), - [aux_sym_cmd_identifier_token16] = ACTIONS(1959), - [aux_sym_cmd_identifier_token17] = ACTIONS(1959), - [aux_sym_cmd_identifier_token18] = ACTIONS(1959), - [aux_sym_cmd_identifier_token19] = ACTIONS(1959), - [aux_sym_cmd_identifier_token20] = ACTIONS(1959), - [aux_sym_cmd_identifier_token21] = ACTIONS(1959), - [aux_sym_cmd_identifier_token22] = ACTIONS(1959), - [aux_sym_cmd_identifier_token23] = ACTIONS(1959), - [aux_sym_cmd_identifier_token24] = ACTIONS(1959), - [aux_sym_cmd_identifier_token25] = ACTIONS(1959), - [aux_sym_cmd_identifier_token26] = ACTIONS(1959), - [aux_sym_cmd_identifier_token27] = ACTIONS(1959), - [aux_sym_cmd_identifier_token28] = ACTIONS(1959), - [aux_sym_cmd_identifier_token29] = ACTIONS(1959), - [aux_sym_cmd_identifier_token30] = ACTIONS(1959), - [aux_sym_cmd_identifier_token31] = ACTIONS(1959), - [aux_sym_cmd_identifier_token32] = ACTIONS(1959), - [aux_sym_cmd_identifier_token33] = ACTIONS(1959), - [aux_sym_cmd_identifier_token34] = ACTIONS(1959), - [aux_sym_cmd_identifier_token35] = ACTIONS(1959), - [aux_sym_cmd_identifier_token36] = ACTIONS(1959), - [aux_sym_cmd_identifier_token37] = ACTIONS(1959), - [aux_sym_cmd_identifier_token38] = ACTIONS(1959), - [aux_sym_cmd_identifier_token39] = ACTIONS(1959), - [aux_sym_cmd_identifier_token40] = ACTIONS(1959), - [anon_sym_def] = ACTIONS(1959), - [anon_sym_export_DASHenv] = ACTIONS(1959), - [anon_sym_extern] = ACTIONS(1959), - [anon_sym_module] = ACTIONS(1959), - [anon_sym_use] = ACTIONS(1959), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_COMMA] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1959), - [anon_sym_error] = ACTIONS(1959), - [anon_sym_DASH2] = ACTIONS(1959), - [anon_sym_break] = ACTIONS(1959), - [anon_sym_continue] = ACTIONS(1959), - [anon_sym_for] = ACTIONS(1959), - [anon_sym_in2] = ACTIONS(1959), - [anon_sym_loop] = ACTIONS(1959), - [anon_sym_make] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1959), - [anon_sym_do] = ACTIONS(1959), - [anon_sym_if] = ACTIONS(1959), - [anon_sym_else] = ACTIONS(1959), - [anon_sym_match] = ACTIONS(1959), - [anon_sym_RBRACE] = ACTIONS(1959), - [anon_sym_try] = ACTIONS(1959), - [anon_sym_catch] = ACTIONS(1959), - [anon_sym_return] = ACTIONS(1959), - [anon_sym_source] = ACTIONS(1959), - [anon_sym_source_DASHenv] = ACTIONS(1959), - [anon_sym_hide] = ACTIONS(1959), - [anon_sym_hide_DASHenv] = ACTIONS(1959), - [anon_sym_overlay] = ACTIONS(1959), - [anon_sym_as] = ACTIONS(1959), - [anon_sym_PLUS2] = ACTIONS(1959), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1959), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1959), - [aux_sym__val_number_decimal_token2] = ACTIONS(1959), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), - [aux_sym__val_number_token1] = ACTIONS(1959), - [aux_sym__val_number_token2] = ACTIONS(1959), - [aux_sym__val_number_token3] = ACTIONS(1959), - [aux_sym__val_number_token4] = ACTIONS(1959), - [aux_sym__val_number_token5] = ACTIONS(1959), - [aux_sym__val_number_token6] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(1959), - [sym__str_single_quotes] = ACTIONS(1959), - [sym__str_back_ticks] = ACTIONS(1959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1959), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1959), - [sym__entry_separator] = ACTIONS(1961), - [anon_sym_register] = ACTIONS(1959), - [anon_sym_DOT2] = ACTIONS(1833), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1961), - }, - [436] = { - [sym_comment] = STATE(436), - [anon_sym_export] = ACTIONS(966), - [anon_sym_alias] = ACTIONS(966), - [anon_sym_let] = ACTIONS(966), - [anon_sym_let_DASHenv] = ACTIONS(966), - [anon_sym_mut] = ACTIONS(966), - [anon_sym_const] = ACTIONS(966), - [aux_sym_cmd_identifier_token1] = ACTIONS(966), - [aux_sym_cmd_identifier_token2] = ACTIONS(968), - [aux_sym_cmd_identifier_token3] = ACTIONS(968), - [aux_sym_cmd_identifier_token4] = ACTIONS(968), - [aux_sym_cmd_identifier_token5] = ACTIONS(968), - [aux_sym_cmd_identifier_token6] = ACTIONS(968), - [aux_sym_cmd_identifier_token7] = ACTIONS(968), - [aux_sym_cmd_identifier_token8] = ACTIONS(966), - [aux_sym_cmd_identifier_token9] = ACTIONS(966), - [aux_sym_cmd_identifier_token10] = ACTIONS(968), - [aux_sym_cmd_identifier_token11] = ACTIONS(968), - [aux_sym_cmd_identifier_token12] = ACTIONS(966), - [aux_sym_cmd_identifier_token13] = ACTIONS(966), - [aux_sym_cmd_identifier_token14] = ACTIONS(966), - [aux_sym_cmd_identifier_token15] = ACTIONS(966), - [aux_sym_cmd_identifier_token16] = ACTIONS(968), - [aux_sym_cmd_identifier_token17] = ACTIONS(968), - [aux_sym_cmd_identifier_token18] = ACTIONS(968), - [aux_sym_cmd_identifier_token19] = ACTIONS(968), - [aux_sym_cmd_identifier_token20] = ACTIONS(968), - [aux_sym_cmd_identifier_token21] = ACTIONS(968), - [aux_sym_cmd_identifier_token22] = ACTIONS(968), - [aux_sym_cmd_identifier_token23] = ACTIONS(968), - [aux_sym_cmd_identifier_token24] = ACTIONS(968), - [aux_sym_cmd_identifier_token25] = ACTIONS(968), - [aux_sym_cmd_identifier_token26] = ACTIONS(968), - [aux_sym_cmd_identifier_token27] = ACTIONS(968), - [aux_sym_cmd_identifier_token28] = ACTIONS(968), - [aux_sym_cmd_identifier_token29] = ACTIONS(968), - [aux_sym_cmd_identifier_token30] = ACTIONS(968), - [aux_sym_cmd_identifier_token31] = ACTIONS(968), - [aux_sym_cmd_identifier_token32] = ACTIONS(968), - [aux_sym_cmd_identifier_token33] = ACTIONS(968), - [aux_sym_cmd_identifier_token34] = ACTIONS(966), - [aux_sym_cmd_identifier_token35] = ACTIONS(968), - [aux_sym_cmd_identifier_token36] = ACTIONS(968), - [aux_sym_cmd_identifier_token37] = ACTIONS(968), - [aux_sym_cmd_identifier_token38] = ACTIONS(966), - [aux_sym_cmd_identifier_token39] = ACTIONS(968), - [aux_sym_cmd_identifier_token40] = ACTIONS(968), - [anon_sym_def] = ACTIONS(966), - [anon_sym_export_DASHenv] = ACTIONS(966), - [anon_sym_extern] = ACTIONS(966), - [anon_sym_module] = ACTIONS(966), - [anon_sym_use] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_COMMA] = ACTIONS(968), - [anon_sym_DOLLAR] = ACTIONS(966), - [anon_sym_error] = ACTIONS(966), - [anon_sym_DASH2] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_in2] = ACTIONS(966), - [anon_sym_loop] = ACTIONS(966), - [anon_sym_make] = ACTIONS(966), - [anon_sym_while] = ACTIONS(966), - [anon_sym_do] = ACTIONS(966), - [anon_sym_if] = ACTIONS(966), - [anon_sym_else] = ACTIONS(966), - [anon_sym_match] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_try] = ACTIONS(966), - [anon_sym_catch] = ACTIONS(966), - [anon_sym_return] = ACTIONS(966), - [anon_sym_source] = ACTIONS(966), - [anon_sym_source_DASHenv] = ACTIONS(966), - [anon_sym_hide] = ACTIONS(966), - [anon_sym_hide_DASHenv] = ACTIONS(966), - [anon_sym_overlay] = ACTIONS(966), - [anon_sym_as] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(968), - [anon_sym_DOT_DOT2] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), - [anon_sym_DOT_DOT_LT2] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(968), - [aux_sym__val_number_decimal_token1] = ACTIONS(966), - [aux_sym__val_number_decimal_token2] = ACTIONS(968), - [aux_sym__val_number_decimal_token3] = ACTIONS(968), - [aux_sym__val_number_decimal_token4] = ACTIONS(968), - [aux_sym__val_number_token1] = ACTIONS(968), - [aux_sym__val_number_token2] = ACTIONS(968), - [aux_sym__val_number_token3] = ACTIONS(968), - [aux_sym__val_number_token4] = ACTIONS(966), - [aux_sym__val_number_token5] = ACTIONS(966), - [aux_sym__val_number_token6] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(968), - [sym__str_single_quotes] = ACTIONS(968), - [sym__str_back_ticks] = ACTIONS(968), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(968), - [anon_sym_register] = ACTIONS(966), - [anon_sym_DOT2] = ACTIONS(966), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(968), - }, - [437] = { - [sym_cell_path] = STATE(721), - [sym_path] = STATE(585), - [sym_comment] = STATE(437), - [aux_sym_cell_path_repeat1] = STATE(443), - [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_COMMA] = ACTIONS(1893), - [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(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_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_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_DOLLAR_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1893), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1893), - [anon_sym_register] = ACTIONS(1891), - [anon_sym_DOT2] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1893), - }, - [438] = { - [sym_cell_path] = STATE(696), - [sym_path] = STATE(585), - [sym_comment] = STATE(438), - [aux_sym_cell_path_repeat1] = STATE(443), - [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_COMMA] = ACTIONS(1873), - [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(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_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_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_DOLLAR_SQUOTE] = ACTIONS(1873), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1873), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1873), - [anon_sym_register] = ACTIONS(1871), - [anon_sym_DOT2] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1873), - }, - [439] = { - [sym_comment] = STATE(439), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_alias] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_let_DASHenv] = ACTIONS(1711), - [anon_sym_mut] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [aux_sym_cmd_identifier_token1] = ACTIONS(1711), - [aux_sym_cmd_identifier_token2] = ACTIONS(1711), - [aux_sym_cmd_identifier_token3] = ACTIONS(1711), - [aux_sym_cmd_identifier_token4] = ACTIONS(1711), - [aux_sym_cmd_identifier_token5] = ACTIONS(1711), - [aux_sym_cmd_identifier_token6] = ACTIONS(1711), - [aux_sym_cmd_identifier_token7] = ACTIONS(1711), - [aux_sym_cmd_identifier_token8] = ACTIONS(1711), - [aux_sym_cmd_identifier_token9] = ACTIONS(1711), - [aux_sym_cmd_identifier_token10] = ACTIONS(1711), - [aux_sym_cmd_identifier_token11] = ACTIONS(1711), - [aux_sym_cmd_identifier_token12] = ACTIONS(1711), - [aux_sym_cmd_identifier_token13] = ACTIONS(1711), - [aux_sym_cmd_identifier_token14] = ACTIONS(1711), - [aux_sym_cmd_identifier_token15] = ACTIONS(1711), - [aux_sym_cmd_identifier_token16] = ACTIONS(1711), - [aux_sym_cmd_identifier_token17] = ACTIONS(1711), - [aux_sym_cmd_identifier_token18] = ACTIONS(1711), - [aux_sym_cmd_identifier_token19] = ACTIONS(1711), - [aux_sym_cmd_identifier_token20] = ACTIONS(1711), - [aux_sym_cmd_identifier_token21] = ACTIONS(1711), - [aux_sym_cmd_identifier_token22] = ACTIONS(1711), - [aux_sym_cmd_identifier_token23] = ACTIONS(1711), - [aux_sym_cmd_identifier_token24] = ACTIONS(1711), - [aux_sym_cmd_identifier_token25] = ACTIONS(1711), - [aux_sym_cmd_identifier_token26] = ACTIONS(1711), - [aux_sym_cmd_identifier_token27] = ACTIONS(1711), - [aux_sym_cmd_identifier_token28] = ACTIONS(1711), - [aux_sym_cmd_identifier_token29] = ACTIONS(1711), - [aux_sym_cmd_identifier_token30] = ACTIONS(1711), - [aux_sym_cmd_identifier_token31] = ACTIONS(1711), - [aux_sym_cmd_identifier_token32] = ACTIONS(1711), - [aux_sym_cmd_identifier_token33] = ACTIONS(1711), - [aux_sym_cmd_identifier_token34] = ACTIONS(1711), - [aux_sym_cmd_identifier_token35] = ACTIONS(1711), - [aux_sym_cmd_identifier_token36] = ACTIONS(1711), - [aux_sym_cmd_identifier_token37] = ACTIONS(1711), - [aux_sym_cmd_identifier_token38] = ACTIONS(1711), - [aux_sym_cmd_identifier_token39] = ACTIONS(1711), - [aux_sym_cmd_identifier_token40] = ACTIONS(1711), - [anon_sym_def] = ACTIONS(1711), - [anon_sym_export_DASHenv] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_use] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_COMMA] = ACTIONS(1711), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_error] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_loop] = ACTIONS(1711), - [anon_sym_make] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1711), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_catch] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_source] = ACTIONS(1711), - [anon_sym_source_DASHenv] = ACTIONS(1711), - [anon_sym_hide] = ACTIONS(1711), - [anon_sym_hide_DASHenv] = ACTIONS(1711), - [anon_sym_overlay] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1711), - [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(1711), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1711), - [aux_sym__val_number_decimal_token3] = ACTIONS(1711), - [aux_sym__val_number_decimal_token4] = ACTIONS(1711), - [aux_sym__val_number_token1] = ACTIONS(1711), - [aux_sym__val_number_token2] = ACTIONS(1711), - [aux_sym__val_number_token3] = ACTIONS(1711), - [aux_sym__val_number_token4] = ACTIONS(1711), - [aux_sym__val_number_token5] = ACTIONS(1711), - [aux_sym__val_number_token6] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1711), - [sym__str_single_quotes] = ACTIONS(1711), - [sym__str_back_ticks] = ACTIONS(1711), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1711), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1711), - [sym__entry_separator] = ACTIONS(1713), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1713), - }, - [440] = { - [sym_cell_path] = STATE(698), - [sym_path] = STATE(585), - [sym_comment] = STATE(440), - [aux_sym_cell_path_repeat1] = STATE(443), - [anon_sym_export] = ACTIONS(1955), - [anon_sym_alias] = ACTIONS(1955), - [anon_sym_let] = ACTIONS(1955), - [anon_sym_let_DASHenv] = ACTIONS(1955), - [anon_sym_mut] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [aux_sym_cmd_identifier_token1] = ACTIONS(1955), - [aux_sym_cmd_identifier_token2] = ACTIONS(1957), - [aux_sym_cmd_identifier_token3] = ACTIONS(1957), - [aux_sym_cmd_identifier_token4] = ACTIONS(1957), - [aux_sym_cmd_identifier_token5] = ACTIONS(1957), - [aux_sym_cmd_identifier_token6] = ACTIONS(1957), - [aux_sym_cmd_identifier_token7] = ACTIONS(1957), - [aux_sym_cmd_identifier_token8] = ACTIONS(1955), - [aux_sym_cmd_identifier_token9] = ACTIONS(1955), - [aux_sym_cmd_identifier_token10] = ACTIONS(1957), - [aux_sym_cmd_identifier_token11] = ACTIONS(1957), - [aux_sym_cmd_identifier_token12] = ACTIONS(1955), - [aux_sym_cmd_identifier_token13] = ACTIONS(1955), - [aux_sym_cmd_identifier_token14] = ACTIONS(1955), - [aux_sym_cmd_identifier_token15] = ACTIONS(1955), - [aux_sym_cmd_identifier_token16] = ACTIONS(1957), - [aux_sym_cmd_identifier_token17] = ACTIONS(1957), - [aux_sym_cmd_identifier_token18] = ACTIONS(1957), - [aux_sym_cmd_identifier_token19] = ACTIONS(1957), - [aux_sym_cmd_identifier_token20] = ACTIONS(1957), - [aux_sym_cmd_identifier_token21] = ACTIONS(1957), - [aux_sym_cmd_identifier_token22] = ACTIONS(1957), - [aux_sym_cmd_identifier_token23] = ACTIONS(1957), - [aux_sym_cmd_identifier_token24] = ACTIONS(1957), - [aux_sym_cmd_identifier_token25] = ACTIONS(1957), - [aux_sym_cmd_identifier_token26] = ACTIONS(1957), - [aux_sym_cmd_identifier_token27] = ACTIONS(1957), - [aux_sym_cmd_identifier_token28] = ACTIONS(1957), - [aux_sym_cmd_identifier_token29] = ACTIONS(1957), - [aux_sym_cmd_identifier_token30] = ACTIONS(1957), - [aux_sym_cmd_identifier_token31] = ACTIONS(1957), - [aux_sym_cmd_identifier_token32] = ACTIONS(1957), - [aux_sym_cmd_identifier_token33] = ACTIONS(1957), - [aux_sym_cmd_identifier_token34] = ACTIONS(1955), - [aux_sym_cmd_identifier_token35] = ACTIONS(1957), - [aux_sym_cmd_identifier_token36] = ACTIONS(1957), - [aux_sym_cmd_identifier_token37] = ACTIONS(1957), - [aux_sym_cmd_identifier_token38] = ACTIONS(1955), - [aux_sym_cmd_identifier_token39] = ACTIONS(1957), - [aux_sym_cmd_identifier_token40] = ACTIONS(1957), - [anon_sym_def] = ACTIONS(1955), - [anon_sym_export_DASHenv] = ACTIONS(1955), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym_module] = ACTIONS(1955), - [anon_sym_use] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1957), - [anon_sym_COMMA] = ACTIONS(1957), - [anon_sym_DOLLAR] = ACTIONS(1955), - [anon_sym_error] = ACTIONS(1955), - [anon_sym_DASH2] = ACTIONS(1955), - [anon_sym_break] = ACTIONS(1955), - [anon_sym_continue] = ACTIONS(1955), - [anon_sym_for] = ACTIONS(1955), - [anon_sym_in2] = ACTIONS(1955), - [anon_sym_loop] = ACTIONS(1955), - [anon_sym_make] = ACTIONS(1955), - [anon_sym_while] = ACTIONS(1955), - [anon_sym_do] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1955), - [anon_sym_else] = ACTIONS(1955), - [anon_sym_match] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1957), - [anon_sym_try] = ACTIONS(1955), - [anon_sym_catch] = ACTIONS(1955), - [anon_sym_return] = ACTIONS(1955), - [anon_sym_source] = ACTIONS(1955), - [anon_sym_source_DASHenv] = ACTIONS(1955), - [anon_sym_hide] = ACTIONS(1955), - [anon_sym_hide_DASHenv] = ACTIONS(1955), - [anon_sym_overlay] = ACTIONS(1955), - [anon_sym_as] = ACTIONS(1955), - [anon_sym_PLUS2] = ACTIONS(1955), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1957), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1957), - [aux_sym__val_number_decimal_token4] = ACTIONS(1957), - [aux_sym__val_number_token1] = ACTIONS(1957), - [aux_sym__val_number_token2] = ACTIONS(1957), - [aux_sym__val_number_token3] = ACTIONS(1957), - [aux_sym__val_number_token4] = ACTIONS(1955), - [aux_sym__val_number_token5] = ACTIONS(1955), - [aux_sym__val_number_token6] = ACTIONS(1955), - [anon_sym_DQUOTE] = ACTIONS(1957), - [sym__str_single_quotes] = ACTIONS(1957), - [sym__str_back_ticks] = ACTIONS(1957), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1957), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1957), - [anon_sym_register] = ACTIONS(1955), - [anon_sym_DOT2] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1957), - }, - [441] = { - [sym_comment] = STATE(441), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_alias] = ACTIONS(1963), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_let_DASHenv] = ACTIONS(1963), - [anon_sym_mut] = ACTIONS(1963), - [anon_sym_const] = ACTIONS(1963), - [aux_sym_cmd_identifier_token1] = ACTIONS(1963), - [aux_sym_cmd_identifier_token2] = ACTIONS(1963), - [aux_sym_cmd_identifier_token3] = ACTIONS(1963), - [aux_sym_cmd_identifier_token4] = ACTIONS(1963), - [aux_sym_cmd_identifier_token5] = ACTIONS(1963), - [aux_sym_cmd_identifier_token6] = ACTIONS(1963), - [aux_sym_cmd_identifier_token7] = ACTIONS(1963), - [aux_sym_cmd_identifier_token8] = ACTIONS(1963), - [aux_sym_cmd_identifier_token9] = ACTIONS(1963), - [aux_sym_cmd_identifier_token10] = ACTIONS(1963), - [aux_sym_cmd_identifier_token11] = ACTIONS(1963), - [aux_sym_cmd_identifier_token12] = ACTIONS(1963), - [aux_sym_cmd_identifier_token13] = ACTIONS(1963), - [aux_sym_cmd_identifier_token14] = ACTIONS(1963), - [aux_sym_cmd_identifier_token15] = ACTIONS(1963), - [aux_sym_cmd_identifier_token16] = ACTIONS(1963), - [aux_sym_cmd_identifier_token17] = ACTIONS(1963), - [aux_sym_cmd_identifier_token18] = ACTIONS(1963), - [aux_sym_cmd_identifier_token19] = ACTIONS(1963), - [aux_sym_cmd_identifier_token20] = ACTIONS(1963), - [aux_sym_cmd_identifier_token21] = ACTIONS(1963), - [aux_sym_cmd_identifier_token22] = ACTIONS(1963), - [aux_sym_cmd_identifier_token23] = ACTIONS(1963), - [aux_sym_cmd_identifier_token24] = ACTIONS(1963), - [aux_sym_cmd_identifier_token25] = ACTIONS(1963), - [aux_sym_cmd_identifier_token26] = ACTIONS(1963), - [aux_sym_cmd_identifier_token27] = ACTIONS(1963), - [aux_sym_cmd_identifier_token28] = ACTIONS(1963), - [aux_sym_cmd_identifier_token29] = ACTIONS(1963), - [aux_sym_cmd_identifier_token30] = ACTIONS(1963), - [aux_sym_cmd_identifier_token31] = ACTIONS(1963), - [aux_sym_cmd_identifier_token32] = ACTIONS(1963), - [aux_sym_cmd_identifier_token33] = ACTIONS(1963), - [aux_sym_cmd_identifier_token34] = ACTIONS(1963), - [aux_sym_cmd_identifier_token35] = ACTIONS(1963), - [aux_sym_cmd_identifier_token36] = ACTIONS(1963), - [aux_sym_cmd_identifier_token37] = ACTIONS(1963), - [aux_sym_cmd_identifier_token38] = ACTIONS(1963), - [aux_sym_cmd_identifier_token39] = ACTIONS(1963), - [aux_sym_cmd_identifier_token40] = ACTIONS(1963), - [anon_sym_def] = ACTIONS(1963), - [anon_sym_export_DASHenv] = ACTIONS(1963), - [anon_sym_extern] = ACTIONS(1963), - [anon_sym_module] = ACTIONS(1963), - [anon_sym_use] = ACTIONS(1963), - [anon_sym_LPAREN] = ACTIONS(1963), - [anon_sym_COMMA] = ACTIONS(1963), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_error] = ACTIONS(1963), - [anon_sym_DASH2] = ACTIONS(1963), - [anon_sym_break] = ACTIONS(1963), - [anon_sym_continue] = ACTIONS(1963), - [anon_sym_for] = ACTIONS(1963), - [anon_sym_in2] = ACTIONS(1963), - [anon_sym_loop] = ACTIONS(1963), - [anon_sym_make] = ACTIONS(1963), - [anon_sym_while] = ACTIONS(1963), - [anon_sym_do] = ACTIONS(1963), - [anon_sym_if] = ACTIONS(1963), - [anon_sym_else] = ACTIONS(1963), - [anon_sym_match] = ACTIONS(1963), - [anon_sym_RBRACE] = ACTIONS(1963), - [anon_sym_try] = ACTIONS(1963), - [anon_sym_catch] = ACTIONS(1963), - [anon_sym_return] = ACTIONS(1963), - [anon_sym_source] = ACTIONS(1963), - [anon_sym_source_DASHenv] = ACTIONS(1963), - [anon_sym_hide] = ACTIONS(1963), - [anon_sym_hide_DASHenv] = ACTIONS(1963), - [anon_sym_overlay] = ACTIONS(1963), - [anon_sym_as] = ACTIONS(1963), - [anon_sym_PLUS2] = ACTIONS(1963), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1963), - [anon_sym_DOT_DOT2] = ACTIONS(1963), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1965), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1963), - [aux_sym__val_number_decimal_token1] = ACTIONS(1963), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1963), - [aux_sym__val_number_decimal_token4] = ACTIONS(1963), - [aux_sym__val_number_token1] = ACTIONS(1963), - [aux_sym__val_number_token2] = ACTIONS(1963), - [aux_sym__val_number_token3] = ACTIONS(1963), - [aux_sym__val_number_token4] = ACTIONS(1963), - [aux_sym__val_number_token5] = ACTIONS(1963), - [aux_sym__val_number_token6] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1963), - [sym__str_single_quotes] = ACTIONS(1963), - [sym__str_back_ticks] = ACTIONS(1963), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1963), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1963), - [sym__entry_separator] = ACTIONS(1965), - [anon_sym_register] = ACTIONS(1963), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1965), - }, - [442] = { - [sym_comment] = STATE(442), - [anon_sym_export] = ACTIONS(1967), - [anon_sym_alias] = ACTIONS(1967), - [anon_sym_let] = ACTIONS(1967), - [anon_sym_let_DASHenv] = ACTIONS(1967), - [anon_sym_mut] = ACTIONS(1967), - [anon_sym_const] = ACTIONS(1967), - [aux_sym_cmd_identifier_token1] = ACTIONS(1967), - [aux_sym_cmd_identifier_token2] = ACTIONS(1967), - [aux_sym_cmd_identifier_token3] = ACTIONS(1967), - [aux_sym_cmd_identifier_token4] = ACTIONS(1967), - [aux_sym_cmd_identifier_token5] = ACTIONS(1967), - [aux_sym_cmd_identifier_token6] = ACTIONS(1967), - [aux_sym_cmd_identifier_token7] = ACTIONS(1967), - [aux_sym_cmd_identifier_token8] = ACTIONS(1967), - [aux_sym_cmd_identifier_token9] = ACTIONS(1967), - [aux_sym_cmd_identifier_token10] = ACTIONS(1967), - [aux_sym_cmd_identifier_token11] = ACTIONS(1967), - [aux_sym_cmd_identifier_token12] = ACTIONS(1967), - [aux_sym_cmd_identifier_token13] = ACTIONS(1967), - [aux_sym_cmd_identifier_token14] = ACTIONS(1967), - [aux_sym_cmd_identifier_token15] = ACTIONS(1967), - [aux_sym_cmd_identifier_token16] = ACTIONS(1967), - [aux_sym_cmd_identifier_token17] = ACTIONS(1967), - [aux_sym_cmd_identifier_token18] = ACTIONS(1967), - [aux_sym_cmd_identifier_token19] = ACTIONS(1967), - [aux_sym_cmd_identifier_token20] = ACTIONS(1967), - [aux_sym_cmd_identifier_token21] = ACTIONS(1967), - [aux_sym_cmd_identifier_token22] = ACTIONS(1967), - [aux_sym_cmd_identifier_token23] = ACTIONS(1967), - [aux_sym_cmd_identifier_token24] = ACTIONS(1967), - [aux_sym_cmd_identifier_token25] = ACTIONS(1967), - [aux_sym_cmd_identifier_token26] = ACTIONS(1967), - [aux_sym_cmd_identifier_token27] = ACTIONS(1967), - [aux_sym_cmd_identifier_token28] = ACTIONS(1967), - [aux_sym_cmd_identifier_token29] = ACTIONS(1967), - [aux_sym_cmd_identifier_token30] = ACTIONS(1967), - [aux_sym_cmd_identifier_token31] = ACTIONS(1967), - [aux_sym_cmd_identifier_token32] = ACTIONS(1967), - [aux_sym_cmd_identifier_token33] = ACTIONS(1967), - [aux_sym_cmd_identifier_token34] = ACTIONS(1967), - [aux_sym_cmd_identifier_token35] = ACTIONS(1967), - [aux_sym_cmd_identifier_token36] = ACTIONS(1967), - [aux_sym_cmd_identifier_token37] = ACTIONS(1967), - [aux_sym_cmd_identifier_token38] = ACTIONS(1967), - [aux_sym_cmd_identifier_token39] = ACTIONS(1967), - [aux_sym_cmd_identifier_token40] = ACTIONS(1967), - [anon_sym_def] = ACTIONS(1967), - [anon_sym_export_DASHenv] = ACTIONS(1967), - [anon_sym_extern] = ACTIONS(1967), - [anon_sym_module] = ACTIONS(1967), - [anon_sym_use] = ACTIONS(1967), - [anon_sym_LPAREN] = ACTIONS(1967), - [anon_sym_COMMA] = ACTIONS(1967), - [anon_sym_DOLLAR] = ACTIONS(1967), - [anon_sym_error] = ACTIONS(1967), - [anon_sym_DASH2] = ACTIONS(1967), - [anon_sym_break] = ACTIONS(1967), - [anon_sym_continue] = ACTIONS(1967), - [anon_sym_for] = ACTIONS(1967), - [anon_sym_in2] = ACTIONS(1967), - [anon_sym_loop] = ACTIONS(1967), - [anon_sym_make] = ACTIONS(1967), - [anon_sym_while] = ACTIONS(1967), - [anon_sym_do] = ACTIONS(1967), - [anon_sym_if] = ACTIONS(1967), - [anon_sym_else] = ACTIONS(1967), - [anon_sym_match] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(1967), - [anon_sym_try] = ACTIONS(1967), - [anon_sym_catch] = ACTIONS(1967), - [anon_sym_return] = ACTIONS(1967), - [anon_sym_source] = ACTIONS(1967), - [anon_sym_source_DASHenv] = ACTIONS(1967), - [anon_sym_hide] = ACTIONS(1967), - [anon_sym_hide_DASHenv] = ACTIONS(1967), - [anon_sym_overlay] = ACTIONS(1967), - [anon_sym_as] = ACTIONS(1967), - [anon_sym_PLUS2] = ACTIONS(1967), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1967), - [anon_sym_DOT_DOT2] = ACTIONS(1967), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1969), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1967), - [aux_sym__val_number_decimal_token1] = ACTIONS(1967), - [aux_sym__val_number_decimal_token2] = ACTIONS(1967), - [aux_sym__val_number_decimal_token3] = ACTIONS(1967), - [aux_sym__val_number_decimal_token4] = ACTIONS(1967), - [aux_sym__val_number_token1] = ACTIONS(1967), - [aux_sym__val_number_token2] = ACTIONS(1967), - [aux_sym__val_number_token3] = ACTIONS(1967), - [aux_sym__val_number_token4] = ACTIONS(1967), - [aux_sym__val_number_token5] = ACTIONS(1967), - [aux_sym__val_number_token6] = ACTIONS(1967), - [anon_sym_DQUOTE] = ACTIONS(1967), - [sym__str_single_quotes] = ACTIONS(1967), - [sym__str_back_ticks] = ACTIONS(1967), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1967), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1967), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1967), - [sym__entry_separator] = ACTIONS(1969), - [anon_sym_register] = ACTIONS(1967), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1969), - }, - [443] = { - [sym_path] = STATE(585), - [sym_comment] = STATE(443), - [aux_sym_cell_path_repeat1] = STATE(444), - [anon_sym_export] = ACTIONS(931), - [anon_sym_alias] = ACTIONS(931), - [anon_sym_let] = ACTIONS(931), - [anon_sym_let_DASHenv] = ACTIONS(931), - [anon_sym_mut] = ACTIONS(931), - [anon_sym_const] = ACTIONS(931), - [aux_sym_cmd_identifier_token1] = ACTIONS(931), - [aux_sym_cmd_identifier_token2] = ACTIONS(933), - [aux_sym_cmd_identifier_token3] = ACTIONS(933), - [aux_sym_cmd_identifier_token4] = ACTIONS(933), - [aux_sym_cmd_identifier_token5] = ACTIONS(933), - [aux_sym_cmd_identifier_token6] = ACTIONS(933), - [aux_sym_cmd_identifier_token7] = ACTIONS(933), - [aux_sym_cmd_identifier_token8] = ACTIONS(931), - [aux_sym_cmd_identifier_token9] = ACTIONS(931), - [aux_sym_cmd_identifier_token10] = ACTIONS(933), - [aux_sym_cmd_identifier_token11] = ACTIONS(933), - [aux_sym_cmd_identifier_token12] = ACTIONS(931), - [aux_sym_cmd_identifier_token13] = ACTIONS(931), - [aux_sym_cmd_identifier_token14] = ACTIONS(931), - [aux_sym_cmd_identifier_token15] = ACTIONS(931), - [aux_sym_cmd_identifier_token16] = ACTIONS(933), - [aux_sym_cmd_identifier_token17] = ACTIONS(933), - [aux_sym_cmd_identifier_token18] = ACTIONS(933), - [aux_sym_cmd_identifier_token19] = ACTIONS(933), - [aux_sym_cmd_identifier_token20] = ACTIONS(933), - [aux_sym_cmd_identifier_token21] = ACTIONS(933), - [aux_sym_cmd_identifier_token22] = ACTIONS(933), - [aux_sym_cmd_identifier_token23] = ACTIONS(933), - [aux_sym_cmd_identifier_token24] = ACTIONS(933), - [aux_sym_cmd_identifier_token25] = ACTIONS(933), - [aux_sym_cmd_identifier_token26] = ACTIONS(933), - [aux_sym_cmd_identifier_token27] = ACTIONS(933), - [aux_sym_cmd_identifier_token28] = ACTIONS(933), - [aux_sym_cmd_identifier_token29] = ACTIONS(933), - [aux_sym_cmd_identifier_token30] = ACTIONS(933), - [aux_sym_cmd_identifier_token31] = ACTIONS(933), - [aux_sym_cmd_identifier_token32] = ACTIONS(933), - [aux_sym_cmd_identifier_token33] = ACTIONS(933), - [aux_sym_cmd_identifier_token34] = ACTIONS(931), - [aux_sym_cmd_identifier_token35] = ACTIONS(933), - [aux_sym_cmd_identifier_token36] = ACTIONS(933), - [aux_sym_cmd_identifier_token37] = ACTIONS(933), - [aux_sym_cmd_identifier_token38] = ACTIONS(931), - [aux_sym_cmd_identifier_token39] = ACTIONS(933), - [aux_sym_cmd_identifier_token40] = ACTIONS(933), - [anon_sym_def] = ACTIONS(931), - [anon_sym_export_DASHenv] = ACTIONS(931), - [anon_sym_extern] = ACTIONS(931), - [anon_sym_module] = ACTIONS(931), - [anon_sym_use] = ACTIONS(931), - [anon_sym_LPAREN] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(933), - [anon_sym_DOLLAR] = ACTIONS(931), - [anon_sym_error] = ACTIONS(931), - [anon_sym_DASH2] = ACTIONS(931), - [anon_sym_break] = ACTIONS(931), - [anon_sym_continue] = ACTIONS(931), - [anon_sym_for] = ACTIONS(931), - [anon_sym_in2] = ACTIONS(931), - [anon_sym_loop] = ACTIONS(931), - [anon_sym_make] = ACTIONS(931), - [anon_sym_while] = ACTIONS(931), - [anon_sym_do] = ACTIONS(931), - [anon_sym_if] = ACTIONS(931), - [anon_sym_else] = ACTIONS(931), - [anon_sym_match] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(933), - [anon_sym_try] = ACTIONS(931), - [anon_sym_catch] = ACTIONS(931), - [anon_sym_return] = ACTIONS(931), - [anon_sym_source] = ACTIONS(931), - [anon_sym_source_DASHenv] = ACTIONS(931), - [anon_sym_hide] = ACTIONS(931), - [anon_sym_hide_DASHenv] = ACTIONS(931), - [anon_sym_overlay] = ACTIONS(931), - [anon_sym_as] = ACTIONS(931), - [anon_sym_PLUS2] = ACTIONS(931), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(933), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(933), - [aux_sym__val_number_decimal_token1] = ACTIONS(931), - [aux_sym__val_number_decimal_token2] = ACTIONS(933), - [aux_sym__val_number_decimal_token3] = ACTIONS(933), - [aux_sym__val_number_decimal_token4] = ACTIONS(933), - [aux_sym__val_number_token1] = ACTIONS(933), - [aux_sym__val_number_token2] = ACTIONS(933), - [aux_sym__val_number_token3] = ACTIONS(933), - [aux_sym__val_number_token4] = ACTIONS(931), - [aux_sym__val_number_token5] = ACTIONS(931), - [aux_sym__val_number_token6] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym__str_single_quotes] = ACTIONS(933), - [sym__str_back_ticks] = ACTIONS(933), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(933), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(933), - [anon_sym_register] = ACTIONS(931), - [anon_sym_COLON2] = ACTIONS(933), - [anon_sym_DOT2] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(933), - }, - [444] = { - [sym_path] = STATE(585), - [sym_comment] = STATE(444), - [aux_sym_cell_path_repeat1] = STATE(444), - [anon_sym_export] = ACTIONS(935), - [anon_sym_alias] = ACTIONS(935), - [anon_sym_let] = ACTIONS(935), - [anon_sym_let_DASHenv] = ACTIONS(935), - [anon_sym_mut] = ACTIONS(935), - [anon_sym_const] = ACTIONS(935), - [aux_sym_cmd_identifier_token1] = ACTIONS(935), - [aux_sym_cmd_identifier_token2] = ACTIONS(937), - [aux_sym_cmd_identifier_token3] = ACTIONS(937), - [aux_sym_cmd_identifier_token4] = ACTIONS(937), - [aux_sym_cmd_identifier_token5] = ACTIONS(937), - [aux_sym_cmd_identifier_token6] = ACTIONS(937), - [aux_sym_cmd_identifier_token7] = ACTIONS(937), - [aux_sym_cmd_identifier_token8] = ACTIONS(935), - [aux_sym_cmd_identifier_token9] = ACTIONS(935), - [aux_sym_cmd_identifier_token10] = ACTIONS(937), - [aux_sym_cmd_identifier_token11] = ACTIONS(937), - [aux_sym_cmd_identifier_token12] = ACTIONS(935), - [aux_sym_cmd_identifier_token13] = ACTIONS(935), - [aux_sym_cmd_identifier_token14] = ACTIONS(935), - [aux_sym_cmd_identifier_token15] = ACTIONS(935), - [aux_sym_cmd_identifier_token16] = ACTIONS(937), - [aux_sym_cmd_identifier_token17] = ACTIONS(937), - [aux_sym_cmd_identifier_token18] = ACTIONS(937), - [aux_sym_cmd_identifier_token19] = ACTIONS(937), - [aux_sym_cmd_identifier_token20] = ACTIONS(937), - [aux_sym_cmd_identifier_token21] = ACTIONS(937), - [aux_sym_cmd_identifier_token22] = ACTIONS(937), - [aux_sym_cmd_identifier_token23] = ACTIONS(937), - [aux_sym_cmd_identifier_token24] = ACTIONS(937), - [aux_sym_cmd_identifier_token25] = ACTIONS(937), - [aux_sym_cmd_identifier_token26] = ACTIONS(937), - [aux_sym_cmd_identifier_token27] = ACTIONS(937), - [aux_sym_cmd_identifier_token28] = ACTIONS(937), - [aux_sym_cmd_identifier_token29] = ACTIONS(937), - [aux_sym_cmd_identifier_token30] = ACTIONS(937), - [aux_sym_cmd_identifier_token31] = ACTIONS(937), - [aux_sym_cmd_identifier_token32] = ACTIONS(937), - [aux_sym_cmd_identifier_token33] = ACTIONS(937), - [aux_sym_cmd_identifier_token34] = ACTIONS(935), - [aux_sym_cmd_identifier_token35] = ACTIONS(937), - [aux_sym_cmd_identifier_token36] = ACTIONS(937), - [aux_sym_cmd_identifier_token37] = ACTIONS(937), - [aux_sym_cmd_identifier_token38] = ACTIONS(935), - [aux_sym_cmd_identifier_token39] = ACTIONS(937), - [aux_sym_cmd_identifier_token40] = ACTIONS(937), - [anon_sym_def] = ACTIONS(935), - [anon_sym_export_DASHenv] = ACTIONS(935), - [anon_sym_extern] = ACTIONS(935), - [anon_sym_module] = ACTIONS(935), - [anon_sym_use] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_COMMA] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(935), - [anon_sym_error] = ACTIONS(935), - [anon_sym_DASH2] = ACTIONS(935), - [anon_sym_break] = ACTIONS(935), - [anon_sym_continue] = ACTIONS(935), - [anon_sym_for] = ACTIONS(935), - [anon_sym_in2] = ACTIONS(935), - [anon_sym_loop] = ACTIONS(935), - [anon_sym_make] = ACTIONS(935), - [anon_sym_while] = ACTIONS(935), - [anon_sym_do] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_else] = ACTIONS(935), - [anon_sym_match] = ACTIONS(935), - [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_try] = ACTIONS(935), - [anon_sym_catch] = ACTIONS(935), - [anon_sym_return] = ACTIONS(935), - [anon_sym_source] = ACTIONS(935), - [anon_sym_source_DASHenv] = ACTIONS(935), - [anon_sym_hide] = ACTIONS(935), - [anon_sym_hide_DASHenv] = ACTIONS(935), - [anon_sym_overlay] = ACTIONS(935), - [anon_sym_as] = ACTIONS(935), - [anon_sym_PLUS2] = ACTIONS(935), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(937), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(937), - [aux_sym__val_number_decimal_token1] = ACTIONS(935), - [aux_sym__val_number_decimal_token2] = ACTIONS(937), - [aux_sym__val_number_decimal_token3] = ACTIONS(937), - [aux_sym__val_number_decimal_token4] = ACTIONS(937), - [aux_sym__val_number_token1] = ACTIONS(937), - [aux_sym__val_number_token2] = ACTIONS(937), - [aux_sym__val_number_token3] = ACTIONS(937), - [aux_sym__val_number_token4] = ACTIONS(935), - [aux_sym__val_number_token5] = ACTIONS(935), - [aux_sym__val_number_token6] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(937), - [sym__str_single_quotes] = ACTIONS(937), - [sym__str_back_ticks] = ACTIONS(937), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(937), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(937), - [anon_sym_register] = ACTIONS(935), - [anon_sym_COLON2] = ACTIONS(937), - [anon_sym_DOT2] = ACTIONS(1971), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(937), - }, - [445] = { - [sym_comment] = STATE(445), - [anon_sym_export] = ACTIONS(970), - [anon_sym_alias] = ACTIONS(970), - [anon_sym_let] = ACTIONS(970), - [anon_sym_let_DASHenv] = ACTIONS(970), - [anon_sym_mut] = ACTIONS(970), - [anon_sym_const] = ACTIONS(970), - [aux_sym_cmd_identifier_token1] = ACTIONS(970), - [aux_sym_cmd_identifier_token2] = ACTIONS(972), - [aux_sym_cmd_identifier_token3] = ACTIONS(972), - [aux_sym_cmd_identifier_token4] = ACTIONS(972), - [aux_sym_cmd_identifier_token5] = ACTIONS(972), - [aux_sym_cmd_identifier_token6] = ACTIONS(972), - [aux_sym_cmd_identifier_token7] = ACTIONS(972), - [aux_sym_cmd_identifier_token8] = ACTIONS(970), - [aux_sym_cmd_identifier_token9] = ACTIONS(970), - [aux_sym_cmd_identifier_token10] = ACTIONS(972), - [aux_sym_cmd_identifier_token11] = ACTIONS(972), - [aux_sym_cmd_identifier_token12] = ACTIONS(970), - [aux_sym_cmd_identifier_token13] = ACTIONS(970), - [aux_sym_cmd_identifier_token14] = ACTIONS(970), - [aux_sym_cmd_identifier_token15] = ACTIONS(970), - [aux_sym_cmd_identifier_token16] = ACTIONS(972), - [aux_sym_cmd_identifier_token17] = ACTIONS(972), - [aux_sym_cmd_identifier_token18] = ACTIONS(972), - [aux_sym_cmd_identifier_token19] = ACTIONS(972), - [aux_sym_cmd_identifier_token20] = ACTIONS(972), - [aux_sym_cmd_identifier_token21] = ACTIONS(972), - [aux_sym_cmd_identifier_token22] = ACTIONS(972), - [aux_sym_cmd_identifier_token23] = ACTIONS(972), - [aux_sym_cmd_identifier_token24] = ACTIONS(972), - [aux_sym_cmd_identifier_token25] = ACTIONS(972), - [aux_sym_cmd_identifier_token26] = ACTIONS(972), - [aux_sym_cmd_identifier_token27] = ACTIONS(972), - [aux_sym_cmd_identifier_token28] = ACTIONS(972), - [aux_sym_cmd_identifier_token29] = ACTIONS(972), - [aux_sym_cmd_identifier_token30] = ACTIONS(972), - [aux_sym_cmd_identifier_token31] = ACTIONS(972), - [aux_sym_cmd_identifier_token32] = ACTIONS(972), - [aux_sym_cmd_identifier_token33] = ACTIONS(972), - [aux_sym_cmd_identifier_token34] = ACTIONS(970), - [aux_sym_cmd_identifier_token35] = ACTIONS(972), - [aux_sym_cmd_identifier_token36] = ACTIONS(972), - [aux_sym_cmd_identifier_token37] = ACTIONS(972), - [aux_sym_cmd_identifier_token38] = ACTIONS(970), - [aux_sym_cmd_identifier_token39] = ACTIONS(972), - [aux_sym_cmd_identifier_token40] = ACTIONS(972), - [anon_sym_def] = ACTIONS(970), - [anon_sym_export_DASHenv] = ACTIONS(970), - [anon_sym_extern] = ACTIONS(970), - [anon_sym_module] = ACTIONS(970), - [anon_sym_use] = ACTIONS(970), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_COMMA] = ACTIONS(972), - [anon_sym_DOLLAR] = ACTIONS(970), - [anon_sym_error] = ACTIONS(970), - [anon_sym_DASH2] = ACTIONS(970), - [anon_sym_break] = ACTIONS(970), - [anon_sym_continue] = ACTIONS(970), - [anon_sym_for] = ACTIONS(970), - [anon_sym_in2] = ACTIONS(970), - [anon_sym_loop] = ACTIONS(970), - [anon_sym_make] = ACTIONS(970), - [anon_sym_while] = ACTIONS(970), - [anon_sym_do] = ACTIONS(970), - [anon_sym_if] = ACTIONS(970), - [anon_sym_else] = ACTIONS(970), - [anon_sym_match] = ACTIONS(970), - [anon_sym_RBRACE] = ACTIONS(972), - [anon_sym_try] = ACTIONS(970), - [anon_sym_catch] = ACTIONS(970), - [anon_sym_return] = ACTIONS(970), - [anon_sym_source] = ACTIONS(970), - [anon_sym_source_DASHenv] = ACTIONS(970), - [anon_sym_hide] = ACTIONS(970), - [anon_sym_hide_DASHenv] = ACTIONS(970), - [anon_sym_overlay] = ACTIONS(970), - [anon_sym_as] = ACTIONS(970), - [anon_sym_PLUS2] = ACTIONS(970), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(972), - [anon_sym_DOT_DOT2] = ACTIONS(970), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(972), - [anon_sym_DOT_DOT_LT2] = ACTIONS(972), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(972), - [aux_sym__val_number_decimal_token1] = ACTIONS(970), - [aux_sym__val_number_decimal_token2] = ACTIONS(972), - [aux_sym__val_number_decimal_token3] = ACTIONS(972), - [aux_sym__val_number_decimal_token4] = ACTIONS(972), - [aux_sym__val_number_token1] = ACTIONS(972), - [aux_sym__val_number_token2] = ACTIONS(972), - [aux_sym__val_number_token3] = ACTIONS(972), + [aux_sym__val_number_decimal_token2] = ACTIONS(972), + [aux_sym__val_number_decimal_token3] = ACTIONS(972), + [aux_sym__val_number_decimal_token4] = ACTIONS(972), + [aux_sym__val_number_token1] = ACTIONS(972), + [aux_sym__val_number_token2] = ACTIONS(972), + [aux_sym__val_number_token3] = ACTIONS(972), [aux_sym__val_number_token4] = ACTIONS(970), [aux_sym__val_number_token5] = ACTIONS(970), [aux_sym__val_number_token6] = ACTIONS(970), @@ -124474,114 +122185,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(972), }, - [446] = { - [sym_path] = STATE(558), - [sym_comment] = STATE(446), - [aux_sym_cell_path_repeat1] = STATE(448), - [anon_sym_export] = ACTIONS(931), - [anon_sym_alias] = ACTIONS(931), - [anon_sym_let] = ACTIONS(931), - [anon_sym_let_DASHenv] = ACTIONS(931), - [anon_sym_mut] = ACTIONS(931), - [anon_sym_const] = ACTIONS(931), - [aux_sym_cmd_identifier_token1] = ACTIONS(931), - [aux_sym_cmd_identifier_token2] = ACTIONS(931), - [aux_sym_cmd_identifier_token3] = ACTIONS(931), - [aux_sym_cmd_identifier_token4] = ACTIONS(931), - [aux_sym_cmd_identifier_token5] = ACTIONS(931), - [aux_sym_cmd_identifier_token6] = ACTIONS(931), - [aux_sym_cmd_identifier_token7] = ACTIONS(931), - [aux_sym_cmd_identifier_token8] = ACTIONS(931), - [aux_sym_cmd_identifier_token9] = ACTIONS(931), - [aux_sym_cmd_identifier_token10] = ACTIONS(931), - [aux_sym_cmd_identifier_token11] = ACTIONS(931), - [aux_sym_cmd_identifier_token12] = ACTIONS(931), - [aux_sym_cmd_identifier_token13] = ACTIONS(931), - [aux_sym_cmd_identifier_token14] = ACTIONS(931), - [aux_sym_cmd_identifier_token15] = ACTIONS(931), - [aux_sym_cmd_identifier_token16] = ACTIONS(931), - [aux_sym_cmd_identifier_token17] = ACTIONS(931), - [aux_sym_cmd_identifier_token18] = ACTIONS(931), - [aux_sym_cmd_identifier_token19] = ACTIONS(931), - [aux_sym_cmd_identifier_token20] = ACTIONS(931), - [aux_sym_cmd_identifier_token21] = ACTIONS(931), - [aux_sym_cmd_identifier_token22] = ACTIONS(931), - [aux_sym_cmd_identifier_token23] = ACTIONS(931), - [aux_sym_cmd_identifier_token24] = ACTIONS(931), - [aux_sym_cmd_identifier_token25] = ACTIONS(931), - [aux_sym_cmd_identifier_token26] = ACTIONS(931), - [aux_sym_cmd_identifier_token27] = ACTIONS(931), - [aux_sym_cmd_identifier_token28] = ACTIONS(931), - [aux_sym_cmd_identifier_token29] = ACTIONS(931), - [aux_sym_cmd_identifier_token30] = ACTIONS(931), - [aux_sym_cmd_identifier_token31] = ACTIONS(931), - [aux_sym_cmd_identifier_token32] = ACTIONS(931), - [aux_sym_cmd_identifier_token33] = ACTIONS(931), - [aux_sym_cmd_identifier_token34] = ACTIONS(931), - [aux_sym_cmd_identifier_token35] = ACTIONS(931), - [aux_sym_cmd_identifier_token36] = ACTIONS(931), - [aux_sym_cmd_identifier_token37] = ACTIONS(931), - [aux_sym_cmd_identifier_token38] = ACTIONS(931), - [aux_sym_cmd_identifier_token39] = ACTIONS(931), - [aux_sym_cmd_identifier_token40] = ACTIONS(931), - [anon_sym_def] = ACTIONS(931), - [anon_sym_export_DASHenv] = ACTIONS(931), - [anon_sym_extern] = ACTIONS(931), - [anon_sym_module] = ACTIONS(931), - [anon_sym_use] = ACTIONS(931), - [anon_sym_LPAREN] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(931), - [anon_sym_error] = ACTIONS(931), - [anon_sym_DASH2] = ACTIONS(931), - [anon_sym_break] = ACTIONS(931), - [anon_sym_continue] = ACTIONS(931), - [anon_sym_for] = ACTIONS(931), - [anon_sym_in2] = ACTIONS(931), - [anon_sym_loop] = ACTIONS(931), - [anon_sym_make] = ACTIONS(931), - [anon_sym_while] = ACTIONS(931), - [anon_sym_do] = ACTIONS(931), - [anon_sym_if] = ACTIONS(931), - [anon_sym_else] = ACTIONS(931), - [anon_sym_match] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_try] = ACTIONS(931), - [anon_sym_catch] = ACTIONS(931), - [anon_sym_return] = ACTIONS(931), - [anon_sym_source] = ACTIONS(931), - [anon_sym_source_DASHenv] = ACTIONS(931), - [anon_sym_hide] = ACTIONS(931), - [anon_sym_hide_DASHenv] = ACTIONS(931), - [anon_sym_overlay] = ACTIONS(931), - [anon_sym_as] = ACTIONS(931), - [anon_sym_PLUS2] = ACTIONS(931), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(931), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(931), - [aux_sym__val_number_decimal_token1] = ACTIONS(931), - [aux_sym__val_number_decimal_token2] = ACTIONS(931), - [aux_sym__val_number_decimal_token3] = ACTIONS(931), - [aux_sym__val_number_decimal_token4] = ACTIONS(931), - [aux_sym__val_number_token1] = ACTIONS(931), - [aux_sym__val_number_token2] = ACTIONS(931), - [aux_sym__val_number_token3] = ACTIONS(931), - [aux_sym__val_number_token4] = ACTIONS(931), - [aux_sym__val_number_token5] = ACTIONS(931), - [aux_sym__val_number_token6] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(931), - [sym__str_single_quotes] = ACTIONS(931), - [sym__str_back_ticks] = ACTIONS(931), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(931), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(931), - [sym__entry_separator] = ACTIONS(933), - [anon_sym_register] = ACTIONS(931), - [anon_sym_DOT2] = ACTIONS(1833), + [435] = { + [sym_path] = STATE(533), + [sym_comment] = STATE(435), + [aux_sym_cell_path_repeat1] = STATE(437), + [anon_sym_export] = ACTIONS(938), + [anon_sym_alias] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_let_DASHenv] = ACTIONS(938), + [anon_sym_mut] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [aux_sym_cmd_identifier_token1] = ACTIONS(938), + [aux_sym_cmd_identifier_token2] = ACTIONS(938), + [aux_sym_cmd_identifier_token3] = ACTIONS(938), + [aux_sym_cmd_identifier_token4] = ACTIONS(938), + [aux_sym_cmd_identifier_token5] = ACTIONS(938), + [aux_sym_cmd_identifier_token6] = ACTIONS(938), + [aux_sym_cmd_identifier_token7] = ACTIONS(938), + [aux_sym_cmd_identifier_token8] = ACTIONS(938), + [aux_sym_cmd_identifier_token9] = ACTIONS(938), + [aux_sym_cmd_identifier_token10] = ACTIONS(938), + [aux_sym_cmd_identifier_token11] = ACTIONS(938), + [aux_sym_cmd_identifier_token12] = ACTIONS(938), + [aux_sym_cmd_identifier_token13] = ACTIONS(938), + [aux_sym_cmd_identifier_token14] = ACTIONS(938), + [aux_sym_cmd_identifier_token15] = ACTIONS(938), + [aux_sym_cmd_identifier_token16] = ACTIONS(938), + [aux_sym_cmd_identifier_token17] = ACTIONS(938), + [aux_sym_cmd_identifier_token18] = ACTIONS(938), + [aux_sym_cmd_identifier_token19] = ACTIONS(938), + [aux_sym_cmd_identifier_token20] = ACTIONS(938), + [aux_sym_cmd_identifier_token21] = ACTIONS(938), + [aux_sym_cmd_identifier_token22] = ACTIONS(938), + [aux_sym_cmd_identifier_token23] = ACTIONS(938), + [aux_sym_cmd_identifier_token24] = ACTIONS(938), + [aux_sym_cmd_identifier_token25] = ACTIONS(938), + [aux_sym_cmd_identifier_token26] = ACTIONS(938), + [aux_sym_cmd_identifier_token27] = ACTIONS(938), + [aux_sym_cmd_identifier_token28] = ACTIONS(938), + [aux_sym_cmd_identifier_token29] = ACTIONS(938), + [aux_sym_cmd_identifier_token30] = ACTIONS(938), + [aux_sym_cmd_identifier_token31] = ACTIONS(938), + [aux_sym_cmd_identifier_token32] = ACTIONS(938), + [aux_sym_cmd_identifier_token33] = ACTIONS(938), + [aux_sym_cmd_identifier_token34] = ACTIONS(938), + [aux_sym_cmd_identifier_token35] = ACTIONS(938), + [aux_sym_cmd_identifier_token36] = ACTIONS(938), + [aux_sym_cmd_identifier_token37] = ACTIONS(938), + [aux_sym_cmd_identifier_token38] = ACTIONS(938), + [aux_sym_cmd_identifier_token39] = ACTIONS(938), + [aux_sym_cmd_identifier_token40] = ACTIONS(938), + [anon_sym_def] = ACTIONS(938), + [anon_sym_export_DASHenv] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_use] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(938), + [anon_sym_COMMA] = ACTIONS(938), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_error] = ACTIONS(938), + [anon_sym_DASH2] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_in2] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(938), + [anon_sym_make] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_else] = ACTIONS(938), + [anon_sym_match] = ACTIONS(938), + [anon_sym_RBRACE] = ACTIONS(938), + [anon_sym_try] = ACTIONS(938), + [anon_sym_catch] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_source] = ACTIONS(938), + [anon_sym_source_DASHenv] = ACTIONS(938), + [anon_sym_hide] = ACTIONS(938), + [anon_sym_hide_DASHenv] = ACTIONS(938), + [anon_sym_overlay] = ACTIONS(938), + [anon_sym_as] = ACTIONS(938), + [anon_sym_PLUS2] = ACTIONS(938), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(938), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(938), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(938), + [aux_sym__val_number_decimal_token3] = ACTIONS(938), + [aux_sym__val_number_decimal_token4] = ACTIONS(938), + [aux_sym__val_number_token1] = ACTIONS(938), + [aux_sym__val_number_token2] = ACTIONS(938), + [aux_sym__val_number_token3] = ACTIONS(938), + [aux_sym__val_number_token4] = ACTIONS(938), + [aux_sym__val_number_token5] = ACTIONS(938), + [aux_sym__val_number_token6] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym__str_single_quotes] = ACTIONS(938), + [sym__str_back_ticks] = ACTIONS(938), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(938), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(938), + [sym__entry_separator] = ACTIONS(940), + [anon_sym_register] = ACTIONS(938), + [anon_sym_DOT2] = ACTIONS(1827), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(933), + [sym_raw_string_begin] = ACTIONS(940), }, - [447] = { - [sym_comment] = STATE(447), + [436] = { + [sym_comment] = STATE(436), [anon_sym_export] = ACTIONS(982), [anon_sym_alias] = ACTIONS(982), [anon_sym_let] = ACTIONS(982), @@ -124686,220 +122397,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(984), }, - [448] = { - [sym_path] = STATE(558), - [sym_comment] = STATE(448), - [aux_sym_cell_path_repeat1] = STATE(448), - [anon_sym_export] = ACTIONS(935), - [anon_sym_alias] = ACTIONS(935), - [anon_sym_let] = ACTIONS(935), - [anon_sym_let_DASHenv] = ACTIONS(935), - [anon_sym_mut] = ACTIONS(935), - [anon_sym_const] = ACTIONS(935), - [aux_sym_cmd_identifier_token1] = ACTIONS(935), - [aux_sym_cmd_identifier_token2] = ACTIONS(935), - [aux_sym_cmd_identifier_token3] = ACTIONS(935), - [aux_sym_cmd_identifier_token4] = ACTIONS(935), - [aux_sym_cmd_identifier_token5] = ACTIONS(935), - [aux_sym_cmd_identifier_token6] = ACTIONS(935), - [aux_sym_cmd_identifier_token7] = ACTIONS(935), - [aux_sym_cmd_identifier_token8] = ACTIONS(935), - [aux_sym_cmd_identifier_token9] = ACTIONS(935), - [aux_sym_cmd_identifier_token10] = ACTIONS(935), - [aux_sym_cmd_identifier_token11] = ACTIONS(935), - [aux_sym_cmd_identifier_token12] = ACTIONS(935), - [aux_sym_cmd_identifier_token13] = ACTIONS(935), - [aux_sym_cmd_identifier_token14] = ACTIONS(935), - [aux_sym_cmd_identifier_token15] = ACTIONS(935), - [aux_sym_cmd_identifier_token16] = ACTIONS(935), - [aux_sym_cmd_identifier_token17] = ACTIONS(935), - [aux_sym_cmd_identifier_token18] = ACTIONS(935), - [aux_sym_cmd_identifier_token19] = ACTIONS(935), - [aux_sym_cmd_identifier_token20] = ACTIONS(935), - [aux_sym_cmd_identifier_token21] = ACTIONS(935), - [aux_sym_cmd_identifier_token22] = ACTIONS(935), - [aux_sym_cmd_identifier_token23] = ACTIONS(935), - [aux_sym_cmd_identifier_token24] = ACTIONS(935), - [aux_sym_cmd_identifier_token25] = ACTIONS(935), - [aux_sym_cmd_identifier_token26] = ACTIONS(935), - [aux_sym_cmd_identifier_token27] = ACTIONS(935), - [aux_sym_cmd_identifier_token28] = ACTIONS(935), - [aux_sym_cmd_identifier_token29] = ACTIONS(935), - [aux_sym_cmd_identifier_token30] = ACTIONS(935), - [aux_sym_cmd_identifier_token31] = ACTIONS(935), - [aux_sym_cmd_identifier_token32] = ACTIONS(935), - [aux_sym_cmd_identifier_token33] = ACTIONS(935), - [aux_sym_cmd_identifier_token34] = ACTIONS(935), - [aux_sym_cmd_identifier_token35] = ACTIONS(935), - [aux_sym_cmd_identifier_token36] = ACTIONS(935), - [aux_sym_cmd_identifier_token37] = ACTIONS(935), - [aux_sym_cmd_identifier_token38] = ACTIONS(935), - [aux_sym_cmd_identifier_token39] = ACTIONS(935), - [aux_sym_cmd_identifier_token40] = ACTIONS(935), - [anon_sym_def] = ACTIONS(935), - [anon_sym_export_DASHenv] = ACTIONS(935), - [anon_sym_extern] = ACTIONS(935), - [anon_sym_module] = ACTIONS(935), - [anon_sym_use] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_COMMA] = ACTIONS(935), - [anon_sym_DOLLAR] = ACTIONS(935), - [anon_sym_error] = ACTIONS(935), - [anon_sym_DASH2] = ACTIONS(935), - [anon_sym_break] = ACTIONS(935), - [anon_sym_continue] = ACTIONS(935), - [anon_sym_for] = ACTIONS(935), - [anon_sym_in2] = ACTIONS(935), - [anon_sym_loop] = ACTIONS(935), - [anon_sym_make] = ACTIONS(935), - [anon_sym_while] = ACTIONS(935), - [anon_sym_do] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_else] = ACTIONS(935), - [anon_sym_match] = ACTIONS(935), - [anon_sym_RBRACE] = ACTIONS(935), - [anon_sym_try] = ACTIONS(935), - [anon_sym_catch] = ACTIONS(935), - [anon_sym_return] = ACTIONS(935), - [anon_sym_source] = ACTIONS(935), - [anon_sym_source_DASHenv] = ACTIONS(935), - [anon_sym_hide] = ACTIONS(935), - [anon_sym_hide_DASHenv] = ACTIONS(935), - [anon_sym_overlay] = ACTIONS(935), - [anon_sym_as] = ACTIONS(935), - [anon_sym_PLUS2] = ACTIONS(935), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(935), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(935), - [aux_sym__val_number_decimal_token1] = ACTIONS(935), - [aux_sym__val_number_decimal_token2] = ACTIONS(935), - [aux_sym__val_number_decimal_token3] = ACTIONS(935), - [aux_sym__val_number_decimal_token4] = ACTIONS(935), - [aux_sym__val_number_token1] = ACTIONS(935), - [aux_sym__val_number_token2] = ACTIONS(935), - [aux_sym__val_number_token3] = ACTIONS(935), - [aux_sym__val_number_token4] = ACTIONS(935), - [aux_sym__val_number_token5] = ACTIONS(935), - [aux_sym__val_number_token6] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym__str_single_quotes] = ACTIONS(935), - [sym__str_back_ticks] = ACTIONS(935), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(935), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(935), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(935), - [sym__entry_separator] = ACTIONS(937), - [anon_sym_register] = ACTIONS(935), - [anon_sym_DOT2] = ACTIONS(1974), + [437] = { + [sym_path] = STATE(533), + [sym_comment] = STATE(437), + [aux_sym_cell_path_repeat1] = STATE(437), + [anon_sym_export] = ACTIONS(931), + [anon_sym_alias] = ACTIONS(931), + [anon_sym_let] = ACTIONS(931), + [anon_sym_let_DASHenv] = ACTIONS(931), + [anon_sym_mut] = ACTIONS(931), + [anon_sym_const] = ACTIONS(931), + [aux_sym_cmd_identifier_token1] = ACTIONS(931), + [aux_sym_cmd_identifier_token2] = ACTIONS(931), + [aux_sym_cmd_identifier_token3] = ACTIONS(931), + [aux_sym_cmd_identifier_token4] = ACTIONS(931), + [aux_sym_cmd_identifier_token5] = ACTIONS(931), + [aux_sym_cmd_identifier_token6] = ACTIONS(931), + [aux_sym_cmd_identifier_token7] = ACTIONS(931), + [aux_sym_cmd_identifier_token8] = ACTIONS(931), + [aux_sym_cmd_identifier_token9] = ACTIONS(931), + [aux_sym_cmd_identifier_token10] = ACTIONS(931), + [aux_sym_cmd_identifier_token11] = ACTIONS(931), + [aux_sym_cmd_identifier_token12] = ACTIONS(931), + [aux_sym_cmd_identifier_token13] = ACTIONS(931), + [aux_sym_cmd_identifier_token14] = ACTIONS(931), + [aux_sym_cmd_identifier_token15] = ACTIONS(931), + [aux_sym_cmd_identifier_token16] = ACTIONS(931), + [aux_sym_cmd_identifier_token17] = ACTIONS(931), + [aux_sym_cmd_identifier_token18] = ACTIONS(931), + [aux_sym_cmd_identifier_token19] = ACTIONS(931), + [aux_sym_cmd_identifier_token20] = ACTIONS(931), + [aux_sym_cmd_identifier_token21] = ACTIONS(931), + [aux_sym_cmd_identifier_token22] = ACTIONS(931), + [aux_sym_cmd_identifier_token23] = ACTIONS(931), + [aux_sym_cmd_identifier_token24] = ACTIONS(931), + [aux_sym_cmd_identifier_token25] = ACTIONS(931), + [aux_sym_cmd_identifier_token26] = ACTIONS(931), + [aux_sym_cmd_identifier_token27] = ACTIONS(931), + [aux_sym_cmd_identifier_token28] = ACTIONS(931), + [aux_sym_cmd_identifier_token29] = ACTIONS(931), + [aux_sym_cmd_identifier_token30] = ACTIONS(931), + [aux_sym_cmd_identifier_token31] = ACTIONS(931), + [aux_sym_cmd_identifier_token32] = ACTIONS(931), + [aux_sym_cmd_identifier_token33] = ACTIONS(931), + [aux_sym_cmd_identifier_token34] = ACTIONS(931), + [aux_sym_cmd_identifier_token35] = ACTIONS(931), + [aux_sym_cmd_identifier_token36] = ACTIONS(931), + [aux_sym_cmd_identifier_token37] = ACTIONS(931), + [aux_sym_cmd_identifier_token38] = ACTIONS(931), + [aux_sym_cmd_identifier_token39] = ACTIONS(931), + [aux_sym_cmd_identifier_token40] = ACTIONS(931), + [anon_sym_def] = ACTIONS(931), + [anon_sym_export_DASHenv] = ACTIONS(931), + [anon_sym_extern] = ACTIONS(931), + [anon_sym_module] = ACTIONS(931), + [anon_sym_use] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_COMMA] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_error] = ACTIONS(931), + [anon_sym_DASH2] = ACTIONS(931), + [anon_sym_break] = ACTIONS(931), + [anon_sym_continue] = ACTIONS(931), + [anon_sym_for] = ACTIONS(931), + [anon_sym_in2] = ACTIONS(931), + [anon_sym_loop] = ACTIONS(931), + [anon_sym_make] = ACTIONS(931), + [anon_sym_while] = ACTIONS(931), + [anon_sym_do] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_else] = ACTIONS(931), + [anon_sym_match] = ACTIONS(931), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_try] = ACTIONS(931), + [anon_sym_catch] = ACTIONS(931), + [anon_sym_return] = ACTIONS(931), + [anon_sym_source] = ACTIONS(931), + [anon_sym_source_DASHenv] = ACTIONS(931), + [anon_sym_hide] = ACTIONS(931), + [anon_sym_hide_DASHenv] = ACTIONS(931), + [anon_sym_overlay] = ACTIONS(931), + [anon_sym_as] = ACTIONS(931), + [anon_sym_PLUS2] = ACTIONS(931), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(931), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(931), + [aux_sym__val_number_decimal_token1] = ACTIONS(931), + [aux_sym__val_number_decimal_token2] = ACTIONS(931), + [aux_sym__val_number_decimal_token3] = ACTIONS(931), + [aux_sym__val_number_decimal_token4] = ACTIONS(931), + [aux_sym__val_number_token1] = ACTIONS(931), + [aux_sym__val_number_token2] = ACTIONS(931), + [aux_sym__val_number_token3] = ACTIONS(931), + [aux_sym__val_number_token4] = ACTIONS(931), + [aux_sym__val_number_token5] = ACTIONS(931), + [aux_sym__val_number_token6] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [sym__str_single_quotes] = ACTIONS(931), + [sym__str_back_ticks] = ACTIONS(931), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(931), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(931), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(931), + [sym__entry_separator] = ACTIONS(933), + [anon_sym_register] = ACTIONS(931), + [anon_sym_DOT2] = ACTIONS(1942), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(937), - }, - [449] = { - [sym_comment] = STATE(449), - [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(978), - [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_hide] = ACTIONS(978), - [anon_sym_hide_DASHenv] = ACTIONS(978), - [anon_sym_overlay] = ACTIONS(978), - [anon_sym_as] = ACTIONS(978), - [anon_sym_PLUS2] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(980), - [anon_sym_DOT_DOT2] = ACTIONS(978), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), - [anon_sym_DOT_DOT_LT2] = ACTIONS(980), - [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_DOLLAR_SQUOTE] = ACTIONS(980), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(980), - [anon_sym_register] = ACTIONS(978), - [anon_sym_DOT2] = ACTIONS(978), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(980), + [sym_raw_string_begin] = ACTIONS(933), }, - [450] = { - [sym_comment] = STATE(450), + [438] = { + [sym_comment] = STATE(438), [anon_sym_export] = ACTIONS(974), [anon_sym_alias] = ACTIONS(974), [anon_sym_let] = ACTIONS(974), @@ -125004,1704 +122609,1280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(976), }, - [451] = { - [sym_comment] = STATE(451), - [anon_sym_export] = ACTIONS(1977), - [anon_sym_alias] = ACTIONS(1977), - [anon_sym_let] = ACTIONS(1977), - [anon_sym_let_DASHenv] = ACTIONS(1977), - [anon_sym_mut] = ACTIONS(1977), - [anon_sym_const] = ACTIONS(1977), - [aux_sym_cmd_identifier_token1] = ACTIONS(1977), - [aux_sym_cmd_identifier_token2] = ACTIONS(1977), - [aux_sym_cmd_identifier_token3] = ACTIONS(1977), - [aux_sym_cmd_identifier_token4] = ACTIONS(1977), - [aux_sym_cmd_identifier_token5] = ACTIONS(1977), - [aux_sym_cmd_identifier_token6] = ACTIONS(1977), - [aux_sym_cmd_identifier_token7] = ACTIONS(1977), - [aux_sym_cmd_identifier_token8] = ACTIONS(1977), - [aux_sym_cmd_identifier_token9] = ACTIONS(1977), - [aux_sym_cmd_identifier_token10] = ACTIONS(1977), - [aux_sym_cmd_identifier_token11] = ACTIONS(1977), - [aux_sym_cmd_identifier_token12] = ACTIONS(1977), - [aux_sym_cmd_identifier_token13] = ACTIONS(1977), - [aux_sym_cmd_identifier_token14] = ACTIONS(1977), - [aux_sym_cmd_identifier_token15] = ACTIONS(1977), - [aux_sym_cmd_identifier_token16] = ACTIONS(1977), - [aux_sym_cmd_identifier_token17] = ACTIONS(1977), - [aux_sym_cmd_identifier_token18] = ACTIONS(1977), - [aux_sym_cmd_identifier_token19] = ACTIONS(1977), - [aux_sym_cmd_identifier_token20] = ACTIONS(1977), - [aux_sym_cmd_identifier_token21] = ACTIONS(1977), - [aux_sym_cmd_identifier_token22] = ACTIONS(1977), - [aux_sym_cmd_identifier_token23] = ACTIONS(1977), - [aux_sym_cmd_identifier_token24] = ACTIONS(1977), - [aux_sym_cmd_identifier_token25] = ACTIONS(1977), - [aux_sym_cmd_identifier_token26] = ACTIONS(1977), - [aux_sym_cmd_identifier_token27] = ACTIONS(1977), - [aux_sym_cmd_identifier_token28] = ACTIONS(1977), - [aux_sym_cmd_identifier_token29] = ACTIONS(1977), - [aux_sym_cmd_identifier_token30] = ACTIONS(1977), - [aux_sym_cmd_identifier_token31] = ACTIONS(1977), - [aux_sym_cmd_identifier_token32] = ACTIONS(1977), - [aux_sym_cmd_identifier_token33] = ACTIONS(1977), - [aux_sym_cmd_identifier_token34] = ACTIONS(1977), - [aux_sym_cmd_identifier_token35] = ACTIONS(1977), - [aux_sym_cmd_identifier_token36] = ACTIONS(1977), - [aux_sym_cmd_identifier_token37] = ACTIONS(1977), - [aux_sym_cmd_identifier_token38] = ACTIONS(1977), - [aux_sym_cmd_identifier_token39] = ACTIONS(1977), - [aux_sym_cmd_identifier_token40] = ACTIONS(1977), - [anon_sym_def] = ACTIONS(1977), - [anon_sym_export_DASHenv] = ACTIONS(1977), - [anon_sym_extern] = ACTIONS(1977), - [anon_sym_module] = ACTIONS(1977), - [anon_sym_use] = ACTIONS(1977), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_DOLLAR] = ACTIONS(1977), - [anon_sym_error] = ACTIONS(1977), - [anon_sym_DASH2] = ACTIONS(1977), - [anon_sym_break] = ACTIONS(1977), - [anon_sym_continue] = ACTIONS(1977), - [anon_sym_for] = ACTIONS(1977), - [anon_sym_in2] = ACTIONS(1977), - [anon_sym_loop] = ACTIONS(1977), - [anon_sym_make] = ACTIONS(1977), - [anon_sym_while] = ACTIONS(1977), - [anon_sym_do] = ACTIONS(1977), - [anon_sym_if] = ACTIONS(1977), - [anon_sym_else] = ACTIONS(1977), - [anon_sym_match] = ACTIONS(1977), - [anon_sym_RBRACE] = ACTIONS(1977), - [anon_sym_try] = ACTIONS(1977), - [anon_sym_catch] = ACTIONS(1977), - [anon_sym_return] = ACTIONS(1977), - [anon_sym_source] = ACTIONS(1977), - [anon_sym_source_DASHenv] = ACTIONS(1977), - [anon_sym_hide] = ACTIONS(1977), - [anon_sym_hide_DASHenv] = ACTIONS(1977), - [anon_sym_overlay] = ACTIONS(1977), - [anon_sym_as] = ACTIONS(1977), - [anon_sym_PLUS2] = ACTIONS(1977), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1977), - [anon_sym_DOT_DOT2] = ACTIONS(1979), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1981), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1981), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1977), - [aux_sym__val_number_decimal_token1] = ACTIONS(1977), - [aux_sym__val_number_decimal_token2] = ACTIONS(1977), - [aux_sym__val_number_decimal_token3] = ACTIONS(1977), - [aux_sym__val_number_decimal_token4] = ACTIONS(1977), - [aux_sym__val_number_token1] = ACTIONS(1977), - [aux_sym__val_number_token2] = ACTIONS(1977), - [aux_sym__val_number_token3] = ACTIONS(1977), - [aux_sym__val_number_token4] = ACTIONS(1977), - [aux_sym__val_number_token5] = ACTIONS(1977), - [aux_sym__val_number_token6] = ACTIONS(1977), - [anon_sym_DQUOTE] = ACTIONS(1977), - [sym__str_single_quotes] = ACTIONS(1977), - [sym__str_back_ticks] = ACTIONS(1977), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1977), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1977), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1977), - [sym__entry_separator] = ACTIONS(1983), - [anon_sym_register] = ACTIONS(1977), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1983), - }, - [452] = { - [sym_comment] = STATE(452), - [anon_sym_export] = ACTIONS(1985), - [anon_sym_alias] = ACTIONS(1985), - [anon_sym_let] = ACTIONS(1985), - [anon_sym_let_DASHenv] = ACTIONS(1985), - [anon_sym_mut] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1985), - [aux_sym_cmd_identifier_token1] = ACTIONS(1985), - [aux_sym_cmd_identifier_token2] = ACTIONS(1985), - [aux_sym_cmd_identifier_token3] = ACTIONS(1985), - [aux_sym_cmd_identifier_token4] = ACTIONS(1985), - [aux_sym_cmd_identifier_token5] = ACTIONS(1985), - [aux_sym_cmd_identifier_token6] = ACTIONS(1985), - [aux_sym_cmd_identifier_token7] = ACTIONS(1985), - [aux_sym_cmd_identifier_token8] = ACTIONS(1985), - [aux_sym_cmd_identifier_token9] = ACTIONS(1985), - [aux_sym_cmd_identifier_token10] = ACTIONS(1985), - [aux_sym_cmd_identifier_token11] = ACTIONS(1985), - [aux_sym_cmd_identifier_token12] = ACTIONS(1985), - [aux_sym_cmd_identifier_token13] = ACTIONS(1985), - [aux_sym_cmd_identifier_token14] = ACTIONS(1985), - [aux_sym_cmd_identifier_token15] = ACTIONS(1985), - [aux_sym_cmd_identifier_token16] = ACTIONS(1985), - [aux_sym_cmd_identifier_token17] = ACTIONS(1985), - [aux_sym_cmd_identifier_token18] = ACTIONS(1985), - [aux_sym_cmd_identifier_token19] = ACTIONS(1985), - [aux_sym_cmd_identifier_token20] = ACTIONS(1985), - [aux_sym_cmd_identifier_token21] = ACTIONS(1985), - [aux_sym_cmd_identifier_token22] = ACTIONS(1985), - [aux_sym_cmd_identifier_token23] = ACTIONS(1985), - [aux_sym_cmd_identifier_token24] = ACTIONS(1985), - [aux_sym_cmd_identifier_token25] = ACTIONS(1985), - [aux_sym_cmd_identifier_token26] = ACTIONS(1985), - [aux_sym_cmd_identifier_token27] = ACTIONS(1985), - [aux_sym_cmd_identifier_token28] = ACTIONS(1985), - [aux_sym_cmd_identifier_token29] = ACTIONS(1985), - [aux_sym_cmd_identifier_token30] = ACTIONS(1985), - [aux_sym_cmd_identifier_token31] = ACTIONS(1985), - [aux_sym_cmd_identifier_token32] = ACTIONS(1985), - [aux_sym_cmd_identifier_token33] = ACTIONS(1985), - [aux_sym_cmd_identifier_token34] = ACTIONS(1985), - [aux_sym_cmd_identifier_token35] = ACTIONS(1985), - [aux_sym_cmd_identifier_token36] = ACTIONS(1985), - [aux_sym_cmd_identifier_token37] = ACTIONS(1985), - [aux_sym_cmd_identifier_token38] = ACTIONS(1985), - [aux_sym_cmd_identifier_token39] = ACTIONS(1985), - [aux_sym_cmd_identifier_token40] = ACTIONS(1985), - [anon_sym_def] = ACTIONS(1985), - [anon_sym_export_DASHenv] = ACTIONS(1985), - [anon_sym_extern] = ACTIONS(1985), - [anon_sym_module] = ACTIONS(1985), - [anon_sym_use] = ACTIONS(1985), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_COMMA] = ACTIONS(1985), - [anon_sym_DOLLAR] = ACTIONS(1985), - [anon_sym_error] = ACTIONS(1985), - [anon_sym_DASH2] = ACTIONS(1985), - [anon_sym_break] = ACTIONS(1985), - [anon_sym_continue] = ACTIONS(1985), - [anon_sym_for] = ACTIONS(1985), - [anon_sym_in2] = ACTIONS(1985), - [anon_sym_loop] = ACTIONS(1985), - [anon_sym_make] = ACTIONS(1985), - [anon_sym_while] = ACTIONS(1985), - [anon_sym_do] = ACTIONS(1985), - [anon_sym_if] = ACTIONS(1985), - [anon_sym_else] = ACTIONS(1985), - [anon_sym_match] = ACTIONS(1985), - [anon_sym_RBRACE] = ACTIONS(1985), - [anon_sym_try] = ACTIONS(1985), - [anon_sym_catch] = ACTIONS(1985), - [anon_sym_return] = ACTIONS(1985), - [anon_sym_source] = ACTIONS(1985), - [anon_sym_source_DASHenv] = ACTIONS(1985), - [anon_sym_hide] = ACTIONS(1985), - [anon_sym_hide_DASHenv] = ACTIONS(1985), - [anon_sym_overlay] = ACTIONS(1985), - [anon_sym_as] = ACTIONS(1985), - [anon_sym_PLUS2] = ACTIONS(1985), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1985), - [anon_sym_DOT_DOT2] = ACTIONS(1979), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1981), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1981), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1985), - [aux_sym__val_number_decimal_token1] = ACTIONS(1985), - [aux_sym__val_number_decimal_token2] = ACTIONS(1985), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), - [aux_sym__val_number_token1] = ACTIONS(1985), - [aux_sym__val_number_token2] = ACTIONS(1985), - [aux_sym__val_number_token3] = ACTIONS(1985), - [aux_sym__val_number_token4] = ACTIONS(1985), - [aux_sym__val_number_token5] = ACTIONS(1985), - [aux_sym__val_number_token6] = ACTIONS(1985), - [anon_sym_DQUOTE] = ACTIONS(1985), - [sym__str_single_quotes] = ACTIONS(1985), - [sym__str_back_ticks] = ACTIONS(1985), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1985), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1985), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1985), - [sym__entry_separator] = ACTIONS(1987), - [anon_sym_register] = ACTIONS(1985), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1987), - }, - [453] = { - [sym_comment] = STATE(453), - [anon_sym_export] = ACTIONS(1989), - [anon_sym_alias] = ACTIONS(1989), - [anon_sym_let] = ACTIONS(1989), - [anon_sym_let_DASHenv] = ACTIONS(1989), - [anon_sym_mut] = ACTIONS(1989), - [anon_sym_const] = ACTIONS(1989), - [aux_sym_cmd_identifier_token1] = ACTIONS(1989), - [aux_sym_cmd_identifier_token2] = ACTIONS(1989), - [aux_sym_cmd_identifier_token3] = ACTIONS(1989), - [aux_sym_cmd_identifier_token4] = ACTIONS(1989), - [aux_sym_cmd_identifier_token5] = ACTIONS(1989), - [aux_sym_cmd_identifier_token6] = ACTIONS(1989), - [aux_sym_cmd_identifier_token7] = ACTIONS(1989), - [aux_sym_cmd_identifier_token8] = ACTIONS(1989), - [aux_sym_cmd_identifier_token9] = ACTIONS(1989), - [aux_sym_cmd_identifier_token10] = ACTIONS(1989), - [aux_sym_cmd_identifier_token11] = ACTIONS(1989), - [aux_sym_cmd_identifier_token12] = ACTIONS(1989), - [aux_sym_cmd_identifier_token13] = ACTIONS(1989), - [aux_sym_cmd_identifier_token14] = ACTIONS(1989), - [aux_sym_cmd_identifier_token15] = ACTIONS(1989), - [aux_sym_cmd_identifier_token16] = ACTIONS(1989), - [aux_sym_cmd_identifier_token17] = ACTIONS(1989), - [aux_sym_cmd_identifier_token18] = ACTIONS(1989), - [aux_sym_cmd_identifier_token19] = ACTIONS(1989), - [aux_sym_cmd_identifier_token20] = ACTIONS(1989), - [aux_sym_cmd_identifier_token21] = ACTIONS(1989), - [aux_sym_cmd_identifier_token22] = ACTIONS(1989), - [aux_sym_cmd_identifier_token23] = ACTIONS(1989), - [aux_sym_cmd_identifier_token24] = ACTIONS(1989), - [aux_sym_cmd_identifier_token25] = ACTIONS(1989), - [aux_sym_cmd_identifier_token26] = ACTIONS(1989), - [aux_sym_cmd_identifier_token27] = ACTIONS(1989), - [aux_sym_cmd_identifier_token28] = ACTIONS(1989), - [aux_sym_cmd_identifier_token29] = ACTIONS(1989), - [aux_sym_cmd_identifier_token30] = ACTIONS(1989), - [aux_sym_cmd_identifier_token31] = ACTIONS(1989), - [aux_sym_cmd_identifier_token32] = ACTIONS(1989), - [aux_sym_cmd_identifier_token33] = ACTIONS(1989), - [aux_sym_cmd_identifier_token34] = ACTIONS(1989), - [aux_sym_cmd_identifier_token35] = ACTIONS(1989), - [aux_sym_cmd_identifier_token36] = ACTIONS(1989), - [aux_sym_cmd_identifier_token37] = ACTIONS(1989), - [aux_sym_cmd_identifier_token38] = ACTIONS(1989), - [aux_sym_cmd_identifier_token39] = ACTIONS(1989), - [aux_sym_cmd_identifier_token40] = ACTIONS(1989), - [anon_sym_def] = ACTIONS(1989), - [anon_sym_export_DASHenv] = ACTIONS(1989), - [anon_sym_extern] = ACTIONS(1989), - [anon_sym_module] = ACTIONS(1989), - [anon_sym_use] = ACTIONS(1989), - [anon_sym_LPAREN] = ACTIONS(1989), - [anon_sym_COMMA] = ACTIONS(1989), - [anon_sym_DOLLAR] = ACTIONS(1989), - [anon_sym_error] = ACTIONS(1989), - [anon_sym_DASH2] = ACTIONS(1989), - [anon_sym_break] = ACTIONS(1989), - [anon_sym_continue] = ACTIONS(1989), - [anon_sym_for] = ACTIONS(1989), - [anon_sym_in2] = ACTIONS(1989), - [anon_sym_loop] = ACTIONS(1989), - [anon_sym_make] = ACTIONS(1989), - [anon_sym_while] = ACTIONS(1989), - [anon_sym_do] = ACTIONS(1989), - [anon_sym_if] = ACTIONS(1989), - [anon_sym_else] = ACTIONS(1989), - [anon_sym_match] = ACTIONS(1989), - [anon_sym_RBRACE] = ACTIONS(1989), - [anon_sym_try] = ACTIONS(1989), - [anon_sym_catch] = ACTIONS(1989), - [anon_sym_return] = ACTIONS(1989), - [anon_sym_source] = ACTIONS(1989), - [anon_sym_source_DASHenv] = ACTIONS(1989), - [anon_sym_hide] = ACTIONS(1989), - [anon_sym_hide_DASHenv] = ACTIONS(1989), - [anon_sym_overlay] = ACTIONS(1989), - [anon_sym_as] = ACTIONS(1989), - [anon_sym_PLUS2] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1989), - [anon_sym_DOT_DOT2] = ACTIONS(1979), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1981), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1981), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1989), - [aux_sym__val_number_decimal_token1] = ACTIONS(1989), - [aux_sym__val_number_decimal_token2] = ACTIONS(1989), - [aux_sym__val_number_decimal_token3] = ACTIONS(1989), - [aux_sym__val_number_decimal_token4] = ACTIONS(1989), - [aux_sym__val_number_token1] = ACTIONS(1989), - [aux_sym__val_number_token2] = ACTIONS(1989), - [aux_sym__val_number_token3] = ACTIONS(1989), - [aux_sym__val_number_token4] = ACTIONS(1989), - [aux_sym__val_number_token5] = ACTIONS(1989), - [aux_sym__val_number_token6] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1989), - [sym__str_single_quotes] = ACTIONS(1989), - [sym__str_back_ticks] = ACTIONS(1989), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1989), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1989), - [sym__entry_separator] = ACTIONS(1991), - [anon_sym_register] = ACTIONS(1989), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1991), + [439] = { + [sym_comment] = STATE(439), + [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(978), + [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_hide] = ACTIONS(978), + [anon_sym_hide_DASHenv] = ACTIONS(978), + [anon_sym_overlay] = ACTIONS(978), + [anon_sym_as] = ACTIONS(978), + [anon_sym_PLUS2] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(980), + [anon_sym_DOT_DOT2] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(980), + [anon_sym_DOT_DOT_LT2] = ACTIONS(980), + [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_DOLLAR_SQUOTE] = ACTIONS(980), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(980), + [anon_sym_register] = ACTIONS(978), + [anon_sym_DOT2] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(980), }, - [454] = { - [sym_cell_path] = STATE(733), - [sym_path] = STATE(585), - [sym_comment] = STATE(454), - [aux_sym_cell_path_repeat1] = STATE(443), - [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_COMMA] = ACTIONS(1869), - [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(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_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_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_DOLLAR_SQUOTE] = ACTIONS(1869), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1869), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1869), - [anon_sym_register] = ACTIONS(1867), - [anon_sym_DOT2] = ACTIONS(1949), + [440] = { + [sym_cell_path] = STATE(695), + [sym_path] = STATE(541), + [sym_comment] = STATE(440), + [aux_sym_cell_path_repeat1] = STATE(430), + [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_COMMA] = ACTIONS(1843), + [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(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_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_DOLLAR_SQUOTE] = ACTIONS(1843), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1843), + [anon_sym_register] = ACTIONS(1841), + [anon_sym_DOT2] = ACTIONS(1821), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1869), + [sym_raw_string_begin] = ACTIONS(1843), }, - [455] = { - [sym_cell_path] = STATE(735), - [sym_path] = STATE(585), - [sym_comment] = STATE(455), - [aux_sym_cell_path_repeat1] = STATE(443), - [anon_sym_export] = ACTIONS(1905), - [anon_sym_alias] = ACTIONS(1905), - [anon_sym_let] = ACTIONS(1905), - [anon_sym_let_DASHenv] = ACTIONS(1905), - [anon_sym_mut] = ACTIONS(1905), - [anon_sym_const] = ACTIONS(1905), - [aux_sym_cmd_identifier_token1] = ACTIONS(1905), - [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(1905), - [aux_sym_cmd_identifier_token9] = ACTIONS(1905), - [aux_sym_cmd_identifier_token10] = ACTIONS(1907), - [aux_sym_cmd_identifier_token11] = ACTIONS(1907), - [aux_sym_cmd_identifier_token12] = ACTIONS(1905), - [aux_sym_cmd_identifier_token13] = ACTIONS(1905), - [aux_sym_cmd_identifier_token14] = ACTIONS(1905), - [aux_sym_cmd_identifier_token15] = ACTIONS(1905), - [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(1905), - [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(1905), - [aux_sym_cmd_identifier_token39] = ACTIONS(1907), - [aux_sym_cmd_identifier_token40] = ACTIONS(1907), - [anon_sym_def] = ACTIONS(1905), - [anon_sym_export_DASHenv] = ACTIONS(1905), - [anon_sym_extern] = ACTIONS(1905), - [anon_sym_module] = ACTIONS(1905), - [anon_sym_use] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1907), - [anon_sym_COMMA] = ACTIONS(1907), - [anon_sym_DOLLAR] = ACTIONS(1905), - [anon_sym_error] = ACTIONS(1905), - [anon_sym_DASH2] = ACTIONS(1905), - [anon_sym_break] = ACTIONS(1905), - [anon_sym_continue] = ACTIONS(1905), - [anon_sym_for] = ACTIONS(1905), - [anon_sym_in2] = ACTIONS(1905), - [anon_sym_loop] = ACTIONS(1905), - [anon_sym_make] = ACTIONS(1905), - [anon_sym_while] = ACTIONS(1905), - [anon_sym_do] = ACTIONS(1905), - [anon_sym_if] = ACTIONS(1905), - [anon_sym_else] = ACTIONS(1905), - [anon_sym_match] = ACTIONS(1905), - [anon_sym_RBRACE] = ACTIONS(1907), - [anon_sym_try] = ACTIONS(1905), - [anon_sym_catch] = ACTIONS(1905), - [anon_sym_return] = ACTIONS(1905), - [anon_sym_source] = ACTIONS(1905), - [anon_sym_source_DASHenv] = ACTIONS(1905), - [anon_sym_hide] = ACTIONS(1905), - [anon_sym_hide_DASHenv] = ACTIONS(1905), - [anon_sym_overlay] = ACTIONS(1905), - [anon_sym_as] = ACTIONS(1905), - [anon_sym_PLUS2] = ACTIONS(1905), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1907), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1907), - [aux_sym__val_number_decimal_token1] = ACTIONS(1905), - [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(1905), - [aux_sym__val_number_token5] = ACTIONS(1905), - [aux_sym__val_number_token6] = ACTIONS(1905), - [anon_sym_DQUOTE] = ACTIONS(1907), - [sym__str_single_quotes] = ACTIONS(1907), - [sym__str_back_ticks] = ACTIONS(1907), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1907), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1907), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1907), - [anon_sym_register] = ACTIONS(1905), - [anon_sym_DOT2] = ACTIONS(1949), + [441] = { + [sym_cell_path] = STATE(648), + [sym_path] = STATE(541), + [sym_comment] = STATE(441), + [aux_sym_cell_path_repeat1] = STATE(430), + [anon_sym_export] = ACTIONS(1893), + [anon_sym_alias] = ACTIONS(1893), + [anon_sym_let] = ACTIONS(1893), + [anon_sym_let_DASHenv] = ACTIONS(1893), + [anon_sym_mut] = ACTIONS(1893), + [anon_sym_const] = ACTIONS(1893), + [aux_sym_cmd_identifier_token1] = ACTIONS(1893), + [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(1893), + [aux_sym_cmd_identifier_token9] = ACTIONS(1893), + [aux_sym_cmd_identifier_token10] = ACTIONS(1895), + [aux_sym_cmd_identifier_token11] = ACTIONS(1895), + [aux_sym_cmd_identifier_token12] = ACTIONS(1893), + [aux_sym_cmd_identifier_token13] = ACTIONS(1893), + [aux_sym_cmd_identifier_token14] = ACTIONS(1893), + [aux_sym_cmd_identifier_token15] = ACTIONS(1893), + [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(1893), + [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(1893), + [aux_sym_cmd_identifier_token39] = ACTIONS(1895), + [aux_sym_cmd_identifier_token40] = ACTIONS(1895), + [anon_sym_def] = ACTIONS(1893), + [anon_sym_export_DASHenv] = ACTIONS(1893), + [anon_sym_extern] = ACTIONS(1893), + [anon_sym_module] = ACTIONS(1893), + [anon_sym_use] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_COMMA] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_error] = ACTIONS(1893), + [anon_sym_DASH2] = ACTIONS(1893), + [anon_sym_break] = ACTIONS(1893), + [anon_sym_continue] = ACTIONS(1893), + [anon_sym_for] = ACTIONS(1893), + [anon_sym_in2] = ACTIONS(1893), + [anon_sym_loop] = ACTIONS(1893), + [anon_sym_make] = ACTIONS(1893), + [anon_sym_while] = ACTIONS(1893), + [anon_sym_do] = ACTIONS(1893), + [anon_sym_if] = ACTIONS(1893), + [anon_sym_else] = ACTIONS(1893), + [anon_sym_match] = ACTIONS(1893), + [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_try] = ACTIONS(1893), + [anon_sym_catch] = ACTIONS(1893), + [anon_sym_return] = ACTIONS(1893), + [anon_sym_source] = ACTIONS(1893), + [anon_sym_source_DASHenv] = ACTIONS(1893), + [anon_sym_hide] = ACTIONS(1893), + [anon_sym_hide_DASHenv] = ACTIONS(1893), + [anon_sym_overlay] = ACTIONS(1893), + [anon_sym_as] = ACTIONS(1893), + [anon_sym_PLUS2] = ACTIONS(1893), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1895), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1895), + [aux_sym__val_number_decimal_token1] = ACTIONS(1893), + [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(1893), + [aux_sym__val_number_token5] = ACTIONS(1893), + [aux_sym__val_number_token6] = ACTIONS(1893), + [anon_sym_DQUOTE] = ACTIONS(1895), + [sym__str_single_quotes] = ACTIONS(1895), + [sym__str_back_ticks] = ACTIONS(1895), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1895), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1895), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1895), + [anon_sym_register] = ACTIONS(1893), + [anon_sym_DOT2] = ACTIONS(1821), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1907), + [sym_raw_string_begin] = ACTIONS(1895), }, - [456] = { - [sym_cell_path] = STATE(737), - [sym_path] = STATE(585), - [sym_comment] = STATE(456), - [aux_sym_cell_path_repeat1] = STATE(443), - [anon_sym_export] = ACTIONS(1901), - [anon_sym_alias] = ACTIONS(1901), - [anon_sym_let] = ACTIONS(1901), - [anon_sym_let_DASHenv] = ACTIONS(1901), - [anon_sym_mut] = ACTIONS(1901), - [anon_sym_const] = ACTIONS(1901), - [aux_sym_cmd_identifier_token1] = ACTIONS(1901), - [aux_sym_cmd_identifier_token2] = ACTIONS(1903), - [aux_sym_cmd_identifier_token3] = ACTIONS(1903), - [aux_sym_cmd_identifier_token4] = ACTIONS(1903), - [aux_sym_cmd_identifier_token5] = ACTIONS(1903), - [aux_sym_cmd_identifier_token6] = ACTIONS(1903), - [aux_sym_cmd_identifier_token7] = ACTIONS(1903), - [aux_sym_cmd_identifier_token8] = ACTIONS(1901), - [aux_sym_cmd_identifier_token9] = ACTIONS(1901), - [aux_sym_cmd_identifier_token10] = ACTIONS(1903), - [aux_sym_cmd_identifier_token11] = ACTIONS(1903), - [aux_sym_cmd_identifier_token12] = ACTIONS(1901), - [aux_sym_cmd_identifier_token13] = ACTIONS(1901), - [aux_sym_cmd_identifier_token14] = ACTIONS(1901), - [aux_sym_cmd_identifier_token15] = ACTIONS(1901), - [aux_sym_cmd_identifier_token16] = ACTIONS(1903), - [aux_sym_cmd_identifier_token17] = ACTIONS(1903), - [aux_sym_cmd_identifier_token18] = ACTIONS(1903), - [aux_sym_cmd_identifier_token19] = ACTIONS(1903), - [aux_sym_cmd_identifier_token20] = ACTIONS(1903), - [aux_sym_cmd_identifier_token21] = ACTIONS(1903), - [aux_sym_cmd_identifier_token22] = ACTIONS(1903), - [aux_sym_cmd_identifier_token23] = ACTIONS(1903), - [aux_sym_cmd_identifier_token24] = ACTIONS(1903), - [aux_sym_cmd_identifier_token25] = ACTIONS(1903), - [aux_sym_cmd_identifier_token26] = ACTIONS(1903), - [aux_sym_cmd_identifier_token27] = ACTIONS(1903), - [aux_sym_cmd_identifier_token28] = ACTIONS(1903), - [aux_sym_cmd_identifier_token29] = ACTIONS(1903), - [aux_sym_cmd_identifier_token30] = ACTIONS(1903), - [aux_sym_cmd_identifier_token31] = ACTIONS(1903), - [aux_sym_cmd_identifier_token32] = ACTIONS(1903), - [aux_sym_cmd_identifier_token33] = ACTIONS(1903), - [aux_sym_cmd_identifier_token34] = ACTIONS(1901), - [aux_sym_cmd_identifier_token35] = ACTIONS(1903), - [aux_sym_cmd_identifier_token36] = ACTIONS(1903), - [aux_sym_cmd_identifier_token37] = ACTIONS(1903), - [aux_sym_cmd_identifier_token38] = ACTIONS(1901), - [aux_sym_cmd_identifier_token39] = ACTIONS(1903), - [aux_sym_cmd_identifier_token40] = ACTIONS(1903), - [anon_sym_def] = ACTIONS(1901), - [anon_sym_export_DASHenv] = ACTIONS(1901), - [anon_sym_extern] = ACTIONS(1901), - [anon_sym_module] = ACTIONS(1901), - [anon_sym_use] = ACTIONS(1901), - [anon_sym_LPAREN] = ACTIONS(1903), - [anon_sym_COMMA] = ACTIONS(1903), - [anon_sym_DOLLAR] = ACTIONS(1901), - [anon_sym_error] = ACTIONS(1901), - [anon_sym_DASH2] = ACTIONS(1901), - [anon_sym_break] = ACTIONS(1901), - [anon_sym_continue] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_in2] = ACTIONS(1901), - [anon_sym_loop] = ACTIONS(1901), - [anon_sym_make] = ACTIONS(1901), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_do] = ACTIONS(1901), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_else] = ACTIONS(1901), - [anon_sym_match] = ACTIONS(1901), - [anon_sym_RBRACE] = ACTIONS(1903), - [anon_sym_try] = ACTIONS(1901), - [anon_sym_catch] = ACTIONS(1901), - [anon_sym_return] = ACTIONS(1901), - [anon_sym_source] = ACTIONS(1901), - [anon_sym_source_DASHenv] = ACTIONS(1901), - [anon_sym_hide] = ACTIONS(1901), - [anon_sym_hide_DASHenv] = ACTIONS(1901), - [anon_sym_overlay] = ACTIONS(1901), - [anon_sym_as] = ACTIONS(1901), - [anon_sym_PLUS2] = ACTIONS(1901), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1903), - [aux_sym__val_number_decimal_token1] = ACTIONS(1901), - [aux_sym__val_number_decimal_token2] = ACTIONS(1903), - [aux_sym__val_number_decimal_token3] = ACTIONS(1903), - [aux_sym__val_number_decimal_token4] = ACTIONS(1903), - [aux_sym__val_number_token1] = ACTIONS(1903), - [aux_sym__val_number_token2] = ACTIONS(1903), - [aux_sym__val_number_token3] = ACTIONS(1903), - [aux_sym__val_number_token4] = ACTIONS(1901), - [aux_sym__val_number_token5] = ACTIONS(1901), - [aux_sym__val_number_token6] = ACTIONS(1901), - [anon_sym_DQUOTE] = ACTIONS(1903), - [sym__str_single_quotes] = ACTIONS(1903), - [sym__str_back_ticks] = ACTIONS(1903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1903), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1903), - [anon_sym_register] = ACTIONS(1901), - [anon_sym_DOT2] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1903), + [442] = { + [sym_cell_path] = STATE(713), + [sym_path] = STATE(541), + [sym_comment] = STATE(442), + [aux_sym_cell_path_repeat1] = STATE(430), + [anon_sym_export] = ACTIONS(1923), + [anon_sym_alias] = ACTIONS(1923), + [anon_sym_let] = ACTIONS(1923), + [anon_sym_let_DASHenv] = ACTIONS(1923), + [anon_sym_mut] = ACTIONS(1923), + [anon_sym_const] = ACTIONS(1923), + [aux_sym_cmd_identifier_token1] = ACTIONS(1923), + [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(1923), + [aux_sym_cmd_identifier_token9] = ACTIONS(1923), + [aux_sym_cmd_identifier_token10] = ACTIONS(1925), + [aux_sym_cmd_identifier_token11] = ACTIONS(1925), + [aux_sym_cmd_identifier_token12] = ACTIONS(1923), + [aux_sym_cmd_identifier_token13] = ACTIONS(1923), + [aux_sym_cmd_identifier_token14] = ACTIONS(1923), + [aux_sym_cmd_identifier_token15] = ACTIONS(1923), + [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(1923), + [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(1923), + [aux_sym_cmd_identifier_token39] = ACTIONS(1925), + [aux_sym_cmd_identifier_token40] = ACTIONS(1925), + [anon_sym_def] = ACTIONS(1923), + [anon_sym_export_DASHenv] = ACTIONS(1923), + [anon_sym_extern] = ACTIONS(1923), + [anon_sym_module] = ACTIONS(1923), + [anon_sym_use] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1925), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_DOLLAR] = ACTIONS(1923), + [anon_sym_error] = ACTIONS(1923), + [anon_sym_DASH2] = ACTIONS(1923), + [anon_sym_break] = ACTIONS(1923), + [anon_sym_continue] = ACTIONS(1923), + [anon_sym_for] = ACTIONS(1923), + [anon_sym_in2] = ACTIONS(1923), + [anon_sym_loop] = ACTIONS(1923), + [anon_sym_make] = ACTIONS(1923), + [anon_sym_while] = ACTIONS(1923), + [anon_sym_do] = ACTIONS(1923), + [anon_sym_if] = ACTIONS(1923), + [anon_sym_else] = ACTIONS(1923), + [anon_sym_match] = ACTIONS(1923), + [anon_sym_RBRACE] = ACTIONS(1925), + [anon_sym_try] = ACTIONS(1923), + [anon_sym_catch] = ACTIONS(1923), + [anon_sym_return] = ACTIONS(1923), + [anon_sym_source] = ACTIONS(1923), + [anon_sym_source_DASHenv] = ACTIONS(1923), + [anon_sym_hide] = ACTIONS(1923), + [anon_sym_hide_DASHenv] = ACTIONS(1923), + [anon_sym_overlay] = ACTIONS(1923), + [anon_sym_as] = ACTIONS(1923), + [anon_sym_PLUS2] = ACTIONS(1923), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1925), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1925), + [aux_sym__val_number_decimal_token1] = ACTIONS(1923), + [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(1923), + [aux_sym__val_number_token5] = ACTIONS(1923), + [aux_sym__val_number_token6] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(1925), + [sym__str_single_quotes] = ACTIONS(1925), + [sym__str_back_ticks] = ACTIONS(1925), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1925), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1925), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1925), + [anon_sym_register] = ACTIONS(1923), + [anon_sym_DOT2] = ACTIONS(1821), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1925), }, - [457] = { - [sym_comment] = STATE(457), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), - [aux_sym_cmd_identifier_token2] = ACTIONS(1650), - [aux_sym_cmd_identifier_token3] = ACTIONS(1650), - [aux_sym_cmd_identifier_token4] = ACTIONS(1650), - [aux_sym_cmd_identifier_token5] = ACTIONS(1650), - [aux_sym_cmd_identifier_token6] = ACTIONS(1650), - [aux_sym_cmd_identifier_token7] = ACTIONS(1650), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), - [aux_sym_cmd_identifier_token10] = ACTIONS(1650), - [aux_sym_cmd_identifier_token11] = ACTIONS(1650), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), - [aux_sym_cmd_identifier_token16] = ACTIONS(1650), - [aux_sym_cmd_identifier_token17] = ACTIONS(1650), - [aux_sym_cmd_identifier_token18] = ACTIONS(1650), - [aux_sym_cmd_identifier_token19] = ACTIONS(1650), - [aux_sym_cmd_identifier_token20] = ACTIONS(1650), - [aux_sym_cmd_identifier_token21] = ACTIONS(1650), - [aux_sym_cmd_identifier_token22] = ACTIONS(1650), - [aux_sym_cmd_identifier_token23] = ACTIONS(1650), - [aux_sym_cmd_identifier_token24] = ACTIONS(1650), - [aux_sym_cmd_identifier_token25] = ACTIONS(1650), - [aux_sym_cmd_identifier_token26] = ACTIONS(1650), - [aux_sym_cmd_identifier_token27] = ACTIONS(1650), - [aux_sym_cmd_identifier_token28] = ACTIONS(1650), - [aux_sym_cmd_identifier_token29] = ACTIONS(1650), - [aux_sym_cmd_identifier_token30] = ACTIONS(1650), - [aux_sym_cmd_identifier_token31] = ACTIONS(1650), - [aux_sym_cmd_identifier_token32] = ACTIONS(1650), - [aux_sym_cmd_identifier_token33] = ACTIONS(1650), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), - [aux_sym_cmd_identifier_token35] = ACTIONS(1650), - [aux_sym_cmd_identifier_token36] = ACTIONS(1650), - [aux_sym_cmd_identifier_token37] = ACTIONS(1650), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), - [aux_sym_cmd_identifier_token39] = ACTIONS(1650), - [aux_sym_cmd_identifier_token40] = ACTIONS(1650), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_DASH2] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in2] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_PLUS2] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1650), - [aux_sym__immediate_decimal_token1] = ACTIONS(1993), - [aux_sym__immediate_decimal_token2] = ACTIONS(1995), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [aux_sym__val_number_token4] = ACTIONS(1648), - [aux_sym__val_number_token5] = ACTIONS(1648), - [aux_sym__val_number_token6] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1650), - [anon_sym_register] = ACTIONS(1648), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1650), + [443] = { + [sym_cell_path] = STATE(685), + [sym_path] = STATE(541), + [sym_comment] = STATE(443), + [aux_sym_cell_path_repeat1] = STATE(430), + [anon_sym_export] = ACTIONS(1823), + [anon_sym_alias] = ACTIONS(1823), + [anon_sym_let] = ACTIONS(1823), + [anon_sym_let_DASHenv] = ACTIONS(1823), + [anon_sym_mut] = ACTIONS(1823), + [anon_sym_const] = ACTIONS(1823), + [aux_sym_cmd_identifier_token1] = ACTIONS(1823), + [aux_sym_cmd_identifier_token2] = ACTIONS(1825), + [aux_sym_cmd_identifier_token3] = ACTIONS(1825), + [aux_sym_cmd_identifier_token4] = ACTIONS(1825), + [aux_sym_cmd_identifier_token5] = ACTIONS(1825), + [aux_sym_cmd_identifier_token6] = ACTIONS(1825), + [aux_sym_cmd_identifier_token7] = ACTIONS(1825), + [aux_sym_cmd_identifier_token8] = ACTIONS(1823), + [aux_sym_cmd_identifier_token9] = ACTIONS(1823), + [aux_sym_cmd_identifier_token10] = ACTIONS(1825), + [aux_sym_cmd_identifier_token11] = ACTIONS(1825), + [aux_sym_cmd_identifier_token12] = ACTIONS(1823), + [aux_sym_cmd_identifier_token13] = ACTIONS(1823), + [aux_sym_cmd_identifier_token14] = ACTIONS(1823), + [aux_sym_cmd_identifier_token15] = ACTIONS(1823), + [aux_sym_cmd_identifier_token16] = ACTIONS(1825), + [aux_sym_cmd_identifier_token17] = ACTIONS(1825), + [aux_sym_cmd_identifier_token18] = ACTIONS(1825), + [aux_sym_cmd_identifier_token19] = ACTIONS(1825), + [aux_sym_cmd_identifier_token20] = ACTIONS(1825), + [aux_sym_cmd_identifier_token21] = ACTIONS(1825), + [aux_sym_cmd_identifier_token22] = ACTIONS(1825), + [aux_sym_cmd_identifier_token23] = ACTIONS(1825), + [aux_sym_cmd_identifier_token24] = ACTIONS(1825), + [aux_sym_cmd_identifier_token25] = ACTIONS(1825), + [aux_sym_cmd_identifier_token26] = ACTIONS(1825), + [aux_sym_cmd_identifier_token27] = ACTIONS(1825), + [aux_sym_cmd_identifier_token28] = ACTIONS(1825), + [aux_sym_cmd_identifier_token29] = ACTIONS(1825), + [aux_sym_cmd_identifier_token30] = ACTIONS(1825), + [aux_sym_cmd_identifier_token31] = ACTIONS(1825), + [aux_sym_cmd_identifier_token32] = ACTIONS(1825), + [aux_sym_cmd_identifier_token33] = ACTIONS(1825), + [aux_sym_cmd_identifier_token34] = ACTIONS(1823), + [aux_sym_cmd_identifier_token35] = ACTIONS(1825), + [aux_sym_cmd_identifier_token36] = ACTIONS(1825), + [aux_sym_cmd_identifier_token37] = ACTIONS(1825), + [aux_sym_cmd_identifier_token38] = ACTIONS(1823), + [aux_sym_cmd_identifier_token39] = ACTIONS(1825), + [aux_sym_cmd_identifier_token40] = ACTIONS(1825), + [anon_sym_def] = ACTIONS(1823), + [anon_sym_export_DASHenv] = ACTIONS(1823), + [anon_sym_extern] = ACTIONS(1823), + [anon_sym_module] = ACTIONS(1823), + [anon_sym_use] = ACTIONS(1823), + [anon_sym_LPAREN] = ACTIONS(1825), + [anon_sym_COMMA] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1823), + [anon_sym_error] = ACTIONS(1823), + [anon_sym_DASH2] = ACTIONS(1823), + [anon_sym_break] = ACTIONS(1823), + [anon_sym_continue] = ACTIONS(1823), + [anon_sym_for] = ACTIONS(1823), + [anon_sym_in2] = ACTIONS(1823), + [anon_sym_loop] = ACTIONS(1823), + [anon_sym_make] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(1823), + [anon_sym_do] = ACTIONS(1823), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_else] = ACTIONS(1823), + [anon_sym_match] = ACTIONS(1823), + [anon_sym_RBRACE] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1823), + [anon_sym_catch] = ACTIONS(1823), + [anon_sym_return] = ACTIONS(1823), + [anon_sym_source] = ACTIONS(1823), + [anon_sym_source_DASHenv] = ACTIONS(1823), + [anon_sym_hide] = ACTIONS(1823), + [anon_sym_hide_DASHenv] = ACTIONS(1823), + [anon_sym_overlay] = ACTIONS(1823), + [anon_sym_as] = ACTIONS(1823), + [anon_sym_PLUS2] = ACTIONS(1823), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1825), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1825), + [aux_sym__val_number_decimal_token1] = ACTIONS(1823), + [aux_sym__val_number_decimal_token2] = ACTIONS(1825), + [aux_sym__val_number_decimal_token3] = ACTIONS(1825), + [aux_sym__val_number_decimal_token4] = ACTIONS(1825), + [aux_sym__val_number_token1] = ACTIONS(1825), + [aux_sym__val_number_token2] = ACTIONS(1825), + [aux_sym__val_number_token3] = ACTIONS(1825), + [aux_sym__val_number_token4] = ACTIONS(1823), + [aux_sym__val_number_token5] = ACTIONS(1823), + [aux_sym__val_number_token6] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1825), + [sym__str_single_quotes] = ACTIONS(1825), + [sym__str_back_ticks] = ACTIONS(1825), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1825), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1825), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1825), + [anon_sym_register] = ACTIONS(1823), + [anon_sym_DOT2] = ACTIONS(1821), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1825), }, - [458] = { - [sym_comment] = STATE(458), - [anon_sym_export] = ACTIONS(1666), - [anon_sym_alias] = ACTIONS(1666), - [anon_sym_let] = ACTIONS(1666), - [anon_sym_let_DASHenv] = ACTIONS(1666), - [anon_sym_mut] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [aux_sym_cmd_identifier_token1] = ACTIONS(1666), - [aux_sym_cmd_identifier_token2] = ACTIONS(1668), - [aux_sym_cmd_identifier_token3] = ACTIONS(1668), - [aux_sym_cmd_identifier_token4] = ACTIONS(1668), - [aux_sym_cmd_identifier_token5] = ACTIONS(1668), - [aux_sym_cmd_identifier_token6] = ACTIONS(1668), - [aux_sym_cmd_identifier_token7] = ACTIONS(1668), - [aux_sym_cmd_identifier_token8] = ACTIONS(1666), - [aux_sym_cmd_identifier_token9] = ACTIONS(1666), - [aux_sym_cmd_identifier_token10] = ACTIONS(1668), - [aux_sym_cmd_identifier_token11] = ACTIONS(1668), - [aux_sym_cmd_identifier_token12] = ACTIONS(1666), - [aux_sym_cmd_identifier_token13] = ACTIONS(1666), - [aux_sym_cmd_identifier_token14] = ACTIONS(1666), - [aux_sym_cmd_identifier_token15] = ACTIONS(1666), - [aux_sym_cmd_identifier_token16] = ACTIONS(1668), - [aux_sym_cmd_identifier_token17] = ACTIONS(1668), - [aux_sym_cmd_identifier_token18] = ACTIONS(1668), - [aux_sym_cmd_identifier_token19] = ACTIONS(1668), - [aux_sym_cmd_identifier_token20] = ACTIONS(1668), - [aux_sym_cmd_identifier_token21] = ACTIONS(1668), - [aux_sym_cmd_identifier_token22] = ACTIONS(1668), - [aux_sym_cmd_identifier_token23] = ACTIONS(1668), - [aux_sym_cmd_identifier_token24] = ACTIONS(1668), - [aux_sym_cmd_identifier_token25] = ACTIONS(1668), - [aux_sym_cmd_identifier_token26] = ACTIONS(1668), - [aux_sym_cmd_identifier_token27] = ACTIONS(1668), - [aux_sym_cmd_identifier_token28] = ACTIONS(1668), - [aux_sym_cmd_identifier_token29] = ACTIONS(1668), - [aux_sym_cmd_identifier_token30] = ACTIONS(1668), - [aux_sym_cmd_identifier_token31] = ACTIONS(1668), - [aux_sym_cmd_identifier_token32] = ACTIONS(1668), - [aux_sym_cmd_identifier_token33] = ACTIONS(1668), - [aux_sym_cmd_identifier_token34] = ACTIONS(1666), - [aux_sym_cmd_identifier_token35] = ACTIONS(1668), - [aux_sym_cmd_identifier_token36] = ACTIONS(1668), - [aux_sym_cmd_identifier_token37] = ACTIONS(1668), - [aux_sym_cmd_identifier_token38] = ACTIONS(1666), - [aux_sym_cmd_identifier_token39] = ACTIONS(1668), - [aux_sym_cmd_identifier_token40] = ACTIONS(1668), - [anon_sym_def] = ACTIONS(1666), - [anon_sym_export_DASHenv] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_module] = ACTIONS(1666), - [anon_sym_use] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_error] = ACTIONS(1666), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_in2] = ACTIONS(1666), - [anon_sym_loop] = ACTIONS(1666), - [anon_sym_make] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_do] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_match] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_try] = ACTIONS(1666), - [anon_sym_catch] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_source] = ACTIONS(1666), - [anon_sym_source_DASHenv] = ACTIONS(1666), - [anon_sym_hide] = ACTIONS(1666), - [anon_sym_hide_DASHenv] = ACTIONS(1666), - [anon_sym_overlay] = ACTIONS(1666), - [anon_sym_as] = ACTIONS(1666), - [anon_sym_PLUS2] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1668), - [anon_sym_DOT_DOT2] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [aux_sym__immediate_decimal_token2] = ACTIONS(1911), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1666), - [aux_sym__val_number_token5] = ACTIONS(1666), - [aux_sym__val_number_token6] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1666), + [444] = { + [sym_cell_path] = STATE(686), + [sym_path] = STATE(541), + [sym_comment] = STATE(444), + [aux_sym_cell_path_repeat1] = STATE(430), + [anon_sym_export] = ACTIONS(1833), + [anon_sym_alias] = ACTIONS(1833), + [anon_sym_let] = ACTIONS(1833), + [anon_sym_let_DASHenv] = ACTIONS(1833), + [anon_sym_mut] = ACTIONS(1833), + [anon_sym_const] = ACTIONS(1833), + [aux_sym_cmd_identifier_token1] = ACTIONS(1833), + [aux_sym_cmd_identifier_token2] = ACTIONS(1835), + [aux_sym_cmd_identifier_token3] = ACTIONS(1835), + [aux_sym_cmd_identifier_token4] = ACTIONS(1835), + [aux_sym_cmd_identifier_token5] = ACTIONS(1835), + [aux_sym_cmd_identifier_token6] = ACTIONS(1835), + [aux_sym_cmd_identifier_token7] = ACTIONS(1835), + [aux_sym_cmd_identifier_token8] = ACTIONS(1833), + [aux_sym_cmd_identifier_token9] = ACTIONS(1833), + [aux_sym_cmd_identifier_token10] = ACTIONS(1835), + [aux_sym_cmd_identifier_token11] = ACTIONS(1835), + [aux_sym_cmd_identifier_token12] = ACTIONS(1833), + [aux_sym_cmd_identifier_token13] = ACTIONS(1833), + [aux_sym_cmd_identifier_token14] = ACTIONS(1833), + [aux_sym_cmd_identifier_token15] = ACTIONS(1833), + [aux_sym_cmd_identifier_token16] = ACTIONS(1835), + [aux_sym_cmd_identifier_token17] = ACTIONS(1835), + [aux_sym_cmd_identifier_token18] = ACTIONS(1835), + [aux_sym_cmd_identifier_token19] = ACTIONS(1835), + [aux_sym_cmd_identifier_token20] = ACTIONS(1835), + [aux_sym_cmd_identifier_token21] = ACTIONS(1835), + [aux_sym_cmd_identifier_token22] = ACTIONS(1835), + [aux_sym_cmd_identifier_token23] = ACTIONS(1835), + [aux_sym_cmd_identifier_token24] = ACTIONS(1835), + [aux_sym_cmd_identifier_token25] = ACTIONS(1835), + [aux_sym_cmd_identifier_token26] = ACTIONS(1835), + [aux_sym_cmd_identifier_token27] = ACTIONS(1835), + [aux_sym_cmd_identifier_token28] = ACTIONS(1835), + [aux_sym_cmd_identifier_token29] = ACTIONS(1835), + [aux_sym_cmd_identifier_token30] = ACTIONS(1835), + [aux_sym_cmd_identifier_token31] = ACTIONS(1835), + [aux_sym_cmd_identifier_token32] = ACTIONS(1835), + [aux_sym_cmd_identifier_token33] = ACTIONS(1835), + [aux_sym_cmd_identifier_token34] = ACTIONS(1833), + [aux_sym_cmd_identifier_token35] = ACTIONS(1835), + [aux_sym_cmd_identifier_token36] = ACTIONS(1835), + [aux_sym_cmd_identifier_token37] = ACTIONS(1835), + [aux_sym_cmd_identifier_token38] = ACTIONS(1833), + [aux_sym_cmd_identifier_token39] = ACTIONS(1835), + [aux_sym_cmd_identifier_token40] = ACTIONS(1835), + [anon_sym_def] = ACTIONS(1833), + [anon_sym_export_DASHenv] = ACTIONS(1833), + [anon_sym_extern] = ACTIONS(1833), + [anon_sym_module] = ACTIONS(1833), + [anon_sym_use] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1835), + [anon_sym_COMMA] = ACTIONS(1835), + [anon_sym_DOLLAR] = ACTIONS(1833), + [anon_sym_error] = ACTIONS(1833), + [anon_sym_DASH2] = ACTIONS(1833), + [anon_sym_break] = ACTIONS(1833), + [anon_sym_continue] = ACTIONS(1833), + [anon_sym_for] = ACTIONS(1833), + [anon_sym_in2] = ACTIONS(1833), + [anon_sym_loop] = ACTIONS(1833), + [anon_sym_make] = ACTIONS(1833), + [anon_sym_while] = ACTIONS(1833), + [anon_sym_do] = ACTIONS(1833), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_else] = ACTIONS(1833), + [anon_sym_match] = ACTIONS(1833), + [anon_sym_RBRACE] = ACTIONS(1835), + [anon_sym_try] = ACTIONS(1833), + [anon_sym_catch] = ACTIONS(1833), + [anon_sym_return] = ACTIONS(1833), + [anon_sym_source] = ACTIONS(1833), + [anon_sym_source_DASHenv] = ACTIONS(1833), + [anon_sym_hide] = ACTIONS(1833), + [anon_sym_hide_DASHenv] = ACTIONS(1833), + [anon_sym_overlay] = ACTIONS(1833), + [anon_sym_as] = ACTIONS(1833), + [anon_sym_PLUS2] = ACTIONS(1833), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1835), + [aux_sym__val_number_decimal_token1] = ACTIONS(1833), + [aux_sym__val_number_decimal_token2] = ACTIONS(1835), + [aux_sym__val_number_decimal_token3] = ACTIONS(1835), + [aux_sym__val_number_decimal_token4] = ACTIONS(1835), + [aux_sym__val_number_token1] = ACTIONS(1835), + [aux_sym__val_number_token2] = ACTIONS(1835), + [aux_sym__val_number_token3] = ACTIONS(1835), + [aux_sym__val_number_token4] = ACTIONS(1833), + [aux_sym__val_number_token5] = ACTIONS(1833), + [aux_sym__val_number_token6] = ACTIONS(1833), + [anon_sym_DQUOTE] = ACTIONS(1835), + [sym__str_single_quotes] = ACTIONS(1835), + [sym__str_back_ticks] = ACTIONS(1835), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1835), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1835), + [anon_sym_register] = ACTIONS(1833), + [anon_sym_DOT2] = ACTIONS(1821), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), + [sym_raw_string_begin] = ACTIONS(1835), }, - [459] = { - [sym_comment] = STATE(459), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_alias] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_let_DASHenv] = ACTIONS(1719), - [anon_sym_mut] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [aux_sym_cmd_identifier_token1] = ACTIONS(1719), - [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(1719), - [aux_sym_cmd_identifier_token9] = ACTIONS(1719), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1719), - [aux_sym_cmd_identifier_token13] = ACTIONS(1719), - [aux_sym_cmd_identifier_token14] = ACTIONS(1719), - [aux_sym_cmd_identifier_token15] = ACTIONS(1719), - [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(1719), - [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(1719), - [aux_sym_cmd_identifier_token39] = ACTIONS(1721), - [aux_sym_cmd_identifier_token40] = ACTIONS(1721), - [anon_sym_def] = ACTIONS(1719), - [anon_sym_export_DASHenv] = ACTIONS(1719), - [anon_sym_extern] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_use] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_COMMA] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_error] = ACTIONS(1719), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_in2] = ACTIONS(1719), - [anon_sym_loop] = ACTIONS(1719), - [anon_sym_make] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_match] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_catch] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_source] = ACTIONS(1719), - [anon_sym_source_DASHenv] = ACTIONS(1719), - [anon_sym_hide] = ACTIONS(1719), - [anon_sym_hide_DASHenv] = ACTIONS(1719), - [anon_sym_overlay] = ACTIONS(1719), - [anon_sym_as] = ACTIONS(1719), - [anon_sym_PLUS2] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), - [anon_sym_DOT_DOT2] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1721), - [aux_sym__immediate_decimal_token2] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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(1719), - [aux_sym__val_number_token5] = ACTIONS(1719), - [aux_sym__val_number_token6] = ACTIONS(1719), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1719), + [445] = { + [sym_cell_path] = STATE(687), + [sym_path] = STATE(541), + [sym_comment] = STATE(445), + [aux_sym_cell_path_repeat1] = STATE(430), + [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_COMMA] = ACTIONS(1881), + [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(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_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_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_DOLLAR_SQUOTE] = ACTIONS(1881), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1881), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1881), + [anon_sym_register] = ACTIONS(1879), + [anon_sym_DOT2] = ACTIONS(1821), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1721), + [sym_raw_string_begin] = ACTIONS(1881), }, - [460] = { - [sym_comment] = STATE(460), - [anon_sym_export] = ACTIONS(1666), - [anon_sym_alias] = ACTIONS(1666), - [anon_sym_let] = ACTIONS(1666), - [anon_sym_let_DASHenv] = ACTIONS(1666), - [anon_sym_mut] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [aux_sym_cmd_identifier_token1] = ACTIONS(1666), - [aux_sym_cmd_identifier_token2] = ACTIONS(1666), - [aux_sym_cmd_identifier_token3] = ACTIONS(1666), - [aux_sym_cmd_identifier_token4] = ACTIONS(1666), - [aux_sym_cmd_identifier_token5] = ACTIONS(1666), - [aux_sym_cmd_identifier_token6] = ACTIONS(1666), - [aux_sym_cmd_identifier_token7] = ACTIONS(1666), - [aux_sym_cmd_identifier_token8] = ACTIONS(1666), - [aux_sym_cmd_identifier_token9] = ACTIONS(1666), - [aux_sym_cmd_identifier_token10] = ACTIONS(1666), - [aux_sym_cmd_identifier_token11] = ACTIONS(1666), - [aux_sym_cmd_identifier_token12] = ACTIONS(1666), - [aux_sym_cmd_identifier_token13] = ACTIONS(1666), - [aux_sym_cmd_identifier_token14] = ACTIONS(1666), - [aux_sym_cmd_identifier_token15] = ACTIONS(1666), - [aux_sym_cmd_identifier_token16] = ACTIONS(1666), - [aux_sym_cmd_identifier_token17] = ACTIONS(1666), - [aux_sym_cmd_identifier_token18] = ACTIONS(1666), - [aux_sym_cmd_identifier_token19] = ACTIONS(1666), - [aux_sym_cmd_identifier_token20] = ACTIONS(1666), - [aux_sym_cmd_identifier_token21] = ACTIONS(1666), - [aux_sym_cmd_identifier_token22] = ACTIONS(1666), - [aux_sym_cmd_identifier_token23] = ACTIONS(1666), - [aux_sym_cmd_identifier_token24] = ACTIONS(1666), - [aux_sym_cmd_identifier_token25] = ACTIONS(1666), - [aux_sym_cmd_identifier_token26] = ACTIONS(1666), - [aux_sym_cmd_identifier_token27] = ACTIONS(1666), - [aux_sym_cmd_identifier_token28] = ACTIONS(1666), - [aux_sym_cmd_identifier_token29] = ACTIONS(1666), - [aux_sym_cmd_identifier_token30] = ACTIONS(1666), - [aux_sym_cmd_identifier_token31] = ACTIONS(1666), - [aux_sym_cmd_identifier_token32] = ACTIONS(1666), - [aux_sym_cmd_identifier_token33] = ACTIONS(1666), - [aux_sym_cmd_identifier_token34] = ACTIONS(1666), - [aux_sym_cmd_identifier_token35] = ACTIONS(1666), - [aux_sym_cmd_identifier_token36] = ACTIONS(1666), - [aux_sym_cmd_identifier_token37] = ACTIONS(1666), - [aux_sym_cmd_identifier_token38] = ACTIONS(1666), - [aux_sym_cmd_identifier_token39] = ACTIONS(1666), - [aux_sym_cmd_identifier_token40] = ACTIONS(1666), - [anon_sym_def] = ACTIONS(1666), - [anon_sym_export_DASHenv] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_module] = ACTIONS(1666), - [anon_sym_use] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_COMMA] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_error] = ACTIONS(1666), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_in2] = ACTIONS(1666), - [anon_sym_loop] = ACTIONS(1666), - [anon_sym_make] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_do] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_match] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(1666), - [anon_sym_try] = ACTIONS(1666), - [anon_sym_catch] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_source] = ACTIONS(1666), - [anon_sym_source_DASHenv] = ACTIONS(1666), - [anon_sym_hide] = ACTIONS(1666), - [anon_sym_hide_DASHenv] = ACTIONS(1666), - [anon_sym_overlay] = ACTIONS(1666), - [anon_sym_as] = ACTIONS(1666), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_PLUS2] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1666), - [aux_sym__immediate_decimal_token2] = ACTIONS(1921), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1666), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1666), - [aux_sym__val_number_decimal_token3] = ACTIONS(1666), - [aux_sym__val_number_decimal_token4] = ACTIONS(1666), - [aux_sym__val_number_token1] = ACTIONS(1666), - [aux_sym__val_number_token2] = ACTIONS(1666), - [aux_sym__val_number_token3] = ACTIONS(1666), - [aux_sym__val_number_token4] = ACTIONS(1666), - [aux_sym__val_number_token5] = ACTIONS(1666), - [aux_sym__val_number_token6] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1666), - [sym__str_single_quotes] = ACTIONS(1666), - [sym__str_back_ticks] = ACTIONS(1666), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1666), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1666), - [sym__entry_separator] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1666), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1668), + [446] = { + [sym_cell_path] = STATE(688), + [sym_path] = STATE(541), + [sym_comment] = STATE(446), + [aux_sym_cell_path_repeat1] = STATE(430), + [anon_sym_export] = ACTIONS(1849), + [anon_sym_alias] = ACTIONS(1849), + [anon_sym_let] = ACTIONS(1849), + [anon_sym_let_DASHenv] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1849), + [aux_sym_cmd_identifier_token1] = ACTIONS(1849), + [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(1849), + [aux_sym_cmd_identifier_token9] = ACTIONS(1849), + [aux_sym_cmd_identifier_token10] = ACTIONS(1851), + [aux_sym_cmd_identifier_token11] = ACTIONS(1851), + [aux_sym_cmd_identifier_token12] = ACTIONS(1849), + [aux_sym_cmd_identifier_token13] = ACTIONS(1849), + [aux_sym_cmd_identifier_token14] = ACTIONS(1849), + [aux_sym_cmd_identifier_token15] = ACTIONS(1849), + [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(1849), + [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(1849), + [aux_sym_cmd_identifier_token39] = ACTIONS(1851), + [aux_sym_cmd_identifier_token40] = ACTIONS(1851), + [anon_sym_def] = ACTIONS(1849), + [anon_sym_export_DASHenv] = ACTIONS(1849), + [anon_sym_extern] = ACTIONS(1849), + [anon_sym_module] = ACTIONS(1849), + [anon_sym_use] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(1851), + [anon_sym_COMMA] = ACTIONS(1851), + [anon_sym_DOLLAR] = ACTIONS(1849), + [anon_sym_error] = ACTIONS(1849), + [anon_sym_DASH2] = ACTIONS(1849), + [anon_sym_break] = ACTIONS(1849), + [anon_sym_continue] = ACTIONS(1849), + [anon_sym_for] = ACTIONS(1849), + [anon_sym_in2] = ACTIONS(1849), + [anon_sym_loop] = ACTIONS(1849), + [anon_sym_make] = ACTIONS(1849), + [anon_sym_while] = ACTIONS(1849), + [anon_sym_do] = ACTIONS(1849), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_else] = ACTIONS(1849), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_RBRACE] = ACTIONS(1851), + [anon_sym_try] = ACTIONS(1849), + [anon_sym_catch] = ACTIONS(1849), + [anon_sym_return] = ACTIONS(1849), + [anon_sym_source] = ACTIONS(1849), + [anon_sym_source_DASHenv] = ACTIONS(1849), + [anon_sym_hide] = ACTIONS(1849), + [anon_sym_hide_DASHenv] = ACTIONS(1849), + [anon_sym_overlay] = ACTIONS(1849), + [anon_sym_as] = ACTIONS(1849), + [anon_sym_PLUS2] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1851), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1851), + [aux_sym__val_number_decimal_token1] = ACTIONS(1849), + [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(1849), + [aux_sym__val_number_token5] = ACTIONS(1849), + [aux_sym__val_number_token6] = ACTIONS(1849), + [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1851), + [anon_sym_register] = ACTIONS(1849), + [anon_sym_DOT2] = ACTIONS(1821), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1851), }, - [461] = { - [sym_comment] = STATE(461), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_alias] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_let_DASHenv] = ACTIONS(1719), - [anon_sym_mut] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [aux_sym_cmd_identifier_token1] = ACTIONS(1719), - [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(1719), - [aux_sym_cmd_identifier_token9] = ACTIONS(1719), - [aux_sym_cmd_identifier_token10] = ACTIONS(1719), - [aux_sym_cmd_identifier_token11] = ACTIONS(1719), - [aux_sym_cmd_identifier_token12] = ACTIONS(1719), - [aux_sym_cmd_identifier_token13] = ACTIONS(1719), - [aux_sym_cmd_identifier_token14] = ACTIONS(1719), - [aux_sym_cmd_identifier_token15] = ACTIONS(1719), - [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(1719), - [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(1719), - [aux_sym_cmd_identifier_token39] = ACTIONS(1719), - [aux_sym_cmd_identifier_token40] = ACTIONS(1719), - [anon_sym_def] = ACTIONS(1719), - [anon_sym_export_DASHenv] = ACTIONS(1719), - [anon_sym_extern] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_use] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_COMMA] = ACTIONS(1719), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_error] = ACTIONS(1719), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_in2] = ACTIONS(1719), - [anon_sym_loop] = ACTIONS(1719), - [anon_sym_make] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_match] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_catch] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_source] = ACTIONS(1719), - [anon_sym_source_DASHenv] = ACTIONS(1719), - [anon_sym_hide] = ACTIONS(1719), - [anon_sym_hide_DASHenv] = ACTIONS(1719), - [anon_sym_overlay] = ACTIONS(1719), - [anon_sym_as] = ACTIONS(1719), - [anon_sym_LPAREN2] = ACTIONS(1721), - [anon_sym_PLUS2] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1719), - [aux_sym__immediate_decimal_token2] = ACTIONS(1999), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1719), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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_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_DOT_DOT_DOT_LBRACE] = ACTIONS(1719), - [sym__entry_separator] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1719), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1721), + [447] = { + [sym_cell_path] = STATE(689), + [sym_path] = STATE(541), + [sym_comment] = STATE(447), + [aux_sym_cell_path_repeat1] = STATE(430), + [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_COMMA] = ACTIONS(1865), + [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(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_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_DOLLAR_SQUOTE] = ACTIONS(1865), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1865), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1865), + [anon_sym_register] = ACTIONS(1863), + [anon_sym_DOT2] = ACTIONS(1821), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1865), }, - [462] = { - [sym_comment] = STATE(462), - [anon_sym_export] = ACTIONS(1666), - [anon_sym_alias] = ACTIONS(1666), - [anon_sym_let] = ACTIONS(1666), - [anon_sym_let_DASHenv] = ACTIONS(1666), - [anon_sym_mut] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [aux_sym_cmd_identifier_token1] = ACTIONS(1666), - [aux_sym_cmd_identifier_token2] = ACTIONS(1666), - [aux_sym_cmd_identifier_token3] = ACTIONS(1666), - [aux_sym_cmd_identifier_token4] = ACTIONS(1666), - [aux_sym_cmd_identifier_token5] = ACTIONS(1666), - [aux_sym_cmd_identifier_token6] = ACTIONS(1666), - [aux_sym_cmd_identifier_token7] = ACTIONS(1666), - [aux_sym_cmd_identifier_token8] = ACTIONS(1666), - [aux_sym_cmd_identifier_token9] = ACTIONS(1666), - [aux_sym_cmd_identifier_token10] = ACTIONS(1666), - [aux_sym_cmd_identifier_token11] = ACTIONS(1666), - [aux_sym_cmd_identifier_token12] = ACTIONS(1666), - [aux_sym_cmd_identifier_token13] = ACTIONS(1666), - [aux_sym_cmd_identifier_token14] = ACTIONS(1666), - [aux_sym_cmd_identifier_token15] = ACTIONS(1666), - [aux_sym_cmd_identifier_token16] = ACTIONS(1666), - [aux_sym_cmd_identifier_token17] = ACTIONS(1666), - [aux_sym_cmd_identifier_token18] = ACTIONS(1666), - [aux_sym_cmd_identifier_token19] = ACTIONS(1666), - [aux_sym_cmd_identifier_token20] = ACTIONS(1666), - [aux_sym_cmd_identifier_token21] = ACTIONS(1666), - [aux_sym_cmd_identifier_token22] = ACTIONS(1666), - [aux_sym_cmd_identifier_token23] = ACTIONS(1666), - [aux_sym_cmd_identifier_token24] = ACTIONS(1666), - [aux_sym_cmd_identifier_token25] = ACTIONS(1666), - [aux_sym_cmd_identifier_token26] = ACTIONS(1666), - [aux_sym_cmd_identifier_token27] = ACTIONS(1666), - [aux_sym_cmd_identifier_token28] = ACTIONS(1666), - [aux_sym_cmd_identifier_token29] = ACTIONS(1666), - [aux_sym_cmd_identifier_token30] = ACTIONS(1666), - [aux_sym_cmd_identifier_token31] = ACTIONS(1666), - [aux_sym_cmd_identifier_token32] = ACTIONS(1666), - [aux_sym_cmd_identifier_token33] = ACTIONS(1666), - [aux_sym_cmd_identifier_token34] = ACTIONS(1666), - [aux_sym_cmd_identifier_token35] = ACTIONS(1666), - [aux_sym_cmd_identifier_token36] = ACTIONS(1666), - [aux_sym_cmd_identifier_token37] = ACTIONS(1666), - [aux_sym_cmd_identifier_token38] = ACTIONS(1666), - [aux_sym_cmd_identifier_token39] = ACTIONS(1666), - [aux_sym_cmd_identifier_token40] = ACTIONS(1666), - [anon_sym_def] = ACTIONS(1666), - [anon_sym_export_DASHenv] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_module] = ACTIONS(1666), - [anon_sym_use] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_COMMA] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_error] = ACTIONS(1666), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_in2] = ACTIONS(1666), - [anon_sym_loop] = ACTIONS(1666), - [anon_sym_make] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_do] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_match] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(1666), - [anon_sym_try] = ACTIONS(1666), - [anon_sym_catch] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_source] = ACTIONS(1666), - [anon_sym_source_DASHenv] = ACTIONS(1666), - [anon_sym_hide] = ACTIONS(1666), - [anon_sym_hide_DASHenv] = ACTIONS(1666), - [anon_sym_overlay] = ACTIONS(1666), - [anon_sym_as] = ACTIONS(1666), - [anon_sym_PLUS2] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1666), - [anon_sym_DOT_DOT2] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1666), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1666), - [aux_sym__val_number_decimal_token3] = ACTIONS(1666), - [aux_sym__val_number_decimal_token4] = ACTIONS(1666), - [aux_sym__val_number_token1] = ACTIONS(1666), - [aux_sym__val_number_token2] = ACTIONS(1666), - [aux_sym__val_number_token3] = ACTIONS(1666), - [aux_sym__val_number_token4] = ACTIONS(1666), - [aux_sym__val_number_token5] = ACTIONS(1666), - [aux_sym__val_number_token6] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1666), - [sym__str_single_quotes] = ACTIONS(1666), - [sym__str_back_ticks] = ACTIONS(1666), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1666), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1666), - [sym__entry_separator] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1666), + [448] = { + [sym_comment] = STATE(448), + [anon_sym_export] = ACTIONS(1797), + [anon_sym_alias] = ACTIONS(1797), + [anon_sym_let] = ACTIONS(1797), + [anon_sym_let_DASHenv] = ACTIONS(1797), + [anon_sym_mut] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(1797), + [aux_sym_cmd_identifier_token1] = ACTIONS(1797), + [aux_sym_cmd_identifier_token2] = ACTIONS(1797), + [aux_sym_cmd_identifier_token3] = ACTIONS(1797), + [aux_sym_cmd_identifier_token4] = ACTIONS(1797), + [aux_sym_cmd_identifier_token5] = ACTIONS(1797), + [aux_sym_cmd_identifier_token6] = ACTIONS(1797), + [aux_sym_cmd_identifier_token7] = ACTIONS(1797), + [aux_sym_cmd_identifier_token8] = ACTIONS(1797), + [aux_sym_cmd_identifier_token9] = ACTIONS(1797), + [aux_sym_cmd_identifier_token10] = ACTIONS(1797), + [aux_sym_cmd_identifier_token11] = ACTIONS(1797), + [aux_sym_cmd_identifier_token12] = ACTIONS(1797), + [aux_sym_cmd_identifier_token13] = ACTIONS(1797), + [aux_sym_cmd_identifier_token14] = ACTIONS(1797), + [aux_sym_cmd_identifier_token15] = ACTIONS(1797), + [aux_sym_cmd_identifier_token16] = ACTIONS(1797), + [aux_sym_cmd_identifier_token17] = ACTIONS(1797), + [aux_sym_cmd_identifier_token18] = ACTIONS(1797), + [aux_sym_cmd_identifier_token19] = ACTIONS(1797), + [aux_sym_cmd_identifier_token20] = ACTIONS(1797), + [aux_sym_cmd_identifier_token21] = ACTIONS(1797), + [aux_sym_cmd_identifier_token22] = ACTIONS(1797), + [aux_sym_cmd_identifier_token23] = ACTIONS(1797), + [aux_sym_cmd_identifier_token24] = ACTIONS(1797), + [aux_sym_cmd_identifier_token25] = ACTIONS(1797), + [aux_sym_cmd_identifier_token26] = ACTIONS(1797), + [aux_sym_cmd_identifier_token27] = ACTIONS(1797), + [aux_sym_cmd_identifier_token28] = ACTIONS(1797), + [aux_sym_cmd_identifier_token29] = ACTIONS(1797), + [aux_sym_cmd_identifier_token30] = ACTIONS(1797), + [aux_sym_cmd_identifier_token31] = ACTIONS(1797), + [aux_sym_cmd_identifier_token32] = ACTIONS(1797), + [aux_sym_cmd_identifier_token33] = ACTIONS(1797), + [aux_sym_cmd_identifier_token34] = ACTIONS(1797), + [aux_sym_cmd_identifier_token35] = ACTIONS(1797), + [aux_sym_cmd_identifier_token36] = ACTIONS(1797), + [aux_sym_cmd_identifier_token37] = ACTIONS(1797), + [aux_sym_cmd_identifier_token38] = ACTIONS(1797), + [aux_sym_cmd_identifier_token39] = ACTIONS(1797), + [aux_sym_cmd_identifier_token40] = ACTIONS(1797), + [anon_sym_def] = ACTIONS(1797), + [anon_sym_export_DASHenv] = ACTIONS(1797), + [anon_sym_extern] = ACTIONS(1797), + [anon_sym_module] = ACTIONS(1797), + [anon_sym_use] = ACTIONS(1797), + [anon_sym_LPAREN] = ACTIONS(1797), + [anon_sym_COMMA] = ACTIONS(1797), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_error] = ACTIONS(1797), + [anon_sym_DASH2] = ACTIONS(1797), + [anon_sym_break] = ACTIONS(1797), + [anon_sym_continue] = ACTIONS(1797), + [anon_sym_for] = ACTIONS(1797), + [anon_sym_in2] = ACTIONS(1797), + [anon_sym_loop] = ACTIONS(1797), + [anon_sym_make] = ACTIONS(1797), + [anon_sym_while] = ACTIONS(1797), + [anon_sym_do] = ACTIONS(1797), + [anon_sym_if] = ACTIONS(1797), + [anon_sym_else] = ACTIONS(1797), + [anon_sym_match] = ACTIONS(1797), + [anon_sym_RBRACE] = ACTIONS(1797), + [anon_sym_try] = ACTIONS(1797), + [anon_sym_catch] = ACTIONS(1797), + [anon_sym_return] = ACTIONS(1797), + [anon_sym_source] = ACTIONS(1797), + [anon_sym_source_DASHenv] = ACTIONS(1797), + [anon_sym_hide] = ACTIONS(1797), + [anon_sym_hide_DASHenv] = ACTIONS(1797), + [anon_sym_overlay] = ACTIONS(1797), + [anon_sym_as] = ACTIONS(1797), + [anon_sym_PLUS2] = ACTIONS(1797), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1797), + [anon_sym_DOT_DOT2] = ACTIONS(1797), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1799), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1797), + [aux_sym__val_number_decimal_token1] = ACTIONS(1797), + [aux_sym__val_number_decimal_token2] = ACTIONS(1797), + [aux_sym__val_number_decimal_token3] = ACTIONS(1797), + [aux_sym__val_number_decimal_token4] = ACTIONS(1797), + [aux_sym__val_number_token1] = ACTIONS(1797), + [aux_sym__val_number_token2] = ACTIONS(1797), + [aux_sym__val_number_token3] = ACTIONS(1797), + [aux_sym__val_number_token4] = ACTIONS(1797), + [aux_sym__val_number_token5] = ACTIONS(1797), + [aux_sym__val_number_token6] = ACTIONS(1797), + [anon_sym_DQUOTE] = ACTIONS(1797), + [sym__str_single_quotes] = ACTIONS(1797), + [sym__str_back_ticks] = ACTIONS(1797), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1797), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1797), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1797), + [sym__entry_separator] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1797), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1668), + [sym_raw_string_begin] = ACTIONS(1799), }, - [463] = { - [sym_comment] = STATE(463), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), - [aux_sym_cmd_identifier_token2] = ACTIONS(1648), - [aux_sym_cmd_identifier_token3] = ACTIONS(1648), - [aux_sym_cmd_identifier_token4] = ACTIONS(1648), - [aux_sym_cmd_identifier_token5] = ACTIONS(1648), - [aux_sym_cmd_identifier_token6] = ACTIONS(1648), - [aux_sym_cmd_identifier_token7] = ACTIONS(1648), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), - [aux_sym_cmd_identifier_token10] = ACTIONS(1648), - [aux_sym_cmd_identifier_token11] = ACTIONS(1648), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), - [aux_sym_cmd_identifier_token16] = ACTIONS(1648), - [aux_sym_cmd_identifier_token17] = ACTIONS(1648), - [aux_sym_cmd_identifier_token18] = ACTIONS(1648), - [aux_sym_cmd_identifier_token19] = ACTIONS(1648), - [aux_sym_cmd_identifier_token20] = ACTIONS(1648), - [aux_sym_cmd_identifier_token21] = ACTIONS(1648), - [aux_sym_cmd_identifier_token22] = ACTIONS(1648), - [aux_sym_cmd_identifier_token23] = ACTIONS(1648), - [aux_sym_cmd_identifier_token24] = ACTIONS(1648), - [aux_sym_cmd_identifier_token25] = ACTIONS(1648), - [aux_sym_cmd_identifier_token26] = ACTIONS(1648), - [aux_sym_cmd_identifier_token27] = ACTIONS(1648), - [aux_sym_cmd_identifier_token28] = ACTIONS(1648), - [aux_sym_cmd_identifier_token29] = ACTIONS(1648), - [aux_sym_cmd_identifier_token30] = ACTIONS(1648), - [aux_sym_cmd_identifier_token31] = ACTIONS(1648), - [aux_sym_cmd_identifier_token32] = ACTIONS(1648), - [aux_sym_cmd_identifier_token33] = ACTIONS(1648), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), - [aux_sym_cmd_identifier_token35] = ACTIONS(1648), - [aux_sym_cmd_identifier_token36] = ACTIONS(1648), - [aux_sym_cmd_identifier_token37] = ACTIONS(1648), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), - [aux_sym_cmd_identifier_token39] = ACTIONS(1648), - [aux_sym_cmd_identifier_token40] = ACTIONS(1648), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_COMMA] = ACTIONS(1648), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_DASH2] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in2] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_PLUS2] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1648), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1648), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1648), - [aux_sym__val_number_decimal_token3] = ACTIONS(1648), - [aux_sym__val_number_decimal_token4] = ACTIONS(1648), - [aux_sym__val_number_token1] = ACTIONS(1648), - [aux_sym__val_number_token2] = ACTIONS(1648), - [aux_sym__val_number_token3] = ACTIONS(1648), - [aux_sym__val_number_token4] = ACTIONS(1648), - [aux_sym__val_number_token5] = ACTIONS(1648), - [aux_sym__val_number_token6] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1648), - [sym__str_single_quotes] = ACTIONS(1648), - [sym__str_back_ticks] = ACTIONS(1648), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1648), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1648), - [sym__entry_separator] = ACTIONS(1650), - [anon_sym_register] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1650), - }, - [464] = { - [sym_comment] = STATE(464), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_alias] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_let_DASHenv] = ACTIONS(1719), - [anon_sym_mut] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [aux_sym_cmd_identifier_token1] = ACTIONS(1719), - [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(1719), - [aux_sym_cmd_identifier_token9] = ACTIONS(1719), - [aux_sym_cmd_identifier_token10] = ACTIONS(1719), - [aux_sym_cmd_identifier_token11] = ACTIONS(1719), - [aux_sym_cmd_identifier_token12] = ACTIONS(1719), - [aux_sym_cmd_identifier_token13] = ACTIONS(1719), - [aux_sym_cmd_identifier_token14] = ACTIONS(1719), - [aux_sym_cmd_identifier_token15] = ACTIONS(1719), - [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(1719), - [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(1719), - [aux_sym_cmd_identifier_token39] = ACTIONS(1719), - [aux_sym_cmd_identifier_token40] = ACTIONS(1719), - [anon_sym_def] = ACTIONS(1719), - [anon_sym_export_DASHenv] = ACTIONS(1719), - [anon_sym_extern] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_use] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_COMMA] = ACTIONS(1719), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_error] = ACTIONS(1719), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_in2] = ACTIONS(1719), - [anon_sym_loop] = ACTIONS(1719), - [anon_sym_make] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_match] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_catch] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_source] = ACTIONS(1719), - [anon_sym_source_DASHenv] = ACTIONS(1719), - [anon_sym_hide] = ACTIONS(1719), - [anon_sym_hide_DASHenv] = ACTIONS(1719), - [anon_sym_overlay] = ACTIONS(1719), - [anon_sym_as] = ACTIONS(1719), - [anon_sym_PLUS2] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1719), - [anon_sym_DOT_DOT2] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1719), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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_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_DOT_DOT_DOT_LBRACE] = ACTIONS(1719), - [sym__entry_separator] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1721), - }, - [465] = { - [sym_comment] = STATE(465), - [anon_sym_export] = ACTIONS(2001), - [anon_sym_alias] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_let_DASHenv] = ACTIONS(2001), - [anon_sym_mut] = ACTIONS(2001), - [anon_sym_const] = ACTIONS(2001), - [aux_sym_cmd_identifier_token1] = ACTIONS(2001), - [aux_sym_cmd_identifier_token2] = ACTIONS(2001), - [aux_sym_cmd_identifier_token3] = ACTIONS(2001), - [aux_sym_cmd_identifier_token4] = ACTIONS(2001), - [aux_sym_cmd_identifier_token5] = ACTIONS(2001), - [aux_sym_cmd_identifier_token6] = ACTIONS(2001), - [aux_sym_cmd_identifier_token7] = ACTIONS(2001), - [aux_sym_cmd_identifier_token8] = ACTIONS(2001), - [aux_sym_cmd_identifier_token9] = ACTIONS(2001), - [aux_sym_cmd_identifier_token10] = ACTIONS(2001), - [aux_sym_cmd_identifier_token11] = ACTIONS(2001), - [aux_sym_cmd_identifier_token12] = ACTIONS(2001), - [aux_sym_cmd_identifier_token13] = ACTIONS(2001), - [aux_sym_cmd_identifier_token14] = ACTIONS(2001), - [aux_sym_cmd_identifier_token15] = ACTIONS(2001), - [aux_sym_cmd_identifier_token16] = ACTIONS(2001), - [aux_sym_cmd_identifier_token17] = ACTIONS(2001), - [aux_sym_cmd_identifier_token18] = ACTIONS(2001), - [aux_sym_cmd_identifier_token19] = ACTIONS(2001), - [aux_sym_cmd_identifier_token20] = ACTIONS(2001), - [aux_sym_cmd_identifier_token21] = ACTIONS(2001), - [aux_sym_cmd_identifier_token22] = ACTIONS(2001), - [aux_sym_cmd_identifier_token23] = ACTIONS(2001), - [aux_sym_cmd_identifier_token24] = ACTIONS(2001), - [aux_sym_cmd_identifier_token25] = ACTIONS(2001), - [aux_sym_cmd_identifier_token26] = ACTIONS(2001), - [aux_sym_cmd_identifier_token27] = ACTIONS(2001), - [aux_sym_cmd_identifier_token28] = ACTIONS(2001), - [aux_sym_cmd_identifier_token29] = ACTIONS(2001), - [aux_sym_cmd_identifier_token30] = ACTIONS(2001), - [aux_sym_cmd_identifier_token31] = ACTIONS(2001), - [aux_sym_cmd_identifier_token32] = ACTIONS(2001), - [aux_sym_cmd_identifier_token33] = ACTIONS(2001), - [aux_sym_cmd_identifier_token34] = ACTIONS(2001), - [aux_sym_cmd_identifier_token35] = ACTIONS(2001), - [aux_sym_cmd_identifier_token36] = ACTIONS(2001), - [aux_sym_cmd_identifier_token37] = ACTIONS(2001), - [aux_sym_cmd_identifier_token38] = ACTIONS(2001), - [aux_sym_cmd_identifier_token39] = ACTIONS(2001), - [aux_sym_cmd_identifier_token40] = ACTIONS(2001), - [anon_sym_def] = ACTIONS(2001), - [anon_sym_export_DASHenv] = ACTIONS(2001), - [anon_sym_extern] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - [anon_sym_use] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_COMMA] = ACTIONS(2001), - [anon_sym_DOLLAR] = ACTIONS(2001), - [anon_sym_error] = ACTIONS(2001), - [anon_sym_DASH2] = ACTIONS(2001), - [anon_sym_break] = ACTIONS(2001), - [anon_sym_continue] = ACTIONS(2001), - [anon_sym_for] = ACTIONS(2001), - [anon_sym_in2] = ACTIONS(2001), - [anon_sym_loop] = ACTIONS(2001), - [anon_sym_make] = ACTIONS(2001), - [anon_sym_while] = ACTIONS(2001), - [anon_sym_do] = ACTIONS(2001), - [anon_sym_if] = ACTIONS(2001), - [anon_sym_else] = ACTIONS(2001), - [anon_sym_match] = ACTIONS(2001), - [anon_sym_RBRACE] = ACTIONS(2001), - [anon_sym_try] = ACTIONS(2001), - [anon_sym_catch] = ACTIONS(2001), - [anon_sym_return] = ACTIONS(2001), - [anon_sym_source] = ACTIONS(2001), - [anon_sym_source_DASHenv] = ACTIONS(2001), - [anon_sym_hide] = ACTIONS(2001), - [anon_sym_hide_DASHenv] = ACTIONS(2001), - [anon_sym_overlay] = ACTIONS(2001), - [anon_sym_as] = ACTIONS(2001), - [anon_sym_PLUS2] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2001), - [anon_sym_DOT_DOT2] = ACTIONS(2001), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2003), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2001), - [aux_sym__val_number_decimal_token1] = ACTIONS(2001), - [aux_sym__val_number_decimal_token2] = ACTIONS(2001), - [aux_sym__val_number_decimal_token3] = ACTIONS(2001), - [aux_sym__val_number_decimal_token4] = ACTIONS(2001), - [aux_sym__val_number_token1] = ACTIONS(2001), - [aux_sym__val_number_token2] = ACTIONS(2001), - [aux_sym__val_number_token3] = ACTIONS(2001), - [aux_sym__val_number_token4] = ACTIONS(2001), - [aux_sym__val_number_token5] = ACTIONS(2001), - [aux_sym__val_number_token6] = ACTIONS(2001), - [anon_sym_DQUOTE] = ACTIONS(2001), - [sym__str_single_quotes] = ACTIONS(2001), - [sym__str_back_ticks] = ACTIONS(2001), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2001), - [sym__entry_separator] = ACTIONS(2003), - [anon_sym_register] = ACTIONS(2001), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2003), + [449] = { + [sym_cell_path] = STATE(691), + [sym_path] = STATE(541), + [sym_comment] = STATE(449), + [aux_sym_cell_path_repeat1] = STATE(430), + [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_COMMA] = ACTIONS(1873), + [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(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_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_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_DOLLAR_SQUOTE] = ACTIONS(1873), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1873), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1873), + [anon_sym_register] = ACTIONS(1871), + [anon_sym_DOT2] = ACTIONS(1821), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1873), }, - [466] = { - [sym_comment] = STATE(466), - [anon_sym_export] = ACTIONS(1666), - [anon_sym_alias] = ACTIONS(1666), - [anon_sym_let] = ACTIONS(1666), - [anon_sym_let_DASHenv] = ACTIONS(1666), - [anon_sym_mut] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [aux_sym_cmd_identifier_token1] = ACTIONS(1666), - [aux_sym_cmd_identifier_token2] = ACTIONS(1668), - [aux_sym_cmd_identifier_token3] = ACTIONS(1668), - [aux_sym_cmd_identifier_token4] = ACTIONS(1668), - [aux_sym_cmd_identifier_token5] = ACTIONS(1668), - [aux_sym_cmd_identifier_token6] = ACTIONS(1668), - [aux_sym_cmd_identifier_token7] = ACTIONS(1668), - [aux_sym_cmd_identifier_token8] = ACTIONS(1666), - [aux_sym_cmd_identifier_token9] = ACTIONS(1666), - [aux_sym_cmd_identifier_token10] = ACTIONS(1668), - [aux_sym_cmd_identifier_token11] = ACTIONS(1668), - [aux_sym_cmd_identifier_token12] = ACTIONS(1666), - [aux_sym_cmd_identifier_token13] = ACTIONS(1666), - [aux_sym_cmd_identifier_token14] = ACTIONS(1666), - [aux_sym_cmd_identifier_token15] = ACTIONS(1666), - [aux_sym_cmd_identifier_token16] = ACTIONS(1668), - [aux_sym_cmd_identifier_token17] = ACTIONS(1668), - [aux_sym_cmd_identifier_token18] = ACTIONS(1668), - [aux_sym_cmd_identifier_token19] = ACTIONS(1668), - [aux_sym_cmd_identifier_token20] = ACTIONS(1668), - [aux_sym_cmd_identifier_token21] = ACTIONS(1668), - [aux_sym_cmd_identifier_token22] = ACTIONS(1668), - [aux_sym_cmd_identifier_token23] = ACTIONS(1668), - [aux_sym_cmd_identifier_token24] = ACTIONS(1668), - [aux_sym_cmd_identifier_token25] = ACTIONS(1668), - [aux_sym_cmd_identifier_token26] = ACTIONS(1668), - [aux_sym_cmd_identifier_token27] = ACTIONS(1668), - [aux_sym_cmd_identifier_token28] = ACTIONS(1668), - [aux_sym_cmd_identifier_token29] = ACTIONS(1668), - [aux_sym_cmd_identifier_token30] = ACTIONS(1668), - [aux_sym_cmd_identifier_token31] = ACTIONS(1668), - [aux_sym_cmd_identifier_token32] = ACTIONS(1668), - [aux_sym_cmd_identifier_token33] = ACTIONS(1668), - [aux_sym_cmd_identifier_token34] = ACTIONS(1666), - [aux_sym_cmd_identifier_token35] = ACTIONS(1668), - [aux_sym_cmd_identifier_token36] = ACTIONS(1668), - [aux_sym_cmd_identifier_token37] = ACTIONS(1668), - [aux_sym_cmd_identifier_token38] = ACTIONS(1666), - [aux_sym_cmd_identifier_token39] = ACTIONS(1668), - [aux_sym_cmd_identifier_token40] = ACTIONS(1668), - [anon_sym_def] = ACTIONS(1666), - [anon_sym_export_DASHenv] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_module] = ACTIONS(1666), - [anon_sym_use] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_error] = ACTIONS(1666), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_in2] = ACTIONS(1666), - [anon_sym_loop] = ACTIONS(1666), - [anon_sym_make] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_do] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_match] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_try] = ACTIONS(1666), - [anon_sym_catch] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_source] = ACTIONS(1666), - [anon_sym_source_DASHenv] = ACTIONS(1666), - [anon_sym_hide] = ACTIONS(1666), - [anon_sym_hide_DASHenv] = ACTIONS(1666), - [anon_sym_overlay] = ACTIONS(1666), - [anon_sym_as] = ACTIONS(1666), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_PLUS2] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1668), - [anon_sym_DOT] = ACTIONS(2005), - [aux_sym__immediate_decimal_token2] = ACTIONS(2007), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1666), - [aux_sym__val_number_token5] = ACTIONS(1666), - [aux_sym__val_number_token6] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1666), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1666), + [450] = { + [sym_cell_path] = STATE(692), + [sym_path] = STATE(541), + [sym_comment] = STATE(450), + [aux_sym_cell_path_repeat1] = STATE(430), + [anon_sym_export] = ACTIONS(1829), + [anon_sym_alias] = ACTIONS(1829), + [anon_sym_let] = ACTIONS(1829), + [anon_sym_let_DASHenv] = ACTIONS(1829), + [anon_sym_mut] = ACTIONS(1829), + [anon_sym_const] = ACTIONS(1829), + [aux_sym_cmd_identifier_token1] = ACTIONS(1829), + [aux_sym_cmd_identifier_token2] = ACTIONS(1831), + [aux_sym_cmd_identifier_token3] = ACTIONS(1831), + [aux_sym_cmd_identifier_token4] = ACTIONS(1831), + [aux_sym_cmd_identifier_token5] = ACTIONS(1831), + [aux_sym_cmd_identifier_token6] = ACTIONS(1831), + [aux_sym_cmd_identifier_token7] = ACTIONS(1831), + [aux_sym_cmd_identifier_token8] = ACTIONS(1829), + [aux_sym_cmd_identifier_token9] = ACTIONS(1829), + [aux_sym_cmd_identifier_token10] = ACTIONS(1831), + [aux_sym_cmd_identifier_token11] = ACTIONS(1831), + [aux_sym_cmd_identifier_token12] = ACTIONS(1829), + [aux_sym_cmd_identifier_token13] = ACTIONS(1829), + [aux_sym_cmd_identifier_token14] = ACTIONS(1829), + [aux_sym_cmd_identifier_token15] = ACTIONS(1829), + [aux_sym_cmd_identifier_token16] = ACTIONS(1831), + [aux_sym_cmd_identifier_token17] = ACTIONS(1831), + [aux_sym_cmd_identifier_token18] = ACTIONS(1831), + [aux_sym_cmd_identifier_token19] = ACTIONS(1831), + [aux_sym_cmd_identifier_token20] = ACTIONS(1831), + [aux_sym_cmd_identifier_token21] = ACTIONS(1831), + [aux_sym_cmd_identifier_token22] = ACTIONS(1831), + [aux_sym_cmd_identifier_token23] = ACTIONS(1831), + [aux_sym_cmd_identifier_token24] = ACTIONS(1831), + [aux_sym_cmd_identifier_token25] = ACTIONS(1831), + [aux_sym_cmd_identifier_token26] = ACTIONS(1831), + [aux_sym_cmd_identifier_token27] = ACTIONS(1831), + [aux_sym_cmd_identifier_token28] = ACTIONS(1831), + [aux_sym_cmd_identifier_token29] = ACTIONS(1831), + [aux_sym_cmd_identifier_token30] = ACTIONS(1831), + [aux_sym_cmd_identifier_token31] = ACTIONS(1831), + [aux_sym_cmd_identifier_token32] = ACTIONS(1831), + [aux_sym_cmd_identifier_token33] = ACTIONS(1831), + [aux_sym_cmd_identifier_token34] = ACTIONS(1829), + [aux_sym_cmd_identifier_token35] = ACTIONS(1831), + [aux_sym_cmd_identifier_token36] = ACTIONS(1831), + [aux_sym_cmd_identifier_token37] = ACTIONS(1831), + [aux_sym_cmd_identifier_token38] = ACTIONS(1829), + [aux_sym_cmd_identifier_token39] = ACTIONS(1831), + [aux_sym_cmd_identifier_token40] = ACTIONS(1831), + [anon_sym_def] = ACTIONS(1829), + [anon_sym_export_DASHenv] = ACTIONS(1829), + [anon_sym_extern] = ACTIONS(1829), + [anon_sym_module] = ACTIONS(1829), + [anon_sym_use] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_COMMA] = ACTIONS(1831), + [anon_sym_DOLLAR] = ACTIONS(1829), + [anon_sym_error] = ACTIONS(1829), + [anon_sym_DASH2] = ACTIONS(1829), + [anon_sym_break] = ACTIONS(1829), + [anon_sym_continue] = ACTIONS(1829), + [anon_sym_for] = ACTIONS(1829), + [anon_sym_in2] = ACTIONS(1829), + [anon_sym_loop] = ACTIONS(1829), + [anon_sym_make] = ACTIONS(1829), + [anon_sym_while] = ACTIONS(1829), + [anon_sym_do] = ACTIONS(1829), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_else] = ACTIONS(1829), + [anon_sym_match] = ACTIONS(1829), + [anon_sym_RBRACE] = ACTIONS(1831), + [anon_sym_try] = ACTIONS(1829), + [anon_sym_catch] = ACTIONS(1829), + [anon_sym_return] = ACTIONS(1829), + [anon_sym_source] = ACTIONS(1829), + [anon_sym_source_DASHenv] = ACTIONS(1829), + [anon_sym_hide] = ACTIONS(1829), + [anon_sym_hide_DASHenv] = ACTIONS(1829), + [anon_sym_overlay] = ACTIONS(1829), + [anon_sym_as] = ACTIONS(1829), + [anon_sym_PLUS2] = ACTIONS(1829), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1831), + [aux_sym__val_number_decimal_token1] = ACTIONS(1829), + [aux_sym__val_number_decimal_token2] = ACTIONS(1831), + [aux_sym__val_number_decimal_token3] = ACTIONS(1831), + [aux_sym__val_number_decimal_token4] = ACTIONS(1831), + [aux_sym__val_number_token1] = ACTIONS(1831), + [aux_sym__val_number_token2] = ACTIONS(1831), + [aux_sym__val_number_token3] = ACTIONS(1831), + [aux_sym__val_number_token4] = ACTIONS(1829), + [aux_sym__val_number_token5] = ACTIONS(1829), + [aux_sym__val_number_token6] = ACTIONS(1829), + [anon_sym_DQUOTE] = ACTIONS(1831), + [sym__str_single_quotes] = ACTIONS(1831), + [sym__str_back_ticks] = ACTIONS(1831), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1831), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1831), + [anon_sym_register] = ACTIONS(1829), + [anon_sym_DOT2] = ACTIONS(1821), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), + [sym_raw_string_begin] = ACTIONS(1831), }, - [467] = { - [sym_comment] = STATE(467), + [451] = { + [sym_comment] = STATE(451), [anon_sym_export] = ACTIONS(998), [anon_sym_alias] = ACTIONS(998), [anon_sym_let] = ACTIONS(998), @@ -126781,9 +123962,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(998), [anon_sym_PLUS2] = ACTIONS(998), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(998), - [anon_sym_DOT_DOT2] = ACTIONS(1979), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1981), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1981), + [anon_sym_DOT_DOT2] = ACTIONS(1936), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1938), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1938), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(998), [aux_sym__val_number_decimal_token1] = ACTIONS(998), [aux_sym__val_number_decimal_token2] = ACTIONS(998), @@ -126806,1495 +123987,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(994), }, - [468] = { - [sym_comment] = STATE(468), - [anon_sym_export] = ACTIONS(2009), - [anon_sym_alias] = ACTIONS(2009), - [anon_sym_let] = ACTIONS(2009), - [anon_sym_let_DASHenv] = ACTIONS(2009), - [anon_sym_mut] = ACTIONS(2009), - [anon_sym_const] = ACTIONS(2009), - [aux_sym_cmd_identifier_token1] = ACTIONS(2009), - [aux_sym_cmd_identifier_token2] = ACTIONS(2009), - [aux_sym_cmd_identifier_token3] = ACTIONS(2009), - [aux_sym_cmd_identifier_token4] = ACTIONS(2009), - [aux_sym_cmd_identifier_token5] = ACTIONS(2009), - [aux_sym_cmd_identifier_token6] = ACTIONS(2009), - [aux_sym_cmd_identifier_token7] = ACTIONS(2009), - [aux_sym_cmd_identifier_token8] = ACTIONS(2009), - [aux_sym_cmd_identifier_token9] = ACTIONS(2009), - [aux_sym_cmd_identifier_token10] = ACTIONS(2009), - [aux_sym_cmd_identifier_token11] = ACTIONS(2009), - [aux_sym_cmd_identifier_token12] = ACTIONS(2009), - [aux_sym_cmd_identifier_token13] = ACTIONS(2009), - [aux_sym_cmd_identifier_token14] = ACTIONS(2009), - [aux_sym_cmd_identifier_token15] = ACTIONS(2009), - [aux_sym_cmd_identifier_token16] = ACTIONS(2009), - [aux_sym_cmd_identifier_token17] = ACTIONS(2009), - [aux_sym_cmd_identifier_token18] = ACTIONS(2009), - [aux_sym_cmd_identifier_token19] = ACTIONS(2009), - [aux_sym_cmd_identifier_token20] = ACTIONS(2009), - [aux_sym_cmd_identifier_token21] = ACTIONS(2009), - [aux_sym_cmd_identifier_token22] = ACTIONS(2009), - [aux_sym_cmd_identifier_token23] = ACTIONS(2009), - [aux_sym_cmd_identifier_token24] = ACTIONS(2009), - [aux_sym_cmd_identifier_token25] = ACTIONS(2009), - [aux_sym_cmd_identifier_token26] = ACTIONS(2009), - [aux_sym_cmd_identifier_token27] = ACTIONS(2009), - [aux_sym_cmd_identifier_token28] = ACTIONS(2009), - [aux_sym_cmd_identifier_token29] = ACTIONS(2009), - [aux_sym_cmd_identifier_token30] = ACTIONS(2009), - [aux_sym_cmd_identifier_token31] = ACTIONS(2009), - [aux_sym_cmd_identifier_token32] = ACTIONS(2009), - [aux_sym_cmd_identifier_token33] = ACTIONS(2009), - [aux_sym_cmd_identifier_token34] = ACTIONS(2009), - [aux_sym_cmd_identifier_token35] = ACTIONS(2009), - [aux_sym_cmd_identifier_token36] = ACTIONS(2009), - [aux_sym_cmd_identifier_token37] = ACTIONS(2009), - [aux_sym_cmd_identifier_token38] = ACTIONS(2009), - [aux_sym_cmd_identifier_token39] = ACTIONS(2009), - [aux_sym_cmd_identifier_token40] = ACTIONS(2009), - [anon_sym_def] = ACTIONS(2009), - [anon_sym_export_DASHenv] = ACTIONS(2009), - [anon_sym_extern] = ACTIONS(2009), - [anon_sym_module] = ACTIONS(2009), - [anon_sym_use] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_COMMA] = ACTIONS(2009), - [anon_sym_DOLLAR] = ACTIONS(2009), - [anon_sym_error] = ACTIONS(2009), - [anon_sym_DASH2] = ACTIONS(2009), - [anon_sym_break] = ACTIONS(2009), - [anon_sym_continue] = ACTIONS(2009), - [anon_sym_for] = ACTIONS(2009), - [anon_sym_in2] = ACTIONS(2009), - [anon_sym_loop] = ACTIONS(2009), - [anon_sym_make] = ACTIONS(2009), - [anon_sym_while] = ACTIONS(2009), - [anon_sym_do] = ACTIONS(2009), - [anon_sym_if] = ACTIONS(2009), - [anon_sym_else] = ACTIONS(2009), - [anon_sym_match] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2009), - [anon_sym_try] = ACTIONS(2009), - [anon_sym_catch] = ACTIONS(2009), - [anon_sym_return] = ACTIONS(2009), - [anon_sym_source] = ACTIONS(2009), - [anon_sym_source_DASHenv] = ACTIONS(2009), - [anon_sym_hide] = ACTIONS(2009), - [anon_sym_hide_DASHenv] = ACTIONS(2009), - [anon_sym_overlay] = ACTIONS(2009), - [anon_sym_as] = ACTIONS(2009), - [anon_sym_PLUS2] = ACTIONS(2009), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2009), - [anon_sym_DOT_DOT2] = ACTIONS(2011), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2013), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2013), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2009), - [aux_sym__val_number_decimal_token1] = ACTIONS(2009), - [aux_sym__val_number_decimal_token2] = ACTIONS(2009), - [aux_sym__val_number_decimal_token3] = ACTIONS(2009), - [aux_sym__val_number_decimal_token4] = ACTIONS(2009), - [aux_sym__val_number_token1] = ACTIONS(2009), - [aux_sym__val_number_token2] = ACTIONS(2009), - [aux_sym__val_number_token3] = ACTIONS(2009), - [aux_sym__val_number_token4] = ACTIONS(2009), - [aux_sym__val_number_token5] = ACTIONS(2009), - [aux_sym__val_number_token6] = ACTIONS(2009), - [anon_sym_DQUOTE] = ACTIONS(2009), - [sym__str_single_quotes] = ACTIONS(2009), - [sym__str_back_ticks] = ACTIONS(2009), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2009), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2009), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2009), - [sym__entry_separator] = ACTIONS(2015), - [anon_sym_register] = ACTIONS(2009), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2015), - }, - [469] = { - [sym_comment] = STATE(469), - [anon_sym_export] = ACTIONS(2017), - [anon_sym_alias] = ACTIONS(2017), - [anon_sym_let] = ACTIONS(2017), - [anon_sym_let_DASHenv] = ACTIONS(2017), - [anon_sym_mut] = ACTIONS(2017), - [anon_sym_const] = ACTIONS(2017), - [aux_sym_cmd_identifier_token1] = ACTIONS(2017), - [aux_sym_cmd_identifier_token2] = ACTIONS(2017), - [aux_sym_cmd_identifier_token3] = ACTIONS(2017), - [aux_sym_cmd_identifier_token4] = ACTIONS(2017), - [aux_sym_cmd_identifier_token5] = ACTIONS(2017), - [aux_sym_cmd_identifier_token6] = ACTIONS(2017), - [aux_sym_cmd_identifier_token7] = ACTIONS(2017), - [aux_sym_cmd_identifier_token8] = ACTIONS(2017), - [aux_sym_cmd_identifier_token9] = ACTIONS(2017), - [aux_sym_cmd_identifier_token10] = ACTIONS(2017), - [aux_sym_cmd_identifier_token11] = ACTIONS(2017), - [aux_sym_cmd_identifier_token12] = ACTIONS(2017), - [aux_sym_cmd_identifier_token13] = ACTIONS(2017), - [aux_sym_cmd_identifier_token14] = ACTIONS(2017), - [aux_sym_cmd_identifier_token15] = ACTIONS(2017), - [aux_sym_cmd_identifier_token16] = ACTIONS(2017), - [aux_sym_cmd_identifier_token17] = ACTIONS(2017), - [aux_sym_cmd_identifier_token18] = ACTIONS(2017), - [aux_sym_cmd_identifier_token19] = ACTIONS(2017), - [aux_sym_cmd_identifier_token20] = ACTIONS(2017), - [aux_sym_cmd_identifier_token21] = ACTIONS(2017), - [aux_sym_cmd_identifier_token22] = ACTIONS(2017), - [aux_sym_cmd_identifier_token23] = ACTIONS(2017), - [aux_sym_cmd_identifier_token24] = ACTIONS(2017), - [aux_sym_cmd_identifier_token25] = ACTIONS(2017), - [aux_sym_cmd_identifier_token26] = ACTIONS(2017), - [aux_sym_cmd_identifier_token27] = ACTIONS(2017), - [aux_sym_cmd_identifier_token28] = ACTIONS(2017), - [aux_sym_cmd_identifier_token29] = ACTIONS(2017), - [aux_sym_cmd_identifier_token30] = ACTIONS(2017), - [aux_sym_cmd_identifier_token31] = ACTIONS(2017), - [aux_sym_cmd_identifier_token32] = ACTIONS(2017), - [aux_sym_cmd_identifier_token33] = ACTIONS(2017), - [aux_sym_cmd_identifier_token34] = ACTIONS(2017), - [aux_sym_cmd_identifier_token35] = ACTIONS(2017), - [aux_sym_cmd_identifier_token36] = ACTIONS(2017), - [aux_sym_cmd_identifier_token37] = ACTIONS(2017), - [aux_sym_cmd_identifier_token38] = ACTIONS(2017), - [aux_sym_cmd_identifier_token39] = ACTIONS(2017), - [aux_sym_cmd_identifier_token40] = ACTIONS(2017), - [anon_sym_def] = ACTIONS(2017), - [anon_sym_export_DASHenv] = ACTIONS(2017), - [anon_sym_extern] = ACTIONS(2017), - [anon_sym_module] = ACTIONS(2017), - [anon_sym_use] = ACTIONS(2017), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_COMMA] = ACTIONS(2017), - [anon_sym_DOLLAR] = ACTIONS(2017), - [anon_sym_error] = ACTIONS(2017), - [anon_sym_DASH2] = ACTIONS(2017), - [anon_sym_break] = ACTIONS(2017), - [anon_sym_continue] = ACTIONS(2017), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_in2] = ACTIONS(2017), - [anon_sym_loop] = ACTIONS(2017), - [anon_sym_make] = ACTIONS(2017), - [anon_sym_while] = ACTIONS(2017), - [anon_sym_do] = ACTIONS(2017), - [anon_sym_if] = ACTIONS(2017), - [anon_sym_else] = ACTIONS(2017), - [anon_sym_match] = ACTIONS(2017), - [anon_sym_RBRACE] = ACTIONS(2017), - [anon_sym_try] = ACTIONS(2017), - [anon_sym_catch] = ACTIONS(2017), - [anon_sym_return] = ACTIONS(2017), - [anon_sym_source] = ACTIONS(2017), - [anon_sym_source_DASHenv] = ACTIONS(2017), - [anon_sym_hide] = ACTIONS(2017), - [anon_sym_hide_DASHenv] = ACTIONS(2017), - [anon_sym_overlay] = ACTIONS(2017), - [anon_sym_as] = ACTIONS(2017), - [anon_sym_PLUS2] = ACTIONS(2017), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2017), - [anon_sym_DOT_DOT2] = ACTIONS(2019), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2021), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2021), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2017), - [aux_sym__val_number_decimal_token1] = ACTIONS(2017), - [aux_sym__val_number_decimal_token2] = ACTIONS(2017), - [aux_sym__val_number_decimal_token3] = ACTIONS(2017), - [aux_sym__val_number_decimal_token4] = ACTIONS(2017), - [aux_sym__val_number_token1] = ACTIONS(2017), - [aux_sym__val_number_token2] = ACTIONS(2017), - [aux_sym__val_number_token3] = ACTIONS(2017), - [aux_sym__val_number_token4] = ACTIONS(2017), - [aux_sym__val_number_token5] = ACTIONS(2017), - [aux_sym__val_number_token6] = ACTIONS(2017), - [anon_sym_DQUOTE] = ACTIONS(2017), - [sym__str_single_quotes] = ACTIONS(2017), - [sym__str_back_ticks] = ACTIONS(2017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2017), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2017), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2017), - [sym__entry_separator] = ACTIONS(2023), - [anon_sym_register] = ACTIONS(2017), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2023), - }, - [470] = { - [sym_comment] = STATE(470), - [anon_sym_export] = ACTIONS(2025), - [anon_sym_alias] = ACTIONS(2025), - [anon_sym_let] = ACTIONS(2025), - [anon_sym_let_DASHenv] = ACTIONS(2025), - [anon_sym_mut] = ACTIONS(2025), - [anon_sym_const] = ACTIONS(2025), - [aux_sym_cmd_identifier_token1] = ACTIONS(2025), - [aux_sym_cmd_identifier_token2] = ACTIONS(2025), - [aux_sym_cmd_identifier_token3] = ACTIONS(2025), - [aux_sym_cmd_identifier_token4] = ACTIONS(2025), - [aux_sym_cmd_identifier_token5] = ACTIONS(2025), - [aux_sym_cmd_identifier_token6] = ACTIONS(2025), - [aux_sym_cmd_identifier_token7] = ACTIONS(2025), - [aux_sym_cmd_identifier_token8] = ACTIONS(2025), - [aux_sym_cmd_identifier_token9] = ACTIONS(2025), - [aux_sym_cmd_identifier_token10] = ACTIONS(2025), - [aux_sym_cmd_identifier_token11] = ACTIONS(2025), - [aux_sym_cmd_identifier_token12] = ACTIONS(2025), - [aux_sym_cmd_identifier_token13] = ACTIONS(2025), - [aux_sym_cmd_identifier_token14] = ACTIONS(2025), - [aux_sym_cmd_identifier_token15] = ACTIONS(2025), - [aux_sym_cmd_identifier_token16] = ACTIONS(2025), - [aux_sym_cmd_identifier_token17] = ACTIONS(2025), - [aux_sym_cmd_identifier_token18] = ACTIONS(2025), - [aux_sym_cmd_identifier_token19] = ACTIONS(2025), - [aux_sym_cmd_identifier_token20] = ACTIONS(2025), - [aux_sym_cmd_identifier_token21] = ACTIONS(2025), - [aux_sym_cmd_identifier_token22] = ACTIONS(2025), - [aux_sym_cmd_identifier_token23] = ACTIONS(2025), - [aux_sym_cmd_identifier_token24] = ACTIONS(2025), - [aux_sym_cmd_identifier_token25] = ACTIONS(2025), - [aux_sym_cmd_identifier_token26] = ACTIONS(2025), - [aux_sym_cmd_identifier_token27] = ACTIONS(2025), - [aux_sym_cmd_identifier_token28] = ACTIONS(2025), - [aux_sym_cmd_identifier_token29] = ACTIONS(2025), - [aux_sym_cmd_identifier_token30] = ACTIONS(2025), - [aux_sym_cmd_identifier_token31] = ACTIONS(2025), - [aux_sym_cmd_identifier_token32] = ACTIONS(2025), - [aux_sym_cmd_identifier_token33] = ACTIONS(2025), - [aux_sym_cmd_identifier_token34] = ACTIONS(2025), - [aux_sym_cmd_identifier_token35] = ACTIONS(2025), - [aux_sym_cmd_identifier_token36] = ACTIONS(2025), - [aux_sym_cmd_identifier_token37] = ACTIONS(2025), - [aux_sym_cmd_identifier_token38] = ACTIONS(2025), - [aux_sym_cmd_identifier_token39] = ACTIONS(2025), - [aux_sym_cmd_identifier_token40] = ACTIONS(2025), - [anon_sym_def] = ACTIONS(2025), - [anon_sym_export_DASHenv] = ACTIONS(2025), - [anon_sym_extern] = ACTIONS(2025), - [anon_sym_module] = ACTIONS(2025), - [anon_sym_use] = ACTIONS(2025), - [anon_sym_LPAREN] = ACTIONS(2025), - [anon_sym_COMMA] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2025), - [anon_sym_error] = ACTIONS(2025), - [anon_sym_DASH2] = ACTIONS(2025), - [anon_sym_break] = ACTIONS(2025), - [anon_sym_continue] = ACTIONS(2025), - [anon_sym_for] = ACTIONS(2025), - [anon_sym_in2] = ACTIONS(2025), - [anon_sym_loop] = ACTIONS(2025), - [anon_sym_make] = ACTIONS(2025), - [anon_sym_while] = ACTIONS(2025), - [anon_sym_do] = ACTIONS(2025), - [anon_sym_if] = ACTIONS(2025), - [anon_sym_else] = ACTIONS(2025), - [anon_sym_match] = ACTIONS(2025), - [anon_sym_RBRACE] = ACTIONS(2025), - [anon_sym_try] = ACTIONS(2025), - [anon_sym_catch] = ACTIONS(2025), - [anon_sym_return] = ACTIONS(2025), - [anon_sym_source] = ACTIONS(2025), - [anon_sym_source_DASHenv] = ACTIONS(2025), - [anon_sym_hide] = ACTIONS(2025), - [anon_sym_hide_DASHenv] = ACTIONS(2025), - [anon_sym_overlay] = ACTIONS(2025), - [anon_sym_as] = ACTIONS(2025), - [anon_sym_PLUS2] = ACTIONS(2025), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2025), - [anon_sym_DOT_DOT2] = ACTIONS(2027), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2029), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2029), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2025), - [aux_sym__val_number_decimal_token1] = ACTIONS(2025), - [aux_sym__val_number_decimal_token2] = ACTIONS(2025), - [aux_sym__val_number_decimal_token3] = ACTIONS(2025), - [aux_sym__val_number_decimal_token4] = ACTIONS(2025), - [aux_sym__val_number_token1] = ACTIONS(2025), - [aux_sym__val_number_token2] = ACTIONS(2025), - [aux_sym__val_number_token3] = ACTIONS(2025), - [aux_sym__val_number_token4] = ACTIONS(2025), - [aux_sym__val_number_token5] = ACTIONS(2025), - [aux_sym__val_number_token6] = ACTIONS(2025), - [anon_sym_DQUOTE] = ACTIONS(2025), - [sym__str_single_quotes] = ACTIONS(2025), - [sym__str_back_ticks] = ACTIONS(2025), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2025), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2025), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2025), - [sym__entry_separator] = ACTIONS(2031), - [anon_sym_register] = ACTIONS(2025), + [452] = { + [sym_comment] = STATE(452), + [anon_sym_export] = ACTIONS(1674), + [anon_sym_alias] = ACTIONS(1674), + [anon_sym_let] = ACTIONS(1674), + [anon_sym_let_DASHenv] = ACTIONS(1674), + [anon_sym_mut] = ACTIONS(1674), + [anon_sym_const] = ACTIONS(1674), + [aux_sym_cmd_identifier_token1] = ACTIONS(1674), + [aux_sym_cmd_identifier_token2] = ACTIONS(1674), + [aux_sym_cmd_identifier_token3] = ACTIONS(1674), + [aux_sym_cmd_identifier_token4] = ACTIONS(1674), + [aux_sym_cmd_identifier_token5] = ACTIONS(1674), + [aux_sym_cmd_identifier_token6] = ACTIONS(1674), + [aux_sym_cmd_identifier_token7] = ACTIONS(1674), + [aux_sym_cmd_identifier_token8] = ACTIONS(1674), + [aux_sym_cmd_identifier_token9] = ACTIONS(1674), + [aux_sym_cmd_identifier_token10] = ACTIONS(1674), + [aux_sym_cmd_identifier_token11] = ACTIONS(1674), + [aux_sym_cmd_identifier_token12] = ACTIONS(1674), + [aux_sym_cmd_identifier_token13] = ACTIONS(1674), + [aux_sym_cmd_identifier_token14] = ACTIONS(1674), + [aux_sym_cmd_identifier_token15] = ACTIONS(1674), + [aux_sym_cmd_identifier_token16] = ACTIONS(1674), + [aux_sym_cmd_identifier_token17] = ACTIONS(1674), + [aux_sym_cmd_identifier_token18] = ACTIONS(1674), + [aux_sym_cmd_identifier_token19] = ACTIONS(1674), + [aux_sym_cmd_identifier_token20] = ACTIONS(1674), + [aux_sym_cmd_identifier_token21] = ACTIONS(1674), + [aux_sym_cmd_identifier_token22] = ACTIONS(1674), + [aux_sym_cmd_identifier_token23] = ACTIONS(1674), + [aux_sym_cmd_identifier_token24] = ACTIONS(1674), + [aux_sym_cmd_identifier_token25] = ACTIONS(1674), + [aux_sym_cmd_identifier_token26] = ACTIONS(1674), + [aux_sym_cmd_identifier_token27] = ACTIONS(1674), + [aux_sym_cmd_identifier_token28] = ACTIONS(1674), + [aux_sym_cmd_identifier_token29] = ACTIONS(1674), + [aux_sym_cmd_identifier_token30] = ACTIONS(1674), + [aux_sym_cmd_identifier_token31] = ACTIONS(1674), + [aux_sym_cmd_identifier_token32] = ACTIONS(1674), + [aux_sym_cmd_identifier_token33] = ACTIONS(1674), + [aux_sym_cmd_identifier_token34] = ACTIONS(1674), + [aux_sym_cmd_identifier_token35] = ACTIONS(1674), + [aux_sym_cmd_identifier_token36] = ACTIONS(1674), + [aux_sym_cmd_identifier_token37] = ACTIONS(1674), + [aux_sym_cmd_identifier_token38] = ACTIONS(1674), + [aux_sym_cmd_identifier_token39] = ACTIONS(1674), + [aux_sym_cmd_identifier_token40] = ACTIONS(1674), + [anon_sym_def] = ACTIONS(1674), + [anon_sym_export_DASHenv] = ACTIONS(1674), + [anon_sym_extern] = ACTIONS(1674), + [anon_sym_module] = ACTIONS(1674), + [anon_sym_use] = ACTIONS(1674), + [anon_sym_LPAREN] = ACTIONS(1674), + [anon_sym_COMMA] = ACTIONS(1674), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_error] = ACTIONS(1674), + [anon_sym_DASH2] = ACTIONS(1674), + [anon_sym_break] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(1674), + [anon_sym_for] = ACTIONS(1674), + [anon_sym_in2] = ACTIONS(1674), + [anon_sym_loop] = ACTIONS(1674), + [anon_sym_make] = ACTIONS(1674), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1674), + [anon_sym_if] = ACTIONS(1674), + [anon_sym_else] = ACTIONS(1674), + [anon_sym_match] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_try] = ACTIONS(1674), + [anon_sym_catch] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_source] = ACTIONS(1674), + [anon_sym_source_DASHenv] = ACTIONS(1674), + [anon_sym_hide] = ACTIONS(1674), + [anon_sym_hide_DASHenv] = ACTIONS(1674), + [anon_sym_overlay] = ACTIONS(1674), + [anon_sym_as] = ACTIONS(1674), + [anon_sym_PLUS2] = ACTIONS(1674), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1674), + [anon_sym_DOT_DOT2] = ACTIONS(1674), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1676), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1676), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1674), + [aux_sym__val_number_decimal_token1] = ACTIONS(1674), + [aux_sym__val_number_decimal_token2] = ACTIONS(1674), + [aux_sym__val_number_decimal_token3] = ACTIONS(1674), + [aux_sym__val_number_decimal_token4] = ACTIONS(1674), + [aux_sym__val_number_token1] = ACTIONS(1674), + [aux_sym__val_number_token2] = ACTIONS(1674), + [aux_sym__val_number_token3] = ACTIONS(1674), + [aux_sym__val_number_token4] = ACTIONS(1674), + [aux_sym__val_number_token5] = ACTIONS(1674), + [aux_sym__val_number_token6] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym__str_single_quotes] = ACTIONS(1674), + [sym__str_back_ticks] = ACTIONS(1674), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1674), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1674), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1674), + [sym__entry_separator] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1674), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2031), - }, - [471] = { - [sym_cell_path] = STATE(684), - [sym_path] = STATE(585), - [sym_comment] = STATE(471), - [aux_sym_cell_path_repeat1] = STATE(443), - [anon_sym_export] = ACTIONS(1941), - [anon_sym_alias] = ACTIONS(1941), - [anon_sym_let] = ACTIONS(1941), - [anon_sym_let_DASHenv] = ACTIONS(1941), - [anon_sym_mut] = ACTIONS(1941), - [anon_sym_const] = ACTIONS(1941), - [aux_sym_cmd_identifier_token1] = ACTIONS(1941), - [aux_sym_cmd_identifier_token2] = ACTIONS(1943), - [aux_sym_cmd_identifier_token3] = ACTIONS(1943), - [aux_sym_cmd_identifier_token4] = ACTIONS(1943), - [aux_sym_cmd_identifier_token5] = ACTIONS(1943), - [aux_sym_cmd_identifier_token6] = ACTIONS(1943), - [aux_sym_cmd_identifier_token7] = ACTIONS(1943), - [aux_sym_cmd_identifier_token8] = ACTIONS(1941), - [aux_sym_cmd_identifier_token9] = ACTIONS(1941), - [aux_sym_cmd_identifier_token10] = ACTIONS(1943), - [aux_sym_cmd_identifier_token11] = ACTIONS(1943), - [aux_sym_cmd_identifier_token12] = ACTIONS(1941), - [aux_sym_cmd_identifier_token13] = ACTIONS(1941), - [aux_sym_cmd_identifier_token14] = ACTIONS(1941), - [aux_sym_cmd_identifier_token15] = ACTIONS(1941), - [aux_sym_cmd_identifier_token16] = ACTIONS(1943), - [aux_sym_cmd_identifier_token17] = ACTIONS(1943), - [aux_sym_cmd_identifier_token18] = ACTIONS(1943), - [aux_sym_cmd_identifier_token19] = ACTIONS(1943), - [aux_sym_cmd_identifier_token20] = ACTIONS(1943), - [aux_sym_cmd_identifier_token21] = ACTIONS(1943), - [aux_sym_cmd_identifier_token22] = ACTIONS(1943), - [aux_sym_cmd_identifier_token23] = ACTIONS(1943), - [aux_sym_cmd_identifier_token24] = ACTIONS(1943), - [aux_sym_cmd_identifier_token25] = ACTIONS(1943), - [aux_sym_cmd_identifier_token26] = ACTIONS(1943), - [aux_sym_cmd_identifier_token27] = ACTIONS(1943), - [aux_sym_cmd_identifier_token28] = ACTIONS(1943), - [aux_sym_cmd_identifier_token29] = ACTIONS(1943), - [aux_sym_cmd_identifier_token30] = ACTIONS(1943), - [aux_sym_cmd_identifier_token31] = ACTIONS(1943), - [aux_sym_cmd_identifier_token32] = ACTIONS(1943), - [aux_sym_cmd_identifier_token33] = ACTIONS(1943), - [aux_sym_cmd_identifier_token34] = ACTIONS(1941), - [aux_sym_cmd_identifier_token35] = ACTIONS(1943), - [aux_sym_cmd_identifier_token36] = ACTIONS(1943), - [aux_sym_cmd_identifier_token37] = ACTIONS(1943), - [aux_sym_cmd_identifier_token38] = ACTIONS(1941), - [aux_sym_cmd_identifier_token39] = ACTIONS(1943), - [aux_sym_cmd_identifier_token40] = ACTIONS(1943), - [anon_sym_def] = ACTIONS(1941), - [anon_sym_export_DASHenv] = ACTIONS(1941), - [anon_sym_extern] = ACTIONS(1941), - [anon_sym_module] = ACTIONS(1941), - [anon_sym_use] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(1943), - [anon_sym_COMMA] = ACTIONS(1943), - [anon_sym_DOLLAR] = ACTIONS(1941), - [anon_sym_error] = ACTIONS(1941), - [anon_sym_DASH2] = ACTIONS(1941), - [anon_sym_break] = ACTIONS(1941), - [anon_sym_continue] = ACTIONS(1941), - [anon_sym_for] = ACTIONS(1941), - [anon_sym_in2] = ACTIONS(1941), - [anon_sym_loop] = ACTIONS(1941), - [anon_sym_make] = ACTIONS(1941), - [anon_sym_while] = ACTIONS(1941), - [anon_sym_do] = ACTIONS(1941), - [anon_sym_if] = ACTIONS(1941), - [anon_sym_else] = ACTIONS(1941), - [anon_sym_match] = ACTIONS(1941), - [anon_sym_RBRACE] = ACTIONS(1943), - [anon_sym_try] = ACTIONS(1941), - [anon_sym_catch] = ACTIONS(1941), - [anon_sym_return] = ACTIONS(1941), - [anon_sym_source] = ACTIONS(1941), - [anon_sym_source_DASHenv] = ACTIONS(1941), - [anon_sym_hide] = ACTIONS(1941), - [anon_sym_hide_DASHenv] = ACTIONS(1941), - [anon_sym_overlay] = ACTIONS(1941), - [anon_sym_as] = ACTIONS(1941), - [anon_sym_PLUS2] = ACTIONS(1941), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1943), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1943), - [aux_sym__val_number_decimal_token1] = ACTIONS(1941), - [aux_sym__val_number_decimal_token2] = ACTIONS(1943), - [aux_sym__val_number_decimal_token3] = ACTIONS(1943), - [aux_sym__val_number_decimal_token4] = ACTIONS(1943), - [aux_sym__val_number_token1] = ACTIONS(1943), - [aux_sym__val_number_token2] = ACTIONS(1943), - [aux_sym__val_number_token3] = ACTIONS(1943), - [aux_sym__val_number_token4] = ACTIONS(1941), - [aux_sym__val_number_token5] = ACTIONS(1941), - [aux_sym__val_number_token6] = ACTIONS(1941), - [anon_sym_DQUOTE] = ACTIONS(1943), - [sym__str_single_quotes] = ACTIONS(1943), - [sym__str_back_ticks] = ACTIONS(1943), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1943), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1943), - [anon_sym_register] = ACTIONS(1941), - [anon_sym_DOT2] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1943), + [sym_raw_string_begin] = ACTIONS(1676), }, - [472] = { - [sym_comment] = STATE(472), - [anon_sym_export] = ACTIONS(2033), - [anon_sym_alias] = ACTIONS(2033), - [anon_sym_let] = ACTIONS(2033), - [anon_sym_let_DASHenv] = ACTIONS(2033), - [anon_sym_mut] = ACTIONS(2033), - [anon_sym_const] = ACTIONS(2033), - [aux_sym_cmd_identifier_token1] = ACTIONS(2033), - [aux_sym_cmd_identifier_token2] = ACTIONS(2033), - [aux_sym_cmd_identifier_token3] = ACTIONS(2033), - [aux_sym_cmd_identifier_token4] = ACTIONS(2033), - [aux_sym_cmd_identifier_token5] = ACTIONS(2033), - [aux_sym_cmd_identifier_token6] = ACTIONS(2033), - [aux_sym_cmd_identifier_token7] = ACTIONS(2033), - [aux_sym_cmd_identifier_token8] = ACTIONS(2033), - [aux_sym_cmd_identifier_token9] = ACTIONS(2033), - [aux_sym_cmd_identifier_token10] = ACTIONS(2033), - [aux_sym_cmd_identifier_token11] = ACTIONS(2033), - [aux_sym_cmd_identifier_token12] = ACTIONS(2033), - [aux_sym_cmd_identifier_token13] = ACTIONS(2033), - [aux_sym_cmd_identifier_token14] = ACTIONS(2033), - [aux_sym_cmd_identifier_token15] = ACTIONS(2033), - [aux_sym_cmd_identifier_token16] = ACTIONS(2033), - [aux_sym_cmd_identifier_token17] = ACTIONS(2033), - [aux_sym_cmd_identifier_token18] = ACTIONS(2033), - [aux_sym_cmd_identifier_token19] = ACTIONS(2033), - [aux_sym_cmd_identifier_token20] = ACTIONS(2033), - [aux_sym_cmd_identifier_token21] = ACTIONS(2033), - [aux_sym_cmd_identifier_token22] = ACTIONS(2033), - [aux_sym_cmd_identifier_token23] = ACTIONS(2033), - [aux_sym_cmd_identifier_token24] = ACTIONS(2033), - [aux_sym_cmd_identifier_token25] = ACTIONS(2033), - [aux_sym_cmd_identifier_token26] = ACTIONS(2033), - [aux_sym_cmd_identifier_token27] = ACTIONS(2033), - [aux_sym_cmd_identifier_token28] = ACTIONS(2033), - [aux_sym_cmd_identifier_token29] = ACTIONS(2033), - [aux_sym_cmd_identifier_token30] = ACTIONS(2033), - [aux_sym_cmd_identifier_token31] = ACTIONS(2033), - [aux_sym_cmd_identifier_token32] = ACTIONS(2033), - [aux_sym_cmd_identifier_token33] = ACTIONS(2033), - [aux_sym_cmd_identifier_token34] = ACTIONS(2033), - [aux_sym_cmd_identifier_token35] = ACTIONS(2033), - [aux_sym_cmd_identifier_token36] = ACTIONS(2033), - [aux_sym_cmd_identifier_token37] = ACTIONS(2033), - [aux_sym_cmd_identifier_token38] = ACTIONS(2033), - [aux_sym_cmd_identifier_token39] = ACTIONS(2033), - [aux_sym_cmd_identifier_token40] = ACTIONS(2033), - [anon_sym_def] = ACTIONS(2033), - [anon_sym_export_DASHenv] = ACTIONS(2033), - [anon_sym_extern] = ACTIONS(2033), - [anon_sym_module] = ACTIONS(2033), - [anon_sym_use] = ACTIONS(2033), - [anon_sym_LPAREN] = ACTIONS(2033), - [anon_sym_COMMA] = ACTIONS(2033), - [anon_sym_DOLLAR] = ACTIONS(2033), - [anon_sym_error] = ACTIONS(2033), - [anon_sym_DASH2] = ACTIONS(2033), - [anon_sym_break] = ACTIONS(2033), - [anon_sym_continue] = ACTIONS(2033), - [anon_sym_for] = ACTIONS(2033), - [anon_sym_in2] = ACTIONS(2033), - [anon_sym_loop] = ACTIONS(2033), - [anon_sym_make] = ACTIONS(2033), - [anon_sym_while] = ACTIONS(2033), - [anon_sym_do] = ACTIONS(2033), - [anon_sym_if] = ACTIONS(2033), - [anon_sym_else] = ACTIONS(2033), - [anon_sym_match] = ACTIONS(2033), - [anon_sym_RBRACE] = ACTIONS(2033), - [anon_sym_try] = ACTIONS(2033), - [anon_sym_catch] = ACTIONS(2033), - [anon_sym_return] = ACTIONS(2033), - [anon_sym_source] = ACTIONS(2033), - [anon_sym_source_DASHenv] = ACTIONS(2033), - [anon_sym_hide] = ACTIONS(2033), - [anon_sym_hide_DASHenv] = ACTIONS(2033), - [anon_sym_overlay] = ACTIONS(2033), - [anon_sym_as] = ACTIONS(2033), - [anon_sym_PLUS2] = ACTIONS(2033), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2033), - [anon_sym_DOT_DOT2] = ACTIONS(2035), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2037), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2037), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2033), - [aux_sym__val_number_decimal_token1] = ACTIONS(2033), - [aux_sym__val_number_decimal_token2] = ACTIONS(2033), - [aux_sym__val_number_decimal_token3] = ACTIONS(2033), - [aux_sym__val_number_decimal_token4] = ACTIONS(2033), - [aux_sym__val_number_token1] = ACTIONS(2033), - [aux_sym__val_number_token2] = ACTIONS(2033), - [aux_sym__val_number_token3] = ACTIONS(2033), - [aux_sym__val_number_token4] = ACTIONS(2033), - [aux_sym__val_number_token5] = ACTIONS(2033), - [aux_sym__val_number_token6] = ACTIONS(2033), - [anon_sym_DQUOTE] = ACTIONS(2033), - [sym__str_single_quotes] = ACTIONS(2033), - [sym__str_back_ticks] = ACTIONS(2033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2033), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2033), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2033), - [sym__entry_separator] = ACTIONS(2039), - [anon_sym_register] = ACTIONS(2033), + [453] = { + [sym_comment] = STATE(453), + [anon_sym_export] = ACTIONS(1945), + [anon_sym_alias] = ACTIONS(1945), + [anon_sym_let] = ACTIONS(1945), + [anon_sym_let_DASHenv] = ACTIONS(1945), + [anon_sym_mut] = ACTIONS(1945), + [anon_sym_const] = ACTIONS(1945), + [aux_sym_cmd_identifier_token1] = ACTIONS(1945), + [aux_sym_cmd_identifier_token2] = ACTIONS(1945), + [aux_sym_cmd_identifier_token3] = ACTIONS(1945), + [aux_sym_cmd_identifier_token4] = ACTIONS(1945), + [aux_sym_cmd_identifier_token5] = ACTIONS(1945), + [aux_sym_cmd_identifier_token6] = ACTIONS(1945), + [aux_sym_cmd_identifier_token7] = ACTIONS(1945), + [aux_sym_cmd_identifier_token8] = ACTIONS(1945), + [aux_sym_cmd_identifier_token9] = ACTIONS(1945), + [aux_sym_cmd_identifier_token10] = ACTIONS(1945), + [aux_sym_cmd_identifier_token11] = ACTIONS(1945), + [aux_sym_cmd_identifier_token12] = ACTIONS(1945), + [aux_sym_cmd_identifier_token13] = ACTIONS(1945), + [aux_sym_cmd_identifier_token14] = ACTIONS(1945), + [aux_sym_cmd_identifier_token15] = ACTIONS(1945), + [aux_sym_cmd_identifier_token16] = ACTIONS(1945), + [aux_sym_cmd_identifier_token17] = ACTIONS(1945), + [aux_sym_cmd_identifier_token18] = ACTIONS(1945), + [aux_sym_cmd_identifier_token19] = ACTIONS(1945), + [aux_sym_cmd_identifier_token20] = ACTIONS(1945), + [aux_sym_cmd_identifier_token21] = ACTIONS(1945), + [aux_sym_cmd_identifier_token22] = ACTIONS(1945), + [aux_sym_cmd_identifier_token23] = ACTIONS(1945), + [aux_sym_cmd_identifier_token24] = ACTIONS(1945), + [aux_sym_cmd_identifier_token25] = ACTIONS(1945), + [aux_sym_cmd_identifier_token26] = ACTIONS(1945), + [aux_sym_cmd_identifier_token27] = ACTIONS(1945), + [aux_sym_cmd_identifier_token28] = ACTIONS(1945), + [aux_sym_cmd_identifier_token29] = ACTIONS(1945), + [aux_sym_cmd_identifier_token30] = ACTIONS(1945), + [aux_sym_cmd_identifier_token31] = ACTIONS(1945), + [aux_sym_cmd_identifier_token32] = ACTIONS(1945), + [aux_sym_cmd_identifier_token33] = ACTIONS(1945), + [aux_sym_cmd_identifier_token34] = ACTIONS(1945), + [aux_sym_cmd_identifier_token35] = ACTIONS(1945), + [aux_sym_cmd_identifier_token36] = ACTIONS(1945), + [aux_sym_cmd_identifier_token37] = ACTIONS(1945), + [aux_sym_cmd_identifier_token38] = ACTIONS(1945), + [aux_sym_cmd_identifier_token39] = ACTIONS(1945), + [aux_sym_cmd_identifier_token40] = ACTIONS(1945), + [anon_sym_def] = ACTIONS(1945), + [anon_sym_export_DASHenv] = ACTIONS(1945), + [anon_sym_extern] = ACTIONS(1945), + [anon_sym_module] = ACTIONS(1945), + [anon_sym_use] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_COMMA] = ACTIONS(1945), + [anon_sym_DOLLAR] = ACTIONS(1945), + [anon_sym_error] = ACTIONS(1945), + [anon_sym_DASH2] = ACTIONS(1945), + [anon_sym_break] = ACTIONS(1945), + [anon_sym_continue] = ACTIONS(1945), + [anon_sym_for] = ACTIONS(1945), + [anon_sym_in2] = ACTIONS(1945), + [anon_sym_loop] = ACTIONS(1945), + [anon_sym_make] = ACTIONS(1945), + [anon_sym_while] = ACTIONS(1945), + [anon_sym_do] = ACTIONS(1945), + [anon_sym_if] = ACTIONS(1945), + [anon_sym_else] = ACTIONS(1945), + [anon_sym_match] = ACTIONS(1945), + [anon_sym_RBRACE] = ACTIONS(1945), + [anon_sym_try] = ACTIONS(1945), + [anon_sym_catch] = ACTIONS(1945), + [anon_sym_return] = ACTIONS(1945), + [anon_sym_source] = ACTIONS(1945), + [anon_sym_source_DASHenv] = ACTIONS(1945), + [anon_sym_hide] = ACTIONS(1945), + [anon_sym_hide_DASHenv] = ACTIONS(1945), + [anon_sym_overlay] = ACTIONS(1945), + [anon_sym_as] = ACTIONS(1945), + [anon_sym_PLUS2] = ACTIONS(1945), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1945), + [anon_sym_DOT_DOT2] = ACTIONS(1945), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1947), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1947), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1945), + [aux_sym__val_number_decimal_token1] = ACTIONS(1945), + [aux_sym__val_number_decimal_token2] = ACTIONS(1945), + [aux_sym__val_number_decimal_token3] = ACTIONS(1945), + [aux_sym__val_number_decimal_token4] = ACTIONS(1945), + [aux_sym__val_number_token1] = ACTIONS(1945), + [aux_sym__val_number_token2] = ACTIONS(1945), + [aux_sym__val_number_token3] = ACTIONS(1945), + [aux_sym__val_number_token4] = ACTIONS(1945), + [aux_sym__val_number_token5] = ACTIONS(1945), + [aux_sym__val_number_token6] = ACTIONS(1945), + [anon_sym_DQUOTE] = ACTIONS(1945), + [sym__str_single_quotes] = ACTIONS(1945), + [sym__str_back_ticks] = ACTIONS(1945), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1945), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1945), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1945), + [sym__entry_separator] = ACTIONS(1947), + [anon_sym_register] = ACTIONS(1945), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2039), - }, - [473] = { - [sym_cell_path] = STATE(689), - [sym_path] = STATE(585), - [sym_comment] = STATE(473), - [aux_sym_cell_path_repeat1] = STATE(443), - [anon_sym_export] = ACTIONS(1959), - [anon_sym_alias] = ACTIONS(1959), - [anon_sym_let] = ACTIONS(1959), - [anon_sym_let_DASHenv] = ACTIONS(1959), - [anon_sym_mut] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(1959), - [aux_sym_cmd_identifier_token1] = ACTIONS(1959), - [aux_sym_cmd_identifier_token2] = ACTIONS(1961), - [aux_sym_cmd_identifier_token3] = ACTIONS(1961), - [aux_sym_cmd_identifier_token4] = ACTIONS(1961), - [aux_sym_cmd_identifier_token5] = ACTIONS(1961), - [aux_sym_cmd_identifier_token6] = ACTIONS(1961), - [aux_sym_cmd_identifier_token7] = ACTIONS(1961), - [aux_sym_cmd_identifier_token8] = ACTIONS(1959), - [aux_sym_cmd_identifier_token9] = ACTIONS(1959), - [aux_sym_cmd_identifier_token10] = ACTIONS(1961), - [aux_sym_cmd_identifier_token11] = ACTIONS(1961), - [aux_sym_cmd_identifier_token12] = ACTIONS(1959), - [aux_sym_cmd_identifier_token13] = ACTIONS(1959), - [aux_sym_cmd_identifier_token14] = ACTIONS(1959), - [aux_sym_cmd_identifier_token15] = ACTIONS(1959), - [aux_sym_cmd_identifier_token16] = ACTIONS(1961), - [aux_sym_cmd_identifier_token17] = ACTIONS(1961), - [aux_sym_cmd_identifier_token18] = ACTIONS(1961), - [aux_sym_cmd_identifier_token19] = ACTIONS(1961), - [aux_sym_cmd_identifier_token20] = ACTIONS(1961), - [aux_sym_cmd_identifier_token21] = ACTIONS(1961), - [aux_sym_cmd_identifier_token22] = ACTIONS(1961), - [aux_sym_cmd_identifier_token23] = ACTIONS(1961), - [aux_sym_cmd_identifier_token24] = ACTIONS(1961), - [aux_sym_cmd_identifier_token25] = ACTIONS(1961), - [aux_sym_cmd_identifier_token26] = ACTIONS(1961), - [aux_sym_cmd_identifier_token27] = ACTIONS(1961), - [aux_sym_cmd_identifier_token28] = ACTIONS(1961), - [aux_sym_cmd_identifier_token29] = ACTIONS(1961), - [aux_sym_cmd_identifier_token30] = ACTIONS(1961), - [aux_sym_cmd_identifier_token31] = ACTIONS(1961), - [aux_sym_cmd_identifier_token32] = ACTIONS(1961), - [aux_sym_cmd_identifier_token33] = ACTIONS(1961), - [aux_sym_cmd_identifier_token34] = ACTIONS(1959), - [aux_sym_cmd_identifier_token35] = ACTIONS(1961), - [aux_sym_cmd_identifier_token36] = ACTIONS(1961), - [aux_sym_cmd_identifier_token37] = ACTIONS(1961), - [aux_sym_cmd_identifier_token38] = ACTIONS(1959), - [aux_sym_cmd_identifier_token39] = ACTIONS(1961), - [aux_sym_cmd_identifier_token40] = ACTIONS(1961), - [anon_sym_def] = ACTIONS(1959), - [anon_sym_export_DASHenv] = ACTIONS(1959), - [anon_sym_extern] = ACTIONS(1959), - [anon_sym_module] = ACTIONS(1959), - [anon_sym_use] = ACTIONS(1959), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_COMMA] = ACTIONS(1961), - [anon_sym_DOLLAR] = ACTIONS(1959), - [anon_sym_error] = ACTIONS(1959), - [anon_sym_DASH2] = ACTIONS(1959), - [anon_sym_break] = ACTIONS(1959), - [anon_sym_continue] = ACTIONS(1959), - [anon_sym_for] = ACTIONS(1959), - [anon_sym_in2] = ACTIONS(1959), - [anon_sym_loop] = ACTIONS(1959), - [anon_sym_make] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1959), - [anon_sym_do] = ACTIONS(1959), - [anon_sym_if] = ACTIONS(1959), - [anon_sym_else] = ACTIONS(1959), - [anon_sym_match] = ACTIONS(1959), - [anon_sym_RBRACE] = ACTIONS(1961), - [anon_sym_try] = ACTIONS(1959), - [anon_sym_catch] = ACTIONS(1959), - [anon_sym_return] = ACTIONS(1959), - [anon_sym_source] = ACTIONS(1959), - [anon_sym_source_DASHenv] = ACTIONS(1959), - [anon_sym_hide] = ACTIONS(1959), - [anon_sym_hide_DASHenv] = ACTIONS(1959), - [anon_sym_overlay] = ACTIONS(1959), - [anon_sym_as] = ACTIONS(1959), - [anon_sym_PLUS2] = ACTIONS(1959), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1961), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1961), - [aux_sym__val_number_decimal_token1] = ACTIONS(1959), - [aux_sym__val_number_decimal_token2] = ACTIONS(1961), - [aux_sym__val_number_decimal_token3] = ACTIONS(1961), - [aux_sym__val_number_decimal_token4] = ACTIONS(1961), - [aux_sym__val_number_token1] = ACTIONS(1961), - [aux_sym__val_number_token2] = ACTIONS(1961), - [aux_sym__val_number_token3] = ACTIONS(1961), - [aux_sym__val_number_token4] = ACTIONS(1959), - [aux_sym__val_number_token5] = ACTIONS(1959), - [aux_sym__val_number_token6] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(1961), - [sym__str_single_quotes] = ACTIONS(1961), - [sym__str_back_ticks] = ACTIONS(1961), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1961), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1961), - [anon_sym_register] = ACTIONS(1959), - [anon_sym_DOT2] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1961), - }, - [474] = { - [sym_cell_path] = STATE(695), - [sym_path] = STATE(585), - [sym_comment] = STATE(474), - [aux_sym_cell_path_repeat1] = STATE(443), - [anon_sym_export] = ACTIONS(1839), - [anon_sym_alias] = ACTIONS(1839), - [anon_sym_let] = ACTIONS(1839), - [anon_sym_let_DASHenv] = ACTIONS(1839), - [anon_sym_mut] = ACTIONS(1839), - [anon_sym_const] = ACTIONS(1839), - [aux_sym_cmd_identifier_token1] = ACTIONS(1839), - [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(1839), - [aux_sym_cmd_identifier_token9] = ACTIONS(1839), - [aux_sym_cmd_identifier_token10] = ACTIONS(1841), - [aux_sym_cmd_identifier_token11] = ACTIONS(1841), - [aux_sym_cmd_identifier_token12] = ACTIONS(1839), - [aux_sym_cmd_identifier_token13] = ACTIONS(1839), - [aux_sym_cmd_identifier_token14] = ACTIONS(1839), - [aux_sym_cmd_identifier_token15] = ACTIONS(1839), - [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(1839), - [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(1839), - [aux_sym_cmd_identifier_token39] = ACTIONS(1841), - [aux_sym_cmd_identifier_token40] = ACTIONS(1841), - [anon_sym_def] = ACTIONS(1839), - [anon_sym_export_DASHenv] = ACTIONS(1839), - [anon_sym_extern] = ACTIONS(1839), - [anon_sym_module] = ACTIONS(1839), - [anon_sym_use] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_COMMA] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1839), - [anon_sym_error] = ACTIONS(1839), - [anon_sym_DASH2] = ACTIONS(1839), - [anon_sym_break] = ACTIONS(1839), - [anon_sym_continue] = ACTIONS(1839), - [anon_sym_for] = ACTIONS(1839), - [anon_sym_in2] = ACTIONS(1839), - [anon_sym_loop] = ACTIONS(1839), - [anon_sym_make] = ACTIONS(1839), - [anon_sym_while] = ACTIONS(1839), - [anon_sym_do] = ACTIONS(1839), - [anon_sym_if] = ACTIONS(1839), - [anon_sym_else] = ACTIONS(1839), - [anon_sym_match] = ACTIONS(1839), - [anon_sym_RBRACE] = ACTIONS(1841), - [anon_sym_try] = ACTIONS(1839), - [anon_sym_catch] = ACTIONS(1839), - [anon_sym_return] = ACTIONS(1839), - [anon_sym_source] = ACTIONS(1839), - [anon_sym_source_DASHenv] = ACTIONS(1839), - [anon_sym_hide] = ACTIONS(1839), - [anon_sym_hide_DASHenv] = ACTIONS(1839), - [anon_sym_overlay] = ACTIONS(1839), - [anon_sym_as] = ACTIONS(1839), - [anon_sym_PLUS2] = ACTIONS(1839), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1841), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1841), - [aux_sym__val_number_decimal_token1] = ACTIONS(1839), - [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(1839), - [aux_sym__val_number_token5] = ACTIONS(1839), - [aux_sym__val_number_token6] = ACTIONS(1839), - [anon_sym_DQUOTE] = ACTIONS(1841), - [sym__str_single_quotes] = ACTIONS(1841), - [sym__str_back_ticks] = ACTIONS(1841), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1841), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1841), - [anon_sym_register] = ACTIONS(1839), - [anon_sym_DOT2] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1841), - }, - [475] = { - [sym_cell_path] = STATE(697), - [sym_path] = STATE(585), - [sym_comment] = STATE(475), - [aux_sym_cell_path_repeat1] = STATE(443), - [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_COMMA] = ACTIONS(1929), - [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(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_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_DOLLAR_SQUOTE] = ACTIONS(1929), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1929), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1929), - [anon_sym_register] = ACTIONS(1927), - [anon_sym_DOT2] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1929), - }, - [476] = { - [sym_cell_path] = STATE(707), - [sym_path] = STATE(585), - [sym_comment] = STATE(476), - [aux_sym_cell_path_repeat1] = STATE(443), - [anon_sym_export] = ACTIONS(1829), - [anon_sym_alias] = ACTIONS(1829), - [anon_sym_let] = ACTIONS(1829), - [anon_sym_let_DASHenv] = ACTIONS(1829), - [anon_sym_mut] = ACTIONS(1829), - [anon_sym_const] = ACTIONS(1829), - [aux_sym_cmd_identifier_token1] = ACTIONS(1829), - [aux_sym_cmd_identifier_token2] = ACTIONS(1831), - [aux_sym_cmd_identifier_token3] = ACTIONS(1831), - [aux_sym_cmd_identifier_token4] = ACTIONS(1831), - [aux_sym_cmd_identifier_token5] = ACTIONS(1831), - [aux_sym_cmd_identifier_token6] = ACTIONS(1831), - [aux_sym_cmd_identifier_token7] = ACTIONS(1831), - [aux_sym_cmd_identifier_token8] = ACTIONS(1829), - [aux_sym_cmd_identifier_token9] = ACTIONS(1829), - [aux_sym_cmd_identifier_token10] = ACTIONS(1831), - [aux_sym_cmd_identifier_token11] = ACTIONS(1831), - [aux_sym_cmd_identifier_token12] = ACTIONS(1829), - [aux_sym_cmd_identifier_token13] = ACTIONS(1829), - [aux_sym_cmd_identifier_token14] = ACTIONS(1829), - [aux_sym_cmd_identifier_token15] = ACTIONS(1829), - [aux_sym_cmd_identifier_token16] = ACTIONS(1831), - [aux_sym_cmd_identifier_token17] = ACTIONS(1831), - [aux_sym_cmd_identifier_token18] = ACTIONS(1831), - [aux_sym_cmd_identifier_token19] = ACTIONS(1831), - [aux_sym_cmd_identifier_token20] = ACTIONS(1831), - [aux_sym_cmd_identifier_token21] = ACTIONS(1831), - [aux_sym_cmd_identifier_token22] = ACTIONS(1831), - [aux_sym_cmd_identifier_token23] = ACTIONS(1831), - [aux_sym_cmd_identifier_token24] = ACTIONS(1831), - [aux_sym_cmd_identifier_token25] = ACTIONS(1831), - [aux_sym_cmd_identifier_token26] = ACTIONS(1831), - [aux_sym_cmd_identifier_token27] = ACTIONS(1831), - [aux_sym_cmd_identifier_token28] = ACTIONS(1831), - [aux_sym_cmd_identifier_token29] = ACTIONS(1831), - [aux_sym_cmd_identifier_token30] = ACTIONS(1831), - [aux_sym_cmd_identifier_token31] = ACTIONS(1831), - [aux_sym_cmd_identifier_token32] = ACTIONS(1831), - [aux_sym_cmd_identifier_token33] = ACTIONS(1831), - [aux_sym_cmd_identifier_token34] = ACTIONS(1829), - [aux_sym_cmd_identifier_token35] = ACTIONS(1831), - [aux_sym_cmd_identifier_token36] = ACTIONS(1831), - [aux_sym_cmd_identifier_token37] = ACTIONS(1831), - [aux_sym_cmd_identifier_token38] = ACTIONS(1829), - [aux_sym_cmd_identifier_token39] = ACTIONS(1831), - [aux_sym_cmd_identifier_token40] = ACTIONS(1831), - [anon_sym_def] = ACTIONS(1829), - [anon_sym_export_DASHenv] = ACTIONS(1829), - [anon_sym_extern] = ACTIONS(1829), - [anon_sym_module] = ACTIONS(1829), - [anon_sym_use] = ACTIONS(1829), - [anon_sym_LPAREN] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1831), - [anon_sym_DOLLAR] = ACTIONS(1829), - [anon_sym_error] = ACTIONS(1829), - [anon_sym_DASH2] = ACTIONS(1829), - [anon_sym_break] = ACTIONS(1829), - [anon_sym_continue] = ACTIONS(1829), - [anon_sym_for] = ACTIONS(1829), - [anon_sym_in2] = ACTIONS(1829), - [anon_sym_loop] = ACTIONS(1829), - [anon_sym_make] = ACTIONS(1829), - [anon_sym_while] = ACTIONS(1829), - [anon_sym_do] = ACTIONS(1829), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_else] = ACTIONS(1829), - [anon_sym_match] = ACTIONS(1829), - [anon_sym_RBRACE] = ACTIONS(1831), - [anon_sym_try] = ACTIONS(1829), - [anon_sym_catch] = ACTIONS(1829), - [anon_sym_return] = ACTIONS(1829), - [anon_sym_source] = ACTIONS(1829), - [anon_sym_source_DASHenv] = ACTIONS(1829), - [anon_sym_hide] = ACTIONS(1829), - [anon_sym_hide_DASHenv] = ACTIONS(1829), - [anon_sym_overlay] = ACTIONS(1829), - [anon_sym_as] = ACTIONS(1829), - [anon_sym_PLUS2] = ACTIONS(1829), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1831), - [aux_sym__val_number_decimal_token1] = ACTIONS(1829), - [aux_sym__val_number_decimal_token2] = ACTIONS(1831), - [aux_sym__val_number_decimal_token3] = ACTIONS(1831), - [aux_sym__val_number_decimal_token4] = ACTIONS(1831), - [aux_sym__val_number_token1] = ACTIONS(1831), - [aux_sym__val_number_token2] = ACTIONS(1831), - [aux_sym__val_number_token3] = ACTIONS(1831), - [aux_sym__val_number_token4] = ACTIONS(1829), - [aux_sym__val_number_token5] = ACTIONS(1829), - [aux_sym__val_number_token6] = ACTIONS(1829), - [anon_sym_DQUOTE] = ACTIONS(1831), - [sym__str_single_quotes] = ACTIONS(1831), - [sym__str_back_ticks] = ACTIONS(1831), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1831), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1831), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1831), - [anon_sym_register] = ACTIONS(1829), - [anon_sym_DOT2] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1831), - }, - [477] = { - [sym_cell_path] = STATE(708), - [sym_path] = STATE(585), - [sym_comment] = STATE(477), - [aux_sym_cell_path_repeat1] = STATE(443), - [anon_sym_export] = ACTIONS(1835), - [anon_sym_alias] = ACTIONS(1835), - [anon_sym_let] = ACTIONS(1835), - [anon_sym_let_DASHenv] = ACTIONS(1835), - [anon_sym_mut] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [aux_sym_cmd_identifier_token1] = ACTIONS(1835), - [aux_sym_cmd_identifier_token2] = ACTIONS(1837), - [aux_sym_cmd_identifier_token3] = ACTIONS(1837), - [aux_sym_cmd_identifier_token4] = ACTIONS(1837), - [aux_sym_cmd_identifier_token5] = ACTIONS(1837), - [aux_sym_cmd_identifier_token6] = ACTIONS(1837), - [aux_sym_cmd_identifier_token7] = ACTIONS(1837), - [aux_sym_cmd_identifier_token8] = ACTIONS(1835), - [aux_sym_cmd_identifier_token9] = ACTIONS(1835), - [aux_sym_cmd_identifier_token10] = ACTIONS(1837), - [aux_sym_cmd_identifier_token11] = ACTIONS(1837), - [aux_sym_cmd_identifier_token12] = ACTIONS(1835), - [aux_sym_cmd_identifier_token13] = ACTIONS(1835), - [aux_sym_cmd_identifier_token14] = ACTIONS(1835), - [aux_sym_cmd_identifier_token15] = ACTIONS(1835), - [aux_sym_cmd_identifier_token16] = ACTIONS(1837), - [aux_sym_cmd_identifier_token17] = ACTIONS(1837), - [aux_sym_cmd_identifier_token18] = ACTIONS(1837), - [aux_sym_cmd_identifier_token19] = ACTIONS(1837), - [aux_sym_cmd_identifier_token20] = ACTIONS(1837), - [aux_sym_cmd_identifier_token21] = ACTIONS(1837), - [aux_sym_cmd_identifier_token22] = ACTIONS(1837), - [aux_sym_cmd_identifier_token23] = ACTIONS(1837), - [aux_sym_cmd_identifier_token24] = ACTIONS(1837), - [aux_sym_cmd_identifier_token25] = ACTIONS(1837), - [aux_sym_cmd_identifier_token26] = ACTIONS(1837), - [aux_sym_cmd_identifier_token27] = ACTIONS(1837), - [aux_sym_cmd_identifier_token28] = ACTIONS(1837), - [aux_sym_cmd_identifier_token29] = ACTIONS(1837), - [aux_sym_cmd_identifier_token30] = ACTIONS(1837), - [aux_sym_cmd_identifier_token31] = ACTIONS(1837), - [aux_sym_cmd_identifier_token32] = ACTIONS(1837), - [aux_sym_cmd_identifier_token33] = ACTIONS(1837), - [aux_sym_cmd_identifier_token34] = ACTIONS(1835), - [aux_sym_cmd_identifier_token35] = ACTIONS(1837), - [aux_sym_cmd_identifier_token36] = ACTIONS(1837), - [aux_sym_cmd_identifier_token37] = ACTIONS(1837), - [aux_sym_cmd_identifier_token38] = ACTIONS(1835), - [aux_sym_cmd_identifier_token39] = ACTIONS(1837), - [aux_sym_cmd_identifier_token40] = ACTIONS(1837), - [anon_sym_def] = ACTIONS(1835), - [anon_sym_export_DASHenv] = ACTIONS(1835), - [anon_sym_extern] = ACTIONS(1835), - [anon_sym_module] = ACTIONS(1835), - [anon_sym_use] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1835), - [anon_sym_error] = ACTIONS(1835), - [anon_sym_DASH2] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1835), - [anon_sym_continue] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_in2] = ACTIONS(1835), - [anon_sym_loop] = ACTIONS(1835), - [anon_sym_make] = ACTIONS(1835), - [anon_sym_while] = ACTIONS(1835), - [anon_sym_do] = ACTIONS(1835), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_else] = ACTIONS(1835), - [anon_sym_match] = ACTIONS(1835), - [anon_sym_RBRACE] = ACTIONS(1837), - [anon_sym_try] = ACTIONS(1835), - [anon_sym_catch] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_source] = ACTIONS(1835), - [anon_sym_source_DASHenv] = ACTIONS(1835), - [anon_sym_hide] = ACTIONS(1835), - [anon_sym_hide_DASHenv] = ACTIONS(1835), - [anon_sym_overlay] = ACTIONS(1835), - [anon_sym_as] = ACTIONS(1835), - [anon_sym_PLUS2] = ACTIONS(1835), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1837), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1837), - [aux_sym__val_number_decimal_token1] = ACTIONS(1835), - [aux_sym__val_number_decimal_token2] = ACTIONS(1837), - [aux_sym__val_number_decimal_token3] = ACTIONS(1837), - [aux_sym__val_number_decimal_token4] = ACTIONS(1837), - [aux_sym__val_number_token1] = ACTIONS(1837), - [aux_sym__val_number_token2] = ACTIONS(1837), - [aux_sym__val_number_token3] = ACTIONS(1837), - [aux_sym__val_number_token4] = ACTIONS(1835), - [aux_sym__val_number_token5] = ACTIONS(1835), - [aux_sym__val_number_token6] = ACTIONS(1835), - [anon_sym_DQUOTE] = ACTIONS(1837), - [sym__str_single_quotes] = ACTIONS(1837), - [sym__str_back_ticks] = ACTIONS(1837), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1837), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1837), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1837), - [anon_sym_register] = ACTIONS(1835), - [anon_sym_DOT2] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1837), - }, - [478] = { - [sym_cell_path] = STATE(709), - [sym_path] = STATE(585), - [sym_comment] = STATE(478), - [aux_sym_cell_path_repeat1] = STATE(443), - [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(1849), - [aux_sym_cmd_identifier_token3] = ACTIONS(1849), - [aux_sym_cmd_identifier_token4] = ACTIONS(1849), - [aux_sym_cmd_identifier_token5] = ACTIONS(1849), - [aux_sym_cmd_identifier_token6] = ACTIONS(1849), - [aux_sym_cmd_identifier_token7] = ACTIONS(1849), - [aux_sym_cmd_identifier_token8] = ACTIONS(1847), - [aux_sym_cmd_identifier_token9] = ACTIONS(1847), - [aux_sym_cmd_identifier_token10] = ACTIONS(1849), - [aux_sym_cmd_identifier_token11] = ACTIONS(1849), - [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(1849), - [aux_sym_cmd_identifier_token17] = ACTIONS(1849), - [aux_sym_cmd_identifier_token18] = ACTIONS(1849), - [aux_sym_cmd_identifier_token19] = ACTIONS(1849), - [aux_sym_cmd_identifier_token20] = ACTIONS(1849), - [aux_sym_cmd_identifier_token21] = ACTIONS(1849), - [aux_sym_cmd_identifier_token22] = ACTIONS(1849), - [aux_sym_cmd_identifier_token23] = ACTIONS(1849), - [aux_sym_cmd_identifier_token24] = ACTIONS(1849), - [aux_sym_cmd_identifier_token25] = ACTIONS(1849), - [aux_sym_cmd_identifier_token26] = ACTIONS(1849), - [aux_sym_cmd_identifier_token27] = ACTIONS(1849), - [aux_sym_cmd_identifier_token28] = ACTIONS(1849), - [aux_sym_cmd_identifier_token29] = ACTIONS(1849), - [aux_sym_cmd_identifier_token30] = ACTIONS(1849), - [aux_sym_cmd_identifier_token31] = ACTIONS(1849), - [aux_sym_cmd_identifier_token32] = ACTIONS(1849), - [aux_sym_cmd_identifier_token33] = ACTIONS(1849), - [aux_sym_cmd_identifier_token34] = ACTIONS(1847), - [aux_sym_cmd_identifier_token35] = ACTIONS(1849), - [aux_sym_cmd_identifier_token36] = ACTIONS(1849), - [aux_sym_cmd_identifier_token37] = ACTIONS(1849), - [aux_sym_cmd_identifier_token38] = ACTIONS(1847), - [aux_sym_cmd_identifier_token39] = ACTIONS(1849), - [aux_sym_cmd_identifier_token40] = ACTIONS(1849), - [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(1849), - [anon_sym_COMMA] = ACTIONS(1849), - [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(1849), - [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_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(1849), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1849), - [aux_sym__val_number_decimal_token1] = ACTIONS(1847), - [aux_sym__val_number_decimal_token2] = ACTIONS(1849), - [aux_sym__val_number_decimal_token3] = ACTIONS(1849), - [aux_sym__val_number_decimal_token4] = ACTIONS(1849), - [aux_sym__val_number_token1] = ACTIONS(1849), - [aux_sym__val_number_token2] = ACTIONS(1849), - [aux_sym__val_number_token3] = ACTIONS(1849), - [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(1849), - [sym__str_single_quotes] = ACTIONS(1849), - [sym__str_back_ticks] = ACTIONS(1849), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1849), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1849), - [anon_sym_register] = ACTIONS(1847), - [anon_sym_DOT2] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1849), - }, - [479] = { - [sym_cell_path] = STATE(710), - [sym_path] = STATE(585), - [sym_comment] = STATE(479), - [aux_sym_cell_path_repeat1] = STATE(443), - [anon_sym_export] = ACTIONS(1851), - [anon_sym_alias] = ACTIONS(1851), - [anon_sym_let] = ACTIONS(1851), - [anon_sym_let_DASHenv] = ACTIONS(1851), - [anon_sym_mut] = ACTIONS(1851), - [anon_sym_const] = ACTIONS(1851), - [aux_sym_cmd_identifier_token1] = ACTIONS(1851), - [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(1851), - [aux_sym_cmd_identifier_token9] = ACTIONS(1851), - [aux_sym_cmd_identifier_token10] = ACTIONS(1853), - [aux_sym_cmd_identifier_token11] = ACTIONS(1853), - [aux_sym_cmd_identifier_token12] = ACTIONS(1851), - [aux_sym_cmd_identifier_token13] = ACTIONS(1851), - [aux_sym_cmd_identifier_token14] = ACTIONS(1851), - [aux_sym_cmd_identifier_token15] = ACTIONS(1851), - [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(1851), - [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(1851), - [aux_sym_cmd_identifier_token39] = ACTIONS(1853), - [aux_sym_cmd_identifier_token40] = ACTIONS(1853), - [anon_sym_def] = ACTIONS(1851), - [anon_sym_export_DASHenv] = ACTIONS(1851), - [anon_sym_extern] = ACTIONS(1851), - [anon_sym_module] = ACTIONS(1851), - [anon_sym_use] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1853), - [anon_sym_COMMA] = ACTIONS(1853), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_error] = ACTIONS(1851), - [anon_sym_DASH2] = ACTIONS(1851), - [anon_sym_break] = ACTIONS(1851), - [anon_sym_continue] = ACTIONS(1851), - [anon_sym_for] = ACTIONS(1851), - [anon_sym_in2] = ACTIONS(1851), - [anon_sym_loop] = ACTIONS(1851), - [anon_sym_make] = ACTIONS(1851), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_else] = ACTIONS(1851), - [anon_sym_match] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1853), - [anon_sym_try] = ACTIONS(1851), - [anon_sym_catch] = ACTIONS(1851), - [anon_sym_return] = ACTIONS(1851), - [anon_sym_source] = ACTIONS(1851), - [anon_sym_source_DASHenv] = ACTIONS(1851), - [anon_sym_hide] = ACTIONS(1851), - [anon_sym_hide_DASHenv] = ACTIONS(1851), - [anon_sym_overlay] = ACTIONS(1851), - [anon_sym_as] = ACTIONS(1851), - [anon_sym_PLUS2] = ACTIONS(1851), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1853), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1853), - [aux_sym__val_number_decimal_token1] = ACTIONS(1851), - [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(1851), - [aux_sym__val_number_token5] = ACTIONS(1851), - [aux_sym__val_number_token6] = ACTIONS(1851), - [anon_sym_DQUOTE] = ACTIONS(1853), - [sym__str_single_quotes] = ACTIONS(1853), - [sym__str_back_ticks] = ACTIONS(1853), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1853), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1853), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1853), - [anon_sym_register] = ACTIONS(1851), - [anon_sym_DOT2] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1853), - }, - [480] = { - [sym_cell_path] = STATE(711), - [sym_path] = STATE(585), - [sym_comment] = STATE(480), - [aux_sym_cell_path_repeat1] = STATE(443), - [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_COMMA] = ACTIONS(1861), - [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(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_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_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_DOLLAR_SQUOTE] = ACTIONS(1861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1861), - [anon_sym_register] = ACTIONS(1859), - [anon_sym_DOT2] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1861), - }, - [481] = { - [sym_cell_path] = STATE(712), - [sym_path] = STATE(585), - [sym_comment] = STATE(481), - [aux_sym_cell_path_repeat1] = STATE(443), - [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_COMMA] = ACTIONS(1865), - [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(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_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_DOLLAR_SQUOTE] = ACTIONS(1865), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1865), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1865), - [anon_sym_register] = ACTIONS(1863), - [anon_sym_DOT2] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1865), + [sym_raw_string_begin] = ACTIONS(1947), }, - [482] = { - [sym_cell_path] = STATE(713), - [sym_path] = STATE(585), - [sym_comment] = STATE(482), - [aux_sym_cell_path_repeat1] = STATE(443), + [454] = { + [sym_cell_path] = STATE(664), + [sym_path] = STATE(541), + [sym_comment] = STATE(454), + [aux_sym_cell_path_repeat1] = STATE(430), [anon_sym_export] = ACTIONS(1875), [anon_sym_alias] = ACTIONS(1875), [anon_sym_let] = ACTIONS(1875), @@ -128392,1808 +124301,2973 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1877), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1877), [anon_sym_register] = ACTIONS(1875), - [anon_sym_DOT2] = ACTIONS(1949), + [anon_sym_DOT2] = ACTIONS(1821), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(1877), }, - [483] = { - [sym_cell_path] = STATE(714), - [sym_path] = STATE(585), - [sym_comment] = STATE(483), - [aux_sym_cell_path_repeat1] = STATE(443), - [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_COMMA] = ACTIONS(1881), - [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(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_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_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_DOLLAR_SQUOTE] = ACTIONS(1881), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1881), - [anon_sym_register] = ACTIONS(1879), - [anon_sym_DOT2] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1881), + [455] = { + [sym_comment] = STATE(455), + [anon_sym_export] = ACTIONS(1949), + [anon_sym_alias] = ACTIONS(1949), + [anon_sym_let] = ACTIONS(1949), + [anon_sym_let_DASHenv] = ACTIONS(1949), + [anon_sym_mut] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(1949), + [aux_sym_cmd_identifier_token1] = ACTIONS(1949), + [aux_sym_cmd_identifier_token2] = ACTIONS(1949), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [aux_sym_cmd_identifier_token6] = ACTIONS(1949), + [aux_sym_cmd_identifier_token7] = ACTIONS(1949), + [aux_sym_cmd_identifier_token8] = ACTIONS(1949), + [aux_sym_cmd_identifier_token9] = ACTIONS(1949), + [aux_sym_cmd_identifier_token10] = ACTIONS(1949), + [aux_sym_cmd_identifier_token11] = ACTIONS(1949), + [aux_sym_cmd_identifier_token12] = ACTIONS(1949), + [aux_sym_cmd_identifier_token13] = ACTIONS(1949), + [aux_sym_cmd_identifier_token14] = ACTIONS(1949), + [aux_sym_cmd_identifier_token15] = ACTIONS(1949), + [aux_sym_cmd_identifier_token16] = ACTIONS(1949), + [aux_sym_cmd_identifier_token17] = ACTIONS(1949), + [aux_sym_cmd_identifier_token18] = ACTIONS(1949), + [aux_sym_cmd_identifier_token19] = ACTIONS(1949), + [aux_sym_cmd_identifier_token20] = ACTIONS(1949), + [aux_sym_cmd_identifier_token21] = ACTIONS(1949), + [aux_sym_cmd_identifier_token22] = ACTIONS(1949), + [aux_sym_cmd_identifier_token23] = ACTIONS(1949), + [aux_sym_cmd_identifier_token24] = ACTIONS(1949), + [aux_sym_cmd_identifier_token25] = ACTIONS(1949), + [aux_sym_cmd_identifier_token26] = ACTIONS(1949), + [aux_sym_cmd_identifier_token27] = ACTIONS(1949), + [aux_sym_cmd_identifier_token28] = ACTIONS(1949), + [aux_sym_cmd_identifier_token29] = ACTIONS(1949), + [aux_sym_cmd_identifier_token30] = ACTIONS(1949), + [aux_sym_cmd_identifier_token31] = ACTIONS(1949), + [aux_sym_cmd_identifier_token32] = ACTIONS(1949), + [aux_sym_cmd_identifier_token33] = ACTIONS(1949), + [aux_sym_cmd_identifier_token34] = ACTIONS(1949), + [aux_sym_cmd_identifier_token35] = ACTIONS(1949), + [aux_sym_cmd_identifier_token36] = ACTIONS(1949), + [aux_sym_cmd_identifier_token37] = ACTIONS(1949), + [aux_sym_cmd_identifier_token38] = ACTIONS(1949), + [aux_sym_cmd_identifier_token39] = ACTIONS(1949), + [aux_sym_cmd_identifier_token40] = ACTIONS(1949), + [anon_sym_def] = ACTIONS(1949), + [anon_sym_export_DASHenv] = ACTIONS(1949), + [anon_sym_extern] = ACTIONS(1949), + [anon_sym_module] = ACTIONS(1949), + [anon_sym_use] = ACTIONS(1949), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_COMMA] = ACTIONS(1949), + [anon_sym_DOLLAR] = ACTIONS(1949), + [anon_sym_error] = ACTIONS(1949), + [anon_sym_DASH2] = ACTIONS(1949), + [anon_sym_break] = ACTIONS(1949), + [anon_sym_continue] = ACTIONS(1949), + [anon_sym_for] = ACTIONS(1949), + [anon_sym_in2] = ACTIONS(1949), + [anon_sym_loop] = ACTIONS(1949), + [anon_sym_make] = ACTIONS(1949), + [anon_sym_while] = ACTIONS(1949), + [anon_sym_do] = ACTIONS(1949), + [anon_sym_if] = ACTIONS(1949), + [anon_sym_else] = ACTIONS(1949), + [anon_sym_match] = ACTIONS(1949), + [anon_sym_RBRACE] = ACTIONS(1949), + [anon_sym_try] = ACTIONS(1949), + [anon_sym_catch] = ACTIONS(1949), + [anon_sym_return] = ACTIONS(1949), + [anon_sym_source] = ACTIONS(1949), + [anon_sym_source_DASHenv] = ACTIONS(1949), + [anon_sym_hide] = ACTIONS(1949), + [anon_sym_hide_DASHenv] = ACTIONS(1949), + [anon_sym_overlay] = ACTIONS(1949), + [anon_sym_as] = ACTIONS(1949), + [anon_sym_PLUS2] = ACTIONS(1949), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1949), + [anon_sym_DOT_DOT2] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1953), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1953), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1949), + [aux_sym__val_number_decimal_token1] = ACTIONS(1949), + [aux_sym__val_number_decimal_token2] = ACTIONS(1949), + [aux_sym__val_number_decimal_token3] = ACTIONS(1949), + [aux_sym__val_number_decimal_token4] = ACTIONS(1949), + [aux_sym__val_number_token1] = ACTIONS(1949), + [aux_sym__val_number_token2] = ACTIONS(1949), + [aux_sym__val_number_token3] = ACTIONS(1949), + [aux_sym__val_number_token4] = ACTIONS(1949), + [aux_sym__val_number_token5] = ACTIONS(1949), + [aux_sym__val_number_token6] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(1949), + [sym__str_single_quotes] = ACTIONS(1949), + [sym__str_back_ticks] = ACTIONS(1949), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1949), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1949), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1949), + [sym__entry_separator] = ACTIONS(1955), + [anon_sym_register] = ACTIONS(1949), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1955), }, - [484] = { - [sym_cell_path] = STATE(675), - [sym_path] = STATE(585), - [sym_comment] = STATE(484), - [aux_sym_cell_path_repeat1] = STATE(443), - [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_COMMA] = ACTIONS(1897), - [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(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_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_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_DOLLAR_SQUOTE] = ACTIONS(1897), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1897), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1897), - [anon_sym_register] = ACTIONS(1895), - [anon_sym_DOT2] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1897), + [456] = { + [sym_comment] = STATE(456), + [anon_sym_export] = ACTIONS(1957), + [anon_sym_alias] = ACTIONS(1957), + [anon_sym_let] = ACTIONS(1957), + [anon_sym_let_DASHenv] = ACTIONS(1957), + [anon_sym_mut] = ACTIONS(1957), + [anon_sym_const] = ACTIONS(1957), + [aux_sym_cmd_identifier_token1] = ACTIONS(1957), + [aux_sym_cmd_identifier_token2] = ACTIONS(1957), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [aux_sym_cmd_identifier_token6] = ACTIONS(1957), + [aux_sym_cmd_identifier_token7] = ACTIONS(1957), + [aux_sym_cmd_identifier_token8] = ACTIONS(1957), + [aux_sym_cmd_identifier_token9] = ACTIONS(1957), + [aux_sym_cmd_identifier_token10] = ACTIONS(1957), + [aux_sym_cmd_identifier_token11] = ACTIONS(1957), + [aux_sym_cmd_identifier_token12] = ACTIONS(1957), + [aux_sym_cmd_identifier_token13] = ACTIONS(1957), + [aux_sym_cmd_identifier_token14] = ACTIONS(1957), + [aux_sym_cmd_identifier_token15] = ACTIONS(1957), + [aux_sym_cmd_identifier_token16] = ACTIONS(1957), + [aux_sym_cmd_identifier_token17] = ACTIONS(1957), + [aux_sym_cmd_identifier_token18] = ACTIONS(1957), + [aux_sym_cmd_identifier_token19] = ACTIONS(1957), + [aux_sym_cmd_identifier_token20] = ACTIONS(1957), + [aux_sym_cmd_identifier_token21] = ACTIONS(1957), + [aux_sym_cmd_identifier_token22] = ACTIONS(1957), + [aux_sym_cmd_identifier_token23] = ACTIONS(1957), + [aux_sym_cmd_identifier_token24] = ACTIONS(1957), + [aux_sym_cmd_identifier_token25] = ACTIONS(1957), + [aux_sym_cmd_identifier_token26] = ACTIONS(1957), + [aux_sym_cmd_identifier_token27] = ACTIONS(1957), + [aux_sym_cmd_identifier_token28] = ACTIONS(1957), + [aux_sym_cmd_identifier_token29] = ACTIONS(1957), + [aux_sym_cmd_identifier_token30] = ACTIONS(1957), + [aux_sym_cmd_identifier_token31] = ACTIONS(1957), + [aux_sym_cmd_identifier_token32] = ACTIONS(1957), + [aux_sym_cmd_identifier_token33] = ACTIONS(1957), + [aux_sym_cmd_identifier_token34] = ACTIONS(1957), + [aux_sym_cmd_identifier_token35] = ACTIONS(1957), + [aux_sym_cmd_identifier_token36] = ACTIONS(1957), + [aux_sym_cmd_identifier_token37] = ACTIONS(1957), + [aux_sym_cmd_identifier_token38] = ACTIONS(1957), + [aux_sym_cmd_identifier_token39] = ACTIONS(1957), + [aux_sym_cmd_identifier_token40] = ACTIONS(1957), + [anon_sym_def] = ACTIONS(1957), + [anon_sym_export_DASHenv] = ACTIONS(1957), + [anon_sym_extern] = ACTIONS(1957), + [anon_sym_module] = ACTIONS(1957), + [anon_sym_use] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(1957), + [anon_sym_COMMA] = ACTIONS(1957), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_error] = ACTIONS(1957), + [anon_sym_DASH2] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_in2] = ACTIONS(1957), + [anon_sym_loop] = ACTIONS(1957), + [anon_sym_make] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_do] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_else] = ACTIONS(1957), + [anon_sym_match] = ACTIONS(1957), + [anon_sym_RBRACE] = ACTIONS(1957), + [anon_sym_try] = ACTIONS(1957), + [anon_sym_catch] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_source] = ACTIONS(1957), + [anon_sym_source_DASHenv] = ACTIONS(1957), + [anon_sym_hide] = ACTIONS(1957), + [anon_sym_hide_DASHenv] = ACTIONS(1957), + [anon_sym_overlay] = ACTIONS(1957), + [anon_sym_as] = ACTIONS(1957), + [anon_sym_PLUS2] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1957), + [anon_sym_DOT_DOT2] = ACTIONS(1959), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1961), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1961), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1957), + [aux_sym__val_number_decimal_token1] = ACTIONS(1957), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1957), + [aux_sym__val_number_decimal_token4] = ACTIONS(1957), + [aux_sym__val_number_token1] = ACTIONS(1957), + [aux_sym__val_number_token2] = ACTIONS(1957), + [aux_sym__val_number_token3] = ACTIONS(1957), + [aux_sym__val_number_token4] = ACTIONS(1957), + [aux_sym__val_number_token5] = ACTIONS(1957), + [aux_sym__val_number_token6] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(1957), + [sym__str_single_quotes] = ACTIONS(1957), + [sym__str_back_ticks] = ACTIONS(1957), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1957), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1957), + [sym__entry_separator] = ACTIONS(1963), + [anon_sym_register] = ACTIONS(1957), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1963), }, - [485] = { - [sym_cell_path] = STATE(751), - [sym_path] = STATE(585), - [sym_comment] = STATE(485), - [aux_sym_cell_path_repeat1] = STATE(443), - [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_COMMA] = ACTIONS(1915), - [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(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_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_DOLLAR_SQUOTE] = ACTIONS(1915), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1915), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1915), - [anon_sym_register] = ACTIONS(1913), - [anon_sym_DOT2] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1915), + [457] = { + [sym_comment] = STATE(457), + [anon_sym_export] = ACTIONS(1965), + [anon_sym_alias] = ACTIONS(1965), + [anon_sym_let] = ACTIONS(1965), + [anon_sym_let_DASHenv] = ACTIONS(1965), + [anon_sym_mut] = ACTIONS(1965), + [anon_sym_const] = ACTIONS(1965), + [aux_sym_cmd_identifier_token1] = ACTIONS(1965), + [aux_sym_cmd_identifier_token2] = ACTIONS(1965), + [aux_sym_cmd_identifier_token3] = ACTIONS(1965), + [aux_sym_cmd_identifier_token4] = ACTIONS(1965), + [aux_sym_cmd_identifier_token5] = ACTIONS(1965), + [aux_sym_cmd_identifier_token6] = ACTIONS(1965), + [aux_sym_cmd_identifier_token7] = ACTIONS(1965), + [aux_sym_cmd_identifier_token8] = ACTIONS(1965), + [aux_sym_cmd_identifier_token9] = ACTIONS(1965), + [aux_sym_cmd_identifier_token10] = ACTIONS(1965), + [aux_sym_cmd_identifier_token11] = ACTIONS(1965), + [aux_sym_cmd_identifier_token12] = ACTIONS(1965), + [aux_sym_cmd_identifier_token13] = ACTIONS(1965), + [aux_sym_cmd_identifier_token14] = ACTIONS(1965), + [aux_sym_cmd_identifier_token15] = ACTIONS(1965), + [aux_sym_cmd_identifier_token16] = ACTIONS(1965), + [aux_sym_cmd_identifier_token17] = ACTIONS(1965), + [aux_sym_cmd_identifier_token18] = ACTIONS(1965), + [aux_sym_cmd_identifier_token19] = ACTIONS(1965), + [aux_sym_cmd_identifier_token20] = ACTIONS(1965), + [aux_sym_cmd_identifier_token21] = ACTIONS(1965), + [aux_sym_cmd_identifier_token22] = ACTIONS(1965), + [aux_sym_cmd_identifier_token23] = ACTIONS(1965), + [aux_sym_cmd_identifier_token24] = ACTIONS(1965), + [aux_sym_cmd_identifier_token25] = ACTIONS(1965), + [aux_sym_cmd_identifier_token26] = ACTIONS(1965), + [aux_sym_cmd_identifier_token27] = ACTIONS(1965), + [aux_sym_cmd_identifier_token28] = ACTIONS(1965), + [aux_sym_cmd_identifier_token29] = ACTIONS(1965), + [aux_sym_cmd_identifier_token30] = ACTIONS(1965), + [aux_sym_cmd_identifier_token31] = ACTIONS(1965), + [aux_sym_cmd_identifier_token32] = ACTIONS(1965), + [aux_sym_cmd_identifier_token33] = ACTIONS(1965), + [aux_sym_cmd_identifier_token34] = ACTIONS(1965), + [aux_sym_cmd_identifier_token35] = ACTIONS(1965), + [aux_sym_cmd_identifier_token36] = ACTIONS(1965), + [aux_sym_cmd_identifier_token37] = ACTIONS(1965), + [aux_sym_cmd_identifier_token38] = ACTIONS(1965), + [aux_sym_cmd_identifier_token39] = ACTIONS(1965), + [aux_sym_cmd_identifier_token40] = ACTIONS(1965), + [anon_sym_def] = ACTIONS(1965), + [anon_sym_export_DASHenv] = ACTIONS(1965), + [anon_sym_extern] = ACTIONS(1965), + [anon_sym_module] = ACTIONS(1965), + [anon_sym_use] = ACTIONS(1965), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_COMMA] = ACTIONS(1965), + [anon_sym_DOLLAR] = ACTIONS(1965), + [anon_sym_error] = ACTIONS(1965), + [anon_sym_DASH2] = ACTIONS(1965), + [anon_sym_break] = ACTIONS(1965), + [anon_sym_continue] = ACTIONS(1965), + [anon_sym_for] = ACTIONS(1965), + [anon_sym_in2] = ACTIONS(1965), + [anon_sym_loop] = ACTIONS(1965), + [anon_sym_make] = ACTIONS(1965), + [anon_sym_while] = ACTIONS(1965), + [anon_sym_do] = ACTIONS(1965), + [anon_sym_if] = ACTIONS(1965), + [anon_sym_else] = ACTIONS(1965), + [anon_sym_match] = ACTIONS(1965), + [anon_sym_RBRACE] = ACTIONS(1965), + [anon_sym_try] = ACTIONS(1965), + [anon_sym_catch] = ACTIONS(1965), + [anon_sym_return] = ACTIONS(1965), + [anon_sym_source] = ACTIONS(1965), + [anon_sym_source_DASHenv] = ACTIONS(1965), + [anon_sym_hide] = ACTIONS(1965), + [anon_sym_hide_DASHenv] = ACTIONS(1965), + [anon_sym_overlay] = ACTIONS(1965), + [anon_sym_as] = ACTIONS(1965), + [anon_sym_PLUS2] = ACTIONS(1965), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1965), + [anon_sym_DOT_DOT2] = ACTIONS(1967), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1969), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1969), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1965), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1965), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(1965), + [aux_sym__val_number_token2] = ACTIONS(1965), + [aux_sym__val_number_token3] = ACTIONS(1965), + [aux_sym__val_number_token4] = ACTIONS(1965), + [aux_sym__val_number_token5] = ACTIONS(1965), + [aux_sym__val_number_token6] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1965), + [sym__str_single_quotes] = ACTIONS(1965), + [sym__str_back_ticks] = ACTIONS(1965), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1965), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1965), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1965), + [sym__entry_separator] = ACTIONS(1971), + [anon_sym_register] = ACTIONS(1965), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1971), }, - [486] = { - [sym_cell_path] = STATE(717), - [sym_path] = STATE(585), - [sym_comment] = STATE(486), - [aux_sym_cell_path_repeat1] = STATE(443), - [anon_sym_export] = ACTIONS(1945), - [anon_sym_alias] = ACTIONS(1945), - [anon_sym_let] = ACTIONS(1945), - [anon_sym_let_DASHenv] = ACTIONS(1945), - [anon_sym_mut] = ACTIONS(1945), - [anon_sym_const] = ACTIONS(1945), - [aux_sym_cmd_identifier_token1] = ACTIONS(1945), - [aux_sym_cmd_identifier_token2] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1947), - [aux_sym_cmd_identifier_token4] = ACTIONS(1947), - [aux_sym_cmd_identifier_token5] = ACTIONS(1947), - [aux_sym_cmd_identifier_token6] = ACTIONS(1947), - [aux_sym_cmd_identifier_token7] = ACTIONS(1947), - [aux_sym_cmd_identifier_token8] = ACTIONS(1945), - [aux_sym_cmd_identifier_token9] = ACTIONS(1945), - [aux_sym_cmd_identifier_token10] = ACTIONS(1947), - [aux_sym_cmd_identifier_token11] = ACTIONS(1947), - [aux_sym_cmd_identifier_token12] = ACTIONS(1945), - [aux_sym_cmd_identifier_token13] = ACTIONS(1945), - [aux_sym_cmd_identifier_token14] = ACTIONS(1945), - [aux_sym_cmd_identifier_token15] = ACTIONS(1945), - [aux_sym_cmd_identifier_token16] = ACTIONS(1947), - [aux_sym_cmd_identifier_token17] = ACTIONS(1947), - [aux_sym_cmd_identifier_token18] = ACTIONS(1947), - [aux_sym_cmd_identifier_token19] = ACTIONS(1947), - [aux_sym_cmd_identifier_token20] = ACTIONS(1947), - [aux_sym_cmd_identifier_token21] = ACTIONS(1947), - [aux_sym_cmd_identifier_token22] = ACTIONS(1947), - [aux_sym_cmd_identifier_token23] = ACTIONS(1947), - [aux_sym_cmd_identifier_token24] = ACTIONS(1947), - [aux_sym_cmd_identifier_token25] = ACTIONS(1947), - [aux_sym_cmd_identifier_token26] = ACTIONS(1947), - [aux_sym_cmd_identifier_token27] = ACTIONS(1947), - [aux_sym_cmd_identifier_token28] = ACTIONS(1947), - [aux_sym_cmd_identifier_token29] = ACTIONS(1947), - [aux_sym_cmd_identifier_token30] = ACTIONS(1947), - [aux_sym_cmd_identifier_token31] = ACTIONS(1947), - [aux_sym_cmd_identifier_token32] = ACTIONS(1947), - [aux_sym_cmd_identifier_token33] = ACTIONS(1947), - [aux_sym_cmd_identifier_token34] = ACTIONS(1945), - [aux_sym_cmd_identifier_token35] = ACTIONS(1947), - [aux_sym_cmd_identifier_token36] = ACTIONS(1947), - [aux_sym_cmd_identifier_token37] = ACTIONS(1947), - [aux_sym_cmd_identifier_token38] = ACTIONS(1945), - [aux_sym_cmd_identifier_token39] = ACTIONS(1947), - [aux_sym_cmd_identifier_token40] = ACTIONS(1947), - [anon_sym_def] = ACTIONS(1945), - [anon_sym_export_DASHenv] = ACTIONS(1945), - [anon_sym_extern] = ACTIONS(1945), - [anon_sym_module] = ACTIONS(1945), - [anon_sym_use] = ACTIONS(1945), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_COMMA] = ACTIONS(1947), - [anon_sym_DOLLAR] = ACTIONS(1945), - [anon_sym_error] = ACTIONS(1945), - [anon_sym_DASH2] = ACTIONS(1945), - [anon_sym_break] = ACTIONS(1945), - [anon_sym_continue] = ACTIONS(1945), - [anon_sym_for] = ACTIONS(1945), - [anon_sym_in2] = ACTIONS(1945), - [anon_sym_loop] = ACTIONS(1945), - [anon_sym_make] = ACTIONS(1945), - [anon_sym_while] = ACTIONS(1945), - [anon_sym_do] = ACTIONS(1945), - [anon_sym_if] = ACTIONS(1945), - [anon_sym_else] = ACTIONS(1945), - [anon_sym_match] = ACTIONS(1945), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_try] = ACTIONS(1945), - [anon_sym_catch] = ACTIONS(1945), - [anon_sym_return] = ACTIONS(1945), - [anon_sym_source] = ACTIONS(1945), - [anon_sym_source_DASHenv] = ACTIONS(1945), - [anon_sym_hide] = ACTIONS(1945), - [anon_sym_hide_DASHenv] = ACTIONS(1945), - [anon_sym_overlay] = ACTIONS(1945), - [anon_sym_as] = ACTIONS(1945), - [anon_sym_PLUS2] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1947), - [aux_sym__val_number_decimal_token1] = ACTIONS(1945), - [aux_sym__val_number_decimal_token2] = ACTIONS(1947), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(1947), - [aux_sym__val_number_token2] = ACTIONS(1947), - [aux_sym__val_number_token3] = ACTIONS(1947), - [aux_sym__val_number_token4] = ACTIONS(1945), - [aux_sym__val_number_token5] = ACTIONS(1945), - [aux_sym__val_number_token6] = ACTIONS(1945), - [anon_sym_DQUOTE] = ACTIONS(1947), - [sym__str_single_quotes] = ACTIONS(1947), - [sym__str_back_ticks] = ACTIONS(1947), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1947), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1947), - [anon_sym_register] = ACTIONS(1945), - [anon_sym_DOT2] = ACTIONS(1949), + [458] = { + [sym_cell_path] = STATE(682), + [sym_path] = STATE(541), + [sym_comment] = STATE(458), + [aux_sym_cell_path_repeat1] = STATE(430), + [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_COMMA] = ACTIONS(1917), + [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(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_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_DOLLAR_SQUOTE] = ACTIONS(1917), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1917), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1917), + [anon_sym_register] = ACTIONS(1915), + [anon_sym_DOT2] = ACTIONS(1821), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1947), + [sym_raw_string_begin] = ACTIONS(1917), }, - [487] = { - [sym_cell_path] = STATE(718), - [sym_path] = STATE(585), - [sym_comment] = STATE(487), - [aux_sym_cell_path_repeat1] = STATE(443), - [anon_sym_export] = ACTIONS(1843), - [anon_sym_alias] = ACTIONS(1843), - [anon_sym_let] = ACTIONS(1843), - [anon_sym_let_DASHenv] = ACTIONS(1843), - [anon_sym_mut] = ACTIONS(1843), - [anon_sym_const] = ACTIONS(1843), - [aux_sym_cmd_identifier_token1] = ACTIONS(1843), - [aux_sym_cmd_identifier_token2] = ACTIONS(1845), - [aux_sym_cmd_identifier_token3] = ACTIONS(1845), - [aux_sym_cmd_identifier_token4] = ACTIONS(1845), - [aux_sym_cmd_identifier_token5] = ACTIONS(1845), - [aux_sym_cmd_identifier_token6] = ACTIONS(1845), - [aux_sym_cmd_identifier_token7] = ACTIONS(1845), - [aux_sym_cmd_identifier_token8] = ACTIONS(1843), - [aux_sym_cmd_identifier_token9] = ACTIONS(1843), - [aux_sym_cmd_identifier_token10] = ACTIONS(1845), - [aux_sym_cmd_identifier_token11] = ACTIONS(1845), - [aux_sym_cmd_identifier_token12] = ACTIONS(1843), - [aux_sym_cmd_identifier_token13] = ACTIONS(1843), - [aux_sym_cmd_identifier_token14] = ACTIONS(1843), - [aux_sym_cmd_identifier_token15] = ACTIONS(1843), - [aux_sym_cmd_identifier_token16] = ACTIONS(1845), - [aux_sym_cmd_identifier_token17] = ACTIONS(1845), - [aux_sym_cmd_identifier_token18] = ACTIONS(1845), - [aux_sym_cmd_identifier_token19] = ACTIONS(1845), - [aux_sym_cmd_identifier_token20] = ACTIONS(1845), - [aux_sym_cmd_identifier_token21] = ACTIONS(1845), - [aux_sym_cmd_identifier_token22] = ACTIONS(1845), - [aux_sym_cmd_identifier_token23] = ACTIONS(1845), - [aux_sym_cmd_identifier_token24] = ACTIONS(1845), - [aux_sym_cmd_identifier_token25] = ACTIONS(1845), - [aux_sym_cmd_identifier_token26] = ACTIONS(1845), - [aux_sym_cmd_identifier_token27] = ACTIONS(1845), - [aux_sym_cmd_identifier_token28] = ACTIONS(1845), - [aux_sym_cmd_identifier_token29] = ACTIONS(1845), - [aux_sym_cmd_identifier_token30] = ACTIONS(1845), - [aux_sym_cmd_identifier_token31] = ACTIONS(1845), - [aux_sym_cmd_identifier_token32] = ACTIONS(1845), - [aux_sym_cmd_identifier_token33] = ACTIONS(1845), - [aux_sym_cmd_identifier_token34] = ACTIONS(1843), - [aux_sym_cmd_identifier_token35] = ACTIONS(1845), - [aux_sym_cmd_identifier_token36] = ACTIONS(1845), - [aux_sym_cmd_identifier_token37] = ACTIONS(1845), - [aux_sym_cmd_identifier_token38] = ACTIONS(1843), - [aux_sym_cmd_identifier_token39] = ACTIONS(1845), - [aux_sym_cmd_identifier_token40] = ACTIONS(1845), - [anon_sym_def] = ACTIONS(1843), - [anon_sym_export_DASHenv] = ACTIONS(1843), - [anon_sym_extern] = ACTIONS(1843), - [anon_sym_module] = ACTIONS(1843), - [anon_sym_use] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_COMMA] = ACTIONS(1845), - [anon_sym_DOLLAR] = ACTIONS(1843), - [anon_sym_error] = ACTIONS(1843), - [anon_sym_DASH2] = ACTIONS(1843), - [anon_sym_break] = ACTIONS(1843), - [anon_sym_continue] = ACTIONS(1843), - [anon_sym_for] = ACTIONS(1843), - [anon_sym_in2] = ACTIONS(1843), - [anon_sym_loop] = ACTIONS(1843), - [anon_sym_make] = ACTIONS(1843), - [anon_sym_while] = ACTIONS(1843), - [anon_sym_do] = ACTIONS(1843), - [anon_sym_if] = ACTIONS(1843), - [anon_sym_else] = ACTIONS(1843), - [anon_sym_match] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1845), - [anon_sym_try] = ACTIONS(1843), - [anon_sym_catch] = ACTIONS(1843), - [anon_sym_return] = ACTIONS(1843), - [anon_sym_source] = ACTIONS(1843), - [anon_sym_source_DASHenv] = ACTIONS(1843), - [anon_sym_hide] = ACTIONS(1843), - [anon_sym_hide_DASHenv] = ACTIONS(1843), - [anon_sym_overlay] = ACTIONS(1843), - [anon_sym_as] = ACTIONS(1843), - [anon_sym_PLUS2] = ACTIONS(1843), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1845), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1845), - [aux_sym__val_number_decimal_token1] = ACTIONS(1843), - [aux_sym__val_number_decimal_token2] = ACTIONS(1845), - [aux_sym__val_number_decimal_token3] = ACTIONS(1845), - [aux_sym__val_number_decimal_token4] = ACTIONS(1845), - [aux_sym__val_number_token1] = ACTIONS(1845), - [aux_sym__val_number_token2] = ACTIONS(1845), - [aux_sym__val_number_token3] = ACTIONS(1845), - [aux_sym__val_number_token4] = ACTIONS(1843), - [aux_sym__val_number_token5] = ACTIONS(1843), - [aux_sym__val_number_token6] = ACTIONS(1843), - [anon_sym_DQUOTE] = ACTIONS(1845), - [sym__str_single_quotes] = ACTIONS(1845), - [sym__str_back_ticks] = ACTIONS(1845), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1845), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1845), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1845), - [anon_sym_register] = ACTIONS(1843), - [anon_sym_DOT2] = ACTIONS(1949), + [459] = { + [sym_comment] = STATE(459), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_alias] = ACTIONS(1973), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_let_DASHenv] = ACTIONS(1973), + [anon_sym_mut] = ACTIONS(1973), + [anon_sym_const] = ACTIONS(1973), + [aux_sym_cmd_identifier_token1] = ACTIONS(1973), + [aux_sym_cmd_identifier_token2] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1973), + [aux_sym_cmd_identifier_token4] = ACTIONS(1973), + [aux_sym_cmd_identifier_token5] = ACTIONS(1973), + [aux_sym_cmd_identifier_token6] = ACTIONS(1973), + [aux_sym_cmd_identifier_token7] = ACTIONS(1973), + [aux_sym_cmd_identifier_token8] = ACTIONS(1973), + [aux_sym_cmd_identifier_token9] = ACTIONS(1973), + [aux_sym_cmd_identifier_token10] = ACTIONS(1973), + [aux_sym_cmd_identifier_token11] = ACTIONS(1973), + [aux_sym_cmd_identifier_token12] = ACTIONS(1973), + [aux_sym_cmd_identifier_token13] = ACTIONS(1973), + [aux_sym_cmd_identifier_token14] = ACTIONS(1973), + [aux_sym_cmd_identifier_token15] = ACTIONS(1973), + [aux_sym_cmd_identifier_token16] = ACTIONS(1973), + [aux_sym_cmd_identifier_token17] = ACTIONS(1973), + [aux_sym_cmd_identifier_token18] = ACTIONS(1973), + [aux_sym_cmd_identifier_token19] = ACTIONS(1973), + [aux_sym_cmd_identifier_token20] = ACTIONS(1973), + [aux_sym_cmd_identifier_token21] = ACTIONS(1973), + [aux_sym_cmd_identifier_token22] = ACTIONS(1973), + [aux_sym_cmd_identifier_token23] = ACTIONS(1973), + [aux_sym_cmd_identifier_token24] = ACTIONS(1973), + [aux_sym_cmd_identifier_token25] = ACTIONS(1973), + [aux_sym_cmd_identifier_token26] = ACTIONS(1973), + [aux_sym_cmd_identifier_token27] = ACTIONS(1973), + [aux_sym_cmd_identifier_token28] = ACTIONS(1973), + [aux_sym_cmd_identifier_token29] = ACTIONS(1973), + [aux_sym_cmd_identifier_token30] = ACTIONS(1973), + [aux_sym_cmd_identifier_token31] = ACTIONS(1973), + [aux_sym_cmd_identifier_token32] = ACTIONS(1973), + [aux_sym_cmd_identifier_token33] = ACTIONS(1973), + [aux_sym_cmd_identifier_token34] = ACTIONS(1973), + [aux_sym_cmd_identifier_token35] = ACTIONS(1973), + [aux_sym_cmd_identifier_token36] = ACTIONS(1973), + [aux_sym_cmd_identifier_token37] = ACTIONS(1973), + [aux_sym_cmd_identifier_token38] = ACTIONS(1973), + [aux_sym_cmd_identifier_token39] = ACTIONS(1973), + [aux_sym_cmd_identifier_token40] = ACTIONS(1973), + [anon_sym_def] = ACTIONS(1973), + [anon_sym_export_DASHenv] = ACTIONS(1973), + [anon_sym_extern] = ACTIONS(1973), + [anon_sym_module] = ACTIONS(1973), + [anon_sym_use] = ACTIONS(1973), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_COMMA] = ACTIONS(1973), + [anon_sym_DOLLAR] = ACTIONS(1973), + [anon_sym_error] = ACTIONS(1973), + [anon_sym_DASH2] = ACTIONS(1973), + [anon_sym_break] = ACTIONS(1973), + [anon_sym_continue] = ACTIONS(1973), + [anon_sym_for] = ACTIONS(1973), + [anon_sym_in2] = ACTIONS(1973), + [anon_sym_loop] = ACTIONS(1973), + [anon_sym_make] = ACTIONS(1973), + [anon_sym_while] = ACTIONS(1973), + [anon_sym_do] = ACTIONS(1973), + [anon_sym_if] = ACTIONS(1973), + [anon_sym_else] = ACTIONS(1973), + [anon_sym_match] = ACTIONS(1973), + [anon_sym_RBRACE] = ACTIONS(1973), + [anon_sym_try] = ACTIONS(1973), + [anon_sym_catch] = ACTIONS(1973), + [anon_sym_return] = ACTIONS(1973), + [anon_sym_source] = ACTIONS(1973), + [anon_sym_source_DASHenv] = ACTIONS(1973), + [anon_sym_hide] = ACTIONS(1973), + [anon_sym_hide_DASHenv] = ACTIONS(1973), + [anon_sym_overlay] = ACTIONS(1973), + [anon_sym_as] = ACTIONS(1973), + [anon_sym_PLUS2] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1973), + [anon_sym_DOT_DOT2] = ACTIONS(1975), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1977), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1977), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1973), + [aux_sym__val_number_decimal_token1] = ACTIONS(1973), + [aux_sym__val_number_decimal_token2] = ACTIONS(1973), + [aux_sym__val_number_decimal_token3] = ACTIONS(1973), + [aux_sym__val_number_decimal_token4] = ACTIONS(1973), + [aux_sym__val_number_token1] = ACTIONS(1973), + [aux_sym__val_number_token2] = ACTIONS(1973), + [aux_sym__val_number_token3] = ACTIONS(1973), + [aux_sym__val_number_token4] = ACTIONS(1973), + [aux_sym__val_number_token5] = ACTIONS(1973), + [aux_sym__val_number_token6] = ACTIONS(1973), + [anon_sym_DQUOTE] = ACTIONS(1973), + [sym__str_single_quotes] = ACTIONS(1973), + [sym__str_back_ticks] = ACTIONS(1973), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1973), + [sym__entry_separator] = ACTIONS(1979), + [anon_sym_register] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1979), + }, + [460] = { + [sym_cell_path] = STATE(684), + [sym_path] = STATE(541), + [sym_comment] = STATE(460), + [aux_sym_cell_path_repeat1] = STATE(430), + [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_COMMA] = ACTIONS(1869), + [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(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_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_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_DOLLAR_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1869), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1869), + [anon_sym_register] = ACTIONS(1867), + [anon_sym_DOT2] = ACTIONS(1821), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1845), + [sym_raw_string_begin] = ACTIONS(1869), }, - [488] = { - [sym_cell_path] = STATE(719), - [sym_path] = STATE(585), - [sym_comment] = STATE(488), - [aux_sym_cell_path_repeat1] = STATE(443), - [anon_sym_export] = ACTIONS(1855), - [anon_sym_alias] = ACTIONS(1855), - [anon_sym_let] = ACTIONS(1855), - [anon_sym_let_DASHenv] = ACTIONS(1855), - [anon_sym_mut] = ACTIONS(1855), - [anon_sym_const] = ACTIONS(1855), - [aux_sym_cmd_identifier_token1] = ACTIONS(1855), - [aux_sym_cmd_identifier_token2] = ACTIONS(1857), - [aux_sym_cmd_identifier_token3] = ACTIONS(1857), - [aux_sym_cmd_identifier_token4] = ACTIONS(1857), - [aux_sym_cmd_identifier_token5] = ACTIONS(1857), - [aux_sym_cmd_identifier_token6] = ACTIONS(1857), - [aux_sym_cmd_identifier_token7] = ACTIONS(1857), - [aux_sym_cmd_identifier_token8] = ACTIONS(1855), - [aux_sym_cmd_identifier_token9] = ACTIONS(1855), - [aux_sym_cmd_identifier_token10] = ACTIONS(1857), - [aux_sym_cmd_identifier_token11] = ACTIONS(1857), - [aux_sym_cmd_identifier_token12] = ACTIONS(1855), - [aux_sym_cmd_identifier_token13] = ACTIONS(1855), - [aux_sym_cmd_identifier_token14] = ACTIONS(1855), - [aux_sym_cmd_identifier_token15] = ACTIONS(1855), - [aux_sym_cmd_identifier_token16] = ACTIONS(1857), - [aux_sym_cmd_identifier_token17] = ACTIONS(1857), - [aux_sym_cmd_identifier_token18] = ACTIONS(1857), - [aux_sym_cmd_identifier_token19] = ACTIONS(1857), - [aux_sym_cmd_identifier_token20] = ACTIONS(1857), - [aux_sym_cmd_identifier_token21] = ACTIONS(1857), - [aux_sym_cmd_identifier_token22] = ACTIONS(1857), - [aux_sym_cmd_identifier_token23] = ACTIONS(1857), - [aux_sym_cmd_identifier_token24] = ACTIONS(1857), - [aux_sym_cmd_identifier_token25] = ACTIONS(1857), - [aux_sym_cmd_identifier_token26] = ACTIONS(1857), - [aux_sym_cmd_identifier_token27] = ACTIONS(1857), - [aux_sym_cmd_identifier_token28] = ACTIONS(1857), - [aux_sym_cmd_identifier_token29] = ACTIONS(1857), - [aux_sym_cmd_identifier_token30] = ACTIONS(1857), - [aux_sym_cmd_identifier_token31] = ACTIONS(1857), - [aux_sym_cmd_identifier_token32] = ACTIONS(1857), - [aux_sym_cmd_identifier_token33] = ACTIONS(1857), - [aux_sym_cmd_identifier_token34] = ACTIONS(1855), - [aux_sym_cmd_identifier_token35] = ACTIONS(1857), - [aux_sym_cmd_identifier_token36] = ACTIONS(1857), - [aux_sym_cmd_identifier_token37] = ACTIONS(1857), - [aux_sym_cmd_identifier_token38] = ACTIONS(1855), - [aux_sym_cmd_identifier_token39] = ACTIONS(1857), - [aux_sym_cmd_identifier_token40] = ACTIONS(1857), - [anon_sym_def] = ACTIONS(1855), - [anon_sym_export_DASHenv] = ACTIONS(1855), - [anon_sym_extern] = ACTIONS(1855), - [anon_sym_module] = ACTIONS(1855), - [anon_sym_use] = ACTIONS(1855), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_COMMA] = ACTIONS(1857), - [anon_sym_DOLLAR] = ACTIONS(1855), - [anon_sym_error] = ACTIONS(1855), - [anon_sym_DASH2] = ACTIONS(1855), - [anon_sym_break] = ACTIONS(1855), - [anon_sym_continue] = ACTIONS(1855), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_in2] = ACTIONS(1855), - [anon_sym_loop] = ACTIONS(1855), - [anon_sym_make] = ACTIONS(1855), - [anon_sym_while] = ACTIONS(1855), - [anon_sym_do] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_else] = ACTIONS(1855), - [anon_sym_match] = ACTIONS(1855), - [anon_sym_RBRACE] = ACTIONS(1857), - [anon_sym_try] = ACTIONS(1855), - [anon_sym_catch] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1855), - [anon_sym_source] = ACTIONS(1855), - [anon_sym_source_DASHenv] = ACTIONS(1855), - [anon_sym_hide] = ACTIONS(1855), - [anon_sym_hide_DASHenv] = ACTIONS(1855), - [anon_sym_overlay] = ACTIONS(1855), - [anon_sym_as] = ACTIONS(1855), - [anon_sym_PLUS2] = ACTIONS(1855), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1857), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1857), - [aux_sym__val_number_decimal_token1] = ACTIONS(1855), - [aux_sym__val_number_decimal_token2] = ACTIONS(1857), - [aux_sym__val_number_decimal_token3] = ACTIONS(1857), - [aux_sym__val_number_decimal_token4] = ACTIONS(1857), - [aux_sym__val_number_token1] = ACTIONS(1857), - [aux_sym__val_number_token2] = ACTIONS(1857), - [aux_sym__val_number_token3] = ACTIONS(1857), - [aux_sym__val_number_token4] = ACTIONS(1855), - [aux_sym__val_number_token5] = ACTIONS(1855), - [aux_sym__val_number_token6] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1857), - [sym__str_single_quotes] = ACTIONS(1857), - [sym__str_back_ticks] = ACTIONS(1857), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1857), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1857), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1857), - [anon_sym_register] = ACTIONS(1855), - [anon_sym_DOT2] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1857), + [461] = { + [sym_comment] = STATE(461), + [anon_sym_export] = ACTIONS(1686), + [anon_sym_alias] = ACTIONS(1686), + [anon_sym_let] = ACTIONS(1686), + [anon_sym_let_DASHenv] = ACTIONS(1686), + [anon_sym_mut] = ACTIONS(1686), + [anon_sym_const] = ACTIONS(1686), + [aux_sym_cmd_identifier_token1] = ACTIONS(1686), + [aux_sym_cmd_identifier_token2] = ACTIONS(1688), + [aux_sym_cmd_identifier_token3] = ACTIONS(1688), + [aux_sym_cmd_identifier_token4] = ACTIONS(1688), + [aux_sym_cmd_identifier_token5] = ACTIONS(1688), + [aux_sym_cmd_identifier_token6] = ACTIONS(1688), + [aux_sym_cmd_identifier_token7] = ACTIONS(1688), + [aux_sym_cmd_identifier_token8] = ACTIONS(1686), + [aux_sym_cmd_identifier_token9] = ACTIONS(1686), + [aux_sym_cmd_identifier_token10] = ACTIONS(1688), + [aux_sym_cmd_identifier_token11] = ACTIONS(1688), + [aux_sym_cmd_identifier_token12] = ACTIONS(1686), + [aux_sym_cmd_identifier_token13] = ACTIONS(1686), + [aux_sym_cmd_identifier_token14] = ACTIONS(1686), + [aux_sym_cmd_identifier_token15] = ACTIONS(1686), + [aux_sym_cmd_identifier_token16] = ACTIONS(1688), + [aux_sym_cmd_identifier_token17] = ACTIONS(1688), + [aux_sym_cmd_identifier_token18] = ACTIONS(1688), + [aux_sym_cmd_identifier_token19] = ACTIONS(1688), + [aux_sym_cmd_identifier_token20] = ACTIONS(1688), + [aux_sym_cmd_identifier_token21] = ACTIONS(1688), + [aux_sym_cmd_identifier_token22] = ACTIONS(1688), + [aux_sym_cmd_identifier_token23] = ACTIONS(1688), + [aux_sym_cmd_identifier_token24] = ACTIONS(1688), + [aux_sym_cmd_identifier_token25] = ACTIONS(1688), + [aux_sym_cmd_identifier_token26] = ACTIONS(1688), + [aux_sym_cmd_identifier_token27] = ACTIONS(1688), + [aux_sym_cmd_identifier_token28] = ACTIONS(1688), + [aux_sym_cmd_identifier_token29] = ACTIONS(1688), + [aux_sym_cmd_identifier_token30] = ACTIONS(1688), + [aux_sym_cmd_identifier_token31] = ACTIONS(1688), + [aux_sym_cmd_identifier_token32] = ACTIONS(1688), + [aux_sym_cmd_identifier_token33] = ACTIONS(1688), + [aux_sym_cmd_identifier_token34] = ACTIONS(1686), + [aux_sym_cmd_identifier_token35] = ACTIONS(1688), + [aux_sym_cmd_identifier_token36] = ACTIONS(1688), + [aux_sym_cmd_identifier_token37] = ACTIONS(1688), + [aux_sym_cmd_identifier_token38] = ACTIONS(1686), + [aux_sym_cmd_identifier_token39] = ACTIONS(1688), + [aux_sym_cmd_identifier_token40] = ACTIONS(1688), + [anon_sym_def] = ACTIONS(1686), + [anon_sym_export_DASHenv] = ACTIONS(1686), + [anon_sym_extern] = ACTIONS(1686), + [anon_sym_module] = ACTIONS(1686), + [anon_sym_use] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_error] = ACTIONS(1686), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_break] = ACTIONS(1686), + [anon_sym_continue] = ACTIONS(1686), + [anon_sym_for] = ACTIONS(1686), + [anon_sym_in2] = ACTIONS(1686), + [anon_sym_loop] = ACTIONS(1686), + [anon_sym_make] = ACTIONS(1686), + [anon_sym_while] = ACTIONS(1686), + [anon_sym_do] = ACTIONS(1686), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_else] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_try] = ACTIONS(1686), + [anon_sym_catch] = ACTIONS(1686), + [anon_sym_return] = ACTIONS(1686), + [anon_sym_source] = ACTIONS(1686), + [anon_sym_source_DASHenv] = ACTIONS(1686), + [anon_sym_hide] = ACTIONS(1686), + [anon_sym_hide_DASHenv] = ACTIONS(1686), + [anon_sym_overlay] = ACTIONS(1686), + [anon_sym_as] = ACTIONS(1686), + [anon_sym_LPAREN2] = ACTIONS(1688), + [anon_sym_PLUS2] = ACTIONS(1686), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1688), + [aux_sym__immediate_decimal_token1] = ACTIONS(1981), + [aux_sym__immediate_decimal_token2] = ACTIONS(1983), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1688), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1688), + [aux_sym__val_number_decimal_token3] = ACTIONS(1688), + [aux_sym__val_number_decimal_token4] = ACTIONS(1688), + [aux_sym__val_number_token1] = ACTIONS(1688), + [aux_sym__val_number_token2] = ACTIONS(1688), + [aux_sym__val_number_token3] = ACTIONS(1688), + [aux_sym__val_number_token4] = ACTIONS(1686), + [aux_sym__val_number_token5] = ACTIONS(1686), + [aux_sym__val_number_token6] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [sym__str_single_quotes] = ACTIONS(1688), + [sym__str_back_ticks] = ACTIONS(1688), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1688), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1688), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1688), + [anon_sym_register] = ACTIONS(1686), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1688), }, - [489] = { - [sym_cell_path] = STATE(720), - [sym_path] = STATE(585), - [sym_comment] = STATE(489), - [aux_sym_cell_path_repeat1] = STATE(443), - [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_COMMA] = ACTIONS(1885), - [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(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_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_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_DOLLAR_SQUOTE] = ACTIONS(1885), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1885), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1885), - [anon_sym_register] = ACTIONS(1883), - [anon_sym_DOT2] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1885), + [462] = { + [sym_comment] = STATE(462), + [anon_sym_export] = ACTIONS(1701), + [anon_sym_alias] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1701), + [anon_sym_let_DASHenv] = ACTIONS(1701), + [anon_sym_mut] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [aux_sym_cmd_identifier_token1] = ACTIONS(1701), + [aux_sym_cmd_identifier_token2] = ACTIONS(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [aux_sym_cmd_identifier_token12] = ACTIONS(1701), + [aux_sym_cmd_identifier_token13] = ACTIONS(1701), + [aux_sym_cmd_identifier_token14] = ACTIONS(1701), + [aux_sym_cmd_identifier_token15] = ACTIONS(1701), + [aux_sym_cmd_identifier_token16] = ACTIONS(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [aux_sym_cmd_identifier_token37] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [anon_sym_def] = ACTIONS(1701), + [anon_sym_export_DASHenv] = ACTIONS(1701), + [anon_sym_extern] = ACTIONS(1701), + [anon_sym_module] = ACTIONS(1701), + [anon_sym_use] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_COMMA] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = ACTIONS(1701), + [anon_sym_loop] = ACTIONS(1701), + [anon_sym_make] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_do] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_else] = ACTIONS(1701), + [anon_sym_match] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_try] = ACTIONS(1701), + [anon_sym_catch] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_source] = ACTIONS(1701), + [anon_sym_source_DASHenv] = ACTIONS(1701), + [anon_sym_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), }, - [490] = { - [sym_cell_path] = STATE(722), - [sym_path] = STATE(585), - [sym_comment] = STATE(490), - [aux_sym_cell_path_repeat1] = STATE(443), - [anon_sym_export] = ACTIONS(1923), - [anon_sym_alias] = ACTIONS(1923), - [anon_sym_let] = ACTIONS(1923), - [anon_sym_let_DASHenv] = ACTIONS(1923), - [anon_sym_mut] = ACTIONS(1923), - [anon_sym_const] = ACTIONS(1923), - [aux_sym_cmd_identifier_token1] = ACTIONS(1923), - [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(1923), - [aux_sym_cmd_identifier_token9] = ACTIONS(1923), - [aux_sym_cmd_identifier_token10] = ACTIONS(1925), - [aux_sym_cmd_identifier_token11] = ACTIONS(1925), - [aux_sym_cmd_identifier_token12] = ACTIONS(1923), - [aux_sym_cmd_identifier_token13] = ACTIONS(1923), - [aux_sym_cmd_identifier_token14] = ACTIONS(1923), - [aux_sym_cmd_identifier_token15] = ACTIONS(1923), - [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(1923), - [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(1923), - [aux_sym_cmd_identifier_token39] = ACTIONS(1925), - [aux_sym_cmd_identifier_token40] = ACTIONS(1925), - [anon_sym_def] = ACTIONS(1923), - [anon_sym_export_DASHenv] = ACTIONS(1923), - [anon_sym_extern] = ACTIONS(1923), - [anon_sym_module] = ACTIONS(1923), - [anon_sym_use] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1925), - [anon_sym_COMMA] = ACTIONS(1925), - [anon_sym_DOLLAR] = ACTIONS(1923), - [anon_sym_error] = ACTIONS(1923), - [anon_sym_DASH2] = ACTIONS(1923), - [anon_sym_break] = ACTIONS(1923), - [anon_sym_continue] = ACTIONS(1923), - [anon_sym_for] = ACTIONS(1923), - [anon_sym_in2] = ACTIONS(1923), - [anon_sym_loop] = ACTIONS(1923), - [anon_sym_make] = ACTIONS(1923), - [anon_sym_while] = ACTIONS(1923), - [anon_sym_do] = ACTIONS(1923), - [anon_sym_if] = ACTIONS(1923), - [anon_sym_else] = ACTIONS(1923), - [anon_sym_match] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(1925), - [anon_sym_try] = ACTIONS(1923), - [anon_sym_catch] = ACTIONS(1923), - [anon_sym_return] = ACTIONS(1923), - [anon_sym_source] = ACTIONS(1923), - [anon_sym_source_DASHenv] = ACTIONS(1923), - [anon_sym_hide] = ACTIONS(1923), - [anon_sym_hide_DASHenv] = ACTIONS(1923), - [anon_sym_overlay] = ACTIONS(1923), - [anon_sym_as] = ACTIONS(1923), - [anon_sym_PLUS2] = ACTIONS(1923), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1925), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1925), - [aux_sym__val_number_decimal_token1] = ACTIONS(1923), - [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(1923), - [aux_sym__val_number_token5] = ACTIONS(1923), - [aux_sym__val_number_token6] = ACTIONS(1923), - [anon_sym_DQUOTE] = ACTIONS(1925), - [sym__str_single_quotes] = ACTIONS(1925), - [sym__str_back_ticks] = ACTIONS(1925), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1925), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1925), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1925), - [anon_sym_register] = ACTIONS(1923), - [anon_sym_DOT2] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1925), + [463] = { + [sym_comment] = STATE(463), + [anon_sym_export] = ACTIONS(1760), + [anon_sym_alias] = ACTIONS(1760), + [anon_sym_let] = ACTIONS(1760), + [anon_sym_let_DASHenv] = ACTIONS(1760), + [anon_sym_mut] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [aux_sym_cmd_identifier_token1] = ACTIONS(1760), + [aux_sym_cmd_identifier_token2] = ACTIONS(1762), + [aux_sym_cmd_identifier_token3] = ACTIONS(1762), + [aux_sym_cmd_identifier_token4] = ACTIONS(1762), + [aux_sym_cmd_identifier_token5] = ACTIONS(1762), + [aux_sym_cmd_identifier_token6] = ACTIONS(1762), + [aux_sym_cmd_identifier_token7] = ACTIONS(1762), + [aux_sym_cmd_identifier_token8] = ACTIONS(1760), + [aux_sym_cmd_identifier_token9] = ACTIONS(1760), + [aux_sym_cmd_identifier_token10] = ACTIONS(1762), + [aux_sym_cmd_identifier_token11] = ACTIONS(1762), + [aux_sym_cmd_identifier_token12] = ACTIONS(1760), + [aux_sym_cmd_identifier_token13] = ACTIONS(1760), + [aux_sym_cmd_identifier_token14] = ACTIONS(1760), + [aux_sym_cmd_identifier_token15] = ACTIONS(1760), + [aux_sym_cmd_identifier_token16] = ACTIONS(1762), + [aux_sym_cmd_identifier_token17] = ACTIONS(1762), + [aux_sym_cmd_identifier_token18] = ACTIONS(1762), + [aux_sym_cmd_identifier_token19] = ACTIONS(1762), + [aux_sym_cmd_identifier_token20] = ACTIONS(1762), + [aux_sym_cmd_identifier_token21] = ACTIONS(1762), + [aux_sym_cmd_identifier_token22] = ACTIONS(1762), + [aux_sym_cmd_identifier_token23] = ACTIONS(1762), + [aux_sym_cmd_identifier_token24] = ACTIONS(1762), + [aux_sym_cmd_identifier_token25] = ACTIONS(1762), + [aux_sym_cmd_identifier_token26] = ACTIONS(1762), + [aux_sym_cmd_identifier_token27] = ACTIONS(1762), + [aux_sym_cmd_identifier_token28] = ACTIONS(1762), + [aux_sym_cmd_identifier_token29] = ACTIONS(1762), + [aux_sym_cmd_identifier_token30] = ACTIONS(1762), + [aux_sym_cmd_identifier_token31] = ACTIONS(1762), + [aux_sym_cmd_identifier_token32] = ACTIONS(1762), + [aux_sym_cmd_identifier_token33] = ACTIONS(1762), + [aux_sym_cmd_identifier_token34] = ACTIONS(1760), + [aux_sym_cmd_identifier_token35] = ACTIONS(1762), + [aux_sym_cmd_identifier_token36] = ACTIONS(1762), + [aux_sym_cmd_identifier_token37] = ACTIONS(1762), + [aux_sym_cmd_identifier_token38] = ACTIONS(1760), + [aux_sym_cmd_identifier_token39] = ACTIONS(1762), + [aux_sym_cmd_identifier_token40] = ACTIONS(1762), + [anon_sym_def] = ACTIONS(1760), + [anon_sym_export_DASHenv] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym_module] = ACTIONS(1760), + [anon_sym_use] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_error] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_loop] = ACTIONS(1760), + [anon_sym_make] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_do] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_match] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_catch] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_source] = ACTIONS(1760), + [anon_sym_source_DASHenv] = ACTIONS(1760), + [anon_sym_hide] = ACTIONS(1760), + [anon_sym_hide_DASHenv] = ACTIONS(1760), + [anon_sym_overlay] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1762), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(1985), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1760), + [aux_sym__val_number_token5] = ACTIONS(1760), + [aux_sym__val_number_token6] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1762), }, - [491] = { - [sym_cell_path] = STATE(723), - [sym_path] = STATE(585), - [sym_comment] = STATE(491), - [aux_sym_cell_path_repeat1] = STATE(443), - [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_COMMA] = ACTIONS(1933), - [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(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_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_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_DOLLAR_SQUOTE] = ACTIONS(1933), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1933), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1933), - [anon_sym_register] = ACTIONS(1931), - [anon_sym_DOT2] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1933), + [464] = { + [sym_cell_path] = STATE(667), + [sym_path] = STATE(541), + [sym_comment] = STATE(464), + [aux_sym_cell_path_repeat1] = STATE(430), + [anon_sym_export] = ACTIONS(1845), + [anon_sym_alias] = ACTIONS(1845), + [anon_sym_let] = ACTIONS(1845), + [anon_sym_let_DASHenv] = ACTIONS(1845), + [anon_sym_mut] = ACTIONS(1845), + [anon_sym_const] = ACTIONS(1845), + [aux_sym_cmd_identifier_token1] = ACTIONS(1845), + [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(1845), + [aux_sym_cmd_identifier_token9] = ACTIONS(1845), + [aux_sym_cmd_identifier_token10] = ACTIONS(1847), + [aux_sym_cmd_identifier_token11] = ACTIONS(1847), + [aux_sym_cmd_identifier_token12] = ACTIONS(1845), + [aux_sym_cmd_identifier_token13] = ACTIONS(1845), + [aux_sym_cmd_identifier_token14] = ACTIONS(1845), + [aux_sym_cmd_identifier_token15] = ACTIONS(1845), + [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(1845), + [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(1845), + [aux_sym_cmd_identifier_token39] = ACTIONS(1847), + [aux_sym_cmd_identifier_token40] = ACTIONS(1847), + [anon_sym_def] = ACTIONS(1845), + [anon_sym_export_DASHenv] = ACTIONS(1845), + [anon_sym_extern] = ACTIONS(1845), + [anon_sym_module] = ACTIONS(1845), + [anon_sym_use] = ACTIONS(1845), + [anon_sym_LPAREN] = ACTIONS(1847), + [anon_sym_COMMA] = ACTIONS(1847), + [anon_sym_DOLLAR] = ACTIONS(1845), + [anon_sym_error] = ACTIONS(1845), + [anon_sym_DASH2] = ACTIONS(1845), + [anon_sym_break] = ACTIONS(1845), + [anon_sym_continue] = ACTIONS(1845), + [anon_sym_for] = ACTIONS(1845), + [anon_sym_in2] = ACTIONS(1845), + [anon_sym_loop] = ACTIONS(1845), + [anon_sym_make] = ACTIONS(1845), + [anon_sym_while] = ACTIONS(1845), + [anon_sym_do] = ACTIONS(1845), + [anon_sym_if] = ACTIONS(1845), + [anon_sym_else] = ACTIONS(1845), + [anon_sym_match] = ACTIONS(1845), + [anon_sym_RBRACE] = ACTIONS(1847), + [anon_sym_try] = ACTIONS(1845), + [anon_sym_catch] = ACTIONS(1845), + [anon_sym_return] = ACTIONS(1845), + [anon_sym_source] = ACTIONS(1845), + [anon_sym_source_DASHenv] = ACTIONS(1845), + [anon_sym_hide] = ACTIONS(1845), + [anon_sym_hide_DASHenv] = ACTIONS(1845), + [anon_sym_overlay] = ACTIONS(1845), + [anon_sym_as] = ACTIONS(1845), + [anon_sym_PLUS2] = ACTIONS(1845), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1847), + [aux_sym__val_number_decimal_token1] = ACTIONS(1845), + [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(1845), + [aux_sym__val_number_token5] = ACTIONS(1845), + [aux_sym__val_number_token6] = ACTIONS(1845), + [anon_sym_DQUOTE] = ACTIONS(1847), + [sym__str_single_quotes] = ACTIONS(1847), + [sym__str_back_ticks] = ACTIONS(1847), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1847), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1847), + [anon_sym_register] = ACTIONS(1845), + [anon_sym_DOT2] = ACTIONS(1821), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1847), }, - [492] = { - [sym_cell_path] = STATE(724), - [sym_path] = STATE(585), - [sym_comment] = STATE(492), - [aux_sym_cell_path_repeat1] = STATE(443), - [anon_sym_export] = ACTIONS(1935), - [anon_sym_alias] = ACTIONS(1935), - [anon_sym_let] = ACTIONS(1935), - [anon_sym_let_DASHenv] = ACTIONS(1935), - [anon_sym_mut] = ACTIONS(1935), - [anon_sym_const] = ACTIONS(1935), - [aux_sym_cmd_identifier_token1] = ACTIONS(1935), - [aux_sym_cmd_identifier_token2] = ACTIONS(1937), - [aux_sym_cmd_identifier_token3] = ACTIONS(1937), - [aux_sym_cmd_identifier_token4] = ACTIONS(1937), - [aux_sym_cmd_identifier_token5] = ACTIONS(1937), - [aux_sym_cmd_identifier_token6] = ACTIONS(1937), - [aux_sym_cmd_identifier_token7] = ACTIONS(1937), - [aux_sym_cmd_identifier_token8] = ACTIONS(1935), - [aux_sym_cmd_identifier_token9] = ACTIONS(1935), - [aux_sym_cmd_identifier_token10] = ACTIONS(1937), - [aux_sym_cmd_identifier_token11] = ACTIONS(1937), - [aux_sym_cmd_identifier_token12] = ACTIONS(1935), - [aux_sym_cmd_identifier_token13] = ACTIONS(1935), - [aux_sym_cmd_identifier_token14] = ACTIONS(1935), - [aux_sym_cmd_identifier_token15] = ACTIONS(1935), - [aux_sym_cmd_identifier_token16] = ACTIONS(1937), - [aux_sym_cmd_identifier_token17] = ACTIONS(1937), - [aux_sym_cmd_identifier_token18] = ACTIONS(1937), - [aux_sym_cmd_identifier_token19] = ACTIONS(1937), - [aux_sym_cmd_identifier_token20] = ACTIONS(1937), - [aux_sym_cmd_identifier_token21] = ACTIONS(1937), - [aux_sym_cmd_identifier_token22] = ACTIONS(1937), - [aux_sym_cmd_identifier_token23] = ACTIONS(1937), - [aux_sym_cmd_identifier_token24] = ACTIONS(1937), - [aux_sym_cmd_identifier_token25] = ACTIONS(1937), - [aux_sym_cmd_identifier_token26] = ACTIONS(1937), - [aux_sym_cmd_identifier_token27] = ACTIONS(1937), - [aux_sym_cmd_identifier_token28] = ACTIONS(1937), - [aux_sym_cmd_identifier_token29] = ACTIONS(1937), - [aux_sym_cmd_identifier_token30] = ACTIONS(1937), - [aux_sym_cmd_identifier_token31] = ACTIONS(1937), - [aux_sym_cmd_identifier_token32] = ACTIONS(1937), - [aux_sym_cmd_identifier_token33] = ACTIONS(1937), - [aux_sym_cmd_identifier_token34] = ACTIONS(1935), - [aux_sym_cmd_identifier_token35] = ACTIONS(1937), - [aux_sym_cmd_identifier_token36] = ACTIONS(1937), - [aux_sym_cmd_identifier_token37] = ACTIONS(1937), - [aux_sym_cmd_identifier_token38] = ACTIONS(1935), - [aux_sym_cmd_identifier_token39] = ACTIONS(1937), - [aux_sym_cmd_identifier_token40] = ACTIONS(1937), - [anon_sym_def] = ACTIONS(1935), - [anon_sym_export_DASHenv] = ACTIONS(1935), - [anon_sym_extern] = ACTIONS(1935), - [anon_sym_module] = ACTIONS(1935), - [anon_sym_use] = ACTIONS(1935), - [anon_sym_LPAREN] = ACTIONS(1937), - [anon_sym_COMMA] = ACTIONS(1937), - [anon_sym_DOLLAR] = ACTIONS(1935), - [anon_sym_error] = ACTIONS(1935), - [anon_sym_DASH2] = ACTIONS(1935), - [anon_sym_break] = ACTIONS(1935), - [anon_sym_continue] = ACTIONS(1935), - [anon_sym_for] = ACTIONS(1935), - [anon_sym_in2] = ACTIONS(1935), - [anon_sym_loop] = ACTIONS(1935), - [anon_sym_make] = ACTIONS(1935), - [anon_sym_while] = ACTIONS(1935), - [anon_sym_do] = ACTIONS(1935), - [anon_sym_if] = ACTIONS(1935), - [anon_sym_else] = ACTIONS(1935), - [anon_sym_match] = ACTIONS(1935), - [anon_sym_RBRACE] = ACTIONS(1937), - [anon_sym_try] = ACTIONS(1935), - [anon_sym_catch] = ACTIONS(1935), - [anon_sym_return] = ACTIONS(1935), - [anon_sym_source] = ACTIONS(1935), - [anon_sym_source_DASHenv] = ACTIONS(1935), - [anon_sym_hide] = ACTIONS(1935), - [anon_sym_hide_DASHenv] = ACTIONS(1935), - [anon_sym_overlay] = ACTIONS(1935), - [anon_sym_as] = ACTIONS(1935), - [anon_sym_PLUS2] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1937), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1937), - [aux_sym__val_number_decimal_token4] = ACTIONS(1937), - [aux_sym__val_number_token1] = ACTIONS(1937), - [aux_sym__val_number_token2] = ACTIONS(1937), - [aux_sym__val_number_token3] = ACTIONS(1937), - [aux_sym__val_number_token4] = ACTIONS(1935), - [aux_sym__val_number_token5] = ACTIONS(1935), - [aux_sym__val_number_token6] = ACTIONS(1935), - [anon_sym_DQUOTE] = ACTIONS(1937), - [sym__str_single_quotes] = ACTIONS(1937), - [sym__str_back_ticks] = ACTIONS(1937), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1937), - [anon_sym_register] = ACTIONS(1935), - [anon_sym_DOT2] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1937), + [465] = { + [sym_comment] = STATE(465), + [anon_sym_export] = ACTIONS(1987), + [anon_sym_alias] = ACTIONS(1987), + [anon_sym_let] = ACTIONS(1987), + [anon_sym_let_DASHenv] = ACTIONS(1987), + [anon_sym_mut] = ACTIONS(1987), + [anon_sym_const] = ACTIONS(1987), + [aux_sym_cmd_identifier_token1] = ACTIONS(1987), + [aux_sym_cmd_identifier_token2] = ACTIONS(1987), + [aux_sym_cmd_identifier_token3] = ACTIONS(1987), + [aux_sym_cmd_identifier_token4] = ACTIONS(1987), + [aux_sym_cmd_identifier_token5] = ACTIONS(1987), + [aux_sym_cmd_identifier_token6] = ACTIONS(1987), + [aux_sym_cmd_identifier_token7] = ACTIONS(1987), + [aux_sym_cmd_identifier_token8] = ACTIONS(1987), + [aux_sym_cmd_identifier_token9] = ACTIONS(1987), + [aux_sym_cmd_identifier_token10] = ACTIONS(1987), + [aux_sym_cmd_identifier_token11] = ACTIONS(1987), + [aux_sym_cmd_identifier_token12] = ACTIONS(1987), + [aux_sym_cmd_identifier_token13] = ACTIONS(1987), + [aux_sym_cmd_identifier_token14] = ACTIONS(1987), + [aux_sym_cmd_identifier_token15] = ACTIONS(1987), + [aux_sym_cmd_identifier_token16] = ACTIONS(1987), + [aux_sym_cmd_identifier_token17] = ACTIONS(1987), + [aux_sym_cmd_identifier_token18] = ACTIONS(1987), + [aux_sym_cmd_identifier_token19] = ACTIONS(1987), + [aux_sym_cmd_identifier_token20] = ACTIONS(1987), + [aux_sym_cmd_identifier_token21] = ACTIONS(1987), + [aux_sym_cmd_identifier_token22] = ACTIONS(1987), + [aux_sym_cmd_identifier_token23] = ACTIONS(1987), + [aux_sym_cmd_identifier_token24] = ACTIONS(1987), + [aux_sym_cmd_identifier_token25] = ACTIONS(1987), + [aux_sym_cmd_identifier_token26] = ACTIONS(1987), + [aux_sym_cmd_identifier_token27] = ACTIONS(1987), + [aux_sym_cmd_identifier_token28] = ACTIONS(1987), + [aux_sym_cmd_identifier_token29] = ACTIONS(1987), + [aux_sym_cmd_identifier_token30] = ACTIONS(1987), + [aux_sym_cmd_identifier_token31] = ACTIONS(1987), + [aux_sym_cmd_identifier_token32] = ACTIONS(1987), + [aux_sym_cmd_identifier_token33] = ACTIONS(1987), + [aux_sym_cmd_identifier_token34] = ACTIONS(1987), + [aux_sym_cmd_identifier_token35] = ACTIONS(1987), + [aux_sym_cmd_identifier_token36] = ACTIONS(1987), + [aux_sym_cmd_identifier_token37] = ACTIONS(1987), + [aux_sym_cmd_identifier_token38] = ACTIONS(1987), + [aux_sym_cmd_identifier_token39] = ACTIONS(1987), + [aux_sym_cmd_identifier_token40] = ACTIONS(1987), + [anon_sym_def] = ACTIONS(1987), + [anon_sym_export_DASHenv] = ACTIONS(1987), + [anon_sym_extern] = ACTIONS(1987), + [anon_sym_module] = ACTIONS(1987), + [anon_sym_use] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_COMMA] = ACTIONS(1987), + [anon_sym_DOLLAR] = ACTIONS(1987), + [anon_sym_error] = ACTIONS(1987), + [anon_sym_DASH2] = ACTIONS(1987), + [anon_sym_break] = ACTIONS(1987), + [anon_sym_continue] = ACTIONS(1987), + [anon_sym_for] = ACTIONS(1987), + [anon_sym_in2] = ACTIONS(1987), + [anon_sym_loop] = ACTIONS(1987), + [anon_sym_make] = ACTIONS(1987), + [anon_sym_while] = ACTIONS(1987), + [anon_sym_do] = ACTIONS(1987), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_else] = ACTIONS(1987), + [anon_sym_match] = ACTIONS(1987), + [anon_sym_RBRACE] = ACTIONS(1987), + [anon_sym_try] = ACTIONS(1987), + [anon_sym_catch] = ACTIONS(1987), + [anon_sym_return] = ACTIONS(1987), + [anon_sym_source] = ACTIONS(1987), + [anon_sym_source_DASHenv] = ACTIONS(1987), + [anon_sym_hide] = ACTIONS(1987), + [anon_sym_hide_DASHenv] = ACTIONS(1987), + [anon_sym_overlay] = ACTIONS(1987), + [anon_sym_as] = ACTIONS(1987), + [anon_sym_PLUS2] = ACTIONS(1987), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1987), + [anon_sym_DOT_DOT2] = ACTIONS(1987), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1989), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1987), + [aux_sym__val_number_decimal_token1] = ACTIONS(1987), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1987), + [aux_sym__val_number_decimal_token4] = ACTIONS(1987), + [aux_sym__val_number_token1] = ACTIONS(1987), + [aux_sym__val_number_token2] = ACTIONS(1987), + [aux_sym__val_number_token3] = ACTIONS(1987), + [aux_sym__val_number_token4] = ACTIONS(1987), + [aux_sym__val_number_token5] = ACTIONS(1987), + [aux_sym__val_number_token6] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(1987), + [sym__str_single_quotes] = ACTIONS(1987), + [sym__str_back_ticks] = ACTIONS(1987), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1987), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1987), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1987), + [sym__entry_separator] = ACTIONS(1989), + [anon_sym_register] = ACTIONS(1987), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1989), }, - [493] = { - [sym_comment] = STATE(493), - [anon_sym_export] = ACTIONS(1790), - [anon_sym_alias] = ACTIONS(1790), - [anon_sym_let] = ACTIONS(1790), - [anon_sym_let_DASHenv] = ACTIONS(1790), - [anon_sym_mut] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [aux_sym_cmd_identifier_token1] = ACTIONS(1790), - [aux_sym_cmd_identifier_token2] = ACTIONS(1790), - [aux_sym_cmd_identifier_token3] = ACTIONS(1790), - [aux_sym_cmd_identifier_token4] = ACTIONS(1790), - [aux_sym_cmd_identifier_token5] = ACTIONS(1790), - [aux_sym_cmd_identifier_token6] = ACTIONS(1790), - [aux_sym_cmd_identifier_token7] = ACTIONS(1790), - [aux_sym_cmd_identifier_token8] = ACTIONS(1790), - [aux_sym_cmd_identifier_token9] = ACTIONS(1790), - [aux_sym_cmd_identifier_token10] = ACTIONS(1790), - [aux_sym_cmd_identifier_token11] = ACTIONS(1790), - [aux_sym_cmd_identifier_token12] = ACTIONS(1790), - [aux_sym_cmd_identifier_token13] = ACTIONS(1790), - [aux_sym_cmd_identifier_token14] = ACTIONS(1790), - [aux_sym_cmd_identifier_token15] = ACTIONS(1790), - [aux_sym_cmd_identifier_token16] = ACTIONS(1790), - [aux_sym_cmd_identifier_token17] = ACTIONS(1790), - [aux_sym_cmd_identifier_token18] = ACTIONS(1790), - [aux_sym_cmd_identifier_token19] = ACTIONS(1790), - [aux_sym_cmd_identifier_token20] = ACTIONS(1790), - [aux_sym_cmd_identifier_token21] = ACTIONS(1790), - [aux_sym_cmd_identifier_token22] = ACTIONS(1790), - [aux_sym_cmd_identifier_token23] = ACTIONS(1790), - [aux_sym_cmd_identifier_token24] = ACTIONS(1790), - [aux_sym_cmd_identifier_token25] = ACTIONS(1790), - [aux_sym_cmd_identifier_token26] = ACTIONS(1790), - [aux_sym_cmd_identifier_token27] = ACTIONS(1790), - [aux_sym_cmd_identifier_token28] = ACTIONS(1790), - [aux_sym_cmd_identifier_token29] = ACTIONS(1790), - [aux_sym_cmd_identifier_token30] = ACTIONS(1790), - [aux_sym_cmd_identifier_token31] = ACTIONS(1790), - [aux_sym_cmd_identifier_token32] = ACTIONS(1790), - [aux_sym_cmd_identifier_token33] = ACTIONS(1790), - [aux_sym_cmd_identifier_token34] = ACTIONS(1790), - [aux_sym_cmd_identifier_token35] = ACTIONS(1790), - [aux_sym_cmd_identifier_token36] = ACTIONS(1790), - [aux_sym_cmd_identifier_token37] = ACTIONS(1790), - [aux_sym_cmd_identifier_token38] = ACTIONS(1790), - [aux_sym_cmd_identifier_token39] = ACTIONS(1790), - [aux_sym_cmd_identifier_token40] = ACTIONS(1790), - [anon_sym_def] = ACTIONS(1790), - [anon_sym_export_DASHenv] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym_module] = ACTIONS(1790), - [anon_sym_use] = ACTIONS(1790), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_COMMA] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(1790), - [anon_sym_error] = ACTIONS(1790), - [anon_sym_DASH2] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_in2] = ACTIONS(1790), - [anon_sym_loop] = ACTIONS(1790), - [anon_sym_make] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_match] = ACTIONS(1790), - [anon_sym_RBRACE] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_catch] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_source] = ACTIONS(1790), - [anon_sym_source_DASHenv] = ACTIONS(1790), - [anon_sym_hide] = ACTIONS(1790), - [anon_sym_hide_DASHenv] = ACTIONS(1790), - [anon_sym_overlay] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_PLUS2] = ACTIONS(1790), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1790), - [anon_sym_DOT_DOT2] = ACTIONS(1790), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1792), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1792), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1790), - [aux_sym__val_number_decimal_token1] = ACTIONS(1790), - [aux_sym__val_number_decimal_token2] = ACTIONS(1790), - [aux_sym__val_number_decimal_token3] = ACTIONS(1790), - [aux_sym__val_number_decimal_token4] = ACTIONS(1790), - [aux_sym__val_number_token1] = ACTIONS(1790), - [aux_sym__val_number_token2] = ACTIONS(1790), - [aux_sym__val_number_token3] = ACTIONS(1790), - [aux_sym__val_number_token4] = ACTIONS(1790), - [aux_sym__val_number_token5] = ACTIONS(1790), - [aux_sym__val_number_token6] = ACTIONS(1790), - [anon_sym_DQUOTE] = ACTIONS(1790), - [sym__str_single_quotes] = ACTIONS(1790), - [sym__str_back_ticks] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1790), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1790), - [sym__entry_separator] = ACTIONS(1792), - [anon_sym_register] = ACTIONS(1790), + [466] = { + [sym_comment] = STATE(466), + [anon_sym_export] = ACTIONS(1760), + [anon_sym_alias] = ACTIONS(1760), + [anon_sym_let] = ACTIONS(1760), + [anon_sym_let_DASHenv] = ACTIONS(1760), + [anon_sym_mut] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [aux_sym_cmd_identifier_token1] = ACTIONS(1760), + [aux_sym_cmd_identifier_token2] = ACTIONS(1760), + [aux_sym_cmd_identifier_token3] = ACTIONS(1760), + [aux_sym_cmd_identifier_token4] = ACTIONS(1760), + [aux_sym_cmd_identifier_token5] = ACTIONS(1760), + [aux_sym_cmd_identifier_token6] = ACTIONS(1760), + [aux_sym_cmd_identifier_token7] = ACTIONS(1760), + [aux_sym_cmd_identifier_token8] = ACTIONS(1760), + [aux_sym_cmd_identifier_token9] = ACTIONS(1760), + [aux_sym_cmd_identifier_token10] = ACTIONS(1760), + [aux_sym_cmd_identifier_token11] = ACTIONS(1760), + [aux_sym_cmd_identifier_token12] = ACTIONS(1760), + [aux_sym_cmd_identifier_token13] = ACTIONS(1760), + [aux_sym_cmd_identifier_token14] = ACTIONS(1760), + [aux_sym_cmd_identifier_token15] = ACTIONS(1760), + [aux_sym_cmd_identifier_token16] = ACTIONS(1760), + [aux_sym_cmd_identifier_token17] = ACTIONS(1760), + [aux_sym_cmd_identifier_token18] = ACTIONS(1760), + [aux_sym_cmd_identifier_token19] = ACTIONS(1760), + [aux_sym_cmd_identifier_token20] = ACTIONS(1760), + [aux_sym_cmd_identifier_token21] = ACTIONS(1760), + [aux_sym_cmd_identifier_token22] = ACTIONS(1760), + [aux_sym_cmd_identifier_token23] = ACTIONS(1760), + [aux_sym_cmd_identifier_token24] = ACTIONS(1760), + [aux_sym_cmd_identifier_token25] = ACTIONS(1760), + [aux_sym_cmd_identifier_token26] = ACTIONS(1760), + [aux_sym_cmd_identifier_token27] = ACTIONS(1760), + [aux_sym_cmd_identifier_token28] = ACTIONS(1760), + [aux_sym_cmd_identifier_token29] = ACTIONS(1760), + [aux_sym_cmd_identifier_token30] = ACTIONS(1760), + [aux_sym_cmd_identifier_token31] = ACTIONS(1760), + [aux_sym_cmd_identifier_token32] = ACTIONS(1760), + [aux_sym_cmd_identifier_token33] = ACTIONS(1760), + [aux_sym_cmd_identifier_token34] = ACTIONS(1760), + [aux_sym_cmd_identifier_token35] = ACTIONS(1760), + [aux_sym_cmd_identifier_token36] = ACTIONS(1760), + [aux_sym_cmd_identifier_token37] = ACTIONS(1760), + [aux_sym_cmd_identifier_token38] = ACTIONS(1760), + [aux_sym_cmd_identifier_token39] = ACTIONS(1760), + [aux_sym_cmd_identifier_token40] = ACTIONS(1760), + [anon_sym_def] = ACTIONS(1760), + [anon_sym_export_DASHenv] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym_module] = ACTIONS(1760), + [anon_sym_use] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_COMMA] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_error] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_loop] = ACTIONS(1760), + [anon_sym_make] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_do] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_match] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_catch] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_source] = ACTIONS(1760), + [anon_sym_source_DASHenv] = ACTIONS(1760), + [anon_sym_hide] = ACTIONS(1760), + [anon_sym_hide_DASHenv] = ACTIONS(1760), + [anon_sym_overlay] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1760), + [aux_sym__immediate_decimal_token2] = ACTIONS(1991), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1760), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1760), + [aux_sym__val_number_decimal_token4] = ACTIONS(1760), + [aux_sym__val_number_token1] = ACTIONS(1760), + [aux_sym__val_number_token2] = ACTIONS(1760), + [aux_sym__val_number_token3] = ACTIONS(1760), + [aux_sym__val_number_token4] = ACTIONS(1760), + [aux_sym__val_number_token5] = ACTIONS(1760), + [aux_sym__val_number_token6] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1760), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1760), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1760), + [sym__entry_separator] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1760), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1760), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(1762), }, - [494] = { - [sym_comment] = STATE(494), - [anon_sym_export] = ACTIONS(2041), - [anon_sym_alias] = ACTIONS(2041), - [anon_sym_let] = ACTIONS(2041), - [anon_sym_let_DASHenv] = ACTIONS(2041), - [anon_sym_mut] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2041), - [aux_sym_cmd_identifier_token1] = ACTIONS(2041), - [aux_sym_cmd_identifier_token2] = ACTIONS(2041), - [aux_sym_cmd_identifier_token3] = ACTIONS(2041), - [aux_sym_cmd_identifier_token4] = ACTIONS(2041), - [aux_sym_cmd_identifier_token5] = ACTIONS(2041), - [aux_sym_cmd_identifier_token6] = ACTIONS(2041), - [aux_sym_cmd_identifier_token7] = ACTIONS(2041), - [aux_sym_cmd_identifier_token8] = ACTIONS(2041), - [aux_sym_cmd_identifier_token9] = ACTIONS(2041), - [aux_sym_cmd_identifier_token10] = ACTIONS(2041), - [aux_sym_cmd_identifier_token11] = ACTIONS(2041), - [aux_sym_cmd_identifier_token12] = ACTIONS(2041), - [aux_sym_cmd_identifier_token13] = ACTIONS(2041), - [aux_sym_cmd_identifier_token14] = ACTIONS(2041), - [aux_sym_cmd_identifier_token15] = ACTIONS(2041), - [aux_sym_cmd_identifier_token16] = ACTIONS(2041), - [aux_sym_cmd_identifier_token17] = ACTIONS(2041), - [aux_sym_cmd_identifier_token18] = ACTIONS(2041), - [aux_sym_cmd_identifier_token19] = ACTIONS(2041), - [aux_sym_cmd_identifier_token20] = ACTIONS(2041), - [aux_sym_cmd_identifier_token21] = ACTIONS(2041), - [aux_sym_cmd_identifier_token22] = ACTIONS(2041), - [aux_sym_cmd_identifier_token23] = ACTIONS(2041), - [aux_sym_cmd_identifier_token24] = ACTIONS(2041), - [aux_sym_cmd_identifier_token25] = ACTIONS(2041), - [aux_sym_cmd_identifier_token26] = ACTIONS(2041), - [aux_sym_cmd_identifier_token27] = ACTIONS(2041), - [aux_sym_cmd_identifier_token28] = ACTIONS(2041), - [aux_sym_cmd_identifier_token29] = ACTIONS(2041), - [aux_sym_cmd_identifier_token30] = ACTIONS(2041), - [aux_sym_cmd_identifier_token31] = ACTIONS(2041), - [aux_sym_cmd_identifier_token32] = ACTIONS(2041), - [aux_sym_cmd_identifier_token33] = ACTIONS(2041), - [aux_sym_cmd_identifier_token34] = ACTIONS(2041), - [aux_sym_cmd_identifier_token35] = ACTIONS(2041), - [aux_sym_cmd_identifier_token36] = ACTIONS(2041), - [aux_sym_cmd_identifier_token37] = ACTIONS(2041), - [aux_sym_cmd_identifier_token38] = ACTIONS(2041), - [aux_sym_cmd_identifier_token39] = ACTIONS(2041), - [aux_sym_cmd_identifier_token40] = ACTIONS(2041), - [anon_sym_def] = ACTIONS(2041), - [anon_sym_export_DASHenv] = ACTIONS(2041), - [anon_sym_extern] = ACTIONS(2041), - [anon_sym_module] = ACTIONS(2041), - [anon_sym_use] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(2041), - [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_DOLLAR] = ACTIONS(2041), - [anon_sym_error] = ACTIONS(2041), - [anon_sym_DASH2] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_in2] = ACTIONS(2041), - [anon_sym_loop] = ACTIONS(2041), - [anon_sym_make] = ACTIONS(2041), - [anon_sym_while] = ACTIONS(2041), - [anon_sym_do] = ACTIONS(2041), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_else] = ACTIONS(2041), - [anon_sym_match] = ACTIONS(2041), - [anon_sym_RBRACE] = ACTIONS(2041), - [anon_sym_try] = ACTIONS(2041), - [anon_sym_catch] = ACTIONS(2041), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_source] = ACTIONS(2041), - [anon_sym_source_DASHenv] = ACTIONS(2041), - [anon_sym_hide] = ACTIONS(2041), - [anon_sym_hide_DASHenv] = ACTIONS(2041), - [anon_sym_overlay] = ACTIONS(2041), - [anon_sym_as] = ACTIONS(2041), - [anon_sym_LPAREN2] = ACTIONS(1780), - [anon_sym_PLUS2] = ACTIONS(2041), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2041), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2041), - [aux_sym__val_number_decimal_token1] = ACTIONS(2041), - [aux_sym__val_number_decimal_token2] = ACTIONS(2041), - [aux_sym__val_number_decimal_token3] = ACTIONS(2041), - [aux_sym__val_number_decimal_token4] = ACTIONS(2041), - [aux_sym__val_number_token1] = ACTIONS(2041), - [aux_sym__val_number_token2] = ACTIONS(2041), - [aux_sym__val_number_token3] = ACTIONS(2041), - [aux_sym__val_number_token4] = ACTIONS(2041), - [aux_sym__val_number_token5] = ACTIONS(2041), - [aux_sym__val_number_token6] = ACTIONS(2041), - [anon_sym_DQUOTE] = ACTIONS(2041), - [sym__str_single_quotes] = ACTIONS(2041), - [sym__str_back_ticks] = ACTIONS(2041), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2041), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2041), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2041), - [sym__entry_separator] = ACTIONS(2043), - [anon_sym_register] = ACTIONS(2041), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1788), + [467] = { + [sym_cell_path] = STATE(703), + [sym_path] = STATE(541), + [sym_comment] = STATE(467), + [aux_sym_cell_path_repeat1] = STATE(430), + [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_COMMA] = ACTIONS(1921), + [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(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_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_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_DOLLAR_SQUOTE] = ACTIONS(1921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1921), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1921), + [anon_sym_register] = ACTIONS(1919), + [anon_sym_DOT2] = ACTIONS(1821), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1921), + }, + [468] = { + [sym_comment] = STATE(468), + [anon_sym_export] = ACTIONS(1701), + [anon_sym_alias] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1701), + [anon_sym_let_DASHenv] = ACTIONS(1701), + [anon_sym_mut] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [aux_sym_cmd_identifier_token1] = ACTIONS(1701), + [aux_sym_cmd_identifier_token2] = ACTIONS(1701), + [aux_sym_cmd_identifier_token3] = ACTIONS(1701), + [aux_sym_cmd_identifier_token4] = ACTIONS(1701), + [aux_sym_cmd_identifier_token5] = ACTIONS(1701), + [aux_sym_cmd_identifier_token6] = ACTIONS(1701), + [aux_sym_cmd_identifier_token7] = ACTIONS(1701), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1701), + [aux_sym_cmd_identifier_token11] = ACTIONS(1701), + [aux_sym_cmd_identifier_token12] = ACTIONS(1701), + [aux_sym_cmd_identifier_token13] = ACTIONS(1701), + [aux_sym_cmd_identifier_token14] = ACTIONS(1701), + [aux_sym_cmd_identifier_token15] = ACTIONS(1701), + [aux_sym_cmd_identifier_token16] = ACTIONS(1701), + [aux_sym_cmd_identifier_token17] = ACTIONS(1701), + [aux_sym_cmd_identifier_token18] = ACTIONS(1701), + [aux_sym_cmd_identifier_token19] = ACTIONS(1701), + [aux_sym_cmd_identifier_token20] = ACTIONS(1701), + [aux_sym_cmd_identifier_token21] = ACTIONS(1701), + [aux_sym_cmd_identifier_token22] = ACTIONS(1701), + [aux_sym_cmd_identifier_token23] = ACTIONS(1701), + [aux_sym_cmd_identifier_token24] = ACTIONS(1701), + [aux_sym_cmd_identifier_token25] = ACTIONS(1701), + [aux_sym_cmd_identifier_token26] = ACTIONS(1701), + [aux_sym_cmd_identifier_token27] = ACTIONS(1701), + [aux_sym_cmd_identifier_token28] = ACTIONS(1701), + [aux_sym_cmd_identifier_token29] = ACTIONS(1701), + [aux_sym_cmd_identifier_token30] = ACTIONS(1701), + [aux_sym_cmd_identifier_token31] = ACTIONS(1701), + [aux_sym_cmd_identifier_token32] = ACTIONS(1701), + [aux_sym_cmd_identifier_token33] = ACTIONS(1701), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1701), + [aux_sym_cmd_identifier_token36] = ACTIONS(1701), + [aux_sym_cmd_identifier_token37] = ACTIONS(1701), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1701), + [aux_sym_cmd_identifier_token40] = ACTIONS(1701), + [anon_sym_def] = ACTIONS(1701), + [anon_sym_export_DASHenv] = ACTIONS(1701), + [anon_sym_extern] = ACTIONS(1701), + [anon_sym_module] = ACTIONS(1701), + [anon_sym_use] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_COMMA] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = ACTIONS(1701), + [anon_sym_loop] = ACTIONS(1701), + [anon_sym_make] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_do] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_else] = ACTIONS(1701), + [anon_sym_match] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1701), + [anon_sym_try] = ACTIONS(1701), + [anon_sym_catch] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_source] = ACTIONS(1701), + [anon_sym_source_DASHenv] = ACTIONS(1701), + [anon_sym_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1701), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1701), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1701), + [aux_sym__val_number_decimal_token3] = ACTIONS(1701), + [aux_sym__val_number_decimal_token4] = ACTIONS(1701), + [aux_sym__val_number_token1] = ACTIONS(1701), + [aux_sym__val_number_token2] = ACTIONS(1701), + [aux_sym__val_number_token3] = ACTIONS(1701), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [sym__str_single_quotes] = ACTIONS(1701), + [sym__str_back_ticks] = ACTIONS(1701), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1701), + [sym__entry_separator] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2043), + [sym_raw_string_begin] = ACTIONS(1703), }, - [495] = { - [sym_comment] = STATE(495), - [anon_sym_export] = ACTIONS(966), - [anon_sym_alias] = ACTIONS(966), - [anon_sym_let] = ACTIONS(966), - [anon_sym_let_DASHenv] = ACTIONS(966), - [anon_sym_mut] = ACTIONS(966), - [anon_sym_const] = ACTIONS(966), - [aux_sym_cmd_identifier_token1] = ACTIONS(966), - [aux_sym_cmd_identifier_token2] = ACTIONS(968), - [aux_sym_cmd_identifier_token3] = ACTIONS(968), - [aux_sym_cmd_identifier_token4] = ACTIONS(968), - [aux_sym_cmd_identifier_token5] = ACTIONS(968), - [aux_sym_cmd_identifier_token6] = ACTIONS(968), - [aux_sym_cmd_identifier_token7] = ACTIONS(968), - [aux_sym_cmd_identifier_token8] = ACTIONS(966), - [aux_sym_cmd_identifier_token9] = ACTIONS(966), - [aux_sym_cmd_identifier_token10] = ACTIONS(968), - [aux_sym_cmd_identifier_token11] = ACTIONS(968), - [aux_sym_cmd_identifier_token12] = ACTIONS(966), - [aux_sym_cmd_identifier_token13] = ACTIONS(966), - [aux_sym_cmd_identifier_token14] = ACTIONS(966), - [aux_sym_cmd_identifier_token15] = ACTIONS(966), - [aux_sym_cmd_identifier_token16] = ACTIONS(968), - [aux_sym_cmd_identifier_token17] = ACTIONS(968), - [aux_sym_cmd_identifier_token18] = ACTIONS(968), - [aux_sym_cmd_identifier_token19] = ACTIONS(968), - [aux_sym_cmd_identifier_token20] = ACTIONS(968), - [aux_sym_cmd_identifier_token21] = ACTIONS(968), - [aux_sym_cmd_identifier_token22] = ACTIONS(968), - [aux_sym_cmd_identifier_token23] = ACTIONS(968), - [aux_sym_cmd_identifier_token24] = ACTIONS(968), - [aux_sym_cmd_identifier_token25] = ACTIONS(968), - [aux_sym_cmd_identifier_token26] = ACTIONS(968), - [aux_sym_cmd_identifier_token27] = ACTIONS(968), - [aux_sym_cmd_identifier_token28] = ACTIONS(968), - [aux_sym_cmd_identifier_token29] = ACTIONS(968), - [aux_sym_cmd_identifier_token30] = ACTIONS(968), - [aux_sym_cmd_identifier_token31] = ACTIONS(968), - [aux_sym_cmd_identifier_token32] = ACTIONS(968), - [aux_sym_cmd_identifier_token33] = ACTIONS(968), - [aux_sym_cmd_identifier_token34] = ACTIONS(966), - [aux_sym_cmd_identifier_token35] = ACTIONS(968), - [aux_sym_cmd_identifier_token36] = ACTIONS(968), - [aux_sym_cmd_identifier_token37] = ACTIONS(968), - [aux_sym_cmd_identifier_token38] = ACTIONS(966), - [aux_sym_cmd_identifier_token39] = ACTIONS(968), - [aux_sym_cmd_identifier_token40] = ACTIONS(968), - [anon_sym_def] = ACTIONS(966), - [anon_sym_export_DASHenv] = ACTIONS(966), - [anon_sym_extern] = ACTIONS(966), - [anon_sym_module] = ACTIONS(966), - [anon_sym_use] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_COMMA] = ACTIONS(968), - [anon_sym_DOLLAR] = ACTIONS(966), - [anon_sym_error] = ACTIONS(966), - [anon_sym_DASH2] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_in2] = ACTIONS(966), - [anon_sym_loop] = ACTIONS(966), - [anon_sym_make] = ACTIONS(966), - [anon_sym_while] = ACTIONS(966), - [anon_sym_do] = ACTIONS(966), - [anon_sym_if] = ACTIONS(966), - [anon_sym_else] = ACTIONS(966), - [anon_sym_match] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_try] = ACTIONS(966), - [anon_sym_catch] = ACTIONS(966), - [anon_sym_return] = ACTIONS(966), - [anon_sym_source] = ACTIONS(966), - [anon_sym_source_DASHenv] = ACTIONS(966), - [anon_sym_hide] = ACTIONS(966), - [anon_sym_hide_DASHenv] = ACTIONS(966), - [anon_sym_overlay] = ACTIONS(966), - [anon_sym_as] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(968), - [aux_sym__val_number_decimal_token1] = ACTIONS(966), - [aux_sym__val_number_decimal_token2] = ACTIONS(968), - [aux_sym__val_number_decimal_token3] = ACTIONS(968), - [aux_sym__val_number_decimal_token4] = ACTIONS(968), - [aux_sym__val_number_token1] = ACTIONS(968), - [aux_sym__val_number_token2] = ACTIONS(968), - [aux_sym__val_number_token3] = ACTIONS(968), - [aux_sym__val_number_token4] = ACTIONS(966), - [aux_sym__val_number_token5] = ACTIONS(966), - [aux_sym__val_number_token6] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(968), - [sym__str_single_quotes] = ACTIONS(968), - [sym__str_back_ticks] = ACTIONS(968), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(968), - [anon_sym_register] = ACTIONS(966), - [anon_sym_COLON2] = ACTIONS(968), - [anon_sym_DOT2] = ACTIONS(966), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(968), + [469] = { + [sym_cell_path] = STATE(705), + [sym_path] = STATE(541), + [sym_comment] = STATE(469), + [aux_sym_cell_path_repeat1] = STATE(430), + [anon_sym_export] = ACTIONS(1897), + [anon_sym_alias] = ACTIONS(1897), + [anon_sym_let] = ACTIONS(1897), + [anon_sym_let_DASHenv] = ACTIONS(1897), + [anon_sym_mut] = ACTIONS(1897), + [anon_sym_const] = ACTIONS(1897), + [aux_sym_cmd_identifier_token1] = ACTIONS(1897), + [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(1897), + [aux_sym_cmd_identifier_token9] = ACTIONS(1897), + [aux_sym_cmd_identifier_token10] = ACTIONS(1899), + [aux_sym_cmd_identifier_token11] = ACTIONS(1899), + [aux_sym_cmd_identifier_token12] = ACTIONS(1897), + [aux_sym_cmd_identifier_token13] = ACTIONS(1897), + [aux_sym_cmd_identifier_token14] = ACTIONS(1897), + [aux_sym_cmd_identifier_token15] = ACTIONS(1897), + [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(1897), + [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(1897), + [aux_sym_cmd_identifier_token39] = ACTIONS(1899), + [aux_sym_cmd_identifier_token40] = ACTIONS(1899), + [anon_sym_def] = ACTIONS(1897), + [anon_sym_export_DASHenv] = ACTIONS(1897), + [anon_sym_extern] = ACTIONS(1897), + [anon_sym_module] = ACTIONS(1897), + [anon_sym_use] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_COMMA] = ACTIONS(1899), + [anon_sym_DOLLAR] = ACTIONS(1897), + [anon_sym_error] = ACTIONS(1897), + [anon_sym_DASH2] = ACTIONS(1897), + [anon_sym_break] = ACTIONS(1897), + [anon_sym_continue] = ACTIONS(1897), + [anon_sym_for] = ACTIONS(1897), + [anon_sym_in2] = ACTIONS(1897), + [anon_sym_loop] = ACTIONS(1897), + [anon_sym_make] = ACTIONS(1897), + [anon_sym_while] = ACTIONS(1897), + [anon_sym_do] = ACTIONS(1897), + [anon_sym_if] = ACTIONS(1897), + [anon_sym_else] = ACTIONS(1897), + [anon_sym_match] = ACTIONS(1897), + [anon_sym_RBRACE] = ACTIONS(1899), + [anon_sym_try] = ACTIONS(1897), + [anon_sym_catch] = ACTIONS(1897), + [anon_sym_return] = ACTIONS(1897), + [anon_sym_source] = ACTIONS(1897), + [anon_sym_source_DASHenv] = ACTIONS(1897), + [anon_sym_hide] = ACTIONS(1897), + [anon_sym_hide_DASHenv] = ACTIONS(1897), + [anon_sym_overlay] = ACTIONS(1897), + [anon_sym_as] = ACTIONS(1897), + [anon_sym_PLUS2] = ACTIONS(1897), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1899), + [aux_sym__val_number_decimal_token1] = ACTIONS(1897), + [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(1897), + [aux_sym__val_number_token5] = ACTIONS(1897), + [aux_sym__val_number_token6] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1899), + [sym__str_single_quotes] = ACTIONS(1899), + [sym__str_back_ticks] = ACTIONS(1899), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1899), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1899), + [anon_sym_register] = ACTIONS(1897), + [anon_sym_DOT2] = ACTIONS(1821), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1899), }, - [496] = { - [sym_comment] = STATE(496), - [anon_sym_export] = ACTIONS(2045), - [anon_sym_alias] = ACTIONS(2045), - [anon_sym_let] = ACTIONS(2045), - [anon_sym_let_DASHenv] = ACTIONS(2045), - [anon_sym_mut] = ACTIONS(2045), - [anon_sym_const] = ACTIONS(2045), - [aux_sym_cmd_identifier_token1] = ACTIONS(2045), - [aux_sym_cmd_identifier_token2] = ACTIONS(2045), - [aux_sym_cmd_identifier_token3] = ACTIONS(2045), - [aux_sym_cmd_identifier_token4] = ACTIONS(2045), - [aux_sym_cmd_identifier_token5] = ACTIONS(2045), - [aux_sym_cmd_identifier_token6] = ACTIONS(2045), - [aux_sym_cmd_identifier_token7] = ACTIONS(2045), - [aux_sym_cmd_identifier_token8] = ACTIONS(2045), - [aux_sym_cmd_identifier_token9] = ACTIONS(2045), - [aux_sym_cmd_identifier_token10] = ACTIONS(2045), - [aux_sym_cmd_identifier_token11] = ACTIONS(2045), - [aux_sym_cmd_identifier_token12] = ACTIONS(2045), - [aux_sym_cmd_identifier_token13] = ACTIONS(2045), - [aux_sym_cmd_identifier_token14] = ACTIONS(2045), - [aux_sym_cmd_identifier_token15] = ACTIONS(2045), - [aux_sym_cmd_identifier_token16] = ACTIONS(2045), - [aux_sym_cmd_identifier_token17] = ACTIONS(2045), - [aux_sym_cmd_identifier_token18] = ACTIONS(2045), - [aux_sym_cmd_identifier_token19] = ACTIONS(2045), - [aux_sym_cmd_identifier_token20] = ACTIONS(2045), - [aux_sym_cmd_identifier_token21] = ACTIONS(2045), - [aux_sym_cmd_identifier_token22] = ACTIONS(2045), - [aux_sym_cmd_identifier_token23] = ACTIONS(2045), - [aux_sym_cmd_identifier_token24] = ACTIONS(2045), - [aux_sym_cmd_identifier_token25] = ACTIONS(2045), - [aux_sym_cmd_identifier_token26] = ACTIONS(2045), - [aux_sym_cmd_identifier_token27] = ACTIONS(2045), - [aux_sym_cmd_identifier_token28] = ACTIONS(2045), - [aux_sym_cmd_identifier_token29] = ACTIONS(2045), - [aux_sym_cmd_identifier_token30] = ACTIONS(2045), - [aux_sym_cmd_identifier_token31] = ACTIONS(2045), - [aux_sym_cmd_identifier_token32] = ACTIONS(2045), - [aux_sym_cmd_identifier_token33] = ACTIONS(2045), - [aux_sym_cmd_identifier_token34] = ACTIONS(2045), - [aux_sym_cmd_identifier_token35] = ACTIONS(2045), - [aux_sym_cmd_identifier_token36] = ACTIONS(2045), - [aux_sym_cmd_identifier_token37] = ACTIONS(2045), - [aux_sym_cmd_identifier_token38] = ACTIONS(2045), - [aux_sym_cmd_identifier_token39] = ACTIONS(2045), - [aux_sym_cmd_identifier_token40] = ACTIONS(2045), - [anon_sym_def] = ACTIONS(2045), - [anon_sym_export_DASHenv] = ACTIONS(2045), - [anon_sym_extern] = ACTIONS(2045), - [anon_sym_module] = ACTIONS(2045), - [anon_sym_use] = ACTIONS(2045), - [anon_sym_LPAREN] = ACTIONS(2045), - [anon_sym_COMMA] = ACTIONS(2045), - [anon_sym_DOLLAR] = ACTIONS(2045), - [anon_sym_error] = ACTIONS(2045), - [anon_sym_DASH2] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_in2] = ACTIONS(2045), - [anon_sym_loop] = ACTIONS(2045), - [anon_sym_make] = ACTIONS(2045), - [anon_sym_while] = ACTIONS(2045), - [anon_sym_do] = ACTIONS(2045), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_else] = ACTIONS(2045), - [anon_sym_match] = ACTIONS(2045), - [anon_sym_RBRACE] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(2045), - [anon_sym_catch] = ACTIONS(2045), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_source] = ACTIONS(2045), - [anon_sym_source_DASHenv] = ACTIONS(2045), - [anon_sym_hide] = ACTIONS(2045), - [anon_sym_hide_DASHenv] = ACTIONS(2045), - [anon_sym_overlay] = ACTIONS(2045), - [anon_sym_as] = ACTIONS(2045), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_PLUS2] = ACTIONS(2045), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2045), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2045), - [aux_sym__val_number_decimal_token1] = ACTIONS(2045), - [aux_sym__val_number_decimal_token2] = ACTIONS(2045), - [aux_sym__val_number_decimal_token3] = ACTIONS(2045), - [aux_sym__val_number_decimal_token4] = ACTIONS(2045), - [aux_sym__val_number_token1] = ACTIONS(2045), - [aux_sym__val_number_token2] = ACTIONS(2045), - [aux_sym__val_number_token3] = ACTIONS(2045), - [aux_sym__val_number_token4] = ACTIONS(2045), - [aux_sym__val_number_token5] = ACTIONS(2045), - [aux_sym__val_number_token6] = ACTIONS(2045), - [anon_sym_DQUOTE] = ACTIONS(2045), - [sym__str_single_quotes] = ACTIONS(2045), - [sym__str_back_ticks] = ACTIONS(2045), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2045), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2045), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2045), - [sym__entry_separator] = ACTIONS(2047), - [anon_sym_register] = ACTIONS(2045), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2045), + [470] = { + [sym_comment] = STATE(470), + [anon_sym_export] = ACTIONS(1993), + [anon_sym_alias] = ACTIONS(1993), + [anon_sym_let] = ACTIONS(1993), + [anon_sym_let_DASHenv] = ACTIONS(1993), + [anon_sym_mut] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1993), + [aux_sym_cmd_identifier_token1] = ACTIONS(1993), + [aux_sym_cmd_identifier_token2] = ACTIONS(1993), + [aux_sym_cmd_identifier_token3] = ACTIONS(1993), + [aux_sym_cmd_identifier_token4] = ACTIONS(1993), + [aux_sym_cmd_identifier_token5] = ACTIONS(1993), + [aux_sym_cmd_identifier_token6] = ACTIONS(1993), + [aux_sym_cmd_identifier_token7] = ACTIONS(1993), + [aux_sym_cmd_identifier_token8] = ACTIONS(1993), + [aux_sym_cmd_identifier_token9] = ACTIONS(1993), + [aux_sym_cmd_identifier_token10] = ACTIONS(1993), + [aux_sym_cmd_identifier_token11] = ACTIONS(1993), + [aux_sym_cmd_identifier_token12] = ACTIONS(1993), + [aux_sym_cmd_identifier_token13] = ACTIONS(1993), + [aux_sym_cmd_identifier_token14] = ACTIONS(1993), + [aux_sym_cmd_identifier_token15] = ACTIONS(1993), + [aux_sym_cmd_identifier_token16] = ACTIONS(1993), + [aux_sym_cmd_identifier_token17] = ACTIONS(1993), + [aux_sym_cmd_identifier_token18] = ACTIONS(1993), + [aux_sym_cmd_identifier_token19] = ACTIONS(1993), + [aux_sym_cmd_identifier_token20] = ACTIONS(1993), + [aux_sym_cmd_identifier_token21] = ACTIONS(1993), + [aux_sym_cmd_identifier_token22] = ACTIONS(1993), + [aux_sym_cmd_identifier_token23] = ACTIONS(1993), + [aux_sym_cmd_identifier_token24] = ACTIONS(1993), + [aux_sym_cmd_identifier_token25] = ACTIONS(1993), + [aux_sym_cmd_identifier_token26] = ACTIONS(1993), + [aux_sym_cmd_identifier_token27] = ACTIONS(1993), + [aux_sym_cmd_identifier_token28] = ACTIONS(1993), + [aux_sym_cmd_identifier_token29] = ACTIONS(1993), + [aux_sym_cmd_identifier_token30] = ACTIONS(1993), + [aux_sym_cmd_identifier_token31] = ACTIONS(1993), + [aux_sym_cmd_identifier_token32] = ACTIONS(1993), + [aux_sym_cmd_identifier_token33] = ACTIONS(1993), + [aux_sym_cmd_identifier_token34] = ACTIONS(1993), + [aux_sym_cmd_identifier_token35] = ACTIONS(1993), + [aux_sym_cmd_identifier_token36] = ACTIONS(1993), + [aux_sym_cmd_identifier_token37] = ACTIONS(1993), + [aux_sym_cmd_identifier_token38] = ACTIONS(1993), + [aux_sym_cmd_identifier_token39] = ACTIONS(1993), + [aux_sym_cmd_identifier_token40] = ACTIONS(1993), + [anon_sym_def] = ACTIONS(1993), + [anon_sym_export_DASHenv] = ACTIONS(1993), + [anon_sym_extern] = ACTIONS(1993), + [anon_sym_module] = ACTIONS(1993), + [anon_sym_use] = ACTIONS(1993), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_COMMA] = ACTIONS(1993), + [anon_sym_DOLLAR] = ACTIONS(1993), + [anon_sym_error] = ACTIONS(1993), + [anon_sym_DASH2] = ACTIONS(1993), + [anon_sym_break] = ACTIONS(1993), + [anon_sym_continue] = ACTIONS(1993), + [anon_sym_for] = ACTIONS(1993), + [anon_sym_in2] = ACTIONS(1993), + [anon_sym_loop] = ACTIONS(1993), + [anon_sym_make] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1993), + [anon_sym_do] = ACTIONS(1993), + [anon_sym_if] = ACTIONS(1993), + [anon_sym_else] = ACTIONS(1993), + [anon_sym_match] = ACTIONS(1993), + [anon_sym_RBRACE] = ACTIONS(1993), + [anon_sym_try] = ACTIONS(1993), + [anon_sym_catch] = ACTIONS(1993), + [anon_sym_return] = ACTIONS(1993), + [anon_sym_source] = ACTIONS(1993), + [anon_sym_source_DASHenv] = ACTIONS(1993), + [anon_sym_hide] = ACTIONS(1993), + [anon_sym_hide_DASHenv] = ACTIONS(1993), + [anon_sym_overlay] = ACTIONS(1993), + [anon_sym_as] = ACTIONS(1993), + [anon_sym_PLUS2] = ACTIONS(1993), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1993), + [anon_sym_DOT_DOT2] = ACTIONS(1993), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1995), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1995), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1993), + [aux_sym__val_number_decimal_token1] = ACTIONS(1993), + [aux_sym__val_number_decimal_token2] = ACTIONS(1993), + [aux_sym__val_number_decimal_token3] = ACTIONS(1993), + [aux_sym__val_number_decimal_token4] = ACTIONS(1993), + [aux_sym__val_number_token1] = ACTIONS(1993), + [aux_sym__val_number_token2] = ACTIONS(1993), + [aux_sym__val_number_token3] = ACTIONS(1993), + [aux_sym__val_number_token4] = ACTIONS(1993), + [aux_sym__val_number_token5] = ACTIONS(1993), + [aux_sym__val_number_token6] = ACTIONS(1993), + [anon_sym_DQUOTE] = ACTIONS(1993), + [sym__str_single_quotes] = ACTIONS(1993), + [sym__str_back_ticks] = ACTIONS(1993), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1993), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1993), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1993), + [sym__entry_separator] = ACTIONS(1995), + [anon_sym_register] = ACTIONS(1993), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2047), + [sym_raw_string_begin] = ACTIONS(1995), }, - [497] = { - [sym_comment] = STATE(497), - [anon_sym_export] = ACTIONS(1778), - [anon_sym_alias] = ACTIONS(1778), - [anon_sym_let] = ACTIONS(1778), - [anon_sym_let_DASHenv] = ACTIONS(1778), - [anon_sym_mut] = ACTIONS(1778), - [anon_sym_const] = ACTIONS(1778), - [aux_sym_cmd_identifier_token1] = ACTIONS(1778), - [aux_sym_cmd_identifier_token2] = ACTIONS(1778), - [aux_sym_cmd_identifier_token3] = ACTIONS(1778), - [aux_sym_cmd_identifier_token4] = ACTIONS(1778), - [aux_sym_cmd_identifier_token5] = ACTIONS(1778), - [aux_sym_cmd_identifier_token6] = ACTIONS(1778), - [aux_sym_cmd_identifier_token7] = ACTIONS(1778), - [aux_sym_cmd_identifier_token8] = ACTIONS(1778), - [aux_sym_cmd_identifier_token9] = ACTIONS(1778), - [aux_sym_cmd_identifier_token10] = ACTIONS(1778), - [aux_sym_cmd_identifier_token11] = ACTIONS(1778), - [aux_sym_cmd_identifier_token12] = ACTIONS(1778), - [aux_sym_cmd_identifier_token13] = ACTIONS(1778), - [aux_sym_cmd_identifier_token14] = ACTIONS(1778), - [aux_sym_cmd_identifier_token15] = ACTIONS(1778), - [aux_sym_cmd_identifier_token16] = ACTIONS(1778), - [aux_sym_cmd_identifier_token17] = ACTIONS(1778), - [aux_sym_cmd_identifier_token18] = ACTIONS(1778), - [aux_sym_cmd_identifier_token19] = ACTIONS(1778), - [aux_sym_cmd_identifier_token20] = ACTIONS(1778), - [aux_sym_cmd_identifier_token21] = ACTIONS(1778), - [aux_sym_cmd_identifier_token22] = ACTIONS(1778), - [aux_sym_cmd_identifier_token23] = ACTIONS(1778), - [aux_sym_cmd_identifier_token24] = ACTIONS(1778), - [aux_sym_cmd_identifier_token25] = ACTIONS(1778), - [aux_sym_cmd_identifier_token26] = ACTIONS(1778), - [aux_sym_cmd_identifier_token27] = ACTIONS(1778), - [aux_sym_cmd_identifier_token28] = ACTIONS(1778), - [aux_sym_cmd_identifier_token29] = ACTIONS(1778), - [aux_sym_cmd_identifier_token30] = ACTIONS(1778), - [aux_sym_cmd_identifier_token31] = ACTIONS(1778), - [aux_sym_cmd_identifier_token32] = ACTIONS(1778), - [aux_sym_cmd_identifier_token33] = ACTIONS(1778), - [aux_sym_cmd_identifier_token34] = ACTIONS(1778), - [aux_sym_cmd_identifier_token35] = ACTIONS(1778), - [aux_sym_cmd_identifier_token36] = ACTIONS(1778), - [aux_sym_cmd_identifier_token37] = ACTIONS(1778), - [aux_sym_cmd_identifier_token38] = ACTIONS(1778), - [aux_sym_cmd_identifier_token39] = ACTIONS(1778), - [aux_sym_cmd_identifier_token40] = ACTIONS(1778), - [anon_sym_def] = ACTIONS(1778), - [anon_sym_export_DASHenv] = ACTIONS(1778), - [anon_sym_extern] = ACTIONS(1778), - [anon_sym_module] = ACTIONS(1778), - [anon_sym_use] = ACTIONS(1778), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_COMMA] = ACTIONS(1778), - [anon_sym_DOLLAR] = ACTIONS(1778), - [anon_sym_error] = ACTIONS(1778), - [anon_sym_DASH2] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1778), - [anon_sym_in2] = ACTIONS(1778), - [anon_sym_loop] = ACTIONS(1778), - [anon_sym_make] = ACTIONS(1778), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_do] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_match] = ACTIONS(1778), - [anon_sym_RBRACE] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_catch] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_source] = ACTIONS(1778), - [anon_sym_source_DASHenv] = ACTIONS(1778), - [anon_sym_hide] = ACTIONS(1778), - [anon_sym_hide_DASHenv] = ACTIONS(1778), - [anon_sym_overlay] = ACTIONS(1778), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_LPAREN2] = ACTIONS(1780), - [anon_sym_PLUS2] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1778), - [aux_sym__val_number_decimal_token1] = ACTIONS(1778), - [aux_sym__val_number_decimal_token2] = ACTIONS(1778), - [aux_sym__val_number_decimal_token3] = ACTIONS(1778), - [aux_sym__val_number_decimal_token4] = ACTIONS(1778), - [aux_sym__val_number_token1] = ACTIONS(1778), - [aux_sym__val_number_token2] = ACTIONS(1778), - [aux_sym__val_number_token3] = ACTIONS(1778), - [aux_sym__val_number_token4] = ACTIONS(1778), - [aux_sym__val_number_token5] = ACTIONS(1778), - [aux_sym__val_number_token6] = ACTIONS(1778), - [anon_sym_DQUOTE] = ACTIONS(1778), - [sym__str_single_quotes] = ACTIONS(1778), - [sym__str_back_ticks] = ACTIONS(1778), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1778), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1778), - [sym__entry_separator] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1778), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1788), + [471] = { + [sym_comment] = STATE(471), + [anon_sym_export] = ACTIONS(1686), + [anon_sym_alias] = ACTIONS(1686), + [anon_sym_let] = ACTIONS(1686), + [anon_sym_let_DASHenv] = ACTIONS(1686), + [anon_sym_mut] = ACTIONS(1686), + [anon_sym_const] = ACTIONS(1686), + [aux_sym_cmd_identifier_token1] = ACTIONS(1686), + [aux_sym_cmd_identifier_token2] = ACTIONS(1686), + [aux_sym_cmd_identifier_token3] = ACTIONS(1686), + [aux_sym_cmd_identifier_token4] = ACTIONS(1686), + [aux_sym_cmd_identifier_token5] = ACTIONS(1686), + [aux_sym_cmd_identifier_token6] = ACTIONS(1686), + [aux_sym_cmd_identifier_token7] = ACTIONS(1686), + [aux_sym_cmd_identifier_token8] = ACTIONS(1686), + [aux_sym_cmd_identifier_token9] = ACTIONS(1686), + [aux_sym_cmd_identifier_token10] = ACTIONS(1686), + [aux_sym_cmd_identifier_token11] = ACTIONS(1686), + [aux_sym_cmd_identifier_token12] = ACTIONS(1686), + [aux_sym_cmd_identifier_token13] = ACTIONS(1686), + [aux_sym_cmd_identifier_token14] = ACTIONS(1686), + [aux_sym_cmd_identifier_token15] = ACTIONS(1686), + [aux_sym_cmd_identifier_token16] = ACTIONS(1686), + [aux_sym_cmd_identifier_token17] = ACTIONS(1686), + [aux_sym_cmd_identifier_token18] = ACTIONS(1686), + [aux_sym_cmd_identifier_token19] = ACTIONS(1686), + [aux_sym_cmd_identifier_token20] = ACTIONS(1686), + [aux_sym_cmd_identifier_token21] = ACTIONS(1686), + [aux_sym_cmd_identifier_token22] = ACTIONS(1686), + [aux_sym_cmd_identifier_token23] = ACTIONS(1686), + [aux_sym_cmd_identifier_token24] = ACTIONS(1686), + [aux_sym_cmd_identifier_token25] = ACTIONS(1686), + [aux_sym_cmd_identifier_token26] = ACTIONS(1686), + [aux_sym_cmd_identifier_token27] = ACTIONS(1686), + [aux_sym_cmd_identifier_token28] = ACTIONS(1686), + [aux_sym_cmd_identifier_token29] = ACTIONS(1686), + [aux_sym_cmd_identifier_token30] = ACTIONS(1686), + [aux_sym_cmd_identifier_token31] = ACTIONS(1686), + [aux_sym_cmd_identifier_token32] = ACTIONS(1686), + [aux_sym_cmd_identifier_token33] = ACTIONS(1686), + [aux_sym_cmd_identifier_token34] = ACTIONS(1686), + [aux_sym_cmd_identifier_token35] = ACTIONS(1686), + [aux_sym_cmd_identifier_token36] = ACTIONS(1686), + [aux_sym_cmd_identifier_token37] = ACTIONS(1686), + [aux_sym_cmd_identifier_token38] = ACTIONS(1686), + [aux_sym_cmd_identifier_token39] = ACTIONS(1686), + [aux_sym_cmd_identifier_token40] = ACTIONS(1686), + [anon_sym_def] = ACTIONS(1686), + [anon_sym_export_DASHenv] = ACTIONS(1686), + [anon_sym_extern] = ACTIONS(1686), + [anon_sym_module] = ACTIONS(1686), + [anon_sym_use] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_error] = ACTIONS(1686), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_break] = ACTIONS(1686), + [anon_sym_continue] = ACTIONS(1686), + [anon_sym_for] = ACTIONS(1686), + [anon_sym_in2] = ACTIONS(1686), + [anon_sym_loop] = ACTIONS(1686), + [anon_sym_make] = ACTIONS(1686), + [anon_sym_while] = ACTIONS(1686), + [anon_sym_do] = ACTIONS(1686), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_else] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1686), + [anon_sym_try] = ACTIONS(1686), + [anon_sym_catch] = ACTIONS(1686), + [anon_sym_return] = ACTIONS(1686), + [anon_sym_source] = ACTIONS(1686), + [anon_sym_source_DASHenv] = ACTIONS(1686), + [anon_sym_hide] = ACTIONS(1686), + [anon_sym_hide_DASHenv] = ACTIONS(1686), + [anon_sym_overlay] = ACTIONS(1686), + [anon_sym_as] = ACTIONS(1686), + [anon_sym_PLUS2] = ACTIONS(1686), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1686), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1686), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1686), + [aux_sym__val_number_decimal_token3] = ACTIONS(1686), + [aux_sym__val_number_decimal_token4] = ACTIONS(1686), + [aux_sym__val_number_token1] = ACTIONS(1686), + [aux_sym__val_number_token2] = ACTIONS(1686), + [aux_sym__val_number_token3] = ACTIONS(1686), + [aux_sym__val_number_token4] = ACTIONS(1686), + [aux_sym__val_number_token5] = ACTIONS(1686), + [aux_sym__val_number_token6] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1686), + [sym__str_single_quotes] = ACTIONS(1686), + [sym__str_back_ticks] = ACTIONS(1686), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1686), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1686), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1686), + [sym__entry_separator] = ACTIONS(1688), + [anon_sym_register] = ACTIONS(1686), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1786), + [sym_raw_string_begin] = ACTIONS(1688), }, - [498] = { - [sym__expr_parenthesized_immediate] = STATE(7528), - [sym_comment] = STATE(498), - [anon_sym_export] = ACTIONS(1985), - [anon_sym_alias] = ACTIONS(1985), - [anon_sym_let] = ACTIONS(1985), - [anon_sym_let_DASHenv] = ACTIONS(1985), - [anon_sym_mut] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1985), - [aux_sym_cmd_identifier_token1] = ACTIONS(1985), - [aux_sym_cmd_identifier_token2] = ACTIONS(1985), - [aux_sym_cmd_identifier_token3] = ACTIONS(1985), - [aux_sym_cmd_identifier_token4] = ACTIONS(1985), - [aux_sym_cmd_identifier_token5] = ACTIONS(1985), - [aux_sym_cmd_identifier_token6] = ACTIONS(1985), - [aux_sym_cmd_identifier_token7] = ACTIONS(1985), - [aux_sym_cmd_identifier_token8] = ACTIONS(1985), - [aux_sym_cmd_identifier_token9] = ACTIONS(1985), - [aux_sym_cmd_identifier_token10] = ACTIONS(1985), - [aux_sym_cmd_identifier_token11] = ACTIONS(1985), - [aux_sym_cmd_identifier_token12] = ACTIONS(1985), - [aux_sym_cmd_identifier_token13] = ACTIONS(1985), - [aux_sym_cmd_identifier_token14] = ACTIONS(1985), - [aux_sym_cmd_identifier_token15] = ACTIONS(1985), - [aux_sym_cmd_identifier_token16] = ACTIONS(1985), - [aux_sym_cmd_identifier_token17] = ACTIONS(1985), - [aux_sym_cmd_identifier_token18] = ACTIONS(1985), - [aux_sym_cmd_identifier_token19] = ACTIONS(1985), - [aux_sym_cmd_identifier_token20] = ACTIONS(1985), - [aux_sym_cmd_identifier_token21] = ACTIONS(1985), - [aux_sym_cmd_identifier_token22] = ACTIONS(1985), - [aux_sym_cmd_identifier_token23] = ACTIONS(1985), - [aux_sym_cmd_identifier_token24] = ACTIONS(1985), - [aux_sym_cmd_identifier_token25] = ACTIONS(1985), - [aux_sym_cmd_identifier_token26] = ACTIONS(1985), - [aux_sym_cmd_identifier_token27] = ACTIONS(1985), - [aux_sym_cmd_identifier_token28] = ACTIONS(1985), - [aux_sym_cmd_identifier_token29] = ACTIONS(1985), - [aux_sym_cmd_identifier_token30] = ACTIONS(1985), - [aux_sym_cmd_identifier_token31] = ACTIONS(1985), - [aux_sym_cmd_identifier_token32] = ACTIONS(1985), - [aux_sym_cmd_identifier_token33] = ACTIONS(1985), - [aux_sym_cmd_identifier_token34] = ACTIONS(1985), - [aux_sym_cmd_identifier_token35] = ACTIONS(1985), - [aux_sym_cmd_identifier_token36] = ACTIONS(1985), - [aux_sym_cmd_identifier_token37] = ACTIONS(1985), - [aux_sym_cmd_identifier_token38] = ACTIONS(1985), - [aux_sym_cmd_identifier_token39] = ACTIONS(1985), - [aux_sym_cmd_identifier_token40] = ACTIONS(1985), - [anon_sym_def] = ACTIONS(1985), - [anon_sym_export_DASHenv] = ACTIONS(1985), - [anon_sym_extern] = ACTIONS(1985), - [anon_sym_module] = ACTIONS(1985), - [anon_sym_use] = ACTIONS(1985), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_COMMA] = ACTIONS(1985), - [anon_sym_DOLLAR] = ACTIONS(1985), - [anon_sym_error] = ACTIONS(1985), - [anon_sym_DASH2] = ACTIONS(1985), - [anon_sym_break] = ACTIONS(1985), - [anon_sym_continue] = ACTIONS(1985), - [anon_sym_for] = ACTIONS(1985), - [anon_sym_in2] = ACTIONS(1985), - [anon_sym_loop] = ACTIONS(1985), - [anon_sym_make] = ACTIONS(1985), - [anon_sym_while] = ACTIONS(1985), - [anon_sym_do] = ACTIONS(1985), - [anon_sym_if] = ACTIONS(1985), - [anon_sym_else] = ACTIONS(1985), - [anon_sym_match] = ACTIONS(1985), - [anon_sym_RBRACE] = ACTIONS(1985), - [anon_sym_try] = ACTIONS(1985), - [anon_sym_catch] = ACTIONS(1985), - [anon_sym_return] = ACTIONS(1985), - [anon_sym_source] = ACTIONS(1985), - [anon_sym_source_DASHenv] = ACTIONS(1985), - [anon_sym_hide] = ACTIONS(1985), - [anon_sym_hide_DASHenv] = ACTIONS(1985), - [anon_sym_overlay] = ACTIONS(1985), - [anon_sym_as] = ACTIONS(1985), - [anon_sym_LPAREN2] = ACTIONS(1581), - [anon_sym_PLUS2] = ACTIONS(1985), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1985), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1985), - [aux_sym__val_number_decimal_token1] = ACTIONS(1985), - [aux_sym__val_number_decimal_token2] = ACTIONS(1985), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), - [aux_sym__val_number_token1] = ACTIONS(1985), - [aux_sym__val_number_token2] = ACTIONS(1985), - [aux_sym__val_number_token3] = ACTIONS(1985), - [aux_sym__val_number_token4] = ACTIONS(1985), - [aux_sym__val_number_token5] = ACTIONS(1985), - [aux_sym__val_number_token6] = ACTIONS(1985), - [anon_sym_DQUOTE] = ACTIONS(1985), - [sym__str_single_quotes] = ACTIONS(1985), - [sym__str_back_ticks] = ACTIONS(1985), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1985), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1985), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1985), - [sym__entry_separator] = ACTIONS(1987), - [anon_sym_register] = ACTIONS(1985), + [472] = { + [sym_comment] = STATE(472), + [anon_sym_export] = ACTIONS(1997), + [anon_sym_alias] = ACTIONS(1997), + [anon_sym_let] = ACTIONS(1997), + [anon_sym_let_DASHenv] = ACTIONS(1997), + [anon_sym_mut] = ACTIONS(1997), + [anon_sym_const] = ACTIONS(1997), + [aux_sym_cmd_identifier_token1] = ACTIONS(1997), + [aux_sym_cmd_identifier_token2] = ACTIONS(1997), + [aux_sym_cmd_identifier_token3] = ACTIONS(1997), + [aux_sym_cmd_identifier_token4] = ACTIONS(1997), + [aux_sym_cmd_identifier_token5] = ACTIONS(1997), + [aux_sym_cmd_identifier_token6] = ACTIONS(1997), + [aux_sym_cmd_identifier_token7] = ACTIONS(1997), + [aux_sym_cmd_identifier_token8] = ACTIONS(1997), + [aux_sym_cmd_identifier_token9] = ACTIONS(1997), + [aux_sym_cmd_identifier_token10] = ACTIONS(1997), + [aux_sym_cmd_identifier_token11] = ACTIONS(1997), + [aux_sym_cmd_identifier_token12] = ACTIONS(1997), + [aux_sym_cmd_identifier_token13] = ACTIONS(1997), + [aux_sym_cmd_identifier_token14] = ACTIONS(1997), + [aux_sym_cmd_identifier_token15] = ACTIONS(1997), + [aux_sym_cmd_identifier_token16] = ACTIONS(1997), + [aux_sym_cmd_identifier_token17] = ACTIONS(1997), + [aux_sym_cmd_identifier_token18] = ACTIONS(1997), + [aux_sym_cmd_identifier_token19] = ACTIONS(1997), + [aux_sym_cmd_identifier_token20] = ACTIONS(1997), + [aux_sym_cmd_identifier_token21] = ACTIONS(1997), + [aux_sym_cmd_identifier_token22] = ACTIONS(1997), + [aux_sym_cmd_identifier_token23] = ACTIONS(1997), + [aux_sym_cmd_identifier_token24] = ACTIONS(1997), + [aux_sym_cmd_identifier_token25] = ACTIONS(1997), + [aux_sym_cmd_identifier_token26] = ACTIONS(1997), + [aux_sym_cmd_identifier_token27] = ACTIONS(1997), + [aux_sym_cmd_identifier_token28] = ACTIONS(1997), + [aux_sym_cmd_identifier_token29] = ACTIONS(1997), + [aux_sym_cmd_identifier_token30] = ACTIONS(1997), + [aux_sym_cmd_identifier_token31] = ACTIONS(1997), + [aux_sym_cmd_identifier_token32] = ACTIONS(1997), + [aux_sym_cmd_identifier_token33] = ACTIONS(1997), + [aux_sym_cmd_identifier_token34] = ACTIONS(1997), + [aux_sym_cmd_identifier_token35] = ACTIONS(1997), + [aux_sym_cmd_identifier_token36] = ACTIONS(1997), + [aux_sym_cmd_identifier_token37] = ACTIONS(1997), + [aux_sym_cmd_identifier_token38] = ACTIONS(1997), + [aux_sym_cmd_identifier_token39] = ACTIONS(1997), + [aux_sym_cmd_identifier_token40] = ACTIONS(1997), + [anon_sym_def] = ACTIONS(1997), + [anon_sym_export_DASHenv] = ACTIONS(1997), + [anon_sym_extern] = ACTIONS(1997), + [anon_sym_module] = ACTIONS(1997), + [anon_sym_use] = ACTIONS(1997), + [anon_sym_LPAREN] = ACTIONS(1997), + [anon_sym_COMMA] = ACTIONS(1997), + [anon_sym_DOLLAR] = ACTIONS(1997), + [anon_sym_error] = ACTIONS(1997), + [anon_sym_DASH2] = ACTIONS(1997), + [anon_sym_break] = ACTIONS(1997), + [anon_sym_continue] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1997), + [anon_sym_in2] = ACTIONS(1997), + [anon_sym_loop] = ACTIONS(1997), + [anon_sym_make] = ACTIONS(1997), + [anon_sym_while] = ACTIONS(1997), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_if] = ACTIONS(1997), + [anon_sym_else] = ACTIONS(1997), + [anon_sym_match] = ACTIONS(1997), + [anon_sym_RBRACE] = ACTIONS(1997), + [anon_sym_try] = ACTIONS(1997), + [anon_sym_catch] = ACTIONS(1997), + [anon_sym_return] = ACTIONS(1997), + [anon_sym_source] = ACTIONS(1997), + [anon_sym_source_DASHenv] = ACTIONS(1997), + [anon_sym_hide] = ACTIONS(1997), + [anon_sym_hide_DASHenv] = ACTIONS(1997), + [anon_sym_overlay] = ACTIONS(1997), + [anon_sym_as] = ACTIONS(1997), + [anon_sym_PLUS2] = ACTIONS(1997), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1997), + [anon_sym_DOT_DOT2] = ACTIONS(1936), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1938), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1938), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1997), + [aux_sym__val_number_decimal_token1] = ACTIONS(1997), + [aux_sym__val_number_decimal_token2] = ACTIONS(1997), + [aux_sym__val_number_decimal_token3] = ACTIONS(1997), + [aux_sym__val_number_decimal_token4] = ACTIONS(1997), + [aux_sym__val_number_token1] = ACTIONS(1997), + [aux_sym__val_number_token2] = ACTIONS(1997), + [aux_sym__val_number_token3] = ACTIONS(1997), + [aux_sym__val_number_token4] = ACTIONS(1997), + [aux_sym__val_number_token5] = ACTIONS(1997), + [aux_sym__val_number_token6] = ACTIONS(1997), + [anon_sym_DQUOTE] = ACTIONS(1997), + [sym__str_single_quotes] = ACTIONS(1997), + [sym__str_back_ticks] = ACTIONS(1997), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1997), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1997), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1997), + [sym__entry_separator] = ACTIONS(1999), + [anon_sym_register] = ACTIONS(1997), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1987), + [sym_raw_string_begin] = ACTIONS(1999), }, - [499] = { - [sym_comment] = STATE(499), - [anon_sym_export] = ACTIONS(958), - [anon_sym_alias] = ACTIONS(958), - [anon_sym_let] = ACTIONS(958), - [anon_sym_let_DASHenv] = ACTIONS(958), - [anon_sym_mut] = ACTIONS(958), - [anon_sym_const] = ACTIONS(958), - [aux_sym_cmd_identifier_token1] = ACTIONS(958), - [aux_sym_cmd_identifier_token2] = ACTIONS(958), - [aux_sym_cmd_identifier_token3] = ACTIONS(958), - [aux_sym_cmd_identifier_token4] = ACTIONS(958), - [aux_sym_cmd_identifier_token5] = ACTIONS(958), - [aux_sym_cmd_identifier_token6] = ACTIONS(958), - [aux_sym_cmd_identifier_token7] = ACTIONS(958), - [aux_sym_cmd_identifier_token8] = ACTIONS(958), - [aux_sym_cmd_identifier_token9] = ACTIONS(958), - [aux_sym_cmd_identifier_token10] = ACTIONS(958), - [aux_sym_cmd_identifier_token11] = ACTIONS(958), - [aux_sym_cmd_identifier_token12] = ACTIONS(958), - [aux_sym_cmd_identifier_token13] = ACTIONS(958), - [aux_sym_cmd_identifier_token14] = ACTIONS(958), - [aux_sym_cmd_identifier_token15] = ACTIONS(958), - [aux_sym_cmd_identifier_token16] = ACTIONS(958), - [aux_sym_cmd_identifier_token17] = ACTIONS(958), - [aux_sym_cmd_identifier_token18] = ACTIONS(958), - [aux_sym_cmd_identifier_token19] = ACTIONS(958), - [aux_sym_cmd_identifier_token20] = ACTIONS(958), - [aux_sym_cmd_identifier_token21] = ACTIONS(958), - [aux_sym_cmd_identifier_token22] = ACTIONS(958), - [aux_sym_cmd_identifier_token23] = ACTIONS(958), - [aux_sym_cmd_identifier_token24] = ACTIONS(958), - [aux_sym_cmd_identifier_token25] = ACTIONS(958), - [aux_sym_cmd_identifier_token26] = ACTIONS(958), - [aux_sym_cmd_identifier_token27] = ACTIONS(958), - [aux_sym_cmd_identifier_token28] = ACTIONS(958), - [aux_sym_cmd_identifier_token29] = ACTIONS(958), - [aux_sym_cmd_identifier_token30] = ACTIONS(958), - [aux_sym_cmd_identifier_token31] = ACTIONS(958), - [aux_sym_cmd_identifier_token32] = ACTIONS(958), - [aux_sym_cmd_identifier_token33] = ACTIONS(958), - [aux_sym_cmd_identifier_token34] = ACTIONS(958), - [aux_sym_cmd_identifier_token35] = ACTIONS(958), - [aux_sym_cmd_identifier_token36] = ACTIONS(958), - [aux_sym_cmd_identifier_token37] = ACTIONS(958), - [aux_sym_cmd_identifier_token38] = ACTIONS(958), - [aux_sym_cmd_identifier_token39] = ACTIONS(958), - [aux_sym_cmd_identifier_token40] = ACTIONS(958), - [anon_sym_def] = ACTIONS(958), - [anon_sym_export_DASHenv] = ACTIONS(958), - [anon_sym_extern] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_use] = ACTIONS(958), - [anon_sym_LPAREN] = ACTIONS(958), - [anon_sym_COMMA] = ACTIONS(958), - [anon_sym_DOLLAR] = ACTIONS(958), - [anon_sym_error] = ACTIONS(958), - [anon_sym_DASH2] = ACTIONS(958), - [anon_sym_break] = ACTIONS(958), - [anon_sym_continue] = ACTIONS(958), - [anon_sym_for] = ACTIONS(958), - [anon_sym_in2] = ACTIONS(958), - [anon_sym_loop] = ACTIONS(958), - [anon_sym_make] = ACTIONS(958), - [anon_sym_while] = ACTIONS(958), - [anon_sym_do] = ACTIONS(958), - [anon_sym_if] = ACTIONS(958), - [anon_sym_else] = ACTIONS(958), - [anon_sym_match] = ACTIONS(958), - [anon_sym_RBRACE] = ACTIONS(958), - [anon_sym_try] = ACTIONS(958), - [anon_sym_catch] = ACTIONS(958), - [anon_sym_return] = ACTIONS(958), - [anon_sym_source] = ACTIONS(958), - [anon_sym_source_DASHenv] = ACTIONS(958), - [anon_sym_hide] = ACTIONS(958), - [anon_sym_hide_DASHenv] = ACTIONS(958), - [anon_sym_overlay] = ACTIONS(958), - [anon_sym_as] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(958), - [anon_sym_PLUS2] = ACTIONS(958), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(958), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(958), - [aux_sym__val_number_decimal_token1] = ACTIONS(958), - [aux_sym__val_number_decimal_token2] = ACTIONS(958), - [aux_sym__val_number_decimal_token3] = ACTIONS(958), - [aux_sym__val_number_decimal_token4] = ACTIONS(958), - [aux_sym__val_number_token1] = ACTIONS(958), - [aux_sym__val_number_token2] = ACTIONS(958), - [aux_sym__val_number_token3] = ACTIONS(958), - [aux_sym__val_number_token4] = ACTIONS(958), - [aux_sym__val_number_token5] = ACTIONS(958), - [aux_sym__val_number_token6] = ACTIONS(958), - [anon_sym_DQUOTE] = ACTIONS(958), - [sym__str_single_quotes] = ACTIONS(958), - [sym__str_back_ticks] = ACTIONS(958), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(958), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(958), - [sym__entry_separator] = ACTIONS(960), - [anon_sym_register] = ACTIONS(958), - [anon_sym_DOT2] = ACTIONS(958), + [473] = { + [sym_comment] = STATE(473), + [anon_sym_export] = ACTIONS(1760), + [anon_sym_alias] = ACTIONS(1760), + [anon_sym_let] = ACTIONS(1760), + [anon_sym_let_DASHenv] = ACTIONS(1760), + [anon_sym_mut] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [aux_sym_cmd_identifier_token1] = ACTIONS(1760), + [aux_sym_cmd_identifier_token2] = ACTIONS(1760), + [aux_sym_cmd_identifier_token3] = ACTIONS(1760), + [aux_sym_cmd_identifier_token4] = ACTIONS(1760), + [aux_sym_cmd_identifier_token5] = ACTIONS(1760), + [aux_sym_cmd_identifier_token6] = ACTIONS(1760), + [aux_sym_cmd_identifier_token7] = ACTIONS(1760), + [aux_sym_cmd_identifier_token8] = ACTIONS(1760), + [aux_sym_cmd_identifier_token9] = ACTIONS(1760), + [aux_sym_cmd_identifier_token10] = ACTIONS(1760), + [aux_sym_cmd_identifier_token11] = ACTIONS(1760), + [aux_sym_cmd_identifier_token12] = ACTIONS(1760), + [aux_sym_cmd_identifier_token13] = ACTIONS(1760), + [aux_sym_cmd_identifier_token14] = ACTIONS(1760), + [aux_sym_cmd_identifier_token15] = ACTIONS(1760), + [aux_sym_cmd_identifier_token16] = ACTIONS(1760), + [aux_sym_cmd_identifier_token17] = ACTIONS(1760), + [aux_sym_cmd_identifier_token18] = ACTIONS(1760), + [aux_sym_cmd_identifier_token19] = ACTIONS(1760), + [aux_sym_cmd_identifier_token20] = ACTIONS(1760), + [aux_sym_cmd_identifier_token21] = ACTIONS(1760), + [aux_sym_cmd_identifier_token22] = ACTIONS(1760), + [aux_sym_cmd_identifier_token23] = ACTIONS(1760), + [aux_sym_cmd_identifier_token24] = ACTIONS(1760), + [aux_sym_cmd_identifier_token25] = ACTIONS(1760), + [aux_sym_cmd_identifier_token26] = ACTIONS(1760), + [aux_sym_cmd_identifier_token27] = ACTIONS(1760), + [aux_sym_cmd_identifier_token28] = ACTIONS(1760), + [aux_sym_cmd_identifier_token29] = ACTIONS(1760), + [aux_sym_cmd_identifier_token30] = ACTIONS(1760), + [aux_sym_cmd_identifier_token31] = ACTIONS(1760), + [aux_sym_cmd_identifier_token32] = ACTIONS(1760), + [aux_sym_cmd_identifier_token33] = ACTIONS(1760), + [aux_sym_cmd_identifier_token34] = ACTIONS(1760), + [aux_sym_cmd_identifier_token35] = ACTIONS(1760), + [aux_sym_cmd_identifier_token36] = ACTIONS(1760), + [aux_sym_cmd_identifier_token37] = ACTIONS(1760), + [aux_sym_cmd_identifier_token38] = ACTIONS(1760), + [aux_sym_cmd_identifier_token39] = ACTIONS(1760), + [aux_sym_cmd_identifier_token40] = ACTIONS(1760), + [anon_sym_def] = ACTIONS(1760), + [anon_sym_export_DASHenv] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym_module] = ACTIONS(1760), + [anon_sym_use] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_COMMA] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_error] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_loop] = ACTIONS(1760), + [anon_sym_make] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_do] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_match] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_catch] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_source] = ACTIONS(1760), + [anon_sym_source_DASHenv] = ACTIONS(1760), + [anon_sym_hide] = ACTIONS(1760), + [anon_sym_hide_DASHenv] = ACTIONS(1760), + [anon_sym_overlay] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1760), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1760), + [aux_sym__val_number_decimal_token4] = ACTIONS(1760), + [aux_sym__val_number_token1] = ACTIONS(1760), + [aux_sym__val_number_token2] = ACTIONS(1760), + [aux_sym__val_number_token3] = ACTIONS(1760), + [aux_sym__val_number_token4] = ACTIONS(1760), + [aux_sym__val_number_token5] = ACTIONS(1760), + [aux_sym__val_number_token6] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1760), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1760), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1760), + [sym__entry_separator] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1760), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(960), + [sym_raw_string_begin] = ACTIONS(1762), }, - [500] = { - [sym_comment] = STATE(500), + [474] = { + [sym_comment] = STATE(474), + [anon_sym_export] = ACTIONS(2001), + [anon_sym_alias] = ACTIONS(2001), + [anon_sym_let] = ACTIONS(2001), + [anon_sym_let_DASHenv] = ACTIONS(2001), + [anon_sym_mut] = ACTIONS(2001), + [anon_sym_const] = ACTIONS(2001), + [aux_sym_cmd_identifier_token1] = ACTIONS(2001), + [aux_sym_cmd_identifier_token2] = ACTIONS(2001), + [aux_sym_cmd_identifier_token3] = ACTIONS(2001), + [aux_sym_cmd_identifier_token4] = ACTIONS(2001), + [aux_sym_cmd_identifier_token5] = ACTIONS(2001), + [aux_sym_cmd_identifier_token6] = ACTIONS(2001), + [aux_sym_cmd_identifier_token7] = ACTIONS(2001), + [aux_sym_cmd_identifier_token8] = ACTIONS(2001), + [aux_sym_cmd_identifier_token9] = ACTIONS(2001), + [aux_sym_cmd_identifier_token10] = ACTIONS(2001), + [aux_sym_cmd_identifier_token11] = ACTIONS(2001), + [aux_sym_cmd_identifier_token12] = ACTIONS(2001), + [aux_sym_cmd_identifier_token13] = ACTIONS(2001), + [aux_sym_cmd_identifier_token14] = ACTIONS(2001), + [aux_sym_cmd_identifier_token15] = ACTIONS(2001), + [aux_sym_cmd_identifier_token16] = ACTIONS(2001), + [aux_sym_cmd_identifier_token17] = ACTIONS(2001), + [aux_sym_cmd_identifier_token18] = ACTIONS(2001), + [aux_sym_cmd_identifier_token19] = ACTIONS(2001), + [aux_sym_cmd_identifier_token20] = ACTIONS(2001), + [aux_sym_cmd_identifier_token21] = ACTIONS(2001), + [aux_sym_cmd_identifier_token22] = ACTIONS(2001), + [aux_sym_cmd_identifier_token23] = ACTIONS(2001), + [aux_sym_cmd_identifier_token24] = ACTIONS(2001), + [aux_sym_cmd_identifier_token25] = ACTIONS(2001), + [aux_sym_cmd_identifier_token26] = ACTIONS(2001), + [aux_sym_cmd_identifier_token27] = ACTIONS(2001), + [aux_sym_cmd_identifier_token28] = ACTIONS(2001), + [aux_sym_cmd_identifier_token29] = ACTIONS(2001), + [aux_sym_cmd_identifier_token30] = ACTIONS(2001), + [aux_sym_cmd_identifier_token31] = ACTIONS(2001), + [aux_sym_cmd_identifier_token32] = ACTIONS(2001), + [aux_sym_cmd_identifier_token33] = ACTIONS(2001), + [aux_sym_cmd_identifier_token34] = ACTIONS(2001), + [aux_sym_cmd_identifier_token35] = ACTIONS(2001), + [aux_sym_cmd_identifier_token36] = ACTIONS(2001), + [aux_sym_cmd_identifier_token37] = ACTIONS(2001), + [aux_sym_cmd_identifier_token38] = ACTIONS(2001), + [aux_sym_cmd_identifier_token39] = ACTIONS(2001), + [aux_sym_cmd_identifier_token40] = ACTIONS(2001), + [anon_sym_def] = ACTIONS(2001), + [anon_sym_export_DASHenv] = ACTIONS(2001), + [anon_sym_extern] = ACTIONS(2001), + [anon_sym_module] = ACTIONS(2001), + [anon_sym_use] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_COMMA] = ACTIONS(2001), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_error] = ACTIONS(2001), + [anon_sym_DASH2] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_in2] = ACTIONS(2001), + [anon_sym_loop] = ACTIONS(2001), + [anon_sym_make] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2001), + [anon_sym_do] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_else] = ACTIONS(2001), + [anon_sym_match] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_try] = ACTIONS(2001), + [anon_sym_catch] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_source] = ACTIONS(2001), + [anon_sym_source_DASHenv] = ACTIONS(2001), + [anon_sym_hide] = ACTIONS(2001), + [anon_sym_hide_DASHenv] = ACTIONS(2001), + [anon_sym_overlay] = ACTIONS(2001), + [anon_sym_as] = ACTIONS(2001), + [anon_sym_PLUS2] = ACTIONS(2001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2001), + [anon_sym_DOT_DOT2] = ACTIONS(1936), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1938), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1938), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2001), + [aux_sym__val_number_decimal_token1] = ACTIONS(2001), + [aux_sym__val_number_decimal_token2] = ACTIONS(2001), + [aux_sym__val_number_decimal_token3] = ACTIONS(2001), + [aux_sym__val_number_decimal_token4] = ACTIONS(2001), + [aux_sym__val_number_token1] = ACTIONS(2001), + [aux_sym__val_number_token2] = ACTIONS(2001), + [aux_sym__val_number_token3] = ACTIONS(2001), + [aux_sym__val_number_token4] = ACTIONS(2001), + [aux_sym__val_number_token5] = ACTIONS(2001), + [aux_sym__val_number_token6] = ACTIONS(2001), + [anon_sym_DQUOTE] = ACTIONS(2001), + [sym__str_single_quotes] = ACTIONS(2001), + [sym__str_back_ticks] = ACTIONS(2001), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2001), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2001), + [sym__entry_separator] = ACTIONS(2003), + [anon_sym_register] = ACTIONS(2001), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2003), + }, + [475] = { + [sym_cell_path] = STATE(690), + [sym_path] = STATE(541), + [sym_comment] = STATE(475), + [aux_sym_cell_path_repeat1] = STATE(430), + [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_COMMA] = ACTIONS(1909), + [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(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_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_DOLLAR_SQUOTE] = ACTIONS(1909), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1909), + [anon_sym_register] = ACTIONS(1907), + [anon_sym_DOT2] = ACTIONS(1821), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1909), + }, + [476] = { + [sym_expr_parenthesized] = STATE(4025), + [sym__spread_parenthesized] = STATE(4427), + [sym_val_range] = STATE(4431), + [sym__val_range] = STATE(7359), + [sym__val_range_with_end] = STATE(6944), + [sym__value] = STATE(4431), + [sym_val_nothing] = STATE(4406), + [sym_val_bool] = STATE(4136), + [sym__spread_variable] = STATE(4467), + [sym_val_variable] = STATE(4027), + [sym_val_number] = STATE(4406), + [sym__val_number_decimal] = STATE(3770), + [sym__val_number] = STATE(4446), + [sym_val_duration] = STATE(4406), + [sym_val_filesize] = STATE(4406), + [sym_val_binary] = STATE(4406), + [sym_val_string] = STATE(4406), + [sym__raw_str] = STATE(3849), + [sym__str_double_quotes] = STATE(3849), + [sym_val_interpolated] = STATE(4406), + [sym__inter_single_quotes] = STATE(4336), + [sym__inter_double_quotes] = STATE(4388), + [sym_val_list] = STATE(4406), + [sym__spread_list] = STATE(4427), + [sym_val_record] = STATE(4406), + [sym_val_table] = STATE(4406), + [sym_val_closure] = STATE(4406), + [sym__cmd_arg] = STATE(4395), + [sym_redirection] = STATE(4398), + [sym__flag] = STATE(4482), + [sym_short_flag] = STATE(4417), + [sym_long_flag] = STATE(4417), + [sym_unquoted] = STATE(4066), + [sym__unquoted_with_expr] = STATE(4390), + [sym__unquoted_anonymous_prefix] = STATE(6718), + [sym_comment] = STATE(476), + [sym__newline] = ACTIONS(2005), + [sym__space] = ACTIONS(2005), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_PIPE] = ACTIONS(2008), + [anon_sym_err_GT_PIPE] = ACTIONS(2008), + [anon_sym_out_GT_PIPE] = ACTIONS(2008), + [anon_sym_e_GT_PIPE] = ACTIONS(2008), + [anon_sym_o_GT_PIPE] = ACTIONS(2008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2010), + [anon_sym_LPAREN] = ACTIONS(2012), + [anon_sym_DOLLAR] = ACTIONS(2014), + [anon_sym_DASH_DASH] = ACTIONS(2016), + [anon_sym_DASH2] = ACTIONS(2018), + [anon_sym_LBRACE] = ACTIONS(2020), + [anon_sym_RBRACE] = ACTIONS(2008), + [anon_sym_DOT_DOT] = ACTIONS(2022), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2026), + [anon_sym_DOT_DOT_LT] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2032), + [aux_sym__val_number_decimal_token1] = ACTIONS(2034), + [aux_sym__val_number_decimal_token2] = ACTIONS(2034), + [aux_sym__val_number_decimal_token3] = ACTIONS(2036), + [aux_sym__val_number_decimal_token4] = ACTIONS(2038), + [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(2042), + [aux_sym__val_number_token5] = ACTIONS(2042), + [aux_sym__val_number_token6] = ACTIONS(2042), + [anon_sym_0b] = ACTIONS(2044), + [anon_sym_0o] = ACTIONS(2046), + [anon_sym_0x] = ACTIONS(2046), + [sym_val_date] = ACTIONS(2048), + [anon_sym_DQUOTE] = ACTIONS(2050), + [sym__str_single_quotes] = ACTIONS(2052), + [sym__str_back_ticks] = ACTIONS(2052), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2056), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2058), + [anon_sym_COLON2] = ACTIONS(2060), + [anon_sym_err_GT] = ACTIONS(2062), + [anon_sym_out_GT] = ACTIONS(2062), + [anon_sym_e_GT] = ACTIONS(2062), + [anon_sym_o_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT] = ACTIONS(2062), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [aux_sym_unquoted_token1] = ACTIONS(2064), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2066), + }, + [477] = { + [sym_comment] = STATE(477), + [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_COMMA] = 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_hide] = ACTIONS(2068), + [anon_sym_hide_DASHenv] = ACTIONS(2068), + [anon_sym_overlay] = ACTIONS(2068), + [anon_sym_as] = ACTIONS(2068), + [anon_sym_LPAREN2] = ACTIONS(2070), + [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_DOLLAR_SQUOTE] = ACTIONS(2068), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2068), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2068), + [sym__entry_separator] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2068), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2074), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2072), + }, + [478] = { + [sym_comment] = STATE(478), + [anon_sym_export] = ACTIONS(946), + [anon_sym_alias] = ACTIONS(946), + [anon_sym_let] = ACTIONS(946), + [anon_sym_let_DASHenv] = ACTIONS(946), + [anon_sym_mut] = ACTIONS(946), + [anon_sym_const] = ACTIONS(946), + [aux_sym_cmd_identifier_token1] = ACTIONS(946), + [aux_sym_cmd_identifier_token2] = ACTIONS(948), + [aux_sym_cmd_identifier_token3] = ACTIONS(948), + [aux_sym_cmd_identifier_token4] = ACTIONS(948), + [aux_sym_cmd_identifier_token5] = ACTIONS(948), + [aux_sym_cmd_identifier_token6] = ACTIONS(948), + [aux_sym_cmd_identifier_token7] = ACTIONS(948), + [aux_sym_cmd_identifier_token8] = ACTIONS(946), + [aux_sym_cmd_identifier_token9] = ACTIONS(946), + [aux_sym_cmd_identifier_token10] = ACTIONS(948), + [aux_sym_cmd_identifier_token11] = ACTIONS(948), + [aux_sym_cmd_identifier_token12] = ACTIONS(946), + [aux_sym_cmd_identifier_token13] = ACTIONS(946), + [aux_sym_cmd_identifier_token14] = ACTIONS(946), + [aux_sym_cmd_identifier_token15] = ACTIONS(946), + [aux_sym_cmd_identifier_token16] = ACTIONS(948), + [aux_sym_cmd_identifier_token17] = ACTIONS(948), + [aux_sym_cmd_identifier_token18] = ACTIONS(948), + [aux_sym_cmd_identifier_token19] = ACTIONS(948), + [aux_sym_cmd_identifier_token20] = ACTIONS(948), + [aux_sym_cmd_identifier_token21] = ACTIONS(948), + [aux_sym_cmd_identifier_token22] = ACTIONS(948), + [aux_sym_cmd_identifier_token23] = ACTIONS(948), + [aux_sym_cmd_identifier_token24] = ACTIONS(948), + [aux_sym_cmd_identifier_token25] = ACTIONS(948), + [aux_sym_cmd_identifier_token26] = ACTIONS(948), + [aux_sym_cmd_identifier_token27] = ACTIONS(948), + [aux_sym_cmd_identifier_token28] = ACTIONS(948), + [aux_sym_cmd_identifier_token29] = ACTIONS(948), + [aux_sym_cmd_identifier_token30] = ACTIONS(948), + [aux_sym_cmd_identifier_token31] = ACTIONS(948), + [aux_sym_cmd_identifier_token32] = ACTIONS(948), + [aux_sym_cmd_identifier_token33] = ACTIONS(948), + [aux_sym_cmd_identifier_token34] = ACTIONS(946), + [aux_sym_cmd_identifier_token35] = ACTIONS(948), + [aux_sym_cmd_identifier_token36] = ACTIONS(948), + [aux_sym_cmd_identifier_token37] = ACTIONS(948), + [aux_sym_cmd_identifier_token38] = ACTIONS(946), + [aux_sym_cmd_identifier_token39] = ACTIONS(948), + [aux_sym_cmd_identifier_token40] = ACTIONS(948), + [anon_sym_def] = ACTIONS(946), + [anon_sym_export_DASHenv] = ACTIONS(946), + [anon_sym_extern] = ACTIONS(946), + [anon_sym_module] = ACTIONS(946), + [anon_sym_use] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(948), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_error] = ACTIONS(946), + [anon_sym_DASH2] = ACTIONS(946), + [anon_sym_break] = ACTIONS(946), + [anon_sym_continue] = ACTIONS(946), + [anon_sym_for] = ACTIONS(946), + [anon_sym_in2] = ACTIONS(946), + [anon_sym_loop] = ACTIONS(946), + [anon_sym_make] = ACTIONS(946), + [anon_sym_while] = ACTIONS(946), + [anon_sym_do] = ACTIONS(946), + [anon_sym_if] = ACTIONS(946), + [anon_sym_else] = ACTIONS(946), + [anon_sym_match] = ACTIONS(946), + [anon_sym_RBRACE] = ACTIONS(948), + [anon_sym_try] = ACTIONS(946), + [anon_sym_catch] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_source] = ACTIONS(946), + [anon_sym_source_DASHenv] = ACTIONS(946), + [anon_sym_hide] = ACTIONS(946), + [anon_sym_hide_DASHenv] = ACTIONS(946), + [anon_sym_overlay] = ACTIONS(946), + [anon_sym_as] = ACTIONS(946), + [anon_sym_QMARK2] = ACTIONS(948), + [anon_sym_PLUS2] = ACTIONS(946), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(948), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(948), + [aux_sym__val_number_decimal_token1] = ACTIONS(946), + [aux_sym__val_number_decimal_token2] = ACTIONS(948), + [aux_sym__val_number_decimal_token3] = ACTIONS(948), + [aux_sym__val_number_decimal_token4] = ACTIONS(948), + [aux_sym__val_number_token1] = ACTIONS(948), + [aux_sym__val_number_token2] = ACTIONS(948), + [aux_sym__val_number_token3] = ACTIONS(948), + [aux_sym__val_number_token4] = ACTIONS(946), + [aux_sym__val_number_token5] = ACTIONS(946), + [aux_sym__val_number_token6] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(948), + [sym__str_single_quotes] = ACTIONS(948), + [sym__str_back_ticks] = ACTIONS(948), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(948), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(948), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(948), + [anon_sym_register] = ACTIONS(946), + [anon_sym_COLON2] = ACTIONS(948), + [anon_sym_DOT2] = ACTIONS(946), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(948), + }, + [479] = { + [sym_comment] = STATE(479), + [anon_sym_export] = ACTIONS(2076), + [anon_sym_alias] = ACTIONS(2076), + [anon_sym_let] = ACTIONS(2076), + [anon_sym_let_DASHenv] = ACTIONS(2076), + [anon_sym_mut] = ACTIONS(2076), + [anon_sym_const] = ACTIONS(2076), + [aux_sym_cmd_identifier_token1] = ACTIONS(2076), + [aux_sym_cmd_identifier_token2] = ACTIONS(2076), + [aux_sym_cmd_identifier_token3] = ACTIONS(2076), + [aux_sym_cmd_identifier_token4] = ACTIONS(2076), + [aux_sym_cmd_identifier_token5] = ACTIONS(2076), + [aux_sym_cmd_identifier_token6] = ACTIONS(2076), + [aux_sym_cmd_identifier_token7] = ACTIONS(2076), + [aux_sym_cmd_identifier_token8] = ACTIONS(2076), + [aux_sym_cmd_identifier_token9] = ACTIONS(2076), + [aux_sym_cmd_identifier_token10] = ACTIONS(2076), + [aux_sym_cmd_identifier_token11] = ACTIONS(2076), + [aux_sym_cmd_identifier_token12] = ACTIONS(2076), + [aux_sym_cmd_identifier_token13] = ACTIONS(2076), + [aux_sym_cmd_identifier_token14] = ACTIONS(2076), + [aux_sym_cmd_identifier_token15] = ACTIONS(2076), + [aux_sym_cmd_identifier_token16] = ACTIONS(2076), + [aux_sym_cmd_identifier_token17] = ACTIONS(2076), + [aux_sym_cmd_identifier_token18] = ACTIONS(2076), + [aux_sym_cmd_identifier_token19] = ACTIONS(2076), + [aux_sym_cmd_identifier_token20] = ACTIONS(2076), + [aux_sym_cmd_identifier_token21] = ACTIONS(2076), + [aux_sym_cmd_identifier_token22] = ACTIONS(2076), + [aux_sym_cmd_identifier_token23] = ACTIONS(2076), + [aux_sym_cmd_identifier_token24] = ACTIONS(2076), + [aux_sym_cmd_identifier_token25] = ACTIONS(2076), + [aux_sym_cmd_identifier_token26] = ACTIONS(2076), + [aux_sym_cmd_identifier_token27] = ACTIONS(2076), + [aux_sym_cmd_identifier_token28] = ACTIONS(2076), + [aux_sym_cmd_identifier_token29] = ACTIONS(2076), + [aux_sym_cmd_identifier_token30] = ACTIONS(2076), + [aux_sym_cmd_identifier_token31] = ACTIONS(2076), + [aux_sym_cmd_identifier_token32] = ACTIONS(2076), + [aux_sym_cmd_identifier_token33] = ACTIONS(2076), + [aux_sym_cmd_identifier_token34] = ACTIONS(2076), + [aux_sym_cmd_identifier_token35] = ACTIONS(2076), + [aux_sym_cmd_identifier_token36] = ACTIONS(2076), + [aux_sym_cmd_identifier_token37] = ACTIONS(2076), + [aux_sym_cmd_identifier_token38] = ACTIONS(2076), + [aux_sym_cmd_identifier_token39] = ACTIONS(2076), + [aux_sym_cmd_identifier_token40] = ACTIONS(2076), + [anon_sym_def] = ACTIONS(2076), + [anon_sym_export_DASHenv] = ACTIONS(2076), + [anon_sym_extern] = ACTIONS(2076), + [anon_sym_module] = ACTIONS(2076), + [anon_sym_use] = ACTIONS(2076), + [anon_sym_LPAREN] = ACTIONS(2076), + [anon_sym_COMMA] = ACTIONS(2076), + [anon_sym_DOLLAR] = ACTIONS(2076), + [anon_sym_error] = ACTIONS(2076), + [anon_sym_DASH2] = ACTIONS(2076), + [anon_sym_break] = ACTIONS(2076), + [anon_sym_continue] = ACTIONS(2076), + [anon_sym_for] = ACTIONS(2076), + [anon_sym_in2] = ACTIONS(2076), + [anon_sym_loop] = ACTIONS(2076), + [anon_sym_make] = ACTIONS(2076), + [anon_sym_while] = ACTIONS(2076), + [anon_sym_do] = ACTIONS(2076), + [anon_sym_if] = ACTIONS(2076), + [anon_sym_else] = ACTIONS(2076), + [anon_sym_match] = ACTIONS(2076), + [anon_sym_RBRACE] = ACTIONS(2076), + [anon_sym_try] = ACTIONS(2076), + [anon_sym_catch] = ACTIONS(2076), + [anon_sym_return] = ACTIONS(2076), + [anon_sym_source] = ACTIONS(2076), + [anon_sym_source_DASHenv] = ACTIONS(2076), + [anon_sym_hide] = ACTIONS(2076), + [anon_sym_hide_DASHenv] = ACTIONS(2076), + [anon_sym_overlay] = ACTIONS(2076), + [anon_sym_as] = ACTIONS(2076), + [anon_sym_LPAREN2] = ACTIONS(2078), + [anon_sym_PLUS2] = ACTIONS(2076), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2076), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2076), + [aux_sym__val_number_decimal_token1] = ACTIONS(2076), + [aux_sym__val_number_decimal_token2] = ACTIONS(2076), + [aux_sym__val_number_decimal_token3] = ACTIONS(2076), + [aux_sym__val_number_decimal_token4] = ACTIONS(2076), + [aux_sym__val_number_token1] = ACTIONS(2076), + [aux_sym__val_number_token2] = ACTIONS(2076), + [aux_sym__val_number_token3] = ACTIONS(2076), + [aux_sym__val_number_token4] = ACTIONS(2076), + [aux_sym__val_number_token5] = ACTIONS(2076), + [aux_sym__val_number_token6] = ACTIONS(2076), + [anon_sym_DQUOTE] = ACTIONS(2076), + [sym__str_single_quotes] = ACTIONS(2076), + [sym__str_back_ticks] = ACTIONS(2076), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2076), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2076), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2076), + [sym__entry_separator] = ACTIONS(2078), + [anon_sym_register] = ACTIONS(2076), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2076), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2078), + }, + [480] = { + [sym_comment] = STATE(480), + [anon_sym_export] = ACTIONS(1686), + [anon_sym_alias] = ACTIONS(1686), + [anon_sym_let] = ACTIONS(1686), + [anon_sym_let_DASHenv] = ACTIONS(1686), + [anon_sym_mut] = ACTIONS(1686), + [anon_sym_const] = ACTIONS(1686), + [aux_sym_cmd_identifier_token1] = ACTIONS(1686), + [aux_sym_cmd_identifier_token2] = ACTIONS(1686), + [aux_sym_cmd_identifier_token3] = ACTIONS(1686), + [aux_sym_cmd_identifier_token4] = ACTIONS(1686), + [aux_sym_cmd_identifier_token5] = ACTIONS(1686), + [aux_sym_cmd_identifier_token6] = ACTIONS(1686), + [aux_sym_cmd_identifier_token7] = ACTIONS(1686), + [aux_sym_cmd_identifier_token8] = ACTIONS(1686), + [aux_sym_cmd_identifier_token9] = ACTIONS(1686), + [aux_sym_cmd_identifier_token10] = ACTIONS(1686), + [aux_sym_cmd_identifier_token11] = ACTIONS(1686), + [aux_sym_cmd_identifier_token12] = ACTIONS(1686), + [aux_sym_cmd_identifier_token13] = ACTIONS(1686), + [aux_sym_cmd_identifier_token14] = ACTIONS(1686), + [aux_sym_cmd_identifier_token15] = ACTIONS(1686), + [aux_sym_cmd_identifier_token16] = ACTIONS(1686), + [aux_sym_cmd_identifier_token17] = ACTIONS(1686), + [aux_sym_cmd_identifier_token18] = ACTIONS(1686), + [aux_sym_cmd_identifier_token19] = ACTIONS(1686), + [aux_sym_cmd_identifier_token20] = ACTIONS(1686), + [aux_sym_cmd_identifier_token21] = ACTIONS(1686), + [aux_sym_cmd_identifier_token22] = ACTIONS(1686), + [aux_sym_cmd_identifier_token23] = ACTIONS(1686), + [aux_sym_cmd_identifier_token24] = ACTIONS(1686), + [aux_sym_cmd_identifier_token25] = ACTIONS(1686), + [aux_sym_cmd_identifier_token26] = ACTIONS(1686), + [aux_sym_cmd_identifier_token27] = ACTIONS(1686), + [aux_sym_cmd_identifier_token28] = ACTIONS(1686), + [aux_sym_cmd_identifier_token29] = ACTIONS(1686), + [aux_sym_cmd_identifier_token30] = ACTIONS(1686), + [aux_sym_cmd_identifier_token31] = ACTIONS(1686), + [aux_sym_cmd_identifier_token32] = ACTIONS(1686), + [aux_sym_cmd_identifier_token33] = ACTIONS(1686), + [aux_sym_cmd_identifier_token34] = ACTIONS(1686), + [aux_sym_cmd_identifier_token35] = ACTIONS(1686), + [aux_sym_cmd_identifier_token36] = ACTIONS(1686), + [aux_sym_cmd_identifier_token37] = ACTIONS(1686), + [aux_sym_cmd_identifier_token38] = ACTIONS(1686), + [aux_sym_cmd_identifier_token39] = ACTIONS(1686), + [aux_sym_cmd_identifier_token40] = ACTIONS(1686), + [anon_sym_def] = ACTIONS(1686), + [anon_sym_export_DASHenv] = ACTIONS(1686), + [anon_sym_extern] = ACTIONS(1686), + [anon_sym_module] = ACTIONS(1686), + [anon_sym_use] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_error] = ACTIONS(1686), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_break] = ACTIONS(1686), + [anon_sym_continue] = ACTIONS(1686), + [anon_sym_for] = ACTIONS(1686), + [anon_sym_in2] = ACTIONS(1686), + [anon_sym_loop] = ACTIONS(1686), + [anon_sym_make] = ACTIONS(1686), + [anon_sym_while] = ACTIONS(1686), + [anon_sym_do] = ACTIONS(1686), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_else] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1686), + [anon_sym_try] = ACTIONS(1686), + [anon_sym_catch] = ACTIONS(1686), + [anon_sym_return] = ACTIONS(1686), + [anon_sym_source] = ACTIONS(1686), + [anon_sym_source_DASHenv] = ACTIONS(1686), + [anon_sym_hide] = ACTIONS(1686), + [anon_sym_hide_DASHenv] = ACTIONS(1686), + [anon_sym_overlay] = ACTIONS(1686), + [anon_sym_as] = ACTIONS(1686), + [anon_sym_PLUS2] = ACTIONS(1686), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1686), + [aux_sym__immediate_decimal_token1] = ACTIONS(2080), + [aux_sym__immediate_decimal_token2] = ACTIONS(2082), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1686), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1686), + [aux_sym__val_number_decimal_token3] = ACTIONS(1686), + [aux_sym__val_number_decimal_token4] = ACTIONS(1686), + [aux_sym__val_number_token1] = ACTIONS(1686), + [aux_sym__val_number_token2] = ACTIONS(1686), + [aux_sym__val_number_token3] = ACTIONS(1686), + [aux_sym__val_number_token4] = ACTIONS(1686), + [aux_sym__val_number_token5] = ACTIONS(1686), + [aux_sym__val_number_token6] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1686), + [sym__str_single_quotes] = ACTIONS(1686), + [sym__str_back_ticks] = ACTIONS(1686), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1686), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1686), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1686), + [sym__entry_separator] = ACTIONS(1688), + [anon_sym_register] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1688), + }, + [481] = { + [sym_comment] = STATE(481), + [anon_sym_export] = ACTIONS(950), + [anon_sym_alias] = ACTIONS(950), + [anon_sym_let] = ACTIONS(950), + [anon_sym_let_DASHenv] = ACTIONS(950), + [anon_sym_mut] = ACTIONS(950), + [anon_sym_const] = ACTIONS(950), + [aux_sym_cmd_identifier_token1] = ACTIONS(950), + [aux_sym_cmd_identifier_token2] = ACTIONS(950), + [aux_sym_cmd_identifier_token3] = ACTIONS(950), + [aux_sym_cmd_identifier_token4] = ACTIONS(950), + [aux_sym_cmd_identifier_token5] = ACTIONS(950), + [aux_sym_cmd_identifier_token6] = ACTIONS(950), + [aux_sym_cmd_identifier_token7] = ACTIONS(950), + [aux_sym_cmd_identifier_token8] = ACTIONS(950), + [aux_sym_cmd_identifier_token9] = ACTIONS(950), + [aux_sym_cmd_identifier_token10] = ACTIONS(950), + [aux_sym_cmd_identifier_token11] = ACTIONS(950), + [aux_sym_cmd_identifier_token12] = ACTIONS(950), + [aux_sym_cmd_identifier_token13] = ACTIONS(950), + [aux_sym_cmd_identifier_token14] = ACTIONS(950), + [aux_sym_cmd_identifier_token15] = ACTIONS(950), + [aux_sym_cmd_identifier_token16] = ACTIONS(950), + [aux_sym_cmd_identifier_token17] = ACTIONS(950), + [aux_sym_cmd_identifier_token18] = ACTIONS(950), + [aux_sym_cmd_identifier_token19] = ACTIONS(950), + [aux_sym_cmd_identifier_token20] = ACTIONS(950), + [aux_sym_cmd_identifier_token21] = ACTIONS(950), + [aux_sym_cmd_identifier_token22] = ACTIONS(950), + [aux_sym_cmd_identifier_token23] = ACTIONS(950), + [aux_sym_cmd_identifier_token24] = ACTIONS(950), + [aux_sym_cmd_identifier_token25] = ACTIONS(950), + [aux_sym_cmd_identifier_token26] = ACTIONS(950), + [aux_sym_cmd_identifier_token27] = ACTIONS(950), + [aux_sym_cmd_identifier_token28] = ACTIONS(950), + [aux_sym_cmd_identifier_token29] = ACTIONS(950), + [aux_sym_cmd_identifier_token30] = ACTIONS(950), + [aux_sym_cmd_identifier_token31] = ACTIONS(950), + [aux_sym_cmd_identifier_token32] = ACTIONS(950), + [aux_sym_cmd_identifier_token33] = ACTIONS(950), + [aux_sym_cmd_identifier_token34] = ACTIONS(950), + [aux_sym_cmd_identifier_token35] = ACTIONS(950), + [aux_sym_cmd_identifier_token36] = ACTIONS(950), + [aux_sym_cmd_identifier_token37] = ACTIONS(950), + [aux_sym_cmd_identifier_token38] = ACTIONS(950), + [aux_sym_cmd_identifier_token39] = ACTIONS(950), + [aux_sym_cmd_identifier_token40] = ACTIONS(950), + [anon_sym_def] = ACTIONS(950), + [anon_sym_export_DASHenv] = ACTIONS(950), + [anon_sym_extern] = ACTIONS(950), + [anon_sym_module] = ACTIONS(950), + [anon_sym_use] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(950), + [anon_sym_COMMA] = ACTIONS(950), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_error] = ACTIONS(950), + [anon_sym_DASH2] = ACTIONS(950), + [anon_sym_break] = ACTIONS(950), + [anon_sym_continue] = ACTIONS(950), + [anon_sym_for] = ACTIONS(950), + [anon_sym_in2] = ACTIONS(950), + [anon_sym_loop] = ACTIONS(950), + [anon_sym_make] = ACTIONS(950), + [anon_sym_while] = ACTIONS(950), + [anon_sym_do] = ACTIONS(950), + [anon_sym_if] = ACTIONS(950), + [anon_sym_else] = ACTIONS(950), + [anon_sym_match] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(950), + [anon_sym_try] = ACTIONS(950), + [anon_sym_catch] = ACTIONS(950), + [anon_sym_return] = ACTIONS(950), + [anon_sym_source] = ACTIONS(950), + [anon_sym_source_DASHenv] = ACTIONS(950), + [anon_sym_hide] = ACTIONS(950), + [anon_sym_hide_DASHenv] = ACTIONS(950), + [anon_sym_overlay] = ACTIONS(950), + [anon_sym_as] = ACTIONS(950), + [anon_sym_QMARK2] = ACTIONS(950), + [anon_sym_PLUS2] = ACTIONS(950), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(950), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(950), + [aux_sym__val_number_decimal_token1] = ACTIONS(950), + [aux_sym__val_number_decimal_token2] = ACTIONS(950), + [aux_sym__val_number_decimal_token3] = ACTIONS(950), + [aux_sym__val_number_decimal_token4] = ACTIONS(950), + [aux_sym__val_number_token1] = ACTIONS(950), + [aux_sym__val_number_token2] = ACTIONS(950), + [aux_sym__val_number_token3] = ACTIONS(950), + [aux_sym__val_number_token4] = ACTIONS(950), + [aux_sym__val_number_token5] = ACTIONS(950), + [aux_sym__val_number_token6] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym__str_single_quotes] = ACTIONS(950), + [sym__str_back_ticks] = ACTIONS(950), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(950), + [sym__entry_separator] = ACTIONS(952), + [anon_sym_register] = ACTIONS(950), + [anon_sym_DOT2] = ACTIONS(950), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(952), + }, + [482] = { + [sym_comment] = STATE(482), + [anon_sym_export] = ACTIONS(942), + [anon_sym_alias] = ACTIONS(942), + [anon_sym_let] = ACTIONS(942), + [anon_sym_let_DASHenv] = ACTIONS(942), + [anon_sym_mut] = ACTIONS(942), + [anon_sym_const] = ACTIONS(942), + [aux_sym_cmd_identifier_token1] = ACTIONS(942), + [aux_sym_cmd_identifier_token2] = ACTIONS(942), + [aux_sym_cmd_identifier_token3] = ACTIONS(942), + [aux_sym_cmd_identifier_token4] = ACTIONS(942), + [aux_sym_cmd_identifier_token5] = ACTIONS(942), + [aux_sym_cmd_identifier_token6] = ACTIONS(942), + [aux_sym_cmd_identifier_token7] = ACTIONS(942), + [aux_sym_cmd_identifier_token8] = ACTIONS(942), + [aux_sym_cmd_identifier_token9] = ACTIONS(942), + [aux_sym_cmd_identifier_token10] = ACTIONS(942), + [aux_sym_cmd_identifier_token11] = ACTIONS(942), + [aux_sym_cmd_identifier_token12] = ACTIONS(942), + [aux_sym_cmd_identifier_token13] = ACTIONS(942), + [aux_sym_cmd_identifier_token14] = ACTIONS(942), + [aux_sym_cmd_identifier_token15] = ACTIONS(942), + [aux_sym_cmd_identifier_token16] = ACTIONS(942), + [aux_sym_cmd_identifier_token17] = ACTIONS(942), + [aux_sym_cmd_identifier_token18] = ACTIONS(942), + [aux_sym_cmd_identifier_token19] = ACTIONS(942), + [aux_sym_cmd_identifier_token20] = ACTIONS(942), + [aux_sym_cmd_identifier_token21] = ACTIONS(942), + [aux_sym_cmd_identifier_token22] = ACTIONS(942), + [aux_sym_cmd_identifier_token23] = ACTIONS(942), + [aux_sym_cmd_identifier_token24] = ACTIONS(942), + [aux_sym_cmd_identifier_token25] = ACTIONS(942), + [aux_sym_cmd_identifier_token26] = ACTIONS(942), + [aux_sym_cmd_identifier_token27] = ACTIONS(942), + [aux_sym_cmd_identifier_token28] = ACTIONS(942), + [aux_sym_cmd_identifier_token29] = ACTIONS(942), + [aux_sym_cmd_identifier_token30] = ACTIONS(942), + [aux_sym_cmd_identifier_token31] = ACTIONS(942), + [aux_sym_cmd_identifier_token32] = ACTIONS(942), + [aux_sym_cmd_identifier_token33] = ACTIONS(942), + [aux_sym_cmd_identifier_token34] = ACTIONS(942), + [aux_sym_cmd_identifier_token35] = ACTIONS(942), + [aux_sym_cmd_identifier_token36] = ACTIONS(942), + [aux_sym_cmd_identifier_token37] = ACTIONS(942), + [aux_sym_cmd_identifier_token38] = ACTIONS(942), + [aux_sym_cmd_identifier_token39] = ACTIONS(942), + [aux_sym_cmd_identifier_token40] = ACTIONS(942), + [anon_sym_def] = ACTIONS(942), + [anon_sym_export_DASHenv] = ACTIONS(942), + [anon_sym_extern] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_use] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_COMMA] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_error] = ACTIONS(942), + [anon_sym_DASH2] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_in2] = ACTIONS(942), + [anon_sym_loop] = ACTIONS(942), + [anon_sym_make] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_do] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_else] = ACTIONS(942), + [anon_sym_match] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_try] = ACTIONS(942), + [anon_sym_catch] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_source] = ACTIONS(942), + [anon_sym_source_DASHenv] = ACTIONS(942), + [anon_sym_hide] = ACTIONS(942), + [anon_sym_hide_DASHenv] = ACTIONS(942), + [anon_sym_overlay] = ACTIONS(942), + [anon_sym_as] = ACTIONS(942), + [anon_sym_QMARK2] = ACTIONS(942), + [anon_sym_PLUS2] = ACTIONS(942), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(942), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(942), + [aux_sym__val_number_decimal_token1] = ACTIONS(942), + [aux_sym__val_number_decimal_token2] = ACTIONS(942), + [aux_sym__val_number_decimal_token3] = ACTIONS(942), + [aux_sym__val_number_decimal_token4] = ACTIONS(942), + [aux_sym__val_number_token1] = ACTIONS(942), + [aux_sym__val_number_token2] = ACTIONS(942), + [aux_sym__val_number_token3] = ACTIONS(942), + [aux_sym__val_number_token4] = ACTIONS(942), + [aux_sym__val_number_token5] = ACTIONS(942), + [aux_sym__val_number_token6] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym__str_single_quotes] = ACTIONS(942), + [sym__str_back_ticks] = ACTIONS(942), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(942), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(942), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(942), + [sym__entry_separator] = ACTIONS(944), + [anon_sym_register] = ACTIONS(942), + [anon_sym_DOT2] = ACTIONS(942), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(944), + }, + [483] = { + [sym_comment] = STATE(483), [anon_sym_export] = ACTIONS(954), [anon_sym_alias] = ACTIONS(954), [anon_sym_let] = ACTIONS(954), @@ -130297,345 +127371,974 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(956), }, - [501] = { - [sym_comment] = STATE(501), - [anon_sym_export] = ACTIONS(962), - [anon_sym_alias] = ACTIONS(962), - [anon_sym_let] = ACTIONS(962), - [anon_sym_let_DASHenv] = ACTIONS(962), - [anon_sym_mut] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [aux_sym_cmd_identifier_token1] = ACTIONS(962), - [aux_sym_cmd_identifier_token2] = ACTIONS(962), - [aux_sym_cmd_identifier_token3] = ACTIONS(962), - [aux_sym_cmd_identifier_token4] = ACTIONS(962), - [aux_sym_cmd_identifier_token5] = ACTIONS(962), - [aux_sym_cmd_identifier_token6] = ACTIONS(962), - [aux_sym_cmd_identifier_token7] = ACTIONS(962), - [aux_sym_cmd_identifier_token8] = ACTIONS(962), - [aux_sym_cmd_identifier_token9] = ACTIONS(962), - [aux_sym_cmd_identifier_token10] = ACTIONS(962), - [aux_sym_cmd_identifier_token11] = ACTIONS(962), - [aux_sym_cmd_identifier_token12] = ACTIONS(962), - [aux_sym_cmd_identifier_token13] = ACTIONS(962), - [aux_sym_cmd_identifier_token14] = ACTIONS(962), - [aux_sym_cmd_identifier_token15] = ACTIONS(962), - [aux_sym_cmd_identifier_token16] = ACTIONS(962), - [aux_sym_cmd_identifier_token17] = ACTIONS(962), - [aux_sym_cmd_identifier_token18] = ACTIONS(962), - [aux_sym_cmd_identifier_token19] = ACTIONS(962), - [aux_sym_cmd_identifier_token20] = ACTIONS(962), - [aux_sym_cmd_identifier_token21] = ACTIONS(962), - [aux_sym_cmd_identifier_token22] = ACTIONS(962), - [aux_sym_cmd_identifier_token23] = ACTIONS(962), - [aux_sym_cmd_identifier_token24] = ACTIONS(962), - [aux_sym_cmd_identifier_token25] = ACTIONS(962), - [aux_sym_cmd_identifier_token26] = ACTIONS(962), - [aux_sym_cmd_identifier_token27] = ACTIONS(962), - [aux_sym_cmd_identifier_token28] = ACTIONS(962), - [aux_sym_cmd_identifier_token29] = ACTIONS(962), - [aux_sym_cmd_identifier_token30] = ACTIONS(962), - [aux_sym_cmd_identifier_token31] = ACTIONS(962), - [aux_sym_cmd_identifier_token32] = ACTIONS(962), - [aux_sym_cmd_identifier_token33] = ACTIONS(962), - [aux_sym_cmd_identifier_token34] = ACTIONS(962), - [aux_sym_cmd_identifier_token35] = ACTIONS(962), - [aux_sym_cmd_identifier_token36] = ACTIONS(962), - [aux_sym_cmd_identifier_token37] = ACTIONS(962), - [aux_sym_cmd_identifier_token38] = ACTIONS(962), - [aux_sym_cmd_identifier_token39] = ACTIONS(962), - [aux_sym_cmd_identifier_token40] = ACTIONS(962), - [anon_sym_def] = ACTIONS(962), - [anon_sym_export_DASHenv] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_module] = ACTIONS(962), - [anon_sym_use] = ACTIONS(962), - [anon_sym_LPAREN] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(962), - [anon_sym_error] = ACTIONS(962), - [anon_sym_DASH2] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_in2] = ACTIONS(962), - [anon_sym_loop] = ACTIONS(962), - [anon_sym_make] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [anon_sym_else] = ACTIONS(962), - [anon_sym_match] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(962), - [anon_sym_try] = ACTIONS(962), - [anon_sym_catch] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_source] = ACTIONS(962), - [anon_sym_source_DASHenv] = ACTIONS(962), - [anon_sym_hide] = ACTIONS(962), - [anon_sym_hide_DASHenv] = ACTIONS(962), - [anon_sym_overlay] = ACTIONS(962), - [anon_sym_as] = ACTIONS(962), - [anon_sym_QMARK2] = ACTIONS(962), - [anon_sym_PLUS2] = ACTIONS(962), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(962), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(962), - [aux_sym__val_number_decimal_token1] = ACTIONS(962), - [aux_sym__val_number_decimal_token2] = ACTIONS(962), - [aux_sym__val_number_decimal_token3] = ACTIONS(962), - [aux_sym__val_number_decimal_token4] = ACTIONS(962), - [aux_sym__val_number_token1] = ACTIONS(962), - [aux_sym__val_number_token2] = ACTIONS(962), - [aux_sym__val_number_token3] = ACTIONS(962), - [aux_sym__val_number_token4] = ACTIONS(962), - [aux_sym__val_number_token5] = ACTIONS(962), - [aux_sym__val_number_token6] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym__str_single_quotes] = ACTIONS(962), - [sym__str_back_ticks] = ACTIONS(962), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(962), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(962), - [sym__entry_separator] = ACTIONS(964), - [anon_sym_register] = ACTIONS(962), - [anon_sym_DOT2] = ACTIONS(962), + [484] = { + [sym_comment] = STATE(484), + [anon_sym_export] = ACTIONS(946), + [anon_sym_alias] = ACTIONS(946), + [anon_sym_let] = ACTIONS(946), + [anon_sym_let_DASHenv] = ACTIONS(946), + [anon_sym_mut] = ACTIONS(946), + [anon_sym_const] = ACTIONS(946), + [aux_sym_cmd_identifier_token1] = ACTIONS(946), + [aux_sym_cmd_identifier_token2] = ACTIONS(946), + [aux_sym_cmd_identifier_token3] = ACTIONS(946), + [aux_sym_cmd_identifier_token4] = ACTIONS(946), + [aux_sym_cmd_identifier_token5] = ACTIONS(946), + [aux_sym_cmd_identifier_token6] = ACTIONS(946), + [aux_sym_cmd_identifier_token7] = ACTIONS(946), + [aux_sym_cmd_identifier_token8] = ACTIONS(946), + [aux_sym_cmd_identifier_token9] = ACTIONS(946), + [aux_sym_cmd_identifier_token10] = ACTIONS(946), + [aux_sym_cmd_identifier_token11] = ACTIONS(946), + [aux_sym_cmd_identifier_token12] = ACTIONS(946), + [aux_sym_cmd_identifier_token13] = ACTIONS(946), + [aux_sym_cmd_identifier_token14] = ACTIONS(946), + [aux_sym_cmd_identifier_token15] = ACTIONS(946), + [aux_sym_cmd_identifier_token16] = ACTIONS(946), + [aux_sym_cmd_identifier_token17] = ACTIONS(946), + [aux_sym_cmd_identifier_token18] = ACTIONS(946), + [aux_sym_cmd_identifier_token19] = ACTIONS(946), + [aux_sym_cmd_identifier_token20] = ACTIONS(946), + [aux_sym_cmd_identifier_token21] = ACTIONS(946), + [aux_sym_cmd_identifier_token22] = ACTIONS(946), + [aux_sym_cmd_identifier_token23] = ACTIONS(946), + [aux_sym_cmd_identifier_token24] = ACTIONS(946), + [aux_sym_cmd_identifier_token25] = ACTIONS(946), + [aux_sym_cmd_identifier_token26] = ACTIONS(946), + [aux_sym_cmd_identifier_token27] = ACTIONS(946), + [aux_sym_cmd_identifier_token28] = ACTIONS(946), + [aux_sym_cmd_identifier_token29] = ACTIONS(946), + [aux_sym_cmd_identifier_token30] = ACTIONS(946), + [aux_sym_cmd_identifier_token31] = ACTIONS(946), + [aux_sym_cmd_identifier_token32] = ACTIONS(946), + [aux_sym_cmd_identifier_token33] = ACTIONS(946), + [aux_sym_cmd_identifier_token34] = ACTIONS(946), + [aux_sym_cmd_identifier_token35] = ACTIONS(946), + [aux_sym_cmd_identifier_token36] = ACTIONS(946), + [aux_sym_cmd_identifier_token37] = ACTIONS(946), + [aux_sym_cmd_identifier_token38] = ACTIONS(946), + [aux_sym_cmd_identifier_token39] = ACTIONS(946), + [aux_sym_cmd_identifier_token40] = ACTIONS(946), + [anon_sym_def] = ACTIONS(946), + [anon_sym_export_DASHenv] = ACTIONS(946), + [anon_sym_extern] = ACTIONS(946), + [anon_sym_module] = ACTIONS(946), + [anon_sym_use] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(946), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_error] = ACTIONS(946), + [anon_sym_DASH2] = ACTIONS(946), + [anon_sym_break] = ACTIONS(946), + [anon_sym_continue] = ACTIONS(946), + [anon_sym_for] = ACTIONS(946), + [anon_sym_in2] = ACTIONS(946), + [anon_sym_loop] = ACTIONS(946), + [anon_sym_make] = ACTIONS(946), + [anon_sym_while] = ACTIONS(946), + [anon_sym_do] = ACTIONS(946), + [anon_sym_if] = ACTIONS(946), + [anon_sym_else] = ACTIONS(946), + [anon_sym_match] = ACTIONS(946), + [anon_sym_RBRACE] = ACTIONS(946), + [anon_sym_try] = ACTIONS(946), + [anon_sym_catch] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_source] = ACTIONS(946), + [anon_sym_source_DASHenv] = ACTIONS(946), + [anon_sym_hide] = ACTIONS(946), + [anon_sym_hide_DASHenv] = ACTIONS(946), + [anon_sym_overlay] = ACTIONS(946), + [anon_sym_as] = ACTIONS(946), + [anon_sym_QMARK2] = ACTIONS(946), + [anon_sym_PLUS2] = ACTIONS(946), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(946), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(946), + [aux_sym__val_number_decimal_token1] = ACTIONS(946), + [aux_sym__val_number_decimal_token2] = ACTIONS(946), + [aux_sym__val_number_decimal_token3] = ACTIONS(946), + [aux_sym__val_number_decimal_token4] = ACTIONS(946), + [aux_sym__val_number_token1] = ACTIONS(946), + [aux_sym__val_number_token2] = ACTIONS(946), + [aux_sym__val_number_token3] = ACTIONS(946), + [aux_sym__val_number_token4] = ACTIONS(946), + [aux_sym__val_number_token5] = ACTIONS(946), + [aux_sym__val_number_token6] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(946), + [sym__str_single_quotes] = ACTIONS(946), + [sym__str_back_ticks] = ACTIONS(946), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(946), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(946), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(946), + [sym__entry_separator] = ACTIONS(948), + [anon_sym_register] = ACTIONS(946), + [anon_sym_DOT2] = ACTIONS(946), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(964), + [sym_raw_string_begin] = ACTIONS(948), }, - [502] = { - [sym_comment] = STATE(502), - [anon_sym_export] = ACTIONS(966), - [anon_sym_alias] = ACTIONS(966), - [anon_sym_let] = ACTIONS(966), - [anon_sym_let_DASHenv] = ACTIONS(966), - [anon_sym_mut] = ACTIONS(966), - [anon_sym_const] = ACTIONS(966), - [aux_sym_cmd_identifier_token1] = ACTIONS(966), - [aux_sym_cmd_identifier_token2] = ACTIONS(966), - [aux_sym_cmd_identifier_token3] = ACTIONS(966), - [aux_sym_cmd_identifier_token4] = ACTIONS(966), - [aux_sym_cmd_identifier_token5] = ACTIONS(966), - [aux_sym_cmd_identifier_token6] = ACTIONS(966), - [aux_sym_cmd_identifier_token7] = ACTIONS(966), - [aux_sym_cmd_identifier_token8] = ACTIONS(966), - [aux_sym_cmd_identifier_token9] = ACTIONS(966), - [aux_sym_cmd_identifier_token10] = ACTIONS(966), - [aux_sym_cmd_identifier_token11] = ACTIONS(966), - [aux_sym_cmd_identifier_token12] = ACTIONS(966), - [aux_sym_cmd_identifier_token13] = ACTIONS(966), - [aux_sym_cmd_identifier_token14] = ACTIONS(966), - [aux_sym_cmd_identifier_token15] = ACTIONS(966), - [aux_sym_cmd_identifier_token16] = ACTIONS(966), - [aux_sym_cmd_identifier_token17] = ACTIONS(966), - [aux_sym_cmd_identifier_token18] = ACTIONS(966), - [aux_sym_cmd_identifier_token19] = ACTIONS(966), - [aux_sym_cmd_identifier_token20] = ACTIONS(966), - [aux_sym_cmd_identifier_token21] = ACTIONS(966), - [aux_sym_cmd_identifier_token22] = ACTIONS(966), - [aux_sym_cmd_identifier_token23] = ACTIONS(966), - [aux_sym_cmd_identifier_token24] = ACTIONS(966), - [aux_sym_cmd_identifier_token25] = ACTIONS(966), - [aux_sym_cmd_identifier_token26] = ACTIONS(966), - [aux_sym_cmd_identifier_token27] = ACTIONS(966), - [aux_sym_cmd_identifier_token28] = ACTIONS(966), - [aux_sym_cmd_identifier_token29] = ACTIONS(966), - [aux_sym_cmd_identifier_token30] = ACTIONS(966), - [aux_sym_cmd_identifier_token31] = ACTIONS(966), - [aux_sym_cmd_identifier_token32] = ACTIONS(966), - [aux_sym_cmd_identifier_token33] = ACTIONS(966), - [aux_sym_cmd_identifier_token34] = ACTIONS(966), - [aux_sym_cmd_identifier_token35] = ACTIONS(966), - [aux_sym_cmd_identifier_token36] = ACTIONS(966), - [aux_sym_cmd_identifier_token37] = ACTIONS(966), - [aux_sym_cmd_identifier_token38] = ACTIONS(966), - [aux_sym_cmd_identifier_token39] = ACTIONS(966), - [aux_sym_cmd_identifier_token40] = ACTIONS(966), - [anon_sym_def] = ACTIONS(966), - [anon_sym_export_DASHenv] = ACTIONS(966), - [anon_sym_extern] = ACTIONS(966), - [anon_sym_module] = ACTIONS(966), - [anon_sym_use] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(966), - [anon_sym_COMMA] = ACTIONS(966), - [anon_sym_DOLLAR] = ACTIONS(966), - [anon_sym_error] = ACTIONS(966), - [anon_sym_DASH2] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_in2] = ACTIONS(966), - [anon_sym_loop] = ACTIONS(966), - [anon_sym_make] = ACTIONS(966), - [anon_sym_while] = ACTIONS(966), - [anon_sym_do] = ACTIONS(966), - [anon_sym_if] = ACTIONS(966), - [anon_sym_else] = ACTIONS(966), - [anon_sym_match] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(966), - [anon_sym_try] = ACTIONS(966), - [anon_sym_catch] = ACTIONS(966), - [anon_sym_return] = ACTIONS(966), - [anon_sym_source] = ACTIONS(966), - [anon_sym_source_DASHenv] = ACTIONS(966), - [anon_sym_hide] = ACTIONS(966), - [anon_sym_hide_DASHenv] = ACTIONS(966), - [anon_sym_overlay] = ACTIONS(966), - [anon_sym_as] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(966), - [anon_sym_PLUS2] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(966), - [aux_sym__val_number_decimal_token1] = ACTIONS(966), - [aux_sym__val_number_decimal_token2] = ACTIONS(966), - [aux_sym__val_number_decimal_token3] = ACTIONS(966), - [aux_sym__val_number_decimal_token4] = ACTIONS(966), - [aux_sym__val_number_token1] = ACTIONS(966), - [aux_sym__val_number_token2] = ACTIONS(966), - [aux_sym__val_number_token3] = ACTIONS(966), - [aux_sym__val_number_token4] = ACTIONS(966), - [aux_sym__val_number_token5] = ACTIONS(966), - [aux_sym__val_number_token6] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [sym__str_single_quotes] = ACTIONS(966), - [sym__str_back_ticks] = ACTIONS(966), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(966), - [sym__entry_separator] = ACTIONS(968), - [anon_sym_register] = ACTIONS(966), - [anon_sym_DOT2] = ACTIONS(966), + [485] = { + [sym_comment] = STATE(485), + [anon_sym_export] = ACTIONS(1949), + [anon_sym_alias] = ACTIONS(1949), + [anon_sym_let] = ACTIONS(1949), + [anon_sym_let_DASHenv] = ACTIONS(1949), + [anon_sym_mut] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(1949), + [aux_sym_cmd_identifier_token1] = ACTIONS(1949), + [aux_sym_cmd_identifier_token2] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1955), + [aux_sym_cmd_identifier_token4] = ACTIONS(1955), + [aux_sym_cmd_identifier_token5] = ACTIONS(1955), + [aux_sym_cmd_identifier_token6] = ACTIONS(1955), + [aux_sym_cmd_identifier_token7] = ACTIONS(1955), + [aux_sym_cmd_identifier_token8] = ACTIONS(1949), + [aux_sym_cmd_identifier_token9] = ACTIONS(1949), + [aux_sym_cmd_identifier_token10] = ACTIONS(1955), + [aux_sym_cmd_identifier_token11] = ACTIONS(1955), + [aux_sym_cmd_identifier_token12] = ACTIONS(1949), + [aux_sym_cmd_identifier_token13] = ACTIONS(1949), + [aux_sym_cmd_identifier_token14] = ACTIONS(1949), + [aux_sym_cmd_identifier_token15] = ACTIONS(1949), + [aux_sym_cmd_identifier_token16] = ACTIONS(1955), + [aux_sym_cmd_identifier_token17] = ACTIONS(1955), + [aux_sym_cmd_identifier_token18] = ACTIONS(1955), + [aux_sym_cmd_identifier_token19] = ACTIONS(1955), + [aux_sym_cmd_identifier_token20] = ACTIONS(1955), + [aux_sym_cmd_identifier_token21] = ACTIONS(1955), + [aux_sym_cmd_identifier_token22] = ACTIONS(1955), + [aux_sym_cmd_identifier_token23] = ACTIONS(1955), + [aux_sym_cmd_identifier_token24] = ACTIONS(1955), + [aux_sym_cmd_identifier_token25] = ACTIONS(1955), + [aux_sym_cmd_identifier_token26] = ACTIONS(1955), + [aux_sym_cmd_identifier_token27] = ACTIONS(1955), + [aux_sym_cmd_identifier_token28] = ACTIONS(1955), + [aux_sym_cmd_identifier_token29] = ACTIONS(1955), + [aux_sym_cmd_identifier_token30] = ACTIONS(1955), + [aux_sym_cmd_identifier_token31] = ACTIONS(1955), + [aux_sym_cmd_identifier_token32] = ACTIONS(1955), + [aux_sym_cmd_identifier_token33] = ACTIONS(1955), + [aux_sym_cmd_identifier_token34] = ACTIONS(1949), + [aux_sym_cmd_identifier_token35] = ACTIONS(1955), + [aux_sym_cmd_identifier_token36] = ACTIONS(1955), + [aux_sym_cmd_identifier_token37] = ACTIONS(1955), + [aux_sym_cmd_identifier_token38] = ACTIONS(1949), + [aux_sym_cmd_identifier_token39] = ACTIONS(1955), + [aux_sym_cmd_identifier_token40] = ACTIONS(1955), + [anon_sym_def] = ACTIONS(1949), + [anon_sym_export_DASHenv] = ACTIONS(1949), + [anon_sym_extern] = ACTIONS(1949), + [anon_sym_module] = ACTIONS(1949), + [anon_sym_use] = ACTIONS(1949), + [anon_sym_LPAREN] = ACTIONS(1955), + [anon_sym_COMMA] = ACTIONS(1955), + [anon_sym_DOLLAR] = ACTIONS(1949), + [anon_sym_error] = ACTIONS(1949), + [anon_sym_DASH2] = ACTIONS(1949), + [anon_sym_break] = ACTIONS(1949), + [anon_sym_continue] = ACTIONS(1949), + [anon_sym_for] = ACTIONS(1949), + [anon_sym_in2] = ACTIONS(1949), + [anon_sym_loop] = ACTIONS(1949), + [anon_sym_make] = ACTIONS(1949), + [anon_sym_while] = ACTIONS(1949), + [anon_sym_do] = ACTIONS(1949), + [anon_sym_if] = ACTIONS(1949), + [anon_sym_else] = ACTIONS(1949), + [anon_sym_match] = ACTIONS(1949), + [anon_sym_RBRACE] = ACTIONS(1955), + [anon_sym_try] = ACTIONS(1949), + [anon_sym_catch] = ACTIONS(1949), + [anon_sym_return] = ACTIONS(1949), + [anon_sym_source] = ACTIONS(1949), + [anon_sym_source_DASHenv] = ACTIONS(1949), + [anon_sym_hide] = ACTIONS(1949), + [anon_sym_hide_DASHenv] = ACTIONS(1949), + [anon_sym_overlay] = ACTIONS(1949), + [anon_sym_as] = ACTIONS(1949), + [anon_sym_PLUS2] = ACTIONS(1949), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1955), + [anon_sym_DOT_DOT2] = ACTIONS(2084), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2086), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2086), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1955), + [aux_sym__val_number_decimal_token1] = ACTIONS(1949), + [aux_sym__val_number_decimal_token2] = ACTIONS(1955), + [aux_sym__val_number_decimal_token3] = ACTIONS(1955), + [aux_sym__val_number_decimal_token4] = ACTIONS(1955), + [aux_sym__val_number_token1] = ACTIONS(1955), + [aux_sym__val_number_token2] = ACTIONS(1955), + [aux_sym__val_number_token3] = ACTIONS(1955), + [aux_sym__val_number_token4] = ACTIONS(1949), + [aux_sym__val_number_token5] = ACTIONS(1949), + [aux_sym__val_number_token6] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(1955), + [sym__str_single_quotes] = ACTIONS(1955), + [sym__str_back_ticks] = ACTIONS(1955), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1955), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1955), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1955), + [anon_sym_register] = ACTIONS(1949), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1955), + }, + [486] = { + [sym_comment] = STATE(486), + [anon_sym_export] = ACTIONS(1957), + [anon_sym_alias] = ACTIONS(1957), + [anon_sym_let] = ACTIONS(1957), + [anon_sym_let_DASHenv] = ACTIONS(1957), + [anon_sym_mut] = ACTIONS(1957), + [anon_sym_const] = ACTIONS(1957), + [aux_sym_cmd_identifier_token1] = ACTIONS(1957), + [aux_sym_cmd_identifier_token2] = ACTIONS(1963), + [aux_sym_cmd_identifier_token3] = ACTIONS(1963), + [aux_sym_cmd_identifier_token4] = ACTIONS(1963), + [aux_sym_cmd_identifier_token5] = ACTIONS(1963), + [aux_sym_cmd_identifier_token6] = ACTIONS(1963), + [aux_sym_cmd_identifier_token7] = ACTIONS(1963), + [aux_sym_cmd_identifier_token8] = ACTIONS(1957), + [aux_sym_cmd_identifier_token9] = ACTIONS(1957), + [aux_sym_cmd_identifier_token10] = ACTIONS(1963), + [aux_sym_cmd_identifier_token11] = ACTIONS(1963), + [aux_sym_cmd_identifier_token12] = ACTIONS(1957), + [aux_sym_cmd_identifier_token13] = ACTIONS(1957), + [aux_sym_cmd_identifier_token14] = ACTIONS(1957), + [aux_sym_cmd_identifier_token15] = ACTIONS(1957), + [aux_sym_cmd_identifier_token16] = ACTIONS(1963), + [aux_sym_cmd_identifier_token17] = ACTIONS(1963), + [aux_sym_cmd_identifier_token18] = ACTIONS(1963), + [aux_sym_cmd_identifier_token19] = ACTIONS(1963), + [aux_sym_cmd_identifier_token20] = ACTIONS(1963), + [aux_sym_cmd_identifier_token21] = ACTIONS(1963), + [aux_sym_cmd_identifier_token22] = ACTIONS(1963), + [aux_sym_cmd_identifier_token23] = ACTIONS(1963), + [aux_sym_cmd_identifier_token24] = ACTIONS(1963), + [aux_sym_cmd_identifier_token25] = ACTIONS(1963), + [aux_sym_cmd_identifier_token26] = ACTIONS(1963), + [aux_sym_cmd_identifier_token27] = ACTIONS(1963), + [aux_sym_cmd_identifier_token28] = ACTIONS(1963), + [aux_sym_cmd_identifier_token29] = ACTIONS(1963), + [aux_sym_cmd_identifier_token30] = ACTIONS(1963), + [aux_sym_cmd_identifier_token31] = ACTIONS(1963), + [aux_sym_cmd_identifier_token32] = ACTIONS(1963), + [aux_sym_cmd_identifier_token33] = ACTIONS(1963), + [aux_sym_cmd_identifier_token34] = ACTIONS(1957), + [aux_sym_cmd_identifier_token35] = ACTIONS(1963), + [aux_sym_cmd_identifier_token36] = ACTIONS(1963), + [aux_sym_cmd_identifier_token37] = ACTIONS(1963), + [aux_sym_cmd_identifier_token38] = ACTIONS(1957), + [aux_sym_cmd_identifier_token39] = ACTIONS(1963), + [aux_sym_cmd_identifier_token40] = ACTIONS(1963), + [anon_sym_def] = ACTIONS(1957), + [anon_sym_export_DASHenv] = ACTIONS(1957), + [anon_sym_extern] = ACTIONS(1957), + [anon_sym_module] = ACTIONS(1957), + [anon_sym_use] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(1963), + [anon_sym_COMMA] = ACTIONS(1963), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_error] = ACTIONS(1957), + [anon_sym_DASH2] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_in2] = ACTIONS(1957), + [anon_sym_loop] = ACTIONS(1957), + [anon_sym_make] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_do] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_else] = ACTIONS(1957), + [anon_sym_match] = ACTIONS(1957), + [anon_sym_RBRACE] = ACTIONS(1963), + [anon_sym_try] = ACTIONS(1957), + [anon_sym_catch] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_source] = ACTIONS(1957), + [anon_sym_source_DASHenv] = ACTIONS(1957), + [anon_sym_hide] = ACTIONS(1957), + [anon_sym_hide_DASHenv] = ACTIONS(1957), + [anon_sym_overlay] = ACTIONS(1957), + [anon_sym_as] = ACTIONS(1957), + [anon_sym_PLUS2] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1963), + [anon_sym_DOT_DOT2] = ACTIONS(2088), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2090), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2090), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1957), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1963), + [aux_sym__val_number_decimal_token4] = ACTIONS(1963), + [aux_sym__val_number_token1] = ACTIONS(1963), + [aux_sym__val_number_token2] = ACTIONS(1963), + [aux_sym__val_number_token3] = ACTIONS(1963), + [aux_sym__val_number_token4] = ACTIONS(1957), + [aux_sym__val_number_token5] = ACTIONS(1957), + [aux_sym__val_number_token6] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(1963), + [sym__str_single_quotes] = ACTIONS(1963), + [sym__str_back_ticks] = ACTIONS(1963), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1963), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1963), + [anon_sym_register] = ACTIONS(1957), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1963), + }, + [487] = { + [sym_comment] = STATE(487), + [anon_sym_export] = ACTIONS(1965), + [anon_sym_alias] = ACTIONS(1965), + [anon_sym_let] = ACTIONS(1965), + [anon_sym_let_DASHenv] = ACTIONS(1965), + [anon_sym_mut] = ACTIONS(1965), + [anon_sym_const] = ACTIONS(1965), + [aux_sym_cmd_identifier_token1] = ACTIONS(1965), + [aux_sym_cmd_identifier_token2] = ACTIONS(1971), + [aux_sym_cmd_identifier_token3] = ACTIONS(1971), + [aux_sym_cmd_identifier_token4] = ACTIONS(1971), + [aux_sym_cmd_identifier_token5] = ACTIONS(1971), + [aux_sym_cmd_identifier_token6] = ACTIONS(1971), + [aux_sym_cmd_identifier_token7] = ACTIONS(1971), + [aux_sym_cmd_identifier_token8] = ACTIONS(1965), + [aux_sym_cmd_identifier_token9] = ACTIONS(1965), + [aux_sym_cmd_identifier_token10] = ACTIONS(1971), + [aux_sym_cmd_identifier_token11] = ACTIONS(1971), + [aux_sym_cmd_identifier_token12] = ACTIONS(1965), + [aux_sym_cmd_identifier_token13] = ACTIONS(1965), + [aux_sym_cmd_identifier_token14] = ACTIONS(1965), + [aux_sym_cmd_identifier_token15] = ACTIONS(1965), + [aux_sym_cmd_identifier_token16] = ACTIONS(1971), + [aux_sym_cmd_identifier_token17] = ACTIONS(1971), + [aux_sym_cmd_identifier_token18] = ACTIONS(1971), + [aux_sym_cmd_identifier_token19] = ACTIONS(1971), + [aux_sym_cmd_identifier_token20] = ACTIONS(1971), + [aux_sym_cmd_identifier_token21] = ACTIONS(1971), + [aux_sym_cmd_identifier_token22] = ACTIONS(1971), + [aux_sym_cmd_identifier_token23] = ACTIONS(1971), + [aux_sym_cmd_identifier_token24] = ACTIONS(1971), + [aux_sym_cmd_identifier_token25] = ACTIONS(1971), + [aux_sym_cmd_identifier_token26] = ACTIONS(1971), + [aux_sym_cmd_identifier_token27] = ACTIONS(1971), + [aux_sym_cmd_identifier_token28] = ACTIONS(1971), + [aux_sym_cmd_identifier_token29] = ACTIONS(1971), + [aux_sym_cmd_identifier_token30] = ACTIONS(1971), + [aux_sym_cmd_identifier_token31] = ACTIONS(1971), + [aux_sym_cmd_identifier_token32] = ACTIONS(1971), + [aux_sym_cmd_identifier_token33] = ACTIONS(1971), + [aux_sym_cmd_identifier_token34] = ACTIONS(1965), + [aux_sym_cmd_identifier_token35] = ACTIONS(1971), + [aux_sym_cmd_identifier_token36] = ACTIONS(1971), + [aux_sym_cmd_identifier_token37] = ACTIONS(1971), + [aux_sym_cmd_identifier_token38] = ACTIONS(1965), + [aux_sym_cmd_identifier_token39] = ACTIONS(1971), + [aux_sym_cmd_identifier_token40] = ACTIONS(1971), + [anon_sym_def] = ACTIONS(1965), + [anon_sym_export_DASHenv] = ACTIONS(1965), + [anon_sym_extern] = ACTIONS(1965), + [anon_sym_module] = ACTIONS(1965), + [anon_sym_use] = ACTIONS(1965), + [anon_sym_LPAREN] = ACTIONS(1971), + [anon_sym_COMMA] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(1965), + [anon_sym_error] = ACTIONS(1965), + [anon_sym_DASH2] = ACTIONS(1965), + [anon_sym_break] = ACTIONS(1965), + [anon_sym_continue] = ACTIONS(1965), + [anon_sym_for] = ACTIONS(1965), + [anon_sym_in2] = ACTIONS(1965), + [anon_sym_loop] = ACTIONS(1965), + [anon_sym_make] = ACTIONS(1965), + [anon_sym_while] = ACTIONS(1965), + [anon_sym_do] = ACTIONS(1965), + [anon_sym_if] = ACTIONS(1965), + [anon_sym_else] = ACTIONS(1965), + [anon_sym_match] = ACTIONS(1965), + [anon_sym_RBRACE] = ACTIONS(1971), + [anon_sym_try] = ACTIONS(1965), + [anon_sym_catch] = ACTIONS(1965), + [anon_sym_return] = ACTIONS(1965), + [anon_sym_source] = ACTIONS(1965), + [anon_sym_source_DASHenv] = ACTIONS(1965), + [anon_sym_hide] = ACTIONS(1965), + [anon_sym_hide_DASHenv] = ACTIONS(1965), + [anon_sym_overlay] = ACTIONS(1965), + [anon_sym_as] = ACTIONS(1965), + [anon_sym_PLUS2] = ACTIONS(1965), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1971), + [anon_sym_DOT_DOT2] = ACTIONS(2092), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2094), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2094), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1971), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1971), + [aux_sym__val_number_decimal_token3] = ACTIONS(1971), + [aux_sym__val_number_decimal_token4] = ACTIONS(1971), + [aux_sym__val_number_token1] = ACTIONS(1971), + [aux_sym__val_number_token2] = ACTIONS(1971), + [aux_sym__val_number_token3] = ACTIONS(1971), + [aux_sym__val_number_token4] = ACTIONS(1965), + [aux_sym__val_number_token5] = ACTIONS(1965), + [aux_sym__val_number_token6] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1971), + [sym__str_single_quotes] = ACTIONS(1971), + [sym__str_back_ticks] = ACTIONS(1971), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1971), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1971), + [anon_sym_register] = ACTIONS(1965), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1971), + }, + [488] = { + [sym_comment] = STATE(488), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_alias] = ACTIONS(1973), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_let_DASHenv] = ACTIONS(1973), + [anon_sym_mut] = ACTIONS(1973), + [anon_sym_const] = ACTIONS(1973), + [aux_sym_cmd_identifier_token1] = ACTIONS(1973), + [aux_sym_cmd_identifier_token2] = ACTIONS(1979), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [aux_sym_cmd_identifier_token6] = ACTIONS(1979), + [aux_sym_cmd_identifier_token7] = ACTIONS(1979), + [aux_sym_cmd_identifier_token8] = ACTIONS(1973), + [aux_sym_cmd_identifier_token9] = ACTIONS(1973), + [aux_sym_cmd_identifier_token10] = ACTIONS(1979), + [aux_sym_cmd_identifier_token11] = ACTIONS(1979), + [aux_sym_cmd_identifier_token12] = ACTIONS(1973), + [aux_sym_cmd_identifier_token13] = ACTIONS(1973), + [aux_sym_cmd_identifier_token14] = ACTIONS(1973), + [aux_sym_cmd_identifier_token15] = ACTIONS(1973), + [aux_sym_cmd_identifier_token16] = ACTIONS(1979), + [aux_sym_cmd_identifier_token17] = ACTIONS(1979), + [aux_sym_cmd_identifier_token18] = ACTIONS(1979), + [aux_sym_cmd_identifier_token19] = ACTIONS(1979), + [aux_sym_cmd_identifier_token20] = ACTIONS(1979), + [aux_sym_cmd_identifier_token21] = ACTIONS(1979), + [aux_sym_cmd_identifier_token22] = ACTIONS(1979), + [aux_sym_cmd_identifier_token23] = ACTIONS(1979), + [aux_sym_cmd_identifier_token24] = ACTIONS(1979), + [aux_sym_cmd_identifier_token25] = ACTIONS(1979), + [aux_sym_cmd_identifier_token26] = ACTIONS(1979), + [aux_sym_cmd_identifier_token27] = ACTIONS(1979), + [aux_sym_cmd_identifier_token28] = ACTIONS(1979), + [aux_sym_cmd_identifier_token29] = ACTIONS(1979), + [aux_sym_cmd_identifier_token30] = ACTIONS(1979), + [aux_sym_cmd_identifier_token31] = ACTIONS(1979), + [aux_sym_cmd_identifier_token32] = ACTIONS(1979), + [aux_sym_cmd_identifier_token33] = ACTIONS(1979), + [aux_sym_cmd_identifier_token34] = ACTIONS(1973), + [aux_sym_cmd_identifier_token35] = ACTIONS(1979), + [aux_sym_cmd_identifier_token36] = ACTIONS(1979), + [aux_sym_cmd_identifier_token37] = ACTIONS(1979), + [aux_sym_cmd_identifier_token38] = ACTIONS(1973), + [aux_sym_cmd_identifier_token39] = ACTIONS(1979), + [aux_sym_cmd_identifier_token40] = ACTIONS(1979), + [anon_sym_def] = ACTIONS(1973), + [anon_sym_export_DASHenv] = ACTIONS(1973), + [anon_sym_extern] = ACTIONS(1973), + [anon_sym_module] = ACTIONS(1973), + [anon_sym_use] = ACTIONS(1973), + [anon_sym_LPAREN] = ACTIONS(1979), + [anon_sym_COMMA] = ACTIONS(1979), + [anon_sym_DOLLAR] = ACTIONS(1973), + [anon_sym_error] = ACTIONS(1973), + [anon_sym_DASH2] = ACTIONS(1973), + [anon_sym_break] = ACTIONS(1973), + [anon_sym_continue] = ACTIONS(1973), + [anon_sym_for] = ACTIONS(1973), + [anon_sym_in2] = ACTIONS(1973), + [anon_sym_loop] = ACTIONS(1973), + [anon_sym_make] = ACTIONS(1973), + [anon_sym_while] = ACTIONS(1973), + [anon_sym_do] = ACTIONS(1973), + [anon_sym_if] = ACTIONS(1973), + [anon_sym_else] = ACTIONS(1973), + [anon_sym_match] = ACTIONS(1973), + [anon_sym_RBRACE] = ACTIONS(1979), + [anon_sym_try] = ACTIONS(1973), + [anon_sym_catch] = ACTIONS(1973), + [anon_sym_return] = ACTIONS(1973), + [anon_sym_source] = ACTIONS(1973), + [anon_sym_source_DASHenv] = ACTIONS(1973), + [anon_sym_hide] = ACTIONS(1973), + [anon_sym_hide_DASHenv] = ACTIONS(1973), + [anon_sym_overlay] = ACTIONS(1973), + [anon_sym_as] = ACTIONS(1973), + [anon_sym_PLUS2] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1979), + [anon_sym_DOT_DOT2] = ACTIONS(2096), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2098), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2098), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1973), + [aux_sym__val_number_decimal_token2] = ACTIONS(1979), + [aux_sym__val_number_decimal_token3] = ACTIONS(1979), + [aux_sym__val_number_decimal_token4] = ACTIONS(1979), + [aux_sym__val_number_token1] = ACTIONS(1979), + [aux_sym__val_number_token2] = ACTIONS(1979), + [aux_sym__val_number_token3] = ACTIONS(1979), + [aux_sym__val_number_token4] = ACTIONS(1973), + [aux_sym__val_number_token5] = ACTIONS(1973), + [aux_sym__val_number_token6] = ACTIONS(1973), + [anon_sym_DQUOTE] = ACTIONS(1979), + [sym__str_single_quotes] = ACTIONS(1979), + [sym__str_back_ticks] = ACTIONS(1979), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1979), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1979), + [anon_sym_register] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1979), + }, + [489] = { + [sym_comment] = STATE(489), + [anon_sym_export] = ACTIONS(1701), + [anon_sym_alias] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1701), + [anon_sym_let_DASHenv] = ACTIONS(1701), + [anon_sym_mut] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [aux_sym_cmd_identifier_token1] = ACTIONS(1701), + [aux_sym_cmd_identifier_token2] = ACTIONS(1701), + [aux_sym_cmd_identifier_token3] = ACTIONS(1701), + [aux_sym_cmd_identifier_token4] = ACTIONS(1701), + [aux_sym_cmd_identifier_token5] = ACTIONS(1701), + [aux_sym_cmd_identifier_token6] = ACTIONS(1701), + [aux_sym_cmd_identifier_token7] = ACTIONS(1701), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1701), + [aux_sym_cmd_identifier_token11] = ACTIONS(1701), + [aux_sym_cmd_identifier_token12] = ACTIONS(1701), + [aux_sym_cmd_identifier_token13] = ACTIONS(1701), + [aux_sym_cmd_identifier_token14] = ACTIONS(1701), + [aux_sym_cmd_identifier_token15] = ACTIONS(1701), + [aux_sym_cmd_identifier_token16] = ACTIONS(1701), + [aux_sym_cmd_identifier_token17] = ACTIONS(1701), + [aux_sym_cmd_identifier_token18] = ACTIONS(1701), + [aux_sym_cmd_identifier_token19] = ACTIONS(1701), + [aux_sym_cmd_identifier_token20] = ACTIONS(1701), + [aux_sym_cmd_identifier_token21] = ACTIONS(1701), + [aux_sym_cmd_identifier_token22] = ACTIONS(1701), + [aux_sym_cmd_identifier_token23] = ACTIONS(1701), + [aux_sym_cmd_identifier_token24] = ACTIONS(1701), + [aux_sym_cmd_identifier_token25] = ACTIONS(1701), + [aux_sym_cmd_identifier_token26] = ACTIONS(1701), + [aux_sym_cmd_identifier_token27] = ACTIONS(1701), + [aux_sym_cmd_identifier_token28] = ACTIONS(1701), + [aux_sym_cmd_identifier_token29] = ACTIONS(1701), + [aux_sym_cmd_identifier_token30] = ACTIONS(1701), + [aux_sym_cmd_identifier_token31] = ACTIONS(1701), + [aux_sym_cmd_identifier_token32] = ACTIONS(1701), + [aux_sym_cmd_identifier_token33] = ACTIONS(1701), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1701), + [aux_sym_cmd_identifier_token36] = ACTIONS(1701), + [aux_sym_cmd_identifier_token37] = ACTIONS(1701), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1701), + [aux_sym_cmd_identifier_token40] = ACTIONS(1701), + [anon_sym_def] = ACTIONS(1701), + [anon_sym_export_DASHenv] = ACTIONS(1701), + [anon_sym_extern] = ACTIONS(1701), + [anon_sym_module] = ACTIONS(1701), + [anon_sym_use] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_COMMA] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = ACTIONS(1701), + [anon_sym_loop] = ACTIONS(1701), + [anon_sym_make] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_do] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_else] = ACTIONS(1701), + [anon_sym_match] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1701), + [anon_sym_try] = ACTIONS(1701), + [anon_sym_catch] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_source] = ACTIONS(1701), + [anon_sym_source_DASHenv] = ACTIONS(1701), + [anon_sym_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(2100), + [aux_sym__immediate_decimal_token2] = ACTIONS(2102), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1701), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1701), + [aux_sym__val_number_decimal_token3] = ACTIONS(1701), + [aux_sym__val_number_decimal_token4] = ACTIONS(1701), + [aux_sym__val_number_token1] = ACTIONS(1701), + [aux_sym__val_number_token2] = ACTIONS(1701), + [aux_sym__val_number_token3] = ACTIONS(1701), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [sym__str_single_quotes] = ACTIONS(1701), + [sym__str_back_ticks] = ACTIONS(1701), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1701), + [sym__entry_separator] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(968), + [sym_raw_string_begin] = ACTIONS(1703), }, - [503] = { - [sym_comment] = STATE(503), - [anon_sym_export] = ACTIONS(2049), - [anon_sym_alias] = ACTIONS(2049), - [anon_sym_let] = ACTIONS(2049), - [anon_sym_let_DASHenv] = ACTIONS(2049), - [anon_sym_mut] = ACTIONS(2049), - [anon_sym_const] = ACTIONS(2049), - [aux_sym_cmd_identifier_token1] = ACTIONS(2049), - [aux_sym_cmd_identifier_token2] = ACTIONS(2049), - [aux_sym_cmd_identifier_token3] = ACTIONS(2049), - [aux_sym_cmd_identifier_token4] = ACTIONS(2049), - [aux_sym_cmd_identifier_token5] = ACTIONS(2049), - [aux_sym_cmd_identifier_token6] = ACTIONS(2049), - [aux_sym_cmd_identifier_token7] = ACTIONS(2049), - [aux_sym_cmd_identifier_token8] = ACTIONS(2049), - [aux_sym_cmd_identifier_token9] = ACTIONS(2049), - [aux_sym_cmd_identifier_token10] = ACTIONS(2049), - [aux_sym_cmd_identifier_token11] = ACTIONS(2049), - [aux_sym_cmd_identifier_token12] = ACTIONS(2049), - [aux_sym_cmd_identifier_token13] = ACTIONS(2049), - [aux_sym_cmd_identifier_token14] = ACTIONS(2049), - [aux_sym_cmd_identifier_token15] = ACTIONS(2049), - [aux_sym_cmd_identifier_token16] = ACTIONS(2049), - [aux_sym_cmd_identifier_token17] = ACTIONS(2049), - [aux_sym_cmd_identifier_token18] = ACTIONS(2049), - [aux_sym_cmd_identifier_token19] = ACTIONS(2049), - [aux_sym_cmd_identifier_token20] = ACTIONS(2049), - [aux_sym_cmd_identifier_token21] = ACTIONS(2049), - [aux_sym_cmd_identifier_token22] = ACTIONS(2049), - [aux_sym_cmd_identifier_token23] = ACTIONS(2049), - [aux_sym_cmd_identifier_token24] = ACTIONS(2049), - [aux_sym_cmd_identifier_token25] = ACTIONS(2049), - [aux_sym_cmd_identifier_token26] = ACTIONS(2049), - [aux_sym_cmd_identifier_token27] = ACTIONS(2049), - [aux_sym_cmd_identifier_token28] = ACTIONS(2049), - [aux_sym_cmd_identifier_token29] = ACTIONS(2049), - [aux_sym_cmd_identifier_token30] = ACTIONS(2049), - [aux_sym_cmd_identifier_token31] = ACTIONS(2049), - [aux_sym_cmd_identifier_token32] = ACTIONS(2049), - [aux_sym_cmd_identifier_token33] = ACTIONS(2049), - [aux_sym_cmd_identifier_token34] = ACTIONS(2049), - [aux_sym_cmd_identifier_token35] = ACTIONS(2049), - [aux_sym_cmd_identifier_token36] = ACTIONS(2049), - [aux_sym_cmd_identifier_token37] = ACTIONS(2049), - [aux_sym_cmd_identifier_token38] = ACTIONS(2049), - [aux_sym_cmd_identifier_token39] = ACTIONS(2049), - [aux_sym_cmd_identifier_token40] = ACTIONS(2049), - [anon_sym_def] = ACTIONS(2049), - [anon_sym_export_DASHenv] = ACTIONS(2049), - [anon_sym_extern] = ACTIONS(2049), - [anon_sym_module] = ACTIONS(2049), - [anon_sym_use] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(2049), - [anon_sym_COMMA] = ACTIONS(2049), - [anon_sym_DOLLAR] = ACTIONS(2049), - [anon_sym_error] = ACTIONS(2049), - [anon_sym_DASH2] = ACTIONS(2049), - [anon_sym_break] = ACTIONS(2049), - [anon_sym_continue] = ACTIONS(2049), - [anon_sym_for] = ACTIONS(2049), - [anon_sym_in2] = ACTIONS(2049), - [anon_sym_loop] = ACTIONS(2049), - [anon_sym_make] = ACTIONS(2049), - [anon_sym_while] = ACTIONS(2049), - [anon_sym_do] = ACTIONS(2049), - [anon_sym_if] = ACTIONS(2049), - [anon_sym_else] = ACTIONS(2049), - [anon_sym_match] = ACTIONS(2049), - [anon_sym_RBRACE] = ACTIONS(2049), - [anon_sym_try] = ACTIONS(2049), - [anon_sym_catch] = ACTIONS(2049), - [anon_sym_return] = ACTIONS(2049), - [anon_sym_source] = ACTIONS(2049), - [anon_sym_source_DASHenv] = ACTIONS(2049), - [anon_sym_hide] = ACTIONS(2049), - [anon_sym_hide_DASHenv] = ACTIONS(2049), - [anon_sym_overlay] = ACTIONS(2049), - [anon_sym_as] = ACTIONS(2049), - [anon_sym_LPAREN2] = ACTIONS(2051), - [anon_sym_PLUS2] = ACTIONS(2049), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2049), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2049), - [aux_sym__val_number_decimal_token1] = ACTIONS(2049), - [aux_sym__val_number_decimal_token2] = ACTIONS(2049), - [aux_sym__val_number_decimal_token3] = ACTIONS(2049), - [aux_sym__val_number_decimal_token4] = ACTIONS(2049), - [aux_sym__val_number_token1] = ACTIONS(2049), - [aux_sym__val_number_token2] = ACTIONS(2049), - [aux_sym__val_number_token3] = ACTIONS(2049), - [aux_sym__val_number_token4] = ACTIONS(2049), - [aux_sym__val_number_token5] = ACTIONS(2049), - [aux_sym__val_number_token6] = ACTIONS(2049), - [anon_sym_DQUOTE] = ACTIONS(2049), - [sym__str_single_quotes] = ACTIONS(2049), - [sym__str_back_ticks] = ACTIONS(2049), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2049), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2049), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2049), - [sym__entry_separator] = ACTIONS(2053), - [anon_sym_register] = ACTIONS(2049), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1470), + [490] = { + [sym_comment] = STATE(490), + [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_COMMA] = 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_hide] = ACTIONS(998), + [anon_sym_hide_DASHenv] = ACTIONS(998), + [anon_sym_overlay] = ACTIONS(998), + [anon_sym_as] = ACTIONS(998), + [anon_sym_LPAREN2] = ACTIONS(2104), + [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_DOLLAR_SQUOTE] = ACTIONS(998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(998), + [sym__entry_separator] = ACTIONS(994), + [anon_sym_register] = ACTIONS(998), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2106), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2053), + [sym_raw_string_begin] = ACTIONS(994), }, - [504] = { - [sym__expr_parenthesized_immediate] = STATE(7528), - [sym_comment] = STATE(504), - [anon_sym_export] = ACTIONS(1989), - [anon_sym_alias] = ACTIONS(1989), - [anon_sym_let] = ACTIONS(1989), - [anon_sym_let_DASHenv] = ACTIONS(1989), - [anon_sym_mut] = ACTIONS(1989), - [anon_sym_const] = ACTIONS(1989), - [aux_sym_cmd_identifier_token1] = ACTIONS(1989), + [491] = { + [sym__expr_parenthesized_immediate] = STATE(6957), + [sym_comment] = STATE(491), + [anon_sym_export] = ACTIONS(1934), + [anon_sym_alias] = ACTIONS(1934), + [anon_sym_let] = ACTIONS(1934), + [anon_sym_let_DASHenv] = ACTIONS(1934), + [anon_sym_mut] = ACTIONS(1934), + [anon_sym_const] = ACTIONS(1934), + [aux_sym_cmd_identifier_token1] = ACTIONS(1934), + [aux_sym_cmd_identifier_token2] = ACTIONS(1934), + [aux_sym_cmd_identifier_token3] = ACTIONS(1934), + [aux_sym_cmd_identifier_token4] = ACTIONS(1934), + [aux_sym_cmd_identifier_token5] = ACTIONS(1934), + [aux_sym_cmd_identifier_token6] = ACTIONS(1934), + [aux_sym_cmd_identifier_token7] = ACTIONS(1934), + [aux_sym_cmd_identifier_token8] = ACTIONS(1934), + [aux_sym_cmd_identifier_token9] = ACTIONS(1934), + [aux_sym_cmd_identifier_token10] = ACTIONS(1934), + [aux_sym_cmd_identifier_token11] = ACTIONS(1934), + [aux_sym_cmd_identifier_token12] = ACTIONS(1934), + [aux_sym_cmd_identifier_token13] = ACTIONS(1934), + [aux_sym_cmd_identifier_token14] = ACTIONS(1934), + [aux_sym_cmd_identifier_token15] = ACTIONS(1934), + [aux_sym_cmd_identifier_token16] = ACTIONS(1934), + [aux_sym_cmd_identifier_token17] = ACTIONS(1934), + [aux_sym_cmd_identifier_token18] = ACTIONS(1934), + [aux_sym_cmd_identifier_token19] = ACTIONS(1934), + [aux_sym_cmd_identifier_token20] = ACTIONS(1934), + [aux_sym_cmd_identifier_token21] = ACTIONS(1934), + [aux_sym_cmd_identifier_token22] = ACTIONS(1934), + [aux_sym_cmd_identifier_token23] = ACTIONS(1934), + [aux_sym_cmd_identifier_token24] = ACTIONS(1934), + [aux_sym_cmd_identifier_token25] = ACTIONS(1934), + [aux_sym_cmd_identifier_token26] = ACTIONS(1934), + [aux_sym_cmd_identifier_token27] = ACTIONS(1934), + [aux_sym_cmd_identifier_token28] = ACTIONS(1934), + [aux_sym_cmd_identifier_token29] = ACTIONS(1934), + [aux_sym_cmd_identifier_token30] = ACTIONS(1934), + [aux_sym_cmd_identifier_token31] = ACTIONS(1934), + [aux_sym_cmd_identifier_token32] = ACTIONS(1934), + [aux_sym_cmd_identifier_token33] = ACTIONS(1934), + [aux_sym_cmd_identifier_token34] = ACTIONS(1934), + [aux_sym_cmd_identifier_token35] = ACTIONS(1934), + [aux_sym_cmd_identifier_token36] = ACTIONS(1934), + [aux_sym_cmd_identifier_token37] = ACTIONS(1934), + [aux_sym_cmd_identifier_token38] = ACTIONS(1934), + [aux_sym_cmd_identifier_token39] = ACTIONS(1934), + [aux_sym_cmd_identifier_token40] = ACTIONS(1934), + [anon_sym_def] = ACTIONS(1934), + [anon_sym_export_DASHenv] = ACTIONS(1934), + [anon_sym_extern] = ACTIONS(1934), + [anon_sym_module] = ACTIONS(1934), + [anon_sym_use] = ACTIONS(1934), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_COMMA] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1934), + [anon_sym_error] = ACTIONS(1934), + [anon_sym_DASH2] = ACTIONS(1934), + [anon_sym_break] = ACTIONS(1934), + [anon_sym_continue] = ACTIONS(1934), + [anon_sym_for] = ACTIONS(1934), + [anon_sym_in2] = ACTIONS(1934), + [anon_sym_loop] = ACTIONS(1934), + [anon_sym_make] = ACTIONS(1934), + [anon_sym_while] = ACTIONS(1934), + [anon_sym_do] = ACTIONS(1934), + [anon_sym_if] = ACTIONS(1934), + [anon_sym_else] = ACTIONS(1934), + [anon_sym_match] = ACTIONS(1934), + [anon_sym_RBRACE] = ACTIONS(1934), + [anon_sym_try] = ACTIONS(1934), + [anon_sym_catch] = ACTIONS(1934), + [anon_sym_return] = ACTIONS(1934), + [anon_sym_source] = ACTIONS(1934), + [anon_sym_source_DASHenv] = ACTIONS(1934), + [anon_sym_hide] = ACTIONS(1934), + [anon_sym_hide_DASHenv] = ACTIONS(1934), + [anon_sym_overlay] = ACTIONS(1934), + [anon_sym_as] = ACTIONS(1934), + [anon_sym_LPAREN2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(1934), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1934), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1934), + [aux_sym__val_number_decimal_token1] = ACTIONS(1934), + [aux_sym__val_number_decimal_token2] = ACTIONS(1934), + [aux_sym__val_number_decimal_token3] = ACTIONS(1934), + [aux_sym__val_number_decimal_token4] = ACTIONS(1934), + [aux_sym__val_number_token1] = ACTIONS(1934), + [aux_sym__val_number_token2] = ACTIONS(1934), + [aux_sym__val_number_token3] = ACTIONS(1934), + [aux_sym__val_number_token4] = ACTIONS(1934), + [aux_sym__val_number_token5] = ACTIONS(1934), + [aux_sym__val_number_token6] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1934), + [sym__str_single_quotes] = ACTIONS(1934), + [sym__str_back_ticks] = ACTIONS(1934), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1934), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1934), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1934), + [sym__entry_separator] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1934), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1940), + }, + [492] = { + [sym__expr_parenthesized_immediate] = STATE(7374), + [sym_comment] = STATE(492), + [anon_sym_export] = ACTIONS(2108), + [anon_sym_alias] = ACTIONS(2108), + [anon_sym_let] = ACTIONS(2108), + [anon_sym_let_DASHenv] = ACTIONS(2108), + [anon_sym_mut] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [aux_sym_cmd_identifier_token1] = ACTIONS(2108), + [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(2108), + [aux_sym_cmd_identifier_token9] = ACTIONS(2108), + [aux_sym_cmd_identifier_token10] = ACTIONS(2108), + [aux_sym_cmd_identifier_token11] = ACTIONS(2108), + [aux_sym_cmd_identifier_token12] = ACTIONS(2108), + [aux_sym_cmd_identifier_token13] = ACTIONS(2108), + [aux_sym_cmd_identifier_token14] = ACTIONS(2108), + [aux_sym_cmd_identifier_token15] = ACTIONS(2108), + [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(2108), + [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(2108), + [aux_sym_cmd_identifier_token39] = ACTIONS(2108), + [aux_sym_cmd_identifier_token40] = ACTIONS(2108), + [anon_sym_def] = ACTIONS(2108), + [anon_sym_export_DASHenv] = ACTIONS(2108), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym_module] = ACTIONS(2108), + [anon_sym_use] = ACTIONS(2108), + [anon_sym_LPAREN] = ACTIONS(2108), + [anon_sym_COMMA] = ACTIONS(2108), + [anon_sym_DOLLAR] = ACTIONS(2108), + [anon_sym_error] = ACTIONS(2108), + [anon_sym_DASH2] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2108), + [anon_sym_continue] = ACTIONS(2108), + [anon_sym_for] = ACTIONS(2108), + [anon_sym_in2] = ACTIONS(2108), + [anon_sym_loop] = ACTIONS(2108), + [anon_sym_make] = ACTIONS(2108), + [anon_sym_while] = ACTIONS(2108), + [anon_sym_do] = ACTIONS(2108), + [anon_sym_if] = ACTIONS(2108), + [anon_sym_else] = ACTIONS(2108), + [anon_sym_match] = ACTIONS(2108), + [anon_sym_RBRACE] = ACTIONS(2108), + [anon_sym_try] = ACTIONS(2108), + [anon_sym_catch] = ACTIONS(2108), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_source] = ACTIONS(2108), + [anon_sym_source_DASHenv] = ACTIONS(2108), + [anon_sym_hide] = ACTIONS(2108), + [anon_sym_hide_DASHenv] = ACTIONS(2108), + [anon_sym_overlay] = ACTIONS(2108), + [anon_sym_as] = ACTIONS(2108), + [anon_sym_LPAREN2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(2108), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2108), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2108), + [aux_sym__val_number_decimal_token1] = ACTIONS(2108), + [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(2108), + [aux_sym__val_number_token5] = ACTIONS(2108), + [aux_sym__val_number_token6] = ACTIONS(2108), + [anon_sym_DQUOTE] = ACTIONS(2108), + [sym__str_single_quotes] = ACTIONS(2108), + [sym__str_back_ticks] = ACTIONS(2108), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2108), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2108), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2108), + [sym__entry_separator] = ACTIONS(2110), + [anon_sym_register] = ACTIONS(2108), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2110), + }, + [493] = { + [sym_comment] = STATE(493), + [anon_sym_export] = ACTIONS(1987), + [anon_sym_alias] = ACTIONS(1987), + [anon_sym_let] = ACTIONS(1987), + [anon_sym_let_DASHenv] = ACTIONS(1987), + [anon_sym_mut] = ACTIONS(1987), + [anon_sym_const] = ACTIONS(1987), + [aux_sym_cmd_identifier_token1] = ACTIONS(1987), [aux_sym_cmd_identifier_token2] = ACTIONS(1989), [aux_sym_cmd_identifier_token3] = ACTIONS(1989), [aux_sym_cmd_identifier_token4] = ACTIONS(1989), [aux_sym_cmd_identifier_token5] = ACTIONS(1989), [aux_sym_cmd_identifier_token6] = ACTIONS(1989), [aux_sym_cmd_identifier_token7] = ACTIONS(1989), - [aux_sym_cmd_identifier_token8] = ACTIONS(1989), - [aux_sym_cmd_identifier_token9] = ACTIONS(1989), + [aux_sym_cmd_identifier_token8] = ACTIONS(1987), + [aux_sym_cmd_identifier_token9] = ACTIONS(1987), [aux_sym_cmd_identifier_token10] = ACTIONS(1989), [aux_sym_cmd_identifier_token11] = ACTIONS(1989), - [aux_sym_cmd_identifier_token12] = ACTIONS(1989), - [aux_sym_cmd_identifier_token13] = ACTIONS(1989), - [aux_sym_cmd_identifier_token14] = ACTIONS(1989), - [aux_sym_cmd_identifier_token15] = ACTIONS(1989), + [aux_sym_cmd_identifier_token12] = ACTIONS(1987), + [aux_sym_cmd_identifier_token13] = ACTIONS(1987), + [aux_sym_cmd_identifier_token14] = ACTIONS(1987), + [aux_sym_cmd_identifier_token15] = ACTIONS(1987), [aux_sym_cmd_identifier_token16] = ACTIONS(1989), [aux_sym_cmd_identifier_token17] = ACTIONS(1989), [aux_sym_cmd_identifier_token18] = ACTIONS(1989), @@ -130654,1016 +128357,3852 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(1989), [aux_sym_cmd_identifier_token32] = ACTIONS(1989), [aux_sym_cmd_identifier_token33] = ACTIONS(1989), - [aux_sym_cmd_identifier_token34] = ACTIONS(1989), + [aux_sym_cmd_identifier_token34] = ACTIONS(1987), [aux_sym_cmd_identifier_token35] = ACTIONS(1989), [aux_sym_cmd_identifier_token36] = ACTIONS(1989), [aux_sym_cmd_identifier_token37] = ACTIONS(1989), - [aux_sym_cmd_identifier_token38] = ACTIONS(1989), + [aux_sym_cmd_identifier_token38] = ACTIONS(1987), [aux_sym_cmd_identifier_token39] = ACTIONS(1989), [aux_sym_cmd_identifier_token40] = ACTIONS(1989), - [anon_sym_def] = ACTIONS(1989), - [anon_sym_export_DASHenv] = ACTIONS(1989), - [anon_sym_extern] = ACTIONS(1989), - [anon_sym_module] = ACTIONS(1989), - [anon_sym_use] = ACTIONS(1989), + [anon_sym_def] = ACTIONS(1987), + [anon_sym_export_DASHenv] = ACTIONS(1987), + [anon_sym_extern] = ACTIONS(1987), + [anon_sym_module] = ACTIONS(1987), + [anon_sym_use] = ACTIONS(1987), [anon_sym_LPAREN] = ACTIONS(1989), [anon_sym_COMMA] = ACTIONS(1989), - [anon_sym_DOLLAR] = ACTIONS(1989), - [anon_sym_error] = ACTIONS(1989), - [anon_sym_DASH2] = ACTIONS(1989), - [anon_sym_break] = ACTIONS(1989), - [anon_sym_continue] = ACTIONS(1989), - [anon_sym_for] = ACTIONS(1989), - [anon_sym_in2] = ACTIONS(1989), - [anon_sym_loop] = ACTIONS(1989), - [anon_sym_make] = ACTIONS(1989), - [anon_sym_while] = ACTIONS(1989), - [anon_sym_do] = ACTIONS(1989), - [anon_sym_if] = ACTIONS(1989), - [anon_sym_else] = ACTIONS(1989), - [anon_sym_match] = ACTIONS(1989), + [anon_sym_DOLLAR] = ACTIONS(1987), + [anon_sym_error] = ACTIONS(1987), + [anon_sym_DASH2] = ACTIONS(1987), + [anon_sym_break] = ACTIONS(1987), + [anon_sym_continue] = ACTIONS(1987), + [anon_sym_for] = ACTIONS(1987), + [anon_sym_in2] = ACTIONS(1987), + [anon_sym_loop] = ACTIONS(1987), + [anon_sym_make] = ACTIONS(1987), + [anon_sym_while] = ACTIONS(1987), + [anon_sym_do] = ACTIONS(1987), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_else] = ACTIONS(1987), + [anon_sym_match] = ACTIONS(1987), [anon_sym_RBRACE] = ACTIONS(1989), - [anon_sym_try] = ACTIONS(1989), - [anon_sym_catch] = ACTIONS(1989), - [anon_sym_return] = ACTIONS(1989), - [anon_sym_source] = ACTIONS(1989), - [anon_sym_source_DASHenv] = ACTIONS(1989), - [anon_sym_hide] = ACTIONS(1989), - [anon_sym_hide_DASHenv] = ACTIONS(1989), - [anon_sym_overlay] = ACTIONS(1989), - [anon_sym_as] = ACTIONS(1989), - [anon_sym_LPAREN2] = ACTIONS(1581), - [anon_sym_PLUS2] = ACTIONS(1989), + [anon_sym_try] = ACTIONS(1987), + [anon_sym_catch] = ACTIONS(1987), + [anon_sym_return] = ACTIONS(1987), + [anon_sym_source] = ACTIONS(1987), + [anon_sym_source_DASHenv] = ACTIONS(1987), + [anon_sym_hide] = ACTIONS(1987), + [anon_sym_hide_DASHenv] = ACTIONS(1987), + [anon_sym_overlay] = ACTIONS(1987), + [anon_sym_as] = ACTIONS(1987), + [anon_sym_PLUS2] = ACTIONS(1987), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1989), + [anon_sym_DOT_DOT2] = ACTIONS(1987), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1989), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1989), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1989), - [aux_sym__val_number_decimal_token1] = ACTIONS(1989), + [aux_sym__val_number_decimal_token1] = ACTIONS(1987), [aux_sym__val_number_decimal_token2] = ACTIONS(1989), [aux_sym__val_number_decimal_token3] = ACTIONS(1989), [aux_sym__val_number_decimal_token4] = ACTIONS(1989), [aux_sym__val_number_token1] = ACTIONS(1989), [aux_sym__val_number_token2] = ACTIONS(1989), [aux_sym__val_number_token3] = ACTIONS(1989), - [aux_sym__val_number_token4] = ACTIONS(1989), - [aux_sym__val_number_token5] = ACTIONS(1989), - [aux_sym__val_number_token6] = ACTIONS(1989), + [aux_sym__val_number_token4] = ACTIONS(1987), + [aux_sym__val_number_token5] = ACTIONS(1987), + [aux_sym__val_number_token6] = ACTIONS(1987), [anon_sym_DQUOTE] = ACTIONS(1989), [sym__str_single_quotes] = ACTIONS(1989), [sym__str_back_ticks] = ACTIONS(1989), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1989), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1989), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1989), - [sym__entry_separator] = ACTIONS(1991), - [anon_sym_register] = ACTIONS(1989), + [anon_sym_register] = ACTIONS(1987), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1989), + }, + [494] = { + [sym_comment] = STATE(494), + [anon_sym_export] = ACTIONS(1993), + [anon_sym_alias] = ACTIONS(1993), + [anon_sym_let] = ACTIONS(1993), + [anon_sym_let_DASHenv] = ACTIONS(1993), + [anon_sym_mut] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1993), + [aux_sym_cmd_identifier_token1] = ACTIONS(1993), + [aux_sym_cmd_identifier_token2] = ACTIONS(1995), + [aux_sym_cmd_identifier_token3] = ACTIONS(1995), + [aux_sym_cmd_identifier_token4] = ACTIONS(1995), + [aux_sym_cmd_identifier_token5] = ACTIONS(1995), + [aux_sym_cmd_identifier_token6] = ACTIONS(1995), + [aux_sym_cmd_identifier_token7] = ACTIONS(1995), + [aux_sym_cmd_identifier_token8] = ACTIONS(1993), + [aux_sym_cmd_identifier_token9] = ACTIONS(1993), + [aux_sym_cmd_identifier_token10] = ACTIONS(1995), + [aux_sym_cmd_identifier_token11] = ACTIONS(1995), + [aux_sym_cmd_identifier_token12] = ACTIONS(1993), + [aux_sym_cmd_identifier_token13] = ACTIONS(1993), + [aux_sym_cmd_identifier_token14] = ACTIONS(1993), + [aux_sym_cmd_identifier_token15] = ACTIONS(1993), + [aux_sym_cmd_identifier_token16] = ACTIONS(1995), + [aux_sym_cmd_identifier_token17] = ACTIONS(1995), + [aux_sym_cmd_identifier_token18] = ACTIONS(1995), + [aux_sym_cmd_identifier_token19] = ACTIONS(1995), + [aux_sym_cmd_identifier_token20] = ACTIONS(1995), + [aux_sym_cmd_identifier_token21] = ACTIONS(1995), + [aux_sym_cmd_identifier_token22] = ACTIONS(1995), + [aux_sym_cmd_identifier_token23] = ACTIONS(1995), + [aux_sym_cmd_identifier_token24] = ACTIONS(1995), + [aux_sym_cmd_identifier_token25] = ACTIONS(1995), + [aux_sym_cmd_identifier_token26] = ACTIONS(1995), + [aux_sym_cmd_identifier_token27] = ACTIONS(1995), + [aux_sym_cmd_identifier_token28] = ACTIONS(1995), + [aux_sym_cmd_identifier_token29] = ACTIONS(1995), + [aux_sym_cmd_identifier_token30] = ACTIONS(1995), + [aux_sym_cmd_identifier_token31] = ACTIONS(1995), + [aux_sym_cmd_identifier_token32] = ACTIONS(1995), + [aux_sym_cmd_identifier_token33] = ACTIONS(1995), + [aux_sym_cmd_identifier_token34] = ACTIONS(1993), + [aux_sym_cmd_identifier_token35] = ACTIONS(1995), + [aux_sym_cmd_identifier_token36] = ACTIONS(1995), + [aux_sym_cmd_identifier_token37] = ACTIONS(1995), + [aux_sym_cmd_identifier_token38] = ACTIONS(1993), + [aux_sym_cmd_identifier_token39] = ACTIONS(1995), + [aux_sym_cmd_identifier_token40] = ACTIONS(1995), + [anon_sym_def] = ACTIONS(1993), + [anon_sym_export_DASHenv] = ACTIONS(1993), + [anon_sym_extern] = ACTIONS(1993), + [anon_sym_module] = ACTIONS(1993), + [anon_sym_use] = ACTIONS(1993), + [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_COMMA] = ACTIONS(1995), + [anon_sym_DOLLAR] = ACTIONS(1993), + [anon_sym_error] = ACTIONS(1993), + [anon_sym_DASH2] = ACTIONS(1993), + [anon_sym_break] = ACTIONS(1993), + [anon_sym_continue] = ACTIONS(1993), + [anon_sym_for] = ACTIONS(1993), + [anon_sym_in2] = ACTIONS(1993), + [anon_sym_loop] = ACTIONS(1993), + [anon_sym_make] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1993), + [anon_sym_do] = ACTIONS(1993), + [anon_sym_if] = ACTIONS(1993), + [anon_sym_else] = ACTIONS(1993), + [anon_sym_match] = ACTIONS(1993), + [anon_sym_RBRACE] = ACTIONS(1995), + [anon_sym_try] = ACTIONS(1993), + [anon_sym_catch] = ACTIONS(1993), + [anon_sym_return] = ACTIONS(1993), + [anon_sym_source] = ACTIONS(1993), + [anon_sym_source_DASHenv] = ACTIONS(1993), + [anon_sym_hide] = ACTIONS(1993), + [anon_sym_hide_DASHenv] = ACTIONS(1993), + [anon_sym_overlay] = ACTIONS(1993), + [anon_sym_as] = ACTIONS(1993), + [anon_sym_PLUS2] = ACTIONS(1993), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1995), + [anon_sym_DOT_DOT2] = ACTIONS(1993), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1995), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1995), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1995), + [aux_sym__val_number_decimal_token1] = ACTIONS(1993), + [aux_sym__val_number_decimal_token2] = ACTIONS(1995), + [aux_sym__val_number_decimal_token3] = ACTIONS(1995), + [aux_sym__val_number_decimal_token4] = ACTIONS(1995), + [aux_sym__val_number_token1] = ACTIONS(1995), + [aux_sym__val_number_token2] = ACTIONS(1995), + [aux_sym__val_number_token3] = ACTIONS(1995), + [aux_sym__val_number_token4] = ACTIONS(1993), + [aux_sym__val_number_token5] = ACTIONS(1993), + [aux_sym__val_number_token6] = ACTIONS(1993), + [anon_sym_DQUOTE] = ACTIONS(1995), + [sym__str_single_quotes] = ACTIONS(1995), + [sym__str_back_ticks] = ACTIONS(1995), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1995), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1995), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1995), + [anon_sym_register] = ACTIONS(1993), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1995), + }, + [495] = { + [sym__expr_parenthesized_immediate] = STATE(7374), + [sym_comment] = STATE(495), + [anon_sym_export] = ACTIONS(2112), + [anon_sym_alias] = ACTIONS(2112), + [anon_sym_let] = ACTIONS(2112), + [anon_sym_let_DASHenv] = ACTIONS(2112), + [anon_sym_mut] = ACTIONS(2112), + [anon_sym_const] = ACTIONS(2112), + [aux_sym_cmd_identifier_token1] = ACTIONS(2112), + [aux_sym_cmd_identifier_token2] = ACTIONS(2112), + [aux_sym_cmd_identifier_token3] = ACTIONS(2112), + [aux_sym_cmd_identifier_token4] = ACTIONS(2112), + [aux_sym_cmd_identifier_token5] = ACTIONS(2112), + [aux_sym_cmd_identifier_token6] = ACTIONS(2112), + [aux_sym_cmd_identifier_token7] = ACTIONS(2112), + [aux_sym_cmd_identifier_token8] = ACTIONS(2112), + [aux_sym_cmd_identifier_token9] = ACTIONS(2112), + [aux_sym_cmd_identifier_token10] = ACTIONS(2112), + [aux_sym_cmd_identifier_token11] = ACTIONS(2112), + [aux_sym_cmd_identifier_token12] = ACTIONS(2112), + [aux_sym_cmd_identifier_token13] = ACTIONS(2112), + [aux_sym_cmd_identifier_token14] = ACTIONS(2112), + [aux_sym_cmd_identifier_token15] = ACTIONS(2112), + [aux_sym_cmd_identifier_token16] = ACTIONS(2112), + [aux_sym_cmd_identifier_token17] = ACTIONS(2112), + [aux_sym_cmd_identifier_token18] = ACTIONS(2112), + [aux_sym_cmd_identifier_token19] = ACTIONS(2112), + [aux_sym_cmd_identifier_token20] = ACTIONS(2112), + [aux_sym_cmd_identifier_token21] = ACTIONS(2112), + [aux_sym_cmd_identifier_token22] = ACTIONS(2112), + [aux_sym_cmd_identifier_token23] = ACTIONS(2112), + [aux_sym_cmd_identifier_token24] = ACTIONS(2112), + [aux_sym_cmd_identifier_token25] = ACTIONS(2112), + [aux_sym_cmd_identifier_token26] = ACTIONS(2112), + [aux_sym_cmd_identifier_token27] = ACTIONS(2112), + [aux_sym_cmd_identifier_token28] = ACTIONS(2112), + [aux_sym_cmd_identifier_token29] = ACTIONS(2112), + [aux_sym_cmd_identifier_token30] = ACTIONS(2112), + [aux_sym_cmd_identifier_token31] = ACTIONS(2112), + [aux_sym_cmd_identifier_token32] = ACTIONS(2112), + [aux_sym_cmd_identifier_token33] = ACTIONS(2112), + [aux_sym_cmd_identifier_token34] = ACTIONS(2112), + [aux_sym_cmd_identifier_token35] = ACTIONS(2112), + [aux_sym_cmd_identifier_token36] = ACTIONS(2112), + [aux_sym_cmd_identifier_token37] = ACTIONS(2112), + [aux_sym_cmd_identifier_token38] = ACTIONS(2112), + [aux_sym_cmd_identifier_token39] = ACTIONS(2112), + [aux_sym_cmd_identifier_token40] = ACTIONS(2112), + [anon_sym_def] = ACTIONS(2112), + [anon_sym_export_DASHenv] = ACTIONS(2112), + [anon_sym_extern] = ACTIONS(2112), + [anon_sym_module] = ACTIONS(2112), + [anon_sym_use] = ACTIONS(2112), + [anon_sym_LPAREN] = ACTIONS(2112), + [anon_sym_COMMA] = ACTIONS(2112), + [anon_sym_DOLLAR] = ACTIONS(2112), + [anon_sym_error] = ACTIONS(2112), + [anon_sym_DASH2] = ACTIONS(2112), + [anon_sym_break] = ACTIONS(2112), + [anon_sym_continue] = ACTIONS(2112), + [anon_sym_for] = ACTIONS(2112), + [anon_sym_in2] = ACTIONS(2112), + [anon_sym_loop] = ACTIONS(2112), + [anon_sym_make] = ACTIONS(2112), + [anon_sym_while] = ACTIONS(2112), + [anon_sym_do] = ACTIONS(2112), + [anon_sym_if] = ACTIONS(2112), + [anon_sym_else] = ACTIONS(2112), + [anon_sym_match] = ACTIONS(2112), + [anon_sym_RBRACE] = ACTIONS(2112), + [anon_sym_try] = ACTIONS(2112), + [anon_sym_catch] = ACTIONS(2112), + [anon_sym_return] = ACTIONS(2112), + [anon_sym_source] = ACTIONS(2112), + [anon_sym_source_DASHenv] = ACTIONS(2112), + [anon_sym_hide] = ACTIONS(2112), + [anon_sym_hide_DASHenv] = ACTIONS(2112), + [anon_sym_overlay] = ACTIONS(2112), + [anon_sym_as] = ACTIONS(2112), + [anon_sym_LPAREN2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(2112), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2112), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2112), + [aux_sym__val_number_decimal_token1] = ACTIONS(2112), + [aux_sym__val_number_decimal_token2] = ACTIONS(2112), + [aux_sym__val_number_decimal_token3] = ACTIONS(2112), + [aux_sym__val_number_decimal_token4] = ACTIONS(2112), + [aux_sym__val_number_token1] = ACTIONS(2112), + [aux_sym__val_number_token2] = ACTIONS(2112), + [aux_sym__val_number_token3] = ACTIONS(2112), + [aux_sym__val_number_token4] = ACTIONS(2112), + [aux_sym__val_number_token5] = ACTIONS(2112), + [aux_sym__val_number_token6] = ACTIONS(2112), + [anon_sym_DQUOTE] = ACTIONS(2112), + [sym__str_single_quotes] = ACTIONS(2112), + [sym__str_back_ticks] = ACTIONS(2112), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2112), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2112), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2112), + [sym__entry_separator] = ACTIONS(2114), + [anon_sym_register] = ACTIONS(2112), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2114), + }, + [496] = { + [sym_comment] = STATE(496), + [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(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(998), + [aux_sym_cmd_identifier_token9] = ACTIONS(998), + [aux_sym_cmd_identifier_token10] = ACTIONS(994), + [aux_sym_cmd_identifier_token11] = ACTIONS(994), + [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(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(998), + [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(998), + [aux_sym_cmd_identifier_token39] = ACTIONS(994), + [aux_sym_cmd_identifier_token40] = ACTIONS(994), + [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(994), + [anon_sym_COMMA] = ACTIONS(994), + [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(994), + [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_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(994), + [anon_sym_DOT_DOT2] = ACTIONS(2116), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2118), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2118), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(994), + [aux_sym__val_number_decimal_token1] = ACTIONS(998), + [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(998), + [aux_sym__val_number_token5] = ACTIONS(998), + [aux_sym__val_number_token6] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym__str_single_quotes] = ACTIONS(994), + [sym__str_back_ticks] = ACTIONS(994), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(994), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(994), + [anon_sym_register] = ACTIONS(998), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(994), + }, + [497] = { + [sym_comment] = STATE(497), + [anon_sym_export] = ACTIONS(1805), + [anon_sym_alias] = ACTIONS(1805), + [anon_sym_let] = ACTIONS(1805), + [anon_sym_let_DASHenv] = ACTIONS(1805), + [anon_sym_mut] = ACTIONS(1805), + [anon_sym_const] = ACTIONS(1805), + [aux_sym_cmd_identifier_token1] = ACTIONS(1805), + [aux_sym_cmd_identifier_token2] = ACTIONS(1805), + [aux_sym_cmd_identifier_token3] = ACTIONS(1805), + [aux_sym_cmd_identifier_token4] = ACTIONS(1805), + [aux_sym_cmd_identifier_token5] = ACTIONS(1805), + [aux_sym_cmd_identifier_token6] = ACTIONS(1805), + [aux_sym_cmd_identifier_token7] = ACTIONS(1805), + [aux_sym_cmd_identifier_token8] = ACTIONS(1805), + [aux_sym_cmd_identifier_token9] = ACTIONS(1805), + [aux_sym_cmd_identifier_token10] = ACTIONS(1805), + [aux_sym_cmd_identifier_token11] = ACTIONS(1805), + [aux_sym_cmd_identifier_token12] = ACTIONS(1805), + [aux_sym_cmd_identifier_token13] = ACTIONS(1805), + [aux_sym_cmd_identifier_token14] = ACTIONS(1805), + [aux_sym_cmd_identifier_token15] = ACTIONS(1805), + [aux_sym_cmd_identifier_token16] = ACTIONS(1805), + [aux_sym_cmd_identifier_token17] = ACTIONS(1805), + [aux_sym_cmd_identifier_token18] = ACTIONS(1805), + [aux_sym_cmd_identifier_token19] = ACTIONS(1805), + [aux_sym_cmd_identifier_token20] = ACTIONS(1805), + [aux_sym_cmd_identifier_token21] = ACTIONS(1805), + [aux_sym_cmd_identifier_token22] = ACTIONS(1805), + [aux_sym_cmd_identifier_token23] = ACTIONS(1805), + [aux_sym_cmd_identifier_token24] = ACTIONS(1805), + [aux_sym_cmd_identifier_token25] = ACTIONS(1805), + [aux_sym_cmd_identifier_token26] = ACTIONS(1805), + [aux_sym_cmd_identifier_token27] = ACTIONS(1805), + [aux_sym_cmd_identifier_token28] = ACTIONS(1805), + [aux_sym_cmd_identifier_token29] = ACTIONS(1805), + [aux_sym_cmd_identifier_token30] = ACTIONS(1805), + [aux_sym_cmd_identifier_token31] = ACTIONS(1805), + [aux_sym_cmd_identifier_token32] = ACTIONS(1805), + [aux_sym_cmd_identifier_token33] = ACTIONS(1805), + [aux_sym_cmd_identifier_token34] = ACTIONS(1805), + [aux_sym_cmd_identifier_token35] = ACTIONS(1805), + [aux_sym_cmd_identifier_token36] = ACTIONS(1805), + [aux_sym_cmd_identifier_token37] = ACTIONS(1805), + [aux_sym_cmd_identifier_token38] = ACTIONS(1805), + [aux_sym_cmd_identifier_token39] = ACTIONS(1805), + [aux_sym_cmd_identifier_token40] = ACTIONS(1805), + [anon_sym_def] = ACTIONS(1805), + [anon_sym_export_DASHenv] = ACTIONS(1805), + [anon_sym_extern] = ACTIONS(1805), + [anon_sym_module] = ACTIONS(1805), + [anon_sym_use] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1805), + [anon_sym_COMMA] = ACTIONS(1805), + [anon_sym_DOLLAR] = ACTIONS(1805), + [anon_sym_error] = ACTIONS(1805), + [anon_sym_DASH2] = ACTIONS(1805), + [anon_sym_break] = ACTIONS(1805), + [anon_sym_continue] = ACTIONS(1805), + [anon_sym_for] = ACTIONS(1805), + [anon_sym_in2] = ACTIONS(1805), + [anon_sym_loop] = ACTIONS(1805), + [anon_sym_make] = ACTIONS(1805), + [anon_sym_while] = ACTIONS(1805), + [anon_sym_do] = ACTIONS(1805), + [anon_sym_if] = ACTIONS(1805), + [anon_sym_else] = ACTIONS(1805), + [anon_sym_match] = ACTIONS(1805), + [anon_sym_RBRACE] = ACTIONS(1805), + [anon_sym_try] = ACTIONS(1805), + [anon_sym_catch] = ACTIONS(1805), + [anon_sym_return] = ACTIONS(1805), + [anon_sym_source] = ACTIONS(1805), + [anon_sym_source_DASHenv] = ACTIONS(1805), + [anon_sym_hide] = ACTIONS(1805), + [anon_sym_hide_DASHenv] = ACTIONS(1805), + [anon_sym_overlay] = ACTIONS(1805), + [anon_sym_as] = ACTIONS(1805), + [anon_sym_LPAREN2] = ACTIONS(1807), + [anon_sym_PLUS2] = ACTIONS(1805), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1805), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1805), + [aux_sym__val_number_decimal_token1] = ACTIONS(1805), + [aux_sym__val_number_decimal_token2] = ACTIONS(1805), + [aux_sym__val_number_decimal_token3] = ACTIONS(1805), + [aux_sym__val_number_decimal_token4] = ACTIONS(1805), + [aux_sym__val_number_token1] = ACTIONS(1805), + [aux_sym__val_number_token2] = ACTIONS(1805), + [aux_sym__val_number_token3] = ACTIONS(1805), + [aux_sym__val_number_token4] = ACTIONS(1805), + [aux_sym__val_number_token5] = ACTIONS(1805), + [aux_sym__val_number_token6] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1805), + [sym__str_single_quotes] = ACTIONS(1805), + [sym__str_back_ticks] = ACTIONS(1805), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1805), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1805), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1805), + [sym__entry_separator] = ACTIONS(1813), + [anon_sym_register] = ACTIONS(1805), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1447), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1813), + }, + [498] = { + [sym__expr_parenthesized_immediate] = STATE(7374), + [sym_comment] = STATE(498), + [anon_sym_export] = ACTIONS(2120), + [anon_sym_alias] = ACTIONS(2120), + [anon_sym_let] = ACTIONS(2120), + [anon_sym_let_DASHenv] = ACTIONS(2120), + [anon_sym_mut] = ACTIONS(2120), + [anon_sym_const] = ACTIONS(2120), + [aux_sym_cmd_identifier_token1] = ACTIONS(2120), + [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(2120), + [aux_sym_cmd_identifier_token9] = ACTIONS(2120), + [aux_sym_cmd_identifier_token10] = ACTIONS(2120), + [aux_sym_cmd_identifier_token11] = ACTIONS(2120), + [aux_sym_cmd_identifier_token12] = ACTIONS(2120), + [aux_sym_cmd_identifier_token13] = ACTIONS(2120), + [aux_sym_cmd_identifier_token14] = ACTIONS(2120), + [aux_sym_cmd_identifier_token15] = ACTIONS(2120), + [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(2120), + [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(2120), + [aux_sym_cmd_identifier_token39] = ACTIONS(2120), + [aux_sym_cmd_identifier_token40] = ACTIONS(2120), + [anon_sym_def] = ACTIONS(2120), + [anon_sym_export_DASHenv] = ACTIONS(2120), + [anon_sym_extern] = ACTIONS(2120), + [anon_sym_module] = ACTIONS(2120), + [anon_sym_use] = ACTIONS(2120), + [anon_sym_LPAREN] = ACTIONS(2120), + [anon_sym_COMMA] = ACTIONS(2120), + [anon_sym_DOLLAR] = ACTIONS(2120), + [anon_sym_error] = ACTIONS(2120), + [anon_sym_DASH2] = ACTIONS(2120), + [anon_sym_break] = ACTIONS(2120), + [anon_sym_continue] = ACTIONS(2120), + [anon_sym_for] = ACTIONS(2120), + [anon_sym_in2] = ACTIONS(2120), + [anon_sym_loop] = ACTIONS(2120), + [anon_sym_make] = ACTIONS(2120), + [anon_sym_while] = ACTIONS(2120), + [anon_sym_do] = ACTIONS(2120), + [anon_sym_if] = ACTIONS(2120), + [anon_sym_else] = ACTIONS(2120), + [anon_sym_match] = ACTIONS(2120), + [anon_sym_RBRACE] = ACTIONS(2120), + [anon_sym_try] = ACTIONS(2120), + [anon_sym_catch] = ACTIONS(2120), + [anon_sym_return] = ACTIONS(2120), + [anon_sym_source] = ACTIONS(2120), + [anon_sym_source_DASHenv] = ACTIONS(2120), + [anon_sym_hide] = ACTIONS(2120), + [anon_sym_hide_DASHenv] = ACTIONS(2120), + [anon_sym_overlay] = ACTIONS(2120), + [anon_sym_as] = ACTIONS(2120), + [anon_sym_LPAREN2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(2120), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2120), + [aux_sym__val_number_decimal_token1] = ACTIONS(2120), + [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_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_DOT_DOT_DOT_LBRACE] = ACTIONS(2120), + [sym__entry_separator] = ACTIONS(2122), + [anon_sym_register] = ACTIONS(2120), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2122), + }, + [499] = { + [sym__expr_parenthesized_immediate] = STATE(7374), + [sym_comment] = STATE(499), + [anon_sym_export] = ACTIONS(2124), + [anon_sym_alias] = ACTIONS(2124), + [anon_sym_let] = ACTIONS(2124), + [anon_sym_let_DASHenv] = ACTIONS(2124), + [anon_sym_mut] = ACTIONS(2124), + [anon_sym_const] = ACTIONS(2124), + [aux_sym_cmd_identifier_token1] = ACTIONS(2124), + [aux_sym_cmd_identifier_token2] = ACTIONS(2124), + [aux_sym_cmd_identifier_token3] = ACTIONS(2124), + [aux_sym_cmd_identifier_token4] = ACTIONS(2124), + [aux_sym_cmd_identifier_token5] = ACTIONS(2124), + [aux_sym_cmd_identifier_token6] = ACTIONS(2124), + [aux_sym_cmd_identifier_token7] = ACTIONS(2124), + [aux_sym_cmd_identifier_token8] = ACTIONS(2124), + [aux_sym_cmd_identifier_token9] = ACTIONS(2124), + [aux_sym_cmd_identifier_token10] = ACTIONS(2124), + [aux_sym_cmd_identifier_token11] = ACTIONS(2124), + [aux_sym_cmd_identifier_token12] = ACTIONS(2124), + [aux_sym_cmd_identifier_token13] = ACTIONS(2124), + [aux_sym_cmd_identifier_token14] = ACTIONS(2124), + [aux_sym_cmd_identifier_token15] = ACTIONS(2124), + [aux_sym_cmd_identifier_token16] = ACTIONS(2124), + [aux_sym_cmd_identifier_token17] = ACTIONS(2124), + [aux_sym_cmd_identifier_token18] = ACTIONS(2124), + [aux_sym_cmd_identifier_token19] = ACTIONS(2124), + [aux_sym_cmd_identifier_token20] = ACTIONS(2124), + [aux_sym_cmd_identifier_token21] = ACTIONS(2124), + [aux_sym_cmd_identifier_token22] = ACTIONS(2124), + [aux_sym_cmd_identifier_token23] = ACTIONS(2124), + [aux_sym_cmd_identifier_token24] = ACTIONS(2124), + [aux_sym_cmd_identifier_token25] = ACTIONS(2124), + [aux_sym_cmd_identifier_token26] = ACTIONS(2124), + [aux_sym_cmd_identifier_token27] = ACTIONS(2124), + [aux_sym_cmd_identifier_token28] = ACTIONS(2124), + [aux_sym_cmd_identifier_token29] = ACTIONS(2124), + [aux_sym_cmd_identifier_token30] = ACTIONS(2124), + [aux_sym_cmd_identifier_token31] = ACTIONS(2124), + [aux_sym_cmd_identifier_token32] = ACTIONS(2124), + [aux_sym_cmd_identifier_token33] = ACTIONS(2124), + [aux_sym_cmd_identifier_token34] = ACTIONS(2124), + [aux_sym_cmd_identifier_token35] = ACTIONS(2124), + [aux_sym_cmd_identifier_token36] = ACTIONS(2124), + [aux_sym_cmd_identifier_token37] = ACTIONS(2124), + [aux_sym_cmd_identifier_token38] = ACTIONS(2124), + [aux_sym_cmd_identifier_token39] = ACTIONS(2124), + [aux_sym_cmd_identifier_token40] = ACTIONS(2124), + [anon_sym_def] = ACTIONS(2124), + [anon_sym_export_DASHenv] = ACTIONS(2124), + [anon_sym_extern] = ACTIONS(2124), + [anon_sym_module] = ACTIONS(2124), + [anon_sym_use] = ACTIONS(2124), + [anon_sym_LPAREN] = ACTIONS(2124), + [anon_sym_COMMA] = ACTIONS(2124), + [anon_sym_DOLLAR] = ACTIONS(2124), + [anon_sym_error] = ACTIONS(2124), + [anon_sym_DASH2] = ACTIONS(2124), + [anon_sym_break] = ACTIONS(2124), + [anon_sym_continue] = ACTIONS(2124), + [anon_sym_for] = ACTIONS(2124), + [anon_sym_in2] = ACTIONS(2124), + [anon_sym_loop] = ACTIONS(2124), + [anon_sym_make] = ACTIONS(2124), + [anon_sym_while] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2124), + [anon_sym_if] = ACTIONS(2124), + [anon_sym_else] = ACTIONS(2124), + [anon_sym_match] = ACTIONS(2124), + [anon_sym_RBRACE] = ACTIONS(2124), + [anon_sym_try] = ACTIONS(2124), + [anon_sym_catch] = ACTIONS(2124), + [anon_sym_return] = ACTIONS(2124), + [anon_sym_source] = ACTIONS(2124), + [anon_sym_source_DASHenv] = ACTIONS(2124), + [anon_sym_hide] = ACTIONS(2124), + [anon_sym_hide_DASHenv] = ACTIONS(2124), + [anon_sym_overlay] = ACTIONS(2124), + [anon_sym_as] = ACTIONS(2124), + [anon_sym_LPAREN2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(2124), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2124), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2124), + [aux_sym__val_number_decimal_token1] = ACTIONS(2124), + [aux_sym__val_number_decimal_token2] = ACTIONS(2124), + [aux_sym__val_number_decimal_token3] = ACTIONS(2124), + [aux_sym__val_number_decimal_token4] = ACTIONS(2124), + [aux_sym__val_number_token1] = ACTIONS(2124), + [aux_sym__val_number_token2] = ACTIONS(2124), + [aux_sym__val_number_token3] = ACTIONS(2124), + [aux_sym__val_number_token4] = ACTIONS(2124), + [aux_sym__val_number_token5] = ACTIONS(2124), + [aux_sym__val_number_token6] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [sym__str_single_quotes] = ACTIONS(2124), + [sym__str_back_ticks] = ACTIONS(2124), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2124), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2124), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2124), + [sym__entry_separator] = ACTIONS(2126), + [anon_sym_register] = ACTIONS(2124), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2126), + }, + [500] = { + [sym_comment] = STATE(500), + [anon_sym_export] = ACTIONS(2128), + [anon_sym_alias] = ACTIONS(2128), + [anon_sym_let] = ACTIONS(2128), + [anon_sym_let_DASHenv] = ACTIONS(2128), + [anon_sym_mut] = ACTIONS(2128), + [anon_sym_const] = ACTIONS(2128), + [aux_sym_cmd_identifier_token1] = ACTIONS(2128), + [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(2128), + [aux_sym_cmd_identifier_token9] = ACTIONS(2128), + [aux_sym_cmd_identifier_token10] = ACTIONS(2128), + [aux_sym_cmd_identifier_token11] = ACTIONS(2128), + [aux_sym_cmd_identifier_token12] = ACTIONS(2128), + [aux_sym_cmd_identifier_token13] = ACTIONS(2128), + [aux_sym_cmd_identifier_token14] = ACTIONS(2128), + [aux_sym_cmd_identifier_token15] = ACTIONS(2128), + [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(2128), + [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(2128), + [aux_sym_cmd_identifier_token39] = ACTIONS(2128), + [aux_sym_cmd_identifier_token40] = ACTIONS(2128), + [anon_sym_def] = ACTIONS(2128), + [anon_sym_export_DASHenv] = ACTIONS(2128), + [anon_sym_extern] = ACTIONS(2128), + [anon_sym_module] = ACTIONS(2128), + [anon_sym_use] = ACTIONS(2128), + [anon_sym_LPAREN] = ACTIONS(2128), + [anon_sym_COMMA] = ACTIONS(2128), + [anon_sym_DOLLAR] = ACTIONS(2128), + [anon_sym_error] = ACTIONS(2128), + [anon_sym_DASH2] = ACTIONS(2128), + [anon_sym_break] = ACTIONS(2128), + [anon_sym_continue] = ACTIONS(2128), + [anon_sym_for] = ACTIONS(2128), + [anon_sym_in2] = ACTIONS(2128), + [anon_sym_loop] = ACTIONS(2128), + [anon_sym_make] = ACTIONS(2128), + [anon_sym_while] = ACTIONS(2128), + [anon_sym_do] = ACTIONS(2128), + [anon_sym_if] = ACTIONS(2128), + [anon_sym_else] = ACTIONS(2128), + [anon_sym_match] = ACTIONS(2128), + [anon_sym_RBRACE] = ACTIONS(2128), + [anon_sym_try] = ACTIONS(2128), + [anon_sym_catch] = ACTIONS(2128), + [anon_sym_return] = ACTIONS(2128), + [anon_sym_source] = ACTIONS(2128), + [anon_sym_source_DASHenv] = ACTIONS(2128), + [anon_sym_hide] = ACTIONS(2128), + [anon_sym_hide_DASHenv] = ACTIONS(2128), + [anon_sym_overlay] = ACTIONS(2128), + [anon_sym_as] = ACTIONS(2128), + [anon_sym_LPAREN2] = ACTIONS(2070), + [anon_sym_PLUS2] = ACTIONS(2128), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2128), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2128), + [aux_sym__val_number_decimal_token1] = ACTIONS(2128), + [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_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_DOT_DOT_DOT_LBRACE] = ACTIONS(2128), + [sym__entry_separator] = ACTIONS(2130), + [anon_sym_register] = ACTIONS(2128), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2074), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2130), + }, + [501] = { + [sym_comment] = STATE(501), + [anon_sym_export] = ACTIONS(1760), + [anon_sym_alias] = ACTIONS(1760), + [anon_sym_let] = ACTIONS(1760), + [anon_sym_let_DASHenv] = ACTIONS(1760), + [anon_sym_mut] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [aux_sym_cmd_identifier_token1] = ACTIONS(1760), + [aux_sym_cmd_identifier_token2] = ACTIONS(1762), + [aux_sym_cmd_identifier_token3] = ACTIONS(1762), + [aux_sym_cmd_identifier_token4] = ACTIONS(1762), + [aux_sym_cmd_identifier_token5] = ACTIONS(1762), + [aux_sym_cmd_identifier_token6] = ACTIONS(1762), + [aux_sym_cmd_identifier_token7] = ACTIONS(1762), + [aux_sym_cmd_identifier_token8] = ACTIONS(1760), + [aux_sym_cmd_identifier_token9] = ACTIONS(1760), + [aux_sym_cmd_identifier_token10] = ACTIONS(1762), + [aux_sym_cmd_identifier_token11] = ACTIONS(1762), + [aux_sym_cmd_identifier_token12] = ACTIONS(1760), + [aux_sym_cmd_identifier_token13] = ACTIONS(1760), + [aux_sym_cmd_identifier_token14] = ACTIONS(1760), + [aux_sym_cmd_identifier_token15] = ACTIONS(1760), + [aux_sym_cmd_identifier_token16] = ACTIONS(1762), + [aux_sym_cmd_identifier_token17] = ACTIONS(1762), + [aux_sym_cmd_identifier_token18] = ACTIONS(1762), + [aux_sym_cmd_identifier_token19] = ACTIONS(1762), + [aux_sym_cmd_identifier_token20] = ACTIONS(1762), + [aux_sym_cmd_identifier_token21] = ACTIONS(1762), + [aux_sym_cmd_identifier_token22] = ACTIONS(1762), + [aux_sym_cmd_identifier_token23] = ACTIONS(1762), + [aux_sym_cmd_identifier_token24] = ACTIONS(1762), + [aux_sym_cmd_identifier_token25] = ACTIONS(1762), + [aux_sym_cmd_identifier_token26] = ACTIONS(1762), + [aux_sym_cmd_identifier_token27] = ACTIONS(1762), + [aux_sym_cmd_identifier_token28] = ACTIONS(1762), + [aux_sym_cmd_identifier_token29] = ACTIONS(1762), + [aux_sym_cmd_identifier_token30] = ACTIONS(1762), + [aux_sym_cmd_identifier_token31] = ACTIONS(1762), + [aux_sym_cmd_identifier_token32] = ACTIONS(1762), + [aux_sym_cmd_identifier_token33] = ACTIONS(1762), + [aux_sym_cmd_identifier_token34] = ACTIONS(1760), + [aux_sym_cmd_identifier_token35] = ACTIONS(1762), + [aux_sym_cmd_identifier_token36] = ACTIONS(1762), + [aux_sym_cmd_identifier_token37] = ACTIONS(1762), + [aux_sym_cmd_identifier_token38] = ACTIONS(1760), + [aux_sym_cmd_identifier_token39] = ACTIONS(1762), + [aux_sym_cmd_identifier_token40] = ACTIONS(1762), + [anon_sym_def] = ACTIONS(1760), + [anon_sym_export_DASHenv] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym_module] = ACTIONS(1760), + [anon_sym_use] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_error] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_loop] = ACTIONS(1760), + [anon_sym_make] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_do] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_match] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_catch] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_source] = ACTIONS(1760), + [anon_sym_source_DASHenv] = ACTIONS(1760), + [anon_sym_hide] = ACTIONS(1760), + [anon_sym_hide_DASHenv] = ACTIONS(1760), + [anon_sym_overlay] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(2132), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1760), + [aux_sym__val_number_token5] = ACTIONS(1760), + [aux_sym__val_number_token6] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1760), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1762), + }, + [502] = { + [sym_comment] = STATE(502), + [anon_sym_export] = ACTIONS(1701), + [anon_sym_alias] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1701), + [anon_sym_let_DASHenv] = ACTIONS(1701), + [anon_sym_mut] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [aux_sym_cmd_identifier_token1] = ACTIONS(1701), + [aux_sym_cmd_identifier_token2] = ACTIONS(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [aux_sym_cmd_identifier_token12] = ACTIONS(1701), + [aux_sym_cmd_identifier_token13] = ACTIONS(1701), + [aux_sym_cmd_identifier_token14] = ACTIONS(1701), + [aux_sym_cmd_identifier_token15] = ACTIONS(1701), + [aux_sym_cmd_identifier_token16] = ACTIONS(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [aux_sym_cmd_identifier_token37] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [anon_sym_def] = ACTIONS(1701), + [anon_sym_export_DASHenv] = ACTIONS(1701), + [anon_sym_extern] = ACTIONS(1701), + [anon_sym_module] = ACTIONS(1701), + [anon_sym_use] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_COMMA] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = ACTIONS(1701), + [anon_sym_loop] = ACTIONS(1701), + [anon_sym_make] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_do] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_else] = ACTIONS(1701), + [anon_sym_match] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_try] = ACTIONS(1701), + [anon_sym_catch] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_source] = ACTIONS(1701), + [anon_sym_source_DASHenv] = ACTIONS(1701), + [anon_sym_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [503] = { + [sym_comment] = STATE(503), + [anon_sym_export] = ACTIONS(1674), + [anon_sym_alias] = ACTIONS(1674), + [anon_sym_let] = ACTIONS(1674), + [anon_sym_let_DASHenv] = ACTIONS(1674), + [anon_sym_mut] = ACTIONS(1674), + [anon_sym_const] = ACTIONS(1674), + [aux_sym_cmd_identifier_token1] = ACTIONS(1674), + [aux_sym_cmd_identifier_token2] = ACTIONS(1676), + [aux_sym_cmd_identifier_token3] = ACTIONS(1676), + [aux_sym_cmd_identifier_token4] = ACTIONS(1676), + [aux_sym_cmd_identifier_token5] = ACTIONS(1676), + [aux_sym_cmd_identifier_token6] = ACTIONS(1676), + [aux_sym_cmd_identifier_token7] = ACTIONS(1676), + [aux_sym_cmd_identifier_token8] = ACTIONS(1674), + [aux_sym_cmd_identifier_token9] = ACTIONS(1674), + [aux_sym_cmd_identifier_token10] = ACTIONS(1676), + [aux_sym_cmd_identifier_token11] = ACTIONS(1676), + [aux_sym_cmd_identifier_token12] = ACTIONS(1674), + [aux_sym_cmd_identifier_token13] = ACTIONS(1674), + [aux_sym_cmd_identifier_token14] = ACTIONS(1674), + [aux_sym_cmd_identifier_token15] = ACTIONS(1674), + [aux_sym_cmd_identifier_token16] = ACTIONS(1676), + [aux_sym_cmd_identifier_token17] = ACTIONS(1676), + [aux_sym_cmd_identifier_token18] = ACTIONS(1676), + [aux_sym_cmd_identifier_token19] = ACTIONS(1676), + [aux_sym_cmd_identifier_token20] = ACTIONS(1676), + [aux_sym_cmd_identifier_token21] = ACTIONS(1676), + [aux_sym_cmd_identifier_token22] = ACTIONS(1676), + [aux_sym_cmd_identifier_token23] = ACTIONS(1676), + [aux_sym_cmd_identifier_token24] = ACTIONS(1676), + [aux_sym_cmd_identifier_token25] = ACTIONS(1676), + [aux_sym_cmd_identifier_token26] = ACTIONS(1676), + [aux_sym_cmd_identifier_token27] = ACTIONS(1676), + [aux_sym_cmd_identifier_token28] = ACTIONS(1676), + [aux_sym_cmd_identifier_token29] = ACTIONS(1676), + [aux_sym_cmd_identifier_token30] = ACTIONS(1676), + [aux_sym_cmd_identifier_token31] = ACTIONS(1676), + [aux_sym_cmd_identifier_token32] = ACTIONS(1676), + [aux_sym_cmd_identifier_token33] = ACTIONS(1676), + [aux_sym_cmd_identifier_token34] = ACTIONS(1674), + [aux_sym_cmd_identifier_token35] = ACTIONS(1676), + [aux_sym_cmd_identifier_token36] = ACTIONS(1676), + [aux_sym_cmd_identifier_token37] = ACTIONS(1676), + [aux_sym_cmd_identifier_token38] = ACTIONS(1674), + [aux_sym_cmd_identifier_token39] = ACTIONS(1676), + [aux_sym_cmd_identifier_token40] = ACTIONS(1676), + [anon_sym_def] = ACTIONS(1674), + [anon_sym_export_DASHenv] = ACTIONS(1674), + [anon_sym_extern] = ACTIONS(1674), + [anon_sym_module] = ACTIONS(1674), + [anon_sym_use] = ACTIONS(1674), + [anon_sym_LPAREN] = ACTIONS(1676), + [anon_sym_COMMA] = ACTIONS(1676), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_error] = ACTIONS(1674), + [anon_sym_DASH2] = ACTIONS(1674), + [anon_sym_break] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(1674), + [anon_sym_for] = ACTIONS(1674), + [anon_sym_in2] = ACTIONS(1674), + [anon_sym_loop] = ACTIONS(1674), + [anon_sym_make] = ACTIONS(1674), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1674), + [anon_sym_if] = ACTIONS(1674), + [anon_sym_else] = ACTIONS(1674), + [anon_sym_match] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1676), + [anon_sym_try] = ACTIONS(1674), + [anon_sym_catch] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_source] = ACTIONS(1674), + [anon_sym_source_DASHenv] = ACTIONS(1674), + [anon_sym_hide] = ACTIONS(1674), + [anon_sym_hide_DASHenv] = ACTIONS(1674), + [anon_sym_overlay] = ACTIONS(1674), + [anon_sym_as] = ACTIONS(1674), + [anon_sym_PLUS2] = ACTIONS(1674), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1676), + [anon_sym_DOT_DOT2] = ACTIONS(1674), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1676), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1676), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1676), + [aux_sym__val_number_decimal_token1] = ACTIONS(1674), + [aux_sym__val_number_decimal_token2] = ACTIONS(1676), + [aux_sym__val_number_decimal_token3] = ACTIONS(1676), + [aux_sym__val_number_decimal_token4] = ACTIONS(1676), + [aux_sym__val_number_token1] = ACTIONS(1676), + [aux_sym__val_number_token2] = ACTIONS(1676), + [aux_sym__val_number_token3] = ACTIONS(1676), + [aux_sym__val_number_token4] = ACTIONS(1674), + [aux_sym__val_number_token5] = ACTIONS(1674), + [aux_sym__val_number_token6] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1676), + [sym__str_single_quotes] = ACTIONS(1676), + [sym__str_back_ticks] = ACTIONS(1676), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1676), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1674), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1676), + }, + [504] = { + [sym_comment] = STATE(504), + [anon_sym_export] = ACTIONS(2134), + [anon_sym_alias] = ACTIONS(2134), + [anon_sym_let] = ACTIONS(2134), + [anon_sym_let_DASHenv] = ACTIONS(2134), + [anon_sym_mut] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [aux_sym_cmd_identifier_token1] = ACTIONS(2134), + [aux_sym_cmd_identifier_token2] = ACTIONS(2134), + [aux_sym_cmd_identifier_token3] = ACTIONS(2134), + [aux_sym_cmd_identifier_token4] = ACTIONS(2134), + [aux_sym_cmd_identifier_token5] = ACTIONS(2134), + [aux_sym_cmd_identifier_token6] = ACTIONS(2134), + [aux_sym_cmd_identifier_token7] = ACTIONS(2134), + [aux_sym_cmd_identifier_token8] = ACTIONS(2134), + [aux_sym_cmd_identifier_token9] = ACTIONS(2134), + [aux_sym_cmd_identifier_token10] = ACTIONS(2134), + [aux_sym_cmd_identifier_token11] = ACTIONS(2134), + [aux_sym_cmd_identifier_token12] = ACTIONS(2134), + [aux_sym_cmd_identifier_token13] = ACTIONS(2134), + [aux_sym_cmd_identifier_token14] = ACTIONS(2134), + [aux_sym_cmd_identifier_token15] = ACTIONS(2134), + [aux_sym_cmd_identifier_token16] = ACTIONS(2134), + [aux_sym_cmd_identifier_token17] = ACTIONS(2134), + [aux_sym_cmd_identifier_token18] = ACTIONS(2134), + [aux_sym_cmd_identifier_token19] = ACTIONS(2134), + [aux_sym_cmd_identifier_token20] = ACTIONS(2134), + [aux_sym_cmd_identifier_token21] = ACTIONS(2134), + [aux_sym_cmd_identifier_token22] = ACTIONS(2134), + [aux_sym_cmd_identifier_token23] = ACTIONS(2134), + [aux_sym_cmd_identifier_token24] = ACTIONS(2134), + [aux_sym_cmd_identifier_token25] = ACTIONS(2134), + [aux_sym_cmd_identifier_token26] = ACTIONS(2134), + [aux_sym_cmd_identifier_token27] = ACTIONS(2134), + [aux_sym_cmd_identifier_token28] = ACTIONS(2134), + [aux_sym_cmd_identifier_token29] = ACTIONS(2134), + [aux_sym_cmd_identifier_token30] = ACTIONS(2134), + [aux_sym_cmd_identifier_token31] = ACTIONS(2134), + [aux_sym_cmd_identifier_token32] = ACTIONS(2134), + [aux_sym_cmd_identifier_token33] = ACTIONS(2134), + [aux_sym_cmd_identifier_token34] = ACTIONS(2134), + [aux_sym_cmd_identifier_token35] = ACTIONS(2134), + [aux_sym_cmd_identifier_token36] = ACTIONS(2134), + [aux_sym_cmd_identifier_token37] = ACTIONS(2134), + [aux_sym_cmd_identifier_token38] = ACTIONS(2134), + [aux_sym_cmd_identifier_token39] = ACTIONS(2134), + [aux_sym_cmd_identifier_token40] = ACTIONS(2134), + [anon_sym_def] = ACTIONS(2134), + [anon_sym_export_DASHenv] = ACTIONS(2134), + [anon_sym_extern] = ACTIONS(2134), + [anon_sym_module] = ACTIONS(2134), + [anon_sym_use] = ACTIONS(2134), + [anon_sym_LPAREN] = ACTIONS(2134), + [anon_sym_COMMA] = ACTIONS(2134), + [anon_sym_DOLLAR] = ACTIONS(2134), + [anon_sym_error] = ACTIONS(2134), + [anon_sym_DASH2] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_for] = ACTIONS(2134), + [anon_sym_in2] = ACTIONS(2134), + [anon_sym_loop] = ACTIONS(2134), + [anon_sym_make] = ACTIONS(2134), + [anon_sym_while] = ACTIONS(2134), + [anon_sym_do] = ACTIONS(2134), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_else] = ACTIONS(2134), + [anon_sym_match] = ACTIONS(2134), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_try] = ACTIONS(2134), + [anon_sym_catch] = ACTIONS(2134), + [anon_sym_return] = ACTIONS(2134), + [anon_sym_source] = ACTIONS(2134), + [anon_sym_source_DASHenv] = ACTIONS(2134), + [anon_sym_hide] = ACTIONS(2134), + [anon_sym_hide_DASHenv] = ACTIONS(2134), + [anon_sym_overlay] = ACTIONS(2134), + [anon_sym_as] = ACTIONS(2134), + [anon_sym_LPAREN2] = ACTIONS(1784), + [anon_sym_PLUS2] = ACTIONS(2134), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2134), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2134), + [aux_sym__val_number_decimal_token1] = ACTIONS(2134), + [aux_sym__val_number_decimal_token2] = ACTIONS(2134), + [aux_sym__val_number_decimal_token3] = ACTIONS(2134), + [aux_sym__val_number_decimal_token4] = ACTIONS(2134), + [aux_sym__val_number_token1] = ACTIONS(2134), + [aux_sym__val_number_token2] = ACTIONS(2134), + [aux_sym__val_number_token3] = ACTIONS(2134), + [aux_sym__val_number_token4] = ACTIONS(2134), + [aux_sym__val_number_token5] = ACTIONS(2134), + [aux_sym__val_number_token6] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym__str_single_quotes] = ACTIONS(2134), + [sym__str_back_ticks] = ACTIONS(2134), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2134), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2134), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2134), + [sym__entry_separator] = ACTIONS(2136), + [anon_sym_register] = ACTIONS(2134), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1792), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1991), + [sym_raw_string_begin] = ACTIONS(2136), }, [505] = { [sym_comment] = STATE(505), - [anon_sym_export] = ACTIONS(1985), - [anon_sym_alias] = ACTIONS(1985), - [anon_sym_let] = ACTIONS(1985), - [anon_sym_let_DASHenv] = ACTIONS(1985), - [anon_sym_mut] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1985), - [aux_sym_cmd_identifier_token1] = ACTIONS(1985), - [aux_sym_cmd_identifier_token2] = ACTIONS(1987), - [aux_sym_cmd_identifier_token3] = ACTIONS(1987), - [aux_sym_cmd_identifier_token4] = ACTIONS(1987), - [aux_sym_cmd_identifier_token5] = ACTIONS(1987), - [aux_sym_cmd_identifier_token6] = ACTIONS(1987), - [aux_sym_cmd_identifier_token7] = ACTIONS(1987), - [aux_sym_cmd_identifier_token8] = ACTIONS(1985), - [aux_sym_cmd_identifier_token9] = ACTIONS(1985), - [aux_sym_cmd_identifier_token10] = ACTIONS(1987), - [aux_sym_cmd_identifier_token11] = ACTIONS(1987), - [aux_sym_cmd_identifier_token12] = ACTIONS(1985), - [aux_sym_cmd_identifier_token13] = ACTIONS(1985), - [aux_sym_cmd_identifier_token14] = ACTIONS(1985), - [aux_sym_cmd_identifier_token15] = ACTIONS(1985), - [aux_sym_cmd_identifier_token16] = ACTIONS(1987), - [aux_sym_cmd_identifier_token17] = ACTIONS(1987), - [aux_sym_cmd_identifier_token18] = ACTIONS(1987), - [aux_sym_cmd_identifier_token19] = ACTIONS(1987), - [aux_sym_cmd_identifier_token20] = ACTIONS(1987), - [aux_sym_cmd_identifier_token21] = ACTIONS(1987), - [aux_sym_cmd_identifier_token22] = ACTIONS(1987), - [aux_sym_cmd_identifier_token23] = ACTIONS(1987), - [aux_sym_cmd_identifier_token24] = ACTIONS(1987), - [aux_sym_cmd_identifier_token25] = ACTIONS(1987), - [aux_sym_cmd_identifier_token26] = ACTIONS(1987), - [aux_sym_cmd_identifier_token27] = ACTIONS(1987), - [aux_sym_cmd_identifier_token28] = ACTIONS(1987), - [aux_sym_cmd_identifier_token29] = ACTIONS(1987), - [aux_sym_cmd_identifier_token30] = ACTIONS(1987), - [aux_sym_cmd_identifier_token31] = ACTIONS(1987), - [aux_sym_cmd_identifier_token32] = ACTIONS(1987), - [aux_sym_cmd_identifier_token33] = ACTIONS(1987), - [aux_sym_cmd_identifier_token34] = ACTIONS(1985), - [aux_sym_cmd_identifier_token35] = ACTIONS(1987), - [aux_sym_cmd_identifier_token36] = ACTIONS(1987), - [aux_sym_cmd_identifier_token37] = ACTIONS(1987), - [aux_sym_cmd_identifier_token38] = ACTIONS(1985), - [aux_sym_cmd_identifier_token39] = ACTIONS(1987), - [aux_sym_cmd_identifier_token40] = ACTIONS(1987), - [anon_sym_def] = ACTIONS(1985), - [anon_sym_export_DASHenv] = ACTIONS(1985), - [anon_sym_extern] = ACTIONS(1985), - [anon_sym_module] = ACTIONS(1985), - [anon_sym_use] = ACTIONS(1985), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_COMMA] = ACTIONS(1987), - [anon_sym_DOLLAR] = ACTIONS(1985), - [anon_sym_error] = ACTIONS(1985), - [anon_sym_DASH2] = ACTIONS(1985), - [anon_sym_break] = ACTIONS(1985), - [anon_sym_continue] = ACTIONS(1985), - [anon_sym_for] = ACTIONS(1985), - [anon_sym_in2] = ACTIONS(1985), - [anon_sym_loop] = ACTIONS(1985), - [anon_sym_make] = ACTIONS(1985), - [anon_sym_while] = ACTIONS(1985), - [anon_sym_do] = ACTIONS(1985), - [anon_sym_if] = ACTIONS(1985), - [anon_sym_else] = ACTIONS(1985), - [anon_sym_match] = ACTIONS(1985), - [anon_sym_RBRACE] = ACTIONS(1987), - [anon_sym_try] = ACTIONS(1985), - [anon_sym_catch] = ACTIONS(1985), - [anon_sym_return] = ACTIONS(1985), - [anon_sym_source] = ACTIONS(1985), - [anon_sym_source_DASHenv] = ACTIONS(1985), - [anon_sym_hide] = ACTIONS(1985), - [anon_sym_hide_DASHenv] = ACTIONS(1985), - [anon_sym_overlay] = ACTIONS(1985), - [anon_sym_as] = ACTIONS(1985), - [anon_sym_PLUS2] = ACTIONS(1985), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1987), - [anon_sym_DOT_DOT2] = ACTIONS(2055), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2057), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2057), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1987), - [aux_sym__val_number_decimal_token1] = ACTIONS(1985), - [aux_sym__val_number_decimal_token2] = ACTIONS(1987), - [aux_sym__val_number_decimal_token3] = ACTIONS(1987), - [aux_sym__val_number_decimal_token4] = ACTIONS(1987), - [aux_sym__val_number_token1] = ACTIONS(1987), - [aux_sym__val_number_token2] = ACTIONS(1987), - [aux_sym__val_number_token3] = ACTIONS(1987), - [aux_sym__val_number_token4] = ACTIONS(1985), - [aux_sym__val_number_token5] = ACTIONS(1985), - [aux_sym__val_number_token6] = ACTIONS(1985), - [anon_sym_DQUOTE] = ACTIONS(1987), - [sym__str_single_quotes] = ACTIONS(1987), - [sym__str_back_ticks] = ACTIONS(1987), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1987), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1987), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1987), - [anon_sym_register] = ACTIONS(1985), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1987), + [anon_sym_export] = ACTIONS(1686), + [anon_sym_alias] = ACTIONS(1686), + [anon_sym_let] = ACTIONS(1686), + [anon_sym_let_DASHenv] = ACTIONS(1686), + [anon_sym_mut] = ACTIONS(1686), + [anon_sym_const] = ACTIONS(1686), + [aux_sym_cmd_identifier_token1] = ACTIONS(1686), + [aux_sym_cmd_identifier_token2] = ACTIONS(1688), + [aux_sym_cmd_identifier_token3] = ACTIONS(1688), + [aux_sym_cmd_identifier_token4] = ACTIONS(1688), + [aux_sym_cmd_identifier_token5] = ACTIONS(1688), + [aux_sym_cmd_identifier_token6] = ACTIONS(1688), + [aux_sym_cmd_identifier_token7] = ACTIONS(1688), + [aux_sym_cmd_identifier_token8] = ACTIONS(1686), + [aux_sym_cmd_identifier_token9] = ACTIONS(1686), + [aux_sym_cmd_identifier_token10] = ACTIONS(1688), + [aux_sym_cmd_identifier_token11] = ACTIONS(1688), + [aux_sym_cmd_identifier_token12] = ACTIONS(1686), + [aux_sym_cmd_identifier_token13] = ACTIONS(1686), + [aux_sym_cmd_identifier_token14] = ACTIONS(1686), + [aux_sym_cmd_identifier_token15] = ACTIONS(1686), + [aux_sym_cmd_identifier_token16] = ACTIONS(1688), + [aux_sym_cmd_identifier_token17] = ACTIONS(1688), + [aux_sym_cmd_identifier_token18] = ACTIONS(1688), + [aux_sym_cmd_identifier_token19] = ACTIONS(1688), + [aux_sym_cmd_identifier_token20] = ACTIONS(1688), + [aux_sym_cmd_identifier_token21] = ACTIONS(1688), + [aux_sym_cmd_identifier_token22] = ACTIONS(1688), + [aux_sym_cmd_identifier_token23] = ACTIONS(1688), + [aux_sym_cmd_identifier_token24] = ACTIONS(1688), + [aux_sym_cmd_identifier_token25] = ACTIONS(1688), + [aux_sym_cmd_identifier_token26] = ACTIONS(1688), + [aux_sym_cmd_identifier_token27] = ACTIONS(1688), + [aux_sym_cmd_identifier_token28] = ACTIONS(1688), + [aux_sym_cmd_identifier_token29] = ACTIONS(1688), + [aux_sym_cmd_identifier_token30] = ACTIONS(1688), + [aux_sym_cmd_identifier_token31] = ACTIONS(1688), + [aux_sym_cmd_identifier_token32] = ACTIONS(1688), + [aux_sym_cmd_identifier_token33] = ACTIONS(1688), + [aux_sym_cmd_identifier_token34] = ACTIONS(1686), + [aux_sym_cmd_identifier_token35] = ACTIONS(1688), + [aux_sym_cmd_identifier_token36] = ACTIONS(1688), + [aux_sym_cmd_identifier_token37] = ACTIONS(1688), + [aux_sym_cmd_identifier_token38] = ACTIONS(1686), + [aux_sym_cmd_identifier_token39] = ACTIONS(1688), + [aux_sym_cmd_identifier_token40] = ACTIONS(1688), + [anon_sym_def] = ACTIONS(1686), + [anon_sym_export_DASHenv] = ACTIONS(1686), + [anon_sym_extern] = ACTIONS(1686), + [anon_sym_module] = ACTIONS(1686), + [anon_sym_use] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1688), + [anon_sym_COMMA] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_error] = ACTIONS(1686), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_break] = ACTIONS(1686), + [anon_sym_continue] = ACTIONS(1686), + [anon_sym_for] = ACTIONS(1686), + [anon_sym_in2] = ACTIONS(1686), + [anon_sym_loop] = ACTIONS(1686), + [anon_sym_make] = ACTIONS(1686), + [anon_sym_while] = ACTIONS(1686), + [anon_sym_do] = ACTIONS(1686), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_else] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_try] = ACTIONS(1686), + [anon_sym_catch] = ACTIONS(1686), + [anon_sym_return] = ACTIONS(1686), + [anon_sym_source] = ACTIONS(1686), + [anon_sym_source_DASHenv] = ACTIONS(1686), + [anon_sym_hide] = ACTIONS(1686), + [anon_sym_hide_DASHenv] = ACTIONS(1686), + [anon_sym_overlay] = ACTIONS(1686), + [anon_sym_as] = ACTIONS(1686), + [anon_sym_PLUS2] = ACTIONS(1686), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1688), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1688), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1688), + [aux_sym__val_number_decimal_token3] = ACTIONS(1688), + [aux_sym__val_number_decimal_token4] = ACTIONS(1688), + [aux_sym__val_number_token1] = ACTIONS(1688), + [aux_sym__val_number_token2] = ACTIONS(1688), + [aux_sym__val_number_token3] = ACTIONS(1688), + [aux_sym__val_number_token4] = ACTIONS(1686), + [aux_sym__val_number_token5] = ACTIONS(1686), + [aux_sym__val_number_token6] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [sym__str_single_quotes] = ACTIONS(1688), + [sym__str_back_ticks] = ACTIONS(1688), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1688), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1688), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1688), + [anon_sym_register] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1688), }, [506] = { [sym_comment] = STATE(506), - [anon_sym_export] = ACTIONS(2059), - [anon_sym_alias] = ACTIONS(2059), - [anon_sym_let] = ACTIONS(2059), - [anon_sym_let_DASHenv] = ACTIONS(2059), - [anon_sym_mut] = ACTIONS(2059), - [anon_sym_const] = ACTIONS(2059), - [aux_sym_cmd_identifier_token1] = ACTIONS(2059), - [aux_sym_cmd_identifier_token2] = ACTIONS(2059), - [aux_sym_cmd_identifier_token3] = ACTIONS(2059), - [aux_sym_cmd_identifier_token4] = ACTIONS(2059), - [aux_sym_cmd_identifier_token5] = ACTIONS(2059), - [aux_sym_cmd_identifier_token6] = ACTIONS(2059), - [aux_sym_cmd_identifier_token7] = ACTIONS(2059), - [aux_sym_cmd_identifier_token8] = ACTIONS(2059), - [aux_sym_cmd_identifier_token9] = ACTIONS(2059), - [aux_sym_cmd_identifier_token10] = ACTIONS(2059), - [aux_sym_cmd_identifier_token11] = ACTIONS(2059), - [aux_sym_cmd_identifier_token12] = ACTIONS(2059), - [aux_sym_cmd_identifier_token13] = ACTIONS(2059), - [aux_sym_cmd_identifier_token14] = ACTIONS(2059), - [aux_sym_cmd_identifier_token15] = ACTIONS(2059), - [aux_sym_cmd_identifier_token16] = ACTIONS(2059), - [aux_sym_cmd_identifier_token17] = ACTIONS(2059), - [aux_sym_cmd_identifier_token18] = ACTIONS(2059), - [aux_sym_cmd_identifier_token19] = ACTIONS(2059), - [aux_sym_cmd_identifier_token20] = ACTIONS(2059), - [aux_sym_cmd_identifier_token21] = ACTIONS(2059), - [aux_sym_cmd_identifier_token22] = ACTIONS(2059), - [aux_sym_cmd_identifier_token23] = ACTIONS(2059), - [aux_sym_cmd_identifier_token24] = ACTIONS(2059), - [aux_sym_cmd_identifier_token25] = ACTIONS(2059), - [aux_sym_cmd_identifier_token26] = ACTIONS(2059), - [aux_sym_cmd_identifier_token27] = ACTIONS(2059), - [aux_sym_cmd_identifier_token28] = ACTIONS(2059), - [aux_sym_cmd_identifier_token29] = ACTIONS(2059), - [aux_sym_cmd_identifier_token30] = ACTIONS(2059), - [aux_sym_cmd_identifier_token31] = ACTIONS(2059), - [aux_sym_cmd_identifier_token32] = ACTIONS(2059), - [aux_sym_cmd_identifier_token33] = ACTIONS(2059), - [aux_sym_cmd_identifier_token34] = ACTIONS(2059), - [aux_sym_cmd_identifier_token35] = ACTIONS(2059), - [aux_sym_cmd_identifier_token36] = ACTIONS(2059), - [aux_sym_cmd_identifier_token37] = ACTIONS(2059), - [aux_sym_cmd_identifier_token38] = ACTIONS(2059), - [aux_sym_cmd_identifier_token39] = ACTIONS(2059), - [aux_sym_cmd_identifier_token40] = ACTIONS(2059), - [anon_sym_def] = ACTIONS(2059), - [anon_sym_export_DASHenv] = ACTIONS(2059), - [anon_sym_extern] = ACTIONS(2059), - [anon_sym_module] = ACTIONS(2059), - [anon_sym_use] = ACTIONS(2059), - [anon_sym_LPAREN] = ACTIONS(2059), - [anon_sym_COMMA] = ACTIONS(2059), - [anon_sym_DOLLAR] = ACTIONS(2059), - [anon_sym_error] = ACTIONS(2059), - [anon_sym_DASH2] = ACTIONS(2059), - [anon_sym_break] = ACTIONS(2059), - [anon_sym_continue] = ACTIONS(2059), - [anon_sym_for] = ACTIONS(2059), - [anon_sym_in2] = ACTIONS(2059), - [anon_sym_loop] = ACTIONS(2059), - [anon_sym_make] = ACTIONS(2059), - [anon_sym_while] = ACTIONS(2059), - [anon_sym_do] = ACTIONS(2059), - [anon_sym_if] = ACTIONS(2059), - [anon_sym_else] = ACTIONS(2059), - [anon_sym_match] = ACTIONS(2059), - [anon_sym_RBRACE] = ACTIONS(2059), - [anon_sym_try] = ACTIONS(2059), - [anon_sym_catch] = ACTIONS(2059), - [anon_sym_return] = ACTIONS(2059), - [anon_sym_source] = ACTIONS(2059), - [anon_sym_source_DASHenv] = ACTIONS(2059), - [anon_sym_hide] = ACTIONS(2059), - [anon_sym_hide_DASHenv] = ACTIONS(2059), - [anon_sym_overlay] = ACTIONS(2059), - [anon_sym_as] = ACTIONS(2059), - [anon_sym_LPAREN2] = ACTIONS(2061), - [anon_sym_PLUS2] = ACTIONS(2059), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2059), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2059), - [aux_sym__val_number_decimal_token1] = ACTIONS(2059), - [aux_sym__val_number_decimal_token2] = ACTIONS(2059), - [aux_sym__val_number_decimal_token3] = ACTIONS(2059), - [aux_sym__val_number_decimal_token4] = ACTIONS(2059), - [aux_sym__val_number_token1] = ACTIONS(2059), - [aux_sym__val_number_token2] = ACTIONS(2059), - [aux_sym__val_number_token3] = ACTIONS(2059), - [aux_sym__val_number_token4] = ACTIONS(2059), - [aux_sym__val_number_token5] = ACTIONS(2059), - [aux_sym__val_number_token6] = ACTIONS(2059), - [anon_sym_DQUOTE] = ACTIONS(2059), - [sym__str_single_quotes] = ACTIONS(2059), - [sym__str_back_ticks] = ACTIONS(2059), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2059), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2059), - [sym__entry_separator] = ACTIONS(2063), - [anon_sym_register] = ACTIONS(2059), - [aux_sym__unquoted_in_record_token2] = ACTIONS(2065), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2063), + [anon_sym_export] = ACTIONS(982), + [anon_sym_alias] = ACTIONS(982), + [anon_sym_let] = ACTIONS(982), + [anon_sym_let_DASHenv] = ACTIONS(982), + [anon_sym_mut] = ACTIONS(982), + [anon_sym_const] = ACTIONS(982), + [aux_sym_cmd_identifier_token1] = ACTIONS(982), + [aux_sym_cmd_identifier_token2] = ACTIONS(984), + [aux_sym_cmd_identifier_token3] = ACTIONS(984), + [aux_sym_cmd_identifier_token4] = ACTIONS(984), + [aux_sym_cmd_identifier_token5] = ACTIONS(984), + [aux_sym_cmd_identifier_token6] = ACTIONS(984), + [aux_sym_cmd_identifier_token7] = ACTIONS(984), + [aux_sym_cmd_identifier_token8] = ACTIONS(982), + [aux_sym_cmd_identifier_token9] = ACTIONS(982), + [aux_sym_cmd_identifier_token10] = ACTIONS(984), + [aux_sym_cmd_identifier_token11] = ACTIONS(984), + [aux_sym_cmd_identifier_token12] = ACTIONS(982), + [aux_sym_cmd_identifier_token13] = ACTIONS(982), + [aux_sym_cmd_identifier_token14] = ACTIONS(982), + [aux_sym_cmd_identifier_token15] = ACTIONS(982), + [aux_sym_cmd_identifier_token16] = ACTIONS(984), + [aux_sym_cmd_identifier_token17] = ACTIONS(984), + [aux_sym_cmd_identifier_token18] = ACTIONS(984), + [aux_sym_cmd_identifier_token19] = ACTIONS(984), + [aux_sym_cmd_identifier_token20] = ACTIONS(984), + [aux_sym_cmd_identifier_token21] = ACTIONS(984), + [aux_sym_cmd_identifier_token22] = ACTIONS(984), + [aux_sym_cmd_identifier_token23] = ACTIONS(984), + [aux_sym_cmd_identifier_token24] = ACTIONS(984), + [aux_sym_cmd_identifier_token25] = ACTIONS(984), + [aux_sym_cmd_identifier_token26] = ACTIONS(984), + [aux_sym_cmd_identifier_token27] = ACTIONS(984), + [aux_sym_cmd_identifier_token28] = ACTIONS(984), + [aux_sym_cmd_identifier_token29] = ACTIONS(984), + [aux_sym_cmd_identifier_token30] = ACTIONS(984), + [aux_sym_cmd_identifier_token31] = ACTIONS(984), + [aux_sym_cmd_identifier_token32] = ACTIONS(984), + [aux_sym_cmd_identifier_token33] = ACTIONS(984), + [aux_sym_cmd_identifier_token34] = ACTIONS(982), + [aux_sym_cmd_identifier_token35] = ACTIONS(984), + [aux_sym_cmd_identifier_token36] = ACTIONS(984), + [aux_sym_cmd_identifier_token37] = ACTIONS(984), + [aux_sym_cmd_identifier_token38] = ACTIONS(982), + [aux_sym_cmd_identifier_token39] = ACTIONS(984), + [aux_sym_cmd_identifier_token40] = ACTIONS(984), + [anon_sym_def] = ACTIONS(982), + [anon_sym_export_DASHenv] = ACTIONS(982), + [anon_sym_extern] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_use] = ACTIONS(982), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_COMMA] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(982), + [anon_sym_error] = ACTIONS(982), + [anon_sym_DASH2] = ACTIONS(982), + [anon_sym_break] = ACTIONS(982), + [anon_sym_continue] = ACTIONS(982), + [anon_sym_for] = ACTIONS(982), + [anon_sym_in2] = ACTIONS(982), + [anon_sym_loop] = ACTIONS(982), + [anon_sym_make] = ACTIONS(982), + [anon_sym_while] = ACTIONS(982), + [anon_sym_do] = ACTIONS(982), + [anon_sym_if] = ACTIONS(982), + [anon_sym_else] = ACTIONS(982), + [anon_sym_match] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_try] = ACTIONS(982), + [anon_sym_catch] = ACTIONS(982), + [anon_sym_return] = ACTIONS(982), + [anon_sym_source] = ACTIONS(982), + [anon_sym_source_DASHenv] = ACTIONS(982), + [anon_sym_hide] = ACTIONS(982), + [anon_sym_hide_DASHenv] = ACTIONS(982), + [anon_sym_overlay] = ACTIONS(982), + [anon_sym_as] = ACTIONS(982), + [anon_sym_PLUS2] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(984), + [anon_sym_DOT_DOT2] = ACTIONS(982), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), + [anon_sym_DOT_DOT_LT2] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(984), + [aux_sym__val_number_decimal_token1] = ACTIONS(982), + [aux_sym__val_number_decimal_token2] = ACTIONS(984), + [aux_sym__val_number_decimal_token3] = ACTIONS(984), + [aux_sym__val_number_decimal_token4] = ACTIONS(984), + [aux_sym__val_number_token1] = ACTIONS(984), + [aux_sym__val_number_token2] = ACTIONS(984), + [aux_sym__val_number_token3] = ACTIONS(984), + [aux_sym__val_number_token4] = ACTIONS(982), + [aux_sym__val_number_token5] = ACTIONS(982), + [aux_sym__val_number_token6] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(984), + [sym__str_single_quotes] = ACTIONS(984), + [sym__str_back_ticks] = ACTIONS(984), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(984), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(984), + [anon_sym_register] = ACTIONS(982), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(984), }, [507] = { - [sym__expr_parenthesized_immediate] = STATE(7742), [sym_comment] = STATE(507), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_alias] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_let_DASHenv] = ACTIONS(2067), - [anon_sym_mut] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [aux_sym_cmd_identifier_token1] = ACTIONS(2067), - [aux_sym_cmd_identifier_token2] = ACTIONS(2067), - [aux_sym_cmd_identifier_token3] = ACTIONS(2067), - [aux_sym_cmd_identifier_token4] = ACTIONS(2067), - [aux_sym_cmd_identifier_token5] = ACTIONS(2067), - [aux_sym_cmd_identifier_token6] = ACTIONS(2067), - [aux_sym_cmd_identifier_token7] = ACTIONS(2067), - [aux_sym_cmd_identifier_token8] = ACTIONS(2067), - [aux_sym_cmd_identifier_token9] = ACTIONS(2067), - [aux_sym_cmd_identifier_token10] = ACTIONS(2067), - [aux_sym_cmd_identifier_token11] = ACTIONS(2067), - [aux_sym_cmd_identifier_token12] = ACTIONS(2067), - [aux_sym_cmd_identifier_token13] = ACTIONS(2067), - [aux_sym_cmd_identifier_token14] = ACTIONS(2067), - [aux_sym_cmd_identifier_token15] = ACTIONS(2067), - [aux_sym_cmd_identifier_token16] = ACTIONS(2067), - [aux_sym_cmd_identifier_token17] = ACTIONS(2067), - [aux_sym_cmd_identifier_token18] = ACTIONS(2067), - [aux_sym_cmd_identifier_token19] = ACTIONS(2067), - [aux_sym_cmd_identifier_token20] = ACTIONS(2067), - [aux_sym_cmd_identifier_token21] = ACTIONS(2067), - [aux_sym_cmd_identifier_token22] = ACTIONS(2067), - [aux_sym_cmd_identifier_token23] = ACTIONS(2067), - [aux_sym_cmd_identifier_token24] = ACTIONS(2067), - [aux_sym_cmd_identifier_token25] = ACTIONS(2067), - [aux_sym_cmd_identifier_token26] = ACTIONS(2067), - [aux_sym_cmd_identifier_token27] = ACTIONS(2067), - [aux_sym_cmd_identifier_token28] = ACTIONS(2067), - [aux_sym_cmd_identifier_token29] = ACTIONS(2067), - [aux_sym_cmd_identifier_token30] = ACTIONS(2067), - [aux_sym_cmd_identifier_token31] = ACTIONS(2067), - [aux_sym_cmd_identifier_token32] = ACTIONS(2067), - [aux_sym_cmd_identifier_token33] = ACTIONS(2067), - [aux_sym_cmd_identifier_token34] = ACTIONS(2067), - [aux_sym_cmd_identifier_token35] = ACTIONS(2067), - [aux_sym_cmd_identifier_token36] = ACTIONS(2067), - [aux_sym_cmd_identifier_token37] = ACTIONS(2067), - [aux_sym_cmd_identifier_token38] = ACTIONS(2067), - [aux_sym_cmd_identifier_token39] = ACTIONS(2067), - [aux_sym_cmd_identifier_token40] = ACTIONS(2067), - [anon_sym_def] = ACTIONS(2067), - [anon_sym_export_DASHenv] = ACTIONS(2067), - [anon_sym_extern] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_use] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(2067), - [anon_sym_DOLLAR] = ACTIONS(2067), - [anon_sym_error] = ACTIONS(2067), - [anon_sym_DASH2] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_in2] = ACTIONS(2067), - [anon_sym_loop] = ACTIONS(2067), - [anon_sym_make] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2067), - [anon_sym_match] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_catch] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_source] = ACTIONS(2067), - [anon_sym_source_DASHenv] = ACTIONS(2067), - [anon_sym_hide] = ACTIONS(2067), - [anon_sym_hide_DASHenv] = ACTIONS(2067), - [anon_sym_overlay] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_LPAREN2] = ACTIONS(1581), - [anon_sym_PLUS2] = ACTIONS(2067), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2067), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2067), - [aux_sym__val_number_decimal_token1] = ACTIONS(2067), - [aux_sym__val_number_decimal_token2] = ACTIONS(2067), - [aux_sym__val_number_decimal_token3] = ACTIONS(2067), - [aux_sym__val_number_decimal_token4] = ACTIONS(2067), - [aux_sym__val_number_token1] = ACTIONS(2067), - [aux_sym__val_number_token2] = ACTIONS(2067), - [aux_sym__val_number_token3] = ACTIONS(2067), - [aux_sym__val_number_token4] = ACTIONS(2067), - [aux_sym__val_number_token5] = ACTIONS(2067), - [aux_sym__val_number_token6] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [sym__str_single_quotes] = ACTIONS(2067), - [sym__str_back_ticks] = ACTIONS(2067), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2067), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2067), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2067), - [sym__entry_separator] = ACTIONS(2069), - [anon_sym_register] = ACTIONS(2067), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2069), + [anon_sym_export] = ACTIONS(1760), + [anon_sym_alias] = ACTIONS(1760), + [anon_sym_let] = ACTIONS(1760), + [anon_sym_let_DASHenv] = ACTIONS(1760), + [anon_sym_mut] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [aux_sym_cmd_identifier_token1] = ACTIONS(1760), + [aux_sym_cmd_identifier_token2] = ACTIONS(1762), + [aux_sym_cmd_identifier_token3] = ACTIONS(1762), + [aux_sym_cmd_identifier_token4] = ACTIONS(1762), + [aux_sym_cmd_identifier_token5] = ACTIONS(1762), + [aux_sym_cmd_identifier_token6] = ACTIONS(1762), + [aux_sym_cmd_identifier_token7] = ACTIONS(1762), + [aux_sym_cmd_identifier_token8] = ACTIONS(1760), + [aux_sym_cmd_identifier_token9] = ACTIONS(1760), + [aux_sym_cmd_identifier_token10] = ACTIONS(1762), + [aux_sym_cmd_identifier_token11] = ACTIONS(1762), + [aux_sym_cmd_identifier_token12] = ACTIONS(1760), + [aux_sym_cmd_identifier_token13] = ACTIONS(1760), + [aux_sym_cmd_identifier_token14] = ACTIONS(1760), + [aux_sym_cmd_identifier_token15] = ACTIONS(1760), + [aux_sym_cmd_identifier_token16] = ACTIONS(1762), + [aux_sym_cmd_identifier_token17] = ACTIONS(1762), + [aux_sym_cmd_identifier_token18] = ACTIONS(1762), + [aux_sym_cmd_identifier_token19] = ACTIONS(1762), + [aux_sym_cmd_identifier_token20] = ACTIONS(1762), + [aux_sym_cmd_identifier_token21] = ACTIONS(1762), + [aux_sym_cmd_identifier_token22] = ACTIONS(1762), + [aux_sym_cmd_identifier_token23] = ACTIONS(1762), + [aux_sym_cmd_identifier_token24] = ACTIONS(1762), + [aux_sym_cmd_identifier_token25] = ACTIONS(1762), + [aux_sym_cmd_identifier_token26] = ACTIONS(1762), + [aux_sym_cmd_identifier_token27] = ACTIONS(1762), + [aux_sym_cmd_identifier_token28] = ACTIONS(1762), + [aux_sym_cmd_identifier_token29] = ACTIONS(1762), + [aux_sym_cmd_identifier_token30] = ACTIONS(1762), + [aux_sym_cmd_identifier_token31] = ACTIONS(1762), + [aux_sym_cmd_identifier_token32] = ACTIONS(1762), + [aux_sym_cmd_identifier_token33] = ACTIONS(1762), + [aux_sym_cmd_identifier_token34] = ACTIONS(1760), + [aux_sym_cmd_identifier_token35] = ACTIONS(1762), + [aux_sym_cmd_identifier_token36] = ACTIONS(1762), + [aux_sym_cmd_identifier_token37] = ACTIONS(1762), + [aux_sym_cmd_identifier_token38] = ACTIONS(1760), + [aux_sym_cmd_identifier_token39] = ACTIONS(1762), + [aux_sym_cmd_identifier_token40] = ACTIONS(1762), + [anon_sym_def] = ACTIONS(1760), + [anon_sym_export_DASHenv] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym_module] = ACTIONS(1760), + [anon_sym_use] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_error] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_loop] = ACTIONS(1760), + [anon_sym_make] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_do] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_match] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_catch] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_source] = ACTIONS(1760), + [anon_sym_source_DASHenv] = ACTIONS(1760), + [anon_sym_hide] = ACTIONS(1760), + [anon_sym_hide_DASHenv] = ACTIONS(1760), + [anon_sym_overlay] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1762), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1760), + [aux_sym__val_number_token5] = ACTIONS(1760), + [aux_sym__val_number_token6] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1762), }, [508] = { - [sym__expr_parenthesized_immediate] = STATE(7742), [sym_comment] = STATE(508), - [anon_sym_export] = ACTIONS(2071), - [anon_sym_alias] = ACTIONS(2071), - [anon_sym_let] = ACTIONS(2071), - [anon_sym_let_DASHenv] = ACTIONS(2071), - [anon_sym_mut] = ACTIONS(2071), - [anon_sym_const] = ACTIONS(2071), - [aux_sym_cmd_identifier_token1] = ACTIONS(2071), - [aux_sym_cmd_identifier_token2] = ACTIONS(2071), - [aux_sym_cmd_identifier_token3] = ACTIONS(2071), - [aux_sym_cmd_identifier_token4] = ACTIONS(2071), - [aux_sym_cmd_identifier_token5] = ACTIONS(2071), - [aux_sym_cmd_identifier_token6] = ACTIONS(2071), - [aux_sym_cmd_identifier_token7] = ACTIONS(2071), - [aux_sym_cmd_identifier_token8] = ACTIONS(2071), - [aux_sym_cmd_identifier_token9] = ACTIONS(2071), - [aux_sym_cmd_identifier_token10] = ACTIONS(2071), - [aux_sym_cmd_identifier_token11] = ACTIONS(2071), - [aux_sym_cmd_identifier_token12] = ACTIONS(2071), - [aux_sym_cmd_identifier_token13] = ACTIONS(2071), - [aux_sym_cmd_identifier_token14] = ACTIONS(2071), - [aux_sym_cmd_identifier_token15] = ACTIONS(2071), - [aux_sym_cmd_identifier_token16] = ACTIONS(2071), - [aux_sym_cmd_identifier_token17] = ACTIONS(2071), - [aux_sym_cmd_identifier_token18] = ACTIONS(2071), - [aux_sym_cmd_identifier_token19] = ACTIONS(2071), - [aux_sym_cmd_identifier_token20] = ACTIONS(2071), - [aux_sym_cmd_identifier_token21] = ACTIONS(2071), - [aux_sym_cmd_identifier_token22] = ACTIONS(2071), - [aux_sym_cmd_identifier_token23] = ACTIONS(2071), - [aux_sym_cmd_identifier_token24] = ACTIONS(2071), - [aux_sym_cmd_identifier_token25] = ACTIONS(2071), - [aux_sym_cmd_identifier_token26] = ACTIONS(2071), - [aux_sym_cmd_identifier_token27] = ACTIONS(2071), - [aux_sym_cmd_identifier_token28] = ACTIONS(2071), - [aux_sym_cmd_identifier_token29] = ACTIONS(2071), - [aux_sym_cmd_identifier_token30] = ACTIONS(2071), - [aux_sym_cmd_identifier_token31] = ACTIONS(2071), - [aux_sym_cmd_identifier_token32] = ACTIONS(2071), - [aux_sym_cmd_identifier_token33] = ACTIONS(2071), - [aux_sym_cmd_identifier_token34] = ACTIONS(2071), - [aux_sym_cmd_identifier_token35] = ACTIONS(2071), - [aux_sym_cmd_identifier_token36] = ACTIONS(2071), - [aux_sym_cmd_identifier_token37] = ACTIONS(2071), - [aux_sym_cmd_identifier_token38] = ACTIONS(2071), - [aux_sym_cmd_identifier_token39] = ACTIONS(2071), - [aux_sym_cmd_identifier_token40] = ACTIONS(2071), - [anon_sym_def] = ACTIONS(2071), - [anon_sym_export_DASHenv] = ACTIONS(2071), - [anon_sym_extern] = ACTIONS(2071), - [anon_sym_module] = ACTIONS(2071), - [anon_sym_use] = ACTIONS(2071), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_COMMA] = ACTIONS(2071), - [anon_sym_DOLLAR] = ACTIONS(2071), - [anon_sym_error] = ACTIONS(2071), - [anon_sym_DASH2] = ACTIONS(2071), - [anon_sym_break] = ACTIONS(2071), - [anon_sym_continue] = ACTIONS(2071), - [anon_sym_for] = ACTIONS(2071), - [anon_sym_in2] = ACTIONS(2071), - [anon_sym_loop] = ACTIONS(2071), - [anon_sym_make] = ACTIONS(2071), - [anon_sym_while] = ACTIONS(2071), - [anon_sym_do] = ACTIONS(2071), - [anon_sym_if] = ACTIONS(2071), - [anon_sym_else] = ACTIONS(2071), - [anon_sym_match] = ACTIONS(2071), - [anon_sym_RBRACE] = ACTIONS(2071), - [anon_sym_try] = ACTIONS(2071), - [anon_sym_catch] = ACTIONS(2071), - [anon_sym_return] = ACTIONS(2071), - [anon_sym_source] = ACTIONS(2071), - [anon_sym_source_DASHenv] = ACTIONS(2071), - [anon_sym_hide] = ACTIONS(2071), - [anon_sym_hide_DASHenv] = ACTIONS(2071), - [anon_sym_overlay] = ACTIONS(2071), - [anon_sym_as] = ACTIONS(2071), - [anon_sym_LPAREN2] = ACTIONS(1581), - [anon_sym_PLUS2] = ACTIONS(2071), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2071), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2071), - [aux_sym__val_number_decimal_token1] = ACTIONS(2071), - [aux_sym__val_number_decimal_token2] = ACTIONS(2071), - [aux_sym__val_number_decimal_token3] = ACTIONS(2071), - [aux_sym__val_number_decimal_token4] = ACTIONS(2071), - [aux_sym__val_number_token1] = ACTIONS(2071), - [aux_sym__val_number_token2] = ACTIONS(2071), - [aux_sym__val_number_token3] = ACTIONS(2071), - [aux_sym__val_number_token4] = ACTIONS(2071), - [aux_sym__val_number_token5] = ACTIONS(2071), - [aux_sym__val_number_token6] = ACTIONS(2071), - [anon_sym_DQUOTE] = ACTIONS(2071), - [sym__str_single_quotes] = ACTIONS(2071), - [sym__str_back_ticks] = ACTIONS(2071), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2071), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2071), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2071), - [sym__entry_separator] = ACTIONS(2073), - [anon_sym_register] = ACTIONS(2071), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2073), + [anon_sym_export] = ACTIONS(1797), + [anon_sym_alias] = ACTIONS(1797), + [anon_sym_let] = ACTIONS(1797), + [anon_sym_let_DASHenv] = ACTIONS(1797), + [anon_sym_mut] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(1797), + [aux_sym_cmd_identifier_token1] = ACTIONS(1797), + [aux_sym_cmd_identifier_token2] = ACTIONS(1799), + [aux_sym_cmd_identifier_token3] = ACTIONS(1799), + [aux_sym_cmd_identifier_token4] = ACTIONS(1799), + [aux_sym_cmd_identifier_token5] = ACTIONS(1799), + [aux_sym_cmd_identifier_token6] = ACTIONS(1799), + [aux_sym_cmd_identifier_token7] = ACTIONS(1799), + [aux_sym_cmd_identifier_token8] = ACTIONS(1797), + [aux_sym_cmd_identifier_token9] = ACTIONS(1797), + [aux_sym_cmd_identifier_token10] = ACTIONS(1799), + [aux_sym_cmd_identifier_token11] = ACTIONS(1799), + [aux_sym_cmd_identifier_token12] = ACTIONS(1797), + [aux_sym_cmd_identifier_token13] = ACTIONS(1797), + [aux_sym_cmd_identifier_token14] = ACTIONS(1797), + [aux_sym_cmd_identifier_token15] = ACTIONS(1797), + [aux_sym_cmd_identifier_token16] = ACTIONS(1799), + [aux_sym_cmd_identifier_token17] = ACTIONS(1799), + [aux_sym_cmd_identifier_token18] = ACTIONS(1799), + [aux_sym_cmd_identifier_token19] = ACTIONS(1799), + [aux_sym_cmd_identifier_token20] = ACTIONS(1799), + [aux_sym_cmd_identifier_token21] = ACTIONS(1799), + [aux_sym_cmd_identifier_token22] = ACTIONS(1799), + [aux_sym_cmd_identifier_token23] = ACTIONS(1799), + [aux_sym_cmd_identifier_token24] = ACTIONS(1799), + [aux_sym_cmd_identifier_token25] = ACTIONS(1799), + [aux_sym_cmd_identifier_token26] = ACTIONS(1799), + [aux_sym_cmd_identifier_token27] = ACTIONS(1799), + [aux_sym_cmd_identifier_token28] = ACTIONS(1799), + [aux_sym_cmd_identifier_token29] = ACTIONS(1799), + [aux_sym_cmd_identifier_token30] = ACTIONS(1799), + [aux_sym_cmd_identifier_token31] = ACTIONS(1799), + [aux_sym_cmd_identifier_token32] = ACTIONS(1799), + [aux_sym_cmd_identifier_token33] = ACTIONS(1799), + [aux_sym_cmd_identifier_token34] = ACTIONS(1797), + [aux_sym_cmd_identifier_token35] = ACTIONS(1799), + [aux_sym_cmd_identifier_token36] = ACTIONS(1799), + [aux_sym_cmd_identifier_token37] = ACTIONS(1799), + [aux_sym_cmd_identifier_token38] = ACTIONS(1797), + [aux_sym_cmd_identifier_token39] = ACTIONS(1799), + [aux_sym_cmd_identifier_token40] = ACTIONS(1799), + [anon_sym_def] = ACTIONS(1797), + [anon_sym_export_DASHenv] = ACTIONS(1797), + [anon_sym_extern] = ACTIONS(1797), + [anon_sym_module] = ACTIONS(1797), + [anon_sym_use] = ACTIONS(1797), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_COMMA] = ACTIONS(1799), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_error] = ACTIONS(1797), + [anon_sym_DASH2] = ACTIONS(1797), + [anon_sym_break] = ACTIONS(1797), + [anon_sym_continue] = ACTIONS(1797), + [anon_sym_for] = ACTIONS(1797), + [anon_sym_in2] = ACTIONS(1797), + [anon_sym_loop] = ACTIONS(1797), + [anon_sym_make] = ACTIONS(1797), + [anon_sym_while] = ACTIONS(1797), + [anon_sym_do] = ACTIONS(1797), + [anon_sym_if] = ACTIONS(1797), + [anon_sym_else] = ACTIONS(1797), + [anon_sym_match] = ACTIONS(1797), + [anon_sym_RBRACE] = ACTIONS(1799), + [anon_sym_try] = ACTIONS(1797), + [anon_sym_catch] = ACTIONS(1797), + [anon_sym_return] = ACTIONS(1797), + [anon_sym_source] = ACTIONS(1797), + [anon_sym_source_DASHenv] = ACTIONS(1797), + [anon_sym_hide] = ACTIONS(1797), + [anon_sym_hide_DASHenv] = ACTIONS(1797), + [anon_sym_overlay] = ACTIONS(1797), + [anon_sym_as] = ACTIONS(1797), + [anon_sym_PLUS2] = ACTIONS(1797), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1799), + [anon_sym_DOT_DOT2] = ACTIONS(1797), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1799), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1799), + [aux_sym__val_number_decimal_token1] = ACTIONS(1797), + [aux_sym__val_number_decimal_token2] = ACTIONS(1799), + [aux_sym__val_number_decimal_token3] = ACTIONS(1799), + [aux_sym__val_number_decimal_token4] = ACTIONS(1799), + [aux_sym__val_number_token1] = ACTIONS(1799), + [aux_sym__val_number_token2] = ACTIONS(1799), + [aux_sym__val_number_token3] = ACTIONS(1799), + [aux_sym__val_number_token4] = ACTIONS(1797), + [aux_sym__val_number_token5] = ACTIONS(1797), + [aux_sym__val_number_token6] = ACTIONS(1797), + [anon_sym_DQUOTE] = ACTIONS(1799), + [sym__str_single_quotes] = ACTIONS(1799), + [sym__str_back_ticks] = ACTIONS(1799), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1799), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1797), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1799), }, [509] = { - [sym__expr_parenthesized_immediate] = STATE(7742), [sym_comment] = STATE(509), - [anon_sym_export] = ACTIONS(2075), - [anon_sym_alias] = ACTIONS(2075), - [anon_sym_let] = ACTIONS(2075), - [anon_sym_let_DASHenv] = ACTIONS(2075), - [anon_sym_mut] = ACTIONS(2075), - [anon_sym_const] = ACTIONS(2075), - [aux_sym_cmd_identifier_token1] = ACTIONS(2075), - [aux_sym_cmd_identifier_token2] = ACTIONS(2075), - [aux_sym_cmd_identifier_token3] = ACTIONS(2075), - [aux_sym_cmd_identifier_token4] = ACTIONS(2075), - [aux_sym_cmd_identifier_token5] = ACTIONS(2075), - [aux_sym_cmd_identifier_token6] = ACTIONS(2075), - [aux_sym_cmd_identifier_token7] = ACTIONS(2075), - [aux_sym_cmd_identifier_token8] = ACTIONS(2075), - [aux_sym_cmd_identifier_token9] = ACTIONS(2075), - [aux_sym_cmd_identifier_token10] = ACTIONS(2075), - [aux_sym_cmd_identifier_token11] = ACTIONS(2075), - [aux_sym_cmd_identifier_token12] = ACTIONS(2075), - [aux_sym_cmd_identifier_token13] = ACTIONS(2075), - [aux_sym_cmd_identifier_token14] = ACTIONS(2075), - [aux_sym_cmd_identifier_token15] = ACTIONS(2075), - [aux_sym_cmd_identifier_token16] = ACTIONS(2075), - [aux_sym_cmd_identifier_token17] = ACTIONS(2075), - [aux_sym_cmd_identifier_token18] = ACTIONS(2075), - [aux_sym_cmd_identifier_token19] = ACTIONS(2075), - [aux_sym_cmd_identifier_token20] = ACTIONS(2075), - [aux_sym_cmd_identifier_token21] = ACTIONS(2075), - [aux_sym_cmd_identifier_token22] = ACTIONS(2075), - [aux_sym_cmd_identifier_token23] = ACTIONS(2075), - [aux_sym_cmd_identifier_token24] = ACTIONS(2075), - [aux_sym_cmd_identifier_token25] = ACTIONS(2075), - [aux_sym_cmd_identifier_token26] = ACTIONS(2075), - [aux_sym_cmd_identifier_token27] = ACTIONS(2075), - [aux_sym_cmd_identifier_token28] = ACTIONS(2075), - [aux_sym_cmd_identifier_token29] = ACTIONS(2075), - [aux_sym_cmd_identifier_token30] = ACTIONS(2075), - [aux_sym_cmd_identifier_token31] = ACTIONS(2075), - [aux_sym_cmd_identifier_token32] = ACTIONS(2075), - [aux_sym_cmd_identifier_token33] = ACTIONS(2075), - [aux_sym_cmd_identifier_token34] = ACTIONS(2075), - [aux_sym_cmd_identifier_token35] = ACTIONS(2075), - [aux_sym_cmd_identifier_token36] = ACTIONS(2075), - [aux_sym_cmd_identifier_token37] = ACTIONS(2075), - [aux_sym_cmd_identifier_token38] = ACTIONS(2075), - [aux_sym_cmd_identifier_token39] = ACTIONS(2075), - [aux_sym_cmd_identifier_token40] = ACTIONS(2075), - [anon_sym_def] = ACTIONS(2075), - [anon_sym_export_DASHenv] = ACTIONS(2075), - [anon_sym_extern] = ACTIONS(2075), - [anon_sym_module] = ACTIONS(2075), - [anon_sym_use] = ACTIONS(2075), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_COMMA] = ACTIONS(2075), - [anon_sym_DOLLAR] = ACTIONS(2075), - [anon_sym_error] = ACTIONS(2075), - [anon_sym_DASH2] = ACTIONS(2075), - [anon_sym_break] = ACTIONS(2075), - [anon_sym_continue] = ACTIONS(2075), - [anon_sym_for] = ACTIONS(2075), - [anon_sym_in2] = ACTIONS(2075), - [anon_sym_loop] = ACTIONS(2075), - [anon_sym_make] = ACTIONS(2075), - [anon_sym_while] = ACTIONS(2075), - [anon_sym_do] = ACTIONS(2075), - [anon_sym_if] = ACTIONS(2075), - [anon_sym_else] = ACTIONS(2075), - [anon_sym_match] = ACTIONS(2075), - [anon_sym_RBRACE] = ACTIONS(2075), - [anon_sym_try] = ACTIONS(2075), - [anon_sym_catch] = ACTIONS(2075), - [anon_sym_return] = ACTIONS(2075), - [anon_sym_source] = ACTIONS(2075), - [anon_sym_source_DASHenv] = ACTIONS(2075), - [anon_sym_hide] = ACTIONS(2075), - [anon_sym_hide_DASHenv] = ACTIONS(2075), - [anon_sym_overlay] = ACTIONS(2075), - [anon_sym_as] = ACTIONS(2075), - [anon_sym_LPAREN2] = ACTIONS(1581), - [anon_sym_PLUS2] = ACTIONS(2075), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2075), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2075), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2075), - [aux_sym__val_number_decimal_token3] = ACTIONS(2075), - [aux_sym__val_number_decimal_token4] = ACTIONS(2075), - [aux_sym__val_number_token1] = ACTIONS(2075), - [aux_sym__val_number_token2] = ACTIONS(2075), - [aux_sym__val_number_token3] = ACTIONS(2075), - [aux_sym__val_number_token4] = ACTIONS(2075), - [aux_sym__val_number_token5] = ACTIONS(2075), - [aux_sym__val_number_token6] = ACTIONS(2075), - [anon_sym_DQUOTE] = ACTIONS(2075), - [sym__str_single_quotes] = ACTIONS(2075), - [sym__str_back_ticks] = ACTIONS(2075), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2075), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2075), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2075), - [sym__entry_separator] = ACTIONS(2077), - [anon_sym_register] = ACTIONS(2075), + [anon_sym_export] = ACTIONS(1782), + [anon_sym_alias] = ACTIONS(1782), + [anon_sym_let] = ACTIONS(1782), + [anon_sym_let_DASHenv] = ACTIONS(1782), + [anon_sym_mut] = ACTIONS(1782), + [anon_sym_const] = ACTIONS(1782), + [aux_sym_cmd_identifier_token1] = ACTIONS(1782), + [aux_sym_cmd_identifier_token2] = ACTIONS(1782), + [aux_sym_cmd_identifier_token3] = ACTIONS(1782), + [aux_sym_cmd_identifier_token4] = ACTIONS(1782), + [aux_sym_cmd_identifier_token5] = ACTIONS(1782), + [aux_sym_cmd_identifier_token6] = ACTIONS(1782), + [aux_sym_cmd_identifier_token7] = ACTIONS(1782), + [aux_sym_cmd_identifier_token8] = ACTIONS(1782), + [aux_sym_cmd_identifier_token9] = ACTIONS(1782), + [aux_sym_cmd_identifier_token10] = ACTIONS(1782), + [aux_sym_cmd_identifier_token11] = ACTIONS(1782), + [aux_sym_cmd_identifier_token12] = ACTIONS(1782), + [aux_sym_cmd_identifier_token13] = ACTIONS(1782), + [aux_sym_cmd_identifier_token14] = ACTIONS(1782), + [aux_sym_cmd_identifier_token15] = ACTIONS(1782), + [aux_sym_cmd_identifier_token16] = ACTIONS(1782), + [aux_sym_cmd_identifier_token17] = ACTIONS(1782), + [aux_sym_cmd_identifier_token18] = ACTIONS(1782), + [aux_sym_cmd_identifier_token19] = ACTIONS(1782), + [aux_sym_cmd_identifier_token20] = ACTIONS(1782), + [aux_sym_cmd_identifier_token21] = ACTIONS(1782), + [aux_sym_cmd_identifier_token22] = ACTIONS(1782), + [aux_sym_cmd_identifier_token23] = ACTIONS(1782), + [aux_sym_cmd_identifier_token24] = ACTIONS(1782), + [aux_sym_cmd_identifier_token25] = ACTIONS(1782), + [aux_sym_cmd_identifier_token26] = ACTIONS(1782), + [aux_sym_cmd_identifier_token27] = ACTIONS(1782), + [aux_sym_cmd_identifier_token28] = ACTIONS(1782), + [aux_sym_cmd_identifier_token29] = ACTIONS(1782), + [aux_sym_cmd_identifier_token30] = ACTIONS(1782), + [aux_sym_cmd_identifier_token31] = ACTIONS(1782), + [aux_sym_cmd_identifier_token32] = ACTIONS(1782), + [aux_sym_cmd_identifier_token33] = ACTIONS(1782), + [aux_sym_cmd_identifier_token34] = ACTIONS(1782), + [aux_sym_cmd_identifier_token35] = ACTIONS(1782), + [aux_sym_cmd_identifier_token36] = ACTIONS(1782), + [aux_sym_cmd_identifier_token37] = ACTIONS(1782), + [aux_sym_cmd_identifier_token38] = ACTIONS(1782), + [aux_sym_cmd_identifier_token39] = ACTIONS(1782), + [aux_sym_cmd_identifier_token40] = ACTIONS(1782), + [anon_sym_def] = ACTIONS(1782), + [anon_sym_export_DASHenv] = ACTIONS(1782), + [anon_sym_extern] = ACTIONS(1782), + [anon_sym_module] = ACTIONS(1782), + [anon_sym_use] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_DOLLAR] = ACTIONS(1782), + [anon_sym_error] = ACTIONS(1782), + [anon_sym_DASH2] = ACTIONS(1782), + [anon_sym_break] = ACTIONS(1782), + [anon_sym_continue] = ACTIONS(1782), + [anon_sym_for] = ACTIONS(1782), + [anon_sym_in2] = ACTIONS(1782), + [anon_sym_loop] = ACTIONS(1782), + [anon_sym_make] = ACTIONS(1782), + [anon_sym_while] = ACTIONS(1782), + [anon_sym_do] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1782), + [anon_sym_match] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_try] = ACTIONS(1782), + [anon_sym_catch] = ACTIONS(1782), + [anon_sym_return] = ACTIONS(1782), + [anon_sym_source] = ACTIONS(1782), + [anon_sym_source_DASHenv] = ACTIONS(1782), + [anon_sym_hide] = ACTIONS(1782), + [anon_sym_hide_DASHenv] = ACTIONS(1782), + [anon_sym_overlay] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1782), + [anon_sym_LPAREN2] = ACTIONS(1784), + [anon_sym_PLUS2] = ACTIONS(1782), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1782), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1782), + [aux_sym__val_number_decimal_token1] = ACTIONS(1782), + [aux_sym__val_number_decimal_token2] = ACTIONS(1782), + [aux_sym__val_number_decimal_token3] = ACTIONS(1782), + [aux_sym__val_number_decimal_token4] = ACTIONS(1782), + [aux_sym__val_number_token1] = ACTIONS(1782), + [aux_sym__val_number_token2] = ACTIONS(1782), + [aux_sym__val_number_token3] = ACTIONS(1782), + [aux_sym__val_number_token4] = ACTIONS(1782), + [aux_sym__val_number_token5] = ACTIONS(1782), + [aux_sym__val_number_token6] = ACTIONS(1782), + [anon_sym_DQUOTE] = ACTIONS(1782), + [sym__str_single_quotes] = ACTIONS(1782), + [sym__str_back_ticks] = ACTIONS(1782), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1782), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1782), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1782), + [sym__entry_separator] = ACTIONS(1790), + [anon_sym_register] = ACTIONS(1782), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1792), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2077), + [sym_raw_string_begin] = ACTIONS(1790), }, [510] = { - [sym__expr_parenthesized_immediate] = STATE(7742), [sym_comment] = STATE(510), - [anon_sym_export] = ACTIONS(2079), - [anon_sym_alias] = ACTIONS(2079), - [anon_sym_let] = ACTIONS(2079), - [anon_sym_let_DASHenv] = ACTIONS(2079), - [anon_sym_mut] = ACTIONS(2079), - [anon_sym_const] = ACTIONS(2079), - [aux_sym_cmd_identifier_token1] = ACTIONS(2079), - [aux_sym_cmd_identifier_token2] = ACTIONS(2079), - [aux_sym_cmd_identifier_token3] = ACTIONS(2079), - [aux_sym_cmd_identifier_token4] = ACTIONS(2079), - [aux_sym_cmd_identifier_token5] = ACTIONS(2079), - [aux_sym_cmd_identifier_token6] = ACTIONS(2079), - [aux_sym_cmd_identifier_token7] = ACTIONS(2079), - [aux_sym_cmd_identifier_token8] = ACTIONS(2079), - [aux_sym_cmd_identifier_token9] = ACTIONS(2079), - [aux_sym_cmd_identifier_token10] = ACTIONS(2079), - [aux_sym_cmd_identifier_token11] = ACTIONS(2079), - [aux_sym_cmd_identifier_token12] = ACTIONS(2079), - [aux_sym_cmd_identifier_token13] = ACTIONS(2079), - [aux_sym_cmd_identifier_token14] = ACTIONS(2079), - [aux_sym_cmd_identifier_token15] = ACTIONS(2079), - [aux_sym_cmd_identifier_token16] = ACTIONS(2079), - [aux_sym_cmd_identifier_token17] = ACTIONS(2079), - [aux_sym_cmd_identifier_token18] = ACTIONS(2079), - [aux_sym_cmd_identifier_token19] = ACTIONS(2079), - [aux_sym_cmd_identifier_token20] = ACTIONS(2079), - [aux_sym_cmd_identifier_token21] = ACTIONS(2079), - [aux_sym_cmd_identifier_token22] = ACTIONS(2079), - [aux_sym_cmd_identifier_token23] = ACTIONS(2079), - [aux_sym_cmd_identifier_token24] = ACTIONS(2079), - [aux_sym_cmd_identifier_token25] = ACTIONS(2079), - [aux_sym_cmd_identifier_token26] = ACTIONS(2079), - [aux_sym_cmd_identifier_token27] = ACTIONS(2079), - [aux_sym_cmd_identifier_token28] = ACTIONS(2079), - [aux_sym_cmd_identifier_token29] = ACTIONS(2079), - [aux_sym_cmd_identifier_token30] = ACTIONS(2079), - [aux_sym_cmd_identifier_token31] = ACTIONS(2079), - [aux_sym_cmd_identifier_token32] = ACTIONS(2079), - [aux_sym_cmd_identifier_token33] = ACTIONS(2079), - [aux_sym_cmd_identifier_token34] = ACTIONS(2079), - [aux_sym_cmd_identifier_token35] = ACTIONS(2079), - [aux_sym_cmd_identifier_token36] = ACTIONS(2079), - [aux_sym_cmd_identifier_token37] = ACTIONS(2079), - [aux_sym_cmd_identifier_token38] = ACTIONS(2079), - [aux_sym_cmd_identifier_token39] = ACTIONS(2079), - [aux_sym_cmd_identifier_token40] = ACTIONS(2079), - [anon_sym_def] = ACTIONS(2079), - [anon_sym_export_DASHenv] = ACTIONS(2079), - [anon_sym_extern] = ACTIONS(2079), - [anon_sym_module] = ACTIONS(2079), - [anon_sym_use] = ACTIONS(2079), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_COMMA] = ACTIONS(2079), - [anon_sym_DOLLAR] = ACTIONS(2079), - [anon_sym_error] = ACTIONS(2079), - [anon_sym_DASH2] = ACTIONS(2079), - [anon_sym_break] = ACTIONS(2079), - [anon_sym_continue] = ACTIONS(2079), - [anon_sym_for] = ACTIONS(2079), - [anon_sym_in2] = ACTIONS(2079), - [anon_sym_loop] = ACTIONS(2079), - [anon_sym_make] = ACTIONS(2079), - [anon_sym_while] = ACTIONS(2079), - [anon_sym_do] = ACTIONS(2079), - [anon_sym_if] = ACTIONS(2079), - [anon_sym_else] = ACTIONS(2079), - [anon_sym_match] = ACTIONS(2079), - [anon_sym_RBRACE] = ACTIONS(2079), - [anon_sym_try] = ACTIONS(2079), - [anon_sym_catch] = ACTIONS(2079), - [anon_sym_return] = ACTIONS(2079), - [anon_sym_source] = ACTIONS(2079), - [anon_sym_source_DASHenv] = ACTIONS(2079), - [anon_sym_hide] = ACTIONS(2079), - [anon_sym_hide_DASHenv] = ACTIONS(2079), - [anon_sym_overlay] = ACTIONS(2079), - [anon_sym_as] = ACTIONS(2079), - [anon_sym_LPAREN2] = ACTIONS(1581), - [anon_sym_PLUS2] = ACTIONS(2079), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2079), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2079), - [aux_sym__val_number_decimal_token1] = ACTIONS(2079), - [aux_sym__val_number_decimal_token2] = ACTIONS(2079), - [aux_sym__val_number_decimal_token3] = ACTIONS(2079), - [aux_sym__val_number_decimal_token4] = ACTIONS(2079), - [aux_sym__val_number_token1] = ACTIONS(2079), - [aux_sym__val_number_token2] = ACTIONS(2079), - [aux_sym__val_number_token3] = ACTIONS(2079), - [aux_sym__val_number_token4] = ACTIONS(2079), - [aux_sym__val_number_token5] = ACTIONS(2079), - [aux_sym__val_number_token6] = ACTIONS(2079), - [anon_sym_DQUOTE] = ACTIONS(2079), - [sym__str_single_quotes] = ACTIONS(2079), - [sym__str_back_ticks] = ACTIONS(2079), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2079), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2079), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2079), - [sym__entry_separator] = ACTIONS(2081), - [anon_sym_register] = ACTIONS(2079), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_alias] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_let_DASHenv] = ACTIONS(2138), + [anon_sym_mut] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [aux_sym_cmd_identifier_token1] = ACTIONS(2138), + [aux_sym_cmd_identifier_token2] = ACTIONS(2138), + [aux_sym_cmd_identifier_token3] = ACTIONS(2138), + [aux_sym_cmd_identifier_token4] = ACTIONS(2138), + [aux_sym_cmd_identifier_token5] = ACTIONS(2138), + [aux_sym_cmd_identifier_token6] = ACTIONS(2138), + [aux_sym_cmd_identifier_token7] = ACTIONS(2138), + [aux_sym_cmd_identifier_token8] = ACTIONS(2138), + [aux_sym_cmd_identifier_token9] = ACTIONS(2138), + [aux_sym_cmd_identifier_token10] = ACTIONS(2138), + [aux_sym_cmd_identifier_token11] = ACTIONS(2138), + [aux_sym_cmd_identifier_token12] = ACTIONS(2138), + [aux_sym_cmd_identifier_token13] = ACTIONS(2138), + [aux_sym_cmd_identifier_token14] = ACTIONS(2138), + [aux_sym_cmd_identifier_token15] = ACTIONS(2138), + [aux_sym_cmd_identifier_token16] = ACTIONS(2138), + [aux_sym_cmd_identifier_token17] = ACTIONS(2138), + [aux_sym_cmd_identifier_token18] = ACTIONS(2138), + [aux_sym_cmd_identifier_token19] = ACTIONS(2138), + [aux_sym_cmd_identifier_token20] = ACTIONS(2138), + [aux_sym_cmd_identifier_token21] = ACTIONS(2138), + [aux_sym_cmd_identifier_token22] = ACTIONS(2138), + [aux_sym_cmd_identifier_token23] = ACTIONS(2138), + [aux_sym_cmd_identifier_token24] = ACTIONS(2138), + [aux_sym_cmd_identifier_token25] = ACTIONS(2138), + [aux_sym_cmd_identifier_token26] = ACTIONS(2138), + [aux_sym_cmd_identifier_token27] = ACTIONS(2138), + [aux_sym_cmd_identifier_token28] = ACTIONS(2138), + [aux_sym_cmd_identifier_token29] = ACTIONS(2138), + [aux_sym_cmd_identifier_token30] = ACTIONS(2138), + [aux_sym_cmd_identifier_token31] = ACTIONS(2138), + [aux_sym_cmd_identifier_token32] = ACTIONS(2138), + [aux_sym_cmd_identifier_token33] = ACTIONS(2138), + [aux_sym_cmd_identifier_token34] = ACTIONS(2138), + [aux_sym_cmd_identifier_token35] = ACTIONS(2138), + [aux_sym_cmd_identifier_token36] = ACTIONS(2138), + [aux_sym_cmd_identifier_token37] = ACTIONS(2138), + [aux_sym_cmd_identifier_token38] = ACTIONS(2138), + [aux_sym_cmd_identifier_token39] = ACTIONS(2138), + [aux_sym_cmd_identifier_token40] = ACTIONS(2138), + [anon_sym_def] = ACTIONS(2138), + [anon_sym_export_DASHenv] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym_module] = ACTIONS(2138), + [anon_sym_use] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_COMMA] = ACTIONS(2138), + [anon_sym_DOLLAR] = ACTIONS(2138), + [anon_sym_error] = ACTIONS(2138), + [anon_sym_DASH2] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_in2] = ACTIONS(2138), + [anon_sym_loop] = ACTIONS(2138), + [anon_sym_make] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_else] = ACTIONS(2138), + [anon_sym_match] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_catch] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_source] = ACTIONS(2138), + [anon_sym_source_DASHenv] = ACTIONS(2138), + [anon_sym_hide] = ACTIONS(2138), + [anon_sym_hide_DASHenv] = ACTIONS(2138), + [anon_sym_overlay] = ACTIONS(2138), + [anon_sym_as] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_PLUS2] = ACTIONS(2138), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2138), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2138), + [aux_sym__val_number_decimal_token1] = ACTIONS(2138), + [aux_sym__val_number_decimal_token2] = ACTIONS(2138), + [aux_sym__val_number_decimal_token3] = ACTIONS(2138), + [aux_sym__val_number_decimal_token4] = ACTIONS(2138), + [aux_sym__val_number_token1] = ACTIONS(2138), + [aux_sym__val_number_token2] = ACTIONS(2138), + [aux_sym__val_number_token3] = ACTIONS(2138), + [aux_sym__val_number_token4] = ACTIONS(2138), + [aux_sym__val_number_token5] = ACTIONS(2138), + [aux_sym__val_number_token6] = ACTIONS(2138), + [anon_sym_DQUOTE] = ACTIONS(2138), + [sym__str_single_quotes] = ACTIONS(2138), + [sym__str_back_ticks] = ACTIONS(2138), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2138), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2138), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2138), + [sym__entry_separator] = ACTIONS(2142), + [anon_sym_register] = ACTIONS(2138), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1477), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2081), + [sym_raw_string_begin] = ACTIONS(2142), }, [511] = { [sym_comment] = STATE(511), - [anon_sym_export] = ACTIONS(1666), - [anon_sym_alias] = ACTIONS(1666), - [anon_sym_let] = ACTIONS(1666), - [anon_sym_let_DASHenv] = ACTIONS(1666), - [anon_sym_mut] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [aux_sym_cmd_identifier_token1] = ACTIONS(1666), - [aux_sym_cmd_identifier_token2] = ACTIONS(1668), - [aux_sym_cmd_identifier_token3] = ACTIONS(1668), - [aux_sym_cmd_identifier_token4] = ACTIONS(1668), - [aux_sym_cmd_identifier_token5] = ACTIONS(1668), - [aux_sym_cmd_identifier_token6] = ACTIONS(1668), - [aux_sym_cmd_identifier_token7] = ACTIONS(1668), - [aux_sym_cmd_identifier_token8] = ACTIONS(1666), - [aux_sym_cmd_identifier_token9] = ACTIONS(1666), - [aux_sym_cmd_identifier_token10] = ACTIONS(1668), - [aux_sym_cmd_identifier_token11] = ACTIONS(1668), - [aux_sym_cmd_identifier_token12] = ACTIONS(1666), - [aux_sym_cmd_identifier_token13] = ACTIONS(1666), - [aux_sym_cmd_identifier_token14] = ACTIONS(1666), - [aux_sym_cmd_identifier_token15] = ACTIONS(1666), - [aux_sym_cmd_identifier_token16] = ACTIONS(1668), - [aux_sym_cmd_identifier_token17] = ACTIONS(1668), - [aux_sym_cmd_identifier_token18] = ACTIONS(1668), - [aux_sym_cmd_identifier_token19] = ACTIONS(1668), - [aux_sym_cmd_identifier_token20] = ACTIONS(1668), - [aux_sym_cmd_identifier_token21] = ACTIONS(1668), - [aux_sym_cmd_identifier_token22] = ACTIONS(1668), - [aux_sym_cmd_identifier_token23] = ACTIONS(1668), - [aux_sym_cmd_identifier_token24] = ACTIONS(1668), - [aux_sym_cmd_identifier_token25] = ACTIONS(1668), - [aux_sym_cmd_identifier_token26] = ACTIONS(1668), - [aux_sym_cmd_identifier_token27] = ACTIONS(1668), - [aux_sym_cmd_identifier_token28] = ACTIONS(1668), - [aux_sym_cmd_identifier_token29] = ACTIONS(1668), - [aux_sym_cmd_identifier_token30] = ACTIONS(1668), - [aux_sym_cmd_identifier_token31] = ACTIONS(1668), - [aux_sym_cmd_identifier_token32] = ACTIONS(1668), - [aux_sym_cmd_identifier_token33] = ACTIONS(1668), - [aux_sym_cmd_identifier_token34] = ACTIONS(1666), - [aux_sym_cmd_identifier_token35] = ACTIONS(1668), - [aux_sym_cmd_identifier_token36] = ACTIONS(1668), - [aux_sym_cmd_identifier_token37] = ACTIONS(1668), - [aux_sym_cmd_identifier_token38] = ACTIONS(1666), - [aux_sym_cmd_identifier_token39] = ACTIONS(1668), - [aux_sym_cmd_identifier_token40] = ACTIONS(1668), - [anon_sym_def] = ACTIONS(1666), - [anon_sym_export_DASHenv] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_module] = ACTIONS(1666), - [anon_sym_use] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_error] = ACTIONS(1666), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_in2] = ACTIONS(1666), - [anon_sym_loop] = ACTIONS(1666), - [anon_sym_make] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_do] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_match] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_try] = ACTIONS(1666), - [anon_sym_catch] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_source] = ACTIONS(1666), - [anon_sym_source_DASHenv] = ACTIONS(1666), - [anon_sym_hide] = ACTIONS(1666), - [anon_sym_hide_DASHenv] = ACTIONS(1666), - [anon_sym_overlay] = ACTIONS(1666), - [anon_sym_as] = ACTIONS(1666), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_PLUS2] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1668), - [aux_sym__immediate_decimal_token2] = ACTIONS(2007), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1666), - [aux_sym__val_number_token5] = ACTIONS(1666), - [aux_sym__val_number_token6] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1666), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), + [anon_sym_export] = ACTIONS(2144), + [anon_sym_alias] = ACTIONS(2144), + [anon_sym_let] = ACTIONS(2144), + [anon_sym_let_DASHenv] = ACTIONS(2144), + [anon_sym_mut] = ACTIONS(2144), + [anon_sym_const] = ACTIONS(2144), + [aux_sym_cmd_identifier_token1] = ACTIONS(2144), + [aux_sym_cmd_identifier_token2] = ACTIONS(2144), + [aux_sym_cmd_identifier_token3] = ACTIONS(2144), + [aux_sym_cmd_identifier_token4] = ACTIONS(2144), + [aux_sym_cmd_identifier_token5] = ACTIONS(2144), + [aux_sym_cmd_identifier_token6] = ACTIONS(2144), + [aux_sym_cmd_identifier_token7] = ACTIONS(2144), + [aux_sym_cmd_identifier_token8] = ACTIONS(2144), + [aux_sym_cmd_identifier_token9] = ACTIONS(2144), + [aux_sym_cmd_identifier_token10] = ACTIONS(2144), + [aux_sym_cmd_identifier_token11] = ACTIONS(2144), + [aux_sym_cmd_identifier_token12] = ACTIONS(2144), + [aux_sym_cmd_identifier_token13] = ACTIONS(2144), + [aux_sym_cmd_identifier_token14] = ACTIONS(2144), + [aux_sym_cmd_identifier_token15] = ACTIONS(2144), + [aux_sym_cmd_identifier_token16] = ACTIONS(2144), + [aux_sym_cmd_identifier_token17] = ACTIONS(2144), + [aux_sym_cmd_identifier_token18] = ACTIONS(2144), + [aux_sym_cmd_identifier_token19] = ACTIONS(2144), + [aux_sym_cmd_identifier_token20] = ACTIONS(2144), + [aux_sym_cmd_identifier_token21] = ACTIONS(2144), + [aux_sym_cmd_identifier_token22] = ACTIONS(2144), + [aux_sym_cmd_identifier_token23] = ACTIONS(2144), + [aux_sym_cmd_identifier_token24] = ACTIONS(2144), + [aux_sym_cmd_identifier_token25] = ACTIONS(2144), + [aux_sym_cmd_identifier_token26] = ACTIONS(2144), + [aux_sym_cmd_identifier_token27] = ACTIONS(2144), + [aux_sym_cmd_identifier_token28] = ACTIONS(2144), + [aux_sym_cmd_identifier_token29] = ACTIONS(2144), + [aux_sym_cmd_identifier_token30] = ACTIONS(2144), + [aux_sym_cmd_identifier_token31] = ACTIONS(2144), + [aux_sym_cmd_identifier_token32] = ACTIONS(2144), + [aux_sym_cmd_identifier_token33] = ACTIONS(2144), + [aux_sym_cmd_identifier_token34] = ACTIONS(2144), + [aux_sym_cmd_identifier_token35] = ACTIONS(2144), + [aux_sym_cmd_identifier_token36] = ACTIONS(2144), + [aux_sym_cmd_identifier_token37] = ACTIONS(2144), + [aux_sym_cmd_identifier_token38] = ACTIONS(2144), + [aux_sym_cmd_identifier_token39] = ACTIONS(2144), + [aux_sym_cmd_identifier_token40] = ACTIONS(2144), + [anon_sym_def] = ACTIONS(2144), + [anon_sym_export_DASHenv] = ACTIONS(2144), + [anon_sym_extern] = ACTIONS(2144), + [anon_sym_module] = ACTIONS(2144), + [anon_sym_use] = ACTIONS(2144), + [anon_sym_LPAREN] = ACTIONS(2144), + [anon_sym_COMMA] = ACTIONS(2144), + [anon_sym_DOLLAR] = ACTIONS(2144), + [anon_sym_error] = ACTIONS(2144), + [anon_sym_DASH2] = ACTIONS(2144), + [anon_sym_break] = ACTIONS(2144), + [anon_sym_continue] = ACTIONS(2144), + [anon_sym_for] = ACTIONS(2144), + [anon_sym_in2] = ACTIONS(2144), + [anon_sym_loop] = ACTIONS(2144), + [anon_sym_make] = ACTIONS(2144), + [anon_sym_while] = ACTIONS(2144), + [anon_sym_do] = ACTIONS(2144), + [anon_sym_if] = ACTIONS(2144), + [anon_sym_else] = ACTIONS(2144), + [anon_sym_match] = ACTIONS(2144), + [anon_sym_RBRACE] = ACTIONS(2144), + [anon_sym_try] = ACTIONS(2144), + [anon_sym_catch] = ACTIONS(2144), + [anon_sym_return] = ACTIONS(2144), + [anon_sym_source] = ACTIONS(2144), + [anon_sym_source_DASHenv] = ACTIONS(2144), + [anon_sym_hide] = ACTIONS(2144), + [anon_sym_hide_DASHenv] = ACTIONS(2144), + [anon_sym_overlay] = ACTIONS(2144), + [anon_sym_as] = ACTIONS(2144), + [anon_sym_LPAREN2] = ACTIONS(2146), + [anon_sym_PLUS2] = ACTIONS(2144), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2144), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2144), + [aux_sym__val_number_decimal_token1] = ACTIONS(2144), + [aux_sym__val_number_decimal_token2] = ACTIONS(2144), + [aux_sym__val_number_decimal_token3] = ACTIONS(2144), + [aux_sym__val_number_decimal_token4] = ACTIONS(2144), + [aux_sym__val_number_token1] = ACTIONS(2144), + [aux_sym__val_number_token2] = ACTIONS(2144), + [aux_sym__val_number_token3] = ACTIONS(2144), + [aux_sym__val_number_token4] = ACTIONS(2144), + [aux_sym__val_number_token5] = ACTIONS(2144), + [aux_sym__val_number_token6] = ACTIONS(2144), + [anon_sym_DQUOTE] = ACTIONS(2144), + [sym__str_single_quotes] = ACTIONS(2144), + [sym__str_back_ticks] = ACTIONS(2144), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2144), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2144), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2144), + [sym__entry_separator] = ACTIONS(2148), + [anon_sym_register] = ACTIONS(2144), + [aux_sym__unquoted_in_record_token2] = ACTIONS(2150), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2148), }, [512] = { [sym_comment] = STATE(512), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_alias] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_let_DASHenv] = ACTIONS(1719), - [anon_sym_mut] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [aux_sym_cmd_identifier_token1] = ACTIONS(1719), - [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(1719), - [aux_sym_cmd_identifier_token9] = ACTIONS(1719), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1719), - [aux_sym_cmd_identifier_token13] = ACTIONS(1719), - [aux_sym_cmd_identifier_token14] = ACTIONS(1719), - [aux_sym_cmd_identifier_token15] = ACTIONS(1719), - [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(1719), - [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(1719), - [aux_sym_cmd_identifier_token39] = ACTIONS(1721), - [aux_sym_cmd_identifier_token40] = ACTIONS(1721), - [anon_sym_def] = ACTIONS(1719), - [anon_sym_export_DASHenv] = ACTIONS(1719), - [anon_sym_extern] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_use] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_COMMA] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_error] = ACTIONS(1719), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_in2] = ACTIONS(1719), - [anon_sym_loop] = ACTIONS(1719), - [anon_sym_make] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_match] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_catch] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_source] = ACTIONS(1719), - [anon_sym_source_DASHenv] = ACTIONS(1719), - [anon_sym_hide] = ACTIONS(1719), - [anon_sym_hide_DASHenv] = ACTIONS(1719), - [anon_sym_overlay] = ACTIONS(1719), - [anon_sym_as] = ACTIONS(1719), - [anon_sym_LPAREN2] = ACTIONS(1721), - [anon_sym_PLUS2] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), - [aux_sym__immediate_decimal_token2] = ACTIONS(2083), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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(1719), - [aux_sym__val_number_token5] = ACTIONS(1719), - [aux_sym__val_number_token6] = ACTIONS(1719), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1719), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1719), + [anon_sym_export] = ACTIONS(1945), + [anon_sym_alias] = ACTIONS(1945), + [anon_sym_let] = ACTIONS(1945), + [anon_sym_let_DASHenv] = ACTIONS(1945), + [anon_sym_mut] = ACTIONS(1945), + [anon_sym_const] = ACTIONS(1945), + [aux_sym_cmd_identifier_token1] = ACTIONS(1945), + [aux_sym_cmd_identifier_token2] = ACTIONS(1947), + [aux_sym_cmd_identifier_token3] = ACTIONS(1947), + [aux_sym_cmd_identifier_token4] = ACTIONS(1947), + [aux_sym_cmd_identifier_token5] = ACTIONS(1947), + [aux_sym_cmd_identifier_token6] = ACTIONS(1947), + [aux_sym_cmd_identifier_token7] = ACTIONS(1947), + [aux_sym_cmd_identifier_token8] = ACTIONS(1945), + [aux_sym_cmd_identifier_token9] = ACTIONS(1945), + [aux_sym_cmd_identifier_token10] = ACTIONS(1947), + [aux_sym_cmd_identifier_token11] = ACTIONS(1947), + [aux_sym_cmd_identifier_token12] = ACTIONS(1945), + [aux_sym_cmd_identifier_token13] = ACTIONS(1945), + [aux_sym_cmd_identifier_token14] = ACTIONS(1945), + [aux_sym_cmd_identifier_token15] = ACTIONS(1945), + [aux_sym_cmd_identifier_token16] = ACTIONS(1947), + [aux_sym_cmd_identifier_token17] = ACTIONS(1947), + [aux_sym_cmd_identifier_token18] = ACTIONS(1947), + [aux_sym_cmd_identifier_token19] = ACTIONS(1947), + [aux_sym_cmd_identifier_token20] = ACTIONS(1947), + [aux_sym_cmd_identifier_token21] = ACTIONS(1947), + [aux_sym_cmd_identifier_token22] = ACTIONS(1947), + [aux_sym_cmd_identifier_token23] = ACTIONS(1947), + [aux_sym_cmd_identifier_token24] = ACTIONS(1947), + [aux_sym_cmd_identifier_token25] = ACTIONS(1947), + [aux_sym_cmd_identifier_token26] = ACTIONS(1947), + [aux_sym_cmd_identifier_token27] = ACTIONS(1947), + [aux_sym_cmd_identifier_token28] = ACTIONS(1947), + [aux_sym_cmd_identifier_token29] = ACTIONS(1947), + [aux_sym_cmd_identifier_token30] = ACTIONS(1947), + [aux_sym_cmd_identifier_token31] = ACTIONS(1947), + [aux_sym_cmd_identifier_token32] = ACTIONS(1947), + [aux_sym_cmd_identifier_token33] = ACTIONS(1947), + [aux_sym_cmd_identifier_token34] = ACTIONS(1945), + [aux_sym_cmd_identifier_token35] = ACTIONS(1947), + [aux_sym_cmd_identifier_token36] = ACTIONS(1947), + [aux_sym_cmd_identifier_token37] = ACTIONS(1947), + [aux_sym_cmd_identifier_token38] = ACTIONS(1945), + [aux_sym_cmd_identifier_token39] = ACTIONS(1947), + [aux_sym_cmd_identifier_token40] = ACTIONS(1947), + [anon_sym_def] = ACTIONS(1945), + [anon_sym_export_DASHenv] = ACTIONS(1945), + [anon_sym_extern] = ACTIONS(1945), + [anon_sym_module] = ACTIONS(1945), + [anon_sym_use] = ACTIONS(1945), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_COMMA] = ACTIONS(1947), + [anon_sym_DOLLAR] = ACTIONS(1945), + [anon_sym_error] = ACTIONS(1945), + [anon_sym_DASH2] = ACTIONS(1945), + [anon_sym_break] = ACTIONS(1945), + [anon_sym_continue] = ACTIONS(1945), + [anon_sym_for] = ACTIONS(1945), + [anon_sym_in2] = ACTIONS(1945), + [anon_sym_loop] = ACTIONS(1945), + [anon_sym_make] = ACTIONS(1945), + [anon_sym_while] = ACTIONS(1945), + [anon_sym_do] = ACTIONS(1945), + [anon_sym_if] = ACTIONS(1945), + [anon_sym_else] = ACTIONS(1945), + [anon_sym_match] = ACTIONS(1945), + [anon_sym_RBRACE] = ACTIONS(1947), + [anon_sym_try] = ACTIONS(1945), + [anon_sym_catch] = ACTIONS(1945), + [anon_sym_return] = ACTIONS(1945), + [anon_sym_source] = ACTIONS(1945), + [anon_sym_source_DASHenv] = ACTIONS(1945), + [anon_sym_hide] = ACTIONS(1945), + [anon_sym_hide_DASHenv] = ACTIONS(1945), + [anon_sym_overlay] = ACTIONS(1945), + [anon_sym_as] = ACTIONS(1945), + [anon_sym_PLUS2] = ACTIONS(1945), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1947), + [anon_sym_DOT_DOT2] = ACTIONS(1945), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1947), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1947), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1947), + [aux_sym__val_number_decimal_token1] = ACTIONS(1945), + [aux_sym__val_number_decimal_token2] = ACTIONS(1947), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), + [aux_sym__val_number_token1] = ACTIONS(1947), + [aux_sym__val_number_token2] = ACTIONS(1947), + [aux_sym__val_number_token3] = ACTIONS(1947), + [aux_sym__val_number_token4] = ACTIONS(1945), + [aux_sym__val_number_token5] = ACTIONS(1945), + [aux_sym__val_number_token6] = ACTIONS(1945), + [anon_sym_DQUOTE] = ACTIONS(1947), + [sym__str_single_quotes] = ACTIONS(1947), + [sym__str_back_ticks] = ACTIONS(1947), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1947), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1947), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1947), + [anon_sym_register] = ACTIONS(1945), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1721), + [sym_raw_string_begin] = ACTIONS(1947), }, [513] = { [sym_comment] = STATE(513), - [anon_sym_export] = ACTIONS(1666), - [anon_sym_alias] = ACTIONS(1666), - [anon_sym_let] = ACTIONS(1666), - [anon_sym_let_DASHenv] = ACTIONS(1666), - [anon_sym_mut] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [aux_sym_cmd_identifier_token1] = ACTIONS(1666), - [aux_sym_cmd_identifier_token2] = ACTIONS(1668), - [aux_sym_cmd_identifier_token3] = ACTIONS(1668), - [aux_sym_cmd_identifier_token4] = ACTIONS(1668), - [aux_sym_cmd_identifier_token5] = ACTIONS(1668), - [aux_sym_cmd_identifier_token6] = ACTIONS(1668), - [aux_sym_cmd_identifier_token7] = ACTIONS(1668), - [aux_sym_cmd_identifier_token8] = ACTIONS(1666), - [aux_sym_cmd_identifier_token9] = ACTIONS(1666), - [aux_sym_cmd_identifier_token10] = ACTIONS(1668), - [aux_sym_cmd_identifier_token11] = ACTIONS(1668), - [aux_sym_cmd_identifier_token12] = ACTIONS(1666), - [aux_sym_cmd_identifier_token13] = ACTIONS(1666), - [aux_sym_cmd_identifier_token14] = ACTIONS(1666), - [aux_sym_cmd_identifier_token15] = ACTIONS(1666), - [aux_sym_cmd_identifier_token16] = ACTIONS(1668), - [aux_sym_cmd_identifier_token17] = ACTIONS(1668), - [aux_sym_cmd_identifier_token18] = ACTIONS(1668), - [aux_sym_cmd_identifier_token19] = ACTIONS(1668), - [aux_sym_cmd_identifier_token20] = ACTIONS(1668), - [aux_sym_cmd_identifier_token21] = ACTIONS(1668), - [aux_sym_cmd_identifier_token22] = ACTIONS(1668), - [aux_sym_cmd_identifier_token23] = ACTIONS(1668), - [aux_sym_cmd_identifier_token24] = ACTIONS(1668), - [aux_sym_cmd_identifier_token25] = ACTIONS(1668), - [aux_sym_cmd_identifier_token26] = ACTIONS(1668), - [aux_sym_cmd_identifier_token27] = ACTIONS(1668), - [aux_sym_cmd_identifier_token28] = ACTIONS(1668), - [aux_sym_cmd_identifier_token29] = ACTIONS(1668), - [aux_sym_cmd_identifier_token30] = ACTIONS(1668), - [aux_sym_cmd_identifier_token31] = ACTIONS(1668), - [aux_sym_cmd_identifier_token32] = ACTIONS(1668), - [aux_sym_cmd_identifier_token33] = ACTIONS(1668), - [aux_sym_cmd_identifier_token34] = ACTIONS(1666), - [aux_sym_cmd_identifier_token35] = ACTIONS(1668), - [aux_sym_cmd_identifier_token36] = ACTIONS(1668), - [aux_sym_cmd_identifier_token37] = ACTIONS(1668), - [aux_sym_cmd_identifier_token38] = ACTIONS(1666), - [aux_sym_cmd_identifier_token39] = ACTIONS(1668), - [aux_sym_cmd_identifier_token40] = ACTIONS(1668), - [anon_sym_def] = ACTIONS(1666), - [anon_sym_export_DASHenv] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_module] = ACTIONS(1666), - [anon_sym_use] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_error] = ACTIONS(1666), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_in2] = ACTIONS(1666), - [anon_sym_loop] = ACTIONS(1666), - [anon_sym_make] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_do] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_match] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_try] = ACTIONS(1666), - [anon_sym_catch] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_source] = ACTIONS(1666), - [anon_sym_source_DASHenv] = ACTIONS(1666), - [anon_sym_hide] = ACTIONS(1666), - [anon_sym_hide_DASHenv] = ACTIONS(1666), - [anon_sym_overlay] = ACTIONS(1666), - [anon_sym_as] = ACTIONS(1666), - [anon_sym_PLUS2] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1668), - [anon_sym_DOT_DOT2] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1666), - [aux_sym__val_number_token5] = ACTIONS(1666), - [aux_sym__val_number_token6] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), + [anon_sym_export] = ACTIONS(1701), + [anon_sym_alias] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1701), + [anon_sym_let_DASHenv] = ACTIONS(1701), + [anon_sym_mut] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [aux_sym_cmd_identifier_token1] = ACTIONS(1701), + [aux_sym_cmd_identifier_token2] = ACTIONS(1701), + [aux_sym_cmd_identifier_token3] = ACTIONS(1701), + [aux_sym_cmd_identifier_token4] = ACTIONS(1701), + [aux_sym_cmd_identifier_token5] = ACTIONS(1701), + [aux_sym_cmd_identifier_token6] = ACTIONS(1701), + [aux_sym_cmd_identifier_token7] = ACTIONS(1701), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1701), + [aux_sym_cmd_identifier_token11] = ACTIONS(1701), + [aux_sym_cmd_identifier_token12] = ACTIONS(1701), + [aux_sym_cmd_identifier_token13] = ACTIONS(1701), + [aux_sym_cmd_identifier_token14] = ACTIONS(1701), + [aux_sym_cmd_identifier_token15] = ACTIONS(1701), + [aux_sym_cmd_identifier_token16] = ACTIONS(1701), + [aux_sym_cmd_identifier_token17] = ACTIONS(1701), + [aux_sym_cmd_identifier_token18] = ACTIONS(1701), + [aux_sym_cmd_identifier_token19] = ACTIONS(1701), + [aux_sym_cmd_identifier_token20] = ACTIONS(1701), + [aux_sym_cmd_identifier_token21] = ACTIONS(1701), + [aux_sym_cmd_identifier_token22] = ACTIONS(1701), + [aux_sym_cmd_identifier_token23] = ACTIONS(1701), + [aux_sym_cmd_identifier_token24] = ACTIONS(1701), + [aux_sym_cmd_identifier_token25] = ACTIONS(1701), + [aux_sym_cmd_identifier_token26] = ACTIONS(1701), + [aux_sym_cmd_identifier_token27] = ACTIONS(1701), + [aux_sym_cmd_identifier_token28] = ACTIONS(1701), + [aux_sym_cmd_identifier_token29] = ACTIONS(1701), + [aux_sym_cmd_identifier_token30] = ACTIONS(1701), + [aux_sym_cmd_identifier_token31] = ACTIONS(1701), + [aux_sym_cmd_identifier_token32] = ACTIONS(1701), + [aux_sym_cmd_identifier_token33] = ACTIONS(1701), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1701), + [aux_sym_cmd_identifier_token36] = ACTIONS(1701), + [aux_sym_cmd_identifier_token37] = ACTIONS(1701), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1701), + [aux_sym_cmd_identifier_token40] = ACTIONS(1701), + [anon_sym_def] = ACTIONS(1701), + [anon_sym_export_DASHenv] = ACTIONS(1701), + [anon_sym_extern] = ACTIONS(1701), + [anon_sym_module] = ACTIONS(1701), + [anon_sym_use] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_COMMA] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = ACTIONS(1701), + [anon_sym_loop] = ACTIONS(1701), + [anon_sym_make] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_do] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_else] = ACTIONS(1701), + [anon_sym_match] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1701), + [anon_sym_try] = ACTIONS(1701), + [anon_sym_catch] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_source] = ACTIONS(1701), + [anon_sym_source_DASHenv] = ACTIONS(1701), + [anon_sym_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1701), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1701), + [aux_sym__val_number_decimal_token3] = ACTIONS(1701), + [aux_sym__val_number_decimal_token4] = ACTIONS(1701), + [aux_sym__val_number_token1] = ACTIONS(1701), + [aux_sym__val_number_token2] = ACTIONS(1701), + [aux_sym__val_number_token3] = ACTIONS(1701), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [sym__str_single_quotes] = ACTIONS(1701), + [sym__str_back_ticks] = ACTIONS(1701), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1701), + [sym__entry_separator] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1703), }, [514] = { + [sym__expr_parenthesized_immediate] = STATE(6957), [sym_comment] = STATE(514), + [anon_sym_export] = ACTIONS(2001), + [anon_sym_alias] = ACTIONS(2001), + [anon_sym_let] = ACTIONS(2001), + [anon_sym_let_DASHenv] = ACTIONS(2001), + [anon_sym_mut] = ACTIONS(2001), + [anon_sym_const] = ACTIONS(2001), + [aux_sym_cmd_identifier_token1] = ACTIONS(2001), + [aux_sym_cmd_identifier_token2] = ACTIONS(2001), + [aux_sym_cmd_identifier_token3] = ACTIONS(2001), + [aux_sym_cmd_identifier_token4] = ACTIONS(2001), + [aux_sym_cmd_identifier_token5] = ACTIONS(2001), + [aux_sym_cmd_identifier_token6] = ACTIONS(2001), + [aux_sym_cmd_identifier_token7] = ACTIONS(2001), + [aux_sym_cmd_identifier_token8] = ACTIONS(2001), + [aux_sym_cmd_identifier_token9] = ACTIONS(2001), + [aux_sym_cmd_identifier_token10] = ACTIONS(2001), + [aux_sym_cmd_identifier_token11] = ACTIONS(2001), + [aux_sym_cmd_identifier_token12] = ACTIONS(2001), + [aux_sym_cmd_identifier_token13] = ACTIONS(2001), + [aux_sym_cmd_identifier_token14] = ACTIONS(2001), + [aux_sym_cmd_identifier_token15] = ACTIONS(2001), + [aux_sym_cmd_identifier_token16] = ACTIONS(2001), + [aux_sym_cmd_identifier_token17] = ACTIONS(2001), + [aux_sym_cmd_identifier_token18] = ACTIONS(2001), + [aux_sym_cmd_identifier_token19] = ACTIONS(2001), + [aux_sym_cmd_identifier_token20] = ACTIONS(2001), + [aux_sym_cmd_identifier_token21] = ACTIONS(2001), + [aux_sym_cmd_identifier_token22] = ACTIONS(2001), + [aux_sym_cmd_identifier_token23] = ACTIONS(2001), + [aux_sym_cmd_identifier_token24] = ACTIONS(2001), + [aux_sym_cmd_identifier_token25] = ACTIONS(2001), + [aux_sym_cmd_identifier_token26] = ACTIONS(2001), + [aux_sym_cmd_identifier_token27] = ACTIONS(2001), + [aux_sym_cmd_identifier_token28] = ACTIONS(2001), + [aux_sym_cmd_identifier_token29] = ACTIONS(2001), + [aux_sym_cmd_identifier_token30] = ACTIONS(2001), + [aux_sym_cmd_identifier_token31] = ACTIONS(2001), + [aux_sym_cmd_identifier_token32] = ACTIONS(2001), + [aux_sym_cmd_identifier_token33] = ACTIONS(2001), + [aux_sym_cmd_identifier_token34] = ACTIONS(2001), + [aux_sym_cmd_identifier_token35] = ACTIONS(2001), + [aux_sym_cmd_identifier_token36] = ACTIONS(2001), + [aux_sym_cmd_identifier_token37] = ACTIONS(2001), + [aux_sym_cmd_identifier_token38] = ACTIONS(2001), + [aux_sym_cmd_identifier_token39] = ACTIONS(2001), + [aux_sym_cmd_identifier_token40] = ACTIONS(2001), + [anon_sym_def] = ACTIONS(2001), + [anon_sym_export_DASHenv] = ACTIONS(2001), + [anon_sym_extern] = ACTIONS(2001), + [anon_sym_module] = ACTIONS(2001), + [anon_sym_use] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_COMMA] = ACTIONS(2001), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_error] = ACTIONS(2001), + [anon_sym_DASH2] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_in2] = ACTIONS(2001), + [anon_sym_loop] = ACTIONS(2001), + [anon_sym_make] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2001), + [anon_sym_do] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_else] = ACTIONS(2001), + [anon_sym_match] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_try] = ACTIONS(2001), + [anon_sym_catch] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_source] = ACTIONS(2001), + [anon_sym_source_DASHenv] = ACTIONS(2001), + [anon_sym_hide] = ACTIONS(2001), + [anon_sym_hide_DASHenv] = ACTIONS(2001), + [anon_sym_overlay] = ACTIONS(2001), + [anon_sym_as] = ACTIONS(2001), + [anon_sym_LPAREN2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(2001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2001), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2001), + [aux_sym__val_number_decimal_token1] = ACTIONS(2001), + [aux_sym__val_number_decimal_token2] = ACTIONS(2001), + [aux_sym__val_number_decimal_token3] = ACTIONS(2001), + [aux_sym__val_number_decimal_token4] = ACTIONS(2001), + [aux_sym__val_number_token1] = ACTIONS(2001), + [aux_sym__val_number_token2] = ACTIONS(2001), + [aux_sym__val_number_token3] = ACTIONS(2001), + [aux_sym__val_number_token4] = ACTIONS(2001), + [aux_sym__val_number_token5] = ACTIONS(2001), + [aux_sym__val_number_token6] = ACTIONS(2001), + [anon_sym_DQUOTE] = ACTIONS(2001), + [sym__str_single_quotes] = ACTIONS(2001), + [sym__str_back_ticks] = ACTIONS(2001), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2001), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2001), + [sym__entry_separator] = ACTIONS(2003), + [anon_sym_register] = ACTIONS(2001), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2003), + }, + [515] = { + [sym_comment] = STATE(515), + [anon_sym_export] = ACTIONS(964), + [anon_sym_alias] = ACTIONS(964), + [anon_sym_let] = ACTIONS(964), + [anon_sym_let_DASHenv] = ACTIONS(964), + [anon_sym_mut] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [aux_sym_cmd_identifier_token1] = ACTIONS(964), + [aux_sym_cmd_identifier_token2] = ACTIONS(966), + [aux_sym_cmd_identifier_token3] = ACTIONS(966), + [aux_sym_cmd_identifier_token4] = ACTIONS(966), + [aux_sym_cmd_identifier_token5] = ACTIONS(966), + [aux_sym_cmd_identifier_token6] = ACTIONS(966), + [aux_sym_cmd_identifier_token7] = ACTIONS(966), + [aux_sym_cmd_identifier_token8] = ACTIONS(964), + [aux_sym_cmd_identifier_token9] = ACTIONS(964), + [aux_sym_cmd_identifier_token10] = ACTIONS(966), + [aux_sym_cmd_identifier_token11] = ACTIONS(966), + [aux_sym_cmd_identifier_token12] = ACTIONS(964), + [aux_sym_cmd_identifier_token13] = ACTIONS(964), + [aux_sym_cmd_identifier_token14] = ACTIONS(964), + [aux_sym_cmd_identifier_token15] = ACTIONS(964), + [aux_sym_cmd_identifier_token16] = ACTIONS(966), + [aux_sym_cmd_identifier_token17] = ACTIONS(966), + [aux_sym_cmd_identifier_token18] = ACTIONS(966), + [aux_sym_cmd_identifier_token19] = ACTIONS(966), + [aux_sym_cmd_identifier_token20] = ACTIONS(966), + [aux_sym_cmd_identifier_token21] = ACTIONS(966), + [aux_sym_cmd_identifier_token22] = ACTIONS(966), + [aux_sym_cmd_identifier_token23] = ACTIONS(966), + [aux_sym_cmd_identifier_token24] = ACTIONS(966), + [aux_sym_cmd_identifier_token25] = ACTIONS(966), + [aux_sym_cmd_identifier_token26] = ACTIONS(966), + [aux_sym_cmd_identifier_token27] = ACTIONS(966), + [aux_sym_cmd_identifier_token28] = ACTIONS(966), + [aux_sym_cmd_identifier_token29] = ACTIONS(966), + [aux_sym_cmd_identifier_token30] = ACTIONS(966), + [aux_sym_cmd_identifier_token31] = ACTIONS(966), + [aux_sym_cmd_identifier_token32] = ACTIONS(966), + [aux_sym_cmd_identifier_token33] = ACTIONS(966), + [aux_sym_cmd_identifier_token34] = ACTIONS(964), + [aux_sym_cmd_identifier_token35] = ACTIONS(966), + [aux_sym_cmd_identifier_token36] = ACTIONS(966), + [aux_sym_cmd_identifier_token37] = ACTIONS(966), + [aux_sym_cmd_identifier_token38] = ACTIONS(964), + [aux_sym_cmd_identifier_token39] = ACTIONS(966), + [aux_sym_cmd_identifier_token40] = ACTIONS(966), + [anon_sym_def] = ACTIONS(964), + [anon_sym_export_DASHenv] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym_module] = ACTIONS(964), + [anon_sym_use] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_COMMA] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_error] = ACTIONS(964), + [anon_sym_DASH2] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_in2] = ACTIONS(964), + [anon_sym_loop] = ACTIONS(964), + [anon_sym_make] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_match] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_try] = ACTIONS(964), + [anon_sym_catch] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_source] = ACTIONS(964), + [anon_sym_source_DASHenv] = ACTIONS(964), + [anon_sym_hide] = ACTIONS(964), + [anon_sym_hide_DASHenv] = ACTIONS(964), + [anon_sym_overlay] = ACTIONS(964), + [anon_sym_as] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(2152), + [anon_sym_PLUS2] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(964), + [aux_sym__val_number_decimal_token2] = ACTIONS(966), + [aux_sym__val_number_decimal_token3] = ACTIONS(966), + [aux_sym__val_number_decimal_token4] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(964), + [aux_sym__val_number_token5] = ACTIONS(964), + [aux_sym__val_number_token6] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(966), + [anon_sym_register] = ACTIONS(964), + [anon_sym_COLON2] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(966), + }, + [516] = { + [sym_comment] = STATE(516), + [anon_sym_export] = ACTIONS(1686), + [anon_sym_alias] = ACTIONS(1686), + [anon_sym_let] = ACTIONS(1686), + [anon_sym_let_DASHenv] = ACTIONS(1686), + [anon_sym_mut] = ACTIONS(1686), + [anon_sym_const] = ACTIONS(1686), + [aux_sym_cmd_identifier_token1] = ACTIONS(1686), + [aux_sym_cmd_identifier_token2] = ACTIONS(1686), + [aux_sym_cmd_identifier_token3] = ACTIONS(1686), + [aux_sym_cmd_identifier_token4] = ACTIONS(1686), + [aux_sym_cmd_identifier_token5] = ACTIONS(1686), + [aux_sym_cmd_identifier_token6] = ACTIONS(1686), + [aux_sym_cmd_identifier_token7] = ACTIONS(1686), + [aux_sym_cmd_identifier_token8] = ACTIONS(1686), + [aux_sym_cmd_identifier_token9] = ACTIONS(1686), + [aux_sym_cmd_identifier_token10] = ACTIONS(1686), + [aux_sym_cmd_identifier_token11] = ACTIONS(1686), + [aux_sym_cmd_identifier_token12] = ACTIONS(1686), + [aux_sym_cmd_identifier_token13] = ACTIONS(1686), + [aux_sym_cmd_identifier_token14] = ACTIONS(1686), + [aux_sym_cmd_identifier_token15] = ACTIONS(1686), + [aux_sym_cmd_identifier_token16] = ACTIONS(1686), + [aux_sym_cmd_identifier_token17] = ACTIONS(1686), + [aux_sym_cmd_identifier_token18] = ACTIONS(1686), + [aux_sym_cmd_identifier_token19] = ACTIONS(1686), + [aux_sym_cmd_identifier_token20] = ACTIONS(1686), + [aux_sym_cmd_identifier_token21] = ACTIONS(1686), + [aux_sym_cmd_identifier_token22] = ACTIONS(1686), + [aux_sym_cmd_identifier_token23] = ACTIONS(1686), + [aux_sym_cmd_identifier_token24] = ACTIONS(1686), + [aux_sym_cmd_identifier_token25] = ACTIONS(1686), + [aux_sym_cmd_identifier_token26] = ACTIONS(1686), + [aux_sym_cmd_identifier_token27] = ACTIONS(1686), + [aux_sym_cmd_identifier_token28] = ACTIONS(1686), + [aux_sym_cmd_identifier_token29] = ACTIONS(1686), + [aux_sym_cmd_identifier_token30] = ACTIONS(1686), + [aux_sym_cmd_identifier_token31] = ACTIONS(1686), + [aux_sym_cmd_identifier_token32] = ACTIONS(1686), + [aux_sym_cmd_identifier_token33] = ACTIONS(1686), + [aux_sym_cmd_identifier_token34] = ACTIONS(1686), + [aux_sym_cmd_identifier_token35] = ACTIONS(1686), + [aux_sym_cmd_identifier_token36] = ACTIONS(1686), + [aux_sym_cmd_identifier_token37] = ACTIONS(1686), + [aux_sym_cmd_identifier_token38] = ACTIONS(1686), + [aux_sym_cmd_identifier_token39] = ACTIONS(1686), + [aux_sym_cmd_identifier_token40] = ACTIONS(1686), + [anon_sym_def] = ACTIONS(1686), + [anon_sym_export_DASHenv] = ACTIONS(1686), + [anon_sym_extern] = ACTIONS(1686), + [anon_sym_module] = ACTIONS(1686), + [anon_sym_use] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_error] = ACTIONS(1686), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_break] = ACTIONS(1686), + [anon_sym_continue] = ACTIONS(1686), + [anon_sym_for] = ACTIONS(1686), + [anon_sym_in2] = ACTIONS(1686), + [anon_sym_loop] = ACTIONS(1686), + [anon_sym_make] = ACTIONS(1686), + [anon_sym_while] = ACTIONS(1686), + [anon_sym_do] = ACTIONS(1686), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_else] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1686), + [anon_sym_try] = ACTIONS(1686), + [anon_sym_catch] = ACTIONS(1686), + [anon_sym_return] = ACTIONS(1686), + [anon_sym_source] = ACTIONS(1686), + [anon_sym_source_DASHenv] = ACTIONS(1686), + [anon_sym_hide] = ACTIONS(1686), + [anon_sym_hide_DASHenv] = ACTIONS(1686), + [anon_sym_overlay] = ACTIONS(1686), + [anon_sym_as] = ACTIONS(1686), + [anon_sym_LPAREN2] = ACTIONS(1688), + [anon_sym_PLUS2] = ACTIONS(1686), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1686), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1686), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1686), + [aux_sym__val_number_decimal_token3] = ACTIONS(1686), + [aux_sym__val_number_decimal_token4] = ACTIONS(1686), + [aux_sym__val_number_token1] = ACTIONS(1686), + [aux_sym__val_number_token2] = ACTIONS(1686), + [aux_sym__val_number_token3] = ACTIONS(1686), + [aux_sym__val_number_token4] = ACTIONS(1686), + [aux_sym__val_number_token5] = ACTIONS(1686), + [aux_sym__val_number_token6] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1686), + [sym__str_single_quotes] = ACTIONS(1686), + [sym__str_back_ticks] = ACTIONS(1686), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1686), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1686), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1686), + [sym__entry_separator] = ACTIONS(1688), + [anon_sym_register] = ACTIONS(1686), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1688), + }, + [517] = { + [sym_comment] = STATE(517), + [anon_sym_export] = ACTIONS(964), + [anon_sym_alias] = ACTIONS(964), + [anon_sym_let] = ACTIONS(964), + [anon_sym_let_DASHenv] = ACTIONS(964), + [anon_sym_mut] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [aux_sym_cmd_identifier_token1] = ACTIONS(964), + [aux_sym_cmd_identifier_token2] = ACTIONS(964), + [aux_sym_cmd_identifier_token3] = ACTIONS(964), + [aux_sym_cmd_identifier_token4] = ACTIONS(964), + [aux_sym_cmd_identifier_token5] = ACTIONS(964), + [aux_sym_cmd_identifier_token6] = ACTIONS(964), + [aux_sym_cmd_identifier_token7] = ACTIONS(964), + [aux_sym_cmd_identifier_token8] = ACTIONS(964), + [aux_sym_cmd_identifier_token9] = ACTIONS(964), + [aux_sym_cmd_identifier_token10] = ACTIONS(964), + [aux_sym_cmd_identifier_token11] = ACTIONS(964), + [aux_sym_cmd_identifier_token12] = ACTIONS(964), + [aux_sym_cmd_identifier_token13] = ACTIONS(964), + [aux_sym_cmd_identifier_token14] = ACTIONS(964), + [aux_sym_cmd_identifier_token15] = ACTIONS(964), + [aux_sym_cmd_identifier_token16] = ACTIONS(964), + [aux_sym_cmd_identifier_token17] = ACTIONS(964), + [aux_sym_cmd_identifier_token18] = ACTIONS(964), + [aux_sym_cmd_identifier_token19] = ACTIONS(964), + [aux_sym_cmd_identifier_token20] = ACTIONS(964), + [aux_sym_cmd_identifier_token21] = ACTIONS(964), + [aux_sym_cmd_identifier_token22] = ACTIONS(964), + [aux_sym_cmd_identifier_token23] = ACTIONS(964), + [aux_sym_cmd_identifier_token24] = ACTIONS(964), + [aux_sym_cmd_identifier_token25] = ACTIONS(964), + [aux_sym_cmd_identifier_token26] = ACTIONS(964), + [aux_sym_cmd_identifier_token27] = ACTIONS(964), + [aux_sym_cmd_identifier_token28] = ACTIONS(964), + [aux_sym_cmd_identifier_token29] = ACTIONS(964), + [aux_sym_cmd_identifier_token30] = ACTIONS(964), + [aux_sym_cmd_identifier_token31] = ACTIONS(964), + [aux_sym_cmd_identifier_token32] = ACTIONS(964), + [aux_sym_cmd_identifier_token33] = ACTIONS(964), + [aux_sym_cmd_identifier_token34] = ACTIONS(964), + [aux_sym_cmd_identifier_token35] = ACTIONS(964), + [aux_sym_cmd_identifier_token36] = ACTIONS(964), + [aux_sym_cmd_identifier_token37] = ACTIONS(964), + [aux_sym_cmd_identifier_token38] = ACTIONS(964), + [aux_sym_cmd_identifier_token39] = ACTIONS(964), + [aux_sym_cmd_identifier_token40] = ACTIONS(964), + [anon_sym_def] = ACTIONS(964), + [anon_sym_export_DASHenv] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym_module] = ACTIONS(964), + [anon_sym_use] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_COMMA] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_error] = ACTIONS(964), + [anon_sym_DASH2] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_in2] = ACTIONS(964), + [anon_sym_loop] = ACTIONS(964), + [anon_sym_make] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_match] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_try] = ACTIONS(964), + [anon_sym_catch] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_source] = ACTIONS(964), + [anon_sym_source_DASHenv] = ACTIONS(964), + [anon_sym_hide] = ACTIONS(964), + [anon_sym_hide_DASHenv] = ACTIONS(964), + [anon_sym_overlay] = ACTIONS(964), + [anon_sym_as] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(2154), + [anon_sym_PLUS2] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(964), + [aux_sym__val_number_decimal_token1] = ACTIONS(964), + [aux_sym__val_number_decimal_token2] = ACTIONS(964), + [aux_sym__val_number_decimal_token3] = ACTIONS(964), + [aux_sym__val_number_decimal_token4] = ACTIONS(964), + [aux_sym__val_number_token1] = ACTIONS(964), + [aux_sym__val_number_token2] = ACTIONS(964), + [aux_sym__val_number_token3] = ACTIONS(964), + [aux_sym__val_number_token4] = ACTIONS(964), + [aux_sym__val_number_token5] = ACTIONS(964), + [aux_sym__val_number_token6] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(964), + [sym__str_single_quotes] = ACTIONS(964), + [sym__str_back_ticks] = ACTIONS(964), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(964), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(964), + [sym__entry_separator] = ACTIONS(966), + [anon_sym_register] = ACTIONS(964), + [anon_sym_DOT2] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(966), + }, + [518] = { + [sym_comment] = STATE(518), + [anon_sym_export] = ACTIONS(1760), + [anon_sym_alias] = ACTIONS(1760), + [anon_sym_let] = ACTIONS(1760), + [anon_sym_let_DASHenv] = ACTIONS(1760), + [anon_sym_mut] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [aux_sym_cmd_identifier_token1] = ACTIONS(1760), + [aux_sym_cmd_identifier_token2] = ACTIONS(1760), + [aux_sym_cmd_identifier_token3] = ACTIONS(1760), + [aux_sym_cmd_identifier_token4] = ACTIONS(1760), + [aux_sym_cmd_identifier_token5] = ACTIONS(1760), + [aux_sym_cmd_identifier_token6] = ACTIONS(1760), + [aux_sym_cmd_identifier_token7] = ACTIONS(1760), + [aux_sym_cmd_identifier_token8] = ACTIONS(1760), + [aux_sym_cmd_identifier_token9] = ACTIONS(1760), + [aux_sym_cmd_identifier_token10] = ACTIONS(1760), + [aux_sym_cmd_identifier_token11] = ACTIONS(1760), + [aux_sym_cmd_identifier_token12] = ACTIONS(1760), + [aux_sym_cmd_identifier_token13] = ACTIONS(1760), + [aux_sym_cmd_identifier_token14] = ACTIONS(1760), + [aux_sym_cmd_identifier_token15] = ACTIONS(1760), + [aux_sym_cmd_identifier_token16] = ACTIONS(1760), + [aux_sym_cmd_identifier_token17] = ACTIONS(1760), + [aux_sym_cmd_identifier_token18] = ACTIONS(1760), + [aux_sym_cmd_identifier_token19] = ACTIONS(1760), + [aux_sym_cmd_identifier_token20] = ACTIONS(1760), + [aux_sym_cmd_identifier_token21] = ACTIONS(1760), + [aux_sym_cmd_identifier_token22] = ACTIONS(1760), + [aux_sym_cmd_identifier_token23] = ACTIONS(1760), + [aux_sym_cmd_identifier_token24] = ACTIONS(1760), + [aux_sym_cmd_identifier_token25] = ACTIONS(1760), + [aux_sym_cmd_identifier_token26] = ACTIONS(1760), + [aux_sym_cmd_identifier_token27] = ACTIONS(1760), + [aux_sym_cmd_identifier_token28] = ACTIONS(1760), + [aux_sym_cmd_identifier_token29] = ACTIONS(1760), + [aux_sym_cmd_identifier_token30] = ACTIONS(1760), + [aux_sym_cmd_identifier_token31] = ACTIONS(1760), + [aux_sym_cmd_identifier_token32] = ACTIONS(1760), + [aux_sym_cmd_identifier_token33] = ACTIONS(1760), + [aux_sym_cmd_identifier_token34] = ACTIONS(1760), + [aux_sym_cmd_identifier_token35] = ACTIONS(1760), + [aux_sym_cmd_identifier_token36] = ACTIONS(1760), + [aux_sym_cmd_identifier_token37] = ACTIONS(1760), + [aux_sym_cmd_identifier_token38] = ACTIONS(1760), + [aux_sym_cmd_identifier_token39] = ACTIONS(1760), + [aux_sym_cmd_identifier_token40] = ACTIONS(1760), + [anon_sym_def] = ACTIONS(1760), + [anon_sym_export_DASHenv] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym_module] = ACTIONS(1760), + [anon_sym_use] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_COMMA] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_error] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_loop] = ACTIONS(1760), + [anon_sym_make] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_do] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_match] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_catch] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_source] = ACTIONS(1760), + [anon_sym_source_DASHenv] = ACTIONS(1760), + [anon_sym_hide] = ACTIONS(1760), + [anon_sym_hide_DASHenv] = ACTIONS(1760), + [anon_sym_overlay] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1760), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1760), + [aux_sym__val_number_decimal_token4] = ACTIONS(1760), + [aux_sym__val_number_token1] = ACTIONS(1760), + [aux_sym__val_number_token2] = ACTIONS(1760), + [aux_sym__val_number_token3] = ACTIONS(1760), + [aux_sym__val_number_token4] = ACTIONS(1760), + [aux_sym__val_number_token5] = ACTIONS(1760), + [aux_sym__val_number_token6] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1760), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1760), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1760), + [sym__entry_separator] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1760), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1762), + }, + [519] = { + [sym_comment] = STATE(519), + [anon_sym_export] = ACTIONS(958), + [anon_sym_alias] = ACTIONS(958), + [anon_sym_let] = ACTIONS(958), + [anon_sym_let_DASHenv] = ACTIONS(958), + [anon_sym_mut] = ACTIONS(958), + [anon_sym_const] = ACTIONS(958), + [aux_sym_cmd_identifier_token1] = ACTIONS(958), + [aux_sym_cmd_identifier_token2] = ACTIONS(958), + [aux_sym_cmd_identifier_token3] = ACTIONS(958), + [aux_sym_cmd_identifier_token4] = ACTIONS(958), + [aux_sym_cmd_identifier_token5] = ACTIONS(958), + [aux_sym_cmd_identifier_token6] = ACTIONS(958), + [aux_sym_cmd_identifier_token7] = ACTIONS(958), + [aux_sym_cmd_identifier_token8] = ACTIONS(958), + [aux_sym_cmd_identifier_token9] = ACTIONS(958), + [aux_sym_cmd_identifier_token10] = ACTIONS(958), + [aux_sym_cmd_identifier_token11] = ACTIONS(958), + [aux_sym_cmd_identifier_token12] = ACTIONS(958), + [aux_sym_cmd_identifier_token13] = ACTIONS(958), + [aux_sym_cmd_identifier_token14] = ACTIONS(958), + [aux_sym_cmd_identifier_token15] = ACTIONS(958), + [aux_sym_cmd_identifier_token16] = ACTIONS(958), + [aux_sym_cmd_identifier_token17] = ACTIONS(958), + [aux_sym_cmd_identifier_token18] = ACTIONS(958), + [aux_sym_cmd_identifier_token19] = ACTIONS(958), + [aux_sym_cmd_identifier_token20] = ACTIONS(958), + [aux_sym_cmd_identifier_token21] = ACTIONS(958), + [aux_sym_cmd_identifier_token22] = ACTIONS(958), + [aux_sym_cmd_identifier_token23] = ACTIONS(958), + [aux_sym_cmd_identifier_token24] = ACTIONS(958), + [aux_sym_cmd_identifier_token25] = ACTIONS(958), + [aux_sym_cmd_identifier_token26] = ACTIONS(958), + [aux_sym_cmd_identifier_token27] = ACTIONS(958), + [aux_sym_cmd_identifier_token28] = ACTIONS(958), + [aux_sym_cmd_identifier_token29] = ACTIONS(958), + [aux_sym_cmd_identifier_token30] = ACTIONS(958), + [aux_sym_cmd_identifier_token31] = ACTIONS(958), + [aux_sym_cmd_identifier_token32] = ACTIONS(958), + [aux_sym_cmd_identifier_token33] = ACTIONS(958), + [aux_sym_cmd_identifier_token34] = ACTIONS(958), + [aux_sym_cmd_identifier_token35] = ACTIONS(958), + [aux_sym_cmd_identifier_token36] = ACTIONS(958), + [aux_sym_cmd_identifier_token37] = ACTIONS(958), + [aux_sym_cmd_identifier_token38] = ACTIONS(958), + [aux_sym_cmd_identifier_token39] = ACTIONS(958), + [aux_sym_cmd_identifier_token40] = ACTIONS(958), + [anon_sym_def] = ACTIONS(958), + [anon_sym_export_DASHenv] = ACTIONS(958), + [anon_sym_extern] = ACTIONS(958), + [anon_sym_module] = ACTIONS(958), + [anon_sym_use] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(958), + [anon_sym_COMMA] = ACTIONS(958), + [anon_sym_DOLLAR] = ACTIONS(958), + [anon_sym_error] = ACTIONS(958), + [anon_sym_DASH2] = ACTIONS(958), + [anon_sym_break] = ACTIONS(958), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_for] = ACTIONS(958), + [anon_sym_in2] = ACTIONS(958), + [anon_sym_loop] = ACTIONS(958), + [anon_sym_make] = ACTIONS(958), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(958), + [anon_sym_if] = ACTIONS(958), + [anon_sym_else] = ACTIONS(958), + [anon_sym_match] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(958), + [anon_sym_try] = ACTIONS(958), + [anon_sym_catch] = ACTIONS(958), + [anon_sym_return] = ACTIONS(958), + [anon_sym_source] = ACTIONS(958), + [anon_sym_source_DASHenv] = ACTIONS(958), + [anon_sym_hide] = ACTIONS(958), + [anon_sym_hide_DASHenv] = ACTIONS(958), + [anon_sym_overlay] = ACTIONS(958), + [anon_sym_as] = ACTIONS(958), + [anon_sym_QMARK2] = ACTIONS(2156), + [anon_sym_PLUS2] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(958), + [aux_sym__val_number_decimal_token1] = ACTIONS(958), + [aux_sym__val_number_decimal_token2] = ACTIONS(958), + [aux_sym__val_number_decimal_token3] = ACTIONS(958), + [aux_sym__val_number_decimal_token4] = ACTIONS(958), + [aux_sym__val_number_token1] = ACTIONS(958), + [aux_sym__val_number_token2] = ACTIONS(958), + [aux_sym__val_number_token3] = ACTIONS(958), + [aux_sym__val_number_token4] = ACTIONS(958), + [aux_sym__val_number_token5] = ACTIONS(958), + [aux_sym__val_number_token6] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym__str_single_quotes] = ACTIONS(958), + [sym__str_back_ticks] = ACTIONS(958), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(958), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(958), + [sym__entry_separator] = ACTIONS(960), + [anon_sym_register] = ACTIONS(958), + [anon_sym_DOT2] = ACTIONS(958), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(960), + }, + [520] = { + [sym_comment] = STATE(520), + [anon_sym_export] = ACTIONS(1797), + [anon_sym_alias] = ACTIONS(1797), + [anon_sym_let] = ACTIONS(1797), + [anon_sym_let_DASHenv] = ACTIONS(1797), + [anon_sym_mut] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(1797), + [aux_sym_cmd_identifier_token1] = ACTIONS(1797), + [aux_sym_cmd_identifier_token2] = ACTIONS(1797), + [aux_sym_cmd_identifier_token3] = ACTIONS(1797), + [aux_sym_cmd_identifier_token4] = ACTIONS(1797), + [aux_sym_cmd_identifier_token5] = ACTIONS(1797), + [aux_sym_cmd_identifier_token6] = ACTIONS(1797), + [aux_sym_cmd_identifier_token7] = ACTIONS(1797), + [aux_sym_cmd_identifier_token8] = ACTIONS(1797), + [aux_sym_cmd_identifier_token9] = ACTIONS(1797), + [aux_sym_cmd_identifier_token10] = ACTIONS(1797), + [aux_sym_cmd_identifier_token11] = ACTIONS(1797), + [aux_sym_cmd_identifier_token12] = ACTIONS(1797), + [aux_sym_cmd_identifier_token13] = ACTIONS(1797), + [aux_sym_cmd_identifier_token14] = ACTIONS(1797), + [aux_sym_cmd_identifier_token15] = ACTIONS(1797), + [aux_sym_cmd_identifier_token16] = ACTIONS(1797), + [aux_sym_cmd_identifier_token17] = ACTIONS(1797), + [aux_sym_cmd_identifier_token18] = ACTIONS(1797), + [aux_sym_cmd_identifier_token19] = ACTIONS(1797), + [aux_sym_cmd_identifier_token20] = ACTIONS(1797), + [aux_sym_cmd_identifier_token21] = ACTIONS(1797), + [aux_sym_cmd_identifier_token22] = ACTIONS(1797), + [aux_sym_cmd_identifier_token23] = ACTIONS(1797), + [aux_sym_cmd_identifier_token24] = ACTIONS(1797), + [aux_sym_cmd_identifier_token25] = ACTIONS(1797), + [aux_sym_cmd_identifier_token26] = ACTIONS(1797), + [aux_sym_cmd_identifier_token27] = ACTIONS(1797), + [aux_sym_cmd_identifier_token28] = ACTIONS(1797), + [aux_sym_cmd_identifier_token29] = ACTIONS(1797), + [aux_sym_cmd_identifier_token30] = ACTIONS(1797), + [aux_sym_cmd_identifier_token31] = ACTIONS(1797), + [aux_sym_cmd_identifier_token32] = ACTIONS(1797), + [aux_sym_cmd_identifier_token33] = ACTIONS(1797), + [aux_sym_cmd_identifier_token34] = ACTIONS(1797), + [aux_sym_cmd_identifier_token35] = ACTIONS(1797), + [aux_sym_cmd_identifier_token36] = ACTIONS(1797), + [aux_sym_cmd_identifier_token37] = ACTIONS(1797), + [aux_sym_cmd_identifier_token38] = ACTIONS(1797), + [aux_sym_cmd_identifier_token39] = ACTIONS(1797), + [aux_sym_cmd_identifier_token40] = ACTIONS(1797), + [anon_sym_def] = ACTIONS(1797), + [anon_sym_export_DASHenv] = ACTIONS(1797), + [anon_sym_extern] = ACTIONS(1797), + [anon_sym_module] = ACTIONS(1797), + [anon_sym_use] = ACTIONS(1797), + [anon_sym_LPAREN] = ACTIONS(1797), + [anon_sym_COMMA] = ACTIONS(1797), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_error] = ACTIONS(1797), + [anon_sym_DASH2] = ACTIONS(1797), + [anon_sym_break] = ACTIONS(1797), + [anon_sym_continue] = ACTIONS(1797), + [anon_sym_for] = ACTIONS(1797), + [anon_sym_in2] = ACTIONS(1797), + [anon_sym_loop] = ACTIONS(1797), + [anon_sym_make] = ACTIONS(1797), + [anon_sym_while] = ACTIONS(1797), + [anon_sym_do] = ACTIONS(1797), + [anon_sym_if] = ACTIONS(1797), + [anon_sym_else] = ACTIONS(1797), + [anon_sym_match] = ACTIONS(1797), + [anon_sym_RBRACE] = ACTIONS(1797), + [anon_sym_try] = ACTIONS(1797), + [anon_sym_catch] = ACTIONS(1797), + [anon_sym_return] = ACTIONS(1797), + [anon_sym_source] = ACTIONS(1797), + [anon_sym_source_DASHenv] = ACTIONS(1797), + [anon_sym_hide] = ACTIONS(1797), + [anon_sym_hide_DASHenv] = ACTIONS(1797), + [anon_sym_overlay] = ACTIONS(1797), + [anon_sym_as] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(1799), + [anon_sym_PLUS2] = ACTIONS(1797), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1797), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1797), + [aux_sym__val_number_decimal_token1] = ACTIONS(1797), + [aux_sym__val_number_decimal_token2] = ACTIONS(1797), + [aux_sym__val_number_decimal_token3] = ACTIONS(1797), + [aux_sym__val_number_decimal_token4] = ACTIONS(1797), + [aux_sym__val_number_token1] = ACTIONS(1797), + [aux_sym__val_number_token2] = ACTIONS(1797), + [aux_sym__val_number_token3] = ACTIONS(1797), + [aux_sym__val_number_token4] = ACTIONS(1797), + [aux_sym__val_number_token5] = ACTIONS(1797), + [aux_sym__val_number_token6] = ACTIONS(1797), + [anon_sym_DQUOTE] = ACTIONS(1797), + [sym__str_single_quotes] = ACTIONS(1797), + [sym__str_back_ticks] = ACTIONS(1797), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1797), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1797), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1797), + [sym__entry_separator] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1797), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1797), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1799), + }, + [521] = { + [sym_comment] = STATE(521), + [anon_sym_export] = ACTIONS(1997), + [anon_sym_alias] = ACTIONS(1997), + [anon_sym_let] = ACTIONS(1997), + [anon_sym_let_DASHenv] = ACTIONS(1997), + [anon_sym_mut] = ACTIONS(1997), + [anon_sym_const] = ACTIONS(1997), + [aux_sym_cmd_identifier_token1] = ACTIONS(1997), + [aux_sym_cmd_identifier_token2] = ACTIONS(1999), + [aux_sym_cmd_identifier_token3] = ACTIONS(1999), + [aux_sym_cmd_identifier_token4] = ACTIONS(1999), + [aux_sym_cmd_identifier_token5] = ACTIONS(1999), + [aux_sym_cmd_identifier_token6] = ACTIONS(1999), + [aux_sym_cmd_identifier_token7] = ACTIONS(1999), + [aux_sym_cmd_identifier_token8] = ACTIONS(1997), + [aux_sym_cmd_identifier_token9] = ACTIONS(1997), + [aux_sym_cmd_identifier_token10] = ACTIONS(1999), + [aux_sym_cmd_identifier_token11] = ACTIONS(1999), + [aux_sym_cmd_identifier_token12] = ACTIONS(1997), + [aux_sym_cmd_identifier_token13] = ACTIONS(1997), + [aux_sym_cmd_identifier_token14] = ACTIONS(1997), + [aux_sym_cmd_identifier_token15] = ACTIONS(1997), + [aux_sym_cmd_identifier_token16] = ACTIONS(1999), + [aux_sym_cmd_identifier_token17] = ACTIONS(1999), + [aux_sym_cmd_identifier_token18] = ACTIONS(1999), + [aux_sym_cmd_identifier_token19] = ACTIONS(1999), + [aux_sym_cmd_identifier_token20] = ACTIONS(1999), + [aux_sym_cmd_identifier_token21] = ACTIONS(1999), + [aux_sym_cmd_identifier_token22] = ACTIONS(1999), + [aux_sym_cmd_identifier_token23] = ACTIONS(1999), + [aux_sym_cmd_identifier_token24] = ACTIONS(1999), + [aux_sym_cmd_identifier_token25] = ACTIONS(1999), + [aux_sym_cmd_identifier_token26] = ACTIONS(1999), + [aux_sym_cmd_identifier_token27] = ACTIONS(1999), + [aux_sym_cmd_identifier_token28] = ACTIONS(1999), + [aux_sym_cmd_identifier_token29] = ACTIONS(1999), + [aux_sym_cmd_identifier_token30] = ACTIONS(1999), + [aux_sym_cmd_identifier_token31] = ACTIONS(1999), + [aux_sym_cmd_identifier_token32] = ACTIONS(1999), + [aux_sym_cmd_identifier_token33] = ACTIONS(1999), + [aux_sym_cmd_identifier_token34] = ACTIONS(1997), + [aux_sym_cmd_identifier_token35] = ACTIONS(1999), + [aux_sym_cmd_identifier_token36] = ACTIONS(1999), + [aux_sym_cmd_identifier_token37] = ACTIONS(1999), + [aux_sym_cmd_identifier_token38] = ACTIONS(1997), + [aux_sym_cmd_identifier_token39] = ACTIONS(1999), + [aux_sym_cmd_identifier_token40] = ACTIONS(1999), + [anon_sym_def] = ACTIONS(1997), + [anon_sym_export_DASHenv] = ACTIONS(1997), + [anon_sym_extern] = ACTIONS(1997), + [anon_sym_module] = ACTIONS(1997), + [anon_sym_use] = ACTIONS(1997), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(1997), + [anon_sym_error] = ACTIONS(1997), + [anon_sym_DASH2] = ACTIONS(1997), + [anon_sym_break] = ACTIONS(1997), + [anon_sym_continue] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1997), + [anon_sym_in2] = ACTIONS(1997), + [anon_sym_loop] = ACTIONS(1997), + [anon_sym_make] = ACTIONS(1997), + [anon_sym_while] = ACTIONS(1997), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_if] = ACTIONS(1997), + [anon_sym_else] = ACTIONS(1997), + [anon_sym_match] = ACTIONS(1997), + [anon_sym_RBRACE] = ACTIONS(1999), + [anon_sym_try] = ACTIONS(1997), + [anon_sym_catch] = ACTIONS(1997), + [anon_sym_return] = ACTIONS(1997), + [anon_sym_source] = ACTIONS(1997), + [anon_sym_source_DASHenv] = ACTIONS(1997), + [anon_sym_hide] = ACTIONS(1997), + [anon_sym_hide_DASHenv] = ACTIONS(1997), + [anon_sym_overlay] = ACTIONS(1997), + [anon_sym_as] = ACTIONS(1997), + [anon_sym_PLUS2] = ACTIONS(1997), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1999), + [anon_sym_DOT_DOT2] = ACTIONS(2116), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2118), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2118), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1999), + [aux_sym__val_number_decimal_token1] = ACTIONS(1997), + [aux_sym__val_number_decimal_token2] = ACTIONS(1999), + [aux_sym__val_number_decimal_token3] = ACTIONS(1999), + [aux_sym__val_number_decimal_token4] = ACTIONS(1999), + [aux_sym__val_number_token1] = ACTIONS(1999), + [aux_sym__val_number_token2] = ACTIONS(1999), + [aux_sym__val_number_token3] = ACTIONS(1999), + [aux_sym__val_number_token4] = ACTIONS(1997), + [aux_sym__val_number_token5] = ACTIONS(1997), + [aux_sym__val_number_token6] = ACTIONS(1997), + [anon_sym_DQUOTE] = ACTIONS(1999), + [sym__str_single_quotes] = ACTIONS(1999), + [sym__str_back_ticks] = ACTIONS(1999), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1999), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1999), + [anon_sym_register] = ACTIONS(1997), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1999), + }, + [522] = { + [sym_comment] = STATE(522), + [anon_sym_export] = ACTIONS(2001), + [anon_sym_alias] = ACTIONS(2001), + [anon_sym_let] = ACTIONS(2001), + [anon_sym_let_DASHenv] = ACTIONS(2001), + [anon_sym_mut] = ACTIONS(2001), + [anon_sym_const] = ACTIONS(2001), + [aux_sym_cmd_identifier_token1] = ACTIONS(2001), + [aux_sym_cmd_identifier_token2] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2003), + [aux_sym_cmd_identifier_token4] = ACTIONS(2003), + [aux_sym_cmd_identifier_token5] = ACTIONS(2003), + [aux_sym_cmd_identifier_token6] = ACTIONS(2003), + [aux_sym_cmd_identifier_token7] = ACTIONS(2003), + [aux_sym_cmd_identifier_token8] = ACTIONS(2001), + [aux_sym_cmd_identifier_token9] = ACTIONS(2001), + [aux_sym_cmd_identifier_token10] = ACTIONS(2003), + [aux_sym_cmd_identifier_token11] = ACTIONS(2003), + [aux_sym_cmd_identifier_token12] = ACTIONS(2001), + [aux_sym_cmd_identifier_token13] = ACTIONS(2001), + [aux_sym_cmd_identifier_token14] = ACTIONS(2001), + [aux_sym_cmd_identifier_token15] = ACTIONS(2001), + [aux_sym_cmd_identifier_token16] = ACTIONS(2003), + [aux_sym_cmd_identifier_token17] = ACTIONS(2003), + [aux_sym_cmd_identifier_token18] = ACTIONS(2003), + [aux_sym_cmd_identifier_token19] = ACTIONS(2003), + [aux_sym_cmd_identifier_token20] = ACTIONS(2003), + [aux_sym_cmd_identifier_token21] = ACTIONS(2003), + [aux_sym_cmd_identifier_token22] = ACTIONS(2003), + [aux_sym_cmd_identifier_token23] = ACTIONS(2003), + [aux_sym_cmd_identifier_token24] = ACTIONS(2003), + [aux_sym_cmd_identifier_token25] = ACTIONS(2003), + [aux_sym_cmd_identifier_token26] = ACTIONS(2003), + [aux_sym_cmd_identifier_token27] = ACTIONS(2003), + [aux_sym_cmd_identifier_token28] = ACTIONS(2003), + [aux_sym_cmd_identifier_token29] = ACTIONS(2003), + [aux_sym_cmd_identifier_token30] = ACTIONS(2003), + [aux_sym_cmd_identifier_token31] = ACTIONS(2003), + [aux_sym_cmd_identifier_token32] = ACTIONS(2003), + [aux_sym_cmd_identifier_token33] = ACTIONS(2003), + [aux_sym_cmd_identifier_token34] = ACTIONS(2001), + [aux_sym_cmd_identifier_token35] = ACTIONS(2003), + [aux_sym_cmd_identifier_token36] = ACTIONS(2003), + [aux_sym_cmd_identifier_token37] = ACTIONS(2003), + [aux_sym_cmd_identifier_token38] = ACTIONS(2001), + [aux_sym_cmd_identifier_token39] = ACTIONS(2003), + [aux_sym_cmd_identifier_token40] = ACTIONS(2003), + [anon_sym_def] = ACTIONS(2001), + [anon_sym_export_DASHenv] = ACTIONS(2001), + [anon_sym_extern] = ACTIONS(2001), + [anon_sym_module] = ACTIONS(2001), + [anon_sym_use] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_COMMA] = ACTIONS(2003), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_error] = ACTIONS(2001), + [anon_sym_DASH2] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_in2] = ACTIONS(2001), + [anon_sym_loop] = ACTIONS(2001), + [anon_sym_make] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2001), + [anon_sym_do] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_else] = ACTIONS(2001), + [anon_sym_match] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2003), + [anon_sym_try] = ACTIONS(2001), + [anon_sym_catch] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_source] = ACTIONS(2001), + [anon_sym_source_DASHenv] = ACTIONS(2001), + [anon_sym_hide] = ACTIONS(2001), + [anon_sym_hide_DASHenv] = ACTIONS(2001), + [anon_sym_overlay] = ACTIONS(2001), + [anon_sym_as] = ACTIONS(2001), + [anon_sym_PLUS2] = ACTIONS(2001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2003), + [anon_sym_DOT_DOT2] = ACTIONS(2116), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2118), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2118), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2003), + [aux_sym__val_number_decimal_token1] = ACTIONS(2001), + [aux_sym__val_number_decimal_token2] = ACTIONS(2003), + [aux_sym__val_number_decimal_token3] = ACTIONS(2003), + [aux_sym__val_number_decimal_token4] = ACTIONS(2003), + [aux_sym__val_number_token1] = ACTIONS(2003), + [aux_sym__val_number_token2] = ACTIONS(2003), + [aux_sym__val_number_token3] = ACTIONS(2003), + [aux_sym__val_number_token4] = ACTIONS(2001), + [aux_sym__val_number_token5] = ACTIONS(2001), + [aux_sym__val_number_token6] = ACTIONS(2001), + [anon_sym_DQUOTE] = ACTIONS(2003), + [sym__str_single_quotes] = ACTIONS(2003), + [sym__str_back_ticks] = ACTIONS(2003), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2003), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2003), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2003), + [anon_sym_register] = ACTIONS(2001), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2003), + }, + [523] = { + [sym_comment] = STATE(523), + [anon_sym_export] = ACTIONS(958), + [anon_sym_alias] = ACTIONS(958), + [anon_sym_let] = ACTIONS(958), + [anon_sym_let_DASHenv] = ACTIONS(958), + [anon_sym_mut] = ACTIONS(958), + [anon_sym_const] = ACTIONS(958), + [aux_sym_cmd_identifier_token1] = ACTIONS(958), + [aux_sym_cmd_identifier_token2] = ACTIONS(960), + [aux_sym_cmd_identifier_token3] = ACTIONS(960), + [aux_sym_cmd_identifier_token4] = ACTIONS(960), + [aux_sym_cmd_identifier_token5] = ACTIONS(960), + [aux_sym_cmd_identifier_token6] = ACTIONS(960), + [aux_sym_cmd_identifier_token7] = ACTIONS(960), + [aux_sym_cmd_identifier_token8] = ACTIONS(958), + [aux_sym_cmd_identifier_token9] = ACTIONS(958), + [aux_sym_cmd_identifier_token10] = ACTIONS(960), + [aux_sym_cmd_identifier_token11] = ACTIONS(960), + [aux_sym_cmd_identifier_token12] = ACTIONS(958), + [aux_sym_cmd_identifier_token13] = ACTIONS(958), + [aux_sym_cmd_identifier_token14] = ACTIONS(958), + [aux_sym_cmd_identifier_token15] = ACTIONS(958), + [aux_sym_cmd_identifier_token16] = ACTIONS(960), + [aux_sym_cmd_identifier_token17] = ACTIONS(960), + [aux_sym_cmd_identifier_token18] = ACTIONS(960), + [aux_sym_cmd_identifier_token19] = ACTIONS(960), + [aux_sym_cmd_identifier_token20] = ACTIONS(960), + [aux_sym_cmd_identifier_token21] = ACTIONS(960), + [aux_sym_cmd_identifier_token22] = ACTIONS(960), + [aux_sym_cmd_identifier_token23] = ACTIONS(960), + [aux_sym_cmd_identifier_token24] = ACTIONS(960), + [aux_sym_cmd_identifier_token25] = ACTIONS(960), + [aux_sym_cmd_identifier_token26] = ACTIONS(960), + [aux_sym_cmd_identifier_token27] = ACTIONS(960), + [aux_sym_cmd_identifier_token28] = ACTIONS(960), + [aux_sym_cmd_identifier_token29] = ACTIONS(960), + [aux_sym_cmd_identifier_token30] = ACTIONS(960), + [aux_sym_cmd_identifier_token31] = ACTIONS(960), + [aux_sym_cmd_identifier_token32] = ACTIONS(960), + [aux_sym_cmd_identifier_token33] = ACTIONS(960), + [aux_sym_cmd_identifier_token34] = ACTIONS(958), + [aux_sym_cmd_identifier_token35] = ACTIONS(960), + [aux_sym_cmd_identifier_token36] = ACTIONS(960), + [aux_sym_cmd_identifier_token37] = ACTIONS(960), + [aux_sym_cmd_identifier_token38] = ACTIONS(958), + [aux_sym_cmd_identifier_token39] = ACTIONS(960), + [aux_sym_cmd_identifier_token40] = ACTIONS(960), + [anon_sym_def] = ACTIONS(958), + [anon_sym_export_DASHenv] = ACTIONS(958), + [anon_sym_extern] = ACTIONS(958), + [anon_sym_module] = ACTIONS(958), + [anon_sym_use] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_COMMA] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(958), + [anon_sym_error] = ACTIONS(958), + [anon_sym_DASH2] = ACTIONS(958), + [anon_sym_break] = ACTIONS(958), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_for] = ACTIONS(958), + [anon_sym_in2] = ACTIONS(958), + [anon_sym_loop] = ACTIONS(958), + [anon_sym_make] = ACTIONS(958), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(958), + [anon_sym_if] = ACTIONS(958), + [anon_sym_else] = ACTIONS(958), + [anon_sym_match] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_try] = ACTIONS(958), + [anon_sym_catch] = ACTIONS(958), + [anon_sym_return] = ACTIONS(958), + [anon_sym_source] = ACTIONS(958), + [anon_sym_source_DASHenv] = ACTIONS(958), + [anon_sym_hide] = ACTIONS(958), + [anon_sym_hide_DASHenv] = ACTIONS(958), + [anon_sym_overlay] = ACTIONS(958), + [anon_sym_as] = ACTIONS(958), + [anon_sym_QMARK2] = ACTIONS(2158), + [anon_sym_PLUS2] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(960), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(960), + [aux_sym__val_number_decimal_token1] = ACTIONS(958), + [aux_sym__val_number_decimal_token2] = ACTIONS(960), + [aux_sym__val_number_decimal_token3] = ACTIONS(960), + [aux_sym__val_number_decimal_token4] = ACTIONS(960), + [aux_sym__val_number_token1] = ACTIONS(960), + [aux_sym__val_number_token2] = ACTIONS(960), + [aux_sym__val_number_token3] = ACTIONS(960), + [aux_sym__val_number_token4] = ACTIONS(958), + [aux_sym__val_number_token5] = ACTIONS(958), + [aux_sym__val_number_token6] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(960), + [sym__str_single_quotes] = ACTIONS(960), + [sym__str_back_ticks] = ACTIONS(960), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(960), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(960), + [anon_sym_register] = ACTIONS(958), + [anon_sym_COLON2] = ACTIONS(960), + [anon_sym_DOT2] = ACTIONS(958), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(960), + }, + [524] = { + [sym_comment] = STATE(524), + [anon_sym_export] = ACTIONS(1934), + [anon_sym_alias] = ACTIONS(1934), + [anon_sym_let] = ACTIONS(1934), + [anon_sym_let_DASHenv] = ACTIONS(1934), + [anon_sym_mut] = ACTIONS(1934), + [anon_sym_const] = ACTIONS(1934), + [aux_sym_cmd_identifier_token1] = ACTIONS(1934), + [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(1934), + [aux_sym_cmd_identifier_token9] = ACTIONS(1934), + [aux_sym_cmd_identifier_token10] = ACTIONS(1940), + [aux_sym_cmd_identifier_token11] = ACTIONS(1940), + [aux_sym_cmd_identifier_token12] = ACTIONS(1934), + [aux_sym_cmd_identifier_token13] = ACTIONS(1934), + [aux_sym_cmd_identifier_token14] = ACTIONS(1934), + [aux_sym_cmd_identifier_token15] = ACTIONS(1934), + [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(1934), + [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(1934), + [aux_sym_cmd_identifier_token39] = ACTIONS(1940), + [aux_sym_cmd_identifier_token40] = ACTIONS(1940), + [anon_sym_def] = ACTIONS(1934), + [anon_sym_export_DASHenv] = ACTIONS(1934), + [anon_sym_extern] = ACTIONS(1934), + [anon_sym_module] = ACTIONS(1934), + [anon_sym_use] = ACTIONS(1934), + [anon_sym_LPAREN] = ACTIONS(1940), + [anon_sym_COMMA] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(1934), + [anon_sym_error] = ACTIONS(1934), + [anon_sym_DASH2] = ACTIONS(1934), + [anon_sym_break] = ACTIONS(1934), + [anon_sym_continue] = ACTIONS(1934), + [anon_sym_for] = ACTIONS(1934), + [anon_sym_in2] = ACTIONS(1934), + [anon_sym_loop] = ACTIONS(1934), + [anon_sym_make] = ACTIONS(1934), + [anon_sym_while] = ACTIONS(1934), + [anon_sym_do] = ACTIONS(1934), + [anon_sym_if] = ACTIONS(1934), + [anon_sym_else] = ACTIONS(1934), + [anon_sym_match] = ACTIONS(1934), + [anon_sym_RBRACE] = ACTIONS(1940), + [anon_sym_try] = ACTIONS(1934), + [anon_sym_catch] = ACTIONS(1934), + [anon_sym_return] = ACTIONS(1934), + [anon_sym_source] = ACTIONS(1934), + [anon_sym_source_DASHenv] = ACTIONS(1934), + [anon_sym_hide] = ACTIONS(1934), + [anon_sym_hide_DASHenv] = ACTIONS(1934), + [anon_sym_overlay] = ACTIONS(1934), + [anon_sym_as] = ACTIONS(1934), + [anon_sym_PLUS2] = ACTIONS(1934), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1940), + [anon_sym_DOT_DOT2] = ACTIONS(2116), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2118), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2118), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1940), + [aux_sym__val_number_decimal_token1] = ACTIONS(1934), + [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(1934), + [aux_sym__val_number_token5] = ACTIONS(1934), + [aux_sym__val_number_token6] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1940), + [sym__str_single_quotes] = ACTIONS(1940), + [sym__str_back_ticks] = ACTIONS(1940), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1940), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1934), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1940), + }, + [525] = { + [sym_comment] = STATE(525), + [anon_sym_export] = ACTIONS(954), + [anon_sym_alias] = ACTIONS(954), + [anon_sym_let] = ACTIONS(954), + [anon_sym_let_DASHenv] = ACTIONS(954), + [anon_sym_mut] = ACTIONS(954), + [anon_sym_const] = ACTIONS(954), + [aux_sym_cmd_identifier_token1] = ACTIONS(954), + [aux_sym_cmd_identifier_token2] = ACTIONS(956), + [aux_sym_cmd_identifier_token3] = ACTIONS(956), + [aux_sym_cmd_identifier_token4] = ACTIONS(956), + [aux_sym_cmd_identifier_token5] = ACTIONS(956), + [aux_sym_cmd_identifier_token6] = ACTIONS(956), + [aux_sym_cmd_identifier_token7] = ACTIONS(956), + [aux_sym_cmd_identifier_token8] = ACTIONS(954), + [aux_sym_cmd_identifier_token9] = ACTIONS(954), + [aux_sym_cmd_identifier_token10] = ACTIONS(956), + [aux_sym_cmd_identifier_token11] = ACTIONS(956), + [aux_sym_cmd_identifier_token12] = ACTIONS(954), + [aux_sym_cmd_identifier_token13] = ACTIONS(954), + [aux_sym_cmd_identifier_token14] = ACTIONS(954), + [aux_sym_cmd_identifier_token15] = ACTIONS(954), + [aux_sym_cmd_identifier_token16] = ACTIONS(956), + [aux_sym_cmd_identifier_token17] = ACTIONS(956), + [aux_sym_cmd_identifier_token18] = ACTIONS(956), + [aux_sym_cmd_identifier_token19] = ACTIONS(956), + [aux_sym_cmd_identifier_token20] = ACTIONS(956), + [aux_sym_cmd_identifier_token21] = ACTIONS(956), + [aux_sym_cmd_identifier_token22] = ACTIONS(956), + [aux_sym_cmd_identifier_token23] = ACTIONS(956), + [aux_sym_cmd_identifier_token24] = ACTIONS(956), + [aux_sym_cmd_identifier_token25] = ACTIONS(956), + [aux_sym_cmd_identifier_token26] = ACTIONS(956), + [aux_sym_cmd_identifier_token27] = ACTIONS(956), + [aux_sym_cmd_identifier_token28] = ACTIONS(956), + [aux_sym_cmd_identifier_token29] = ACTIONS(956), + [aux_sym_cmd_identifier_token30] = ACTIONS(956), + [aux_sym_cmd_identifier_token31] = ACTIONS(956), + [aux_sym_cmd_identifier_token32] = ACTIONS(956), + [aux_sym_cmd_identifier_token33] = ACTIONS(956), + [aux_sym_cmd_identifier_token34] = ACTIONS(954), + [aux_sym_cmd_identifier_token35] = ACTIONS(956), + [aux_sym_cmd_identifier_token36] = ACTIONS(956), + [aux_sym_cmd_identifier_token37] = ACTIONS(956), + [aux_sym_cmd_identifier_token38] = ACTIONS(954), + [aux_sym_cmd_identifier_token39] = ACTIONS(956), + [aux_sym_cmd_identifier_token40] = ACTIONS(956), + [anon_sym_def] = ACTIONS(954), + [anon_sym_export_DASHenv] = ACTIONS(954), + [anon_sym_extern] = ACTIONS(954), + [anon_sym_module] = ACTIONS(954), + [anon_sym_use] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(956), + [anon_sym_COMMA] = ACTIONS(956), + [anon_sym_DOLLAR] = ACTIONS(954), + [anon_sym_error] = ACTIONS(954), + [anon_sym_DASH2] = ACTIONS(954), + [anon_sym_break] = ACTIONS(954), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_for] = ACTIONS(954), + [anon_sym_in2] = ACTIONS(954), + [anon_sym_loop] = ACTIONS(954), + [anon_sym_make] = ACTIONS(954), + [anon_sym_while] = ACTIONS(954), + [anon_sym_do] = ACTIONS(954), + [anon_sym_if] = ACTIONS(954), + [anon_sym_else] = ACTIONS(954), + [anon_sym_match] = ACTIONS(954), + [anon_sym_RBRACE] = ACTIONS(956), + [anon_sym_try] = ACTIONS(954), + [anon_sym_catch] = ACTIONS(954), + [anon_sym_return] = ACTIONS(954), + [anon_sym_source] = ACTIONS(954), + [anon_sym_source_DASHenv] = ACTIONS(954), + [anon_sym_hide] = ACTIONS(954), + [anon_sym_hide_DASHenv] = ACTIONS(954), + [anon_sym_overlay] = ACTIONS(954), + [anon_sym_as] = ACTIONS(954), + [anon_sym_QMARK2] = ACTIONS(956), + [anon_sym_PLUS2] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(956), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(956), + [aux_sym__val_number_decimal_token1] = ACTIONS(954), + [aux_sym__val_number_decimal_token2] = ACTIONS(956), + [aux_sym__val_number_decimal_token3] = ACTIONS(956), + [aux_sym__val_number_decimal_token4] = ACTIONS(956), + [aux_sym__val_number_token1] = ACTIONS(956), + [aux_sym__val_number_token2] = ACTIONS(956), + [aux_sym__val_number_token3] = ACTIONS(956), + [aux_sym__val_number_token4] = ACTIONS(954), + [aux_sym__val_number_token5] = ACTIONS(954), + [aux_sym__val_number_token6] = ACTIONS(954), + [anon_sym_DQUOTE] = ACTIONS(956), + [sym__str_single_quotes] = ACTIONS(956), + [sym__str_back_ticks] = ACTIONS(956), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(956), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(956), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(956), + [anon_sym_register] = ACTIONS(954), + [anon_sym_COLON2] = ACTIONS(956), + [anon_sym_DOT2] = ACTIONS(954), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(956), + }, + [526] = { + [sym_expr_parenthesized] = STATE(4025), + [sym__spread_parenthesized] = STATE(4427), + [sym_val_range] = STATE(4431), + [sym__val_range] = STATE(7359), + [sym__val_range_with_end] = STATE(6944), + [sym__value] = STATE(4431), + [sym_val_nothing] = STATE(4406), + [sym_val_bool] = STATE(4136), + [sym__spread_variable] = STATE(4467), + [sym_val_variable] = STATE(4027), + [sym_val_number] = STATE(4406), + [sym__val_number_decimal] = STATE(3770), + [sym__val_number] = STATE(4446), + [sym_val_duration] = STATE(4406), + [sym_val_filesize] = STATE(4406), + [sym_val_binary] = STATE(4406), + [sym_val_string] = STATE(4406), + [sym__raw_str] = STATE(3849), + [sym__str_double_quotes] = STATE(3849), + [sym_val_interpolated] = STATE(4406), + [sym__inter_single_quotes] = STATE(4336), + [sym__inter_double_quotes] = STATE(4388), + [sym_val_list] = STATE(4406), + [sym__spread_list] = STATE(4427), + [sym_val_record] = STATE(4406), + [sym_val_table] = STATE(4406), + [sym_val_closure] = STATE(4406), + [sym__cmd_arg] = STATE(4395), + [sym_redirection] = STATE(4398), + [sym__flag] = STATE(4482), + [sym_short_flag] = STATE(4417), + [sym_long_flag] = STATE(4417), + [sym_unquoted] = STATE(4066), + [sym__unquoted_with_expr] = STATE(4390), + [sym__unquoted_anonymous_prefix] = STATE(6718), + [sym_comment] = STATE(526), + [sym__newline] = ACTIONS(2008), + [sym__space] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_PIPE] = ACTIONS(2008), + [anon_sym_err_GT_PIPE] = ACTIONS(2008), + [anon_sym_out_GT_PIPE] = ACTIONS(2008), + [anon_sym_e_GT_PIPE] = ACTIONS(2008), + [anon_sym_o_GT_PIPE] = ACTIONS(2008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2010), + [anon_sym_LPAREN] = ACTIONS(2012), + [anon_sym_RPAREN] = ACTIONS(2008), + [anon_sym_DOLLAR] = ACTIONS(2014), + [anon_sym_DASH_DASH] = ACTIONS(2016), + [anon_sym_DASH2] = ACTIONS(2018), + [anon_sym_LBRACE] = ACTIONS(2020), + [anon_sym_RBRACE] = ACTIONS(2008), + [anon_sym_DOT_DOT] = ACTIONS(2022), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2026), + [anon_sym_DOT_DOT_LT] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2032), + [aux_sym__val_number_decimal_token1] = ACTIONS(2034), + [aux_sym__val_number_decimal_token2] = ACTIONS(2034), + [aux_sym__val_number_decimal_token3] = ACTIONS(2036), + [aux_sym__val_number_decimal_token4] = ACTIONS(2038), + [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(2042), + [aux_sym__val_number_token5] = ACTIONS(2042), + [aux_sym__val_number_token6] = ACTIONS(2042), + [anon_sym_0b] = ACTIONS(2044), + [anon_sym_0o] = ACTIONS(2046), + [anon_sym_0x] = ACTIONS(2046), + [sym_val_date] = ACTIONS(2048), + [anon_sym_DQUOTE] = ACTIONS(2050), + [sym__str_single_quotes] = ACTIONS(2052), + [sym__str_back_ticks] = ACTIONS(2052), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2056), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2058), + [anon_sym_err_GT] = ACTIONS(2062), + [anon_sym_out_GT] = ACTIONS(2062), + [anon_sym_e_GT] = ACTIONS(2062), + [anon_sym_o_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT] = ACTIONS(2062), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [aux_sym_unquoted_token1] = ACTIONS(2064), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2066), + }, + [527] = { + [sym_comment] = STATE(527), + [anon_sym_export] = ACTIONS(950), + [anon_sym_alias] = ACTIONS(950), + [anon_sym_let] = ACTIONS(950), + [anon_sym_let_DASHenv] = ACTIONS(950), + [anon_sym_mut] = ACTIONS(950), + [anon_sym_const] = ACTIONS(950), + [aux_sym_cmd_identifier_token1] = ACTIONS(950), + [aux_sym_cmd_identifier_token2] = ACTIONS(952), + [aux_sym_cmd_identifier_token3] = ACTIONS(952), + [aux_sym_cmd_identifier_token4] = ACTIONS(952), + [aux_sym_cmd_identifier_token5] = ACTIONS(952), + [aux_sym_cmd_identifier_token6] = ACTIONS(952), + [aux_sym_cmd_identifier_token7] = ACTIONS(952), + [aux_sym_cmd_identifier_token8] = ACTIONS(950), + [aux_sym_cmd_identifier_token9] = ACTIONS(950), + [aux_sym_cmd_identifier_token10] = ACTIONS(952), + [aux_sym_cmd_identifier_token11] = ACTIONS(952), + [aux_sym_cmd_identifier_token12] = ACTIONS(950), + [aux_sym_cmd_identifier_token13] = ACTIONS(950), + [aux_sym_cmd_identifier_token14] = ACTIONS(950), + [aux_sym_cmd_identifier_token15] = ACTIONS(950), + [aux_sym_cmd_identifier_token16] = ACTIONS(952), + [aux_sym_cmd_identifier_token17] = ACTIONS(952), + [aux_sym_cmd_identifier_token18] = ACTIONS(952), + [aux_sym_cmd_identifier_token19] = ACTIONS(952), + [aux_sym_cmd_identifier_token20] = ACTIONS(952), + [aux_sym_cmd_identifier_token21] = ACTIONS(952), + [aux_sym_cmd_identifier_token22] = ACTIONS(952), + [aux_sym_cmd_identifier_token23] = ACTIONS(952), + [aux_sym_cmd_identifier_token24] = ACTIONS(952), + [aux_sym_cmd_identifier_token25] = ACTIONS(952), + [aux_sym_cmd_identifier_token26] = ACTIONS(952), + [aux_sym_cmd_identifier_token27] = ACTIONS(952), + [aux_sym_cmd_identifier_token28] = ACTIONS(952), + [aux_sym_cmd_identifier_token29] = ACTIONS(952), + [aux_sym_cmd_identifier_token30] = ACTIONS(952), + [aux_sym_cmd_identifier_token31] = ACTIONS(952), + [aux_sym_cmd_identifier_token32] = ACTIONS(952), + [aux_sym_cmd_identifier_token33] = ACTIONS(952), + [aux_sym_cmd_identifier_token34] = ACTIONS(950), + [aux_sym_cmd_identifier_token35] = ACTIONS(952), + [aux_sym_cmd_identifier_token36] = ACTIONS(952), + [aux_sym_cmd_identifier_token37] = ACTIONS(952), + [aux_sym_cmd_identifier_token38] = ACTIONS(950), + [aux_sym_cmd_identifier_token39] = ACTIONS(952), + [aux_sym_cmd_identifier_token40] = ACTIONS(952), + [anon_sym_def] = ACTIONS(950), + [anon_sym_export_DASHenv] = ACTIONS(950), + [anon_sym_extern] = ACTIONS(950), + [anon_sym_module] = ACTIONS(950), + [anon_sym_use] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_COMMA] = ACTIONS(952), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_error] = ACTIONS(950), + [anon_sym_DASH2] = ACTIONS(950), + [anon_sym_break] = ACTIONS(950), + [anon_sym_continue] = ACTIONS(950), + [anon_sym_for] = ACTIONS(950), + [anon_sym_in2] = ACTIONS(950), + [anon_sym_loop] = ACTIONS(950), + [anon_sym_make] = ACTIONS(950), + [anon_sym_while] = ACTIONS(950), + [anon_sym_do] = ACTIONS(950), + [anon_sym_if] = ACTIONS(950), + [anon_sym_else] = ACTIONS(950), + [anon_sym_match] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_try] = ACTIONS(950), + [anon_sym_catch] = ACTIONS(950), + [anon_sym_return] = ACTIONS(950), + [anon_sym_source] = ACTIONS(950), + [anon_sym_source_DASHenv] = ACTIONS(950), + [anon_sym_hide] = ACTIONS(950), + [anon_sym_hide_DASHenv] = ACTIONS(950), + [anon_sym_overlay] = ACTIONS(950), + [anon_sym_as] = ACTIONS(950), + [anon_sym_QMARK2] = ACTIONS(952), + [anon_sym_PLUS2] = ACTIONS(950), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(952), + [aux_sym__val_number_decimal_token1] = ACTIONS(950), + [aux_sym__val_number_decimal_token2] = ACTIONS(952), + [aux_sym__val_number_decimal_token3] = ACTIONS(952), + [aux_sym__val_number_decimal_token4] = ACTIONS(952), + [aux_sym__val_number_token1] = ACTIONS(952), + [aux_sym__val_number_token2] = ACTIONS(952), + [aux_sym__val_number_token3] = ACTIONS(952), + [aux_sym__val_number_token4] = ACTIONS(950), + [aux_sym__val_number_token5] = ACTIONS(950), + [aux_sym__val_number_token6] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(952), + [sym__str_single_quotes] = ACTIONS(952), + [sym__str_back_ticks] = ACTIONS(952), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(952), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(952), + [anon_sym_register] = ACTIONS(950), + [anon_sym_COLON2] = ACTIONS(952), + [anon_sym_DOT2] = ACTIONS(950), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(952), + }, + [528] = { + [sym__expr_parenthesized_immediate] = STATE(6957), + [sym_comment] = STATE(528), + [anon_sym_export] = ACTIONS(1997), + [anon_sym_alias] = ACTIONS(1997), + [anon_sym_let] = ACTIONS(1997), + [anon_sym_let_DASHenv] = ACTIONS(1997), + [anon_sym_mut] = ACTIONS(1997), + [anon_sym_const] = ACTIONS(1997), + [aux_sym_cmd_identifier_token1] = ACTIONS(1997), + [aux_sym_cmd_identifier_token2] = ACTIONS(1997), + [aux_sym_cmd_identifier_token3] = ACTIONS(1997), + [aux_sym_cmd_identifier_token4] = ACTIONS(1997), + [aux_sym_cmd_identifier_token5] = ACTIONS(1997), + [aux_sym_cmd_identifier_token6] = ACTIONS(1997), + [aux_sym_cmd_identifier_token7] = ACTIONS(1997), + [aux_sym_cmd_identifier_token8] = ACTIONS(1997), + [aux_sym_cmd_identifier_token9] = ACTIONS(1997), + [aux_sym_cmd_identifier_token10] = ACTIONS(1997), + [aux_sym_cmd_identifier_token11] = ACTIONS(1997), + [aux_sym_cmd_identifier_token12] = ACTIONS(1997), + [aux_sym_cmd_identifier_token13] = ACTIONS(1997), + [aux_sym_cmd_identifier_token14] = ACTIONS(1997), + [aux_sym_cmd_identifier_token15] = ACTIONS(1997), + [aux_sym_cmd_identifier_token16] = ACTIONS(1997), + [aux_sym_cmd_identifier_token17] = ACTIONS(1997), + [aux_sym_cmd_identifier_token18] = ACTIONS(1997), + [aux_sym_cmd_identifier_token19] = ACTIONS(1997), + [aux_sym_cmd_identifier_token20] = ACTIONS(1997), + [aux_sym_cmd_identifier_token21] = ACTIONS(1997), + [aux_sym_cmd_identifier_token22] = ACTIONS(1997), + [aux_sym_cmd_identifier_token23] = ACTIONS(1997), + [aux_sym_cmd_identifier_token24] = ACTIONS(1997), + [aux_sym_cmd_identifier_token25] = ACTIONS(1997), + [aux_sym_cmd_identifier_token26] = ACTIONS(1997), + [aux_sym_cmd_identifier_token27] = ACTIONS(1997), + [aux_sym_cmd_identifier_token28] = ACTIONS(1997), + [aux_sym_cmd_identifier_token29] = ACTIONS(1997), + [aux_sym_cmd_identifier_token30] = ACTIONS(1997), + [aux_sym_cmd_identifier_token31] = ACTIONS(1997), + [aux_sym_cmd_identifier_token32] = ACTIONS(1997), + [aux_sym_cmd_identifier_token33] = ACTIONS(1997), + [aux_sym_cmd_identifier_token34] = ACTIONS(1997), + [aux_sym_cmd_identifier_token35] = ACTIONS(1997), + [aux_sym_cmd_identifier_token36] = ACTIONS(1997), + [aux_sym_cmd_identifier_token37] = ACTIONS(1997), + [aux_sym_cmd_identifier_token38] = ACTIONS(1997), + [aux_sym_cmd_identifier_token39] = ACTIONS(1997), + [aux_sym_cmd_identifier_token40] = ACTIONS(1997), + [anon_sym_def] = ACTIONS(1997), + [anon_sym_export_DASHenv] = ACTIONS(1997), + [anon_sym_extern] = ACTIONS(1997), + [anon_sym_module] = ACTIONS(1997), + [anon_sym_use] = ACTIONS(1997), + [anon_sym_LPAREN] = ACTIONS(1997), + [anon_sym_COMMA] = ACTIONS(1997), + [anon_sym_DOLLAR] = ACTIONS(1997), + [anon_sym_error] = ACTIONS(1997), + [anon_sym_DASH2] = ACTIONS(1997), + [anon_sym_break] = ACTIONS(1997), + [anon_sym_continue] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1997), + [anon_sym_in2] = ACTIONS(1997), + [anon_sym_loop] = ACTIONS(1997), + [anon_sym_make] = ACTIONS(1997), + [anon_sym_while] = ACTIONS(1997), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_if] = ACTIONS(1997), + [anon_sym_else] = ACTIONS(1997), + [anon_sym_match] = ACTIONS(1997), + [anon_sym_RBRACE] = ACTIONS(1997), + [anon_sym_try] = ACTIONS(1997), + [anon_sym_catch] = ACTIONS(1997), + [anon_sym_return] = ACTIONS(1997), + [anon_sym_source] = ACTIONS(1997), + [anon_sym_source_DASHenv] = ACTIONS(1997), + [anon_sym_hide] = ACTIONS(1997), + [anon_sym_hide_DASHenv] = ACTIONS(1997), + [anon_sym_overlay] = ACTIONS(1997), + [anon_sym_as] = ACTIONS(1997), + [anon_sym_LPAREN2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(1997), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1997), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1997), + [aux_sym__val_number_decimal_token1] = ACTIONS(1997), + [aux_sym__val_number_decimal_token2] = ACTIONS(1997), + [aux_sym__val_number_decimal_token3] = ACTIONS(1997), + [aux_sym__val_number_decimal_token4] = ACTIONS(1997), + [aux_sym__val_number_token1] = ACTIONS(1997), + [aux_sym__val_number_token2] = ACTIONS(1997), + [aux_sym__val_number_token3] = ACTIONS(1997), + [aux_sym__val_number_token4] = ACTIONS(1997), + [aux_sym__val_number_token5] = ACTIONS(1997), + [aux_sym__val_number_token6] = ACTIONS(1997), + [anon_sym_DQUOTE] = ACTIONS(1997), + [sym__str_single_quotes] = ACTIONS(1997), + [sym__str_back_ticks] = ACTIONS(1997), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1997), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1997), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1997), + [sym__entry_separator] = ACTIONS(1999), + [anon_sym_register] = ACTIONS(1997), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1999), + }, + [529] = { + [sym_comment] = STATE(529), + [anon_sym_export] = ACTIONS(2162), + [anon_sym_alias] = ACTIONS(2162), + [anon_sym_let] = ACTIONS(2162), + [anon_sym_let_DASHenv] = ACTIONS(2162), + [anon_sym_mut] = ACTIONS(2162), + [anon_sym_const] = ACTIONS(2162), + [aux_sym_cmd_identifier_token1] = ACTIONS(2162), + [aux_sym_cmd_identifier_token2] = ACTIONS(2162), + [aux_sym_cmd_identifier_token3] = ACTIONS(2162), + [aux_sym_cmd_identifier_token4] = ACTIONS(2162), + [aux_sym_cmd_identifier_token5] = ACTIONS(2162), + [aux_sym_cmd_identifier_token6] = ACTIONS(2162), + [aux_sym_cmd_identifier_token7] = ACTIONS(2162), + [aux_sym_cmd_identifier_token8] = ACTIONS(2162), + [aux_sym_cmd_identifier_token9] = ACTIONS(2162), + [aux_sym_cmd_identifier_token10] = ACTIONS(2162), + [aux_sym_cmd_identifier_token11] = ACTIONS(2162), + [aux_sym_cmd_identifier_token12] = ACTIONS(2162), + [aux_sym_cmd_identifier_token13] = ACTIONS(2162), + [aux_sym_cmd_identifier_token14] = ACTIONS(2162), + [aux_sym_cmd_identifier_token15] = ACTIONS(2162), + [aux_sym_cmd_identifier_token16] = ACTIONS(2162), + [aux_sym_cmd_identifier_token17] = ACTIONS(2162), + [aux_sym_cmd_identifier_token18] = ACTIONS(2162), + [aux_sym_cmd_identifier_token19] = ACTIONS(2162), + [aux_sym_cmd_identifier_token20] = ACTIONS(2162), + [aux_sym_cmd_identifier_token21] = ACTIONS(2162), + [aux_sym_cmd_identifier_token22] = ACTIONS(2162), + [aux_sym_cmd_identifier_token23] = ACTIONS(2162), + [aux_sym_cmd_identifier_token24] = ACTIONS(2162), + [aux_sym_cmd_identifier_token25] = ACTIONS(2162), + [aux_sym_cmd_identifier_token26] = ACTIONS(2162), + [aux_sym_cmd_identifier_token27] = ACTIONS(2162), + [aux_sym_cmd_identifier_token28] = ACTIONS(2162), + [aux_sym_cmd_identifier_token29] = ACTIONS(2162), + [aux_sym_cmd_identifier_token30] = ACTIONS(2162), + [aux_sym_cmd_identifier_token31] = ACTIONS(2162), + [aux_sym_cmd_identifier_token32] = ACTIONS(2162), + [aux_sym_cmd_identifier_token33] = ACTIONS(2162), + [aux_sym_cmd_identifier_token34] = ACTIONS(2162), + [aux_sym_cmd_identifier_token35] = ACTIONS(2162), + [aux_sym_cmd_identifier_token36] = ACTIONS(2162), + [aux_sym_cmd_identifier_token37] = ACTIONS(2162), + [aux_sym_cmd_identifier_token38] = ACTIONS(2162), + [aux_sym_cmd_identifier_token39] = ACTIONS(2162), + [aux_sym_cmd_identifier_token40] = ACTIONS(2162), + [anon_sym_def] = ACTIONS(2162), + [anon_sym_export_DASHenv] = ACTIONS(2162), + [anon_sym_extern] = ACTIONS(2162), + [anon_sym_module] = ACTIONS(2162), + [anon_sym_use] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(2162), + [anon_sym_COMMA] = ACTIONS(2162), + [anon_sym_DOLLAR] = ACTIONS(2162), + [anon_sym_error] = ACTIONS(2162), + [anon_sym_DASH2] = ACTIONS(2162), + [anon_sym_break] = ACTIONS(2162), + [anon_sym_continue] = ACTIONS(2162), + [anon_sym_for] = ACTIONS(2162), + [anon_sym_in2] = ACTIONS(2162), + [anon_sym_loop] = ACTIONS(2162), + [anon_sym_make] = ACTIONS(2162), + [anon_sym_while] = ACTIONS(2162), + [anon_sym_do] = ACTIONS(2162), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_else] = ACTIONS(2162), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_RBRACE] = ACTIONS(2162), + [anon_sym_try] = ACTIONS(2162), + [anon_sym_catch] = ACTIONS(2162), + [anon_sym_return] = ACTIONS(2162), + [anon_sym_source] = ACTIONS(2162), + [anon_sym_source_DASHenv] = ACTIONS(2162), + [anon_sym_hide] = ACTIONS(2162), + [anon_sym_hide_DASHenv] = ACTIONS(2162), + [anon_sym_overlay] = ACTIONS(2162), + [anon_sym_as] = ACTIONS(2162), + [anon_sym_LPAREN2] = ACTIONS(2164), + [anon_sym_PLUS2] = ACTIONS(2162), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2162), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2162), + [aux_sym__val_number_decimal_token1] = ACTIONS(2162), + [aux_sym__val_number_decimal_token2] = ACTIONS(2162), + [aux_sym__val_number_decimal_token3] = ACTIONS(2162), + [aux_sym__val_number_decimal_token4] = ACTIONS(2162), + [aux_sym__val_number_token1] = ACTIONS(2162), + [aux_sym__val_number_token2] = ACTIONS(2162), + [aux_sym__val_number_token3] = ACTIONS(2162), + [aux_sym__val_number_token4] = ACTIONS(2162), + [aux_sym__val_number_token5] = ACTIONS(2162), + [aux_sym__val_number_token6] = ACTIONS(2162), + [anon_sym_DQUOTE] = ACTIONS(2162), + [sym__str_single_quotes] = ACTIONS(2162), + [sym__str_back_ticks] = ACTIONS(2162), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2162), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2162), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2162), + [sym__entry_separator] = ACTIONS(2166), + [anon_sym_register] = ACTIONS(2162), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2168), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2166), + }, + [530] = { + [sym_comment] = STATE(530), [anon_sym_export] = ACTIONS(942), [anon_sym_alias] = ACTIONS(942), [anon_sym_let] = ACTIONS(942), @@ -131741,7 +132280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(942), [anon_sym_overlay] = ACTIONS(942), [anon_sym_as] = ACTIONS(942), - [anon_sym_QMARK2] = ACTIONS(2085), + [anon_sym_QMARK2] = ACTIONS(944), [anon_sym_PLUS2] = ACTIONS(942), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(944), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(944), @@ -131767,764 +132306,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(944), }, - [515] = { - [sym_comment] = STATE(515), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), - [aux_sym_cmd_identifier_token2] = ACTIONS(1650), - [aux_sym_cmd_identifier_token3] = ACTIONS(1650), - [aux_sym_cmd_identifier_token4] = ACTIONS(1650), - [aux_sym_cmd_identifier_token5] = ACTIONS(1650), - [aux_sym_cmd_identifier_token6] = ACTIONS(1650), - [aux_sym_cmd_identifier_token7] = ACTIONS(1650), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), - [aux_sym_cmd_identifier_token10] = ACTIONS(1650), - [aux_sym_cmd_identifier_token11] = ACTIONS(1650), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), - [aux_sym_cmd_identifier_token16] = ACTIONS(1650), - [aux_sym_cmd_identifier_token17] = ACTIONS(1650), - [aux_sym_cmd_identifier_token18] = ACTIONS(1650), - [aux_sym_cmd_identifier_token19] = ACTIONS(1650), - [aux_sym_cmd_identifier_token20] = ACTIONS(1650), - [aux_sym_cmd_identifier_token21] = ACTIONS(1650), - [aux_sym_cmd_identifier_token22] = ACTIONS(1650), - [aux_sym_cmd_identifier_token23] = ACTIONS(1650), - [aux_sym_cmd_identifier_token24] = ACTIONS(1650), - [aux_sym_cmd_identifier_token25] = ACTIONS(1650), - [aux_sym_cmd_identifier_token26] = ACTIONS(1650), - [aux_sym_cmd_identifier_token27] = ACTIONS(1650), - [aux_sym_cmd_identifier_token28] = ACTIONS(1650), - [aux_sym_cmd_identifier_token29] = ACTIONS(1650), - [aux_sym_cmd_identifier_token30] = ACTIONS(1650), - [aux_sym_cmd_identifier_token31] = ACTIONS(1650), - [aux_sym_cmd_identifier_token32] = ACTIONS(1650), - [aux_sym_cmd_identifier_token33] = ACTIONS(1650), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), - [aux_sym_cmd_identifier_token35] = ACTIONS(1650), - [aux_sym_cmd_identifier_token36] = ACTIONS(1650), - [aux_sym_cmd_identifier_token37] = ACTIONS(1650), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), - [aux_sym_cmd_identifier_token39] = ACTIONS(1650), - [aux_sym_cmd_identifier_token40] = ACTIONS(1650), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_DASH2] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in2] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_PLUS2] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1650), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [aux_sym__val_number_token4] = ACTIONS(1648), - [aux_sym__val_number_token5] = ACTIONS(1648), - [aux_sym__val_number_token6] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1650), - [anon_sym_register] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1650), + [531] = { + [sym_comment] = STATE(531), + [anon_sym_export] = ACTIONS(1701), + [anon_sym_alias] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1701), + [anon_sym_let_DASHenv] = ACTIONS(1701), + [anon_sym_mut] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [aux_sym_cmd_identifier_token1] = ACTIONS(1701), + [aux_sym_cmd_identifier_token2] = ACTIONS(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [aux_sym_cmd_identifier_token12] = ACTIONS(1701), + [aux_sym_cmd_identifier_token13] = ACTIONS(1701), + [aux_sym_cmd_identifier_token14] = ACTIONS(1701), + [aux_sym_cmd_identifier_token15] = ACTIONS(1701), + [aux_sym_cmd_identifier_token16] = ACTIONS(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [aux_sym_cmd_identifier_token37] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [anon_sym_def] = ACTIONS(1701), + [anon_sym_export_DASHenv] = ACTIONS(1701), + [anon_sym_extern] = ACTIONS(1701), + [anon_sym_module] = ACTIONS(1701), + [anon_sym_use] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_COMMA] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = ACTIONS(1701), + [anon_sym_loop] = ACTIONS(1701), + [anon_sym_make] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_do] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_else] = ACTIONS(1701), + [anon_sym_match] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_try] = ACTIONS(1701), + [anon_sym_catch] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_source] = ACTIONS(1701), + [anon_sym_source_DASHenv] = ACTIONS(1701), + [anon_sym_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(1929), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), }, - [516] = { - [sym_comment] = STATE(516), - [anon_sym_export] = ACTIONS(948), - [anon_sym_alias] = ACTIONS(948), - [anon_sym_let] = ACTIONS(948), - [anon_sym_let_DASHenv] = ACTIONS(948), - [anon_sym_mut] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [aux_sym_cmd_identifier_token1] = ACTIONS(948), - [aux_sym_cmd_identifier_token2] = ACTIONS(950), - [aux_sym_cmd_identifier_token3] = ACTIONS(950), - [aux_sym_cmd_identifier_token4] = ACTIONS(950), - [aux_sym_cmd_identifier_token5] = ACTIONS(950), - [aux_sym_cmd_identifier_token6] = ACTIONS(950), - [aux_sym_cmd_identifier_token7] = ACTIONS(950), - [aux_sym_cmd_identifier_token8] = ACTIONS(948), - [aux_sym_cmd_identifier_token9] = ACTIONS(948), - [aux_sym_cmd_identifier_token10] = ACTIONS(950), - [aux_sym_cmd_identifier_token11] = ACTIONS(950), - [aux_sym_cmd_identifier_token12] = ACTIONS(948), - [aux_sym_cmd_identifier_token13] = ACTIONS(948), - [aux_sym_cmd_identifier_token14] = ACTIONS(948), - [aux_sym_cmd_identifier_token15] = ACTIONS(948), - [aux_sym_cmd_identifier_token16] = ACTIONS(950), - [aux_sym_cmd_identifier_token17] = ACTIONS(950), - [aux_sym_cmd_identifier_token18] = ACTIONS(950), - [aux_sym_cmd_identifier_token19] = ACTIONS(950), - [aux_sym_cmd_identifier_token20] = ACTIONS(950), - [aux_sym_cmd_identifier_token21] = ACTIONS(950), - [aux_sym_cmd_identifier_token22] = ACTIONS(950), - [aux_sym_cmd_identifier_token23] = ACTIONS(950), - [aux_sym_cmd_identifier_token24] = ACTIONS(950), - [aux_sym_cmd_identifier_token25] = ACTIONS(950), - [aux_sym_cmd_identifier_token26] = ACTIONS(950), - [aux_sym_cmd_identifier_token27] = ACTIONS(950), - [aux_sym_cmd_identifier_token28] = ACTIONS(950), - [aux_sym_cmd_identifier_token29] = ACTIONS(950), - [aux_sym_cmd_identifier_token30] = ACTIONS(950), - [aux_sym_cmd_identifier_token31] = ACTIONS(950), - [aux_sym_cmd_identifier_token32] = ACTIONS(950), - [aux_sym_cmd_identifier_token33] = ACTIONS(950), - [aux_sym_cmd_identifier_token34] = ACTIONS(948), - [aux_sym_cmd_identifier_token35] = ACTIONS(950), - [aux_sym_cmd_identifier_token36] = ACTIONS(950), - [aux_sym_cmd_identifier_token37] = ACTIONS(950), - [aux_sym_cmd_identifier_token38] = ACTIONS(948), - [aux_sym_cmd_identifier_token39] = ACTIONS(950), - [aux_sym_cmd_identifier_token40] = ACTIONS(950), - [anon_sym_def] = ACTIONS(948), - [anon_sym_export_DASHenv] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_use] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_COMMA] = ACTIONS(950), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_error] = ACTIONS(948), - [anon_sym_DASH2] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_in2] = ACTIONS(948), - [anon_sym_loop] = ACTIONS(948), - [anon_sym_make] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_match] = ACTIONS(948), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_try] = ACTIONS(948), - [anon_sym_catch] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_source] = ACTIONS(948), - [anon_sym_source_DASHenv] = ACTIONS(948), - [anon_sym_hide] = ACTIONS(948), - [anon_sym_hide_DASHenv] = ACTIONS(948), - [anon_sym_overlay] = ACTIONS(948), - [anon_sym_as] = ACTIONS(948), - [anon_sym_QMARK2] = ACTIONS(2087), - [anon_sym_PLUS2] = ACTIONS(948), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(950), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(950), - [aux_sym__val_number_decimal_token1] = ACTIONS(948), - [aux_sym__val_number_decimal_token2] = ACTIONS(950), - [aux_sym__val_number_decimal_token3] = ACTIONS(950), - [aux_sym__val_number_decimal_token4] = ACTIONS(950), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [aux_sym__val_number_token4] = ACTIONS(948), - [aux_sym__val_number_token5] = ACTIONS(948), - [aux_sym__val_number_token6] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(950), - [anon_sym_register] = ACTIONS(948), - [anon_sym_COLON2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(948), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(950), - }, - [517] = { - [sym_comment] = STATE(517), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_alias] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_let_DASHenv] = ACTIONS(1719), - [anon_sym_mut] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [aux_sym_cmd_identifier_token1] = ACTIONS(1719), - [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(1719), - [aux_sym_cmd_identifier_token9] = ACTIONS(1719), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1719), - [aux_sym_cmd_identifier_token13] = ACTIONS(1719), - [aux_sym_cmd_identifier_token14] = ACTIONS(1719), - [aux_sym_cmd_identifier_token15] = ACTIONS(1719), - [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(1719), - [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(1719), - [aux_sym_cmd_identifier_token39] = ACTIONS(1721), - [aux_sym_cmd_identifier_token40] = ACTIONS(1721), - [anon_sym_def] = ACTIONS(1719), - [anon_sym_export_DASHenv] = ACTIONS(1719), - [anon_sym_extern] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_use] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_COMMA] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_error] = ACTIONS(1719), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_in2] = ACTIONS(1719), - [anon_sym_loop] = ACTIONS(1719), - [anon_sym_make] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_match] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_catch] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_source] = ACTIONS(1719), - [anon_sym_source_DASHenv] = ACTIONS(1719), - [anon_sym_hide] = ACTIONS(1719), - [anon_sym_hide_DASHenv] = ACTIONS(1719), - [anon_sym_overlay] = ACTIONS(1719), - [anon_sym_as] = ACTIONS(1719), - [anon_sym_PLUS2] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), - [anon_sym_DOT_DOT2] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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(1719), - [aux_sym__val_number_token5] = ACTIONS(1719), - [aux_sym__val_number_token6] = ACTIONS(1719), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1721), - }, - [518] = { - [sym_comment] = STATE(518), - [anon_sym_export] = ACTIONS(1790), - [anon_sym_alias] = ACTIONS(1790), - [anon_sym_let] = ACTIONS(1790), - [anon_sym_let_DASHenv] = ACTIONS(1790), - [anon_sym_mut] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [aux_sym_cmd_identifier_token1] = ACTIONS(1790), - [aux_sym_cmd_identifier_token2] = ACTIONS(1792), - [aux_sym_cmd_identifier_token3] = ACTIONS(1792), - [aux_sym_cmd_identifier_token4] = ACTIONS(1792), - [aux_sym_cmd_identifier_token5] = ACTIONS(1792), - [aux_sym_cmd_identifier_token6] = ACTIONS(1792), - [aux_sym_cmd_identifier_token7] = ACTIONS(1792), - [aux_sym_cmd_identifier_token8] = ACTIONS(1790), - [aux_sym_cmd_identifier_token9] = ACTIONS(1790), - [aux_sym_cmd_identifier_token10] = ACTIONS(1792), - [aux_sym_cmd_identifier_token11] = ACTIONS(1792), - [aux_sym_cmd_identifier_token12] = ACTIONS(1790), - [aux_sym_cmd_identifier_token13] = ACTIONS(1790), - [aux_sym_cmd_identifier_token14] = ACTIONS(1790), - [aux_sym_cmd_identifier_token15] = ACTIONS(1790), - [aux_sym_cmd_identifier_token16] = ACTIONS(1792), - [aux_sym_cmd_identifier_token17] = ACTIONS(1792), - [aux_sym_cmd_identifier_token18] = ACTIONS(1792), - [aux_sym_cmd_identifier_token19] = ACTIONS(1792), - [aux_sym_cmd_identifier_token20] = ACTIONS(1792), - [aux_sym_cmd_identifier_token21] = ACTIONS(1792), - [aux_sym_cmd_identifier_token22] = ACTIONS(1792), - [aux_sym_cmd_identifier_token23] = ACTIONS(1792), - [aux_sym_cmd_identifier_token24] = ACTIONS(1792), - [aux_sym_cmd_identifier_token25] = ACTIONS(1792), - [aux_sym_cmd_identifier_token26] = ACTIONS(1792), - [aux_sym_cmd_identifier_token27] = ACTIONS(1792), - [aux_sym_cmd_identifier_token28] = ACTIONS(1792), - [aux_sym_cmd_identifier_token29] = ACTIONS(1792), - [aux_sym_cmd_identifier_token30] = ACTIONS(1792), - [aux_sym_cmd_identifier_token31] = ACTIONS(1792), - [aux_sym_cmd_identifier_token32] = ACTIONS(1792), - [aux_sym_cmd_identifier_token33] = ACTIONS(1792), - [aux_sym_cmd_identifier_token34] = ACTIONS(1790), - [aux_sym_cmd_identifier_token35] = ACTIONS(1792), - [aux_sym_cmd_identifier_token36] = ACTIONS(1792), - [aux_sym_cmd_identifier_token37] = ACTIONS(1792), - [aux_sym_cmd_identifier_token38] = ACTIONS(1790), - [aux_sym_cmd_identifier_token39] = ACTIONS(1792), - [aux_sym_cmd_identifier_token40] = ACTIONS(1792), - [anon_sym_def] = ACTIONS(1790), - [anon_sym_export_DASHenv] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym_module] = ACTIONS(1790), - [anon_sym_use] = ACTIONS(1790), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1790), - [anon_sym_error] = ACTIONS(1790), - [anon_sym_DASH2] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_in2] = ACTIONS(1790), - [anon_sym_loop] = ACTIONS(1790), - [anon_sym_make] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_match] = ACTIONS(1790), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_catch] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_source] = ACTIONS(1790), - [anon_sym_source_DASHenv] = ACTIONS(1790), - [anon_sym_hide] = ACTIONS(1790), - [anon_sym_hide_DASHenv] = ACTIONS(1790), - [anon_sym_overlay] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_PLUS2] = ACTIONS(1790), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1792), - [anon_sym_DOT_DOT2] = ACTIONS(1790), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1792), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1792), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1792), - [aux_sym__val_number_decimal_token1] = ACTIONS(1790), - [aux_sym__val_number_decimal_token2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1792), - [aux_sym__val_number_decimal_token4] = ACTIONS(1792), - [aux_sym__val_number_token1] = ACTIONS(1792), - [aux_sym__val_number_token2] = ACTIONS(1792), - [aux_sym__val_number_token3] = ACTIONS(1792), - [aux_sym__val_number_token4] = ACTIONS(1790), - [aux_sym__val_number_token5] = ACTIONS(1790), - [aux_sym__val_number_token6] = ACTIONS(1790), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym__str_single_quotes] = ACTIONS(1792), - [sym__str_back_ticks] = ACTIONS(1792), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1792), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1792), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1792), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [519] = { - [sym_comment] = STATE(519), - [anon_sym_export] = ACTIONS(1666), - [anon_sym_alias] = ACTIONS(1666), - [anon_sym_let] = ACTIONS(1666), - [anon_sym_let_DASHenv] = ACTIONS(1666), - [anon_sym_mut] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [aux_sym_cmd_identifier_token1] = ACTIONS(1666), - [aux_sym_cmd_identifier_token2] = ACTIONS(1666), - [aux_sym_cmd_identifier_token3] = ACTIONS(1666), - [aux_sym_cmd_identifier_token4] = ACTIONS(1666), - [aux_sym_cmd_identifier_token5] = ACTIONS(1666), - [aux_sym_cmd_identifier_token6] = ACTIONS(1666), - [aux_sym_cmd_identifier_token7] = ACTIONS(1666), - [aux_sym_cmd_identifier_token8] = ACTIONS(1666), - [aux_sym_cmd_identifier_token9] = ACTIONS(1666), - [aux_sym_cmd_identifier_token10] = ACTIONS(1666), - [aux_sym_cmd_identifier_token11] = ACTIONS(1666), - [aux_sym_cmd_identifier_token12] = ACTIONS(1666), - [aux_sym_cmd_identifier_token13] = ACTIONS(1666), - [aux_sym_cmd_identifier_token14] = ACTIONS(1666), - [aux_sym_cmd_identifier_token15] = ACTIONS(1666), - [aux_sym_cmd_identifier_token16] = ACTIONS(1666), - [aux_sym_cmd_identifier_token17] = ACTIONS(1666), - [aux_sym_cmd_identifier_token18] = ACTIONS(1666), - [aux_sym_cmd_identifier_token19] = ACTIONS(1666), - [aux_sym_cmd_identifier_token20] = ACTIONS(1666), - [aux_sym_cmd_identifier_token21] = ACTIONS(1666), - [aux_sym_cmd_identifier_token22] = ACTIONS(1666), - [aux_sym_cmd_identifier_token23] = ACTIONS(1666), - [aux_sym_cmd_identifier_token24] = ACTIONS(1666), - [aux_sym_cmd_identifier_token25] = ACTIONS(1666), - [aux_sym_cmd_identifier_token26] = ACTIONS(1666), - [aux_sym_cmd_identifier_token27] = ACTIONS(1666), - [aux_sym_cmd_identifier_token28] = ACTIONS(1666), - [aux_sym_cmd_identifier_token29] = ACTIONS(1666), - [aux_sym_cmd_identifier_token30] = ACTIONS(1666), - [aux_sym_cmd_identifier_token31] = ACTIONS(1666), - [aux_sym_cmd_identifier_token32] = ACTIONS(1666), - [aux_sym_cmd_identifier_token33] = ACTIONS(1666), - [aux_sym_cmd_identifier_token34] = ACTIONS(1666), - [aux_sym_cmd_identifier_token35] = ACTIONS(1666), - [aux_sym_cmd_identifier_token36] = ACTIONS(1666), - [aux_sym_cmd_identifier_token37] = ACTIONS(1666), - [aux_sym_cmd_identifier_token38] = ACTIONS(1666), - [aux_sym_cmd_identifier_token39] = ACTIONS(1666), - [aux_sym_cmd_identifier_token40] = ACTIONS(1666), - [anon_sym_def] = ACTIONS(1666), - [anon_sym_export_DASHenv] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_module] = ACTIONS(1666), - [anon_sym_use] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_COMMA] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_error] = ACTIONS(1666), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_in2] = ACTIONS(1666), - [anon_sym_loop] = ACTIONS(1666), - [anon_sym_make] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_do] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_match] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(1666), - [anon_sym_try] = ACTIONS(1666), - [anon_sym_catch] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_source] = ACTIONS(1666), - [anon_sym_source_DASHenv] = ACTIONS(1666), - [anon_sym_hide] = ACTIONS(1666), - [anon_sym_hide_DASHenv] = ACTIONS(1666), - [anon_sym_overlay] = ACTIONS(1666), - [anon_sym_as] = ACTIONS(1666), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_PLUS2] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1666), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1666), - [aux_sym__val_number_decimal_token3] = ACTIONS(1666), - [aux_sym__val_number_decimal_token4] = ACTIONS(1666), - [aux_sym__val_number_token1] = ACTIONS(1666), - [aux_sym__val_number_token2] = ACTIONS(1666), - [aux_sym__val_number_token3] = ACTIONS(1666), - [aux_sym__val_number_token4] = ACTIONS(1666), - [aux_sym__val_number_token5] = ACTIONS(1666), - [aux_sym__val_number_token6] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1666), - [sym__str_single_quotes] = ACTIONS(1666), - [sym__str_back_ticks] = ACTIONS(1666), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1666), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1666), - [sym__entry_separator] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1666), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1668), - }, - [520] = { - [sym_comment] = STATE(520), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), - [aux_sym_cmd_identifier_token2] = ACTIONS(1648), - [aux_sym_cmd_identifier_token3] = ACTIONS(1648), - [aux_sym_cmd_identifier_token4] = ACTIONS(1648), - [aux_sym_cmd_identifier_token5] = ACTIONS(1648), - [aux_sym_cmd_identifier_token6] = ACTIONS(1648), - [aux_sym_cmd_identifier_token7] = ACTIONS(1648), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), - [aux_sym_cmd_identifier_token10] = ACTIONS(1648), - [aux_sym_cmd_identifier_token11] = ACTIONS(1648), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), - [aux_sym_cmd_identifier_token16] = ACTIONS(1648), - [aux_sym_cmd_identifier_token17] = ACTIONS(1648), - [aux_sym_cmd_identifier_token18] = ACTIONS(1648), - [aux_sym_cmd_identifier_token19] = ACTIONS(1648), - [aux_sym_cmd_identifier_token20] = ACTIONS(1648), - [aux_sym_cmd_identifier_token21] = ACTIONS(1648), - [aux_sym_cmd_identifier_token22] = ACTIONS(1648), - [aux_sym_cmd_identifier_token23] = ACTIONS(1648), - [aux_sym_cmd_identifier_token24] = ACTIONS(1648), - [aux_sym_cmd_identifier_token25] = ACTIONS(1648), - [aux_sym_cmd_identifier_token26] = ACTIONS(1648), - [aux_sym_cmd_identifier_token27] = ACTIONS(1648), - [aux_sym_cmd_identifier_token28] = ACTIONS(1648), - [aux_sym_cmd_identifier_token29] = ACTIONS(1648), - [aux_sym_cmd_identifier_token30] = ACTIONS(1648), - [aux_sym_cmd_identifier_token31] = ACTIONS(1648), - [aux_sym_cmd_identifier_token32] = ACTIONS(1648), - [aux_sym_cmd_identifier_token33] = ACTIONS(1648), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), - [aux_sym_cmd_identifier_token35] = ACTIONS(1648), - [aux_sym_cmd_identifier_token36] = ACTIONS(1648), - [aux_sym_cmd_identifier_token37] = ACTIONS(1648), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), - [aux_sym_cmd_identifier_token39] = ACTIONS(1648), - [aux_sym_cmd_identifier_token40] = ACTIONS(1648), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_COMMA] = ACTIONS(1648), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_DASH2] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in2] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_PLUS2] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1648), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1648), - [aux_sym__val_number_decimal_token3] = ACTIONS(1648), - [aux_sym__val_number_decimal_token4] = ACTIONS(1648), - [aux_sym__val_number_token1] = ACTIONS(1648), - [aux_sym__val_number_token2] = ACTIONS(1648), - [aux_sym__val_number_token3] = ACTIONS(1648), - [aux_sym__val_number_token4] = ACTIONS(1648), - [aux_sym__val_number_token5] = ACTIONS(1648), - [aux_sym__val_number_token6] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1648), - [sym__str_single_quotes] = ACTIONS(1648), - [sym__str_back_ticks] = ACTIONS(1648), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1648), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1648), - [sym__entry_separator] = ACTIONS(1650), - [anon_sym_register] = ACTIONS(1648), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1650), + [532] = { + [sym__expr_parenthesized_immediate] = STATE(6928), + [sym_comment] = STATE(532), + [anon_sym_export] = ACTIONS(1934), + [anon_sym_alias] = ACTIONS(1934), + [anon_sym_let] = ACTIONS(1934), + [anon_sym_let_DASHenv] = ACTIONS(1934), + [anon_sym_mut] = ACTIONS(1934), + [anon_sym_const] = ACTIONS(1934), + [aux_sym_cmd_identifier_token1] = ACTIONS(1934), + [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(1934), + [aux_sym_cmd_identifier_token9] = ACTIONS(1934), + [aux_sym_cmd_identifier_token10] = ACTIONS(1940), + [aux_sym_cmd_identifier_token11] = ACTIONS(1940), + [aux_sym_cmd_identifier_token12] = ACTIONS(1934), + [aux_sym_cmd_identifier_token13] = ACTIONS(1934), + [aux_sym_cmd_identifier_token14] = ACTIONS(1934), + [aux_sym_cmd_identifier_token15] = ACTIONS(1934), + [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(1934), + [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(1934), + [aux_sym_cmd_identifier_token39] = ACTIONS(1940), + [aux_sym_cmd_identifier_token40] = ACTIONS(1940), + [anon_sym_def] = ACTIONS(1934), + [anon_sym_export_DASHenv] = ACTIONS(1934), + [anon_sym_extern] = ACTIONS(1934), + [anon_sym_module] = ACTIONS(1934), + [anon_sym_use] = ACTIONS(1934), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_COMMA] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(1934), + [anon_sym_error] = ACTIONS(1934), + [anon_sym_DASH2] = ACTIONS(1934), + [anon_sym_break] = ACTIONS(1934), + [anon_sym_continue] = ACTIONS(1934), + [anon_sym_for] = ACTIONS(1934), + [anon_sym_in2] = ACTIONS(1934), + [anon_sym_loop] = ACTIONS(1934), + [anon_sym_make] = ACTIONS(1934), + [anon_sym_while] = ACTIONS(1934), + [anon_sym_do] = ACTIONS(1934), + [anon_sym_if] = ACTIONS(1934), + [anon_sym_else] = ACTIONS(1934), + [anon_sym_match] = ACTIONS(1934), + [anon_sym_RBRACE] = ACTIONS(1940), + [anon_sym_try] = ACTIONS(1934), + [anon_sym_catch] = ACTIONS(1934), + [anon_sym_return] = ACTIONS(1934), + [anon_sym_source] = ACTIONS(1934), + [anon_sym_source_DASHenv] = ACTIONS(1934), + [anon_sym_hide] = ACTIONS(1934), + [anon_sym_hide_DASHenv] = ACTIONS(1934), + [anon_sym_overlay] = ACTIONS(1934), + [anon_sym_as] = ACTIONS(1934), + [anon_sym_LPAREN2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(1934), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1940), + [aux_sym__val_number_decimal_token1] = ACTIONS(1934), + [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(1934), + [aux_sym__val_number_token5] = ACTIONS(1934), + [aux_sym__val_number_token6] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1940), + [sym__str_single_quotes] = ACTIONS(1940), + [sym__str_back_ticks] = ACTIONS(1940), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1940), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1934), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1940), }, - [521] = { - [sym_comment] = STATE(521), - [anon_sym_export] = ACTIONS(2089), - [anon_sym_alias] = ACTIONS(2089), - [anon_sym_let] = ACTIONS(2089), - [anon_sym_let_DASHenv] = ACTIONS(2089), - [anon_sym_mut] = ACTIONS(2089), - [anon_sym_const] = ACTIONS(2089), - [aux_sym_cmd_identifier_token1] = ACTIONS(2089), - [aux_sym_cmd_identifier_token2] = ACTIONS(2089), - [aux_sym_cmd_identifier_token3] = ACTIONS(2089), - [aux_sym_cmd_identifier_token4] = ACTIONS(2089), - [aux_sym_cmd_identifier_token5] = ACTIONS(2089), - [aux_sym_cmd_identifier_token6] = ACTIONS(2089), - [aux_sym_cmd_identifier_token7] = ACTIONS(2089), - [aux_sym_cmd_identifier_token8] = ACTIONS(2089), - [aux_sym_cmd_identifier_token9] = ACTIONS(2089), - [aux_sym_cmd_identifier_token10] = ACTIONS(2089), - [aux_sym_cmd_identifier_token11] = ACTIONS(2089), - [aux_sym_cmd_identifier_token12] = ACTIONS(2089), - [aux_sym_cmd_identifier_token13] = ACTIONS(2089), - [aux_sym_cmd_identifier_token14] = ACTIONS(2089), - [aux_sym_cmd_identifier_token15] = ACTIONS(2089), - [aux_sym_cmd_identifier_token16] = ACTIONS(2089), - [aux_sym_cmd_identifier_token17] = ACTIONS(2089), - [aux_sym_cmd_identifier_token18] = ACTIONS(2089), - [aux_sym_cmd_identifier_token19] = ACTIONS(2089), - [aux_sym_cmd_identifier_token20] = ACTIONS(2089), - [aux_sym_cmd_identifier_token21] = ACTIONS(2089), - [aux_sym_cmd_identifier_token22] = ACTIONS(2089), - [aux_sym_cmd_identifier_token23] = ACTIONS(2089), - [aux_sym_cmd_identifier_token24] = ACTIONS(2089), - [aux_sym_cmd_identifier_token25] = ACTIONS(2089), - [aux_sym_cmd_identifier_token26] = ACTIONS(2089), - [aux_sym_cmd_identifier_token27] = ACTIONS(2089), - [aux_sym_cmd_identifier_token28] = ACTIONS(2089), - [aux_sym_cmd_identifier_token29] = ACTIONS(2089), - [aux_sym_cmd_identifier_token30] = ACTIONS(2089), - [aux_sym_cmd_identifier_token31] = ACTIONS(2089), - [aux_sym_cmd_identifier_token32] = ACTIONS(2089), - [aux_sym_cmd_identifier_token33] = ACTIONS(2089), - [aux_sym_cmd_identifier_token34] = ACTIONS(2089), - [aux_sym_cmd_identifier_token35] = ACTIONS(2089), - [aux_sym_cmd_identifier_token36] = ACTIONS(2089), - [aux_sym_cmd_identifier_token37] = ACTIONS(2089), - [aux_sym_cmd_identifier_token38] = ACTIONS(2089), - [aux_sym_cmd_identifier_token39] = ACTIONS(2089), - [aux_sym_cmd_identifier_token40] = ACTIONS(2089), - [anon_sym_def] = ACTIONS(2089), - [anon_sym_export_DASHenv] = ACTIONS(2089), - [anon_sym_extern] = ACTIONS(2089), - [anon_sym_module] = ACTIONS(2089), - [anon_sym_use] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_COMMA] = ACTIONS(2089), - [anon_sym_DOLLAR] = ACTIONS(2089), - [anon_sym_error] = ACTIONS(2089), - [anon_sym_DASH2] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_in2] = ACTIONS(2089), - [anon_sym_loop] = ACTIONS(2089), - [anon_sym_make] = ACTIONS(2089), - [anon_sym_while] = ACTIONS(2089), - [anon_sym_do] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_else] = ACTIONS(2089), - [anon_sym_match] = ACTIONS(2089), - [anon_sym_RBRACE] = ACTIONS(2089), - [anon_sym_try] = ACTIONS(2089), - [anon_sym_catch] = ACTIONS(2089), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_source] = ACTIONS(2089), - [anon_sym_source_DASHenv] = ACTIONS(2089), - [anon_sym_hide] = ACTIONS(2089), - [anon_sym_hide_DASHenv] = ACTIONS(2089), - [anon_sym_overlay] = ACTIONS(2089), - [anon_sym_as] = ACTIONS(2089), - [anon_sym_LPAREN2] = ACTIONS(2091), - [anon_sym_PLUS2] = ACTIONS(2089), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2089), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2089), - [aux_sym__val_number_decimal_token1] = ACTIONS(2089), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2089), - [aux_sym__val_number_decimal_token4] = ACTIONS(2089), - [aux_sym__val_number_token1] = ACTIONS(2089), - [aux_sym__val_number_token2] = ACTIONS(2089), - [aux_sym__val_number_token3] = ACTIONS(2089), - [aux_sym__val_number_token4] = ACTIONS(2089), - [aux_sym__val_number_token5] = ACTIONS(2089), - [aux_sym__val_number_token6] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(2089), - [sym__str_single_quotes] = ACTIONS(2089), - [sym__str_back_ticks] = ACTIONS(2089), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2089), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2089), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2089), - [sym__entry_separator] = ACTIONS(2093), - [anon_sym_register] = ACTIONS(2089), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2095), + [533] = { + [sym_comment] = STATE(533), + [anon_sym_export] = ACTIONS(970), + [anon_sym_alias] = ACTIONS(970), + [anon_sym_let] = ACTIONS(970), + [anon_sym_let_DASHenv] = ACTIONS(970), + [anon_sym_mut] = ACTIONS(970), + [anon_sym_const] = ACTIONS(970), + [aux_sym_cmd_identifier_token1] = ACTIONS(970), + [aux_sym_cmd_identifier_token2] = ACTIONS(970), + [aux_sym_cmd_identifier_token3] = ACTIONS(970), + [aux_sym_cmd_identifier_token4] = ACTIONS(970), + [aux_sym_cmd_identifier_token5] = ACTIONS(970), + [aux_sym_cmd_identifier_token6] = ACTIONS(970), + [aux_sym_cmd_identifier_token7] = ACTIONS(970), + [aux_sym_cmd_identifier_token8] = ACTIONS(970), + [aux_sym_cmd_identifier_token9] = ACTIONS(970), + [aux_sym_cmd_identifier_token10] = ACTIONS(970), + [aux_sym_cmd_identifier_token11] = ACTIONS(970), + [aux_sym_cmd_identifier_token12] = ACTIONS(970), + [aux_sym_cmd_identifier_token13] = ACTIONS(970), + [aux_sym_cmd_identifier_token14] = ACTIONS(970), + [aux_sym_cmd_identifier_token15] = ACTIONS(970), + [aux_sym_cmd_identifier_token16] = ACTIONS(970), + [aux_sym_cmd_identifier_token17] = ACTIONS(970), + [aux_sym_cmd_identifier_token18] = ACTIONS(970), + [aux_sym_cmd_identifier_token19] = ACTIONS(970), + [aux_sym_cmd_identifier_token20] = ACTIONS(970), + [aux_sym_cmd_identifier_token21] = ACTIONS(970), + [aux_sym_cmd_identifier_token22] = ACTIONS(970), + [aux_sym_cmd_identifier_token23] = ACTIONS(970), + [aux_sym_cmd_identifier_token24] = ACTIONS(970), + [aux_sym_cmd_identifier_token25] = ACTIONS(970), + [aux_sym_cmd_identifier_token26] = ACTIONS(970), + [aux_sym_cmd_identifier_token27] = ACTIONS(970), + [aux_sym_cmd_identifier_token28] = ACTIONS(970), + [aux_sym_cmd_identifier_token29] = ACTIONS(970), + [aux_sym_cmd_identifier_token30] = ACTIONS(970), + [aux_sym_cmd_identifier_token31] = ACTIONS(970), + [aux_sym_cmd_identifier_token32] = ACTIONS(970), + [aux_sym_cmd_identifier_token33] = ACTIONS(970), + [aux_sym_cmd_identifier_token34] = ACTIONS(970), + [aux_sym_cmd_identifier_token35] = ACTIONS(970), + [aux_sym_cmd_identifier_token36] = ACTIONS(970), + [aux_sym_cmd_identifier_token37] = ACTIONS(970), + [aux_sym_cmd_identifier_token38] = ACTIONS(970), + [aux_sym_cmd_identifier_token39] = ACTIONS(970), + [aux_sym_cmd_identifier_token40] = ACTIONS(970), + [anon_sym_def] = ACTIONS(970), + [anon_sym_export_DASHenv] = ACTIONS(970), + [anon_sym_extern] = ACTIONS(970), + [anon_sym_module] = ACTIONS(970), + [anon_sym_use] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(970), + [anon_sym_COMMA] = ACTIONS(970), + [anon_sym_DOLLAR] = ACTIONS(970), + [anon_sym_error] = ACTIONS(970), + [anon_sym_DASH2] = ACTIONS(970), + [anon_sym_break] = ACTIONS(970), + [anon_sym_continue] = ACTIONS(970), + [anon_sym_for] = ACTIONS(970), + [anon_sym_in2] = ACTIONS(970), + [anon_sym_loop] = ACTIONS(970), + [anon_sym_make] = ACTIONS(970), + [anon_sym_while] = ACTIONS(970), + [anon_sym_do] = ACTIONS(970), + [anon_sym_if] = ACTIONS(970), + [anon_sym_else] = ACTIONS(970), + [anon_sym_match] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_try] = ACTIONS(970), + [anon_sym_catch] = ACTIONS(970), + [anon_sym_return] = ACTIONS(970), + [anon_sym_source] = ACTIONS(970), + [anon_sym_source_DASHenv] = ACTIONS(970), + [anon_sym_hide] = ACTIONS(970), + [anon_sym_hide_DASHenv] = ACTIONS(970), + [anon_sym_overlay] = ACTIONS(970), + [anon_sym_as] = ACTIONS(970), + [anon_sym_PLUS2] = ACTIONS(970), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(970), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(970), + [aux_sym__val_number_decimal_token1] = ACTIONS(970), + [aux_sym__val_number_decimal_token2] = ACTIONS(970), + [aux_sym__val_number_decimal_token3] = ACTIONS(970), + [aux_sym__val_number_decimal_token4] = ACTIONS(970), + [aux_sym__val_number_token1] = ACTIONS(970), + [aux_sym__val_number_token2] = ACTIONS(970), + [aux_sym__val_number_token3] = ACTIONS(970), + [aux_sym__val_number_token4] = ACTIONS(970), + [aux_sym__val_number_token5] = ACTIONS(970), + [aux_sym__val_number_token6] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym__str_single_quotes] = ACTIONS(970), + [sym__str_back_ticks] = ACTIONS(970), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(970), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(970), + [sym__entry_separator] = ACTIONS(972), + [anon_sym_register] = ACTIONS(970), + [anon_sym_DOT2] = ACTIONS(970), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2093), + [sym_raw_string_begin] = ACTIONS(972), }, - [522] = { - [sym_comment] = STATE(522), - [anon_sym_export] = ACTIONS(1790), - [anon_sym_alias] = ACTIONS(1790), - [anon_sym_let] = ACTIONS(1790), - [anon_sym_let_DASHenv] = ACTIONS(1790), - [anon_sym_mut] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [aux_sym_cmd_identifier_token1] = ACTIONS(1790), + [534] = { + [sym_comment] = STATE(534), + [anon_sym_export] = ACTIONS(1782), + [anon_sym_alias] = ACTIONS(1782), + [anon_sym_let] = ACTIONS(1782), + [anon_sym_let_DASHenv] = ACTIONS(1782), + [anon_sym_mut] = ACTIONS(1782), + [anon_sym_const] = ACTIONS(1782), + [aux_sym_cmd_identifier_token1] = ACTIONS(1782), [aux_sym_cmd_identifier_token2] = ACTIONS(1790), [aux_sym_cmd_identifier_token3] = ACTIONS(1790), [aux_sym_cmd_identifier_token4] = ACTIONS(1790), [aux_sym_cmd_identifier_token5] = ACTIONS(1790), [aux_sym_cmd_identifier_token6] = ACTIONS(1790), [aux_sym_cmd_identifier_token7] = ACTIONS(1790), - [aux_sym_cmd_identifier_token8] = ACTIONS(1790), - [aux_sym_cmd_identifier_token9] = ACTIONS(1790), + [aux_sym_cmd_identifier_token8] = ACTIONS(1782), + [aux_sym_cmd_identifier_token9] = ACTIONS(1782), [aux_sym_cmd_identifier_token10] = ACTIONS(1790), [aux_sym_cmd_identifier_token11] = ACTIONS(1790), - [aux_sym_cmd_identifier_token12] = ACTIONS(1790), - [aux_sym_cmd_identifier_token13] = ACTIONS(1790), - [aux_sym_cmd_identifier_token14] = ACTIONS(1790), - [aux_sym_cmd_identifier_token15] = ACTIONS(1790), + [aux_sym_cmd_identifier_token12] = ACTIONS(1782), + [aux_sym_cmd_identifier_token13] = ACTIONS(1782), + [aux_sym_cmd_identifier_token14] = ACTIONS(1782), + [aux_sym_cmd_identifier_token15] = ACTIONS(1782), [aux_sym_cmd_identifier_token16] = ACTIONS(1790), [aux_sym_cmd_identifier_token17] = ACTIONS(1790), [aux_sym_cmd_identifier_token18] = ACTIONS(1790), @@ -132543,387 +132660,1319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(1790), [aux_sym_cmd_identifier_token32] = ACTIONS(1790), [aux_sym_cmd_identifier_token33] = ACTIONS(1790), - [aux_sym_cmd_identifier_token34] = ACTIONS(1790), + [aux_sym_cmd_identifier_token34] = ACTIONS(1782), [aux_sym_cmd_identifier_token35] = ACTIONS(1790), [aux_sym_cmd_identifier_token36] = ACTIONS(1790), [aux_sym_cmd_identifier_token37] = ACTIONS(1790), - [aux_sym_cmd_identifier_token38] = ACTIONS(1790), + [aux_sym_cmd_identifier_token38] = ACTIONS(1782), [aux_sym_cmd_identifier_token39] = ACTIONS(1790), [aux_sym_cmd_identifier_token40] = ACTIONS(1790), - [anon_sym_def] = ACTIONS(1790), - [anon_sym_export_DASHenv] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym_module] = ACTIONS(1790), - [anon_sym_use] = ACTIONS(1790), - [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_def] = ACTIONS(1782), + [anon_sym_export_DASHenv] = ACTIONS(1782), + [anon_sym_extern] = ACTIONS(1782), + [anon_sym_module] = ACTIONS(1782), + [anon_sym_use] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), [anon_sym_COMMA] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(1790), - [anon_sym_error] = ACTIONS(1790), - [anon_sym_DASH2] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_in2] = ACTIONS(1790), - [anon_sym_loop] = ACTIONS(1790), - [anon_sym_make] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_match] = ACTIONS(1790), + [anon_sym_DOLLAR] = ACTIONS(1782), + [anon_sym_error] = ACTIONS(1782), + [anon_sym_DASH2] = ACTIONS(1782), + [anon_sym_break] = ACTIONS(1782), + [anon_sym_continue] = ACTIONS(1782), + [anon_sym_for] = ACTIONS(1782), + [anon_sym_in2] = ACTIONS(1782), + [anon_sym_loop] = ACTIONS(1782), + [anon_sym_make] = ACTIONS(1782), + [anon_sym_while] = ACTIONS(1782), + [anon_sym_do] = ACTIONS(1782), + [anon_sym_if] = ACTIONS(1782), + [anon_sym_else] = ACTIONS(1782), + [anon_sym_match] = ACTIONS(1782), [anon_sym_RBRACE] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_catch] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_source] = ACTIONS(1790), - [anon_sym_source_DASHenv] = ACTIONS(1790), - [anon_sym_hide] = ACTIONS(1790), - [anon_sym_hide_DASHenv] = ACTIONS(1790), - [anon_sym_overlay] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_PLUS2] = ACTIONS(1790), + [anon_sym_try] = ACTIONS(1782), + [anon_sym_catch] = ACTIONS(1782), + [anon_sym_return] = ACTIONS(1782), + [anon_sym_source] = ACTIONS(1782), + [anon_sym_source_DASHenv] = ACTIONS(1782), + [anon_sym_hide] = ACTIONS(1782), + [anon_sym_hide_DASHenv] = ACTIONS(1782), + [anon_sym_overlay] = ACTIONS(1782), + [anon_sym_as] = ACTIONS(1782), + [anon_sym_LPAREN2] = ACTIONS(1784), + [anon_sym_PLUS2] = ACTIONS(1782), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1790), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1790), - [aux_sym__val_number_decimal_token1] = ACTIONS(1790), + [aux_sym__val_number_decimal_token1] = ACTIONS(1782), [aux_sym__val_number_decimal_token2] = ACTIONS(1790), [aux_sym__val_number_decimal_token3] = ACTIONS(1790), [aux_sym__val_number_decimal_token4] = ACTIONS(1790), [aux_sym__val_number_token1] = ACTIONS(1790), [aux_sym__val_number_token2] = ACTIONS(1790), [aux_sym__val_number_token3] = ACTIONS(1790), - [aux_sym__val_number_token4] = ACTIONS(1790), - [aux_sym__val_number_token5] = ACTIONS(1790), - [aux_sym__val_number_token6] = ACTIONS(1790), + [aux_sym__val_number_token4] = ACTIONS(1782), + [aux_sym__val_number_token5] = ACTIONS(1782), + [aux_sym__val_number_token6] = ACTIONS(1782), [anon_sym_DQUOTE] = ACTIONS(1790), [sym__str_single_quotes] = ACTIONS(1790), [sym__str_back_ticks] = ACTIONS(1790), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1790), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1790), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1790), - [sym__entry_separator] = ACTIONS(1792), - [anon_sym_register] = ACTIONS(1790), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1790), + [anon_sym_register] = ACTIONS(1782), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1790), + }, + [535] = { + [sym_comment] = STATE(535), + [anon_sym_export] = ACTIONS(1686), + [anon_sym_alias] = ACTIONS(1686), + [anon_sym_let] = ACTIONS(1686), + [anon_sym_let_DASHenv] = ACTIONS(1686), + [anon_sym_mut] = ACTIONS(1686), + [anon_sym_const] = ACTIONS(1686), + [aux_sym_cmd_identifier_token1] = ACTIONS(1686), + [aux_sym_cmd_identifier_token2] = ACTIONS(1688), + [aux_sym_cmd_identifier_token3] = ACTIONS(1688), + [aux_sym_cmd_identifier_token4] = ACTIONS(1688), + [aux_sym_cmd_identifier_token5] = ACTIONS(1688), + [aux_sym_cmd_identifier_token6] = ACTIONS(1688), + [aux_sym_cmd_identifier_token7] = ACTIONS(1688), + [aux_sym_cmd_identifier_token8] = ACTIONS(1686), + [aux_sym_cmd_identifier_token9] = ACTIONS(1686), + [aux_sym_cmd_identifier_token10] = ACTIONS(1688), + [aux_sym_cmd_identifier_token11] = ACTIONS(1688), + [aux_sym_cmd_identifier_token12] = ACTIONS(1686), + [aux_sym_cmd_identifier_token13] = ACTIONS(1686), + [aux_sym_cmd_identifier_token14] = ACTIONS(1686), + [aux_sym_cmd_identifier_token15] = ACTIONS(1686), + [aux_sym_cmd_identifier_token16] = ACTIONS(1688), + [aux_sym_cmd_identifier_token17] = ACTIONS(1688), + [aux_sym_cmd_identifier_token18] = ACTIONS(1688), + [aux_sym_cmd_identifier_token19] = ACTIONS(1688), + [aux_sym_cmd_identifier_token20] = ACTIONS(1688), + [aux_sym_cmd_identifier_token21] = ACTIONS(1688), + [aux_sym_cmd_identifier_token22] = ACTIONS(1688), + [aux_sym_cmd_identifier_token23] = ACTIONS(1688), + [aux_sym_cmd_identifier_token24] = ACTIONS(1688), + [aux_sym_cmd_identifier_token25] = ACTIONS(1688), + [aux_sym_cmd_identifier_token26] = ACTIONS(1688), + [aux_sym_cmd_identifier_token27] = ACTIONS(1688), + [aux_sym_cmd_identifier_token28] = ACTIONS(1688), + [aux_sym_cmd_identifier_token29] = ACTIONS(1688), + [aux_sym_cmd_identifier_token30] = ACTIONS(1688), + [aux_sym_cmd_identifier_token31] = ACTIONS(1688), + [aux_sym_cmd_identifier_token32] = ACTIONS(1688), + [aux_sym_cmd_identifier_token33] = ACTIONS(1688), + [aux_sym_cmd_identifier_token34] = ACTIONS(1686), + [aux_sym_cmd_identifier_token35] = ACTIONS(1688), + [aux_sym_cmd_identifier_token36] = ACTIONS(1688), + [aux_sym_cmd_identifier_token37] = ACTIONS(1688), + [aux_sym_cmd_identifier_token38] = ACTIONS(1686), + [aux_sym_cmd_identifier_token39] = ACTIONS(1688), + [aux_sym_cmd_identifier_token40] = ACTIONS(1688), + [anon_sym_def] = ACTIONS(1686), + [anon_sym_export_DASHenv] = ACTIONS(1686), + [anon_sym_extern] = ACTIONS(1686), + [anon_sym_module] = ACTIONS(1686), + [anon_sym_use] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1688), + [anon_sym_COMMA] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_error] = ACTIONS(1686), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_break] = ACTIONS(1686), + [anon_sym_continue] = ACTIONS(1686), + [anon_sym_for] = ACTIONS(1686), + [anon_sym_in2] = ACTIONS(1686), + [anon_sym_loop] = ACTIONS(1686), + [anon_sym_make] = ACTIONS(1686), + [anon_sym_while] = ACTIONS(1686), + [anon_sym_do] = ACTIONS(1686), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_else] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_try] = ACTIONS(1686), + [anon_sym_catch] = ACTIONS(1686), + [anon_sym_return] = ACTIONS(1686), + [anon_sym_source] = ACTIONS(1686), + [anon_sym_source_DASHenv] = ACTIONS(1686), + [anon_sym_hide] = ACTIONS(1686), + [anon_sym_hide_DASHenv] = ACTIONS(1686), + [anon_sym_overlay] = ACTIONS(1686), + [anon_sym_as] = ACTIONS(1686), + [anon_sym_PLUS2] = ACTIONS(1686), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1688), + [aux_sym__immediate_decimal_token1] = ACTIONS(2170), + [aux_sym__immediate_decimal_token2] = ACTIONS(2172), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1688), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1688), + [aux_sym__val_number_decimal_token3] = ACTIONS(1688), + [aux_sym__val_number_decimal_token4] = ACTIONS(1688), + [aux_sym__val_number_token1] = ACTIONS(1688), + [aux_sym__val_number_token2] = ACTIONS(1688), + [aux_sym__val_number_token3] = ACTIONS(1688), + [aux_sym__val_number_token4] = ACTIONS(1686), + [aux_sym__val_number_token5] = ACTIONS(1686), + [aux_sym__val_number_token6] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [sym__str_single_quotes] = ACTIONS(1688), + [sym__str_back_ticks] = ACTIONS(1688), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1688), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1688), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1688), + [anon_sym_register] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1688), + }, + [536] = { + [sym__expr_parenthesized_immediate] = STATE(7374), + [sym_comment] = STATE(536), + [anon_sym_export] = ACTIONS(2112), + [anon_sym_alias] = ACTIONS(2112), + [anon_sym_let] = ACTIONS(2112), + [anon_sym_let_DASHenv] = ACTIONS(2112), + [anon_sym_mut] = ACTIONS(2112), + [anon_sym_const] = ACTIONS(2112), + [aux_sym_cmd_identifier_token1] = ACTIONS(2112), + [aux_sym_cmd_identifier_token2] = ACTIONS(2114), + [aux_sym_cmd_identifier_token3] = ACTIONS(2114), + [aux_sym_cmd_identifier_token4] = ACTIONS(2114), + [aux_sym_cmd_identifier_token5] = ACTIONS(2114), + [aux_sym_cmd_identifier_token6] = ACTIONS(2114), + [aux_sym_cmd_identifier_token7] = ACTIONS(2114), + [aux_sym_cmd_identifier_token8] = ACTIONS(2112), + [aux_sym_cmd_identifier_token9] = ACTIONS(2112), + [aux_sym_cmd_identifier_token10] = ACTIONS(2114), + [aux_sym_cmd_identifier_token11] = ACTIONS(2114), + [aux_sym_cmd_identifier_token12] = ACTIONS(2112), + [aux_sym_cmd_identifier_token13] = ACTIONS(2112), + [aux_sym_cmd_identifier_token14] = ACTIONS(2112), + [aux_sym_cmd_identifier_token15] = ACTIONS(2112), + [aux_sym_cmd_identifier_token16] = ACTIONS(2114), + [aux_sym_cmd_identifier_token17] = ACTIONS(2114), + [aux_sym_cmd_identifier_token18] = ACTIONS(2114), + [aux_sym_cmd_identifier_token19] = ACTIONS(2114), + [aux_sym_cmd_identifier_token20] = ACTIONS(2114), + [aux_sym_cmd_identifier_token21] = ACTIONS(2114), + [aux_sym_cmd_identifier_token22] = ACTIONS(2114), + [aux_sym_cmd_identifier_token23] = ACTIONS(2114), + [aux_sym_cmd_identifier_token24] = ACTIONS(2114), + [aux_sym_cmd_identifier_token25] = ACTIONS(2114), + [aux_sym_cmd_identifier_token26] = ACTIONS(2114), + [aux_sym_cmd_identifier_token27] = ACTIONS(2114), + [aux_sym_cmd_identifier_token28] = ACTIONS(2114), + [aux_sym_cmd_identifier_token29] = ACTIONS(2114), + [aux_sym_cmd_identifier_token30] = ACTIONS(2114), + [aux_sym_cmd_identifier_token31] = ACTIONS(2114), + [aux_sym_cmd_identifier_token32] = ACTIONS(2114), + [aux_sym_cmd_identifier_token33] = ACTIONS(2114), + [aux_sym_cmd_identifier_token34] = ACTIONS(2112), + [aux_sym_cmd_identifier_token35] = ACTIONS(2114), + [aux_sym_cmd_identifier_token36] = ACTIONS(2114), + [aux_sym_cmd_identifier_token37] = ACTIONS(2114), + [aux_sym_cmd_identifier_token38] = ACTIONS(2112), + [aux_sym_cmd_identifier_token39] = ACTIONS(2114), + [aux_sym_cmd_identifier_token40] = ACTIONS(2114), + [anon_sym_def] = ACTIONS(2112), + [anon_sym_export_DASHenv] = ACTIONS(2112), + [anon_sym_extern] = ACTIONS(2112), + [anon_sym_module] = ACTIONS(2112), + [anon_sym_use] = ACTIONS(2112), + [anon_sym_LPAREN] = ACTIONS(2112), + [anon_sym_COMMA] = ACTIONS(2114), + [anon_sym_DOLLAR] = ACTIONS(2112), + [anon_sym_error] = ACTIONS(2112), + [anon_sym_DASH2] = ACTIONS(2112), + [anon_sym_break] = ACTIONS(2112), + [anon_sym_continue] = ACTIONS(2112), + [anon_sym_for] = ACTIONS(2112), + [anon_sym_in2] = ACTIONS(2112), + [anon_sym_loop] = ACTIONS(2112), + [anon_sym_make] = ACTIONS(2112), + [anon_sym_while] = ACTIONS(2112), + [anon_sym_do] = ACTIONS(2112), + [anon_sym_if] = ACTIONS(2112), + [anon_sym_else] = ACTIONS(2112), + [anon_sym_match] = ACTIONS(2112), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_try] = ACTIONS(2112), + [anon_sym_catch] = ACTIONS(2112), + [anon_sym_return] = ACTIONS(2112), + [anon_sym_source] = ACTIONS(2112), + [anon_sym_source_DASHenv] = ACTIONS(2112), + [anon_sym_hide] = ACTIONS(2112), + [anon_sym_hide_DASHenv] = ACTIONS(2112), + [anon_sym_overlay] = ACTIONS(2112), + [anon_sym_as] = ACTIONS(2112), + [anon_sym_LPAREN2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(2112), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2114), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2114), + [aux_sym__val_number_decimal_token1] = ACTIONS(2112), + [aux_sym__val_number_decimal_token2] = ACTIONS(2114), + [aux_sym__val_number_decimal_token3] = ACTIONS(2114), + [aux_sym__val_number_decimal_token4] = ACTIONS(2114), + [aux_sym__val_number_token1] = ACTIONS(2114), + [aux_sym__val_number_token2] = ACTIONS(2114), + [aux_sym__val_number_token3] = ACTIONS(2114), + [aux_sym__val_number_token4] = ACTIONS(2112), + [aux_sym__val_number_token5] = ACTIONS(2112), + [aux_sym__val_number_token6] = ACTIONS(2112), + [anon_sym_DQUOTE] = ACTIONS(2114), + [sym__str_single_quotes] = ACTIONS(2114), + [sym__str_back_ticks] = ACTIONS(2114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2114), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2114), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2114), + [anon_sym_register] = ACTIONS(2112), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2114), + }, + [537] = { + [sym_comment] = STATE(537), + [anon_sym_export] = ACTIONS(2138), + [anon_sym_alias] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_let_DASHenv] = ACTIONS(2138), + [anon_sym_mut] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [aux_sym_cmd_identifier_token1] = ACTIONS(2138), + [aux_sym_cmd_identifier_token2] = ACTIONS(2142), + [aux_sym_cmd_identifier_token3] = ACTIONS(2142), + [aux_sym_cmd_identifier_token4] = ACTIONS(2142), + [aux_sym_cmd_identifier_token5] = ACTIONS(2142), + [aux_sym_cmd_identifier_token6] = ACTIONS(2142), + [aux_sym_cmd_identifier_token7] = ACTIONS(2142), + [aux_sym_cmd_identifier_token8] = ACTIONS(2138), + [aux_sym_cmd_identifier_token9] = ACTIONS(2138), + [aux_sym_cmd_identifier_token10] = ACTIONS(2142), + [aux_sym_cmd_identifier_token11] = ACTIONS(2142), + [aux_sym_cmd_identifier_token12] = ACTIONS(2138), + [aux_sym_cmd_identifier_token13] = ACTIONS(2138), + [aux_sym_cmd_identifier_token14] = ACTIONS(2138), + [aux_sym_cmd_identifier_token15] = ACTIONS(2138), + [aux_sym_cmd_identifier_token16] = ACTIONS(2142), + [aux_sym_cmd_identifier_token17] = ACTIONS(2142), + [aux_sym_cmd_identifier_token18] = ACTIONS(2142), + [aux_sym_cmd_identifier_token19] = ACTIONS(2142), + [aux_sym_cmd_identifier_token20] = ACTIONS(2142), + [aux_sym_cmd_identifier_token21] = ACTIONS(2142), + [aux_sym_cmd_identifier_token22] = ACTIONS(2142), + [aux_sym_cmd_identifier_token23] = ACTIONS(2142), + [aux_sym_cmd_identifier_token24] = ACTIONS(2142), + [aux_sym_cmd_identifier_token25] = ACTIONS(2142), + [aux_sym_cmd_identifier_token26] = ACTIONS(2142), + [aux_sym_cmd_identifier_token27] = ACTIONS(2142), + [aux_sym_cmd_identifier_token28] = ACTIONS(2142), + [aux_sym_cmd_identifier_token29] = ACTIONS(2142), + [aux_sym_cmd_identifier_token30] = ACTIONS(2142), + [aux_sym_cmd_identifier_token31] = ACTIONS(2142), + [aux_sym_cmd_identifier_token32] = ACTIONS(2142), + [aux_sym_cmd_identifier_token33] = ACTIONS(2142), + [aux_sym_cmd_identifier_token34] = ACTIONS(2138), + [aux_sym_cmd_identifier_token35] = ACTIONS(2142), + [aux_sym_cmd_identifier_token36] = ACTIONS(2142), + [aux_sym_cmd_identifier_token37] = ACTIONS(2142), + [aux_sym_cmd_identifier_token38] = ACTIONS(2138), + [aux_sym_cmd_identifier_token39] = ACTIONS(2142), + [aux_sym_cmd_identifier_token40] = ACTIONS(2142), + [anon_sym_def] = ACTIONS(2138), + [anon_sym_export_DASHenv] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym_module] = ACTIONS(2138), + [anon_sym_use] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_COMMA] = ACTIONS(2142), + [anon_sym_DOLLAR] = ACTIONS(2138), + [anon_sym_error] = ACTIONS(2138), + [anon_sym_DASH2] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_in2] = ACTIONS(2138), + [anon_sym_loop] = ACTIONS(2138), + [anon_sym_make] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_do] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_else] = ACTIONS(2138), + [anon_sym_match] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2138), + [anon_sym_catch] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_source] = ACTIONS(2138), + [anon_sym_source_DASHenv] = ACTIONS(2138), + [anon_sym_hide] = ACTIONS(2138), + [anon_sym_hide_DASHenv] = ACTIONS(2138), + [anon_sym_overlay] = ACTIONS(2138), + [anon_sym_as] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_PLUS2] = ACTIONS(2138), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2142), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2142), + [aux_sym__val_number_decimal_token1] = ACTIONS(2138), + [aux_sym__val_number_decimal_token2] = ACTIONS(2142), + [aux_sym__val_number_decimal_token3] = ACTIONS(2142), + [aux_sym__val_number_decimal_token4] = ACTIONS(2142), + [aux_sym__val_number_token1] = ACTIONS(2142), + [aux_sym__val_number_token2] = ACTIONS(2142), + [aux_sym__val_number_token3] = ACTIONS(2142), + [aux_sym__val_number_token4] = ACTIONS(2138), + [aux_sym__val_number_token5] = ACTIONS(2138), + [aux_sym__val_number_token6] = ACTIONS(2138), + [anon_sym_DQUOTE] = ACTIONS(2142), + [sym__str_single_quotes] = ACTIONS(2142), + [sym__str_back_ticks] = ACTIONS(2142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2142), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2142), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2142), + [anon_sym_register] = ACTIONS(2138), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1477), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2142), + }, + [538] = { + [sym_comment] = STATE(538), + [anon_sym_export] = ACTIONS(2076), + [anon_sym_alias] = ACTIONS(2076), + [anon_sym_let] = ACTIONS(2076), + [anon_sym_let_DASHenv] = ACTIONS(2076), + [anon_sym_mut] = ACTIONS(2076), + [anon_sym_const] = ACTIONS(2076), + [aux_sym_cmd_identifier_token1] = ACTIONS(2076), + [aux_sym_cmd_identifier_token2] = ACTIONS(2076), + [aux_sym_cmd_identifier_token3] = ACTIONS(2076), + [aux_sym_cmd_identifier_token4] = ACTIONS(2076), + [aux_sym_cmd_identifier_token5] = ACTIONS(2076), + [aux_sym_cmd_identifier_token6] = ACTIONS(2076), + [aux_sym_cmd_identifier_token7] = ACTIONS(2076), + [aux_sym_cmd_identifier_token8] = ACTIONS(2076), + [aux_sym_cmd_identifier_token9] = ACTIONS(2076), + [aux_sym_cmd_identifier_token10] = ACTIONS(2076), + [aux_sym_cmd_identifier_token11] = ACTIONS(2076), + [aux_sym_cmd_identifier_token12] = ACTIONS(2076), + [aux_sym_cmd_identifier_token13] = ACTIONS(2076), + [aux_sym_cmd_identifier_token14] = ACTIONS(2076), + [aux_sym_cmd_identifier_token15] = ACTIONS(2076), + [aux_sym_cmd_identifier_token16] = ACTIONS(2076), + [aux_sym_cmd_identifier_token17] = ACTIONS(2076), + [aux_sym_cmd_identifier_token18] = ACTIONS(2076), + [aux_sym_cmd_identifier_token19] = ACTIONS(2076), + [aux_sym_cmd_identifier_token20] = ACTIONS(2076), + [aux_sym_cmd_identifier_token21] = ACTIONS(2076), + [aux_sym_cmd_identifier_token22] = ACTIONS(2076), + [aux_sym_cmd_identifier_token23] = ACTIONS(2076), + [aux_sym_cmd_identifier_token24] = ACTIONS(2076), + [aux_sym_cmd_identifier_token25] = ACTIONS(2076), + [aux_sym_cmd_identifier_token26] = ACTIONS(2076), + [aux_sym_cmd_identifier_token27] = ACTIONS(2076), + [aux_sym_cmd_identifier_token28] = ACTIONS(2076), + [aux_sym_cmd_identifier_token29] = ACTIONS(2076), + [aux_sym_cmd_identifier_token30] = ACTIONS(2076), + [aux_sym_cmd_identifier_token31] = ACTIONS(2076), + [aux_sym_cmd_identifier_token32] = ACTIONS(2076), + [aux_sym_cmd_identifier_token33] = ACTIONS(2076), + [aux_sym_cmd_identifier_token34] = ACTIONS(2076), + [aux_sym_cmd_identifier_token35] = ACTIONS(2076), + [aux_sym_cmd_identifier_token36] = ACTIONS(2076), + [aux_sym_cmd_identifier_token37] = ACTIONS(2076), + [aux_sym_cmd_identifier_token38] = ACTIONS(2076), + [aux_sym_cmd_identifier_token39] = ACTIONS(2076), + [aux_sym_cmd_identifier_token40] = ACTIONS(2076), + [anon_sym_def] = ACTIONS(2076), + [anon_sym_export_DASHenv] = ACTIONS(2076), + [anon_sym_extern] = ACTIONS(2076), + [anon_sym_module] = ACTIONS(2076), + [anon_sym_use] = ACTIONS(2076), + [anon_sym_LPAREN] = ACTIONS(2076), + [anon_sym_COMMA] = ACTIONS(2078), + [anon_sym_DOLLAR] = ACTIONS(2076), + [anon_sym_error] = ACTIONS(2076), + [anon_sym_DASH2] = ACTIONS(2076), + [anon_sym_break] = ACTIONS(2076), + [anon_sym_continue] = ACTIONS(2076), + [anon_sym_for] = ACTIONS(2076), + [anon_sym_in2] = ACTIONS(2076), + [anon_sym_loop] = ACTIONS(2076), + [anon_sym_make] = ACTIONS(2076), + [anon_sym_while] = ACTIONS(2076), + [anon_sym_do] = ACTIONS(2076), + [anon_sym_if] = ACTIONS(2076), + [anon_sym_else] = ACTIONS(2076), + [anon_sym_match] = ACTIONS(2076), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_try] = ACTIONS(2076), + [anon_sym_catch] = ACTIONS(2076), + [anon_sym_return] = ACTIONS(2076), + [anon_sym_source] = ACTIONS(2076), + [anon_sym_source_DASHenv] = ACTIONS(2076), + [anon_sym_hide] = ACTIONS(2076), + [anon_sym_hide_DASHenv] = ACTIONS(2076), + [anon_sym_overlay] = ACTIONS(2076), + [anon_sym_as] = ACTIONS(2076), + [anon_sym_LPAREN2] = ACTIONS(2078), + [anon_sym_PLUS2] = ACTIONS(2076), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2078), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2076), + [aux_sym__val_number_decimal_token1] = ACTIONS(2076), + [aux_sym__val_number_decimal_token2] = ACTIONS(2076), + [aux_sym__val_number_decimal_token3] = ACTIONS(2076), + [aux_sym__val_number_decimal_token4] = ACTIONS(2076), + [aux_sym__val_number_token1] = ACTIONS(2076), + [aux_sym__val_number_token2] = ACTIONS(2076), + [aux_sym__val_number_token3] = ACTIONS(2076), + [aux_sym__val_number_token4] = ACTIONS(2076), + [aux_sym__val_number_token5] = ACTIONS(2076), + [aux_sym__val_number_token6] = ACTIONS(2076), + [anon_sym_DQUOTE] = ACTIONS(2078), + [sym__str_single_quotes] = ACTIONS(2078), + [sym__str_back_ticks] = ACTIONS(2078), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2078), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2078), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2078), + [anon_sym_register] = ACTIONS(2076), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2076), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(2078), }, - [523] = { - [sym_comment] = STATE(523), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), - [aux_sym_cmd_identifier_token2] = ACTIONS(1648), - [aux_sym_cmd_identifier_token3] = ACTIONS(1648), - [aux_sym_cmd_identifier_token4] = ACTIONS(1648), - [aux_sym_cmd_identifier_token5] = ACTIONS(1648), - [aux_sym_cmd_identifier_token6] = ACTIONS(1648), - [aux_sym_cmd_identifier_token7] = ACTIONS(1648), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), - [aux_sym_cmd_identifier_token10] = ACTIONS(1648), - [aux_sym_cmd_identifier_token11] = ACTIONS(1648), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), - [aux_sym_cmd_identifier_token16] = ACTIONS(1648), - [aux_sym_cmd_identifier_token17] = ACTIONS(1648), - [aux_sym_cmd_identifier_token18] = ACTIONS(1648), - [aux_sym_cmd_identifier_token19] = ACTIONS(1648), - [aux_sym_cmd_identifier_token20] = ACTIONS(1648), - [aux_sym_cmd_identifier_token21] = ACTIONS(1648), - [aux_sym_cmd_identifier_token22] = ACTIONS(1648), - [aux_sym_cmd_identifier_token23] = ACTIONS(1648), - [aux_sym_cmd_identifier_token24] = ACTIONS(1648), - [aux_sym_cmd_identifier_token25] = ACTIONS(1648), - [aux_sym_cmd_identifier_token26] = ACTIONS(1648), - [aux_sym_cmd_identifier_token27] = ACTIONS(1648), - [aux_sym_cmd_identifier_token28] = ACTIONS(1648), - [aux_sym_cmd_identifier_token29] = ACTIONS(1648), - [aux_sym_cmd_identifier_token30] = ACTIONS(1648), - [aux_sym_cmd_identifier_token31] = ACTIONS(1648), - [aux_sym_cmd_identifier_token32] = ACTIONS(1648), - [aux_sym_cmd_identifier_token33] = ACTIONS(1648), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), - [aux_sym_cmd_identifier_token35] = ACTIONS(1648), - [aux_sym_cmd_identifier_token36] = ACTIONS(1648), - [aux_sym_cmd_identifier_token37] = ACTIONS(1648), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), - [aux_sym_cmd_identifier_token39] = ACTIONS(1648), - [aux_sym_cmd_identifier_token40] = ACTIONS(1648), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_COMMA] = ACTIONS(1648), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_DASH2] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in2] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_PLUS2] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1648), - [aux_sym__immediate_decimal_token1] = ACTIONS(2097), - [aux_sym__immediate_decimal_token2] = ACTIONS(2099), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1648), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1648), - [aux_sym__val_number_decimal_token3] = ACTIONS(1648), - [aux_sym__val_number_decimal_token4] = ACTIONS(1648), - [aux_sym__val_number_token1] = ACTIONS(1648), - [aux_sym__val_number_token2] = ACTIONS(1648), - [aux_sym__val_number_token3] = ACTIONS(1648), - [aux_sym__val_number_token4] = ACTIONS(1648), - [aux_sym__val_number_token5] = ACTIONS(1648), - [aux_sym__val_number_token6] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1648), - [sym__str_single_quotes] = ACTIONS(1648), - [sym__str_back_ticks] = ACTIONS(1648), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1648), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1648), - [sym__entry_separator] = ACTIONS(1650), - [anon_sym_register] = ACTIONS(1648), + [539] = { + [sym_expr_parenthesized] = STATE(4110), + [sym__spread_parenthesized] = STATE(4544), + [sym_val_range] = STATE(4545), + [sym__val_range] = STATE(7148), + [sym__val_range_with_end] = STATE(6883), + [sym__value] = STATE(4545), + [sym_val_nothing] = STATE(4496), + [sym_val_bool] = STATE(4243), + [sym__spread_variable] = STATE(4546), + [sym_val_variable] = STATE(4184), + [sym_val_number] = STATE(4496), + [sym__val_number_decimal] = STATE(3804), + [sym__val_number] = STATE(4497), + [sym_val_duration] = STATE(4496), + [sym_val_filesize] = STATE(4496), + [sym_val_binary] = STATE(4496), + [sym_val_string] = STATE(4496), + [sym__raw_str] = STATE(3892), + [sym__str_double_quotes] = STATE(3892), + [sym_val_interpolated] = STATE(4496), + [sym__inter_single_quotes] = STATE(4498), + [sym__inter_double_quotes] = STATE(4499), + [sym_val_list] = STATE(4496), + [sym__spread_list] = STATE(4544), + [sym_val_record] = STATE(4496), + [sym_val_table] = STATE(4496), + [sym_val_closure] = STATE(4496), + [sym__cmd_arg] = STATE(4547), + [sym_redirection] = STATE(4548), + [sym__flag] = STATE(4549), + [sym_short_flag] = STATE(4695), + [sym_long_flag] = STATE(4695), + [sym_unquoted] = STATE(4312), + [sym__unquoted_with_expr] = STATE(4550), + [sym__unquoted_anonymous_prefix] = STATE(6589), + [sym_comment] = STATE(539), + [ts_builtin_sym_end] = ACTIONS(2160), + [sym__newline] = ACTIONS(2008), + [sym__space] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_PIPE] = ACTIONS(2008), + [anon_sym_err_GT_PIPE] = ACTIONS(2008), + [anon_sym_out_GT_PIPE] = ACTIONS(2008), + [anon_sym_e_GT_PIPE] = ACTIONS(2008), + [anon_sym_o_GT_PIPE] = ACTIONS(2008), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2008), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2008), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2008), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2174), + [anon_sym_LPAREN] = ACTIONS(2176), + [anon_sym_DOLLAR] = ACTIONS(2178), + [anon_sym_DASH_DASH] = ACTIONS(2180), + [anon_sym_DASH2] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_DOT_DOT] = ACTIONS(2186), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2190), + [anon_sym_DOT_DOT_LT] = ACTIONS(2190), + [anon_sym_null] = ACTIONS(2192), + [anon_sym_true] = ACTIONS(2194), + [anon_sym_false] = ACTIONS(2194), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2196), + [aux_sym__val_number_decimal_token1] = ACTIONS(2198), + [aux_sym__val_number_decimal_token2] = ACTIONS(2198), + [aux_sym__val_number_decimal_token3] = ACTIONS(2200), + [aux_sym__val_number_decimal_token4] = ACTIONS(2202), + [aux_sym__val_number_token1] = ACTIONS(2204), + [aux_sym__val_number_token2] = ACTIONS(2204), + [aux_sym__val_number_token3] = ACTIONS(2204), + [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(2208), + [anon_sym_0o] = ACTIONS(2210), + [anon_sym_0x] = ACTIONS(2210), + [sym_val_date] = ACTIONS(2212), + [anon_sym_DQUOTE] = ACTIONS(2214), + [sym__str_single_quotes] = ACTIONS(2216), + [sym__str_back_ticks] = ACTIONS(2216), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2218), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2220), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2222), + [anon_sym_err_GT] = ACTIONS(2224), + [anon_sym_out_GT] = ACTIONS(2224), + [anon_sym_e_GT] = ACTIONS(2224), + [anon_sym_o_GT] = ACTIONS(2224), + [anon_sym_err_PLUSout_GT] = ACTIONS(2224), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2224), + [anon_sym_o_PLUSe_GT] = ACTIONS(2224), + [anon_sym_e_PLUSo_GT] = ACTIONS(2224), + [anon_sym_err_GT_GT] = ACTIONS(2224), + [anon_sym_out_GT_GT] = ACTIONS(2224), + [anon_sym_e_GT_GT] = ACTIONS(2224), + [anon_sym_o_GT_GT] = ACTIONS(2224), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2224), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2224), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2224), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2224), + [aux_sym_unquoted_token1] = ACTIONS(2226), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1650), + [sym_raw_string_begin] = ACTIONS(2228), }, - [524] = { - [sym_comment] = STATE(524), - [anon_sym_export] = ACTIONS(1989), - [anon_sym_alias] = ACTIONS(1989), - [anon_sym_let] = ACTIONS(1989), - [anon_sym_let_DASHenv] = ACTIONS(1989), - [anon_sym_mut] = ACTIONS(1989), - [anon_sym_const] = ACTIONS(1989), - [aux_sym_cmd_identifier_token1] = ACTIONS(1989), - [aux_sym_cmd_identifier_token2] = ACTIONS(1991), - [aux_sym_cmd_identifier_token3] = ACTIONS(1991), - [aux_sym_cmd_identifier_token4] = ACTIONS(1991), - [aux_sym_cmd_identifier_token5] = ACTIONS(1991), - [aux_sym_cmd_identifier_token6] = ACTIONS(1991), - [aux_sym_cmd_identifier_token7] = ACTIONS(1991), - [aux_sym_cmd_identifier_token8] = ACTIONS(1989), - [aux_sym_cmd_identifier_token9] = ACTIONS(1989), - [aux_sym_cmd_identifier_token10] = ACTIONS(1991), - [aux_sym_cmd_identifier_token11] = ACTIONS(1991), - [aux_sym_cmd_identifier_token12] = ACTIONS(1989), - [aux_sym_cmd_identifier_token13] = ACTIONS(1989), - [aux_sym_cmd_identifier_token14] = ACTIONS(1989), - [aux_sym_cmd_identifier_token15] = ACTIONS(1989), - [aux_sym_cmd_identifier_token16] = ACTIONS(1991), - [aux_sym_cmd_identifier_token17] = ACTIONS(1991), - [aux_sym_cmd_identifier_token18] = ACTIONS(1991), - [aux_sym_cmd_identifier_token19] = ACTIONS(1991), - [aux_sym_cmd_identifier_token20] = ACTIONS(1991), - [aux_sym_cmd_identifier_token21] = ACTIONS(1991), - [aux_sym_cmd_identifier_token22] = ACTIONS(1991), - [aux_sym_cmd_identifier_token23] = ACTIONS(1991), - [aux_sym_cmd_identifier_token24] = ACTIONS(1991), - [aux_sym_cmd_identifier_token25] = ACTIONS(1991), - [aux_sym_cmd_identifier_token26] = ACTIONS(1991), - [aux_sym_cmd_identifier_token27] = ACTIONS(1991), - [aux_sym_cmd_identifier_token28] = ACTIONS(1991), - [aux_sym_cmd_identifier_token29] = ACTIONS(1991), - [aux_sym_cmd_identifier_token30] = ACTIONS(1991), - [aux_sym_cmd_identifier_token31] = ACTIONS(1991), - [aux_sym_cmd_identifier_token32] = ACTIONS(1991), - [aux_sym_cmd_identifier_token33] = ACTIONS(1991), - [aux_sym_cmd_identifier_token34] = ACTIONS(1989), - [aux_sym_cmd_identifier_token35] = ACTIONS(1991), - [aux_sym_cmd_identifier_token36] = ACTIONS(1991), - [aux_sym_cmd_identifier_token37] = ACTIONS(1991), - [aux_sym_cmd_identifier_token38] = ACTIONS(1989), - [aux_sym_cmd_identifier_token39] = ACTIONS(1991), - [aux_sym_cmd_identifier_token40] = ACTIONS(1991), - [anon_sym_def] = ACTIONS(1989), - [anon_sym_export_DASHenv] = ACTIONS(1989), - [anon_sym_extern] = ACTIONS(1989), - [anon_sym_module] = ACTIONS(1989), - [anon_sym_use] = ACTIONS(1989), - [anon_sym_LPAREN] = ACTIONS(1991), - [anon_sym_COMMA] = ACTIONS(1991), - [anon_sym_DOLLAR] = ACTIONS(1989), - [anon_sym_error] = ACTIONS(1989), - [anon_sym_DASH2] = ACTIONS(1989), - [anon_sym_break] = ACTIONS(1989), - [anon_sym_continue] = ACTIONS(1989), - [anon_sym_for] = ACTIONS(1989), - [anon_sym_in2] = ACTIONS(1989), - [anon_sym_loop] = ACTIONS(1989), - [anon_sym_make] = ACTIONS(1989), - [anon_sym_while] = ACTIONS(1989), - [anon_sym_do] = ACTIONS(1989), - [anon_sym_if] = ACTIONS(1989), - [anon_sym_else] = ACTIONS(1989), - [anon_sym_match] = ACTIONS(1989), - [anon_sym_RBRACE] = ACTIONS(1991), - [anon_sym_try] = ACTIONS(1989), - [anon_sym_catch] = ACTIONS(1989), - [anon_sym_return] = ACTIONS(1989), - [anon_sym_source] = ACTIONS(1989), - [anon_sym_source_DASHenv] = ACTIONS(1989), - [anon_sym_hide] = ACTIONS(1989), - [anon_sym_hide_DASHenv] = ACTIONS(1989), - [anon_sym_overlay] = ACTIONS(1989), - [anon_sym_as] = ACTIONS(1989), - [anon_sym_PLUS2] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1991), - [anon_sym_DOT_DOT2] = ACTIONS(2055), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2057), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2057), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1991), - [aux_sym__val_number_decimal_token1] = ACTIONS(1989), - [aux_sym__val_number_decimal_token2] = ACTIONS(1991), - [aux_sym__val_number_decimal_token3] = ACTIONS(1991), - [aux_sym__val_number_decimal_token4] = ACTIONS(1991), - [aux_sym__val_number_token1] = ACTIONS(1991), - [aux_sym__val_number_token2] = ACTIONS(1991), - [aux_sym__val_number_token3] = ACTIONS(1991), - [aux_sym__val_number_token4] = ACTIONS(1989), - [aux_sym__val_number_token5] = ACTIONS(1989), - [aux_sym__val_number_token6] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [sym__str_single_quotes] = ACTIONS(1991), - [sym__str_back_ticks] = ACTIONS(1991), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1991), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1991), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1991), - [anon_sym_register] = ACTIONS(1989), + [540] = { + [sym_comment] = STATE(540), + [anon_sym_export] = ACTIONS(2144), + [anon_sym_alias] = ACTIONS(2144), + [anon_sym_let] = ACTIONS(2144), + [anon_sym_let_DASHenv] = ACTIONS(2144), + [anon_sym_mut] = ACTIONS(2144), + [anon_sym_const] = ACTIONS(2144), + [aux_sym_cmd_identifier_token1] = ACTIONS(2144), + [aux_sym_cmd_identifier_token2] = ACTIONS(2148), + [aux_sym_cmd_identifier_token3] = ACTIONS(2148), + [aux_sym_cmd_identifier_token4] = ACTIONS(2148), + [aux_sym_cmd_identifier_token5] = ACTIONS(2148), + [aux_sym_cmd_identifier_token6] = ACTIONS(2148), + [aux_sym_cmd_identifier_token7] = ACTIONS(2148), + [aux_sym_cmd_identifier_token8] = ACTIONS(2144), + [aux_sym_cmd_identifier_token9] = ACTIONS(2144), + [aux_sym_cmd_identifier_token10] = ACTIONS(2148), + [aux_sym_cmd_identifier_token11] = ACTIONS(2148), + [aux_sym_cmd_identifier_token12] = ACTIONS(2144), + [aux_sym_cmd_identifier_token13] = ACTIONS(2144), + [aux_sym_cmd_identifier_token14] = ACTIONS(2144), + [aux_sym_cmd_identifier_token15] = ACTIONS(2144), + [aux_sym_cmd_identifier_token16] = ACTIONS(2148), + [aux_sym_cmd_identifier_token17] = ACTIONS(2148), + [aux_sym_cmd_identifier_token18] = ACTIONS(2148), + [aux_sym_cmd_identifier_token19] = ACTIONS(2148), + [aux_sym_cmd_identifier_token20] = ACTIONS(2148), + [aux_sym_cmd_identifier_token21] = ACTIONS(2148), + [aux_sym_cmd_identifier_token22] = ACTIONS(2148), + [aux_sym_cmd_identifier_token23] = ACTIONS(2148), + [aux_sym_cmd_identifier_token24] = ACTIONS(2148), + [aux_sym_cmd_identifier_token25] = ACTIONS(2148), + [aux_sym_cmd_identifier_token26] = ACTIONS(2148), + [aux_sym_cmd_identifier_token27] = ACTIONS(2148), + [aux_sym_cmd_identifier_token28] = ACTIONS(2148), + [aux_sym_cmd_identifier_token29] = ACTIONS(2148), + [aux_sym_cmd_identifier_token30] = ACTIONS(2148), + [aux_sym_cmd_identifier_token31] = ACTIONS(2148), + [aux_sym_cmd_identifier_token32] = ACTIONS(2148), + [aux_sym_cmd_identifier_token33] = ACTIONS(2148), + [aux_sym_cmd_identifier_token34] = ACTIONS(2144), + [aux_sym_cmd_identifier_token35] = ACTIONS(2148), + [aux_sym_cmd_identifier_token36] = ACTIONS(2148), + [aux_sym_cmd_identifier_token37] = ACTIONS(2148), + [aux_sym_cmd_identifier_token38] = ACTIONS(2144), + [aux_sym_cmd_identifier_token39] = ACTIONS(2148), + [aux_sym_cmd_identifier_token40] = ACTIONS(2148), + [anon_sym_def] = ACTIONS(2144), + [anon_sym_export_DASHenv] = ACTIONS(2144), + [anon_sym_extern] = ACTIONS(2144), + [anon_sym_module] = ACTIONS(2144), + [anon_sym_use] = ACTIONS(2144), + [anon_sym_LPAREN] = ACTIONS(2144), + [anon_sym_COMMA] = ACTIONS(2148), + [anon_sym_DOLLAR] = ACTIONS(2144), + [anon_sym_error] = ACTIONS(2144), + [anon_sym_DASH2] = ACTIONS(2144), + [anon_sym_break] = ACTIONS(2144), + [anon_sym_continue] = ACTIONS(2144), + [anon_sym_for] = ACTIONS(2144), + [anon_sym_in2] = ACTIONS(2144), + [anon_sym_loop] = ACTIONS(2144), + [anon_sym_make] = ACTIONS(2144), + [anon_sym_while] = ACTIONS(2144), + [anon_sym_do] = ACTIONS(2144), + [anon_sym_if] = ACTIONS(2144), + [anon_sym_else] = ACTIONS(2144), + [anon_sym_match] = ACTIONS(2144), + [anon_sym_RBRACE] = ACTIONS(2148), + [anon_sym_try] = ACTIONS(2144), + [anon_sym_catch] = ACTIONS(2144), + [anon_sym_return] = ACTIONS(2144), + [anon_sym_source] = ACTIONS(2144), + [anon_sym_source_DASHenv] = ACTIONS(2144), + [anon_sym_hide] = ACTIONS(2144), + [anon_sym_hide_DASHenv] = ACTIONS(2144), + [anon_sym_overlay] = ACTIONS(2144), + [anon_sym_as] = ACTIONS(2144), + [anon_sym_LPAREN2] = ACTIONS(2146), + [anon_sym_PLUS2] = ACTIONS(2144), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2148), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2148), + [aux_sym__val_number_decimal_token1] = ACTIONS(2144), + [aux_sym__val_number_decimal_token2] = ACTIONS(2148), + [aux_sym__val_number_decimal_token3] = ACTIONS(2148), + [aux_sym__val_number_decimal_token4] = ACTIONS(2148), + [aux_sym__val_number_token1] = ACTIONS(2148), + [aux_sym__val_number_token2] = ACTIONS(2148), + [aux_sym__val_number_token3] = ACTIONS(2148), + [aux_sym__val_number_token4] = ACTIONS(2144), + [aux_sym__val_number_token5] = ACTIONS(2144), + [aux_sym__val_number_token6] = ACTIONS(2144), + [anon_sym_DQUOTE] = ACTIONS(2148), + [sym__str_single_quotes] = ACTIONS(2148), + [sym__str_back_ticks] = ACTIONS(2148), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2148), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2148), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2148), + [anon_sym_register] = ACTIONS(2144), + [aux_sym__unquoted_in_record_token2] = ACTIONS(2150), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2148), + }, + [541] = { + [sym_comment] = STATE(541), + [anon_sym_export] = ACTIONS(970), + [anon_sym_alias] = ACTIONS(970), + [anon_sym_let] = ACTIONS(970), + [anon_sym_let_DASHenv] = ACTIONS(970), + [anon_sym_mut] = ACTIONS(970), + [anon_sym_const] = ACTIONS(970), + [aux_sym_cmd_identifier_token1] = ACTIONS(970), + [aux_sym_cmd_identifier_token2] = ACTIONS(972), + [aux_sym_cmd_identifier_token3] = ACTIONS(972), + [aux_sym_cmd_identifier_token4] = ACTIONS(972), + [aux_sym_cmd_identifier_token5] = ACTIONS(972), + [aux_sym_cmd_identifier_token6] = ACTIONS(972), + [aux_sym_cmd_identifier_token7] = ACTIONS(972), + [aux_sym_cmd_identifier_token8] = ACTIONS(970), + [aux_sym_cmd_identifier_token9] = ACTIONS(970), + [aux_sym_cmd_identifier_token10] = ACTIONS(972), + [aux_sym_cmd_identifier_token11] = ACTIONS(972), + [aux_sym_cmd_identifier_token12] = ACTIONS(970), + [aux_sym_cmd_identifier_token13] = ACTIONS(970), + [aux_sym_cmd_identifier_token14] = ACTIONS(970), + [aux_sym_cmd_identifier_token15] = ACTIONS(970), + [aux_sym_cmd_identifier_token16] = ACTIONS(972), + [aux_sym_cmd_identifier_token17] = ACTIONS(972), + [aux_sym_cmd_identifier_token18] = ACTIONS(972), + [aux_sym_cmd_identifier_token19] = ACTIONS(972), + [aux_sym_cmd_identifier_token20] = ACTIONS(972), + [aux_sym_cmd_identifier_token21] = ACTIONS(972), + [aux_sym_cmd_identifier_token22] = ACTIONS(972), + [aux_sym_cmd_identifier_token23] = ACTIONS(972), + [aux_sym_cmd_identifier_token24] = ACTIONS(972), + [aux_sym_cmd_identifier_token25] = ACTIONS(972), + [aux_sym_cmd_identifier_token26] = ACTIONS(972), + [aux_sym_cmd_identifier_token27] = ACTIONS(972), + [aux_sym_cmd_identifier_token28] = ACTIONS(972), + [aux_sym_cmd_identifier_token29] = ACTIONS(972), + [aux_sym_cmd_identifier_token30] = ACTIONS(972), + [aux_sym_cmd_identifier_token31] = ACTIONS(972), + [aux_sym_cmd_identifier_token32] = ACTIONS(972), + [aux_sym_cmd_identifier_token33] = ACTIONS(972), + [aux_sym_cmd_identifier_token34] = ACTIONS(970), + [aux_sym_cmd_identifier_token35] = ACTIONS(972), + [aux_sym_cmd_identifier_token36] = ACTIONS(972), + [aux_sym_cmd_identifier_token37] = ACTIONS(972), + [aux_sym_cmd_identifier_token38] = ACTIONS(970), + [aux_sym_cmd_identifier_token39] = ACTIONS(972), + [aux_sym_cmd_identifier_token40] = ACTIONS(972), + [anon_sym_def] = ACTIONS(970), + [anon_sym_export_DASHenv] = ACTIONS(970), + [anon_sym_extern] = ACTIONS(970), + [anon_sym_module] = ACTIONS(970), + [anon_sym_use] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(972), + [anon_sym_COMMA] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(970), + [anon_sym_error] = ACTIONS(970), + [anon_sym_DASH2] = ACTIONS(970), + [anon_sym_break] = ACTIONS(970), + [anon_sym_continue] = ACTIONS(970), + [anon_sym_for] = ACTIONS(970), + [anon_sym_in2] = ACTIONS(970), + [anon_sym_loop] = ACTIONS(970), + [anon_sym_make] = ACTIONS(970), + [anon_sym_while] = ACTIONS(970), + [anon_sym_do] = ACTIONS(970), + [anon_sym_if] = ACTIONS(970), + [anon_sym_else] = ACTIONS(970), + [anon_sym_match] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(972), + [anon_sym_try] = ACTIONS(970), + [anon_sym_catch] = ACTIONS(970), + [anon_sym_return] = ACTIONS(970), + [anon_sym_source] = ACTIONS(970), + [anon_sym_source_DASHenv] = ACTIONS(970), + [anon_sym_hide] = ACTIONS(970), + [anon_sym_hide_DASHenv] = ACTIONS(970), + [anon_sym_overlay] = ACTIONS(970), + [anon_sym_as] = ACTIONS(970), + [anon_sym_PLUS2] = ACTIONS(970), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(972), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(972), + [aux_sym__val_number_decimal_token1] = ACTIONS(970), + [aux_sym__val_number_decimal_token2] = ACTIONS(972), + [aux_sym__val_number_decimal_token3] = ACTIONS(972), + [aux_sym__val_number_decimal_token4] = ACTIONS(972), + [aux_sym__val_number_token1] = ACTIONS(972), + [aux_sym__val_number_token2] = ACTIONS(972), + [aux_sym__val_number_token3] = ACTIONS(972), + [aux_sym__val_number_token4] = ACTIONS(970), + [aux_sym__val_number_token5] = ACTIONS(970), + [aux_sym__val_number_token6] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(972), + [sym__str_single_quotes] = ACTIONS(972), + [sym__str_back_ticks] = ACTIONS(972), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(972), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(972), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(972), + [anon_sym_register] = ACTIONS(970), + [anon_sym_COLON2] = ACTIONS(972), + [anon_sym_DOT2] = ACTIONS(970), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1991), + [sym_raw_string_begin] = ACTIONS(972), }, - [525] = { - [sym_comment] = STATE(525), - [anon_sym_export] = ACTIONS(1666), - [anon_sym_alias] = ACTIONS(1666), - [anon_sym_let] = ACTIONS(1666), - [anon_sym_let_DASHenv] = ACTIONS(1666), - [anon_sym_mut] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [aux_sym_cmd_identifier_token1] = ACTIONS(1666), - [aux_sym_cmd_identifier_token2] = ACTIONS(1666), - [aux_sym_cmd_identifier_token3] = ACTIONS(1666), - [aux_sym_cmd_identifier_token4] = ACTIONS(1666), - [aux_sym_cmd_identifier_token5] = ACTIONS(1666), - [aux_sym_cmd_identifier_token6] = ACTIONS(1666), - [aux_sym_cmd_identifier_token7] = ACTIONS(1666), - [aux_sym_cmd_identifier_token8] = ACTIONS(1666), - [aux_sym_cmd_identifier_token9] = ACTIONS(1666), - [aux_sym_cmd_identifier_token10] = ACTIONS(1666), - [aux_sym_cmd_identifier_token11] = ACTIONS(1666), - [aux_sym_cmd_identifier_token12] = ACTIONS(1666), - [aux_sym_cmd_identifier_token13] = ACTIONS(1666), - [aux_sym_cmd_identifier_token14] = ACTIONS(1666), - [aux_sym_cmd_identifier_token15] = ACTIONS(1666), - [aux_sym_cmd_identifier_token16] = ACTIONS(1666), - [aux_sym_cmd_identifier_token17] = ACTIONS(1666), - [aux_sym_cmd_identifier_token18] = ACTIONS(1666), - [aux_sym_cmd_identifier_token19] = ACTIONS(1666), - [aux_sym_cmd_identifier_token20] = ACTIONS(1666), - [aux_sym_cmd_identifier_token21] = ACTIONS(1666), - [aux_sym_cmd_identifier_token22] = ACTIONS(1666), - [aux_sym_cmd_identifier_token23] = ACTIONS(1666), - [aux_sym_cmd_identifier_token24] = ACTIONS(1666), - [aux_sym_cmd_identifier_token25] = ACTIONS(1666), - [aux_sym_cmd_identifier_token26] = ACTIONS(1666), - [aux_sym_cmd_identifier_token27] = ACTIONS(1666), - [aux_sym_cmd_identifier_token28] = ACTIONS(1666), - [aux_sym_cmd_identifier_token29] = ACTIONS(1666), - [aux_sym_cmd_identifier_token30] = ACTIONS(1666), - [aux_sym_cmd_identifier_token31] = ACTIONS(1666), - [aux_sym_cmd_identifier_token32] = ACTIONS(1666), - [aux_sym_cmd_identifier_token33] = ACTIONS(1666), - [aux_sym_cmd_identifier_token34] = ACTIONS(1666), - [aux_sym_cmd_identifier_token35] = ACTIONS(1666), - [aux_sym_cmd_identifier_token36] = ACTIONS(1666), - [aux_sym_cmd_identifier_token37] = ACTIONS(1666), - [aux_sym_cmd_identifier_token38] = ACTIONS(1666), - [aux_sym_cmd_identifier_token39] = ACTIONS(1666), - [aux_sym_cmd_identifier_token40] = ACTIONS(1666), - [anon_sym_def] = ACTIONS(1666), - [anon_sym_export_DASHenv] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_module] = ACTIONS(1666), - [anon_sym_use] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_COMMA] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_error] = ACTIONS(1666), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_in2] = ACTIONS(1666), - [anon_sym_loop] = ACTIONS(1666), - [anon_sym_make] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_do] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_match] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(1666), - [anon_sym_try] = ACTIONS(1666), - [anon_sym_catch] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_source] = ACTIONS(1666), - [anon_sym_source_DASHenv] = ACTIONS(1666), - [anon_sym_hide] = ACTIONS(1666), - [anon_sym_hide_DASHenv] = ACTIONS(1666), - [anon_sym_overlay] = ACTIONS(1666), - [anon_sym_as] = ACTIONS(1666), - [anon_sym_PLUS2] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1666), - [anon_sym_DOT] = ACTIONS(2101), - [aux_sym__immediate_decimal_token2] = ACTIONS(2103), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1666), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1666), - [aux_sym__val_number_decimal_token3] = ACTIONS(1666), - [aux_sym__val_number_decimal_token4] = ACTIONS(1666), - [aux_sym__val_number_token1] = ACTIONS(1666), - [aux_sym__val_number_token2] = ACTIONS(1666), - [aux_sym__val_number_token3] = ACTIONS(1666), - [aux_sym__val_number_token4] = ACTIONS(1666), - [aux_sym__val_number_token5] = ACTIONS(1666), - [aux_sym__val_number_token6] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1666), - [sym__str_single_quotes] = ACTIONS(1666), - [sym__str_back_ticks] = ACTIONS(1666), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1666), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1666), - [sym__entry_separator] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1666), + [542] = { + [sym_comment] = STATE(542), + [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(978), + [aux_sym_cmd_identifier_token3] = ACTIONS(978), + [aux_sym_cmd_identifier_token4] = ACTIONS(978), + [aux_sym_cmd_identifier_token5] = ACTIONS(978), + [aux_sym_cmd_identifier_token6] = ACTIONS(978), + [aux_sym_cmd_identifier_token7] = ACTIONS(978), + [aux_sym_cmd_identifier_token8] = ACTIONS(978), + [aux_sym_cmd_identifier_token9] = ACTIONS(978), + [aux_sym_cmd_identifier_token10] = ACTIONS(978), + [aux_sym_cmd_identifier_token11] = ACTIONS(978), + [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(978), + [aux_sym_cmd_identifier_token17] = ACTIONS(978), + [aux_sym_cmd_identifier_token18] = ACTIONS(978), + [aux_sym_cmd_identifier_token19] = ACTIONS(978), + [aux_sym_cmd_identifier_token20] = ACTIONS(978), + [aux_sym_cmd_identifier_token21] = ACTIONS(978), + [aux_sym_cmd_identifier_token22] = ACTIONS(978), + [aux_sym_cmd_identifier_token23] = ACTIONS(978), + [aux_sym_cmd_identifier_token24] = ACTIONS(978), + [aux_sym_cmd_identifier_token25] = ACTIONS(978), + [aux_sym_cmd_identifier_token26] = ACTIONS(978), + [aux_sym_cmd_identifier_token27] = ACTIONS(978), + [aux_sym_cmd_identifier_token28] = ACTIONS(978), + [aux_sym_cmd_identifier_token29] = ACTIONS(978), + [aux_sym_cmd_identifier_token30] = ACTIONS(978), + [aux_sym_cmd_identifier_token31] = ACTIONS(978), + [aux_sym_cmd_identifier_token32] = ACTIONS(978), + [aux_sym_cmd_identifier_token33] = ACTIONS(978), + [aux_sym_cmd_identifier_token34] = ACTIONS(978), + [aux_sym_cmd_identifier_token35] = ACTIONS(978), + [aux_sym_cmd_identifier_token36] = ACTIONS(978), + [aux_sym_cmd_identifier_token37] = ACTIONS(978), + [aux_sym_cmd_identifier_token38] = ACTIONS(978), + [aux_sym_cmd_identifier_token39] = ACTIONS(978), + [aux_sym_cmd_identifier_token40] = ACTIONS(978), + [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(978), + [anon_sym_COMMA] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(978), + [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(978), + [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_hide] = ACTIONS(978), + [anon_sym_hide_DASHenv] = ACTIONS(978), + [anon_sym_overlay] = ACTIONS(978), + [anon_sym_as] = ACTIONS(978), + [anon_sym_PLUS2] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), + [aux_sym__val_number_decimal_token1] = ACTIONS(978), + [aux_sym__val_number_decimal_token2] = ACTIONS(978), + [aux_sym__val_number_decimal_token3] = ACTIONS(978), + [aux_sym__val_number_decimal_token4] = ACTIONS(978), + [aux_sym__val_number_token1] = ACTIONS(978), + [aux_sym__val_number_token2] = ACTIONS(978), + [aux_sym__val_number_token3] = ACTIONS(978), + [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(978), + [sym__str_single_quotes] = ACTIONS(978), + [sym__str_back_ticks] = ACTIONS(978), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(978), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(978), + [sym__entry_separator] = ACTIONS(980), + [anon_sym_register] = ACTIONS(978), + [anon_sym_DOT2] = ACTIONS(978), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1668), + [sym_raw_string_begin] = ACTIONS(980), }, - [526] = { - [sym_comment] = STATE(526), + [543] = { + [sym_comment] = STATE(543), + [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_COMMA] = 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_hide] = ACTIONS(2230), + [anon_sym_hide_DASHenv] = ACTIONS(2230), + [anon_sym_overlay] = ACTIONS(2230), + [anon_sym_as] = ACTIONS(2230), + [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_LBRACK2] = ACTIONS(2232), + [anon_sym_DQUOTE] = ACTIONS(2230), + [sym__str_single_quotes] = ACTIONS(2230), + [sym__str_back_ticks] = ACTIONS(2230), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2230), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2230), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2230), + [sym__entry_separator] = ACTIONS(2234), + [anon_sym_register] = ACTIONS(2230), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2234), + }, + [544] = { + [sym_comment] = STATE(544), + [anon_sym_export] = ACTIONS(1701), + [anon_sym_alias] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1701), + [anon_sym_let_DASHenv] = ACTIONS(1701), + [anon_sym_mut] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [aux_sym_cmd_identifier_token1] = ACTIONS(1701), + [aux_sym_cmd_identifier_token2] = ACTIONS(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [aux_sym_cmd_identifier_token12] = ACTIONS(1701), + [aux_sym_cmd_identifier_token13] = ACTIONS(1701), + [aux_sym_cmd_identifier_token14] = ACTIONS(1701), + [aux_sym_cmd_identifier_token15] = ACTIONS(1701), + [aux_sym_cmd_identifier_token16] = ACTIONS(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [aux_sym_cmd_identifier_token37] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [anon_sym_def] = ACTIONS(1701), + [anon_sym_export_DASHenv] = ACTIONS(1701), + [anon_sym_extern] = ACTIONS(1701), + [anon_sym_module] = ACTIONS(1701), + [anon_sym_use] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_COMMA] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = ACTIONS(1701), + [anon_sym_loop] = ACTIONS(1701), + [anon_sym_make] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_do] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_else] = ACTIONS(1701), + [anon_sym_match] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_try] = ACTIONS(1701), + [anon_sym_catch] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_source] = ACTIONS(1701), + [anon_sym_source_DASHenv] = ACTIONS(1701), + [anon_sym_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [anon_sym_DOT] = ACTIONS(2236), + [aux_sym__immediate_decimal_token2] = ACTIONS(2238), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [545] = { + [sym__expr_parenthesized_immediate] = STATE(7374), + [sym_comment] = STATE(545), + [anon_sym_export] = ACTIONS(2120), + [anon_sym_alias] = ACTIONS(2120), + [anon_sym_let] = ACTIONS(2120), + [anon_sym_let_DASHenv] = ACTIONS(2120), + [anon_sym_mut] = ACTIONS(2120), + [anon_sym_const] = ACTIONS(2120), + [aux_sym_cmd_identifier_token1] = ACTIONS(2120), + [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(2120), + [aux_sym_cmd_identifier_token9] = ACTIONS(2120), + [aux_sym_cmd_identifier_token10] = ACTIONS(2122), + [aux_sym_cmd_identifier_token11] = ACTIONS(2122), + [aux_sym_cmd_identifier_token12] = ACTIONS(2120), + [aux_sym_cmd_identifier_token13] = ACTIONS(2120), + [aux_sym_cmd_identifier_token14] = ACTIONS(2120), + [aux_sym_cmd_identifier_token15] = ACTIONS(2120), + [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(2120), + [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(2120), + [aux_sym_cmd_identifier_token39] = ACTIONS(2122), + [aux_sym_cmd_identifier_token40] = ACTIONS(2122), + [anon_sym_def] = ACTIONS(2120), + [anon_sym_export_DASHenv] = ACTIONS(2120), + [anon_sym_extern] = ACTIONS(2120), + [anon_sym_module] = ACTIONS(2120), + [anon_sym_use] = ACTIONS(2120), + [anon_sym_LPAREN] = ACTIONS(2120), + [anon_sym_COMMA] = ACTIONS(2122), + [anon_sym_DOLLAR] = ACTIONS(2120), + [anon_sym_error] = ACTIONS(2120), + [anon_sym_DASH2] = ACTIONS(2120), + [anon_sym_break] = ACTIONS(2120), + [anon_sym_continue] = ACTIONS(2120), + [anon_sym_for] = ACTIONS(2120), + [anon_sym_in2] = ACTIONS(2120), + [anon_sym_loop] = ACTIONS(2120), + [anon_sym_make] = ACTIONS(2120), + [anon_sym_while] = ACTIONS(2120), + [anon_sym_do] = ACTIONS(2120), + [anon_sym_if] = ACTIONS(2120), + [anon_sym_else] = ACTIONS(2120), + [anon_sym_match] = ACTIONS(2120), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2120), + [anon_sym_catch] = ACTIONS(2120), + [anon_sym_return] = ACTIONS(2120), + [anon_sym_source] = ACTIONS(2120), + [anon_sym_source_DASHenv] = ACTIONS(2120), + [anon_sym_hide] = ACTIONS(2120), + [anon_sym_hide_DASHenv] = ACTIONS(2120), + [anon_sym_overlay] = ACTIONS(2120), + [anon_sym_as] = ACTIONS(2120), + [anon_sym_LPAREN2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(2120), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2122), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2122), + [aux_sym__val_number_decimal_token1] = ACTIONS(2120), + [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(2120), + [aux_sym__val_number_token5] = ACTIONS(2120), + [aux_sym__val_number_token6] = ACTIONS(2120), + [anon_sym_DQUOTE] = ACTIONS(2122), + [sym__str_single_quotes] = ACTIONS(2122), + [sym__str_back_ticks] = ACTIONS(2122), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2122), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2122), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2122), + [anon_sym_register] = ACTIONS(2120), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2122), + }, + [546] = { + [sym_comment] = STATE(546), + [anon_sym_export] = ACTIONS(1616), + [anon_sym_alias] = ACTIONS(1616), + [anon_sym_let] = ACTIONS(1616), + [anon_sym_let_DASHenv] = ACTIONS(1616), + [anon_sym_mut] = ACTIONS(1616), + [anon_sym_const] = ACTIONS(1616), + [aux_sym_cmd_identifier_token1] = ACTIONS(1616), + [aux_sym_cmd_identifier_token2] = ACTIONS(1616), + [aux_sym_cmd_identifier_token3] = ACTIONS(1616), + [aux_sym_cmd_identifier_token4] = ACTIONS(1616), + [aux_sym_cmd_identifier_token5] = ACTIONS(1616), + [aux_sym_cmd_identifier_token6] = ACTIONS(1616), + [aux_sym_cmd_identifier_token7] = ACTIONS(1616), + [aux_sym_cmd_identifier_token8] = ACTIONS(1616), + [aux_sym_cmd_identifier_token9] = ACTIONS(1616), + [aux_sym_cmd_identifier_token10] = ACTIONS(1616), + [aux_sym_cmd_identifier_token11] = ACTIONS(1616), + [aux_sym_cmd_identifier_token12] = ACTIONS(1616), + [aux_sym_cmd_identifier_token13] = ACTIONS(1616), + [aux_sym_cmd_identifier_token14] = ACTIONS(1616), + [aux_sym_cmd_identifier_token15] = ACTIONS(1616), + [aux_sym_cmd_identifier_token16] = ACTIONS(1616), + [aux_sym_cmd_identifier_token17] = ACTIONS(1616), + [aux_sym_cmd_identifier_token18] = ACTIONS(1616), + [aux_sym_cmd_identifier_token19] = ACTIONS(1616), + [aux_sym_cmd_identifier_token20] = ACTIONS(1616), + [aux_sym_cmd_identifier_token21] = ACTIONS(1616), + [aux_sym_cmd_identifier_token22] = ACTIONS(1616), + [aux_sym_cmd_identifier_token23] = ACTIONS(1616), + [aux_sym_cmd_identifier_token24] = ACTIONS(1616), + [aux_sym_cmd_identifier_token25] = ACTIONS(1616), + [aux_sym_cmd_identifier_token26] = ACTIONS(1616), + [aux_sym_cmd_identifier_token27] = ACTIONS(1616), + [aux_sym_cmd_identifier_token28] = ACTIONS(1616), + [aux_sym_cmd_identifier_token29] = ACTIONS(1616), + [aux_sym_cmd_identifier_token30] = ACTIONS(1616), + [aux_sym_cmd_identifier_token31] = ACTIONS(1616), + [aux_sym_cmd_identifier_token32] = ACTIONS(1616), + [aux_sym_cmd_identifier_token33] = ACTIONS(1616), + [aux_sym_cmd_identifier_token34] = ACTIONS(1616), + [aux_sym_cmd_identifier_token35] = ACTIONS(1616), + [aux_sym_cmd_identifier_token36] = ACTIONS(1616), + [aux_sym_cmd_identifier_token37] = ACTIONS(1616), + [aux_sym_cmd_identifier_token38] = ACTIONS(1616), + [aux_sym_cmd_identifier_token39] = ACTIONS(1616), + [aux_sym_cmd_identifier_token40] = ACTIONS(1616), + [anon_sym_def] = ACTIONS(1616), + [anon_sym_export_DASHenv] = ACTIONS(1616), + [anon_sym_extern] = ACTIONS(1616), + [anon_sym_module] = ACTIONS(1616), + [anon_sym_use] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1616), + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_error] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_break] = ACTIONS(1616), + [anon_sym_continue] = ACTIONS(1616), + [anon_sym_for] = ACTIONS(1616), + [anon_sym_in2] = ACTIONS(1616), + [anon_sym_loop] = ACTIONS(1616), + [anon_sym_make] = ACTIONS(1616), + [anon_sym_while] = ACTIONS(1616), + [anon_sym_do] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_else] = ACTIONS(1616), + [anon_sym_match] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1616), + [anon_sym_try] = ACTIONS(1616), + [anon_sym_catch] = ACTIONS(1616), + [anon_sym_return] = ACTIONS(1616), + [anon_sym_source] = ACTIONS(1616), + [anon_sym_source_DASHenv] = ACTIONS(1616), + [anon_sym_hide] = ACTIONS(1616), + [anon_sym_hide_DASHenv] = ACTIONS(1616), + [anon_sym_overlay] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1616), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1616), + [aux_sym__val_number_decimal_token1] = ACTIONS(1616), + [aux_sym__val_number_decimal_token2] = ACTIONS(1616), + [aux_sym__val_number_decimal_token3] = ACTIONS(1616), + [aux_sym__val_number_decimal_token4] = ACTIONS(1616), + [aux_sym__val_number_token1] = ACTIONS(1616), + [aux_sym__val_number_token2] = ACTIONS(1616), + [aux_sym__val_number_token3] = ACTIONS(1616), + [aux_sym__val_number_token4] = ACTIONS(1616), + [aux_sym__val_number_token5] = ACTIONS(1616), + [aux_sym__val_number_token6] = ACTIONS(1616), + [anon_sym_DQUOTE] = ACTIONS(1616), + [sym__str_single_quotes] = ACTIONS(1616), + [sym__str_back_ticks] = ACTIONS(1616), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1616), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1616), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1616), + [sym__entry_separator] = ACTIONS(1628), + [anon_sym_register] = ACTIONS(1616), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1630), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1628), + }, + [547] = { + [sym_comment] = STATE(547), [anon_sym_export] = ACTIONS(998), [anon_sym_alias] = ACTIONS(998), [anon_sym_let] = ACTIONS(998), @@ -132931,51 +133980,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(998), [anon_sym_const] = ACTIONS(998), [aux_sym_cmd_identifier_token1] = ACTIONS(998), - [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_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(994), - [aux_sym_cmd_identifier_token11] = ACTIONS(994), + [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(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_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(994), - [aux_sym_cmd_identifier_token36] = ACTIONS(994), - [aux_sym_cmd_identifier_token37] = ACTIONS(994), + [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(994), - [aux_sym_cmd_identifier_token40] = ACTIONS(994), + [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(994), + [anon_sym_LPAREN] = ACTIONS(998), [anon_sym_COMMA] = ACTIONS(994), [anon_sym_DOLLAR] = ACTIONS(998), [anon_sym_error] = ACTIONS(998), @@ -133001,19 +134050,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(998), [anon_sym_overlay] = ACTIONS(998), [anon_sym_as] = ACTIONS(998), + [anon_sym_LPAREN2] = ACTIONS(2104), [anon_sym_PLUS2] = ACTIONS(998), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(994), - [anon_sym_DOT_DOT2] = ACTIONS(2055), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2057), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2057), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(998), [aux_sym__val_number_decimal_token1] = ACTIONS(998), - [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_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), @@ -133024,1166 +134071,949 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(994), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(994), [anon_sym_register] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(245), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2106), + [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(994), }, - [527] = { - [sym_comment] = STATE(527), - [anon_sym_export] = ACTIONS(2009), - [anon_sym_alias] = ACTIONS(2009), - [anon_sym_let] = ACTIONS(2009), - [anon_sym_let_DASHenv] = ACTIONS(2009), - [anon_sym_mut] = ACTIONS(2009), - [anon_sym_const] = ACTIONS(2009), - [aux_sym_cmd_identifier_token1] = ACTIONS(2009), - [aux_sym_cmd_identifier_token2] = ACTIONS(2015), - [aux_sym_cmd_identifier_token3] = ACTIONS(2015), - [aux_sym_cmd_identifier_token4] = ACTIONS(2015), - [aux_sym_cmd_identifier_token5] = ACTIONS(2015), - [aux_sym_cmd_identifier_token6] = ACTIONS(2015), - [aux_sym_cmd_identifier_token7] = ACTIONS(2015), - [aux_sym_cmd_identifier_token8] = ACTIONS(2009), - [aux_sym_cmd_identifier_token9] = ACTIONS(2009), - [aux_sym_cmd_identifier_token10] = ACTIONS(2015), - [aux_sym_cmd_identifier_token11] = ACTIONS(2015), - [aux_sym_cmd_identifier_token12] = ACTIONS(2009), - [aux_sym_cmd_identifier_token13] = ACTIONS(2009), - [aux_sym_cmd_identifier_token14] = ACTIONS(2009), - [aux_sym_cmd_identifier_token15] = ACTIONS(2009), - [aux_sym_cmd_identifier_token16] = ACTIONS(2015), - [aux_sym_cmd_identifier_token17] = ACTIONS(2015), - [aux_sym_cmd_identifier_token18] = ACTIONS(2015), - [aux_sym_cmd_identifier_token19] = ACTIONS(2015), - [aux_sym_cmd_identifier_token20] = ACTIONS(2015), - [aux_sym_cmd_identifier_token21] = ACTIONS(2015), - [aux_sym_cmd_identifier_token22] = ACTIONS(2015), - [aux_sym_cmd_identifier_token23] = ACTIONS(2015), - [aux_sym_cmd_identifier_token24] = ACTIONS(2015), - [aux_sym_cmd_identifier_token25] = ACTIONS(2015), - [aux_sym_cmd_identifier_token26] = ACTIONS(2015), - [aux_sym_cmd_identifier_token27] = ACTIONS(2015), - [aux_sym_cmd_identifier_token28] = ACTIONS(2015), - [aux_sym_cmd_identifier_token29] = ACTIONS(2015), - [aux_sym_cmd_identifier_token30] = ACTIONS(2015), - [aux_sym_cmd_identifier_token31] = ACTIONS(2015), - [aux_sym_cmd_identifier_token32] = ACTIONS(2015), - [aux_sym_cmd_identifier_token33] = ACTIONS(2015), - [aux_sym_cmd_identifier_token34] = ACTIONS(2009), - [aux_sym_cmd_identifier_token35] = ACTIONS(2015), - [aux_sym_cmd_identifier_token36] = ACTIONS(2015), - [aux_sym_cmd_identifier_token37] = ACTIONS(2015), - [aux_sym_cmd_identifier_token38] = ACTIONS(2009), - [aux_sym_cmd_identifier_token39] = ACTIONS(2015), - [aux_sym_cmd_identifier_token40] = ACTIONS(2015), - [anon_sym_def] = ACTIONS(2009), - [anon_sym_export_DASHenv] = ACTIONS(2009), - [anon_sym_extern] = ACTIONS(2009), - [anon_sym_module] = ACTIONS(2009), - [anon_sym_use] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_COMMA] = ACTIONS(2015), - [anon_sym_DOLLAR] = ACTIONS(2009), - [anon_sym_error] = ACTIONS(2009), - [anon_sym_DASH2] = ACTIONS(2009), - [anon_sym_break] = ACTIONS(2009), - [anon_sym_continue] = ACTIONS(2009), - [anon_sym_for] = ACTIONS(2009), - [anon_sym_in2] = ACTIONS(2009), - [anon_sym_loop] = ACTIONS(2009), - [anon_sym_make] = ACTIONS(2009), - [anon_sym_while] = ACTIONS(2009), - [anon_sym_do] = ACTIONS(2009), - [anon_sym_if] = ACTIONS(2009), - [anon_sym_else] = ACTIONS(2009), - [anon_sym_match] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_try] = ACTIONS(2009), - [anon_sym_catch] = ACTIONS(2009), - [anon_sym_return] = ACTIONS(2009), - [anon_sym_source] = ACTIONS(2009), - [anon_sym_source_DASHenv] = ACTIONS(2009), - [anon_sym_hide] = ACTIONS(2009), - [anon_sym_hide_DASHenv] = ACTIONS(2009), - [anon_sym_overlay] = ACTIONS(2009), - [anon_sym_as] = ACTIONS(2009), - [anon_sym_PLUS2] = ACTIONS(2009), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2015), - [anon_sym_DOT_DOT2] = ACTIONS(2105), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2107), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2107), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2015), - [aux_sym__val_number_decimal_token1] = ACTIONS(2009), - [aux_sym__val_number_decimal_token2] = ACTIONS(2015), - [aux_sym__val_number_decimal_token3] = ACTIONS(2015), - [aux_sym__val_number_decimal_token4] = ACTIONS(2015), - [aux_sym__val_number_token1] = ACTIONS(2015), - [aux_sym__val_number_token2] = ACTIONS(2015), - [aux_sym__val_number_token3] = ACTIONS(2015), - [aux_sym__val_number_token4] = ACTIONS(2009), - [aux_sym__val_number_token5] = ACTIONS(2009), - [aux_sym__val_number_token6] = ACTIONS(2009), - [anon_sym_DQUOTE] = ACTIONS(2015), - [sym__str_single_quotes] = ACTIONS(2015), - [sym__str_back_ticks] = ACTIONS(2015), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2015), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2015), - [anon_sym_register] = ACTIONS(2009), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2015), - }, - [528] = { - [sym_comment] = STATE(528), - [anon_sym_export] = ACTIONS(2017), - [anon_sym_alias] = ACTIONS(2017), - [anon_sym_let] = ACTIONS(2017), - [anon_sym_let_DASHenv] = ACTIONS(2017), - [anon_sym_mut] = ACTIONS(2017), - [anon_sym_const] = ACTIONS(2017), - [aux_sym_cmd_identifier_token1] = ACTIONS(2017), - [aux_sym_cmd_identifier_token2] = ACTIONS(2023), - [aux_sym_cmd_identifier_token3] = ACTIONS(2023), - [aux_sym_cmd_identifier_token4] = ACTIONS(2023), - [aux_sym_cmd_identifier_token5] = ACTIONS(2023), - [aux_sym_cmd_identifier_token6] = ACTIONS(2023), - [aux_sym_cmd_identifier_token7] = ACTIONS(2023), - [aux_sym_cmd_identifier_token8] = ACTIONS(2017), - [aux_sym_cmd_identifier_token9] = ACTIONS(2017), - [aux_sym_cmd_identifier_token10] = ACTIONS(2023), - [aux_sym_cmd_identifier_token11] = ACTIONS(2023), - [aux_sym_cmd_identifier_token12] = ACTIONS(2017), - [aux_sym_cmd_identifier_token13] = ACTIONS(2017), - [aux_sym_cmd_identifier_token14] = ACTIONS(2017), - [aux_sym_cmd_identifier_token15] = ACTIONS(2017), - [aux_sym_cmd_identifier_token16] = ACTIONS(2023), - [aux_sym_cmd_identifier_token17] = ACTIONS(2023), - [aux_sym_cmd_identifier_token18] = ACTIONS(2023), - [aux_sym_cmd_identifier_token19] = ACTIONS(2023), - [aux_sym_cmd_identifier_token20] = ACTIONS(2023), - [aux_sym_cmd_identifier_token21] = ACTIONS(2023), - [aux_sym_cmd_identifier_token22] = ACTIONS(2023), - [aux_sym_cmd_identifier_token23] = ACTIONS(2023), - [aux_sym_cmd_identifier_token24] = ACTIONS(2023), - [aux_sym_cmd_identifier_token25] = ACTIONS(2023), - [aux_sym_cmd_identifier_token26] = ACTIONS(2023), - [aux_sym_cmd_identifier_token27] = ACTIONS(2023), - [aux_sym_cmd_identifier_token28] = ACTIONS(2023), - [aux_sym_cmd_identifier_token29] = ACTIONS(2023), - [aux_sym_cmd_identifier_token30] = ACTIONS(2023), - [aux_sym_cmd_identifier_token31] = ACTIONS(2023), - [aux_sym_cmd_identifier_token32] = ACTIONS(2023), - [aux_sym_cmd_identifier_token33] = ACTIONS(2023), - [aux_sym_cmd_identifier_token34] = ACTIONS(2017), - [aux_sym_cmd_identifier_token35] = ACTIONS(2023), - [aux_sym_cmd_identifier_token36] = ACTIONS(2023), - [aux_sym_cmd_identifier_token37] = ACTIONS(2023), - [aux_sym_cmd_identifier_token38] = ACTIONS(2017), - [aux_sym_cmd_identifier_token39] = ACTIONS(2023), - [aux_sym_cmd_identifier_token40] = ACTIONS(2023), - [anon_sym_def] = ACTIONS(2017), - [anon_sym_export_DASHenv] = ACTIONS(2017), - [anon_sym_extern] = ACTIONS(2017), - [anon_sym_module] = ACTIONS(2017), - [anon_sym_use] = ACTIONS(2017), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_COMMA] = ACTIONS(2023), - [anon_sym_DOLLAR] = ACTIONS(2017), - [anon_sym_error] = ACTIONS(2017), - [anon_sym_DASH2] = ACTIONS(2017), - [anon_sym_break] = ACTIONS(2017), - [anon_sym_continue] = ACTIONS(2017), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_in2] = ACTIONS(2017), - [anon_sym_loop] = ACTIONS(2017), - [anon_sym_make] = ACTIONS(2017), - [anon_sym_while] = ACTIONS(2017), - [anon_sym_do] = ACTIONS(2017), - [anon_sym_if] = ACTIONS(2017), - [anon_sym_else] = ACTIONS(2017), - [anon_sym_match] = ACTIONS(2017), - [anon_sym_RBRACE] = ACTIONS(2023), - [anon_sym_try] = ACTIONS(2017), - [anon_sym_catch] = ACTIONS(2017), - [anon_sym_return] = ACTIONS(2017), - [anon_sym_source] = ACTIONS(2017), - [anon_sym_source_DASHenv] = ACTIONS(2017), - [anon_sym_hide] = ACTIONS(2017), - [anon_sym_hide_DASHenv] = ACTIONS(2017), - [anon_sym_overlay] = ACTIONS(2017), - [anon_sym_as] = ACTIONS(2017), - [anon_sym_PLUS2] = ACTIONS(2017), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2023), - [anon_sym_DOT_DOT2] = ACTIONS(2109), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2111), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2111), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2023), - [aux_sym__val_number_decimal_token1] = ACTIONS(2017), - [aux_sym__val_number_decimal_token2] = ACTIONS(2023), - [aux_sym__val_number_decimal_token3] = ACTIONS(2023), - [aux_sym__val_number_decimal_token4] = ACTIONS(2023), - [aux_sym__val_number_token1] = ACTIONS(2023), - [aux_sym__val_number_token2] = ACTIONS(2023), - [aux_sym__val_number_token3] = ACTIONS(2023), - [aux_sym__val_number_token4] = ACTIONS(2017), - [aux_sym__val_number_token5] = ACTIONS(2017), - [aux_sym__val_number_token6] = ACTIONS(2017), - [anon_sym_DQUOTE] = ACTIONS(2023), - [sym__str_single_quotes] = ACTIONS(2023), - [sym__str_back_ticks] = ACTIONS(2023), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2023), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2023), - [anon_sym_register] = ACTIONS(2017), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2023), - }, - [529] = { - [sym_comment] = STATE(529), - [anon_sym_export] = ACTIONS(2025), - [anon_sym_alias] = ACTIONS(2025), - [anon_sym_let] = ACTIONS(2025), - [anon_sym_let_DASHenv] = ACTIONS(2025), - [anon_sym_mut] = ACTIONS(2025), - [anon_sym_const] = ACTIONS(2025), - [aux_sym_cmd_identifier_token1] = ACTIONS(2025), - [aux_sym_cmd_identifier_token2] = ACTIONS(2031), - [aux_sym_cmd_identifier_token3] = ACTIONS(2031), - [aux_sym_cmd_identifier_token4] = ACTIONS(2031), - [aux_sym_cmd_identifier_token5] = ACTIONS(2031), - [aux_sym_cmd_identifier_token6] = ACTIONS(2031), - [aux_sym_cmd_identifier_token7] = ACTIONS(2031), - [aux_sym_cmd_identifier_token8] = ACTIONS(2025), - [aux_sym_cmd_identifier_token9] = ACTIONS(2025), - [aux_sym_cmd_identifier_token10] = ACTIONS(2031), - [aux_sym_cmd_identifier_token11] = ACTIONS(2031), - [aux_sym_cmd_identifier_token12] = ACTIONS(2025), - [aux_sym_cmd_identifier_token13] = ACTIONS(2025), - [aux_sym_cmd_identifier_token14] = ACTIONS(2025), - [aux_sym_cmd_identifier_token15] = ACTIONS(2025), - [aux_sym_cmd_identifier_token16] = ACTIONS(2031), - [aux_sym_cmd_identifier_token17] = ACTIONS(2031), - [aux_sym_cmd_identifier_token18] = ACTIONS(2031), - [aux_sym_cmd_identifier_token19] = ACTIONS(2031), - [aux_sym_cmd_identifier_token20] = ACTIONS(2031), - [aux_sym_cmd_identifier_token21] = ACTIONS(2031), - [aux_sym_cmd_identifier_token22] = ACTIONS(2031), - [aux_sym_cmd_identifier_token23] = ACTIONS(2031), - [aux_sym_cmd_identifier_token24] = ACTIONS(2031), - [aux_sym_cmd_identifier_token25] = ACTIONS(2031), - [aux_sym_cmd_identifier_token26] = ACTIONS(2031), - [aux_sym_cmd_identifier_token27] = ACTIONS(2031), - [aux_sym_cmd_identifier_token28] = ACTIONS(2031), - [aux_sym_cmd_identifier_token29] = ACTIONS(2031), - [aux_sym_cmd_identifier_token30] = ACTIONS(2031), - [aux_sym_cmd_identifier_token31] = ACTIONS(2031), - [aux_sym_cmd_identifier_token32] = ACTIONS(2031), - [aux_sym_cmd_identifier_token33] = ACTIONS(2031), - [aux_sym_cmd_identifier_token34] = ACTIONS(2025), - [aux_sym_cmd_identifier_token35] = ACTIONS(2031), - [aux_sym_cmd_identifier_token36] = ACTIONS(2031), - [aux_sym_cmd_identifier_token37] = ACTIONS(2031), - [aux_sym_cmd_identifier_token38] = ACTIONS(2025), - [aux_sym_cmd_identifier_token39] = ACTIONS(2031), - [aux_sym_cmd_identifier_token40] = ACTIONS(2031), - [anon_sym_def] = ACTIONS(2025), - [anon_sym_export_DASHenv] = ACTIONS(2025), - [anon_sym_extern] = ACTIONS(2025), - [anon_sym_module] = ACTIONS(2025), - [anon_sym_use] = ACTIONS(2025), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_COMMA] = ACTIONS(2031), - [anon_sym_DOLLAR] = ACTIONS(2025), - [anon_sym_error] = ACTIONS(2025), - [anon_sym_DASH2] = ACTIONS(2025), - [anon_sym_break] = ACTIONS(2025), - [anon_sym_continue] = ACTIONS(2025), - [anon_sym_for] = ACTIONS(2025), - [anon_sym_in2] = ACTIONS(2025), - [anon_sym_loop] = ACTIONS(2025), - [anon_sym_make] = ACTIONS(2025), - [anon_sym_while] = ACTIONS(2025), - [anon_sym_do] = ACTIONS(2025), - [anon_sym_if] = ACTIONS(2025), - [anon_sym_else] = ACTIONS(2025), - [anon_sym_match] = ACTIONS(2025), - [anon_sym_RBRACE] = ACTIONS(2031), - [anon_sym_try] = ACTIONS(2025), - [anon_sym_catch] = ACTIONS(2025), - [anon_sym_return] = ACTIONS(2025), - [anon_sym_source] = ACTIONS(2025), - [anon_sym_source_DASHenv] = ACTIONS(2025), - [anon_sym_hide] = ACTIONS(2025), - [anon_sym_hide_DASHenv] = ACTIONS(2025), - [anon_sym_overlay] = ACTIONS(2025), - [anon_sym_as] = ACTIONS(2025), - [anon_sym_PLUS2] = ACTIONS(2025), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2031), - [anon_sym_DOT_DOT2] = ACTIONS(2113), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2115), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2115), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2031), - [aux_sym__val_number_decimal_token1] = ACTIONS(2025), - [aux_sym__val_number_decimal_token2] = ACTIONS(2031), - [aux_sym__val_number_decimal_token3] = ACTIONS(2031), - [aux_sym__val_number_decimal_token4] = ACTIONS(2031), - [aux_sym__val_number_token1] = ACTIONS(2031), - [aux_sym__val_number_token2] = ACTIONS(2031), - [aux_sym__val_number_token3] = ACTIONS(2031), - [aux_sym__val_number_token4] = ACTIONS(2025), - [aux_sym__val_number_token5] = ACTIONS(2025), - [aux_sym__val_number_token6] = ACTIONS(2025), - [anon_sym_DQUOTE] = ACTIONS(2031), - [sym__str_single_quotes] = ACTIONS(2031), - [sym__str_back_ticks] = ACTIONS(2031), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2031), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2031), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2031), - [anon_sym_register] = ACTIONS(2025), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2031), - }, - [530] = { - [sym_comment] = STATE(530), - [anon_sym_export] = ACTIONS(2033), - [anon_sym_alias] = ACTIONS(2033), - [anon_sym_let] = ACTIONS(2033), - [anon_sym_let_DASHenv] = ACTIONS(2033), - [anon_sym_mut] = ACTIONS(2033), - [anon_sym_const] = ACTIONS(2033), - [aux_sym_cmd_identifier_token1] = ACTIONS(2033), - [aux_sym_cmd_identifier_token2] = ACTIONS(2039), - [aux_sym_cmd_identifier_token3] = ACTIONS(2039), - [aux_sym_cmd_identifier_token4] = ACTIONS(2039), - [aux_sym_cmd_identifier_token5] = ACTIONS(2039), - [aux_sym_cmd_identifier_token6] = ACTIONS(2039), - [aux_sym_cmd_identifier_token7] = ACTIONS(2039), - [aux_sym_cmd_identifier_token8] = ACTIONS(2033), - [aux_sym_cmd_identifier_token9] = ACTIONS(2033), - [aux_sym_cmd_identifier_token10] = ACTIONS(2039), - [aux_sym_cmd_identifier_token11] = ACTIONS(2039), - [aux_sym_cmd_identifier_token12] = ACTIONS(2033), - [aux_sym_cmd_identifier_token13] = ACTIONS(2033), - [aux_sym_cmd_identifier_token14] = ACTIONS(2033), - [aux_sym_cmd_identifier_token15] = ACTIONS(2033), - [aux_sym_cmd_identifier_token16] = ACTIONS(2039), - [aux_sym_cmd_identifier_token17] = ACTIONS(2039), - [aux_sym_cmd_identifier_token18] = ACTIONS(2039), - [aux_sym_cmd_identifier_token19] = ACTIONS(2039), - [aux_sym_cmd_identifier_token20] = ACTIONS(2039), - [aux_sym_cmd_identifier_token21] = ACTIONS(2039), - [aux_sym_cmd_identifier_token22] = ACTIONS(2039), - [aux_sym_cmd_identifier_token23] = ACTIONS(2039), - [aux_sym_cmd_identifier_token24] = ACTIONS(2039), - [aux_sym_cmd_identifier_token25] = ACTIONS(2039), - [aux_sym_cmd_identifier_token26] = ACTIONS(2039), - [aux_sym_cmd_identifier_token27] = ACTIONS(2039), - [aux_sym_cmd_identifier_token28] = ACTIONS(2039), - [aux_sym_cmd_identifier_token29] = ACTIONS(2039), - [aux_sym_cmd_identifier_token30] = ACTIONS(2039), - [aux_sym_cmd_identifier_token31] = ACTIONS(2039), - [aux_sym_cmd_identifier_token32] = ACTIONS(2039), - [aux_sym_cmd_identifier_token33] = ACTIONS(2039), - [aux_sym_cmd_identifier_token34] = ACTIONS(2033), - [aux_sym_cmd_identifier_token35] = ACTIONS(2039), - [aux_sym_cmd_identifier_token36] = ACTIONS(2039), - [aux_sym_cmd_identifier_token37] = ACTIONS(2039), - [aux_sym_cmd_identifier_token38] = ACTIONS(2033), - [aux_sym_cmd_identifier_token39] = ACTIONS(2039), - [aux_sym_cmd_identifier_token40] = ACTIONS(2039), - [anon_sym_def] = ACTIONS(2033), - [anon_sym_export_DASHenv] = ACTIONS(2033), - [anon_sym_extern] = ACTIONS(2033), - [anon_sym_module] = ACTIONS(2033), - [anon_sym_use] = ACTIONS(2033), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_COMMA] = ACTIONS(2039), - [anon_sym_DOLLAR] = ACTIONS(2033), - [anon_sym_error] = ACTIONS(2033), - [anon_sym_DASH2] = ACTIONS(2033), - [anon_sym_break] = ACTIONS(2033), - [anon_sym_continue] = ACTIONS(2033), - [anon_sym_for] = ACTIONS(2033), - [anon_sym_in2] = ACTIONS(2033), - [anon_sym_loop] = ACTIONS(2033), - [anon_sym_make] = ACTIONS(2033), - [anon_sym_while] = ACTIONS(2033), - [anon_sym_do] = ACTIONS(2033), - [anon_sym_if] = ACTIONS(2033), - [anon_sym_else] = ACTIONS(2033), - [anon_sym_match] = ACTIONS(2033), - [anon_sym_RBRACE] = ACTIONS(2039), - [anon_sym_try] = ACTIONS(2033), - [anon_sym_catch] = ACTIONS(2033), - [anon_sym_return] = ACTIONS(2033), - [anon_sym_source] = ACTIONS(2033), - [anon_sym_source_DASHenv] = ACTIONS(2033), - [anon_sym_hide] = ACTIONS(2033), - [anon_sym_hide_DASHenv] = ACTIONS(2033), - [anon_sym_overlay] = ACTIONS(2033), - [anon_sym_as] = ACTIONS(2033), - [anon_sym_PLUS2] = ACTIONS(2033), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2039), - [anon_sym_DOT_DOT2] = ACTIONS(2117), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2119), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2119), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2039), - [aux_sym__val_number_decimal_token1] = ACTIONS(2033), - [aux_sym__val_number_decimal_token2] = ACTIONS(2039), - [aux_sym__val_number_decimal_token3] = ACTIONS(2039), - [aux_sym__val_number_decimal_token4] = ACTIONS(2039), - [aux_sym__val_number_token1] = ACTIONS(2039), - [aux_sym__val_number_token2] = ACTIONS(2039), - [aux_sym__val_number_token3] = ACTIONS(2039), - [aux_sym__val_number_token4] = ACTIONS(2033), - [aux_sym__val_number_token5] = ACTIONS(2033), - [aux_sym__val_number_token6] = ACTIONS(2033), - [anon_sym_DQUOTE] = ACTIONS(2039), - [sym__str_single_quotes] = ACTIONS(2039), - [sym__str_back_ticks] = ACTIONS(2039), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2039), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2039), - [anon_sym_register] = ACTIONS(2033), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2039), - }, - [531] = { - [sym_comment] = STATE(531), - [anon_sym_export] = ACTIONS(982), - [anon_sym_alias] = ACTIONS(982), - [anon_sym_let] = ACTIONS(982), - [anon_sym_let_DASHenv] = ACTIONS(982), - [anon_sym_mut] = ACTIONS(982), - [anon_sym_const] = ACTIONS(982), - [aux_sym_cmd_identifier_token1] = ACTIONS(982), - [aux_sym_cmd_identifier_token2] = ACTIONS(984), - [aux_sym_cmd_identifier_token3] = ACTIONS(984), - [aux_sym_cmd_identifier_token4] = ACTIONS(984), - [aux_sym_cmd_identifier_token5] = ACTIONS(984), - [aux_sym_cmd_identifier_token6] = ACTIONS(984), - [aux_sym_cmd_identifier_token7] = ACTIONS(984), - [aux_sym_cmd_identifier_token8] = ACTIONS(982), - [aux_sym_cmd_identifier_token9] = ACTIONS(982), - [aux_sym_cmd_identifier_token10] = ACTIONS(984), - [aux_sym_cmd_identifier_token11] = ACTIONS(984), - [aux_sym_cmd_identifier_token12] = ACTIONS(982), - [aux_sym_cmd_identifier_token13] = ACTIONS(982), - [aux_sym_cmd_identifier_token14] = ACTIONS(982), - [aux_sym_cmd_identifier_token15] = ACTIONS(982), - [aux_sym_cmd_identifier_token16] = ACTIONS(984), - [aux_sym_cmd_identifier_token17] = ACTIONS(984), - [aux_sym_cmd_identifier_token18] = ACTIONS(984), - [aux_sym_cmd_identifier_token19] = ACTIONS(984), - [aux_sym_cmd_identifier_token20] = ACTIONS(984), - [aux_sym_cmd_identifier_token21] = ACTIONS(984), - [aux_sym_cmd_identifier_token22] = ACTIONS(984), - [aux_sym_cmd_identifier_token23] = ACTIONS(984), - [aux_sym_cmd_identifier_token24] = ACTIONS(984), - [aux_sym_cmd_identifier_token25] = ACTIONS(984), - [aux_sym_cmd_identifier_token26] = ACTIONS(984), - [aux_sym_cmd_identifier_token27] = ACTIONS(984), - [aux_sym_cmd_identifier_token28] = ACTIONS(984), - [aux_sym_cmd_identifier_token29] = ACTIONS(984), - [aux_sym_cmd_identifier_token30] = ACTIONS(984), - [aux_sym_cmd_identifier_token31] = ACTIONS(984), - [aux_sym_cmd_identifier_token32] = ACTIONS(984), - [aux_sym_cmd_identifier_token33] = ACTIONS(984), - [aux_sym_cmd_identifier_token34] = ACTIONS(982), - [aux_sym_cmd_identifier_token35] = ACTIONS(984), - [aux_sym_cmd_identifier_token36] = ACTIONS(984), - [aux_sym_cmd_identifier_token37] = ACTIONS(984), - [aux_sym_cmd_identifier_token38] = ACTIONS(982), - [aux_sym_cmd_identifier_token39] = ACTIONS(984), - [aux_sym_cmd_identifier_token40] = ACTIONS(984), - [anon_sym_def] = ACTIONS(982), - [anon_sym_export_DASHenv] = ACTIONS(982), - [anon_sym_extern] = ACTIONS(982), - [anon_sym_module] = ACTIONS(982), - [anon_sym_use] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(984), - [anon_sym_COMMA] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(982), - [anon_sym_error] = ACTIONS(982), - [anon_sym_DASH2] = ACTIONS(982), - [anon_sym_break] = ACTIONS(982), - [anon_sym_continue] = ACTIONS(982), - [anon_sym_for] = ACTIONS(982), - [anon_sym_in2] = ACTIONS(982), - [anon_sym_loop] = ACTIONS(982), - [anon_sym_make] = ACTIONS(982), - [anon_sym_while] = ACTIONS(982), - [anon_sym_do] = ACTIONS(982), - [anon_sym_if] = ACTIONS(982), - [anon_sym_else] = ACTIONS(982), - [anon_sym_match] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_try] = ACTIONS(982), - [anon_sym_catch] = ACTIONS(982), - [anon_sym_return] = ACTIONS(982), - [anon_sym_source] = ACTIONS(982), - [anon_sym_source_DASHenv] = ACTIONS(982), - [anon_sym_hide] = ACTIONS(982), - [anon_sym_hide_DASHenv] = ACTIONS(982), - [anon_sym_overlay] = ACTIONS(982), - [anon_sym_as] = ACTIONS(982), - [anon_sym_PLUS2] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(984), - [anon_sym_DOT_DOT2] = ACTIONS(982), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), - [anon_sym_DOT_DOT_LT2] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(984), - [aux_sym__val_number_decimal_token1] = ACTIONS(982), - [aux_sym__val_number_decimal_token2] = ACTIONS(984), - [aux_sym__val_number_decimal_token3] = ACTIONS(984), - [aux_sym__val_number_decimal_token4] = ACTIONS(984), - [aux_sym__val_number_token1] = ACTIONS(984), - [aux_sym__val_number_token2] = ACTIONS(984), - [aux_sym__val_number_token3] = ACTIONS(984), - [aux_sym__val_number_token4] = ACTIONS(982), - [aux_sym__val_number_token5] = ACTIONS(982), - [aux_sym__val_number_token6] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym__str_single_quotes] = ACTIONS(984), - [sym__str_back_ticks] = ACTIONS(984), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(984), - [anon_sym_register] = ACTIONS(982), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(984), + [548] = { + [sym_comment] = STATE(548), + [anon_sym_export] = ACTIONS(2134), + [anon_sym_alias] = ACTIONS(2134), + [anon_sym_let] = ACTIONS(2134), + [anon_sym_let_DASHenv] = ACTIONS(2134), + [anon_sym_mut] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [aux_sym_cmd_identifier_token1] = ACTIONS(2134), + [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(2134), + [aux_sym_cmd_identifier_token9] = ACTIONS(2134), + [aux_sym_cmd_identifier_token10] = ACTIONS(2136), + [aux_sym_cmd_identifier_token11] = ACTIONS(2136), + [aux_sym_cmd_identifier_token12] = ACTIONS(2134), + [aux_sym_cmd_identifier_token13] = ACTIONS(2134), + [aux_sym_cmd_identifier_token14] = ACTIONS(2134), + [aux_sym_cmd_identifier_token15] = ACTIONS(2134), + [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(2134), + [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(2134), + [aux_sym_cmd_identifier_token39] = ACTIONS(2136), + [aux_sym_cmd_identifier_token40] = ACTIONS(2136), + [anon_sym_def] = ACTIONS(2134), + [anon_sym_export_DASHenv] = ACTIONS(2134), + [anon_sym_extern] = ACTIONS(2134), + [anon_sym_module] = ACTIONS(2134), + [anon_sym_use] = ACTIONS(2134), + [anon_sym_LPAREN] = ACTIONS(2134), + [anon_sym_COMMA] = ACTIONS(2136), + [anon_sym_DOLLAR] = ACTIONS(2134), + [anon_sym_error] = ACTIONS(2134), + [anon_sym_DASH2] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_for] = ACTIONS(2134), + [anon_sym_in2] = ACTIONS(2134), + [anon_sym_loop] = ACTIONS(2134), + [anon_sym_make] = ACTIONS(2134), + [anon_sym_while] = ACTIONS(2134), + [anon_sym_do] = ACTIONS(2134), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_else] = ACTIONS(2134), + [anon_sym_match] = ACTIONS(2134), + [anon_sym_RBRACE] = ACTIONS(2136), + [anon_sym_try] = ACTIONS(2134), + [anon_sym_catch] = ACTIONS(2134), + [anon_sym_return] = ACTIONS(2134), + [anon_sym_source] = ACTIONS(2134), + [anon_sym_source_DASHenv] = ACTIONS(2134), + [anon_sym_hide] = ACTIONS(2134), + [anon_sym_hide_DASHenv] = ACTIONS(2134), + [anon_sym_overlay] = ACTIONS(2134), + [anon_sym_as] = ACTIONS(2134), + [anon_sym_LPAREN2] = ACTIONS(1784), + [anon_sym_PLUS2] = ACTIONS(2134), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2136), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2136), + [aux_sym__val_number_decimal_token1] = ACTIONS(2134), + [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(2134), + [aux_sym__val_number_token5] = ACTIONS(2134), + [aux_sym__val_number_token6] = ACTIONS(2134), + [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_DOT_DOT_DOT_LBRACE] = ACTIONS(2136), + [anon_sym_register] = ACTIONS(2134), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2136), }, - [532] = { - [sym_comment] = STATE(532), - [anon_sym_export] = ACTIONS(942), - [anon_sym_alias] = ACTIONS(942), - [anon_sym_let] = ACTIONS(942), - [anon_sym_let_DASHenv] = ACTIONS(942), - [anon_sym_mut] = ACTIONS(942), - [anon_sym_const] = ACTIONS(942), - [aux_sym_cmd_identifier_token1] = ACTIONS(942), - [aux_sym_cmd_identifier_token2] = ACTIONS(942), - [aux_sym_cmd_identifier_token3] = ACTIONS(942), - [aux_sym_cmd_identifier_token4] = ACTIONS(942), - [aux_sym_cmd_identifier_token5] = ACTIONS(942), - [aux_sym_cmd_identifier_token6] = ACTIONS(942), - [aux_sym_cmd_identifier_token7] = ACTIONS(942), - [aux_sym_cmd_identifier_token8] = ACTIONS(942), - [aux_sym_cmd_identifier_token9] = ACTIONS(942), - [aux_sym_cmd_identifier_token10] = ACTIONS(942), - [aux_sym_cmd_identifier_token11] = ACTIONS(942), - [aux_sym_cmd_identifier_token12] = ACTIONS(942), - [aux_sym_cmd_identifier_token13] = ACTIONS(942), - [aux_sym_cmd_identifier_token14] = ACTIONS(942), - [aux_sym_cmd_identifier_token15] = ACTIONS(942), - [aux_sym_cmd_identifier_token16] = ACTIONS(942), - [aux_sym_cmd_identifier_token17] = ACTIONS(942), - [aux_sym_cmd_identifier_token18] = ACTIONS(942), - [aux_sym_cmd_identifier_token19] = ACTIONS(942), - [aux_sym_cmd_identifier_token20] = ACTIONS(942), - [aux_sym_cmd_identifier_token21] = ACTIONS(942), - [aux_sym_cmd_identifier_token22] = ACTIONS(942), - [aux_sym_cmd_identifier_token23] = ACTIONS(942), - [aux_sym_cmd_identifier_token24] = ACTIONS(942), - [aux_sym_cmd_identifier_token25] = ACTIONS(942), - [aux_sym_cmd_identifier_token26] = ACTIONS(942), - [aux_sym_cmd_identifier_token27] = ACTIONS(942), - [aux_sym_cmd_identifier_token28] = ACTIONS(942), - [aux_sym_cmd_identifier_token29] = ACTIONS(942), - [aux_sym_cmd_identifier_token30] = ACTIONS(942), - [aux_sym_cmd_identifier_token31] = ACTIONS(942), - [aux_sym_cmd_identifier_token32] = ACTIONS(942), - [aux_sym_cmd_identifier_token33] = ACTIONS(942), - [aux_sym_cmd_identifier_token34] = ACTIONS(942), - [aux_sym_cmd_identifier_token35] = ACTIONS(942), - [aux_sym_cmd_identifier_token36] = ACTIONS(942), - [aux_sym_cmd_identifier_token37] = ACTIONS(942), - [aux_sym_cmd_identifier_token38] = ACTIONS(942), - [aux_sym_cmd_identifier_token39] = ACTIONS(942), - [aux_sym_cmd_identifier_token40] = ACTIONS(942), - [anon_sym_def] = ACTIONS(942), - [anon_sym_export_DASHenv] = ACTIONS(942), - [anon_sym_extern] = ACTIONS(942), - [anon_sym_module] = ACTIONS(942), - [anon_sym_use] = ACTIONS(942), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_COMMA] = ACTIONS(942), - [anon_sym_DOLLAR] = ACTIONS(942), - [anon_sym_error] = ACTIONS(942), - [anon_sym_DASH2] = ACTIONS(942), - [anon_sym_break] = ACTIONS(942), - [anon_sym_continue] = ACTIONS(942), - [anon_sym_for] = ACTIONS(942), - [anon_sym_in2] = ACTIONS(942), - [anon_sym_loop] = ACTIONS(942), - [anon_sym_make] = ACTIONS(942), - [anon_sym_while] = ACTIONS(942), - [anon_sym_do] = ACTIONS(942), - [anon_sym_if] = ACTIONS(942), - [anon_sym_else] = ACTIONS(942), - [anon_sym_match] = ACTIONS(942), - [anon_sym_RBRACE] = ACTIONS(942), - [anon_sym_try] = ACTIONS(942), - [anon_sym_catch] = ACTIONS(942), - [anon_sym_return] = ACTIONS(942), - [anon_sym_source] = ACTIONS(942), - [anon_sym_source_DASHenv] = ACTIONS(942), - [anon_sym_hide] = ACTIONS(942), - [anon_sym_hide_DASHenv] = ACTIONS(942), - [anon_sym_overlay] = ACTIONS(942), - [anon_sym_as] = ACTIONS(942), - [anon_sym_QMARK2] = ACTIONS(2121), - [anon_sym_PLUS2] = ACTIONS(942), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(942), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(942), - [aux_sym__val_number_decimal_token1] = ACTIONS(942), - [aux_sym__val_number_decimal_token2] = ACTIONS(942), - [aux_sym__val_number_decimal_token3] = ACTIONS(942), - [aux_sym__val_number_decimal_token4] = ACTIONS(942), - [aux_sym__val_number_token1] = ACTIONS(942), - [aux_sym__val_number_token2] = ACTIONS(942), - [aux_sym__val_number_token3] = ACTIONS(942), - [aux_sym__val_number_token4] = ACTIONS(942), - [aux_sym__val_number_token5] = ACTIONS(942), - [aux_sym__val_number_token6] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(942), - [sym__str_single_quotes] = ACTIONS(942), - [sym__str_back_ticks] = ACTIONS(942), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(942), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(942), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(942), - [sym__entry_separator] = ACTIONS(944), - [anon_sym_register] = ACTIONS(942), - [anon_sym_DOT2] = ACTIONS(942), + [549] = { + [sym_expr_parenthesized] = STATE(4025), + [sym__spread_parenthesized] = STATE(4427), + [sym_val_range] = STATE(4431), + [sym__val_range] = STATE(7359), + [sym__val_range_with_end] = STATE(6944), + [sym__value] = STATE(4431), + [sym_val_nothing] = STATE(4406), + [sym_val_bool] = STATE(4136), + [sym__spread_variable] = STATE(4467), + [sym_val_variable] = STATE(4027), + [sym_val_number] = STATE(4406), + [sym__val_number_decimal] = STATE(3770), + [sym__val_number] = STATE(4446), + [sym_val_duration] = STATE(4406), + [sym_val_filesize] = STATE(4406), + [sym_val_binary] = STATE(4406), + [sym_val_string] = STATE(4406), + [sym__raw_str] = STATE(3849), + [sym__str_double_quotes] = STATE(3849), + [sym_val_interpolated] = STATE(4406), + [sym__inter_single_quotes] = STATE(4336), + [sym__inter_double_quotes] = STATE(4388), + [sym_val_list] = STATE(4406), + [sym__spread_list] = STATE(4427), + [sym_val_record] = STATE(4406), + [sym_val_table] = STATE(4406), + [sym_val_closure] = STATE(4406), + [sym__cmd_arg] = STATE(4594), + [sym_redirection] = STATE(4398), + [sym__flag] = STATE(4482), + [sym_short_flag] = STATE(4417), + [sym_long_flag] = STATE(4417), + [sym_unquoted] = STATE(4066), + [sym__unquoted_with_expr] = STATE(4390), + [sym__unquoted_anonymous_prefix] = STATE(6718), + [sym_comment] = STATE(549), + [sym__newline] = ACTIONS(2240), + [sym__space] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(2240), + [anon_sym_err_GT_PIPE] = ACTIONS(2240), + [anon_sym_out_GT_PIPE] = ACTIONS(2240), + [anon_sym_e_GT_PIPE] = ACTIONS(2240), + [anon_sym_o_GT_PIPE] = ACTIONS(2240), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2240), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2240), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2240), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(2010), + [anon_sym_LPAREN] = ACTIONS(2012), + [anon_sym_RPAREN] = ACTIONS(2240), + [anon_sym_DOLLAR] = ACTIONS(2014), + [anon_sym_DASH_DASH] = ACTIONS(2016), + [anon_sym_DASH2] = ACTIONS(2018), + [anon_sym_LBRACE] = ACTIONS(2020), + [anon_sym_DOT_DOT] = ACTIONS(2022), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2026), + [anon_sym_DOT_DOT_LT] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2032), + [aux_sym__val_number_decimal_token1] = ACTIONS(2034), + [aux_sym__val_number_decimal_token2] = ACTIONS(2034), + [aux_sym__val_number_decimal_token3] = ACTIONS(2036), + [aux_sym__val_number_decimal_token4] = ACTIONS(2038), + [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(2042), + [aux_sym__val_number_token5] = ACTIONS(2042), + [aux_sym__val_number_token6] = ACTIONS(2042), + [anon_sym_0b] = ACTIONS(2044), + [anon_sym_0o] = ACTIONS(2046), + [anon_sym_0x] = ACTIONS(2046), + [sym_val_date] = ACTIONS(2048), + [anon_sym_DQUOTE] = ACTIONS(2050), + [sym__str_single_quotes] = ACTIONS(2052), + [sym__str_back_ticks] = ACTIONS(2052), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2056), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2058), + [anon_sym_err_GT] = ACTIONS(2062), + [anon_sym_out_GT] = ACTIONS(2062), + [anon_sym_e_GT] = ACTIONS(2062), + [anon_sym_o_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT] = ACTIONS(2062), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [aux_sym_unquoted_token1] = ACTIONS(2064), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(944), + [sym_raw_string_begin] = ACTIONS(2066), }, - [533] = { - [sym_comment] = STATE(533), - [anon_sym_export] = ACTIONS(948), - [anon_sym_alias] = ACTIONS(948), - [anon_sym_let] = ACTIONS(948), - [anon_sym_let_DASHenv] = ACTIONS(948), - [anon_sym_mut] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [aux_sym_cmd_identifier_token1] = ACTIONS(948), - [aux_sym_cmd_identifier_token2] = ACTIONS(948), - [aux_sym_cmd_identifier_token3] = ACTIONS(948), - [aux_sym_cmd_identifier_token4] = ACTIONS(948), - [aux_sym_cmd_identifier_token5] = ACTIONS(948), - [aux_sym_cmd_identifier_token6] = ACTIONS(948), - [aux_sym_cmd_identifier_token7] = ACTIONS(948), - [aux_sym_cmd_identifier_token8] = ACTIONS(948), - [aux_sym_cmd_identifier_token9] = ACTIONS(948), - [aux_sym_cmd_identifier_token10] = ACTIONS(948), - [aux_sym_cmd_identifier_token11] = ACTIONS(948), - [aux_sym_cmd_identifier_token12] = ACTIONS(948), - [aux_sym_cmd_identifier_token13] = ACTIONS(948), - [aux_sym_cmd_identifier_token14] = ACTIONS(948), - [aux_sym_cmd_identifier_token15] = ACTIONS(948), - [aux_sym_cmd_identifier_token16] = ACTIONS(948), - [aux_sym_cmd_identifier_token17] = ACTIONS(948), - [aux_sym_cmd_identifier_token18] = ACTIONS(948), - [aux_sym_cmd_identifier_token19] = ACTIONS(948), - [aux_sym_cmd_identifier_token20] = ACTIONS(948), - [aux_sym_cmd_identifier_token21] = ACTIONS(948), - [aux_sym_cmd_identifier_token22] = ACTIONS(948), - [aux_sym_cmd_identifier_token23] = ACTIONS(948), - [aux_sym_cmd_identifier_token24] = ACTIONS(948), - [aux_sym_cmd_identifier_token25] = ACTIONS(948), - [aux_sym_cmd_identifier_token26] = ACTIONS(948), - [aux_sym_cmd_identifier_token27] = ACTIONS(948), - [aux_sym_cmd_identifier_token28] = ACTIONS(948), - [aux_sym_cmd_identifier_token29] = ACTIONS(948), - [aux_sym_cmd_identifier_token30] = ACTIONS(948), - [aux_sym_cmd_identifier_token31] = ACTIONS(948), - [aux_sym_cmd_identifier_token32] = ACTIONS(948), - [aux_sym_cmd_identifier_token33] = ACTIONS(948), - [aux_sym_cmd_identifier_token34] = ACTIONS(948), - [aux_sym_cmd_identifier_token35] = ACTIONS(948), - [aux_sym_cmd_identifier_token36] = ACTIONS(948), - [aux_sym_cmd_identifier_token37] = ACTIONS(948), - [aux_sym_cmd_identifier_token38] = ACTIONS(948), - [aux_sym_cmd_identifier_token39] = ACTIONS(948), - [aux_sym_cmd_identifier_token40] = ACTIONS(948), - [anon_sym_def] = ACTIONS(948), - [anon_sym_export_DASHenv] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_use] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(948), - [anon_sym_COMMA] = ACTIONS(948), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_error] = ACTIONS(948), - [anon_sym_DASH2] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_in2] = ACTIONS(948), - [anon_sym_loop] = ACTIONS(948), - [anon_sym_make] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_match] = ACTIONS(948), - [anon_sym_RBRACE] = ACTIONS(948), - [anon_sym_try] = ACTIONS(948), - [anon_sym_catch] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_source] = ACTIONS(948), - [anon_sym_source_DASHenv] = ACTIONS(948), - [anon_sym_hide] = ACTIONS(948), - [anon_sym_hide_DASHenv] = ACTIONS(948), - [anon_sym_overlay] = ACTIONS(948), - [anon_sym_as] = ACTIONS(948), - [anon_sym_QMARK2] = ACTIONS(2123), - [anon_sym_PLUS2] = ACTIONS(948), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(948), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(948), - [aux_sym__val_number_decimal_token1] = ACTIONS(948), - [aux_sym__val_number_decimal_token2] = ACTIONS(948), - [aux_sym__val_number_decimal_token3] = ACTIONS(948), - [aux_sym__val_number_decimal_token4] = ACTIONS(948), - [aux_sym__val_number_token1] = ACTIONS(948), - [aux_sym__val_number_token2] = ACTIONS(948), - [aux_sym__val_number_token3] = ACTIONS(948), - [aux_sym__val_number_token4] = ACTIONS(948), - [aux_sym__val_number_token5] = ACTIONS(948), - [aux_sym__val_number_token6] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(948), - [sym__str_single_quotes] = ACTIONS(948), - [sym__str_back_ticks] = ACTIONS(948), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(948), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(948), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(948), - [sym__entry_separator] = ACTIONS(950), - [anon_sym_register] = ACTIONS(948), - [anon_sym_DOT2] = ACTIONS(948), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(950), + [550] = { + [sym_comment] = STATE(550), + [anon_sym_export] = ACTIONS(1701), + [anon_sym_alias] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1701), + [anon_sym_let_DASHenv] = ACTIONS(1701), + [anon_sym_mut] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [aux_sym_cmd_identifier_token1] = ACTIONS(1701), + [aux_sym_cmd_identifier_token2] = ACTIONS(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [aux_sym_cmd_identifier_token12] = ACTIONS(1701), + [aux_sym_cmd_identifier_token13] = ACTIONS(1701), + [aux_sym_cmd_identifier_token14] = ACTIONS(1701), + [aux_sym_cmd_identifier_token15] = ACTIONS(1701), + [aux_sym_cmd_identifier_token16] = ACTIONS(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [aux_sym_cmd_identifier_token37] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [anon_sym_def] = ACTIONS(1701), + [anon_sym_export_DASHenv] = ACTIONS(1701), + [anon_sym_extern] = ACTIONS(1701), + [anon_sym_module] = ACTIONS(1701), + [anon_sym_use] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_COMMA] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = ACTIONS(1701), + [anon_sym_loop] = ACTIONS(1701), + [anon_sym_make] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_do] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_else] = ACTIONS(1701), + [anon_sym_match] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_try] = ACTIONS(1701), + [anon_sym_catch] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_source] = ACTIONS(1701), + [anon_sym_source_DASHenv] = ACTIONS(1701), + [anon_sym_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), }, - [534] = { - [sym_expr_parenthesized] = STATE(4232), - [sym__spread_parenthesized] = STATE(4679), - [sym_val_range] = STATE(4686), - [sym__val_range] = STATE(7563), - [sym__val_range_with_end] = STATE(7481), - [sym__value] = STATE(4686), - [sym_val_nothing] = STATE(4706), - [sym_val_bool] = STATE(4357), - [sym__spread_variable] = STATE(4687), - [sym_val_variable] = STATE(4236), - [sym_val_number] = STATE(4706), - [sym__val_number_decimal] = STATE(3949), - [sym__val_number] = STATE(4709), - [sym_val_duration] = STATE(4706), - [sym_val_filesize] = STATE(4706), - [sym_val_binary] = STATE(4706), - [sym_val_string] = STATE(4706), - [sym__raw_str] = STATE(4077), - [sym__str_double_quotes] = STATE(4077), - [sym_val_interpolated] = STATE(4706), - [sym__inter_single_quotes] = STATE(4625), - [sym__inter_double_quotes] = STATE(4629), - [sym_val_list] = STATE(4706), - [sym__spread_list] = STATE(4679), - [sym_val_record] = STATE(4706), - [sym_val_table] = STATE(4706), - [sym_val_closure] = STATE(4706), - [sym__cmd_arg] = STATE(4692), - [sym_redirection] = STATE(4693), - [sym__flag] = STATE(4694), - [sym_short_flag] = STATE(4663), - [sym_long_flag] = STATE(4663), - [sym_unquoted] = STATE(4375), - [sym__unquoted_with_expr] = STATE(4697), - [sym__unquoted_anonymous_prefix] = STATE(7047), - [sym_comment] = STATE(534), - [sym__newline] = ACTIONS(2125), - [sym__space] = ACTIONS(2125), - [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(2130), - [anon_sym_LPAREN] = ACTIONS(2132), - [anon_sym_DOLLAR] = ACTIONS(2134), - [anon_sym_DASH_DASH] = ACTIONS(2136), - [anon_sym_DASH2] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2128), - [anon_sym_DOT_DOT] = ACTIONS(2142), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2144), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2146), - [anon_sym_DOT_DOT_LT] = ACTIONS(2146), - [anon_sym_null] = ACTIONS(2148), - [anon_sym_true] = ACTIONS(2150), - [anon_sym_false] = ACTIONS(2150), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2152), - [aux_sym__val_number_decimal_token1] = ACTIONS(2154), - [aux_sym__val_number_decimal_token2] = ACTIONS(2154), - [aux_sym__val_number_decimal_token3] = ACTIONS(2156), - [aux_sym__val_number_decimal_token4] = ACTIONS(2158), - [aux_sym__val_number_token1] = ACTIONS(2160), - [aux_sym__val_number_token2] = ACTIONS(2160), - [aux_sym__val_number_token3] = ACTIONS(2160), - [aux_sym__val_number_token4] = ACTIONS(2162), - [aux_sym__val_number_token5] = ACTIONS(2162), - [aux_sym__val_number_token6] = ACTIONS(2162), - [anon_sym_0b] = ACTIONS(2164), - [anon_sym_0o] = ACTIONS(2166), - [anon_sym_0x] = ACTIONS(2166), - [sym_val_date] = ACTIONS(2168), - [anon_sym_DQUOTE] = ACTIONS(2170), - [sym__str_single_quotes] = ACTIONS(2172), - [sym__str_back_ticks] = ACTIONS(2172), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2174), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2176), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2178), - [anon_sym_COLON2] = ACTIONS(2180), - [anon_sym_err_GT] = ACTIONS(2182), - [anon_sym_out_GT] = ACTIONS(2182), - [anon_sym_e_GT] = ACTIONS(2182), - [anon_sym_o_GT] = ACTIONS(2182), - [anon_sym_err_PLUSout_GT] = ACTIONS(2182), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2182), - [anon_sym_o_PLUSe_GT] = ACTIONS(2182), - [anon_sym_e_PLUSo_GT] = ACTIONS(2182), - [anon_sym_err_GT_GT] = ACTIONS(2182), - [anon_sym_out_GT_GT] = ACTIONS(2182), - [anon_sym_e_GT_GT] = ACTIONS(2182), - [anon_sym_o_GT_GT] = ACTIONS(2182), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2182), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2182), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2182), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2182), - [aux_sym_unquoted_token1] = ACTIONS(2184), + [551] = { + [sym_comment] = STATE(551), + [anon_sym_export] = ACTIONS(1701), + [anon_sym_alias] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1701), + [anon_sym_let_DASHenv] = ACTIONS(1701), + [anon_sym_mut] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [aux_sym_cmd_identifier_token1] = ACTIONS(1701), + [aux_sym_cmd_identifier_token2] = ACTIONS(1701), + [aux_sym_cmd_identifier_token3] = ACTIONS(1701), + [aux_sym_cmd_identifier_token4] = ACTIONS(1701), + [aux_sym_cmd_identifier_token5] = ACTIONS(1701), + [aux_sym_cmd_identifier_token6] = ACTIONS(1701), + [aux_sym_cmd_identifier_token7] = ACTIONS(1701), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1701), + [aux_sym_cmd_identifier_token11] = ACTIONS(1701), + [aux_sym_cmd_identifier_token12] = ACTIONS(1701), + [aux_sym_cmd_identifier_token13] = ACTIONS(1701), + [aux_sym_cmd_identifier_token14] = ACTIONS(1701), + [aux_sym_cmd_identifier_token15] = ACTIONS(1701), + [aux_sym_cmd_identifier_token16] = ACTIONS(1701), + [aux_sym_cmd_identifier_token17] = ACTIONS(1701), + [aux_sym_cmd_identifier_token18] = ACTIONS(1701), + [aux_sym_cmd_identifier_token19] = ACTIONS(1701), + [aux_sym_cmd_identifier_token20] = ACTIONS(1701), + [aux_sym_cmd_identifier_token21] = ACTIONS(1701), + [aux_sym_cmd_identifier_token22] = ACTIONS(1701), + [aux_sym_cmd_identifier_token23] = ACTIONS(1701), + [aux_sym_cmd_identifier_token24] = ACTIONS(1701), + [aux_sym_cmd_identifier_token25] = ACTIONS(1701), + [aux_sym_cmd_identifier_token26] = ACTIONS(1701), + [aux_sym_cmd_identifier_token27] = ACTIONS(1701), + [aux_sym_cmd_identifier_token28] = ACTIONS(1701), + [aux_sym_cmd_identifier_token29] = ACTIONS(1701), + [aux_sym_cmd_identifier_token30] = ACTIONS(1701), + [aux_sym_cmd_identifier_token31] = ACTIONS(1701), + [aux_sym_cmd_identifier_token32] = ACTIONS(1701), + [aux_sym_cmd_identifier_token33] = ACTIONS(1701), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1701), + [aux_sym_cmd_identifier_token36] = ACTIONS(1701), + [aux_sym_cmd_identifier_token37] = ACTIONS(1701), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1701), + [aux_sym_cmd_identifier_token40] = ACTIONS(1701), + [anon_sym_def] = ACTIONS(1701), + [anon_sym_export_DASHenv] = ACTIONS(1701), + [anon_sym_extern] = ACTIONS(1701), + [anon_sym_module] = ACTIONS(1701), + [anon_sym_use] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_COMMA] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = ACTIONS(1701), + [anon_sym_loop] = ACTIONS(1701), + [anon_sym_make] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_do] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_else] = ACTIONS(1701), + [anon_sym_match] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1701), + [anon_sym_try] = ACTIONS(1701), + [anon_sym_catch] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_source] = ACTIONS(1701), + [anon_sym_source_DASHenv] = ACTIONS(1701), + [anon_sym_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1701), + [aux_sym__immediate_decimal_token2] = ACTIONS(2102), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1701), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1701), + [aux_sym__val_number_decimal_token3] = ACTIONS(1701), + [aux_sym__val_number_decimal_token4] = ACTIONS(1701), + [aux_sym__val_number_token1] = ACTIONS(1701), + [aux_sym__val_number_token2] = ACTIONS(1701), + [aux_sym__val_number_token3] = ACTIONS(1701), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [sym__str_single_quotes] = ACTIONS(1701), + [sym__str_back_ticks] = ACTIONS(1701), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1701), + [sym__entry_separator] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2186), + [sym_raw_string_begin] = ACTIONS(1703), }, - [535] = { - [sym_comment] = STATE(535), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_alias] = ACTIONS(1963), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_let_DASHenv] = ACTIONS(1963), - [anon_sym_mut] = ACTIONS(1963), - [anon_sym_const] = ACTIONS(1963), - [aux_sym_cmd_identifier_token1] = ACTIONS(1963), - [aux_sym_cmd_identifier_token2] = ACTIONS(1965), - [aux_sym_cmd_identifier_token3] = ACTIONS(1965), - [aux_sym_cmd_identifier_token4] = ACTIONS(1965), - [aux_sym_cmd_identifier_token5] = ACTIONS(1965), - [aux_sym_cmd_identifier_token6] = ACTIONS(1965), - [aux_sym_cmd_identifier_token7] = ACTIONS(1965), - [aux_sym_cmd_identifier_token8] = ACTIONS(1963), - [aux_sym_cmd_identifier_token9] = ACTIONS(1963), - [aux_sym_cmd_identifier_token10] = ACTIONS(1965), - [aux_sym_cmd_identifier_token11] = ACTIONS(1965), - [aux_sym_cmd_identifier_token12] = ACTIONS(1963), - [aux_sym_cmd_identifier_token13] = ACTIONS(1963), - [aux_sym_cmd_identifier_token14] = ACTIONS(1963), - [aux_sym_cmd_identifier_token15] = ACTIONS(1963), - [aux_sym_cmd_identifier_token16] = ACTIONS(1965), - [aux_sym_cmd_identifier_token17] = ACTIONS(1965), - [aux_sym_cmd_identifier_token18] = ACTIONS(1965), - [aux_sym_cmd_identifier_token19] = ACTIONS(1965), - [aux_sym_cmd_identifier_token20] = ACTIONS(1965), - [aux_sym_cmd_identifier_token21] = ACTIONS(1965), - [aux_sym_cmd_identifier_token22] = ACTIONS(1965), - [aux_sym_cmd_identifier_token23] = ACTIONS(1965), - [aux_sym_cmd_identifier_token24] = ACTIONS(1965), - [aux_sym_cmd_identifier_token25] = ACTIONS(1965), - [aux_sym_cmd_identifier_token26] = ACTIONS(1965), - [aux_sym_cmd_identifier_token27] = ACTIONS(1965), - [aux_sym_cmd_identifier_token28] = ACTIONS(1965), - [aux_sym_cmd_identifier_token29] = ACTIONS(1965), - [aux_sym_cmd_identifier_token30] = ACTIONS(1965), - [aux_sym_cmd_identifier_token31] = ACTIONS(1965), - [aux_sym_cmd_identifier_token32] = ACTIONS(1965), - [aux_sym_cmd_identifier_token33] = ACTIONS(1965), - [aux_sym_cmd_identifier_token34] = ACTIONS(1963), - [aux_sym_cmd_identifier_token35] = ACTIONS(1965), - [aux_sym_cmd_identifier_token36] = ACTIONS(1965), - [aux_sym_cmd_identifier_token37] = ACTIONS(1965), - [aux_sym_cmd_identifier_token38] = ACTIONS(1963), - [aux_sym_cmd_identifier_token39] = ACTIONS(1965), - [aux_sym_cmd_identifier_token40] = ACTIONS(1965), - [anon_sym_def] = ACTIONS(1963), - [anon_sym_export_DASHenv] = ACTIONS(1963), - [anon_sym_extern] = ACTIONS(1963), - [anon_sym_module] = ACTIONS(1963), - [anon_sym_use] = ACTIONS(1963), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_COMMA] = ACTIONS(1965), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_error] = ACTIONS(1963), - [anon_sym_DASH2] = ACTIONS(1963), - [anon_sym_break] = ACTIONS(1963), - [anon_sym_continue] = ACTIONS(1963), - [anon_sym_for] = ACTIONS(1963), - [anon_sym_in2] = ACTIONS(1963), - [anon_sym_loop] = ACTIONS(1963), - [anon_sym_make] = ACTIONS(1963), - [anon_sym_while] = ACTIONS(1963), - [anon_sym_do] = ACTIONS(1963), - [anon_sym_if] = ACTIONS(1963), - [anon_sym_else] = ACTIONS(1963), - [anon_sym_match] = ACTIONS(1963), - [anon_sym_RBRACE] = ACTIONS(1965), - [anon_sym_try] = ACTIONS(1963), - [anon_sym_catch] = ACTIONS(1963), - [anon_sym_return] = ACTIONS(1963), - [anon_sym_source] = ACTIONS(1963), - [anon_sym_source_DASHenv] = ACTIONS(1963), - [anon_sym_hide] = ACTIONS(1963), - [anon_sym_hide_DASHenv] = ACTIONS(1963), - [anon_sym_overlay] = ACTIONS(1963), - [anon_sym_as] = ACTIONS(1963), - [anon_sym_PLUS2] = ACTIONS(1963), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1965), - [anon_sym_DOT_DOT2] = ACTIONS(1963), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1965), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1965), - [aux_sym__val_number_decimal_token1] = ACTIONS(1963), - [aux_sym__val_number_decimal_token2] = ACTIONS(1965), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), - [aux_sym__val_number_token1] = ACTIONS(1965), - [aux_sym__val_number_token2] = ACTIONS(1965), - [aux_sym__val_number_token3] = ACTIONS(1965), - [aux_sym__val_number_token4] = ACTIONS(1963), - [aux_sym__val_number_token5] = ACTIONS(1963), - [aux_sym__val_number_token6] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [sym__str_single_quotes] = ACTIONS(1965), - [sym__str_back_ticks] = ACTIONS(1965), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1965), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1965), - [anon_sym_register] = ACTIONS(1963), + [552] = { + [sym_comment] = STATE(552), + [anon_sym_export] = ACTIONS(974), + [anon_sym_alias] = ACTIONS(974), + [anon_sym_let] = ACTIONS(974), + [anon_sym_let_DASHenv] = ACTIONS(974), + [anon_sym_mut] = ACTIONS(974), + [anon_sym_const] = ACTIONS(974), + [aux_sym_cmd_identifier_token1] = ACTIONS(974), + [aux_sym_cmd_identifier_token2] = ACTIONS(974), + [aux_sym_cmd_identifier_token3] = ACTIONS(974), + [aux_sym_cmd_identifier_token4] = ACTIONS(974), + [aux_sym_cmd_identifier_token5] = ACTIONS(974), + [aux_sym_cmd_identifier_token6] = ACTIONS(974), + [aux_sym_cmd_identifier_token7] = ACTIONS(974), + [aux_sym_cmd_identifier_token8] = ACTIONS(974), + [aux_sym_cmd_identifier_token9] = ACTIONS(974), + [aux_sym_cmd_identifier_token10] = ACTIONS(974), + [aux_sym_cmd_identifier_token11] = ACTIONS(974), + [aux_sym_cmd_identifier_token12] = ACTIONS(974), + [aux_sym_cmd_identifier_token13] = ACTIONS(974), + [aux_sym_cmd_identifier_token14] = ACTIONS(974), + [aux_sym_cmd_identifier_token15] = ACTIONS(974), + [aux_sym_cmd_identifier_token16] = ACTIONS(974), + [aux_sym_cmd_identifier_token17] = ACTIONS(974), + [aux_sym_cmd_identifier_token18] = ACTIONS(974), + [aux_sym_cmd_identifier_token19] = ACTIONS(974), + [aux_sym_cmd_identifier_token20] = ACTIONS(974), + [aux_sym_cmd_identifier_token21] = ACTIONS(974), + [aux_sym_cmd_identifier_token22] = ACTIONS(974), + [aux_sym_cmd_identifier_token23] = ACTIONS(974), + [aux_sym_cmd_identifier_token24] = ACTIONS(974), + [aux_sym_cmd_identifier_token25] = ACTIONS(974), + [aux_sym_cmd_identifier_token26] = ACTIONS(974), + [aux_sym_cmd_identifier_token27] = ACTIONS(974), + [aux_sym_cmd_identifier_token28] = ACTIONS(974), + [aux_sym_cmd_identifier_token29] = ACTIONS(974), + [aux_sym_cmd_identifier_token30] = ACTIONS(974), + [aux_sym_cmd_identifier_token31] = ACTIONS(974), + [aux_sym_cmd_identifier_token32] = ACTIONS(974), + [aux_sym_cmd_identifier_token33] = ACTIONS(974), + [aux_sym_cmd_identifier_token34] = ACTIONS(974), + [aux_sym_cmd_identifier_token35] = ACTIONS(974), + [aux_sym_cmd_identifier_token36] = ACTIONS(974), + [aux_sym_cmd_identifier_token37] = ACTIONS(974), + [aux_sym_cmd_identifier_token38] = ACTIONS(974), + [aux_sym_cmd_identifier_token39] = ACTIONS(974), + [aux_sym_cmd_identifier_token40] = ACTIONS(974), + [anon_sym_def] = ACTIONS(974), + [anon_sym_export_DASHenv] = ACTIONS(974), + [anon_sym_extern] = ACTIONS(974), + [anon_sym_module] = ACTIONS(974), + [anon_sym_use] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(974), + [anon_sym_COMMA] = ACTIONS(974), + [anon_sym_DOLLAR] = ACTIONS(974), + [anon_sym_error] = ACTIONS(974), + [anon_sym_DASH2] = ACTIONS(974), + [anon_sym_break] = ACTIONS(974), + [anon_sym_continue] = ACTIONS(974), + [anon_sym_for] = ACTIONS(974), + [anon_sym_in2] = ACTIONS(974), + [anon_sym_loop] = ACTIONS(974), + [anon_sym_make] = ACTIONS(974), + [anon_sym_while] = ACTIONS(974), + [anon_sym_do] = ACTIONS(974), + [anon_sym_if] = ACTIONS(974), + [anon_sym_else] = ACTIONS(974), + [anon_sym_match] = ACTIONS(974), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_try] = ACTIONS(974), + [anon_sym_catch] = ACTIONS(974), + [anon_sym_return] = ACTIONS(974), + [anon_sym_source] = ACTIONS(974), + [anon_sym_source_DASHenv] = ACTIONS(974), + [anon_sym_hide] = ACTIONS(974), + [anon_sym_hide_DASHenv] = ACTIONS(974), + [anon_sym_overlay] = ACTIONS(974), + [anon_sym_as] = ACTIONS(974), + [anon_sym_PLUS2] = ACTIONS(974), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(974), + [aux_sym__val_number_decimal_token1] = ACTIONS(974), + [aux_sym__val_number_decimal_token2] = ACTIONS(974), + [aux_sym__val_number_decimal_token3] = ACTIONS(974), + [aux_sym__val_number_decimal_token4] = ACTIONS(974), + [aux_sym__val_number_token1] = ACTIONS(974), + [aux_sym__val_number_token2] = ACTIONS(974), + [aux_sym__val_number_token3] = ACTIONS(974), + [aux_sym__val_number_token4] = ACTIONS(974), + [aux_sym__val_number_token5] = ACTIONS(974), + [aux_sym__val_number_token6] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym__str_single_quotes] = ACTIONS(974), + [sym__str_back_ticks] = ACTIONS(974), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(974), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(974), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(974), + [sym__entry_separator] = ACTIONS(976), + [anon_sym_register] = ACTIONS(974), + [anon_sym_DOT2] = ACTIONS(974), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(976), + }, + [553] = { + [sym_comment] = STATE(553), + [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(978), + [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_hide] = ACTIONS(978), + [anon_sym_hide_DASHenv] = ACTIONS(978), + [anon_sym_overlay] = ACTIONS(978), + [anon_sym_as] = ACTIONS(978), + [anon_sym_PLUS2] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(980), + [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_DOLLAR_SQUOTE] = ACTIONS(980), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(980), + [anon_sym_register] = ACTIONS(978), + [anon_sym_COLON2] = ACTIONS(980), + [anon_sym_DOT2] = ACTIONS(978), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1965), + [sym_raw_string_begin] = ACTIONS(980), }, - [536] = { - [sym_comment] = STATE(536), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_alias] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_let_DASHenv] = ACTIONS(1711), - [anon_sym_mut] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [aux_sym_cmd_identifier_token1] = ACTIONS(1711), - [aux_sym_cmd_identifier_token2] = ACTIONS(1713), - [aux_sym_cmd_identifier_token3] = ACTIONS(1713), - [aux_sym_cmd_identifier_token4] = ACTIONS(1713), - [aux_sym_cmd_identifier_token5] = ACTIONS(1713), - [aux_sym_cmd_identifier_token6] = ACTIONS(1713), - [aux_sym_cmd_identifier_token7] = ACTIONS(1713), - [aux_sym_cmd_identifier_token8] = ACTIONS(1711), - [aux_sym_cmd_identifier_token9] = ACTIONS(1711), - [aux_sym_cmd_identifier_token10] = ACTIONS(1713), - [aux_sym_cmd_identifier_token11] = ACTIONS(1713), - [aux_sym_cmd_identifier_token12] = ACTIONS(1711), - [aux_sym_cmd_identifier_token13] = ACTIONS(1711), - [aux_sym_cmd_identifier_token14] = ACTIONS(1711), - [aux_sym_cmd_identifier_token15] = ACTIONS(1711), - [aux_sym_cmd_identifier_token16] = ACTIONS(1713), - [aux_sym_cmd_identifier_token17] = ACTIONS(1713), - [aux_sym_cmd_identifier_token18] = ACTIONS(1713), - [aux_sym_cmd_identifier_token19] = ACTIONS(1713), - [aux_sym_cmd_identifier_token20] = ACTIONS(1713), - [aux_sym_cmd_identifier_token21] = ACTIONS(1713), - [aux_sym_cmd_identifier_token22] = ACTIONS(1713), - [aux_sym_cmd_identifier_token23] = ACTIONS(1713), - [aux_sym_cmd_identifier_token24] = ACTIONS(1713), - [aux_sym_cmd_identifier_token25] = ACTIONS(1713), - [aux_sym_cmd_identifier_token26] = ACTIONS(1713), - [aux_sym_cmd_identifier_token27] = ACTIONS(1713), - [aux_sym_cmd_identifier_token28] = ACTIONS(1713), - [aux_sym_cmd_identifier_token29] = ACTIONS(1713), - [aux_sym_cmd_identifier_token30] = ACTIONS(1713), - [aux_sym_cmd_identifier_token31] = ACTIONS(1713), - [aux_sym_cmd_identifier_token32] = ACTIONS(1713), - [aux_sym_cmd_identifier_token33] = ACTIONS(1713), - [aux_sym_cmd_identifier_token34] = ACTIONS(1711), - [aux_sym_cmd_identifier_token35] = ACTIONS(1713), - [aux_sym_cmd_identifier_token36] = ACTIONS(1713), - [aux_sym_cmd_identifier_token37] = ACTIONS(1713), - [aux_sym_cmd_identifier_token38] = ACTIONS(1711), - [aux_sym_cmd_identifier_token39] = ACTIONS(1713), - [aux_sym_cmd_identifier_token40] = ACTIONS(1713), - [anon_sym_def] = ACTIONS(1711), - [anon_sym_export_DASHenv] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_use] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_COMMA] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_error] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_loop] = ACTIONS(1711), - [anon_sym_make] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_catch] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_source] = ACTIONS(1711), - [anon_sym_source_DASHenv] = ACTIONS(1711), - [anon_sym_hide] = ACTIONS(1711), - [anon_sym_hide_DASHenv] = ACTIONS(1711), - [anon_sym_overlay] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1713), - [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(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1711), - [aux_sym__val_number_token5] = ACTIONS(1711), - [aux_sym__val_number_token6] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1713), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1713), + [554] = { + [sym__expr_parenthesized_immediate] = STATE(6928), + [sym_comment] = STATE(554), + [anon_sym_export] = ACTIONS(1997), + [anon_sym_alias] = ACTIONS(1997), + [anon_sym_let] = ACTIONS(1997), + [anon_sym_let_DASHenv] = ACTIONS(1997), + [anon_sym_mut] = ACTIONS(1997), + [anon_sym_const] = ACTIONS(1997), + [aux_sym_cmd_identifier_token1] = ACTIONS(1997), + [aux_sym_cmd_identifier_token2] = ACTIONS(1999), + [aux_sym_cmd_identifier_token3] = ACTIONS(1999), + [aux_sym_cmd_identifier_token4] = ACTIONS(1999), + [aux_sym_cmd_identifier_token5] = ACTIONS(1999), + [aux_sym_cmd_identifier_token6] = ACTIONS(1999), + [aux_sym_cmd_identifier_token7] = ACTIONS(1999), + [aux_sym_cmd_identifier_token8] = ACTIONS(1997), + [aux_sym_cmd_identifier_token9] = ACTIONS(1997), + [aux_sym_cmd_identifier_token10] = ACTIONS(1999), + [aux_sym_cmd_identifier_token11] = ACTIONS(1999), + [aux_sym_cmd_identifier_token12] = ACTIONS(1997), + [aux_sym_cmd_identifier_token13] = ACTIONS(1997), + [aux_sym_cmd_identifier_token14] = ACTIONS(1997), + [aux_sym_cmd_identifier_token15] = ACTIONS(1997), + [aux_sym_cmd_identifier_token16] = ACTIONS(1999), + [aux_sym_cmd_identifier_token17] = ACTIONS(1999), + [aux_sym_cmd_identifier_token18] = ACTIONS(1999), + [aux_sym_cmd_identifier_token19] = ACTIONS(1999), + [aux_sym_cmd_identifier_token20] = ACTIONS(1999), + [aux_sym_cmd_identifier_token21] = ACTIONS(1999), + [aux_sym_cmd_identifier_token22] = ACTIONS(1999), + [aux_sym_cmd_identifier_token23] = ACTIONS(1999), + [aux_sym_cmd_identifier_token24] = ACTIONS(1999), + [aux_sym_cmd_identifier_token25] = ACTIONS(1999), + [aux_sym_cmd_identifier_token26] = ACTIONS(1999), + [aux_sym_cmd_identifier_token27] = ACTIONS(1999), + [aux_sym_cmd_identifier_token28] = ACTIONS(1999), + [aux_sym_cmd_identifier_token29] = ACTIONS(1999), + [aux_sym_cmd_identifier_token30] = ACTIONS(1999), + [aux_sym_cmd_identifier_token31] = ACTIONS(1999), + [aux_sym_cmd_identifier_token32] = ACTIONS(1999), + [aux_sym_cmd_identifier_token33] = ACTIONS(1999), + [aux_sym_cmd_identifier_token34] = ACTIONS(1997), + [aux_sym_cmd_identifier_token35] = ACTIONS(1999), + [aux_sym_cmd_identifier_token36] = ACTIONS(1999), + [aux_sym_cmd_identifier_token37] = ACTIONS(1999), + [aux_sym_cmd_identifier_token38] = ACTIONS(1997), + [aux_sym_cmd_identifier_token39] = ACTIONS(1999), + [aux_sym_cmd_identifier_token40] = ACTIONS(1999), + [anon_sym_def] = ACTIONS(1997), + [anon_sym_export_DASHenv] = ACTIONS(1997), + [anon_sym_extern] = ACTIONS(1997), + [anon_sym_module] = ACTIONS(1997), + [anon_sym_use] = ACTIONS(1997), + [anon_sym_LPAREN] = ACTIONS(1997), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(1997), + [anon_sym_error] = ACTIONS(1997), + [anon_sym_DASH2] = ACTIONS(1997), + [anon_sym_break] = ACTIONS(1997), + [anon_sym_continue] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1997), + [anon_sym_in2] = ACTIONS(1997), + [anon_sym_loop] = ACTIONS(1997), + [anon_sym_make] = ACTIONS(1997), + [anon_sym_while] = ACTIONS(1997), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_if] = ACTIONS(1997), + [anon_sym_else] = ACTIONS(1997), + [anon_sym_match] = ACTIONS(1997), + [anon_sym_RBRACE] = ACTIONS(1999), + [anon_sym_try] = ACTIONS(1997), + [anon_sym_catch] = ACTIONS(1997), + [anon_sym_return] = ACTIONS(1997), + [anon_sym_source] = ACTIONS(1997), + [anon_sym_source_DASHenv] = ACTIONS(1997), + [anon_sym_hide] = ACTIONS(1997), + [anon_sym_hide_DASHenv] = ACTIONS(1997), + [anon_sym_overlay] = ACTIONS(1997), + [anon_sym_as] = ACTIONS(1997), + [anon_sym_LPAREN2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(1997), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1999), + [aux_sym__val_number_decimal_token1] = ACTIONS(1997), + [aux_sym__val_number_decimal_token2] = ACTIONS(1999), + [aux_sym__val_number_decimal_token3] = ACTIONS(1999), + [aux_sym__val_number_decimal_token4] = ACTIONS(1999), + [aux_sym__val_number_token1] = ACTIONS(1999), + [aux_sym__val_number_token2] = ACTIONS(1999), + [aux_sym__val_number_token3] = ACTIONS(1999), + [aux_sym__val_number_token4] = ACTIONS(1997), + [aux_sym__val_number_token5] = ACTIONS(1997), + [aux_sym__val_number_token6] = ACTIONS(1997), + [anon_sym_DQUOTE] = ACTIONS(1999), + [sym__str_single_quotes] = ACTIONS(1999), + [sym__str_back_ticks] = ACTIONS(1999), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1999), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1999), + [anon_sym_register] = ACTIONS(1997), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1999), }, - [537] = { - [sym_comment] = STATE(537), - [anon_sym_export] = ACTIONS(1967), - [anon_sym_alias] = ACTIONS(1967), - [anon_sym_let] = ACTIONS(1967), - [anon_sym_let_DASHenv] = ACTIONS(1967), - [anon_sym_mut] = ACTIONS(1967), - [anon_sym_const] = ACTIONS(1967), - [aux_sym_cmd_identifier_token1] = ACTIONS(1967), - [aux_sym_cmd_identifier_token2] = ACTIONS(1969), - [aux_sym_cmd_identifier_token3] = ACTIONS(1969), - [aux_sym_cmd_identifier_token4] = ACTIONS(1969), - [aux_sym_cmd_identifier_token5] = ACTIONS(1969), - [aux_sym_cmd_identifier_token6] = ACTIONS(1969), - [aux_sym_cmd_identifier_token7] = ACTIONS(1969), - [aux_sym_cmd_identifier_token8] = ACTIONS(1967), - [aux_sym_cmd_identifier_token9] = ACTIONS(1967), - [aux_sym_cmd_identifier_token10] = ACTIONS(1969), - [aux_sym_cmd_identifier_token11] = ACTIONS(1969), - [aux_sym_cmd_identifier_token12] = ACTIONS(1967), - [aux_sym_cmd_identifier_token13] = ACTIONS(1967), - [aux_sym_cmd_identifier_token14] = ACTIONS(1967), - [aux_sym_cmd_identifier_token15] = ACTIONS(1967), - [aux_sym_cmd_identifier_token16] = ACTIONS(1969), - [aux_sym_cmd_identifier_token17] = ACTIONS(1969), - [aux_sym_cmd_identifier_token18] = ACTIONS(1969), - [aux_sym_cmd_identifier_token19] = ACTIONS(1969), - [aux_sym_cmd_identifier_token20] = ACTIONS(1969), - [aux_sym_cmd_identifier_token21] = ACTIONS(1969), - [aux_sym_cmd_identifier_token22] = ACTIONS(1969), - [aux_sym_cmd_identifier_token23] = ACTIONS(1969), - [aux_sym_cmd_identifier_token24] = ACTIONS(1969), - [aux_sym_cmd_identifier_token25] = ACTIONS(1969), - [aux_sym_cmd_identifier_token26] = ACTIONS(1969), - [aux_sym_cmd_identifier_token27] = ACTIONS(1969), - [aux_sym_cmd_identifier_token28] = ACTIONS(1969), - [aux_sym_cmd_identifier_token29] = ACTIONS(1969), - [aux_sym_cmd_identifier_token30] = ACTIONS(1969), - [aux_sym_cmd_identifier_token31] = ACTIONS(1969), - [aux_sym_cmd_identifier_token32] = ACTIONS(1969), - [aux_sym_cmd_identifier_token33] = ACTIONS(1969), - [aux_sym_cmd_identifier_token34] = ACTIONS(1967), - [aux_sym_cmd_identifier_token35] = ACTIONS(1969), - [aux_sym_cmd_identifier_token36] = ACTIONS(1969), - [aux_sym_cmd_identifier_token37] = ACTIONS(1969), - [aux_sym_cmd_identifier_token38] = ACTIONS(1967), - [aux_sym_cmd_identifier_token39] = ACTIONS(1969), - [aux_sym_cmd_identifier_token40] = ACTIONS(1969), - [anon_sym_def] = ACTIONS(1967), - [anon_sym_export_DASHenv] = ACTIONS(1967), - [anon_sym_extern] = ACTIONS(1967), - [anon_sym_module] = ACTIONS(1967), - [anon_sym_use] = ACTIONS(1967), - [anon_sym_LPAREN] = ACTIONS(1969), - [anon_sym_COMMA] = ACTIONS(1969), - [anon_sym_DOLLAR] = ACTIONS(1967), - [anon_sym_error] = ACTIONS(1967), - [anon_sym_DASH2] = ACTIONS(1967), - [anon_sym_break] = ACTIONS(1967), - [anon_sym_continue] = ACTIONS(1967), - [anon_sym_for] = ACTIONS(1967), - [anon_sym_in2] = ACTIONS(1967), - [anon_sym_loop] = ACTIONS(1967), - [anon_sym_make] = ACTIONS(1967), - [anon_sym_while] = ACTIONS(1967), - [anon_sym_do] = ACTIONS(1967), - [anon_sym_if] = ACTIONS(1967), - [anon_sym_else] = ACTIONS(1967), - [anon_sym_match] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(1969), - [anon_sym_try] = ACTIONS(1967), - [anon_sym_catch] = ACTIONS(1967), - [anon_sym_return] = ACTIONS(1967), - [anon_sym_source] = ACTIONS(1967), - [anon_sym_source_DASHenv] = ACTIONS(1967), - [anon_sym_hide] = ACTIONS(1967), - [anon_sym_hide_DASHenv] = ACTIONS(1967), - [anon_sym_overlay] = ACTIONS(1967), - [anon_sym_as] = ACTIONS(1967), - [anon_sym_PLUS2] = ACTIONS(1967), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1969), - [anon_sym_DOT_DOT2] = ACTIONS(1967), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1969), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1969), - [aux_sym__val_number_decimal_token1] = ACTIONS(1967), - [aux_sym__val_number_decimal_token2] = ACTIONS(1969), - [aux_sym__val_number_decimal_token3] = ACTIONS(1969), - [aux_sym__val_number_decimal_token4] = ACTIONS(1969), - [aux_sym__val_number_token1] = ACTIONS(1969), - [aux_sym__val_number_token2] = ACTIONS(1969), - [aux_sym__val_number_token3] = ACTIONS(1969), - [aux_sym__val_number_token4] = ACTIONS(1967), - [aux_sym__val_number_token5] = ACTIONS(1967), - [aux_sym__val_number_token6] = ACTIONS(1967), - [anon_sym_DQUOTE] = ACTIONS(1969), - [sym__str_single_quotes] = ACTIONS(1969), - [sym__str_back_ticks] = ACTIONS(1969), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1969), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1969), - [anon_sym_register] = ACTIONS(1967), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1969), + [555] = { + [sym_comment] = STATE(555), + [anon_sym_export] = ACTIONS(2162), + [anon_sym_alias] = ACTIONS(2162), + [anon_sym_let] = ACTIONS(2162), + [anon_sym_let_DASHenv] = ACTIONS(2162), + [anon_sym_mut] = ACTIONS(2162), + [anon_sym_const] = ACTIONS(2162), + [aux_sym_cmd_identifier_token1] = ACTIONS(2162), + [aux_sym_cmd_identifier_token2] = ACTIONS(2162), + [aux_sym_cmd_identifier_token3] = ACTIONS(2162), + [aux_sym_cmd_identifier_token4] = ACTIONS(2162), + [aux_sym_cmd_identifier_token5] = ACTIONS(2162), + [aux_sym_cmd_identifier_token6] = ACTIONS(2162), + [aux_sym_cmd_identifier_token7] = ACTIONS(2162), + [aux_sym_cmd_identifier_token8] = ACTIONS(2162), + [aux_sym_cmd_identifier_token9] = ACTIONS(2162), + [aux_sym_cmd_identifier_token10] = ACTIONS(2162), + [aux_sym_cmd_identifier_token11] = ACTIONS(2162), + [aux_sym_cmd_identifier_token12] = ACTIONS(2162), + [aux_sym_cmd_identifier_token13] = ACTIONS(2162), + [aux_sym_cmd_identifier_token14] = ACTIONS(2162), + [aux_sym_cmd_identifier_token15] = ACTIONS(2162), + [aux_sym_cmd_identifier_token16] = ACTIONS(2162), + [aux_sym_cmd_identifier_token17] = ACTIONS(2162), + [aux_sym_cmd_identifier_token18] = ACTIONS(2162), + [aux_sym_cmd_identifier_token19] = ACTIONS(2162), + [aux_sym_cmd_identifier_token20] = ACTIONS(2162), + [aux_sym_cmd_identifier_token21] = ACTIONS(2162), + [aux_sym_cmd_identifier_token22] = ACTIONS(2162), + [aux_sym_cmd_identifier_token23] = ACTIONS(2162), + [aux_sym_cmd_identifier_token24] = ACTIONS(2162), + [aux_sym_cmd_identifier_token25] = ACTIONS(2162), + [aux_sym_cmd_identifier_token26] = ACTIONS(2162), + [aux_sym_cmd_identifier_token27] = ACTIONS(2162), + [aux_sym_cmd_identifier_token28] = ACTIONS(2162), + [aux_sym_cmd_identifier_token29] = ACTIONS(2162), + [aux_sym_cmd_identifier_token30] = ACTIONS(2162), + [aux_sym_cmd_identifier_token31] = ACTIONS(2162), + [aux_sym_cmd_identifier_token32] = ACTIONS(2162), + [aux_sym_cmd_identifier_token33] = ACTIONS(2162), + [aux_sym_cmd_identifier_token34] = ACTIONS(2162), + [aux_sym_cmd_identifier_token35] = ACTIONS(2162), + [aux_sym_cmd_identifier_token36] = ACTIONS(2162), + [aux_sym_cmd_identifier_token37] = ACTIONS(2162), + [aux_sym_cmd_identifier_token38] = ACTIONS(2162), + [aux_sym_cmd_identifier_token39] = ACTIONS(2162), + [aux_sym_cmd_identifier_token40] = ACTIONS(2162), + [anon_sym_def] = ACTIONS(2162), + [anon_sym_export_DASHenv] = ACTIONS(2162), + [anon_sym_extern] = ACTIONS(2162), + [anon_sym_module] = ACTIONS(2162), + [anon_sym_use] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(2162), + [anon_sym_COMMA] = ACTIONS(2166), + [anon_sym_DOLLAR] = ACTIONS(2162), + [anon_sym_error] = ACTIONS(2162), + [anon_sym_DASH2] = ACTIONS(2162), + [anon_sym_break] = ACTIONS(2162), + [anon_sym_continue] = ACTIONS(2162), + [anon_sym_for] = ACTIONS(2162), + [anon_sym_in2] = ACTIONS(2162), + [anon_sym_loop] = ACTIONS(2162), + [anon_sym_make] = ACTIONS(2162), + [anon_sym_while] = ACTIONS(2162), + [anon_sym_do] = ACTIONS(2162), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_else] = ACTIONS(2162), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_try] = ACTIONS(2162), + [anon_sym_catch] = ACTIONS(2162), + [anon_sym_return] = ACTIONS(2162), + [anon_sym_source] = ACTIONS(2162), + [anon_sym_source_DASHenv] = ACTIONS(2162), + [anon_sym_hide] = ACTIONS(2162), + [anon_sym_hide_DASHenv] = ACTIONS(2162), + [anon_sym_overlay] = ACTIONS(2162), + [anon_sym_as] = ACTIONS(2162), + [anon_sym_LPAREN2] = ACTIONS(2164), + [anon_sym_PLUS2] = ACTIONS(2162), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2166), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2162), + [aux_sym__val_number_decimal_token1] = ACTIONS(2162), + [aux_sym__val_number_decimal_token2] = ACTIONS(2162), + [aux_sym__val_number_decimal_token3] = ACTIONS(2162), + [aux_sym__val_number_decimal_token4] = ACTIONS(2162), + [aux_sym__val_number_token1] = ACTIONS(2162), + [aux_sym__val_number_token2] = ACTIONS(2162), + [aux_sym__val_number_token3] = ACTIONS(2162), + [aux_sym__val_number_token4] = ACTIONS(2162), + [aux_sym__val_number_token5] = ACTIONS(2162), + [aux_sym__val_number_token6] = ACTIONS(2162), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym__str_single_quotes] = ACTIONS(2166), + [sym__str_back_ticks] = ACTIONS(2166), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2166), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2166), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2166), + [anon_sym_register] = ACTIONS(2162), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2168), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2166), }, - [538] = { - [sym_comment] = STATE(538), + [556] = { + [sym_comment] = STATE(556), + [anon_sym_export] = ACTIONS(1686), + [anon_sym_alias] = ACTIONS(1686), + [anon_sym_let] = ACTIONS(1686), + [anon_sym_let_DASHenv] = ACTIONS(1686), + [anon_sym_mut] = ACTIONS(1686), + [anon_sym_const] = ACTIONS(1686), + [aux_sym_cmd_identifier_token1] = ACTIONS(1686), + [aux_sym_cmd_identifier_token2] = ACTIONS(1688), + [aux_sym_cmd_identifier_token3] = ACTIONS(1688), + [aux_sym_cmd_identifier_token4] = ACTIONS(1688), + [aux_sym_cmd_identifier_token5] = ACTIONS(1688), + [aux_sym_cmd_identifier_token6] = ACTIONS(1688), + [aux_sym_cmd_identifier_token7] = ACTIONS(1688), + [aux_sym_cmd_identifier_token8] = ACTIONS(1686), + [aux_sym_cmd_identifier_token9] = ACTIONS(1686), + [aux_sym_cmd_identifier_token10] = ACTIONS(1688), + [aux_sym_cmd_identifier_token11] = ACTIONS(1688), + [aux_sym_cmd_identifier_token12] = ACTIONS(1686), + [aux_sym_cmd_identifier_token13] = ACTIONS(1686), + [aux_sym_cmd_identifier_token14] = ACTIONS(1686), + [aux_sym_cmd_identifier_token15] = ACTIONS(1686), + [aux_sym_cmd_identifier_token16] = ACTIONS(1688), + [aux_sym_cmd_identifier_token17] = ACTIONS(1688), + [aux_sym_cmd_identifier_token18] = ACTIONS(1688), + [aux_sym_cmd_identifier_token19] = ACTIONS(1688), + [aux_sym_cmd_identifier_token20] = ACTIONS(1688), + [aux_sym_cmd_identifier_token21] = ACTIONS(1688), + [aux_sym_cmd_identifier_token22] = ACTIONS(1688), + [aux_sym_cmd_identifier_token23] = ACTIONS(1688), + [aux_sym_cmd_identifier_token24] = ACTIONS(1688), + [aux_sym_cmd_identifier_token25] = ACTIONS(1688), + [aux_sym_cmd_identifier_token26] = ACTIONS(1688), + [aux_sym_cmd_identifier_token27] = ACTIONS(1688), + [aux_sym_cmd_identifier_token28] = ACTIONS(1688), + [aux_sym_cmd_identifier_token29] = ACTIONS(1688), + [aux_sym_cmd_identifier_token30] = ACTIONS(1688), + [aux_sym_cmd_identifier_token31] = ACTIONS(1688), + [aux_sym_cmd_identifier_token32] = ACTIONS(1688), + [aux_sym_cmd_identifier_token33] = ACTIONS(1688), + [aux_sym_cmd_identifier_token34] = ACTIONS(1686), + [aux_sym_cmd_identifier_token35] = ACTIONS(1688), + [aux_sym_cmd_identifier_token36] = ACTIONS(1688), + [aux_sym_cmd_identifier_token37] = ACTIONS(1688), + [aux_sym_cmd_identifier_token38] = ACTIONS(1686), + [aux_sym_cmd_identifier_token39] = ACTIONS(1688), + [aux_sym_cmd_identifier_token40] = ACTIONS(1688), + [anon_sym_def] = ACTIONS(1686), + [anon_sym_export_DASHenv] = ACTIONS(1686), + [anon_sym_extern] = ACTIONS(1686), + [anon_sym_module] = ACTIONS(1686), + [anon_sym_use] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_error] = ACTIONS(1686), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_break] = ACTIONS(1686), + [anon_sym_continue] = ACTIONS(1686), + [anon_sym_for] = ACTIONS(1686), + [anon_sym_in2] = ACTIONS(1686), + [anon_sym_loop] = ACTIONS(1686), + [anon_sym_make] = ACTIONS(1686), + [anon_sym_while] = ACTIONS(1686), + [anon_sym_do] = ACTIONS(1686), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_else] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_try] = ACTIONS(1686), + [anon_sym_catch] = ACTIONS(1686), + [anon_sym_return] = ACTIONS(1686), + [anon_sym_source] = ACTIONS(1686), + [anon_sym_source_DASHenv] = ACTIONS(1686), + [anon_sym_hide] = ACTIONS(1686), + [anon_sym_hide_DASHenv] = ACTIONS(1686), + [anon_sym_overlay] = ACTIONS(1686), + [anon_sym_as] = ACTIONS(1686), + [anon_sym_LPAREN2] = ACTIONS(1688), + [anon_sym_PLUS2] = ACTIONS(1686), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1688), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1688), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1688), + [aux_sym__val_number_decimal_token3] = ACTIONS(1688), + [aux_sym__val_number_decimal_token4] = ACTIONS(1688), + [aux_sym__val_number_token1] = ACTIONS(1688), + [aux_sym__val_number_token2] = ACTIONS(1688), + [aux_sym__val_number_token3] = ACTIONS(1688), + [aux_sym__val_number_token4] = ACTIONS(1686), + [aux_sym__val_number_token5] = ACTIONS(1686), + [aux_sym__val_number_token6] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [sym__str_single_quotes] = ACTIONS(1688), + [sym__str_back_ticks] = ACTIONS(1688), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1688), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1688), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1688), + [anon_sym_register] = ACTIONS(1686), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1688), + }, + [557] = { + [sym__expr_parenthesized_immediate] = STATE(6928), + [sym_comment] = STATE(557), [anon_sym_export] = ACTIONS(2001), [anon_sym_alias] = ACTIONS(2001), [anon_sym_let] = ACTIONS(2001), @@ -134235,7 +135065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(2001), [anon_sym_module] = ACTIONS(2001), [anon_sym_use] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_LPAREN] = ACTIONS(2001), [anon_sym_COMMA] = ACTIONS(2003), [anon_sym_DOLLAR] = ACTIONS(2001), [anon_sym_error] = ACTIONS(2001), @@ -134261,11 +135091,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(2001), [anon_sym_overlay] = ACTIONS(2001), [anon_sym_as] = ACTIONS(2001), + [anon_sym_LPAREN2] = ACTIONS(1618), [anon_sym_PLUS2] = ACTIONS(2001), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2003), - [anon_sym_DOT_DOT2] = ACTIONS(2001), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2003), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2003), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2003), [aux_sym__val_number_decimal_token1] = ACTIONS(2001), [aux_sym__val_number_decimal_token2] = ACTIONS(2003), @@ -134287,1268 +135115,945 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(2003), }, - [539] = { - [sym_comment] = STATE(539), - [anon_sym_export] = ACTIONS(1977), - [anon_sym_alias] = ACTIONS(1977), - [anon_sym_let] = ACTIONS(1977), - [anon_sym_let_DASHenv] = ACTIONS(1977), - [anon_sym_mut] = ACTIONS(1977), - [anon_sym_const] = ACTIONS(1977), - [aux_sym_cmd_identifier_token1] = ACTIONS(1977), - [aux_sym_cmd_identifier_token2] = ACTIONS(1983), - [aux_sym_cmd_identifier_token3] = ACTIONS(1983), - [aux_sym_cmd_identifier_token4] = ACTIONS(1983), - [aux_sym_cmd_identifier_token5] = ACTIONS(1983), - [aux_sym_cmd_identifier_token6] = ACTIONS(1983), - [aux_sym_cmd_identifier_token7] = ACTIONS(1983), - [aux_sym_cmd_identifier_token8] = ACTIONS(1977), - [aux_sym_cmd_identifier_token9] = ACTIONS(1977), - [aux_sym_cmd_identifier_token10] = ACTIONS(1983), - [aux_sym_cmd_identifier_token11] = ACTIONS(1983), - [aux_sym_cmd_identifier_token12] = ACTIONS(1977), - [aux_sym_cmd_identifier_token13] = ACTIONS(1977), - [aux_sym_cmd_identifier_token14] = ACTIONS(1977), - [aux_sym_cmd_identifier_token15] = ACTIONS(1977), - [aux_sym_cmd_identifier_token16] = ACTIONS(1983), - [aux_sym_cmd_identifier_token17] = ACTIONS(1983), - [aux_sym_cmd_identifier_token18] = ACTIONS(1983), - [aux_sym_cmd_identifier_token19] = ACTIONS(1983), - [aux_sym_cmd_identifier_token20] = ACTIONS(1983), - [aux_sym_cmd_identifier_token21] = ACTIONS(1983), - [aux_sym_cmd_identifier_token22] = ACTIONS(1983), - [aux_sym_cmd_identifier_token23] = ACTIONS(1983), - [aux_sym_cmd_identifier_token24] = ACTIONS(1983), - [aux_sym_cmd_identifier_token25] = ACTIONS(1983), - [aux_sym_cmd_identifier_token26] = ACTIONS(1983), - [aux_sym_cmd_identifier_token27] = ACTIONS(1983), - [aux_sym_cmd_identifier_token28] = ACTIONS(1983), - [aux_sym_cmd_identifier_token29] = ACTIONS(1983), - [aux_sym_cmd_identifier_token30] = ACTIONS(1983), - [aux_sym_cmd_identifier_token31] = ACTIONS(1983), - [aux_sym_cmd_identifier_token32] = ACTIONS(1983), - [aux_sym_cmd_identifier_token33] = ACTIONS(1983), - [aux_sym_cmd_identifier_token34] = ACTIONS(1977), - [aux_sym_cmd_identifier_token35] = ACTIONS(1983), - [aux_sym_cmd_identifier_token36] = ACTIONS(1983), - [aux_sym_cmd_identifier_token37] = ACTIONS(1983), - [aux_sym_cmd_identifier_token38] = ACTIONS(1977), - [aux_sym_cmd_identifier_token39] = ACTIONS(1983), - [aux_sym_cmd_identifier_token40] = ACTIONS(1983), - [anon_sym_def] = ACTIONS(1977), - [anon_sym_export_DASHenv] = ACTIONS(1977), - [anon_sym_extern] = ACTIONS(1977), - [anon_sym_module] = ACTIONS(1977), - [anon_sym_use] = ACTIONS(1977), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_COMMA] = ACTIONS(1983), - [anon_sym_DOLLAR] = ACTIONS(1977), - [anon_sym_error] = ACTIONS(1977), - [anon_sym_DASH2] = ACTIONS(1977), - [anon_sym_break] = ACTIONS(1977), - [anon_sym_continue] = ACTIONS(1977), - [anon_sym_for] = ACTIONS(1977), - [anon_sym_in2] = ACTIONS(1977), - [anon_sym_loop] = ACTIONS(1977), - [anon_sym_make] = ACTIONS(1977), - [anon_sym_while] = ACTIONS(1977), - [anon_sym_do] = ACTIONS(1977), - [anon_sym_if] = ACTIONS(1977), - [anon_sym_else] = ACTIONS(1977), - [anon_sym_match] = ACTIONS(1977), - [anon_sym_RBRACE] = ACTIONS(1983), - [anon_sym_try] = ACTIONS(1977), - [anon_sym_catch] = ACTIONS(1977), - [anon_sym_return] = ACTIONS(1977), - [anon_sym_source] = ACTIONS(1977), - [anon_sym_source_DASHenv] = ACTIONS(1977), - [anon_sym_hide] = ACTIONS(1977), - [anon_sym_hide_DASHenv] = ACTIONS(1977), - [anon_sym_overlay] = ACTIONS(1977), - [anon_sym_as] = ACTIONS(1977), - [anon_sym_PLUS2] = ACTIONS(1977), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1983), - [anon_sym_DOT_DOT2] = ACTIONS(2055), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2057), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2057), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1983), - [aux_sym__val_number_decimal_token1] = ACTIONS(1977), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1983), - [aux_sym__val_number_decimal_token4] = ACTIONS(1983), - [aux_sym__val_number_token1] = ACTIONS(1983), - [aux_sym__val_number_token2] = ACTIONS(1983), - [aux_sym__val_number_token3] = ACTIONS(1983), - [aux_sym__val_number_token4] = ACTIONS(1977), - [aux_sym__val_number_token5] = ACTIONS(1977), - [aux_sym__val_number_token6] = ACTIONS(1977), - [anon_sym_DQUOTE] = ACTIONS(1983), - [sym__str_single_quotes] = ACTIONS(1983), - [sym__str_back_ticks] = ACTIONS(1983), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1983), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1983), - [anon_sym_register] = ACTIONS(1977), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1983), - }, - [540] = { - [sym_expr_parenthesized] = STATE(4232), - [sym__spread_parenthesized] = STATE(4679), - [sym_val_range] = STATE(4686), - [sym__val_range] = STATE(7563), - [sym__val_range_with_end] = STATE(7481), - [sym__value] = STATE(4686), - [sym_val_nothing] = STATE(4706), - [sym_val_bool] = STATE(4357), - [sym__spread_variable] = STATE(4687), - [sym_val_variable] = STATE(4236), - [sym_val_number] = STATE(4706), - [sym__val_number_decimal] = STATE(3949), - [sym__val_number] = STATE(4709), - [sym_val_duration] = STATE(4706), - [sym_val_filesize] = STATE(4706), - [sym_val_binary] = STATE(4706), - [sym_val_string] = STATE(4706), - [sym__raw_str] = STATE(4077), - [sym__str_double_quotes] = STATE(4077), - [sym_val_interpolated] = STATE(4706), - [sym__inter_single_quotes] = STATE(4625), - [sym__inter_double_quotes] = STATE(4629), - [sym_val_list] = STATE(4706), - [sym__spread_list] = STATE(4679), - [sym_val_record] = STATE(4706), - [sym_val_table] = STATE(4706), - [sym_val_closure] = STATE(4706), - [sym__cmd_arg] = STATE(4692), - [sym_redirection] = STATE(4693), - [sym__flag] = STATE(4694), - [sym_short_flag] = STATE(4663), - [sym_long_flag] = STATE(4663), - [sym_unquoted] = STATE(4375), - [sym__unquoted_with_expr] = STATE(4697), - [sym__unquoted_anonymous_prefix] = STATE(7047), - [sym_comment] = STATE(540), - [sym__newline] = ACTIONS(2128), - [sym__space] = ACTIONS(2188), - [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(2130), - [anon_sym_LPAREN] = ACTIONS(2132), - [anon_sym_RPAREN] = ACTIONS(2128), - [anon_sym_DOLLAR] = ACTIONS(2134), - [anon_sym_DASH_DASH] = ACTIONS(2136), - [anon_sym_DASH2] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2128), - [anon_sym_DOT_DOT] = ACTIONS(2142), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2144), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2146), - [anon_sym_DOT_DOT_LT] = ACTIONS(2146), - [anon_sym_null] = ACTIONS(2148), - [anon_sym_true] = ACTIONS(2150), - [anon_sym_false] = ACTIONS(2150), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2152), - [aux_sym__val_number_decimal_token1] = ACTIONS(2154), - [aux_sym__val_number_decimal_token2] = ACTIONS(2154), - [aux_sym__val_number_decimal_token3] = ACTIONS(2156), - [aux_sym__val_number_decimal_token4] = ACTIONS(2158), - [aux_sym__val_number_token1] = ACTIONS(2160), - [aux_sym__val_number_token2] = ACTIONS(2160), - [aux_sym__val_number_token3] = ACTIONS(2160), - [aux_sym__val_number_token4] = ACTIONS(2162), - [aux_sym__val_number_token5] = ACTIONS(2162), - [aux_sym__val_number_token6] = ACTIONS(2162), - [anon_sym_0b] = ACTIONS(2164), - [anon_sym_0o] = ACTIONS(2166), - [anon_sym_0x] = ACTIONS(2166), - [sym_val_date] = ACTIONS(2168), - [anon_sym_DQUOTE] = ACTIONS(2170), - [sym__str_single_quotes] = ACTIONS(2172), - [sym__str_back_ticks] = ACTIONS(2172), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2174), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2176), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2178), - [anon_sym_err_GT] = ACTIONS(2182), - [anon_sym_out_GT] = ACTIONS(2182), - [anon_sym_e_GT] = ACTIONS(2182), - [anon_sym_o_GT] = ACTIONS(2182), - [anon_sym_err_PLUSout_GT] = ACTIONS(2182), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2182), - [anon_sym_o_PLUSe_GT] = ACTIONS(2182), - [anon_sym_e_PLUSo_GT] = ACTIONS(2182), - [anon_sym_err_GT_GT] = ACTIONS(2182), - [anon_sym_out_GT_GT] = ACTIONS(2182), - [anon_sym_e_GT_GT] = ACTIONS(2182), - [anon_sym_o_GT_GT] = ACTIONS(2182), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2182), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2182), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2182), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2182), - [aux_sym_unquoted_token1] = ACTIONS(2184), + [558] = { + [sym_comment] = STATE(558), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_alias] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_let_DASHenv] = ACTIONS(2244), + [anon_sym_mut] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [aux_sym_cmd_identifier_token1] = ACTIONS(2244), + [aux_sym_cmd_identifier_token2] = ACTIONS(2244), + [aux_sym_cmd_identifier_token3] = ACTIONS(2244), + [aux_sym_cmd_identifier_token4] = ACTIONS(2244), + [aux_sym_cmd_identifier_token5] = ACTIONS(2244), + [aux_sym_cmd_identifier_token6] = ACTIONS(2244), + [aux_sym_cmd_identifier_token7] = ACTIONS(2244), + [aux_sym_cmd_identifier_token8] = ACTIONS(2244), + [aux_sym_cmd_identifier_token9] = ACTIONS(2244), + [aux_sym_cmd_identifier_token10] = ACTIONS(2244), + [aux_sym_cmd_identifier_token11] = ACTIONS(2244), + [aux_sym_cmd_identifier_token12] = ACTIONS(2244), + [aux_sym_cmd_identifier_token13] = ACTIONS(2244), + [aux_sym_cmd_identifier_token14] = ACTIONS(2244), + [aux_sym_cmd_identifier_token15] = ACTIONS(2244), + [aux_sym_cmd_identifier_token16] = ACTIONS(2244), + [aux_sym_cmd_identifier_token17] = ACTIONS(2244), + [aux_sym_cmd_identifier_token18] = ACTIONS(2244), + [aux_sym_cmd_identifier_token19] = ACTIONS(2244), + [aux_sym_cmd_identifier_token20] = ACTIONS(2244), + [aux_sym_cmd_identifier_token21] = ACTIONS(2244), + [aux_sym_cmd_identifier_token22] = ACTIONS(2244), + [aux_sym_cmd_identifier_token23] = ACTIONS(2244), + [aux_sym_cmd_identifier_token24] = ACTIONS(2244), + [aux_sym_cmd_identifier_token25] = ACTIONS(2244), + [aux_sym_cmd_identifier_token26] = ACTIONS(2244), + [aux_sym_cmd_identifier_token27] = ACTIONS(2244), + [aux_sym_cmd_identifier_token28] = ACTIONS(2244), + [aux_sym_cmd_identifier_token29] = ACTIONS(2244), + [aux_sym_cmd_identifier_token30] = ACTIONS(2244), + [aux_sym_cmd_identifier_token31] = ACTIONS(2244), + [aux_sym_cmd_identifier_token32] = ACTIONS(2244), + [aux_sym_cmd_identifier_token33] = ACTIONS(2244), + [aux_sym_cmd_identifier_token34] = ACTIONS(2244), + [aux_sym_cmd_identifier_token35] = ACTIONS(2244), + [aux_sym_cmd_identifier_token36] = ACTIONS(2244), + [aux_sym_cmd_identifier_token37] = ACTIONS(2244), + [aux_sym_cmd_identifier_token38] = ACTIONS(2244), + [aux_sym_cmd_identifier_token39] = ACTIONS(2244), + [aux_sym_cmd_identifier_token40] = ACTIONS(2244), + [anon_sym_def] = ACTIONS(2244), + [anon_sym_export_DASHenv] = ACTIONS(2244), + [anon_sym_extern] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_use] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_COMMA] = ACTIONS(2244), + [anon_sym_DOLLAR] = ACTIONS(2244), + [anon_sym_error] = ACTIONS(2244), + [anon_sym_DASH2] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_in2] = ACTIONS(2244), + [anon_sym_loop] = ACTIONS(2244), + [anon_sym_make] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_else] = ACTIONS(2244), + [anon_sym_match] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_catch] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_source] = ACTIONS(2244), + [anon_sym_source_DASHenv] = ACTIONS(2244), + [anon_sym_hide] = ACTIONS(2244), + [anon_sym_hide_DASHenv] = ACTIONS(2244), + [anon_sym_overlay] = ACTIONS(2244), + [anon_sym_as] = ACTIONS(2244), + [anon_sym_LPAREN2] = ACTIONS(2246), + [anon_sym_PLUS2] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2244), + [aux_sym__val_number_decimal_token1] = ACTIONS(2244), + [aux_sym__val_number_decimal_token2] = ACTIONS(2244), + [aux_sym__val_number_decimal_token3] = ACTIONS(2244), + [aux_sym__val_number_decimal_token4] = ACTIONS(2244), + [aux_sym__val_number_token1] = ACTIONS(2244), + [aux_sym__val_number_token2] = ACTIONS(2244), + [aux_sym__val_number_token3] = ACTIONS(2244), + [aux_sym__val_number_token4] = ACTIONS(2244), + [aux_sym__val_number_token5] = ACTIONS(2244), + [aux_sym__val_number_token6] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [sym__str_single_quotes] = ACTIONS(2244), + [sym__str_back_ticks] = ACTIONS(2244), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2244), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2244), + [sym__entry_separator] = ACTIONS(2246), + [anon_sym_register] = ACTIONS(2244), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2186), + [sym_raw_string_begin] = ACTIONS(2246), }, - [541] = { - [sym_comment] = STATE(541), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_alias] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_let_DASHenv] = ACTIONS(1811), - [anon_sym_mut] = ACTIONS(1811), - [anon_sym_const] = ACTIONS(1811), - [aux_sym_cmd_identifier_token1] = ACTIONS(1811), - [aux_sym_cmd_identifier_token2] = ACTIONS(1811), - [aux_sym_cmd_identifier_token3] = ACTIONS(1811), - [aux_sym_cmd_identifier_token4] = ACTIONS(1811), - [aux_sym_cmd_identifier_token5] = ACTIONS(1811), - [aux_sym_cmd_identifier_token6] = ACTIONS(1811), - [aux_sym_cmd_identifier_token7] = ACTIONS(1811), - [aux_sym_cmd_identifier_token8] = ACTIONS(1811), - [aux_sym_cmd_identifier_token9] = ACTIONS(1811), - [aux_sym_cmd_identifier_token10] = ACTIONS(1811), - [aux_sym_cmd_identifier_token11] = ACTIONS(1811), - [aux_sym_cmd_identifier_token12] = ACTIONS(1811), - [aux_sym_cmd_identifier_token13] = ACTIONS(1811), - [aux_sym_cmd_identifier_token14] = ACTIONS(1811), - [aux_sym_cmd_identifier_token15] = ACTIONS(1811), - [aux_sym_cmd_identifier_token16] = ACTIONS(1811), - [aux_sym_cmd_identifier_token17] = ACTIONS(1811), - [aux_sym_cmd_identifier_token18] = ACTIONS(1811), - [aux_sym_cmd_identifier_token19] = ACTIONS(1811), - [aux_sym_cmd_identifier_token20] = ACTIONS(1811), - [aux_sym_cmd_identifier_token21] = ACTIONS(1811), - [aux_sym_cmd_identifier_token22] = ACTIONS(1811), - [aux_sym_cmd_identifier_token23] = ACTIONS(1811), - [aux_sym_cmd_identifier_token24] = ACTIONS(1811), - [aux_sym_cmd_identifier_token25] = ACTIONS(1811), - [aux_sym_cmd_identifier_token26] = ACTIONS(1811), - [aux_sym_cmd_identifier_token27] = ACTIONS(1811), - [aux_sym_cmd_identifier_token28] = ACTIONS(1811), - [aux_sym_cmd_identifier_token29] = ACTIONS(1811), - [aux_sym_cmd_identifier_token30] = ACTIONS(1811), - [aux_sym_cmd_identifier_token31] = ACTIONS(1811), - [aux_sym_cmd_identifier_token32] = ACTIONS(1811), - [aux_sym_cmd_identifier_token33] = ACTIONS(1811), - [aux_sym_cmd_identifier_token34] = ACTIONS(1811), - [aux_sym_cmd_identifier_token35] = ACTIONS(1811), - [aux_sym_cmd_identifier_token36] = ACTIONS(1811), - [aux_sym_cmd_identifier_token37] = ACTIONS(1811), - [aux_sym_cmd_identifier_token38] = ACTIONS(1811), - [aux_sym_cmd_identifier_token39] = ACTIONS(1811), - [aux_sym_cmd_identifier_token40] = ACTIONS(1811), - [anon_sym_def] = ACTIONS(1811), - [anon_sym_export_DASHenv] = ACTIONS(1811), - [anon_sym_extern] = ACTIONS(1811), - [anon_sym_module] = ACTIONS(1811), - [anon_sym_use] = ACTIONS(1811), - [anon_sym_LPAREN] = ACTIONS(1811), - [anon_sym_COMMA] = ACTIONS(1811), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_error] = ACTIONS(1811), - [anon_sym_DASH2] = ACTIONS(1811), - [anon_sym_break] = ACTIONS(1811), - [anon_sym_continue] = ACTIONS(1811), - [anon_sym_for] = ACTIONS(1811), - [anon_sym_in2] = ACTIONS(1811), - [anon_sym_loop] = ACTIONS(1811), - [anon_sym_make] = ACTIONS(1811), - [anon_sym_while] = ACTIONS(1811), - [anon_sym_do] = ACTIONS(1811), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_else] = ACTIONS(1811), - [anon_sym_match] = ACTIONS(1811), - [anon_sym_RBRACE] = ACTIONS(1811), - [anon_sym_try] = ACTIONS(1811), - [anon_sym_catch] = ACTIONS(1811), - [anon_sym_return] = ACTIONS(1811), - [anon_sym_source] = ACTIONS(1811), - [anon_sym_source_DASHenv] = ACTIONS(1811), - [anon_sym_hide] = ACTIONS(1811), - [anon_sym_hide_DASHenv] = ACTIONS(1811), - [anon_sym_overlay] = ACTIONS(1811), - [anon_sym_as] = ACTIONS(1811), - [anon_sym_LPAREN2] = ACTIONS(1813), - [anon_sym_PLUS2] = ACTIONS(1811), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1811), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1811), - [aux_sym__val_number_decimal_token1] = ACTIONS(1811), - [aux_sym__val_number_decimal_token2] = ACTIONS(1811), - [aux_sym__val_number_decimal_token3] = ACTIONS(1811), - [aux_sym__val_number_decimal_token4] = ACTIONS(1811), - [aux_sym__val_number_token1] = ACTIONS(1811), - [aux_sym__val_number_token2] = ACTIONS(1811), - [aux_sym__val_number_token3] = ACTIONS(1811), - [aux_sym__val_number_token4] = ACTIONS(1811), - [aux_sym__val_number_token5] = ACTIONS(1811), - [aux_sym__val_number_token6] = ACTIONS(1811), - [anon_sym_DQUOTE] = ACTIONS(1811), - [sym__str_single_quotes] = ACTIONS(1811), - [sym__str_back_ticks] = ACTIONS(1811), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1811), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1811), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1811), - [sym__entry_separator] = ACTIONS(1819), - [anon_sym_register] = ACTIONS(1811), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1447), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1819), + [559] = { + [sym_comment] = STATE(559), + [anon_sym_export] = ACTIONS(1760), + [anon_sym_alias] = ACTIONS(1760), + [anon_sym_let] = ACTIONS(1760), + [anon_sym_let_DASHenv] = ACTIONS(1760), + [anon_sym_mut] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [aux_sym_cmd_identifier_token1] = ACTIONS(1760), + [aux_sym_cmd_identifier_token2] = ACTIONS(1762), + [aux_sym_cmd_identifier_token3] = ACTIONS(1762), + [aux_sym_cmd_identifier_token4] = ACTIONS(1762), + [aux_sym_cmd_identifier_token5] = ACTIONS(1762), + [aux_sym_cmd_identifier_token6] = ACTIONS(1762), + [aux_sym_cmd_identifier_token7] = ACTIONS(1762), + [aux_sym_cmd_identifier_token8] = ACTIONS(1760), + [aux_sym_cmd_identifier_token9] = ACTIONS(1760), + [aux_sym_cmd_identifier_token10] = ACTIONS(1762), + [aux_sym_cmd_identifier_token11] = ACTIONS(1762), + [aux_sym_cmd_identifier_token12] = ACTIONS(1760), + [aux_sym_cmd_identifier_token13] = ACTIONS(1760), + [aux_sym_cmd_identifier_token14] = ACTIONS(1760), + [aux_sym_cmd_identifier_token15] = ACTIONS(1760), + [aux_sym_cmd_identifier_token16] = ACTIONS(1762), + [aux_sym_cmd_identifier_token17] = ACTIONS(1762), + [aux_sym_cmd_identifier_token18] = ACTIONS(1762), + [aux_sym_cmd_identifier_token19] = ACTIONS(1762), + [aux_sym_cmd_identifier_token20] = ACTIONS(1762), + [aux_sym_cmd_identifier_token21] = ACTIONS(1762), + [aux_sym_cmd_identifier_token22] = ACTIONS(1762), + [aux_sym_cmd_identifier_token23] = ACTIONS(1762), + [aux_sym_cmd_identifier_token24] = ACTIONS(1762), + [aux_sym_cmd_identifier_token25] = ACTIONS(1762), + [aux_sym_cmd_identifier_token26] = ACTIONS(1762), + [aux_sym_cmd_identifier_token27] = ACTIONS(1762), + [aux_sym_cmd_identifier_token28] = ACTIONS(1762), + [aux_sym_cmd_identifier_token29] = ACTIONS(1762), + [aux_sym_cmd_identifier_token30] = ACTIONS(1762), + [aux_sym_cmd_identifier_token31] = ACTIONS(1762), + [aux_sym_cmd_identifier_token32] = ACTIONS(1762), + [aux_sym_cmd_identifier_token33] = ACTIONS(1762), + [aux_sym_cmd_identifier_token34] = ACTIONS(1760), + [aux_sym_cmd_identifier_token35] = ACTIONS(1762), + [aux_sym_cmd_identifier_token36] = ACTIONS(1762), + [aux_sym_cmd_identifier_token37] = ACTIONS(1762), + [aux_sym_cmd_identifier_token38] = ACTIONS(1760), + [aux_sym_cmd_identifier_token39] = ACTIONS(1762), + [aux_sym_cmd_identifier_token40] = ACTIONS(1762), + [anon_sym_def] = ACTIONS(1760), + [anon_sym_export_DASHenv] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym_module] = ACTIONS(1760), + [anon_sym_use] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_error] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_loop] = ACTIONS(1760), + [anon_sym_make] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_do] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_match] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_catch] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_source] = ACTIONS(1760), + [anon_sym_source_DASHenv] = ACTIONS(1760), + [anon_sym_hide] = ACTIONS(1760), + [anon_sym_hide_DASHenv] = ACTIONS(1760), + [anon_sym_overlay] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1762), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1760), + [aux_sym__val_number_token5] = ACTIONS(1760), + [aux_sym__val_number_token6] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1760), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1762), }, - [542] = { - [sym_comment] = STATE(542), - [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_COMMA] = 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_hide] = ACTIONS(998), - [anon_sym_hide_DASHenv] = ACTIONS(998), - [anon_sym_overlay] = ACTIONS(998), - [anon_sym_as] = ACTIONS(998), - [anon_sym_LPAREN2] = ACTIONS(2190), - [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_DOLLAR_SQUOTE] = ACTIONS(998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(998), - [sym__entry_separator] = ACTIONS(994), - [anon_sym_register] = ACTIONS(998), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(994), + [560] = { + [sym_comment] = STATE(560), + [anon_sym_export] = ACTIONS(1797), + [anon_sym_alias] = ACTIONS(1797), + [anon_sym_let] = ACTIONS(1797), + [anon_sym_let_DASHenv] = ACTIONS(1797), + [anon_sym_mut] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(1797), + [aux_sym_cmd_identifier_token1] = ACTIONS(1797), + [aux_sym_cmd_identifier_token2] = ACTIONS(1799), + [aux_sym_cmd_identifier_token3] = ACTIONS(1799), + [aux_sym_cmd_identifier_token4] = ACTIONS(1799), + [aux_sym_cmd_identifier_token5] = ACTIONS(1799), + [aux_sym_cmd_identifier_token6] = ACTIONS(1799), + [aux_sym_cmd_identifier_token7] = ACTIONS(1799), + [aux_sym_cmd_identifier_token8] = ACTIONS(1797), + [aux_sym_cmd_identifier_token9] = ACTIONS(1797), + [aux_sym_cmd_identifier_token10] = ACTIONS(1799), + [aux_sym_cmd_identifier_token11] = ACTIONS(1799), + [aux_sym_cmd_identifier_token12] = ACTIONS(1797), + [aux_sym_cmd_identifier_token13] = ACTIONS(1797), + [aux_sym_cmd_identifier_token14] = ACTIONS(1797), + [aux_sym_cmd_identifier_token15] = ACTIONS(1797), + [aux_sym_cmd_identifier_token16] = ACTIONS(1799), + [aux_sym_cmd_identifier_token17] = ACTIONS(1799), + [aux_sym_cmd_identifier_token18] = ACTIONS(1799), + [aux_sym_cmd_identifier_token19] = ACTIONS(1799), + [aux_sym_cmd_identifier_token20] = ACTIONS(1799), + [aux_sym_cmd_identifier_token21] = ACTIONS(1799), + [aux_sym_cmd_identifier_token22] = ACTIONS(1799), + [aux_sym_cmd_identifier_token23] = ACTIONS(1799), + [aux_sym_cmd_identifier_token24] = ACTIONS(1799), + [aux_sym_cmd_identifier_token25] = ACTIONS(1799), + [aux_sym_cmd_identifier_token26] = ACTIONS(1799), + [aux_sym_cmd_identifier_token27] = ACTIONS(1799), + [aux_sym_cmd_identifier_token28] = ACTIONS(1799), + [aux_sym_cmd_identifier_token29] = ACTIONS(1799), + [aux_sym_cmd_identifier_token30] = ACTIONS(1799), + [aux_sym_cmd_identifier_token31] = ACTIONS(1799), + [aux_sym_cmd_identifier_token32] = ACTIONS(1799), + [aux_sym_cmd_identifier_token33] = ACTIONS(1799), + [aux_sym_cmd_identifier_token34] = ACTIONS(1797), + [aux_sym_cmd_identifier_token35] = ACTIONS(1799), + [aux_sym_cmd_identifier_token36] = ACTIONS(1799), + [aux_sym_cmd_identifier_token37] = ACTIONS(1799), + [aux_sym_cmd_identifier_token38] = ACTIONS(1797), + [aux_sym_cmd_identifier_token39] = ACTIONS(1799), + [aux_sym_cmd_identifier_token40] = ACTIONS(1799), + [anon_sym_def] = ACTIONS(1797), + [anon_sym_export_DASHenv] = ACTIONS(1797), + [anon_sym_extern] = ACTIONS(1797), + [anon_sym_module] = ACTIONS(1797), + [anon_sym_use] = ACTIONS(1797), + [anon_sym_LPAREN] = ACTIONS(1797), + [anon_sym_COMMA] = ACTIONS(1799), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_error] = ACTIONS(1797), + [anon_sym_DASH2] = ACTIONS(1797), + [anon_sym_break] = ACTIONS(1797), + [anon_sym_continue] = ACTIONS(1797), + [anon_sym_for] = ACTIONS(1797), + [anon_sym_in2] = ACTIONS(1797), + [anon_sym_loop] = ACTIONS(1797), + [anon_sym_make] = ACTIONS(1797), + [anon_sym_while] = ACTIONS(1797), + [anon_sym_do] = ACTIONS(1797), + [anon_sym_if] = ACTIONS(1797), + [anon_sym_else] = ACTIONS(1797), + [anon_sym_match] = ACTIONS(1797), + [anon_sym_RBRACE] = ACTIONS(1799), + [anon_sym_try] = ACTIONS(1797), + [anon_sym_catch] = ACTIONS(1797), + [anon_sym_return] = ACTIONS(1797), + [anon_sym_source] = ACTIONS(1797), + [anon_sym_source_DASHenv] = ACTIONS(1797), + [anon_sym_hide] = ACTIONS(1797), + [anon_sym_hide_DASHenv] = ACTIONS(1797), + [anon_sym_overlay] = ACTIONS(1797), + [anon_sym_as] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(1799), + [anon_sym_PLUS2] = ACTIONS(1797), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1799), + [aux_sym__val_number_decimal_token1] = ACTIONS(1797), + [aux_sym__val_number_decimal_token2] = ACTIONS(1799), + [aux_sym__val_number_decimal_token3] = ACTIONS(1799), + [aux_sym__val_number_decimal_token4] = ACTIONS(1799), + [aux_sym__val_number_token1] = ACTIONS(1799), + [aux_sym__val_number_token2] = ACTIONS(1799), + [aux_sym__val_number_token3] = ACTIONS(1799), + [aux_sym__val_number_token4] = ACTIONS(1797), + [aux_sym__val_number_token5] = ACTIONS(1797), + [aux_sym__val_number_token6] = ACTIONS(1797), + [anon_sym_DQUOTE] = ACTIONS(1799), + [sym__str_single_quotes] = ACTIONS(1799), + [sym__str_back_ticks] = ACTIONS(1799), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1799), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1797), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1797), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1799), }, - [543] = { - [sym__expr_parenthesized_immediate] = STATE(7528), - [sym_comment] = STATE(543), - [anon_sym_export] = ACTIONS(1977), - [anon_sym_alias] = ACTIONS(1977), - [anon_sym_let] = ACTIONS(1977), - [anon_sym_let_DASHenv] = ACTIONS(1977), - [anon_sym_mut] = ACTIONS(1977), - [anon_sym_const] = ACTIONS(1977), - [aux_sym_cmd_identifier_token1] = ACTIONS(1977), - [aux_sym_cmd_identifier_token2] = ACTIONS(1977), - [aux_sym_cmd_identifier_token3] = ACTIONS(1977), - [aux_sym_cmd_identifier_token4] = ACTIONS(1977), - [aux_sym_cmd_identifier_token5] = ACTIONS(1977), - [aux_sym_cmd_identifier_token6] = ACTIONS(1977), - [aux_sym_cmd_identifier_token7] = ACTIONS(1977), - [aux_sym_cmd_identifier_token8] = ACTIONS(1977), - [aux_sym_cmd_identifier_token9] = ACTIONS(1977), - [aux_sym_cmd_identifier_token10] = ACTIONS(1977), - [aux_sym_cmd_identifier_token11] = ACTIONS(1977), - [aux_sym_cmd_identifier_token12] = ACTIONS(1977), - [aux_sym_cmd_identifier_token13] = ACTIONS(1977), - [aux_sym_cmd_identifier_token14] = ACTIONS(1977), - [aux_sym_cmd_identifier_token15] = ACTIONS(1977), - [aux_sym_cmd_identifier_token16] = ACTIONS(1977), - [aux_sym_cmd_identifier_token17] = ACTIONS(1977), - [aux_sym_cmd_identifier_token18] = ACTIONS(1977), - [aux_sym_cmd_identifier_token19] = ACTIONS(1977), - [aux_sym_cmd_identifier_token20] = ACTIONS(1977), - [aux_sym_cmd_identifier_token21] = ACTIONS(1977), - [aux_sym_cmd_identifier_token22] = ACTIONS(1977), - [aux_sym_cmd_identifier_token23] = ACTIONS(1977), - [aux_sym_cmd_identifier_token24] = ACTIONS(1977), - [aux_sym_cmd_identifier_token25] = ACTIONS(1977), - [aux_sym_cmd_identifier_token26] = ACTIONS(1977), - [aux_sym_cmd_identifier_token27] = ACTIONS(1977), - [aux_sym_cmd_identifier_token28] = ACTIONS(1977), - [aux_sym_cmd_identifier_token29] = ACTIONS(1977), - [aux_sym_cmd_identifier_token30] = ACTIONS(1977), - [aux_sym_cmd_identifier_token31] = ACTIONS(1977), - [aux_sym_cmd_identifier_token32] = ACTIONS(1977), - [aux_sym_cmd_identifier_token33] = ACTIONS(1977), - [aux_sym_cmd_identifier_token34] = ACTIONS(1977), - [aux_sym_cmd_identifier_token35] = ACTIONS(1977), - [aux_sym_cmd_identifier_token36] = ACTIONS(1977), - [aux_sym_cmd_identifier_token37] = ACTIONS(1977), - [aux_sym_cmd_identifier_token38] = ACTIONS(1977), - [aux_sym_cmd_identifier_token39] = ACTIONS(1977), - [aux_sym_cmd_identifier_token40] = ACTIONS(1977), - [anon_sym_def] = ACTIONS(1977), - [anon_sym_export_DASHenv] = ACTIONS(1977), - [anon_sym_extern] = ACTIONS(1977), - [anon_sym_module] = ACTIONS(1977), - [anon_sym_use] = ACTIONS(1977), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_DOLLAR] = ACTIONS(1977), - [anon_sym_error] = ACTIONS(1977), - [anon_sym_DASH2] = ACTIONS(1977), - [anon_sym_break] = ACTIONS(1977), - [anon_sym_continue] = ACTIONS(1977), - [anon_sym_for] = ACTIONS(1977), - [anon_sym_in2] = ACTIONS(1977), - [anon_sym_loop] = ACTIONS(1977), - [anon_sym_make] = ACTIONS(1977), - [anon_sym_while] = ACTIONS(1977), - [anon_sym_do] = ACTIONS(1977), - [anon_sym_if] = ACTIONS(1977), - [anon_sym_else] = ACTIONS(1977), - [anon_sym_match] = ACTIONS(1977), - [anon_sym_RBRACE] = ACTIONS(1977), - [anon_sym_try] = ACTIONS(1977), - [anon_sym_catch] = ACTIONS(1977), - [anon_sym_return] = ACTIONS(1977), - [anon_sym_source] = ACTIONS(1977), - [anon_sym_source_DASHenv] = ACTIONS(1977), - [anon_sym_hide] = ACTIONS(1977), - [anon_sym_hide_DASHenv] = ACTIONS(1977), - [anon_sym_overlay] = ACTIONS(1977), - [anon_sym_as] = ACTIONS(1977), - [anon_sym_LPAREN2] = ACTIONS(1581), - [anon_sym_PLUS2] = ACTIONS(1977), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1977), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1977), - [aux_sym__val_number_decimal_token1] = ACTIONS(1977), - [aux_sym__val_number_decimal_token2] = ACTIONS(1977), - [aux_sym__val_number_decimal_token3] = ACTIONS(1977), - [aux_sym__val_number_decimal_token4] = ACTIONS(1977), - [aux_sym__val_number_token1] = ACTIONS(1977), - [aux_sym__val_number_token2] = ACTIONS(1977), - [aux_sym__val_number_token3] = ACTIONS(1977), - [aux_sym__val_number_token4] = ACTIONS(1977), - [aux_sym__val_number_token5] = ACTIONS(1977), - [aux_sym__val_number_token6] = ACTIONS(1977), - [anon_sym_DQUOTE] = ACTIONS(1977), - [sym__str_single_quotes] = ACTIONS(1977), - [sym__str_back_ticks] = ACTIONS(1977), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1977), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1977), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1977), - [sym__entry_separator] = ACTIONS(1983), - [anon_sym_register] = ACTIONS(1977), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1983), + [561] = { + [sym__expr_parenthesized_immediate] = STATE(7374), + [sym_comment] = STATE(561), + [anon_sym_export] = ACTIONS(2108), + [anon_sym_alias] = ACTIONS(2108), + [anon_sym_let] = ACTIONS(2108), + [anon_sym_let_DASHenv] = ACTIONS(2108), + [anon_sym_mut] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [aux_sym_cmd_identifier_token1] = ACTIONS(2108), + [aux_sym_cmd_identifier_token2] = ACTIONS(2110), + [aux_sym_cmd_identifier_token3] = ACTIONS(2110), + [aux_sym_cmd_identifier_token4] = ACTIONS(2110), + [aux_sym_cmd_identifier_token5] = ACTIONS(2110), + [aux_sym_cmd_identifier_token6] = ACTIONS(2110), + [aux_sym_cmd_identifier_token7] = ACTIONS(2110), + [aux_sym_cmd_identifier_token8] = ACTIONS(2108), + [aux_sym_cmd_identifier_token9] = ACTIONS(2108), + [aux_sym_cmd_identifier_token10] = ACTIONS(2110), + [aux_sym_cmd_identifier_token11] = ACTIONS(2110), + [aux_sym_cmd_identifier_token12] = ACTIONS(2108), + [aux_sym_cmd_identifier_token13] = ACTIONS(2108), + [aux_sym_cmd_identifier_token14] = ACTIONS(2108), + [aux_sym_cmd_identifier_token15] = ACTIONS(2108), + [aux_sym_cmd_identifier_token16] = ACTIONS(2110), + [aux_sym_cmd_identifier_token17] = ACTIONS(2110), + [aux_sym_cmd_identifier_token18] = ACTIONS(2110), + [aux_sym_cmd_identifier_token19] = ACTIONS(2110), + [aux_sym_cmd_identifier_token20] = ACTIONS(2110), + [aux_sym_cmd_identifier_token21] = ACTIONS(2110), + [aux_sym_cmd_identifier_token22] = ACTIONS(2110), + [aux_sym_cmd_identifier_token23] = ACTIONS(2110), + [aux_sym_cmd_identifier_token24] = ACTIONS(2110), + [aux_sym_cmd_identifier_token25] = ACTIONS(2110), + [aux_sym_cmd_identifier_token26] = ACTIONS(2110), + [aux_sym_cmd_identifier_token27] = ACTIONS(2110), + [aux_sym_cmd_identifier_token28] = ACTIONS(2110), + [aux_sym_cmd_identifier_token29] = ACTIONS(2110), + [aux_sym_cmd_identifier_token30] = ACTIONS(2110), + [aux_sym_cmd_identifier_token31] = ACTIONS(2110), + [aux_sym_cmd_identifier_token32] = ACTIONS(2110), + [aux_sym_cmd_identifier_token33] = ACTIONS(2110), + [aux_sym_cmd_identifier_token34] = ACTIONS(2108), + [aux_sym_cmd_identifier_token35] = ACTIONS(2110), + [aux_sym_cmd_identifier_token36] = ACTIONS(2110), + [aux_sym_cmd_identifier_token37] = ACTIONS(2110), + [aux_sym_cmd_identifier_token38] = ACTIONS(2108), + [aux_sym_cmd_identifier_token39] = ACTIONS(2110), + [aux_sym_cmd_identifier_token40] = ACTIONS(2110), + [anon_sym_def] = ACTIONS(2108), + [anon_sym_export_DASHenv] = ACTIONS(2108), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym_module] = ACTIONS(2108), + [anon_sym_use] = ACTIONS(2108), + [anon_sym_LPAREN] = ACTIONS(2108), + [anon_sym_COMMA] = ACTIONS(2110), + [anon_sym_DOLLAR] = ACTIONS(2108), + [anon_sym_error] = ACTIONS(2108), + [anon_sym_DASH2] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2108), + [anon_sym_continue] = ACTIONS(2108), + [anon_sym_for] = ACTIONS(2108), + [anon_sym_in2] = ACTIONS(2108), + [anon_sym_loop] = ACTIONS(2108), + [anon_sym_make] = ACTIONS(2108), + [anon_sym_while] = ACTIONS(2108), + [anon_sym_do] = ACTIONS(2108), + [anon_sym_if] = ACTIONS(2108), + [anon_sym_else] = ACTIONS(2108), + [anon_sym_match] = ACTIONS(2108), + [anon_sym_RBRACE] = ACTIONS(2110), + [anon_sym_try] = ACTIONS(2108), + [anon_sym_catch] = ACTIONS(2108), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_source] = ACTIONS(2108), + [anon_sym_source_DASHenv] = ACTIONS(2108), + [anon_sym_hide] = ACTIONS(2108), + [anon_sym_hide_DASHenv] = ACTIONS(2108), + [anon_sym_overlay] = ACTIONS(2108), + [anon_sym_as] = ACTIONS(2108), + [anon_sym_LPAREN2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(2108), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2110), + [aux_sym__val_number_decimal_token1] = ACTIONS(2108), + [aux_sym__val_number_decimal_token2] = ACTIONS(2110), + [aux_sym__val_number_decimal_token3] = ACTIONS(2110), + [aux_sym__val_number_decimal_token4] = ACTIONS(2110), + [aux_sym__val_number_token1] = ACTIONS(2110), + [aux_sym__val_number_token2] = ACTIONS(2110), + [aux_sym__val_number_token3] = ACTIONS(2110), + [aux_sym__val_number_token4] = ACTIONS(2108), + [aux_sym__val_number_token5] = ACTIONS(2108), + [aux_sym__val_number_token6] = ACTIONS(2108), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym__str_single_quotes] = ACTIONS(2110), + [sym__str_back_ticks] = ACTIONS(2110), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2110), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2110), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2110), + [anon_sym_register] = ACTIONS(2108), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2110), }, - [544] = { - [sym_comment] = STATE(544), - [anon_sym_export] = ACTIONS(958), - [anon_sym_alias] = ACTIONS(958), - [anon_sym_let] = ACTIONS(958), - [anon_sym_let_DASHenv] = ACTIONS(958), - [anon_sym_mut] = ACTIONS(958), - [anon_sym_const] = ACTIONS(958), - [aux_sym_cmd_identifier_token1] = ACTIONS(958), - [aux_sym_cmd_identifier_token2] = ACTIONS(960), - [aux_sym_cmd_identifier_token3] = ACTIONS(960), - [aux_sym_cmd_identifier_token4] = ACTIONS(960), - [aux_sym_cmd_identifier_token5] = ACTIONS(960), - [aux_sym_cmd_identifier_token6] = ACTIONS(960), - [aux_sym_cmd_identifier_token7] = ACTIONS(960), - [aux_sym_cmd_identifier_token8] = ACTIONS(958), - [aux_sym_cmd_identifier_token9] = ACTIONS(958), - [aux_sym_cmd_identifier_token10] = ACTIONS(960), - [aux_sym_cmd_identifier_token11] = ACTIONS(960), - [aux_sym_cmd_identifier_token12] = ACTIONS(958), - [aux_sym_cmd_identifier_token13] = ACTIONS(958), - [aux_sym_cmd_identifier_token14] = ACTIONS(958), - [aux_sym_cmd_identifier_token15] = ACTIONS(958), - [aux_sym_cmd_identifier_token16] = ACTIONS(960), - [aux_sym_cmd_identifier_token17] = ACTIONS(960), - [aux_sym_cmd_identifier_token18] = ACTIONS(960), - [aux_sym_cmd_identifier_token19] = ACTIONS(960), - [aux_sym_cmd_identifier_token20] = ACTIONS(960), - [aux_sym_cmd_identifier_token21] = ACTIONS(960), - [aux_sym_cmd_identifier_token22] = ACTIONS(960), - [aux_sym_cmd_identifier_token23] = ACTIONS(960), - [aux_sym_cmd_identifier_token24] = ACTIONS(960), - [aux_sym_cmd_identifier_token25] = ACTIONS(960), - [aux_sym_cmd_identifier_token26] = ACTIONS(960), - [aux_sym_cmd_identifier_token27] = ACTIONS(960), - [aux_sym_cmd_identifier_token28] = ACTIONS(960), - [aux_sym_cmd_identifier_token29] = ACTIONS(960), - [aux_sym_cmd_identifier_token30] = ACTIONS(960), - [aux_sym_cmd_identifier_token31] = ACTIONS(960), - [aux_sym_cmd_identifier_token32] = ACTIONS(960), - [aux_sym_cmd_identifier_token33] = ACTIONS(960), - [aux_sym_cmd_identifier_token34] = ACTIONS(958), - [aux_sym_cmd_identifier_token35] = ACTIONS(960), - [aux_sym_cmd_identifier_token36] = ACTIONS(960), - [aux_sym_cmd_identifier_token37] = ACTIONS(960), - [aux_sym_cmd_identifier_token38] = ACTIONS(958), - [aux_sym_cmd_identifier_token39] = ACTIONS(960), - [aux_sym_cmd_identifier_token40] = ACTIONS(960), - [anon_sym_def] = ACTIONS(958), - [anon_sym_export_DASHenv] = ACTIONS(958), - [anon_sym_extern] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_use] = ACTIONS(958), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_COMMA] = ACTIONS(960), - [anon_sym_DOLLAR] = ACTIONS(958), - [anon_sym_error] = ACTIONS(958), - [anon_sym_DASH2] = ACTIONS(958), - [anon_sym_break] = ACTIONS(958), - [anon_sym_continue] = ACTIONS(958), - [anon_sym_for] = ACTIONS(958), - [anon_sym_in2] = ACTIONS(958), - [anon_sym_loop] = ACTIONS(958), - [anon_sym_make] = ACTIONS(958), - [anon_sym_while] = ACTIONS(958), - [anon_sym_do] = ACTIONS(958), - [anon_sym_if] = ACTIONS(958), - [anon_sym_else] = ACTIONS(958), - [anon_sym_match] = ACTIONS(958), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_try] = ACTIONS(958), - [anon_sym_catch] = ACTIONS(958), - [anon_sym_return] = ACTIONS(958), - [anon_sym_source] = ACTIONS(958), - [anon_sym_source_DASHenv] = ACTIONS(958), - [anon_sym_hide] = ACTIONS(958), - [anon_sym_hide_DASHenv] = ACTIONS(958), - [anon_sym_overlay] = ACTIONS(958), - [anon_sym_as] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(960), - [anon_sym_PLUS2] = ACTIONS(958), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(960), - [aux_sym__val_number_decimal_token1] = ACTIONS(958), - [aux_sym__val_number_decimal_token2] = ACTIONS(960), - [aux_sym__val_number_decimal_token3] = ACTIONS(960), - [aux_sym__val_number_decimal_token4] = ACTIONS(960), - [aux_sym__val_number_token1] = ACTIONS(960), - [aux_sym__val_number_token2] = ACTIONS(960), - [aux_sym__val_number_token3] = ACTIONS(960), - [aux_sym__val_number_token4] = ACTIONS(958), - [aux_sym__val_number_token5] = ACTIONS(958), - [aux_sym__val_number_token6] = ACTIONS(958), - [anon_sym_DQUOTE] = ACTIONS(960), - [sym__str_single_quotes] = ACTIONS(960), - [sym__str_back_ticks] = ACTIONS(960), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(960), - [anon_sym_register] = ACTIONS(958), - [anon_sym_COLON2] = ACTIONS(960), - [anon_sym_DOT2] = ACTIONS(958), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(960), + [562] = { + [sym_comment] = STATE(562), + [anon_sym_export] = ACTIONS(2128), + [anon_sym_alias] = ACTIONS(2128), + [anon_sym_let] = ACTIONS(2128), + [anon_sym_let_DASHenv] = ACTIONS(2128), + [anon_sym_mut] = ACTIONS(2128), + [anon_sym_const] = ACTIONS(2128), + [aux_sym_cmd_identifier_token1] = ACTIONS(2128), + [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(2128), + [aux_sym_cmd_identifier_token9] = ACTIONS(2128), + [aux_sym_cmd_identifier_token10] = ACTIONS(2128), + [aux_sym_cmd_identifier_token11] = ACTIONS(2128), + [aux_sym_cmd_identifier_token12] = ACTIONS(2128), + [aux_sym_cmd_identifier_token13] = ACTIONS(2128), + [aux_sym_cmd_identifier_token14] = ACTIONS(2128), + [aux_sym_cmd_identifier_token15] = ACTIONS(2128), + [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(2128), + [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(2128), + [aux_sym_cmd_identifier_token39] = ACTIONS(2128), + [aux_sym_cmd_identifier_token40] = ACTIONS(2128), + [anon_sym_def] = ACTIONS(2128), + [anon_sym_export_DASHenv] = ACTIONS(2128), + [anon_sym_extern] = ACTIONS(2128), + [anon_sym_module] = ACTIONS(2128), + [anon_sym_use] = ACTIONS(2128), + [anon_sym_LPAREN] = ACTIONS(2128), + [anon_sym_COMMA] = ACTIONS(2130), + [anon_sym_DOLLAR] = ACTIONS(2128), + [anon_sym_error] = ACTIONS(2128), + [anon_sym_DASH2] = ACTIONS(2128), + [anon_sym_break] = ACTIONS(2128), + [anon_sym_continue] = ACTIONS(2128), + [anon_sym_for] = ACTIONS(2128), + [anon_sym_in2] = ACTIONS(2128), + [anon_sym_loop] = ACTIONS(2128), + [anon_sym_make] = ACTIONS(2128), + [anon_sym_while] = ACTIONS(2128), + [anon_sym_do] = ACTIONS(2128), + [anon_sym_if] = ACTIONS(2128), + [anon_sym_else] = ACTIONS(2128), + [anon_sym_match] = ACTIONS(2128), + [anon_sym_RBRACE] = ACTIONS(2130), + [anon_sym_try] = ACTIONS(2128), + [anon_sym_catch] = ACTIONS(2128), + [anon_sym_return] = ACTIONS(2128), + [anon_sym_source] = ACTIONS(2128), + [anon_sym_source_DASHenv] = ACTIONS(2128), + [anon_sym_hide] = ACTIONS(2128), + [anon_sym_hide_DASHenv] = ACTIONS(2128), + [anon_sym_overlay] = ACTIONS(2128), + [anon_sym_as] = ACTIONS(2128), + [anon_sym_LPAREN2] = ACTIONS(2070), + [anon_sym_PLUS2] = ACTIONS(2128), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2130), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2128), + [aux_sym__val_number_decimal_token1] = ACTIONS(2128), + [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_DQUOTE] = ACTIONS(2130), + [sym__str_single_quotes] = ACTIONS(2130), + [sym__str_back_ticks] = ACTIONS(2130), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2130), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2130), + [anon_sym_register] = ACTIONS(2128), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2074), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2130), }, - [545] = { - [sym_comment] = STATE(545), - [anon_sym_export] = ACTIONS(2194), - [anon_sym_alias] = ACTIONS(2194), - [anon_sym_let] = ACTIONS(2194), - [anon_sym_let_DASHenv] = ACTIONS(2194), - [anon_sym_mut] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [aux_sym_cmd_identifier_token1] = ACTIONS(2194), - [aux_sym_cmd_identifier_token2] = ACTIONS(2194), - [aux_sym_cmd_identifier_token3] = ACTIONS(2194), - [aux_sym_cmd_identifier_token4] = ACTIONS(2194), - [aux_sym_cmd_identifier_token5] = ACTIONS(2194), - [aux_sym_cmd_identifier_token6] = ACTIONS(2194), - [aux_sym_cmd_identifier_token7] = ACTIONS(2194), - [aux_sym_cmd_identifier_token8] = ACTIONS(2194), - [aux_sym_cmd_identifier_token9] = ACTIONS(2194), - [aux_sym_cmd_identifier_token10] = ACTIONS(2194), - [aux_sym_cmd_identifier_token11] = ACTIONS(2194), - [aux_sym_cmd_identifier_token12] = ACTIONS(2194), - [aux_sym_cmd_identifier_token13] = ACTIONS(2194), - [aux_sym_cmd_identifier_token14] = ACTIONS(2194), - [aux_sym_cmd_identifier_token15] = ACTIONS(2194), - [aux_sym_cmd_identifier_token16] = ACTIONS(2194), - [aux_sym_cmd_identifier_token17] = ACTIONS(2194), - [aux_sym_cmd_identifier_token18] = ACTIONS(2194), - [aux_sym_cmd_identifier_token19] = ACTIONS(2194), - [aux_sym_cmd_identifier_token20] = ACTIONS(2194), - [aux_sym_cmd_identifier_token21] = ACTIONS(2194), - [aux_sym_cmd_identifier_token22] = ACTIONS(2194), - [aux_sym_cmd_identifier_token23] = ACTIONS(2194), - [aux_sym_cmd_identifier_token24] = ACTIONS(2194), - [aux_sym_cmd_identifier_token25] = ACTIONS(2194), - [aux_sym_cmd_identifier_token26] = ACTIONS(2194), - [aux_sym_cmd_identifier_token27] = ACTIONS(2194), - [aux_sym_cmd_identifier_token28] = ACTIONS(2194), - [aux_sym_cmd_identifier_token29] = ACTIONS(2194), - [aux_sym_cmd_identifier_token30] = ACTIONS(2194), - [aux_sym_cmd_identifier_token31] = ACTIONS(2194), - [aux_sym_cmd_identifier_token32] = ACTIONS(2194), - [aux_sym_cmd_identifier_token33] = ACTIONS(2194), - [aux_sym_cmd_identifier_token34] = ACTIONS(2194), - [aux_sym_cmd_identifier_token35] = ACTIONS(2194), - [aux_sym_cmd_identifier_token36] = ACTIONS(2194), - [aux_sym_cmd_identifier_token37] = ACTIONS(2194), - [aux_sym_cmd_identifier_token38] = ACTIONS(2194), - [aux_sym_cmd_identifier_token39] = ACTIONS(2194), - [aux_sym_cmd_identifier_token40] = ACTIONS(2194), - [anon_sym_def] = ACTIONS(2194), - [anon_sym_export_DASHenv] = ACTIONS(2194), - [anon_sym_extern] = ACTIONS(2194), - [anon_sym_module] = ACTIONS(2194), - [anon_sym_use] = ACTIONS(2194), - [anon_sym_LPAREN] = ACTIONS(2194), - [anon_sym_COMMA] = ACTIONS(2194), - [anon_sym_DOLLAR] = ACTIONS(2194), - [anon_sym_error] = ACTIONS(2194), - [anon_sym_DASH2] = ACTIONS(2194), - [anon_sym_break] = ACTIONS(2194), - [anon_sym_continue] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_in2] = ACTIONS(2194), - [anon_sym_loop] = ACTIONS(2194), - [anon_sym_make] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_match] = ACTIONS(2194), - [anon_sym_RBRACE] = ACTIONS(2194), - [anon_sym_try] = ACTIONS(2194), - [anon_sym_catch] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_source] = ACTIONS(2194), - [anon_sym_source_DASHenv] = ACTIONS(2194), - [anon_sym_hide] = ACTIONS(2194), - [anon_sym_hide_DASHenv] = ACTIONS(2194), - [anon_sym_overlay] = ACTIONS(2194), - [anon_sym_as] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2196), - [anon_sym_PLUS2] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2194), - [aux_sym__val_number_decimal_token1] = ACTIONS(2194), - [aux_sym__val_number_decimal_token2] = ACTIONS(2194), - [aux_sym__val_number_decimal_token3] = ACTIONS(2194), - [aux_sym__val_number_decimal_token4] = ACTIONS(2194), - [aux_sym__val_number_token1] = ACTIONS(2194), - [aux_sym__val_number_token2] = ACTIONS(2194), - [aux_sym__val_number_token3] = ACTIONS(2194), - [aux_sym__val_number_token4] = ACTIONS(2194), - [aux_sym__val_number_token5] = ACTIONS(2194), - [aux_sym__val_number_token6] = ACTIONS(2194), - [anon_sym_DQUOTE] = ACTIONS(2194), - [sym__str_single_quotes] = ACTIONS(2194), - [sym__str_back_ticks] = ACTIONS(2194), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2194), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2194), - [sym__entry_separator] = ACTIONS(2198), - [anon_sym_register] = ACTIONS(2194), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2200), + [563] = { + [sym_comment] = STATE(563), + [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_COMMA] = ACTIONS(2072), + [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(2072), + [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_hide] = ACTIONS(2068), + [anon_sym_hide_DASHenv] = ACTIONS(2068), + [anon_sym_overlay] = ACTIONS(2068), + [anon_sym_as] = ACTIONS(2068), + [anon_sym_LPAREN2] = ACTIONS(2070), + [anon_sym_PLUS2] = ACTIONS(2068), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2072), + [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(2072), + [sym__str_single_quotes] = ACTIONS(2072), + [sym__str_back_ticks] = ACTIONS(2072), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2072), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2072), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2068), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2198), + [sym_raw_string_begin] = ACTIONS(2072), }, - [546] = { - [sym_comment] = STATE(546), - [anon_sym_export] = ACTIONS(954), - [anon_sym_alias] = ACTIONS(954), - [anon_sym_let] = ACTIONS(954), - [anon_sym_let_DASHenv] = ACTIONS(954), - [anon_sym_mut] = ACTIONS(954), - [anon_sym_const] = ACTIONS(954), - [aux_sym_cmd_identifier_token1] = ACTIONS(954), - [aux_sym_cmd_identifier_token2] = ACTIONS(956), - [aux_sym_cmd_identifier_token3] = ACTIONS(956), - [aux_sym_cmd_identifier_token4] = ACTIONS(956), - [aux_sym_cmd_identifier_token5] = ACTIONS(956), - [aux_sym_cmd_identifier_token6] = ACTIONS(956), - [aux_sym_cmd_identifier_token7] = ACTIONS(956), - [aux_sym_cmd_identifier_token8] = ACTIONS(954), - [aux_sym_cmd_identifier_token9] = ACTIONS(954), - [aux_sym_cmd_identifier_token10] = ACTIONS(956), - [aux_sym_cmd_identifier_token11] = ACTIONS(956), - [aux_sym_cmd_identifier_token12] = ACTIONS(954), - [aux_sym_cmd_identifier_token13] = ACTIONS(954), - [aux_sym_cmd_identifier_token14] = ACTIONS(954), - [aux_sym_cmd_identifier_token15] = ACTIONS(954), - [aux_sym_cmd_identifier_token16] = ACTIONS(956), - [aux_sym_cmd_identifier_token17] = ACTIONS(956), - [aux_sym_cmd_identifier_token18] = ACTIONS(956), - [aux_sym_cmd_identifier_token19] = ACTIONS(956), - [aux_sym_cmd_identifier_token20] = ACTIONS(956), - [aux_sym_cmd_identifier_token21] = ACTIONS(956), - [aux_sym_cmd_identifier_token22] = ACTIONS(956), - [aux_sym_cmd_identifier_token23] = ACTIONS(956), - [aux_sym_cmd_identifier_token24] = ACTIONS(956), - [aux_sym_cmd_identifier_token25] = ACTIONS(956), - [aux_sym_cmd_identifier_token26] = ACTIONS(956), - [aux_sym_cmd_identifier_token27] = ACTIONS(956), - [aux_sym_cmd_identifier_token28] = ACTIONS(956), - [aux_sym_cmd_identifier_token29] = ACTIONS(956), - [aux_sym_cmd_identifier_token30] = ACTIONS(956), - [aux_sym_cmd_identifier_token31] = ACTIONS(956), - [aux_sym_cmd_identifier_token32] = ACTIONS(956), - [aux_sym_cmd_identifier_token33] = ACTIONS(956), - [aux_sym_cmd_identifier_token34] = ACTIONS(954), - [aux_sym_cmd_identifier_token35] = ACTIONS(956), - [aux_sym_cmd_identifier_token36] = ACTIONS(956), - [aux_sym_cmd_identifier_token37] = ACTIONS(956), - [aux_sym_cmd_identifier_token38] = ACTIONS(954), - [aux_sym_cmd_identifier_token39] = ACTIONS(956), - [aux_sym_cmd_identifier_token40] = ACTIONS(956), - [anon_sym_def] = ACTIONS(954), - [anon_sym_export_DASHenv] = ACTIONS(954), - [anon_sym_extern] = ACTIONS(954), - [anon_sym_module] = ACTIONS(954), - [anon_sym_use] = ACTIONS(954), - [anon_sym_LPAREN] = ACTIONS(956), - [anon_sym_COMMA] = ACTIONS(956), - [anon_sym_DOLLAR] = ACTIONS(954), - [anon_sym_error] = ACTIONS(954), - [anon_sym_DASH2] = ACTIONS(954), - [anon_sym_break] = ACTIONS(954), - [anon_sym_continue] = ACTIONS(954), - [anon_sym_for] = ACTIONS(954), - [anon_sym_in2] = ACTIONS(954), - [anon_sym_loop] = ACTIONS(954), - [anon_sym_make] = ACTIONS(954), - [anon_sym_while] = ACTIONS(954), - [anon_sym_do] = ACTIONS(954), - [anon_sym_if] = ACTIONS(954), - [anon_sym_else] = ACTIONS(954), - [anon_sym_match] = ACTIONS(954), - [anon_sym_RBRACE] = ACTIONS(956), - [anon_sym_try] = ACTIONS(954), - [anon_sym_catch] = ACTIONS(954), - [anon_sym_return] = ACTIONS(954), - [anon_sym_source] = ACTIONS(954), - [anon_sym_source_DASHenv] = ACTIONS(954), - [anon_sym_hide] = ACTIONS(954), - [anon_sym_hide_DASHenv] = ACTIONS(954), - [anon_sym_overlay] = ACTIONS(954), - [anon_sym_as] = ACTIONS(954), - [anon_sym_QMARK2] = ACTIONS(956), - [anon_sym_PLUS2] = ACTIONS(954), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(956), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(956), - [aux_sym__val_number_decimal_token1] = ACTIONS(954), - [aux_sym__val_number_decimal_token2] = ACTIONS(956), - [aux_sym__val_number_decimal_token3] = ACTIONS(956), - [aux_sym__val_number_decimal_token4] = ACTIONS(956), - [aux_sym__val_number_token1] = ACTIONS(956), - [aux_sym__val_number_token2] = ACTIONS(956), - [aux_sym__val_number_token3] = ACTIONS(956), - [aux_sym__val_number_token4] = ACTIONS(954), - [aux_sym__val_number_token5] = ACTIONS(954), - [aux_sym__val_number_token6] = ACTIONS(954), - [anon_sym_DQUOTE] = ACTIONS(956), - [sym__str_single_quotes] = ACTIONS(956), - [sym__str_back_ticks] = ACTIONS(956), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(956), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(956), - [anon_sym_register] = ACTIONS(954), - [anon_sym_COLON2] = ACTIONS(956), - [anon_sym_DOT2] = ACTIONS(954), + [564] = { + [sym_comment] = STATE(564), + [anon_sym_export] = ACTIONS(1805), + [anon_sym_alias] = ACTIONS(1805), + [anon_sym_let] = ACTIONS(1805), + [anon_sym_let_DASHenv] = ACTIONS(1805), + [anon_sym_mut] = ACTIONS(1805), + [anon_sym_const] = ACTIONS(1805), + [aux_sym_cmd_identifier_token1] = ACTIONS(1805), + [aux_sym_cmd_identifier_token2] = ACTIONS(1813), + [aux_sym_cmd_identifier_token3] = ACTIONS(1813), + [aux_sym_cmd_identifier_token4] = ACTIONS(1813), + [aux_sym_cmd_identifier_token5] = ACTIONS(1813), + [aux_sym_cmd_identifier_token6] = ACTIONS(1813), + [aux_sym_cmd_identifier_token7] = ACTIONS(1813), + [aux_sym_cmd_identifier_token8] = ACTIONS(1805), + [aux_sym_cmd_identifier_token9] = ACTIONS(1805), + [aux_sym_cmd_identifier_token10] = ACTIONS(1813), + [aux_sym_cmd_identifier_token11] = ACTIONS(1813), + [aux_sym_cmd_identifier_token12] = ACTIONS(1805), + [aux_sym_cmd_identifier_token13] = ACTIONS(1805), + [aux_sym_cmd_identifier_token14] = ACTIONS(1805), + [aux_sym_cmd_identifier_token15] = ACTIONS(1805), + [aux_sym_cmd_identifier_token16] = ACTIONS(1813), + [aux_sym_cmd_identifier_token17] = ACTIONS(1813), + [aux_sym_cmd_identifier_token18] = ACTIONS(1813), + [aux_sym_cmd_identifier_token19] = ACTIONS(1813), + [aux_sym_cmd_identifier_token20] = ACTIONS(1813), + [aux_sym_cmd_identifier_token21] = ACTIONS(1813), + [aux_sym_cmd_identifier_token22] = ACTIONS(1813), + [aux_sym_cmd_identifier_token23] = ACTIONS(1813), + [aux_sym_cmd_identifier_token24] = ACTIONS(1813), + [aux_sym_cmd_identifier_token25] = ACTIONS(1813), + [aux_sym_cmd_identifier_token26] = ACTIONS(1813), + [aux_sym_cmd_identifier_token27] = ACTIONS(1813), + [aux_sym_cmd_identifier_token28] = ACTIONS(1813), + [aux_sym_cmd_identifier_token29] = ACTIONS(1813), + [aux_sym_cmd_identifier_token30] = ACTIONS(1813), + [aux_sym_cmd_identifier_token31] = ACTIONS(1813), + [aux_sym_cmd_identifier_token32] = ACTIONS(1813), + [aux_sym_cmd_identifier_token33] = ACTIONS(1813), + [aux_sym_cmd_identifier_token34] = ACTIONS(1805), + [aux_sym_cmd_identifier_token35] = ACTIONS(1813), + [aux_sym_cmd_identifier_token36] = ACTIONS(1813), + [aux_sym_cmd_identifier_token37] = ACTIONS(1813), + [aux_sym_cmd_identifier_token38] = ACTIONS(1805), + [aux_sym_cmd_identifier_token39] = ACTIONS(1813), + [aux_sym_cmd_identifier_token40] = ACTIONS(1813), + [anon_sym_def] = ACTIONS(1805), + [anon_sym_export_DASHenv] = ACTIONS(1805), + [anon_sym_extern] = ACTIONS(1805), + [anon_sym_module] = ACTIONS(1805), + [anon_sym_use] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1805), + [anon_sym_COMMA] = ACTIONS(1813), + [anon_sym_DOLLAR] = ACTIONS(1805), + [anon_sym_error] = ACTIONS(1805), + [anon_sym_DASH2] = ACTIONS(1805), + [anon_sym_break] = ACTIONS(1805), + [anon_sym_continue] = ACTIONS(1805), + [anon_sym_for] = ACTIONS(1805), + [anon_sym_in2] = ACTIONS(1805), + [anon_sym_loop] = ACTIONS(1805), + [anon_sym_make] = ACTIONS(1805), + [anon_sym_while] = ACTIONS(1805), + [anon_sym_do] = ACTIONS(1805), + [anon_sym_if] = ACTIONS(1805), + [anon_sym_else] = ACTIONS(1805), + [anon_sym_match] = ACTIONS(1805), + [anon_sym_RBRACE] = ACTIONS(1813), + [anon_sym_try] = ACTIONS(1805), + [anon_sym_catch] = ACTIONS(1805), + [anon_sym_return] = ACTIONS(1805), + [anon_sym_source] = ACTIONS(1805), + [anon_sym_source_DASHenv] = ACTIONS(1805), + [anon_sym_hide] = ACTIONS(1805), + [anon_sym_hide_DASHenv] = ACTIONS(1805), + [anon_sym_overlay] = ACTIONS(1805), + [anon_sym_as] = ACTIONS(1805), + [anon_sym_LPAREN2] = ACTIONS(1807), + [anon_sym_PLUS2] = ACTIONS(1805), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1813), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1813), + [aux_sym__val_number_decimal_token1] = ACTIONS(1805), + [aux_sym__val_number_decimal_token2] = ACTIONS(1813), + [aux_sym__val_number_decimal_token3] = ACTIONS(1813), + [aux_sym__val_number_decimal_token4] = ACTIONS(1813), + [aux_sym__val_number_token1] = ACTIONS(1813), + [aux_sym__val_number_token2] = ACTIONS(1813), + [aux_sym__val_number_token3] = ACTIONS(1813), + [aux_sym__val_number_token4] = ACTIONS(1805), + [aux_sym__val_number_token5] = ACTIONS(1805), + [aux_sym__val_number_token6] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1813), + [sym__str_single_quotes] = ACTIONS(1813), + [sym__str_back_ticks] = ACTIONS(1813), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1813), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1813), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1813), + [anon_sym_register] = ACTIONS(1805), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1447), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(956), + [sym_raw_string_begin] = ACTIONS(1813), }, - [547] = { - [sym_comment] = STATE(547), - [anon_sym_export] = ACTIONS(962), - [anon_sym_alias] = ACTIONS(962), - [anon_sym_let] = ACTIONS(962), - [anon_sym_let_DASHenv] = ACTIONS(962), - [anon_sym_mut] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [aux_sym_cmd_identifier_token1] = ACTIONS(962), - [aux_sym_cmd_identifier_token2] = ACTIONS(964), - [aux_sym_cmd_identifier_token3] = ACTIONS(964), - [aux_sym_cmd_identifier_token4] = ACTIONS(964), - [aux_sym_cmd_identifier_token5] = ACTIONS(964), - [aux_sym_cmd_identifier_token6] = ACTIONS(964), - [aux_sym_cmd_identifier_token7] = ACTIONS(964), - [aux_sym_cmd_identifier_token8] = ACTIONS(962), - [aux_sym_cmd_identifier_token9] = ACTIONS(962), - [aux_sym_cmd_identifier_token10] = ACTIONS(964), - [aux_sym_cmd_identifier_token11] = ACTIONS(964), - [aux_sym_cmd_identifier_token12] = ACTIONS(962), - [aux_sym_cmd_identifier_token13] = ACTIONS(962), - [aux_sym_cmd_identifier_token14] = ACTIONS(962), - [aux_sym_cmd_identifier_token15] = ACTIONS(962), - [aux_sym_cmd_identifier_token16] = ACTIONS(964), - [aux_sym_cmd_identifier_token17] = ACTIONS(964), - [aux_sym_cmd_identifier_token18] = ACTIONS(964), - [aux_sym_cmd_identifier_token19] = ACTIONS(964), - [aux_sym_cmd_identifier_token20] = ACTIONS(964), - [aux_sym_cmd_identifier_token21] = ACTIONS(964), - [aux_sym_cmd_identifier_token22] = ACTIONS(964), - [aux_sym_cmd_identifier_token23] = ACTIONS(964), - [aux_sym_cmd_identifier_token24] = ACTIONS(964), - [aux_sym_cmd_identifier_token25] = ACTIONS(964), - [aux_sym_cmd_identifier_token26] = ACTIONS(964), - [aux_sym_cmd_identifier_token27] = ACTIONS(964), - [aux_sym_cmd_identifier_token28] = ACTIONS(964), - [aux_sym_cmd_identifier_token29] = ACTIONS(964), - [aux_sym_cmd_identifier_token30] = ACTIONS(964), - [aux_sym_cmd_identifier_token31] = ACTIONS(964), - [aux_sym_cmd_identifier_token32] = ACTIONS(964), - [aux_sym_cmd_identifier_token33] = ACTIONS(964), - [aux_sym_cmd_identifier_token34] = ACTIONS(962), - [aux_sym_cmd_identifier_token35] = ACTIONS(964), - [aux_sym_cmd_identifier_token36] = ACTIONS(964), - [aux_sym_cmd_identifier_token37] = ACTIONS(964), - [aux_sym_cmd_identifier_token38] = ACTIONS(962), - [aux_sym_cmd_identifier_token39] = ACTIONS(964), - [aux_sym_cmd_identifier_token40] = ACTIONS(964), - [anon_sym_def] = ACTIONS(962), - [anon_sym_export_DASHenv] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_module] = ACTIONS(962), - [anon_sym_use] = ACTIONS(962), - [anon_sym_LPAREN] = ACTIONS(964), - [anon_sym_COMMA] = ACTIONS(964), - [anon_sym_DOLLAR] = ACTIONS(962), - [anon_sym_error] = ACTIONS(962), - [anon_sym_DASH2] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_in2] = ACTIONS(962), - [anon_sym_loop] = ACTIONS(962), - [anon_sym_make] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [anon_sym_else] = ACTIONS(962), - [anon_sym_match] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_try] = ACTIONS(962), - [anon_sym_catch] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_source] = ACTIONS(962), - [anon_sym_source_DASHenv] = ACTIONS(962), - [anon_sym_hide] = ACTIONS(962), - [anon_sym_hide_DASHenv] = ACTIONS(962), - [anon_sym_overlay] = ACTIONS(962), - [anon_sym_as] = ACTIONS(962), - [anon_sym_QMARK2] = ACTIONS(964), - [anon_sym_PLUS2] = ACTIONS(962), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(964), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(964), - [aux_sym__val_number_decimal_token1] = ACTIONS(962), - [aux_sym__val_number_decimal_token2] = ACTIONS(964), - [aux_sym__val_number_decimal_token3] = ACTIONS(964), - [aux_sym__val_number_decimal_token4] = ACTIONS(964), - [aux_sym__val_number_token1] = ACTIONS(964), - [aux_sym__val_number_token2] = ACTIONS(964), - [aux_sym__val_number_token3] = ACTIONS(964), - [aux_sym__val_number_token4] = ACTIONS(962), - [aux_sym__val_number_token5] = ACTIONS(962), - [aux_sym__val_number_token6] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym__str_single_quotes] = ACTIONS(964), - [sym__str_back_ticks] = ACTIONS(964), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(964), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(964), - [anon_sym_register] = ACTIONS(962), - [anon_sym_COLON2] = ACTIONS(964), - [anon_sym_DOT2] = ACTIONS(962), + [565] = { + [sym_comment] = STATE(565), + [anon_sym_export] = ACTIONS(974), + [anon_sym_alias] = ACTIONS(974), + [anon_sym_let] = ACTIONS(974), + [anon_sym_let_DASHenv] = ACTIONS(974), + [anon_sym_mut] = ACTIONS(974), + [anon_sym_const] = ACTIONS(974), + [aux_sym_cmd_identifier_token1] = ACTIONS(974), + [aux_sym_cmd_identifier_token2] = ACTIONS(976), + [aux_sym_cmd_identifier_token3] = ACTIONS(976), + [aux_sym_cmd_identifier_token4] = ACTIONS(976), + [aux_sym_cmd_identifier_token5] = ACTIONS(976), + [aux_sym_cmd_identifier_token6] = ACTIONS(976), + [aux_sym_cmd_identifier_token7] = ACTIONS(976), + [aux_sym_cmd_identifier_token8] = ACTIONS(974), + [aux_sym_cmd_identifier_token9] = ACTIONS(974), + [aux_sym_cmd_identifier_token10] = ACTIONS(976), + [aux_sym_cmd_identifier_token11] = ACTIONS(976), + [aux_sym_cmd_identifier_token12] = ACTIONS(974), + [aux_sym_cmd_identifier_token13] = ACTIONS(974), + [aux_sym_cmd_identifier_token14] = ACTIONS(974), + [aux_sym_cmd_identifier_token15] = ACTIONS(974), + [aux_sym_cmd_identifier_token16] = ACTIONS(976), + [aux_sym_cmd_identifier_token17] = ACTIONS(976), + [aux_sym_cmd_identifier_token18] = ACTIONS(976), + [aux_sym_cmd_identifier_token19] = ACTIONS(976), + [aux_sym_cmd_identifier_token20] = ACTIONS(976), + [aux_sym_cmd_identifier_token21] = ACTIONS(976), + [aux_sym_cmd_identifier_token22] = ACTIONS(976), + [aux_sym_cmd_identifier_token23] = ACTIONS(976), + [aux_sym_cmd_identifier_token24] = ACTIONS(976), + [aux_sym_cmd_identifier_token25] = ACTIONS(976), + [aux_sym_cmd_identifier_token26] = ACTIONS(976), + [aux_sym_cmd_identifier_token27] = ACTIONS(976), + [aux_sym_cmd_identifier_token28] = ACTIONS(976), + [aux_sym_cmd_identifier_token29] = ACTIONS(976), + [aux_sym_cmd_identifier_token30] = ACTIONS(976), + [aux_sym_cmd_identifier_token31] = ACTIONS(976), + [aux_sym_cmd_identifier_token32] = ACTIONS(976), + [aux_sym_cmd_identifier_token33] = ACTIONS(976), + [aux_sym_cmd_identifier_token34] = ACTIONS(974), + [aux_sym_cmd_identifier_token35] = ACTIONS(976), + [aux_sym_cmd_identifier_token36] = ACTIONS(976), + [aux_sym_cmd_identifier_token37] = ACTIONS(976), + [aux_sym_cmd_identifier_token38] = ACTIONS(974), + [aux_sym_cmd_identifier_token39] = ACTIONS(976), + [aux_sym_cmd_identifier_token40] = ACTIONS(976), + [anon_sym_def] = ACTIONS(974), + [anon_sym_export_DASHenv] = ACTIONS(974), + [anon_sym_extern] = ACTIONS(974), + [anon_sym_module] = ACTIONS(974), + [anon_sym_use] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(976), + [anon_sym_COMMA] = ACTIONS(976), + [anon_sym_DOLLAR] = ACTIONS(974), + [anon_sym_error] = ACTIONS(974), + [anon_sym_DASH2] = ACTIONS(974), + [anon_sym_break] = ACTIONS(974), + [anon_sym_continue] = ACTIONS(974), + [anon_sym_for] = ACTIONS(974), + [anon_sym_in2] = ACTIONS(974), + [anon_sym_loop] = ACTIONS(974), + [anon_sym_make] = ACTIONS(974), + [anon_sym_while] = ACTIONS(974), + [anon_sym_do] = ACTIONS(974), + [anon_sym_if] = ACTIONS(974), + [anon_sym_else] = ACTIONS(974), + [anon_sym_match] = ACTIONS(974), + [anon_sym_RBRACE] = ACTIONS(976), + [anon_sym_try] = ACTIONS(974), + [anon_sym_catch] = ACTIONS(974), + [anon_sym_return] = ACTIONS(974), + [anon_sym_source] = ACTIONS(974), + [anon_sym_source_DASHenv] = ACTIONS(974), + [anon_sym_hide] = ACTIONS(974), + [anon_sym_hide_DASHenv] = ACTIONS(974), + [anon_sym_overlay] = ACTIONS(974), + [anon_sym_as] = ACTIONS(974), + [anon_sym_PLUS2] = ACTIONS(974), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(976), + [aux_sym__val_number_decimal_token1] = ACTIONS(974), + [aux_sym__val_number_decimal_token2] = ACTIONS(976), + [aux_sym__val_number_decimal_token3] = ACTIONS(976), + [aux_sym__val_number_decimal_token4] = ACTIONS(976), + [aux_sym__val_number_token1] = ACTIONS(976), + [aux_sym__val_number_token2] = ACTIONS(976), + [aux_sym__val_number_token3] = ACTIONS(976), + [aux_sym__val_number_token4] = ACTIONS(974), + [aux_sym__val_number_token5] = ACTIONS(974), + [aux_sym__val_number_token6] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(976), + [sym__str_single_quotes] = ACTIONS(976), + [sym__str_back_ticks] = ACTIONS(976), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(976), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(976), + [anon_sym_register] = ACTIONS(974), + [anon_sym_COLON2] = ACTIONS(976), + [anon_sym_DOT2] = ACTIONS(974), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(964), - }, - [548] = { - [sym_comment] = STATE(548), - [anon_sym_export] = ACTIONS(2202), - [anon_sym_alias] = ACTIONS(2202), - [anon_sym_let] = ACTIONS(2202), - [anon_sym_let_DASHenv] = ACTIONS(2202), - [anon_sym_mut] = ACTIONS(2202), - [anon_sym_const] = ACTIONS(2202), - [aux_sym_cmd_identifier_token1] = ACTIONS(2202), - [aux_sym_cmd_identifier_token2] = ACTIONS(2202), - [aux_sym_cmd_identifier_token3] = ACTIONS(2202), - [aux_sym_cmd_identifier_token4] = ACTIONS(2202), - [aux_sym_cmd_identifier_token5] = ACTIONS(2202), - [aux_sym_cmd_identifier_token6] = ACTIONS(2202), - [aux_sym_cmd_identifier_token7] = ACTIONS(2202), - [aux_sym_cmd_identifier_token8] = ACTIONS(2202), - [aux_sym_cmd_identifier_token9] = ACTIONS(2202), - [aux_sym_cmd_identifier_token10] = ACTIONS(2202), - [aux_sym_cmd_identifier_token11] = ACTIONS(2202), - [aux_sym_cmd_identifier_token12] = ACTIONS(2202), - [aux_sym_cmd_identifier_token13] = ACTIONS(2202), - [aux_sym_cmd_identifier_token14] = ACTIONS(2202), - [aux_sym_cmd_identifier_token15] = ACTIONS(2202), - [aux_sym_cmd_identifier_token16] = ACTIONS(2202), - [aux_sym_cmd_identifier_token17] = ACTIONS(2202), - [aux_sym_cmd_identifier_token18] = ACTIONS(2202), - [aux_sym_cmd_identifier_token19] = ACTIONS(2202), - [aux_sym_cmd_identifier_token20] = ACTIONS(2202), - [aux_sym_cmd_identifier_token21] = ACTIONS(2202), - [aux_sym_cmd_identifier_token22] = ACTIONS(2202), - [aux_sym_cmd_identifier_token23] = ACTIONS(2202), - [aux_sym_cmd_identifier_token24] = ACTIONS(2202), - [aux_sym_cmd_identifier_token25] = ACTIONS(2202), - [aux_sym_cmd_identifier_token26] = ACTIONS(2202), - [aux_sym_cmd_identifier_token27] = ACTIONS(2202), - [aux_sym_cmd_identifier_token28] = ACTIONS(2202), - [aux_sym_cmd_identifier_token29] = ACTIONS(2202), - [aux_sym_cmd_identifier_token30] = ACTIONS(2202), - [aux_sym_cmd_identifier_token31] = ACTIONS(2202), - [aux_sym_cmd_identifier_token32] = ACTIONS(2202), - [aux_sym_cmd_identifier_token33] = ACTIONS(2202), - [aux_sym_cmd_identifier_token34] = ACTIONS(2202), - [aux_sym_cmd_identifier_token35] = ACTIONS(2202), - [aux_sym_cmd_identifier_token36] = ACTIONS(2202), - [aux_sym_cmd_identifier_token37] = ACTIONS(2202), - [aux_sym_cmd_identifier_token38] = ACTIONS(2202), - [aux_sym_cmd_identifier_token39] = ACTIONS(2202), - [aux_sym_cmd_identifier_token40] = ACTIONS(2202), - [anon_sym_def] = ACTIONS(2202), - [anon_sym_export_DASHenv] = ACTIONS(2202), - [anon_sym_extern] = ACTIONS(2202), - [anon_sym_module] = ACTIONS(2202), - [anon_sym_use] = ACTIONS(2202), - [anon_sym_LPAREN] = ACTIONS(2202), - [anon_sym_COMMA] = ACTIONS(2202), - [anon_sym_DOLLAR] = ACTIONS(2202), - [anon_sym_error] = ACTIONS(2202), - [anon_sym_DASH2] = ACTIONS(2202), - [anon_sym_break] = ACTIONS(2202), - [anon_sym_continue] = ACTIONS(2202), - [anon_sym_for] = ACTIONS(2202), - [anon_sym_in2] = ACTIONS(2202), - [anon_sym_loop] = ACTIONS(2202), - [anon_sym_make] = ACTIONS(2202), - [anon_sym_while] = ACTIONS(2202), - [anon_sym_do] = ACTIONS(2202), - [anon_sym_if] = ACTIONS(2202), - [anon_sym_else] = ACTIONS(2202), - [anon_sym_match] = ACTIONS(2202), - [anon_sym_RBRACE] = ACTIONS(2202), - [anon_sym_try] = ACTIONS(2202), - [anon_sym_catch] = ACTIONS(2202), - [anon_sym_return] = ACTIONS(2202), - [anon_sym_source] = ACTIONS(2202), - [anon_sym_source_DASHenv] = ACTIONS(2202), - [anon_sym_hide] = ACTIONS(2202), - [anon_sym_hide_DASHenv] = ACTIONS(2202), - [anon_sym_overlay] = ACTIONS(2202), - [anon_sym_as] = ACTIONS(2202), - [anon_sym_LPAREN2] = ACTIONS(2091), - [anon_sym_PLUS2] = ACTIONS(2202), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2202), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2202), - [aux_sym__val_number_decimal_token1] = ACTIONS(2202), - [aux_sym__val_number_decimal_token2] = ACTIONS(2202), - [aux_sym__val_number_decimal_token3] = ACTIONS(2202), - [aux_sym__val_number_decimal_token4] = ACTIONS(2202), - [aux_sym__val_number_token1] = ACTIONS(2202), - [aux_sym__val_number_token2] = ACTIONS(2202), - [aux_sym__val_number_token3] = ACTIONS(2202), - [aux_sym__val_number_token4] = ACTIONS(2202), - [aux_sym__val_number_token5] = ACTIONS(2202), - [aux_sym__val_number_token6] = ACTIONS(2202), - [anon_sym_DQUOTE] = ACTIONS(2202), - [sym__str_single_quotes] = ACTIONS(2202), - [sym__str_back_ticks] = ACTIONS(2202), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2202), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2202), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2202), - [sym__entry_separator] = ACTIONS(2204), - [anon_sym_register] = ACTIONS(2202), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2095), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2204), + [sym_raw_string_begin] = ACTIONS(976), }, - [549] = { - [sym_comment] = STATE(549), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_alias] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_let_DASHenv] = ACTIONS(1719), - [anon_sym_mut] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [aux_sym_cmd_identifier_token1] = ACTIONS(1719), - [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(1719), - [aux_sym_cmd_identifier_token9] = ACTIONS(1719), - [aux_sym_cmd_identifier_token10] = ACTIONS(1719), - [aux_sym_cmd_identifier_token11] = ACTIONS(1719), - [aux_sym_cmd_identifier_token12] = ACTIONS(1719), - [aux_sym_cmd_identifier_token13] = ACTIONS(1719), - [aux_sym_cmd_identifier_token14] = ACTIONS(1719), - [aux_sym_cmd_identifier_token15] = ACTIONS(1719), - [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(1719), - [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(1719), - [aux_sym_cmd_identifier_token39] = ACTIONS(1719), - [aux_sym_cmd_identifier_token40] = ACTIONS(1719), - [anon_sym_def] = ACTIONS(1719), - [anon_sym_export_DASHenv] = ACTIONS(1719), - [anon_sym_extern] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_use] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_COMMA] = ACTIONS(1719), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_error] = ACTIONS(1719), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_in2] = ACTIONS(1719), - [anon_sym_loop] = ACTIONS(1719), - [anon_sym_make] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_match] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_catch] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_source] = ACTIONS(1719), - [anon_sym_source_DASHenv] = ACTIONS(1719), - [anon_sym_hide] = ACTIONS(1719), - [anon_sym_hide_DASHenv] = ACTIONS(1719), - [anon_sym_overlay] = ACTIONS(1719), - [anon_sym_as] = ACTIONS(1719), - [anon_sym_LPAREN2] = ACTIONS(1721), - [anon_sym_PLUS2] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1719), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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_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_DOT_DOT_DOT_LBRACE] = ACTIONS(1719), - [sym__entry_separator] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1719), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1719), + [566] = { + [sym_comment] = STATE(566), + [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(2248), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2248), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2248), + [sym__entry_separator] = ACTIONS(2250), + [anon_sym_register] = ACTIONS(2248), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1721), - }, - [550] = { - [sym_comment] = STATE(550), - [anon_sym_export] = ACTIONS(2049), - [anon_sym_alias] = ACTIONS(2049), - [anon_sym_let] = ACTIONS(2049), - [anon_sym_let_DASHenv] = ACTIONS(2049), - [anon_sym_mut] = ACTIONS(2049), - [anon_sym_const] = ACTIONS(2049), - [aux_sym_cmd_identifier_token1] = ACTIONS(2049), - [aux_sym_cmd_identifier_token2] = ACTIONS(2053), - [aux_sym_cmd_identifier_token3] = ACTIONS(2053), - [aux_sym_cmd_identifier_token4] = ACTIONS(2053), - [aux_sym_cmd_identifier_token5] = ACTIONS(2053), - [aux_sym_cmd_identifier_token6] = ACTIONS(2053), - [aux_sym_cmd_identifier_token7] = ACTIONS(2053), - [aux_sym_cmd_identifier_token8] = ACTIONS(2049), - [aux_sym_cmd_identifier_token9] = ACTIONS(2049), - [aux_sym_cmd_identifier_token10] = ACTIONS(2053), - [aux_sym_cmd_identifier_token11] = ACTIONS(2053), - [aux_sym_cmd_identifier_token12] = ACTIONS(2049), - [aux_sym_cmd_identifier_token13] = ACTIONS(2049), - [aux_sym_cmd_identifier_token14] = ACTIONS(2049), - [aux_sym_cmd_identifier_token15] = ACTIONS(2049), - [aux_sym_cmd_identifier_token16] = ACTIONS(2053), - [aux_sym_cmd_identifier_token17] = ACTIONS(2053), - [aux_sym_cmd_identifier_token18] = ACTIONS(2053), - [aux_sym_cmd_identifier_token19] = ACTIONS(2053), - [aux_sym_cmd_identifier_token20] = ACTIONS(2053), - [aux_sym_cmd_identifier_token21] = ACTIONS(2053), - [aux_sym_cmd_identifier_token22] = ACTIONS(2053), - [aux_sym_cmd_identifier_token23] = ACTIONS(2053), - [aux_sym_cmd_identifier_token24] = ACTIONS(2053), - [aux_sym_cmd_identifier_token25] = ACTIONS(2053), - [aux_sym_cmd_identifier_token26] = ACTIONS(2053), - [aux_sym_cmd_identifier_token27] = ACTIONS(2053), - [aux_sym_cmd_identifier_token28] = ACTIONS(2053), - [aux_sym_cmd_identifier_token29] = ACTIONS(2053), - [aux_sym_cmd_identifier_token30] = ACTIONS(2053), - [aux_sym_cmd_identifier_token31] = ACTIONS(2053), - [aux_sym_cmd_identifier_token32] = ACTIONS(2053), - [aux_sym_cmd_identifier_token33] = ACTIONS(2053), - [aux_sym_cmd_identifier_token34] = ACTIONS(2049), - [aux_sym_cmd_identifier_token35] = ACTIONS(2053), - [aux_sym_cmd_identifier_token36] = ACTIONS(2053), - [aux_sym_cmd_identifier_token37] = ACTIONS(2053), - [aux_sym_cmd_identifier_token38] = ACTIONS(2049), - [aux_sym_cmd_identifier_token39] = ACTIONS(2053), - [aux_sym_cmd_identifier_token40] = ACTIONS(2053), - [anon_sym_def] = ACTIONS(2049), - [anon_sym_export_DASHenv] = ACTIONS(2049), - [anon_sym_extern] = ACTIONS(2049), - [anon_sym_module] = ACTIONS(2049), - [anon_sym_use] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(2049), - [anon_sym_COMMA] = ACTIONS(2053), - [anon_sym_DOLLAR] = ACTIONS(2049), - [anon_sym_error] = ACTIONS(2049), - [anon_sym_DASH2] = ACTIONS(2049), - [anon_sym_break] = ACTIONS(2049), - [anon_sym_continue] = ACTIONS(2049), - [anon_sym_for] = ACTIONS(2049), - [anon_sym_in2] = ACTIONS(2049), - [anon_sym_loop] = ACTIONS(2049), - [anon_sym_make] = ACTIONS(2049), - [anon_sym_while] = ACTIONS(2049), - [anon_sym_do] = ACTIONS(2049), - [anon_sym_if] = ACTIONS(2049), - [anon_sym_else] = ACTIONS(2049), - [anon_sym_match] = ACTIONS(2049), - [anon_sym_RBRACE] = ACTIONS(2053), - [anon_sym_try] = ACTIONS(2049), - [anon_sym_catch] = ACTIONS(2049), - [anon_sym_return] = ACTIONS(2049), - [anon_sym_source] = ACTIONS(2049), - [anon_sym_source_DASHenv] = ACTIONS(2049), - [anon_sym_hide] = ACTIONS(2049), - [anon_sym_hide_DASHenv] = ACTIONS(2049), - [anon_sym_overlay] = ACTIONS(2049), - [anon_sym_as] = ACTIONS(2049), - [anon_sym_LPAREN2] = ACTIONS(2051), - [anon_sym_PLUS2] = ACTIONS(2049), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2053), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2053), - [aux_sym__val_number_decimal_token1] = ACTIONS(2049), - [aux_sym__val_number_decimal_token2] = ACTIONS(2053), - [aux_sym__val_number_decimal_token3] = ACTIONS(2053), - [aux_sym__val_number_decimal_token4] = ACTIONS(2053), - [aux_sym__val_number_token1] = ACTIONS(2053), - [aux_sym__val_number_token2] = ACTIONS(2053), - [aux_sym__val_number_token3] = ACTIONS(2053), - [aux_sym__val_number_token4] = ACTIONS(2049), - [aux_sym__val_number_token5] = ACTIONS(2049), - [aux_sym__val_number_token6] = ACTIONS(2049), - [anon_sym_DQUOTE] = ACTIONS(2053), - [sym__str_single_quotes] = ACTIONS(2053), - [sym__str_back_ticks] = ACTIONS(2053), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2053), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2053), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2053), - [anon_sym_register] = ACTIONS(2049), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2053), + [sym_raw_string_begin] = ACTIONS(2250), }, - [551] = { - [sym_comment] = STATE(551), - [aux_sym__multiple_types_repeat1] = STATE(639), + [567] = { + [sym_comment] = STATE(567), + [aux_sym__multiple_types_repeat1] = STATE(611), [anon_sym_export] = ACTIONS(986), [anon_sym_alias] = ACTIONS(986), [anon_sym_let] = ACTIONS(986), @@ -135601,7 +136106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(986), [anon_sym_use] = ACTIONS(986), [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_COMMA] = ACTIONS(2206), + [anon_sym_COMMA] = ACTIONS(2252), [anon_sym_DOLLAR] = ACTIONS(986), [anon_sym_error] = ACTIONS(986), [anon_sym_DASH2] = ACTIONS(986), @@ -135616,7 +136121,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(986), [anon_sym_else] = ACTIONS(986), [anon_sym_match] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2254), [anon_sym_try] = ACTIONS(986), [anon_sym_catch] = ACTIONS(986), [anon_sym_return] = ACTIONS(986), @@ -135645,3653 +136150,1663 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), - [sym__entry_separator] = ACTIONS(2210), + [sym__entry_separator] = ACTIONS(2256), [anon_sym_register] = ACTIONS(986), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(992), }, - [552] = { - [sym__expr_parenthesized_immediate] = STATE(7544), - [sym_comment] = STATE(552), - [anon_sym_export] = ACTIONS(1989), - [anon_sym_alias] = ACTIONS(1989), - [anon_sym_let] = ACTIONS(1989), - [anon_sym_let_DASHenv] = ACTIONS(1989), - [anon_sym_mut] = ACTIONS(1989), - [anon_sym_const] = ACTIONS(1989), - [aux_sym_cmd_identifier_token1] = ACTIONS(1989), - [aux_sym_cmd_identifier_token2] = ACTIONS(1991), - [aux_sym_cmd_identifier_token3] = ACTIONS(1991), - [aux_sym_cmd_identifier_token4] = ACTIONS(1991), - [aux_sym_cmd_identifier_token5] = ACTIONS(1991), - [aux_sym_cmd_identifier_token6] = ACTIONS(1991), - [aux_sym_cmd_identifier_token7] = ACTIONS(1991), - [aux_sym_cmd_identifier_token8] = ACTIONS(1989), - [aux_sym_cmd_identifier_token9] = ACTIONS(1989), - [aux_sym_cmd_identifier_token10] = ACTIONS(1991), - [aux_sym_cmd_identifier_token11] = ACTIONS(1991), - [aux_sym_cmd_identifier_token12] = ACTIONS(1989), - [aux_sym_cmd_identifier_token13] = ACTIONS(1989), - [aux_sym_cmd_identifier_token14] = ACTIONS(1989), - [aux_sym_cmd_identifier_token15] = ACTIONS(1989), - [aux_sym_cmd_identifier_token16] = ACTIONS(1991), - [aux_sym_cmd_identifier_token17] = ACTIONS(1991), - [aux_sym_cmd_identifier_token18] = ACTIONS(1991), - [aux_sym_cmd_identifier_token19] = ACTIONS(1991), - [aux_sym_cmd_identifier_token20] = ACTIONS(1991), - [aux_sym_cmd_identifier_token21] = ACTIONS(1991), - [aux_sym_cmd_identifier_token22] = ACTIONS(1991), - [aux_sym_cmd_identifier_token23] = ACTIONS(1991), - [aux_sym_cmd_identifier_token24] = ACTIONS(1991), - [aux_sym_cmd_identifier_token25] = ACTIONS(1991), - [aux_sym_cmd_identifier_token26] = ACTIONS(1991), - [aux_sym_cmd_identifier_token27] = ACTIONS(1991), - [aux_sym_cmd_identifier_token28] = ACTIONS(1991), - [aux_sym_cmd_identifier_token29] = ACTIONS(1991), - [aux_sym_cmd_identifier_token30] = ACTIONS(1991), - [aux_sym_cmd_identifier_token31] = ACTIONS(1991), - [aux_sym_cmd_identifier_token32] = ACTIONS(1991), - [aux_sym_cmd_identifier_token33] = ACTIONS(1991), - [aux_sym_cmd_identifier_token34] = ACTIONS(1989), - [aux_sym_cmd_identifier_token35] = ACTIONS(1991), - [aux_sym_cmd_identifier_token36] = ACTIONS(1991), - [aux_sym_cmd_identifier_token37] = ACTIONS(1991), - [aux_sym_cmd_identifier_token38] = ACTIONS(1989), - [aux_sym_cmd_identifier_token39] = ACTIONS(1991), - [aux_sym_cmd_identifier_token40] = ACTIONS(1991), - [anon_sym_def] = ACTIONS(1989), - [anon_sym_export_DASHenv] = ACTIONS(1989), - [anon_sym_extern] = ACTIONS(1989), - [anon_sym_module] = ACTIONS(1989), - [anon_sym_use] = ACTIONS(1989), - [anon_sym_LPAREN] = ACTIONS(1989), - [anon_sym_COMMA] = ACTIONS(1991), - [anon_sym_DOLLAR] = ACTIONS(1989), - [anon_sym_error] = ACTIONS(1989), - [anon_sym_DASH2] = ACTIONS(1989), - [anon_sym_break] = ACTIONS(1989), - [anon_sym_continue] = ACTIONS(1989), - [anon_sym_for] = ACTIONS(1989), - [anon_sym_in2] = ACTIONS(1989), - [anon_sym_loop] = ACTIONS(1989), - [anon_sym_make] = ACTIONS(1989), - [anon_sym_while] = ACTIONS(1989), - [anon_sym_do] = ACTIONS(1989), - [anon_sym_if] = ACTIONS(1989), - [anon_sym_else] = ACTIONS(1989), - [anon_sym_match] = ACTIONS(1989), - [anon_sym_RBRACE] = ACTIONS(1991), - [anon_sym_try] = ACTIONS(1989), - [anon_sym_catch] = ACTIONS(1989), - [anon_sym_return] = ACTIONS(1989), - [anon_sym_source] = ACTIONS(1989), - [anon_sym_source_DASHenv] = ACTIONS(1989), - [anon_sym_hide] = ACTIONS(1989), - [anon_sym_hide_DASHenv] = ACTIONS(1989), - [anon_sym_overlay] = ACTIONS(1989), - [anon_sym_as] = ACTIONS(1989), - [anon_sym_LPAREN2] = ACTIONS(1581), - [anon_sym_PLUS2] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1991), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1991), - [aux_sym__val_number_decimal_token1] = ACTIONS(1989), - [aux_sym__val_number_decimal_token2] = ACTIONS(1991), - [aux_sym__val_number_decimal_token3] = ACTIONS(1991), - [aux_sym__val_number_decimal_token4] = ACTIONS(1991), - [aux_sym__val_number_token1] = ACTIONS(1991), - [aux_sym__val_number_token2] = ACTIONS(1991), - [aux_sym__val_number_token3] = ACTIONS(1991), - [aux_sym__val_number_token4] = ACTIONS(1989), - [aux_sym__val_number_token5] = ACTIONS(1989), - [aux_sym__val_number_token6] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [sym__str_single_quotes] = ACTIONS(1991), - [sym__str_back_ticks] = ACTIONS(1991), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1991), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1991), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1991), - [anon_sym_register] = ACTIONS(1989), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1991), - }, - [553] = { - [sym_comment] = STATE(553), - [anon_sym_export] = ACTIONS(1579), - [anon_sym_alias] = ACTIONS(1579), - [anon_sym_let] = ACTIONS(1579), - [anon_sym_let_DASHenv] = ACTIONS(1579), - [anon_sym_mut] = ACTIONS(1579), - [anon_sym_const] = ACTIONS(1579), - [aux_sym_cmd_identifier_token1] = ACTIONS(1579), - [aux_sym_cmd_identifier_token2] = ACTIONS(1579), - [aux_sym_cmd_identifier_token3] = ACTIONS(1579), - [aux_sym_cmd_identifier_token4] = ACTIONS(1579), - [aux_sym_cmd_identifier_token5] = ACTIONS(1579), - [aux_sym_cmd_identifier_token6] = ACTIONS(1579), - [aux_sym_cmd_identifier_token7] = ACTIONS(1579), - [aux_sym_cmd_identifier_token8] = ACTIONS(1579), - [aux_sym_cmd_identifier_token9] = ACTIONS(1579), - [aux_sym_cmd_identifier_token10] = ACTIONS(1579), - [aux_sym_cmd_identifier_token11] = ACTIONS(1579), - [aux_sym_cmd_identifier_token12] = ACTIONS(1579), - [aux_sym_cmd_identifier_token13] = ACTIONS(1579), - [aux_sym_cmd_identifier_token14] = ACTIONS(1579), - [aux_sym_cmd_identifier_token15] = ACTIONS(1579), - [aux_sym_cmd_identifier_token16] = ACTIONS(1579), - [aux_sym_cmd_identifier_token17] = ACTIONS(1579), - [aux_sym_cmd_identifier_token18] = ACTIONS(1579), - [aux_sym_cmd_identifier_token19] = ACTIONS(1579), - [aux_sym_cmd_identifier_token20] = ACTIONS(1579), - [aux_sym_cmd_identifier_token21] = ACTIONS(1579), - [aux_sym_cmd_identifier_token22] = ACTIONS(1579), - [aux_sym_cmd_identifier_token23] = ACTIONS(1579), - [aux_sym_cmd_identifier_token24] = ACTIONS(1579), - [aux_sym_cmd_identifier_token25] = ACTIONS(1579), - [aux_sym_cmd_identifier_token26] = ACTIONS(1579), - [aux_sym_cmd_identifier_token27] = ACTIONS(1579), - [aux_sym_cmd_identifier_token28] = ACTIONS(1579), - [aux_sym_cmd_identifier_token29] = ACTIONS(1579), - [aux_sym_cmd_identifier_token30] = ACTIONS(1579), - [aux_sym_cmd_identifier_token31] = ACTIONS(1579), - [aux_sym_cmd_identifier_token32] = ACTIONS(1579), - [aux_sym_cmd_identifier_token33] = ACTIONS(1579), - [aux_sym_cmd_identifier_token34] = ACTIONS(1579), - [aux_sym_cmd_identifier_token35] = ACTIONS(1579), - [aux_sym_cmd_identifier_token36] = ACTIONS(1579), - [aux_sym_cmd_identifier_token37] = ACTIONS(1579), - [aux_sym_cmd_identifier_token38] = ACTIONS(1579), - [aux_sym_cmd_identifier_token39] = ACTIONS(1579), - [aux_sym_cmd_identifier_token40] = ACTIONS(1579), - [anon_sym_def] = ACTIONS(1579), - [anon_sym_export_DASHenv] = ACTIONS(1579), - [anon_sym_extern] = ACTIONS(1579), - [anon_sym_module] = ACTIONS(1579), - [anon_sym_use] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_COMMA] = ACTIONS(1579), - [anon_sym_DOLLAR] = ACTIONS(1579), - [anon_sym_error] = ACTIONS(1579), - [anon_sym_DASH2] = ACTIONS(1579), - [anon_sym_break] = ACTIONS(1579), - [anon_sym_continue] = ACTIONS(1579), - [anon_sym_for] = ACTIONS(1579), - [anon_sym_in2] = ACTIONS(1579), - [anon_sym_loop] = ACTIONS(1579), - [anon_sym_make] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1579), - [anon_sym_if] = ACTIONS(1579), - [anon_sym_else] = ACTIONS(1579), - [anon_sym_match] = ACTIONS(1579), - [anon_sym_RBRACE] = ACTIONS(1579), - [anon_sym_try] = ACTIONS(1579), - [anon_sym_catch] = ACTIONS(1579), - [anon_sym_return] = ACTIONS(1579), - [anon_sym_source] = ACTIONS(1579), - [anon_sym_source_DASHenv] = ACTIONS(1579), - [anon_sym_hide] = ACTIONS(1579), - [anon_sym_hide_DASHenv] = ACTIONS(1579), - [anon_sym_overlay] = ACTIONS(1579), - [anon_sym_as] = ACTIONS(1579), - [anon_sym_PLUS2] = ACTIONS(1579), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1579), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1579), - [aux_sym__val_number_decimal_token1] = ACTIONS(1579), - [aux_sym__val_number_decimal_token2] = ACTIONS(1579), - [aux_sym__val_number_decimal_token3] = ACTIONS(1579), - [aux_sym__val_number_decimal_token4] = ACTIONS(1579), - [aux_sym__val_number_token1] = ACTIONS(1579), - [aux_sym__val_number_token2] = ACTIONS(1579), - [aux_sym__val_number_token3] = ACTIONS(1579), - [aux_sym__val_number_token4] = ACTIONS(1579), - [aux_sym__val_number_token5] = ACTIONS(1579), - [aux_sym__val_number_token6] = ACTIONS(1579), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym__str_single_quotes] = ACTIONS(1579), - [sym__str_back_ticks] = ACTIONS(1579), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1579), - [sym__entry_separator] = ACTIONS(1591), - [anon_sym_register] = ACTIONS(1579), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1593), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1591), - }, - [554] = { - [sym_comment] = STATE(554), - [anon_sym_export] = ACTIONS(2212), - [anon_sym_alias] = ACTIONS(2212), - [anon_sym_let] = ACTIONS(2212), - [anon_sym_let_DASHenv] = ACTIONS(2212), - [anon_sym_mut] = ACTIONS(2212), - [anon_sym_const] = ACTIONS(2212), - [aux_sym_cmd_identifier_token1] = ACTIONS(2212), - [aux_sym_cmd_identifier_token2] = ACTIONS(2212), - [aux_sym_cmd_identifier_token3] = ACTIONS(2212), - [aux_sym_cmd_identifier_token4] = ACTIONS(2212), - [aux_sym_cmd_identifier_token5] = ACTIONS(2212), - [aux_sym_cmd_identifier_token6] = ACTIONS(2212), - [aux_sym_cmd_identifier_token7] = ACTIONS(2212), - [aux_sym_cmd_identifier_token8] = ACTIONS(2212), - [aux_sym_cmd_identifier_token9] = ACTIONS(2212), - [aux_sym_cmd_identifier_token10] = ACTIONS(2212), - [aux_sym_cmd_identifier_token11] = ACTIONS(2212), - [aux_sym_cmd_identifier_token12] = ACTIONS(2212), - [aux_sym_cmd_identifier_token13] = ACTIONS(2212), - [aux_sym_cmd_identifier_token14] = ACTIONS(2212), - [aux_sym_cmd_identifier_token15] = ACTIONS(2212), - [aux_sym_cmd_identifier_token16] = ACTIONS(2212), - [aux_sym_cmd_identifier_token17] = ACTIONS(2212), - [aux_sym_cmd_identifier_token18] = ACTIONS(2212), - [aux_sym_cmd_identifier_token19] = ACTIONS(2212), - [aux_sym_cmd_identifier_token20] = ACTIONS(2212), - [aux_sym_cmd_identifier_token21] = ACTIONS(2212), - [aux_sym_cmd_identifier_token22] = ACTIONS(2212), - [aux_sym_cmd_identifier_token23] = ACTIONS(2212), - [aux_sym_cmd_identifier_token24] = ACTIONS(2212), - [aux_sym_cmd_identifier_token25] = ACTIONS(2212), - [aux_sym_cmd_identifier_token26] = ACTIONS(2212), - [aux_sym_cmd_identifier_token27] = ACTIONS(2212), - [aux_sym_cmd_identifier_token28] = ACTIONS(2212), - [aux_sym_cmd_identifier_token29] = ACTIONS(2212), - [aux_sym_cmd_identifier_token30] = ACTIONS(2212), - [aux_sym_cmd_identifier_token31] = ACTIONS(2212), - [aux_sym_cmd_identifier_token32] = ACTIONS(2212), - [aux_sym_cmd_identifier_token33] = ACTIONS(2212), - [aux_sym_cmd_identifier_token34] = ACTIONS(2212), - [aux_sym_cmd_identifier_token35] = ACTIONS(2212), - [aux_sym_cmd_identifier_token36] = ACTIONS(2212), - [aux_sym_cmd_identifier_token37] = ACTIONS(2212), - [aux_sym_cmd_identifier_token38] = ACTIONS(2212), - [aux_sym_cmd_identifier_token39] = ACTIONS(2212), - [aux_sym_cmd_identifier_token40] = ACTIONS(2212), - [anon_sym_def] = ACTIONS(2212), - [anon_sym_export_DASHenv] = ACTIONS(2212), - [anon_sym_extern] = ACTIONS(2212), - [anon_sym_module] = ACTIONS(2212), - [anon_sym_use] = ACTIONS(2212), - [anon_sym_LPAREN] = ACTIONS(2212), - [anon_sym_COMMA] = ACTIONS(2212), - [anon_sym_DOLLAR] = ACTIONS(2212), - [anon_sym_error] = ACTIONS(2212), - [anon_sym_DASH2] = ACTIONS(2212), - [anon_sym_break] = ACTIONS(2212), - [anon_sym_continue] = ACTIONS(2212), - [anon_sym_for] = ACTIONS(2212), - [anon_sym_in2] = ACTIONS(2212), - [anon_sym_loop] = ACTIONS(2212), - [anon_sym_make] = ACTIONS(2212), - [anon_sym_while] = ACTIONS(2212), - [anon_sym_do] = ACTIONS(2212), - [anon_sym_if] = ACTIONS(2212), - [anon_sym_else] = ACTIONS(2212), - [anon_sym_match] = ACTIONS(2212), - [anon_sym_RBRACE] = ACTIONS(2212), - [anon_sym_try] = ACTIONS(2212), - [anon_sym_catch] = ACTIONS(2212), - [anon_sym_return] = ACTIONS(2212), - [anon_sym_source] = ACTIONS(2212), - [anon_sym_source_DASHenv] = ACTIONS(2212), - [anon_sym_hide] = ACTIONS(2212), - [anon_sym_hide_DASHenv] = ACTIONS(2212), - [anon_sym_overlay] = ACTIONS(2212), - [anon_sym_as] = ACTIONS(2212), - [anon_sym_LPAREN2] = ACTIONS(2214), - [anon_sym_PLUS2] = ACTIONS(2212), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2212), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2212), - [aux_sym__val_number_decimal_token1] = ACTIONS(2212), - [aux_sym__val_number_decimal_token2] = ACTIONS(2212), - [aux_sym__val_number_decimal_token3] = ACTIONS(2212), - [aux_sym__val_number_decimal_token4] = ACTIONS(2212), - [aux_sym__val_number_token1] = ACTIONS(2212), - [aux_sym__val_number_token2] = ACTIONS(2212), - [aux_sym__val_number_token3] = ACTIONS(2212), - [aux_sym__val_number_token4] = ACTIONS(2212), - [aux_sym__val_number_token5] = ACTIONS(2212), - [aux_sym__val_number_token6] = ACTIONS(2212), - [anon_sym_DQUOTE] = ACTIONS(2212), - [sym__str_single_quotes] = ACTIONS(2212), - [sym__str_back_ticks] = ACTIONS(2212), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2212), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2212), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2212), - [sym__entry_separator] = ACTIONS(2214), - [anon_sym_register] = ACTIONS(2212), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2214), + [568] = { + [sym__expr_parenthesized_immediate] = STATE(7374), + [sym_comment] = STATE(568), + [anon_sym_export] = ACTIONS(2124), + [anon_sym_alias] = ACTIONS(2124), + [anon_sym_let] = ACTIONS(2124), + [anon_sym_let_DASHenv] = ACTIONS(2124), + [anon_sym_mut] = ACTIONS(2124), + [anon_sym_const] = ACTIONS(2124), + [aux_sym_cmd_identifier_token1] = ACTIONS(2124), + [aux_sym_cmd_identifier_token2] = ACTIONS(2126), + [aux_sym_cmd_identifier_token3] = ACTIONS(2126), + [aux_sym_cmd_identifier_token4] = ACTIONS(2126), + [aux_sym_cmd_identifier_token5] = ACTIONS(2126), + [aux_sym_cmd_identifier_token6] = ACTIONS(2126), + [aux_sym_cmd_identifier_token7] = ACTIONS(2126), + [aux_sym_cmd_identifier_token8] = ACTIONS(2124), + [aux_sym_cmd_identifier_token9] = ACTIONS(2124), + [aux_sym_cmd_identifier_token10] = ACTIONS(2126), + [aux_sym_cmd_identifier_token11] = ACTIONS(2126), + [aux_sym_cmd_identifier_token12] = ACTIONS(2124), + [aux_sym_cmd_identifier_token13] = ACTIONS(2124), + [aux_sym_cmd_identifier_token14] = ACTIONS(2124), + [aux_sym_cmd_identifier_token15] = ACTIONS(2124), + [aux_sym_cmd_identifier_token16] = ACTIONS(2126), + [aux_sym_cmd_identifier_token17] = ACTIONS(2126), + [aux_sym_cmd_identifier_token18] = ACTIONS(2126), + [aux_sym_cmd_identifier_token19] = ACTIONS(2126), + [aux_sym_cmd_identifier_token20] = ACTIONS(2126), + [aux_sym_cmd_identifier_token21] = ACTIONS(2126), + [aux_sym_cmd_identifier_token22] = ACTIONS(2126), + [aux_sym_cmd_identifier_token23] = ACTIONS(2126), + [aux_sym_cmd_identifier_token24] = ACTIONS(2126), + [aux_sym_cmd_identifier_token25] = ACTIONS(2126), + [aux_sym_cmd_identifier_token26] = ACTIONS(2126), + [aux_sym_cmd_identifier_token27] = ACTIONS(2126), + [aux_sym_cmd_identifier_token28] = ACTIONS(2126), + [aux_sym_cmd_identifier_token29] = ACTIONS(2126), + [aux_sym_cmd_identifier_token30] = ACTIONS(2126), + [aux_sym_cmd_identifier_token31] = ACTIONS(2126), + [aux_sym_cmd_identifier_token32] = ACTIONS(2126), + [aux_sym_cmd_identifier_token33] = ACTIONS(2126), + [aux_sym_cmd_identifier_token34] = ACTIONS(2124), + [aux_sym_cmd_identifier_token35] = ACTIONS(2126), + [aux_sym_cmd_identifier_token36] = ACTIONS(2126), + [aux_sym_cmd_identifier_token37] = ACTIONS(2126), + [aux_sym_cmd_identifier_token38] = ACTIONS(2124), + [aux_sym_cmd_identifier_token39] = ACTIONS(2126), + [aux_sym_cmd_identifier_token40] = ACTIONS(2126), + [anon_sym_def] = ACTIONS(2124), + [anon_sym_export_DASHenv] = ACTIONS(2124), + [anon_sym_extern] = ACTIONS(2124), + [anon_sym_module] = ACTIONS(2124), + [anon_sym_use] = ACTIONS(2124), + [anon_sym_LPAREN] = ACTIONS(2124), + [anon_sym_COMMA] = ACTIONS(2126), + [anon_sym_DOLLAR] = ACTIONS(2124), + [anon_sym_error] = ACTIONS(2124), + [anon_sym_DASH2] = ACTIONS(2124), + [anon_sym_break] = ACTIONS(2124), + [anon_sym_continue] = ACTIONS(2124), + [anon_sym_for] = ACTIONS(2124), + [anon_sym_in2] = ACTIONS(2124), + [anon_sym_loop] = ACTIONS(2124), + [anon_sym_make] = ACTIONS(2124), + [anon_sym_while] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2124), + [anon_sym_if] = ACTIONS(2124), + [anon_sym_else] = ACTIONS(2124), + [anon_sym_match] = ACTIONS(2124), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2124), + [anon_sym_catch] = ACTIONS(2124), + [anon_sym_return] = ACTIONS(2124), + [anon_sym_source] = ACTIONS(2124), + [anon_sym_source_DASHenv] = ACTIONS(2124), + [anon_sym_hide] = ACTIONS(2124), + [anon_sym_hide_DASHenv] = ACTIONS(2124), + [anon_sym_overlay] = ACTIONS(2124), + [anon_sym_as] = ACTIONS(2124), + [anon_sym_LPAREN2] = ACTIONS(1618), + [anon_sym_PLUS2] = ACTIONS(2124), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2126), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2126), + [aux_sym__val_number_decimal_token1] = ACTIONS(2124), + [aux_sym__val_number_decimal_token2] = ACTIONS(2126), + [aux_sym__val_number_decimal_token3] = ACTIONS(2126), + [aux_sym__val_number_decimal_token4] = ACTIONS(2126), + [aux_sym__val_number_token1] = ACTIONS(2126), + [aux_sym__val_number_token2] = ACTIONS(2126), + [aux_sym__val_number_token3] = ACTIONS(2126), + [aux_sym__val_number_token4] = ACTIONS(2124), + [aux_sym__val_number_token5] = ACTIONS(2124), + [aux_sym__val_number_token6] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2126), + [sym__str_single_quotes] = ACTIONS(2126), + [sym__str_back_ticks] = ACTIONS(2126), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2126), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2126), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2126), + [anon_sym_register] = ACTIONS(2124), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2126), }, - [555] = { - [sym_comment] = STATE(555), - [anon_sym_export] = ACTIONS(2216), - [anon_sym_alias] = ACTIONS(2216), - [anon_sym_let] = ACTIONS(2216), - [anon_sym_let_DASHenv] = ACTIONS(2216), - [anon_sym_mut] = ACTIONS(2216), - [anon_sym_const] = ACTIONS(2216), - [aux_sym_cmd_identifier_token1] = ACTIONS(2216), - [aux_sym_cmd_identifier_token2] = ACTIONS(2216), - [aux_sym_cmd_identifier_token3] = ACTIONS(2216), - [aux_sym_cmd_identifier_token4] = ACTIONS(2216), - [aux_sym_cmd_identifier_token5] = ACTIONS(2216), - [aux_sym_cmd_identifier_token6] = ACTIONS(2216), - [aux_sym_cmd_identifier_token7] = ACTIONS(2216), - [aux_sym_cmd_identifier_token8] = ACTIONS(2216), - [aux_sym_cmd_identifier_token9] = ACTIONS(2216), - [aux_sym_cmd_identifier_token10] = ACTIONS(2216), - [aux_sym_cmd_identifier_token11] = ACTIONS(2216), - [aux_sym_cmd_identifier_token12] = ACTIONS(2216), - [aux_sym_cmd_identifier_token13] = ACTIONS(2216), - [aux_sym_cmd_identifier_token14] = ACTIONS(2216), - [aux_sym_cmd_identifier_token15] = ACTIONS(2216), - [aux_sym_cmd_identifier_token16] = ACTIONS(2216), - [aux_sym_cmd_identifier_token17] = ACTIONS(2216), - [aux_sym_cmd_identifier_token18] = ACTIONS(2216), - [aux_sym_cmd_identifier_token19] = ACTIONS(2216), - [aux_sym_cmd_identifier_token20] = ACTIONS(2216), - [aux_sym_cmd_identifier_token21] = ACTIONS(2216), - [aux_sym_cmd_identifier_token22] = ACTIONS(2216), - [aux_sym_cmd_identifier_token23] = ACTIONS(2216), - [aux_sym_cmd_identifier_token24] = ACTIONS(2216), - [aux_sym_cmd_identifier_token25] = ACTIONS(2216), - [aux_sym_cmd_identifier_token26] = ACTIONS(2216), - [aux_sym_cmd_identifier_token27] = ACTIONS(2216), - [aux_sym_cmd_identifier_token28] = ACTIONS(2216), - [aux_sym_cmd_identifier_token29] = ACTIONS(2216), - [aux_sym_cmd_identifier_token30] = ACTIONS(2216), - [aux_sym_cmd_identifier_token31] = ACTIONS(2216), - [aux_sym_cmd_identifier_token32] = ACTIONS(2216), - [aux_sym_cmd_identifier_token33] = ACTIONS(2216), - [aux_sym_cmd_identifier_token34] = ACTIONS(2216), - [aux_sym_cmd_identifier_token35] = ACTIONS(2216), - [aux_sym_cmd_identifier_token36] = ACTIONS(2216), - [aux_sym_cmd_identifier_token37] = ACTIONS(2216), - [aux_sym_cmd_identifier_token38] = ACTIONS(2216), - [aux_sym_cmd_identifier_token39] = ACTIONS(2216), - [aux_sym_cmd_identifier_token40] = ACTIONS(2216), - [anon_sym_def] = ACTIONS(2216), - [anon_sym_export_DASHenv] = ACTIONS(2216), - [anon_sym_extern] = ACTIONS(2216), - [anon_sym_module] = ACTIONS(2216), - [anon_sym_use] = ACTIONS(2216), - [anon_sym_LPAREN] = ACTIONS(2216), - [anon_sym_COMMA] = ACTIONS(2216), - [anon_sym_DOLLAR] = ACTIONS(2216), - [anon_sym_error] = ACTIONS(2216), - [anon_sym_DASH2] = ACTIONS(2216), - [anon_sym_break] = ACTIONS(2216), - [anon_sym_continue] = ACTIONS(2216), - [anon_sym_for] = ACTIONS(2216), - [anon_sym_in2] = ACTIONS(2216), - [anon_sym_loop] = ACTIONS(2216), - [anon_sym_make] = ACTIONS(2216), - [anon_sym_while] = ACTIONS(2216), - [anon_sym_do] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2216), - [anon_sym_else] = ACTIONS(2216), - [anon_sym_match] = ACTIONS(2216), - [anon_sym_RBRACE] = ACTIONS(2216), - [anon_sym_try] = ACTIONS(2216), - [anon_sym_catch] = ACTIONS(2216), - [anon_sym_return] = ACTIONS(2216), - [anon_sym_source] = ACTIONS(2216), - [anon_sym_source_DASHenv] = ACTIONS(2216), - [anon_sym_hide] = ACTIONS(2216), - [anon_sym_hide_DASHenv] = ACTIONS(2216), - [anon_sym_overlay] = ACTIONS(2216), - [anon_sym_as] = ACTIONS(2216), - [anon_sym_LPAREN2] = ACTIONS(2218), - [anon_sym_PLUS2] = ACTIONS(2216), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2216), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2216), - [aux_sym__val_number_decimal_token1] = ACTIONS(2216), - [aux_sym__val_number_decimal_token2] = ACTIONS(2216), - [aux_sym__val_number_decimal_token3] = ACTIONS(2216), - [aux_sym__val_number_decimal_token4] = ACTIONS(2216), - [aux_sym__val_number_token1] = ACTIONS(2216), - [aux_sym__val_number_token2] = ACTIONS(2216), - [aux_sym__val_number_token3] = ACTIONS(2216), - [aux_sym__val_number_token4] = ACTIONS(2216), - [aux_sym__val_number_token5] = ACTIONS(2216), - [aux_sym__val_number_token6] = ACTIONS(2216), - [anon_sym_DQUOTE] = ACTIONS(2216), - [sym__str_single_quotes] = ACTIONS(2216), - [sym__str_back_ticks] = ACTIONS(2216), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2216), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2216), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2216), - [sym__entry_separator] = ACTIONS(2218), - [anon_sym_register] = ACTIONS(2216), + [569] = { + [sym_comment] = STATE(569), + [anon_sym_export] = ACTIONS(1760), + [anon_sym_alias] = ACTIONS(1760), + [anon_sym_let] = ACTIONS(1760), + [anon_sym_let_DASHenv] = ACTIONS(1760), + [anon_sym_mut] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [aux_sym_cmd_identifier_token1] = ACTIONS(1760), + [aux_sym_cmd_identifier_token2] = ACTIONS(1760), + [aux_sym_cmd_identifier_token3] = ACTIONS(1760), + [aux_sym_cmd_identifier_token4] = ACTIONS(1760), + [aux_sym_cmd_identifier_token5] = ACTIONS(1760), + [aux_sym_cmd_identifier_token6] = ACTIONS(1760), + [aux_sym_cmd_identifier_token7] = ACTIONS(1760), + [aux_sym_cmd_identifier_token8] = ACTIONS(1760), + [aux_sym_cmd_identifier_token9] = ACTIONS(1760), + [aux_sym_cmd_identifier_token10] = ACTIONS(1760), + [aux_sym_cmd_identifier_token11] = ACTIONS(1760), + [aux_sym_cmd_identifier_token12] = ACTIONS(1760), + [aux_sym_cmd_identifier_token13] = ACTIONS(1760), + [aux_sym_cmd_identifier_token14] = ACTIONS(1760), + [aux_sym_cmd_identifier_token15] = ACTIONS(1760), + [aux_sym_cmd_identifier_token16] = ACTIONS(1760), + [aux_sym_cmd_identifier_token17] = ACTIONS(1760), + [aux_sym_cmd_identifier_token18] = ACTIONS(1760), + [aux_sym_cmd_identifier_token19] = ACTIONS(1760), + [aux_sym_cmd_identifier_token20] = ACTIONS(1760), + [aux_sym_cmd_identifier_token21] = ACTIONS(1760), + [aux_sym_cmd_identifier_token22] = ACTIONS(1760), + [aux_sym_cmd_identifier_token23] = ACTIONS(1760), + [aux_sym_cmd_identifier_token24] = ACTIONS(1760), + [aux_sym_cmd_identifier_token25] = ACTIONS(1760), + [aux_sym_cmd_identifier_token26] = ACTIONS(1760), + [aux_sym_cmd_identifier_token27] = ACTIONS(1760), + [aux_sym_cmd_identifier_token28] = ACTIONS(1760), + [aux_sym_cmd_identifier_token29] = ACTIONS(1760), + [aux_sym_cmd_identifier_token30] = ACTIONS(1760), + [aux_sym_cmd_identifier_token31] = ACTIONS(1760), + [aux_sym_cmd_identifier_token32] = ACTIONS(1760), + [aux_sym_cmd_identifier_token33] = ACTIONS(1760), + [aux_sym_cmd_identifier_token34] = ACTIONS(1760), + [aux_sym_cmd_identifier_token35] = ACTIONS(1760), + [aux_sym_cmd_identifier_token36] = ACTIONS(1760), + [aux_sym_cmd_identifier_token37] = ACTIONS(1760), + [aux_sym_cmd_identifier_token38] = ACTIONS(1760), + [aux_sym_cmd_identifier_token39] = ACTIONS(1760), + [aux_sym_cmd_identifier_token40] = ACTIONS(1760), + [anon_sym_def] = ACTIONS(1760), + [anon_sym_export_DASHenv] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym_module] = ACTIONS(1760), + [anon_sym_use] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_COMMA] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_error] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_loop] = ACTIONS(1760), + [anon_sym_make] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_do] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_match] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_catch] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_source] = ACTIONS(1760), + [anon_sym_source_DASHenv] = ACTIONS(1760), + [anon_sym_hide] = ACTIONS(1760), + [anon_sym_hide_DASHenv] = ACTIONS(1760), + [anon_sym_overlay] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1760), + [aux_sym__immediate_decimal_token2] = ACTIONS(2258), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1760), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1760), + [aux_sym__val_number_decimal_token4] = ACTIONS(1760), + [aux_sym__val_number_token1] = ACTIONS(1760), + [aux_sym__val_number_token2] = ACTIONS(1760), + [aux_sym__val_number_token3] = ACTIONS(1760), + [aux_sym__val_number_token4] = ACTIONS(1760), + [aux_sym__val_number_token5] = ACTIONS(1760), + [aux_sym__val_number_token6] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1760), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1760), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1760), + [sym__entry_separator] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1760), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2218), - }, - [556] = { - [sym__expr_parenthesized_immediate] = STATE(7742), - [sym_comment] = STATE(556), - [anon_sym_export] = ACTIONS(2071), - [anon_sym_alias] = ACTIONS(2071), - [anon_sym_let] = ACTIONS(2071), - [anon_sym_let_DASHenv] = ACTIONS(2071), - [anon_sym_mut] = ACTIONS(2071), - [anon_sym_const] = ACTIONS(2071), - [aux_sym_cmd_identifier_token1] = ACTIONS(2071), - [aux_sym_cmd_identifier_token2] = ACTIONS(2073), - [aux_sym_cmd_identifier_token3] = ACTIONS(2073), - [aux_sym_cmd_identifier_token4] = ACTIONS(2073), - [aux_sym_cmd_identifier_token5] = ACTIONS(2073), - [aux_sym_cmd_identifier_token6] = ACTIONS(2073), - [aux_sym_cmd_identifier_token7] = ACTIONS(2073), - [aux_sym_cmd_identifier_token8] = ACTIONS(2071), - [aux_sym_cmd_identifier_token9] = ACTIONS(2071), - [aux_sym_cmd_identifier_token10] = ACTIONS(2073), - [aux_sym_cmd_identifier_token11] = ACTIONS(2073), - [aux_sym_cmd_identifier_token12] = ACTIONS(2071), - [aux_sym_cmd_identifier_token13] = ACTIONS(2071), - [aux_sym_cmd_identifier_token14] = ACTIONS(2071), - [aux_sym_cmd_identifier_token15] = ACTIONS(2071), - [aux_sym_cmd_identifier_token16] = ACTIONS(2073), - [aux_sym_cmd_identifier_token17] = ACTIONS(2073), - [aux_sym_cmd_identifier_token18] = ACTIONS(2073), - [aux_sym_cmd_identifier_token19] = ACTIONS(2073), - [aux_sym_cmd_identifier_token20] = ACTIONS(2073), - [aux_sym_cmd_identifier_token21] = ACTIONS(2073), - [aux_sym_cmd_identifier_token22] = ACTIONS(2073), - [aux_sym_cmd_identifier_token23] = ACTIONS(2073), - [aux_sym_cmd_identifier_token24] = ACTIONS(2073), - [aux_sym_cmd_identifier_token25] = ACTIONS(2073), - [aux_sym_cmd_identifier_token26] = ACTIONS(2073), - [aux_sym_cmd_identifier_token27] = ACTIONS(2073), - [aux_sym_cmd_identifier_token28] = ACTIONS(2073), - [aux_sym_cmd_identifier_token29] = ACTIONS(2073), - [aux_sym_cmd_identifier_token30] = ACTIONS(2073), - [aux_sym_cmd_identifier_token31] = ACTIONS(2073), - [aux_sym_cmd_identifier_token32] = ACTIONS(2073), - [aux_sym_cmd_identifier_token33] = ACTIONS(2073), - [aux_sym_cmd_identifier_token34] = ACTIONS(2071), - [aux_sym_cmd_identifier_token35] = ACTIONS(2073), - [aux_sym_cmd_identifier_token36] = ACTIONS(2073), - [aux_sym_cmd_identifier_token37] = ACTIONS(2073), - [aux_sym_cmd_identifier_token38] = ACTIONS(2071), - [aux_sym_cmd_identifier_token39] = ACTIONS(2073), - [aux_sym_cmd_identifier_token40] = ACTIONS(2073), - [anon_sym_def] = ACTIONS(2071), - [anon_sym_export_DASHenv] = ACTIONS(2071), - [anon_sym_extern] = ACTIONS(2071), - [anon_sym_module] = ACTIONS(2071), - [anon_sym_use] = ACTIONS(2071), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_COMMA] = ACTIONS(2073), - [anon_sym_DOLLAR] = ACTIONS(2071), - [anon_sym_error] = ACTIONS(2071), - [anon_sym_DASH2] = ACTIONS(2071), - [anon_sym_break] = ACTIONS(2071), - [anon_sym_continue] = ACTIONS(2071), - [anon_sym_for] = ACTIONS(2071), - [anon_sym_in2] = ACTIONS(2071), - [anon_sym_loop] = ACTIONS(2071), - [anon_sym_make] = ACTIONS(2071), - [anon_sym_while] = ACTIONS(2071), - [anon_sym_do] = ACTIONS(2071), - [anon_sym_if] = ACTIONS(2071), - [anon_sym_else] = ACTIONS(2071), - [anon_sym_match] = ACTIONS(2071), - [anon_sym_RBRACE] = ACTIONS(2073), - [anon_sym_try] = ACTIONS(2071), - [anon_sym_catch] = ACTIONS(2071), - [anon_sym_return] = ACTIONS(2071), - [anon_sym_source] = ACTIONS(2071), - [anon_sym_source_DASHenv] = ACTIONS(2071), - [anon_sym_hide] = ACTIONS(2071), - [anon_sym_hide_DASHenv] = ACTIONS(2071), - [anon_sym_overlay] = ACTIONS(2071), - [anon_sym_as] = ACTIONS(2071), - [anon_sym_LPAREN2] = ACTIONS(1581), - [anon_sym_PLUS2] = ACTIONS(2071), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2073), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2073), - [aux_sym__val_number_decimal_token1] = ACTIONS(2071), - [aux_sym__val_number_decimal_token2] = ACTIONS(2073), - [aux_sym__val_number_decimal_token3] = ACTIONS(2073), - [aux_sym__val_number_decimal_token4] = ACTIONS(2073), - [aux_sym__val_number_token1] = ACTIONS(2073), - [aux_sym__val_number_token2] = ACTIONS(2073), - [aux_sym__val_number_token3] = ACTIONS(2073), - [aux_sym__val_number_token4] = ACTIONS(2071), - [aux_sym__val_number_token5] = ACTIONS(2071), - [aux_sym__val_number_token6] = ACTIONS(2071), - [anon_sym_DQUOTE] = ACTIONS(2073), - [sym__str_single_quotes] = ACTIONS(2073), - [sym__str_back_ticks] = ACTIONS(2073), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2073), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2073), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2073), - [anon_sym_register] = ACTIONS(2071), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2073), + [sym_raw_string_begin] = ACTIONS(1762), }, - [557] = { - [sym_comment] = STATE(557), - [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_COMMA] = ACTIONS(994), - [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(994), - [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_hide] = ACTIONS(998), - [anon_sym_hide_DASHenv] = ACTIONS(998), - [anon_sym_overlay] = ACTIONS(998), - [anon_sym_as] = ACTIONS(998), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_PLUS2] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(994), - [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(994), - [sym__str_single_quotes] = ACTIONS(994), - [sym__str_back_ticks] = ACTIONS(994), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(994), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(994), - [anon_sym_register] = ACTIONS(998), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2192), + [570] = { + [sym_comment] = STATE(570), + [anon_sym_export] = ACTIONS(1875), + [anon_sym_alias] = ACTIONS(1875), + [anon_sym_let] = ACTIONS(1875), + [anon_sym_let_DASHenv] = ACTIONS(1875), + [anon_sym_mut] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [aux_sym_cmd_identifier_token1] = ACTIONS(1875), + [aux_sym_cmd_identifier_token2] = ACTIONS(1875), + [aux_sym_cmd_identifier_token3] = ACTIONS(1875), + [aux_sym_cmd_identifier_token4] = ACTIONS(1875), + [aux_sym_cmd_identifier_token5] = ACTIONS(1875), + [aux_sym_cmd_identifier_token6] = ACTIONS(1875), + [aux_sym_cmd_identifier_token7] = ACTIONS(1875), + [aux_sym_cmd_identifier_token8] = ACTIONS(1875), + [aux_sym_cmd_identifier_token9] = ACTIONS(1875), + [aux_sym_cmd_identifier_token10] = ACTIONS(1875), + [aux_sym_cmd_identifier_token11] = ACTIONS(1875), + [aux_sym_cmd_identifier_token12] = ACTIONS(1875), + [aux_sym_cmd_identifier_token13] = ACTIONS(1875), + [aux_sym_cmd_identifier_token14] = ACTIONS(1875), + [aux_sym_cmd_identifier_token15] = ACTIONS(1875), + [aux_sym_cmd_identifier_token16] = ACTIONS(1875), + [aux_sym_cmd_identifier_token17] = ACTIONS(1875), + [aux_sym_cmd_identifier_token18] = ACTIONS(1875), + [aux_sym_cmd_identifier_token19] = ACTIONS(1875), + [aux_sym_cmd_identifier_token20] = ACTIONS(1875), + [aux_sym_cmd_identifier_token21] = ACTIONS(1875), + [aux_sym_cmd_identifier_token22] = ACTIONS(1875), + [aux_sym_cmd_identifier_token23] = ACTIONS(1875), + [aux_sym_cmd_identifier_token24] = ACTIONS(1875), + [aux_sym_cmd_identifier_token25] = ACTIONS(1875), + [aux_sym_cmd_identifier_token26] = ACTIONS(1875), + [aux_sym_cmd_identifier_token27] = ACTIONS(1875), + [aux_sym_cmd_identifier_token28] = ACTIONS(1875), + [aux_sym_cmd_identifier_token29] = ACTIONS(1875), + [aux_sym_cmd_identifier_token30] = ACTIONS(1875), + [aux_sym_cmd_identifier_token31] = ACTIONS(1875), + [aux_sym_cmd_identifier_token32] = ACTIONS(1875), + [aux_sym_cmd_identifier_token33] = ACTIONS(1875), + [aux_sym_cmd_identifier_token34] = ACTIONS(1875), + [aux_sym_cmd_identifier_token35] = ACTIONS(1875), + [aux_sym_cmd_identifier_token36] = ACTIONS(1875), + [aux_sym_cmd_identifier_token37] = ACTIONS(1875), + [aux_sym_cmd_identifier_token38] = ACTIONS(1875), + [aux_sym_cmd_identifier_token39] = ACTIONS(1875), + [aux_sym_cmd_identifier_token40] = ACTIONS(1875), + [anon_sym_def] = ACTIONS(1875), + [anon_sym_export_DASHenv] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1875), + [anon_sym_module] = ACTIONS(1875), + [anon_sym_use] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_COMMA] = ACTIONS(1875), + [anon_sym_DOLLAR] = ACTIONS(1875), + [anon_sym_error] = ACTIONS(1875), + [anon_sym_DASH2] = ACTIONS(1875), + [anon_sym_break] = ACTIONS(1875), + [anon_sym_continue] = ACTIONS(1875), + [anon_sym_for] = ACTIONS(1875), + [anon_sym_in2] = ACTIONS(1875), + [anon_sym_loop] = ACTIONS(1875), + [anon_sym_make] = ACTIONS(1875), + [anon_sym_while] = ACTIONS(1875), + [anon_sym_do] = ACTIONS(1875), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_else] = ACTIONS(1875), + [anon_sym_match] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1875), + [anon_sym_try] = ACTIONS(1875), + [anon_sym_catch] = ACTIONS(1875), + [anon_sym_return] = ACTIONS(1875), + [anon_sym_source] = ACTIONS(1875), + [anon_sym_source_DASHenv] = ACTIONS(1875), + [anon_sym_hide] = ACTIONS(1875), + [anon_sym_hide_DASHenv] = ACTIONS(1875), + [anon_sym_overlay] = ACTIONS(1875), + [anon_sym_as] = ACTIONS(1875), + [anon_sym_PLUS2] = ACTIONS(1875), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1875), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1875), + [aux_sym__val_number_decimal_token1] = ACTIONS(1875), + [aux_sym__val_number_decimal_token2] = ACTIONS(1875), + [aux_sym__val_number_decimal_token3] = ACTIONS(1875), + [aux_sym__val_number_decimal_token4] = ACTIONS(1875), + [aux_sym__val_number_token1] = ACTIONS(1875), + [aux_sym__val_number_token2] = ACTIONS(1875), + [aux_sym__val_number_token3] = ACTIONS(1875), + [aux_sym__val_number_token4] = ACTIONS(1875), + [aux_sym__val_number_token5] = ACTIONS(1875), + [aux_sym__val_number_token6] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym__str_single_quotes] = ACTIONS(1875), + [sym__str_back_ticks] = ACTIONS(1875), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1875), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1875), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1875), + [sym__entry_separator] = ACTIONS(1877), + [anon_sym_register] = ACTIONS(1875), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(994), + [sym_raw_string_begin] = ACTIONS(1877), }, - [558] = { - [sym_comment] = STATE(558), - [anon_sym_export] = ACTIONS(970), - [anon_sym_alias] = ACTIONS(970), - [anon_sym_let] = ACTIONS(970), - [anon_sym_let_DASHenv] = ACTIONS(970), - [anon_sym_mut] = ACTIONS(970), - [anon_sym_const] = ACTIONS(970), - [aux_sym_cmd_identifier_token1] = ACTIONS(970), - [aux_sym_cmd_identifier_token2] = ACTIONS(970), - [aux_sym_cmd_identifier_token3] = ACTIONS(970), - [aux_sym_cmd_identifier_token4] = ACTIONS(970), - [aux_sym_cmd_identifier_token5] = ACTIONS(970), - [aux_sym_cmd_identifier_token6] = ACTIONS(970), - [aux_sym_cmd_identifier_token7] = ACTIONS(970), - [aux_sym_cmd_identifier_token8] = ACTIONS(970), - [aux_sym_cmd_identifier_token9] = ACTIONS(970), - [aux_sym_cmd_identifier_token10] = ACTIONS(970), - [aux_sym_cmd_identifier_token11] = ACTIONS(970), - [aux_sym_cmd_identifier_token12] = ACTIONS(970), - [aux_sym_cmd_identifier_token13] = ACTIONS(970), - [aux_sym_cmd_identifier_token14] = ACTIONS(970), - [aux_sym_cmd_identifier_token15] = ACTIONS(970), - [aux_sym_cmd_identifier_token16] = ACTIONS(970), - [aux_sym_cmd_identifier_token17] = ACTIONS(970), - [aux_sym_cmd_identifier_token18] = ACTIONS(970), - [aux_sym_cmd_identifier_token19] = ACTIONS(970), - [aux_sym_cmd_identifier_token20] = ACTIONS(970), - [aux_sym_cmd_identifier_token21] = ACTIONS(970), - [aux_sym_cmd_identifier_token22] = ACTIONS(970), - [aux_sym_cmd_identifier_token23] = ACTIONS(970), - [aux_sym_cmd_identifier_token24] = ACTIONS(970), - [aux_sym_cmd_identifier_token25] = ACTIONS(970), - [aux_sym_cmd_identifier_token26] = ACTIONS(970), - [aux_sym_cmd_identifier_token27] = ACTIONS(970), - [aux_sym_cmd_identifier_token28] = ACTIONS(970), - [aux_sym_cmd_identifier_token29] = ACTIONS(970), - [aux_sym_cmd_identifier_token30] = ACTIONS(970), - [aux_sym_cmd_identifier_token31] = ACTIONS(970), - [aux_sym_cmd_identifier_token32] = ACTIONS(970), - [aux_sym_cmd_identifier_token33] = ACTIONS(970), - [aux_sym_cmd_identifier_token34] = ACTIONS(970), - [aux_sym_cmd_identifier_token35] = ACTIONS(970), - [aux_sym_cmd_identifier_token36] = ACTIONS(970), - [aux_sym_cmd_identifier_token37] = ACTIONS(970), - [aux_sym_cmd_identifier_token38] = ACTIONS(970), - [aux_sym_cmd_identifier_token39] = ACTIONS(970), - [aux_sym_cmd_identifier_token40] = ACTIONS(970), - [anon_sym_def] = ACTIONS(970), - [anon_sym_export_DASHenv] = ACTIONS(970), - [anon_sym_extern] = ACTIONS(970), - [anon_sym_module] = ACTIONS(970), - [anon_sym_use] = ACTIONS(970), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_COMMA] = ACTIONS(970), - [anon_sym_DOLLAR] = ACTIONS(970), - [anon_sym_error] = ACTIONS(970), - [anon_sym_DASH2] = ACTIONS(970), - [anon_sym_break] = ACTIONS(970), - [anon_sym_continue] = ACTIONS(970), - [anon_sym_for] = ACTIONS(970), - [anon_sym_in2] = ACTIONS(970), - [anon_sym_loop] = ACTIONS(970), - [anon_sym_make] = ACTIONS(970), - [anon_sym_while] = ACTIONS(970), - [anon_sym_do] = ACTIONS(970), - [anon_sym_if] = ACTIONS(970), - [anon_sym_else] = ACTIONS(970), - [anon_sym_match] = ACTIONS(970), - [anon_sym_RBRACE] = ACTIONS(970), - [anon_sym_try] = ACTIONS(970), - [anon_sym_catch] = ACTIONS(970), - [anon_sym_return] = ACTIONS(970), - [anon_sym_source] = ACTIONS(970), - [anon_sym_source_DASHenv] = ACTIONS(970), - [anon_sym_hide] = ACTIONS(970), - [anon_sym_hide_DASHenv] = ACTIONS(970), - [anon_sym_overlay] = ACTIONS(970), - [anon_sym_as] = ACTIONS(970), - [anon_sym_PLUS2] = ACTIONS(970), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(970), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(970), - [aux_sym__val_number_decimal_token1] = ACTIONS(970), - [aux_sym__val_number_decimal_token2] = ACTIONS(970), - [aux_sym__val_number_decimal_token3] = ACTIONS(970), - [aux_sym__val_number_decimal_token4] = ACTIONS(970), - [aux_sym__val_number_token1] = ACTIONS(970), - [aux_sym__val_number_token2] = ACTIONS(970), - [aux_sym__val_number_token3] = ACTIONS(970), - [aux_sym__val_number_token4] = ACTIONS(970), - [aux_sym__val_number_token5] = ACTIONS(970), - [aux_sym__val_number_token6] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [sym__str_single_quotes] = ACTIONS(970), - [sym__str_back_ticks] = ACTIONS(970), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(970), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(970), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(970), - [sym__entry_separator] = ACTIONS(972), - [anon_sym_register] = ACTIONS(970), - [anon_sym_DOT2] = ACTIONS(970), + [571] = { + [sym_comment] = STATE(571), + [anon_sym_export] = ACTIONS(2260), + [anon_sym_alias] = ACTIONS(2260), + [anon_sym_let] = ACTIONS(2260), + [anon_sym_let_DASHenv] = ACTIONS(2260), + [anon_sym_mut] = ACTIONS(2260), + [anon_sym_const] = ACTIONS(2260), + [aux_sym_cmd_identifier_token1] = ACTIONS(2260), + [aux_sym_cmd_identifier_token2] = ACTIONS(2260), + [aux_sym_cmd_identifier_token3] = ACTIONS(2260), + [aux_sym_cmd_identifier_token4] = ACTIONS(2260), + [aux_sym_cmd_identifier_token5] = ACTIONS(2260), + [aux_sym_cmd_identifier_token6] = ACTIONS(2260), + [aux_sym_cmd_identifier_token7] = ACTIONS(2260), + [aux_sym_cmd_identifier_token8] = ACTIONS(2260), + [aux_sym_cmd_identifier_token9] = ACTIONS(2260), + [aux_sym_cmd_identifier_token10] = ACTIONS(2260), + [aux_sym_cmd_identifier_token11] = ACTIONS(2260), + [aux_sym_cmd_identifier_token12] = ACTIONS(2260), + [aux_sym_cmd_identifier_token13] = ACTIONS(2260), + [aux_sym_cmd_identifier_token14] = ACTIONS(2260), + [aux_sym_cmd_identifier_token15] = ACTIONS(2260), + [aux_sym_cmd_identifier_token16] = ACTIONS(2260), + [aux_sym_cmd_identifier_token17] = ACTIONS(2260), + [aux_sym_cmd_identifier_token18] = ACTIONS(2260), + [aux_sym_cmd_identifier_token19] = ACTIONS(2260), + [aux_sym_cmd_identifier_token20] = ACTIONS(2260), + [aux_sym_cmd_identifier_token21] = ACTIONS(2260), + [aux_sym_cmd_identifier_token22] = ACTIONS(2260), + [aux_sym_cmd_identifier_token23] = ACTIONS(2260), + [aux_sym_cmd_identifier_token24] = ACTIONS(2260), + [aux_sym_cmd_identifier_token25] = ACTIONS(2260), + [aux_sym_cmd_identifier_token26] = ACTIONS(2260), + [aux_sym_cmd_identifier_token27] = ACTIONS(2260), + [aux_sym_cmd_identifier_token28] = ACTIONS(2260), + [aux_sym_cmd_identifier_token29] = ACTIONS(2260), + [aux_sym_cmd_identifier_token30] = ACTIONS(2260), + [aux_sym_cmd_identifier_token31] = ACTIONS(2260), + [aux_sym_cmd_identifier_token32] = ACTIONS(2260), + [aux_sym_cmd_identifier_token33] = ACTIONS(2260), + [aux_sym_cmd_identifier_token34] = ACTIONS(2260), + [aux_sym_cmd_identifier_token35] = ACTIONS(2260), + [aux_sym_cmd_identifier_token36] = ACTIONS(2260), + [aux_sym_cmd_identifier_token37] = ACTIONS(2260), + [aux_sym_cmd_identifier_token38] = ACTIONS(2260), + [aux_sym_cmd_identifier_token39] = ACTIONS(2260), + [aux_sym_cmd_identifier_token40] = ACTIONS(2260), + [anon_sym_def] = ACTIONS(2260), + [anon_sym_export_DASHenv] = ACTIONS(2260), + [anon_sym_extern] = ACTIONS(2260), + [anon_sym_module] = ACTIONS(2260), + [anon_sym_use] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2260), + [anon_sym_COMMA] = ACTIONS(2260), + [anon_sym_DOLLAR] = ACTIONS(2260), + [anon_sym_error] = ACTIONS(2260), + [anon_sym_DASH2] = ACTIONS(2260), + [anon_sym_break] = ACTIONS(2260), + [anon_sym_continue] = ACTIONS(2260), + [anon_sym_for] = ACTIONS(2260), + [anon_sym_in2] = ACTIONS(2260), + [anon_sym_loop] = ACTIONS(2260), + [anon_sym_make] = ACTIONS(2260), + [anon_sym_while] = ACTIONS(2260), + [anon_sym_do] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2260), + [anon_sym_else] = ACTIONS(2260), + [anon_sym_match] = ACTIONS(2260), + [anon_sym_RBRACE] = ACTIONS(2260), + [anon_sym_try] = ACTIONS(2260), + [anon_sym_catch] = ACTIONS(2260), + [anon_sym_return] = ACTIONS(2260), + [anon_sym_source] = ACTIONS(2260), + [anon_sym_source_DASHenv] = ACTIONS(2260), + [anon_sym_hide] = ACTIONS(2260), + [anon_sym_hide_DASHenv] = ACTIONS(2260), + [anon_sym_overlay] = ACTIONS(2260), + [anon_sym_as] = ACTIONS(2260), + [anon_sym_PLUS2] = ACTIONS(2260), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2260), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2260), + [aux_sym__val_number_decimal_token1] = ACTIONS(2260), + [aux_sym__val_number_decimal_token2] = ACTIONS(2260), + [aux_sym__val_number_decimal_token3] = ACTIONS(2260), + [aux_sym__val_number_decimal_token4] = ACTIONS(2260), + [aux_sym__val_number_token1] = ACTIONS(2260), + [aux_sym__val_number_token2] = ACTIONS(2260), + [aux_sym__val_number_token3] = ACTIONS(2260), + [aux_sym__val_number_token4] = ACTIONS(2260), + [aux_sym__val_number_token5] = ACTIONS(2260), + [aux_sym__val_number_token6] = ACTIONS(2260), + [anon_sym_DQUOTE] = ACTIONS(2260), + [sym__str_single_quotes] = ACTIONS(2260), + [sym__str_back_ticks] = ACTIONS(2260), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2260), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2260), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2260), + [sym__entry_separator] = ACTIONS(2262), + [anon_sym_register] = ACTIONS(2260), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(972), + [sym_raw_string_begin] = ACTIONS(2262), }, - [559] = { - [sym__expr_parenthesized_immediate] = STATE(7742), - [sym_comment] = STATE(559), - [anon_sym_export] = ACTIONS(2075), - [anon_sym_alias] = ACTIONS(2075), - [anon_sym_let] = ACTIONS(2075), - [anon_sym_let_DASHenv] = ACTIONS(2075), - [anon_sym_mut] = ACTIONS(2075), - [anon_sym_const] = ACTIONS(2075), - [aux_sym_cmd_identifier_token1] = ACTIONS(2075), - [aux_sym_cmd_identifier_token2] = ACTIONS(2077), - [aux_sym_cmd_identifier_token3] = ACTIONS(2077), - [aux_sym_cmd_identifier_token4] = ACTIONS(2077), - [aux_sym_cmd_identifier_token5] = ACTIONS(2077), - [aux_sym_cmd_identifier_token6] = ACTIONS(2077), - [aux_sym_cmd_identifier_token7] = ACTIONS(2077), - [aux_sym_cmd_identifier_token8] = ACTIONS(2075), - [aux_sym_cmd_identifier_token9] = ACTIONS(2075), - [aux_sym_cmd_identifier_token10] = ACTIONS(2077), - [aux_sym_cmd_identifier_token11] = ACTIONS(2077), - [aux_sym_cmd_identifier_token12] = ACTIONS(2075), - [aux_sym_cmd_identifier_token13] = ACTIONS(2075), - [aux_sym_cmd_identifier_token14] = ACTIONS(2075), - [aux_sym_cmd_identifier_token15] = ACTIONS(2075), - [aux_sym_cmd_identifier_token16] = ACTIONS(2077), - [aux_sym_cmd_identifier_token17] = ACTIONS(2077), - [aux_sym_cmd_identifier_token18] = ACTIONS(2077), - [aux_sym_cmd_identifier_token19] = ACTIONS(2077), - [aux_sym_cmd_identifier_token20] = ACTIONS(2077), - [aux_sym_cmd_identifier_token21] = ACTIONS(2077), - [aux_sym_cmd_identifier_token22] = ACTIONS(2077), - [aux_sym_cmd_identifier_token23] = ACTIONS(2077), - [aux_sym_cmd_identifier_token24] = ACTIONS(2077), - [aux_sym_cmd_identifier_token25] = ACTIONS(2077), - [aux_sym_cmd_identifier_token26] = ACTIONS(2077), - [aux_sym_cmd_identifier_token27] = ACTIONS(2077), - [aux_sym_cmd_identifier_token28] = ACTIONS(2077), - [aux_sym_cmd_identifier_token29] = ACTIONS(2077), - [aux_sym_cmd_identifier_token30] = ACTIONS(2077), - [aux_sym_cmd_identifier_token31] = ACTIONS(2077), - [aux_sym_cmd_identifier_token32] = ACTIONS(2077), - [aux_sym_cmd_identifier_token33] = ACTIONS(2077), - [aux_sym_cmd_identifier_token34] = ACTIONS(2075), - [aux_sym_cmd_identifier_token35] = ACTIONS(2077), - [aux_sym_cmd_identifier_token36] = ACTIONS(2077), - [aux_sym_cmd_identifier_token37] = ACTIONS(2077), - [aux_sym_cmd_identifier_token38] = ACTIONS(2075), - [aux_sym_cmd_identifier_token39] = ACTIONS(2077), - [aux_sym_cmd_identifier_token40] = ACTIONS(2077), - [anon_sym_def] = ACTIONS(2075), - [anon_sym_export_DASHenv] = ACTIONS(2075), - [anon_sym_extern] = ACTIONS(2075), - [anon_sym_module] = ACTIONS(2075), - [anon_sym_use] = ACTIONS(2075), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_DOLLAR] = ACTIONS(2075), - [anon_sym_error] = ACTIONS(2075), - [anon_sym_DASH2] = ACTIONS(2075), - [anon_sym_break] = ACTIONS(2075), - [anon_sym_continue] = ACTIONS(2075), - [anon_sym_for] = ACTIONS(2075), - [anon_sym_in2] = ACTIONS(2075), - [anon_sym_loop] = ACTIONS(2075), - [anon_sym_make] = ACTIONS(2075), - [anon_sym_while] = ACTIONS(2075), - [anon_sym_do] = ACTIONS(2075), - [anon_sym_if] = ACTIONS(2075), - [anon_sym_else] = ACTIONS(2075), - [anon_sym_match] = ACTIONS(2075), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2075), - [anon_sym_catch] = ACTIONS(2075), - [anon_sym_return] = ACTIONS(2075), - [anon_sym_source] = ACTIONS(2075), - [anon_sym_source_DASHenv] = ACTIONS(2075), - [anon_sym_hide] = ACTIONS(2075), - [anon_sym_hide_DASHenv] = ACTIONS(2075), - [anon_sym_overlay] = ACTIONS(2075), - [anon_sym_as] = ACTIONS(2075), - [anon_sym_LPAREN2] = ACTIONS(1581), - [anon_sym_PLUS2] = ACTIONS(2075), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2077), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2077), - [aux_sym__val_number_decimal_token1] = ACTIONS(2075), - [aux_sym__val_number_decimal_token2] = ACTIONS(2077), - [aux_sym__val_number_decimal_token3] = ACTIONS(2077), - [aux_sym__val_number_decimal_token4] = ACTIONS(2077), - [aux_sym__val_number_token1] = ACTIONS(2077), - [aux_sym__val_number_token2] = ACTIONS(2077), - [aux_sym__val_number_token3] = ACTIONS(2077), - [aux_sym__val_number_token4] = ACTIONS(2075), - [aux_sym__val_number_token5] = ACTIONS(2075), - [aux_sym__val_number_token6] = ACTIONS(2075), - [anon_sym_DQUOTE] = ACTIONS(2077), - [sym__str_single_quotes] = ACTIONS(2077), - [sym__str_back_ticks] = ACTIONS(2077), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2077), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2077), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2077), - [anon_sym_register] = ACTIONS(2075), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2077), + [572] = { + [sym_comment] = STATE(572), + [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(1863), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1863), + [sym__entry_separator] = ACTIONS(1865), + [anon_sym_register] = ACTIONS(1863), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1865), }, - [560] = { - [sym__expr_parenthesized_immediate] = STATE(7742), - [sym_comment] = STATE(560), - [anon_sym_export] = ACTIONS(2079), - [anon_sym_alias] = ACTIONS(2079), - [anon_sym_let] = ACTIONS(2079), - [anon_sym_let_DASHenv] = ACTIONS(2079), - [anon_sym_mut] = ACTIONS(2079), - [anon_sym_const] = ACTIONS(2079), - [aux_sym_cmd_identifier_token1] = ACTIONS(2079), - [aux_sym_cmd_identifier_token2] = ACTIONS(2081), - [aux_sym_cmd_identifier_token3] = ACTIONS(2081), - [aux_sym_cmd_identifier_token4] = ACTIONS(2081), - [aux_sym_cmd_identifier_token5] = ACTIONS(2081), - [aux_sym_cmd_identifier_token6] = ACTIONS(2081), - [aux_sym_cmd_identifier_token7] = ACTIONS(2081), - [aux_sym_cmd_identifier_token8] = ACTIONS(2079), - [aux_sym_cmd_identifier_token9] = ACTIONS(2079), - [aux_sym_cmd_identifier_token10] = ACTIONS(2081), - [aux_sym_cmd_identifier_token11] = ACTIONS(2081), - [aux_sym_cmd_identifier_token12] = ACTIONS(2079), - [aux_sym_cmd_identifier_token13] = ACTIONS(2079), - [aux_sym_cmd_identifier_token14] = ACTIONS(2079), - [aux_sym_cmd_identifier_token15] = ACTIONS(2079), - [aux_sym_cmd_identifier_token16] = ACTIONS(2081), - [aux_sym_cmd_identifier_token17] = ACTIONS(2081), - [aux_sym_cmd_identifier_token18] = ACTIONS(2081), - [aux_sym_cmd_identifier_token19] = ACTIONS(2081), - [aux_sym_cmd_identifier_token20] = ACTIONS(2081), - [aux_sym_cmd_identifier_token21] = ACTIONS(2081), - [aux_sym_cmd_identifier_token22] = ACTIONS(2081), - [aux_sym_cmd_identifier_token23] = ACTIONS(2081), - [aux_sym_cmd_identifier_token24] = ACTIONS(2081), - [aux_sym_cmd_identifier_token25] = ACTIONS(2081), - [aux_sym_cmd_identifier_token26] = ACTIONS(2081), - [aux_sym_cmd_identifier_token27] = ACTIONS(2081), - [aux_sym_cmd_identifier_token28] = ACTIONS(2081), - [aux_sym_cmd_identifier_token29] = ACTIONS(2081), - [aux_sym_cmd_identifier_token30] = ACTIONS(2081), - [aux_sym_cmd_identifier_token31] = ACTIONS(2081), - [aux_sym_cmd_identifier_token32] = ACTIONS(2081), - [aux_sym_cmd_identifier_token33] = ACTIONS(2081), - [aux_sym_cmd_identifier_token34] = ACTIONS(2079), - [aux_sym_cmd_identifier_token35] = ACTIONS(2081), - [aux_sym_cmd_identifier_token36] = ACTIONS(2081), - [aux_sym_cmd_identifier_token37] = ACTIONS(2081), - [aux_sym_cmd_identifier_token38] = ACTIONS(2079), - [aux_sym_cmd_identifier_token39] = ACTIONS(2081), - [aux_sym_cmd_identifier_token40] = ACTIONS(2081), - [anon_sym_def] = ACTIONS(2079), - [anon_sym_export_DASHenv] = ACTIONS(2079), - [anon_sym_extern] = ACTIONS(2079), - [anon_sym_module] = ACTIONS(2079), - [anon_sym_use] = ACTIONS(2079), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_COMMA] = ACTIONS(2081), - [anon_sym_DOLLAR] = ACTIONS(2079), - [anon_sym_error] = ACTIONS(2079), - [anon_sym_DASH2] = ACTIONS(2079), - [anon_sym_break] = ACTIONS(2079), - [anon_sym_continue] = ACTIONS(2079), - [anon_sym_for] = ACTIONS(2079), - [anon_sym_in2] = ACTIONS(2079), - [anon_sym_loop] = ACTIONS(2079), - [anon_sym_make] = ACTIONS(2079), - [anon_sym_while] = ACTIONS(2079), - [anon_sym_do] = ACTIONS(2079), - [anon_sym_if] = ACTIONS(2079), - [anon_sym_else] = ACTIONS(2079), - [anon_sym_match] = ACTIONS(2079), - [anon_sym_RBRACE] = ACTIONS(2081), - [anon_sym_try] = ACTIONS(2079), - [anon_sym_catch] = ACTIONS(2079), - [anon_sym_return] = ACTIONS(2079), - [anon_sym_source] = ACTIONS(2079), - [anon_sym_source_DASHenv] = ACTIONS(2079), - [anon_sym_hide] = ACTIONS(2079), - [anon_sym_hide_DASHenv] = ACTIONS(2079), - [anon_sym_overlay] = ACTIONS(2079), - [anon_sym_as] = ACTIONS(2079), - [anon_sym_LPAREN2] = ACTIONS(1581), - [anon_sym_PLUS2] = ACTIONS(2079), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2081), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2081), - [aux_sym__val_number_decimal_token1] = ACTIONS(2079), - [aux_sym__val_number_decimal_token2] = ACTIONS(2081), - [aux_sym__val_number_decimal_token3] = ACTIONS(2081), - [aux_sym__val_number_decimal_token4] = ACTIONS(2081), - [aux_sym__val_number_token1] = ACTIONS(2081), - [aux_sym__val_number_token2] = ACTIONS(2081), - [aux_sym__val_number_token3] = ACTIONS(2081), - [aux_sym__val_number_token4] = ACTIONS(2079), - [aux_sym__val_number_token5] = ACTIONS(2079), - [aux_sym__val_number_token6] = ACTIONS(2079), - [anon_sym_DQUOTE] = ACTIONS(2081), - [sym__str_single_quotes] = ACTIONS(2081), - [sym__str_back_ticks] = ACTIONS(2081), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2081), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2081), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2081), - [anon_sym_register] = ACTIONS(2079), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2081), + [573] = { + [sym_comment] = STATE(573), + [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_COMMA] = 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_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_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_DOLLAR_SQUOTE] = ACTIONS(1871), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1871), + [sym__entry_separator] = ACTIONS(1873), + [anon_sym_register] = ACTIONS(1871), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1873), }, - [561] = { - [sym_comment] = STATE(561), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), - [aux_sym_cmd_identifier_token2] = ACTIONS(1650), - [aux_sym_cmd_identifier_token3] = ACTIONS(1650), - [aux_sym_cmd_identifier_token4] = ACTIONS(1650), - [aux_sym_cmd_identifier_token5] = ACTIONS(1650), - [aux_sym_cmd_identifier_token6] = ACTIONS(1650), - [aux_sym_cmd_identifier_token7] = ACTIONS(1650), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), - [aux_sym_cmd_identifier_token10] = ACTIONS(1650), - [aux_sym_cmd_identifier_token11] = ACTIONS(1650), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), - [aux_sym_cmd_identifier_token16] = ACTIONS(1650), - [aux_sym_cmd_identifier_token17] = ACTIONS(1650), - [aux_sym_cmd_identifier_token18] = ACTIONS(1650), - [aux_sym_cmd_identifier_token19] = ACTIONS(1650), - [aux_sym_cmd_identifier_token20] = ACTIONS(1650), - [aux_sym_cmd_identifier_token21] = ACTIONS(1650), - [aux_sym_cmd_identifier_token22] = ACTIONS(1650), - [aux_sym_cmd_identifier_token23] = ACTIONS(1650), - [aux_sym_cmd_identifier_token24] = ACTIONS(1650), - [aux_sym_cmd_identifier_token25] = ACTIONS(1650), - [aux_sym_cmd_identifier_token26] = ACTIONS(1650), - [aux_sym_cmd_identifier_token27] = ACTIONS(1650), - [aux_sym_cmd_identifier_token28] = ACTIONS(1650), - [aux_sym_cmd_identifier_token29] = ACTIONS(1650), - [aux_sym_cmd_identifier_token30] = ACTIONS(1650), - [aux_sym_cmd_identifier_token31] = ACTIONS(1650), - [aux_sym_cmd_identifier_token32] = ACTIONS(1650), - [aux_sym_cmd_identifier_token33] = ACTIONS(1650), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), - [aux_sym_cmd_identifier_token35] = ACTIONS(1650), - [aux_sym_cmd_identifier_token36] = ACTIONS(1650), - [aux_sym_cmd_identifier_token37] = ACTIONS(1650), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), - [aux_sym_cmd_identifier_token39] = ACTIONS(1650), - [aux_sym_cmd_identifier_token40] = ACTIONS(1650), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_DASH2] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in2] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_PLUS2] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1650), - [aux_sym__immediate_decimal_token1] = ACTIONS(2220), - [aux_sym__immediate_decimal_token2] = ACTIONS(2222), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [aux_sym__val_number_token4] = ACTIONS(1648), - [aux_sym__val_number_token5] = ACTIONS(1648), - [aux_sym__val_number_token6] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1650), - [anon_sym_register] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1650), + [574] = { + [sym_comment] = STATE(574), + [anon_sym_export] = ACTIONS(2264), + [anon_sym_alias] = ACTIONS(2264), + [anon_sym_let] = ACTIONS(2264), + [anon_sym_let_DASHenv] = ACTIONS(2264), + [anon_sym_mut] = ACTIONS(2264), + [anon_sym_const] = ACTIONS(2264), + [aux_sym_cmd_identifier_token1] = ACTIONS(2264), + [aux_sym_cmd_identifier_token2] = ACTIONS(2264), + [aux_sym_cmd_identifier_token3] = ACTIONS(2264), + [aux_sym_cmd_identifier_token4] = ACTIONS(2264), + [aux_sym_cmd_identifier_token5] = ACTIONS(2264), + [aux_sym_cmd_identifier_token6] = ACTIONS(2264), + [aux_sym_cmd_identifier_token7] = ACTIONS(2264), + [aux_sym_cmd_identifier_token8] = ACTIONS(2264), + [aux_sym_cmd_identifier_token9] = ACTIONS(2264), + [aux_sym_cmd_identifier_token10] = ACTIONS(2264), + [aux_sym_cmd_identifier_token11] = ACTIONS(2264), + [aux_sym_cmd_identifier_token12] = ACTIONS(2264), + [aux_sym_cmd_identifier_token13] = ACTIONS(2264), + [aux_sym_cmd_identifier_token14] = ACTIONS(2264), + [aux_sym_cmd_identifier_token15] = ACTIONS(2264), + [aux_sym_cmd_identifier_token16] = ACTIONS(2264), + [aux_sym_cmd_identifier_token17] = ACTIONS(2264), + [aux_sym_cmd_identifier_token18] = ACTIONS(2264), + [aux_sym_cmd_identifier_token19] = ACTIONS(2264), + [aux_sym_cmd_identifier_token20] = ACTIONS(2264), + [aux_sym_cmd_identifier_token21] = ACTIONS(2264), + [aux_sym_cmd_identifier_token22] = ACTIONS(2264), + [aux_sym_cmd_identifier_token23] = ACTIONS(2264), + [aux_sym_cmd_identifier_token24] = ACTIONS(2264), + [aux_sym_cmd_identifier_token25] = ACTIONS(2264), + [aux_sym_cmd_identifier_token26] = ACTIONS(2264), + [aux_sym_cmd_identifier_token27] = ACTIONS(2264), + [aux_sym_cmd_identifier_token28] = ACTIONS(2264), + [aux_sym_cmd_identifier_token29] = ACTIONS(2264), + [aux_sym_cmd_identifier_token30] = ACTIONS(2264), + [aux_sym_cmd_identifier_token31] = ACTIONS(2264), + [aux_sym_cmd_identifier_token32] = ACTIONS(2264), + [aux_sym_cmd_identifier_token33] = ACTIONS(2264), + [aux_sym_cmd_identifier_token34] = ACTIONS(2264), + [aux_sym_cmd_identifier_token35] = ACTIONS(2264), + [aux_sym_cmd_identifier_token36] = ACTIONS(2264), + [aux_sym_cmd_identifier_token37] = ACTIONS(2264), + [aux_sym_cmd_identifier_token38] = ACTIONS(2264), + [aux_sym_cmd_identifier_token39] = ACTIONS(2264), + [aux_sym_cmd_identifier_token40] = ACTIONS(2264), + [anon_sym_def] = ACTIONS(2264), + [anon_sym_export_DASHenv] = ACTIONS(2264), + [anon_sym_extern] = ACTIONS(2264), + [anon_sym_module] = ACTIONS(2264), + [anon_sym_use] = ACTIONS(2264), + [anon_sym_LPAREN] = ACTIONS(2264), + [anon_sym_COMMA] = ACTIONS(2264), + [anon_sym_DOLLAR] = ACTIONS(2264), + [anon_sym_error] = ACTIONS(2264), + [anon_sym_DASH2] = ACTIONS(2264), + [anon_sym_break] = ACTIONS(2264), + [anon_sym_continue] = ACTIONS(2264), + [anon_sym_for] = ACTIONS(2264), + [anon_sym_in2] = ACTIONS(2264), + [anon_sym_loop] = ACTIONS(2264), + [anon_sym_make] = ACTIONS(2264), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2264), + [anon_sym_if] = ACTIONS(2264), + [anon_sym_else] = ACTIONS(2264), + [anon_sym_match] = ACTIONS(2264), + [anon_sym_RBRACE] = ACTIONS(2264), + [anon_sym_try] = ACTIONS(2264), + [anon_sym_catch] = ACTIONS(2264), + [anon_sym_return] = ACTIONS(2264), + [anon_sym_source] = ACTIONS(2264), + [anon_sym_source_DASHenv] = ACTIONS(2264), + [anon_sym_hide] = ACTIONS(2264), + [anon_sym_hide_DASHenv] = ACTIONS(2264), + [anon_sym_overlay] = ACTIONS(2264), + [anon_sym_as] = ACTIONS(2264), + [anon_sym_PLUS2] = ACTIONS(2264), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2264), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2264), + [aux_sym__val_number_decimal_token1] = ACTIONS(2264), + [aux_sym__val_number_decimal_token2] = ACTIONS(2264), + [aux_sym__val_number_decimal_token3] = ACTIONS(2264), + [aux_sym__val_number_decimal_token4] = ACTIONS(2264), + [aux_sym__val_number_token1] = ACTIONS(2264), + [aux_sym__val_number_token2] = ACTIONS(2264), + [aux_sym__val_number_token3] = ACTIONS(2264), + [aux_sym__val_number_token4] = ACTIONS(2264), + [aux_sym__val_number_token5] = ACTIONS(2264), + [aux_sym__val_number_token6] = ACTIONS(2264), + [anon_sym_DQUOTE] = ACTIONS(2264), + [sym__str_single_quotes] = ACTIONS(2264), + [sym__str_back_ticks] = ACTIONS(2264), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2264), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2264), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2264), + [sym__entry_separator] = ACTIONS(2266), + [anon_sym_register] = ACTIONS(2264), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2266), }, - [562] = { - [sym_comment] = STATE(562), - [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(978), - [aux_sym_cmd_identifier_token3] = ACTIONS(978), - [aux_sym_cmd_identifier_token4] = ACTIONS(978), - [aux_sym_cmd_identifier_token5] = ACTIONS(978), - [aux_sym_cmd_identifier_token6] = ACTIONS(978), - [aux_sym_cmd_identifier_token7] = ACTIONS(978), - [aux_sym_cmd_identifier_token8] = ACTIONS(978), - [aux_sym_cmd_identifier_token9] = ACTIONS(978), - [aux_sym_cmd_identifier_token10] = ACTIONS(978), - [aux_sym_cmd_identifier_token11] = ACTIONS(978), - [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(978), - [aux_sym_cmd_identifier_token17] = ACTIONS(978), - [aux_sym_cmd_identifier_token18] = ACTIONS(978), - [aux_sym_cmd_identifier_token19] = ACTIONS(978), - [aux_sym_cmd_identifier_token20] = ACTIONS(978), - [aux_sym_cmd_identifier_token21] = ACTIONS(978), - [aux_sym_cmd_identifier_token22] = ACTIONS(978), - [aux_sym_cmd_identifier_token23] = ACTIONS(978), - [aux_sym_cmd_identifier_token24] = ACTIONS(978), - [aux_sym_cmd_identifier_token25] = ACTIONS(978), - [aux_sym_cmd_identifier_token26] = ACTIONS(978), - [aux_sym_cmd_identifier_token27] = ACTIONS(978), - [aux_sym_cmd_identifier_token28] = ACTIONS(978), - [aux_sym_cmd_identifier_token29] = ACTIONS(978), - [aux_sym_cmd_identifier_token30] = ACTIONS(978), - [aux_sym_cmd_identifier_token31] = ACTIONS(978), - [aux_sym_cmd_identifier_token32] = ACTIONS(978), - [aux_sym_cmd_identifier_token33] = ACTIONS(978), - [aux_sym_cmd_identifier_token34] = ACTIONS(978), - [aux_sym_cmd_identifier_token35] = ACTIONS(978), - [aux_sym_cmd_identifier_token36] = ACTIONS(978), - [aux_sym_cmd_identifier_token37] = ACTIONS(978), - [aux_sym_cmd_identifier_token38] = ACTIONS(978), - [aux_sym_cmd_identifier_token39] = ACTIONS(978), - [aux_sym_cmd_identifier_token40] = ACTIONS(978), - [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(978), - [anon_sym_COMMA] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(978), - [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(978), - [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_hide] = ACTIONS(978), - [anon_sym_hide_DASHenv] = ACTIONS(978), - [anon_sym_overlay] = ACTIONS(978), - [anon_sym_as] = ACTIONS(978), - [anon_sym_PLUS2] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), - [aux_sym__val_number_decimal_token1] = ACTIONS(978), - [aux_sym__val_number_decimal_token2] = ACTIONS(978), - [aux_sym__val_number_decimal_token3] = ACTIONS(978), - [aux_sym__val_number_decimal_token4] = ACTIONS(978), - [aux_sym__val_number_token1] = ACTIONS(978), - [aux_sym__val_number_token2] = ACTIONS(978), - [aux_sym__val_number_token3] = ACTIONS(978), - [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(978), - [sym__str_single_quotes] = ACTIONS(978), - [sym__str_back_ticks] = ACTIONS(978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(978), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(978), - [sym__entry_separator] = ACTIONS(980), - [anon_sym_register] = ACTIONS(978), - [anon_sym_DOT2] = ACTIONS(978), + [575] = { + [sym_comment] = STATE(575), + [anon_sym_export] = ACTIONS(1829), + [anon_sym_alias] = ACTIONS(1829), + [anon_sym_let] = ACTIONS(1829), + [anon_sym_let_DASHenv] = ACTIONS(1829), + [anon_sym_mut] = ACTIONS(1829), + [anon_sym_const] = ACTIONS(1829), + [aux_sym_cmd_identifier_token1] = ACTIONS(1829), + [aux_sym_cmd_identifier_token2] = ACTIONS(1829), + [aux_sym_cmd_identifier_token3] = ACTIONS(1829), + [aux_sym_cmd_identifier_token4] = ACTIONS(1829), + [aux_sym_cmd_identifier_token5] = ACTIONS(1829), + [aux_sym_cmd_identifier_token6] = ACTIONS(1829), + [aux_sym_cmd_identifier_token7] = ACTIONS(1829), + [aux_sym_cmd_identifier_token8] = ACTIONS(1829), + [aux_sym_cmd_identifier_token9] = ACTIONS(1829), + [aux_sym_cmd_identifier_token10] = ACTIONS(1829), + [aux_sym_cmd_identifier_token11] = ACTIONS(1829), + [aux_sym_cmd_identifier_token12] = ACTIONS(1829), + [aux_sym_cmd_identifier_token13] = ACTIONS(1829), + [aux_sym_cmd_identifier_token14] = ACTIONS(1829), + [aux_sym_cmd_identifier_token15] = ACTIONS(1829), + [aux_sym_cmd_identifier_token16] = ACTIONS(1829), + [aux_sym_cmd_identifier_token17] = ACTIONS(1829), + [aux_sym_cmd_identifier_token18] = ACTIONS(1829), + [aux_sym_cmd_identifier_token19] = ACTIONS(1829), + [aux_sym_cmd_identifier_token20] = ACTIONS(1829), + [aux_sym_cmd_identifier_token21] = ACTIONS(1829), + [aux_sym_cmd_identifier_token22] = ACTIONS(1829), + [aux_sym_cmd_identifier_token23] = ACTIONS(1829), + [aux_sym_cmd_identifier_token24] = ACTIONS(1829), + [aux_sym_cmd_identifier_token25] = ACTIONS(1829), + [aux_sym_cmd_identifier_token26] = ACTIONS(1829), + [aux_sym_cmd_identifier_token27] = ACTIONS(1829), + [aux_sym_cmd_identifier_token28] = ACTIONS(1829), + [aux_sym_cmd_identifier_token29] = ACTIONS(1829), + [aux_sym_cmd_identifier_token30] = ACTIONS(1829), + [aux_sym_cmd_identifier_token31] = ACTIONS(1829), + [aux_sym_cmd_identifier_token32] = ACTIONS(1829), + [aux_sym_cmd_identifier_token33] = ACTIONS(1829), + [aux_sym_cmd_identifier_token34] = ACTIONS(1829), + [aux_sym_cmd_identifier_token35] = ACTIONS(1829), + [aux_sym_cmd_identifier_token36] = ACTIONS(1829), + [aux_sym_cmd_identifier_token37] = ACTIONS(1829), + [aux_sym_cmd_identifier_token38] = ACTIONS(1829), + [aux_sym_cmd_identifier_token39] = ACTIONS(1829), + [aux_sym_cmd_identifier_token40] = ACTIONS(1829), + [anon_sym_def] = ACTIONS(1829), + [anon_sym_export_DASHenv] = ACTIONS(1829), + [anon_sym_extern] = ACTIONS(1829), + [anon_sym_module] = ACTIONS(1829), + [anon_sym_use] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_COMMA] = ACTIONS(1829), + [anon_sym_DOLLAR] = ACTIONS(1829), + [anon_sym_error] = ACTIONS(1829), + [anon_sym_DASH2] = ACTIONS(1829), + [anon_sym_break] = ACTIONS(1829), + [anon_sym_continue] = ACTIONS(1829), + [anon_sym_for] = ACTIONS(1829), + [anon_sym_in2] = ACTIONS(1829), + [anon_sym_loop] = ACTIONS(1829), + [anon_sym_make] = ACTIONS(1829), + [anon_sym_while] = ACTIONS(1829), + [anon_sym_do] = ACTIONS(1829), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_else] = ACTIONS(1829), + [anon_sym_match] = ACTIONS(1829), + [anon_sym_RBRACE] = ACTIONS(1829), + [anon_sym_try] = ACTIONS(1829), + [anon_sym_catch] = ACTIONS(1829), + [anon_sym_return] = ACTIONS(1829), + [anon_sym_source] = ACTIONS(1829), + [anon_sym_source_DASHenv] = ACTIONS(1829), + [anon_sym_hide] = ACTIONS(1829), + [anon_sym_hide_DASHenv] = ACTIONS(1829), + [anon_sym_overlay] = ACTIONS(1829), + [anon_sym_as] = ACTIONS(1829), + [anon_sym_PLUS2] = ACTIONS(1829), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1829), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1829), + [aux_sym__val_number_decimal_token1] = ACTIONS(1829), + [aux_sym__val_number_decimal_token2] = ACTIONS(1829), + [aux_sym__val_number_decimal_token3] = ACTIONS(1829), + [aux_sym__val_number_decimal_token4] = ACTIONS(1829), + [aux_sym__val_number_token1] = ACTIONS(1829), + [aux_sym__val_number_token2] = ACTIONS(1829), + [aux_sym__val_number_token3] = ACTIONS(1829), + [aux_sym__val_number_token4] = ACTIONS(1829), + [aux_sym__val_number_token5] = ACTIONS(1829), + [aux_sym__val_number_token6] = ACTIONS(1829), + [anon_sym_DQUOTE] = ACTIONS(1829), + [sym__str_single_quotes] = ACTIONS(1829), + [sym__str_back_ticks] = ACTIONS(1829), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1829), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1829), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1829), + [sym__entry_separator] = ACTIONS(1831), + [anon_sym_register] = ACTIONS(1829), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(980), + [sym_raw_string_begin] = ACTIONS(1831), }, - [563] = { - [sym_comment] = STATE(563), - [anon_sym_export] = ACTIONS(2045), - [anon_sym_alias] = ACTIONS(2045), - [anon_sym_let] = ACTIONS(2045), - [anon_sym_let_DASHenv] = ACTIONS(2045), - [anon_sym_mut] = ACTIONS(2045), - [anon_sym_const] = ACTIONS(2045), - [aux_sym_cmd_identifier_token1] = ACTIONS(2045), - [aux_sym_cmd_identifier_token2] = ACTIONS(2045), - [aux_sym_cmd_identifier_token3] = ACTIONS(2045), - [aux_sym_cmd_identifier_token4] = ACTIONS(2045), - [aux_sym_cmd_identifier_token5] = ACTIONS(2045), - [aux_sym_cmd_identifier_token6] = ACTIONS(2045), - [aux_sym_cmd_identifier_token7] = ACTIONS(2045), - [aux_sym_cmd_identifier_token8] = ACTIONS(2045), - [aux_sym_cmd_identifier_token9] = ACTIONS(2045), - [aux_sym_cmd_identifier_token10] = ACTIONS(2045), - [aux_sym_cmd_identifier_token11] = ACTIONS(2045), - [aux_sym_cmd_identifier_token12] = ACTIONS(2045), - [aux_sym_cmd_identifier_token13] = ACTIONS(2045), - [aux_sym_cmd_identifier_token14] = ACTIONS(2045), - [aux_sym_cmd_identifier_token15] = ACTIONS(2045), - [aux_sym_cmd_identifier_token16] = ACTIONS(2045), - [aux_sym_cmd_identifier_token17] = ACTIONS(2045), - [aux_sym_cmd_identifier_token18] = ACTIONS(2045), - [aux_sym_cmd_identifier_token19] = ACTIONS(2045), - [aux_sym_cmd_identifier_token20] = ACTIONS(2045), - [aux_sym_cmd_identifier_token21] = ACTIONS(2045), - [aux_sym_cmd_identifier_token22] = ACTIONS(2045), - [aux_sym_cmd_identifier_token23] = ACTIONS(2045), - [aux_sym_cmd_identifier_token24] = ACTIONS(2045), - [aux_sym_cmd_identifier_token25] = ACTIONS(2045), - [aux_sym_cmd_identifier_token26] = ACTIONS(2045), - [aux_sym_cmd_identifier_token27] = ACTIONS(2045), - [aux_sym_cmd_identifier_token28] = ACTIONS(2045), - [aux_sym_cmd_identifier_token29] = ACTIONS(2045), - [aux_sym_cmd_identifier_token30] = ACTIONS(2045), - [aux_sym_cmd_identifier_token31] = ACTIONS(2045), - [aux_sym_cmd_identifier_token32] = ACTIONS(2045), - [aux_sym_cmd_identifier_token33] = ACTIONS(2045), - [aux_sym_cmd_identifier_token34] = ACTIONS(2045), - [aux_sym_cmd_identifier_token35] = ACTIONS(2045), - [aux_sym_cmd_identifier_token36] = ACTIONS(2045), - [aux_sym_cmd_identifier_token37] = ACTIONS(2045), - [aux_sym_cmd_identifier_token38] = ACTIONS(2045), - [aux_sym_cmd_identifier_token39] = ACTIONS(2045), - [aux_sym_cmd_identifier_token40] = ACTIONS(2045), - [anon_sym_def] = ACTIONS(2045), - [anon_sym_export_DASHenv] = ACTIONS(2045), - [anon_sym_extern] = ACTIONS(2045), - [anon_sym_module] = ACTIONS(2045), - [anon_sym_use] = ACTIONS(2045), - [anon_sym_LPAREN] = ACTIONS(2045), - [anon_sym_COMMA] = ACTIONS(2047), - [anon_sym_DOLLAR] = ACTIONS(2045), - [anon_sym_error] = ACTIONS(2045), - [anon_sym_DASH2] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_in2] = ACTIONS(2045), - [anon_sym_loop] = ACTIONS(2045), - [anon_sym_make] = ACTIONS(2045), - [anon_sym_while] = ACTIONS(2045), - [anon_sym_do] = ACTIONS(2045), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_else] = ACTIONS(2045), - [anon_sym_match] = ACTIONS(2045), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_try] = ACTIONS(2045), - [anon_sym_catch] = ACTIONS(2045), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_source] = ACTIONS(2045), - [anon_sym_source_DASHenv] = ACTIONS(2045), - [anon_sym_hide] = ACTIONS(2045), - [anon_sym_hide_DASHenv] = ACTIONS(2045), - [anon_sym_overlay] = ACTIONS(2045), - [anon_sym_as] = ACTIONS(2045), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_PLUS2] = ACTIONS(2045), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2047), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2045), - [aux_sym__val_number_decimal_token1] = ACTIONS(2045), - [aux_sym__val_number_decimal_token2] = ACTIONS(2045), - [aux_sym__val_number_decimal_token3] = ACTIONS(2045), - [aux_sym__val_number_decimal_token4] = ACTIONS(2045), - [aux_sym__val_number_token1] = ACTIONS(2045), - [aux_sym__val_number_token2] = ACTIONS(2045), - [aux_sym__val_number_token3] = ACTIONS(2045), - [aux_sym__val_number_token4] = ACTIONS(2045), - [aux_sym__val_number_token5] = ACTIONS(2045), - [aux_sym__val_number_token6] = ACTIONS(2045), - [anon_sym_DQUOTE] = ACTIONS(2047), - [sym__str_single_quotes] = ACTIONS(2047), - [sym__str_back_ticks] = ACTIONS(2047), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2047), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2047), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2047), - [anon_sym_register] = ACTIONS(2045), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2045), + [576] = { + [sym_comment] = STATE(576), + [anon_sym_export] = ACTIONS(1701), + [anon_sym_alias] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1701), + [anon_sym_let_DASHenv] = ACTIONS(1701), + [anon_sym_mut] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [aux_sym_cmd_identifier_token1] = ACTIONS(1701), + [aux_sym_cmd_identifier_token2] = ACTIONS(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [aux_sym_cmd_identifier_token12] = ACTIONS(1701), + [aux_sym_cmd_identifier_token13] = ACTIONS(1701), + [aux_sym_cmd_identifier_token14] = ACTIONS(1701), + [aux_sym_cmd_identifier_token15] = ACTIONS(1701), + [aux_sym_cmd_identifier_token16] = ACTIONS(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [aux_sym_cmd_identifier_token37] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [anon_sym_def] = ACTIONS(1701), + [anon_sym_export_DASHenv] = ACTIONS(1701), + [anon_sym_extern] = ACTIONS(1701), + [anon_sym_module] = ACTIONS(1701), + [anon_sym_use] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_COMMA] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = ACTIONS(1701), + [anon_sym_loop] = ACTIONS(1701), + [anon_sym_make] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_do] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_else] = ACTIONS(1701), + [anon_sym_match] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_try] = ACTIONS(1701), + [anon_sym_catch] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_source] = ACTIONS(1701), + [anon_sym_source_DASHenv] = ACTIONS(1701), + [anon_sym_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(2238), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [577] = { + [sym_comment] = STATE(577), + [anon_sym_export] = ACTIONS(1760), + [anon_sym_alias] = ACTIONS(1760), + [anon_sym_let] = ACTIONS(1760), + [anon_sym_let_DASHenv] = ACTIONS(1760), + [anon_sym_mut] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [aux_sym_cmd_identifier_token1] = ACTIONS(1760), + [aux_sym_cmd_identifier_token2] = ACTIONS(1762), + [aux_sym_cmd_identifier_token3] = ACTIONS(1762), + [aux_sym_cmd_identifier_token4] = ACTIONS(1762), + [aux_sym_cmd_identifier_token5] = ACTIONS(1762), + [aux_sym_cmd_identifier_token6] = ACTIONS(1762), + [aux_sym_cmd_identifier_token7] = ACTIONS(1762), + [aux_sym_cmd_identifier_token8] = ACTIONS(1760), + [aux_sym_cmd_identifier_token9] = ACTIONS(1760), + [aux_sym_cmd_identifier_token10] = ACTIONS(1762), + [aux_sym_cmd_identifier_token11] = ACTIONS(1762), + [aux_sym_cmd_identifier_token12] = ACTIONS(1760), + [aux_sym_cmd_identifier_token13] = ACTIONS(1760), + [aux_sym_cmd_identifier_token14] = ACTIONS(1760), + [aux_sym_cmd_identifier_token15] = ACTIONS(1760), + [aux_sym_cmd_identifier_token16] = ACTIONS(1762), + [aux_sym_cmd_identifier_token17] = ACTIONS(1762), + [aux_sym_cmd_identifier_token18] = ACTIONS(1762), + [aux_sym_cmd_identifier_token19] = ACTIONS(1762), + [aux_sym_cmd_identifier_token20] = ACTIONS(1762), + [aux_sym_cmd_identifier_token21] = ACTIONS(1762), + [aux_sym_cmd_identifier_token22] = ACTIONS(1762), + [aux_sym_cmd_identifier_token23] = ACTIONS(1762), + [aux_sym_cmd_identifier_token24] = ACTIONS(1762), + [aux_sym_cmd_identifier_token25] = ACTIONS(1762), + [aux_sym_cmd_identifier_token26] = ACTIONS(1762), + [aux_sym_cmd_identifier_token27] = ACTIONS(1762), + [aux_sym_cmd_identifier_token28] = ACTIONS(1762), + [aux_sym_cmd_identifier_token29] = ACTIONS(1762), + [aux_sym_cmd_identifier_token30] = ACTIONS(1762), + [aux_sym_cmd_identifier_token31] = ACTIONS(1762), + [aux_sym_cmd_identifier_token32] = ACTIONS(1762), + [aux_sym_cmd_identifier_token33] = ACTIONS(1762), + [aux_sym_cmd_identifier_token34] = ACTIONS(1760), + [aux_sym_cmd_identifier_token35] = ACTIONS(1762), + [aux_sym_cmd_identifier_token36] = ACTIONS(1762), + [aux_sym_cmd_identifier_token37] = ACTIONS(1762), + [aux_sym_cmd_identifier_token38] = ACTIONS(1760), + [aux_sym_cmd_identifier_token39] = ACTIONS(1762), + [aux_sym_cmd_identifier_token40] = ACTIONS(1762), + [anon_sym_def] = ACTIONS(1760), + [anon_sym_export_DASHenv] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym_module] = ACTIONS(1760), + [anon_sym_use] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_error] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_loop] = ACTIONS(1760), + [anon_sym_make] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_do] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_match] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_catch] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_source] = ACTIONS(1760), + [anon_sym_source_DASHenv] = ACTIONS(1760), + [anon_sym_hide] = ACTIONS(1760), + [anon_sym_hide_DASHenv] = ACTIONS(1760), + [anon_sym_overlay] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(2268), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1760), + [aux_sym__val_number_token5] = ACTIONS(1760), + [aux_sym__val_number_token6] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1762), + }, + [578] = { + [sym_comment] = STATE(578), + [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_COMMA] = 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_hide] = ACTIONS(2270), + [anon_sym_hide_DASHenv] = ACTIONS(2270), + [anon_sym_overlay] = ACTIONS(2270), + [anon_sym_as] = ACTIONS(2270), + [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_DOLLAR_SQUOTE] = ACTIONS(2270), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2270), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2270), + [sym__entry_separator] = ACTIONS(2272), + [anon_sym_register] = ACTIONS(2270), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2047), + [sym_raw_string_begin] = ACTIONS(2272), }, - [564] = { - [sym_comment] = STATE(564), - [anon_sym_export] = ACTIONS(974), - [anon_sym_alias] = ACTIONS(974), - [anon_sym_let] = ACTIONS(974), - [anon_sym_let_DASHenv] = ACTIONS(974), - [anon_sym_mut] = ACTIONS(974), - [anon_sym_const] = ACTIONS(974), - [aux_sym_cmd_identifier_token1] = ACTIONS(974), - [aux_sym_cmd_identifier_token2] = ACTIONS(974), - [aux_sym_cmd_identifier_token3] = ACTIONS(974), - [aux_sym_cmd_identifier_token4] = ACTIONS(974), - [aux_sym_cmd_identifier_token5] = ACTIONS(974), - [aux_sym_cmd_identifier_token6] = ACTIONS(974), - [aux_sym_cmd_identifier_token7] = ACTIONS(974), - [aux_sym_cmd_identifier_token8] = ACTIONS(974), - [aux_sym_cmd_identifier_token9] = ACTIONS(974), - [aux_sym_cmd_identifier_token10] = ACTIONS(974), - [aux_sym_cmd_identifier_token11] = ACTIONS(974), - [aux_sym_cmd_identifier_token12] = ACTIONS(974), - [aux_sym_cmd_identifier_token13] = ACTIONS(974), - [aux_sym_cmd_identifier_token14] = ACTIONS(974), - [aux_sym_cmd_identifier_token15] = ACTIONS(974), - [aux_sym_cmd_identifier_token16] = ACTIONS(974), - [aux_sym_cmd_identifier_token17] = ACTIONS(974), - [aux_sym_cmd_identifier_token18] = ACTIONS(974), - [aux_sym_cmd_identifier_token19] = ACTIONS(974), - [aux_sym_cmd_identifier_token20] = ACTIONS(974), - [aux_sym_cmd_identifier_token21] = ACTIONS(974), - [aux_sym_cmd_identifier_token22] = ACTIONS(974), - [aux_sym_cmd_identifier_token23] = ACTIONS(974), - [aux_sym_cmd_identifier_token24] = ACTIONS(974), - [aux_sym_cmd_identifier_token25] = ACTIONS(974), - [aux_sym_cmd_identifier_token26] = ACTIONS(974), - [aux_sym_cmd_identifier_token27] = ACTIONS(974), - [aux_sym_cmd_identifier_token28] = ACTIONS(974), - [aux_sym_cmd_identifier_token29] = ACTIONS(974), - [aux_sym_cmd_identifier_token30] = ACTIONS(974), - [aux_sym_cmd_identifier_token31] = ACTIONS(974), - [aux_sym_cmd_identifier_token32] = ACTIONS(974), - [aux_sym_cmd_identifier_token33] = ACTIONS(974), - [aux_sym_cmd_identifier_token34] = ACTIONS(974), - [aux_sym_cmd_identifier_token35] = ACTIONS(974), - [aux_sym_cmd_identifier_token36] = ACTIONS(974), - [aux_sym_cmd_identifier_token37] = ACTIONS(974), - [aux_sym_cmd_identifier_token38] = ACTIONS(974), - [aux_sym_cmd_identifier_token39] = ACTIONS(974), - [aux_sym_cmd_identifier_token40] = ACTIONS(974), - [anon_sym_def] = ACTIONS(974), - [anon_sym_export_DASHenv] = ACTIONS(974), - [anon_sym_extern] = ACTIONS(974), - [anon_sym_module] = ACTIONS(974), - [anon_sym_use] = ACTIONS(974), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_COMMA] = ACTIONS(974), - [anon_sym_DOLLAR] = ACTIONS(974), - [anon_sym_error] = ACTIONS(974), - [anon_sym_DASH2] = ACTIONS(974), - [anon_sym_break] = ACTIONS(974), - [anon_sym_continue] = ACTIONS(974), - [anon_sym_for] = ACTIONS(974), - [anon_sym_in2] = ACTIONS(974), - [anon_sym_loop] = ACTIONS(974), - [anon_sym_make] = ACTIONS(974), - [anon_sym_while] = ACTIONS(974), - [anon_sym_do] = ACTIONS(974), - [anon_sym_if] = ACTIONS(974), - [anon_sym_else] = ACTIONS(974), - [anon_sym_match] = ACTIONS(974), - [anon_sym_RBRACE] = ACTIONS(974), - [anon_sym_try] = ACTIONS(974), - [anon_sym_catch] = ACTIONS(974), - [anon_sym_return] = ACTIONS(974), - [anon_sym_source] = ACTIONS(974), - [anon_sym_source_DASHenv] = ACTIONS(974), - [anon_sym_hide] = ACTIONS(974), - [anon_sym_hide_DASHenv] = ACTIONS(974), - [anon_sym_overlay] = ACTIONS(974), - [anon_sym_as] = ACTIONS(974), - [anon_sym_PLUS2] = ACTIONS(974), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(974), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(974), - [aux_sym__val_number_decimal_token1] = ACTIONS(974), - [aux_sym__val_number_decimal_token2] = ACTIONS(974), - [aux_sym__val_number_decimal_token3] = ACTIONS(974), - [aux_sym__val_number_decimal_token4] = ACTIONS(974), - [aux_sym__val_number_token1] = ACTIONS(974), - [aux_sym__val_number_token2] = ACTIONS(974), - [aux_sym__val_number_token3] = ACTIONS(974), - [aux_sym__val_number_token4] = ACTIONS(974), - [aux_sym__val_number_token5] = ACTIONS(974), - [aux_sym__val_number_token6] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(974), - [sym__str_single_quotes] = ACTIONS(974), - [sym__str_back_ticks] = ACTIONS(974), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(974), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(974), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(974), - [sym__entry_separator] = ACTIONS(976), - [anon_sym_register] = ACTIONS(974), - [anon_sym_DOT2] = ACTIONS(974), + [579] = { + [sym_comment] = STATE(579), + [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_COMMA] = 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_hide] = ACTIONS(2274), + [anon_sym_hide_DASHenv] = ACTIONS(2274), + [anon_sym_overlay] = ACTIONS(2274), + [anon_sym_as] = ACTIONS(2274), + [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_DOLLAR_SQUOTE] = ACTIONS(2274), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2274), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2274), + [sym__entry_separator] = ACTIONS(2276), + [anon_sym_register] = ACTIONS(2274), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(976), + [sym_raw_string_begin] = ACTIONS(2276), }, - [565] = { - [sym_comment] = STATE(565), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_alias] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_let_DASHenv] = ACTIONS(1719), - [anon_sym_mut] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [aux_sym_cmd_identifier_token1] = ACTIONS(1719), - [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(1719), - [aux_sym_cmd_identifier_token9] = ACTIONS(1719), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1719), - [aux_sym_cmd_identifier_token13] = ACTIONS(1719), - [aux_sym_cmd_identifier_token14] = ACTIONS(1719), - [aux_sym_cmd_identifier_token15] = ACTIONS(1719), - [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(1719), - [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(1719), - [aux_sym_cmd_identifier_token39] = ACTIONS(1721), - [aux_sym_cmd_identifier_token40] = ACTIONS(1721), - [anon_sym_def] = ACTIONS(1719), - [anon_sym_export_DASHenv] = ACTIONS(1719), - [anon_sym_extern] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_use] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_COMMA] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_error] = ACTIONS(1719), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_in2] = ACTIONS(1719), - [anon_sym_loop] = ACTIONS(1719), - [anon_sym_make] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_match] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_catch] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_source] = ACTIONS(1719), - [anon_sym_source_DASHenv] = ACTIONS(1719), - [anon_sym_hide] = ACTIONS(1719), - [anon_sym_hide_DASHenv] = ACTIONS(1719), - [anon_sym_overlay] = ACTIONS(1719), - [anon_sym_as] = ACTIONS(1719), - [anon_sym_LPAREN2] = ACTIONS(1721), - [anon_sym_PLUS2] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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(1719), - [aux_sym__val_number_token5] = ACTIONS(1719), - [aux_sym__val_number_token6] = ACTIONS(1719), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1719), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1721), + [580] = { + [sym_comment] = STATE(580), + [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_COMMA] = 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_hide] = ACTIONS(2278), + [anon_sym_hide_DASHenv] = ACTIONS(2278), + [anon_sym_overlay] = ACTIONS(2278), + [anon_sym_as] = ACTIONS(2278), + [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_DOLLAR_SQUOTE] = ACTIONS(2278), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2278), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2278), + [sym__entry_separator] = ACTIONS(2280), + [anon_sym_register] = ACTIONS(2278), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2280), }, - [566] = { - [sym_comment] = STATE(566), - [anon_sym_export] = ACTIONS(1790), - [anon_sym_alias] = ACTIONS(1790), - [anon_sym_let] = ACTIONS(1790), - [anon_sym_let_DASHenv] = ACTIONS(1790), - [anon_sym_mut] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [aux_sym_cmd_identifier_token1] = ACTIONS(1790), - [aux_sym_cmd_identifier_token2] = ACTIONS(1792), - [aux_sym_cmd_identifier_token3] = ACTIONS(1792), - [aux_sym_cmd_identifier_token4] = ACTIONS(1792), - [aux_sym_cmd_identifier_token5] = ACTIONS(1792), - [aux_sym_cmd_identifier_token6] = ACTIONS(1792), - [aux_sym_cmd_identifier_token7] = ACTIONS(1792), - [aux_sym_cmd_identifier_token8] = ACTIONS(1790), - [aux_sym_cmd_identifier_token9] = ACTIONS(1790), - [aux_sym_cmd_identifier_token10] = ACTIONS(1792), - [aux_sym_cmd_identifier_token11] = ACTIONS(1792), - [aux_sym_cmd_identifier_token12] = ACTIONS(1790), - [aux_sym_cmd_identifier_token13] = ACTIONS(1790), - [aux_sym_cmd_identifier_token14] = ACTIONS(1790), - [aux_sym_cmd_identifier_token15] = ACTIONS(1790), - [aux_sym_cmd_identifier_token16] = ACTIONS(1792), - [aux_sym_cmd_identifier_token17] = ACTIONS(1792), - [aux_sym_cmd_identifier_token18] = ACTIONS(1792), - [aux_sym_cmd_identifier_token19] = ACTIONS(1792), - [aux_sym_cmd_identifier_token20] = ACTIONS(1792), - [aux_sym_cmd_identifier_token21] = ACTIONS(1792), - [aux_sym_cmd_identifier_token22] = ACTIONS(1792), - [aux_sym_cmd_identifier_token23] = ACTIONS(1792), - [aux_sym_cmd_identifier_token24] = ACTIONS(1792), - [aux_sym_cmd_identifier_token25] = ACTIONS(1792), - [aux_sym_cmd_identifier_token26] = ACTIONS(1792), - [aux_sym_cmd_identifier_token27] = ACTIONS(1792), - [aux_sym_cmd_identifier_token28] = ACTIONS(1792), - [aux_sym_cmd_identifier_token29] = ACTIONS(1792), - [aux_sym_cmd_identifier_token30] = ACTIONS(1792), - [aux_sym_cmd_identifier_token31] = ACTIONS(1792), - [aux_sym_cmd_identifier_token32] = ACTIONS(1792), - [aux_sym_cmd_identifier_token33] = ACTIONS(1792), - [aux_sym_cmd_identifier_token34] = ACTIONS(1790), - [aux_sym_cmd_identifier_token35] = ACTIONS(1792), - [aux_sym_cmd_identifier_token36] = ACTIONS(1792), - [aux_sym_cmd_identifier_token37] = ACTIONS(1792), - [aux_sym_cmd_identifier_token38] = ACTIONS(1790), - [aux_sym_cmd_identifier_token39] = ACTIONS(1792), - [aux_sym_cmd_identifier_token40] = ACTIONS(1792), - [anon_sym_def] = ACTIONS(1790), - [anon_sym_export_DASHenv] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym_module] = ACTIONS(1790), - [anon_sym_use] = ACTIONS(1790), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1790), - [anon_sym_error] = ACTIONS(1790), - [anon_sym_DASH2] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_in2] = ACTIONS(1790), - [anon_sym_loop] = ACTIONS(1790), - [anon_sym_make] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_match] = ACTIONS(1790), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_catch] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_source] = ACTIONS(1790), - [anon_sym_source_DASHenv] = ACTIONS(1790), - [anon_sym_hide] = ACTIONS(1790), - [anon_sym_hide_DASHenv] = ACTIONS(1790), - [anon_sym_overlay] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_PLUS2] = ACTIONS(1790), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1792), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1792), - [aux_sym__val_number_decimal_token1] = ACTIONS(1790), - [aux_sym__val_number_decimal_token2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1792), - [aux_sym__val_number_decimal_token4] = ACTIONS(1792), - [aux_sym__val_number_token1] = ACTIONS(1792), - [aux_sym__val_number_token2] = ACTIONS(1792), - [aux_sym__val_number_token3] = ACTIONS(1792), - [aux_sym__val_number_token4] = ACTIONS(1790), - [aux_sym__val_number_token5] = ACTIONS(1790), - [aux_sym__val_number_token6] = ACTIONS(1790), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym__str_single_quotes] = ACTIONS(1792), - [sym__str_back_ticks] = ACTIONS(1792), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1792), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1792), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1792), - [anon_sym_register] = ACTIONS(1790), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1792), + [581] = { + [sym_comment] = STATE(581), + [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_COMMA] = 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_hide] = ACTIONS(2278), + [anon_sym_hide_DASHenv] = ACTIONS(2278), + [anon_sym_overlay] = ACTIONS(2278), + [anon_sym_as] = ACTIONS(2278), + [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_DOLLAR_SQUOTE] = ACTIONS(2278), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2278), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2278), + [sym__entry_separator] = ACTIONS(2280), + [anon_sym_register] = ACTIONS(2278), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2280), }, - [567] = { - [sym_expr_parenthesized] = STATE(4337), - [sym__spread_parenthesized] = STATE(4750), - [sym_val_range] = STATE(4752), - [sym__val_range] = STATE(7907), - [sym__val_range_with_end] = STATE(7403), - [sym__value] = STATE(4752), - [sym_val_nothing] = STATE(4851), - [sym_val_bool] = STATE(4490), - [sym__spread_variable] = STATE(4755), - [sym_val_variable] = STATE(4338), - [sym_val_number] = STATE(4851), - [sym__val_number_decimal] = STATE(3984), - [sym__val_number] = STATE(4856), - [sym_val_duration] = STATE(4851), - [sym_val_filesize] = STATE(4851), - [sym_val_binary] = STATE(4851), - [sym_val_string] = STATE(4851), - [sym__raw_str] = STATE(4093), - [sym__str_double_quotes] = STATE(4093), - [sym_val_interpolated] = STATE(4851), - [sym__inter_single_quotes] = STATE(4857), - [sym__inter_double_quotes] = STATE(4858), - [sym_val_list] = STATE(4851), - [sym__spread_list] = STATE(4750), - [sym_val_record] = STATE(4851), - [sym_val_table] = STATE(4851), - [sym_val_closure] = STATE(4851), - [sym__cmd_arg] = STATE(4760), - [sym_redirection] = STATE(4762), - [sym__flag] = STATE(4830), - [sym_short_flag] = STATE(4969), - [sym_long_flag] = STATE(4969), - [sym_unquoted] = STATE(4547), - [sym__unquoted_with_expr] = STATE(4831), - [sym__unquoted_anonymous_prefix] = STATE(6903), - [sym_comment] = STATE(567), - [ts_builtin_sym_end] = ACTIONS(2188), - [sym__newline] = ACTIONS(2128), - [sym__space] = ACTIONS(2188), - [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(2224), - [anon_sym_LPAREN] = ACTIONS(2226), - [anon_sym_DOLLAR] = ACTIONS(2228), - [anon_sym_DASH_DASH] = ACTIONS(2230), - [anon_sym_DASH2] = ACTIONS(2232), - [anon_sym_LBRACE] = ACTIONS(2234), - [anon_sym_DOT_DOT] = ACTIONS(2236), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2238), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2240), - [anon_sym_DOT_DOT_LT] = ACTIONS(2240), - [anon_sym_null] = ACTIONS(2242), - [anon_sym_true] = ACTIONS(2244), - [anon_sym_false] = ACTIONS(2244), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2246), - [aux_sym__val_number_decimal_token1] = ACTIONS(2248), - [aux_sym__val_number_decimal_token2] = ACTIONS(2248), - [aux_sym__val_number_decimal_token3] = ACTIONS(2250), - [aux_sym__val_number_decimal_token4] = ACTIONS(2252), - [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(2256), - [aux_sym__val_number_token5] = ACTIONS(2256), - [aux_sym__val_number_token6] = ACTIONS(2256), - [anon_sym_0b] = ACTIONS(2258), - [anon_sym_0o] = ACTIONS(2260), - [anon_sym_0x] = ACTIONS(2260), - [sym_val_date] = ACTIONS(2262), - [anon_sym_DQUOTE] = ACTIONS(2264), - [sym__str_single_quotes] = ACTIONS(2266), - [sym__str_back_ticks] = ACTIONS(2266), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2268), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2270), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2272), - [anon_sym_err_GT] = ACTIONS(2274), - [anon_sym_out_GT] = ACTIONS(2274), - [anon_sym_e_GT] = ACTIONS(2274), - [anon_sym_o_GT] = ACTIONS(2274), - [anon_sym_err_PLUSout_GT] = ACTIONS(2274), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2274), - [anon_sym_o_PLUSe_GT] = ACTIONS(2274), - [anon_sym_e_PLUSo_GT] = ACTIONS(2274), - [anon_sym_err_GT_GT] = ACTIONS(2274), - [anon_sym_out_GT_GT] = ACTIONS(2274), - [anon_sym_e_GT_GT] = ACTIONS(2274), - [anon_sym_o_GT_GT] = ACTIONS(2274), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2274), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2274), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2274), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2274), - [aux_sym_unquoted_token1] = ACTIONS(2276), + [582] = { + [sym_comment] = STATE(582), + [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_COMMA] = 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_hide] = ACTIONS(2282), + [anon_sym_hide_DASHenv] = ACTIONS(2282), + [anon_sym_overlay] = ACTIONS(2282), + [anon_sym_as] = ACTIONS(2282), + [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_DOLLAR_SQUOTE] = ACTIONS(2282), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2282), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2282), + [sym__entry_separator] = ACTIONS(2284), + [anon_sym_register] = ACTIONS(2282), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2278), + [sym_raw_string_begin] = ACTIONS(2284), }, - [568] = { - [sym_comment] = STATE(568), - [anon_sym_export] = ACTIONS(1666), - [anon_sym_alias] = ACTIONS(1666), - [anon_sym_let] = ACTIONS(1666), - [anon_sym_let_DASHenv] = ACTIONS(1666), - [anon_sym_mut] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [aux_sym_cmd_identifier_token1] = ACTIONS(1666), - [aux_sym_cmd_identifier_token2] = ACTIONS(1668), - [aux_sym_cmd_identifier_token3] = ACTIONS(1668), - [aux_sym_cmd_identifier_token4] = ACTIONS(1668), - [aux_sym_cmd_identifier_token5] = ACTIONS(1668), - [aux_sym_cmd_identifier_token6] = ACTIONS(1668), - [aux_sym_cmd_identifier_token7] = ACTIONS(1668), - [aux_sym_cmd_identifier_token8] = ACTIONS(1666), - [aux_sym_cmd_identifier_token9] = ACTIONS(1666), - [aux_sym_cmd_identifier_token10] = ACTIONS(1668), - [aux_sym_cmd_identifier_token11] = ACTIONS(1668), - [aux_sym_cmd_identifier_token12] = ACTIONS(1666), - [aux_sym_cmd_identifier_token13] = ACTIONS(1666), - [aux_sym_cmd_identifier_token14] = ACTIONS(1666), - [aux_sym_cmd_identifier_token15] = ACTIONS(1666), - [aux_sym_cmd_identifier_token16] = ACTIONS(1668), - [aux_sym_cmd_identifier_token17] = ACTIONS(1668), - [aux_sym_cmd_identifier_token18] = ACTIONS(1668), - [aux_sym_cmd_identifier_token19] = ACTIONS(1668), - [aux_sym_cmd_identifier_token20] = ACTIONS(1668), - [aux_sym_cmd_identifier_token21] = ACTIONS(1668), - [aux_sym_cmd_identifier_token22] = ACTIONS(1668), - [aux_sym_cmd_identifier_token23] = ACTIONS(1668), - [aux_sym_cmd_identifier_token24] = ACTIONS(1668), - [aux_sym_cmd_identifier_token25] = ACTIONS(1668), - [aux_sym_cmd_identifier_token26] = ACTIONS(1668), - [aux_sym_cmd_identifier_token27] = ACTIONS(1668), - [aux_sym_cmd_identifier_token28] = ACTIONS(1668), - [aux_sym_cmd_identifier_token29] = ACTIONS(1668), - [aux_sym_cmd_identifier_token30] = ACTIONS(1668), - [aux_sym_cmd_identifier_token31] = ACTIONS(1668), - [aux_sym_cmd_identifier_token32] = ACTIONS(1668), - [aux_sym_cmd_identifier_token33] = ACTIONS(1668), - [aux_sym_cmd_identifier_token34] = ACTIONS(1666), - [aux_sym_cmd_identifier_token35] = ACTIONS(1668), - [aux_sym_cmd_identifier_token36] = ACTIONS(1668), - [aux_sym_cmd_identifier_token37] = ACTIONS(1668), - [aux_sym_cmd_identifier_token38] = ACTIONS(1666), - [aux_sym_cmd_identifier_token39] = ACTIONS(1668), - [aux_sym_cmd_identifier_token40] = ACTIONS(1668), - [anon_sym_def] = ACTIONS(1666), - [anon_sym_export_DASHenv] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_module] = ACTIONS(1666), - [anon_sym_use] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_error] = ACTIONS(1666), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_in2] = ACTIONS(1666), - [anon_sym_loop] = ACTIONS(1666), - [anon_sym_make] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_do] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_match] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_try] = ACTIONS(1666), - [anon_sym_catch] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_source] = ACTIONS(1666), - [anon_sym_source_DASHenv] = ACTIONS(1666), - [anon_sym_hide] = ACTIONS(1666), - [anon_sym_hide_DASHenv] = ACTIONS(1666), - [anon_sym_overlay] = ACTIONS(1666), - [anon_sym_as] = ACTIONS(1666), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_PLUS2] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1668), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1666), - [aux_sym__val_number_token5] = ACTIONS(1666), - [aux_sym__val_number_token6] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1666), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), - }, - [569] = { - [sym_comment] = STATE(569), - [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(978), - [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_hide] = ACTIONS(978), - [anon_sym_hide_DASHenv] = ACTIONS(978), - [anon_sym_overlay] = ACTIONS(978), - [anon_sym_as] = ACTIONS(978), - [anon_sym_PLUS2] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(980), - [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_DOLLAR_SQUOTE] = ACTIONS(980), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(980), - [anon_sym_register] = ACTIONS(978), - [anon_sym_COLON2] = ACTIONS(980), - [anon_sym_DOT2] = ACTIONS(978), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(980), - }, - [570] = { - [sym__expr_parenthesized_immediate] = STATE(7742), - [sym_comment] = STATE(570), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_alias] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_let_DASHenv] = ACTIONS(2067), - [anon_sym_mut] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [aux_sym_cmd_identifier_token1] = ACTIONS(2067), - [aux_sym_cmd_identifier_token2] = ACTIONS(2069), - [aux_sym_cmd_identifier_token3] = ACTIONS(2069), - [aux_sym_cmd_identifier_token4] = ACTIONS(2069), - [aux_sym_cmd_identifier_token5] = ACTIONS(2069), - [aux_sym_cmd_identifier_token6] = ACTIONS(2069), - [aux_sym_cmd_identifier_token7] = ACTIONS(2069), - [aux_sym_cmd_identifier_token8] = ACTIONS(2067), - [aux_sym_cmd_identifier_token9] = ACTIONS(2067), - [aux_sym_cmd_identifier_token10] = ACTIONS(2069), - [aux_sym_cmd_identifier_token11] = ACTIONS(2069), - [aux_sym_cmd_identifier_token12] = ACTIONS(2067), - [aux_sym_cmd_identifier_token13] = ACTIONS(2067), - [aux_sym_cmd_identifier_token14] = ACTIONS(2067), - [aux_sym_cmd_identifier_token15] = ACTIONS(2067), - [aux_sym_cmd_identifier_token16] = ACTIONS(2069), - [aux_sym_cmd_identifier_token17] = ACTIONS(2069), - [aux_sym_cmd_identifier_token18] = ACTIONS(2069), - [aux_sym_cmd_identifier_token19] = ACTIONS(2069), - [aux_sym_cmd_identifier_token20] = ACTIONS(2069), - [aux_sym_cmd_identifier_token21] = ACTIONS(2069), - [aux_sym_cmd_identifier_token22] = ACTIONS(2069), - [aux_sym_cmd_identifier_token23] = ACTIONS(2069), - [aux_sym_cmd_identifier_token24] = ACTIONS(2069), - [aux_sym_cmd_identifier_token25] = ACTIONS(2069), - [aux_sym_cmd_identifier_token26] = ACTIONS(2069), - [aux_sym_cmd_identifier_token27] = ACTIONS(2069), - [aux_sym_cmd_identifier_token28] = ACTIONS(2069), - [aux_sym_cmd_identifier_token29] = ACTIONS(2069), - [aux_sym_cmd_identifier_token30] = ACTIONS(2069), - [aux_sym_cmd_identifier_token31] = ACTIONS(2069), - [aux_sym_cmd_identifier_token32] = ACTIONS(2069), - [aux_sym_cmd_identifier_token33] = ACTIONS(2069), - [aux_sym_cmd_identifier_token34] = ACTIONS(2067), - [aux_sym_cmd_identifier_token35] = ACTIONS(2069), - [aux_sym_cmd_identifier_token36] = ACTIONS(2069), - [aux_sym_cmd_identifier_token37] = ACTIONS(2069), - [aux_sym_cmd_identifier_token38] = ACTIONS(2067), - [aux_sym_cmd_identifier_token39] = ACTIONS(2069), - [aux_sym_cmd_identifier_token40] = ACTIONS(2069), - [anon_sym_def] = ACTIONS(2067), - [anon_sym_export_DASHenv] = ACTIONS(2067), - [anon_sym_extern] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_use] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(2069), - [anon_sym_DOLLAR] = ACTIONS(2067), - [anon_sym_error] = ACTIONS(2067), - [anon_sym_DASH2] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_in2] = ACTIONS(2067), - [anon_sym_loop] = ACTIONS(2067), - [anon_sym_make] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2067), - [anon_sym_match] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2069), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_catch] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_source] = ACTIONS(2067), - [anon_sym_source_DASHenv] = ACTIONS(2067), - [anon_sym_hide] = ACTIONS(2067), - [anon_sym_hide_DASHenv] = ACTIONS(2067), - [anon_sym_overlay] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_LPAREN2] = ACTIONS(1581), - [anon_sym_PLUS2] = ACTIONS(2067), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2069), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2069), - [aux_sym__val_number_decimal_token1] = ACTIONS(2067), - [aux_sym__val_number_decimal_token2] = ACTIONS(2069), - [aux_sym__val_number_decimal_token3] = ACTIONS(2069), - [aux_sym__val_number_decimal_token4] = ACTIONS(2069), - [aux_sym__val_number_token1] = ACTIONS(2069), - [aux_sym__val_number_token2] = ACTIONS(2069), - [aux_sym__val_number_token3] = ACTIONS(2069), - [aux_sym__val_number_token4] = ACTIONS(2067), - [aux_sym__val_number_token5] = ACTIONS(2067), - [aux_sym__val_number_token6] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2069), - [sym__str_single_quotes] = ACTIONS(2069), - [sym__str_back_ticks] = ACTIONS(2069), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2069), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2069), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2069), - [anon_sym_register] = ACTIONS(2067), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2069), - }, - [571] = { - [sym_comment] = STATE(571), - [anon_sym_export] = ACTIONS(1778), - [anon_sym_alias] = ACTIONS(1778), - [anon_sym_let] = ACTIONS(1778), - [anon_sym_let_DASHenv] = ACTIONS(1778), - [anon_sym_mut] = ACTIONS(1778), - [anon_sym_const] = ACTIONS(1778), - [aux_sym_cmd_identifier_token1] = ACTIONS(1778), - [aux_sym_cmd_identifier_token2] = ACTIONS(1786), - [aux_sym_cmd_identifier_token3] = ACTIONS(1786), - [aux_sym_cmd_identifier_token4] = ACTIONS(1786), - [aux_sym_cmd_identifier_token5] = ACTIONS(1786), - [aux_sym_cmd_identifier_token6] = ACTIONS(1786), - [aux_sym_cmd_identifier_token7] = ACTIONS(1786), - [aux_sym_cmd_identifier_token8] = ACTIONS(1778), - [aux_sym_cmd_identifier_token9] = ACTIONS(1778), - [aux_sym_cmd_identifier_token10] = ACTIONS(1786), - [aux_sym_cmd_identifier_token11] = ACTIONS(1786), - [aux_sym_cmd_identifier_token12] = ACTIONS(1778), - [aux_sym_cmd_identifier_token13] = ACTIONS(1778), - [aux_sym_cmd_identifier_token14] = ACTIONS(1778), - [aux_sym_cmd_identifier_token15] = ACTIONS(1778), - [aux_sym_cmd_identifier_token16] = ACTIONS(1786), - [aux_sym_cmd_identifier_token17] = ACTIONS(1786), - [aux_sym_cmd_identifier_token18] = ACTIONS(1786), - [aux_sym_cmd_identifier_token19] = ACTIONS(1786), - [aux_sym_cmd_identifier_token20] = ACTIONS(1786), - [aux_sym_cmd_identifier_token21] = ACTIONS(1786), - [aux_sym_cmd_identifier_token22] = ACTIONS(1786), - [aux_sym_cmd_identifier_token23] = ACTIONS(1786), - [aux_sym_cmd_identifier_token24] = ACTIONS(1786), - [aux_sym_cmd_identifier_token25] = ACTIONS(1786), - [aux_sym_cmd_identifier_token26] = ACTIONS(1786), - [aux_sym_cmd_identifier_token27] = ACTIONS(1786), - [aux_sym_cmd_identifier_token28] = ACTIONS(1786), - [aux_sym_cmd_identifier_token29] = ACTIONS(1786), - [aux_sym_cmd_identifier_token30] = ACTIONS(1786), - [aux_sym_cmd_identifier_token31] = ACTIONS(1786), - [aux_sym_cmd_identifier_token32] = ACTIONS(1786), - [aux_sym_cmd_identifier_token33] = ACTIONS(1786), - [aux_sym_cmd_identifier_token34] = ACTIONS(1778), - [aux_sym_cmd_identifier_token35] = ACTIONS(1786), - [aux_sym_cmd_identifier_token36] = ACTIONS(1786), - [aux_sym_cmd_identifier_token37] = ACTIONS(1786), - [aux_sym_cmd_identifier_token38] = ACTIONS(1778), - [aux_sym_cmd_identifier_token39] = ACTIONS(1786), - [aux_sym_cmd_identifier_token40] = ACTIONS(1786), - [anon_sym_def] = ACTIONS(1778), - [anon_sym_export_DASHenv] = ACTIONS(1778), - [anon_sym_extern] = ACTIONS(1778), - [anon_sym_module] = ACTIONS(1778), - [anon_sym_use] = ACTIONS(1778), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_COMMA] = ACTIONS(1786), - [anon_sym_DOLLAR] = ACTIONS(1778), - [anon_sym_error] = ACTIONS(1778), - [anon_sym_DASH2] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1778), - [anon_sym_in2] = ACTIONS(1778), - [anon_sym_loop] = ACTIONS(1778), - [anon_sym_make] = ACTIONS(1778), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_do] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_match] = ACTIONS(1778), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_catch] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_source] = ACTIONS(1778), - [anon_sym_source_DASHenv] = ACTIONS(1778), - [anon_sym_hide] = ACTIONS(1778), - [anon_sym_hide_DASHenv] = ACTIONS(1778), - [anon_sym_overlay] = ACTIONS(1778), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_LPAREN2] = ACTIONS(1780), - [anon_sym_PLUS2] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1786), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1786), - [aux_sym__val_number_decimal_token1] = ACTIONS(1778), - [aux_sym__val_number_decimal_token2] = ACTIONS(1786), - [aux_sym__val_number_decimal_token3] = ACTIONS(1786), - [aux_sym__val_number_decimal_token4] = ACTIONS(1786), - [aux_sym__val_number_token1] = ACTIONS(1786), - [aux_sym__val_number_token2] = ACTIONS(1786), - [aux_sym__val_number_token3] = ACTIONS(1786), - [aux_sym__val_number_token4] = ACTIONS(1778), - [aux_sym__val_number_token5] = ACTIONS(1778), - [aux_sym__val_number_token6] = ACTIONS(1778), - [anon_sym_DQUOTE] = ACTIONS(1786), - [sym__str_single_quotes] = ACTIONS(1786), - [sym__str_back_ticks] = ACTIONS(1786), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1786), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1786), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1778), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1786), - }, - [572] = { - [sym_comment] = STATE(572), - [anon_sym_export] = ACTIONS(974), - [anon_sym_alias] = ACTIONS(974), - [anon_sym_let] = ACTIONS(974), - [anon_sym_let_DASHenv] = ACTIONS(974), - [anon_sym_mut] = ACTIONS(974), - [anon_sym_const] = ACTIONS(974), - [aux_sym_cmd_identifier_token1] = ACTIONS(974), - [aux_sym_cmd_identifier_token2] = ACTIONS(976), - [aux_sym_cmd_identifier_token3] = ACTIONS(976), - [aux_sym_cmd_identifier_token4] = ACTIONS(976), - [aux_sym_cmd_identifier_token5] = ACTIONS(976), - [aux_sym_cmd_identifier_token6] = ACTIONS(976), - [aux_sym_cmd_identifier_token7] = ACTIONS(976), - [aux_sym_cmd_identifier_token8] = ACTIONS(974), - [aux_sym_cmd_identifier_token9] = ACTIONS(974), - [aux_sym_cmd_identifier_token10] = ACTIONS(976), - [aux_sym_cmd_identifier_token11] = ACTIONS(976), - [aux_sym_cmd_identifier_token12] = ACTIONS(974), - [aux_sym_cmd_identifier_token13] = ACTIONS(974), - [aux_sym_cmd_identifier_token14] = ACTIONS(974), - [aux_sym_cmd_identifier_token15] = ACTIONS(974), - [aux_sym_cmd_identifier_token16] = ACTIONS(976), - [aux_sym_cmd_identifier_token17] = ACTIONS(976), - [aux_sym_cmd_identifier_token18] = ACTIONS(976), - [aux_sym_cmd_identifier_token19] = ACTIONS(976), - [aux_sym_cmd_identifier_token20] = ACTIONS(976), - [aux_sym_cmd_identifier_token21] = ACTIONS(976), - [aux_sym_cmd_identifier_token22] = ACTIONS(976), - [aux_sym_cmd_identifier_token23] = ACTIONS(976), - [aux_sym_cmd_identifier_token24] = ACTIONS(976), - [aux_sym_cmd_identifier_token25] = ACTIONS(976), - [aux_sym_cmd_identifier_token26] = ACTIONS(976), - [aux_sym_cmd_identifier_token27] = ACTIONS(976), - [aux_sym_cmd_identifier_token28] = ACTIONS(976), - [aux_sym_cmd_identifier_token29] = ACTIONS(976), - [aux_sym_cmd_identifier_token30] = ACTIONS(976), - [aux_sym_cmd_identifier_token31] = ACTIONS(976), - [aux_sym_cmd_identifier_token32] = ACTIONS(976), - [aux_sym_cmd_identifier_token33] = ACTIONS(976), - [aux_sym_cmd_identifier_token34] = ACTIONS(974), - [aux_sym_cmd_identifier_token35] = ACTIONS(976), - [aux_sym_cmd_identifier_token36] = ACTIONS(976), - [aux_sym_cmd_identifier_token37] = ACTIONS(976), - [aux_sym_cmd_identifier_token38] = ACTIONS(974), - [aux_sym_cmd_identifier_token39] = ACTIONS(976), - [aux_sym_cmd_identifier_token40] = ACTIONS(976), - [anon_sym_def] = ACTIONS(974), - [anon_sym_export_DASHenv] = ACTIONS(974), - [anon_sym_extern] = ACTIONS(974), - [anon_sym_module] = ACTIONS(974), - [anon_sym_use] = ACTIONS(974), - [anon_sym_LPAREN] = ACTIONS(976), - [anon_sym_COMMA] = ACTIONS(976), - [anon_sym_DOLLAR] = ACTIONS(974), - [anon_sym_error] = ACTIONS(974), - [anon_sym_DASH2] = ACTIONS(974), - [anon_sym_break] = ACTIONS(974), - [anon_sym_continue] = ACTIONS(974), - [anon_sym_for] = ACTIONS(974), - [anon_sym_in2] = ACTIONS(974), - [anon_sym_loop] = ACTIONS(974), - [anon_sym_make] = ACTIONS(974), - [anon_sym_while] = ACTIONS(974), - [anon_sym_do] = ACTIONS(974), - [anon_sym_if] = ACTIONS(974), - [anon_sym_else] = ACTIONS(974), - [anon_sym_match] = ACTIONS(974), - [anon_sym_RBRACE] = ACTIONS(976), - [anon_sym_try] = ACTIONS(974), - [anon_sym_catch] = ACTIONS(974), - [anon_sym_return] = ACTIONS(974), - [anon_sym_source] = ACTIONS(974), - [anon_sym_source_DASHenv] = ACTIONS(974), - [anon_sym_hide] = ACTIONS(974), - [anon_sym_hide_DASHenv] = ACTIONS(974), - [anon_sym_overlay] = ACTIONS(974), - [anon_sym_as] = ACTIONS(974), - [anon_sym_PLUS2] = ACTIONS(974), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(976), - [aux_sym__val_number_decimal_token1] = ACTIONS(974), - [aux_sym__val_number_decimal_token2] = ACTIONS(976), - [aux_sym__val_number_decimal_token3] = ACTIONS(976), - [aux_sym__val_number_decimal_token4] = ACTIONS(976), - [aux_sym__val_number_token1] = ACTIONS(976), - [aux_sym__val_number_token2] = ACTIONS(976), - [aux_sym__val_number_token3] = ACTIONS(976), - [aux_sym__val_number_token4] = ACTIONS(974), - [aux_sym__val_number_token5] = ACTIONS(974), - [aux_sym__val_number_token6] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(976), - [sym__str_single_quotes] = ACTIONS(976), - [sym__str_back_ticks] = ACTIONS(976), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(976), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(976), - [anon_sym_register] = ACTIONS(974), - [anon_sym_COLON2] = ACTIONS(976), - [anon_sym_DOT2] = ACTIONS(974), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(976), - }, - [573] = { - [sym_expr_parenthesized] = STATE(4232), - [sym__spread_parenthesized] = STATE(4679), - [sym_val_range] = STATE(4686), - [sym__val_range] = STATE(7563), - [sym__val_range_with_end] = STATE(7481), - [sym__value] = STATE(4686), - [sym_val_nothing] = STATE(4706), - [sym_val_bool] = STATE(4357), - [sym__spread_variable] = STATE(4687), - [sym_val_variable] = STATE(4236), - [sym_val_number] = STATE(4706), - [sym__val_number_decimal] = STATE(3949), - [sym__val_number] = STATE(4709), - [sym_val_duration] = STATE(4706), - [sym_val_filesize] = STATE(4706), - [sym_val_binary] = STATE(4706), - [sym_val_string] = STATE(4706), - [sym__raw_str] = STATE(4077), - [sym__str_double_quotes] = STATE(4077), - [sym_val_interpolated] = STATE(4706), - [sym__inter_single_quotes] = STATE(4625), - [sym__inter_double_quotes] = STATE(4629), - [sym_val_list] = STATE(4706), - [sym__spread_list] = STATE(4679), - [sym_val_record] = STATE(4706), - [sym_val_table] = STATE(4706), - [sym_val_closure] = STATE(4706), - [sym__cmd_arg] = STATE(4848), - [sym_redirection] = STATE(4693), - [sym__flag] = STATE(4694), - [sym_short_flag] = STATE(4663), - [sym_long_flag] = STATE(4663), - [sym_unquoted] = STATE(4375), - [sym__unquoted_with_expr] = STATE(4697), - [sym__unquoted_anonymous_prefix] = STATE(7047), - [sym_comment] = STATE(573), - [sym__newline] = ACTIONS(2280), - [sym__space] = ACTIONS(2282), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_LBRACK] = ACTIONS(2130), - [anon_sym_LPAREN] = ACTIONS(2132), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_DOLLAR] = ACTIONS(2134), - [anon_sym_DASH_DASH] = ACTIONS(2136), - [anon_sym_DASH2] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_DOT_DOT] = ACTIONS(2142), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2144), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2146), - [anon_sym_DOT_DOT_LT] = ACTIONS(2146), - [anon_sym_null] = ACTIONS(2148), - [anon_sym_true] = ACTIONS(2150), - [anon_sym_false] = ACTIONS(2150), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2152), - [aux_sym__val_number_decimal_token1] = ACTIONS(2154), - [aux_sym__val_number_decimal_token2] = ACTIONS(2154), - [aux_sym__val_number_decimal_token3] = ACTIONS(2156), - [aux_sym__val_number_decimal_token4] = ACTIONS(2158), - [aux_sym__val_number_token1] = ACTIONS(2160), - [aux_sym__val_number_token2] = ACTIONS(2160), - [aux_sym__val_number_token3] = ACTIONS(2160), - [aux_sym__val_number_token4] = ACTIONS(2162), - [aux_sym__val_number_token5] = ACTIONS(2162), - [aux_sym__val_number_token6] = ACTIONS(2162), - [anon_sym_0b] = ACTIONS(2164), - [anon_sym_0o] = ACTIONS(2166), - [anon_sym_0x] = ACTIONS(2166), - [sym_val_date] = ACTIONS(2168), - [anon_sym_DQUOTE] = ACTIONS(2170), - [sym__str_single_quotes] = ACTIONS(2172), - [sym__str_back_ticks] = ACTIONS(2172), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2174), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2176), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2178), - [anon_sym_err_GT] = ACTIONS(2182), - [anon_sym_out_GT] = ACTIONS(2182), - [anon_sym_e_GT] = ACTIONS(2182), - [anon_sym_o_GT] = ACTIONS(2182), - [anon_sym_err_PLUSout_GT] = ACTIONS(2182), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2182), - [anon_sym_o_PLUSe_GT] = ACTIONS(2182), - [anon_sym_e_PLUSo_GT] = ACTIONS(2182), - [anon_sym_err_GT_GT] = ACTIONS(2182), - [anon_sym_out_GT_GT] = ACTIONS(2182), - [anon_sym_e_GT_GT] = ACTIONS(2182), - [anon_sym_o_GT_GT] = ACTIONS(2182), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2182), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2182), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2182), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2182), - [aux_sym_unquoted_token1] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2186), - }, - [574] = { - [sym__expr_parenthesized_immediate] = STATE(7544), - [sym_comment] = STATE(574), - [anon_sym_export] = ACTIONS(1977), - [anon_sym_alias] = ACTIONS(1977), - [anon_sym_let] = ACTIONS(1977), - [anon_sym_let_DASHenv] = ACTIONS(1977), - [anon_sym_mut] = ACTIONS(1977), - [anon_sym_const] = ACTIONS(1977), - [aux_sym_cmd_identifier_token1] = ACTIONS(1977), - [aux_sym_cmd_identifier_token2] = ACTIONS(1983), - [aux_sym_cmd_identifier_token3] = ACTIONS(1983), - [aux_sym_cmd_identifier_token4] = ACTIONS(1983), - [aux_sym_cmd_identifier_token5] = ACTIONS(1983), - [aux_sym_cmd_identifier_token6] = ACTIONS(1983), - [aux_sym_cmd_identifier_token7] = ACTIONS(1983), - [aux_sym_cmd_identifier_token8] = ACTIONS(1977), - [aux_sym_cmd_identifier_token9] = ACTIONS(1977), - [aux_sym_cmd_identifier_token10] = ACTIONS(1983), - [aux_sym_cmd_identifier_token11] = ACTIONS(1983), - [aux_sym_cmd_identifier_token12] = ACTIONS(1977), - [aux_sym_cmd_identifier_token13] = ACTIONS(1977), - [aux_sym_cmd_identifier_token14] = ACTIONS(1977), - [aux_sym_cmd_identifier_token15] = ACTIONS(1977), - [aux_sym_cmd_identifier_token16] = ACTIONS(1983), - [aux_sym_cmd_identifier_token17] = ACTIONS(1983), - [aux_sym_cmd_identifier_token18] = ACTIONS(1983), - [aux_sym_cmd_identifier_token19] = ACTIONS(1983), - [aux_sym_cmd_identifier_token20] = ACTIONS(1983), - [aux_sym_cmd_identifier_token21] = ACTIONS(1983), - [aux_sym_cmd_identifier_token22] = ACTIONS(1983), - [aux_sym_cmd_identifier_token23] = ACTIONS(1983), - [aux_sym_cmd_identifier_token24] = ACTIONS(1983), - [aux_sym_cmd_identifier_token25] = ACTIONS(1983), - [aux_sym_cmd_identifier_token26] = ACTIONS(1983), - [aux_sym_cmd_identifier_token27] = ACTIONS(1983), - [aux_sym_cmd_identifier_token28] = ACTIONS(1983), - [aux_sym_cmd_identifier_token29] = ACTIONS(1983), - [aux_sym_cmd_identifier_token30] = ACTIONS(1983), - [aux_sym_cmd_identifier_token31] = ACTIONS(1983), - [aux_sym_cmd_identifier_token32] = ACTIONS(1983), - [aux_sym_cmd_identifier_token33] = ACTIONS(1983), - [aux_sym_cmd_identifier_token34] = ACTIONS(1977), - [aux_sym_cmd_identifier_token35] = ACTIONS(1983), - [aux_sym_cmd_identifier_token36] = ACTIONS(1983), - [aux_sym_cmd_identifier_token37] = ACTIONS(1983), - [aux_sym_cmd_identifier_token38] = ACTIONS(1977), - [aux_sym_cmd_identifier_token39] = ACTIONS(1983), - [aux_sym_cmd_identifier_token40] = ACTIONS(1983), - [anon_sym_def] = ACTIONS(1977), - [anon_sym_export_DASHenv] = ACTIONS(1977), - [anon_sym_extern] = ACTIONS(1977), - [anon_sym_module] = ACTIONS(1977), - [anon_sym_use] = ACTIONS(1977), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_COMMA] = ACTIONS(1983), - [anon_sym_DOLLAR] = ACTIONS(1977), - [anon_sym_error] = ACTIONS(1977), - [anon_sym_DASH2] = ACTIONS(1977), - [anon_sym_break] = ACTIONS(1977), - [anon_sym_continue] = ACTIONS(1977), - [anon_sym_for] = ACTIONS(1977), - [anon_sym_in2] = ACTIONS(1977), - [anon_sym_loop] = ACTIONS(1977), - [anon_sym_make] = ACTIONS(1977), - [anon_sym_while] = ACTIONS(1977), - [anon_sym_do] = ACTIONS(1977), - [anon_sym_if] = ACTIONS(1977), - [anon_sym_else] = ACTIONS(1977), - [anon_sym_match] = ACTIONS(1977), - [anon_sym_RBRACE] = ACTIONS(1983), - [anon_sym_try] = ACTIONS(1977), - [anon_sym_catch] = ACTIONS(1977), - [anon_sym_return] = ACTIONS(1977), - [anon_sym_source] = ACTIONS(1977), - [anon_sym_source_DASHenv] = ACTIONS(1977), - [anon_sym_hide] = ACTIONS(1977), - [anon_sym_hide_DASHenv] = ACTIONS(1977), - [anon_sym_overlay] = ACTIONS(1977), - [anon_sym_as] = ACTIONS(1977), - [anon_sym_LPAREN2] = ACTIONS(1581), - [anon_sym_PLUS2] = ACTIONS(1977), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1983), - [aux_sym__val_number_decimal_token1] = ACTIONS(1977), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1983), - [aux_sym__val_number_decimal_token4] = ACTIONS(1983), - [aux_sym__val_number_token1] = ACTIONS(1983), - [aux_sym__val_number_token2] = ACTIONS(1983), - [aux_sym__val_number_token3] = ACTIONS(1983), - [aux_sym__val_number_token4] = ACTIONS(1977), - [aux_sym__val_number_token5] = ACTIONS(1977), - [aux_sym__val_number_token6] = ACTIONS(1977), - [anon_sym_DQUOTE] = ACTIONS(1983), - [sym__str_single_quotes] = ACTIONS(1983), - [sym__str_back_ticks] = ACTIONS(1983), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1983), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1983), - [anon_sym_register] = ACTIONS(1977), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1983), - }, - [575] = { - [sym_comment] = STATE(575), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_alias] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_let_DASHenv] = ACTIONS(1811), - [anon_sym_mut] = ACTIONS(1811), - [anon_sym_const] = ACTIONS(1811), - [aux_sym_cmd_identifier_token1] = ACTIONS(1811), - [aux_sym_cmd_identifier_token2] = ACTIONS(1819), - [aux_sym_cmd_identifier_token3] = ACTIONS(1819), - [aux_sym_cmd_identifier_token4] = ACTIONS(1819), - [aux_sym_cmd_identifier_token5] = ACTIONS(1819), - [aux_sym_cmd_identifier_token6] = ACTIONS(1819), - [aux_sym_cmd_identifier_token7] = ACTIONS(1819), - [aux_sym_cmd_identifier_token8] = ACTIONS(1811), - [aux_sym_cmd_identifier_token9] = ACTIONS(1811), - [aux_sym_cmd_identifier_token10] = ACTIONS(1819), - [aux_sym_cmd_identifier_token11] = ACTIONS(1819), - [aux_sym_cmd_identifier_token12] = ACTIONS(1811), - [aux_sym_cmd_identifier_token13] = ACTIONS(1811), - [aux_sym_cmd_identifier_token14] = ACTIONS(1811), - [aux_sym_cmd_identifier_token15] = ACTIONS(1811), - [aux_sym_cmd_identifier_token16] = ACTIONS(1819), - [aux_sym_cmd_identifier_token17] = ACTIONS(1819), - [aux_sym_cmd_identifier_token18] = ACTIONS(1819), - [aux_sym_cmd_identifier_token19] = ACTIONS(1819), - [aux_sym_cmd_identifier_token20] = ACTIONS(1819), - [aux_sym_cmd_identifier_token21] = ACTIONS(1819), - [aux_sym_cmd_identifier_token22] = ACTIONS(1819), - [aux_sym_cmd_identifier_token23] = ACTIONS(1819), - [aux_sym_cmd_identifier_token24] = ACTIONS(1819), - [aux_sym_cmd_identifier_token25] = ACTIONS(1819), - [aux_sym_cmd_identifier_token26] = ACTIONS(1819), - [aux_sym_cmd_identifier_token27] = ACTIONS(1819), - [aux_sym_cmd_identifier_token28] = ACTIONS(1819), - [aux_sym_cmd_identifier_token29] = ACTIONS(1819), - [aux_sym_cmd_identifier_token30] = ACTIONS(1819), - [aux_sym_cmd_identifier_token31] = ACTIONS(1819), - [aux_sym_cmd_identifier_token32] = ACTIONS(1819), - [aux_sym_cmd_identifier_token33] = ACTIONS(1819), - [aux_sym_cmd_identifier_token34] = ACTIONS(1811), - [aux_sym_cmd_identifier_token35] = ACTIONS(1819), - [aux_sym_cmd_identifier_token36] = ACTIONS(1819), - [aux_sym_cmd_identifier_token37] = ACTIONS(1819), - [aux_sym_cmd_identifier_token38] = ACTIONS(1811), - [aux_sym_cmd_identifier_token39] = ACTIONS(1819), - [aux_sym_cmd_identifier_token40] = ACTIONS(1819), - [anon_sym_def] = ACTIONS(1811), - [anon_sym_export_DASHenv] = ACTIONS(1811), - [anon_sym_extern] = ACTIONS(1811), - [anon_sym_module] = ACTIONS(1811), - [anon_sym_use] = ACTIONS(1811), - [anon_sym_LPAREN] = ACTIONS(1811), - [anon_sym_COMMA] = ACTIONS(1819), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_error] = ACTIONS(1811), - [anon_sym_DASH2] = ACTIONS(1811), - [anon_sym_break] = ACTIONS(1811), - [anon_sym_continue] = ACTIONS(1811), - [anon_sym_for] = ACTIONS(1811), - [anon_sym_in2] = ACTIONS(1811), - [anon_sym_loop] = ACTIONS(1811), - [anon_sym_make] = ACTIONS(1811), - [anon_sym_while] = ACTIONS(1811), - [anon_sym_do] = ACTIONS(1811), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_else] = ACTIONS(1811), - [anon_sym_match] = ACTIONS(1811), - [anon_sym_RBRACE] = ACTIONS(1819), - [anon_sym_try] = ACTIONS(1811), - [anon_sym_catch] = ACTIONS(1811), - [anon_sym_return] = ACTIONS(1811), - [anon_sym_source] = ACTIONS(1811), - [anon_sym_source_DASHenv] = ACTIONS(1811), - [anon_sym_hide] = ACTIONS(1811), - [anon_sym_hide_DASHenv] = ACTIONS(1811), - [anon_sym_overlay] = ACTIONS(1811), - [anon_sym_as] = ACTIONS(1811), - [anon_sym_LPAREN2] = ACTIONS(1813), - [anon_sym_PLUS2] = ACTIONS(1811), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1819), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1819), - [aux_sym__val_number_decimal_token1] = ACTIONS(1811), - [aux_sym__val_number_decimal_token2] = ACTIONS(1819), - [aux_sym__val_number_decimal_token3] = ACTIONS(1819), - [aux_sym__val_number_decimal_token4] = ACTIONS(1819), - [aux_sym__val_number_token1] = ACTIONS(1819), - [aux_sym__val_number_token2] = ACTIONS(1819), - [aux_sym__val_number_token3] = ACTIONS(1819), - [aux_sym__val_number_token4] = ACTIONS(1811), - [aux_sym__val_number_token5] = ACTIONS(1811), - [aux_sym__val_number_token6] = ACTIONS(1811), - [anon_sym_DQUOTE] = ACTIONS(1819), - [sym__str_single_quotes] = ACTIONS(1819), - [sym__str_back_ticks] = ACTIONS(1819), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1819), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1819), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1819), - [anon_sym_register] = ACTIONS(1811), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1447), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1819), - }, - [576] = { - [sym_comment] = STATE(576), - [anon_sym_export] = ACTIONS(2059), - [anon_sym_alias] = ACTIONS(2059), - [anon_sym_let] = ACTIONS(2059), - [anon_sym_let_DASHenv] = ACTIONS(2059), - [anon_sym_mut] = ACTIONS(2059), - [anon_sym_const] = ACTIONS(2059), - [aux_sym_cmd_identifier_token1] = ACTIONS(2059), - [aux_sym_cmd_identifier_token2] = ACTIONS(2063), - [aux_sym_cmd_identifier_token3] = ACTIONS(2063), - [aux_sym_cmd_identifier_token4] = ACTIONS(2063), - [aux_sym_cmd_identifier_token5] = ACTIONS(2063), - [aux_sym_cmd_identifier_token6] = ACTIONS(2063), - [aux_sym_cmd_identifier_token7] = ACTIONS(2063), - [aux_sym_cmd_identifier_token8] = ACTIONS(2059), - [aux_sym_cmd_identifier_token9] = ACTIONS(2059), - [aux_sym_cmd_identifier_token10] = ACTIONS(2063), - [aux_sym_cmd_identifier_token11] = ACTIONS(2063), - [aux_sym_cmd_identifier_token12] = ACTIONS(2059), - [aux_sym_cmd_identifier_token13] = ACTIONS(2059), - [aux_sym_cmd_identifier_token14] = ACTIONS(2059), - [aux_sym_cmd_identifier_token15] = ACTIONS(2059), - [aux_sym_cmd_identifier_token16] = ACTIONS(2063), - [aux_sym_cmd_identifier_token17] = ACTIONS(2063), - [aux_sym_cmd_identifier_token18] = ACTIONS(2063), - [aux_sym_cmd_identifier_token19] = ACTIONS(2063), - [aux_sym_cmd_identifier_token20] = ACTIONS(2063), - [aux_sym_cmd_identifier_token21] = ACTIONS(2063), - [aux_sym_cmd_identifier_token22] = ACTIONS(2063), - [aux_sym_cmd_identifier_token23] = ACTIONS(2063), - [aux_sym_cmd_identifier_token24] = ACTIONS(2063), - [aux_sym_cmd_identifier_token25] = ACTIONS(2063), - [aux_sym_cmd_identifier_token26] = ACTIONS(2063), - [aux_sym_cmd_identifier_token27] = ACTIONS(2063), - [aux_sym_cmd_identifier_token28] = ACTIONS(2063), - [aux_sym_cmd_identifier_token29] = ACTIONS(2063), - [aux_sym_cmd_identifier_token30] = ACTIONS(2063), - [aux_sym_cmd_identifier_token31] = ACTIONS(2063), - [aux_sym_cmd_identifier_token32] = ACTIONS(2063), - [aux_sym_cmd_identifier_token33] = ACTIONS(2063), - [aux_sym_cmd_identifier_token34] = ACTIONS(2059), - [aux_sym_cmd_identifier_token35] = ACTIONS(2063), - [aux_sym_cmd_identifier_token36] = ACTIONS(2063), - [aux_sym_cmd_identifier_token37] = ACTIONS(2063), - [aux_sym_cmd_identifier_token38] = ACTIONS(2059), - [aux_sym_cmd_identifier_token39] = ACTIONS(2063), - [aux_sym_cmd_identifier_token40] = ACTIONS(2063), - [anon_sym_def] = ACTIONS(2059), - [anon_sym_export_DASHenv] = ACTIONS(2059), - [anon_sym_extern] = ACTIONS(2059), - [anon_sym_module] = ACTIONS(2059), - [anon_sym_use] = ACTIONS(2059), - [anon_sym_LPAREN] = ACTIONS(2059), - [anon_sym_COMMA] = ACTIONS(2063), - [anon_sym_DOLLAR] = ACTIONS(2059), - [anon_sym_error] = ACTIONS(2059), - [anon_sym_DASH2] = ACTIONS(2059), - [anon_sym_break] = ACTIONS(2059), - [anon_sym_continue] = ACTIONS(2059), - [anon_sym_for] = ACTIONS(2059), - [anon_sym_in2] = ACTIONS(2059), - [anon_sym_loop] = ACTIONS(2059), - [anon_sym_make] = ACTIONS(2059), - [anon_sym_while] = ACTIONS(2059), - [anon_sym_do] = ACTIONS(2059), - [anon_sym_if] = ACTIONS(2059), - [anon_sym_else] = ACTIONS(2059), - [anon_sym_match] = ACTIONS(2059), - [anon_sym_RBRACE] = ACTIONS(2063), - [anon_sym_try] = ACTIONS(2059), - [anon_sym_catch] = ACTIONS(2059), - [anon_sym_return] = ACTIONS(2059), - [anon_sym_source] = ACTIONS(2059), - [anon_sym_source_DASHenv] = ACTIONS(2059), - [anon_sym_hide] = ACTIONS(2059), - [anon_sym_hide_DASHenv] = ACTIONS(2059), - [anon_sym_overlay] = ACTIONS(2059), - [anon_sym_as] = ACTIONS(2059), - [anon_sym_LPAREN2] = ACTIONS(2061), - [anon_sym_PLUS2] = ACTIONS(2059), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2063), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2063), - [aux_sym__val_number_decimal_token1] = ACTIONS(2059), - [aux_sym__val_number_decimal_token2] = ACTIONS(2063), - [aux_sym__val_number_decimal_token3] = ACTIONS(2063), - [aux_sym__val_number_decimal_token4] = ACTIONS(2063), - [aux_sym__val_number_token1] = ACTIONS(2063), - [aux_sym__val_number_token2] = ACTIONS(2063), - [aux_sym__val_number_token3] = ACTIONS(2063), - [aux_sym__val_number_token4] = ACTIONS(2059), - [aux_sym__val_number_token5] = ACTIONS(2059), - [aux_sym__val_number_token6] = ACTIONS(2059), - [anon_sym_DQUOTE] = ACTIONS(2063), - [sym__str_single_quotes] = ACTIONS(2063), - [sym__str_back_ticks] = ACTIONS(2063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2063), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2063), - [anon_sym_register] = ACTIONS(2059), - [aux_sym__unquoted_in_record_token2] = ACTIONS(2065), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2063), - }, - [577] = { - [sym_comment] = STATE(577), - [anon_sym_export] = ACTIONS(2041), - [anon_sym_alias] = ACTIONS(2041), - [anon_sym_let] = ACTIONS(2041), - [anon_sym_let_DASHenv] = ACTIONS(2041), - [anon_sym_mut] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2041), - [aux_sym_cmd_identifier_token1] = ACTIONS(2041), - [aux_sym_cmd_identifier_token2] = ACTIONS(2043), - [aux_sym_cmd_identifier_token3] = ACTIONS(2043), - [aux_sym_cmd_identifier_token4] = ACTIONS(2043), - [aux_sym_cmd_identifier_token5] = ACTIONS(2043), - [aux_sym_cmd_identifier_token6] = ACTIONS(2043), - [aux_sym_cmd_identifier_token7] = ACTIONS(2043), - [aux_sym_cmd_identifier_token8] = ACTIONS(2041), - [aux_sym_cmd_identifier_token9] = ACTIONS(2041), - [aux_sym_cmd_identifier_token10] = ACTIONS(2043), - [aux_sym_cmd_identifier_token11] = ACTIONS(2043), - [aux_sym_cmd_identifier_token12] = ACTIONS(2041), - [aux_sym_cmd_identifier_token13] = ACTIONS(2041), - [aux_sym_cmd_identifier_token14] = ACTIONS(2041), - [aux_sym_cmd_identifier_token15] = ACTIONS(2041), - [aux_sym_cmd_identifier_token16] = ACTIONS(2043), - [aux_sym_cmd_identifier_token17] = ACTIONS(2043), - [aux_sym_cmd_identifier_token18] = ACTIONS(2043), - [aux_sym_cmd_identifier_token19] = ACTIONS(2043), - [aux_sym_cmd_identifier_token20] = ACTIONS(2043), - [aux_sym_cmd_identifier_token21] = ACTIONS(2043), - [aux_sym_cmd_identifier_token22] = ACTIONS(2043), - [aux_sym_cmd_identifier_token23] = ACTIONS(2043), - [aux_sym_cmd_identifier_token24] = ACTIONS(2043), - [aux_sym_cmd_identifier_token25] = ACTIONS(2043), - [aux_sym_cmd_identifier_token26] = ACTIONS(2043), - [aux_sym_cmd_identifier_token27] = ACTIONS(2043), - [aux_sym_cmd_identifier_token28] = ACTIONS(2043), - [aux_sym_cmd_identifier_token29] = ACTIONS(2043), - [aux_sym_cmd_identifier_token30] = ACTIONS(2043), - [aux_sym_cmd_identifier_token31] = ACTIONS(2043), - [aux_sym_cmd_identifier_token32] = ACTIONS(2043), - [aux_sym_cmd_identifier_token33] = ACTIONS(2043), - [aux_sym_cmd_identifier_token34] = ACTIONS(2041), - [aux_sym_cmd_identifier_token35] = ACTIONS(2043), - [aux_sym_cmd_identifier_token36] = ACTIONS(2043), - [aux_sym_cmd_identifier_token37] = ACTIONS(2043), - [aux_sym_cmd_identifier_token38] = ACTIONS(2041), - [aux_sym_cmd_identifier_token39] = ACTIONS(2043), - [aux_sym_cmd_identifier_token40] = ACTIONS(2043), - [anon_sym_def] = ACTIONS(2041), - [anon_sym_export_DASHenv] = ACTIONS(2041), - [anon_sym_extern] = ACTIONS(2041), - [anon_sym_module] = ACTIONS(2041), - [anon_sym_use] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(2041), - [anon_sym_COMMA] = ACTIONS(2043), - [anon_sym_DOLLAR] = ACTIONS(2041), - [anon_sym_error] = ACTIONS(2041), - [anon_sym_DASH2] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_in2] = ACTIONS(2041), - [anon_sym_loop] = ACTIONS(2041), - [anon_sym_make] = ACTIONS(2041), - [anon_sym_while] = ACTIONS(2041), - [anon_sym_do] = ACTIONS(2041), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_else] = ACTIONS(2041), - [anon_sym_match] = ACTIONS(2041), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_try] = ACTIONS(2041), - [anon_sym_catch] = ACTIONS(2041), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_source] = ACTIONS(2041), - [anon_sym_source_DASHenv] = ACTIONS(2041), - [anon_sym_hide] = ACTIONS(2041), - [anon_sym_hide_DASHenv] = ACTIONS(2041), - [anon_sym_overlay] = ACTIONS(2041), - [anon_sym_as] = ACTIONS(2041), - [anon_sym_LPAREN2] = ACTIONS(1780), - [anon_sym_PLUS2] = ACTIONS(2041), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2043), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2043), - [aux_sym__val_number_decimal_token1] = ACTIONS(2041), - [aux_sym__val_number_decimal_token2] = ACTIONS(2043), - [aux_sym__val_number_decimal_token3] = ACTIONS(2043), - [aux_sym__val_number_decimal_token4] = ACTIONS(2043), - [aux_sym__val_number_token1] = ACTIONS(2043), - [aux_sym__val_number_token2] = ACTIONS(2043), - [aux_sym__val_number_token3] = ACTIONS(2043), - [aux_sym__val_number_token4] = ACTIONS(2041), - [aux_sym__val_number_token5] = ACTIONS(2041), - [aux_sym__val_number_token6] = ACTIONS(2041), - [anon_sym_DQUOTE] = ACTIONS(2043), - [sym__str_single_quotes] = ACTIONS(2043), - [sym__str_back_ticks] = ACTIONS(2043), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2043), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2043), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2043), - [anon_sym_register] = ACTIONS(2041), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2043), - }, - [578] = { - [sym__expr_parenthesized_immediate] = STATE(7544), - [sym_comment] = STATE(578), - [anon_sym_export] = ACTIONS(1985), - [anon_sym_alias] = ACTIONS(1985), - [anon_sym_let] = ACTIONS(1985), - [anon_sym_let_DASHenv] = ACTIONS(1985), - [anon_sym_mut] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1985), - [aux_sym_cmd_identifier_token1] = ACTIONS(1985), - [aux_sym_cmd_identifier_token2] = ACTIONS(1987), - [aux_sym_cmd_identifier_token3] = ACTIONS(1987), - [aux_sym_cmd_identifier_token4] = ACTIONS(1987), - [aux_sym_cmd_identifier_token5] = ACTIONS(1987), - [aux_sym_cmd_identifier_token6] = ACTIONS(1987), - [aux_sym_cmd_identifier_token7] = ACTIONS(1987), - [aux_sym_cmd_identifier_token8] = ACTIONS(1985), - [aux_sym_cmd_identifier_token9] = ACTIONS(1985), - [aux_sym_cmd_identifier_token10] = ACTIONS(1987), - [aux_sym_cmd_identifier_token11] = ACTIONS(1987), - [aux_sym_cmd_identifier_token12] = ACTIONS(1985), - [aux_sym_cmd_identifier_token13] = ACTIONS(1985), - [aux_sym_cmd_identifier_token14] = ACTIONS(1985), - [aux_sym_cmd_identifier_token15] = ACTIONS(1985), - [aux_sym_cmd_identifier_token16] = ACTIONS(1987), - [aux_sym_cmd_identifier_token17] = ACTIONS(1987), - [aux_sym_cmd_identifier_token18] = ACTIONS(1987), - [aux_sym_cmd_identifier_token19] = ACTIONS(1987), - [aux_sym_cmd_identifier_token20] = ACTIONS(1987), - [aux_sym_cmd_identifier_token21] = ACTIONS(1987), - [aux_sym_cmd_identifier_token22] = ACTIONS(1987), - [aux_sym_cmd_identifier_token23] = ACTIONS(1987), - [aux_sym_cmd_identifier_token24] = ACTIONS(1987), - [aux_sym_cmd_identifier_token25] = ACTIONS(1987), - [aux_sym_cmd_identifier_token26] = ACTIONS(1987), - [aux_sym_cmd_identifier_token27] = ACTIONS(1987), - [aux_sym_cmd_identifier_token28] = ACTIONS(1987), - [aux_sym_cmd_identifier_token29] = ACTIONS(1987), - [aux_sym_cmd_identifier_token30] = ACTIONS(1987), - [aux_sym_cmd_identifier_token31] = ACTIONS(1987), - [aux_sym_cmd_identifier_token32] = ACTIONS(1987), - [aux_sym_cmd_identifier_token33] = ACTIONS(1987), - [aux_sym_cmd_identifier_token34] = ACTIONS(1985), - [aux_sym_cmd_identifier_token35] = ACTIONS(1987), - [aux_sym_cmd_identifier_token36] = ACTIONS(1987), - [aux_sym_cmd_identifier_token37] = ACTIONS(1987), - [aux_sym_cmd_identifier_token38] = ACTIONS(1985), - [aux_sym_cmd_identifier_token39] = ACTIONS(1987), - [aux_sym_cmd_identifier_token40] = ACTIONS(1987), - [anon_sym_def] = ACTIONS(1985), - [anon_sym_export_DASHenv] = ACTIONS(1985), - [anon_sym_extern] = ACTIONS(1985), - [anon_sym_module] = ACTIONS(1985), - [anon_sym_use] = ACTIONS(1985), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_COMMA] = ACTIONS(1987), - [anon_sym_DOLLAR] = ACTIONS(1985), - [anon_sym_error] = ACTIONS(1985), - [anon_sym_DASH2] = ACTIONS(1985), - [anon_sym_break] = ACTIONS(1985), - [anon_sym_continue] = ACTIONS(1985), - [anon_sym_for] = ACTIONS(1985), - [anon_sym_in2] = ACTIONS(1985), - [anon_sym_loop] = ACTIONS(1985), - [anon_sym_make] = ACTIONS(1985), - [anon_sym_while] = ACTIONS(1985), - [anon_sym_do] = ACTIONS(1985), - [anon_sym_if] = ACTIONS(1985), - [anon_sym_else] = ACTIONS(1985), - [anon_sym_match] = ACTIONS(1985), - [anon_sym_RBRACE] = ACTIONS(1987), - [anon_sym_try] = ACTIONS(1985), - [anon_sym_catch] = ACTIONS(1985), - [anon_sym_return] = ACTIONS(1985), - [anon_sym_source] = ACTIONS(1985), - [anon_sym_source_DASHenv] = ACTIONS(1985), - [anon_sym_hide] = ACTIONS(1985), - [anon_sym_hide_DASHenv] = ACTIONS(1985), - [anon_sym_overlay] = ACTIONS(1985), - [anon_sym_as] = ACTIONS(1985), - [anon_sym_LPAREN2] = ACTIONS(1581), - [anon_sym_PLUS2] = ACTIONS(1985), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1987), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1987), - [aux_sym__val_number_decimal_token1] = ACTIONS(1985), - [aux_sym__val_number_decimal_token2] = ACTIONS(1987), - [aux_sym__val_number_decimal_token3] = ACTIONS(1987), - [aux_sym__val_number_decimal_token4] = ACTIONS(1987), - [aux_sym__val_number_token1] = ACTIONS(1987), - [aux_sym__val_number_token2] = ACTIONS(1987), - [aux_sym__val_number_token3] = ACTIONS(1987), - [aux_sym__val_number_token4] = ACTIONS(1985), - [aux_sym__val_number_token5] = ACTIONS(1985), - [aux_sym__val_number_token6] = ACTIONS(1985), - [anon_sym_DQUOTE] = ACTIONS(1987), - [sym__str_single_quotes] = ACTIONS(1987), - [sym__str_back_ticks] = ACTIONS(1987), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1987), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1987), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1987), - [anon_sym_register] = ACTIONS(1985), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1987), - }, - [579] = { - [sym_comment] = STATE(579), - [anon_sym_export] = ACTIONS(2194), - [anon_sym_alias] = ACTIONS(2194), - [anon_sym_let] = ACTIONS(2194), - [anon_sym_let_DASHenv] = ACTIONS(2194), - [anon_sym_mut] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [aux_sym_cmd_identifier_token1] = ACTIONS(2194), - [aux_sym_cmd_identifier_token2] = ACTIONS(2194), - [aux_sym_cmd_identifier_token3] = ACTIONS(2194), - [aux_sym_cmd_identifier_token4] = ACTIONS(2194), - [aux_sym_cmd_identifier_token5] = ACTIONS(2194), - [aux_sym_cmd_identifier_token6] = ACTIONS(2194), - [aux_sym_cmd_identifier_token7] = ACTIONS(2194), - [aux_sym_cmd_identifier_token8] = ACTIONS(2194), - [aux_sym_cmd_identifier_token9] = ACTIONS(2194), - [aux_sym_cmd_identifier_token10] = ACTIONS(2194), - [aux_sym_cmd_identifier_token11] = ACTIONS(2194), - [aux_sym_cmd_identifier_token12] = ACTIONS(2194), - [aux_sym_cmd_identifier_token13] = ACTIONS(2194), - [aux_sym_cmd_identifier_token14] = ACTIONS(2194), - [aux_sym_cmd_identifier_token15] = ACTIONS(2194), - [aux_sym_cmd_identifier_token16] = ACTIONS(2194), - [aux_sym_cmd_identifier_token17] = ACTIONS(2194), - [aux_sym_cmd_identifier_token18] = ACTIONS(2194), - [aux_sym_cmd_identifier_token19] = ACTIONS(2194), - [aux_sym_cmd_identifier_token20] = ACTIONS(2194), - [aux_sym_cmd_identifier_token21] = ACTIONS(2194), - [aux_sym_cmd_identifier_token22] = ACTIONS(2194), - [aux_sym_cmd_identifier_token23] = ACTIONS(2194), - [aux_sym_cmd_identifier_token24] = ACTIONS(2194), - [aux_sym_cmd_identifier_token25] = ACTIONS(2194), - [aux_sym_cmd_identifier_token26] = ACTIONS(2194), - [aux_sym_cmd_identifier_token27] = ACTIONS(2194), - [aux_sym_cmd_identifier_token28] = ACTIONS(2194), - [aux_sym_cmd_identifier_token29] = ACTIONS(2194), - [aux_sym_cmd_identifier_token30] = ACTIONS(2194), - [aux_sym_cmd_identifier_token31] = ACTIONS(2194), - [aux_sym_cmd_identifier_token32] = ACTIONS(2194), - [aux_sym_cmd_identifier_token33] = ACTIONS(2194), - [aux_sym_cmd_identifier_token34] = ACTIONS(2194), - [aux_sym_cmd_identifier_token35] = ACTIONS(2194), - [aux_sym_cmd_identifier_token36] = ACTIONS(2194), - [aux_sym_cmd_identifier_token37] = ACTIONS(2194), - [aux_sym_cmd_identifier_token38] = ACTIONS(2194), - [aux_sym_cmd_identifier_token39] = ACTIONS(2194), - [aux_sym_cmd_identifier_token40] = ACTIONS(2194), - [anon_sym_def] = ACTIONS(2194), - [anon_sym_export_DASHenv] = ACTIONS(2194), - [anon_sym_extern] = ACTIONS(2194), - [anon_sym_module] = ACTIONS(2194), - [anon_sym_use] = ACTIONS(2194), - [anon_sym_LPAREN] = ACTIONS(2194), - [anon_sym_COMMA] = ACTIONS(2198), - [anon_sym_DOLLAR] = ACTIONS(2194), - [anon_sym_error] = ACTIONS(2194), - [anon_sym_DASH2] = ACTIONS(2194), - [anon_sym_break] = ACTIONS(2194), - [anon_sym_continue] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_in2] = ACTIONS(2194), - [anon_sym_loop] = ACTIONS(2194), - [anon_sym_make] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_match] = ACTIONS(2194), - [anon_sym_RBRACE] = ACTIONS(2198), - [anon_sym_try] = ACTIONS(2194), - [anon_sym_catch] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_source] = ACTIONS(2194), - [anon_sym_source_DASHenv] = ACTIONS(2194), - [anon_sym_hide] = ACTIONS(2194), - [anon_sym_hide_DASHenv] = ACTIONS(2194), - [anon_sym_overlay] = ACTIONS(2194), - [anon_sym_as] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2196), - [anon_sym_PLUS2] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2198), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2194), - [aux_sym__val_number_decimal_token1] = ACTIONS(2194), - [aux_sym__val_number_decimal_token2] = ACTIONS(2194), - [aux_sym__val_number_decimal_token3] = ACTIONS(2194), - [aux_sym__val_number_decimal_token4] = ACTIONS(2194), - [aux_sym__val_number_token1] = ACTIONS(2194), - [aux_sym__val_number_token2] = ACTIONS(2194), - [aux_sym__val_number_token3] = ACTIONS(2194), - [aux_sym__val_number_token4] = ACTIONS(2194), - [aux_sym__val_number_token5] = ACTIONS(2194), - [aux_sym__val_number_token6] = ACTIONS(2194), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym__str_single_quotes] = ACTIONS(2198), - [sym__str_back_ticks] = ACTIONS(2198), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2198), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2198), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2198), - [anon_sym_register] = ACTIONS(2194), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2200), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2198), - }, - [580] = { - [sym_comment] = STATE(580), - [anon_sym_export] = ACTIONS(2202), - [anon_sym_alias] = ACTIONS(2202), - [anon_sym_let] = ACTIONS(2202), - [anon_sym_let_DASHenv] = ACTIONS(2202), - [anon_sym_mut] = ACTIONS(2202), - [anon_sym_const] = ACTIONS(2202), - [aux_sym_cmd_identifier_token1] = ACTIONS(2202), - [aux_sym_cmd_identifier_token2] = ACTIONS(2202), - [aux_sym_cmd_identifier_token3] = ACTIONS(2202), - [aux_sym_cmd_identifier_token4] = ACTIONS(2202), - [aux_sym_cmd_identifier_token5] = ACTIONS(2202), - [aux_sym_cmd_identifier_token6] = ACTIONS(2202), - [aux_sym_cmd_identifier_token7] = ACTIONS(2202), - [aux_sym_cmd_identifier_token8] = ACTIONS(2202), - [aux_sym_cmd_identifier_token9] = ACTIONS(2202), - [aux_sym_cmd_identifier_token10] = ACTIONS(2202), - [aux_sym_cmd_identifier_token11] = ACTIONS(2202), - [aux_sym_cmd_identifier_token12] = ACTIONS(2202), - [aux_sym_cmd_identifier_token13] = ACTIONS(2202), - [aux_sym_cmd_identifier_token14] = ACTIONS(2202), - [aux_sym_cmd_identifier_token15] = ACTIONS(2202), - [aux_sym_cmd_identifier_token16] = ACTIONS(2202), - [aux_sym_cmd_identifier_token17] = ACTIONS(2202), - [aux_sym_cmd_identifier_token18] = ACTIONS(2202), - [aux_sym_cmd_identifier_token19] = ACTIONS(2202), - [aux_sym_cmd_identifier_token20] = ACTIONS(2202), - [aux_sym_cmd_identifier_token21] = ACTIONS(2202), - [aux_sym_cmd_identifier_token22] = ACTIONS(2202), - [aux_sym_cmd_identifier_token23] = ACTIONS(2202), - [aux_sym_cmd_identifier_token24] = ACTIONS(2202), - [aux_sym_cmd_identifier_token25] = ACTIONS(2202), - [aux_sym_cmd_identifier_token26] = ACTIONS(2202), - [aux_sym_cmd_identifier_token27] = ACTIONS(2202), - [aux_sym_cmd_identifier_token28] = ACTIONS(2202), - [aux_sym_cmd_identifier_token29] = ACTIONS(2202), - [aux_sym_cmd_identifier_token30] = ACTIONS(2202), - [aux_sym_cmd_identifier_token31] = ACTIONS(2202), - [aux_sym_cmd_identifier_token32] = ACTIONS(2202), - [aux_sym_cmd_identifier_token33] = ACTIONS(2202), - [aux_sym_cmd_identifier_token34] = ACTIONS(2202), - [aux_sym_cmd_identifier_token35] = ACTIONS(2202), - [aux_sym_cmd_identifier_token36] = ACTIONS(2202), - [aux_sym_cmd_identifier_token37] = ACTIONS(2202), - [aux_sym_cmd_identifier_token38] = ACTIONS(2202), - [aux_sym_cmd_identifier_token39] = ACTIONS(2202), - [aux_sym_cmd_identifier_token40] = ACTIONS(2202), - [anon_sym_def] = ACTIONS(2202), - [anon_sym_export_DASHenv] = ACTIONS(2202), - [anon_sym_extern] = ACTIONS(2202), - [anon_sym_module] = ACTIONS(2202), - [anon_sym_use] = ACTIONS(2202), - [anon_sym_LPAREN] = ACTIONS(2202), - [anon_sym_COMMA] = ACTIONS(2204), - [anon_sym_DOLLAR] = ACTIONS(2202), - [anon_sym_error] = ACTIONS(2202), - [anon_sym_DASH2] = ACTIONS(2202), - [anon_sym_break] = ACTIONS(2202), - [anon_sym_continue] = ACTIONS(2202), - [anon_sym_for] = ACTIONS(2202), - [anon_sym_in2] = ACTIONS(2202), - [anon_sym_loop] = ACTIONS(2202), - [anon_sym_make] = ACTIONS(2202), - [anon_sym_while] = ACTIONS(2202), - [anon_sym_do] = ACTIONS(2202), - [anon_sym_if] = ACTIONS(2202), - [anon_sym_else] = ACTIONS(2202), - [anon_sym_match] = ACTIONS(2202), - [anon_sym_RBRACE] = ACTIONS(2204), - [anon_sym_try] = ACTIONS(2202), - [anon_sym_catch] = ACTIONS(2202), - [anon_sym_return] = ACTIONS(2202), - [anon_sym_source] = ACTIONS(2202), - [anon_sym_source_DASHenv] = ACTIONS(2202), - [anon_sym_hide] = ACTIONS(2202), - [anon_sym_hide_DASHenv] = ACTIONS(2202), - [anon_sym_overlay] = ACTIONS(2202), - [anon_sym_as] = ACTIONS(2202), - [anon_sym_LPAREN2] = ACTIONS(2091), - [anon_sym_PLUS2] = ACTIONS(2202), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2204), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2202), - [aux_sym__val_number_decimal_token1] = ACTIONS(2202), - [aux_sym__val_number_decimal_token2] = ACTIONS(2202), - [aux_sym__val_number_decimal_token3] = ACTIONS(2202), - [aux_sym__val_number_decimal_token4] = ACTIONS(2202), - [aux_sym__val_number_token1] = ACTIONS(2202), - [aux_sym__val_number_token2] = ACTIONS(2202), - [aux_sym__val_number_token3] = ACTIONS(2202), - [aux_sym__val_number_token4] = ACTIONS(2202), - [aux_sym__val_number_token5] = ACTIONS(2202), - [aux_sym__val_number_token6] = ACTIONS(2202), - [anon_sym_DQUOTE] = ACTIONS(2204), - [sym__str_single_quotes] = ACTIONS(2204), - [sym__str_back_ticks] = ACTIONS(2204), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2204), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2204), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2204), - [anon_sym_register] = ACTIONS(2202), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2095), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2204), - }, - [581] = { - [sym_comment] = STATE(581), - [anon_sym_export] = ACTIONS(2089), - [anon_sym_alias] = ACTIONS(2089), - [anon_sym_let] = ACTIONS(2089), - [anon_sym_let_DASHenv] = ACTIONS(2089), - [anon_sym_mut] = ACTIONS(2089), - [anon_sym_const] = ACTIONS(2089), - [aux_sym_cmd_identifier_token1] = ACTIONS(2089), - [aux_sym_cmd_identifier_token2] = ACTIONS(2089), - [aux_sym_cmd_identifier_token3] = ACTIONS(2089), - [aux_sym_cmd_identifier_token4] = ACTIONS(2089), - [aux_sym_cmd_identifier_token5] = ACTIONS(2089), - [aux_sym_cmd_identifier_token6] = ACTIONS(2089), - [aux_sym_cmd_identifier_token7] = ACTIONS(2089), - [aux_sym_cmd_identifier_token8] = ACTIONS(2089), - [aux_sym_cmd_identifier_token9] = ACTIONS(2089), - [aux_sym_cmd_identifier_token10] = ACTIONS(2089), - [aux_sym_cmd_identifier_token11] = ACTIONS(2089), - [aux_sym_cmd_identifier_token12] = ACTIONS(2089), - [aux_sym_cmd_identifier_token13] = ACTIONS(2089), - [aux_sym_cmd_identifier_token14] = ACTIONS(2089), - [aux_sym_cmd_identifier_token15] = ACTIONS(2089), - [aux_sym_cmd_identifier_token16] = ACTIONS(2089), - [aux_sym_cmd_identifier_token17] = ACTIONS(2089), - [aux_sym_cmd_identifier_token18] = ACTIONS(2089), - [aux_sym_cmd_identifier_token19] = ACTIONS(2089), - [aux_sym_cmd_identifier_token20] = ACTIONS(2089), - [aux_sym_cmd_identifier_token21] = ACTIONS(2089), - [aux_sym_cmd_identifier_token22] = ACTIONS(2089), - [aux_sym_cmd_identifier_token23] = ACTIONS(2089), - [aux_sym_cmd_identifier_token24] = ACTIONS(2089), - [aux_sym_cmd_identifier_token25] = ACTIONS(2089), - [aux_sym_cmd_identifier_token26] = ACTIONS(2089), - [aux_sym_cmd_identifier_token27] = ACTIONS(2089), - [aux_sym_cmd_identifier_token28] = ACTIONS(2089), - [aux_sym_cmd_identifier_token29] = ACTIONS(2089), - [aux_sym_cmd_identifier_token30] = ACTIONS(2089), - [aux_sym_cmd_identifier_token31] = ACTIONS(2089), - [aux_sym_cmd_identifier_token32] = ACTIONS(2089), - [aux_sym_cmd_identifier_token33] = ACTIONS(2089), - [aux_sym_cmd_identifier_token34] = ACTIONS(2089), - [aux_sym_cmd_identifier_token35] = ACTIONS(2089), - [aux_sym_cmd_identifier_token36] = ACTIONS(2089), - [aux_sym_cmd_identifier_token37] = ACTIONS(2089), - [aux_sym_cmd_identifier_token38] = ACTIONS(2089), - [aux_sym_cmd_identifier_token39] = ACTIONS(2089), - [aux_sym_cmd_identifier_token40] = ACTIONS(2089), - [anon_sym_def] = ACTIONS(2089), - [anon_sym_export_DASHenv] = ACTIONS(2089), - [anon_sym_extern] = ACTIONS(2089), - [anon_sym_module] = ACTIONS(2089), - [anon_sym_use] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_COMMA] = ACTIONS(2093), - [anon_sym_DOLLAR] = ACTIONS(2089), - [anon_sym_error] = ACTIONS(2089), - [anon_sym_DASH2] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_in2] = ACTIONS(2089), - [anon_sym_loop] = ACTIONS(2089), - [anon_sym_make] = ACTIONS(2089), - [anon_sym_while] = ACTIONS(2089), - [anon_sym_do] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_else] = ACTIONS(2089), - [anon_sym_match] = ACTIONS(2089), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2089), - [anon_sym_catch] = ACTIONS(2089), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_source] = ACTIONS(2089), - [anon_sym_source_DASHenv] = ACTIONS(2089), - [anon_sym_hide] = ACTIONS(2089), - [anon_sym_hide_DASHenv] = ACTIONS(2089), - [anon_sym_overlay] = ACTIONS(2089), - [anon_sym_as] = ACTIONS(2089), - [anon_sym_LPAREN2] = ACTIONS(2091), - [anon_sym_PLUS2] = ACTIONS(2089), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2093), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2089), - [aux_sym__val_number_decimal_token1] = ACTIONS(2089), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2089), - [aux_sym__val_number_decimal_token4] = ACTIONS(2089), - [aux_sym__val_number_token1] = ACTIONS(2089), - [aux_sym__val_number_token2] = ACTIONS(2089), - [aux_sym__val_number_token3] = ACTIONS(2089), - [aux_sym__val_number_token4] = ACTIONS(2089), - [aux_sym__val_number_token5] = ACTIONS(2089), - [aux_sym__val_number_token6] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(2093), - [sym__str_single_quotes] = ACTIONS(2093), - [sym__str_back_ticks] = ACTIONS(2093), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2093), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2093), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2093), - [anon_sym_register] = ACTIONS(2089), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2095), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2093), - }, - [582] = { - [sym_comment] = STATE(582), - [anon_sym_export] = ACTIONS(1666), - [anon_sym_alias] = ACTIONS(1666), - [anon_sym_let] = ACTIONS(1666), - [anon_sym_let_DASHenv] = ACTIONS(1666), - [anon_sym_mut] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [aux_sym_cmd_identifier_token1] = ACTIONS(1666), - [aux_sym_cmd_identifier_token2] = ACTIONS(1666), - [aux_sym_cmd_identifier_token3] = ACTIONS(1666), - [aux_sym_cmd_identifier_token4] = ACTIONS(1666), - [aux_sym_cmd_identifier_token5] = ACTIONS(1666), - [aux_sym_cmd_identifier_token6] = ACTIONS(1666), - [aux_sym_cmd_identifier_token7] = ACTIONS(1666), - [aux_sym_cmd_identifier_token8] = ACTIONS(1666), - [aux_sym_cmd_identifier_token9] = ACTIONS(1666), - [aux_sym_cmd_identifier_token10] = ACTIONS(1666), - [aux_sym_cmd_identifier_token11] = ACTIONS(1666), - [aux_sym_cmd_identifier_token12] = ACTIONS(1666), - [aux_sym_cmd_identifier_token13] = ACTIONS(1666), - [aux_sym_cmd_identifier_token14] = ACTIONS(1666), - [aux_sym_cmd_identifier_token15] = ACTIONS(1666), - [aux_sym_cmd_identifier_token16] = ACTIONS(1666), - [aux_sym_cmd_identifier_token17] = ACTIONS(1666), - [aux_sym_cmd_identifier_token18] = ACTIONS(1666), - [aux_sym_cmd_identifier_token19] = ACTIONS(1666), - [aux_sym_cmd_identifier_token20] = ACTIONS(1666), - [aux_sym_cmd_identifier_token21] = ACTIONS(1666), - [aux_sym_cmd_identifier_token22] = ACTIONS(1666), - [aux_sym_cmd_identifier_token23] = ACTIONS(1666), - [aux_sym_cmd_identifier_token24] = ACTIONS(1666), - [aux_sym_cmd_identifier_token25] = ACTIONS(1666), - [aux_sym_cmd_identifier_token26] = ACTIONS(1666), - [aux_sym_cmd_identifier_token27] = ACTIONS(1666), - [aux_sym_cmd_identifier_token28] = ACTIONS(1666), - [aux_sym_cmd_identifier_token29] = ACTIONS(1666), - [aux_sym_cmd_identifier_token30] = ACTIONS(1666), - [aux_sym_cmd_identifier_token31] = ACTIONS(1666), - [aux_sym_cmd_identifier_token32] = ACTIONS(1666), - [aux_sym_cmd_identifier_token33] = ACTIONS(1666), - [aux_sym_cmd_identifier_token34] = ACTIONS(1666), - [aux_sym_cmd_identifier_token35] = ACTIONS(1666), - [aux_sym_cmd_identifier_token36] = ACTIONS(1666), - [aux_sym_cmd_identifier_token37] = ACTIONS(1666), - [aux_sym_cmd_identifier_token38] = ACTIONS(1666), - [aux_sym_cmd_identifier_token39] = ACTIONS(1666), - [aux_sym_cmd_identifier_token40] = ACTIONS(1666), - [anon_sym_def] = ACTIONS(1666), - [anon_sym_export_DASHenv] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_module] = ACTIONS(1666), - [anon_sym_use] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_COMMA] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_error] = ACTIONS(1666), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_in2] = ACTIONS(1666), - [anon_sym_loop] = ACTIONS(1666), - [anon_sym_make] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_do] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_match] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(1666), - [anon_sym_try] = ACTIONS(1666), - [anon_sym_catch] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_source] = ACTIONS(1666), - [anon_sym_source_DASHenv] = ACTIONS(1666), - [anon_sym_hide] = ACTIONS(1666), - [anon_sym_hide_DASHenv] = ACTIONS(1666), - [anon_sym_overlay] = ACTIONS(1666), - [anon_sym_as] = ACTIONS(1666), - [anon_sym_PLUS2] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1666), - [aux_sym__immediate_decimal_token2] = ACTIONS(2103), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1666), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1666), - [aux_sym__val_number_decimal_token3] = ACTIONS(1666), - [aux_sym__val_number_decimal_token4] = ACTIONS(1666), - [aux_sym__val_number_token1] = ACTIONS(1666), - [aux_sym__val_number_token2] = ACTIONS(1666), - [aux_sym__val_number_token3] = ACTIONS(1666), - [aux_sym__val_number_token4] = ACTIONS(1666), - [aux_sym__val_number_token5] = ACTIONS(1666), - [aux_sym__val_number_token6] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1666), - [sym__str_single_quotes] = ACTIONS(1666), - [sym__str_back_ticks] = ACTIONS(1666), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1666), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1666), - [sym__entry_separator] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1668), - }, - [583] = { - [sym_comment] = STATE(583), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), - [aux_sym_cmd_identifier_token2] = ACTIONS(1650), - [aux_sym_cmd_identifier_token3] = ACTIONS(1650), - [aux_sym_cmd_identifier_token4] = ACTIONS(1650), - [aux_sym_cmd_identifier_token5] = ACTIONS(1650), - [aux_sym_cmd_identifier_token6] = ACTIONS(1650), - [aux_sym_cmd_identifier_token7] = ACTIONS(1650), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), - [aux_sym_cmd_identifier_token10] = ACTIONS(1650), - [aux_sym_cmd_identifier_token11] = ACTIONS(1650), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), - [aux_sym_cmd_identifier_token16] = ACTIONS(1650), - [aux_sym_cmd_identifier_token17] = ACTIONS(1650), - [aux_sym_cmd_identifier_token18] = ACTIONS(1650), - [aux_sym_cmd_identifier_token19] = ACTIONS(1650), - [aux_sym_cmd_identifier_token20] = ACTIONS(1650), - [aux_sym_cmd_identifier_token21] = ACTIONS(1650), - [aux_sym_cmd_identifier_token22] = ACTIONS(1650), - [aux_sym_cmd_identifier_token23] = ACTIONS(1650), - [aux_sym_cmd_identifier_token24] = ACTIONS(1650), - [aux_sym_cmd_identifier_token25] = ACTIONS(1650), - [aux_sym_cmd_identifier_token26] = ACTIONS(1650), - [aux_sym_cmd_identifier_token27] = ACTIONS(1650), - [aux_sym_cmd_identifier_token28] = ACTIONS(1650), - [aux_sym_cmd_identifier_token29] = ACTIONS(1650), - [aux_sym_cmd_identifier_token30] = ACTIONS(1650), - [aux_sym_cmd_identifier_token31] = ACTIONS(1650), - [aux_sym_cmd_identifier_token32] = ACTIONS(1650), - [aux_sym_cmd_identifier_token33] = ACTIONS(1650), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), - [aux_sym_cmd_identifier_token35] = ACTIONS(1650), - [aux_sym_cmd_identifier_token36] = ACTIONS(1650), - [aux_sym_cmd_identifier_token37] = ACTIONS(1650), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), - [aux_sym_cmd_identifier_token39] = ACTIONS(1650), - [aux_sym_cmd_identifier_token40] = ACTIONS(1650), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_DASH2] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in2] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_PLUS2] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [aux_sym__val_number_token4] = ACTIONS(1648), - [aux_sym__val_number_token5] = ACTIONS(1648), - [aux_sym__val_number_token6] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1650), - [anon_sym_register] = ACTIONS(1648), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1650), + [583] = { + [sym_comment] = STATE(583), + [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_COMMA] = 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(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_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_DOLLAR_SQUOTE] = ACTIONS(2286), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2286), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2286), + [sym__entry_separator] = ACTIONS(2288), + [anon_sym_register] = ACTIONS(2286), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2288), }, [584] = { [sym_comment] = STATE(584), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_alias] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_let_DASHenv] = ACTIONS(1719), - [anon_sym_mut] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [aux_sym_cmd_identifier_token1] = ACTIONS(1719), - [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(1719), - [aux_sym_cmd_identifier_token9] = ACTIONS(1719), - [aux_sym_cmd_identifier_token10] = ACTIONS(1719), - [aux_sym_cmd_identifier_token11] = ACTIONS(1719), - [aux_sym_cmd_identifier_token12] = ACTIONS(1719), - [aux_sym_cmd_identifier_token13] = ACTIONS(1719), - [aux_sym_cmd_identifier_token14] = ACTIONS(1719), - [aux_sym_cmd_identifier_token15] = ACTIONS(1719), - [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(1719), - [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(1719), - [aux_sym_cmd_identifier_token39] = ACTIONS(1719), - [aux_sym_cmd_identifier_token40] = ACTIONS(1719), - [anon_sym_def] = ACTIONS(1719), - [anon_sym_export_DASHenv] = ACTIONS(1719), - [anon_sym_extern] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_use] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_COMMA] = ACTIONS(1719), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_error] = ACTIONS(1719), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_in2] = ACTIONS(1719), - [anon_sym_loop] = ACTIONS(1719), - [anon_sym_make] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_match] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_catch] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_source] = ACTIONS(1719), - [anon_sym_source_DASHenv] = ACTIONS(1719), - [anon_sym_hide] = ACTIONS(1719), - [anon_sym_hide_DASHenv] = ACTIONS(1719), - [anon_sym_overlay] = ACTIONS(1719), - [anon_sym_as] = ACTIONS(1719), - [anon_sym_PLUS2] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1719), - [aux_sym__immediate_decimal_token2] = ACTIONS(2284), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1719), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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_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_DOT_DOT_DOT_LBRACE] = ACTIONS(1719), - [sym__entry_separator] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1721), - }, - [585] = { - [sym_comment] = STATE(585), - [anon_sym_export] = ACTIONS(970), - [anon_sym_alias] = ACTIONS(970), - [anon_sym_let] = ACTIONS(970), - [anon_sym_let_DASHenv] = ACTIONS(970), - [anon_sym_mut] = ACTIONS(970), - [anon_sym_const] = ACTIONS(970), - [aux_sym_cmd_identifier_token1] = ACTIONS(970), - [aux_sym_cmd_identifier_token2] = ACTIONS(972), - [aux_sym_cmd_identifier_token3] = ACTIONS(972), - [aux_sym_cmd_identifier_token4] = ACTIONS(972), - [aux_sym_cmd_identifier_token5] = ACTIONS(972), - [aux_sym_cmd_identifier_token6] = ACTIONS(972), - [aux_sym_cmd_identifier_token7] = ACTIONS(972), - [aux_sym_cmd_identifier_token8] = ACTIONS(970), - [aux_sym_cmd_identifier_token9] = ACTIONS(970), - [aux_sym_cmd_identifier_token10] = ACTIONS(972), - [aux_sym_cmd_identifier_token11] = ACTIONS(972), - [aux_sym_cmd_identifier_token12] = ACTIONS(970), - [aux_sym_cmd_identifier_token13] = ACTIONS(970), - [aux_sym_cmd_identifier_token14] = ACTIONS(970), - [aux_sym_cmd_identifier_token15] = ACTIONS(970), - [aux_sym_cmd_identifier_token16] = ACTIONS(972), - [aux_sym_cmd_identifier_token17] = ACTIONS(972), - [aux_sym_cmd_identifier_token18] = ACTIONS(972), - [aux_sym_cmd_identifier_token19] = ACTIONS(972), - [aux_sym_cmd_identifier_token20] = ACTIONS(972), - [aux_sym_cmd_identifier_token21] = ACTIONS(972), - [aux_sym_cmd_identifier_token22] = ACTIONS(972), - [aux_sym_cmd_identifier_token23] = ACTIONS(972), - [aux_sym_cmd_identifier_token24] = ACTIONS(972), - [aux_sym_cmd_identifier_token25] = ACTIONS(972), - [aux_sym_cmd_identifier_token26] = ACTIONS(972), - [aux_sym_cmd_identifier_token27] = ACTIONS(972), - [aux_sym_cmd_identifier_token28] = ACTIONS(972), - [aux_sym_cmd_identifier_token29] = ACTIONS(972), - [aux_sym_cmd_identifier_token30] = ACTIONS(972), - [aux_sym_cmd_identifier_token31] = ACTIONS(972), - [aux_sym_cmd_identifier_token32] = ACTIONS(972), - [aux_sym_cmd_identifier_token33] = ACTIONS(972), - [aux_sym_cmd_identifier_token34] = ACTIONS(970), - [aux_sym_cmd_identifier_token35] = ACTIONS(972), - [aux_sym_cmd_identifier_token36] = ACTIONS(972), - [aux_sym_cmd_identifier_token37] = ACTIONS(972), - [aux_sym_cmd_identifier_token38] = ACTIONS(970), - [aux_sym_cmd_identifier_token39] = ACTIONS(972), - [aux_sym_cmd_identifier_token40] = ACTIONS(972), - [anon_sym_def] = ACTIONS(970), - [anon_sym_export_DASHenv] = ACTIONS(970), - [anon_sym_extern] = ACTIONS(970), - [anon_sym_module] = ACTIONS(970), - [anon_sym_use] = ACTIONS(970), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_COMMA] = ACTIONS(972), - [anon_sym_DOLLAR] = ACTIONS(970), - [anon_sym_error] = ACTIONS(970), - [anon_sym_DASH2] = ACTIONS(970), - [anon_sym_break] = ACTIONS(970), - [anon_sym_continue] = ACTIONS(970), - [anon_sym_for] = ACTIONS(970), - [anon_sym_in2] = ACTIONS(970), - [anon_sym_loop] = ACTIONS(970), - [anon_sym_make] = ACTIONS(970), - [anon_sym_while] = ACTIONS(970), - [anon_sym_do] = ACTIONS(970), - [anon_sym_if] = ACTIONS(970), - [anon_sym_else] = ACTIONS(970), - [anon_sym_match] = ACTIONS(970), - [anon_sym_RBRACE] = ACTIONS(972), - [anon_sym_try] = ACTIONS(970), - [anon_sym_catch] = ACTIONS(970), - [anon_sym_return] = ACTIONS(970), - [anon_sym_source] = ACTIONS(970), - [anon_sym_source_DASHenv] = ACTIONS(970), - [anon_sym_hide] = ACTIONS(970), - [anon_sym_hide_DASHenv] = ACTIONS(970), - [anon_sym_overlay] = ACTIONS(970), - [anon_sym_as] = ACTIONS(970), - [anon_sym_PLUS2] = ACTIONS(970), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(972), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(972), - [aux_sym__val_number_decimal_token1] = ACTIONS(970), - [aux_sym__val_number_decimal_token2] = ACTIONS(972), - [aux_sym__val_number_decimal_token3] = ACTIONS(972), - [aux_sym__val_number_decimal_token4] = ACTIONS(972), - [aux_sym__val_number_token1] = ACTIONS(972), - [aux_sym__val_number_token2] = ACTIONS(972), - [aux_sym__val_number_token3] = ACTIONS(972), - [aux_sym__val_number_token4] = ACTIONS(970), - [aux_sym__val_number_token5] = ACTIONS(970), - [aux_sym__val_number_token6] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(972), - [sym__str_single_quotes] = ACTIONS(972), - [sym__str_back_ticks] = ACTIONS(972), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(972), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(972), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(972), - [anon_sym_register] = ACTIONS(970), - [anon_sym_COLON2] = ACTIONS(972), - [anon_sym_DOT2] = ACTIONS(970), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(972), - }, - [586] = { - [sym_comment] = STATE(586), - [anon_sym_export] = ACTIONS(1666), - [anon_sym_alias] = ACTIONS(1666), - [anon_sym_let] = ACTIONS(1666), - [anon_sym_let_DASHenv] = ACTIONS(1666), - [anon_sym_mut] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [aux_sym_cmd_identifier_token1] = ACTIONS(1666), - [aux_sym_cmd_identifier_token2] = ACTIONS(1668), - [aux_sym_cmd_identifier_token3] = ACTIONS(1668), - [aux_sym_cmd_identifier_token4] = ACTIONS(1668), - [aux_sym_cmd_identifier_token5] = ACTIONS(1668), - [aux_sym_cmd_identifier_token6] = ACTIONS(1668), - [aux_sym_cmd_identifier_token7] = ACTIONS(1668), - [aux_sym_cmd_identifier_token8] = ACTIONS(1666), - [aux_sym_cmd_identifier_token9] = ACTIONS(1666), - [aux_sym_cmd_identifier_token10] = ACTIONS(1668), - [aux_sym_cmd_identifier_token11] = ACTIONS(1668), - [aux_sym_cmd_identifier_token12] = ACTIONS(1666), - [aux_sym_cmd_identifier_token13] = ACTIONS(1666), - [aux_sym_cmd_identifier_token14] = ACTIONS(1666), - [aux_sym_cmd_identifier_token15] = ACTIONS(1666), - [aux_sym_cmd_identifier_token16] = ACTIONS(1668), - [aux_sym_cmd_identifier_token17] = ACTIONS(1668), - [aux_sym_cmd_identifier_token18] = ACTIONS(1668), - [aux_sym_cmd_identifier_token19] = ACTIONS(1668), - [aux_sym_cmd_identifier_token20] = ACTIONS(1668), - [aux_sym_cmd_identifier_token21] = ACTIONS(1668), - [aux_sym_cmd_identifier_token22] = ACTIONS(1668), - [aux_sym_cmd_identifier_token23] = ACTIONS(1668), - [aux_sym_cmd_identifier_token24] = ACTIONS(1668), - [aux_sym_cmd_identifier_token25] = ACTIONS(1668), - [aux_sym_cmd_identifier_token26] = ACTIONS(1668), - [aux_sym_cmd_identifier_token27] = ACTIONS(1668), - [aux_sym_cmd_identifier_token28] = ACTIONS(1668), - [aux_sym_cmd_identifier_token29] = ACTIONS(1668), - [aux_sym_cmd_identifier_token30] = ACTIONS(1668), - [aux_sym_cmd_identifier_token31] = ACTIONS(1668), - [aux_sym_cmd_identifier_token32] = ACTIONS(1668), - [aux_sym_cmd_identifier_token33] = ACTIONS(1668), - [aux_sym_cmd_identifier_token34] = ACTIONS(1666), - [aux_sym_cmd_identifier_token35] = ACTIONS(1668), - [aux_sym_cmd_identifier_token36] = ACTIONS(1668), - [aux_sym_cmd_identifier_token37] = ACTIONS(1668), - [aux_sym_cmd_identifier_token38] = ACTIONS(1666), - [aux_sym_cmd_identifier_token39] = ACTIONS(1668), - [aux_sym_cmd_identifier_token40] = ACTIONS(1668), - [anon_sym_def] = ACTIONS(1666), - [anon_sym_export_DASHenv] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_module] = ACTIONS(1666), - [anon_sym_use] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_error] = ACTIONS(1666), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_in2] = ACTIONS(1666), - [anon_sym_loop] = ACTIONS(1666), - [anon_sym_make] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_do] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_match] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_try] = ACTIONS(1666), - [anon_sym_catch] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_source] = ACTIONS(1666), - [anon_sym_source_DASHenv] = ACTIONS(1666), - [anon_sym_hide] = ACTIONS(1666), - [anon_sym_hide_DASHenv] = ACTIONS(1666), - [anon_sym_overlay] = ACTIONS(1666), - [anon_sym_as] = ACTIONS(1666), - [anon_sym_PLUS2] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1668), - [anon_sym_DOT] = ACTIONS(2286), - [aux_sym__immediate_decimal_token2] = ACTIONS(2288), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1666), - [aux_sym__val_number_token5] = ACTIONS(1666), - [aux_sym__val_number_token6] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), - }, - [587] = { - [sym_comment] = STATE(587), [anon_sym_export] = ACTIONS(2290), [anon_sym_alias] = ACTIONS(2290), [anon_sym_let] = ACTIONS(2290), @@ -139382,226 +137897,637 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(2290), [aux_sym__val_number_token5] = ACTIONS(2290), [aux_sym__val_number_token6] = ACTIONS(2290), - [anon_sym_LBRACK2] = ACTIONS(2292), [anon_sym_DQUOTE] = ACTIONS(2290), [sym__str_single_quotes] = ACTIONS(2290), [sym__str_back_ticks] = ACTIONS(2290), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2290), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2290), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2290), - [sym__entry_separator] = ACTIONS(2294), + [sym__entry_separator] = ACTIONS(2292), [anon_sym_register] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2294), + [sym_raw_string_begin] = ACTIONS(2292), + }, + [585] = { + [sym_comment] = STATE(585), + [anon_sym_export] = ACTIONS(2294), + [anon_sym_alias] = ACTIONS(2294), + [anon_sym_let] = ACTIONS(2294), + [anon_sym_let_DASHenv] = ACTIONS(2294), + [anon_sym_mut] = ACTIONS(2294), + [anon_sym_const] = ACTIONS(2294), + [aux_sym_cmd_identifier_token1] = ACTIONS(2294), + [aux_sym_cmd_identifier_token2] = ACTIONS(2294), + [aux_sym_cmd_identifier_token3] = ACTIONS(2294), + [aux_sym_cmd_identifier_token4] = ACTIONS(2294), + [aux_sym_cmd_identifier_token5] = ACTIONS(2294), + [aux_sym_cmd_identifier_token6] = ACTIONS(2294), + [aux_sym_cmd_identifier_token7] = ACTIONS(2294), + [aux_sym_cmd_identifier_token8] = ACTIONS(2294), + [aux_sym_cmd_identifier_token9] = ACTIONS(2294), + [aux_sym_cmd_identifier_token10] = ACTIONS(2294), + [aux_sym_cmd_identifier_token11] = ACTIONS(2294), + [aux_sym_cmd_identifier_token12] = ACTIONS(2294), + [aux_sym_cmd_identifier_token13] = ACTIONS(2294), + [aux_sym_cmd_identifier_token14] = ACTIONS(2294), + [aux_sym_cmd_identifier_token15] = ACTIONS(2294), + [aux_sym_cmd_identifier_token16] = ACTIONS(2294), + [aux_sym_cmd_identifier_token17] = ACTIONS(2294), + [aux_sym_cmd_identifier_token18] = ACTIONS(2294), + [aux_sym_cmd_identifier_token19] = ACTIONS(2294), + [aux_sym_cmd_identifier_token20] = ACTIONS(2294), + [aux_sym_cmd_identifier_token21] = ACTIONS(2294), + [aux_sym_cmd_identifier_token22] = ACTIONS(2294), + [aux_sym_cmd_identifier_token23] = ACTIONS(2294), + [aux_sym_cmd_identifier_token24] = ACTIONS(2294), + [aux_sym_cmd_identifier_token25] = ACTIONS(2294), + [aux_sym_cmd_identifier_token26] = ACTIONS(2294), + [aux_sym_cmd_identifier_token27] = ACTIONS(2294), + [aux_sym_cmd_identifier_token28] = ACTIONS(2294), + [aux_sym_cmd_identifier_token29] = ACTIONS(2294), + [aux_sym_cmd_identifier_token30] = ACTIONS(2294), + [aux_sym_cmd_identifier_token31] = ACTIONS(2294), + [aux_sym_cmd_identifier_token32] = ACTIONS(2294), + [aux_sym_cmd_identifier_token33] = ACTIONS(2294), + [aux_sym_cmd_identifier_token34] = ACTIONS(2294), + [aux_sym_cmd_identifier_token35] = ACTIONS(2294), + [aux_sym_cmd_identifier_token36] = ACTIONS(2294), + [aux_sym_cmd_identifier_token37] = ACTIONS(2294), + [aux_sym_cmd_identifier_token38] = ACTIONS(2294), + [aux_sym_cmd_identifier_token39] = ACTIONS(2294), + [aux_sym_cmd_identifier_token40] = ACTIONS(2294), + [anon_sym_def] = ACTIONS(2294), + [anon_sym_export_DASHenv] = ACTIONS(2294), + [anon_sym_extern] = ACTIONS(2294), + [anon_sym_module] = ACTIONS(2294), + [anon_sym_use] = ACTIONS(2294), + [anon_sym_LPAREN] = ACTIONS(2294), + [anon_sym_COMMA] = ACTIONS(2294), + [anon_sym_DOLLAR] = ACTIONS(2294), + [anon_sym_error] = ACTIONS(2294), + [anon_sym_DASH2] = ACTIONS(2294), + [anon_sym_break] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2294), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_in2] = ACTIONS(2294), + [anon_sym_loop] = ACTIONS(2294), + [anon_sym_make] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2294), + [anon_sym_do] = ACTIONS(2294), + [anon_sym_if] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2294), + [anon_sym_match] = ACTIONS(2294), + [anon_sym_RBRACE] = ACTIONS(2294), + [anon_sym_try] = ACTIONS(2294), + [anon_sym_catch] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_source] = ACTIONS(2294), + [anon_sym_source_DASHenv] = ACTIONS(2294), + [anon_sym_hide] = ACTIONS(2294), + [anon_sym_hide_DASHenv] = ACTIONS(2294), + [anon_sym_overlay] = ACTIONS(2294), + [anon_sym_as] = ACTIONS(2294), + [anon_sym_PLUS2] = ACTIONS(2294), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2294), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2294), + [aux_sym__val_number_decimal_token1] = ACTIONS(2294), + [aux_sym__val_number_decimal_token2] = ACTIONS(2294), + [aux_sym__val_number_decimal_token3] = ACTIONS(2294), + [aux_sym__val_number_decimal_token4] = ACTIONS(2294), + [aux_sym__val_number_token1] = ACTIONS(2294), + [aux_sym__val_number_token2] = ACTIONS(2294), + [aux_sym__val_number_token3] = ACTIONS(2294), + [aux_sym__val_number_token4] = ACTIONS(2294), + [aux_sym__val_number_token5] = ACTIONS(2294), + [aux_sym__val_number_token6] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2294), + [sym__str_single_quotes] = ACTIONS(2294), + [sym__str_back_ticks] = ACTIONS(2294), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2294), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2294), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2294), + [sym__entry_separator] = ACTIONS(2296), + [anon_sym_register] = ACTIONS(2294), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2296), + }, + [586] = { + [sym_comment] = STATE(586), + [anon_sym_export] = ACTIONS(1701), + [anon_sym_alias] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1701), + [anon_sym_let_DASHenv] = ACTIONS(1701), + [anon_sym_mut] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [aux_sym_cmd_identifier_token1] = ACTIONS(1701), + [aux_sym_cmd_identifier_token2] = ACTIONS(1701), + [aux_sym_cmd_identifier_token3] = ACTIONS(1701), + [aux_sym_cmd_identifier_token4] = ACTIONS(1701), + [aux_sym_cmd_identifier_token5] = ACTIONS(1701), + [aux_sym_cmd_identifier_token6] = ACTIONS(1701), + [aux_sym_cmd_identifier_token7] = ACTIONS(1701), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1701), + [aux_sym_cmd_identifier_token11] = ACTIONS(1701), + [aux_sym_cmd_identifier_token12] = ACTIONS(1701), + [aux_sym_cmd_identifier_token13] = ACTIONS(1701), + [aux_sym_cmd_identifier_token14] = ACTIONS(1701), + [aux_sym_cmd_identifier_token15] = ACTIONS(1701), + [aux_sym_cmd_identifier_token16] = ACTIONS(1701), + [aux_sym_cmd_identifier_token17] = ACTIONS(1701), + [aux_sym_cmd_identifier_token18] = ACTIONS(1701), + [aux_sym_cmd_identifier_token19] = ACTIONS(1701), + [aux_sym_cmd_identifier_token20] = ACTIONS(1701), + [aux_sym_cmd_identifier_token21] = ACTIONS(1701), + [aux_sym_cmd_identifier_token22] = ACTIONS(1701), + [aux_sym_cmd_identifier_token23] = ACTIONS(1701), + [aux_sym_cmd_identifier_token24] = ACTIONS(1701), + [aux_sym_cmd_identifier_token25] = ACTIONS(1701), + [aux_sym_cmd_identifier_token26] = ACTIONS(1701), + [aux_sym_cmd_identifier_token27] = ACTIONS(1701), + [aux_sym_cmd_identifier_token28] = ACTIONS(1701), + [aux_sym_cmd_identifier_token29] = ACTIONS(1701), + [aux_sym_cmd_identifier_token30] = ACTIONS(1701), + [aux_sym_cmd_identifier_token31] = ACTIONS(1701), + [aux_sym_cmd_identifier_token32] = ACTIONS(1701), + [aux_sym_cmd_identifier_token33] = ACTIONS(1701), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1701), + [aux_sym_cmd_identifier_token36] = ACTIONS(1701), + [aux_sym_cmd_identifier_token37] = ACTIONS(1701), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1701), + [aux_sym_cmd_identifier_token40] = ACTIONS(1701), + [anon_sym_def] = ACTIONS(1701), + [anon_sym_export_DASHenv] = ACTIONS(1701), + [anon_sym_extern] = ACTIONS(1701), + [anon_sym_module] = ACTIONS(1701), + [anon_sym_use] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_COMMA] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = ACTIONS(1701), + [anon_sym_loop] = ACTIONS(1701), + [anon_sym_make] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_do] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_else] = ACTIONS(1701), + [anon_sym_match] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1701), + [anon_sym_try] = ACTIONS(1701), + [anon_sym_catch] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_source] = ACTIONS(1701), + [anon_sym_source_DASHenv] = ACTIONS(1701), + [anon_sym_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1701), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1701), + [aux_sym__val_number_decimal_token3] = ACTIONS(1701), + [aux_sym__val_number_decimal_token4] = ACTIONS(1701), + [aux_sym__val_number_token1] = ACTIONS(1701), + [aux_sym__val_number_token2] = ACTIONS(1701), + [aux_sym__val_number_token3] = ACTIONS(1701), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [sym__str_single_quotes] = ACTIONS(1701), + [sym__str_back_ticks] = ACTIONS(1701), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1701), + [sym__entry_separator] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [587] = { + [sym_comment] = STATE(587), + [anon_sym_export] = ACTIONS(1686), + [anon_sym_alias] = ACTIONS(1686), + [anon_sym_let] = ACTIONS(1686), + [anon_sym_let_DASHenv] = ACTIONS(1686), + [anon_sym_mut] = ACTIONS(1686), + [anon_sym_const] = ACTIONS(1686), + [aux_sym_cmd_identifier_token1] = ACTIONS(1686), + [aux_sym_cmd_identifier_token2] = ACTIONS(1686), + [aux_sym_cmd_identifier_token3] = ACTIONS(1686), + [aux_sym_cmd_identifier_token4] = ACTIONS(1686), + [aux_sym_cmd_identifier_token5] = ACTIONS(1686), + [aux_sym_cmd_identifier_token6] = ACTIONS(1686), + [aux_sym_cmd_identifier_token7] = ACTIONS(1686), + [aux_sym_cmd_identifier_token8] = ACTIONS(1686), + [aux_sym_cmd_identifier_token9] = ACTIONS(1686), + [aux_sym_cmd_identifier_token10] = ACTIONS(1686), + [aux_sym_cmd_identifier_token11] = ACTIONS(1686), + [aux_sym_cmd_identifier_token12] = ACTIONS(1686), + [aux_sym_cmd_identifier_token13] = ACTIONS(1686), + [aux_sym_cmd_identifier_token14] = ACTIONS(1686), + [aux_sym_cmd_identifier_token15] = ACTIONS(1686), + [aux_sym_cmd_identifier_token16] = ACTIONS(1686), + [aux_sym_cmd_identifier_token17] = ACTIONS(1686), + [aux_sym_cmd_identifier_token18] = ACTIONS(1686), + [aux_sym_cmd_identifier_token19] = ACTIONS(1686), + [aux_sym_cmd_identifier_token20] = ACTIONS(1686), + [aux_sym_cmd_identifier_token21] = ACTIONS(1686), + [aux_sym_cmd_identifier_token22] = ACTIONS(1686), + [aux_sym_cmd_identifier_token23] = ACTIONS(1686), + [aux_sym_cmd_identifier_token24] = ACTIONS(1686), + [aux_sym_cmd_identifier_token25] = ACTIONS(1686), + [aux_sym_cmd_identifier_token26] = ACTIONS(1686), + [aux_sym_cmd_identifier_token27] = ACTIONS(1686), + [aux_sym_cmd_identifier_token28] = ACTIONS(1686), + [aux_sym_cmd_identifier_token29] = ACTIONS(1686), + [aux_sym_cmd_identifier_token30] = ACTIONS(1686), + [aux_sym_cmd_identifier_token31] = ACTIONS(1686), + [aux_sym_cmd_identifier_token32] = ACTIONS(1686), + [aux_sym_cmd_identifier_token33] = ACTIONS(1686), + [aux_sym_cmd_identifier_token34] = ACTIONS(1686), + [aux_sym_cmd_identifier_token35] = ACTIONS(1686), + [aux_sym_cmd_identifier_token36] = ACTIONS(1686), + [aux_sym_cmd_identifier_token37] = ACTIONS(1686), + [aux_sym_cmd_identifier_token38] = ACTIONS(1686), + [aux_sym_cmd_identifier_token39] = ACTIONS(1686), + [aux_sym_cmd_identifier_token40] = ACTIONS(1686), + [anon_sym_def] = ACTIONS(1686), + [anon_sym_export_DASHenv] = ACTIONS(1686), + [anon_sym_extern] = ACTIONS(1686), + [anon_sym_module] = ACTIONS(1686), + [anon_sym_use] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_error] = ACTIONS(1686), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_break] = ACTIONS(1686), + [anon_sym_continue] = ACTIONS(1686), + [anon_sym_for] = ACTIONS(1686), + [anon_sym_in2] = ACTIONS(1686), + [anon_sym_loop] = ACTIONS(1686), + [anon_sym_make] = ACTIONS(1686), + [anon_sym_while] = ACTIONS(1686), + [anon_sym_do] = ACTIONS(1686), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_else] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1686), + [anon_sym_try] = ACTIONS(1686), + [anon_sym_catch] = ACTIONS(1686), + [anon_sym_return] = ACTIONS(1686), + [anon_sym_source] = ACTIONS(1686), + [anon_sym_source_DASHenv] = ACTIONS(1686), + [anon_sym_hide] = ACTIONS(1686), + [anon_sym_hide_DASHenv] = ACTIONS(1686), + [anon_sym_overlay] = ACTIONS(1686), + [anon_sym_as] = ACTIONS(1686), + [anon_sym_PLUS2] = ACTIONS(1686), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1686), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1686), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1686), + [aux_sym__val_number_decimal_token3] = ACTIONS(1686), + [aux_sym__val_number_decimal_token4] = ACTIONS(1686), + [aux_sym__val_number_token1] = ACTIONS(1686), + [aux_sym__val_number_token2] = ACTIONS(1686), + [aux_sym__val_number_token3] = ACTIONS(1686), + [aux_sym__val_number_token4] = ACTIONS(1686), + [aux_sym__val_number_token5] = ACTIONS(1686), + [aux_sym__val_number_token6] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1686), + [sym__str_single_quotes] = ACTIONS(1686), + [sym__str_back_ticks] = ACTIONS(1686), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1686), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1686), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1686), + [sym__entry_separator] = ACTIONS(1688), + [anon_sym_register] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1688), }, [588] = { [sym_comment] = STATE(588), - [anon_sym_export] = ACTIONS(2296), - [anon_sym_alias] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2296), - [anon_sym_let_DASHenv] = ACTIONS(2296), - [anon_sym_mut] = ACTIONS(2296), - [anon_sym_const] = ACTIONS(2296), - [aux_sym_cmd_identifier_token1] = ACTIONS(2296), - [aux_sym_cmd_identifier_token2] = ACTIONS(2296), - [aux_sym_cmd_identifier_token3] = ACTIONS(2296), - [aux_sym_cmd_identifier_token4] = ACTIONS(2296), - [aux_sym_cmd_identifier_token5] = ACTIONS(2296), - [aux_sym_cmd_identifier_token6] = ACTIONS(2296), - [aux_sym_cmd_identifier_token7] = ACTIONS(2296), - [aux_sym_cmd_identifier_token8] = ACTIONS(2296), - [aux_sym_cmd_identifier_token9] = ACTIONS(2296), - [aux_sym_cmd_identifier_token10] = ACTIONS(2296), - [aux_sym_cmd_identifier_token11] = ACTIONS(2296), - [aux_sym_cmd_identifier_token12] = ACTIONS(2296), - [aux_sym_cmd_identifier_token13] = ACTIONS(2296), - [aux_sym_cmd_identifier_token14] = ACTIONS(2296), - [aux_sym_cmd_identifier_token15] = ACTIONS(2296), - [aux_sym_cmd_identifier_token16] = ACTIONS(2296), - [aux_sym_cmd_identifier_token17] = ACTIONS(2296), - [aux_sym_cmd_identifier_token18] = ACTIONS(2296), - [aux_sym_cmd_identifier_token19] = ACTIONS(2296), - [aux_sym_cmd_identifier_token20] = ACTIONS(2296), - [aux_sym_cmd_identifier_token21] = ACTIONS(2296), - [aux_sym_cmd_identifier_token22] = ACTIONS(2296), - [aux_sym_cmd_identifier_token23] = ACTIONS(2296), - [aux_sym_cmd_identifier_token24] = ACTIONS(2296), - [aux_sym_cmd_identifier_token25] = ACTIONS(2296), - [aux_sym_cmd_identifier_token26] = ACTIONS(2296), - [aux_sym_cmd_identifier_token27] = ACTIONS(2296), - [aux_sym_cmd_identifier_token28] = ACTIONS(2296), - [aux_sym_cmd_identifier_token29] = ACTIONS(2296), - [aux_sym_cmd_identifier_token30] = ACTIONS(2296), - [aux_sym_cmd_identifier_token31] = ACTIONS(2296), - [aux_sym_cmd_identifier_token32] = ACTIONS(2296), - [aux_sym_cmd_identifier_token33] = ACTIONS(2296), - [aux_sym_cmd_identifier_token34] = ACTIONS(2296), - [aux_sym_cmd_identifier_token35] = ACTIONS(2296), - [aux_sym_cmd_identifier_token36] = ACTIONS(2296), - [aux_sym_cmd_identifier_token37] = ACTIONS(2296), - [aux_sym_cmd_identifier_token38] = ACTIONS(2296), - [aux_sym_cmd_identifier_token39] = ACTIONS(2296), - [aux_sym_cmd_identifier_token40] = ACTIONS(2296), - [anon_sym_def] = ACTIONS(2296), - [anon_sym_export_DASHenv] = ACTIONS(2296), - [anon_sym_extern] = ACTIONS(2296), - [anon_sym_module] = ACTIONS(2296), - [anon_sym_use] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2296), - [anon_sym_COMMA] = ACTIONS(2296), - [anon_sym_DOLLAR] = ACTIONS(2296), - [anon_sym_error] = ACTIONS(2296), - [anon_sym_DASH2] = ACTIONS(2296), - [anon_sym_break] = ACTIONS(2296), - [anon_sym_continue] = ACTIONS(2296), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_in2] = ACTIONS(2296), - [anon_sym_loop] = ACTIONS(2296), - [anon_sym_make] = ACTIONS(2296), - [anon_sym_while] = ACTIONS(2296), - [anon_sym_do] = ACTIONS(2296), - [anon_sym_if] = ACTIONS(2296), - [anon_sym_else] = ACTIONS(2296), - [anon_sym_match] = ACTIONS(2296), - [anon_sym_RBRACE] = ACTIONS(2296), - [anon_sym_try] = ACTIONS(2296), - [anon_sym_catch] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(2296), - [anon_sym_source] = ACTIONS(2296), - [anon_sym_source_DASHenv] = ACTIONS(2296), - [anon_sym_hide] = ACTIONS(2296), - [anon_sym_hide_DASHenv] = ACTIONS(2296), - [anon_sym_overlay] = ACTIONS(2296), - [anon_sym_as] = ACTIONS(2296), - [anon_sym_PLUS2] = ACTIONS(2296), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2296), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2296), - [aux_sym__val_number_decimal_token1] = ACTIONS(2296), - [aux_sym__val_number_decimal_token2] = ACTIONS(2296), - [aux_sym__val_number_decimal_token3] = ACTIONS(2296), - [aux_sym__val_number_decimal_token4] = ACTIONS(2296), - [aux_sym__val_number_token1] = ACTIONS(2296), - [aux_sym__val_number_token2] = ACTIONS(2296), - [aux_sym__val_number_token3] = ACTIONS(2296), - [aux_sym__val_number_token4] = ACTIONS(2296), - [aux_sym__val_number_token5] = ACTIONS(2296), - [aux_sym__val_number_token6] = ACTIONS(2296), - [anon_sym_DQUOTE] = ACTIONS(2296), - [sym__str_single_quotes] = ACTIONS(2296), - [sym__str_back_ticks] = ACTIONS(2296), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2296), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2296), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2296), - [sym__entry_separator] = ACTIONS(2298), - [anon_sym_register] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(1760), + [anon_sym_alias] = ACTIONS(1760), + [anon_sym_let] = ACTIONS(1760), + [anon_sym_let_DASHenv] = ACTIONS(1760), + [anon_sym_mut] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [aux_sym_cmd_identifier_token1] = ACTIONS(1760), + [aux_sym_cmd_identifier_token2] = ACTIONS(1760), + [aux_sym_cmd_identifier_token3] = ACTIONS(1760), + [aux_sym_cmd_identifier_token4] = ACTIONS(1760), + [aux_sym_cmd_identifier_token5] = ACTIONS(1760), + [aux_sym_cmd_identifier_token6] = ACTIONS(1760), + [aux_sym_cmd_identifier_token7] = ACTIONS(1760), + [aux_sym_cmd_identifier_token8] = ACTIONS(1760), + [aux_sym_cmd_identifier_token9] = ACTIONS(1760), + [aux_sym_cmd_identifier_token10] = ACTIONS(1760), + [aux_sym_cmd_identifier_token11] = ACTIONS(1760), + [aux_sym_cmd_identifier_token12] = ACTIONS(1760), + [aux_sym_cmd_identifier_token13] = ACTIONS(1760), + [aux_sym_cmd_identifier_token14] = ACTIONS(1760), + [aux_sym_cmd_identifier_token15] = ACTIONS(1760), + [aux_sym_cmd_identifier_token16] = ACTIONS(1760), + [aux_sym_cmd_identifier_token17] = ACTIONS(1760), + [aux_sym_cmd_identifier_token18] = ACTIONS(1760), + [aux_sym_cmd_identifier_token19] = ACTIONS(1760), + [aux_sym_cmd_identifier_token20] = ACTIONS(1760), + [aux_sym_cmd_identifier_token21] = ACTIONS(1760), + [aux_sym_cmd_identifier_token22] = ACTIONS(1760), + [aux_sym_cmd_identifier_token23] = ACTIONS(1760), + [aux_sym_cmd_identifier_token24] = ACTIONS(1760), + [aux_sym_cmd_identifier_token25] = ACTIONS(1760), + [aux_sym_cmd_identifier_token26] = ACTIONS(1760), + [aux_sym_cmd_identifier_token27] = ACTIONS(1760), + [aux_sym_cmd_identifier_token28] = ACTIONS(1760), + [aux_sym_cmd_identifier_token29] = ACTIONS(1760), + [aux_sym_cmd_identifier_token30] = ACTIONS(1760), + [aux_sym_cmd_identifier_token31] = ACTIONS(1760), + [aux_sym_cmd_identifier_token32] = ACTIONS(1760), + [aux_sym_cmd_identifier_token33] = ACTIONS(1760), + [aux_sym_cmd_identifier_token34] = ACTIONS(1760), + [aux_sym_cmd_identifier_token35] = ACTIONS(1760), + [aux_sym_cmd_identifier_token36] = ACTIONS(1760), + [aux_sym_cmd_identifier_token37] = ACTIONS(1760), + [aux_sym_cmd_identifier_token38] = ACTIONS(1760), + [aux_sym_cmd_identifier_token39] = ACTIONS(1760), + [aux_sym_cmd_identifier_token40] = ACTIONS(1760), + [anon_sym_def] = ACTIONS(1760), + [anon_sym_export_DASHenv] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym_module] = ACTIONS(1760), + [anon_sym_use] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_COMMA] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_error] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_loop] = ACTIONS(1760), + [anon_sym_make] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_do] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_match] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_catch] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_source] = ACTIONS(1760), + [anon_sym_source_DASHenv] = ACTIONS(1760), + [anon_sym_hide] = ACTIONS(1760), + [anon_sym_hide_DASHenv] = ACTIONS(1760), + [anon_sym_overlay] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1760), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1760), + [aux_sym__val_number_decimal_token3] = ACTIONS(1760), + [aux_sym__val_number_decimal_token4] = ACTIONS(1760), + [aux_sym__val_number_token1] = ACTIONS(1760), + [aux_sym__val_number_token2] = ACTIONS(1760), + [aux_sym__val_number_token3] = ACTIONS(1760), + [aux_sym__val_number_token4] = ACTIONS(1760), + [aux_sym__val_number_token5] = ACTIONS(1760), + [aux_sym__val_number_token6] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1760), + [sym__str_single_quotes] = ACTIONS(1760), + [sym__str_back_ticks] = ACTIONS(1760), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1760), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1760), + [sym__entry_separator] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1760), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2298), + [sym_raw_string_begin] = ACTIONS(1762), }, [589] = { [sym_comment] = STATE(589), - [anon_sym_export] = ACTIONS(2300), - [anon_sym_alias] = ACTIONS(2300), - [anon_sym_let] = ACTIONS(2300), - [anon_sym_let_DASHenv] = ACTIONS(2300), - [anon_sym_mut] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [aux_sym_cmd_identifier_token1] = ACTIONS(2300), - [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(2300), - [aux_sym_cmd_identifier_token9] = ACTIONS(2300), - [aux_sym_cmd_identifier_token10] = ACTIONS(2300), - [aux_sym_cmd_identifier_token11] = ACTIONS(2300), - [aux_sym_cmd_identifier_token12] = ACTIONS(2300), - [aux_sym_cmd_identifier_token13] = ACTIONS(2300), - [aux_sym_cmd_identifier_token14] = ACTIONS(2300), - [aux_sym_cmd_identifier_token15] = ACTIONS(2300), - [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(2300), - [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(2300), - [aux_sym_cmd_identifier_token39] = ACTIONS(2300), - [aux_sym_cmd_identifier_token40] = ACTIONS(2300), - [anon_sym_def] = ACTIONS(2300), - [anon_sym_export_DASHenv] = ACTIONS(2300), - [anon_sym_extern] = ACTIONS(2300), - [anon_sym_module] = ACTIONS(2300), - [anon_sym_use] = ACTIONS(2300), - [anon_sym_LPAREN] = ACTIONS(2300), - [anon_sym_COMMA] = ACTIONS(2300), - [anon_sym_DOLLAR] = ACTIONS(2300), - [anon_sym_error] = ACTIONS(2300), - [anon_sym_DASH2] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_for] = ACTIONS(2300), - [anon_sym_in2] = ACTIONS(2300), - [anon_sym_loop] = ACTIONS(2300), - [anon_sym_make] = ACTIONS(2300), - [anon_sym_while] = ACTIONS(2300), - [anon_sym_do] = ACTIONS(2300), - [anon_sym_if] = ACTIONS(2300), - [anon_sym_else] = ACTIONS(2300), - [anon_sym_match] = ACTIONS(2300), - [anon_sym_RBRACE] = ACTIONS(2300), - [anon_sym_try] = ACTIONS(2300), - [anon_sym_catch] = ACTIONS(2300), - [anon_sym_return] = ACTIONS(2300), - [anon_sym_source] = ACTIONS(2300), - [anon_sym_source_DASHenv] = ACTIONS(2300), - [anon_sym_hide] = ACTIONS(2300), - [anon_sym_hide_DASHenv] = ACTIONS(2300), - [anon_sym_overlay] = ACTIONS(2300), - [anon_sym_as] = ACTIONS(2300), - [anon_sym_PLUS2] = ACTIONS(2300), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2300), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2300), - [aux_sym__val_number_decimal_token1] = ACTIONS(2300), - [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(2300), - [aux_sym__val_number_token5] = ACTIONS(2300), - [aux_sym__val_number_token6] = ACTIONS(2300), - [anon_sym_DQUOTE] = ACTIONS(2300), - [sym__str_single_quotes] = ACTIONS(2300), - [sym__str_back_ticks] = ACTIONS(2300), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2300), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2300), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2300), - [sym__entry_separator] = ACTIONS(2302), - [anon_sym_register] = ACTIONS(2300), + [anon_sym_export] = ACTIONS(1797), + [anon_sym_alias] = ACTIONS(1797), + [anon_sym_let] = ACTIONS(1797), + [anon_sym_let_DASHenv] = ACTIONS(1797), + [anon_sym_mut] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(1797), + [aux_sym_cmd_identifier_token1] = ACTIONS(1797), + [aux_sym_cmd_identifier_token2] = ACTIONS(1797), + [aux_sym_cmd_identifier_token3] = ACTIONS(1797), + [aux_sym_cmd_identifier_token4] = ACTIONS(1797), + [aux_sym_cmd_identifier_token5] = ACTIONS(1797), + [aux_sym_cmd_identifier_token6] = ACTIONS(1797), + [aux_sym_cmd_identifier_token7] = ACTIONS(1797), + [aux_sym_cmd_identifier_token8] = ACTIONS(1797), + [aux_sym_cmd_identifier_token9] = ACTIONS(1797), + [aux_sym_cmd_identifier_token10] = ACTIONS(1797), + [aux_sym_cmd_identifier_token11] = ACTIONS(1797), + [aux_sym_cmd_identifier_token12] = ACTIONS(1797), + [aux_sym_cmd_identifier_token13] = ACTIONS(1797), + [aux_sym_cmd_identifier_token14] = ACTIONS(1797), + [aux_sym_cmd_identifier_token15] = ACTIONS(1797), + [aux_sym_cmd_identifier_token16] = ACTIONS(1797), + [aux_sym_cmd_identifier_token17] = ACTIONS(1797), + [aux_sym_cmd_identifier_token18] = ACTIONS(1797), + [aux_sym_cmd_identifier_token19] = ACTIONS(1797), + [aux_sym_cmd_identifier_token20] = ACTIONS(1797), + [aux_sym_cmd_identifier_token21] = ACTIONS(1797), + [aux_sym_cmd_identifier_token22] = ACTIONS(1797), + [aux_sym_cmd_identifier_token23] = ACTIONS(1797), + [aux_sym_cmd_identifier_token24] = ACTIONS(1797), + [aux_sym_cmd_identifier_token25] = ACTIONS(1797), + [aux_sym_cmd_identifier_token26] = ACTIONS(1797), + [aux_sym_cmd_identifier_token27] = ACTIONS(1797), + [aux_sym_cmd_identifier_token28] = ACTIONS(1797), + [aux_sym_cmd_identifier_token29] = ACTIONS(1797), + [aux_sym_cmd_identifier_token30] = ACTIONS(1797), + [aux_sym_cmd_identifier_token31] = ACTIONS(1797), + [aux_sym_cmd_identifier_token32] = ACTIONS(1797), + [aux_sym_cmd_identifier_token33] = ACTIONS(1797), + [aux_sym_cmd_identifier_token34] = ACTIONS(1797), + [aux_sym_cmd_identifier_token35] = ACTIONS(1797), + [aux_sym_cmd_identifier_token36] = ACTIONS(1797), + [aux_sym_cmd_identifier_token37] = ACTIONS(1797), + [aux_sym_cmd_identifier_token38] = ACTIONS(1797), + [aux_sym_cmd_identifier_token39] = ACTIONS(1797), + [aux_sym_cmd_identifier_token40] = ACTIONS(1797), + [anon_sym_def] = ACTIONS(1797), + [anon_sym_export_DASHenv] = ACTIONS(1797), + [anon_sym_extern] = ACTIONS(1797), + [anon_sym_module] = ACTIONS(1797), + [anon_sym_use] = ACTIONS(1797), + [anon_sym_LPAREN] = ACTIONS(1797), + [anon_sym_COMMA] = ACTIONS(1797), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_error] = ACTIONS(1797), + [anon_sym_DASH2] = ACTIONS(1797), + [anon_sym_break] = ACTIONS(1797), + [anon_sym_continue] = ACTIONS(1797), + [anon_sym_for] = ACTIONS(1797), + [anon_sym_in2] = ACTIONS(1797), + [anon_sym_loop] = ACTIONS(1797), + [anon_sym_make] = ACTIONS(1797), + [anon_sym_while] = ACTIONS(1797), + [anon_sym_do] = ACTIONS(1797), + [anon_sym_if] = ACTIONS(1797), + [anon_sym_else] = ACTIONS(1797), + [anon_sym_match] = ACTIONS(1797), + [anon_sym_RBRACE] = ACTIONS(1797), + [anon_sym_try] = ACTIONS(1797), + [anon_sym_catch] = ACTIONS(1797), + [anon_sym_return] = ACTIONS(1797), + [anon_sym_source] = ACTIONS(1797), + [anon_sym_source_DASHenv] = ACTIONS(1797), + [anon_sym_hide] = ACTIONS(1797), + [anon_sym_hide_DASHenv] = ACTIONS(1797), + [anon_sym_overlay] = ACTIONS(1797), + [anon_sym_as] = ACTIONS(1797), + [anon_sym_PLUS2] = ACTIONS(1797), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1797), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1797), + [aux_sym__val_number_decimal_token1] = ACTIONS(1797), + [aux_sym__val_number_decimal_token2] = ACTIONS(1797), + [aux_sym__val_number_decimal_token3] = ACTIONS(1797), + [aux_sym__val_number_decimal_token4] = ACTIONS(1797), + [aux_sym__val_number_token1] = ACTIONS(1797), + [aux_sym__val_number_token2] = ACTIONS(1797), + [aux_sym__val_number_token3] = ACTIONS(1797), + [aux_sym__val_number_token4] = ACTIONS(1797), + [aux_sym__val_number_token5] = ACTIONS(1797), + [aux_sym__val_number_token6] = ACTIONS(1797), + [anon_sym_DQUOTE] = ACTIONS(1797), + [sym__str_single_quotes] = ACTIONS(1797), + [sym__str_back_ticks] = ACTIONS(1797), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1797), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1797), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1797), + [sym__entry_separator] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1797), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2302), + [sym_raw_string_begin] = ACTIONS(1799), }, [590] = { [sym_comment] = STATE(590), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_alias] = ACTIONS(1973), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_let_DASHenv] = ACTIONS(1973), + [anon_sym_mut] = ACTIONS(1973), + [anon_sym_const] = ACTIONS(1973), + [aux_sym_cmd_identifier_token1] = ACTIONS(1973), + [aux_sym_cmd_identifier_token2] = ACTIONS(1973), + [aux_sym_cmd_identifier_token3] = ACTIONS(1973), + [aux_sym_cmd_identifier_token4] = ACTIONS(1973), + [aux_sym_cmd_identifier_token5] = ACTIONS(1973), + [aux_sym_cmd_identifier_token6] = ACTIONS(1973), + [aux_sym_cmd_identifier_token7] = ACTIONS(1973), + [aux_sym_cmd_identifier_token8] = ACTIONS(1973), + [aux_sym_cmd_identifier_token9] = ACTIONS(1973), + [aux_sym_cmd_identifier_token10] = ACTIONS(1973), + [aux_sym_cmd_identifier_token11] = ACTIONS(1973), + [aux_sym_cmd_identifier_token12] = ACTIONS(1973), + [aux_sym_cmd_identifier_token13] = ACTIONS(1973), + [aux_sym_cmd_identifier_token14] = ACTIONS(1973), + [aux_sym_cmd_identifier_token15] = ACTIONS(1973), + [aux_sym_cmd_identifier_token16] = ACTIONS(1973), + [aux_sym_cmd_identifier_token17] = ACTIONS(1973), + [aux_sym_cmd_identifier_token18] = ACTIONS(1973), + [aux_sym_cmd_identifier_token19] = ACTIONS(1973), + [aux_sym_cmd_identifier_token20] = ACTIONS(1973), + [aux_sym_cmd_identifier_token21] = ACTIONS(1973), + [aux_sym_cmd_identifier_token22] = ACTIONS(1973), + [aux_sym_cmd_identifier_token23] = ACTIONS(1973), + [aux_sym_cmd_identifier_token24] = ACTIONS(1973), + [aux_sym_cmd_identifier_token25] = ACTIONS(1973), + [aux_sym_cmd_identifier_token26] = ACTIONS(1973), + [aux_sym_cmd_identifier_token27] = ACTIONS(1973), + [aux_sym_cmd_identifier_token28] = ACTIONS(1973), + [aux_sym_cmd_identifier_token29] = ACTIONS(1973), + [aux_sym_cmd_identifier_token30] = ACTIONS(1973), + [aux_sym_cmd_identifier_token31] = ACTIONS(1973), + [aux_sym_cmd_identifier_token32] = ACTIONS(1973), + [aux_sym_cmd_identifier_token33] = ACTIONS(1973), + [aux_sym_cmd_identifier_token34] = ACTIONS(1973), + [aux_sym_cmd_identifier_token35] = ACTIONS(1973), + [aux_sym_cmd_identifier_token36] = ACTIONS(1973), + [aux_sym_cmd_identifier_token37] = ACTIONS(1973), + [aux_sym_cmd_identifier_token38] = ACTIONS(1973), + [aux_sym_cmd_identifier_token39] = ACTIONS(1973), + [aux_sym_cmd_identifier_token40] = ACTIONS(1973), + [anon_sym_def] = ACTIONS(1973), + [anon_sym_export_DASHenv] = ACTIONS(1973), + [anon_sym_extern] = ACTIONS(1973), + [anon_sym_module] = ACTIONS(1973), + [anon_sym_use] = ACTIONS(1973), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_COMMA] = ACTIONS(1973), + [anon_sym_DOLLAR] = ACTIONS(1973), + [anon_sym_error] = ACTIONS(1973), + [anon_sym_DASH2] = ACTIONS(1973), + [anon_sym_break] = ACTIONS(1973), + [anon_sym_continue] = ACTIONS(1973), + [anon_sym_for] = ACTIONS(1973), + [anon_sym_in2] = ACTIONS(1973), + [anon_sym_loop] = ACTIONS(1973), + [anon_sym_make] = ACTIONS(1973), + [anon_sym_while] = ACTIONS(1973), + [anon_sym_do] = ACTIONS(1973), + [anon_sym_if] = ACTIONS(1973), + [anon_sym_else] = ACTIONS(1973), + [anon_sym_match] = ACTIONS(1973), + [anon_sym_RBRACE] = ACTIONS(1973), + [anon_sym_try] = ACTIONS(1973), + [anon_sym_catch] = ACTIONS(1973), + [anon_sym_return] = ACTIONS(1973), + [anon_sym_source] = ACTIONS(1973), + [anon_sym_source_DASHenv] = ACTIONS(1973), + [anon_sym_hide] = ACTIONS(1973), + [anon_sym_hide_DASHenv] = ACTIONS(1973), + [anon_sym_overlay] = ACTIONS(1973), + [anon_sym_as] = ACTIONS(1973), + [anon_sym_PLUS2] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1973), + [aux_sym__val_number_decimal_token1] = ACTIONS(1973), + [aux_sym__val_number_decimal_token2] = ACTIONS(1973), + [aux_sym__val_number_decimal_token3] = ACTIONS(1973), + [aux_sym__val_number_decimal_token4] = ACTIONS(1973), + [aux_sym__val_number_token1] = ACTIONS(1973), + [aux_sym__val_number_token2] = ACTIONS(1973), + [aux_sym__val_number_token3] = ACTIONS(1973), + [aux_sym__val_number_token4] = ACTIONS(1973), + [aux_sym__val_number_token5] = ACTIONS(1973), + [aux_sym__val_number_token6] = ACTIONS(1973), + [anon_sym_DQUOTE] = ACTIONS(1973), + [sym__str_single_quotes] = ACTIONS(1973), + [sym__str_back_ticks] = ACTIONS(1973), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1973), + [sym__entry_separator] = ACTIONS(1979), + [anon_sym_register] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1979), + }, + [591] = { + [sym_comment] = STATE(591), [anon_sym_export] = ACTIONS(982), [anon_sym_alias] = ACTIONS(982), [anon_sym_let] = ACTIONS(982), @@ -139609,52 +138535,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(982), [anon_sym_const] = ACTIONS(982), [aux_sym_cmd_identifier_token1] = ACTIONS(982), - [aux_sym_cmd_identifier_token2] = ACTIONS(982), - [aux_sym_cmd_identifier_token3] = ACTIONS(982), - [aux_sym_cmd_identifier_token4] = ACTIONS(982), - [aux_sym_cmd_identifier_token5] = ACTIONS(982), - [aux_sym_cmd_identifier_token6] = ACTIONS(982), - [aux_sym_cmd_identifier_token7] = ACTIONS(982), + [aux_sym_cmd_identifier_token2] = ACTIONS(984), + [aux_sym_cmd_identifier_token3] = ACTIONS(984), + [aux_sym_cmd_identifier_token4] = ACTIONS(984), + [aux_sym_cmd_identifier_token5] = ACTIONS(984), + [aux_sym_cmd_identifier_token6] = ACTIONS(984), + [aux_sym_cmd_identifier_token7] = ACTIONS(984), [aux_sym_cmd_identifier_token8] = ACTIONS(982), [aux_sym_cmd_identifier_token9] = ACTIONS(982), - [aux_sym_cmd_identifier_token10] = ACTIONS(982), - [aux_sym_cmd_identifier_token11] = ACTIONS(982), + [aux_sym_cmd_identifier_token10] = ACTIONS(984), + [aux_sym_cmd_identifier_token11] = ACTIONS(984), [aux_sym_cmd_identifier_token12] = ACTIONS(982), [aux_sym_cmd_identifier_token13] = ACTIONS(982), [aux_sym_cmd_identifier_token14] = ACTIONS(982), [aux_sym_cmd_identifier_token15] = ACTIONS(982), - [aux_sym_cmd_identifier_token16] = ACTIONS(982), - [aux_sym_cmd_identifier_token17] = ACTIONS(982), - [aux_sym_cmd_identifier_token18] = ACTIONS(982), - [aux_sym_cmd_identifier_token19] = ACTIONS(982), - [aux_sym_cmd_identifier_token20] = ACTIONS(982), - [aux_sym_cmd_identifier_token21] = ACTIONS(982), - [aux_sym_cmd_identifier_token22] = ACTIONS(982), - [aux_sym_cmd_identifier_token23] = ACTIONS(982), - [aux_sym_cmd_identifier_token24] = ACTIONS(982), - [aux_sym_cmd_identifier_token25] = ACTIONS(982), - [aux_sym_cmd_identifier_token26] = ACTIONS(982), - [aux_sym_cmd_identifier_token27] = ACTIONS(982), - [aux_sym_cmd_identifier_token28] = ACTIONS(982), - [aux_sym_cmd_identifier_token29] = ACTIONS(982), - [aux_sym_cmd_identifier_token30] = ACTIONS(982), - [aux_sym_cmd_identifier_token31] = ACTIONS(982), - [aux_sym_cmd_identifier_token32] = ACTIONS(982), - [aux_sym_cmd_identifier_token33] = ACTIONS(982), + [aux_sym_cmd_identifier_token16] = ACTIONS(984), + [aux_sym_cmd_identifier_token17] = ACTIONS(984), + [aux_sym_cmd_identifier_token18] = ACTIONS(984), + [aux_sym_cmd_identifier_token19] = ACTIONS(984), + [aux_sym_cmd_identifier_token20] = ACTIONS(984), + [aux_sym_cmd_identifier_token21] = ACTIONS(984), + [aux_sym_cmd_identifier_token22] = ACTIONS(984), + [aux_sym_cmd_identifier_token23] = ACTIONS(984), + [aux_sym_cmd_identifier_token24] = ACTIONS(984), + [aux_sym_cmd_identifier_token25] = ACTIONS(984), + [aux_sym_cmd_identifier_token26] = ACTIONS(984), + [aux_sym_cmd_identifier_token27] = ACTIONS(984), + [aux_sym_cmd_identifier_token28] = ACTIONS(984), + [aux_sym_cmd_identifier_token29] = ACTIONS(984), + [aux_sym_cmd_identifier_token30] = ACTIONS(984), + [aux_sym_cmd_identifier_token31] = ACTIONS(984), + [aux_sym_cmd_identifier_token32] = ACTIONS(984), + [aux_sym_cmd_identifier_token33] = ACTIONS(984), [aux_sym_cmd_identifier_token34] = ACTIONS(982), - [aux_sym_cmd_identifier_token35] = ACTIONS(982), - [aux_sym_cmd_identifier_token36] = ACTIONS(982), - [aux_sym_cmd_identifier_token37] = ACTIONS(982), + [aux_sym_cmd_identifier_token35] = ACTIONS(984), + [aux_sym_cmd_identifier_token36] = ACTIONS(984), + [aux_sym_cmd_identifier_token37] = ACTIONS(984), [aux_sym_cmd_identifier_token38] = ACTIONS(982), - [aux_sym_cmd_identifier_token39] = ACTIONS(982), - [aux_sym_cmd_identifier_token40] = ACTIONS(982), + [aux_sym_cmd_identifier_token39] = ACTIONS(984), + [aux_sym_cmd_identifier_token40] = ACTIONS(984), [anon_sym_def] = ACTIONS(982), [anon_sym_export_DASHenv] = ACTIONS(982), [anon_sym_extern] = ACTIONS(982), [anon_sym_module] = ACTIONS(982), [anon_sym_use] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(982), - [anon_sym_COMMA] = ACTIONS(982), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_COMMA] = ACTIONS(984), [anon_sym_DOLLAR] = ACTIONS(982), [anon_sym_error] = ACTIONS(982), [anon_sym_DASH2] = ACTIONS(982), @@ -139669,7 +138595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(982), [anon_sym_else] = ACTIONS(982), [anon_sym_match] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(984), [anon_sym_try] = ACTIONS(982), [anon_sym_catch] = ACTIONS(982), [anon_sym_return] = ACTIONS(982), @@ -139680,752 +138606,546 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(982), [anon_sym_as] = ACTIONS(982), [anon_sym_PLUS2] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(984), [aux_sym__val_number_decimal_token1] = ACTIONS(982), - [aux_sym__val_number_decimal_token2] = ACTIONS(982), - [aux_sym__val_number_decimal_token3] = ACTIONS(982), - [aux_sym__val_number_decimal_token4] = ACTIONS(982), - [aux_sym__val_number_token1] = ACTIONS(982), - [aux_sym__val_number_token2] = ACTIONS(982), - [aux_sym__val_number_token3] = ACTIONS(982), + [aux_sym__val_number_decimal_token2] = ACTIONS(984), + [aux_sym__val_number_decimal_token3] = ACTIONS(984), + [aux_sym__val_number_decimal_token4] = ACTIONS(984), + [aux_sym__val_number_token1] = ACTIONS(984), + [aux_sym__val_number_token2] = ACTIONS(984), + [aux_sym__val_number_token3] = ACTIONS(984), [aux_sym__val_number_token4] = ACTIONS(982), [aux_sym__val_number_token5] = ACTIONS(982), [aux_sym__val_number_token6] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [sym__str_single_quotes] = ACTIONS(982), - [sym__str_back_ticks] = ACTIONS(982), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(982), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(982), - [sym__entry_separator] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(984), + [sym__str_single_quotes] = ACTIONS(984), + [sym__str_back_ticks] = ACTIONS(984), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(984), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(984), [anon_sym_register] = ACTIONS(982), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(984), - }, - [591] = { - [sym_comment] = STATE(591), - [anon_sym_export] = ACTIONS(1579), - [anon_sym_alias] = ACTIONS(1579), - [anon_sym_let] = ACTIONS(1579), - [anon_sym_let_DASHenv] = ACTIONS(1579), - [anon_sym_mut] = ACTIONS(1579), - [anon_sym_const] = ACTIONS(1579), - [aux_sym_cmd_identifier_token1] = ACTIONS(1579), - [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(1579), - [aux_sym_cmd_identifier_token9] = ACTIONS(1579), - [aux_sym_cmd_identifier_token10] = ACTIONS(1591), - [aux_sym_cmd_identifier_token11] = ACTIONS(1591), - [aux_sym_cmd_identifier_token12] = ACTIONS(1579), - [aux_sym_cmd_identifier_token13] = ACTIONS(1579), - [aux_sym_cmd_identifier_token14] = ACTIONS(1579), - [aux_sym_cmd_identifier_token15] = ACTIONS(1579), - [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(1579), - [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(1579), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [anon_sym_def] = ACTIONS(1579), - [anon_sym_export_DASHenv] = ACTIONS(1579), - [anon_sym_extern] = ACTIONS(1579), - [anon_sym_module] = ACTIONS(1579), - [anon_sym_use] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1591), - [anon_sym_COMMA] = ACTIONS(1591), - [anon_sym_DOLLAR] = ACTIONS(1579), - [anon_sym_error] = ACTIONS(1579), - [anon_sym_DASH2] = ACTIONS(1579), - [anon_sym_break] = ACTIONS(1579), - [anon_sym_continue] = ACTIONS(1579), - [anon_sym_for] = ACTIONS(1579), - [anon_sym_in2] = ACTIONS(1579), - [anon_sym_loop] = ACTIONS(1579), - [anon_sym_make] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1579), - [anon_sym_if] = ACTIONS(1579), - [anon_sym_else] = ACTIONS(1579), - [anon_sym_match] = ACTIONS(1579), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_try] = ACTIONS(1579), - [anon_sym_catch] = ACTIONS(1579), - [anon_sym_return] = ACTIONS(1579), - [anon_sym_source] = ACTIONS(1579), - [anon_sym_source_DASHenv] = ACTIONS(1579), - [anon_sym_hide] = ACTIONS(1579), - [anon_sym_hide_DASHenv] = ACTIONS(1579), - [anon_sym_overlay] = ACTIONS(1579), - [anon_sym_as] = ACTIONS(1579), - [anon_sym_PLUS2] = ACTIONS(1579), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1591), - [aux_sym__val_number_decimal_token1] = ACTIONS(1579), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [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(1579), - [aux_sym__val_number_token5] = ACTIONS(1579), - [aux_sym__val_number_token6] = ACTIONS(1579), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1591), - [anon_sym_register] = ACTIONS(1579), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1664), + [anon_sym_COLON2] = ACTIONS(984), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1591), + [sym_raw_string_begin] = ACTIONS(984), }, [592] = { [sym_comment] = STATE(592), - [anon_sym_export] = ACTIONS(2212), - [anon_sym_alias] = ACTIONS(2212), - [anon_sym_let] = ACTIONS(2212), - [anon_sym_let_DASHenv] = ACTIONS(2212), - [anon_sym_mut] = ACTIONS(2212), - [anon_sym_const] = ACTIONS(2212), - [aux_sym_cmd_identifier_token1] = ACTIONS(2212), - [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(2212), - [aux_sym_cmd_identifier_token9] = ACTIONS(2212), - [aux_sym_cmd_identifier_token10] = ACTIONS(2214), - [aux_sym_cmd_identifier_token11] = ACTIONS(2214), - [aux_sym_cmd_identifier_token12] = ACTIONS(2212), - [aux_sym_cmd_identifier_token13] = ACTIONS(2212), - [aux_sym_cmd_identifier_token14] = ACTIONS(2212), - [aux_sym_cmd_identifier_token15] = ACTIONS(2212), - [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(2212), - [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(2212), - [aux_sym_cmd_identifier_token39] = ACTIONS(2214), - [aux_sym_cmd_identifier_token40] = ACTIONS(2214), - [anon_sym_def] = ACTIONS(2212), - [anon_sym_export_DASHenv] = ACTIONS(2212), - [anon_sym_extern] = ACTIONS(2212), - [anon_sym_module] = ACTIONS(2212), - [anon_sym_use] = ACTIONS(2212), - [anon_sym_LPAREN] = ACTIONS(2212), - [anon_sym_COMMA] = ACTIONS(2214), - [anon_sym_DOLLAR] = ACTIONS(2212), - [anon_sym_error] = ACTIONS(2212), - [anon_sym_DASH2] = ACTIONS(2212), - [anon_sym_break] = ACTIONS(2212), - [anon_sym_continue] = ACTIONS(2212), - [anon_sym_for] = ACTIONS(2212), - [anon_sym_in2] = ACTIONS(2212), - [anon_sym_loop] = ACTIONS(2212), - [anon_sym_make] = ACTIONS(2212), - [anon_sym_while] = ACTIONS(2212), - [anon_sym_do] = ACTIONS(2212), - [anon_sym_if] = ACTIONS(2212), - [anon_sym_else] = ACTIONS(2212), - [anon_sym_match] = ACTIONS(2212), - [anon_sym_RBRACE] = ACTIONS(2214), - [anon_sym_try] = ACTIONS(2212), - [anon_sym_catch] = ACTIONS(2212), - [anon_sym_return] = ACTIONS(2212), - [anon_sym_source] = ACTIONS(2212), - [anon_sym_source_DASHenv] = ACTIONS(2212), - [anon_sym_hide] = ACTIONS(2212), - [anon_sym_hide_DASHenv] = ACTIONS(2212), - [anon_sym_overlay] = ACTIONS(2212), - [anon_sym_as] = ACTIONS(2212), - [anon_sym_LPAREN2] = ACTIONS(2214), - [anon_sym_PLUS2] = ACTIONS(2212), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2214), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2214), - [aux_sym__val_number_decimal_token1] = ACTIONS(2212), - [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(2212), - [aux_sym__val_number_token5] = ACTIONS(2212), - [aux_sym__val_number_token6] = ACTIONS(2212), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym__str_single_quotes] = ACTIONS(2214), - [sym__str_back_ticks] = ACTIONS(2214), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2214), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2214), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2214), - [anon_sym_register] = ACTIONS(2212), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2214), + [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_COMMA] = 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_hide] = ACTIONS(2298), + [anon_sym_hide_DASHenv] = ACTIONS(2298), + [anon_sym_overlay] = ACTIONS(2298), + [anon_sym_as] = ACTIONS(2298), + [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_DOLLAR_SQUOTE] = ACTIONS(2298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2298), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2298), + [sym__entry_separator] = ACTIONS(2300), + [anon_sym_register] = ACTIONS(2298), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2300), }, [593] = { [sym_comment] = STATE(593), - [anon_sym_export] = ACTIONS(1977), - [anon_sym_alias] = ACTIONS(1977), - [anon_sym_let] = ACTIONS(1977), - [anon_sym_let_DASHenv] = ACTIONS(1977), - [anon_sym_mut] = ACTIONS(1977), - [anon_sym_const] = ACTIONS(1977), - [aux_sym_cmd_identifier_token1] = ACTIONS(1977), - [aux_sym_cmd_identifier_token2] = ACTIONS(1977), - [aux_sym_cmd_identifier_token3] = ACTIONS(1977), - [aux_sym_cmd_identifier_token4] = ACTIONS(1977), - [aux_sym_cmd_identifier_token5] = ACTIONS(1977), - [aux_sym_cmd_identifier_token6] = ACTIONS(1977), - [aux_sym_cmd_identifier_token7] = ACTIONS(1977), - [aux_sym_cmd_identifier_token8] = ACTIONS(1977), - [aux_sym_cmd_identifier_token9] = ACTIONS(1977), - [aux_sym_cmd_identifier_token10] = ACTIONS(1977), - [aux_sym_cmd_identifier_token11] = ACTIONS(1977), - [aux_sym_cmd_identifier_token12] = ACTIONS(1977), - [aux_sym_cmd_identifier_token13] = ACTIONS(1977), - [aux_sym_cmd_identifier_token14] = ACTIONS(1977), - [aux_sym_cmd_identifier_token15] = ACTIONS(1977), - [aux_sym_cmd_identifier_token16] = ACTIONS(1977), - [aux_sym_cmd_identifier_token17] = ACTIONS(1977), - [aux_sym_cmd_identifier_token18] = ACTIONS(1977), - [aux_sym_cmd_identifier_token19] = ACTIONS(1977), - [aux_sym_cmd_identifier_token20] = ACTIONS(1977), - [aux_sym_cmd_identifier_token21] = ACTIONS(1977), - [aux_sym_cmd_identifier_token22] = ACTIONS(1977), - [aux_sym_cmd_identifier_token23] = ACTIONS(1977), - [aux_sym_cmd_identifier_token24] = ACTIONS(1977), - [aux_sym_cmd_identifier_token25] = ACTIONS(1977), - [aux_sym_cmd_identifier_token26] = ACTIONS(1977), - [aux_sym_cmd_identifier_token27] = ACTIONS(1977), - [aux_sym_cmd_identifier_token28] = ACTIONS(1977), - [aux_sym_cmd_identifier_token29] = ACTIONS(1977), - [aux_sym_cmd_identifier_token30] = ACTIONS(1977), - [aux_sym_cmd_identifier_token31] = ACTIONS(1977), - [aux_sym_cmd_identifier_token32] = ACTIONS(1977), - [aux_sym_cmd_identifier_token33] = ACTIONS(1977), - [aux_sym_cmd_identifier_token34] = ACTIONS(1977), - [aux_sym_cmd_identifier_token35] = ACTIONS(1977), - [aux_sym_cmd_identifier_token36] = ACTIONS(1977), - [aux_sym_cmd_identifier_token37] = ACTIONS(1977), - [aux_sym_cmd_identifier_token38] = ACTIONS(1977), - [aux_sym_cmd_identifier_token39] = ACTIONS(1977), - [aux_sym_cmd_identifier_token40] = ACTIONS(1977), - [anon_sym_def] = ACTIONS(1977), - [anon_sym_export_DASHenv] = ACTIONS(1977), - [anon_sym_extern] = ACTIONS(1977), - [anon_sym_module] = ACTIONS(1977), - [anon_sym_use] = ACTIONS(1977), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_COMMA] = ACTIONS(1977), - [anon_sym_DOLLAR] = ACTIONS(1977), - [anon_sym_error] = ACTIONS(1977), - [anon_sym_DASH2] = ACTIONS(1977), - [anon_sym_break] = ACTIONS(1977), - [anon_sym_continue] = ACTIONS(1977), - [anon_sym_for] = ACTIONS(1977), - [anon_sym_in2] = ACTIONS(1977), - [anon_sym_loop] = ACTIONS(1977), - [anon_sym_make] = ACTIONS(1977), - [anon_sym_while] = ACTIONS(1977), - [anon_sym_do] = ACTIONS(1977), - [anon_sym_if] = ACTIONS(1977), - [anon_sym_else] = ACTIONS(1977), - [anon_sym_match] = ACTIONS(1977), - [anon_sym_RBRACE] = ACTIONS(1977), - [anon_sym_try] = ACTIONS(1977), - [anon_sym_catch] = ACTIONS(1977), - [anon_sym_return] = ACTIONS(1977), - [anon_sym_source] = ACTIONS(1977), - [anon_sym_source_DASHenv] = ACTIONS(1977), - [anon_sym_hide] = ACTIONS(1977), - [anon_sym_hide_DASHenv] = ACTIONS(1977), - [anon_sym_overlay] = ACTIONS(1977), - [anon_sym_as] = ACTIONS(1977), - [anon_sym_PLUS2] = ACTIONS(1977), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1977), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1977), - [aux_sym__val_number_decimal_token1] = ACTIONS(1977), - [aux_sym__val_number_decimal_token2] = ACTIONS(1977), - [aux_sym__val_number_decimal_token3] = ACTIONS(1977), - [aux_sym__val_number_decimal_token4] = ACTIONS(1977), - [aux_sym__val_number_token1] = ACTIONS(1977), - [aux_sym__val_number_token2] = ACTIONS(1977), - [aux_sym__val_number_token3] = ACTIONS(1977), - [aux_sym__val_number_token4] = ACTIONS(1977), - [aux_sym__val_number_token5] = ACTIONS(1977), - [aux_sym__val_number_token6] = ACTIONS(1977), - [anon_sym_DQUOTE] = ACTIONS(1977), - [sym__str_single_quotes] = ACTIONS(1977), - [sym__str_back_ticks] = ACTIONS(1977), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1977), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1977), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1977), - [sym__entry_separator] = ACTIONS(1983), - [anon_sym_register] = ACTIONS(1977), + [anon_sym_export] = ACTIONS(1949), + [anon_sym_alias] = ACTIONS(1949), + [anon_sym_let] = ACTIONS(1949), + [anon_sym_let_DASHenv] = ACTIONS(1949), + [anon_sym_mut] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(1949), + [aux_sym_cmd_identifier_token1] = ACTIONS(1949), + [aux_sym_cmd_identifier_token2] = ACTIONS(1949), + [aux_sym_cmd_identifier_token3] = ACTIONS(1949), + [aux_sym_cmd_identifier_token4] = ACTIONS(1949), + [aux_sym_cmd_identifier_token5] = ACTIONS(1949), + [aux_sym_cmd_identifier_token6] = ACTIONS(1949), + [aux_sym_cmd_identifier_token7] = ACTIONS(1949), + [aux_sym_cmd_identifier_token8] = ACTIONS(1949), + [aux_sym_cmd_identifier_token9] = ACTIONS(1949), + [aux_sym_cmd_identifier_token10] = ACTIONS(1949), + [aux_sym_cmd_identifier_token11] = ACTIONS(1949), + [aux_sym_cmd_identifier_token12] = ACTIONS(1949), + [aux_sym_cmd_identifier_token13] = ACTIONS(1949), + [aux_sym_cmd_identifier_token14] = ACTIONS(1949), + [aux_sym_cmd_identifier_token15] = ACTIONS(1949), + [aux_sym_cmd_identifier_token16] = ACTIONS(1949), + [aux_sym_cmd_identifier_token17] = ACTIONS(1949), + [aux_sym_cmd_identifier_token18] = ACTIONS(1949), + [aux_sym_cmd_identifier_token19] = ACTIONS(1949), + [aux_sym_cmd_identifier_token20] = ACTIONS(1949), + [aux_sym_cmd_identifier_token21] = ACTIONS(1949), + [aux_sym_cmd_identifier_token22] = ACTIONS(1949), + [aux_sym_cmd_identifier_token23] = ACTIONS(1949), + [aux_sym_cmd_identifier_token24] = ACTIONS(1949), + [aux_sym_cmd_identifier_token25] = ACTIONS(1949), + [aux_sym_cmd_identifier_token26] = ACTIONS(1949), + [aux_sym_cmd_identifier_token27] = ACTIONS(1949), + [aux_sym_cmd_identifier_token28] = ACTIONS(1949), + [aux_sym_cmd_identifier_token29] = ACTIONS(1949), + [aux_sym_cmd_identifier_token30] = ACTIONS(1949), + [aux_sym_cmd_identifier_token31] = ACTIONS(1949), + [aux_sym_cmd_identifier_token32] = ACTIONS(1949), + [aux_sym_cmd_identifier_token33] = ACTIONS(1949), + [aux_sym_cmd_identifier_token34] = ACTIONS(1949), + [aux_sym_cmd_identifier_token35] = ACTIONS(1949), + [aux_sym_cmd_identifier_token36] = ACTIONS(1949), + [aux_sym_cmd_identifier_token37] = ACTIONS(1949), + [aux_sym_cmd_identifier_token38] = ACTIONS(1949), + [aux_sym_cmd_identifier_token39] = ACTIONS(1949), + [aux_sym_cmd_identifier_token40] = ACTIONS(1949), + [anon_sym_def] = ACTIONS(1949), + [anon_sym_export_DASHenv] = ACTIONS(1949), + [anon_sym_extern] = ACTIONS(1949), + [anon_sym_module] = ACTIONS(1949), + [anon_sym_use] = ACTIONS(1949), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_COMMA] = ACTIONS(1949), + [anon_sym_DOLLAR] = ACTIONS(1949), + [anon_sym_error] = ACTIONS(1949), + [anon_sym_DASH2] = ACTIONS(1949), + [anon_sym_break] = ACTIONS(1949), + [anon_sym_continue] = ACTIONS(1949), + [anon_sym_for] = ACTIONS(1949), + [anon_sym_in2] = ACTIONS(1949), + [anon_sym_loop] = ACTIONS(1949), + [anon_sym_make] = ACTIONS(1949), + [anon_sym_while] = ACTIONS(1949), + [anon_sym_do] = ACTIONS(1949), + [anon_sym_if] = ACTIONS(1949), + [anon_sym_else] = ACTIONS(1949), + [anon_sym_match] = ACTIONS(1949), + [anon_sym_RBRACE] = ACTIONS(1949), + [anon_sym_try] = ACTIONS(1949), + [anon_sym_catch] = ACTIONS(1949), + [anon_sym_return] = ACTIONS(1949), + [anon_sym_source] = ACTIONS(1949), + [anon_sym_source_DASHenv] = ACTIONS(1949), + [anon_sym_hide] = ACTIONS(1949), + [anon_sym_hide_DASHenv] = ACTIONS(1949), + [anon_sym_overlay] = ACTIONS(1949), + [anon_sym_as] = ACTIONS(1949), + [anon_sym_PLUS2] = ACTIONS(1949), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1949), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1949), + [aux_sym__val_number_decimal_token1] = ACTIONS(1949), + [aux_sym__val_number_decimal_token2] = ACTIONS(1949), + [aux_sym__val_number_decimal_token3] = ACTIONS(1949), + [aux_sym__val_number_decimal_token4] = ACTIONS(1949), + [aux_sym__val_number_token1] = ACTIONS(1949), + [aux_sym__val_number_token2] = ACTIONS(1949), + [aux_sym__val_number_token3] = ACTIONS(1949), + [aux_sym__val_number_token4] = ACTIONS(1949), + [aux_sym__val_number_token5] = ACTIONS(1949), + [aux_sym__val_number_token6] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(1949), + [sym__str_single_quotes] = ACTIONS(1949), + [sym__str_back_ticks] = ACTIONS(1949), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1949), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1949), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1949), + [sym__entry_separator] = ACTIONS(1955), + [anon_sym_register] = ACTIONS(1949), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1983), + [sym_raw_string_begin] = ACTIONS(1955), }, [594] = { [sym_comment] = STATE(594), - [anon_sym_export] = ACTIONS(1666), - [anon_sym_alias] = ACTIONS(1666), - [anon_sym_let] = ACTIONS(1666), - [anon_sym_let_DASHenv] = ACTIONS(1666), - [anon_sym_mut] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [aux_sym_cmd_identifier_token1] = ACTIONS(1666), - [aux_sym_cmd_identifier_token2] = ACTIONS(1668), - [aux_sym_cmd_identifier_token3] = ACTIONS(1668), - [aux_sym_cmd_identifier_token4] = ACTIONS(1668), - [aux_sym_cmd_identifier_token5] = ACTIONS(1668), - [aux_sym_cmd_identifier_token6] = ACTIONS(1668), - [aux_sym_cmd_identifier_token7] = ACTIONS(1668), - [aux_sym_cmd_identifier_token8] = ACTIONS(1666), - [aux_sym_cmd_identifier_token9] = ACTIONS(1666), - [aux_sym_cmd_identifier_token10] = ACTIONS(1668), - [aux_sym_cmd_identifier_token11] = ACTIONS(1668), - [aux_sym_cmd_identifier_token12] = ACTIONS(1666), - [aux_sym_cmd_identifier_token13] = ACTIONS(1666), - [aux_sym_cmd_identifier_token14] = ACTIONS(1666), - [aux_sym_cmd_identifier_token15] = ACTIONS(1666), - [aux_sym_cmd_identifier_token16] = ACTIONS(1668), - [aux_sym_cmd_identifier_token17] = ACTIONS(1668), - [aux_sym_cmd_identifier_token18] = ACTIONS(1668), - [aux_sym_cmd_identifier_token19] = ACTIONS(1668), - [aux_sym_cmd_identifier_token20] = ACTIONS(1668), - [aux_sym_cmd_identifier_token21] = ACTIONS(1668), - [aux_sym_cmd_identifier_token22] = ACTIONS(1668), - [aux_sym_cmd_identifier_token23] = ACTIONS(1668), - [aux_sym_cmd_identifier_token24] = ACTIONS(1668), - [aux_sym_cmd_identifier_token25] = ACTIONS(1668), - [aux_sym_cmd_identifier_token26] = ACTIONS(1668), - [aux_sym_cmd_identifier_token27] = ACTIONS(1668), - [aux_sym_cmd_identifier_token28] = ACTIONS(1668), - [aux_sym_cmd_identifier_token29] = ACTIONS(1668), - [aux_sym_cmd_identifier_token30] = ACTIONS(1668), - [aux_sym_cmd_identifier_token31] = ACTIONS(1668), - [aux_sym_cmd_identifier_token32] = ACTIONS(1668), - [aux_sym_cmd_identifier_token33] = ACTIONS(1668), - [aux_sym_cmd_identifier_token34] = ACTIONS(1666), - [aux_sym_cmd_identifier_token35] = ACTIONS(1668), - [aux_sym_cmd_identifier_token36] = ACTIONS(1668), - [aux_sym_cmd_identifier_token37] = ACTIONS(1668), - [aux_sym_cmd_identifier_token38] = ACTIONS(1666), - [aux_sym_cmd_identifier_token39] = ACTIONS(1668), - [aux_sym_cmd_identifier_token40] = ACTIONS(1668), - [anon_sym_def] = ACTIONS(1666), - [anon_sym_export_DASHenv] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_module] = ACTIONS(1666), - [anon_sym_use] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_error] = ACTIONS(1666), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_in2] = ACTIONS(1666), - [anon_sym_loop] = ACTIONS(1666), - [anon_sym_make] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_do] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_match] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_try] = ACTIONS(1666), - [anon_sym_catch] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_source] = ACTIONS(1666), - [anon_sym_source_DASHenv] = ACTIONS(1666), - [anon_sym_hide] = ACTIONS(1666), - [anon_sym_hide_DASHenv] = ACTIONS(1666), - [anon_sym_overlay] = ACTIONS(1666), - [anon_sym_as] = ACTIONS(1666), - [anon_sym_PLUS2] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1668), - [aux_sym__immediate_decimal_token2] = ACTIONS(2288), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1666), - [aux_sym__val_number_token5] = ACTIONS(1666), - [aux_sym__val_number_token6] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), + [anon_sym_export] = ACTIONS(1957), + [anon_sym_alias] = ACTIONS(1957), + [anon_sym_let] = ACTIONS(1957), + [anon_sym_let_DASHenv] = ACTIONS(1957), + [anon_sym_mut] = ACTIONS(1957), + [anon_sym_const] = ACTIONS(1957), + [aux_sym_cmd_identifier_token1] = ACTIONS(1957), + [aux_sym_cmd_identifier_token2] = ACTIONS(1957), + [aux_sym_cmd_identifier_token3] = ACTIONS(1957), + [aux_sym_cmd_identifier_token4] = ACTIONS(1957), + [aux_sym_cmd_identifier_token5] = ACTIONS(1957), + [aux_sym_cmd_identifier_token6] = ACTIONS(1957), + [aux_sym_cmd_identifier_token7] = ACTIONS(1957), + [aux_sym_cmd_identifier_token8] = ACTIONS(1957), + [aux_sym_cmd_identifier_token9] = ACTIONS(1957), + [aux_sym_cmd_identifier_token10] = ACTIONS(1957), + [aux_sym_cmd_identifier_token11] = ACTIONS(1957), + [aux_sym_cmd_identifier_token12] = ACTIONS(1957), + [aux_sym_cmd_identifier_token13] = ACTIONS(1957), + [aux_sym_cmd_identifier_token14] = ACTIONS(1957), + [aux_sym_cmd_identifier_token15] = ACTIONS(1957), + [aux_sym_cmd_identifier_token16] = ACTIONS(1957), + [aux_sym_cmd_identifier_token17] = ACTIONS(1957), + [aux_sym_cmd_identifier_token18] = ACTIONS(1957), + [aux_sym_cmd_identifier_token19] = ACTIONS(1957), + [aux_sym_cmd_identifier_token20] = ACTIONS(1957), + [aux_sym_cmd_identifier_token21] = ACTIONS(1957), + [aux_sym_cmd_identifier_token22] = ACTIONS(1957), + [aux_sym_cmd_identifier_token23] = ACTIONS(1957), + [aux_sym_cmd_identifier_token24] = ACTIONS(1957), + [aux_sym_cmd_identifier_token25] = ACTIONS(1957), + [aux_sym_cmd_identifier_token26] = ACTIONS(1957), + [aux_sym_cmd_identifier_token27] = ACTIONS(1957), + [aux_sym_cmd_identifier_token28] = ACTIONS(1957), + [aux_sym_cmd_identifier_token29] = ACTIONS(1957), + [aux_sym_cmd_identifier_token30] = ACTIONS(1957), + [aux_sym_cmd_identifier_token31] = ACTIONS(1957), + [aux_sym_cmd_identifier_token32] = ACTIONS(1957), + [aux_sym_cmd_identifier_token33] = ACTIONS(1957), + [aux_sym_cmd_identifier_token34] = ACTIONS(1957), + [aux_sym_cmd_identifier_token35] = ACTIONS(1957), + [aux_sym_cmd_identifier_token36] = ACTIONS(1957), + [aux_sym_cmd_identifier_token37] = ACTIONS(1957), + [aux_sym_cmd_identifier_token38] = ACTIONS(1957), + [aux_sym_cmd_identifier_token39] = ACTIONS(1957), + [aux_sym_cmd_identifier_token40] = ACTIONS(1957), + [anon_sym_def] = ACTIONS(1957), + [anon_sym_export_DASHenv] = ACTIONS(1957), + [anon_sym_extern] = ACTIONS(1957), + [anon_sym_module] = ACTIONS(1957), + [anon_sym_use] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(1957), + [anon_sym_COMMA] = ACTIONS(1957), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_error] = ACTIONS(1957), + [anon_sym_DASH2] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_in2] = ACTIONS(1957), + [anon_sym_loop] = ACTIONS(1957), + [anon_sym_make] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_do] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_else] = ACTIONS(1957), + [anon_sym_match] = ACTIONS(1957), + [anon_sym_RBRACE] = ACTIONS(1957), + [anon_sym_try] = ACTIONS(1957), + [anon_sym_catch] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_source] = ACTIONS(1957), + [anon_sym_source_DASHenv] = ACTIONS(1957), + [anon_sym_hide] = ACTIONS(1957), + [anon_sym_hide_DASHenv] = ACTIONS(1957), + [anon_sym_overlay] = ACTIONS(1957), + [anon_sym_as] = ACTIONS(1957), + [anon_sym_PLUS2] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1957), + [aux_sym__val_number_decimal_token1] = ACTIONS(1957), + [aux_sym__val_number_decimal_token2] = ACTIONS(1957), + [aux_sym__val_number_decimal_token3] = ACTIONS(1957), + [aux_sym__val_number_decimal_token4] = ACTIONS(1957), + [aux_sym__val_number_token1] = ACTIONS(1957), + [aux_sym__val_number_token2] = ACTIONS(1957), + [aux_sym__val_number_token3] = ACTIONS(1957), + [aux_sym__val_number_token4] = ACTIONS(1957), + [aux_sym__val_number_token5] = ACTIONS(1957), + [aux_sym__val_number_token6] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(1957), + [sym__str_single_quotes] = ACTIONS(1957), + [sym__str_back_ticks] = ACTIONS(1957), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1957), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1957), + [sym__entry_separator] = ACTIONS(1963), + [anon_sym_register] = ACTIONS(1957), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1963), }, [595] = { [sym_comment] = STATE(595), - [anon_sym_export] = ACTIONS(1955), - [anon_sym_alias] = ACTIONS(1955), - [anon_sym_let] = ACTIONS(1955), - [anon_sym_let_DASHenv] = ACTIONS(1955), - [anon_sym_mut] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [aux_sym_cmd_identifier_token1] = ACTIONS(1955), - [aux_sym_cmd_identifier_token2] = ACTIONS(1955), - [aux_sym_cmd_identifier_token3] = ACTIONS(1955), - [aux_sym_cmd_identifier_token4] = ACTIONS(1955), - [aux_sym_cmd_identifier_token5] = ACTIONS(1955), - [aux_sym_cmd_identifier_token6] = ACTIONS(1955), - [aux_sym_cmd_identifier_token7] = ACTIONS(1955), - [aux_sym_cmd_identifier_token8] = ACTIONS(1955), - [aux_sym_cmd_identifier_token9] = ACTIONS(1955), - [aux_sym_cmd_identifier_token10] = ACTIONS(1955), - [aux_sym_cmd_identifier_token11] = ACTIONS(1955), - [aux_sym_cmd_identifier_token12] = ACTIONS(1955), - [aux_sym_cmd_identifier_token13] = ACTIONS(1955), - [aux_sym_cmd_identifier_token14] = ACTIONS(1955), - [aux_sym_cmd_identifier_token15] = ACTIONS(1955), - [aux_sym_cmd_identifier_token16] = ACTIONS(1955), - [aux_sym_cmd_identifier_token17] = ACTIONS(1955), - [aux_sym_cmd_identifier_token18] = ACTIONS(1955), - [aux_sym_cmd_identifier_token19] = ACTIONS(1955), - [aux_sym_cmd_identifier_token20] = ACTIONS(1955), - [aux_sym_cmd_identifier_token21] = ACTIONS(1955), - [aux_sym_cmd_identifier_token22] = ACTIONS(1955), - [aux_sym_cmd_identifier_token23] = ACTIONS(1955), - [aux_sym_cmd_identifier_token24] = ACTIONS(1955), - [aux_sym_cmd_identifier_token25] = ACTIONS(1955), - [aux_sym_cmd_identifier_token26] = ACTIONS(1955), - [aux_sym_cmd_identifier_token27] = ACTIONS(1955), - [aux_sym_cmd_identifier_token28] = ACTIONS(1955), - [aux_sym_cmd_identifier_token29] = ACTIONS(1955), - [aux_sym_cmd_identifier_token30] = ACTIONS(1955), - [aux_sym_cmd_identifier_token31] = ACTIONS(1955), - [aux_sym_cmd_identifier_token32] = ACTIONS(1955), - [aux_sym_cmd_identifier_token33] = ACTIONS(1955), - [aux_sym_cmd_identifier_token34] = ACTIONS(1955), - [aux_sym_cmd_identifier_token35] = ACTIONS(1955), - [aux_sym_cmd_identifier_token36] = ACTIONS(1955), - [aux_sym_cmd_identifier_token37] = ACTIONS(1955), - [aux_sym_cmd_identifier_token38] = ACTIONS(1955), - [aux_sym_cmd_identifier_token39] = ACTIONS(1955), - [aux_sym_cmd_identifier_token40] = ACTIONS(1955), - [anon_sym_def] = ACTIONS(1955), - [anon_sym_export_DASHenv] = ACTIONS(1955), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym_module] = ACTIONS(1955), - [anon_sym_use] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_COMMA] = ACTIONS(1955), - [anon_sym_DOLLAR] = ACTIONS(1955), - [anon_sym_error] = ACTIONS(1955), - [anon_sym_DASH2] = ACTIONS(1955), - [anon_sym_break] = ACTIONS(1955), - [anon_sym_continue] = ACTIONS(1955), - [anon_sym_for] = ACTIONS(1955), - [anon_sym_in2] = ACTIONS(1955), - [anon_sym_loop] = ACTIONS(1955), - [anon_sym_make] = ACTIONS(1955), - [anon_sym_while] = ACTIONS(1955), - [anon_sym_do] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1955), - [anon_sym_else] = ACTIONS(1955), - [anon_sym_match] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1955), - [anon_sym_try] = ACTIONS(1955), - [anon_sym_catch] = ACTIONS(1955), - [anon_sym_return] = ACTIONS(1955), - [anon_sym_source] = ACTIONS(1955), - [anon_sym_source_DASHenv] = ACTIONS(1955), - [anon_sym_hide] = ACTIONS(1955), - [anon_sym_hide_DASHenv] = ACTIONS(1955), - [anon_sym_overlay] = ACTIONS(1955), - [anon_sym_as] = ACTIONS(1955), - [anon_sym_PLUS2] = ACTIONS(1955), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1955), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1955), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1955), - [aux_sym__val_number_decimal_token3] = ACTIONS(1955), - [aux_sym__val_number_decimal_token4] = ACTIONS(1955), - [aux_sym__val_number_token1] = ACTIONS(1955), - [aux_sym__val_number_token2] = ACTIONS(1955), - [aux_sym__val_number_token3] = ACTIONS(1955), - [aux_sym__val_number_token4] = ACTIONS(1955), - [aux_sym__val_number_token5] = ACTIONS(1955), - [aux_sym__val_number_token6] = ACTIONS(1955), - [anon_sym_DQUOTE] = ACTIONS(1955), - [sym__str_single_quotes] = ACTIONS(1955), - [sym__str_back_ticks] = ACTIONS(1955), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1955), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1955), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1955), - [sym__entry_separator] = ACTIONS(1957), - [anon_sym_register] = ACTIONS(1955), + [anon_sym_export] = ACTIONS(1965), + [anon_sym_alias] = ACTIONS(1965), + [anon_sym_let] = ACTIONS(1965), + [anon_sym_let_DASHenv] = ACTIONS(1965), + [anon_sym_mut] = ACTIONS(1965), + [anon_sym_const] = ACTIONS(1965), + [aux_sym_cmd_identifier_token1] = ACTIONS(1965), + [aux_sym_cmd_identifier_token2] = ACTIONS(1965), + [aux_sym_cmd_identifier_token3] = ACTIONS(1965), + [aux_sym_cmd_identifier_token4] = ACTIONS(1965), + [aux_sym_cmd_identifier_token5] = ACTIONS(1965), + [aux_sym_cmd_identifier_token6] = ACTIONS(1965), + [aux_sym_cmd_identifier_token7] = ACTIONS(1965), + [aux_sym_cmd_identifier_token8] = ACTIONS(1965), + [aux_sym_cmd_identifier_token9] = ACTIONS(1965), + [aux_sym_cmd_identifier_token10] = ACTIONS(1965), + [aux_sym_cmd_identifier_token11] = ACTIONS(1965), + [aux_sym_cmd_identifier_token12] = ACTIONS(1965), + [aux_sym_cmd_identifier_token13] = ACTIONS(1965), + [aux_sym_cmd_identifier_token14] = ACTIONS(1965), + [aux_sym_cmd_identifier_token15] = ACTIONS(1965), + [aux_sym_cmd_identifier_token16] = ACTIONS(1965), + [aux_sym_cmd_identifier_token17] = ACTIONS(1965), + [aux_sym_cmd_identifier_token18] = ACTIONS(1965), + [aux_sym_cmd_identifier_token19] = ACTIONS(1965), + [aux_sym_cmd_identifier_token20] = ACTIONS(1965), + [aux_sym_cmd_identifier_token21] = ACTIONS(1965), + [aux_sym_cmd_identifier_token22] = ACTIONS(1965), + [aux_sym_cmd_identifier_token23] = ACTIONS(1965), + [aux_sym_cmd_identifier_token24] = ACTIONS(1965), + [aux_sym_cmd_identifier_token25] = ACTIONS(1965), + [aux_sym_cmd_identifier_token26] = ACTIONS(1965), + [aux_sym_cmd_identifier_token27] = ACTIONS(1965), + [aux_sym_cmd_identifier_token28] = ACTIONS(1965), + [aux_sym_cmd_identifier_token29] = ACTIONS(1965), + [aux_sym_cmd_identifier_token30] = ACTIONS(1965), + [aux_sym_cmd_identifier_token31] = ACTIONS(1965), + [aux_sym_cmd_identifier_token32] = ACTIONS(1965), + [aux_sym_cmd_identifier_token33] = ACTIONS(1965), + [aux_sym_cmd_identifier_token34] = ACTIONS(1965), + [aux_sym_cmd_identifier_token35] = ACTIONS(1965), + [aux_sym_cmd_identifier_token36] = ACTIONS(1965), + [aux_sym_cmd_identifier_token37] = ACTIONS(1965), + [aux_sym_cmd_identifier_token38] = ACTIONS(1965), + [aux_sym_cmd_identifier_token39] = ACTIONS(1965), + [aux_sym_cmd_identifier_token40] = ACTIONS(1965), + [anon_sym_def] = ACTIONS(1965), + [anon_sym_export_DASHenv] = ACTIONS(1965), + [anon_sym_extern] = ACTIONS(1965), + [anon_sym_module] = ACTIONS(1965), + [anon_sym_use] = ACTIONS(1965), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_COMMA] = ACTIONS(1965), + [anon_sym_DOLLAR] = ACTIONS(1965), + [anon_sym_error] = ACTIONS(1965), + [anon_sym_DASH2] = ACTIONS(1965), + [anon_sym_break] = ACTIONS(1965), + [anon_sym_continue] = ACTIONS(1965), + [anon_sym_for] = ACTIONS(1965), + [anon_sym_in2] = ACTIONS(1965), + [anon_sym_loop] = ACTIONS(1965), + [anon_sym_make] = ACTIONS(1965), + [anon_sym_while] = ACTIONS(1965), + [anon_sym_do] = ACTIONS(1965), + [anon_sym_if] = ACTIONS(1965), + [anon_sym_else] = ACTIONS(1965), + [anon_sym_match] = ACTIONS(1965), + [anon_sym_RBRACE] = ACTIONS(1965), + [anon_sym_try] = ACTIONS(1965), + [anon_sym_catch] = ACTIONS(1965), + [anon_sym_return] = ACTIONS(1965), + [anon_sym_source] = ACTIONS(1965), + [anon_sym_source_DASHenv] = ACTIONS(1965), + [anon_sym_hide] = ACTIONS(1965), + [anon_sym_hide_DASHenv] = ACTIONS(1965), + [anon_sym_overlay] = ACTIONS(1965), + [anon_sym_as] = ACTIONS(1965), + [anon_sym_PLUS2] = ACTIONS(1965), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1965), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1965), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1965), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1965), + [aux_sym__val_number_token1] = ACTIONS(1965), + [aux_sym__val_number_token2] = ACTIONS(1965), + [aux_sym__val_number_token3] = ACTIONS(1965), + [aux_sym__val_number_token4] = ACTIONS(1965), + [aux_sym__val_number_token5] = ACTIONS(1965), + [aux_sym__val_number_token6] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1965), + [sym__str_single_quotes] = ACTIONS(1965), + [sym__str_back_ticks] = ACTIONS(1965), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1965), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1965), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1965), + [sym__entry_separator] = ACTIONS(1971), + [anon_sym_register] = ACTIONS(1965), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1957), + [sym_raw_string_begin] = ACTIONS(1971), }, [596] = { [sym_comment] = STATE(596), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_alias] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_let_DASHenv] = ACTIONS(1719), - [anon_sym_mut] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [aux_sym_cmd_identifier_token1] = ACTIONS(1719), - [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(1719), - [aux_sym_cmd_identifier_token9] = ACTIONS(1719), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1719), - [aux_sym_cmd_identifier_token13] = ACTIONS(1719), - [aux_sym_cmd_identifier_token14] = ACTIONS(1719), - [aux_sym_cmd_identifier_token15] = ACTIONS(1719), - [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(1719), - [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(1719), - [aux_sym_cmd_identifier_token39] = ACTIONS(1721), - [aux_sym_cmd_identifier_token40] = ACTIONS(1721), - [anon_sym_def] = ACTIONS(1719), - [anon_sym_export_DASHenv] = ACTIONS(1719), - [anon_sym_extern] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_use] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_COMMA] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_error] = ACTIONS(1719), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_in2] = ACTIONS(1719), - [anon_sym_loop] = ACTIONS(1719), - [anon_sym_make] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_match] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_catch] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_source] = ACTIONS(1719), - [anon_sym_source_DASHenv] = ACTIONS(1719), - [anon_sym_hide] = ACTIONS(1719), - [anon_sym_hide_DASHenv] = ACTIONS(1719), - [anon_sym_overlay] = ACTIONS(1719), - [anon_sym_as] = ACTIONS(1719), - [anon_sym_PLUS2] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), - [aux_sym__immediate_decimal_token2] = ACTIONS(2304), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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(1719), - [aux_sym__val_number_token5] = ACTIONS(1719), - [aux_sym__val_number_token6] = ACTIONS(1719), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1721), + [anon_sym_export] = ACTIONS(2302), + [anon_sym_alias] = ACTIONS(2302), + [anon_sym_let] = ACTIONS(2302), + [anon_sym_let_DASHenv] = ACTIONS(2302), + [anon_sym_mut] = ACTIONS(2302), + [anon_sym_const] = ACTIONS(2302), + [aux_sym_cmd_identifier_token1] = ACTIONS(2302), + [aux_sym_cmd_identifier_token2] = ACTIONS(2302), + [aux_sym_cmd_identifier_token3] = ACTIONS(2302), + [aux_sym_cmd_identifier_token4] = ACTIONS(2302), + [aux_sym_cmd_identifier_token5] = ACTIONS(2302), + [aux_sym_cmd_identifier_token6] = ACTIONS(2302), + [aux_sym_cmd_identifier_token7] = ACTIONS(2302), + [aux_sym_cmd_identifier_token8] = ACTIONS(2302), + [aux_sym_cmd_identifier_token9] = ACTIONS(2302), + [aux_sym_cmd_identifier_token10] = ACTIONS(2302), + [aux_sym_cmd_identifier_token11] = ACTIONS(2302), + [aux_sym_cmd_identifier_token12] = ACTIONS(2302), + [aux_sym_cmd_identifier_token13] = ACTIONS(2302), + [aux_sym_cmd_identifier_token14] = ACTIONS(2302), + [aux_sym_cmd_identifier_token15] = ACTIONS(2302), + [aux_sym_cmd_identifier_token16] = ACTIONS(2302), + [aux_sym_cmd_identifier_token17] = ACTIONS(2302), + [aux_sym_cmd_identifier_token18] = ACTIONS(2302), + [aux_sym_cmd_identifier_token19] = ACTIONS(2302), + [aux_sym_cmd_identifier_token20] = ACTIONS(2302), + [aux_sym_cmd_identifier_token21] = ACTIONS(2302), + [aux_sym_cmd_identifier_token22] = ACTIONS(2302), + [aux_sym_cmd_identifier_token23] = ACTIONS(2302), + [aux_sym_cmd_identifier_token24] = ACTIONS(2302), + [aux_sym_cmd_identifier_token25] = ACTIONS(2302), + [aux_sym_cmd_identifier_token26] = ACTIONS(2302), + [aux_sym_cmd_identifier_token27] = ACTIONS(2302), + [aux_sym_cmd_identifier_token28] = ACTIONS(2302), + [aux_sym_cmd_identifier_token29] = ACTIONS(2302), + [aux_sym_cmd_identifier_token30] = ACTIONS(2302), + [aux_sym_cmd_identifier_token31] = ACTIONS(2302), + [aux_sym_cmd_identifier_token32] = ACTIONS(2302), + [aux_sym_cmd_identifier_token33] = ACTIONS(2302), + [aux_sym_cmd_identifier_token34] = ACTIONS(2302), + [aux_sym_cmd_identifier_token35] = ACTIONS(2302), + [aux_sym_cmd_identifier_token36] = ACTIONS(2302), + [aux_sym_cmd_identifier_token37] = ACTIONS(2302), + [aux_sym_cmd_identifier_token38] = ACTIONS(2302), + [aux_sym_cmd_identifier_token39] = ACTIONS(2302), + [aux_sym_cmd_identifier_token40] = ACTIONS(2302), + [anon_sym_def] = ACTIONS(2302), + [anon_sym_export_DASHenv] = ACTIONS(2302), + [anon_sym_extern] = ACTIONS(2302), + [anon_sym_module] = ACTIONS(2302), + [anon_sym_use] = ACTIONS(2302), + [anon_sym_LPAREN] = ACTIONS(2302), + [anon_sym_COMMA] = ACTIONS(2302), + [anon_sym_DOLLAR] = ACTIONS(2302), + [anon_sym_error] = ACTIONS(2302), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_break] = ACTIONS(2302), + [anon_sym_continue] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(2302), + [anon_sym_in2] = ACTIONS(2302), + [anon_sym_loop] = ACTIONS(2302), + [anon_sym_make] = ACTIONS(2302), + [anon_sym_while] = ACTIONS(2302), + [anon_sym_do] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2302), + [anon_sym_else] = ACTIONS(2302), + [anon_sym_match] = ACTIONS(2302), + [anon_sym_RBRACE] = ACTIONS(2302), + [anon_sym_try] = ACTIONS(2302), + [anon_sym_catch] = ACTIONS(2302), + [anon_sym_return] = ACTIONS(2302), + [anon_sym_source] = ACTIONS(2302), + [anon_sym_source_DASHenv] = ACTIONS(2302), + [anon_sym_hide] = ACTIONS(2302), + [anon_sym_hide_DASHenv] = ACTIONS(2302), + [anon_sym_overlay] = ACTIONS(2302), + [anon_sym_as] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2302), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2302), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2302), + [aux_sym__val_number_decimal_token1] = ACTIONS(2302), + [aux_sym__val_number_decimal_token2] = ACTIONS(2302), + [aux_sym__val_number_decimal_token3] = ACTIONS(2302), + [aux_sym__val_number_decimal_token4] = ACTIONS(2302), + [aux_sym__val_number_token1] = ACTIONS(2302), + [aux_sym__val_number_token2] = ACTIONS(2302), + [aux_sym__val_number_token3] = ACTIONS(2302), + [aux_sym__val_number_token4] = ACTIONS(2302), + [aux_sym__val_number_token5] = ACTIONS(2302), + [aux_sym__val_number_token6] = ACTIONS(2302), + [anon_sym_DQUOTE] = ACTIONS(2302), + [sym__str_single_quotes] = ACTIONS(2302), + [sym__str_back_ticks] = ACTIONS(2302), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2302), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2302), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2302), + [sym__entry_separator] = ACTIONS(2304), + [anon_sym_register] = ACTIONS(2302), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2304), }, [597] = { [sym_comment] = STATE(597), - [anon_sym_export] = ACTIONS(1901), - [anon_sym_alias] = ACTIONS(1901), - [anon_sym_let] = ACTIONS(1901), - [anon_sym_let_DASHenv] = ACTIONS(1901), - [anon_sym_mut] = ACTIONS(1901), - [anon_sym_const] = ACTIONS(1901), - [aux_sym_cmd_identifier_token1] = ACTIONS(1901), - [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(1901), - [aux_sym_cmd_identifier_token9] = ACTIONS(1901), - [aux_sym_cmd_identifier_token10] = ACTIONS(1901), - [aux_sym_cmd_identifier_token11] = ACTIONS(1901), - [aux_sym_cmd_identifier_token12] = ACTIONS(1901), - [aux_sym_cmd_identifier_token13] = ACTIONS(1901), - [aux_sym_cmd_identifier_token14] = ACTIONS(1901), - [aux_sym_cmd_identifier_token15] = ACTIONS(1901), - [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(1901), - [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(1901), - [aux_sym_cmd_identifier_token39] = ACTIONS(1901), - [aux_sym_cmd_identifier_token40] = ACTIONS(1901), - [anon_sym_def] = ACTIONS(1901), - [anon_sym_export_DASHenv] = ACTIONS(1901), - [anon_sym_extern] = ACTIONS(1901), - [anon_sym_module] = ACTIONS(1901), - [anon_sym_use] = ACTIONS(1901), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_COMMA] = ACTIONS(1901), - [anon_sym_DOLLAR] = ACTIONS(1901), - [anon_sym_error] = ACTIONS(1901), - [anon_sym_DASH2] = ACTIONS(1901), - [anon_sym_break] = ACTIONS(1901), - [anon_sym_continue] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_in2] = ACTIONS(1901), - [anon_sym_loop] = ACTIONS(1901), - [anon_sym_make] = ACTIONS(1901), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_do] = ACTIONS(1901), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_else] = ACTIONS(1901), - [anon_sym_match] = ACTIONS(1901), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_try] = ACTIONS(1901), - [anon_sym_catch] = ACTIONS(1901), - [anon_sym_return] = ACTIONS(1901), - [anon_sym_source] = ACTIONS(1901), - [anon_sym_source_DASHenv] = ACTIONS(1901), - [anon_sym_hide] = ACTIONS(1901), - [anon_sym_hide_DASHenv] = ACTIONS(1901), - [anon_sym_overlay] = ACTIONS(1901), - [anon_sym_as] = ACTIONS(1901), - [anon_sym_PLUS2] = ACTIONS(1901), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1901), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1901), - [aux_sym__val_number_decimal_token1] = ACTIONS(1901), - [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_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_DOT_DOT_DOT_LBRACE] = ACTIONS(1901), - [sym__entry_separator] = ACTIONS(1903), - [anon_sym_register] = ACTIONS(1901), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1903), - }, - [598] = { - [sym_comment] = STATE(598), [anon_sym_export] = ACTIONS(2306), [anon_sym_alias] = ACTIONS(2306), [anon_sym_let] = ACTIONS(2306), @@ -140527,8 +139247,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2308), }, - [599] = { - [sym_comment] = STATE(599), + [598] = { + [sym_comment] = STATE(598), [anon_sym_export] = ACTIONS(2310), [anon_sym_alias] = ACTIONS(2310), [anon_sym_let] = ACTIONS(2310), @@ -140630,1142 +139350,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2312), }, - [600] = { - [sym_comment] = STATE(600), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_alias] = ACTIONS(1963), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_let_DASHenv] = ACTIONS(1963), - [anon_sym_mut] = ACTIONS(1963), - [anon_sym_const] = ACTIONS(1963), - [aux_sym_cmd_identifier_token1] = ACTIONS(1963), - [aux_sym_cmd_identifier_token2] = ACTIONS(1963), - [aux_sym_cmd_identifier_token3] = ACTIONS(1963), - [aux_sym_cmd_identifier_token4] = ACTIONS(1963), - [aux_sym_cmd_identifier_token5] = ACTIONS(1963), - [aux_sym_cmd_identifier_token6] = ACTIONS(1963), - [aux_sym_cmd_identifier_token7] = ACTIONS(1963), - [aux_sym_cmd_identifier_token8] = ACTIONS(1963), - [aux_sym_cmd_identifier_token9] = ACTIONS(1963), - [aux_sym_cmd_identifier_token10] = ACTIONS(1963), - [aux_sym_cmd_identifier_token11] = ACTIONS(1963), - [aux_sym_cmd_identifier_token12] = ACTIONS(1963), - [aux_sym_cmd_identifier_token13] = ACTIONS(1963), - [aux_sym_cmd_identifier_token14] = ACTIONS(1963), - [aux_sym_cmd_identifier_token15] = ACTIONS(1963), - [aux_sym_cmd_identifier_token16] = ACTIONS(1963), - [aux_sym_cmd_identifier_token17] = ACTIONS(1963), - [aux_sym_cmd_identifier_token18] = ACTIONS(1963), - [aux_sym_cmd_identifier_token19] = ACTIONS(1963), - [aux_sym_cmd_identifier_token20] = ACTIONS(1963), - [aux_sym_cmd_identifier_token21] = ACTIONS(1963), - [aux_sym_cmd_identifier_token22] = ACTIONS(1963), - [aux_sym_cmd_identifier_token23] = ACTIONS(1963), - [aux_sym_cmd_identifier_token24] = ACTIONS(1963), - [aux_sym_cmd_identifier_token25] = ACTIONS(1963), - [aux_sym_cmd_identifier_token26] = ACTIONS(1963), - [aux_sym_cmd_identifier_token27] = ACTIONS(1963), - [aux_sym_cmd_identifier_token28] = ACTIONS(1963), - [aux_sym_cmd_identifier_token29] = ACTIONS(1963), - [aux_sym_cmd_identifier_token30] = ACTIONS(1963), - [aux_sym_cmd_identifier_token31] = ACTIONS(1963), - [aux_sym_cmd_identifier_token32] = ACTIONS(1963), - [aux_sym_cmd_identifier_token33] = ACTIONS(1963), - [aux_sym_cmd_identifier_token34] = ACTIONS(1963), - [aux_sym_cmd_identifier_token35] = ACTIONS(1963), - [aux_sym_cmd_identifier_token36] = ACTIONS(1963), - [aux_sym_cmd_identifier_token37] = ACTIONS(1963), - [aux_sym_cmd_identifier_token38] = ACTIONS(1963), - [aux_sym_cmd_identifier_token39] = ACTIONS(1963), - [aux_sym_cmd_identifier_token40] = ACTIONS(1963), - [anon_sym_def] = ACTIONS(1963), - [anon_sym_export_DASHenv] = ACTIONS(1963), - [anon_sym_extern] = ACTIONS(1963), - [anon_sym_module] = ACTIONS(1963), - [anon_sym_use] = ACTIONS(1963), - [anon_sym_LPAREN] = ACTIONS(1963), - [anon_sym_COMMA] = ACTIONS(1963), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_error] = ACTIONS(1963), - [anon_sym_DASH2] = ACTIONS(1963), - [anon_sym_break] = ACTIONS(1963), - [anon_sym_continue] = ACTIONS(1963), - [anon_sym_for] = ACTIONS(1963), - [anon_sym_in2] = ACTIONS(1963), - [anon_sym_loop] = ACTIONS(1963), - [anon_sym_make] = ACTIONS(1963), - [anon_sym_while] = ACTIONS(1963), - [anon_sym_do] = ACTIONS(1963), - [anon_sym_if] = ACTIONS(1963), - [anon_sym_else] = ACTIONS(1963), - [anon_sym_match] = ACTIONS(1963), - [anon_sym_RBRACE] = ACTIONS(1963), - [anon_sym_try] = ACTIONS(1963), - [anon_sym_catch] = ACTIONS(1963), - [anon_sym_return] = ACTIONS(1963), - [anon_sym_source] = ACTIONS(1963), - [anon_sym_source_DASHenv] = ACTIONS(1963), - [anon_sym_hide] = ACTIONS(1963), - [anon_sym_hide_DASHenv] = ACTIONS(1963), - [anon_sym_overlay] = ACTIONS(1963), - [anon_sym_as] = ACTIONS(1963), - [anon_sym_PLUS2] = ACTIONS(1963), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1963), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1963), - [aux_sym__val_number_decimal_token1] = ACTIONS(1963), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1963), - [aux_sym__val_number_decimal_token4] = ACTIONS(1963), - [aux_sym__val_number_token1] = ACTIONS(1963), - [aux_sym__val_number_token2] = ACTIONS(1963), - [aux_sym__val_number_token3] = ACTIONS(1963), - [aux_sym__val_number_token4] = ACTIONS(1963), - [aux_sym__val_number_token5] = ACTIONS(1963), - [aux_sym__val_number_token6] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1963), - [sym__str_single_quotes] = ACTIONS(1963), - [sym__str_back_ticks] = ACTIONS(1963), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1963), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1963), - [sym__entry_separator] = ACTIONS(1965), - [anon_sym_register] = ACTIONS(1963), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1965), - }, - [601] = { - [sym_comment] = STATE(601), - [anon_sym_export] = ACTIONS(1967), - [anon_sym_alias] = ACTIONS(1967), - [anon_sym_let] = ACTIONS(1967), - [anon_sym_let_DASHenv] = ACTIONS(1967), - [anon_sym_mut] = ACTIONS(1967), - [anon_sym_const] = ACTIONS(1967), - [aux_sym_cmd_identifier_token1] = ACTIONS(1967), - [aux_sym_cmd_identifier_token2] = ACTIONS(1967), - [aux_sym_cmd_identifier_token3] = ACTIONS(1967), - [aux_sym_cmd_identifier_token4] = ACTIONS(1967), - [aux_sym_cmd_identifier_token5] = ACTIONS(1967), - [aux_sym_cmd_identifier_token6] = ACTIONS(1967), - [aux_sym_cmd_identifier_token7] = ACTIONS(1967), - [aux_sym_cmd_identifier_token8] = ACTIONS(1967), - [aux_sym_cmd_identifier_token9] = ACTIONS(1967), - [aux_sym_cmd_identifier_token10] = ACTIONS(1967), - [aux_sym_cmd_identifier_token11] = ACTIONS(1967), - [aux_sym_cmd_identifier_token12] = ACTIONS(1967), - [aux_sym_cmd_identifier_token13] = ACTIONS(1967), - [aux_sym_cmd_identifier_token14] = ACTIONS(1967), - [aux_sym_cmd_identifier_token15] = ACTIONS(1967), - [aux_sym_cmd_identifier_token16] = ACTIONS(1967), - [aux_sym_cmd_identifier_token17] = ACTIONS(1967), - [aux_sym_cmd_identifier_token18] = ACTIONS(1967), - [aux_sym_cmd_identifier_token19] = ACTIONS(1967), - [aux_sym_cmd_identifier_token20] = ACTIONS(1967), - [aux_sym_cmd_identifier_token21] = ACTIONS(1967), - [aux_sym_cmd_identifier_token22] = ACTIONS(1967), - [aux_sym_cmd_identifier_token23] = ACTIONS(1967), - [aux_sym_cmd_identifier_token24] = ACTIONS(1967), - [aux_sym_cmd_identifier_token25] = ACTIONS(1967), - [aux_sym_cmd_identifier_token26] = ACTIONS(1967), - [aux_sym_cmd_identifier_token27] = ACTIONS(1967), - [aux_sym_cmd_identifier_token28] = ACTIONS(1967), - [aux_sym_cmd_identifier_token29] = ACTIONS(1967), - [aux_sym_cmd_identifier_token30] = ACTIONS(1967), - [aux_sym_cmd_identifier_token31] = ACTIONS(1967), - [aux_sym_cmd_identifier_token32] = ACTIONS(1967), - [aux_sym_cmd_identifier_token33] = ACTIONS(1967), - [aux_sym_cmd_identifier_token34] = ACTIONS(1967), - [aux_sym_cmd_identifier_token35] = ACTIONS(1967), - [aux_sym_cmd_identifier_token36] = ACTIONS(1967), - [aux_sym_cmd_identifier_token37] = ACTIONS(1967), - [aux_sym_cmd_identifier_token38] = ACTIONS(1967), - [aux_sym_cmd_identifier_token39] = ACTIONS(1967), - [aux_sym_cmd_identifier_token40] = ACTIONS(1967), - [anon_sym_def] = ACTIONS(1967), - [anon_sym_export_DASHenv] = ACTIONS(1967), - [anon_sym_extern] = ACTIONS(1967), - [anon_sym_module] = ACTIONS(1967), - [anon_sym_use] = ACTIONS(1967), - [anon_sym_LPAREN] = ACTIONS(1967), - [anon_sym_COMMA] = ACTIONS(1967), - [anon_sym_DOLLAR] = ACTIONS(1967), - [anon_sym_error] = ACTIONS(1967), - [anon_sym_DASH2] = ACTIONS(1967), - [anon_sym_break] = ACTIONS(1967), - [anon_sym_continue] = ACTIONS(1967), - [anon_sym_for] = ACTIONS(1967), - [anon_sym_in2] = ACTIONS(1967), - [anon_sym_loop] = ACTIONS(1967), - [anon_sym_make] = ACTIONS(1967), - [anon_sym_while] = ACTIONS(1967), - [anon_sym_do] = ACTIONS(1967), - [anon_sym_if] = ACTIONS(1967), - [anon_sym_else] = ACTIONS(1967), - [anon_sym_match] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(1967), - [anon_sym_try] = ACTIONS(1967), - [anon_sym_catch] = ACTIONS(1967), - [anon_sym_return] = ACTIONS(1967), - [anon_sym_source] = ACTIONS(1967), - [anon_sym_source_DASHenv] = ACTIONS(1967), - [anon_sym_hide] = ACTIONS(1967), - [anon_sym_hide_DASHenv] = ACTIONS(1967), - [anon_sym_overlay] = ACTIONS(1967), - [anon_sym_as] = ACTIONS(1967), - [anon_sym_PLUS2] = ACTIONS(1967), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1967), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1967), - [aux_sym__val_number_decimal_token1] = ACTIONS(1967), - [aux_sym__val_number_decimal_token2] = ACTIONS(1967), - [aux_sym__val_number_decimal_token3] = ACTIONS(1967), - [aux_sym__val_number_decimal_token4] = ACTIONS(1967), - [aux_sym__val_number_token1] = ACTIONS(1967), - [aux_sym__val_number_token2] = ACTIONS(1967), - [aux_sym__val_number_token3] = ACTIONS(1967), - [aux_sym__val_number_token4] = ACTIONS(1967), - [aux_sym__val_number_token5] = ACTIONS(1967), - [aux_sym__val_number_token6] = ACTIONS(1967), - [anon_sym_DQUOTE] = ACTIONS(1967), - [sym__str_single_quotes] = ACTIONS(1967), - [sym__str_back_ticks] = ACTIONS(1967), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1967), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1967), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1967), - [sym__entry_separator] = ACTIONS(1969), - [anon_sym_register] = ACTIONS(1967), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1969), - }, - [602] = { - [sym_comment] = STATE(602), - [anon_sym_export] = ACTIONS(982), - [anon_sym_alias] = ACTIONS(982), - [anon_sym_let] = ACTIONS(982), - [anon_sym_let_DASHenv] = ACTIONS(982), - [anon_sym_mut] = ACTIONS(982), - [anon_sym_const] = ACTIONS(982), - [aux_sym_cmd_identifier_token1] = ACTIONS(982), - [aux_sym_cmd_identifier_token2] = ACTIONS(984), - [aux_sym_cmd_identifier_token3] = ACTIONS(984), - [aux_sym_cmd_identifier_token4] = ACTIONS(984), - [aux_sym_cmd_identifier_token5] = ACTIONS(984), - [aux_sym_cmd_identifier_token6] = ACTIONS(984), - [aux_sym_cmd_identifier_token7] = ACTIONS(984), - [aux_sym_cmd_identifier_token8] = ACTIONS(982), - [aux_sym_cmd_identifier_token9] = ACTIONS(982), - [aux_sym_cmd_identifier_token10] = ACTIONS(984), - [aux_sym_cmd_identifier_token11] = ACTIONS(984), - [aux_sym_cmd_identifier_token12] = ACTIONS(982), - [aux_sym_cmd_identifier_token13] = ACTIONS(982), - [aux_sym_cmd_identifier_token14] = ACTIONS(982), - [aux_sym_cmd_identifier_token15] = ACTIONS(982), - [aux_sym_cmd_identifier_token16] = ACTIONS(984), - [aux_sym_cmd_identifier_token17] = ACTIONS(984), - [aux_sym_cmd_identifier_token18] = ACTIONS(984), - [aux_sym_cmd_identifier_token19] = ACTIONS(984), - [aux_sym_cmd_identifier_token20] = ACTIONS(984), - [aux_sym_cmd_identifier_token21] = ACTIONS(984), - [aux_sym_cmd_identifier_token22] = ACTIONS(984), - [aux_sym_cmd_identifier_token23] = ACTIONS(984), - [aux_sym_cmd_identifier_token24] = ACTIONS(984), - [aux_sym_cmd_identifier_token25] = ACTIONS(984), - [aux_sym_cmd_identifier_token26] = ACTIONS(984), - [aux_sym_cmd_identifier_token27] = ACTIONS(984), - [aux_sym_cmd_identifier_token28] = ACTIONS(984), - [aux_sym_cmd_identifier_token29] = ACTIONS(984), - [aux_sym_cmd_identifier_token30] = ACTIONS(984), - [aux_sym_cmd_identifier_token31] = ACTIONS(984), - [aux_sym_cmd_identifier_token32] = ACTIONS(984), - [aux_sym_cmd_identifier_token33] = ACTIONS(984), - [aux_sym_cmd_identifier_token34] = ACTIONS(982), - [aux_sym_cmd_identifier_token35] = ACTIONS(984), - [aux_sym_cmd_identifier_token36] = ACTIONS(984), - [aux_sym_cmd_identifier_token37] = ACTIONS(984), - [aux_sym_cmd_identifier_token38] = ACTIONS(982), - [aux_sym_cmd_identifier_token39] = ACTIONS(984), - [aux_sym_cmd_identifier_token40] = ACTIONS(984), - [anon_sym_def] = ACTIONS(982), - [anon_sym_export_DASHenv] = ACTIONS(982), - [anon_sym_extern] = ACTIONS(982), - [anon_sym_module] = ACTIONS(982), - [anon_sym_use] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(984), - [anon_sym_COMMA] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(982), - [anon_sym_error] = ACTIONS(982), - [anon_sym_DASH2] = ACTIONS(982), - [anon_sym_break] = ACTIONS(982), - [anon_sym_continue] = ACTIONS(982), - [anon_sym_for] = ACTIONS(982), - [anon_sym_in2] = ACTIONS(982), - [anon_sym_loop] = ACTIONS(982), - [anon_sym_make] = ACTIONS(982), - [anon_sym_while] = ACTIONS(982), - [anon_sym_do] = ACTIONS(982), - [anon_sym_if] = ACTIONS(982), - [anon_sym_else] = ACTIONS(982), - [anon_sym_match] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_try] = ACTIONS(982), - [anon_sym_catch] = ACTIONS(982), - [anon_sym_return] = ACTIONS(982), - [anon_sym_source] = ACTIONS(982), - [anon_sym_source_DASHenv] = ACTIONS(982), - [anon_sym_hide] = ACTIONS(982), - [anon_sym_hide_DASHenv] = ACTIONS(982), - [anon_sym_overlay] = ACTIONS(982), - [anon_sym_as] = ACTIONS(982), - [anon_sym_PLUS2] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(984), - [aux_sym__val_number_decimal_token1] = ACTIONS(982), - [aux_sym__val_number_decimal_token2] = ACTIONS(984), - [aux_sym__val_number_decimal_token3] = ACTIONS(984), - [aux_sym__val_number_decimal_token4] = ACTIONS(984), - [aux_sym__val_number_token1] = ACTIONS(984), - [aux_sym__val_number_token2] = ACTIONS(984), - [aux_sym__val_number_token3] = ACTIONS(984), - [aux_sym__val_number_token4] = ACTIONS(982), - [aux_sym__val_number_token5] = ACTIONS(982), - [aux_sym__val_number_token6] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym__str_single_quotes] = ACTIONS(984), - [sym__str_back_ticks] = ACTIONS(984), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(984), - [anon_sym_register] = ACTIONS(982), - [anon_sym_COLON2] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(984), - }, - [603] = { - [sym_comment] = STATE(603), - [anon_sym_export] = ACTIONS(1666), - [anon_sym_alias] = ACTIONS(1666), - [anon_sym_let] = ACTIONS(1666), - [anon_sym_let_DASHenv] = ACTIONS(1666), - [anon_sym_mut] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [aux_sym_cmd_identifier_token1] = ACTIONS(1666), - [aux_sym_cmd_identifier_token2] = ACTIONS(1666), - [aux_sym_cmd_identifier_token3] = ACTIONS(1666), - [aux_sym_cmd_identifier_token4] = ACTIONS(1666), - [aux_sym_cmd_identifier_token5] = ACTIONS(1666), - [aux_sym_cmd_identifier_token6] = ACTIONS(1666), - [aux_sym_cmd_identifier_token7] = ACTIONS(1666), - [aux_sym_cmd_identifier_token8] = ACTIONS(1666), - [aux_sym_cmd_identifier_token9] = ACTIONS(1666), - [aux_sym_cmd_identifier_token10] = ACTIONS(1666), - [aux_sym_cmd_identifier_token11] = ACTIONS(1666), - [aux_sym_cmd_identifier_token12] = ACTIONS(1666), - [aux_sym_cmd_identifier_token13] = ACTIONS(1666), - [aux_sym_cmd_identifier_token14] = ACTIONS(1666), - [aux_sym_cmd_identifier_token15] = ACTIONS(1666), - [aux_sym_cmd_identifier_token16] = ACTIONS(1666), - [aux_sym_cmd_identifier_token17] = ACTIONS(1666), - [aux_sym_cmd_identifier_token18] = ACTIONS(1666), - [aux_sym_cmd_identifier_token19] = ACTIONS(1666), - [aux_sym_cmd_identifier_token20] = ACTIONS(1666), - [aux_sym_cmd_identifier_token21] = ACTIONS(1666), - [aux_sym_cmd_identifier_token22] = ACTIONS(1666), - [aux_sym_cmd_identifier_token23] = ACTIONS(1666), - [aux_sym_cmd_identifier_token24] = ACTIONS(1666), - [aux_sym_cmd_identifier_token25] = ACTIONS(1666), - [aux_sym_cmd_identifier_token26] = ACTIONS(1666), - [aux_sym_cmd_identifier_token27] = ACTIONS(1666), - [aux_sym_cmd_identifier_token28] = ACTIONS(1666), - [aux_sym_cmd_identifier_token29] = ACTIONS(1666), - [aux_sym_cmd_identifier_token30] = ACTIONS(1666), - [aux_sym_cmd_identifier_token31] = ACTIONS(1666), - [aux_sym_cmd_identifier_token32] = ACTIONS(1666), - [aux_sym_cmd_identifier_token33] = ACTIONS(1666), - [aux_sym_cmd_identifier_token34] = ACTIONS(1666), - [aux_sym_cmd_identifier_token35] = ACTIONS(1666), - [aux_sym_cmd_identifier_token36] = ACTIONS(1666), - [aux_sym_cmd_identifier_token37] = ACTIONS(1666), - [aux_sym_cmd_identifier_token38] = ACTIONS(1666), - [aux_sym_cmd_identifier_token39] = ACTIONS(1666), - [aux_sym_cmd_identifier_token40] = ACTIONS(1666), - [anon_sym_def] = ACTIONS(1666), - [anon_sym_export_DASHenv] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_module] = ACTIONS(1666), - [anon_sym_use] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_COMMA] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_error] = ACTIONS(1666), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_in2] = ACTIONS(1666), - [anon_sym_loop] = ACTIONS(1666), - [anon_sym_make] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_do] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_match] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(1666), - [anon_sym_try] = ACTIONS(1666), - [anon_sym_catch] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_source] = ACTIONS(1666), - [anon_sym_source_DASHenv] = ACTIONS(1666), - [anon_sym_hide] = ACTIONS(1666), - [anon_sym_hide_DASHenv] = ACTIONS(1666), - [anon_sym_overlay] = ACTIONS(1666), - [anon_sym_as] = ACTIONS(1666), - [anon_sym_PLUS2] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1666), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1666), - [aux_sym__val_number_decimal_token3] = ACTIONS(1666), - [aux_sym__val_number_decimal_token4] = ACTIONS(1666), - [aux_sym__val_number_token1] = ACTIONS(1666), - [aux_sym__val_number_token2] = ACTIONS(1666), - [aux_sym__val_number_token3] = ACTIONS(1666), - [aux_sym__val_number_token4] = ACTIONS(1666), - [aux_sym__val_number_token5] = ACTIONS(1666), - [aux_sym__val_number_token6] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1666), - [sym__str_single_quotes] = ACTIONS(1666), - [sym__str_back_ticks] = ACTIONS(1666), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1666), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1666), - [sym__entry_separator] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1668), - }, - [604] = { - [sym_comment] = STATE(604), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), - [aux_sym_cmd_identifier_token2] = ACTIONS(1648), - [aux_sym_cmd_identifier_token3] = ACTIONS(1648), - [aux_sym_cmd_identifier_token4] = ACTIONS(1648), - [aux_sym_cmd_identifier_token5] = ACTIONS(1648), - [aux_sym_cmd_identifier_token6] = ACTIONS(1648), - [aux_sym_cmd_identifier_token7] = ACTIONS(1648), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), - [aux_sym_cmd_identifier_token10] = ACTIONS(1648), - [aux_sym_cmd_identifier_token11] = ACTIONS(1648), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), - [aux_sym_cmd_identifier_token16] = ACTIONS(1648), - [aux_sym_cmd_identifier_token17] = ACTIONS(1648), - [aux_sym_cmd_identifier_token18] = ACTIONS(1648), - [aux_sym_cmd_identifier_token19] = ACTIONS(1648), - [aux_sym_cmd_identifier_token20] = ACTIONS(1648), - [aux_sym_cmd_identifier_token21] = ACTIONS(1648), - [aux_sym_cmd_identifier_token22] = ACTIONS(1648), - [aux_sym_cmd_identifier_token23] = ACTIONS(1648), - [aux_sym_cmd_identifier_token24] = ACTIONS(1648), - [aux_sym_cmd_identifier_token25] = ACTIONS(1648), - [aux_sym_cmd_identifier_token26] = ACTIONS(1648), - [aux_sym_cmd_identifier_token27] = ACTIONS(1648), - [aux_sym_cmd_identifier_token28] = ACTIONS(1648), - [aux_sym_cmd_identifier_token29] = ACTIONS(1648), - [aux_sym_cmd_identifier_token30] = ACTIONS(1648), - [aux_sym_cmd_identifier_token31] = ACTIONS(1648), - [aux_sym_cmd_identifier_token32] = ACTIONS(1648), - [aux_sym_cmd_identifier_token33] = ACTIONS(1648), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), - [aux_sym_cmd_identifier_token35] = ACTIONS(1648), - [aux_sym_cmd_identifier_token36] = ACTIONS(1648), - [aux_sym_cmd_identifier_token37] = ACTIONS(1648), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), - [aux_sym_cmd_identifier_token39] = ACTIONS(1648), - [aux_sym_cmd_identifier_token40] = ACTIONS(1648), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_COMMA] = ACTIONS(1648), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_DASH2] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in2] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_PLUS2] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1648), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1648), - [aux_sym__val_number_decimal_token3] = ACTIONS(1648), - [aux_sym__val_number_decimal_token4] = ACTIONS(1648), - [aux_sym__val_number_token1] = ACTIONS(1648), - [aux_sym__val_number_token2] = ACTIONS(1648), - [aux_sym__val_number_token3] = ACTIONS(1648), - [aux_sym__val_number_token4] = ACTIONS(1648), - [aux_sym__val_number_token5] = ACTIONS(1648), - [aux_sym__val_number_token6] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1648), - [sym__str_single_quotes] = ACTIONS(1648), - [sym__str_back_ticks] = ACTIONS(1648), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1648), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1648), - [sym__entry_separator] = ACTIONS(1650), - [anon_sym_register] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1650), - }, - [605] = { - [sym_comment] = STATE(605), - [anon_sym_export] = ACTIONS(958), - [anon_sym_alias] = ACTIONS(958), - [anon_sym_let] = ACTIONS(958), - [anon_sym_let_DASHenv] = ACTIONS(958), - [anon_sym_mut] = ACTIONS(958), - [anon_sym_const] = ACTIONS(958), - [aux_sym_cmd_identifier_token1] = ACTIONS(958), - [aux_sym_cmd_identifier_token2] = ACTIONS(958), - [aux_sym_cmd_identifier_token3] = ACTIONS(958), - [aux_sym_cmd_identifier_token4] = ACTIONS(958), - [aux_sym_cmd_identifier_token5] = ACTIONS(958), - [aux_sym_cmd_identifier_token6] = ACTIONS(958), - [aux_sym_cmd_identifier_token7] = ACTIONS(958), - [aux_sym_cmd_identifier_token8] = ACTIONS(958), - [aux_sym_cmd_identifier_token9] = ACTIONS(958), - [aux_sym_cmd_identifier_token10] = ACTIONS(958), - [aux_sym_cmd_identifier_token11] = ACTIONS(958), - [aux_sym_cmd_identifier_token12] = ACTIONS(958), - [aux_sym_cmd_identifier_token13] = ACTIONS(958), - [aux_sym_cmd_identifier_token14] = ACTIONS(958), - [aux_sym_cmd_identifier_token15] = ACTIONS(958), - [aux_sym_cmd_identifier_token16] = ACTIONS(958), - [aux_sym_cmd_identifier_token17] = ACTIONS(958), - [aux_sym_cmd_identifier_token18] = ACTIONS(958), - [aux_sym_cmd_identifier_token19] = ACTIONS(958), - [aux_sym_cmd_identifier_token20] = ACTIONS(958), - [aux_sym_cmd_identifier_token21] = ACTIONS(958), - [aux_sym_cmd_identifier_token22] = ACTIONS(958), - [aux_sym_cmd_identifier_token23] = ACTIONS(958), - [aux_sym_cmd_identifier_token24] = ACTIONS(958), - [aux_sym_cmd_identifier_token25] = ACTIONS(958), - [aux_sym_cmd_identifier_token26] = ACTIONS(958), - [aux_sym_cmd_identifier_token27] = ACTIONS(958), - [aux_sym_cmd_identifier_token28] = ACTIONS(958), - [aux_sym_cmd_identifier_token29] = ACTIONS(958), - [aux_sym_cmd_identifier_token30] = ACTIONS(958), - [aux_sym_cmd_identifier_token31] = ACTIONS(958), - [aux_sym_cmd_identifier_token32] = ACTIONS(958), - [aux_sym_cmd_identifier_token33] = ACTIONS(958), - [aux_sym_cmd_identifier_token34] = ACTIONS(958), - [aux_sym_cmd_identifier_token35] = ACTIONS(958), - [aux_sym_cmd_identifier_token36] = ACTIONS(958), - [aux_sym_cmd_identifier_token37] = ACTIONS(958), - [aux_sym_cmd_identifier_token38] = ACTIONS(958), - [aux_sym_cmd_identifier_token39] = ACTIONS(958), - [aux_sym_cmd_identifier_token40] = ACTIONS(958), - [anon_sym_def] = ACTIONS(958), - [anon_sym_export_DASHenv] = ACTIONS(958), - [anon_sym_extern] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_use] = ACTIONS(958), - [anon_sym_LPAREN] = ACTIONS(958), - [anon_sym_COMMA] = ACTIONS(958), - [anon_sym_DOLLAR] = ACTIONS(958), - [anon_sym_error] = ACTIONS(958), - [anon_sym_DASH2] = ACTIONS(958), - [anon_sym_break] = ACTIONS(958), - [anon_sym_continue] = ACTIONS(958), - [anon_sym_for] = ACTIONS(958), - [anon_sym_in2] = ACTIONS(958), - [anon_sym_loop] = ACTIONS(958), - [anon_sym_make] = ACTIONS(958), - [anon_sym_while] = ACTIONS(958), - [anon_sym_do] = ACTIONS(958), - [anon_sym_if] = ACTIONS(958), - [anon_sym_else] = ACTIONS(958), - [anon_sym_match] = ACTIONS(958), - [anon_sym_RBRACE] = ACTIONS(958), - [anon_sym_try] = ACTIONS(958), - [anon_sym_catch] = ACTIONS(958), - [anon_sym_return] = ACTIONS(958), - [anon_sym_source] = ACTIONS(958), - [anon_sym_source_DASHenv] = ACTIONS(958), - [anon_sym_hide] = ACTIONS(958), - [anon_sym_hide_DASHenv] = ACTIONS(958), - [anon_sym_overlay] = ACTIONS(958), - [anon_sym_as] = ACTIONS(958), - [anon_sym_PLUS2] = ACTIONS(958), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(958), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(958), - [aux_sym__val_number_decimal_token1] = ACTIONS(958), - [aux_sym__val_number_decimal_token2] = ACTIONS(958), - [aux_sym__val_number_decimal_token3] = ACTIONS(958), - [aux_sym__val_number_decimal_token4] = ACTIONS(958), - [aux_sym__val_number_token1] = ACTIONS(958), - [aux_sym__val_number_token2] = ACTIONS(958), - [aux_sym__val_number_token3] = ACTIONS(958), - [aux_sym__val_number_token4] = ACTIONS(958), - [aux_sym__val_number_token5] = ACTIONS(958), - [aux_sym__val_number_token6] = ACTIONS(958), - [anon_sym_DQUOTE] = ACTIONS(958), - [sym__str_single_quotes] = ACTIONS(958), - [sym__str_back_ticks] = ACTIONS(958), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(958), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(958), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(958), - [sym__entry_separator] = ACTIONS(960), - [anon_sym_register] = ACTIONS(958), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(960), - }, - [606] = { - [sym_comment] = STATE(606), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_alias] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_let_DASHenv] = ACTIONS(1719), - [anon_sym_mut] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [aux_sym_cmd_identifier_token1] = ACTIONS(1719), - [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(1719), - [aux_sym_cmd_identifier_token9] = ACTIONS(1719), - [aux_sym_cmd_identifier_token10] = ACTIONS(1719), - [aux_sym_cmd_identifier_token11] = ACTIONS(1719), - [aux_sym_cmd_identifier_token12] = ACTIONS(1719), - [aux_sym_cmd_identifier_token13] = ACTIONS(1719), - [aux_sym_cmd_identifier_token14] = ACTIONS(1719), - [aux_sym_cmd_identifier_token15] = ACTIONS(1719), - [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(1719), - [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(1719), - [aux_sym_cmd_identifier_token39] = ACTIONS(1719), - [aux_sym_cmd_identifier_token40] = ACTIONS(1719), - [anon_sym_def] = ACTIONS(1719), - [anon_sym_export_DASHenv] = ACTIONS(1719), - [anon_sym_extern] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_use] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_COMMA] = ACTIONS(1719), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_error] = ACTIONS(1719), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_in2] = ACTIONS(1719), - [anon_sym_loop] = ACTIONS(1719), - [anon_sym_make] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_match] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_catch] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_source] = ACTIONS(1719), - [anon_sym_source_DASHenv] = ACTIONS(1719), - [anon_sym_hide] = ACTIONS(1719), - [anon_sym_hide_DASHenv] = ACTIONS(1719), - [anon_sym_overlay] = ACTIONS(1719), - [anon_sym_as] = ACTIONS(1719), - [anon_sym_PLUS2] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1719), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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_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_DOT_DOT_DOT_LBRACE] = ACTIONS(1719), - [sym__entry_separator] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1721), - }, - [607] = { - [sym_comment] = STATE(607), - [anon_sym_export] = ACTIONS(1790), - [anon_sym_alias] = ACTIONS(1790), - [anon_sym_let] = ACTIONS(1790), - [anon_sym_let_DASHenv] = ACTIONS(1790), - [anon_sym_mut] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [aux_sym_cmd_identifier_token1] = ACTIONS(1790), - [aux_sym_cmd_identifier_token2] = ACTIONS(1790), - [aux_sym_cmd_identifier_token3] = ACTIONS(1790), - [aux_sym_cmd_identifier_token4] = ACTIONS(1790), - [aux_sym_cmd_identifier_token5] = ACTIONS(1790), - [aux_sym_cmd_identifier_token6] = ACTIONS(1790), - [aux_sym_cmd_identifier_token7] = ACTIONS(1790), - [aux_sym_cmd_identifier_token8] = ACTIONS(1790), - [aux_sym_cmd_identifier_token9] = ACTIONS(1790), - [aux_sym_cmd_identifier_token10] = ACTIONS(1790), - [aux_sym_cmd_identifier_token11] = ACTIONS(1790), - [aux_sym_cmd_identifier_token12] = ACTIONS(1790), - [aux_sym_cmd_identifier_token13] = ACTIONS(1790), - [aux_sym_cmd_identifier_token14] = ACTIONS(1790), - [aux_sym_cmd_identifier_token15] = ACTIONS(1790), - [aux_sym_cmd_identifier_token16] = ACTIONS(1790), - [aux_sym_cmd_identifier_token17] = ACTIONS(1790), - [aux_sym_cmd_identifier_token18] = ACTIONS(1790), - [aux_sym_cmd_identifier_token19] = ACTIONS(1790), - [aux_sym_cmd_identifier_token20] = ACTIONS(1790), - [aux_sym_cmd_identifier_token21] = ACTIONS(1790), - [aux_sym_cmd_identifier_token22] = ACTIONS(1790), - [aux_sym_cmd_identifier_token23] = ACTIONS(1790), - [aux_sym_cmd_identifier_token24] = ACTIONS(1790), - [aux_sym_cmd_identifier_token25] = ACTIONS(1790), - [aux_sym_cmd_identifier_token26] = ACTIONS(1790), - [aux_sym_cmd_identifier_token27] = ACTIONS(1790), - [aux_sym_cmd_identifier_token28] = ACTIONS(1790), - [aux_sym_cmd_identifier_token29] = ACTIONS(1790), - [aux_sym_cmd_identifier_token30] = ACTIONS(1790), - [aux_sym_cmd_identifier_token31] = ACTIONS(1790), - [aux_sym_cmd_identifier_token32] = ACTIONS(1790), - [aux_sym_cmd_identifier_token33] = ACTIONS(1790), - [aux_sym_cmd_identifier_token34] = ACTIONS(1790), - [aux_sym_cmd_identifier_token35] = ACTIONS(1790), - [aux_sym_cmd_identifier_token36] = ACTIONS(1790), - [aux_sym_cmd_identifier_token37] = ACTIONS(1790), - [aux_sym_cmd_identifier_token38] = ACTIONS(1790), - [aux_sym_cmd_identifier_token39] = ACTIONS(1790), - [aux_sym_cmd_identifier_token40] = ACTIONS(1790), - [anon_sym_def] = ACTIONS(1790), - [anon_sym_export_DASHenv] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym_module] = ACTIONS(1790), - [anon_sym_use] = ACTIONS(1790), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_COMMA] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(1790), - [anon_sym_error] = ACTIONS(1790), - [anon_sym_DASH2] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_in2] = ACTIONS(1790), - [anon_sym_loop] = ACTIONS(1790), - [anon_sym_make] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_match] = ACTIONS(1790), - [anon_sym_RBRACE] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_catch] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_source] = ACTIONS(1790), - [anon_sym_source_DASHenv] = ACTIONS(1790), - [anon_sym_hide] = ACTIONS(1790), - [anon_sym_hide_DASHenv] = ACTIONS(1790), - [anon_sym_overlay] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_PLUS2] = ACTIONS(1790), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1790), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1790), - [aux_sym__val_number_decimal_token1] = ACTIONS(1790), - [aux_sym__val_number_decimal_token2] = ACTIONS(1790), - [aux_sym__val_number_decimal_token3] = ACTIONS(1790), - [aux_sym__val_number_decimal_token4] = ACTIONS(1790), - [aux_sym__val_number_token1] = ACTIONS(1790), - [aux_sym__val_number_token2] = ACTIONS(1790), - [aux_sym__val_number_token3] = ACTIONS(1790), - [aux_sym__val_number_token4] = ACTIONS(1790), - [aux_sym__val_number_token5] = ACTIONS(1790), - [aux_sym__val_number_token6] = ACTIONS(1790), - [anon_sym_DQUOTE] = ACTIONS(1790), - [sym__str_single_quotes] = ACTIONS(1790), - [sym__str_back_ticks] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1790), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1790), - [sym__entry_separator] = ACTIONS(1792), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [608] = { - [sym_comment] = STATE(608), - [anon_sym_export] = ACTIONS(954), - [anon_sym_alias] = ACTIONS(954), - [anon_sym_let] = ACTIONS(954), - [anon_sym_let_DASHenv] = ACTIONS(954), - [anon_sym_mut] = ACTIONS(954), - [anon_sym_const] = ACTIONS(954), - [aux_sym_cmd_identifier_token1] = ACTIONS(954), - [aux_sym_cmd_identifier_token2] = ACTIONS(954), - [aux_sym_cmd_identifier_token3] = ACTIONS(954), - [aux_sym_cmd_identifier_token4] = ACTIONS(954), - [aux_sym_cmd_identifier_token5] = ACTIONS(954), - [aux_sym_cmd_identifier_token6] = ACTIONS(954), - [aux_sym_cmd_identifier_token7] = ACTIONS(954), - [aux_sym_cmd_identifier_token8] = ACTIONS(954), - [aux_sym_cmd_identifier_token9] = ACTIONS(954), - [aux_sym_cmd_identifier_token10] = ACTIONS(954), - [aux_sym_cmd_identifier_token11] = ACTIONS(954), - [aux_sym_cmd_identifier_token12] = ACTIONS(954), - [aux_sym_cmd_identifier_token13] = ACTIONS(954), - [aux_sym_cmd_identifier_token14] = ACTIONS(954), - [aux_sym_cmd_identifier_token15] = ACTIONS(954), - [aux_sym_cmd_identifier_token16] = ACTIONS(954), - [aux_sym_cmd_identifier_token17] = ACTIONS(954), - [aux_sym_cmd_identifier_token18] = ACTIONS(954), - [aux_sym_cmd_identifier_token19] = ACTIONS(954), - [aux_sym_cmd_identifier_token20] = ACTIONS(954), - [aux_sym_cmd_identifier_token21] = ACTIONS(954), - [aux_sym_cmd_identifier_token22] = ACTIONS(954), - [aux_sym_cmd_identifier_token23] = ACTIONS(954), - [aux_sym_cmd_identifier_token24] = ACTIONS(954), - [aux_sym_cmd_identifier_token25] = ACTIONS(954), - [aux_sym_cmd_identifier_token26] = ACTIONS(954), - [aux_sym_cmd_identifier_token27] = ACTIONS(954), - [aux_sym_cmd_identifier_token28] = ACTIONS(954), - [aux_sym_cmd_identifier_token29] = ACTIONS(954), - [aux_sym_cmd_identifier_token30] = ACTIONS(954), - [aux_sym_cmd_identifier_token31] = ACTIONS(954), - [aux_sym_cmd_identifier_token32] = ACTIONS(954), - [aux_sym_cmd_identifier_token33] = ACTIONS(954), - [aux_sym_cmd_identifier_token34] = ACTIONS(954), - [aux_sym_cmd_identifier_token35] = ACTIONS(954), - [aux_sym_cmd_identifier_token36] = ACTIONS(954), - [aux_sym_cmd_identifier_token37] = ACTIONS(954), - [aux_sym_cmd_identifier_token38] = ACTIONS(954), - [aux_sym_cmd_identifier_token39] = ACTIONS(954), - [aux_sym_cmd_identifier_token40] = ACTIONS(954), - [anon_sym_def] = ACTIONS(954), - [anon_sym_export_DASHenv] = ACTIONS(954), - [anon_sym_extern] = ACTIONS(954), - [anon_sym_module] = ACTIONS(954), - [anon_sym_use] = ACTIONS(954), - [anon_sym_LPAREN] = ACTIONS(954), - [anon_sym_COMMA] = ACTIONS(954), - [anon_sym_DOLLAR] = ACTIONS(954), - [anon_sym_error] = ACTIONS(954), - [anon_sym_DASH2] = ACTIONS(954), - [anon_sym_break] = ACTIONS(954), - [anon_sym_continue] = ACTIONS(954), - [anon_sym_for] = ACTIONS(954), - [anon_sym_in2] = ACTIONS(954), - [anon_sym_loop] = ACTIONS(954), - [anon_sym_make] = ACTIONS(954), - [anon_sym_while] = ACTIONS(954), - [anon_sym_do] = ACTIONS(954), - [anon_sym_if] = ACTIONS(954), - [anon_sym_else] = ACTIONS(954), - [anon_sym_match] = ACTIONS(954), - [anon_sym_RBRACE] = ACTIONS(954), - [anon_sym_try] = ACTIONS(954), - [anon_sym_catch] = ACTIONS(954), - [anon_sym_return] = ACTIONS(954), - [anon_sym_source] = ACTIONS(954), - [anon_sym_source_DASHenv] = ACTIONS(954), - [anon_sym_hide] = ACTIONS(954), - [anon_sym_hide_DASHenv] = ACTIONS(954), - [anon_sym_overlay] = ACTIONS(954), - [anon_sym_as] = ACTIONS(954), - [anon_sym_PLUS2] = ACTIONS(954), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(954), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(954), - [aux_sym__val_number_decimal_token1] = ACTIONS(954), - [aux_sym__val_number_decimal_token2] = ACTIONS(954), - [aux_sym__val_number_decimal_token3] = ACTIONS(954), - [aux_sym__val_number_decimal_token4] = ACTIONS(954), - [aux_sym__val_number_token1] = ACTIONS(954), - [aux_sym__val_number_token2] = ACTIONS(954), - [aux_sym__val_number_token3] = ACTIONS(954), - [aux_sym__val_number_token4] = ACTIONS(954), - [aux_sym__val_number_token5] = ACTIONS(954), - [aux_sym__val_number_token6] = ACTIONS(954), - [anon_sym_DQUOTE] = ACTIONS(954), - [sym__str_single_quotes] = ACTIONS(954), - [sym__str_back_ticks] = ACTIONS(954), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(954), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(954), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(954), - [sym__entry_separator] = ACTIONS(956), - [anon_sym_register] = ACTIONS(954), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(956), - }, - [609] = { - [sym_comment] = STATE(609), - [anon_sym_export] = ACTIONS(962), - [anon_sym_alias] = ACTIONS(962), - [anon_sym_let] = ACTIONS(962), - [anon_sym_let_DASHenv] = ACTIONS(962), - [anon_sym_mut] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [aux_sym_cmd_identifier_token1] = ACTIONS(962), - [aux_sym_cmd_identifier_token2] = ACTIONS(962), - [aux_sym_cmd_identifier_token3] = ACTIONS(962), - [aux_sym_cmd_identifier_token4] = ACTIONS(962), - [aux_sym_cmd_identifier_token5] = ACTIONS(962), - [aux_sym_cmd_identifier_token6] = ACTIONS(962), - [aux_sym_cmd_identifier_token7] = ACTIONS(962), - [aux_sym_cmd_identifier_token8] = ACTIONS(962), - [aux_sym_cmd_identifier_token9] = ACTIONS(962), - [aux_sym_cmd_identifier_token10] = ACTIONS(962), - [aux_sym_cmd_identifier_token11] = ACTIONS(962), - [aux_sym_cmd_identifier_token12] = ACTIONS(962), - [aux_sym_cmd_identifier_token13] = ACTIONS(962), - [aux_sym_cmd_identifier_token14] = ACTIONS(962), - [aux_sym_cmd_identifier_token15] = ACTIONS(962), - [aux_sym_cmd_identifier_token16] = ACTIONS(962), - [aux_sym_cmd_identifier_token17] = ACTIONS(962), - [aux_sym_cmd_identifier_token18] = ACTIONS(962), - [aux_sym_cmd_identifier_token19] = ACTIONS(962), - [aux_sym_cmd_identifier_token20] = ACTIONS(962), - [aux_sym_cmd_identifier_token21] = ACTIONS(962), - [aux_sym_cmd_identifier_token22] = ACTIONS(962), - [aux_sym_cmd_identifier_token23] = ACTIONS(962), - [aux_sym_cmd_identifier_token24] = ACTIONS(962), - [aux_sym_cmd_identifier_token25] = ACTIONS(962), - [aux_sym_cmd_identifier_token26] = ACTIONS(962), - [aux_sym_cmd_identifier_token27] = ACTIONS(962), - [aux_sym_cmd_identifier_token28] = ACTIONS(962), - [aux_sym_cmd_identifier_token29] = ACTIONS(962), - [aux_sym_cmd_identifier_token30] = ACTIONS(962), - [aux_sym_cmd_identifier_token31] = ACTIONS(962), - [aux_sym_cmd_identifier_token32] = ACTIONS(962), - [aux_sym_cmd_identifier_token33] = ACTIONS(962), - [aux_sym_cmd_identifier_token34] = ACTIONS(962), - [aux_sym_cmd_identifier_token35] = ACTIONS(962), - [aux_sym_cmd_identifier_token36] = ACTIONS(962), - [aux_sym_cmd_identifier_token37] = ACTIONS(962), - [aux_sym_cmd_identifier_token38] = ACTIONS(962), - [aux_sym_cmd_identifier_token39] = ACTIONS(962), - [aux_sym_cmd_identifier_token40] = ACTIONS(962), - [anon_sym_def] = ACTIONS(962), - [anon_sym_export_DASHenv] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_module] = ACTIONS(962), - [anon_sym_use] = ACTIONS(962), - [anon_sym_LPAREN] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(962), - [anon_sym_error] = ACTIONS(962), - [anon_sym_DASH2] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_in2] = ACTIONS(962), - [anon_sym_loop] = ACTIONS(962), - [anon_sym_make] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [anon_sym_else] = ACTIONS(962), - [anon_sym_match] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(962), - [anon_sym_try] = ACTIONS(962), - [anon_sym_catch] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_source] = ACTIONS(962), - [anon_sym_source_DASHenv] = ACTIONS(962), - [anon_sym_hide] = ACTIONS(962), - [anon_sym_hide_DASHenv] = ACTIONS(962), - [anon_sym_overlay] = ACTIONS(962), - [anon_sym_as] = ACTIONS(962), - [anon_sym_PLUS2] = ACTIONS(962), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(962), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(962), - [aux_sym__val_number_decimal_token1] = ACTIONS(962), - [aux_sym__val_number_decimal_token2] = ACTIONS(962), - [aux_sym__val_number_decimal_token3] = ACTIONS(962), - [aux_sym__val_number_decimal_token4] = ACTIONS(962), - [aux_sym__val_number_token1] = ACTIONS(962), - [aux_sym__val_number_token2] = ACTIONS(962), - [aux_sym__val_number_token3] = ACTIONS(962), - [aux_sym__val_number_token4] = ACTIONS(962), - [aux_sym__val_number_token5] = ACTIONS(962), - [aux_sym__val_number_token6] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym__str_single_quotes] = ACTIONS(962), - [sym__str_back_ticks] = ACTIONS(962), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(962), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(962), - [sym__entry_separator] = ACTIONS(964), - [anon_sym_register] = ACTIONS(962), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(964), - }, - [610] = { - [sym_comment] = STATE(610), - [anon_sym_export] = ACTIONS(966), - [anon_sym_alias] = ACTIONS(966), - [anon_sym_let] = ACTIONS(966), - [anon_sym_let_DASHenv] = ACTIONS(966), - [anon_sym_mut] = ACTIONS(966), - [anon_sym_const] = ACTIONS(966), - [aux_sym_cmd_identifier_token1] = ACTIONS(966), - [aux_sym_cmd_identifier_token2] = ACTIONS(966), - [aux_sym_cmd_identifier_token3] = ACTIONS(966), - [aux_sym_cmd_identifier_token4] = ACTIONS(966), - [aux_sym_cmd_identifier_token5] = ACTIONS(966), - [aux_sym_cmd_identifier_token6] = ACTIONS(966), - [aux_sym_cmd_identifier_token7] = ACTIONS(966), - [aux_sym_cmd_identifier_token8] = ACTIONS(966), - [aux_sym_cmd_identifier_token9] = ACTIONS(966), - [aux_sym_cmd_identifier_token10] = ACTIONS(966), - [aux_sym_cmd_identifier_token11] = ACTIONS(966), - [aux_sym_cmd_identifier_token12] = ACTIONS(966), - [aux_sym_cmd_identifier_token13] = ACTIONS(966), - [aux_sym_cmd_identifier_token14] = ACTIONS(966), - [aux_sym_cmd_identifier_token15] = ACTIONS(966), - [aux_sym_cmd_identifier_token16] = ACTIONS(966), - [aux_sym_cmd_identifier_token17] = ACTIONS(966), - [aux_sym_cmd_identifier_token18] = ACTIONS(966), - [aux_sym_cmd_identifier_token19] = ACTIONS(966), - [aux_sym_cmd_identifier_token20] = ACTIONS(966), - [aux_sym_cmd_identifier_token21] = ACTIONS(966), - [aux_sym_cmd_identifier_token22] = ACTIONS(966), - [aux_sym_cmd_identifier_token23] = ACTIONS(966), - [aux_sym_cmd_identifier_token24] = ACTIONS(966), - [aux_sym_cmd_identifier_token25] = ACTIONS(966), - [aux_sym_cmd_identifier_token26] = ACTIONS(966), - [aux_sym_cmd_identifier_token27] = ACTIONS(966), - [aux_sym_cmd_identifier_token28] = ACTIONS(966), - [aux_sym_cmd_identifier_token29] = ACTIONS(966), - [aux_sym_cmd_identifier_token30] = ACTIONS(966), - [aux_sym_cmd_identifier_token31] = ACTIONS(966), - [aux_sym_cmd_identifier_token32] = ACTIONS(966), - [aux_sym_cmd_identifier_token33] = ACTIONS(966), - [aux_sym_cmd_identifier_token34] = ACTIONS(966), - [aux_sym_cmd_identifier_token35] = ACTIONS(966), - [aux_sym_cmd_identifier_token36] = ACTIONS(966), - [aux_sym_cmd_identifier_token37] = ACTIONS(966), - [aux_sym_cmd_identifier_token38] = ACTIONS(966), - [aux_sym_cmd_identifier_token39] = ACTIONS(966), - [aux_sym_cmd_identifier_token40] = ACTIONS(966), - [anon_sym_def] = ACTIONS(966), - [anon_sym_export_DASHenv] = ACTIONS(966), - [anon_sym_extern] = ACTIONS(966), - [anon_sym_module] = ACTIONS(966), - [anon_sym_use] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(966), - [anon_sym_COMMA] = ACTIONS(966), - [anon_sym_DOLLAR] = ACTIONS(966), - [anon_sym_error] = ACTIONS(966), - [anon_sym_DASH2] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_in2] = ACTIONS(966), - [anon_sym_loop] = ACTIONS(966), - [anon_sym_make] = ACTIONS(966), - [anon_sym_while] = ACTIONS(966), - [anon_sym_do] = ACTIONS(966), - [anon_sym_if] = ACTIONS(966), - [anon_sym_else] = ACTIONS(966), - [anon_sym_match] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(966), - [anon_sym_try] = ACTIONS(966), - [anon_sym_catch] = ACTIONS(966), - [anon_sym_return] = ACTIONS(966), - [anon_sym_source] = ACTIONS(966), - [anon_sym_source_DASHenv] = ACTIONS(966), - [anon_sym_hide] = ACTIONS(966), - [anon_sym_hide_DASHenv] = ACTIONS(966), - [anon_sym_overlay] = ACTIONS(966), - [anon_sym_as] = ACTIONS(966), - [anon_sym_PLUS2] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(966), - [aux_sym__val_number_decimal_token1] = ACTIONS(966), - [aux_sym__val_number_decimal_token2] = ACTIONS(966), - [aux_sym__val_number_decimal_token3] = ACTIONS(966), - [aux_sym__val_number_decimal_token4] = ACTIONS(966), - [aux_sym__val_number_token1] = ACTIONS(966), - [aux_sym__val_number_token2] = ACTIONS(966), - [aux_sym__val_number_token3] = ACTIONS(966), - [aux_sym__val_number_token4] = ACTIONS(966), - [aux_sym__val_number_token5] = ACTIONS(966), - [aux_sym__val_number_token6] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [sym__str_single_quotes] = ACTIONS(966), - [sym__str_back_ticks] = ACTIONS(966), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(966), - [sym__entry_separator] = ACTIONS(968), - [anon_sym_register] = ACTIONS(966), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(968), - }, - [611] = { - [sym_comment] = STATE(611), - [aux_sym__multiple_types_repeat1] = STATE(657), + [599] = { + [sym_comment] = STATE(599), [anon_sym_export] = ACTIONS(2314), [anon_sym_alias] = ACTIONS(2314), [anon_sym_let] = ACTIONS(2314), @@ -141818,6 +139404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(2314), [anon_sym_use] = ACTIONS(2314), [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2314), [anon_sym_DOLLAR] = ACTIONS(2314), [anon_sym_error] = ACTIONS(2314), [anon_sym_DASH2] = ACTIONS(2314), @@ -141832,7 +139419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2314), [anon_sym_else] = ACTIONS(2314), [anon_sym_match] = ACTIONS(2314), - [anon_sym_RBRACE] = ACTIONS(2316), + [anon_sym_RBRACE] = ACTIONS(2314), [anon_sym_try] = ACTIONS(2314), [anon_sym_catch] = ACTIONS(2314), [anon_sym_return] = ACTIONS(2314), @@ -141861,1249 +139448,837 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2314), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2314), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2314), - [sym__entry_separator] = ACTIONS(2210), + [sym__entry_separator] = ACTIONS(2316), [anon_sym_register] = ACTIONS(2314), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2318), + [sym_raw_string_begin] = ACTIONS(2316), }, - [612] = { - [sym_comment] = STATE(612), - [anon_sym_export] = ACTIONS(1985), - [anon_sym_alias] = ACTIONS(1985), - [anon_sym_let] = ACTIONS(1985), - [anon_sym_let_DASHenv] = ACTIONS(1985), - [anon_sym_mut] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1985), - [aux_sym_cmd_identifier_token1] = ACTIONS(1985), - [aux_sym_cmd_identifier_token2] = ACTIONS(1985), - [aux_sym_cmd_identifier_token3] = ACTIONS(1985), - [aux_sym_cmd_identifier_token4] = ACTIONS(1985), - [aux_sym_cmd_identifier_token5] = ACTIONS(1985), - [aux_sym_cmd_identifier_token6] = ACTIONS(1985), - [aux_sym_cmd_identifier_token7] = ACTIONS(1985), - [aux_sym_cmd_identifier_token8] = ACTIONS(1985), - [aux_sym_cmd_identifier_token9] = ACTIONS(1985), - [aux_sym_cmd_identifier_token10] = ACTIONS(1985), - [aux_sym_cmd_identifier_token11] = ACTIONS(1985), - [aux_sym_cmd_identifier_token12] = ACTIONS(1985), - [aux_sym_cmd_identifier_token13] = ACTIONS(1985), - [aux_sym_cmd_identifier_token14] = ACTIONS(1985), - [aux_sym_cmd_identifier_token15] = ACTIONS(1985), - [aux_sym_cmd_identifier_token16] = ACTIONS(1985), - [aux_sym_cmd_identifier_token17] = ACTIONS(1985), - [aux_sym_cmd_identifier_token18] = ACTIONS(1985), - [aux_sym_cmd_identifier_token19] = ACTIONS(1985), - [aux_sym_cmd_identifier_token20] = ACTIONS(1985), - [aux_sym_cmd_identifier_token21] = ACTIONS(1985), - [aux_sym_cmd_identifier_token22] = ACTIONS(1985), - [aux_sym_cmd_identifier_token23] = ACTIONS(1985), - [aux_sym_cmd_identifier_token24] = ACTIONS(1985), - [aux_sym_cmd_identifier_token25] = ACTIONS(1985), - [aux_sym_cmd_identifier_token26] = ACTIONS(1985), - [aux_sym_cmd_identifier_token27] = ACTIONS(1985), - [aux_sym_cmd_identifier_token28] = ACTIONS(1985), - [aux_sym_cmd_identifier_token29] = ACTIONS(1985), - [aux_sym_cmd_identifier_token30] = ACTIONS(1985), - [aux_sym_cmd_identifier_token31] = ACTIONS(1985), - [aux_sym_cmd_identifier_token32] = ACTIONS(1985), - [aux_sym_cmd_identifier_token33] = ACTIONS(1985), - [aux_sym_cmd_identifier_token34] = ACTIONS(1985), - [aux_sym_cmd_identifier_token35] = ACTIONS(1985), - [aux_sym_cmd_identifier_token36] = ACTIONS(1985), - [aux_sym_cmd_identifier_token37] = ACTIONS(1985), - [aux_sym_cmd_identifier_token38] = ACTIONS(1985), - [aux_sym_cmd_identifier_token39] = ACTIONS(1985), - [aux_sym_cmd_identifier_token40] = ACTIONS(1985), - [anon_sym_def] = ACTIONS(1985), - [anon_sym_export_DASHenv] = ACTIONS(1985), - [anon_sym_extern] = ACTIONS(1985), - [anon_sym_module] = ACTIONS(1985), - [anon_sym_use] = ACTIONS(1985), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_COMMA] = ACTIONS(1985), - [anon_sym_DOLLAR] = ACTIONS(1985), - [anon_sym_error] = ACTIONS(1985), - [anon_sym_DASH2] = ACTIONS(1985), - [anon_sym_break] = ACTIONS(1985), - [anon_sym_continue] = ACTIONS(1985), - [anon_sym_for] = ACTIONS(1985), - [anon_sym_in2] = ACTIONS(1985), - [anon_sym_loop] = ACTIONS(1985), - [anon_sym_make] = ACTIONS(1985), - [anon_sym_while] = ACTIONS(1985), - [anon_sym_do] = ACTIONS(1985), - [anon_sym_if] = ACTIONS(1985), - [anon_sym_else] = ACTIONS(1985), - [anon_sym_match] = ACTIONS(1985), - [anon_sym_RBRACE] = ACTIONS(1985), - [anon_sym_try] = ACTIONS(1985), - [anon_sym_catch] = ACTIONS(1985), - [anon_sym_return] = ACTIONS(1985), - [anon_sym_source] = ACTIONS(1985), - [anon_sym_source_DASHenv] = ACTIONS(1985), - [anon_sym_hide] = ACTIONS(1985), - [anon_sym_hide_DASHenv] = ACTIONS(1985), - [anon_sym_overlay] = ACTIONS(1985), - [anon_sym_as] = ACTIONS(1985), - [anon_sym_PLUS2] = ACTIONS(1985), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1985), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1985), - [aux_sym__val_number_decimal_token1] = ACTIONS(1985), - [aux_sym__val_number_decimal_token2] = ACTIONS(1985), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), - [aux_sym__val_number_token1] = ACTIONS(1985), - [aux_sym__val_number_token2] = ACTIONS(1985), - [aux_sym__val_number_token3] = ACTIONS(1985), - [aux_sym__val_number_token4] = ACTIONS(1985), - [aux_sym__val_number_token5] = ACTIONS(1985), - [aux_sym__val_number_token6] = ACTIONS(1985), - [anon_sym_DQUOTE] = ACTIONS(1985), - [sym__str_single_quotes] = ACTIONS(1985), - [sym__str_back_ticks] = ACTIONS(1985), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1985), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1985), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1985), - [sym__entry_separator] = ACTIONS(1987), - [anon_sym_register] = ACTIONS(1985), + [600] = { + [sym_comment] = STATE(600), + [anon_sym_export] = ACTIONS(1987), + [anon_sym_alias] = ACTIONS(1987), + [anon_sym_let] = ACTIONS(1987), + [anon_sym_let_DASHenv] = ACTIONS(1987), + [anon_sym_mut] = ACTIONS(1987), + [anon_sym_const] = ACTIONS(1987), + [aux_sym_cmd_identifier_token1] = ACTIONS(1987), + [aux_sym_cmd_identifier_token2] = ACTIONS(1987), + [aux_sym_cmd_identifier_token3] = ACTIONS(1987), + [aux_sym_cmd_identifier_token4] = ACTIONS(1987), + [aux_sym_cmd_identifier_token5] = ACTIONS(1987), + [aux_sym_cmd_identifier_token6] = ACTIONS(1987), + [aux_sym_cmd_identifier_token7] = ACTIONS(1987), + [aux_sym_cmd_identifier_token8] = ACTIONS(1987), + [aux_sym_cmd_identifier_token9] = ACTIONS(1987), + [aux_sym_cmd_identifier_token10] = ACTIONS(1987), + [aux_sym_cmd_identifier_token11] = ACTIONS(1987), + [aux_sym_cmd_identifier_token12] = ACTIONS(1987), + [aux_sym_cmd_identifier_token13] = ACTIONS(1987), + [aux_sym_cmd_identifier_token14] = ACTIONS(1987), + [aux_sym_cmd_identifier_token15] = ACTIONS(1987), + [aux_sym_cmd_identifier_token16] = ACTIONS(1987), + [aux_sym_cmd_identifier_token17] = ACTIONS(1987), + [aux_sym_cmd_identifier_token18] = ACTIONS(1987), + [aux_sym_cmd_identifier_token19] = ACTIONS(1987), + [aux_sym_cmd_identifier_token20] = ACTIONS(1987), + [aux_sym_cmd_identifier_token21] = ACTIONS(1987), + [aux_sym_cmd_identifier_token22] = ACTIONS(1987), + [aux_sym_cmd_identifier_token23] = ACTIONS(1987), + [aux_sym_cmd_identifier_token24] = ACTIONS(1987), + [aux_sym_cmd_identifier_token25] = ACTIONS(1987), + [aux_sym_cmd_identifier_token26] = ACTIONS(1987), + [aux_sym_cmd_identifier_token27] = ACTIONS(1987), + [aux_sym_cmd_identifier_token28] = ACTIONS(1987), + [aux_sym_cmd_identifier_token29] = ACTIONS(1987), + [aux_sym_cmd_identifier_token30] = ACTIONS(1987), + [aux_sym_cmd_identifier_token31] = ACTIONS(1987), + [aux_sym_cmd_identifier_token32] = ACTIONS(1987), + [aux_sym_cmd_identifier_token33] = ACTIONS(1987), + [aux_sym_cmd_identifier_token34] = ACTIONS(1987), + [aux_sym_cmd_identifier_token35] = ACTIONS(1987), + [aux_sym_cmd_identifier_token36] = ACTIONS(1987), + [aux_sym_cmd_identifier_token37] = ACTIONS(1987), + [aux_sym_cmd_identifier_token38] = ACTIONS(1987), + [aux_sym_cmd_identifier_token39] = ACTIONS(1987), + [aux_sym_cmd_identifier_token40] = ACTIONS(1987), + [anon_sym_def] = ACTIONS(1987), + [anon_sym_export_DASHenv] = ACTIONS(1987), + [anon_sym_extern] = ACTIONS(1987), + [anon_sym_module] = ACTIONS(1987), + [anon_sym_use] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_COMMA] = ACTIONS(1987), + [anon_sym_DOLLAR] = ACTIONS(1987), + [anon_sym_error] = ACTIONS(1987), + [anon_sym_DASH2] = ACTIONS(1987), + [anon_sym_break] = ACTIONS(1987), + [anon_sym_continue] = ACTIONS(1987), + [anon_sym_for] = ACTIONS(1987), + [anon_sym_in2] = ACTIONS(1987), + [anon_sym_loop] = ACTIONS(1987), + [anon_sym_make] = ACTIONS(1987), + [anon_sym_while] = ACTIONS(1987), + [anon_sym_do] = ACTIONS(1987), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_else] = ACTIONS(1987), + [anon_sym_match] = ACTIONS(1987), + [anon_sym_RBRACE] = ACTIONS(1987), + [anon_sym_try] = ACTIONS(1987), + [anon_sym_catch] = ACTIONS(1987), + [anon_sym_return] = ACTIONS(1987), + [anon_sym_source] = ACTIONS(1987), + [anon_sym_source_DASHenv] = ACTIONS(1987), + [anon_sym_hide] = ACTIONS(1987), + [anon_sym_hide_DASHenv] = ACTIONS(1987), + [anon_sym_overlay] = ACTIONS(1987), + [anon_sym_as] = ACTIONS(1987), + [anon_sym_PLUS2] = ACTIONS(1987), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1987), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1987), + [aux_sym__val_number_decimal_token1] = ACTIONS(1987), + [aux_sym__val_number_decimal_token2] = ACTIONS(1987), + [aux_sym__val_number_decimal_token3] = ACTIONS(1987), + [aux_sym__val_number_decimal_token4] = ACTIONS(1987), + [aux_sym__val_number_token1] = ACTIONS(1987), + [aux_sym__val_number_token2] = ACTIONS(1987), + [aux_sym__val_number_token3] = ACTIONS(1987), + [aux_sym__val_number_token4] = ACTIONS(1987), + [aux_sym__val_number_token5] = ACTIONS(1987), + [aux_sym__val_number_token6] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(1987), + [sym__str_single_quotes] = ACTIONS(1987), + [sym__str_back_ticks] = ACTIONS(1987), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1987), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1987), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1987), + [sym__entry_separator] = ACTIONS(1989), + [anon_sym_register] = ACTIONS(1987), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1987), - }, - [613] = { - [sym_comment] = STATE(613), - [anon_sym_export] = ACTIONS(2216), - [anon_sym_alias] = ACTIONS(2216), - [anon_sym_let] = ACTIONS(2216), - [anon_sym_let_DASHenv] = ACTIONS(2216), - [anon_sym_mut] = ACTIONS(2216), - [anon_sym_const] = ACTIONS(2216), - [aux_sym_cmd_identifier_token1] = ACTIONS(2216), - [aux_sym_cmd_identifier_token2] = ACTIONS(2218), - [aux_sym_cmd_identifier_token3] = ACTIONS(2218), - [aux_sym_cmd_identifier_token4] = ACTIONS(2218), - [aux_sym_cmd_identifier_token5] = ACTIONS(2218), - [aux_sym_cmd_identifier_token6] = ACTIONS(2218), - [aux_sym_cmd_identifier_token7] = ACTIONS(2218), - [aux_sym_cmd_identifier_token8] = ACTIONS(2216), - [aux_sym_cmd_identifier_token9] = ACTIONS(2216), - [aux_sym_cmd_identifier_token10] = ACTIONS(2218), - [aux_sym_cmd_identifier_token11] = ACTIONS(2218), - [aux_sym_cmd_identifier_token12] = ACTIONS(2216), - [aux_sym_cmd_identifier_token13] = ACTIONS(2216), - [aux_sym_cmd_identifier_token14] = ACTIONS(2216), - [aux_sym_cmd_identifier_token15] = ACTIONS(2216), - [aux_sym_cmd_identifier_token16] = ACTIONS(2218), - [aux_sym_cmd_identifier_token17] = ACTIONS(2218), - [aux_sym_cmd_identifier_token18] = ACTIONS(2218), - [aux_sym_cmd_identifier_token19] = ACTIONS(2218), - [aux_sym_cmd_identifier_token20] = ACTIONS(2218), - [aux_sym_cmd_identifier_token21] = ACTIONS(2218), - [aux_sym_cmd_identifier_token22] = ACTIONS(2218), - [aux_sym_cmd_identifier_token23] = ACTIONS(2218), - [aux_sym_cmd_identifier_token24] = ACTIONS(2218), - [aux_sym_cmd_identifier_token25] = ACTIONS(2218), - [aux_sym_cmd_identifier_token26] = ACTIONS(2218), - [aux_sym_cmd_identifier_token27] = ACTIONS(2218), - [aux_sym_cmd_identifier_token28] = ACTIONS(2218), - [aux_sym_cmd_identifier_token29] = ACTIONS(2218), - [aux_sym_cmd_identifier_token30] = ACTIONS(2218), - [aux_sym_cmd_identifier_token31] = ACTIONS(2218), - [aux_sym_cmd_identifier_token32] = ACTIONS(2218), - [aux_sym_cmd_identifier_token33] = ACTIONS(2218), - [aux_sym_cmd_identifier_token34] = ACTIONS(2216), - [aux_sym_cmd_identifier_token35] = ACTIONS(2218), - [aux_sym_cmd_identifier_token36] = ACTIONS(2218), - [aux_sym_cmd_identifier_token37] = ACTIONS(2218), - [aux_sym_cmd_identifier_token38] = ACTIONS(2216), - [aux_sym_cmd_identifier_token39] = ACTIONS(2218), - [aux_sym_cmd_identifier_token40] = ACTIONS(2218), - [anon_sym_def] = ACTIONS(2216), - [anon_sym_export_DASHenv] = ACTIONS(2216), - [anon_sym_extern] = ACTIONS(2216), - [anon_sym_module] = ACTIONS(2216), - [anon_sym_use] = ACTIONS(2216), - [anon_sym_LPAREN] = ACTIONS(2216), - [anon_sym_COMMA] = ACTIONS(2218), - [anon_sym_DOLLAR] = ACTIONS(2216), - [anon_sym_error] = ACTIONS(2216), - [anon_sym_DASH2] = ACTIONS(2216), - [anon_sym_break] = ACTIONS(2216), - [anon_sym_continue] = ACTIONS(2216), - [anon_sym_for] = ACTIONS(2216), - [anon_sym_in2] = ACTIONS(2216), - [anon_sym_loop] = ACTIONS(2216), - [anon_sym_make] = ACTIONS(2216), - [anon_sym_while] = ACTIONS(2216), - [anon_sym_do] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2216), - [anon_sym_else] = ACTIONS(2216), - [anon_sym_match] = ACTIONS(2216), - [anon_sym_RBRACE] = ACTIONS(2218), - [anon_sym_try] = ACTIONS(2216), - [anon_sym_catch] = ACTIONS(2216), - [anon_sym_return] = ACTIONS(2216), - [anon_sym_source] = ACTIONS(2216), - [anon_sym_source_DASHenv] = ACTIONS(2216), - [anon_sym_hide] = ACTIONS(2216), - [anon_sym_hide_DASHenv] = ACTIONS(2216), - [anon_sym_overlay] = ACTIONS(2216), - [anon_sym_as] = ACTIONS(2216), - [anon_sym_LPAREN2] = ACTIONS(2218), - [anon_sym_PLUS2] = ACTIONS(2216), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2218), - [aux_sym__val_number_decimal_token1] = ACTIONS(2216), - [aux_sym__val_number_decimal_token2] = ACTIONS(2218), - [aux_sym__val_number_decimal_token3] = ACTIONS(2218), - [aux_sym__val_number_decimal_token4] = ACTIONS(2218), - [aux_sym__val_number_token1] = ACTIONS(2218), - [aux_sym__val_number_token2] = ACTIONS(2218), - [aux_sym__val_number_token3] = ACTIONS(2218), - [aux_sym__val_number_token4] = ACTIONS(2216), - [aux_sym__val_number_token5] = ACTIONS(2216), - [aux_sym__val_number_token6] = ACTIONS(2216), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(2218), - [anon_sym_register] = ACTIONS(2216), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2218), + [sym_raw_string_begin] = ACTIONS(1989), }, - [614] = { - [sym_comment] = STATE(614), - [anon_sym_export] = ACTIONS(2033), - [anon_sym_alias] = ACTIONS(2033), - [anon_sym_let] = ACTIONS(2033), - [anon_sym_let_DASHenv] = ACTIONS(2033), - [anon_sym_mut] = ACTIONS(2033), - [anon_sym_const] = ACTIONS(2033), - [aux_sym_cmd_identifier_token1] = ACTIONS(2033), - [aux_sym_cmd_identifier_token2] = ACTIONS(2033), - [aux_sym_cmd_identifier_token3] = ACTIONS(2033), - [aux_sym_cmd_identifier_token4] = ACTIONS(2033), - [aux_sym_cmd_identifier_token5] = ACTIONS(2033), - [aux_sym_cmd_identifier_token6] = ACTIONS(2033), - [aux_sym_cmd_identifier_token7] = ACTIONS(2033), - [aux_sym_cmd_identifier_token8] = ACTIONS(2033), - [aux_sym_cmd_identifier_token9] = ACTIONS(2033), - [aux_sym_cmd_identifier_token10] = ACTIONS(2033), - [aux_sym_cmd_identifier_token11] = ACTIONS(2033), - [aux_sym_cmd_identifier_token12] = ACTIONS(2033), - [aux_sym_cmd_identifier_token13] = ACTIONS(2033), - [aux_sym_cmd_identifier_token14] = ACTIONS(2033), - [aux_sym_cmd_identifier_token15] = ACTIONS(2033), - [aux_sym_cmd_identifier_token16] = ACTIONS(2033), - [aux_sym_cmd_identifier_token17] = ACTIONS(2033), - [aux_sym_cmd_identifier_token18] = ACTIONS(2033), - [aux_sym_cmd_identifier_token19] = ACTIONS(2033), - [aux_sym_cmd_identifier_token20] = ACTIONS(2033), - [aux_sym_cmd_identifier_token21] = ACTIONS(2033), - [aux_sym_cmd_identifier_token22] = ACTIONS(2033), - [aux_sym_cmd_identifier_token23] = ACTIONS(2033), - [aux_sym_cmd_identifier_token24] = ACTIONS(2033), - [aux_sym_cmd_identifier_token25] = ACTIONS(2033), - [aux_sym_cmd_identifier_token26] = ACTIONS(2033), - [aux_sym_cmd_identifier_token27] = ACTIONS(2033), - [aux_sym_cmd_identifier_token28] = ACTIONS(2033), - [aux_sym_cmd_identifier_token29] = ACTIONS(2033), - [aux_sym_cmd_identifier_token30] = ACTIONS(2033), - [aux_sym_cmd_identifier_token31] = ACTIONS(2033), - [aux_sym_cmd_identifier_token32] = ACTIONS(2033), - [aux_sym_cmd_identifier_token33] = ACTIONS(2033), - [aux_sym_cmd_identifier_token34] = ACTIONS(2033), - [aux_sym_cmd_identifier_token35] = ACTIONS(2033), - [aux_sym_cmd_identifier_token36] = ACTIONS(2033), - [aux_sym_cmd_identifier_token37] = ACTIONS(2033), - [aux_sym_cmd_identifier_token38] = ACTIONS(2033), - [aux_sym_cmd_identifier_token39] = ACTIONS(2033), - [aux_sym_cmd_identifier_token40] = ACTIONS(2033), - [anon_sym_def] = ACTIONS(2033), - [anon_sym_export_DASHenv] = ACTIONS(2033), - [anon_sym_extern] = ACTIONS(2033), - [anon_sym_module] = ACTIONS(2033), - [anon_sym_use] = ACTIONS(2033), - [anon_sym_LPAREN] = ACTIONS(2033), - [anon_sym_COMMA] = ACTIONS(2033), - [anon_sym_DOLLAR] = ACTIONS(2033), - [anon_sym_error] = ACTIONS(2033), - [anon_sym_DASH2] = ACTIONS(2033), - [anon_sym_break] = ACTIONS(2033), - [anon_sym_continue] = ACTIONS(2033), - [anon_sym_for] = ACTIONS(2033), - [anon_sym_in2] = ACTIONS(2033), - [anon_sym_loop] = ACTIONS(2033), - [anon_sym_make] = ACTIONS(2033), - [anon_sym_while] = ACTIONS(2033), - [anon_sym_do] = ACTIONS(2033), - [anon_sym_if] = ACTIONS(2033), - [anon_sym_else] = ACTIONS(2033), - [anon_sym_match] = ACTIONS(2033), - [anon_sym_RBRACE] = ACTIONS(2033), - [anon_sym_try] = ACTIONS(2033), - [anon_sym_catch] = ACTIONS(2033), - [anon_sym_return] = ACTIONS(2033), - [anon_sym_source] = ACTIONS(2033), - [anon_sym_source_DASHenv] = ACTIONS(2033), - [anon_sym_hide] = ACTIONS(2033), - [anon_sym_hide_DASHenv] = ACTIONS(2033), - [anon_sym_overlay] = ACTIONS(2033), - [anon_sym_as] = ACTIONS(2033), - [anon_sym_PLUS2] = ACTIONS(2033), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2033), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2033), - [aux_sym__val_number_decimal_token1] = ACTIONS(2033), - [aux_sym__val_number_decimal_token2] = ACTIONS(2033), - [aux_sym__val_number_decimal_token3] = ACTIONS(2033), - [aux_sym__val_number_decimal_token4] = ACTIONS(2033), - [aux_sym__val_number_token1] = ACTIONS(2033), - [aux_sym__val_number_token2] = ACTIONS(2033), - [aux_sym__val_number_token3] = ACTIONS(2033), - [aux_sym__val_number_token4] = ACTIONS(2033), - [aux_sym__val_number_token5] = ACTIONS(2033), - [aux_sym__val_number_token6] = ACTIONS(2033), - [anon_sym_DQUOTE] = ACTIONS(2033), - [sym__str_single_quotes] = ACTIONS(2033), - [sym__str_back_ticks] = ACTIONS(2033), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2033), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2033), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2033), - [sym__entry_separator] = ACTIONS(2039), - [anon_sym_register] = ACTIONS(2033), + [601] = { + [sym_comment] = STATE(601), + [anon_sym_export] = ACTIONS(1993), + [anon_sym_alias] = ACTIONS(1993), + [anon_sym_let] = ACTIONS(1993), + [anon_sym_let_DASHenv] = ACTIONS(1993), + [anon_sym_mut] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1993), + [aux_sym_cmd_identifier_token1] = ACTIONS(1993), + [aux_sym_cmd_identifier_token2] = ACTIONS(1993), + [aux_sym_cmd_identifier_token3] = ACTIONS(1993), + [aux_sym_cmd_identifier_token4] = ACTIONS(1993), + [aux_sym_cmd_identifier_token5] = ACTIONS(1993), + [aux_sym_cmd_identifier_token6] = ACTIONS(1993), + [aux_sym_cmd_identifier_token7] = ACTIONS(1993), + [aux_sym_cmd_identifier_token8] = ACTIONS(1993), + [aux_sym_cmd_identifier_token9] = ACTIONS(1993), + [aux_sym_cmd_identifier_token10] = ACTIONS(1993), + [aux_sym_cmd_identifier_token11] = ACTIONS(1993), + [aux_sym_cmd_identifier_token12] = ACTIONS(1993), + [aux_sym_cmd_identifier_token13] = ACTIONS(1993), + [aux_sym_cmd_identifier_token14] = ACTIONS(1993), + [aux_sym_cmd_identifier_token15] = ACTIONS(1993), + [aux_sym_cmd_identifier_token16] = ACTIONS(1993), + [aux_sym_cmd_identifier_token17] = ACTIONS(1993), + [aux_sym_cmd_identifier_token18] = ACTIONS(1993), + [aux_sym_cmd_identifier_token19] = ACTIONS(1993), + [aux_sym_cmd_identifier_token20] = ACTIONS(1993), + [aux_sym_cmd_identifier_token21] = ACTIONS(1993), + [aux_sym_cmd_identifier_token22] = ACTIONS(1993), + [aux_sym_cmd_identifier_token23] = ACTIONS(1993), + [aux_sym_cmd_identifier_token24] = ACTIONS(1993), + [aux_sym_cmd_identifier_token25] = ACTIONS(1993), + [aux_sym_cmd_identifier_token26] = ACTIONS(1993), + [aux_sym_cmd_identifier_token27] = ACTIONS(1993), + [aux_sym_cmd_identifier_token28] = ACTIONS(1993), + [aux_sym_cmd_identifier_token29] = ACTIONS(1993), + [aux_sym_cmd_identifier_token30] = ACTIONS(1993), + [aux_sym_cmd_identifier_token31] = ACTIONS(1993), + [aux_sym_cmd_identifier_token32] = ACTIONS(1993), + [aux_sym_cmd_identifier_token33] = ACTIONS(1993), + [aux_sym_cmd_identifier_token34] = ACTIONS(1993), + [aux_sym_cmd_identifier_token35] = ACTIONS(1993), + [aux_sym_cmd_identifier_token36] = ACTIONS(1993), + [aux_sym_cmd_identifier_token37] = ACTIONS(1993), + [aux_sym_cmd_identifier_token38] = ACTIONS(1993), + [aux_sym_cmd_identifier_token39] = ACTIONS(1993), + [aux_sym_cmd_identifier_token40] = ACTIONS(1993), + [anon_sym_def] = ACTIONS(1993), + [anon_sym_export_DASHenv] = ACTIONS(1993), + [anon_sym_extern] = ACTIONS(1993), + [anon_sym_module] = ACTIONS(1993), + [anon_sym_use] = ACTIONS(1993), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_COMMA] = ACTIONS(1993), + [anon_sym_DOLLAR] = ACTIONS(1993), + [anon_sym_error] = ACTIONS(1993), + [anon_sym_DASH2] = ACTIONS(1993), + [anon_sym_break] = ACTIONS(1993), + [anon_sym_continue] = ACTIONS(1993), + [anon_sym_for] = ACTIONS(1993), + [anon_sym_in2] = ACTIONS(1993), + [anon_sym_loop] = ACTIONS(1993), + [anon_sym_make] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1993), + [anon_sym_do] = ACTIONS(1993), + [anon_sym_if] = ACTIONS(1993), + [anon_sym_else] = ACTIONS(1993), + [anon_sym_match] = ACTIONS(1993), + [anon_sym_RBRACE] = ACTIONS(1993), + [anon_sym_try] = ACTIONS(1993), + [anon_sym_catch] = ACTIONS(1993), + [anon_sym_return] = ACTIONS(1993), + [anon_sym_source] = ACTIONS(1993), + [anon_sym_source_DASHenv] = ACTIONS(1993), + [anon_sym_hide] = ACTIONS(1993), + [anon_sym_hide_DASHenv] = ACTIONS(1993), + [anon_sym_overlay] = ACTIONS(1993), + [anon_sym_as] = ACTIONS(1993), + [anon_sym_PLUS2] = ACTIONS(1993), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1993), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1993), + [aux_sym__val_number_decimal_token1] = ACTIONS(1993), + [aux_sym__val_number_decimal_token2] = ACTIONS(1993), + [aux_sym__val_number_decimal_token3] = ACTIONS(1993), + [aux_sym__val_number_decimal_token4] = ACTIONS(1993), + [aux_sym__val_number_token1] = ACTIONS(1993), + [aux_sym__val_number_token2] = ACTIONS(1993), + [aux_sym__val_number_token3] = ACTIONS(1993), + [aux_sym__val_number_token4] = ACTIONS(1993), + [aux_sym__val_number_token5] = ACTIONS(1993), + [aux_sym__val_number_token6] = ACTIONS(1993), + [anon_sym_DQUOTE] = ACTIONS(1993), + [sym__str_single_quotes] = ACTIONS(1993), + [sym__str_back_ticks] = ACTIONS(1993), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1993), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1993), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1993), + [sym__entry_separator] = ACTIONS(1995), + [anon_sym_register] = ACTIONS(1993), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2039), + [sym_raw_string_begin] = ACTIONS(1995), }, - [615] = { - [sym_comment] = STATE(615), - [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(2320), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2320), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2320), - [sym__entry_separator] = ACTIONS(2322), - [anon_sym_register] = ACTIONS(2320), + [602] = { + [sym_comment] = STATE(602), + [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_COMMA] = 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_hide] = ACTIONS(2318), + [anon_sym_hide_DASHenv] = ACTIONS(2318), + [anon_sym_overlay] = ACTIONS(2318), + [anon_sym_as] = ACTIONS(2318), + [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_DOLLAR_SQUOTE] = ACTIONS(2318), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2318), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2318), + [sym__entry_separator] = ACTIONS(2320), + [anon_sym_register] = ACTIONS(2318), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2322), + [sym_raw_string_begin] = ACTIONS(2320), }, - [616] = { - [sym_comment] = STATE(616), - [anon_sym_export] = ACTIONS(2009), - [anon_sym_alias] = ACTIONS(2009), - [anon_sym_let] = ACTIONS(2009), - [anon_sym_let_DASHenv] = ACTIONS(2009), - [anon_sym_mut] = ACTIONS(2009), - [anon_sym_const] = ACTIONS(2009), - [aux_sym_cmd_identifier_token1] = ACTIONS(2009), - [aux_sym_cmd_identifier_token2] = ACTIONS(2009), - [aux_sym_cmd_identifier_token3] = ACTIONS(2009), - [aux_sym_cmd_identifier_token4] = ACTIONS(2009), - [aux_sym_cmd_identifier_token5] = ACTIONS(2009), - [aux_sym_cmd_identifier_token6] = ACTIONS(2009), - [aux_sym_cmd_identifier_token7] = ACTIONS(2009), - [aux_sym_cmd_identifier_token8] = ACTIONS(2009), - [aux_sym_cmd_identifier_token9] = ACTIONS(2009), - [aux_sym_cmd_identifier_token10] = ACTIONS(2009), - [aux_sym_cmd_identifier_token11] = ACTIONS(2009), - [aux_sym_cmd_identifier_token12] = ACTIONS(2009), - [aux_sym_cmd_identifier_token13] = ACTIONS(2009), - [aux_sym_cmd_identifier_token14] = ACTIONS(2009), - [aux_sym_cmd_identifier_token15] = ACTIONS(2009), - [aux_sym_cmd_identifier_token16] = ACTIONS(2009), - [aux_sym_cmd_identifier_token17] = ACTIONS(2009), - [aux_sym_cmd_identifier_token18] = ACTIONS(2009), - [aux_sym_cmd_identifier_token19] = ACTIONS(2009), - [aux_sym_cmd_identifier_token20] = ACTIONS(2009), - [aux_sym_cmd_identifier_token21] = ACTIONS(2009), - [aux_sym_cmd_identifier_token22] = ACTIONS(2009), - [aux_sym_cmd_identifier_token23] = ACTIONS(2009), - [aux_sym_cmd_identifier_token24] = ACTIONS(2009), - [aux_sym_cmd_identifier_token25] = ACTIONS(2009), - [aux_sym_cmd_identifier_token26] = ACTIONS(2009), - [aux_sym_cmd_identifier_token27] = ACTIONS(2009), - [aux_sym_cmd_identifier_token28] = ACTIONS(2009), - [aux_sym_cmd_identifier_token29] = ACTIONS(2009), - [aux_sym_cmd_identifier_token30] = ACTIONS(2009), - [aux_sym_cmd_identifier_token31] = ACTIONS(2009), - [aux_sym_cmd_identifier_token32] = ACTIONS(2009), - [aux_sym_cmd_identifier_token33] = ACTIONS(2009), - [aux_sym_cmd_identifier_token34] = ACTIONS(2009), - [aux_sym_cmd_identifier_token35] = ACTIONS(2009), - [aux_sym_cmd_identifier_token36] = ACTIONS(2009), - [aux_sym_cmd_identifier_token37] = ACTIONS(2009), - [aux_sym_cmd_identifier_token38] = ACTIONS(2009), - [aux_sym_cmd_identifier_token39] = ACTIONS(2009), - [aux_sym_cmd_identifier_token40] = ACTIONS(2009), - [anon_sym_def] = ACTIONS(2009), - [anon_sym_export_DASHenv] = ACTIONS(2009), - [anon_sym_extern] = ACTIONS(2009), - [anon_sym_module] = ACTIONS(2009), - [anon_sym_use] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_COMMA] = ACTIONS(2009), - [anon_sym_DOLLAR] = ACTIONS(2009), - [anon_sym_error] = ACTIONS(2009), - [anon_sym_DASH2] = ACTIONS(2009), - [anon_sym_break] = ACTIONS(2009), - [anon_sym_continue] = ACTIONS(2009), - [anon_sym_for] = ACTIONS(2009), - [anon_sym_in2] = ACTIONS(2009), - [anon_sym_loop] = ACTIONS(2009), - [anon_sym_make] = ACTIONS(2009), - [anon_sym_while] = ACTIONS(2009), - [anon_sym_do] = ACTIONS(2009), - [anon_sym_if] = ACTIONS(2009), - [anon_sym_else] = ACTIONS(2009), - [anon_sym_match] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2009), - [anon_sym_try] = ACTIONS(2009), - [anon_sym_catch] = ACTIONS(2009), - [anon_sym_return] = ACTIONS(2009), - [anon_sym_source] = ACTIONS(2009), - [anon_sym_source_DASHenv] = ACTIONS(2009), - [anon_sym_hide] = ACTIONS(2009), - [anon_sym_hide_DASHenv] = ACTIONS(2009), - [anon_sym_overlay] = ACTIONS(2009), - [anon_sym_as] = ACTIONS(2009), - [anon_sym_PLUS2] = ACTIONS(2009), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2009), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2009), - [aux_sym__val_number_decimal_token1] = ACTIONS(2009), - [aux_sym__val_number_decimal_token2] = ACTIONS(2009), - [aux_sym__val_number_decimal_token3] = ACTIONS(2009), - [aux_sym__val_number_decimal_token4] = ACTIONS(2009), - [aux_sym__val_number_token1] = ACTIONS(2009), - [aux_sym__val_number_token2] = ACTIONS(2009), - [aux_sym__val_number_token3] = ACTIONS(2009), - [aux_sym__val_number_token4] = ACTIONS(2009), - [aux_sym__val_number_token5] = ACTIONS(2009), - [aux_sym__val_number_token6] = ACTIONS(2009), - [anon_sym_DQUOTE] = ACTIONS(2009), - [sym__str_single_quotes] = ACTIONS(2009), - [sym__str_back_ticks] = ACTIONS(2009), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2009), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2009), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2009), - [sym__entry_separator] = ACTIONS(2015), - [anon_sym_register] = ACTIONS(2009), + [603] = { + [sym_comment] = STATE(603), + [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_COMMA] = 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_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_DQUOTE] = ACTIONS(2322), + [sym__str_single_quotes] = ACTIONS(2322), + [sym__str_back_ticks] = ACTIONS(2322), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2322), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2322), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2322), + [sym__entry_separator] = ACTIONS(2324), + [anon_sym_register] = ACTIONS(2322), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2015), + [sym_raw_string_begin] = ACTIONS(2324), }, - [617] = { - [sym_comment] = STATE(617), - [anon_sym_export] = ACTIONS(2017), - [anon_sym_alias] = ACTIONS(2017), - [anon_sym_let] = ACTIONS(2017), - [anon_sym_let_DASHenv] = ACTIONS(2017), - [anon_sym_mut] = ACTIONS(2017), - [anon_sym_const] = ACTIONS(2017), - [aux_sym_cmd_identifier_token1] = ACTIONS(2017), - [aux_sym_cmd_identifier_token2] = ACTIONS(2017), - [aux_sym_cmd_identifier_token3] = ACTIONS(2017), - [aux_sym_cmd_identifier_token4] = ACTIONS(2017), - [aux_sym_cmd_identifier_token5] = ACTIONS(2017), - [aux_sym_cmd_identifier_token6] = ACTIONS(2017), - [aux_sym_cmd_identifier_token7] = ACTIONS(2017), - [aux_sym_cmd_identifier_token8] = ACTIONS(2017), - [aux_sym_cmd_identifier_token9] = ACTIONS(2017), - [aux_sym_cmd_identifier_token10] = ACTIONS(2017), - [aux_sym_cmd_identifier_token11] = ACTIONS(2017), - [aux_sym_cmd_identifier_token12] = ACTIONS(2017), - [aux_sym_cmd_identifier_token13] = ACTIONS(2017), - [aux_sym_cmd_identifier_token14] = ACTIONS(2017), - [aux_sym_cmd_identifier_token15] = ACTIONS(2017), - [aux_sym_cmd_identifier_token16] = ACTIONS(2017), - [aux_sym_cmd_identifier_token17] = ACTIONS(2017), - [aux_sym_cmd_identifier_token18] = ACTIONS(2017), - [aux_sym_cmd_identifier_token19] = ACTIONS(2017), - [aux_sym_cmd_identifier_token20] = ACTIONS(2017), - [aux_sym_cmd_identifier_token21] = ACTIONS(2017), - [aux_sym_cmd_identifier_token22] = ACTIONS(2017), - [aux_sym_cmd_identifier_token23] = ACTIONS(2017), - [aux_sym_cmd_identifier_token24] = ACTIONS(2017), - [aux_sym_cmd_identifier_token25] = ACTIONS(2017), - [aux_sym_cmd_identifier_token26] = ACTIONS(2017), - [aux_sym_cmd_identifier_token27] = ACTIONS(2017), - [aux_sym_cmd_identifier_token28] = ACTIONS(2017), - [aux_sym_cmd_identifier_token29] = ACTIONS(2017), - [aux_sym_cmd_identifier_token30] = ACTIONS(2017), - [aux_sym_cmd_identifier_token31] = ACTIONS(2017), - [aux_sym_cmd_identifier_token32] = ACTIONS(2017), - [aux_sym_cmd_identifier_token33] = ACTIONS(2017), - [aux_sym_cmd_identifier_token34] = ACTIONS(2017), - [aux_sym_cmd_identifier_token35] = ACTIONS(2017), - [aux_sym_cmd_identifier_token36] = ACTIONS(2017), - [aux_sym_cmd_identifier_token37] = ACTIONS(2017), - [aux_sym_cmd_identifier_token38] = ACTIONS(2017), - [aux_sym_cmd_identifier_token39] = ACTIONS(2017), - [aux_sym_cmd_identifier_token40] = ACTIONS(2017), - [anon_sym_def] = ACTIONS(2017), - [anon_sym_export_DASHenv] = ACTIONS(2017), - [anon_sym_extern] = ACTIONS(2017), - [anon_sym_module] = ACTIONS(2017), - [anon_sym_use] = ACTIONS(2017), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_COMMA] = ACTIONS(2017), - [anon_sym_DOLLAR] = ACTIONS(2017), - [anon_sym_error] = ACTIONS(2017), - [anon_sym_DASH2] = ACTIONS(2017), - [anon_sym_break] = ACTIONS(2017), - [anon_sym_continue] = ACTIONS(2017), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_in2] = ACTIONS(2017), - [anon_sym_loop] = ACTIONS(2017), - [anon_sym_make] = ACTIONS(2017), - [anon_sym_while] = ACTIONS(2017), - [anon_sym_do] = ACTIONS(2017), - [anon_sym_if] = ACTIONS(2017), - [anon_sym_else] = ACTIONS(2017), - [anon_sym_match] = ACTIONS(2017), - [anon_sym_RBRACE] = ACTIONS(2017), - [anon_sym_try] = ACTIONS(2017), - [anon_sym_catch] = ACTIONS(2017), - [anon_sym_return] = ACTIONS(2017), - [anon_sym_source] = ACTIONS(2017), - [anon_sym_source_DASHenv] = ACTIONS(2017), - [anon_sym_hide] = ACTIONS(2017), - [anon_sym_hide_DASHenv] = ACTIONS(2017), - [anon_sym_overlay] = ACTIONS(2017), - [anon_sym_as] = ACTIONS(2017), - [anon_sym_PLUS2] = ACTIONS(2017), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2017), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2017), - [aux_sym__val_number_decimal_token1] = ACTIONS(2017), - [aux_sym__val_number_decimal_token2] = ACTIONS(2017), - [aux_sym__val_number_decimal_token3] = ACTIONS(2017), - [aux_sym__val_number_decimal_token4] = ACTIONS(2017), - [aux_sym__val_number_token1] = ACTIONS(2017), - [aux_sym__val_number_token2] = ACTIONS(2017), - [aux_sym__val_number_token3] = ACTIONS(2017), - [aux_sym__val_number_token4] = ACTIONS(2017), - [aux_sym__val_number_token5] = ACTIONS(2017), - [aux_sym__val_number_token6] = ACTIONS(2017), - [anon_sym_DQUOTE] = ACTIONS(2017), - [sym__str_single_quotes] = ACTIONS(2017), - [sym__str_back_ticks] = ACTIONS(2017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2017), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2017), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2017), - [sym__entry_separator] = ACTIONS(2023), - [anon_sym_register] = ACTIONS(2017), + [604] = { + [sym_comment] = STATE(604), + [anon_sym_export] = ACTIONS(2326), + [anon_sym_alias] = ACTIONS(2326), + [anon_sym_let] = ACTIONS(2326), + [anon_sym_let_DASHenv] = ACTIONS(2326), + [anon_sym_mut] = ACTIONS(2326), + [anon_sym_const] = ACTIONS(2326), + [aux_sym_cmd_identifier_token1] = ACTIONS(2326), + [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(2326), + [aux_sym_cmd_identifier_token9] = ACTIONS(2326), + [aux_sym_cmd_identifier_token10] = ACTIONS(2326), + [aux_sym_cmd_identifier_token11] = ACTIONS(2326), + [aux_sym_cmd_identifier_token12] = ACTIONS(2326), + [aux_sym_cmd_identifier_token13] = ACTIONS(2326), + [aux_sym_cmd_identifier_token14] = ACTIONS(2326), + [aux_sym_cmd_identifier_token15] = ACTIONS(2326), + [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(2326), + [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(2326), + [aux_sym_cmd_identifier_token39] = ACTIONS(2326), + [aux_sym_cmd_identifier_token40] = ACTIONS(2326), + [anon_sym_def] = ACTIONS(2326), + [anon_sym_export_DASHenv] = ACTIONS(2326), + [anon_sym_extern] = ACTIONS(2326), + [anon_sym_module] = ACTIONS(2326), + [anon_sym_use] = ACTIONS(2326), + [anon_sym_LPAREN] = ACTIONS(2326), + [anon_sym_COMMA] = ACTIONS(2326), + [anon_sym_DOLLAR] = ACTIONS(2326), + [anon_sym_error] = ACTIONS(2326), + [anon_sym_DASH2] = ACTIONS(2326), + [anon_sym_break] = ACTIONS(2326), + [anon_sym_continue] = ACTIONS(2326), + [anon_sym_for] = ACTIONS(2326), + [anon_sym_in2] = ACTIONS(2326), + [anon_sym_loop] = ACTIONS(2326), + [anon_sym_make] = ACTIONS(2326), + [anon_sym_while] = ACTIONS(2326), + [anon_sym_do] = ACTIONS(2326), + [anon_sym_if] = ACTIONS(2326), + [anon_sym_else] = ACTIONS(2326), + [anon_sym_match] = ACTIONS(2326), + [anon_sym_RBRACE] = ACTIONS(2326), + [anon_sym_try] = ACTIONS(2326), + [anon_sym_catch] = ACTIONS(2326), + [anon_sym_return] = ACTIONS(2326), + [anon_sym_source] = ACTIONS(2326), + [anon_sym_source_DASHenv] = ACTIONS(2326), + [anon_sym_hide] = ACTIONS(2326), + [anon_sym_hide_DASHenv] = ACTIONS(2326), + [anon_sym_overlay] = ACTIONS(2326), + [anon_sym_as] = ACTIONS(2326), + [anon_sym_PLUS2] = ACTIONS(2326), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2326), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2326), + [aux_sym__val_number_decimal_token1] = ACTIONS(2326), + [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_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_DOT_DOT_DOT_LBRACE] = ACTIONS(2326), + [sym__entry_separator] = ACTIONS(2328), + [anon_sym_register] = ACTIONS(2326), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2023), + [sym_raw_string_begin] = ACTIONS(2328), }, - [618] = { - [sym_comment] = STATE(618), - [anon_sym_export] = ACTIONS(2324), - [anon_sym_alias] = ACTIONS(2324), - [anon_sym_let] = ACTIONS(2324), - [anon_sym_let_DASHenv] = ACTIONS(2324), - [anon_sym_mut] = ACTIONS(2324), - [anon_sym_const] = ACTIONS(2324), - [aux_sym_cmd_identifier_token1] = ACTIONS(2324), - [aux_sym_cmd_identifier_token2] = ACTIONS(2324), - [aux_sym_cmd_identifier_token3] = ACTIONS(2324), - [aux_sym_cmd_identifier_token4] = ACTIONS(2324), - [aux_sym_cmd_identifier_token5] = ACTIONS(2324), - [aux_sym_cmd_identifier_token6] = ACTIONS(2324), - [aux_sym_cmd_identifier_token7] = ACTIONS(2324), - [aux_sym_cmd_identifier_token8] = ACTIONS(2324), - [aux_sym_cmd_identifier_token9] = ACTIONS(2324), - [aux_sym_cmd_identifier_token10] = ACTIONS(2324), - [aux_sym_cmd_identifier_token11] = ACTIONS(2324), - [aux_sym_cmd_identifier_token12] = ACTIONS(2324), - [aux_sym_cmd_identifier_token13] = ACTIONS(2324), - [aux_sym_cmd_identifier_token14] = ACTIONS(2324), - [aux_sym_cmd_identifier_token15] = ACTIONS(2324), - [aux_sym_cmd_identifier_token16] = ACTIONS(2324), - [aux_sym_cmd_identifier_token17] = ACTIONS(2324), - [aux_sym_cmd_identifier_token18] = ACTIONS(2324), - [aux_sym_cmd_identifier_token19] = ACTIONS(2324), - [aux_sym_cmd_identifier_token20] = ACTIONS(2324), - [aux_sym_cmd_identifier_token21] = ACTIONS(2324), - [aux_sym_cmd_identifier_token22] = ACTIONS(2324), - [aux_sym_cmd_identifier_token23] = ACTIONS(2324), - [aux_sym_cmd_identifier_token24] = ACTIONS(2324), - [aux_sym_cmd_identifier_token25] = ACTIONS(2324), - [aux_sym_cmd_identifier_token26] = ACTIONS(2324), - [aux_sym_cmd_identifier_token27] = ACTIONS(2324), - [aux_sym_cmd_identifier_token28] = ACTIONS(2324), - [aux_sym_cmd_identifier_token29] = ACTIONS(2324), - [aux_sym_cmd_identifier_token30] = ACTIONS(2324), - [aux_sym_cmd_identifier_token31] = ACTIONS(2324), - [aux_sym_cmd_identifier_token32] = ACTIONS(2324), - [aux_sym_cmd_identifier_token33] = ACTIONS(2324), - [aux_sym_cmd_identifier_token34] = ACTIONS(2324), - [aux_sym_cmd_identifier_token35] = ACTIONS(2324), - [aux_sym_cmd_identifier_token36] = ACTIONS(2324), - [aux_sym_cmd_identifier_token37] = ACTIONS(2324), - [aux_sym_cmd_identifier_token38] = ACTIONS(2324), - [aux_sym_cmd_identifier_token39] = ACTIONS(2324), - [aux_sym_cmd_identifier_token40] = ACTIONS(2324), - [anon_sym_def] = ACTIONS(2324), - [anon_sym_export_DASHenv] = ACTIONS(2324), - [anon_sym_extern] = ACTIONS(2324), - [anon_sym_module] = ACTIONS(2324), - [anon_sym_use] = ACTIONS(2324), - [anon_sym_LPAREN] = ACTIONS(2324), - [anon_sym_COMMA] = ACTIONS(2324), - [anon_sym_DOLLAR] = ACTIONS(2324), - [anon_sym_error] = ACTIONS(2324), - [anon_sym_DASH2] = ACTIONS(2324), - [anon_sym_break] = ACTIONS(2324), - [anon_sym_continue] = ACTIONS(2324), - [anon_sym_for] = ACTIONS(2324), - [anon_sym_in2] = ACTIONS(2324), - [anon_sym_loop] = ACTIONS(2324), - [anon_sym_make] = ACTIONS(2324), - [anon_sym_while] = ACTIONS(2324), - [anon_sym_do] = ACTIONS(2324), - [anon_sym_if] = ACTIONS(2324), - [anon_sym_else] = ACTIONS(2324), - [anon_sym_match] = ACTIONS(2324), - [anon_sym_RBRACE] = ACTIONS(2324), - [anon_sym_try] = ACTIONS(2324), - [anon_sym_catch] = ACTIONS(2324), - [anon_sym_return] = ACTIONS(2324), - [anon_sym_source] = ACTIONS(2324), - [anon_sym_source_DASHenv] = ACTIONS(2324), - [anon_sym_hide] = ACTIONS(2324), - [anon_sym_hide_DASHenv] = ACTIONS(2324), - [anon_sym_overlay] = ACTIONS(2324), - [anon_sym_as] = ACTIONS(2324), - [anon_sym_PLUS2] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2324), - [aux_sym__val_number_decimal_token1] = ACTIONS(2324), - [aux_sym__val_number_decimal_token2] = ACTIONS(2324), - [aux_sym__val_number_decimal_token3] = ACTIONS(2324), - [aux_sym__val_number_decimal_token4] = ACTIONS(2324), - [aux_sym__val_number_token1] = ACTIONS(2324), - [aux_sym__val_number_token2] = ACTIONS(2324), - [aux_sym__val_number_token3] = ACTIONS(2324), - [aux_sym__val_number_token4] = ACTIONS(2324), - [aux_sym__val_number_token5] = ACTIONS(2324), - [aux_sym__val_number_token6] = ACTIONS(2324), - [anon_sym_DQUOTE] = ACTIONS(2324), - [sym__str_single_quotes] = ACTIONS(2324), - [sym__str_back_ticks] = ACTIONS(2324), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2324), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2324), - [sym__entry_separator] = ACTIONS(2326), - [anon_sym_register] = ACTIONS(2324), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2326), - }, - [619] = { - [sym_comment] = STATE(619), - [anon_sym_export] = ACTIONS(2025), - [anon_sym_alias] = ACTIONS(2025), - [anon_sym_let] = ACTIONS(2025), - [anon_sym_let_DASHenv] = ACTIONS(2025), - [anon_sym_mut] = ACTIONS(2025), - [anon_sym_const] = ACTIONS(2025), - [aux_sym_cmd_identifier_token1] = ACTIONS(2025), - [aux_sym_cmd_identifier_token2] = ACTIONS(2025), - [aux_sym_cmd_identifier_token3] = ACTIONS(2025), - [aux_sym_cmd_identifier_token4] = ACTIONS(2025), - [aux_sym_cmd_identifier_token5] = ACTIONS(2025), - [aux_sym_cmd_identifier_token6] = ACTIONS(2025), - [aux_sym_cmd_identifier_token7] = ACTIONS(2025), - [aux_sym_cmd_identifier_token8] = ACTIONS(2025), - [aux_sym_cmd_identifier_token9] = ACTIONS(2025), - [aux_sym_cmd_identifier_token10] = ACTIONS(2025), - [aux_sym_cmd_identifier_token11] = ACTIONS(2025), - [aux_sym_cmd_identifier_token12] = ACTIONS(2025), - [aux_sym_cmd_identifier_token13] = ACTIONS(2025), - [aux_sym_cmd_identifier_token14] = ACTIONS(2025), - [aux_sym_cmd_identifier_token15] = ACTIONS(2025), - [aux_sym_cmd_identifier_token16] = ACTIONS(2025), - [aux_sym_cmd_identifier_token17] = ACTIONS(2025), - [aux_sym_cmd_identifier_token18] = ACTIONS(2025), - [aux_sym_cmd_identifier_token19] = ACTIONS(2025), - [aux_sym_cmd_identifier_token20] = ACTIONS(2025), - [aux_sym_cmd_identifier_token21] = ACTIONS(2025), - [aux_sym_cmd_identifier_token22] = ACTIONS(2025), - [aux_sym_cmd_identifier_token23] = ACTIONS(2025), - [aux_sym_cmd_identifier_token24] = ACTIONS(2025), - [aux_sym_cmd_identifier_token25] = ACTIONS(2025), - [aux_sym_cmd_identifier_token26] = ACTIONS(2025), - [aux_sym_cmd_identifier_token27] = ACTIONS(2025), - [aux_sym_cmd_identifier_token28] = ACTIONS(2025), - [aux_sym_cmd_identifier_token29] = ACTIONS(2025), - [aux_sym_cmd_identifier_token30] = ACTIONS(2025), - [aux_sym_cmd_identifier_token31] = ACTIONS(2025), - [aux_sym_cmd_identifier_token32] = ACTIONS(2025), - [aux_sym_cmd_identifier_token33] = ACTIONS(2025), - [aux_sym_cmd_identifier_token34] = ACTIONS(2025), - [aux_sym_cmd_identifier_token35] = ACTIONS(2025), - [aux_sym_cmd_identifier_token36] = ACTIONS(2025), - [aux_sym_cmd_identifier_token37] = ACTIONS(2025), - [aux_sym_cmd_identifier_token38] = ACTIONS(2025), - [aux_sym_cmd_identifier_token39] = ACTIONS(2025), - [aux_sym_cmd_identifier_token40] = ACTIONS(2025), - [anon_sym_def] = ACTIONS(2025), - [anon_sym_export_DASHenv] = ACTIONS(2025), - [anon_sym_extern] = ACTIONS(2025), - [anon_sym_module] = ACTIONS(2025), - [anon_sym_use] = ACTIONS(2025), - [anon_sym_LPAREN] = ACTIONS(2025), - [anon_sym_COMMA] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2025), - [anon_sym_error] = ACTIONS(2025), - [anon_sym_DASH2] = ACTIONS(2025), - [anon_sym_break] = ACTIONS(2025), - [anon_sym_continue] = ACTIONS(2025), - [anon_sym_for] = ACTIONS(2025), - [anon_sym_in2] = ACTIONS(2025), - [anon_sym_loop] = ACTIONS(2025), - [anon_sym_make] = ACTIONS(2025), - [anon_sym_while] = ACTIONS(2025), - [anon_sym_do] = ACTIONS(2025), - [anon_sym_if] = ACTIONS(2025), - [anon_sym_else] = ACTIONS(2025), - [anon_sym_match] = ACTIONS(2025), - [anon_sym_RBRACE] = ACTIONS(2025), - [anon_sym_try] = ACTIONS(2025), - [anon_sym_catch] = ACTIONS(2025), - [anon_sym_return] = ACTIONS(2025), - [anon_sym_source] = ACTIONS(2025), - [anon_sym_source_DASHenv] = ACTIONS(2025), - [anon_sym_hide] = ACTIONS(2025), - [anon_sym_hide_DASHenv] = ACTIONS(2025), - [anon_sym_overlay] = ACTIONS(2025), - [anon_sym_as] = ACTIONS(2025), - [anon_sym_PLUS2] = ACTIONS(2025), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2025), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2025), - [aux_sym__val_number_decimal_token1] = ACTIONS(2025), - [aux_sym__val_number_decimal_token2] = ACTIONS(2025), - [aux_sym__val_number_decimal_token3] = ACTIONS(2025), - [aux_sym__val_number_decimal_token4] = ACTIONS(2025), - [aux_sym__val_number_token1] = ACTIONS(2025), - [aux_sym__val_number_token2] = ACTIONS(2025), - [aux_sym__val_number_token3] = ACTIONS(2025), - [aux_sym__val_number_token4] = ACTIONS(2025), - [aux_sym__val_number_token5] = ACTIONS(2025), - [aux_sym__val_number_token6] = ACTIONS(2025), - [anon_sym_DQUOTE] = ACTIONS(2025), - [sym__str_single_quotes] = ACTIONS(2025), - [sym__str_back_ticks] = ACTIONS(2025), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2025), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2025), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2025), - [sym__entry_separator] = ACTIONS(2031), - [anon_sym_register] = ACTIONS(2025), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2031), - }, - [620] = { - [sym_comment] = STATE(620), - [anon_sym_export] = ACTIONS(2328), - [anon_sym_alias] = ACTIONS(2328), - [anon_sym_let] = ACTIONS(2328), - [anon_sym_let_DASHenv] = ACTIONS(2328), - [anon_sym_mut] = ACTIONS(2328), - [anon_sym_const] = ACTIONS(2328), - [aux_sym_cmd_identifier_token1] = ACTIONS(2328), - [aux_sym_cmd_identifier_token2] = ACTIONS(2328), - [aux_sym_cmd_identifier_token3] = ACTIONS(2328), - [aux_sym_cmd_identifier_token4] = ACTIONS(2328), - [aux_sym_cmd_identifier_token5] = ACTIONS(2328), - [aux_sym_cmd_identifier_token6] = ACTIONS(2328), - [aux_sym_cmd_identifier_token7] = ACTIONS(2328), - [aux_sym_cmd_identifier_token8] = ACTIONS(2328), - [aux_sym_cmd_identifier_token9] = ACTIONS(2328), - [aux_sym_cmd_identifier_token10] = ACTIONS(2328), - [aux_sym_cmd_identifier_token11] = ACTIONS(2328), - [aux_sym_cmd_identifier_token12] = ACTIONS(2328), - [aux_sym_cmd_identifier_token13] = ACTIONS(2328), - [aux_sym_cmd_identifier_token14] = ACTIONS(2328), - [aux_sym_cmd_identifier_token15] = ACTIONS(2328), - [aux_sym_cmd_identifier_token16] = ACTIONS(2328), - [aux_sym_cmd_identifier_token17] = ACTIONS(2328), - [aux_sym_cmd_identifier_token18] = ACTIONS(2328), - [aux_sym_cmd_identifier_token19] = ACTIONS(2328), - [aux_sym_cmd_identifier_token20] = ACTIONS(2328), - [aux_sym_cmd_identifier_token21] = ACTIONS(2328), - [aux_sym_cmd_identifier_token22] = ACTIONS(2328), - [aux_sym_cmd_identifier_token23] = ACTIONS(2328), - [aux_sym_cmd_identifier_token24] = ACTIONS(2328), - [aux_sym_cmd_identifier_token25] = ACTIONS(2328), - [aux_sym_cmd_identifier_token26] = ACTIONS(2328), - [aux_sym_cmd_identifier_token27] = ACTIONS(2328), - [aux_sym_cmd_identifier_token28] = ACTIONS(2328), - [aux_sym_cmd_identifier_token29] = ACTIONS(2328), - [aux_sym_cmd_identifier_token30] = ACTIONS(2328), - [aux_sym_cmd_identifier_token31] = ACTIONS(2328), - [aux_sym_cmd_identifier_token32] = ACTIONS(2328), - [aux_sym_cmd_identifier_token33] = ACTIONS(2328), - [aux_sym_cmd_identifier_token34] = ACTIONS(2328), - [aux_sym_cmd_identifier_token35] = ACTIONS(2328), - [aux_sym_cmd_identifier_token36] = ACTIONS(2328), - [aux_sym_cmd_identifier_token37] = ACTIONS(2328), - [aux_sym_cmd_identifier_token38] = ACTIONS(2328), - [aux_sym_cmd_identifier_token39] = ACTIONS(2328), - [aux_sym_cmd_identifier_token40] = ACTIONS(2328), - [anon_sym_def] = ACTIONS(2328), - [anon_sym_export_DASHenv] = ACTIONS(2328), - [anon_sym_extern] = ACTIONS(2328), - [anon_sym_module] = ACTIONS(2328), - [anon_sym_use] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2328), - [anon_sym_COMMA] = ACTIONS(2328), - [anon_sym_DOLLAR] = ACTIONS(2328), - [anon_sym_error] = ACTIONS(2328), - [anon_sym_DASH2] = ACTIONS(2328), - [anon_sym_break] = ACTIONS(2328), - [anon_sym_continue] = ACTIONS(2328), - [anon_sym_for] = ACTIONS(2328), - [anon_sym_in2] = ACTIONS(2328), - [anon_sym_loop] = ACTIONS(2328), - [anon_sym_make] = ACTIONS(2328), - [anon_sym_while] = ACTIONS(2328), - [anon_sym_do] = ACTIONS(2328), - [anon_sym_if] = ACTIONS(2328), - [anon_sym_else] = ACTIONS(2328), - [anon_sym_match] = ACTIONS(2328), - [anon_sym_RBRACE] = ACTIONS(2328), - [anon_sym_try] = ACTIONS(2328), - [anon_sym_catch] = ACTIONS(2328), - [anon_sym_return] = ACTIONS(2328), - [anon_sym_source] = ACTIONS(2328), - [anon_sym_source_DASHenv] = ACTIONS(2328), - [anon_sym_hide] = ACTIONS(2328), - [anon_sym_hide_DASHenv] = ACTIONS(2328), - [anon_sym_overlay] = ACTIONS(2328), - [anon_sym_as] = ACTIONS(2328), - [anon_sym_PLUS2] = ACTIONS(2328), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2328), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2328), - [aux_sym__val_number_decimal_token1] = ACTIONS(2328), - [aux_sym__val_number_decimal_token2] = ACTIONS(2328), - [aux_sym__val_number_decimal_token3] = ACTIONS(2328), - [aux_sym__val_number_decimal_token4] = ACTIONS(2328), - [aux_sym__val_number_token1] = ACTIONS(2328), - [aux_sym__val_number_token2] = ACTIONS(2328), - [aux_sym__val_number_token3] = ACTIONS(2328), - [aux_sym__val_number_token4] = ACTIONS(2328), - [aux_sym__val_number_token5] = ACTIONS(2328), - [aux_sym__val_number_token6] = ACTIONS(2328), - [anon_sym_DQUOTE] = ACTIONS(2328), - [sym__str_single_quotes] = ACTIONS(2328), - [sym__str_back_ticks] = ACTIONS(2328), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2328), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2328), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2328), - [sym__entry_separator] = ACTIONS(2330), - [anon_sym_register] = ACTIONS(2328), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2330), - }, - [621] = { - [sym_comment] = STATE(621), - [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(2332), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2332), - [sym__entry_separator] = ACTIONS(2334), - [anon_sym_register] = ACTIONS(2332), + [605] = { + [sym_comment] = STATE(605), + [anon_sym_export] = ACTIONS(2330), + [anon_sym_alias] = ACTIONS(2330), + [anon_sym_let] = ACTIONS(2330), + [anon_sym_let_DASHenv] = ACTIONS(2330), + [anon_sym_mut] = ACTIONS(2330), + [anon_sym_const] = ACTIONS(2330), + [aux_sym_cmd_identifier_token1] = ACTIONS(2330), + [aux_sym_cmd_identifier_token2] = ACTIONS(2330), + [aux_sym_cmd_identifier_token3] = ACTIONS(2330), + [aux_sym_cmd_identifier_token4] = ACTIONS(2330), + [aux_sym_cmd_identifier_token5] = ACTIONS(2330), + [aux_sym_cmd_identifier_token6] = ACTIONS(2330), + [aux_sym_cmd_identifier_token7] = ACTIONS(2330), + [aux_sym_cmd_identifier_token8] = ACTIONS(2330), + [aux_sym_cmd_identifier_token9] = ACTIONS(2330), + [aux_sym_cmd_identifier_token10] = ACTIONS(2330), + [aux_sym_cmd_identifier_token11] = ACTIONS(2330), + [aux_sym_cmd_identifier_token12] = ACTIONS(2330), + [aux_sym_cmd_identifier_token13] = ACTIONS(2330), + [aux_sym_cmd_identifier_token14] = ACTIONS(2330), + [aux_sym_cmd_identifier_token15] = ACTIONS(2330), + [aux_sym_cmd_identifier_token16] = ACTIONS(2330), + [aux_sym_cmd_identifier_token17] = ACTIONS(2330), + [aux_sym_cmd_identifier_token18] = ACTIONS(2330), + [aux_sym_cmd_identifier_token19] = ACTIONS(2330), + [aux_sym_cmd_identifier_token20] = ACTIONS(2330), + [aux_sym_cmd_identifier_token21] = ACTIONS(2330), + [aux_sym_cmd_identifier_token22] = ACTIONS(2330), + [aux_sym_cmd_identifier_token23] = ACTIONS(2330), + [aux_sym_cmd_identifier_token24] = ACTIONS(2330), + [aux_sym_cmd_identifier_token25] = ACTIONS(2330), + [aux_sym_cmd_identifier_token26] = ACTIONS(2330), + [aux_sym_cmd_identifier_token27] = ACTIONS(2330), + [aux_sym_cmd_identifier_token28] = ACTIONS(2330), + [aux_sym_cmd_identifier_token29] = ACTIONS(2330), + [aux_sym_cmd_identifier_token30] = ACTIONS(2330), + [aux_sym_cmd_identifier_token31] = ACTIONS(2330), + [aux_sym_cmd_identifier_token32] = ACTIONS(2330), + [aux_sym_cmd_identifier_token33] = ACTIONS(2330), + [aux_sym_cmd_identifier_token34] = ACTIONS(2330), + [aux_sym_cmd_identifier_token35] = ACTIONS(2330), + [aux_sym_cmd_identifier_token36] = ACTIONS(2330), + [aux_sym_cmd_identifier_token37] = ACTIONS(2330), + [aux_sym_cmd_identifier_token38] = ACTIONS(2330), + [aux_sym_cmd_identifier_token39] = ACTIONS(2330), + [aux_sym_cmd_identifier_token40] = ACTIONS(2330), + [anon_sym_def] = ACTIONS(2330), + [anon_sym_export_DASHenv] = ACTIONS(2330), + [anon_sym_extern] = ACTIONS(2330), + [anon_sym_module] = ACTIONS(2330), + [anon_sym_use] = ACTIONS(2330), + [anon_sym_LPAREN] = ACTIONS(2330), + [anon_sym_COMMA] = ACTIONS(2330), + [anon_sym_DOLLAR] = ACTIONS(2330), + [anon_sym_error] = ACTIONS(2330), + [anon_sym_DASH2] = ACTIONS(2330), + [anon_sym_break] = ACTIONS(2330), + [anon_sym_continue] = ACTIONS(2330), + [anon_sym_for] = ACTIONS(2330), + [anon_sym_in2] = ACTIONS(2330), + [anon_sym_loop] = ACTIONS(2330), + [anon_sym_make] = ACTIONS(2330), + [anon_sym_while] = ACTIONS(2330), + [anon_sym_do] = ACTIONS(2330), + [anon_sym_if] = ACTIONS(2330), + [anon_sym_else] = ACTIONS(2330), + [anon_sym_match] = ACTIONS(2330), + [anon_sym_RBRACE] = ACTIONS(2330), + [anon_sym_try] = ACTIONS(2330), + [anon_sym_catch] = ACTIONS(2330), + [anon_sym_return] = ACTIONS(2330), + [anon_sym_source] = ACTIONS(2330), + [anon_sym_source_DASHenv] = ACTIONS(2330), + [anon_sym_hide] = ACTIONS(2330), + [anon_sym_hide_DASHenv] = ACTIONS(2330), + [anon_sym_overlay] = ACTIONS(2330), + [anon_sym_as] = ACTIONS(2330), + [anon_sym_PLUS2] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2330), + [aux_sym__val_number_decimal_token1] = ACTIONS(2330), + [aux_sym__val_number_decimal_token2] = ACTIONS(2330), + [aux_sym__val_number_decimal_token3] = ACTIONS(2330), + [aux_sym__val_number_decimal_token4] = ACTIONS(2330), + [aux_sym__val_number_token1] = ACTIONS(2330), + [aux_sym__val_number_token2] = ACTIONS(2330), + [aux_sym__val_number_token3] = ACTIONS(2330), + [aux_sym__val_number_token4] = ACTIONS(2330), + [aux_sym__val_number_token5] = ACTIONS(2330), + [aux_sym__val_number_token6] = ACTIONS(2330), + [anon_sym_DQUOTE] = ACTIONS(2330), + [sym__str_single_quotes] = ACTIONS(2330), + [sym__str_back_ticks] = ACTIONS(2330), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2330), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2330), + [sym__entry_separator] = ACTIONS(2332), + [anon_sym_register] = ACTIONS(2330), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2334), + [sym_raw_string_begin] = ACTIONS(2332), }, - [622] = { - [sym_comment] = STATE(622), - [anon_sym_export] = ACTIONS(2336), - [anon_sym_alias] = ACTIONS(2336), - [anon_sym_let] = ACTIONS(2336), - [anon_sym_let_DASHenv] = ACTIONS(2336), - [anon_sym_mut] = ACTIONS(2336), - [anon_sym_const] = ACTIONS(2336), - [aux_sym_cmd_identifier_token1] = ACTIONS(2336), - [aux_sym_cmd_identifier_token2] = ACTIONS(2336), - [aux_sym_cmd_identifier_token3] = ACTIONS(2336), - [aux_sym_cmd_identifier_token4] = ACTIONS(2336), - [aux_sym_cmd_identifier_token5] = ACTIONS(2336), - [aux_sym_cmd_identifier_token6] = ACTIONS(2336), - [aux_sym_cmd_identifier_token7] = ACTIONS(2336), - [aux_sym_cmd_identifier_token8] = ACTIONS(2336), - [aux_sym_cmd_identifier_token9] = ACTIONS(2336), - [aux_sym_cmd_identifier_token10] = ACTIONS(2336), - [aux_sym_cmd_identifier_token11] = ACTIONS(2336), - [aux_sym_cmd_identifier_token12] = ACTIONS(2336), - [aux_sym_cmd_identifier_token13] = ACTIONS(2336), - [aux_sym_cmd_identifier_token14] = ACTIONS(2336), - [aux_sym_cmd_identifier_token15] = ACTIONS(2336), - [aux_sym_cmd_identifier_token16] = ACTIONS(2336), - [aux_sym_cmd_identifier_token17] = ACTIONS(2336), - [aux_sym_cmd_identifier_token18] = ACTIONS(2336), - [aux_sym_cmd_identifier_token19] = ACTIONS(2336), - [aux_sym_cmd_identifier_token20] = ACTIONS(2336), - [aux_sym_cmd_identifier_token21] = ACTIONS(2336), - [aux_sym_cmd_identifier_token22] = ACTIONS(2336), - [aux_sym_cmd_identifier_token23] = ACTIONS(2336), - [aux_sym_cmd_identifier_token24] = ACTIONS(2336), - [aux_sym_cmd_identifier_token25] = ACTIONS(2336), - [aux_sym_cmd_identifier_token26] = ACTIONS(2336), - [aux_sym_cmd_identifier_token27] = ACTIONS(2336), - [aux_sym_cmd_identifier_token28] = ACTIONS(2336), - [aux_sym_cmd_identifier_token29] = ACTIONS(2336), - [aux_sym_cmd_identifier_token30] = ACTIONS(2336), - [aux_sym_cmd_identifier_token31] = ACTIONS(2336), - [aux_sym_cmd_identifier_token32] = ACTIONS(2336), - [aux_sym_cmd_identifier_token33] = ACTIONS(2336), - [aux_sym_cmd_identifier_token34] = ACTIONS(2336), - [aux_sym_cmd_identifier_token35] = ACTIONS(2336), - [aux_sym_cmd_identifier_token36] = ACTIONS(2336), - [aux_sym_cmd_identifier_token37] = ACTIONS(2336), - [aux_sym_cmd_identifier_token38] = ACTIONS(2336), - [aux_sym_cmd_identifier_token39] = ACTIONS(2336), - [aux_sym_cmd_identifier_token40] = ACTIONS(2336), - [anon_sym_def] = ACTIONS(2336), - [anon_sym_export_DASHenv] = ACTIONS(2336), - [anon_sym_extern] = ACTIONS(2336), - [anon_sym_module] = ACTIONS(2336), - [anon_sym_use] = ACTIONS(2336), - [anon_sym_LPAREN] = ACTIONS(2336), - [anon_sym_COMMA] = ACTIONS(2336), - [anon_sym_DOLLAR] = ACTIONS(2336), - [anon_sym_error] = ACTIONS(2336), - [anon_sym_DASH2] = ACTIONS(2336), - [anon_sym_break] = ACTIONS(2336), - [anon_sym_continue] = ACTIONS(2336), - [anon_sym_for] = ACTIONS(2336), - [anon_sym_in2] = ACTIONS(2336), - [anon_sym_loop] = ACTIONS(2336), - [anon_sym_make] = ACTIONS(2336), - [anon_sym_while] = ACTIONS(2336), - [anon_sym_do] = ACTIONS(2336), - [anon_sym_if] = ACTIONS(2336), - [anon_sym_else] = ACTIONS(2336), - [anon_sym_match] = ACTIONS(2336), - [anon_sym_RBRACE] = ACTIONS(2336), - [anon_sym_try] = ACTIONS(2336), - [anon_sym_catch] = ACTIONS(2336), - [anon_sym_return] = ACTIONS(2336), - [anon_sym_source] = ACTIONS(2336), - [anon_sym_source_DASHenv] = ACTIONS(2336), - [anon_sym_hide] = ACTIONS(2336), - [anon_sym_hide_DASHenv] = ACTIONS(2336), - [anon_sym_overlay] = ACTIONS(2336), - [anon_sym_as] = ACTIONS(2336), - [anon_sym_PLUS2] = ACTIONS(2336), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2336), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2336), - [aux_sym__val_number_decimal_token1] = ACTIONS(2336), - [aux_sym__val_number_decimal_token2] = ACTIONS(2336), - [aux_sym__val_number_decimal_token3] = ACTIONS(2336), - [aux_sym__val_number_decimal_token4] = ACTIONS(2336), - [aux_sym__val_number_token1] = ACTIONS(2336), - [aux_sym__val_number_token2] = ACTIONS(2336), - [aux_sym__val_number_token3] = ACTIONS(2336), - [aux_sym__val_number_token4] = ACTIONS(2336), - [aux_sym__val_number_token5] = ACTIONS(2336), - [aux_sym__val_number_token6] = ACTIONS(2336), - [anon_sym_DQUOTE] = ACTIONS(2336), - [sym__str_single_quotes] = ACTIONS(2336), - [sym__str_back_ticks] = ACTIONS(2336), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2336), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2336), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2336), - [sym__entry_separator] = ACTIONS(2338), - [anon_sym_register] = ACTIONS(2336), + [606] = { + [sym_comment] = STATE(606), + [anon_sym_export] = ACTIONS(2334), + [anon_sym_alias] = ACTIONS(2334), + [anon_sym_let] = ACTIONS(2334), + [anon_sym_let_DASHenv] = ACTIONS(2334), + [anon_sym_mut] = ACTIONS(2334), + [anon_sym_const] = ACTIONS(2334), + [aux_sym_cmd_identifier_token1] = ACTIONS(2334), + [aux_sym_cmd_identifier_token2] = ACTIONS(2334), + [aux_sym_cmd_identifier_token3] = ACTIONS(2334), + [aux_sym_cmd_identifier_token4] = ACTIONS(2334), + [aux_sym_cmd_identifier_token5] = ACTIONS(2334), + [aux_sym_cmd_identifier_token6] = ACTIONS(2334), + [aux_sym_cmd_identifier_token7] = ACTIONS(2334), + [aux_sym_cmd_identifier_token8] = ACTIONS(2334), + [aux_sym_cmd_identifier_token9] = ACTIONS(2334), + [aux_sym_cmd_identifier_token10] = ACTIONS(2334), + [aux_sym_cmd_identifier_token11] = ACTIONS(2334), + [aux_sym_cmd_identifier_token12] = ACTIONS(2334), + [aux_sym_cmd_identifier_token13] = ACTIONS(2334), + [aux_sym_cmd_identifier_token14] = ACTIONS(2334), + [aux_sym_cmd_identifier_token15] = ACTIONS(2334), + [aux_sym_cmd_identifier_token16] = ACTIONS(2334), + [aux_sym_cmd_identifier_token17] = ACTIONS(2334), + [aux_sym_cmd_identifier_token18] = ACTIONS(2334), + [aux_sym_cmd_identifier_token19] = ACTIONS(2334), + [aux_sym_cmd_identifier_token20] = ACTIONS(2334), + [aux_sym_cmd_identifier_token21] = ACTIONS(2334), + [aux_sym_cmd_identifier_token22] = ACTIONS(2334), + [aux_sym_cmd_identifier_token23] = ACTIONS(2334), + [aux_sym_cmd_identifier_token24] = ACTIONS(2334), + [aux_sym_cmd_identifier_token25] = ACTIONS(2334), + [aux_sym_cmd_identifier_token26] = ACTIONS(2334), + [aux_sym_cmd_identifier_token27] = ACTIONS(2334), + [aux_sym_cmd_identifier_token28] = ACTIONS(2334), + [aux_sym_cmd_identifier_token29] = ACTIONS(2334), + [aux_sym_cmd_identifier_token30] = ACTIONS(2334), + [aux_sym_cmd_identifier_token31] = ACTIONS(2334), + [aux_sym_cmd_identifier_token32] = ACTIONS(2334), + [aux_sym_cmd_identifier_token33] = ACTIONS(2334), + [aux_sym_cmd_identifier_token34] = ACTIONS(2334), + [aux_sym_cmd_identifier_token35] = ACTIONS(2334), + [aux_sym_cmd_identifier_token36] = ACTIONS(2334), + [aux_sym_cmd_identifier_token37] = ACTIONS(2334), + [aux_sym_cmd_identifier_token38] = ACTIONS(2334), + [aux_sym_cmd_identifier_token39] = ACTIONS(2334), + [aux_sym_cmd_identifier_token40] = ACTIONS(2334), + [anon_sym_def] = ACTIONS(2334), + [anon_sym_export_DASHenv] = ACTIONS(2334), + [anon_sym_extern] = ACTIONS(2334), + [anon_sym_module] = ACTIONS(2334), + [anon_sym_use] = ACTIONS(2334), + [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_COMMA] = ACTIONS(2334), + [anon_sym_DOLLAR] = ACTIONS(2334), + [anon_sym_error] = ACTIONS(2334), + [anon_sym_DASH2] = ACTIONS(2334), + [anon_sym_break] = ACTIONS(2334), + [anon_sym_continue] = ACTIONS(2334), + [anon_sym_for] = ACTIONS(2334), + [anon_sym_in2] = ACTIONS(2334), + [anon_sym_loop] = ACTIONS(2334), + [anon_sym_make] = ACTIONS(2334), + [anon_sym_while] = ACTIONS(2334), + [anon_sym_do] = ACTIONS(2334), + [anon_sym_if] = ACTIONS(2334), + [anon_sym_else] = ACTIONS(2334), + [anon_sym_match] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2334), + [anon_sym_try] = ACTIONS(2334), + [anon_sym_catch] = ACTIONS(2334), + [anon_sym_return] = ACTIONS(2334), + [anon_sym_source] = ACTIONS(2334), + [anon_sym_source_DASHenv] = ACTIONS(2334), + [anon_sym_hide] = ACTIONS(2334), + [anon_sym_hide_DASHenv] = ACTIONS(2334), + [anon_sym_overlay] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(2334), + [anon_sym_PLUS2] = ACTIONS(2334), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2334), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2334), + [aux_sym__val_number_decimal_token1] = ACTIONS(2334), + [aux_sym__val_number_decimal_token2] = ACTIONS(2334), + [aux_sym__val_number_decimal_token3] = ACTIONS(2334), + [aux_sym__val_number_decimal_token4] = ACTIONS(2334), + [aux_sym__val_number_token1] = ACTIONS(2334), + [aux_sym__val_number_token2] = ACTIONS(2334), + [aux_sym__val_number_token3] = ACTIONS(2334), + [aux_sym__val_number_token4] = ACTIONS(2334), + [aux_sym__val_number_token5] = ACTIONS(2334), + [aux_sym__val_number_token6] = ACTIONS(2334), + [anon_sym_DQUOTE] = ACTIONS(2334), + [sym__str_single_quotes] = ACTIONS(2334), + [sym__str_back_ticks] = ACTIONS(2334), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2334), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2334), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2334), + [sym__entry_separator] = ACTIONS(2336), + [anon_sym_register] = ACTIONS(2334), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2338), + [sym_raw_string_begin] = ACTIONS(2336), }, - [623] = { - [sym_comment] = STATE(623), - [aux_sym__multiple_types_repeat1] = STATE(657), - [anon_sym_export] = ACTIONS(2314), - [anon_sym_alias] = ACTIONS(2314), - [anon_sym_let] = ACTIONS(2314), - [anon_sym_let_DASHenv] = ACTIONS(2314), - [anon_sym_mut] = ACTIONS(2314), - [anon_sym_const] = ACTIONS(2314), - [aux_sym_cmd_identifier_token1] = ACTIONS(2314), - [aux_sym_cmd_identifier_token2] = ACTIONS(2314), - [aux_sym_cmd_identifier_token3] = ACTIONS(2314), - [aux_sym_cmd_identifier_token4] = ACTIONS(2314), - [aux_sym_cmd_identifier_token5] = ACTIONS(2314), - [aux_sym_cmd_identifier_token6] = ACTIONS(2314), - [aux_sym_cmd_identifier_token7] = ACTIONS(2314), - [aux_sym_cmd_identifier_token8] = ACTIONS(2314), - [aux_sym_cmd_identifier_token9] = ACTIONS(2314), - [aux_sym_cmd_identifier_token10] = ACTIONS(2314), - [aux_sym_cmd_identifier_token11] = ACTIONS(2314), - [aux_sym_cmd_identifier_token12] = ACTIONS(2314), - [aux_sym_cmd_identifier_token13] = ACTIONS(2314), - [aux_sym_cmd_identifier_token14] = ACTIONS(2314), - [aux_sym_cmd_identifier_token15] = ACTIONS(2314), - [aux_sym_cmd_identifier_token16] = ACTIONS(2314), - [aux_sym_cmd_identifier_token17] = ACTIONS(2314), - [aux_sym_cmd_identifier_token18] = ACTIONS(2314), - [aux_sym_cmd_identifier_token19] = ACTIONS(2314), - [aux_sym_cmd_identifier_token20] = ACTIONS(2314), - [aux_sym_cmd_identifier_token21] = ACTIONS(2314), - [aux_sym_cmd_identifier_token22] = ACTIONS(2314), - [aux_sym_cmd_identifier_token23] = ACTIONS(2314), - [aux_sym_cmd_identifier_token24] = ACTIONS(2314), - [aux_sym_cmd_identifier_token25] = ACTIONS(2314), - [aux_sym_cmd_identifier_token26] = ACTIONS(2314), - [aux_sym_cmd_identifier_token27] = ACTIONS(2314), - [aux_sym_cmd_identifier_token28] = ACTIONS(2314), - [aux_sym_cmd_identifier_token29] = ACTIONS(2314), - [aux_sym_cmd_identifier_token30] = ACTIONS(2314), - [aux_sym_cmd_identifier_token31] = ACTIONS(2314), - [aux_sym_cmd_identifier_token32] = ACTIONS(2314), - [aux_sym_cmd_identifier_token33] = ACTIONS(2314), - [aux_sym_cmd_identifier_token34] = ACTIONS(2314), - [aux_sym_cmd_identifier_token35] = ACTIONS(2314), - [aux_sym_cmd_identifier_token36] = ACTIONS(2314), - [aux_sym_cmd_identifier_token37] = ACTIONS(2314), - [aux_sym_cmd_identifier_token38] = ACTIONS(2314), - [aux_sym_cmd_identifier_token39] = ACTIONS(2314), - [aux_sym_cmd_identifier_token40] = ACTIONS(2314), - [anon_sym_def] = ACTIONS(2314), - [anon_sym_export_DASHenv] = ACTIONS(2314), - [anon_sym_extern] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2314), - [anon_sym_use] = ACTIONS(2314), - [anon_sym_LPAREN] = ACTIONS(2314), - [anon_sym_DOLLAR] = ACTIONS(2314), - [anon_sym_error] = ACTIONS(2314), - [anon_sym_DASH2] = ACTIONS(2314), - [anon_sym_break] = ACTIONS(2314), - [anon_sym_continue] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(2314), - [anon_sym_in2] = ACTIONS(2314), - [anon_sym_loop] = ACTIONS(2314), - [anon_sym_make] = ACTIONS(2314), - [anon_sym_while] = ACTIONS(2314), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_if] = ACTIONS(2314), - [anon_sym_else] = ACTIONS(2314), - [anon_sym_match] = ACTIONS(2314), - [anon_sym_RBRACE] = ACTIONS(2340), - [anon_sym_try] = ACTIONS(2314), - [anon_sym_catch] = ACTIONS(2314), - [anon_sym_return] = ACTIONS(2314), - [anon_sym_source] = ACTIONS(2314), - [anon_sym_source_DASHenv] = ACTIONS(2314), - [anon_sym_hide] = ACTIONS(2314), - [anon_sym_hide_DASHenv] = ACTIONS(2314), - [anon_sym_overlay] = ACTIONS(2314), - [anon_sym_as] = ACTIONS(2314), - [anon_sym_PLUS2] = ACTIONS(2314), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2314), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2314), - [aux_sym__val_number_decimal_token1] = ACTIONS(2314), - [aux_sym__val_number_decimal_token2] = ACTIONS(2314), - [aux_sym__val_number_decimal_token3] = ACTIONS(2314), - [aux_sym__val_number_decimal_token4] = ACTIONS(2314), - [aux_sym__val_number_token1] = ACTIONS(2314), - [aux_sym__val_number_token2] = ACTIONS(2314), - [aux_sym__val_number_token3] = ACTIONS(2314), - [aux_sym__val_number_token4] = ACTIONS(2314), - [aux_sym__val_number_token5] = ACTIONS(2314), - [aux_sym__val_number_token6] = ACTIONS(2314), - [anon_sym_DQUOTE] = ACTIONS(2314), - [sym__str_single_quotes] = ACTIONS(2314), - [sym__str_back_ticks] = ACTIONS(2314), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2314), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2314), - [sym__entry_separator] = ACTIONS(2210), - [anon_sym_register] = ACTIONS(2314), + [607] = { + [sym_comment] = STATE(607), + [anon_sym_export] = ACTIONS(2338), + [anon_sym_alias] = ACTIONS(2338), + [anon_sym_let] = ACTIONS(2338), + [anon_sym_let_DASHenv] = ACTIONS(2338), + [anon_sym_mut] = ACTIONS(2338), + [anon_sym_const] = ACTIONS(2338), + [aux_sym_cmd_identifier_token1] = ACTIONS(2338), + [aux_sym_cmd_identifier_token2] = ACTIONS(2338), + [aux_sym_cmd_identifier_token3] = ACTIONS(2338), + [aux_sym_cmd_identifier_token4] = ACTIONS(2338), + [aux_sym_cmd_identifier_token5] = ACTIONS(2338), + [aux_sym_cmd_identifier_token6] = ACTIONS(2338), + [aux_sym_cmd_identifier_token7] = ACTIONS(2338), + [aux_sym_cmd_identifier_token8] = ACTIONS(2338), + [aux_sym_cmd_identifier_token9] = ACTIONS(2338), + [aux_sym_cmd_identifier_token10] = ACTIONS(2338), + [aux_sym_cmd_identifier_token11] = ACTIONS(2338), + [aux_sym_cmd_identifier_token12] = ACTIONS(2338), + [aux_sym_cmd_identifier_token13] = ACTIONS(2338), + [aux_sym_cmd_identifier_token14] = ACTIONS(2338), + [aux_sym_cmd_identifier_token15] = ACTIONS(2338), + [aux_sym_cmd_identifier_token16] = ACTIONS(2338), + [aux_sym_cmd_identifier_token17] = ACTIONS(2338), + [aux_sym_cmd_identifier_token18] = ACTIONS(2338), + [aux_sym_cmd_identifier_token19] = ACTIONS(2338), + [aux_sym_cmd_identifier_token20] = ACTIONS(2338), + [aux_sym_cmd_identifier_token21] = ACTIONS(2338), + [aux_sym_cmd_identifier_token22] = ACTIONS(2338), + [aux_sym_cmd_identifier_token23] = ACTIONS(2338), + [aux_sym_cmd_identifier_token24] = ACTIONS(2338), + [aux_sym_cmd_identifier_token25] = ACTIONS(2338), + [aux_sym_cmd_identifier_token26] = ACTIONS(2338), + [aux_sym_cmd_identifier_token27] = ACTIONS(2338), + [aux_sym_cmd_identifier_token28] = ACTIONS(2338), + [aux_sym_cmd_identifier_token29] = ACTIONS(2338), + [aux_sym_cmd_identifier_token30] = ACTIONS(2338), + [aux_sym_cmd_identifier_token31] = ACTIONS(2338), + [aux_sym_cmd_identifier_token32] = ACTIONS(2338), + [aux_sym_cmd_identifier_token33] = ACTIONS(2338), + [aux_sym_cmd_identifier_token34] = ACTIONS(2338), + [aux_sym_cmd_identifier_token35] = ACTIONS(2338), + [aux_sym_cmd_identifier_token36] = ACTIONS(2338), + [aux_sym_cmd_identifier_token37] = ACTIONS(2338), + [aux_sym_cmd_identifier_token38] = ACTIONS(2338), + [aux_sym_cmd_identifier_token39] = ACTIONS(2338), + [aux_sym_cmd_identifier_token40] = ACTIONS(2338), + [anon_sym_def] = ACTIONS(2338), + [anon_sym_export_DASHenv] = ACTIONS(2338), + [anon_sym_extern] = ACTIONS(2338), + [anon_sym_module] = ACTIONS(2338), + [anon_sym_use] = ACTIONS(2338), + [anon_sym_LPAREN] = ACTIONS(2338), + [anon_sym_COMMA] = ACTIONS(2338), + [anon_sym_DOLLAR] = ACTIONS(2338), + [anon_sym_error] = ACTIONS(2338), + [anon_sym_DASH2] = ACTIONS(2338), + [anon_sym_break] = ACTIONS(2338), + [anon_sym_continue] = ACTIONS(2338), + [anon_sym_for] = ACTIONS(2338), + [anon_sym_in2] = ACTIONS(2338), + [anon_sym_loop] = ACTIONS(2338), + [anon_sym_make] = ACTIONS(2338), + [anon_sym_while] = ACTIONS(2338), + [anon_sym_do] = ACTIONS(2338), + [anon_sym_if] = ACTIONS(2338), + [anon_sym_else] = ACTIONS(2338), + [anon_sym_match] = ACTIONS(2338), + [anon_sym_RBRACE] = ACTIONS(2338), + [anon_sym_try] = ACTIONS(2338), + [anon_sym_catch] = ACTIONS(2338), + [anon_sym_return] = ACTIONS(2338), + [anon_sym_source] = ACTIONS(2338), + [anon_sym_source_DASHenv] = ACTIONS(2338), + [anon_sym_hide] = ACTIONS(2338), + [anon_sym_hide_DASHenv] = ACTIONS(2338), + [anon_sym_overlay] = ACTIONS(2338), + [anon_sym_as] = ACTIONS(2338), + [anon_sym_PLUS2] = ACTIONS(2338), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2338), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2338), + [aux_sym__val_number_decimal_token1] = ACTIONS(2338), + [aux_sym__val_number_decimal_token2] = ACTIONS(2338), + [aux_sym__val_number_decimal_token3] = ACTIONS(2338), + [aux_sym__val_number_decimal_token4] = ACTIONS(2338), + [aux_sym__val_number_token1] = ACTIONS(2338), + [aux_sym__val_number_token2] = ACTIONS(2338), + [aux_sym__val_number_token3] = ACTIONS(2338), + [aux_sym__val_number_token4] = ACTIONS(2338), + [aux_sym__val_number_token5] = ACTIONS(2338), + [aux_sym__val_number_token6] = ACTIONS(2338), + [anon_sym_DQUOTE] = ACTIONS(2338), + [sym__str_single_quotes] = ACTIONS(2338), + [sym__str_back_ticks] = ACTIONS(2338), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2338), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2338), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2338), + [sym__entry_separator] = ACTIONS(2340), + [anon_sym_register] = ACTIONS(2338), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2318), + [sym_raw_string_begin] = ACTIONS(2340), }, - [624] = { - [sym_comment] = STATE(624), + [608] = { + [sym_comment] = STATE(608), [anon_sym_export] = ACTIONS(2342), [anon_sym_alias] = ACTIONS(2342), [anon_sym_let] = ACTIONS(2342), @@ -143205,8 +140380,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2344), }, - [625] = { - [sym_comment] = STATE(625), + [609] = { + [sym_comment] = STATE(609), + [aux_sym__multiple_types_repeat1] = STATE(634), [anon_sym_export] = ACTIONS(2346), [anon_sym_alias] = ACTIONS(2346), [anon_sym_let] = ACTIONS(2346), @@ -143259,7 +140435,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(2346), [anon_sym_use] = ACTIONS(2346), [anon_sym_LPAREN] = ACTIONS(2346), - [anon_sym_COMMA] = ACTIONS(2346), [anon_sym_DOLLAR] = ACTIONS(2346), [anon_sym_error] = ACTIONS(2346), [anon_sym_DASH2] = ACTIONS(2346), @@ -143274,7 +140449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2346), [anon_sym_else] = ACTIONS(2346), [anon_sym_match] = ACTIONS(2346), - [anon_sym_RBRACE] = ACTIONS(2346), + [anon_sym_RBRACE] = ACTIONS(2348), [anon_sym_try] = ACTIONS(2346), [anon_sym_catch] = ACTIONS(2346), [anon_sym_return] = ACTIONS(2346), @@ -143303,219 +140478,528 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2346), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2346), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2346), - [sym__entry_separator] = ACTIONS(2348), + [sym__entry_separator] = ACTIONS(2256), [anon_sym_register] = ACTIONS(2346), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2348), + [sym_raw_string_begin] = ACTIONS(2350), }, - [626] = { - [sym_comment] = STATE(626), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_alias] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_let_DASHenv] = ACTIONS(2350), - [anon_sym_mut] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(2350), - [aux_sym_cmd_identifier_token1] = ACTIONS(2350), - [aux_sym_cmd_identifier_token2] = ACTIONS(2350), - [aux_sym_cmd_identifier_token3] = ACTIONS(2350), - [aux_sym_cmd_identifier_token4] = ACTIONS(2350), - [aux_sym_cmd_identifier_token5] = ACTIONS(2350), - [aux_sym_cmd_identifier_token6] = ACTIONS(2350), - [aux_sym_cmd_identifier_token7] = ACTIONS(2350), - [aux_sym_cmd_identifier_token8] = ACTIONS(2350), - [aux_sym_cmd_identifier_token9] = ACTIONS(2350), - [aux_sym_cmd_identifier_token10] = ACTIONS(2350), - [aux_sym_cmd_identifier_token11] = ACTIONS(2350), - [aux_sym_cmd_identifier_token12] = ACTIONS(2350), - [aux_sym_cmd_identifier_token13] = ACTIONS(2350), - [aux_sym_cmd_identifier_token14] = ACTIONS(2350), - [aux_sym_cmd_identifier_token15] = ACTIONS(2350), - [aux_sym_cmd_identifier_token16] = ACTIONS(2350), - [aux_sym_cmd_identifier_token17] = ACTIONS(2350), - [aux_sym_cmd_identifier_token18] = ACTIONS(2350), - [aux_sym_cmd_identifier_token19] = ACTIONS(2350), - [aux_sym_cmd_identifier_token20] = ACTIONS(2350), - [aux_sym_cmd_identifier_token21] = ACTIONS(2350), - [aux_sym_cmd_identifier_token22] = ACTIONS(2350), - [aux_sym_cmd_identifier_token23] = ACTIONS(2350), - [aux_sym_cmd_identifier_token24] = ACTIONS(2350), - [aux_sym_cmd_identifier_token25] = ACTIONS(2350), - [aux_sym_cmd_identifier_token26] = ACTIONS(2350), - [aux_sym_cmd_identifier_token27] = ACTIONS(2350), - [aux_sym_cmd_identifier_token28] = ACTIONS(2350), - [aux_sym_cmd_identifier_token29] = ACTIONS(2350), - [aux_sym_cmd_identifier_token30] = ACTIONS(2350), - [aux_sym_cmd_identifier_token31] = ACTIONS(2350), - [aux_sym_cmd_identifier_token32] = ACTIONS(2350), - [aux_sym_cmd_identifier_token33] = ACTIONS(2350), - [aux_sym_cmd_identifier_token34] = ACTIONS(2350), - [aux_sym_cmd_identifier_token35] = ACTIONS(2350), - [aux_sym_cmd_identifier_token36] = ACTIONS(2350), - [aux_sym_cmd_identifier_token37] = ACTIONS(2350), - [aux_sym_cmd_identifier_token38] = ACTIONS(2350), - [aux_sym_cmd_identifier_token39] = ACTIONS(2350), - [aux_sym_cmd_identifier_token40] = ACTIONS(2350), - [anon_sym_def] = ACTIONS(2350), - [anon_sym_export_DASHenv] = ACTIONS(2350), - [anon_sym_extern] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_use] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_COMMA] = ACTIONS(2350), - [anon_sym_DOLLAR] = ACTIONS(2350), - [anon_sym_error] = ACTIONS(2350), - [anon_sym_DASH2] = ACTIONS(2350), - [anon_sym_break] = ACTIONS(2350), - [anon_sym_continue] = ACTIONS(2350), - [anon_sym_for] = ACTIONS(2350), - [anon_sym_in2] = ACTIONS(2350), - [anon_sym_loop] = ACTIONS(2350), - [anon_sym_make] = ACTIONS(2350), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_do] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2350), - [anon_sym_else] = ACTIONS(2350), - [anon_sym_match] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_try] = ACTIONS(2350), - [anon_sym_catch] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2350), - [anon_sym_source] = ACTIONS(2350), - [anon_sym_source_DASHenv] = ACTIONS(2350), - [anon_sym_hide] = ACTIONS(2350), - [anon_sym_hide_DASHenv] = ACTIONS(2350), - [anon_sym_overlay] = ACTIONS(2350), - [anon_sym_as] = ACTIONS(2350), - [anon_sym_PLUS2] = ACTIONS(2350), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2350), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2350), - [aux_sym__val_number_decimal_token1] = ACTIONS(2350), - [aux_sym__val_number_decimal_token2] = ACTIONS(2350), - [aux_sym__val_number_decimal_token3] = ACTIONS(2350), - [aux_sym__val_number_decimal_token4] = ACTIONS(2350), - [aux_sym__val_number_token1] = ACTIONS(2350), - [aux_sym__val_number_token2] = ACTIONS(2350), - [aux_sym__val_number_token3] = ACTIONS(2350), - [aux_sym__val_number_token4] = ACTIONS(2350), - [aux_sym__val_number_token5] = ACTIONS(2350), - [aux_sym__val_number_token6] = ACTIONS(2350), - [anon_sym_DQUOTE] = ACTIONS(2350), - [sym__str_single_quotes] = ACTIONS(2350), - [sym__str_back_ticks] = ACTIONS(2350), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2350), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2350), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2350), - [sym__entry_separator] = ACTIONS(2352), - [anon_sym_register] = ACTIONS(2350), + [610] = { + [sym_comment] = STATE(610), + [aux_sym__multiple_types_repeat1] = STATE(634), + [anon_sym_export] = ACTIONS(2346), + [anon_sym_alias] = ACTIONS(2346), + [anon_sym_let] = ACTIONS(2346), + [anon_sym_let_DASHenv] = ACTIONS(2346), + [anon_sym_mut] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [aux_sym_cmd_identifier_token1] = ACTIONS(2346), + [aux_sym_cmd_identifier_token2] = ACTIONS(2346), + [aux_sym_cmd_identifier_token3] = ACTIONS(2346), + [aux_sym_cmd_identifier_token4] = ACTIONS(2346), + [aux_sym_cmd_identifier_token5] = ACTIONS(2346), + [aux_sym_cmd_identifier_token6] = ACTIONS(2346), + [aux_sym_cmd_identifier_token7] = ACTIONS(2346), + [aux_sym_cmd_identifier_token8] = ACTIONS(2346), + [aux_sym_cmd_identifier_token9] = ACTIONS(2346), + [aux_sym_cmd_identifier_token10] = ACTIONS(2346), + [aux_sym_cmd_identifier_token11] = ACTIONS(2346), + [aux_sym_cmd_identifier_token12] = ACTIONS(2346), + [aux_sym_cmd_identifier_token13] = ACTIONS(2346), + [aux_sym_cmd_identifier_token14] = ACTIONS(2346), + [aux_sym_cmd_identifier_token15] = ACTIONS(2346), + [aux_sym_cmd_identifier_token16] = ACTIONS(2346), + [aux_sym_cmd_identifier_token17] = ACTIONS(2346), + [aux_sym_cmd_identifier_token18] = ACTIONS(2346), + [aux_sym_cmd_identifier_token19] = ACTIONS(2346), + [aux_sym_cmd_identifier_token20] = ACTIONS(2346), + [aux_sym_cmd_identifier_token21] = ACTIONS(2346), + [aux_sym_cmd_identifier_token22] = ACTIONS(2346), + [aux_sym_cmd_identifier_token23] = ACTIONS(2346), + [aux_sym_cmd_identifier_token24] = ACTIONS(2346), + [aux_sym_cmd_identifier_token25] = ACTIONS(2346), + [aux_sym_cmd_identifier_token26] = ACTIONS(2346), + [aux_sym_cmd_identifier_token27] = ACTIONS(2346), + [aux_sym_cmd_identifier_token28] = ACTIONS(2346), + [aux_sym_cmd_identifier_token29] = ACTIONS(2346), + [aux_sym_cmd_identifier_token30] = ACTIONS(2346), + [aux_sym_cmd_identifier_token31] = ACTIONS(2346), + [aux_sym_cmd_identifier_token32] = ACTIONS(2346), + [aux_sym_cmd_identifier_token33] = ACTIONS(2346), + [aux_sym_cmd_identifier_token34] = ACTIONS(2346), + [aux_sym_cmd_identifier_token35] = ACTIONS(2346), + [aux_sym_cmd_identifier_token36] = ACTIONS(2346), + [aux_sym_cmd_identifier_token37] = ACTIONS(2346), + [aux_sym_cmd_identifier_token38] = ACTIONS(2346), + [aux_sym_cmd_identifier_token39] = ACTIONS(2346), + [aux_sym_cmd_identifier_token40] = ACTIONS(2346), + [anon_sym_def] = ACTIONS(2346), + [anon_sym_export_DASHenv] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym_module] = ACTIONS(2346), + [anon_sym_use] = ACTIONS(2346), + [anon_sym_LPAREN] = ACTIONS(2346), + [anon_sym_DOLLAR] = ACTIONS(2346), + [anon_sym_error] = ACTIONS(2346), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_in2] = ACTIONS(2346), + [anon_sym_loop] = ACTIONS(2346), + [anon_sym_make] = ACTIONS(2346), + [anon_sym_while] = ACTIONS(2346), + [anon_sym_do] = ACTIONS(2346), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2346), + [anon_sym_match] = ACTIONS(2346), + [anon_sym_RBRACE] = ACTIONS(2352), + [anon_sym_try] = ACTIONS(2346), + [anon_sym_catch] = ACTIONS(2346), + [anon_sym_return] = ACTIONS(2346), + [anon_sym_source] = ACTIONS(2346), + [anon_sym_source_DASHenv] = ACTIONS(2346), + [anon_sym_hide] = ACTIONS(2346), + [anon_sym_hide_DASHenv] = ACTIONS(2346), + [anon_sym_overlay] = ACTIONS(2346), + [anon_sym_as] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2346), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2346), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2346), + [aux_sym__val_number_decimal_token1] = ACTIONS(2346), + [aux_sym__val_number_decimal_token2] = ACTIONS(2346), + [aux_sym__val_number_decimal_token3] = ACTIONS(2346), + [aux_sym__val_number_decimal_token4] = ACTIONS(2346), + [aux_sym__val_number_token1] = ACTIONS(2346), + [aux_sym__val_number_token2] = ACTIONS(2346), + [aux_sym__val_number_token3] = ACTIONS(2346), + [aux_sym__val_number_token4] = ACTIONS(2346), + [aux_sym__val_number_token5] = ACTIONS(2346), + [aux_sym__val_number_token6] = ACTIONS(2346), + [anon_sym_DQUOTE] = ACTIONS(2346), + [sym__str_single_quotes] = ACTIONS(2346), + [sym__str_back_ticks] = ACTIONS(2346), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2346), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2346), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2346), + [sym__entry_separator] = ACTIONS(2256), + [anon_sym_register] = ACTIONS(2346), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2352), + [sym_raw_string_begin] = ACTIONS(2350), }, - [627] = { - [sym_comment] = STATE(627), - [anon_sym_export] = ACTIONS(2354), - [anon_sym_alias] = ACTIONS(2354), - [anon_sym_let] = ACTIONS(2354), - [anon_sym_let_DASHenv] = ACTIONS(2354), - [anon_sym_mut] = ACTIONS(2354), - [anon_sym_const] = ACTIONS(2354), - [aux_sym_cmd_identifier_token1] = ACTIONS(2354), - [aux_sym_cmd_identifier_token2] = ACTIONS(2354), - [aux_sym_cmd_identifier_token3] = ACTIONS(2354), - [aux_sym_cmd_identifier_token4] = ACTIONS(2354), - [aux_sym_cmd_identifier_token5] = ACTIONS(2354), - [aux_sym_cmd_identifier_token6] = ACTIONS(2354), - [aux_sym_cmd_identifier_token7] = ACTIONS(2354), - [aux_sym_cmd_identifier_token8] = ACTIONS(2354), - [aux_sym_cmd_identifier_token9] = ACTIONS(2354), - [aux_sym_cmd_identifier_token10] = ACTIONS(2354), - [aux_sym_cmd_identifier_token11] = ACTIONS(2354), - [aux_sym_cmd_identifier_token12] = ACTIONS(2354), - [aux_sym_cmd_identifier_token13] = ACTIONS(2354), - [aux_sym_cmd_identifier_token14] = ACTIONS(2354), - [aux_sym_cmd_identifier_token15] = ACTIONS(2354), - [aux_sym_cmd_identifier_token16] = ACTIONS(2354), - [aux_sym_cmd_identifier_token17] = ACTIONS(2354), - [aux_sym_cmd_identifier_token18] = ACTIONS(2354), - [aux_sym_cmd_identifier_token19] = ACTIONS(2354), - [aux_sym_cmd_identifier_token20] = ACTIONS(2354), - [aux_sym_cmd_identifier_token21] = ACTIONS(2354), - [aux_sym_cmd_identifier_token22] = ACTIONS(2354), - [aux_sym_cmd_identifier_token23] = ACTIONS(2354), - [aux_sym_cmd_identifier_token24] = ACTIONS(2354), - [aux_sym_cmd_identifier_token25] = ACTIONS(2354), - [aux_sym_cmd_identifier_token26] = ACTIONS(2354), - [aux_sym_cmd_identifier_token27] = ACTIONS(2354), - [aux_sym_cmd_identifier_token28] = ACTIONS(2354), - [aux_sym_cmd_identifier_token29] = ACTIONS(2354), - [aux_sym_cmd_identifier_token30] = ACTIONS(2354), - [aux_sym_cmd_identifier_token31] = ACTIONS(2354), - [aux_sym_cmd_identifier_token32] = ACTIONS(2354), - [aux_sym_cmd_identifier_token33] = ACTIONS(2354), - [aux_sym_cmd_identifier_token34] = ACTIONS(2354), - [aux_sym_cmd_identifier_token35] = ACTIONS(2354), - [aux_sym_cmd_identifier_token36] = ACTIONS(2354), - [aux_sym_cmd_identifier_token37] = ACTIONS(2354), - [aux_sym_cmd_identifier_token38] = ACTIONS(2354), - [aux_sym_cmd_identifier_token39] = ACTIONS(2354), - [aux_sym_cmd_identifier_token40] = ACTIONS(2354), - [anon_sym_def] = ACTIONS(2354), - [anon_sym_export_DASHenv] = ACTIONS(2354), - [anon_sym_extern] = ACTIONS(2354), - [anon_sym_module] = ACTIONS(2354), - [anon_sym_use] = ACTIONS(2354), - [anon_sym_LPAREN] = ACTIONS(2354), - [anon_sym_COMMA] = ACTIONS(2354), - [anon_sym_DOLLAR] = ACTIONS(2354), - [anon_sym_error] = ACTIONS(2354), - [anon_sym_DASH2] = ACTIONS(2354), - [anon_sym_break] = ACTIONS(2354), - [anon_sym_continue] = ACTIONS(2354), - [anon_sym_for] = ACTIONS(2354), - [anon_sym_in2] = ACTIONS(2354), - [anon_sym_loop] = ACTIONS(2354), - [anon_sym_make] = ACTIONS(2354), - [anon_sym_while] = ACTIONS(2354), - [anon_sym_do] = ACTIONS(2354), - [anon_sym_if] = ACTIONS(2354), - [anon_sym_else] = ACTIONS(2354), - [anon_sym_match] = ACTIONS(2354), + [611] = { + [sym_comment] = STATE(611), + [aux_sym__multiple_types_repeat1] = STATE(634), + [anon_sym_export] = ACTIONS(2346), + [anon_sym_alias] = ACTIONS(2346), + [anon_sym_let] = ACTIONS(2346), + [anon_sym_let_DASHenv] = ACTIONS(2346), + [anon_sym_mut] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [aux_sym_cmd_identifier_token1] = ACTIONS(2346), + [aux_sym_cmd_identifier_token2] = ACTIONS(2346), + [aux_sym_cmd_identifier_token3] = ACTIONS(2346), + [aux_sym_cmd_identifier_token4] = ACTIONS(2346), + [aux_sym_cmd_identifier_token5] = ACTIONS(2346), + [aux_sym_cmd_identifier_token6] = ACTIONS(2346), + [aux_sym_cmd_identifier_token7] = ACTIONS(2346), + [aux_sym_cmd_identifier_token8] = ACTIONS(2346), + [aux_sym_cmd_identifier_token9] = ACTIONS(2346), + [aux_sym_cmd_identifier_token10] = ACTIONS(2346), + [aux_sym_cmd_identifier_token11] = ACTIONS(2346), + [aux_sym_cmd_identifier_token12] = ACTIONS(2346), + [aux_sym_cmd_identifier_token13] = ACTIONS(2346), + [aux_sym_cmd_identifier_token14] = ACTIONS(2346), + [aux_sym_cmd_identifier_token15] = ACTIONS(2346), + [aux_sym_cmd_identifier_token16] = ACTIONS(2346), + [aux_sym_cmd_identifier_token17] = ACTIONS(2346), + [aux_sym_cmd_identifier_token18] = ACTIONS(2346), + [aux_sym_cmd_identifier_token19] = ACTIONS(2346), + [aux_sym_cmd_identifier_token20] = ACTIONS(2346), + [aux_sym_cmd_identifier_token21] = ACTIONS(2346), + [aux_sym_cmd_identifier_token22] = ACTIONS(2346), + [aux_sym_cmd_identifier_token23] = ACTIONS(2346), + [aux_sym_cmd_identifier_token24] = ACTIONS(2346), + [aux_sym_cmd_identifier_token25] = ACTIONS(2346), + [aux_sym_cmd_identifier_token26] = ACTIONS(2346), + [aux_sym_cmd_identifier_token27] = ACTIONS(2346), + [aux_sym_cmd_identifier_token28] = ACTIONS(2346), + [aux_sym_cmd_identifier_token29] = ACTIONS(2346), + [aux_sym_cmd_identifier_token30] = ACTIONS(2346), + [aux_sym_cmd_identifier_token31] = ACTIONS(2346), + [aux_sym_cmd_identifier_token32] = ACTIONS(2346), + [aux_sym_cmd_identifier_token33] = ACTIONS(2346), + [aux_sym_cmd_identifier_token34] = ACTIONS(2346), + [aux_sym_cmd_identifier_token35] = ACTIONS(2346), + [aux_sym_cmd_identifier_token36] = ACTIONS(2346), + [aux_sym_cmd_identifier_token37] = ACTIONS(2346), + [aux_sym_cmd_identifier_token38] = ACTIONS(2346), + [aux_sym_cmd_identifier_token39] = ACTIONS(2346), + [aux_sym_cmd_identifier_token40] = ACTIONS(2346), + [anon_sym_def] = ACTIONS(2346), + [anon_sym_export_DASHenv] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym_module] = ACTIONS(2346), + [anon_sym_use] = ACTIONS(2346), + [anon_sym_LPAREN] = ACTIONS(2346), + [anon_sym_DOLLAR] = ACTIONS(2346), + [anon_sym_error] = ACTIONS(2346), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_in2] = ACTIONS(2346), + [anon_sym_loop] = ACTIONS(2346), + [anon_sym_make] = ACTIONS(2346), + [anon_sym_while] = ACTIONS(2346), + [anon_sym_do] = ACTIONS(2346), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2346), + [anon_sym_match] = ACTIONS(2346), [anon_sym_RBRACE] = ACTIONS(2354), - [anon_sym_try] = ACTIONS(2354), - [anon_sym_catch] = ACTIONS(2354), - [anon_sym_return] = ACTIONS(2354), - [anon_sym_source] = ACTIONS(2354), - [anon_sym_source_DASHenv] = ACTIONS(2354), - [anon_sym_hide] = ACTIONS(2354), - [anon_sym_hide_DASHenv] = ACTIONS(2354), - [anon_sym_overlay] = ACTIONS(2354), - [anon_sym_as] = ACTIONS(2354), - [anon_sym_PLUS2] = ACTIONS(2354), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2354), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2354), - [aux_sym__val_number_decimal_token1] = ACTIONS(2354), - [aux_sym__val_number_decimal_token2] = ACTIONS(2354), - [aux_sym__val_number_decimal_token3] = ACTIONS(2354), - [aux_sym__val_number_decimal_token4] = ACTIONS(2354), - [aux_sym__val_number_token1] = ACTIONS(2354), - [aux_sym__val_number_token2] = ACTIONS(2354), - [aux_sym__val_number_token3] = ACTIONS(2354), - [aux_sym__val_number_token4] = ACTIONS(2354), - [aux_sym__val_number_token5] = ACTIONS(2354), - [aux_sym__val_number_token6] = ACTIONS(2354), - [anon_sym_DQUOTE] = ACTIONS(2354), - [sym__str_single_quotes] = ACTIONS(2354), - [sym__str_back_ticks] = ACTIONS(2354), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2354), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2354), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2354), - [sym__entry_separator] = ACTIONS(2356), - [anon_sym_register] = ACTIONS(2354), + [anon_sym_try] = ACTIONS(2346), + [anon_sym_catch] = ACTIONS(2346), + [anon_sym_return] = ACTIONS(2346), + [anon_sym_source] = ACTIONS(2346), + [anon_sym_source_DASHenv] = ACTIONS(2346), + [anon_sym_hide] = ACTIONS(2346), + [anon_sym_hide_DASHenv] = ACTIONS(2346), + [anon_sym_overlay] = ACTIONS(2346), + [anon_sym_as] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2346), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2346), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2346), + [aux_sym__val_number_decimal_token1] = ACTIONS(2346), + [aux_sym__val_number_decimal_token2] = ACTIONS(2346), + [aux_sym__val_number_decimal_token3] = ACTIONS(2346), + [aux_sym__val_number_decimal_token4] = ACTIONS(2346), + [aux_sym__val_number_token1] = ACTIONS(2346), + [aux_sym__val_number_token2] = ACTIONS(2346), + [aux_sym__val_number_token3] = ACTIONS(2346), + [aux_sym__val_number_token4] = ACTIONS(2346), + [aux_sym__val_number_token5] = ACTIONS(2346), + [aux_sym__val_number_token6] = ACTIONS(2346), + [anon_sym_DQUOTE] = ACTIONS(2346), + [sym__str_single_quotes] = ACTIONS(2346), + [sym__str_back_ticks] = ACTIONS(2346), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2346), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2346), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2346), + [sym__entry_separator] = ACTIONS(2256), + [anon_sym_register] = ACTIONS(2346), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2356), + [sym_raw_string_begin] = ACTIONS(2350), }, - [628] = { - [sym_comment] = STATE(628), + [612] = { + [sym_comment] = STATE(612), + [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(998), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(998), + [sym__entry_separator] = ACTIONS(994), + [anon_sym_register] = ACTIONS(998), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(994), + }, + [613] = { + [sym_comment] = STATE(613), + [anon_sym_export] = ACTIONS(1934), + [anon_sym_alias] = ACTIONS(1934), + [anon_sym_let] = ACTIONS(1934), + [anon_sym_let_DASHenv] = ACTIONS(1934), + [anon_sym_mut] = ACTIONS(1934), + [anon_sym_const] = ACTIONS(1934), + [aux_sym_cmd_identifier_token1] = ACTIONS(1934), + [aux_sym_cmd_identifier_token2] = ACTIONS(1934), + [aux_sym_cmd_identifier_token3] = ACTIONS(1934), + [aux_sym_cmd_identifier_token4] = ACTIONS(1934), + [aux_sym_cmd_identifier_token5] = ACTIONS(1934), + [aux_sym_cmd_identifier_token6] = ACTIONS(1934), + [aux_sym_cmd_identifier_token7] = ACTIONS(1934), + [aux_sym_cmd_identifier_token8] = ACTIONS(1934), + [aux_sym_cmd_identifier_token9] = ACTIONS(1934), + [aux_sym_cmd_identifier_token10] = ACTIONS(1934), + [aux_sym_cmd_identifier_token11] = ACTIONS(1934), + [aux_sym_cmd_identifier_token12] = ACTIONS(1934), + [aux_sym_cmd_identifier_token13] = ACTIONS(1934), + [aux_sym_cmd_identifier_token14] = ACTIONS(1934), + [aux_sym_cmd_identifier_token15] = ACTIONS(1934), + [aux_sym_cmd_identifier_token16] = ACTIONS(1934), + [aux_sym_cmd_identifier_token17] = ACTIONS(1934), + [aux_sym_cmd_identifier_token18] = ACTIONS(1934), + [aux_sym_cmd_identifier_token19] = ACTIONS(1934), + [aux_sym_cmd_identifier_token20] = ACTIONS(1934), + [aux_sym_cmd_identifier_token21] = ACTIONS(1934), + [aux_sym_cmd_identifier_token22] = ACTIONS(1934), + [aux_sym_cmd_identifier_token23] = ACTIONS(1934), + [aux_sym_cmd_identifier_token24] = ACTIONS(1934), + [aux_sym_cmd_identifier_token25] = ACTIONS(1934), + [aux_sym_cmd_identifier_token26] = ACTIONS(1934), + [aux_sym_cmd_identifier_token27] = ACTIONS(1934), + [aux_sym_cmd_identifier_token28] = ACTIONS(1934), + [aux_sym_cmd_identifier_token29] = ACTIONS(1934), + [aux_sym_cmd_identifier_token30] = ACTIONS(1934), + [aux_sym_cmd_identifier_token31] = ACTIONS(1934), + [aux_sym_cmd_identifier_token32] = ACTIONS(1934), + [aux_sym_cmd_identifier_token33] = ACTIONS(1934), + [aux_sym_cmd_identifier_token34] = ACTIONS(1934), + [aux_sym_cmd_identifier_token35] = ACTIONS(1934), + [aux_sym_cmd_identifier_token36] = ACTIONS(1934), + [aux_sym_cmd_identifier_token37] = ACTIONS(1934), + [aux_sym_cmd_identifier_token38] = ACTIONS(1934), + [aux_sym_cmd_identifier_token39] = ACTIONS(1934), + [aux_sym_cmd_identifier_token40] = ACTIONS(1934), + [anon_sym_def] = ACTIONS(1934), + [anon_sym_export_DASHenv] = ACTIONS(1934), + [anon_sym_extern] = ACTIONS(1934), + [anon_sym_module] = ACTIONS(1934), + [anon_sym_use] = ACTIONS(1934), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_COMMA] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1934), + [anon_sym_error] = ACTIONS(1934), + [anon_sym_DASH2] = ACTIONS(1934), + [anon_sym_break] = ACTIONS(1934), + [anon_sym_continue] = ACTIONS(1934), + [anon_sym_for] = ACTIONS(1934), + [anon_sym_in2] = ACTIONS(1934), + [anon_sym_loop] = ACTIONS(1934), + [anon_sym_make] = ACTIONS(1934), + [anon_sym_while] = ACTIONS(1934), + [anon_sym_do] = ACTIONS(1934), + [anon_sym_if] = ACTIONS(1934), + [anon_sym_else] = ACTIONS(1934), + [anon_sym_match] = ACTIONS(1934), + [anon_sym_RBRACE] = ACTIONS(1934), + [anon_sym_try] = ACTIONS(1934), + [anon_sym_catch] = ACTIONS(1934), + [anon_sym_return] = ACTIONS(1934), + [anon_sym_source] = ACTIONS(1934), + [anon_sym_source_DASHenv] = ACTIONS(1934), + [anon_sym_hide] = ACTIONS(1934), + [anon_sym_hide_DASHenv] = ACTIONS(1934), + [anon_sym_overlay] = ACTIONS(1934), + [anon_sym_as] = ACTIONS(1934), + [anon_sym_PLUS2] = ACTIONS(1934), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1934), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1934), + [aux_sym__val_number_decimal_token1] = ACTIONS(1934), + [aux_sym__val_number_decimal_token2] = ACTIONS(1934), + [aux_sym__val_number_decimal_token3] = ACTIONS(1934), + [aux_sym__val_number_decimal_token4] = ACTIONS(1934), + [aux_sym__val_number_token1] = ACTIONS(1934), + [aux_sym__val_number_token2] = ACTIONS(1934), + [aux_sym__val_number_token3] = ACTIONS(1934), + [aux_sym__val_number_token4] = ACTIONS(1934), + [aux_sym__val_number_token5] = ACTIONS(1934), + [aux_sym__val_number_token6] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1934), + [sym__str_single_quotes] = ACTIONS(1934), + [sym__str_back_ticks] = ACTIONS(1934), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1934), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1934), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1934), + [sym__entry_separator] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1934), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1940), + }, + [614] = { + [sym_comment] = STATE(614), + [anon_sym_export] = ACTIONS(986), + [anon_sym_alias] = ACTIONS(986), + [anon_sym_let] = ACTIONS(986), + [anon_sym_let_DASHenv] = ACTIONS(986), + [anon_sym_mut] = ACTIONS(986), + [anon_sym_const] = ACTIONS(986), + [aux_sym_cmd_identifier_token1] = ACTIONS(986), + [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(986), + [aux_sym_cmd_identifier_token9] = ACTIONS(986), + [aux_sym_cmd_identifier_token10] = ACTIONS(992), + [aux_sym_cmd_identifier_token11] = ACTIONS(992), + [aux_sym_cmd_identifier_token12] = ACTIONS(986), + [aux_sym_cmd_identifier_token13] = ACTIONS(986), + [aux_sym_cmd_identifier_token14] = ACTIONS(986), + [aux_sym_cmd_identifier_token15] = ACTIONS(986), + [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(986), + [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(986), + [aux_sym_cmd_identifier_token39] = ACTIONS(992), + [aux_sym_cmd_identifier_token40] = ACTIONS(992), + [anon_sym_def] = ACTIONS(986), + [anon_sym_export_DASHenv] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_use] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_error] = ACTIONS(986), + [anon_sym_DASH2] = ACTIONS(986), + [anon_sym_break] = ACTIONS(986), + [anon_sym_continue] = ACTIONS(986), + [anon_sym_for] = ACTIONS(986), + [anon_sym_in2] = ACTIONS(986), + [anon_sym_loop] = ACTIONS(986), + [anon_sym_make] = ACTIONS(986), + [anon_sym_while] = ACTIONS(986), + [anon_sym_do] = ACTIONS(986), + [anon_sym_if] = ACTIONS(986), + [anon_sym_else] = ACTIONS(986), + [anon_sym_match] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_try] = ACTIONS(986), + [anon_sym_catch] = ACTIONS(986), + [anon_sym_return] = ACTIONS(986), + [anon_sym_source] = ACTIONS(986), + [anon_sym_source_DASHenv] = ACTIONS(986), + [anon_sym_hide] = ACTIONS(986), + [anon_sym_hide_DASHenv] = ACTIONS(986), + [anon_sym_overlay] = ACTIONS(986), + [anon_sym_as] = ACTIONS(986), + [anon_sym_PLUS2] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(986), + [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(986), + [aux_sym__val_number_token5] = ACTIONS(986), + [aux_sym__val_number_token6] = ACTIONS(986), + [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_DOT_DOT_DOT_LBRACE] = ACTIONS(992), + [anon_sym_register] = ACTIONS(986), + [anon_sym_COLON2] = ACTIONS(2356), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(992), + }, + [615] = { + [sym_comment] = STATE(615), [anon_sym_export] = ACTIONS(2358), [anon_sym_alias] = ACTIONS(2358), [anon_sym_let] = ACTIONS(2358), @@ -143617,8 +141101,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2360), }, - [629] = { - [sym_comment] = STATE(629), + [616] = { + [sym_comment] = STATE(616), + [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_COMMA] = 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_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_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_DOLLAR_SQUOTE] = ACTIONS(1867), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1867), + [sym__entry_separator] = ACTIONS(1869), + [anon_sym_register] = ACTIONS(1867), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1869), + }, + [617] = { + [sym_comment] = STATE(617), [anon_sym_export] = ACTIONS(2362), [anon_sym_alias] = ACTIONS(2362), [anon_sym_let] = ACTIONS(2362), @@ -143720,8 +141307,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2364), }, - [630] = { - [sym_comment] = STATE(630), + [618] = { + [sym_comment] = STATE(618), [anon_sym_export] = ACTIONS(2366), [anon_sym_alias] = ACTIONS(2366), [anon_sym_let] = ACTIONS(2366), @@ -143823,317 +141410,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2368), }, - [631] = { - [sym_comment] = STATE(631), - [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(998), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(998), - [sym__entry_separator] = ACTIONS(994), - [anon_sym_register] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(994), - }, - [632] = { - [sym_comment] = STATE(632), - [anon_sym_export] = ACTIONS(1989), - [anon_sym_alias] = ACTIONS(1989), - [anon_sym_let] = ACTIONS(1989), - [anon_sym_let_DASHenv] = ACTIONS(1989), - [anon_sym_mut] = ACTIONS(1989), - [anon_sym_const] = ACTIONS(1989), - [aux_sym_cmd_identifier_token1] = ACTIONS(1989), - [aux_sym_cmd_identifier_token2] = ACTIONS(1989), - [aux_sym_cmd_identifier_token3] = ACTIONS(1989), - [aux_sym_cmd_identifier_token4] = ACTIONS(1989), - [aux_sym_cmd_identifier_token5] = ACTIONS(1989), - [aux_sym_cmd_identifier_token6] = ACTIONS(1989), - [aux_sym_cmd_identifier_token7] = ACTIONS(1989), - [aux_sym_cmd_identifier_token8] = ACTIONS(1989), - [aux_sym_cmd_identifier_token9] = ACTIONS(1989), - [aux_sym_cmd_identifier_token10] = ACTIONS(1989), - [aux_sym_cmd_identifier_token11] = ACTIONS(1989), - [aux_sym_cmd_identifier_token12] = ACTIONS(1989), - [aux_sym_cmd_identifier_token13] = ACTIONS(1989), - [aux_sym_cmd_identifier_token14] = ACTIONS(1989), - [aux_sym_cmd_identifier_token15] = ACTIONS(1989), - [aux_sym_cmd_identifier_token16] = ACTIONS(1989), - [aux_sym_cmd_identifier_token17] = ACTIONS(1989), - [aux_sym_cmd_identifier_token18] = ACTIONS(1989), - [aux_sym_cmd_identifier_token19] = ACTIONS(1989), - [aux_sym_cmd_identifier_token20] = ACTIONS(1989), - [aux_sym_cmd_identifier_token21] = ACTIONS(1989), - [aux_sym_cmd_identifier_token22] = ACTIONS(1989), - [aux_sym_cmd_identifier_token23] = ACTIONS(1989), - [aux_sym_cmd_identifier_token24] = ACTIONS(1989), - [aux_sym_cmd_identifier_token25] = ACTIONS(1989), - [aux_sym_cmd_identifier_token26] = ACTIONS(1989), - [aux_sym_cmd_identifier_token27] = ACTIONS(1989), - [aux_sym_cmd_identifier_token28] = ACTIONS(1989), - [aux_sym_cmd_identifier_token29] = ACTIONS(1989), - [aux_sym_cmd_identifier_token30] = ACTIONS(1989), - [aux_sym_cmd_identifier_token31] = ACTIONS(1989), - [aux_sym_cmd_identifier_token32] = ACTIONS(1989), - [aux_sym_cmd_identifier_token33] = ACTIONS(1989), - [aux_sym_cmd_identifier_token34] = ACTIONS(1989), - [aux_sym_cmd_identifier_token35] = ACTIONS(1989), - [aux_sym_cmd_identifier_token36] = ACTIONS(1989), - [aux_sym_cmd_identifier_token37] = ACTIONS(1989), - [aux_sym_cmd_identifier_token38] = ACTIONS(1989), - [aux_sym_cmd_identifier_token39] = ACTIONS(1989), - [aux_sym_cmd_identifier_token40] = ACTIONS(1989), - [anon_sym_def] = ACTIONS(1989), - [anon_sym_export_DASHenv] = ACTIONS(1989), - [anon_sym_extern] = ACTIONS(1989), - [anon_sym_module] = ACTIONS(1989), - [anon_sym_use] = ACTIONS(1989), - [anon_sym_LPAREN] = ACTIONS(1989), - [anon_sym_COMMA] = ACTIONS(1989), - [anon_sym_DOLLAR] = ACTIONS(1989), - [anon_sym_error] = ACTIONS(1989), - [anon_sym_DASH2] = ACTIONS(1989), - [anon_sym_break] = ACTIONS(1989), - [anon_sym_continue] = ACTIONS(1989), - [anon_sym_for] = ACTIONS(1989), - [anon_sym_in2] = ACTIONS(1989), - [anon_sym_loop] = ACTIONS(1989), - [anon_sym_make] = ACTIONS(1989), - [anon_sym_while] = ACTIONS(1989), - [anon_sym_do] = ACTIONS(1989), - [anon_sym_if] = ACTIONS(1989), - [anon_sym_else] = ACTIONS(1989), - [anon_sym_match] = ACTIONS(1989), - [anon_sym_RBRACE] = ACTIONS(1989), - [anon_sym_try] = ACTIONS(1989), - [anon_sym_catch] = ACTIONS(1989), - [anon_sym_return] = ACTIONS(1989), - [anon_sym_source] = ACTIONS(1989), - [anon_sym_source_DASHenv] = ACTIONS(1989), - [anon_sym_hide] = ACTIONS(1989), - [anon_sym_hide_DASHenv] = ACTIONS(1989), - [anon_sym_overlay] = ACTIONS(1989), - [anon_sym_as] = ACTIONS(1989), - [anon_sym_PLUS2] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1989), - [aux_sym__val_number_decimal_token1] = ACTIONS(1989), - [aux_sym__val_number_decimal_token2] = ACTIONS(1989), - [aux_sym__val_number_decimal_token3] = ACTIONS(1989), - [aux_sym__val_number_decimal_token4] = ACTIONS(1989), - [aux_sym__val_number_token1] = ACTIONS(1989), - [aux_sym__val_number_token2] = ACTIONS(1989), - [aux_sym__val_number_token3] = ACTIONS(1989), - [aux_sym__val_number_token4] = ACTIONS(1989), - [aux_sym__val_number_token5] = ACTIONS(1989), - [aux_sym__val_number_token6] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1989), - [sym__str_single_quotes] = ACTIONS(1989), - [sym__str_back_ticks] = ACTIONS(1989), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1989), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1989), - [sym__entry_separator] = ACTIONS(1991), - [anon_sym_register] = ACTIONS(1989), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1991), - }, - [633] = { - [sym_comment] = STATE(633), - [anon_sym_export] = ACTIONS(1959), - [anon_sym_alias] = ACTIONS(1959), - [anon_sym_let] = ACTIONS(1959), - [anon_sym_let_DASHenv] = ACTIONS(1959), - [anon_sym_mut] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(1959), - [aux_sym_cmd_identifier_token1] = ACTIONS(1959), - [aux_sym_cmd_identifier_token2] = ACTIONS(1959), - [aux_sym_cmd_identifier_token3] = ACTIONS(1959), - [aux_sym_cmd_identifier_token4] = ACTIONS(1959), - [aux_sym_cmd_identifier_token5] = ACTIONS(1959), - [aux_sym_cmd_identifier_token6] = ACTIONS(1959), - [aux_sym_cmd_identifier_token7] = ACTIONS(1959), - [aux_sym_cmd_identifier_token8] = ACTIONS(1959), - [aux_sym_cmd_identifier_token9] = ACTIONS(1959), - [aux_sym_cmd_identifier_token10] = ACTIONS(1959), - [aux_sym_cmd_identifier_token11] = ACTIONS(1959), - [aux_sym_cmd_identifier_token12] = ACTIONS(1959), - [aux_sym_cmd_identifier_token13] = ACTIONS(1959), - [aux_sym_cmd_identifier_token14] = ACTIONS(1959), - [aux_sym_cmd_identifier_token15] = ACTIONS(1959), - [aux_sym_cmd_identifier_token16] = ACTIONS(1959), - [aux_sym_cmd_identifier_token17] = ACTIONS(1959), - [aux_sym_cmd_identifier_token18] = ACTIONS(1959), - [aux_sym_cmd_identifier_token19] = ACTIONS(1959), - [aux_sym_cmd_identifier_token20] = ACTIONS(1959), - [aux_sym_cmd_identifier_token21] = ACTIONS(1959), - [aux_sym_cmd_identifier_token22] = ACTIONS(1959), - [aux_sym_cmd_identifier_token23] = ACTIONS(1959), - [aux_sym_cmd_identifier_token24] = ACTIONS(1959), - [aux_sym_cmd_identifier_token25] = ACTIONS(1959), - [aux_sym_cmd_identifier_token26] = ACTIONS(1959), - [aux_sym_cmd_identifier_token27] = ACTIONS(1959), - [aux_sym_cmd_identifier_token28] = ACTIONS(1959), - [aux_sym_cmd_identifier_token29] = ACTIONS(1959), - [aux_sym_cmd_identifier_token30] = ACTIONS(1959), - [aux_sym_cmd_identifier_token31] = ACTIONS(1959), - [aux_sym_cmd_identifier_token32] = ACTIONS(1959), - [aux_sym_cmd_identifier_token33] = ACTIONS(1959), - [aux_sym_cmd_identifier_token34] = ACTIONS(1959), - [aux_sym_cmd_identifier_token35] = ACTIONS(1959), - [aux_sym_cmd_identifier_token36] = ACTIONS(1959), - [aux_sym_cmd_identifier_token37] = ACTIONS(1959), - [aux_sym_cmd_identifier_token38] = ACTIONS(1959), - [aux_sym_cmd_identifier_token39] = ACTIONS(1959), - [aux_sym_cmd_identifier_token40] = ACTIONS(1959), - [anon_sym_def] = ACTIONS(1959), - [anon_sym_export_DASHenv] = ACTIONS(1959), - [anon_sym_extern] = ACTIONS(1959), - [anon_sym_module] = ACTIONS(1959), - [anon_sym_use] = ACTIONS(1959), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_COMMA] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1959), - [anon_sym_error] = ACTIONS(1959), - [anon_sym_DASH2] = ACTIONS(1959), - [anon_sym_break] = ACTIONS(1959), - [anon_sym_continue] = ACTIONS(1959), - [anon_sym_for] = ACTIONS(1959), - [anon_sym_in2] = ACTIONS(1959), - [anon_sym_loop] = ACTIONS(1959), - [anon_sym_make] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1959), - [anon_sym_do] = ACTIONS(1959), - [anon_sym_if] = ACTIONS(1959), - [anon_sym_else] = ACTIONS(1959), - [anon_sym_match] = ACTIONS(1959), - [anon_sym_RBRACE] = ACTIONS(1959), - [anon_sym_try] = ACTIONS(1959), - [anon_sym_catch] = ACTIONS(1959), - [anon_sym_return] = ACTIONS(1959), - [anon_sym_source] = ACTIONS(1959), - [anon_sym_source_DASHenv] = ACTIONS(1959), - [anon_sym_hide] = ACTIONS(1959), - [anon_sym_hide_DASHenv] = ACTIONS(1959), - [anon_sym_overlay] = ACTIONS(1959), - [anon_sym_as] = ACTIONS(1959), - [anon_sym_PLUS2] = ACTIONS(1959), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1959), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1959), - [aux_sym__val_number_decimal_token2] = ACTIONS(1959), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), - [aux_sym__val_number_token1] = ACTIONS(1959), - [aux_sym__val_number_token2] = ACTIONS(1959), - [aux_sym__val_number_token3] = ACTIONS(1959), - [aux_sym__val_number_token4] = ACTIONS(1959), - [aux_sym__val_number_token5] = ACTIONS(1959), - [aux_sym__val_number_token6] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(1959), - [sym__str_single_quotes] = ACTIONS(1959), - [sym__str_back_ticks] = ACTIONS(1959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1959), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1959), - [sym__entry_separator] = ACTIONS(1961), - [anon_sym_register] = ACTIONS(1959), + [619] = { + [sym_comment] = STATE(619), + [anon_sym_export] = ACTIONS(982), + [anon_sym_alias] = ACTIONS(982), + [anon_sym_let] = ACTIONS(982), + [anon_sym_let_DASHenv] = ACTIONS(982), + [anon_sym_mut] = ACTIONS(982), + [anon_sym_const] = ACTIONS(982), + [aux_sym_cmd_identifier_token1] = ACTIONS(982), + [aux_sym_cmd_identifier_token2] = ACTIONS(982), + [aux_sym_cmd_identifier_token3] = ACTIONS(982), + [aux_sym_cmd_identifier_token4] = ACTIONS(982), + [aux_sym_cmd_identifier_token5] = ACTIONS(982), + [aux_sym_cmd_identifier_token6] = ACTIONS(982), + [aux_sym_cmd_identifier_token7] = ACTIONS(982), + [aux_sym_cmd_identifier_token8] = ACTIONS(982), + [aux_sym_cmd_identifier_token9] = ACTIONS(982), + [aux_sym_cmd_identifier_token10] = ACTIONS(982), + [aux_sym_cmd_identifier_token11] = ACTIONS(982), + [aux_sym_cmd_identifier_token12] = ACTIONS(982), + [aux_sym_cmd_identifier_token13] = ACTIONS(982), + [aux_sym_cmd_identifier_token14] = ACTIONS(982), + [aux_sym_cmd_identifier_token15] = ACTIONS(982), + [aux_sym_cmd_identifier_token16] = ACTIONS(982), + [aux_sym_cmd_identifier_token17] = ACTIONS(982), + [aux_sym_cmd_identifier_token18] = ACTIONS(982), + [aux_sym_cmd_identifier_token19] = ACTIONS(982), + [aux_sym_cmd_identifier_token20] = ACTIONS(982), + [aux_sym_cmd_identifier_token21] = ACTIONS(982), + [aux_sym_cmd_identifier_token22] = ACTIONS(982), + [aux_sym_cmd_identifier_token23] = ACTIONS(982), + [aux_sym_cmd_identifier_token24] = ACTIONS(982), + [aux_sym_cmd_identifier_token25] = ACTIONS(982), + [aux_sym_cmd_identifier_token26] = ACTIONS(982), + [aux_sym_cmd_identifier_token27] = ACTIONS(982), + [aux_sym_cmd_identifier_token28] = ACTIONS(982), + [aux_sym_cmd_identifier_token29] = ACTIONS(982), + [aux_sym_cmd_identifier_token30] = ACTIONS(982), + [aux_sym_cmd_identifier_token31] = ACTIONS(982), + [aux_sym_cmd_identifier_token32] = ACTIONS(982), + [aux_sym_cmd_identifier_token33] = ACTIONS(982), + [aux_sym_cmd_identifier_token34] = ACTIONS(982), + [aux_sym_cmd_identifier_token35] = ACTIONS(982), + [aux_sym_cmd_identifier_token36] = ACTIONS(982), + [aux_sym_cmd_identifier_token37] = ACTIONS(982), + [aux_sym_cmd_identifier_token38] = ACTIONS(982), + [aux_sym_cmd_identifier_token39] = ACTIONS(982), + [aux_sym_cmd_identifier_token40] = ACTIONS(982), + [anon_sym_def] = ACTIONS(982), + [anon_sym_export_DASHenv] = ACTIONS(982), + [anon_sym_extern] = ACTIONS(982), + [anon_sym_module] = ACTIONS(982), + [anon_sym_use] = ACTIONS(982), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_COMMA] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(982), + [anon_sym_error] = ACTIONS(982), + [anon_sym_DASH2] = ACTIONS(982), + [anon_sym_break] = ACTIONS(982), + [anon_sym_continue] = ACTIONS(982), + [anon_sym_for] = ACTIONS(982), + [anon_sym_in2] = ACTIONS(982), + [anon_sym_loop] = ACTIONS(982), + [anon_sym_make] = ACTIONS(982), + [anon_sym_while] = ACTIONS(982), + [anon_sym_do] = ACTIONS(982), + [anon_sym_if] = ACTIONS(982), + [anon_sym_else] = ACTIONS(982), + [anon_sym_match] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_try] = ACTIONS(982), + [anon_sym_catch] = ACTIONS(982), + [anon_sym_return] = ACTIONS(982), + [anon_sym_source] = ACTIONS(982), + [anon_sym_source_DASHenv] = ACTIONS(982), + [anon_sym_hide] = ACTIONS(982), + [anon_sym_hide_DASHenv] = ACTIONS(982), + [anon_sym_overlay] = ACTIONS(982), + [anon_sym_as] = ACTIONS(982), + [anon_sym_PLUS2] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(982), + [aux_sym__val_number_decimal_token1] = ACTIONS(982), + [aux_sym__val_number_decimal_token2] = ACTIONS(982), + [aux_sym__val_number_decimal_token3] = ACTIONS(982), + [aux_sym__val_number_decimal_token4] = ACTIONS(982), + [aux_sym__val_number_token1] = ACTIONS(982), + [aux_sym__val_number_token2] = ACTIONS(982), + [aux_sym__val_number_token3] = ACTIONS(982), + [aux_sym__val_number_token4] = ACTIONS(982), + [aux_sym__val_number_token5] = ACTIONS(982), + [aux_sym__val_number_token6] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym__str_single_quotes] = ACTIONS(982), + [sym__str_back_ticks] = ACTIONS(982), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(982), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(982), + [sym__entry_separator] = ACTIONS(984), + [anon_sym_register] = ACTIONS(982), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1961), + [sym_raw_string_begin] = ACTIONS(984), }, - [634] = { - [sym_comment] = STATE(634), + [620] = { + [sym_comment] = STATE(620), [anon_sym_export] = ACTIONS(2370), [anon_sym_alias] = ACTIONS(2370), [anon_sym_let] = ACTIONS(2370), @@ -144235,8 +141616,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2372), }, - [635] = { - [sym_comment] = STATE(635), + [621] = { + [sym_comment] = STATE(621), [anon_sym_export] = ACTIONS(2374), [anon_sym_alias] = ACTIONS(2374), [anon_sym_let] = ACTIONS(2374), @@ -144338,8 +141719,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2376), }, - [636] = { - [sym_comment] = STATE(636), + [622] = { + [sym_comment] = STATE(622), [anon_sym_export] = ACTIONS(2378), [anon_sym_alias] = ACTIONS(2378), [anon_sym_let] = ACTIONS(2378), @@ -144441,8 +141822,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2380), }, - [637] = { - [sym_comment] = STATE(637), + [623] = { + [sym_comment] = STATE(623), [anon_sym_export] = ACTIONS(2382), [anon_sym_alias] = ACTIONS(2382), [anon_sym_let] = ACTIONS(2382), @@ -144544,2171 +141925,626 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2384), }, - [638] = { - [sym_comment] = STATE(638), - [anon_sym_export] = ACTIONS(2386), - [anon_sym_alias] = ACTIONS(2386), - [anon_sym_let] = ACTIONS(2386), - [anon_sym_let_DASHenv] = ACTIONS(2386), - [anon_sym_mut] = ACTIONS(2386), - [anon_sym_const] = ACTIONS(2386), - [aux_sym_cmd_identifier_token1] = ACTIONS(2386), - [aux_sym_cmd_identifier_token2] = ACTIONS(2386), - [aux_sym_cmd_identifier_token3] = ACTIONS(2386), - [aux_sym_cmd_identifier_token4] = ACTIONS(2386), - [aux_sym_cmd_identifier_token5] = ACTIONS(2386), - [aux_sym_cmd_identifier_token6] = ACTIONS(2386), - [aux_sym_cmd_identifier_token7] = ACTIONS(2386), - [aux_sym_cmd_identifier_token8] = ACTIONS(2386), - [aux_sym_cmd_identifier_token9] = ACTIONS(2386), - [aux_sym_cmd_identifier_token10] = ACTIONS(2386), - [aux_sym_cmd_identifier_token11] = ACTIONS(2386), - [aux_sym_cmd_identifier_token12] = ACTIONS(2386), - [aux_sym_cmd_identifier_token13] = ACTIONS(2386), - [aux_sym_cmd_identifier_token14] = ACTIONS(2386), - [aux_sym_cmd_identifier_token15] = ACTIONS(2386), - [aux_sym_cmd_identifier_token16] = ACTIONS(2386), - [aux_sym_cmd_identifier_token17] = ACTIONS(2386), - [aux_sym_cmd_identifier_token18] = ACTIONS(2386), - [aux_sym_cmd_identifier_token19] = ACTIONS(2386), - [aux_sym_cmd_identifier_token20] = ACTIONS(2386), - [aux_sym_cmd_identifier_token21] = ACTIONS(2386), - [aux_sym_cmd_identifier_token22] = ACTIONS(2386), - [aux_sym_cmd_identifier_token23] = ACTIONS(2386), - [aux_sym_cmd_identifier_token24] = ACTIONS(2386), - [aux_sym_cmd_identifier_token25] = ACTIONS(2386), - [aux_sym_cmd_identifier_token26] = ACTIONS(2386), - [aux_sym_cmd_identifier_token27] = ACTIONS(2386), - [aux_sym_cmd_identifier_token28] = ACTIONS(2386), - [aux_sym_cmd_identifier_token29] = ACTIONS(2386), - [aux_sym_cmd_identifier_token30] = ACTIONS(2386), - [aux_sym_cmd_identifier_token31] = ACTIONS(2386), - [aux_sym_cmd_identifier_token32] = ACTIONS(2386), - [aux_sym_cmd_identifier_token33] = ACTIONS(2386), - [aux_sym_cmd_identifier_token34] = ACTIONS(2386), - [aux_sym_cmd_identifier_token35] = ACTIONS(2386), - [aux_sym_cmd_identifier_token36] = ACTIONS(2386), - [aux_sym_cmd_identifier_token37] = ACTIONS(2386), - [aux_sym_cmd_identifier_token38] = ACTIONS(2386), - [aux_sym_cmd_identifier_token39] = ACTIONS(2386), - [aux_sym_cmd_identifier_token40] = ACTIONS(2386), - [anon_sym_def] = ACTIONS(2386), - [anon_sym_export_DASHenv] = ACTIONS(2386), - [anon_sym_extern] = ACTIONS(2386), - [anon_sym_module] = ACTIONS(2386), - [anon_sym_use] = ACTIONS(2386), - [anon_sym_LPAREN] = ACTIONS(2386), - [anon_sym_COMMA] = ACTIONS(2386), - [anon_sym_DOLLAR] = ACTIONS(2386), - [anon_sym_error] = ACTIONS(2386), - [anon_sym_DASH2] = ACTIONS(2386), - [anon_sym_break] = ACTIONS(2386), - [anon_sym_continue] = ACTIONS(2386), - [anon_sym_for] = ACTIONS(2386), - [anon_sym_in2] = ACTIONS(2386), - [anon_sym_loop] = ACTIONS(2386), - [anon_sym_make] = ACTIONS(2386), - [anon_sym_while] = ACTIONS(2386), - [anon_sym_do] = ACTIONS(2386), - [anon_sym_if] = ACTIONS(2386), - [anon_sym_else] = ACTIONS(2386), - [anon_sym_match] = ACTIONS(2386), + [624] = { + [sym_comment] = STATE(624), + [aux_sym__multiple_types_repeat1] = STATE(634), + [anon_sym_export] = ACTIONS(2346), + [anon_sym_alias] = ACTIONS(2346), + [anon_sym_let] = ACTIONS(2346), + [anon_sym_let_DASHenv] = ACTIONS(2346), + [anon_sym_mut] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [aux_sym_cmd_identifier_token1] = ACTIONS(2346), + [aux_sym_cmd_identifier_token2] = ACTIONS(2346), + [aux_sym_cmd_identifier_token3] = ACTIONS(2346), + [aux_sym_cmd_identifier_token4] = ACTIONS(2346), + [aux_sym_cmd_identifier_token5] = ACTIONS(2346), + [aux_sym_cmd_identifier_token6] = ACTIONS(2346), + [aux_sym_cmd_identifier_token7] = ACTIONS(2346), + [aux_sym_cmd_identifier_token8] = ACTIONS(2346), + [aux_sym_cmd_identifier_token9] = ACTIONS(2346), + [aux_sym_cmd_identifier_token10] = ACTIONS(2346), + [aux_sym_cmd_identifier_token11] = ACTIONS(2346), + [aux_sym_cmd_identifier_token12] = ACTIONS(2346), + [aux_sym_cmd_identifier_token13] = ACTIONS(2346), + [aux_sym_cmd_identifier_token14] = ACTIONS(2346), + [aux_sym_cmd_identifier_token15] = ACTIONS(2346), + [aux_sym_cmd_identifier_token16] = ACTIONS(2346), + [aux_sym_cmd_identifier_token17] = ACTIONS(2346), + [aux_sym_cmd_identifier_token18] = ACTIONS(2346), + [aux_sym_cmd_identifier_token19] = ACTIONS(2346), + [aux_sym_cmd_identifier_token20] = ACTIONS(2346), + [aux_sym_cmd_identifier_token21] = ACTIONS(2346), + [aux_sym_cmd_identifier_token22] = ACTIONS(2346), + [aux_sym_cmd_identifier_token23] = ACTIONS(2346), + [aux_sym_cmd_identifier_token24] = ACTIONS(2346), + [aux_sym_cmd_identifier_token25] = ACTIONS(2346), + [aux_sym_cmd_identifier_token26] = ACTIONS(2346), + [aux_sym_cmd_identifier_token27] = ACTIONS(2346), + [aux_sym_cmd_identifier_token28] = ACTIONS(2346), + [aux_sym_cmd_identifier_token29] = ACTIONS(2346), + [aux_sym_cmd_identifier_token30] = ACTIONS(2346), + [aux_sym_cmd_identifier_token31] = ACTIONS(2346), + [aux_sym_cmd_identifier_token32] = ACTIONS(2346), + [aux_sym_cmd_identifier_token33] = ACTIONS(2346), + [aux_sym_cmd_identifier_token34] = ACTIONS(2346), + [aux_sym_cmd_identifier_token35] = ACTIONS(2346), + [aux_sym_cmd_identifier_token36] = ACTIONS(2346), + [aux_sym_cmd_identifier_token37] = ACTIONS(2346), + [aux_sym_cmd_identifier_token38] = ACTIONS(2346), + [aux_sym_cmd_identifier_token39] = ACTIONS(2346), + [aux_sym_cmd_identifier_token40] = ACTIONS(2346), + [anon_sym_def] = ACTIONS(2346), + [anon_sym_export_DASHenv] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym_module] = ACTIONS(2346), + [anon_sym_use] = ACTIONS(2346), + [anon_sym_LPAREN] = ACTIONS(2346), + [anon_sym_DOLLAR] = ACTIONS(2346), + [anon_sym_error] = ACTIONS(2346), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_in2] = ACTIONS(2346), + [anon_sym_loop] = ACTIONS(2346), + [anon_sym_make] = ACTIONS(2346), + [anon_sym_while] = ACTIONS(2346), + [anon_sym_do] = ACTIONS(2346), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2346), + [anon_sym_match] = ACTIONS(2346), [anon_sym_RBRACE] = ACTIONS(2386), - [anon_sym_try] = ACTIONS(2386), - [anon_sym_catch] = ACTIONS(2386), - [anon_sym_return] = ACTIONS(2386), - [anon_sym_source] = ACTIONS(2386), - [anon_sym_source_DASHenv] = ACTIONS(2386), - [anon_sym_hide] = ACTIONS(2386), - [anon_sym_hide_DASHenv] = ACTIONS(2386), - [anon_sym_overlay] = ACTIONS(2386), - [anon_sym_as] = ACTIONS(2386), - [anon_sym_PLUS2] = ACTIONS(2386), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2386), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2386), - [aux_sym__val_number_decimal_token1] = ACTIONS(2386), - [aux_sym__val_number_decimal_token2] = ACTIONS(2386), - [aux_sym__val_number_decimal_token3] = ACTIONS(2386), - [aux_sym__val_number_decimal_token4] = ACTIONS(2386), - [aux_sym__val_number_token1] = ACTIONS(2386), - [aux_sym__val_number_token2] = ACTIONS(2386), - [aux_sym__val_number_token3] = ACTIONS(2386), - [aux_sym__val_number_token4] = ACTIONS(2386), - [aux_sym__val_number_token5] = ACTIONS(2386), - [aux_sym__val_number_token6] = ACTIONS(2386), - [anon_sym_DQUOTE] = ACTIONS(2386), - [sym__str_single_quotes] = ACTIONS(2386), - [sym__str_back_ticks] = ACTIONS(2386), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2386), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2386), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2386), - [sym__entry_separator] = ACTIONS(2388), - [anon_sym_register] = ACTIONS(2386), + [anon_sym_try] = ACTIONS(2346), + [anon_sym_catch] = ACTIONS(2346), + [anon_sym_return] = ACTIONS(2346), + [anon_sym_source] = ACTIONS(2346), + [anon_sym_source_DASHenv] = ACTIONS(2346), + [anon_sym_hide] = ACTIONS(2346), + [anon_sym_hide_DASHenv] = ACTIONS(2346), + [anon_sym_overlay] = ACTIONS(2346), + [anon_sym_as] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2346), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2346), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2346), + [aux_sym__val_number_decimal_token1] = ACTIONS(2346), + [aux_sym__val_number_decimal_token2] = ACTIONS(2346), + [aux_sym__val_number_decimal_token3] = ACTIONS(2346), + [aux_sym__val_number_decimal_token4] = ACTIONS(2346), + [aux_sym__val_number_token1] = ACTIONS(2346), + [aux_sym__val_number_token2] = ACTIONS(2346), + [aux_sym__val_number_token3] = ACTIONS(2346), + [aux_sym__val_number_token4] = ACTIONS(2346), + [aux_sym__val_number_token5] = ACTIONS(2346), + [aux_sym__val_number_token6] = ACTIONS(2346), + [anon_sym_DQUOTE] = ACTIONS(2346), + [sym__str_single_quotes] = ACTIONS(2346), + [sym__str_back_ticks] = ACTIONS(2346), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2346), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2346), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2346), + [sym__entry_separator] = ACTIONS(2256), + [anon_sym_register] = ACTIONS(2346), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2388), + [sym_raw_string_begin] = ACTIONS(2350), }, - [639] = { - [sym_comment] = STATE(639), - [aux_sym__multiple_types_repeat1] = STATE(657), - [anon_sym_export] = ACTIONS(2314), - [anon_sym_alias] = ACTIONS(2314), - [anon_sym_let] = ACTIONS(2314), - [anon_sym_let_DASHenv] = ACTIONS(2314), - [anon_sym_mut] = ACTIONS(2314), - [anon_sym_const] = ACTIONS(2314), - [aux_sym_cmd_identifier_token1] = ACTIONS(2314), - [aux_sym_cmd_identifier_token2] = ACTIONS(2314), - [aux_sym_cmd_identifier_token3] = ACTIONS(2314), - [aux_sym_cmd_identifier_token4] = ACTIONS(2314), - [aux_sym_cmd_identifier_token5] = ACTIONS(2314), - [aux_sym_cmd_identifier_token6] = ACTIONS(2314), - [aux_sym_cmd_identifier_token7] = ACTIONS(2314), - [aux_sym_cmd_identifier_token8] = ACTIONS(2314), - [aux_sym_cmd_identifier_token9] = ACTIONS(2314), - [aux_sym_cmd_identifier_token10] = ACTIONS(2314), - [aux_sym_cmd_identifier_token11] = ACTIONS(2314), - [aux_sym_cmd_identifier_token12] = ACTIONS(2314), - [aux_sym_cmd_identifier_token13] = ACTIONS(2314), - [aux_sym_cmd_identifier_token14] = ACTIONS(2314), - [aux_sym_cmd_identifier_token15] = ACTIONS(2314), - [aux_sym_cmd_identifier_token16] = ACTIONS(2314), - [aux_sym_cmd_identifier_token17] = ACTIONS(2314), - [aux_sym_cmd_identifier_token18] = ACTIONS(2314), - [aux_sym_cmd_identifier_token19] = ACTIONS(2314), - [aux_sym_cmd_identifier_token20] = ACTIONS(2314), - [aux_sym_cmd_identifier_token21] = ACTIONS(2314), - [aux_sym_cmd_identifier_token22] = ACTIONS(2314), - [aux_sym_cmd_identifier_token23] = ACTIONS(2314), - [aux_sym_cmd_identifier_token24] = ACTIONS(2314), - [aux_sym_cmd_identifier_token25] = ACTIONS(2314), - [aux_sym_cmd_identifier_token26] = ACTIONS(2314), - [aux_sym_cmd_identifier_token27] = ACTIONS(2314), - [aux_sym_cmd_identifier_token28] = ACTIONS(2314), - [aux_sym_cmd_identifier_token29] = ACTIONS(2314), - [aux_sym_cmd_identifier_token30] = ACTIONS(2314), - [aux_sym_cmd_identifier_token31] = ACTIONS(2314), - [aux_sym_cmd_identifier_token32] = ACTIONS(2314), - [aux_sym_cmd_identifier_token33] = ACTIONS(2314), - [aux_sym_cmd_identifier_token34] = ACTIONS(2314), - [aux_sym_cmd_identifier_token35] = ACTIONS(2314), - [aux_sym_cmd_identifier_token36] = ACTIONS(2314), - [aux_sym_cmd_identifier_token37] = ACTIONS(2314), - [aux_sym_cmd_identifier_token38] = ACTIONS(2314), - [aux_sym_cmd_identifier_token39] = ACTIONS(2314), - [aux_sym_cmd_identifier_token40] = ACTIONS(2314), - [anon_sym_def] = ACTIONS(2314), - [anon_sym_export_DASHenv] = ACTIONS(2314), - [anon_sym_extern] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2314), - [anon_sym_use] = ACTIONS(2314), - [anon_sym_LPAREN] = ACTIONS(2314), - [anon_sym_DOLLAR] = ACTIONS(2314), - [anon_sym_error] = ACTIONS(2314), - [anon_sym_DASH2] = ACTIONS(2314), - [anon_sym_break] = ACTIONS(2314), - [anon_sym_continue] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(2314), - [anon_sym_in2] = ACTIONS(2314), - [anon_sym_loop] = ACTIONS(2314), - [anon_sym_make] = ACTIONS(2314), - [anon_sym_while] = ACTIONS(2314), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_if] = ACTIONS(2314), - [anon_sym_else] = ACTIONS(2314), - [anon_sym_match] = ACTIONS(2314), - [anon_sym_RBRACE] = ACTIONS(2390), - [anon_sym_try] = ACTIONS(2314), - [anon_sym_catch] = ACTIONS(2314), - [anon_sym_return] = ACTIONS(2314), - [anon_sym_source] = ACTIONS(2314), - [anon_sym_source_DASHenv] = ACTIONS(2314), - [anon_sym_hide] = ACTIONS(2314), - [anon_sym_hide_DASHenv] = ACTIONS(2314), - [anon_sym_overlay] = ACTIONS(2314), - [anon_sym_as] = ACTIONS(2314), - [anon_sym_PLUS2] = ACTIONS(2314), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2314), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2314), - [aux_sym__val_number_decimal_token1] = ACTIONS(2314), - [aux_sym__val_number_decimal_token2] = ACTIONS(2314), - [aux_sym__val_number_decimal_token3] = ACTIONS(2314), - [aux_sym__val_number_decimal_token4] = ACTIONS(2314), - [aux_sym__val_number_token1] = ACTIONS(2314), - [aux_sym__val_number_token2] = ACTIONS(2314), - [aux_sym__val_number_token3] = ACTIONS(2314), - [aux_sym__val_number_token4] = ACTIONS(2314), - [aux_sym__val_number_token5] = ACTIONS(2314), - [aux_sym__val_number_token6] = ACTIONS(2314), - [anon_sym_DQUOTE] = ACTIONS(2314), - [sym__str_single_quotes] = ACTIONS(2314), - [sym__str_back_ticks] = ACTIONS(2314), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2314), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2314), - [sym__entry_separator] = ACTIONS(2210), - [anon_sym_register] = ACTIONS(2314), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2318), + [625] = { + [sym_comment] = STATE(625), + [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(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(2230), + [aux_sym_cmd_identifier_token9] = ACTIONS(2230), + [aux_sym_cmd_identifier_token10] = ACTIONS(2234), + [aux_sym_cmd_identifier_token11] = ACTIONS(2234), + [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(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(2230), + [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(2230), + [aux_sym_cmd_identifier_token39] = ACTIONS(2234), + [aux_sym_cmd_identifier_token40] = ACTIONS(2234), + [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(2234), + [anon_sym_COMMA] = ACTIONS(2234), + [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(2234), + [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_hide] = ACTIONS(2230), + [anon_sym_hide_DASHenv] = ACTIONS(2230), + [anon_sym_overlay] = ACTIONS(2230), + [anon_sym_as] = ACTIONS(2230), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2234), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2234), + [aux_sym__val_number_decimal_token1] = ACTIONS(2230), + [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(2230), + [aux_sym__val_number_token5] = ACTIONS(2230), + [aux_sym__val_number_token6] = ACTIONS(2230), + [anon_sym_LBRACK2] = ACTIONS(2388), + [anon_sym_DQUOTE] = ACTIONS(2234), + [sym__str_single_quotes] = ACTIONS(2234), + [sym__str_back_ticks] = ACTIONS(2234), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2234), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2234), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2234), + [anon_sym_register] = ACTIONS(2230), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2234), }, - [640] = { - [sym_comment] = STATE(640), - [anon_sym_export] = ACTIONS(2392), - [anon_sym_alias] = ACTIONS(2392), - [anon_sym_let] = ACTIONS(2392), - [anon_sym_let_DASHenv] = ACTIONS(2392), - [anon_sym_mut] = ACTIONS(2392), - [anon_sym_const] = ACTIONS(2392), - [aux_sym_cmd_identifier_token1] = ACTIONS(2392), - [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(2392), - [aux_sym_cmd_identifier_token9] = ACTIONS(2392), - [aux_sym_cmd_identifier_token10] = ACTIONS(2392), - [aux_sym_cmd_identifier_token11] = ACTIONS(2392), - [aux_sym_cmd_identifier_token12] = ACTIONS(2392), - [aux_sym_cmd_identifier_token13] = ACTIONS(2392), - [aux_sym_cmd_identifier_token14] = ACTIONS(2392), - [aux_sym_cmd_identifier_token15] = ACTIONS(2392), - [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(2392), - [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(2392), - [aux_sym_cmd_identifier_token39] = ACTIONS(2392), - [aux_sym_cmd_identifier_token40] = ACTIONS(2392), - [anon_sym_def] = ACTIONS(2392), - [anon_sym_export_DASHenv] = ACTIONS(2392), - [anon_sym_extern] = ACTIONS(2392), - [anon_sym_module] = ACTIONS(2392), - [anon_sym_use] = ACTIONS(2392), - [anon_sym_LPAREN] = ACTIONS(2392), - [anon_sym_COMMA] = ACTIONS(2392), - [anon_sym_DOLLAR] = ACTIONS(2392), - [anon_sym_error] = ACTIONS(2392), - [anon_sym_DASH2] = ACTIONS(2392), - [anon_sym_break] = ACTIONS(2392), - [anon_sym_continue] = ACTIONS(2392), - [anon_sym_for] = ACTIONS(2392), - [anon_sym_in2] = ACTIONS(2392), - [anon_sym_loop] = ACTIONS(2392), - [anon_sym_make] = ACTIONS(2392), - [anon_sym_while] = ACTIONS(2392), - [anon_sym_do] = ACTIONS(2392), - [anon_sym_if] = ACTIONS(2392), - [anon_sym_else] = ACTIONS(2392), - [anon_sym_match] = ACTIONS(2392), - [anon_sym_RBRACE] = ACTIONS(2392), - [anon_sym_try] = ACTIONS(2392), - [anon_sym_catch] = ACTIONS(2392), - [anon_sym_return] = ACTIONS(2392), - [anon_sym_source] = ACTIONS(2392), - [anon_sym_source_DASHenv] = ACTIONS(2392), - [anon_sym_hide] = ACTIONS(2392), - [anon_sym_hide_DASHenv] = ACTIONS(2392), - [anon_sym_overlay] = ACTIONS(2392), - [anon_sym_as] = ACTIONS(2392), - [anon_sym_PLUS2] = ACTIONS(2392), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2392), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2392), - [aux_sym__val_number_decimal_token1] = ACTIONS(2392), - [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(2392), - [aux_sym__val_number_token5] = ACTIONS(2392), - [aux_sym__val_number_token6] = ACTIONS(2392), - [anon_sym_DQUOTE] = ACTIONS(2392), - [sym__str_single_quotes] = ACTIONS(2392), - [sym__str_back_ticks] = ACTIONS(2392), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2392), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2392), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2392), - [sym__entry_separator] = ACTIONS(2394), - [anon_sym_register] = ACTIONS(2392), + [626] = { + [sym_comment] = STATE(626), + [anon_sym_export] = ACTIONS(950), + [anon_sym_alias] = ACTIONS(950), + [anon_sym_let] = ACTIONS(950), + [anon_sym_let_DASHenv] = ACTIONS(950), + [anon_sym_mut] = ACTIONS(950), + [anon_sym_const] = ACTIONS(950), + [aux_sym_cmd_identifier_token1] = ACTIONS(950), + [aux_sym_cmd_identifier_token2] = ACTIONS(950), + [aux_sym_cmd_identifier_token3] = ACTIONS(950), + [aux_sym_cmd_identifier_token4] = ACTIONS(950), + [aux_sym_cmd_identifier_token5] = ACTIONS(950), + [aux_sym_cmd_identifier_token6] = ACTIONS(950), + [aux_sym_cmd_identifier_token7] = ACTIONS(950), + [aux_sym_cmd_identifier_token8] = ACTIONS(950), + [aux_sym_cmd_identifier_token9] = ACTIONS(950), + [aux_sym_cmd_identifier_token10] = ACTIONS(950), + [aux_sym_cmd_identifier_token11] = ACTIONS(950), + [aux_sym_cmd_identifier_token12] = ACTIONS(950), + [aux_sym_cmd_identifier_token13] = ACTIONS(950), + [aux_sym_cmd_identifier_token14] = ACTIONS(950), + [aux_sym_cmd_identifier_token15] = ACTIONS(950), + [aux_sym_cmd_identifier_token16] = ACTIONS(950), + [aux_sym_cmd_identifier_token17] = ACTIONS(950), + [aux_sym_cmd_identifier_token18] = ACTIONS(950), + [aux_sym_cmd_identifier_token19] = ACTIONS(950), + [aux_sym_cmd_identifier_token20] = ACTIONS(950), + [aux_sym_cmd_identifier_token21] = ACTIONS(950), + [aux_sym_cmd_identifier_token22] = ACTIONS(950), + [aux_sym_cmd_identifier_token23] = ACTIONS(950), + [aux_sym_cmd_identifier_token24] = ACTIONS(950), + [aux_sym_cmd_identifier_token25] = ACTIONS(950), + [aux_sym_cmd_identifier_token26] = ACTIONS(950), + [aux_sym_cmd_identifier_token27] = ACTIONS(950), + [aux_sym_cmd_identifier_token28] = ACTIONS(950), + [aux_sym_cmd_identifier_token29] = ACTIONS(950), + [aux_sym_cmd_identifier_token30] = ACTIONS(950), + [aux_sym_cmd_identifier_token31] = ACTIONS(950), + [aux_sym_cmd_identifier_token32] = ACTIONS(950), + [aux_sym_cmd_identifier_token33] = ACTIONS(950), + [aux_sym_cmd_identifier_token34] = ACTIONS(950), + [aux_sym_cmd_identifier_token35] = ACTIONS(950), + [aux_sym_cmd_identifier_token36] = ACTIONS(950), + [aux_sym_cmd_identifier_token37] = ACTIONS(950), + [aux_sym_cmd_identifier_token38] = ACTIONS(950), + [aux_sym_cmd_identifier_token39] = ACTIONS(950), + [aux_sym_cmd_identifier_token40] = ACTIONS(950), + [anon_sym_def] = ACTIONS(950), + [anon_sym_export_DASHenv] = ACTIONS(950), + [anon_sym_extern] = ACTIONS(950), + [anon_sym_module] = ACTIONS(950), + [anon_sym_use] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(950), + [anon_sym_COMMA] = ACTIONS(950), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_error] = ACTIONS(950), + [anon_sym_DASH2] = ACTIONS(950), + [anon_sym_break] = ACTIONS(950), + [anon_sym_continue] = ACTIONS(950), + [anon_sym_for] = ACTIONS(950), + [anon_sym_in2] = ACTIONS(950), + [anon_sym_loop] = ACTIONS(950), + [anon_sym_make] = ACTIONS(950), + [anon_sym_while] = ACTIONS(950), + [anon_sym_do] = ACTIONS(950), + [anon_sym_if] = ACTIONS(950), + [anon_sym_else] = ACTIONS(950), + [anon_sym_match] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(950), + [anon_sym_try] = ACTIONS(950), + [anon_sym_catch] = ACTIONS(950), + [anon_sym_return] = ACTIONS(950), + [anon_sym_source] = ACTIONS(950), + [anon_sym_source_DASHenv] = ACTIONS(950), + [anon_sym_hide] = ACTIONS(950), + [anon_sym_hide_DASHenv] = ACTIONS(950), + [anon_sym_overlay] = ACTIONS(950), + [anon_sym_as] = ACTIONS(950), + [anon_sym_PLUS2] = ACTIONS(950), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(950), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(950), + [aux_sym__val_number_decimal_token1] = ACTIONS(950), + [aux_sym__val_number_decimal_token2] = ACTIONS(950), + [aux_sym__val_number_decimal_token3] = ACTIONS(950), + [aux_sym__val_number_decimal_token4] = ACTIONS(950), + [aux_sym__val_number_token1] = ACTIONS(950), + [aux_sym__val_number_token2] = ACTIONS(950), + [aux_sym__val_number_token3] = ACTIONS(950), + [aux_sym__val_number_token4] = ACTIONS(950), + [aux_sym__val_number_token5] = ACTIONS(950), + [aux_sym__val_number_token6] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym__str_single_quotes] = ACTIONS(950), + [sym__str_back_ticks] = ACTIONS(950), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(950), + [sym__entry_separator] = ACTIONS(952), + [anon_sym_register] = ACTIONS(950), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2394), + [sym_raw_string_begin] = ACTIONS(952), }, - [641] = { - [sym_comment] = STATE(641), - [anon_sym_export] = ACTIONS(2290), - [anon_sym_alias] = ACTIONS(2290), - [anon_sym_let] = ACTIONS(2290), - [anon_sym_let_DASHenv] = ACTIONS(2290), - [anon_sym_mut] = ACTIONS(2290), - [anon_sym_const] = ACTIONS(2290), - [aux_sym_cmd_identifier_token1] = ACTIONS(2290), - [aux_sym_cmd_identifier_token2] = ACTIONS(2294), - [aux_sym_cmd_identifier_token3] = ACTIONS(2294), - [aux_sym_cmd_identifier_token4] = ACTIONS(2294), - [aux_sym_cmd_identifier_token5] = ACTIONS(2294), - [aux_sym_cmd_identifier_token6] = ACTIONS(2294), - [aux_sym_cmd_identifier_token7] = ACTIONS(2294), - [aux_sym_cmd_identifier_token8] = ACTIONS(2290), - [aux_sym_cmd_identifier_token9] = ACTIONS(2290), - [aux_sym_cmd_identifier_token10] = ACTIONS(2294), - [aux_sym_cmd_identifier_token11] = ACTIONS(2294), - [aux_sym_cmd_identifier_token12] = ACTIONS(2290), - [aux_sym_cmd_identifier_token13] = ACTIONS(2290), - [aux_sym_cmd_identifier_token14] = ACTIONS(2290), - [aux_sym_cmd_identifier_token15] = ACTIONS(2290), - [aux_sym_cmd_identifier_token16] = ACTIONS(2294), - [aux_sym_cmd_identifier_token17] = ACTIONS(2294), - [aux_sym_cmd_identifier_token18] = ACTIONS(2294), - [aux_sym_cmd_identifier_token19] = ACTIONS(2294), - [aux_sym_cmd_identifier_token20] = ACTIONS(2294), - [aux_sym_cmd_identifier_token21] = ACTIONS(2294), - [aux_sym_cmd_identifier_token22] = ACTIONS(2294), - [aux_sym_cmd_identifier_token23] = ACTIONS(2294), - [aux_sym_cmd_identifier_token24] = ACTIONS(2294), - [aux_sym_cmd_identifier_token25] = ACTIONS(2294), - [aux_sym_cmd_identifier_token26] = ACTIONS(2294), - [aux_sym_cmd_identifier_token27] = ACTIONS(2294), - [aux_sym_cmd_identifier_token28] = ACTIONS(2294), - [aux_sym_cmd_identifier_token29] = ACTIONS(2294), - [aux_sym_cmd_identifier_token30] = ACTIONS(2294), - [aux_sym_cmd_identifier_token31] = ACTIONS(2294), - [aux_sym_cmd_identifier_token32] = ACTIONS(2294), - [aux_sym_cmd_identifier_token33] = ACTIONS(2294), - [aux_sym_cmd_identifier_token34] = ACTIONS(2290), - [aux_sym_cmd_identifier_token35] = ACTIONS(2294), - [aux_sym_cmd_identifier_token36] = ACTIONS(2294), - [aux_sym_cmd_identifier_token37] = ACTIONS(2294), - [aux_sym_cmd_identifier_token38] = ACTIONS(2290), - [aux_sym_cmd_identifier_token39] = ACTIONS(2294), - [aux_sym_cmd_identifier_token40] = ACTIONS(2294), - [anon_sym_def] = ACTIONS(2290), - [anon_sym_export_DASHenv] = ACTIONS(2290), - [anon_sym_extern] = ACTIONS(2290), - [anon_sym_module] = ACTIONS(2290), - [anon_sym_use] = ACTIONS(2290), - [anon_sym_LPAREN] = ACTIONS(2294), - [anon_sym_COMMA] = ACTIONS(2294), - [anon_sym_DOLLAR] = ACTIONS(2290), - [anon_sym_error] = ACTIONS(2290), - [anon_sym_DASH2] = ACTIONS(2290), - [anon_sym_break] = ACTIONS(2290), - [anon_sym_continue] = ACTIONS(2290), - [anon_sym_for] = ACTIONS(2290), - [anon_sym_in2] = ACTIONS(2290), - [anon_sym_loop] = ACTIONS(2290), - [anon_sym_make] = ACTIONS(2290), - [anon_sym_while] = ACTIONS(2290), - [anon_sym_do] = ACTIONS(2290), - [anon_sym_if] = ACTIONS(2290), - [anon_sym_else] = ACTIONS(2290), - [anon_sym_match] = ACTIONS(2290), - [anon_sym_RBRACE] = ACTIONS(2294), - [anon_sym_try] = ACTIONS(2290), - [anon_sym_catch] = ACTIONS(2290), - [anon_sym_return] = ACTIONS(2290), - [anon_sym_source] = ACTIONS(2290), - [anon_sym_source_DASHenv] = ACTIONS(2290), - [anon_sym_hide] = ACTIONS(2290), - [anon_sym_hide_DASHenv] = ACTIONS(2290), - [anon_sym_overlay] = ACTIONS(2290), - [anon_sym_as] = ACTIONS(2290), - [anon_sym_PLUS2] = ACTIONS(2290), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2294), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2294), - [aux_sym__val_number_decimal_token1] = ACTIONS(2290), - [aux_sym__val_number_decimal_token2] = ACTIONS(2294), - [aux_sym__val_number_decimal_token3] = ACTIONS(2294), - [aux_sym__val_number_decimal_token4] = ACTIONS(2294), - [aux_sym__val_number_token1] = ACTIONS(2294), - [aux_sym__val_number_token2] = ACTIONS(2294), - [aux_sym__val_number_token3] = ACTIONS(2294), - [aux_sym__val_number_token4] = ACTIONS(2290), - [aux_sym__val_number_token5] = ACTIONS(2290), - [aux_sym__val_number_token6] = ACTIONS(2290), - [anon_sym_LBRACK2] = ACTIONS(2396), - [anon_sym_DQUOTE] = ACTIONS(2294), - [sym__str_single_quotes] = ACTIONS(2294), - [sym__str_back_ticks] = ACTIONS(2294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2294), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2294), - [anon_sym_register] = ACTIONS(2290), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2294), + [627] = { + [sym_comment] = STATE(627), + [anon_sym_export] = ACTIONS(942), + [anon_sym_alias] = ACTIONS(942), + [anon_sym_let] = ACTIONS(942), + [anon_sym_let_DASHenv] = ACTIONS(942), + [anon_sym_mut] = ACTIONS(942), + [anon_sym_const] = ACTIONS(942), + [aux_sym_cmd_identifier_token1] = ACTIONS(942), + [aux_sym_cmd_identifier_token2] = ACTIONS(942), + [aux_sym_cmd_identifier_token3] = ACTIONS(942), + [aux_sym_cmd_identifier_token4] = ACTIONS(942), + [aux_sym_cmd_identifier_token5] = ACTIONS(942), + [aux_sym_cmd_identifier_token6] = ACTIONS(942), + [aux_sym_cmd_identifier_token7] = ACTIONS(942), + [aux_sym_cmd_identifier_token8] = ACTIONS(942), + [aux_sym_cmd_identifier_token9] = ACTIONS(942), + [aux_sym_cmd_identifier_token10] = ACTIONS(942), + [aux_sym_cmd_identifier_token11] = ACTIONS(942), + [aux_sym_cmd_identifier_token12] = ACTIONS(942), + [aux_sym_cmd_identifier_token13] = ACTIONS(942), + [aux_sym_cmd_identifier_token14] = ACTIONS(942), + [aux_sym_cmd_identifier_token15] = ACTIONS(942), + [aux_sym_cmd_identifier_token16] = ACTIONS(942), + [aux_sym_cmd_identifier_token17] = ACTIONS(942), + [aux_sym_cmd_identifier_token18] = ACTIONS(942), + [aux_sym_cmd_identifier_token19] = ACTIONS(942), + [aux_sym_cmd_identifier_token20] = ACTIONS(942), + [aux_sym_cmd_identifier_token21] = ACTIONS(942), + [aux_sym_cmd_identifier_token22] = ACTIONS(942), + [aux_sym_cmd_identifier_token23] = ACTIONS(942), + [aux_sym_cmd_identifier_token24] = ACTIONS(942), + [aux_sym_cmd_identifier_token25] = ACTIONS(942), + [aux_sym_cmd_identifier_token26] = ACTIONS(942), + [aux_sym_cmd_identifier_token27] = ACTIONS(942), + [aux_sym_cmd_identifier_token28] = ACTIONS(942), + [aux_sym_cmd_identifier_token29] = ACTIONS(942), + [aux_sym_cmd_identifier_token30] = ACTIONS(942), + [aux_sym_cmd_identifier_token31] = ACTIONS(942), + [aux_sym_cmd_identifier_token32] = ACTIONS(942), + [aux_sym_cmd_identifier_token33] = ACTIONS(942), + [aux_sym_cmd_identifier_token34] = ACTIONS(942), + [aux_sym_cmd_identifier_token35] = ACTIONS(942), + [aux_sym_cmd_identifier_token36] = ACTIONS(942), + [aux_sym_cmd_identifier_token37] = ACTIONS(942), + [aux_sym_cmd_identifier_token38] = ACTIONS(942), + [aux_sym_cmd_identifier_token39] = ACTIONS(942), + [aux_sym_cmd_identifier_token40] = ACTIONS(942), + [anon_sym_def] = ACTIONS(942), + [anon_sym_export_DASHenv] = ACTIONS(942), + [anon_sym_extern] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_use] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_COMMA] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_error] = ACTIONS(942), + [anon_sym_DASH2] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_in2] = ACTIONS(942), + [anon_sym_loop] = ACTIONS(942), + [anon_sym_make] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_do] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_else] = ACTIONS(942), + [anon_sym_match] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(942), + [anon_sym_try] = ACTIONS(942), + [anon_sym_catch] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_source] = ACTIONS(942), + [anon_sym_source_DASHenv] = ACTIONS(942), + [anon_sym_hide] = ACTIONS(942), + [anon_sym_hide_DASHenv] = ACTIONS(942), + [anon_sym_overlay] = ACTIONS(942), + [anon_sym_as] = ACTIONS(942), + [anon_sym_PLUS2] = ACTIONS(942), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(942), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(942), + [aux_sym__val_number_decimal_token1] = ACTIONS(942), + [aux_sym__val_number_decimal_token2] = ACTIONS(942), + [aux_sym__val_number_decimal_token3] = ACTIONS(942), + [aux_sym__val_number_decimal_token4] = ACTIONS(942), + [aux_sym__val_number_token1] = ACTIONS(942), + [aux_sym__val_number_token2] = ACTIONS(942), + [aux_sym__val_number_token3] = ACTIONS(942), + [aux_sym__val_number_token4] = ACTIONS(942), + [aux_sym__val_number_token5] = ACTIONS(942), + [aux_sym__val_number_token6] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(942), + [sym__str_single_quotes] = ACTIONS(942), + [sym__str_back_ticks] = ACTIONS(942), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(942), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(942), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(942), + [sym__entry_separator] = ACTIONS(944), + [anon_sym_register] = ACTIONS(942), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(944), }, - [642] = { - [sym_comment] = STATE(642), - [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1927), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1927), - [sym__entry_separator] = ACTIONS(1929), - [anon_sym_register] = ACTIONS(1927), + [628] = { + [sym_comment] = STATE(628), + [anon_sym_export] = ACTIONS(954), + [anon_sym_alias] = ACTIONS(954), + [anon_sym_let] = ACTIONS(954), + [anon_sym_let_DASHenv] = ACTIONS(954), + [anon_sym_mut] = ACTIONS(954), + [anon_sym_const] = ACTIONS(954), + [aux_sym_cmd_identifier_token1] = ACTIONS(954), + [aux_sym_cmd_identifier_token2] = ACTIONS(954), + [aux_sym_cmd_identifier_token3] = ACTIONS(954), + [aux_sym_cmd_identifier_token4] = ACTIONS(954), + [aux_sym_cmd_identifier_token5] = ACTIONS(954), + [aux_sym_cmd_identifier_token6] = ACTIONS(954), + [aux_sym_cmd_identifier_token7] = ACTIONS(954), + [aux_sym_cmd_identifier_token8] = ACTIONS(954), + [aux_sym_cmd_identifier_token9] = ACTIONS(954), + [aux_sym_cmd_identifier_token10] = ACTIONS(954), + [aux_sym_cmd_identifier_token11] = ACTIONS(954), + [aux_sym_cmd_identifier_token12] = ACTIONS(954), + [aux_sym_cmd_identifier_token13] = ACTIONS(954), + [aux_sym_cmd_identifier_token14] = ACTIONS(954), + [aux_sym_cmd_identifier_token15] = ACTIONS(954), + [aux_sym_cmd_identifier_token16] = ACTIONS(954), + [aux_sym_cmd_identifier_token17] = ACTIONS(954), + [aux_sym_cmd_identifier_token18] = ACTIONS(954), + [aux_sym_cmd_identifier_token19] = ACTIONS(954), + [aux_sym_cmd_identifier_token20] = ACTIONS(954), + [aux_sym_cmd_identifier_token21] = ACTIONS(954), + [aux_sym_cmd_identifier_token22] = ACTIONS(954), + [aux_sym_cmd_identifier_token23] = ACTIONS(954), + [aux_sym_cmd_identifier_token24] = ACTIONS(954), + [aux_sym_cmd_identifier_token25] = ACTIONS(954), + [aux_sym_cmd_identifier_token26] = ACTIONS(954), + [aux_sym_cmd_identifier_token27] = ACTIONS(954), + [aux_sym_cmd_identifier_token28] = ACTIONS(954), + [aux_sym_cmd_identifier_token29] = ACTIONS(954), + [aux_sym_cmd_identifier_token30] = ACTIONS(954), + [aux_sym_cmd_identifier_token31] = ACTIONS(954), + [aux_sym_cmd_identifier_token32] = ACTIONS(954), + [aux_sym_cmd_identifier_token33] = ACTIONS(954), + [aux_sym_cmd_identifier_token34] = ACTIONS(954), + [aux_sym_cmd_identifier_token35] = ACTIONS(954), + [aux_sym_cmd_identifier_token36] = ACTIONS(954), + [aux_sym_cmd_identifier_token37] = ACTIONS(954), + [aux_sym_cmd_identifier_token38] = ACTIONS(954), + [aux_sym_cmd_identifier_token39] = ACTIONS(954), + [aux_sym_cmd_identifier_token40] = ACTIONS(954), + [anon_sym_def] = ACTIONS(954), + [anon_sym_export_DASHenv] = ACTIONS(954), + [anon_sym_extern] = ACTIONS(954), + [anon_sym_module] = ACTIONS(954), + [anon_sym_use] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_COMMA] = ACTIONS(954), + [anon_sym_DOLLAR] = ACTIONS(954), + [anon_sym_error] = ACTIONS(954), + [anon_sym_DASH2] = ACTIONS(954), + [anon_sym_break] = ACTIONS(954), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_for] = ACTIONS(954), + [anon_sym_in2] = ACTIONS(954), + [anon_sym_loop] = ACTIONS(954), + [anon_sym_make] = ACTIONS(954), + [anon_sym_while] = ACTIONS(954), + [anon_sym_do] = ACTIONS(954), + [anon_sym_if] = ACTIONS(954), + [anon_sym_else] = ACTIONS(954), + [anon_sym_match] = ACTIONS(954), + [anon_sym_RBRACE] = ACTIONS(954), + [anon_sym_try] = ACTIONS(954), + [anon_sym_catch] = ACTIONS(954), + [anon_sym_return] = ACTIONS(954), + [anon_sym_source] = ACTIONS(954), + [anon_sym_source_DASHenv] = ACTIONS(954), + [anon_sym_hide] = ACTIONS(954), + [anon_sym_hide_DASHenv] = ACTIONS(954), + [anon_sym_overlay] = ACTIONS(954), + [anon_sym_as] = ACTIONS(954), + [anon_sym_PLUS2] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(954), + [aux_sym__val_number_decimal_token1] = ACTIONS(954), + [aux_sym__val_number_decimal_token2] = ACTIONS(954), + [aux_sym__val_number_decimal_token3] = ACTIONS(954), + [aux_sym__val_number_decimal_token4] = ACTIONS(954), + [aux_sym__val_number_token1] = ACTIONS(954), + [aux_sym__val_number_token2] = ACTIONS(954), + [aux_sym__val_number_token3] = ACTIONS(954), + [aux_sym__val_number_token4] = ACTIONS(954), + [aux_sym__val_number_token5] = ACTIONS(954), + [aux_sym__val_number_token6] = ACTIONS(954), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym__str_single_quotes] = ACTIONS(954), + [sym__str_back_ticks] = ACTIONS(954), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(954), + [sym__entry_separator] = ACTIONS(956), + [anon_sym_register] = ACTIONS(954), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1929), + [sym_raw_string_begin] = ACTIONS(956), }, - [643] = { - [sym_comment] = STATE(643), - [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(2398), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2398), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2398), - [sym__entry_separator] = ACTIONS(2400), - [anon_sym_register] = ACTIONS(2398), + [629] = { + [sym_comment] = STATE(629), + [anon_sym_export] = ACTIONS(946), + [anon_sym_alias] = ACTIONS(946), + [anon_sym_let] = ACTIONS(946), + [anon_sym_let_DASHenv] = ACTIONS(946), + [anon_sym_mut] = ACTIONS(946), + [anon_sym_const] = ACTIONS(946), + [aux_sym_cmd_identifier_token1] = ACTIONS(946), + [aux_sym_cmd_identifier_token2] = ACTIONS(946), + [aux_sym_cmd_identifier_token3] = ACTIONS(946), + [aux_sym_cmd_identifier_token4] = ACTIONS(946), + [aux_sym_cmd_identifier_token5] = ACTIONS(946), + [aux_sym_cmd_identifier_token6] = ACTIONS(946), + [aux_sym_cmd_identifier_token7] = ACTIONS(946), + [aux_sym_cmd_identifier_token8] = ACTIONS(946), + [aux_sym_cmd_identifier_token9] = ACTIONS(946), + [aux_sym_cmd_identifier_token10] = ACTIONS(946), + [aux_sym_cmd_identifier_token11] = ACTIONS(946), + [aux_sym_cmd_identifier_token12] = ACTIONS(946), + [aux_sym_cmd_identifier_token13] = ACTIONS(946), + [aux_sym_cmd_identifier_token14] = ACTIONS(946), + [aux_sym_cmd_identifier_token15] = ACTIONS(946), + [aux_sym_cmd_identifier_token16] = ACTIONS(946), + [aux_sym_cmd_identifier_token17] = ACTIONS(946), + [aux_sym_cmd_identifier_token18] = ACTIONS(946), + [aux_sym_cmd_identifier_token19] = ACTIONS(946), + [aux_sym_cmd_identifier_token20] = ACTIONS(946), + [aux_sym_cmd_identifier_token21] = ACTIONS(946), + [aux_sym_cmd_identifier_token22] = ACTIONS(946), + [aux_sym_cmd_identifier_token23] = ACTIONS(946), + [aux_sym_cmd_identifier_token24] = ACTIONS(946), + [aux_sym_cmd_identifier_token25] = ACTIONS(946), + [aux_sym_cmd_identifier_token26] = ACTIONS(946), + [aux_sym_cmd_identifier_token27] = ACTIONS(946), + [aux_sym_cmd_identifier_token28] = ACTIONS(946), + [aux_sym_cmd_identifier_token29] = ACTIONS(946), + [aux_sym_cmd_identifier_token30] = ACTIONS(946), + [aux_sym_cmd_identifier_token31] = ACTIONS(946), + [aux_sym_cmd_identifier_token32] = ACTIONS(946), + [aux_sym_cmd_identifier_token33] = ACTIONS(946), + [aux_sym_cmd_identifier_token34] = ACTIONS(946), + [aux_sym_cmd_identifier_token35] = ACTIONS(946), + [aux_sym_cmd_identifier_token36] = ACTIONS(946), + [aux_sym_cmd_identifier_token37] = ACTIONS(946), + [aux_sym_cmd_identifier_token38] = ACTIONS(946), + [aux_sym_cmd_identifier_token39] = ACTIONS(946), + [aux_sym_cmd_identifier_token40] = ACTIONS(946), + [anon_sym_def] = ACTIONS(946), + [anon_sym_export_DASHenv] = ACTIONS(946), + [anon_sym_extern] = ACTIONS(946), + [anon_sym_module] = ACTIONS(946), + [anon_sym_use] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(946), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_error] = ACTIONS(946), + [anon_sym_DASH2] = ACTIONS(946), + [anon_sym_break] = ACTIONS(946), + [anon_sym_continue] = ACTIONS(946), + [anon_sym_for] = ACTIONS(946), + [anon_sym_in2] = ACTIONS(946), + [anon_sym_loop] = ACTIONS(946), + [anon_sym_make] = ACTIONS(946), + [anon_sym_while] = ACTIONS(946), + [anon_sym_do] = ACTIONS(946), + [anon_sym_if] = ACTIONS(946), + [anon_sym_else] = ACTIONS(946), + [anon_sym_match] = ACTIONS(946), + [anon_sym_RBRACE] = ACTIONS(946), + [anon_sym_try] = ACTIONS(946), + [anon_sym_catch] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_source] = ACTIONS(946), + [anon_sym_source_DASHenv] = ACTIONS(946), + [anon_sym_hide] = ACTIONS(946), + [anon_sym_hide_DASHenv] = ACTIONS(946), + [anon_sym_overlay] = ACTIONS(946), + [anon_sym_as] = ACTIONS(946), + [anon_sym_PLUS2] = ACTIONS(946), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(946), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(946), + [aux_sym__val_number_decimal_token1] = ACTIONS(946), + [aux_sym__val_number_decimal_token2] = ACTIONS(946), + [aux_sym__val_number_decimal_token3] = ACTIONS(946), + [aux_sym__val_number_decimal_token4] = ACTIONS(946), + [aux_sym__val_number_token1] = ACTIONS(946), + [aux_sym__val_number_token2] = ACTIONS(946), + [aux_sym__val_number_token3] = ACTIONS(946), + [aux_sym__val_number_token4] = ACTIONS(946), + [aux_sym__val_number_token5] = ACTIONS(946), + [aux_sym__val_number_token6] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(946), + [sym__str_single_quotes] = ACTIONS(946), + [sym__str_back_ticks] = ACTIONS(946), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(946), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(946), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(946), + [sym__entry_separator] = ACTIONS(948), + [anon_sym_register] = ACTIONS(946), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2400), + [sym_raw_string_begin] = ACTIONS(948), }, - [644] = { - [sym_comment] = STATE(644), - [anon_sym_export] = ACTIONS(1579), - [anon_sym_alias] = ACTIONS(1579), - [anon_sym_let] = ACTIONS(1579), - [anon_sym_let_DASHenv] = ACTIONS(1579), - [anon_sym_mut] = ACTIONS(1579), - [anon_sym_const] = ACTIONS(1579), - [aux_sym_cmd_identifier_token1] = ACTIONS(1579), - [aux_sym_cmd_identifier_token2] = ACTIONS(1579), - [aux_sym_cmd_identifier_token3] = ACTIONS(1579), - [aux_sym_cmd_identifier_token4] = ACTIONS(1579), - [aux_sym_cmd_identifier_token5] = ACTIONS(1579), - [aux_sym_cmd_identifier_token6] = ACTIONS(1579), - [aux_sym_cmd_identifier_token7] = ACTIONS(1579), - [aux_sym_cmd_identifier_token8] = ACTIONS(1579), - [aux_sym_cmd_identifier_token9] = ACTIONS(1579), - [aux_sym_cmd_identifier_token10] = ACTIONS(1579), - [aux_sym_cmd_identifier_token11] = ACTIONS(1579), - [aux_sym_cmd_identifier_token12] = ACTIONS(1579), - [aux_sym_cmd_identifier_token13] = ACTIONS(1579), - [aux_sym_cmd_identifier_token14] = ACTIONS(1579), - [aux_sym_cmd_identifier_token15] = ACTIONS(1579), - [aux_sym_cmd_identifier_token16] = ACTIONS(1579), - [aux_sym_cmd_identifier_token17] = ACTIONS(1579), - [aux_sym_cmd_identifier_token18] = ACTIONS(1579), - [aux_sym_cmd_identifier_token19] = ACTIONS(1579), - [aux_sym_cmd_identifier_token20] = ACTIONS(1579), - [aux_sym_cmd_identifier_token21] = ACTIONS(1579), - [aux_sym_cmd_identifier_token22] = ACTIONS(1579), - [aux_sym_cmd_identifier_token23] = ACTIONS(1579), - [aux_sym_cmd_identifier_token24] = ACTIONS(1579), - [aux_sym_cmd_identifier_token25] = ACTIONS(1579), - [aux_sym_cmd_identifier_token26] = ACTIONS(1579), - [aux_sym_cmd_identifier_token27] = ACTIONS(1579), - [aux_sym_cmd_identifier_token28] = ACTIONS(1579), - [aux_sym_cmd_identifier_token29] = ACTIONS(1579), - [aux_sym_cmd_identifier_token30] = ACTIONS(1579), - [aux_sym_cmd_identifier_token31] = ACTIONS(1579), - [aux_sym_cmd_identifier_token32] = ACTIONS(1579), - [aux_sym_cmd_identifier_token33] = ACTIONS(1579), - [aux_sym_cmd_identifier_token34] = ACTIONS(1579), - [aux_sym_cmd_identifier_token35] = ACTIONS(1579), - [aux_sym_cmd_identifier_token36] = ACTIONS(1579), - [aux_sym_cmd_identifier_token37] = ACTIONS(1579), - [aux_sym_cmd_identifier_token38] = ACTIONS(1579), - [aux_sym_cmd_identifier_token39] = ACTIONS(1579), - [aux_sym_cmd_identifier_token40] = ACTIONS(1579), - [anon_sym_def] = ACTIONS(1579), - [anon_sym_export_DASHenv] = ACTIONS(1579), - [anon_sym_extern] = ACTIONS(1579), - [anon_sym_module] = ACTIONS(1579), - [anon_sym_use] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1579), - [anon_sym_COMMA] = ACTIONS(1579), - [anon_sym_DOLLAR] = ACTIONS(1579), - [anon_sym_error] = ACTIONS(1579), - [anon_sym_DASH2] = ACTIONS(1579), - [anon_sym_break] = ACTIONS(1579), - [anon_sym_continue] = ACTIONS(1579), - [anon_sym_for] = ACTIONS(1579), - [anon_sym_in2] = ACTIONS(1579), - [anon_sym_loop] = ACTIONS(1579), - [anon_sym_make] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1579), - [anon_sym_if] = ACTIONS(1579), - [anon_sym_else] = ACTIONS(1579), - [anon_sym_match] = ACTIONS(1579), - [anon_sym_RBRACE] = ACTIONS(1579), - [anon_sym_try] = ACTIONS(1579), - [anon_sym_catch] = ACTIONS(1579), - [anon_sym_return] = ACTIONS(1579), - [anon_sym_source] = ACTIONS(1579), - [anon_sym_source_DASHenv] = ACTIONS(1579), - [anon_sym_hide] = ACTIONS(1579), - [anon_sym_hide_DASHenv] = ACTIONS(1579), - [anon_sym_overlay] = ACTIONS(1579), - [anon_sym_as] = ACTIONS(1579), - [anon_sym_PLUS2] = ACTIONS(1579), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1579), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1579), - [aux_sym__val_number_decimal_token1] = ACTIONS(1579), - [aux_sym__val_number_decimal_token2] = ACTIONS(1579), - [aux_sym__val_number_decimal_token3] = ACTIONS(1579), - [aux_sym__val_number_decimal_token4] = ACTIONS(1579), - [aux_sym__val_number_token1] = ACTIONS(1579), - [aux_sym__val_number_token2] = ACTIONS(1579), - [aux_sym__val_number_token3] = ACTIONS(1579), - [aux_sym__val_number_token4] = ACTIONS(1579), - [aux_sym__val_number_token5] = ACTIONS(1579), - [aux_sym__val_number_token6] = ACTIONS(1579), - [anon_sym_DQUOTE] = ACTIONS(1579), - [sym__str_single_quotes] = ACTIONS(1579), - [sym__str_back_ticks] = ACTIONS(1579), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1579), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1579), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1579), - [sym__entry_separator] = ACTIONS(1591), - [anon_sym_register] = ACTIONS(1579), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1591), - }, - [645] = { - [sym_comment] = STATE(645), - [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(2402), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2402), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2402), - [sym__entry_separator] = ACTIONS(2404), - [anon_sym_register] = ACTIONS(2402), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2404), - }, - [646] = { - [sym_comment] = STATE(646), - [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(2406), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2406), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2406), - [sym__entry_separator] = ACTIONS(2408), - [anon_sym_register] = ACTIONS(2406), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2408), - }, - [647] = { - [sym_comment] = STATE(647), - [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(2410), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2410), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2410), - [sym__entry_separator] = ACTIONS(2412), - [anon_sym_register] = ACTIONS(2410), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2412), - }, - [648] = { - [sym_comment] = STATE(648), - [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(2414), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2414), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2414), - [sym__entry_separator] = ACTIONS(2416), - [anon_sym_register] = ACTIONS(2414), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2416), - }, - [649] = { - [sym_comment] = STATE(649), - [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(2418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2418), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2418), - [sym__entry_separator] = ACTIONS(2420), - [anon_sym_register] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2420), - }, - [650] = { - [sym_comment] = STATE(650), - [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(2422), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2422), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2422), - [sym__entry_separator] = ACTIONS(2424), - [anon_sym_register] = ACTIONS(2422), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2424), - }, - [651] = { - [sym_comment] = STATE(651), - [anon_sym_export] = ACTIONS(1851), - [anon_sym_alias] = ACTIONS(1851), - [anon_sym_let] = ACTIONS(1851), - [anon_sym_let_DASHenv] = ACTIONS(1851), - [anon_sym_mut] = ACTIONS(1851), - [anon_sym_const] = ACTIONS(1851), - [aux_sym_cmd_identifier_token1] = ACTIONS(1851), - [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(1851), - [aux_sym_cmd_identifier_token9] = ACTIONS(1851), - [aux_sym_cmd_identifier_token10] = ACTIONS(1851), - [aux_sym_cmd_identifier_token11] = ACTIONS(1851), - [aux_sym_cmd_identifier_token12] = ACTIONS(1851), - [aux_sym_cmd_identifier_token13] = ACTIONS(1851), - [aux_sym_cmd_identifier_token14] = ACTIONS(1851), - [aux_sym_cmd_identifier_token15] = ACTIONS(1851), - [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(1851), - [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(1851), - [aux_sym_cmd_identifier_token39] = ACTIONS(1851), - [aux_sym_cmd_identifier_token40] = ACTIONS(1851), - [anon_sym_def] = ACTIONS(1851), - [anon_sym_export_DASHenv] = ACTIONS(1851), - [anon_sym_extern] = ACTIONS(1851), - [anon_sym_module] = ACTIONS(1851), - [anon_sym_use] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_COMMA] = ACTIONS(1851), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_error] = ACTIONS(1851), - [anon_sym_DASH2] = ACTIONS(1851), - [anon_sym_break] = ACTIONS(1851), - [anon_sym_continue] = ACTIONS(1851), - [anon_sym_for] = ACTIONS(1851), - [anon_sym_in2] = ACTIONS(1851), - [anon_sym_loop] = ACTIONS(1851), - [anon_sym_make] = ACTIONS(1851), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_else] = ACTIONS(1851), - [anon_sym_match] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_try] = ACTIONS(1851), - [anon_sym_catch] = ACTIONS(1851), - [anon_sym_return] = ACTIONS(1851), - [anon_sym_source] = ACTIONS(1851), - [anon_sym_source_DASHenv] = ACTIONS(1851), - [anon_sym_hide] = ACTIONS(1851), - [anon_sym_hide_DASHenv] = ACTIONS(1851), - [anon_sym_overlay] = ACTIONS(1851), - [anon_sym_as] = ACTIONS(1851), - [anon_sym_PLUS2] = ACTIONS(1851), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1851), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1851), - [aux_sym__val_number_decimal_token1] = ACTIONS(1851), - [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_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_DOT_DOT_DOT_LBRACE] = ACTIONS(1851), - [sym__entry_separator] = ACTIONS(1853), - [anon_sym_register] = ACTIONS(1851), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1853), - }, - [652] = { - [sym_comment] = STATE(652), - [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(2426), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2426), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2426), - [sym__entry_separator] = ACTIONS(2428), - [anon_sym_register] = ACTIONS(2426), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2428), - }, - [653] = { - [sym_comment] = STATE(653), - [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(2430), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2430), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2430), - [sym__entry_separator] = ACTIONS(2432), - [anon_sym_register] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2432), - }, - [654] = { - [sym_comment] = STATE(654), - [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_COMMA] = 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_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_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_DOLLAR_SQUOTE] = ACTIONS(1879), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1879), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1879), - [sym__entry_separator] = ACTIONS(1881), - [anon_sym_register] = ACTIONS(1879), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1881), - }, - [655] = { - [sym_comment] = STATE(655), - [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(1913), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1913), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1913), - [sym__entry_separator] = ACTIONS(1915), - [anon_sym_register] = ACTIONS(1913), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1915), - }, - [656] = { - [sym_comment] = STATE(656), - [anon_sym_export] = ACTIONS(1945), - [anon_sym_alias] = ACTIONS(1945), - [anon_sym_let] = ACTIONS(1945), - [anon_sym_let_DASHenv] = ACTIONS(1945), - [anon_sym_mut] = ACTIONS(1945), - [anon_sym_const] = ACTIONS(1945), - [aux_sym_cmd_identifier_token1] = ACTIONS(1945), - [aux_sym_cmd_identifier_token2] = ACTIONS(1945), - [aux_sym_cmd_identifier_token3] = ACTIONS(1945), - [aux_sym_cmd_identifier_token4] = ACTIONS(1945), - [aux_sym_cmd_identifier_token5] = ACTIONS(1945), - [aux_sym_cmd_identifier_token6] = ACTIONS(1945), - [aux_sym_cmd_identifier_token7] = ACTIONS(1945), - [aux_sym_cmd_identifier_token8] = ACTIONS(1945), - [aux_sym_cmd_identifier_token9] = ACTIONS(1945), - [aux_sym_cmd_identifier_token10] = ACTIONS(1945), - [aux_sym_cmd_identifier_token11] = ACTIONS(1945), - [aux_sym_cmd_identifier_token12] = ACTIONS(1945), - [aux_sym_cmd_identifier_token13] = ACTIONS(1945), - [aux_sym_cmd_identifier_token14] = ACTIONS(1945), - [aux_sym_cmd_identifier_token15] = ACTIONS(1945), - [aux_sym_cmd_identifier_token16] = ACTIONS(1945), - [aux_sym_cmd_identifier_token17] = ACTIONS(1945), - [aux_sym_cmd_identifier_token18] = ACTIONS(1945), - [aux_sym_cmd_identifier_token19] = ACTIONS(1945), - [aux_sym_cmd_identifier_token20] = ACTIONS(1945), - [aux_sym_cmd_identifier_token21] = ACTIONS(1945), - [aux_sym_cmd_identifier_token22] = ACTIONS(1945), - [aux_sym_cmd_identifier_token23] = ACTIONS(1945), - [aux_sym_cmd_identifier_token24] = ACTIONS(1945), - [aux_sym_cmd_identifier_token25] = ACTIONS(1945), - [aux_sym_cmd_identifier_token26] = ACTIONS(1945), - [aux_sym_cmd_identifier_token27] = ACTIONS(1945), - [aux_sym_cmd_identifier_token28] = ACTIONS(1945), - [aux_sym_cmd_identifier_token29] = ACTIONS(1945), - [aux_sym_cmd_identifier_token30] = ACTIONS(1945), - [aux_sym_cmd_identifier_token31] = ACTIONS(1945), - [aux_sym_cmd_identifier_token32] = ACTIONS(1945), - [aux_sym_cmd_identifier_token33] = ACTIONS(1945), - [aux_sym_cmd_identifier_token34] = ACTIONS(1945), - [aux_sym_cmd_identifier_token35] = ACTIONS(1945), - [aux_sym_cmd_identifier_token36] = ACTIONS(1945), - [aux_sym_cmd_identifier_token37] = ACTIONS(1945), - [aux_sym_cmd_identifier_token38] = ACTIONS(1945), - [aux_sym_cmd_identifier_token39] = ACTIONS(1945), - [aux_sym_cmd_identifier_token40] = ACTIONS(1945), - [anon_sym_def] = ACTIONS(1945), - [anon_sym_export_DASHenv] = ACTIONS(1945), - [anon_sym_extern] = ACTIONS(1945), - [anon_sym_module] = ACTIONS(1945), - [anon_sym_use] = ACTIONS(1945), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_COMMA] = ACTIONS(1945), - [anon_sym_DOLLAR] = ACTIONS(1945), - [anon_sym_error] = ACTIONS(1945), - [anon_sym_DASH2] = ACTIONS(1945), - [anon_sym_break] = ACTIONS(1945), - [anon_sym_continue] = ACTIONS(1945), - [anon_sym_for] = ACTIONS(1945), - [anon_sym_in2] = ACTIONS(1945), - [anon_sym_loop] = ACTIONS(1945), - [anon_sym_make] = ACTIONS(1945), - [anon_sym_while] = ACTIONS(1945), - [anon_sym_do] = ACTIONS(1945), - [anon_sym_if] = ACTIONS(1945), - [anon_sym_else] = ACTIONS(1945), - [anon_sym_match] = ACTIONS(1945), - [anon_sym_RBRACE] = ACTIONS(1945), - [anon_sym_try] = ACTIONS(1945), - [anon_sym_catch] = ACTIONS(1945), - [anon_sym_return] = ACTIONS(1945), - [anon_sym_source] = ACTIONS(1945), - [anon_sym_source_DASHenv] = ACTIONS(1945), - [anon_sym_hide] = ACTIONS(1945), - [anon_sym_hide_DASHenv] = ACTIONS(1945), - [anon_sym_overlay] = ACTIONS(1945), - [anon_sym_as] = ACTIONS(1945), - [anon_sym_PLUS2] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1945), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1945), - [aux_sym__val_number_decimal_token4] = ACTIONS(1945), - [aux_sym__val_number_token1] = ACTIONS(1945), - [aux_sym__val_number_token2] = ACTIONS(1945), - [aux_sym__val_number_token3] = ACTIONS(1945), - [aux_sym__val_number_token4] = ACTIONS(1945), - [aux_sym__val_number_token5] = ACTIONS(1945), - [aux_sym__val_number_token6] = ACTIONS(1945), - [anon_sym_DQUOTE] = ACTIONS(1945), - [sym__str_single_quotes] = ACTIONS(1945), - [sym__str_back_ticks] = ACTIONS(1945), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1945), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1945), - [sym__entry_separator] = ACTIONS(1947), - [anon_sym_register] = ACTIONS(1945), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1947), - }, - [657] = { - [sym_comment] = STATE(657), - [aux_sym__multiple_types_repeat1] = STATE(657), - [anon_sym_export] = ACTIONS(2434), - [anon_sym_alias] = ACTIONS(2434), - [anon_sym_let] = ACTIONS(2434), - [anon_sym_let_DASHenv] = ACTIONS(2434), - [anon_sym_mut] = ACTIONS(2434), - [anon_sym_const] = ACTIONS(2434), - [aux_sym_cmd_identifier_token1] = ACTIONS(2434), - [aux_sym_cmd_identifier_token2] = ACTIONS(2434), - [aux_sym_cmd_identifier_token3] = ACTIONS(2434), - [aux_sym_cmd_identifier_token4] = ACTIONS(2434), - [aux_sym_cmd_identifier_token5] = ACTIONS(2434), - [aux_sym_cmd_identifier_token6] = ACTIONS(2434), - [aux_sym_cmd_identifier_token7] = ACTIONS(2434), - [aux_sym_cmd_identifier_token8] = ACTIONS(2434), - [aux_sym_cmd_identifier_token9] = ACTIONS(2434), - [aux_sym_cmd_identifier_token10] = ACTIONS(2434), - [aux_sym_cmd_identifier_token11] = ACTIONS(2434), - [aux_sym_cmd_identifier_token12] = ACTIONS(2434), - [aux_sym_cmd_identifier_token13] = ACTIONS(2434), - [aux_sym_cmd_identifier_token14] = ACTIONS(2434), - [aux_sym_cmd_identifier_token15] = ACTIONS(2434), - [aux_sym_cmd_identifier_token16] = ACTIONS(2434), - [aux_sym_cmd_identifier_token17] = ACTIONS(2434), - [aux_sym_cmd_identifier_token18] = ACTIONS(2434), - [aux_sym_cmd_identifier_token19] = ACTIONS(2434), - [aux_sym_cmd_identifier_token20] = ACTIONS(2434), - [aux_sym_cmd_identifier_token21] = ACTIONS(2434), - [aux_sym_cmd_identifier_token22] = ACTIONS(2434), - [aux_sym_cmd_identifier_token23] = ACTIONS(2434), - [aux_sym_cmd_identifier_token24] = ACTIONS(2434), - [aux_sym_cmd_identifier_token25] = ACTIONS(2434), - [aux_sym_cmd_identifier_token26] = ACTIONS(2434), - [aux_sym_cmd_identifier_token27] = ACTIONS(2434), - [aux_sym_cmd_identifier_token28] = ACTIONS(2434), - [aux_sym_cmd_identifier_token29] = ACTIONS(2434), - [aux_sym_cmd_identifier_token30] = ACTIONS(2434), - [aux_sym_cmd_identifier_token31] = ACTIONS(2434), - [aux_sym_cmd_identifier_token32] = ACTIONS(2434), - [aux_sym_cmd_identifier_token33] = ACTIONS(2434), - [aux_sym_cmd_identifier_token34] = ACTIONS(2434), - [aux_sym_cmd_identifier_token35] = ACTIONS(2434), - [aux_sym_cmd_identifier_token36] = ACTIONS(2434), - [aux_sym_cmd_identifier_token37] = ACTIONS(2434), - [aux_sym_cmd_identifier_token38] = ACTIONS(2434), - [aux_sym_cmd_identifier_token39] = ACTIONS(2434), - [aux_sym_cmd_identifier_token40] = ACTIONS(2434), - [anon_sym_def] = ACTIONS(2434), - [anon_sym_export_DASHenv] = ACTIONS(2434), - [anon_sym_extern] = ACTIONS(2434), - [anon_sym_module] = ACTIONS(2434), - [anon_sym_use] = ACTIONS(2434), - [anon_sym_LPAREN] = ACTIONS(2434), - [anon_sym_DOLLAR] = ACTIONS(2434), - [anon_sym_error] = ACTIONS(2434), - [anon_sym_DASH2] = ACTIONS(2434), - [anon_sym_break] = ACTIONS(2434), - [anon_sym_continue] = ACTIONS(2434), - [anon_sym_for] = ACTIONS(2434), - [anon_sym_in2] = ACTIONS(2434), - [anon_sym_loop] = ACTIONS(2434), - [anon_sym_make] = ACTIONS(2434), - [anon_sym_while] = ACTIONS(2434), - [anon_sym_do] = ACTIONS(2434), - [anon_sym_if] = ACTIONS(2434), - [anon_sym_else] = ACTIONS(2434), - [anon_sym_match] = ACTIONS(2434), - [anon_sym_RBRACE] = ACTIONS(2434), - [anon_sym_try] = ACTIONS(2434), - [anon_sym_catch] = ACTIONS(2434), - [anon_sym_return] = ACTIONS(2434), - [anon_sym_source] = ACTIONS(2434), - [anon_sym_source_DASHenv] = ACTIONS(2434), - [anon_sym_hide] = ACTIONS(2434), - [anon_sym_hide_DASHenv] = ACTIONS(2434), - [anon_sym_overlay] = ACTIONS(2434), - [anon_sym_as] = ACTIONS(2434), - [anon_sym_PLUS2] = ACTIONS(2434), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2434), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2434), - [aux_sym__val_number_decimal_token1] = ACTIONS(2434), - [aux_sym__val_number_decimal_token2] = ACTIONS(2434), - [aux_sym__val_number_decimal_token3] = ACTIONS(2434), - [aux_sym__val_number_decimal_token4] = ACTIONS(2434), - [aux_sym__val_number_token1] = ACTIONS(2434), - [aux_sym__val_number_token2] = ACTIONS(2434), - [aux_sym__val_number_token3] = ACTIONS(2434), - [aux_sym__val_number_token4] = ACTIONS(2434), - [aux_sym__val_number_token5] = ACTIONS(2434), - [aux_sym__val_number_token6] = ACTIONS(2434), - [anon_sym_DQUOTE] = ACTIONS(2434), - [sym__str_single_quotes] = ACTIONS(2434), - [sym__str_back_ticks] = ACTIONS(2434), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2434), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2434), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2434), - [sym__entry_separator] = ACTIONS(2436), - [anon_sym_register] = ACTIONS(2434), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2439), - }, - [658] = { - [sym_comment] = STATE(658), - [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(2441), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2441), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2441), - [sym__entry_separator] = ACTIONS(2443), - [anon_sym_register] = ACTIONS(2441), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2443), - }, - [659] = { - [sym_comment] = STATE(659), + [630] = { + [sym_comment] = STATE(630), [anon_sym_export] = ACTIONS(1883), [anon_sym_alias] = ACTIONS(1883), [anon_sym_let] = ACTIONS(1883), @@ -146810,2981 +142646,1861 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1885), }, - [660] = { - [sym_comment] = STATE(660), - [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(2445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2445), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2445), - [sym__entry_separator] = ACTIONS(2447), - [anon_sym_register] = ACTIONS(2445), + [631] = { + [sym_comment] = STATE(631), + [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(2390), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2390), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2390), + [sym__entry_separator] = ACTIONS(2392), + [anon_sym_register] = ACTIONS(2390), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2447), + [sym_raw_string_begin] = ACTIONS(2392), }, - [661] = { - [sym_comment] = STATE(661), - [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(2449), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2449), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2449), - [sym__entry_separator] = ACTIONS(2451), - [anon_sym_register] = ACTIONS(2449), + [632] = { + [sym_comment] = STATE(632), + [anon_sym_export] = ACTIONS(1616), + [anon_sym_alias] = ACTIONS(1616), + [anon_sym_let] = ACTIONS(1616), + [anon_sym_let_DASHenv] = ACTIONS(1616), + [anon_sym_mut] = ACTIONS(1616), + [anon_sym_const] = ACTIONS(1616), + [aux_sym_cmd_identifier_token1] = ACTIONS(1616), + [aux_sym_cmd_identifier_token2] = ACTIONS(1616), + [aux_sym_cmd_identifier_token3] = ACTIONS(1616), + [aux_sym_cmd_identifier_token4] = ACTIONS(1616), + [aux_sym_cmd_identifier_token5] = ACTIONS(1616), + [aux_sym_cmd_identifier_token6] = ACTIONS(1616), + [aux_sym_cmd_identifier_token7] = ACTIONS(1616), + [aux_sym_cmd_identifier_token8] = ACTIONS(1616), + [aux_sym_cmd_identifier_token9] = ACTIONS(1616), + [aux_sym_cmd_identifier_token10] = ACTIONS(1616), + [aux_sym_cmd_identifier_token11] = ACTIONS(1616), + [aux_sym_cmd_identifier_token12] = ACTIONS(1616), + [aux_sym_cmd_identifier_token13] = ACTIONS(1616), + [aux_sym_cmd_identifier_token14] = ACTIONS(1616), + [aux_sym_cmd_identifier_token15] = ACTIONS(1616), + [aux_sym_cmd_identifier_token16] = ACTIONS(1616), + [aux_sym_cmd_identifier_token17] = ACTIONS(1616), + [aux_sym_cmd_identifier_token18] = ACTIONS(1616), + [aux_sym_cmd_identifier_token19] = ACTIONS(1616), + [aux_sym_cmd_identifier_token20] = ACTIONS(1616), + [aux_sym_cmd_identifier_token21] = ACTIONS(1616), + [aux_sym_cmd_identifier_token22] = ACTIONS(1616), + [aux_sym_cmd_identifier_token23] = ACTIONS(1616), + [aux_sym_cmd_identifier_token24] = ACTIONS(1616), + [aux_sym_cmd_identifier_token25] = ACTIONS(1616), + [aux_sym_cmd_identifier_token26] = ACTIONS(1616), + [aux_sym_cmd_identifier_token27] = ACTIONS(1616), + [aux_sym_cmd_identifier_token28] = ACTIONS(1616), + [aux_sym_cmd_identifier_token29] = ACTIONS(1616), + [aux_sym_cmd_identifier_token30] = ACTIONS(1616), + [aux_sym_cmd_identifier_token31] = ACTIONS(1616), + [aux_sym_cmd_identifier_token32] = ACTIONS(1616), + [aux_sym_cmd_identifier_token33] = ACTIONS(1616), + [aux_sym_cmd_identifier_token34] = ACTIONS(1616), + [aux_sym_cmd_identifier_token35] = ACTIONS(1616), + [aux_sym_cmd_identifier_token36] = ACTIONS(1616), + [aux_sym_cmd_identifier_token37] = ACTIONS(1616), + [aux_sym_cmd_identifier_token38] = ACTIONS(1616), + [aux_sym_cmd_identifier_token39] = ACTIONS(1616), + [aux_sym_cmd_identifier_token40] = ACTIONS(1616), + [anon_sym_def] = ACTIONS(1616), + [anon_sym_export_DASHenv] = ACTIONS(1616), + [anon_sym_extern] = ACTIONS(1616), + [anon_sym_module] = ACTIONS(1616), + [anon_sym_use] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1616), + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_error] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_break] = ACTIONS(1616), + [anon_sym_continue] = ACTIONS(1616), + [anon_sym_for] = ACTIONS(1616), + [anon_sym_in2] = ACTIONS(1616), + [anon_sym_loop] = ACTIONS(1616), + [anon_sym_make] = ACTIONS(1616), + [anon_sym_while] = ACTIONS(1616), + [anon_sym_do] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_else] = ACTIONS(1616), + [anon_sym_match] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1616), + [anon_sym_try] = ACTIONS(1616), + [anon_sym_catch] = ACTIONS(1616), + [anon_sym_return] = ACTIONS(1616), + [anon_sym_source] = ACTIONS(1616), + [anon_sym_source_DASHenv] = ACTIONS(1616), + [anon_sym_hide] = ACTIONS(1616), + [anon_sym_hide_DASHenv] = ACTIONS(1616), + [anon_sym_overlay] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1616), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1616), + [aux_sym__val_number_decimal_token1] = ACTIONS(1616), + [aux_sym__val_number_decimal_token2] = ACTIONS(1616), + [aux_sym__val_number_decimal_token3] = ACTIONS(1616), + [aux_sym__val_number_decimal_token4] = ACTIONS(1616), + [aux_sym__val_number_token1] = ACTIONS(1616), + [aux_sym__val_number_token2] = ACTIONS(1616), + [aux_sym__val_number_token3] = ACTIONS(1616), + [aux_sym__val_number_token4] = ACTIONS(1616), + [aux_sym__val_number_token5] = ACTIONS(1616), + [aux_sym__val_number_token6] = ACTIONS(1616), + [anon_sym_DQUOTE] = ACTIONS(1616), + [sym__str_single_quotes] = ACTIONS(1616), + [sym__str_back_ticks] = ACTIONS(1616), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1616), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1616), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1616), + [sym__entry_separator] = ACTIONS(1628), + [anon_sym_register] = ACTIONS(1616), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2451), + [sym_raw_string_begin] = ACTIONS(1628), }, - [662] = { - [sym_comment] = STATE(662), - [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_COMMA] = 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_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_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_DOLLAR_SQUOTE] = ACTIONS(1891), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1891), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1891), - [sym__entry_separator] = ACTIONS(1893), - [anon_sym_register] = ACTIONS(1891), + [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(2394), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2394), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2394), + [sym__entry_separator] = ACTIONS(2396), + [anon_sym_register] = ACTIONS(2394), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1893), + [sym_raw_string_begin] = ACTIONS(2396), }, - [663] = { - [sym_comment] = STATE(663), - [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_COMMA] = 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_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_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_DOLLAR_SQUOTE] = ACTIONS(1931), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1931), - [sym__entry_separator] = ACTIONS(1933), - [anon_sym_register] = ACTIONS(1931), + [634] = { + [sym_comment] = STATE(634), + [aux_sym__multiple_types_repeat1] = STATE(634), + [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_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_DOLLAR_SQUOTE] = ACTIONS(2398), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2398), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2398), + [sym__entry_separator] = ACTIONS(2400), + [anon_sym_register] = ACTIONS(2398), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1933), + [sym_raw_string_begin] = ACTIONS(2403), }, - [664] = { - [sym_comment] = STATE(664), - [anon_sym_export] = ACTIONS(2453), - [anon_sym_alias] = ACTIONS(2453), - [anon_sym_let] = ACTIONS(2453), - [anon_sym_let_DASHenv] = ACTIONS(2453), - [anon_sym_mut] = ACTIONS(2453), - [anon_sym_const] = ACTIONS(2453), - [aux_sym_cmd_identifier_token1] = ACTIONS(2453), - [aux_sym_cmd_identifier_token2] = ACTIONS(2453), - [aux_sym_cmd_identifier_token3] = ACTIONS(2453), - [aux_sym_cmd_identifier_token4] = ACTIONS(2453), - [aux_sym_cmd_identifier_token5] = ACTIONS(2453), - [aux_sym_cmd_identifier_token6] = ACTIONS(2453), - [aux_sym_cmd_identifier_token7] = ACTIONS(2453), - [aux_sym_cmd_identifier_token8] = ACTIONS(2453), - [aux_sym_cmd_identifier_token9] = ACTIONS(2453), - [aux_sym_cmd_identifier_token10] = ACTIONS(2453), - [aux_sym_cmd_identifier_token11] = ACTIONS(2453), - [aux_sym_cmd_identifier_token12] = ACTIONS(2453), - [aux_sym_cmd_identifier_token13] = ACTIONS(2453), - [aux_sym_cmd_identifier_token14] = ACTIONS(2453), - [aux_sym_cmd_identifier_token15] = ACTIONS(2453), - [aux_sym_cmd_identifier_token16] = ACTIONS(2453), - [aux_sym_cmd_identifier_token17] = ACTIONS(2453), - [aux_sym_cmd_identifier_token18] = ACTIONS(2453), - [aux_sym_cmd_identifier_token19] = ACTIONS(2453), - [aux_sym_cmd_identifier_token20] = ACTIONS(2453), - [aux_sym_cmd_identifier_token21] = ACTIONS(2453), - [aux_sym_cmd_identifier_token22] = ACTIONS(2453), - [aux_sym_cmd_identifier_token23] = ACTIONS(2453), - [aux_sym_cmd_identifier_token24] = ACTIONS(2453), - [aux_sym_cmd_identifier_token25] = ACTIONS(2453), - [aux_sym_cmd_identifier_token26] = ACTIONS(2453), - [aux_sym_cmd_identifier_token27] = ACTIONS(2453), - [aux_sym_cmd_identifier_token28] = ACTIONS(2453), - [aux_sym_cmd_identifier_token29] = ACTIONS(2453), - [aux_sym_cmd_identifier_token30] = ACTIONS(2453), - [aux_sym_cmd_identifier_token31] = ACTIONS(2453), - [aux_sym_cmd_identifier_token32] = ACTIONS(2453), - [aux_sym_cmd_identifier_token33] = ACTIONS(2453), - [aux_sym_cmd_identifier_token34] = ACTIONS(2453), - [aux_sym_cmd_identifier_token35] = ACTIONS(2453), - [aux_sym_cmd_identifier_token36] = ACTIONS(2453), - [aux_sym_cmd_identifier_token37] = ACTIONS(2453), - [aux_sym_cmd_identifier_token38] = ACTIONS(2453), - [aux_sym_cmd_identifier_token39] = ACTIONS(2453), - [aux_sym_cmd_identifier_token40] = ACTIONS(2453), - [anon_sym_def] = ACTIONS(2453), - [anon_sym_export_DASHenv] = ACTIONS(2453), - [anon_sym_extern] = ACTIONS(2453), - [anon_sym_module] = ACTIONS(2453), - [anon_sym_use] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2453), - [anon_sym_COMMA] = ACTIONS(2453), - [anon_sym_DOLLAR] = ACTIONS(2453), - [anon_sym_error] = ACTIONS(2453), - [anon_sym_DASH2] = ACTIONS(2453), - [anon_sym_break] = ACTIONS(2453), - [anon_sym_continue] = ACTIONS(2453), - [anon_sym_for] = ACTIONS(2453), - [anon_sym_in2] = ACTIONS(2453), - [anon_sym_loop] = ACTIONS(2453), - [anon_sym_make] = ACTIONS(2453), - [anon_sym_while] = ACTIONS(2453), - [anon_sym_do] = ACTIONS(2453), - [anon_sym_if] = ACTIONS(2453), - [anon_sym_else] = ACTIONS(2453), - [anon_sym_match] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2453), - [anon_sym_try] = ACTIONS(2453), - [anon_sym_catch] = ACTIONS(2453), - [anon_sym_return] = ACTIONS(2453), - [anon_sym_source] = ACTIONS(2453), - [anon_sym_source_DASHenv] = ACTIONS(2453), - [anon_sym_hide] = ACTIONS(2453), - [anon_sym_hide_DASHenv] = ACTIONS(2453), - [anon_sym_overlay] = ACTIONS(2453), - [anon_sym_as] = ACTIONS(2453), - [anon_sym_PLUS2] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2453), - [aux_sym__val_number_decimal_token1] = ACTIONS(2453), - [aux_sym__val_number_decimal_token2] = ACTIONS(2453), - [aux_sym__val_number_decimal_token3] = ACTIONS(2453), - [aux_sym__val_number_decimal_token4] = ACTIONS(2453), - [aux_sym__val_number_token1] = ACTIONS(2453), - [aux_sym__val_number_token2] = ACTIONS(2453), - [aux_sym__val_number_token3] = ACTIONS(2453), - [aux_sym__val_number_token4] = ACTIONS(2453), - [aux_sym__val_number_token5] = ACTIONS(2453), - [aux_sym__val_number_token6] = ACTIONS(2453), - [anon_sym_DQUOTE] = ACTIONS(2453), - [sym__str_single_quotes] = ACTIONS(2453), - [sym__str_back_ticks] = ACTIONS(2453), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2453), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2453), - [sym__entry_separator] = ACTIONS(2455), - [anon_sym_register] = ACTIONS(2453), + [635] = { + [sym_comment] = STATE(635), + [anon_sym_export] = ACTIONS(2405), + [anon_sym_alias] = ACTIONS(2405), + [anon_sym_let] = ACTIONS(2405), + [anon_sym_let_DASHenv] = ACTIONS(2405), + [anon_sym_mut] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [aux_sym_cmd_identifier_token1] = ACTIONS(2405), + [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(2405), + [aux_sym_cmd_identifier_token9] = ACTIONS(2405), + [aux_sym_cmd_identifier_token10] = ACTIONS(2405), + [aux_sym_cmd_identifier_token11] = ACTIONS(2405), + [aux_sym_cmd_identifier_token12] = ACTIONS(2405), + [aux_sym_cmd_identifier_token13] = ACTIONS(2405), + [aux_sym_cmd_identifier_token14] = ACTIONS(2405), + [aux_sym_cmd_identifier_token15] = ACTIONS(2405), + [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(2405), + [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(2405), + [aux_sym_cmd_identifier_token39] = ACTIONS(2405), + [aux_sym_cmd_identifier_token40] = ACTIONS(2405), + [anon_sym_def] = ACTIONS(2405), + [anon_sym_export_DASHenv] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym_module] = ACTIONS(2405), + [anon_sym_use] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_COMMA] = ACTIONS(2405), + [anon_sym_DOLLAR] = ACTIONS(2405), + [anon_sym_error] = ACTIONS(2405), + [anon_sym_DASH2] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_in2] = ACTIONS(2405), + [anon_sym_loop] = ACTIONS(2405), + [anon_sym_make] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_match] = ACTIONS(2405), + [anon_sym_RBRACE] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_catch] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_source] = ACTIONS(2405), + [anon_sym_source_DASHenv] = ACTIONS(2405), + [anon_sym_hide] = ACTIONS(2405), + [anon_sym_hide_DASHenv] = ACTIONS(2405), + [anon_sym_overlay] = ACTIONS(2405), + [anon_sym_as] = ACTIONS(2405), + [anon_sym_PLUS2] = ACTIONS(2405), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2405), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2405), + [aux_sym__val_number_decimal_token1] = ACTIONS(2405), + [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(2405), + [aux_sym__val_number_token5] = ACTIONS(2405), + [aux_sym__val_number_token6] = ACTIONS(2405), + [anon_sym_DQUOTE] = ACTIONS(2405), + [sym__str_single_quotes] = ACTIONS(2405), + [sym__str_back_ticks] = ACTIONS(2405), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2405), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2405), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2405), + [sym__entry_separator] = ACTIONS(2407), + [anon_sym_register] = ACTIONS(2405), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2455), + [sym_raw_string_begin] = ACTIONS(2407), }, - [665] = { - [sym_comment] = STATE(665), - [anon_sym_export] = ACTIONS(2457), - [anon_sym_alias] = ACTIONS(2457), - [anon_sym_let] = ACTIONS(2457), - [anon_sym_let_DASHenv] = ACTIONS(2457), - [anon_sym_mut] = ACTIONS(2457), - [anon_sym_const] = ACTIONS(2457), - [aux_sym_cmd_identifier_token1] = ACTIONS(2457), - [aux_sym_cmd_identifier_token2] = ACTIONS(2457), - [aux_sym_cmd_identifier_token3] = ACTIONS(2457), - [aux_sym_cmd_identifier_token4] = ACTIONS(2457), - [aux_sym_cmd_identifier_token5] = ACTIONS(2457), - [aux_sym_cmd_identifier_token6] = ACTIONS(2457), - [aux_sym_cmd_identifier_token7] = ACTIONS(2457), - [aux_sym_cmd_identifier_token8] = ACTIONS(2457), - [aux_sym_cmd_identifier_token9] = ACTIONS(2457), - [aux_sym_cmd_identifier_token10] = ACTIONS(2457), - [aux_sym_cmd_identifier_token11] = ACTIONS(2457), - [aux_sym_cmd_identifier_token12] = ACTIONS(2457), - [aux_sym_cmd_identifier_token13] = ACTIONS(2457), - [aux_sym_cmd_identifier_token14] = ACTIONS(2457), - [aux_sym_cmd_identifier_token15] = ACTIONS(2457), - [aux_sym_cmd_identifier_token16] = ACTIONS(2457), - [aux_sym_cmd_identifier_token17] = ACTIONS(2457), - [aux_sym_cmd_identifier_token18] = ACTIONS(2457), - [aux_sym_cmd_identifier_token19] = ACTIONS(2457), - [aux_sym_cmd_identifier_token20] = ACTIONS(2457), - [aux_sym_cmd_identifier_token21] = ACTIONS(2457), - [aux_sym_cmd_identifier_token22] = ACTIONS(2457), - [aux_sym_cmd_identifier_token23] = ACTIONS(2457), - [aux_sym_cmd_identifier_token24] = ACTIONS(2457), - [aux_sym_cmd_identifier_token25] = ACTIONS(2457), - [aux_sym_cmd_identifier_token26] = ACTIONS(2457), - [aux_sym_cmd_identifier_token27] = ACTIONS(2457), - [aux_sym_cmd_identifier_token28] = ACTIONS(2457), - [aux_sym_cmd_identifier_token29] = ACTIONS(2457), - [aux_sym_cmd_identifier_token30] = ACTIONS(2457), - [aux_sym_cmd_identifier_token31] = ACTIONS(2457), - [aux_sym_cmd_identifier_token32] = ACTIONS(2457), - [aux_sym_cmd_identifier_token33] = ACTIONS(2457), - [aux_sym_cmd_identifier_token34] = ACTIONS(2457), - [aux_sym_cmd_identifier_token35] = ACTIONS(2457), - [aux_sym_cmd_identifier_token36] = ACTIONS(2457), - [aux_sym_cmd_identifier_token37] = ACTIONS(2457), - [aux_sym_cmd_identifier_token38] = ACTIONS(2457), - [aux_sym_cmd_identifier_token39] = ACTIONS(2457), - [aux_sym_cmd_identifier_token40] = ACTIONS(2457), - [anon_sym_def] = ACTIONS(2457), - [anon_sym_export_DASHenv] = ACTIONS(2457), - [anon_sym_extern] = ACTIONS(2457), - [anon_sym_module] = ACTIONS(2457), - [anon_sym_use] = ACTIONS(2457), - [anon_sym_LPAREN] = ACTIONS(2457), - [anon_sym_COMMA] = ACTIONS(2457), - [anon_sym_DOLLAR] = ACTIONS(2457), - [anon_sym_error] = ACTIONS(2457), - [anon_sym_DASH2] = ACTIONS(2457), - [anon_sym_break] = ACTIONS(2457), - [anon_sym_continue] = ACTIONS(2457), - [anon_sym_for] = ACTIONS(2457), - [anon_sym_in2] = ACTIONS(2457), - [anon_sym_loop] = ACTIONS(2457), - [anon_sym_make] = ACTIONS(2457), - [anon_sym_while] = ACTIONS(2457), - [anon_sym_do] = ACTIONS(2457), - [anon_sym_if] = ACTIONS(2457), - [anon_sym_else] = ACTIONS(2457), - [anon_sym_match] = ACTIONS(2457), - [anon_sym_RBRACE] = ACTIONS(2457), - [anon_sym_try] = ACTIONS(2457), - [anon_sym_catch] = ACTIONS(2457), - [anon_sym_return] = ACTIONS(2457), - [anon_sym_source] = ACTIONS(2457), - [anon_sym_source_DASHenv] = ACTIONS(2457), - [anon_sym_hide] = ACTIONS(2457), - [anon_sym_hide_DASHenv] = ACTIONS(2457), - [anon_sym_overlay] = ACTIONS(2457), - [anon_sym_as] = ACTIONS(2457), - [anon_sym_PLUS2] = ACTIONS(2457), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2457), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2457), - [aux_sym__val_number_decimal_token1] = ACTIONS(2457), - [aux_sym__val_number_decimal_token2] = ACTIONS(2457), - [aux_sym__val_number_decimal_token3] = ACTIONS(2457), - [aux_sym__val_number_decimal_token4] = ACTIONS(2457), - [aux_sym__val_number_token1] = ACTIONS(2457), - [aux_sym__val_number_token2] = ACTIONS(2457), - [aux_sym__val_number_token3] = ACTIONS(2457), - [aux_sym__val_number_token4] = ACTIONS(2457), - [aux_sym__val_number_token5] = ACTIONS(2457), - [aux_sym__val_number_token6] = ACTIONS(2457), - [anon_sym_DQUOTE] = ACTIONS(2457), - [sym__str_single_quotes] = ACTIONS(2457), - [sym__str_back_ticks] = ACTIONS(2457), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2457), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2457), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2457), - [sym__entry_separator] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2457), + [636] = { + [sym_comment] = STATE(636), + [anon_sym_export] = ACTIONS(2409), + [anon_sym_alias] = ACTIONS(2409), + [anon_sym_let] = ACTIONS(2409), + [anon_sym_let_DASHenv] = ACTIONS(2409), + [anon_sym_mut] = ACTIONS(2409), + [anon_sym_const] = ACTIONS(2409), + [aux_sym_cmd_identifier_token1] = ACTIONS(2409), + [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(2409), + [aux_sym_cmd_identifier_token9] = ACTIONS(2409), + [aux_sym_cmd_identifier_token10] = ACTIONS(2409), + [aux_sym_cmd_identifier_token11] = ACTIONS(2409), + [aux_sym_cmd_identifier_token12] = ACTIONS(2409), + [aux_sym_cmd_identifier_token13] = ACTIONS(2409), + [aux_sym_cmd_identifier_token14] = ACTIONS(2409), + [aux_sym_cmd_identifier_token15] = ACTIONS(2409), + [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(2409), + [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(2409), + [aux_sym_cmd_identifier_token39] = ACTIONS(2409), + [aux_sym_cmd_identifier_token40] = ACTIONS(2409), + [anon_sym_def] = ACTIONS(2409), + [anon_sym_export_DASHenv] = ACTIONS(2409), + [anon_sym_extern] = ACTIONS(2409), + [anon_sym_module] = ACTIONS(2409), + [anon_sym_use] = ACTIONS(2409), + [anon_sym_LPAREN] = ACTIONS(2409), + [anon_sym_COMMA] = ACTIONS(2409), + [anon_sym_DOLLAR] = ACTIONS(2409), + [anon_sym_error] = ACTIONS(2409), + [anon_sym_DASH2] = ACTIONS(2409), + [anon_sym_break] = ACTIONS(2409), + [anon_sym_continue] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(2409), + [anon_sym_in2] = ACTIONS(2409), + [anon_sym_loop] = ACTIONS(2409), + [anon_sym_make] = ACTIONS(2409), + [anon_sym_while] = ACTIONS(2409), + [anon_sym_do] = ACTIONS(2409), + [anon_sym_if] = ACTIONS(2409), + [anon_sym_else] = ACTIONS(2409), + [anon_sym_match] = ACTIONS(2409), + [anon_sym_RBRACE] = ACTIONS(2409), + [anon_sym_try] = ACTIONS(2409), + [anon_sym_catch] = ACTIONS(2409), + [anon_sym_return] = ACTIONS(2409), + [anon_sym_source] = ACTIONS(2409), + [anon_sym_source_DASHenv] = ACTIONS(2409), + [anon_sym_hide] = ACTIONS(2409), + [anon_sym_hide_DASHenv] = ACTIONS(2409), + [anon_sym_overlay] = ACTIONS(2409), + [anon_sym_as] = ACTIONS(2409), + [anon_sym_PLUS2] = ACTIONS(2409), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2409), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2409), + [aux_sym__val_number_decimal_token1] = ACTIONS(2409), + [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(2409), + [aux_sym__val_number_token5] = ACTIONS(2409), + [aux_sym__val_number_token6] = ACTIONS(2409), + [anon_sym_DQUOTE] = ACTIONS(2409), + [sym__str_single_quotes] = ACTIONS(2409), + [sym__str_back_ticks] = ACTIONS(2409), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2409), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2409), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2409), + [sym__entry_separator] = ACTIONS(2411), + [anon_sym_register] = ACTIONS(2409), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2459), + [sym_raw_string_begin] = ACTIONS(2411), }, - [666] = { - [sym_comment] = STATE(666), - [anon_sym_export] = ACTIONS(1935), - [anon_sym_alias] = ACTIONS(1935), - [anon_sym_let] = ACTIONS(1935), - [anon_sym_let_DASHenv] = ACTIONS(1935), - [anon_sym_mut] = ACTIONS(1935), - [anon_sym_const] = ACTIONS(1935), - [aux_sym_cmd_identifier_token1] = ACTIONS(1935), - [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(1935), - [aux_sym_cmd_identifier_token9] = ACTIONS(1935), - [aux_sym_cmd_identifier_token10] = ACTIONS(1935), - [aux_sym_cmd_identifier_token11] = ACTIONS(1935), - [aux_sym_cmd_identifier_token12] = ACTIONS(1935), - [aux_sym_cmd_identifier_token13] = ACTIONS(1935), - [aux_sym_cmd_identifier_token14] = ACTIONS(1935), - [aux_sym_cmd_identifier_token15] = ACTIONS(1935), - [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(1935), - [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(1935), - [aux_sym_cmd_identifier_token39] = ACTIONS(1935), - [aux_sym_cmd_identifier_token40] = ACTIONS(1935), - [anon_sym_def] = ACTIONS(1935), - [anon_sym_export_DASHenv] = ACTIONS(1935), - [anon_sym_extern] = ACTIONS(1935), - [anon_sym_module] = ACTIONS(1935), - [anon_sym_use] = ACTIONS(1935), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_COMMA] = ACTIONS(1935), - [anon_sym_DOLLAR] = ACTIONS(1935), - [anon_sym_error] = ACTIONS(1935), - [anon_sym_DASH2] = ACTIONS(1935), - [anon_sym_break] = ACTIONS(1935), - [anon_sym_continue] = ACTIONS(1935), - [anon_sym_for] = ACTIONS(1935), - [anon_sym_in2] = ACTIONS(1935), - [anon_sym_loop] = ACTIONS(1935), - [anon_sym_make] = ACTIONS(1935), - [anon_sym_while] = ACTIONS(1935), - [anon_sym_do] = ACTIONS(1935), - [anon_sym_if] = ACTIONS(1935), - [anon_sym_else] = ACTIONS(1935), - [anon_sym_match] = ACTIONS(1935), - [anon_sym_RBRACE] = ACTIONS(1935), - [anon_sym_try] = ACTIONS(1935), - [anon_sym_catch] = ACTIONS(1935), - [anon_sym_return] = ACTIONS(1935), - [anon_sym_source] = ACTIONS(1935), - [anon_sym_source_DASHenv] = ACTIONS(1935), - [anon_sym_hide] = ACTIONS(1935), - [anon_sym_hide_DASHenv] = ACTIONS(1935), - [anon_sym_overlay] = ACTIONS(1935), - [anon_sym_as] = ACTIONS(1935), - [anon_sym_PLUS2] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1935), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [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_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_DOT_DOT_DOT_LBRACE] = ACTIONS(1935), - [sym__entry_separator] = ACTIONS(1937), - [anon_sym_register] = ACTIONS(1935), + [637] = { + [sym_comment] = STATE(637), + [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(2413), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2413), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2413), + [sym__entry_separator] = ACTIONS(2415), + [anon_sym_register] = ACTIONS(2413), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1937), + [sym_raw_string_begin] = ACTIONS(2415), }, - [667] = { - [sym_comment] = STATE(667), - [anon_sym_export] = ACTIONS(2461), - [anon_sym_alias] = ACTIONS(2461), - [anon_sym_let] = ACTIONS(2461), - [anon_sym_let_DASHenv] = ACTIONS(2461), - [anon_sym_mut] = ACTIONS(2461), - [anon_sym_const] = ACTIONS(2461), - [aux_sym_cmd_identifier_token1] = ACTIONS(2461), - [aux_sym_cmd_identifier_token2] = ACTIONS(2461), - [aux_sym_cmd_identifier_token3] = ACTIONS(2461), - [aux_sym_cmd_identifier_token4] = ACTIONS(2461), - [aux_sym_cmd_identifier_token5] = ACTIONS(2461), - [aux_sym_cmd_identifier_token6] = ACTIONS(2461), - [aux_sym_cmd_identifier_token7] = ACTIONS(2461), - [aux_sym_cmd_identifier_token8] = ACTIONS(2461), - [aux_sym_cmd_identifier_token9] = ACTIONS(2461), - [aux_sym_cmd_identifier_token10] = ACTIONS(2461), - [aux_sym_cmd_identifier_token11] = ACTIONS(2461), - [aux_sym_cmd_identifier_token12] = ACTIONS(2461), - [aux_sym_cmd_identifier_token13] = ACTIONS(2461), - [aux_sym_cmd_identifier_token14] = ACTIONS(2461), - [aux_sym_cmd_identifier_token15] = ACTIONS(2461), - [aux_sym_cmd_identifier_token16] = ACTIONS(2461), - [aux_sym_cmd_identifier_token17] = ACTIONS(2461), - [aux_sym_cmd_identifier_token18] = ACTIONS(2461), - [aux_sym_cmd_identifier_token19] = ACTIONS(2461), - [aux_sym_cmd_identifier_token20] = ACTIONS(2461), - [aux_sym_cmd_identifier_token21] = ACTIONS(2461), - [aux_sym_cmd_identifier_token22] = ACTIONS(2461), - [aux_sym_cmd_identifier_token23] = ACTIONS(2461), - [aux_sym_cmd_identifier_token24] = ACTIONS(2461), - [aux_sym_cmd_identifier_token25] = ACTIONS(2461), - [aux_sym_cmd_identifier_token26] = ACTIONS(2461), - [aux_sym_cmd_identifier_token27] = ACTIONS(2461), - [aux_sym_cmd_identifier_token28] = ACTIONS(2461), - [aux_sym_cmd_identifier_token29] = ACTIONS(2461), - [aux_sym_cmd_identifier_token30] = ACTIONS(2461), - [aux_sym_cmd_identifier_token31] = ACTIONS(2461), - [aux_sym_cmd_identifier_token32] = ACTIONS(2461), - [aux_sym_cmd_identifier_token33] = ACTIONS(2461), - [aux_sym_cmd_identifier_token34] = ACTIONS(2461), - [aux_sym_cmd_identifier_token35] = ACTIONS(2461), - [aux_sym_cmd_identifier_token36] = ACTIONS(2461), - [aux_sym_cmd_identifier_token37] = ACTIONS(2461), - [aux_sym_cmd_identifier_token38] = ACTIONS(2461), - [aux_sym_cmd_identifier_token39] = ACTIONS(2461), - [aux_sym_cmd_identifier_token40] = ACTIONS(2461), - [anon_sym_def] = ACTIONS(2461), - [anon_sym_export_DASHenv] = ACTIONS(2461), - [anon_sym_extern] = ACTIONS(2461), - [anon_sym_module] = ACTIONS(2461), - [anon_sym_use] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2461), - [anon_sym_COMMA] = ACTIONS(2461), - [anon_sym_DOLLAR] = ACTIONS(2461), - [anon_sym_error] = ACTIONS(2461), - [anon_sym_DASH2] = ACTIONS(2461), - [anon_sym_break] = ACTIONS(2461), - [anon_sym_continue] = ACTIONS(2461), - [anon_sym_for] = ACTIONS(2461), - [anon_sym_in2] = ACTIONS(2461), - [anon_sym_loop] = ACTIONS(2461), - [anon_sym_make] = ACTIONS(2461), - [anon_sym_while] = ACTIONS(2461), - [anon_sym_do] = ACTIONS(2461), - [anon_sym_if] = ACTIONS(2461), - [anon_sym_else] = ACTIONS(2461), - [anon_sym_match] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_try] = ACTIONS(2461), - [anon_sym_catch] = ACTIONS(2461), - [anon_sym_return] = ACTIONS(2461), - [anon_sym_source] = ACTIONS(2461), - [anon_sym_source_DASHenv] = ACTIONS(2461), - [anon_sym_hide] = ACTIONS(2461), - [anon_sym_hide_DASHenv] = ACTIONS(2461), - [anon_sym_overlay] = ACTIONS(2461), - [anon_sym_as] = ACTIONS(2461), - [anon_sym_PLUS2] = ACTIONS(2461), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2461), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2461), - [aux_sym__val_number_decimal_token1] = ACTIONS(2461), - [aux_sym__val_number_decimal_token2] = ACTIONS(2461), - [aux_sym__val_number_decimal_token3] = ACTIONS(2461), - [aux_sym__val_number_decimal_token4] = ACTIONS(2461), - [aux_sym__val_number_token1] = ACTIONS(2461), - [aux_sym__val_number_token2] = ACTIONS(2461), - [aux_sym__val_number_token3] = ACTIONS(2461), - [aux_sym__val_number_token4] = ACTIONS(2461), - [aux_sym__val_number_token5] = ACTIONS(2461), - [aux_sym__val_number_token6] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym__str_single_quotes] = ACTIONS(2461), - [sym__str_back_ticks] = ACTIONS(2461), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2461), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2461), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2461), - [sym__entry_separator] = ACTIONS(2463), - [anon_sym_register] = ACTIONS(2461), + [638] = { + [sym_comment] = STATE(638), + [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(2417), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2417), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2417), + [sym__entry_separator] = ACTIONS(2419), + [anon_sym_register] = ACTIONS(2417), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2463), + [sym_raw_string_begin] = ACTIONS(2419), }, - [668] = { - [sym_comment] = STATE(668), - [anon_sym_export] = ACTIONS(2465), - [anon_sym_alias] = ACTIONS(2465), - [anon_sym_let] = ACTIONS(2465), - [anon_sym_let_DASHenv] = ACTIONS(2465), - [anon_sym_mut] = ACTIONS(2465), - [anon_sym_const] = ACTIONS(2465), - [aux_sym_cmd_identifier_token1] = ACTIONS(2465), - [aux_sym_cmd_identifier_token2] = ACTIONS(2465), - [aux_sym_cmd_identifier_token3] = ACTIONS(2465), - [aux_sym_cmd_identifier_token4] = ACTIONS(2465), - [aux_sym_cmd_identifier_token5] = ACTIONS(2465), - [aux_sym_cmd_identifier_token6] = ACTIONS(2465), - [aux_sym_cmd_identifier_token7] = ACTIONS(2465), - [aux_sym_cmd_identifier_token8] = ACTIONS(2465), - [aux_sym_cmd_identifier_token9] = ACTIONS(2465), - [aux_sym_cmd_identifier_token10] = ACTIONS(2465), - [aux_sym_cmd_identifier_token11] = ACTIONS(2465), - [aux_sym_cmd_identifier_token12] = ACTIONS(2465), - [aux_sym_cmd_identifier_token13] = ACTIONS(2465), - [aux_sym_cmd_identifier_token14] = ACTIONS(2465), - [aux_sym_cmd_identifier_token15] = ACTIONS(2465), - [aux_sym_cmd_identifier_token16] = ACTIONS(2465), - [aux_sym_cmd_identifier_token17] = ACTIONS(2465), - [aux_sym_cmd_identifier_token18] = ACTIONS(2465), - [aux_sym_cmd_identifier_token19] = ACTIONS(2465), - [aux_sym_cmd_identifier_token20] = ACTIONS(2465), - [aux_sym_cmd_identifier_token21] = ACTIONS(2465), - [aux_sym_cmd_identifier_token22] = ACTIONS(2465), - [aux_sym_cmd_identifier_token23] = ACTIONS(2465), - [aux_sym_cmd_identifier_token24] = ACTIONS(2465), - [aux_sym_cmd_identifier_token25] = ACTIONS(2465), - [aux_sym_cmd_identifier_token26] = ACTIONS(2465), - [aux_sym_cmd_identifier_token27] = ACTIONS(2465), - [aux_sym_cmd_identifier_token28] = ACTIONS(2465), - [aux_sym_cmd_identifier_token29] = ACTIONS(2465), - [aux_sym_cmd_identifier_token30] = ACTIONS(2465), - [aux_sym_cmd_identifier_token31] = ACTIONS(2465), - [aux_sym_cmd_identifier_token32] = ACTIONS(2465), - [aux_sym_cmd_identifier_token33] = ACTIONS(2465), - [aux_sym_cmd_identifier_token34] = ACTIONS(2465), - [aux_sym_cmd_identifier_token35] = ACTIONS(2465), - [aux_sym_cmd_identifier_token36] = ACTIONS(2465), - [aux_sym_cmd_identifier_token37] = ACTIONS(2465), - [aux_sym_cmd_identifier_token38] = ACTIONS(2465), - [aux_sym_cmd_identifier_token39] = ACTIONS(2465), - [aux_sym_cmd_identifier_token40] = ACTIONS(2465), - [anon_sym_def] = ACTIONS(2465), - [anon_sym_export_DASHenv] = ACTIONS(2465), - [anon_sym_extern] = ACTIONS(2465), - [anon_sym_module] = ACTIONS(2465), - [anon_sym_use] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2465), - [anon_sym_COMMA] = ACTIONS(2465), - [anon_sym_DOLLAR] = ACTIONS(2465), - [anon_sym_error] = ACTIONS(2465), - [anon_sym_DASH2] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_in2] = ACTIONS(2465), - [anon_sym_loop] = ACTIONS(2465), - [anon_sym_make] = ACTIONS(2465), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_do] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_else] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_RBRACE] = ACTIONS(2465), - [anon_sym_try] = ACTIONS(2465), - [anon_sym_catch] = ACTIONS(2465), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_source] = ACTIONS(2465), - [anon_sym_source_DASHenv] = ACTIONS(2465), - [anon_sym_hide] = ACTIONS(2465), - [anon_sym_hide_DASHenv] = ACTIONS(2465), - [anon_sym_overlay] = ACTIONS(2465), - [anon_sym_as] = ACTIONS(2465), - [anon_sym_PLUS2] = ACTIONS(2465), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2465), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2465), - [aux_sym__val_number_decimal_token1] = ACTIONS(2465), - [aux_sym__val_number_decimal_token2] = ACTIONS(2465), - [aux_sym__val_number_decimal_token3] = ACTIONS(2465), - [aux_sym__val_number_decimal_token4] = ACTIONS(2465), - [aux_sym__val_number_token1] = ACTIONS(2465), - [aux_sym__val_number_token2] = ACTIONS(2465), - [aux_sym__val_number_token3] = ACTIONS(2465), - [aux_sym__val_number_token4] = ACTIONS(2465), - [aux_sym__val_number_token5] = ACTIONS(2465), - [aux_sym__val_number_token6] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(2465), - [sym__str_single_quotes] = ACTIONS(2465), - [sym__str_back_ticks] = ACTIONS(2465), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2465), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2465), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2465), - [sym__entry_separator] = ACTIONS(2467), - [anon_sym_register] = ACTIONS(2465), + [639] = { + [sym_comment] = STATE(639), + [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(2421), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2421), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2421), + [sym__entry_separator] = ACTIONS(2423), + [anon_sym_register] = ACTIONS(2421), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2467), + [sym_raw_string_begin] = ACTIONS(2423), }, - [669] = { - [sym_comment] = STATE(669), - [anon_sym_export] = ACTIONS(2469), - [anon_sym_alias] = ACTIONS(2469), - [anon_sym_let] = ACTIONS(2469), - [anon_sym_let_DASHenv] = ACTIONS(2469), - [anon_sym_mut] = ACTIONS(2469), - [anon_sym_const] = ACTIONS(2469), - [aux_sym_cmd_identifier_token1] = ACTIONS(2469), - [aux_sym_cmd_identifier_token2] = ACTIONS(2469), - [aux_sym_cmd_identifier_token3] = ACTIONS(2469), - [aux_sym_cmd_identifier_token4] = ACTIONS(2469), - [aux_sym_cmd_identifier_token5] = ACTIONS(2469), - [aux_sym_cmd_identifier_token6] = ACTIONS(2469), - [aux_sym_cmd_identifier_token7] = ACTIONS(2469), - [aux_sym_cmd_identifier_token8] = ACTIONS(2469), - [aux_sym_cmd_identifier_token9] = ACTIONS(2469), - [aux_sym_cmd_identifier_token10] = ACTIONS(2469), - [aux_sym_cmd_identifier_token11] = ACTIONS(2469), - [aux_sym_cmd_identifier_token12] = ACTIONS(2469), - [aux_sym_cmd_identifier_token13] = ACTIONS(2469), - [aux_sym_cmd_identifier_token14] = ACTIONS(2469), - [aux_sym_cmd_identifier_token15] = ACTIONS(2469), - [aux_sym_cmd_identifier_token16] = ACTIONS(2469), - [aux_sym_cmd_identifier_token17] = ACTIONS(2469), - [aux_sym_cmd_identifier_token18] = ACTIONS(2469), - [aux_sym_cmd_identifier_token19] = ACTIONS(2469), - [aux_sym_cmd_identifier_token20] = ACTIONS(2469), - [aux_sym_cmd_identifier_token21] = ACTIONS(2469), - [aux_sym_cmd_identifier_token22] = ACTIONS(2469), - [aux_sym_cmd_identifier_token23] = ACTIONS(2469), - [aux_sym_cmd_identifier_token24] = ACTIONS(2469), - [aux_sym_cmd_identifier_token25] = ACTIONS(2469), - [aux_sym_cmd_identifier_token26] = ACTIONS(2469), - [aux_sym_cmd_identifier_token27] = ACTIONS(2469), - [aux_sym_cmd_identifier_token28] = ACTIONS(2469), - [aux_sym_cmd_identifier_token29] = ACTIONS(2469), - [aux_sym_cmd_identifier_token30] = ACTIONS(2469), - [aux_sym_cmd_identifier_token31] = ACTIONS(2469), - [aux_sym_cmd_identifier_token32] = ACTIONS(2469), - [aux_sym_cmd_identifier_token33] = ACTIONS(2469), - [aux_sym_cmd_identifier_token34] = ACTIONS(2469), - [aux_sym_cmd_identifier_token35] = ACTIONS(2469), - [aux_sym_cmd_identifier_token36] = ACTIONS(2469), - [aux_sym_cmd_identifier_token37] = ACTIONS(2469), - [aux_sym_cmd_identifier_token38] = ACTIONS(2469), - [aux_sym_cmd_identifier_token39] = ACTIONS(2469), - [aux_sym_cmd_identifier_token40] = ACTIONS(2469), - [anon_sym_def] = ACTIONS(2469), - [anon_sym_export_DASHenv] = ACTIONS(2469), - [anon_sym_extern] = ACTIONS(2469), - [anon_sym_module] = ACTIONS(2469), - [anon_sym_use] = ACTIONS(2469), - [anon_sym_LPAREN] = ACTIONS(2469), - [anon_sym_COMMA] = ACTIONS(2469), - [anon_sym_DOLLAR] = ACTIONS(2469), - [anon_sym_error] = ACTIONS(2469), - [anon_sym_DASH2] = ACTIONS(2469), - [anon_sym_break] = ACTIONS(2469), - [anon_sym_continue] = ACTIONS(2469), - [anon_sym_for] = ACTIONS(2469), - [anon_sym_in2] = ACTIONS(2469), - [anon_sym_loop] = ACTIONS(2469), - [anon_sym_make] = ACTIONS(2469), - [anon_sym_while] = ACTIONS(2469), - [anon_sym_do] = ACTIONS(2469), - [anon_sym_if] = ACTIONS(2469), - [anon_sym_else] = ACTIONS(2469), - [anon_sym_match] = ACTIONS(2469), - [anon_sym_RBRACE] = ACTIONS(2469), - [anon_sym_try] = ACTIONS(2469), - [anon_sym_catch] = ACTIONS(2469), - [anon_sym_return] = ACTIONS(2469), - [anon_sym_source] = ACTIONS(2469), - [anon_sym_source_DASHenv] = ACTIONS(2469), - [anon_sym_hide] = ACTIONS(2469), - [anon_sym_hide_DASHenv] = ACTIONS(2469), - [anon_sym_overlay] = ACTIONS(2469), - [anon_sym_as] = ACTIONS(2469), - [anon_sym_PLUS2] = ACTIONS(2469), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2469), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2469), - [aux_sym__val_number_decimal_token1] = ACTIONS(2469), - [aux_sym__val_number_decimal_token2] = ACTIONS(2469), - [aux_sym__val_number_decimal_token3] = ACTIONS(2469), - [aux_sym__val_number_decimal_token4] = ACTIONS(2469), - [aux_sym__val_number_token1] = ACTIONS(2469), - [aux_sym__val_number_token2] = ACTIONS(2469), - [aux_sym__val_number_token3] = ACTIONS(2469), - [aux_sym__val_number_token4] = ACTIONS(2469), - [aux_sym__val_number_token5] = ACTIONS(2469), - [aux_sym__val_number_token6] = ACTIONS(2469), - [anon_sym_DQUOTE] = ACTIONS(2469), - [sym__str_single_quotes] = ACTIONS(2469), - [sym__str_back_ticks] = ACTIONS(2469), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2469), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2469), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2469), - [sym__entry_separator] = ACTIONS(2471), - [anon_sym_register] = ACTIONS(2469), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2471), + [640] = { + [sym_comment] = STATE(640), + [anon_sym_export] = ACTIONS(1616), + [anon_sym_alias] = ACTIONS(1616), + [anon_sym_let] = ACTIONS(1616), + [anon_sym_let_DASHenv] = ACTIONS(1616), + [anon_sym_mut] = ACTIONS(1616), + [anon_sym_const] = ACTIONS(1616), + [aux_sym_cmd_identifier_token1] = ACTIONS(1616), + [aux_sym_cmd_identifier_token2] = ACTIONS(1628), + [aux_sym_cmd_identifier_token3] = ACTIONS(1628), + [aux_sym_cmd_identifier_token4] = ACTIONS(1628), + [aux_sym_cmd_identifier_token5] = ACTIONS(1628), + [aux_sym_cmd_identifier_token6] = ACTIONS(1628), + [aux_sym_cmd_identifier_token7] = ACTIONS(1628), + [aux_sym_cmd_identifier_token8] = ACTIONS(1616), + [aux_sym_cmd_identifier_token9] = ACTIONS(1616), + [aux_sym_cmd_identifier_token10] = ACTIONS(1628), + [aux_sym_cmd_identifier_token11] = ACTIONS(1628), + [aux_sym_cmd_identifier_token12] = ACTIONS(1616), + [aux_sym_cmd_identifier_token13] = ACTIONS(1616), + [aux_sym_cmd_identifier_token14] = ACTIONS(1616), + [aux_sym_cmd_identifier_token15] = ACTIONS(1616), + [aux_sym_cmd_identifier_token16] = ACTIONS(1628), + [aux_sym_cmd_identifier_token17] = ACTIONS(1628), + [aux_sym_cmd_identifier_token18] = ACTIONS(1628), + [aux_sym_cmd_identifier_token19] = ACTIONS(1628), + [aux_sym_cmd_identifier_token20] = ACTIONS(1628), + [aux_sym_cmd_identifier_token21] = ACTIONS(1628), + [aux_sym_cmd_identifier_token22] = ACTIONS(1628), + [aux_sym_cmd_identifier_token23] = ACTIONS(1628), + [aux_sym_cmd_identifier_token24] = ACTIONS(1628), + [aux_sym_cmd_identifier_token25] = ACTIONS(1628), + [aux_sym_cmd_identifier_token26] = ACTIONS(1628), + [aux_sym_cmd_identifier_token27] = ACTIONS(1628), + [aux_sym_cmd_identifier_token28] = ACTIONS(1628), + [aux_sym_cmd_identifier_token29] = ACTIONS(1628), + [aux_sym_cmd_identifier_token30] = ACTIONS(1628), + [aux_sym_cmd_identifier_token31] = ACTIONS(1628), + [aux_sym_cmd_identifier_token32] = ACTIONS(1628), + [aux_sym_cmd_identifier_token33] = ACTIONS(1628), + [aux_sym_cmd_identifier_token34] = ACTIONS(1616), + [aux_sym_cmd_identifier_token35] = ACTIONS(1628), + [aux_sym_cmd_identifier_token36] = ACTIONS(1628), + [aux_sym_cmd_identifier_token37] = ACTIONS(1628), + [aux_sym_cmd_identifier_token38] = ACTIONS(1616), + [aux_sym_cmd_identifier_token39] = ACTIONS(1628), + [aux_sym_cmd_identifier_token40] = ACTIONS(1628), + [anon_sym_def] = ACTIONS(1616), + [anon_sym_export_DASHenv] = ACTIONS(1616), + [anon_sym_extern] = ACTIONS(1616), + [anon_sym_module] = ACTIONS(1616), + [anon_sym_use] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_COMMA] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_error] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_break] = ACTIONS(1616), + [anon_sym_continue] = ACTIONS(1616), + [anon_sym_for] = ACTIONS(1616), + [anon_sym_in2] = ACTIONS(1616), + [anon_sym_loop] = ACTIONS(1616), + [anon_sym_make] = ACTIONS(1616), + [anon_sym_while] = ACTIONS(1616), + [anon_sym_do] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_else] = ACTIONS(1616), + [anon_sym_match] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_try] = ACTIONS(1616), + [anon_sym_catch] = ACTIONS(1616), + [anon_sym_return] = ACTIONS(1616), + [anon_sym_source] = ACTIONS(1616), + [anon_sym_source_DASHenv] = ACTIONS(1616), + [anon_sym_hide] = ACTIONS(1616), + [anon_sym_hide_DASHenv] = ACTIONS(1616), + [anon_sym_overlay] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1628), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1628), + [aux_sym__val_number_decimal_token1] = ACTIONS(1616), + [aux_sym__val_number_decimal_token2] = ACTIONS(1628), + [aux_sym__val_number_decimal_token3] = ACTIONS(1628), + [aux_sym__val_number_decimal_token4] = ACTIONS(1628), + [aux_sym__val_number_token1] = ACTIONS(1628), + [aux_sym__val_number_token2] = ACTIONS(1628), + [aux_sym__val_number_token3] = ACTIONS(1628), + [aux_sym__val_number_token4] = ACTIONS(1616), + [aux_sym__val_number_token5] = ACTIONS(1616), + [aux_sym__val_number_token6] = ACTIONS(1616), + [anon_sym_DQUOTE] = ACTIONS(1628), + [sym__str_single_quotes] = ACTIONS(1628), + [sym__str_back_ticks] = ACTIONS(1628), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1628), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1628), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1628), + [anon_sym_register] = ACTIONS(1616), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1717), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1628), }, - [670] = { - [sym_comment] = STATE(670), - [anon_sym_export] = ACTIONS(2469), - [anon_sym_alias] = ACTIONS(2469), - [anon_sym_let] = ACTIONS(2469), - [anon_sym_let_DASHenv] = ACTIONS(2469), - [anon_sym_mut] = ACTIONS(2469), - [anon_sym_const] = ACTIONS(2469), - [aux_sym_cmd_identifier_token1] = ACTIONS(2469), - [aux_sym_cmd_identifier_token2] = ACTIONS(2469), - [aux_sym_cmd_identifier_token3] = ACTIONS(2469), - [aux_sym_cmd_identifier_token4] = ACTIONS(2469), - [aux_sym_cmd_identifier_token5] = ACTIONS(2469), - [aux_sym_cmd_identifier_token6] = ACTIONS(2469), - [aux_sym_cmd_identifier_token7] = ACTIONS(2469), - [aux_sym_cmd_identifier_token8] = ACTIONS(2469), - [aux_sym_cmd_identifier_token9] = ACTIONS(2469), - [aux_sym_cmd_identifier_token10] = ACTIONS(2469), - [aux_sym_cmd_identifier_token11] = ACTIONS(2469), - [aux_sym_cmd_identifier_token12] = ACTIONS(2469), - [aux_sym_cmd_identifier_token13] = ACTIONS(2469), - [aux_sym_cmd_identifier_token14] = ACTIONS(2469), - [aux_sym_cmd_identifier_token15] = ACTIONS(2469), - [aux_sym_cmd_identifier_token16] = ACTIONS(2469), - [aux_sym_cmd_identifier_token17] = ACTIONS(2469), - [aux_sym_cmd_identifier_token18] = ACTIONS(2469), - [aux_sym_cmd_identifier_token19] = ACTIONS(2469), - [aux_sym_cmd_identifier_token20] = ACTIONS(2469), - [aux_sym_cmd_identifier_token21] = ACTIONS(2469), - [aux_sym_cmd_identifier_token22] = ACTIONS(2469), - [aux_sym_cmd_identifier_token23] = ACTIONS(2469), - [aux_sym_cmd_identifier_token24] = ACTIONS(2469), - [aux_sym_cmd_identifier_token25] = ACTIONS(2469), - [aux_sym_cmd_identifier_token26] = ACTIONS(2469), - [aux_sym_cmd_identifier_token27] = ACTIONS(2469), - [aux_sym_cmd_identifier_token28] = ACTIONS(2469), - [aux_sym_cmd_identifier_token29] = ACTIONS(2469), - [aux_sym_cmd_identifier_token30] = ACTIONS(2469), - [aux_sym_cmd_identifier_token31] = ACTIONS(2469), - [aux_sym_cmd_identifier_token32] = ACTIONS(2469), - [aux_sym_cmd_identifier_token33] = ACTIONS(2469), - [aux_sym_cmd_identifier_token34] = ACTIONS(2469), - [aux_sym_cmd_identifier_token35] = ACTIONS(2469), - [aux_sym_cmd_identifier_token36] = ACTIONS(2469), - [aux_sym_cmd_identifier_token37] = ACTIONS(2469), - [aux_sym_cmd_identifier_token38] = ACTIONS(2469), - [aux_sym_cmd_identifier_token39] = ACTIONS(2469), - [aux_sym_cmd_identifier_token40] = ACTIONS(2469), - [anon_sym_def] = ACTIONS(2469), - [anon_sym_export_DASHenv] = ACTIONS(2469), - [anon_sym_extern] = ACTIONS(2469), - [anon_sym_module] = ACTIONS(2469), - [anon_sym_use] = ACTIONS(2469), - [anon_sym_LPAREN] = ACTIONS(2469), - [anon_sym_COMMA] = ACTIONS(2469), - [anon_sym_DOLLAR] = ACTIONS(2469), - [anon_sym_error] = ACTIONS(2469), - [anon_sym_DASH2] = ACTIONS(2469), - [anon_sym_break] = ACTIONS(2469), - [anon_sym_continue] = ACTIONS(2469), - [anon_sym_for] = ACTIONS(2469), - [anon_sym_in2] = ACTIONS(2469), - [anon_sym_loop] = ACTIONS(2469), - [anon_sym_make] = ACTIONS(2469), - [anon_sym_while] = ACTIONS(2469), - [anon_sym_do] = ACTIONS(2469), - [anon_sym_if] = ACTIONS(2469), - [anon_sym_else] = ACTIONS(2469), - [anon_sym_match] = ACTIONS(2469), - [anon_sym_RBRACE] = ACTIONS(2469), - [anon_sym_try] = ACTIONS(2469), - [anon_sym_catch] = ACTIONS(2469), - [anon_sym_return] = ACTIONS(2469), - [anon_sym_source] = ACTIONS(2469), - [anon_sym_source_DASHenv] = ACTIONS(2469), - [anon_sym_hide] = ACTIONS(2469), - [anon_sym_hide_DASHenv] = ACTIONS(2469), - [anon_sym_overlay] = ACTIONS(2469), - [anon_sym_as] = ACTIONS(2469), - [anon_sym_PLUS2] = ACTIONS(2469), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2469), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2469), - [aux_sym__val_number_decimal_token1] = ACTIONS(2469), - [aux_sym__val_number_decimal_token2] = ACTIONS(2469), - [aux_sym__val_number_decimal_token3] = ACTIONS(2469), - [aux_sym__val_number_decimal_token4] = ACTIONS(2469), - [aux_sym__val_number_token1] = ACTIONS(2469), - [aux_sym__val_number_token2] = ACTIONS(2469), - [aux_sym__val_number_token3] = ACTIONS(2469), - [aux_sym__val_number_token4] = ACTIONS(2469), - [aux_sym__val_number_token5] = ACTIONS(2469), - [aux_sym__val_number_token6] = ACTIONS(2469), - [anon_sym_DQUOTE] = ACTIONS(2469), - [sym__str_single_quotes] = ACTIONS(2469), - [sym__str_back_ticks] = ACTIONS(2469), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2469), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2469), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2469), - [sym__entry_separator] = ACTIONS(2471), - [anon_sym_register] = ACTIONS(2469), + [641] = { + [sym_comment] = STATE(641), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_alias] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_let_DASHenv] = ACTIONS(2244), + [anon_sym_mut] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [aux_sym_cmd_identifier_token1] = ACTIONS(2244), + [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(2244), + [aux_sym_cmd_identifier_token9] = ACTIONS(2244), + [aux_sym_cmd_identifier_token10] = ACTIONS(2246), + [aux_sym_cmd_identifier_token11] = ACTIONS(2246), + [aux_sym_cmd_identifier_token12] = ACTIONS(2244), + [aux_sym_cmd_identifier_token13] = ACTIONS(2244), + [aux_sym_cmd_identifier_token14] = ACTIONS(2244), + [aux_sym_cmd_identifier_token15] = ACTIONS(2244), + [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(2244), + [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(2244), + [aux_sym_cmd_identifier_token39] = ACTIONS(2246), + [aux_sym_cmd_identifier_token40] = ACTIONS(2246), + [anon_sym_def] = ACTIONS(2244), + [anon_sym_export_DASHenv] = ACTIONS(2244), + [anon_sym_extern] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_use] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_COMMA] = ACTIONS(2246), + [anon_sym_DOLLAR] = ACTIONS(2244), + [anon_sym_error] = ACTIONS(2244), + [anon_sym_DASH2] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_in2] = ACTIONS(2244), + [anon_sym_loop] = ACTIONS(2244), + [anon_sym_make] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_else] = ACTIONS(2244), + [anon_sym_match] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2246), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_catch] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_source] = ACTIONS(2244), + [anon_sym_source_DASHenv] = ACTIONS(2244), + [anon_sym_hide] = ACTIONS(2244), + [anon_sym_hide_DASHenv] = ACTIONS(2244), + [anon_sym_overlay] = ACTIONS(2244), + [anon_sym_as] = ACTIONS(2244), + [anon_sym_LPAREN2] = ACTIONS(2246), + [anon_sym_PLUS2] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2246), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2246), + [aux_sym__val_number_decimal_token1] = ACTIONS(2244), + [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(2244), + [aux_sym__val_number_token5] = ACTIONS(2244), + [aux_sym__val_number_token6] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2246), + [sym__str_single_quotes] = ACTIONS(2246), + [sym__str_back_ticks] = ACTIONS(2246), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2246), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2246), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2246), + [anon_sym_register] = ACTIONS(2244), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2246), + }, + [642] = { + [sym_comment] = STATE(642), + [anon_sym_export] = ACTIONS(1997), + [anon_sym_alias] = ACTIONS(1997), + [anon_sym_let] = ACTIONS(1997), + [anon_sym_let_DASHenv] = ACTIONS(1997), + [anon_sym_mut] = ACTIONS(1997), + [anon_sym_const] = ACTIONS(1997), + [aux_sym_cmd_identifier_token1] = ACTIONS(1997), + [aux_sym_cmd_identifier_token2] = ACTIONS(1997), + [aux_sym_cmd_identifier_token3] = ACTIONS(1997), + [aux_sym_cmd_identifier_token4] = ACTIONS(1997), + [aux_sym_cmd_identifier_token5] = ACTIONS(1997), + [aux_sym_cmd_identifier_token6] = ACTIONS(1997), + [aux_sym_cmd_identifier_token7] = ACTIONS(1997), + [aux_sym_cmd_identifier_token8] = ACTIONS(1997), + [aux_sym_cmd_identifier_token9] = ACTIONS(1997), + [aux_sym_cmd_identifier_token10] = ACTIONS(1997), + [aux_sym_cmd_identifier_token11] = ACTIONS(1997), + [aux_sym_cmd_identifier_token12] = ACTIONS(1997), + [aux_sym_cmd_identifier_token13] = ACTIONS(1997), + [aux_sym_cmd_identifier_token14] = ACTIONS(1997), + [aux_sym_cmd_identifier_token15] = ACTIONS(1997), + [aux_sym_cmd_identifier_token16] = ACTIONS(1997), + [aux_sym_cmd_identifier_token17] = ACTIONS(1997), + [aux_sym_cmd_identifier_token18] = ACTIONS(1997), + [aux_sym_cmd_identifier_token19] = ACTIONS(1997), + [aux_sym_cmd_identifier_token20] = ACTIONS(1997), + [aux_sym_cmd_identifier_token21] = ACTIONS(1997), + [aux_sym_cmd_identifier_token22] = ACTIONS(1997), + [aux_sym_cmd_identifier_token23] = ACTIONS(1997), + [aux_sym_cmd_identifier_token24] = ACTIONS(1997), + [aux_sym_cmd_identifier_token25] = ACTIONS(1997), + [aux_sym_cmd_identifier_token26] = ACTIONS(1997), + [aux_sym_cmd_identifier_token27] = ACTIONS(1997), + [aux_sym_cmd_identifier_token28] = ACTIONS(1997), + [aux_sym_cmd_identifier_token29] = ACTIONS(1997), + [aux_sym_cmd_identifier_token30] = ACTIONS(1997), + [aux_sym_cmd_identifier_token31] = ACTIONS(1997), + [aux_sym_cmd_identifier_token32] = ACTIONS(1997), + [aux_sym_cmd_identifier_token33] = ACTIONS(1997), + [aux_sym_cmd_identifier_token34] = ACTIONS(1997), + [aux_sym_cmd_identifier_token35] = ACTIONS(1997), + [aux_sym_cmd_identifier_token36] = ACTIONS(1997), + [aux_sym_cmd_identifier_token37] = ACTIONS(1997), + [aux_sym_cmd_identifier_token38] = ACTIONS(1997), + [aux_sym_cmd_identifier_token39] = ACTIONS(1997), + [aux_sym_cmd_identifier_token40] = ACTIONS(1997), + [anon_sym_def] = ACTIONS(1997), + [anon_sym_export_DASHenv] = ACTIONS(1997), + [anon_sym_extern] = ACTIONS(1997), + [anon_sym_module] = ACTIONS(1997), + [anon_sym_use] = ACTIONS(1997), + [anon_sym_LPAREN] = ACTIONS(1997), + [anon_sym_COMMA] = ACTIONS(1997), + [anon_sym_DOLLAR] = ACTIONS(1997), + [anon_sym_error] = ACTIONS(1997), + [anon_sym_DASH2] = ACTIONS(1997), + [anon_sym_break] = ACTIONS(1997), + [anon_sym_continue] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1997), + [anon_sym_in2] = ACTIONS(1997), + [anon_sym_loop] = ACTIONS(1997), + [anon_sym_make] = ACTIONS(1997), + [anon_sym_while] = ACTIONS(1997), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_if] = ACTIONS(1997), + [anon_sym_else] = ACTIONS(1997), + [anon_sym_match] = ACTIONS(1997), + [anon_sym_RBRACE] = ACTIONS(1997), + [anon_sym_try] = ACTIONS(1997), + [anon_sym_catch] = ACTIONS(1997), + [anon_sym_return] = ACTIONS(1997), + [anon_sym_source] = ACTIONS(1997), + [anon_sym_source_DASHenv] = ACTIONS(1997), + [anon_sym_hide] = ACTIONS(1997), + [anon_sym_hide_DASHenv] = ACTIONS(1997), + [anon_sym_overlay] = ACTIONS(1997), + [anon_sym_as] = ACTIONS(1997), + [anon_sym_PLUS2] = ACTIONS(1997), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1997), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1997), + [aux_sym__val_number_decimal_token1] = ACTIONS(1997), + [aux_sym__val_number_decimal_token2] = ACTIONS(1997), + [aux_sym__val_number_decimal_token3] = ACTIONS(1997), + [aux_sym__val_number_decimal_token4] = ACTIONS(1997), + [aux_sym__val_number_token1] = ACTIONS(1997), + [aux_sym__val_number_token2] = ACTIONS(1997), + [aux_sym__val_number_token3] = ACTIONS(1997), + [aux_sym__val_number_token4] = ACTIONS(1997), + [aux_sym__val_number_token5] = ACTIONS(1997), + [aux_sym__val_number_token6] = ACTIONS(1997), + [anon_sym_DQUOTE] = ACTIONS(1997), + [sym__str_single_quotes] = ACTIONS(1997), + [sym__str_back_ticks] = ACTIONS(1997), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1997), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1997), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1997), + [sym__entry_separator] = ACTIONS(1999), + [anon_sym_register] = ACTIONS(1997), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2471), + [sym_raw_string_begin] = ACTIONS(1999), }, - [671] = { - [sym_comment] = STATE(671), - [anon_sym_export] = ACTIONS(986), - [anon_sym_alias] = ACTIONS(986), - [anon_sym_let] = ACTIONS(986), - [anon_sym_let_DASHenv] = ACTIONS(986), - [anon_sym_mut] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [aux_sym_cmd_identifier_token1] = ACTIONS(986), - [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(986), - [aux_sym_cmd_identifier_token9] = ACTIONS(986), - [aux_sym_cmd_identifier_token10] = ACTIONS(992), - [aux_sym_cmd_identifier_token11] = ACTIONS(992), - [aux_sym_cmd_identifier_token12] = ACTIONS(986), - [aux_sym_cmd_identifier_token13] = ACTIONS(986), - [aux_sym_cmd_identifier_token14] = ACTIONS(986), - [aux_sym_cmd_identifier_token15] = ACTIONS(986), - [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(986), - [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(986), - [aux_sym_cmd_identifier_token39] = ACTIONS(992), - [aux_sym_cmd_identifier_token40] = ACTIONS(992), - [anon_sym_def] = ACTIONS(986), - [anon_sym_export_DASHenv] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym_module] = ACTIONS(986), - [anon_sym_use] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_COMMA] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_error] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_in2] = ACTIONS(986), - [anon_sym_loop] = ACTIONS(986), - [anon_sym_make] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_match] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_try] = ACTIONS(986), - [anon_sym_catch] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_source] = ACTIONS(986), - [anon_sym_source_DASHenv] = ACTIONS(986), - [anon_sym_hide] = ACTIONS(986), - [anon_sym_hide_DASHenv] = ACTIONS(986), - [anon_sym_overlay] = ACTIONS(986), - [anon_sym_as] = ACTIONS(986), - [anon_sym_PLUS2] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [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(986), - [aux_sym__val_number_token5] = ACTIONS(986), - [aux_sym__val_number_token6] = ACTIONS(986), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(992), - [anon_sym_register] = ACTIONS(986), - [anon_sym_COLON2] = ACTIONS(2473), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(992), + [643] = { + [sym_comment] = STATE(643), + [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_COMMA] = 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_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_DOLLAR_SQUOTE] = ACTIONS(2425), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2425), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2425), + [sym__entry_separator] = ACTIONS(2427), + [anon_sym_register] = ACTIONS(2425), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2427), }, - [672] = { - [sym_comment] = STATE(672), - [anon_sym_export] = ACTIONS(2475), - [anon_sym_alias] = ACTIONS(2475), - [anon_sym_let] = ACTIONS(2475), - [anon_sym_let_DASHenv] = ACTIONS(2475), - [anon_sym_mut] = ACTIONS(2475), - [anon_sym_const] = ACTIONS(2475), - [aux_sym_cmd_identifier_token1] = ACTIONS(2475), - [aux_sym_cmd_identifier_token2] = ACTIONS(2475), - [aux_sym_cmd_identifier_token3] = ACTIONS(2475), - [aux_sym_cmd_identifier_token4] = ACTIONS(2475), - [aux_sym_cmd_identifier_token5] = ACTIONS(2475), - [aux_sym_cmd_identifier_token6] = ACTIONS(2475), - [aux_sym_cmd_identifier_token7] = ACTIONS(2475), - [aux_sym_cmd_identifier_token8] = ACTIONS(2475), - [aux_sym_cmd_identifier_token9] = ACTIONS(2475), - [aux_sym_cmd_identifier_token10] = ACTIONS(2475), - [aux_sym_cmd_identifier_token11] = ACTIONS(2475), - [aux_sym_cmd_identifier_token12] = ACTIONS(2475), - [aux_sym_cmd_identifier_token13] = ACTIONS(2475), - [aux_sym_cmd_identifier_token14] = ACTIONS(2475), - [aux_sym_cmd_identifier_token15] = ACTIONS(2475), - [aux_sym_cmd_identifier_token16] = ACTIONS(2475), - [aux_sym_cmd_identifier_token17] = ACTIONS(2475), - [aux_sym_cmd_identifier_token18] = ACTIONS(2475), - [aux_sym_cmd_identifier_token19] = ACTIONS(2475), - [aux_sym_cmd_identifier_token20] = ACTIONS(2475), - [aux_sym_cmd_identifier_token21] = ACTIONS(2475), - [aux_sym_cmd_identifier_token22] = ACTIONS(2475), - [aux_sym_cmd_identifier_token23] = ACTIONS(2475), - [aux_sym_cmd_identifier_token24] = ACTIONS(2475), - [aux_sym_cmd_identifier_token25] = ACTIONS(2475), - [aux_sym_cmd_identifier_token26] = ACTIONS(2475), - [aux_sym_cmd_identifier_token27] = ACTIONS(2475), - [aux_sym_cmd_identifier_token28] = ACTIONS(2475), - [aux_sym_cmd_identifier_token29] = ACTIONS(2475), - [aux_sym_cmd_identifier_token30] = ACTIONS(2475), - [aux_sym_cmd_identifier_token31] = ACTIONS(2475), - [aux_sym_cmd_identifier_token32] = ACTIONS(2475), - [aux_sym_cmd_identifier_token33] = ACTIONS(2475), - [aux_sym_cmd_identifier_token34] = ACTIONS(2475), - [aux_sym_cmd_identifier_token35] = ACTIONS(2475), - [aux_sym_cmd_identifier_token36] = ACTIONS(2475), - [aux_sym_cmd_identifier_token37] = ACTIONS(2475), - [aux_sym_cmd_identifier_token38] = ACTIONS(2475), - [aux_sym_cmd_identifier_token39] = ACTIONS(2475), - [aux_sym_cmd_identifier_token40] = ACTIONS(2475), - [anon_sym_def] = ACTIONS(2475), - [anon_sym_export_DASHenv] = ACTIONS(2475), - [anon_sym_extern] = ACTIONS(2475), - [anon_sym_module] = ACTIONS(2475), - [anon_sym_use] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2475), - [anon_sym_COMMA] = ACTIONS(2475), - [anon_sym_DOLLAR] = ACTIONS(2475), - [anon_sym_error] = ACTIONS(2475), - [anon_sym_DASH2] = ACTIONS(2475), - [anon_sym_break] = ACTIONS(2475), - [anon_sym_continue] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_in2] = ACTIONS(2475), - [anon_sym_loop] = ACTIONS(2475), - [anon_sym_make] = ACTIONS(2475), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_do] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_else] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_RBRACE] = ACTIONS(2475), - [anon_sym_try] = ACTIONS(2475), - [anon_sym_catch] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2475), - [anon_sym_source] = ACTIONS(2475), - [anon_sym_source_DASHenv] = ACTIONS(2475), - [anon_sym_hide] = ACTIONS(2475), - [anon_sym_hide_DASHenv] = ACTIONS(2475), - [anon_sym_overlay] = ACTIONS(2475), - [anon_sym_as] = ACTIONS(2475), - [anon_sym_PLUS2] = ACTIONS(2475), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2475), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2475), - [aux_sym__val_number_decimal_token1] = ACTIONS(2475), - [aux_sym__val_number_decimal_token2] = ACTIONS(2475), - [aux_sym__val_number_decimal_token3] = ACTIONS(2475), - [aux_sym__val_number_decimal_token4] = ACTIONS(2475), - [aux_sym__val_number_token1] = ACTIONS(2475), - [aux_sym__val_number_token2] = ACTIONS(2475), - [aux_sym__val_number_token3] = ACTIONS(2475), - [aux_sym__val_number_token4] = ACTIONS(2475), - [aux_sym__val_number_token5] = ACTIONS(2475), - [aux_sym__val_number_token6] = ACTIONS(2475), - [anon_sym_DQUOTE] = ACTIONS(2475), - [sym__str_single_quotes] = ACTIONS(2475), - [sym__str_back_ticks] = ACTIONS(2475), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2475), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2475), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2475), - [sym__entry_separator] = ACTIONS(2477), - [anon_sym_register] = ACTIONS(2475), + [644] = { + [sym_comment] = STATE(644), + [anon_sym_export] = ACTIONS(1833), + [anon_sym_alias] = ACTIONS(1833), + [anon_sym_let] = ACTIONS(1833), + [anon_sym_let_DASHenv] = ACTIONS(1833), + [anon_sym_mut] = ACTIONS(1833), + [anon_sym_const] = ACTIONS(1833), + [aux_sym_cmd_identifier_token1] = ACTIONS(1833), + [aux_sym_cmd_identifier_token2] = ACTIONS(1833), + [aux_sym_cmd_identifier_token3] = ACTIONS(1833), + [aux_sym_cmd_identifier_token4] = ACTIONS(1833), + [aux_sym_cmd_identifier_token5] = ACTIONS(1833), + [aux_sym_cmd_identifier_token6] = ACTIONS(1833), + [aux_sym_cmd_identifier_token7] = ACTIONS(1833), + [aux_sym_cmd_identifier_token8] = ACTIONS(1833), + [aux_sym_cmd_identifier_token9] = ACTIONS(1833), + [aux_sym_cmd_identifier_token10] = ACTIONS(1833), + [aux_sym_cmd_identifier_token11] = ACTIONS(1833), + [aux_sym_cmd_identifier_token12] = ACTIONS(1833), + [aux_sym_cmd_identifier_token13] = ACTIONS(1833), + [aux_sym_cmd_identifier_token14] = ACTIONS(1833), + [aux_sym_cmd_identifier_token15] = ACTIONS(1833), + [aux_sym_cmd_identifier_token16] = ACTIONS(1833), + [aux_sym_cmd_identifier_token17] = ACTIONS(1833), + [aux_sym_cmd_identifier_token18] = ACTIONS(1833), + [aux_sym_cmd_identifier_token19] = ACTIONS(1833), + [aux_sym_cmd_identifier_token20] = ACTIONS(1833), + [aux_sym_cmd_identifier_token21] = ACTIONS(1833), + [aux_sym_cmd_identifier_token22] = ACTIONS(1833), + [aux_sym_cmd_identifier_token23] = ACTIONS(1833), + [aux_sym_cmd_identifier_token24] = ACTIONS(1833), + [aux_sym_cmd_identifier_token25] = ACTIONS(1833), + [aux_sym_cmd_identifier_token26] = ACTIONS(1833), + [aux_sym_cmd_identifier_token27] = ACTIONS(1833), + [aux_sym_cmd_identifier_token28] = ACTIONS(1833), + [aux_sym_cmd_identifier_token29] = ACTIONS(1833), + [aux_sym_cmd_identifier_token30] = ACTIONS(1833), + [aux_sym_cmd_identifier_token31] = ACTIONS(1833), + [aux_sym_cmd_identifier_token32] = ACTIONS(1833), + [aux_sym_cmd_identifier_token33] = ACTIONS(1833), + [aux_sym_cmd_identifier_token34] = ACTIONS(1833), + [aux_sym_cmd_identifier_token35] = ACTIONS(1833), + [aux_sym_cmd_identifier_token36] = ACTIONS(1833), + [aux_sym_cmd_identifier_token37] = ACTIONS(1833), + [aux_sym_cmd_identifier_token38] = ACTIONS(1833), + [aux_sym_cmd_identifier_token39] = ACTIONS(1833), + [aux_sym_cmd_identifier_token40] = ACTIONS(1833), + [anon_sym_def] = ACTIONS(1833), + [anon_sym_export_DASHenv] = ACTIONS(1833), + [anon_sym_extern] = ACTIONS(1833), + [anon_sym_module] = ACTIONS(1833), + [anon_sym_use] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1833), + [anon_sym_COMMA] = ACTIONS(1833), + [anon_sym_DOLLAR] = ACTIONS(1833), + [anon_sym_error] = ACTIONS(1833), + [anon_sym_DASH2] = ACTIONS(1833), + [anon_sym_break] = ACTIONS(1833), + [anon_sym_continue] = ACTIONS(1833), + [anon_sym_for] = ACTIONS(1833), + [anon_sym_in2] = ACTIONS(1833), + [anon_sym_loop] = ACTIONS(1833), + [anon_sym_make] = ACTIONS(1833), + [anon_sym_while] = ACTIONS(1833), + [anon_sym_do] = ACTIONS(1833), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_else] = ACTIONS(1833), + [anon_sym_match] = ACTIONS(1833), + [anon_sym_RBRACE] = ACTIONS(1833), + [anon_sym_try] = ACTIONS(1833), + [anon_sym_catch] = ACTIONS(1833), + [anon_sym_return] = ACTIONS(1833), + [anon_sym_source] = ACTIONS(1833), + [anon_sym_source_DASHenv] = ACTIONS(1833), + [anon_sym_hide] = ACTIONS(1833), + [anon_sym_hide_DASHenv] = ACTIONS(1833), + [anon_sym_overlay] = ACTIONS(1833), + [anon_sym_as] = ACTIONS(1833), + [anon_sym_PLUS2] = ACTIONS(1833), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1833), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1833), + [aux_sym__val_number_decimal_token1] = ACTIONS(1833), + [aux_sym__val_number_decimal_token2] = ACTIONS(1833), + [aux_sym__val_number_decimal_token3] = ACTIONS(1833), + [aux_sym__val_number_decimal_token4] = ACTIONS(1833), + [aux_sym__val_number_token1] = ACTIONS(1833), + [aux_sym__val_number_token2] = ACTIONS(1833), + [aux_sym__val_number_token3] = ACTIONS(1833), + [aux_sym__val_number_token4] = ACTIONS(1833), + [aux_sym__val_number_token5] = ACTIONS(1833), + [aux_sym__val_number_token6] = ACTIONS(1833), + [anon_sym_DQUOTE] = ACTIONS(1833), + [sym__str_single_quotes] = ACTIONS(1833), + [sym__str_back_ticks] = ACTIONS(1833), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1833), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1833), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1833), + [sym__entry_separator] = ACTIONS(1835), + [anon_sym_register] = ACTIONS(1833), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2477), + [sym_raw_string_begin] = ACTIONS(1835), }, - [673] = { - [sym_comment] = STATE(673), - [anon_sym_export] = ACTIONS(2479), - [anon_sym_alias] = ACTIONS(2479), - [anon_sym_let] = ACTIONS(2479), - [anon_sym_let_DASHenv] = ACTIONS(2479), - [anon_sym_mut] = ACTIONS(2479), - [anon_sym_const] = ACTIONS(2479), - [aux_sym_cmd_identifier_token1] = ACTIONS(2479), - [aux_sym_cmd_identifier_token2] = ACTIONS(2479), - [aux_sym_cmd_identifier_token3] = ACTIONS(2479), - [aux_sym_cmd_identifier_token4] = ACTIONS(2479), - [aux_sym_cmd_identifier_token5] = ACTIONS(2479), - [aux_sym_cmd_identifier_token6] = ACTIONS(2479), - [aux_sym_cmd_identifier_token7] = ACTIONS(2479), - [aux_sym_cmd_identifier_token8] = ACTIONS(2479), - [aux_sym_cmd_identifier_token9] = ACTIONS(2479), - [aux_sym_cmd_identifier_token10] = ACTIONS(2479), - [aux_sym_cmd_identifier_token11] = ACTIONS(2479), - [aux_sym_cmd_identifier_token12] = ACTIONS(2479), - [aux_sym_cmd_identifier_token13] = ACTIONS(2479), - [aux_sym_cmd_identifier_token14] = ACTIONS(2479), - [aux_sym_cmd_identifier_token15] = ACTIONS(2479), - [aux_sym_cmd_identifier_token16] = ACTIONS(2479), - [aux_sym_cmd_identifier_token17] = ACTIONS(2479), - [aux_sym_cmd_identifier_token18] = ACTIONS(2479), - [aux_sym_cmd_identifier_token19] = ACTIONS(2479), - [aux_sym_cmd_identifier_token20] = ACTIONS(2479), - [aux_sym_cmd_identifier_token21] = ACTIONS(2479), - [aux_sym_cmd_identifier_token22] = ACTIONS(2479), - [aux_sym_cmd_identifier_token23] = ACTIONS(2479), - [aux_sym_cmd_identifier_token24] = ACTIONS(2479), - [aux_sym_cmd_identifier_token25] = ACTIONS(2479), - [aux_sym_cmd_identifier_token26] = ACTIONS(2479), - [aux_sym_cmd_identifier_token27] = ACTIONS(2479), - [aux_sym_cmd_identifier_token28] = ACTIONS(2479), - [aux_sym_cmd_identifier_token29] = ACTIONS(2479), - [aux_sym_cmd_identifier_token30] = ACTIONS(2479), - [aux_sym_cmd_identifier_token31] = ACTIONS(2479), - [aux_sym_cmd_identifier_token32] = ACTIONS(2479), - [aux_sym_cmd_identifier_token33] = ACTIONS(2479), - [aux_sym_cmd_identifier_token34] = ACTIONS(2479), - [aux_sym_cmd_identifier_token35] = ACTIONS(2479), - [aux_sym_cmd_identifier_token36] = ACTIONS(2479), - [aux_sym_cmd_identifier_token37] = ACTIONS(2479), - [aux_sym_cmd_identifier_token38] = ACTIONS(2479), - [aux_sym_cmd_identifier_token39] = ACTIONS(2479), - [aux_sym_cmd_identifier_token40] = ACTIONS(2479), - [anon_sym_def] = ACTIONS(2479), - [anon_sym_export_DASHenv] = ACTIONS(2479), - [anon_sym_extern] = ACTIONS(2479), - [anon_sym_module] = ACTIONS(2479), - [anon_sym_use] = ACTIONS(2479), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_COMMA] = ACTIONS(2479), - [anon_sym_DOLLAR] = ACTIONS(2479), - [anon_sym_error] = ACTIONS(2479), - [anon_sym_DASH2] = ACTIONS(2479), - [anon_sym_break] = ACTIONS(2479), - [anon_sym_continue] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_in2] = ACTIONS(2479), - [anon_sym_loop] = ACTIONS(2479), - [anon_sym_make] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_else] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_RBRACE] = ACTIONS(2479), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_catch] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_source] = ACTIONS(2479), - [anon_sym_source_DASHenv] = ACTIONS(2479), - [anon_sym_hide] = ACTIONS(2479), - [anon_sym_hide_DASHenv] = ACTIONS(2479), - [anon_sym_overlay] = ACTIONS(2479), - [anon_sym_as] = ACTIONS(2479), - [anon_sym_PLUS2] = ACTIONS(2479), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2479), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2479), - [aux_sym__val_number_decimal_token1] = ACTIONS(2479), - [aux_sym__val_number_decimal_token2] = ACTIONS(2479), - [aux_sym__val_number_decimal_token3] = ACTIONS(2479), - [aux_sym__val_number_decimal_token4] = ACTIONS(2479), - [aux_sym__val_number_token1] = ACTIONS(2479), - [aux_sym__val_number_token2] = ACTIONS(2479), - [aux_sym__val_number_token3] = ACTIONS(2479), - [aux_sym__val_number_token4] = ACTIONS(2479), - [aux_sym__val_number_token5] = ACTIONS(2479), - [aux_sym__val_number_token6] = ACTIONS(2479), - [anon_sym_DQUOTE] = ACTIONS(2479), - [sym__str_single_quotes] = ACTIONS(2479), - [sym__str_back_ticks] = ACTIONS(2479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2479), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2479), - [sym__entry_separator] = ACTIONS(2481), - [anon_sym_register] = ACTIONS(2479), + [645] = { + [sym_comment] = STATE(645), + [anon_sym_export] = ACTIONS(1897), + [anon_sym_alias] = ACTIONS(1897), + [anon_sym_let] = ACTIONS(1897), + [anon_sym_let_DASHenv] = ACTIONS(1897), + [anon_sym_mut] = ACTIONS(1897), + [anon_sym_const] = ACTIONS(1897), + [aux_sym_cmd_identifier_token1] = ACTIONS(1897), + [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(1897), + [aux_sym_cmd_identifier_token9] = ACTIONS(1897), + [aux_sym_cmd_identifier_token10] = ACTIONS(1897), + [aux_sym_cmd_identifier_token11] = ACTIONS(1897), + [aux_sym_cmd_identifier_token12] = ACTIONS(1897), + [aux_sym_cmd_identifier_token13] = ACTIONS(1897), + [aux_sym_cmd_identifier_token14] = ACTIONS(1897), + [aux_sym_cmd_identifier_token15] = ACTIONS(1897), + [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(1897), + [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(1897), + [aux_sym_cmd_identifier_token39] = ACTIONS(1897), + [aux_sym_cmd_identifier_token40] = ACTIONS(1897), + [anon_sym_def] = ACTIONS(1897), + [anon_sym_export_DASHenv] = ACTIONS(1897), + [anon_sym_extern] = ACTIONS(1897), + [anon_sym_module] = ACTIONS(1897), + [anon_sym_use] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_COMMA] = ACTIONS(1897), + [anon_sym_DOLLAR] = ACTIONS(1897), + [anon_sym_error] = ACTIONS(1897), + [anon_sym_DASH2] = ACTIONS(1897), + [anon_sym_break] = ACTIONS(1897), + [anon_sym_continue] = ACTIONS(1897), + [anon_sym_for] = ACTIONS(1897), + [anon_sym_in2] = ACTIONS(1897), + [anon_sym_loop] = ACTIONS(1897), + [anon_sym_make] = ACTIONS(1897), + [anon_sym_while] = ACTIONS(1897), + [anon_sym_do] = ACTIONS(1897), + [anon_sym_if] = ACTIONS(1897), + [anon_sym_else] = ACTIONS(1897), + [anon_sym_match] = ACTIONS(1897), + [anon_sym_RBRACE] = ACTIONS(1897), + [anon_sym_try] = ACTIONS(1897), + [anon_sym_catch] = ACTIONS(1897), + [anon_sym_return] = ACTIONS(1897), + [anon_sym_source] = ACTIONS(1897), + [anon_sym_source_DASHenv] = ACTIONS(1897), + [anon_sym_hide] = ACTIONS(1897), + [anon_sym_hide_DASHenv] = ACTIONS(1897), + [anon_sym_overlay] = ACTIONS(1897), + [anon_sym_as] = ACTIONS(1897), + [anon_sym_PLUS2] = ACTIONS(1897), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1897), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1897), + [aux_sym__val_number_decimal_token1] = ACTIONS(1897), + [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_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_DOT_DOT_DOT_LBRACE] = ACTIONS(1897), + [sym__entry_separator] = ACTIONS(1899), + [anon_sym_register] = ACTIONS(1897), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2481), + [sym_raw_string_begin] = ACTIONS(1899), }, - [674] = { - [sym_comment] = STATE(674), - [aux_sym__multiple_types_repeat1] = STATE(657), - [anon_sym_export] = ACTIONS(2314), - [anon_sym_alias] = ACTIONS(2314), - [anon_sym_let] = ACTIONS(2314), - [anon_sym_let_DASHenv] = ACTIONS(2314), - [anon_sym_mut] = ACTIONS(2314), - [anon_sym_const] = ACTIONS(2314), - [aux_sym_cmd_identifier_token1] = ACTIONS(2314), - [aux_sym_cmd_identifier_token2] = ACTIONS(2314), - [aux_sym_cmd_identifier_token3] = ACTIONS(2314), - [aux_sym_cmd_identifier_token4] = ACTIONS(2314), - [aux_sym_cmd_identifier_token5] = ACTIONS(2314), - [aux_sym_cmd_identifier_token6] = ACTIONS(2314), - [aux_sym_cmd_identifier_token7] = ACTIONS(2314), - [aux_sym_cmd_identifier_token8] = ACTIONS(2314), - [aux_sym_cmd_identifier_token9] = ACTIONS(2314), - [aux_sym_cmd_identifier_token10] = ACTIONS(2314), - [aux_sym_cmd_identifier_token11] = ACTIONS(2314), - [aux_sym_cmd_identifier_token12] = ACTIONS(2314), - [aux_sym_cmd_identifier_token13] = ACTIONS(2314), - [aux_sym_cmd_identifier_token14] = ACTIONS(2314), - [aux_sym_cmd_identifier_token15] = ACTIONS(2314), - [aux_sym_cmd_identifier_token16] = ACTIONS(2314), - [aux_sym_cmd_identifier_token17] = ACTIONS(2314), - [aux_sym_cmd_identifier_token18] = ACTIONS(2314), - [aux_sym_cmd_identifier_token19] = ACTIONS(2314), - [aux_sym_cmd_identifier_token20] = ACTIONS(2314), - [aux_sym_cmd_identifier_token21] = ACTIONS(2314), - [aux_sym_cmd_identifier_token22] = ACTIONS(2314), - [aux_sym_cmd_identifier_token23] = ACTIONS(2314), - [aux_sym_cmd_identifier_token24] = ACTIONS(2314), - [aux_sym_cmd_identifier_token25] = ACTIONS(2314), - [aux_sym_cmd_identifier_token26] = ACTIONS(2314), - [aux_sym_cmd_identifier_token27] = ACTIONS(2314), - [aux_sym_cmd_identifier_token28] = ACTIONS(2314), - [aux_sym_cmd_identifier_token29] = ACTIONS(2314), - [aux_sym_cmd_identifier_token30] = ACTIONS(2314), - [aux_sym_cmd_identifier_token31] = ACTIONS(2314), - [aux_sym_cmd_identifier_token32] = ACTIONS(2314), - [aux_sym_cmd_identifier_token33] = ACTIONS(2314), - [aux_sym_cmd_identifier_token34] = ACTIONS(2314), - [aux_sym_cmd_identifier_token35] = ACTIONS(2314), - [aux_sym_cmd_identifier_token36] = ACTIONS(2314), - [aux_sym_cmd_identifier_token37] = ACTIONS(2314), - [aux_sym_cmd_identifier_token38] = ACTIONS(2314), - [aux_sym_cmd_identifier_token39] = ACTIONS(2314), - [aux_sym_cmd_identifier_token40] = ACTIONS(2314), - [anon_sym_def] = ACTIONS(2314), - [anon_sym_export_DASHenv] = ACTIONS(2314), - [anon_sym_extern] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2314), - [anon_sym_use] = ACTIONS(2314), - [anon_sym_LPAREN] = ACTIONS(2314), - [anon_sym_DOLLAR] = ACTIONS(2314), - [anon_sym_error] = ACTIONS(2314), - [anon_sym_DASH2] = ACTIONS(2314), - [anon_sym_break] = ACTIONS(2314), - [anon_sym_continue] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(2314), - [anon_sym_in2] = ACTIONS(2314), - [anon_sym_loop] = ACTIONS(2314), - [anon_sym_make] = ACTIONS(2314), - [anon_sym_while] = ACTIONS(2314), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_if] = ACTIONS(2314), - [anon_sym_else] = ACTIONS(2314), - [anon_sym_match] = ACTIONS(2314), - [anon_sym_RBRACE] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2314), - [anon_sym_catch] = ACTIONS(2314), - [anon_sym_return] = ACTIONS(2314), - [anon_sym_source] = ACTIONS(2314), - [anon_sym_source_DASHenv] = ACTIONS(2314), - [anon_sym_hide] = ACTIONS(2314), - [anon_sym_hide_DASHenv] = ACTIONS(2314), - [anon_sym_overlay] = ACTIONS(2314), - [anon_sym_as] = ACTIONS(2314), - [anon_sym_PLUS2] = ACTIONS(2314), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2314), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2314), - [aux_sym__val_number_decimal_token1] = ACTIONS(2314), - [aux_sym__val_number_decimal_token2] = ACTIONS(2314), - [aux_sym__val_number_decimal_token3] = ACTIONS(2314), - [aux_sym__val_number_decimal_token4] = ACTIONS(2314), - [aux_sym__val_number_token1] = ACTIONS(2314), - [aux_sym__val_number_token2] = ACTIONS(2314), - [aux_sym__val_number_token3] = ACTIONS(2314), - [aux_sym__val_number_token4] = ACTIONS(2314), - [aux_sym__val_number_token5] = ACTIONS(2314), - [aux_sym__val_number_token6] = ACTIONS(2314), - [anon_sym_DQUOTE] = ACTIONS(2314), - [sym__str_single_quotes] = ACTIONS(2314), - [sym__str_back_ticks] = ACTIONS(2314), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2314), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2314), - [sym__entry_separator] = ACTIONS(2210), - [anon_sym_register] = ACTIONS(2314), + [646] = { + [sym_comment] = STATE(646), + [anon_sym_export] = ACTIONS(2001), + [anon_sym_alias] = ACTIONS(2001), + [anon_sym_let] = ACTIONS(2001), + [anon_sym_let_DASHenv] = ACTIONS(2001), + [anon_sym_mut] = ACTIONS(2001), + [anon_sym_const] = ACTIONS(2001), + [aux_sym_cmd_identifier_token1] = ACTIONS(2001), + [aux_sym_cmd_identifier_token2] = ACTIONS(2001), + [aux_sym_cmd_identifier_token3] = ACTIONS(2001), + [aux_sym_cmd_identifier_token4] = ACTIONS(2001), + [aux_sym_cmd_identifier_token5] = ACTIONS(2001), + [aux_sym_cmd_identifier_token6] = ACTIONS(2001), + [aux_sym_cmd_identifier_token7] = ACTIONS(2001), + [aux_sym_cmd_identifier_token8] = ACTIONS(2001), + [aux_sym_cmd_identifier_token9] = ACTIONS(2001), + [aux_sym_cmd_identifier_token10] = ACTIONS(2001), + [aux_sym_cmd_identifier_token11] = ACTIONS(2001), + [aux_sym_cmd_identifier_token12] = ACTIONS(2001), + [aux_sym_cmd_identifier_token13] = ACTIONS(2001), + [aux_sym_cmd_identifier_token14] = ACTIONS(2001), + [aux_sym_cmd_identifier_token15] = ACTIONS(2001), + [aux_sym_cmd_identifier_token16] = ACTIONS(2001), + [aux_sym_cmd_identifier_token17] = ACTIONS(2001), + [aux_sym_cmd_identifier_token18] = ACTIONS(2001), + [aux_sym_cmd_identifier_token19] = ACTIONS(2001), + [aux_sym_cmd_identifier_token20] = ACTIONS(2001), + [aux_sym_cmd_identifier_token21] = ACTIONS(2001), + [aux_sym_cmd_identifier_token22] = ACTIONS(2001), + [aux_sym_cmd_identifier_token23] = ACTIONS(2001), + [aux_sym_cmd_identifier_token24] = ACTIONS(2001), + [aux_sym_cmd_identifier_token25] = ACTIONS(2001), + [aux_sym_cmd_identifier_token26] = ACTIONS(2001), + [aux_sym_cmd_identifier_token27] = ACTIONS(2001), + [aux_sym_cmd_identifier_token28] = ACTIONS(2001), + [aux_sym_cmd_identifier_token29] = ACTIONS(2001), + [aux_sym_cmd_identifier_token30] = ACTIONS(2001), + [aux_sym_cmd_identifier_token31] = ACTIONS(2001), + [aux_sym_cmd_identifier_token32] = ACTIONS(2001), + [aux_sym_cmd_identifier_token33] = ACTIONS(2001), + [aux_sym_cmd_identifier_token34] = ACTIONS(2001), + [aux_sym_cmd_identifier_token35] = ACTIONS(2001), + [aux_sym_cmd_identifier_token36] = ACTIONS(2001), + [aux_sym_cmd_identifier_token37] = ACTIONS(2001), + [aux_sym_cmd_identifier_token38] = ACTIONS(2001), + [aux_sym_cmd_identifier_token39] = ACTIONS(2001), + [aux_sym_cmd_identifier_token40] = ACTIONS(2001), + [anon_sym_def] = ACTIONS(2001), + [anon_sym_export_DASHenv] = ACTIONS(2001), + [anon_sym_extern] = ACTIONS(2001), + [anon_sym_module] = ACTIONS(2001), + [anon_sym_use] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_COMMA] = ACTIONS(2001), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_error] = ACTIONS(2001), + [anon_sym_DASH2] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_in2] = ACTIONS(2001), + [anon_sym_loop] = ACTIONS(2001), + [anon_sym_make] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2001), + [anon_sym_do] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_else] = ACTIONS(2001), + [anon_sym_match] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_try] = ACTIONS(2001), + [anon_sym_catch] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_source] = ACTIONS(2001), + [anon_sym_source_DASHenv] = ACTIONS(2001), + [anon_sym_hide] = ACTIONS(2001), + [anon_sym_hide_DASHenv] = ACTIONS(2001), + [anon_sym_overlay] = ACTIONS(2001), + [anon_sym_as] = ACTIONS(2001), + [anon_sym_PLUS2] = ACTIONS(2001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2001), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2001), + [aux_sym__val_number_decimal_token1] = ACTIONS(2001), + [aux_sym__val_number_decimal_token2] = ACTIONS(2001), + [aux_sym__val_number_decimal_token3] = ACTIONS(2001), + [aux_sym__val_number_decimal_token4] = ACTIONS(2001), + [aux_sym__val_number_token1] = ACTIONS(2001), + [aux_sym__val_number_token2] = ACTIONS(2001), + [aux_sym__val_number_token3] = ACTIONS(2001), + [aux_sym__val_number_token4] = ACTIONS(2001), + [aux_sym__val_number_token5] = ACTIONS(2001), + [aux_sym__val_number_token6] = ACTIONS(2001), + [anon_sym_DQUOTE] = ACTIONS(2001), + [sym__str_single_quotes] = ACTIONS(2001), + [sym__str_back_ticks] = ACTIONS(2001), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2001), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2001), + [sym__entry_separator] = ACTIONS(2003), + [anon_sym_register] = ACTIONS(2001), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2318), + [sym_raw_string_begin] = ACTIONS(2003), }, - [675] = { - [sym_comment] = STATE(675), - [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_COMMA] = ACTIONS(1885), - [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(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_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_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_DOLLAR_SQUOTE] = ACTIONS(1885), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1885), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1885), - [anon_sym_register] = ACTIONS(1883), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1885), - }, - [676] = { - [sym_comment] = STATE(676), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_alias] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_let_DASHenv] = ACTIONS(2350), - [anon_sym_mut] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(2350), - [aux_sym_cmd_identifier_token1] = ACTIONS(2350), - [aux_sym_cmd_identifier_token2] = ACTIONS(2352), - [aux_sym_cmd_identifier_token3] = ACTIONS(2352), - [aux_sym_cmd_identifier_token4] = ACTIONS(2352), - [aux_sym_cmd_identifier_token5] = ACTIONS(2352), - [aux_sym_cmd_identifier_token6] = ACTIONS(2352), - [aux_sym_cmd_identifier_token7] = ACTIONS(2352), - [aux_sym_cmd_identifier_token8] = ACTIONS(2350), - [aux_sym_cmd_identifier_token9] = ACTIONS(2350), - [aux_sym_cmd_identifier_token10] = ACTIONS(2352), - [aux_sym_cmd_identifier_token11] = ACTIONS(2352), - [aux_sym_cmd_identifier_token12] = ACTIONS(2350), - [aux_sym_cmd_identifier_token13] = ACTIONS(2350), - [aux_sym_cmd_identifier_token14] = ACTIONS(2350), - [aux_sym_cmd_identifier_token15] = ACTIONS(2350), - [aux_sym_cmd_identifier_token16] = ACTIONS(2352), - [aux_sym_cmd_identifier_token17] = ACTIONS(2352), - [aux_sym_cmd_identifier_token18] = ACTIONS(2352), - [aux_sym_cmd_identifier_token19] = ACTIONS(2352), - [aux_sym_cmd_identifier_token20] = ACTIONS(2352), - [aux_sym_cmd_identifier_token21] = ACTIONS(2352), - [aux_sym_cmd_identifier_token22] = ACTIONS(2352), - [aux_sym_cmd_identifier_token23] = ACTIONS(2352), - [aux_sym_cmd_identifier_token24] = ACTIONS(2352), - [aux_sym_cmd_identifier_token25] = ACTIONS(2352), - [aux_sym_cmd_identifier_token26] = ACTIONS(2352), - [aux_sym_cmd_identifier_token27] = ACTIONS(2352), - [aux_sym_cmd_identifier_token28] = ACTIONS(2352), - [aux_sym_cmd_identifier_token29] = ACTIONS(2352), - [aux_sym_cmd_identifier_token30] = ACTIONS(2352), - [aux_sym_cmd_identifier_token31] = ACTIONS(2352), - [aux_sym_cmd_identifier_token32] = ACTIONS(2352), - [aux_sym_cmd_identifier_token33] = ACTIONS(2352), - [aux_sym_cmd_identifier_token34] = ACTIONS(2350), - [aux_sym_cmd_identifier_token35] = ACTIONS(2352), - [aux_sym_cmd_identifier_token36] = ACTIONS(2352), - [aux_sym_cmd_identifier_token37] = ACTIONS(2352), - [aux_sym_cmd_identifier_token38] = ACTIONS(2350), - [aux_sym_cmd_identifier_token39] = ACTIONS(2352), - [aux_sym_cmd_identifier_token40] = ACTIONS(2352), - [anon_sym_def] = ACTIONS(2350), - [anon_sym_export_DASHenv] = ACTIONS(2350), - [anon_sym_extern] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_use] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2352), - [anon_sym_COMMA] = ACTIONS(2352), - [anon_sym_DOLLAR] = ACTIONS(2350), - [anon_sym_error] = ACTIONS(2350), - [anon_sym_DASH2] = ACTIONS(2350), - [anon_sym_break] = ACTIONS(2350), - [anon_sym_continue] = ACTIONS(2350), - [anon_sym_for] = ACTIONS(2350), - [anon_sym_in2] = ACTIONS(2350), - [anon_sym_loop] = ACTIONS(2350), - [anon_sym_make] = ACTIONS(2350), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_do] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2350), - [anon_sym_else] = ACTIONS(2350), - [anon_sym_match] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2352), - [anon_sym_try] = ACTIONS(2350), - [anon_sym_catch] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2350), - [anon_sym_source] = ACTIONS(2350), - [anon_sym_source_DASHenv] = ACTIONS(2350), - [anon_sym_hide] = ACTIONS(2350), - [anon_sym_hide_DASHenv] = ACTIONS(2350), - [anon_sym_overlay] = ACTIONS(2350), - [anon_sym_as] = ACTIONS(2350), - [anon_sym_PLUS2] = ACTIONS(2350), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2352), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2352), - [aux_sym__val_number_decimal_token1] = ACTIONS(2350), - [aux_sym__val_number_decimal_token2] = ACTIONS(2352), - [aux_sym__val_number_decimal_token3] = ACTIONS(2352), - [aux_sym__val_number_decimal_token4] = ACTIONS(2352), - [aux_sym__val_number_token1] = ACTIONS(2352), - [aux_sym__val_number_token2] = ACTIONS(2352), - [aux_sym__val_number_token3] = ACTIONS(2352), - [aux_sym__val_number_token4] = ACTIONS(2350), - [aux_sym__val_number_token5] = ACTIONS(2350), - [aux_sym__val_number_token6] = ACTIONS(2350), - [anon_sym_DQUOTE] = ACTIONS(2352), - [sym__str_single_quotes] = ACTIONS(2352), - [sym__str_back_ticks] = ACTIONS(2352), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2352), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2352), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2352), - [anon_sym_register] = ACTIONS(2350), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2352), - }, - [677] = { - [sym_comment] = STATE(677), - [anon_sym_export] = ACTIONS(2354), - [anon_sym_alias] = ACTIONS(2354), - [anon_sym_let] = ACTIONS(2354), - [anon_sym_let_DASHenv] = ACTIONS(2354), - [anon_sym_mut] = ACTIONS(2354), - [anon_sym_const] = ACTIONS(2354), - [aux_sym_cmd_identifier_token1] = ACTIONS(2354), - [aux_sym_cmd_identifier_token2] = ACTIONS(2356), - [aux_sym_cmd_identifier_token3] = ACTIONS(2356), - [aux_sym_cmd_identifier_token4] = ACTIONS(2356), - [aux_sym_cmd_identifier_token5] = ACTIONS(2356), - [aux_sym_cmd_identifier_token6] = ACTIONS(2356), - [aux_sym_cmd_identifier_token7] = ACTIONS(2356), - [aux_sym_cmd_identifier_token8] = ACTIONS(2354), - [aux_sym_cmd_identifier_token9] = ACTIONS(2354), - [aux_sym_cmd_identifier_token10] = ACTIONS(2356), - [aux_sym_cmd_identifier_token11] = ACTIONS(2356), - [aux_sym_cmd_identifier_token12] = ACTIONS(2354), - [aux_sym_cmd_identifier_token13] = ACTIONS(2354), - [aux_sym_cmd_identifier_token14] = ACTIONS(2354), - [aux_sym_cmd_identifier_token15] = ACTIONS(2354), - [aux_sym_cmd_identifier_token16] = ACTIONS(2356), - [aux_sym_cmd_identifier_token17] = ACTIONS(2356), - [aux_sym_cmd_identifier_token18] = ACTIONS(2356), - [aux_sym_cmd_identifier_token19] = ACTIONS(2356), - [aux_sym_cmd_identifier_token20] = ACTIONS(2356), - [aux_sym_cmd_identifier_token21] = ACTIONS(2356), - [aux_sym_cmd_identifier_token22] = ACTIONS(2356), - [aux_sym_cmd_identifier_token23] = ACTIONS(2356), - [aux_sym_cmd_identifier_token24] = ACTIONS(2356), - [aux_sym_cmd_identifier_token25] = ACTIONS(2356), - [aux_sym_cmd_identifier_token26] = ACTIONS(2356), - [aux_sym_cmd_identifier_token27] = ACTIONS(2356), - [aux_sym_cmd_identifier_token28] = ACTIONS(2356), - [aux_sym_cmd_identifier_token29] = ACTIONS(2356), - [aux_sym_cmd_identifier_token30] = ACTIONS(2356), - [aux_sym_cmd_identifier_token31] = ACTIONS(2356), - [aux_sym_cmd_identifier_token32] = ACTIONS(2356), - [aux_sym_cmd_identifier_token33] = ACTIONS(2356), - [aux_sym_cmd_identifier_token34] = ACTIONS(2354), - [aux_sym_cmd_identifier_token35] = ACTIONS(2356), - [aux_sym_cmd_identifier_token36] = ACTIONS(2356), - [aux_sym_cmd_identifier_token37] = ACTIONS(2356), - [aux_sym_cmd_identifier_token38] = ACTIONS(2354), - [aux_sym_cmd_identifier_token39] = ACTIONS(2356), - [aux_sym_cmd_identifier_token40] = ACTIONS(2356), - [anon_sym_def] = ACTIONS(2354), - [anon_sym_export_DASHenv] = ACTIONS(2354), - [anon_sym_extern] = ACTIONS(2354), - [anon_sym_module] = ACTIONS(2354), - [anon_sym_use] = ACTIONS(2354), - [anon_sym_LPAREN] = ACTIONS(2356), - [anon_sym_COMMA] = ACTIONS(2356), - [anon_sym_DOLLAR] = ACTIONS(2354), - [anon_sym_error] = ACTIONS(2354), - [anon_sym_DASH2] = ACTIONS(2354), - [anon_sym_break] = ACTIONS(2354), - [anon_sym_continue] = ACTIONS(2354), - [anon_sym_for] = ACTIONS(2354), - [anon_sym_in2] = ACTIONS(2354), - [anon_sym_loop] = ACTIONS(2354), - [anon_sym_make] = ACTIONS(2354), - [anon_sym_while] = ACTIONS(2354), - [anon_sym_do] = ACTIONS(2354), - [anon_sym_if] = ACTIONS(2354), - [anon_sym_else] = ACTIONS(2354), - [anon_sym_match] = ACTIONS(2354), - [anon_sym_RBRACE] = ACTIONS(2356), - [anon_sym_try] = ACTIONS(2354), - [anon_sym_catch] = ACTIONS(2354), - [anon_sym_return] = ACTIONS(2354), - [anon_sym_source] = ACTIONS(2354), - [anon_sym_source_DASHenv] = ACTIONS(2354), - [anon_sym_hide] = ACTIONS(2354), - [anon_sym_hide_DASHenv] = ACTIONS(2354), - [anon_sym_overlay] = ACTIONS(2354), - [anon_sym_as] = ACTIONS(2354), - [anon_sym_PLUS2] = ACTIONS(2354), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2356), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2356), - [aux_sym__val_number_decimal_token1] = ACTIONS(2354), - [aux_sym__val_number_decimal_token2] = ACTIONS(2356), - [aux_sym__val_number_decimal_token3] = ACTIONS(2356), - [aux_sym__val_number_decimal_token4] = ACTIONS(2356), - [aux_sym__val_number_token1] = ACTIONS(2356), - [aux_sym__val_number_token2] = ACTIONS(2356), - [aux_sym__val_number_token3] = ACTIONS(2356), - [aux_sym__val_number_token4] = ACTIONS(2354), - [aux_sym__val_number_token5] = ACTIONS(2354), - [aux_sym__val_number_token6] = ACTIONS(2354), - [anon_sym_DQUOTE] = ACTIONS(2356), - [sym__str_single_quotes] = ACTIONS(2356), - [sym__str_back_ticks] = ACTIONS(2356), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2356), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2356), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2356), - [anon_sym_register] = ACTIONS(2354), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2356), - }, - [678] = { - [sym_comment] = STATE(678), - [anon_sym_export] = ACTIONS(2358), - [anon_sym_alias] = ACTIONS(2358), - [anon_sym_let] = ACTIONS(2358), - [anon_sym_let_DASHenv] = ACTIONS(2358), - [anon_sym_mut] = ACTIONS(2358), - [anon_sym_const] = ACTIONS(2358), - [aux_sym_cmd_identifier_token1] = ACTIONS(2358), - [aux_sym_cmd_identifier_token2] = ACTIONS(2360), - [aux_sym_cmd_identifier_token3] = ACTIONS(2360), - [aux_sym_cmd_identifier_token4] = ACTIONS(2360), - [aux_sym_cmd_identifier_token5] = ACTIONS(2360), - [aux_sym_cmd_identifier_token6] = ACTIONS(2360), - [aux_sym_cmd_identifier_token7] = ACTIONS(2360), - [aux_sym_cmd_identifier_token8] = ACTIONS(2358), - [aux_sym_cmd_identifier_token9] = ACTIONS(2358), - [aux_sym_cmd_identifier_token10] = ACTIONS(2360), - [aux_sym_cmd_identifier_token11] = ACTIONS(2360), - [aux_sym_cmd_identifier_token12] = ACTIONS(2358), - [aux_sym_cmd_identifier_token13] = ACTIONS(2358), - [aux_sym_cmd_identifier_token14] = ACTIONS(2358), - [aux_sym_cmd_identifier_token15] = ACTIONS(2358), - [aux_sym_cmd_identifier_token16] = ACTIONS(2360), - [aux_sym_cmd_identifier_token17] = ACTIONS(2360), - [aux_sym_cmd_identifier_token18] = ACTIONS(2360), - [aux_sym_cmd_identifier_token19] = ACTIONS(2360), - [aux_sym_cmd_identifier_token20] = ACTIONS(2360), - [aux_sym_cmd_identifier_token21] = ACTIONS(2360), - [aux_sym_cmd_identifier_token22] = ACTIONS(2360), - [aux_sym_cmd_identifier_token23] = ACTIONS(2360), - [aux_sym_cmd_identifier_token24] = ACTIONS(2360), - [aux_sym_cmd_identifier_token25] = ACTIONS(2360), - [aux_sym_cmd_identifier_token26] = ACTIONS(2360), - [aux_sym_cmd_identifier_token27] = ACTIONS(2360), - [aux_sym_cmd_identifier_token28] = ACTIONS(2360), - [aux_sym_cmd_identifier_token29] = ACTIONS(2360), - [aux_sym_cmd_identifier_token30] = ACTIONS(2360), - [aux_sym_cmd_identifier_token31] = ACTIONS(2360), - [aux_sym_cmd_identifier_token32] = ACTIONS(2360), - [aux_sym_cmd_identifier_token33] = ACTIONS(2360), - [aux_sym_cmd_identifier_token34] = ACTIONS(2358), - [aux_sym_cmd_identifier_token35] = ACTIONS(2360), - [aux_sym_cmd_identifier_token36] = ACTIONS(2360), - [aux_sym_cmd_identifier_token37] = ACTIONS(2360), - [aux_sym_cmd_identifier_token38] = ACTIONS(2358), - [aux_sym_cmd_identifier_token39] = ACTIONS(2360), - [aux_sym_cmd_identifier_token40] = ACTIONS(2360), - [anon_sym_def] = ACTIONS(2358), - [anon_sym_export_DASHenv] = ACTIONS(2358), - [anon_sym_extern] = ACTIONS(2358), - [anon_sym_module] = ACTIONS(2358), - [anon_sym_use] = ACTIONS(2358), - [anon_sym_LPAREN] = ACTIONS(2360), - [anon_sym_COMMA] = ACTIONS(2360), - [anon_sym_DOLLAR] = ACTIONS(2358), - [anon_sym_error] = ACTIONS(2358), - [anon_sym_DASH2] = ACTIONS(2358), - [anon_sym_break] = ACTIONS(2358), - [anon_sym_continue] = ACTIONS(2358), - [anon_sym_for] = ACTIONS(2358), - [anon_sym_in2] = ACTIONS(2358), - [anon_sym_loop] = ACTIONS(2358), - [anon_sym_make] = ACTIONS(2358), - [anon_sym_while] = ACTIONS(2358), - [anon_sym_do] = ACTIONS(2358), - [anon_sym_if] = ACTIONS(2358), - [anon_sym_else] = ACTIONS(2358), - [anon_sym_match] = ACTIONS(2358), - [anon_sym_RBRACE] = ACTIONS(2360), - [anon_sym_try] = ACTIONS(2358), - [anon_sym_catch] = ACTIONS(2358), - [anon_sym_return] = ACTIONS(2358), - [anon_sym_source] = ACTIONS(2358), - [anon_sym_source_DASHenv] = ACTIONS(2358), - [anon_sym_hide] = ACTIONS(2358), - [anon_sym_hide_DASHenv] = ACTIONS(2358), - [anon_sym_overlay] = ACTIONS(2358), - [anon_sym_as] = ACTIONS(2358), - [anon_sym_PLUS2] = ACTIONS(2358), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2360), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2360), - [aux_sym__val_number_decimal_token1] = ACTIONS(2358), - [aux_sym__val_number_decimal_token2] = ACTIONS(2360), - [aux_sym__val_number_decimal_token3] = ACTIONS(2360), - [aux_sym__val_number_decimal_token4] = ACTIONS(2360), - [aux_sym__val_number_token1] = ACTIONS(2360), - [aux_sym__val_number_token2] = ACTIONS(2360), - [aux_sym__val_number_token3] = ACTIONS(2360), - [aux_sym__val_number_token4] = ACTIONS(2358), - [aux_sym__val_number_token5] = ACTIONS(2358), - [aux_sym__val_number_token6] = ACTIONS(2358), - [anon_sym_DQUOTE] = ACTIONS(2360), - [sym__str_single_quotes] = ACTIONS(2360), - [sym__str_back_ticks] = ACTIONS(2360), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2360), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2360), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2360), - [anon_sym_register] = ACTIONS(2358), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2360), - }, - [679] = { - [sym_comment] = STATE(679), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_alias] = ACTIONS(2362), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_let_DASHenv] = ACTIONS(2362), - [anon_sym_mut] = ACTIONS(2362), - [anon_sym_const] = ACTIONS(2362), - [aux_sym_cmd_identifier_token1] = ACTIONS(2362), - [aux_sym_cmd_identifier_token2] = ACTIONS(2364), - [aux_sym_cmd_identifier_token3] = ACTIONS(2364), - [aux_sym_cmd_identifier_token4] = ACTIONS(2364), - [aux_sym_cmd_identifier_token5] = ACTIONS(2364), - [aux_sym_cmd_identifier_token6] = ACTIONS(2364), - [aux_sym_cmd_identifier_token7] = ACTIONS(2364), - [aux_sym_cmd_identifier_token8] = ACTIONS(2362), - [aux_sym_cmd_identifier_token9] = ACTIONS(2362), - [aux_sym_cmd_identifier_token10] = ACTIONS(2364), - [aux_sym_cmd_identifier_token11] = ACTIONS(2364), - [aux_sym_cmd_identifier_token12] = ACTIONS(2362), - [aux_sym_cmd_identifier_token13] = ACTIONS(2362), - [aux_sym_cmd_identifier_token14] = ACTIONS(2362), - [aux_sym_cmd_identifier_token15] = ACTIONS(2362), - [aux_sym_cmd_identifier_token16] = ACTIONS(2364), - [aux_sym_cmd_identifier_token17] = ACTIONS(2364), - [aux_sym_cmd_identifier_token18] = ACTIONS(2364), - [aux_sym_cmd_identifier_token19] = ACTIONS(2364), - [aux_sym_cmd_identifier_token20] = ACTIONS(2364), - [aux_sym_cmd_identifier_token21] = ACTIONS(2364), - [aux_sym_cmd_identifier_token22] = ACTIONS(2364), - [aux_sym_cmd_identifier_token23] = ACTIONS(2364), - [aux_sym_cmd_identifier_token24] = ACTIONS(2364), - [aux_sym_cmd_identifier_token25] = ACTIONS(2364), - [aux_sym_cmd_identifier_token26] = ACTIONS(2364), - [aux_sym_cmd_identifier_token27] = ACTIONS(2364), - [aux_sym_cmd_identifier_token28] = ACTIONS(2364), - [aux_sym_cmd_identifier_token29] = ACTIONS(2364), - [aux_sym_cmd_identifier_token30] = ACTIONS(2364), - [aux_sym_cmd_identifier_token31] = ACTIONS(2364), - [aux_sym_cmd_identifier_token32] = ACTIONS(2364), - [aux_sym_cmd_identifier_token33] = ACTIONS(2364), - [aux_sym_cmd_identifier_token34] = ACTIONS(2362), - [aux_sym_cmd_identifier_token35] = ACTIONS(2364), - [aux_sym_cmd_identifier_token36] = ACTIONS(2364), - [aux_sym_cmd_identifier_token37] = ACTIONS(2364), - [aux_sym_cmd_identifier_token38] = ACTIONS(2362), - [aux_sym_cmd_identifier_token39] = ACTIONS(2364), - [aux_sym_cmd_identifier_token40] = ACTIONS(2364), - [anon_sym_def] = ACTIONS(2362), - [anon_sym_export_DASHenv] = ACTIONS(2362), - [anon_sym_extern] = ACTIONS(2362), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_use] = ACTIONS(2362), - [anon_sym_LPAREN] = ACTIONS(2364), - [anon_sym_COMMA] = ACTIONS(2364), - [anon_sym_DOLLAR] = ACTIONS(2362), - [anon_sym_error] = ACTIONS(2362), - [anon_sym_DASH2] = ACTIONS(2362), - [anon_sym_break] = ACTIONS(2362), - [anon_sym_continue] = ACTIONS(2362), - [anon_sym_for] = ACTIONS(2362), - [anon_sym_in2] = ACTIONS(2362), - [anon_sym_loop] = ACTIONS(2362), - [anon_sym_make] = ACTIONS(2362), - [anon_sym_while] = ACTIONS(2362), - [anon_sym_do] = ACTIONS(2362), - [anon_sym_if] = ACTIONS(2362), - [anon_sym_else] = ACTIONS(2362), - [anon_sym_match] = ACTIONS(2362), - [anon_sym_RBRACE] = ACTIONS(2364), - [anon_sym_try] = ACTIONS(2362), - [anon_sym_catch] = ACTIONS(2362), - [anon_sym_return] = ACTIONS(2362), - [anon_sym_source] = ACTIONS(2362), - [anon_sym_source_DASHenv] = ACTIONS(2362), - [anon_sym_hide] = ACTIONS(2362), - [anon_sym_hide_DASHenv] = ACTIONS(2362), - [anon_sym_overlay] = ACTIONS(2362), - [anon_sym_as] = ACTIONS(2362), - [anon_sym_PLUS2] = ACTIONS(2362), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2364), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2364), - [aux_sym__val_number_decimal_token1] = ACTIONS(2362), - [aux_sym__val_number_decimal_token2] = ACTIONS(2364), - [aux_sym__val_number_decimal_token3] = ACTIONS(2364), - [aux_sym__val_number_decimal_token4] = ACTIONS(2364), - [aux_sym__val_number_token1] = ACTIONS(2364), - [aux_sym__val_number_token2] = ACTIONS(2364), - [aux_sym__val_number_token3] = ACTIONS(2364), - [aux_sym__val_number_token4] = ACTIONS(2362), - [aux_sym__val_number_token5] = ACTIONS(2362), - [aux_sym__val_number_token6] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2364), - [sym__str_single_quotes] = ACTIONS(2364), - [sym__str_back_ticks] = ACTIONS(2364), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2364), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2364), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2364), - [anon_sym_register] = ACTIONS(2362), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2364), - }, - [680] = { - [sym_comment] = STATE(680), - [anon_sym_export] = ACTIONS(2366), - [anon_sym_alias] = ACTIONS(2366), - [anon_sym_let] = ACTIONS(2366), - [anon_sym_let_DASHenv] = ACTIONS(2366), - [anon_sym_mut] = ACTIONS(2366), - [anon_sym_const] = ACTIONS(2366), - [aux_sym_cmd_identifier_token1] = ACTIONS(2366), - [aux_sym_cmd_identifier_token2] = ACTIONS(2368), - [aux_sym_cmd_identifier_token3] = ACTIONS(2368), - [aux_sym_cmd_identifier_token4] = ACTIONS(2368), - [aux_sym_cmd_identifier_token5] = ACTIONS(2368), - [aux_sym_cmd_identifier_token6] = ACTIONS(2368), - [aux_sym_cmd_identifier_token7] = ACTIONS(2368), - [aux_sym_cmd_identifier_token8] = ACTIONS(2366), - [aux_sym_cmd_identifier_token9] = ACTIONS(2366), - [aux_sym_cmd_identifier_token10] = ACTIONS(2368), - [aux_sym_cmd_identifier_token11] = ACTIONS(2368), - [aux_sym_cmd_identifier_token12] = ACTIONS(2366), - [aux_sym_cmd_identifier_token13] = ACTIONS(2366), - [aux_sym_cmd_identifier_token14] = ACTIONS(2366), - [aux_sym_cmd_identifier_token15] = ACTIONS(2366), - [aux_sym_cmd_identifier_token16] = ACTIONS(2368), - [aux_sym_cmd_identifier_token17] = ACTIONS(2368), - [aux_sym_cmd_identifier_token18] = ACTIONS(2368), - [aux_sym_cmd_identifier_token19] = ACTIONS(2368), - [aux_sym_cmd_identifier_token20] = ACTIONS(2368), - [aux_sym_cmd_identifier_token21] = ACTIONS(2368), - [aux_sym_cmd_identifier_token22] = ACTIONS(2368), - [aux_sym_cmd_identifier_token23] = ACTIONS(2368), - [aux_sym_cmd_identifier_token24] = ACTIONS(2368), - [aux_sym_cmd_identifier_token25] = ACTIONS(2368), - [aux_sym_cmd_identifier_token26] = ACTIONS(2368), - [aux_sym_cmd_identifier_token27] = ACTIONS(2368), - [aux_sym_cmd_identifier_token28] = ACTIONS(2368), - [aux_sym_cmd_identifier_token29] = ACTIONS(2368), - [aux_sym_cmd_identifier_token30] = ACTIONS(2368), - [aux_sym_cmd_identifier_token31] = ACTIONS(2368), - [aux_sym_cmd_identifier_token32] = ACTIONS(2368), - [aux_sym_cmd_identifier_token33] = ACTIONS(2368), - [aux_sym_cmd_identifier_token34] = ACTIONS(2366), - [aux_sym_cmd_identifier_token35] = ACTIONS(2368), - [aux_sym_cmd_identifier_token36] = ACTIONS(2368), - [aux_sym_cmd_identifier_token37] = ACTIONS(2368), - [aux_sym_cmd_identifier_token38] = ACTIONS(2366), - [aux_sym_cmd_identifier_token39] = ACTIONS(2368), - [aux_sym_cmd_identifier_token40] = ACTIONS(2368), - [anon_sym_def] = ACTIONS(2366), - [anon_sym_export_DASHenv] = ACTIONS(2366), - [anon_sym_extern] = ACTIONS(2366), - [anon_sym_module] = ACTIONS(2366), - [anon_sym_use] = ACTIONS(2366), - [anon_sym_LPAREN] = ACTIONS(2368), - [anon_sym_COMMA] = ACTIONS(2368), - [anon_sym_DOLLAR] = ACTIONS(2366), - [anon_sym_error] = ACTIONS(2366), - [anon_sym_DASH2] = ACTIONS(2366), - [anon_sym_break] = ACTIONS(2366), - [anon_sym_continue] = ACTIONS(2366), - [anon_sym_for] = ACTIONS(2366), - [anon_sym_in2] = ACTIONS(2366), - [anon_sym_loop] = ACTIONS(2366), - [anon_sym_make] = ACTIONS(2366), - [anon_sym_while] = ACTIONS(2366), - [anon_sym_do] = ACTIONS(2366), - [anon_sym_if] = ACTIONS(2366), - [anon_sym_else] = ACTIONS(2366), - [anon_sym_match] = ACTIONS(2366), - [anon_sym_RBRACE] = ACTIONS(2368), - [anon_sym_try] = ACTIONS(2366), - [anon_sym_catch] = ACTIONS(2366), - [anon_sym_return] = ACTIONS(2366), - [anon_sym_source] = ACTIONS(2366), - [anon_sym_source_DASHenv] = ACTIONS(2366), - [anon_sym_hide] = ACTIONS(2366), - [anon_sym_hide_DASHenv] = ACTIONS(2366), - [anon_sym_overlay] = ACTIONS(2366), - [anon_sym_as] = ACTIONS(2366), - [anon_sym_PLUS2] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2368), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2368), - [aux_sym__val_number_decimal_token1] = ACTIONS(2366), - [aux_sym__val_number_decimal_token2] = ACTIONS(2368), - [aux_sym__val_number_decimal_token3] = ACTIONS(2368), - [aux_sym__val_number_decimal_token4] = ACTIONS(2368), - [aux_sym__val_number_token1] = ACTIONS(2368), - [aux_sym__val_number_token2] = ACTIONS(2368), - [aux_sym__val_number_token3] = ACTIONS(2368), - [aux_sym__val_number_token4] = ACTIONS(2366), - [aux_sym__val_number_token5] = ACTIONS(2366), - [aux_sym__val_number_token6] = ACTIONS(2366), - [anon_sym_DQUOTE] = ACTIONS(2368), - [sym__str_single_quotes] = ACTIONS(2368), - [sym__str_back_ticks] = ACTIONS(2368), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2368), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2368), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2368), - [anon_sym_register] = ACTIONS(2366), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2368), - }, - [681] = { - [sym_comment] = STATE(681), - [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(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(998), - [aux_sym_cmd_identifier_token9] = ACTIONS(998), - [aux_sym_cmd_identifier_token10] = ACTIONS(994), - [aux_sym_cmd_identifier_token11] = ACTIONS(994), - [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(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(998), - [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(998), - [aux_sym_cmd_identifier_token39] = ACTIONS(994), - [aux_sym_cmd_identifier_token40] = ACTIONS(994), - [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(994), - [anon_sym_COMMA] = ACTIONS(994), - [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(994), - [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_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(994), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(994), - [aux_sym__val_number_decimal_token1] = ACTIONS(998), - [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(998), - [aux_sym__val_number_token5] = ACTIONS(998), - [aux_sym__val_number_token6] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym__str_single_quotes] = ACTIONS(994), - [sym__str_back_ticks] = ACTIONS(994), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(994), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(994), - [anon_sym_register] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(994), - }, - [682] = { - [sym_comment] = STATE(682), - [anon_sym_export] = ACTIONS(1977), - [anon_sym_alias] = ACTIONS(1977), - [anon_sym_let] = ACTIONS(1977), - [anon_sym_let_DASHenv] = ACTIONS(1977), - [anon_sym_mut] = ACTIONS(1977), - [anon_sym_const] = ACTIONS(1977), - [aux_sym_cmd_identifier_token1] = ACTIONS(1977), - [aux_sym_cmd_identifier_token2] = ACTIONS(1983), - [aux_sym_cmd_identifier_token3] = ACTIONS(1983), - [aux_sym_cmd_identifier_token4] = ACTIONS(1983), - [aux_sym_cmd_identifier_token5] = ACTIONS(1983), - [aux_sym_cmd_identifier_token6] = ACTIONS(1983), - [aux_sym_cmd_identifier_token7] = ACTIONS(1983), - [aux_sym_cmd_identifier_token8] = ACTIONS(1977), - [aux_sym_cmd_identifier_token9] = ACTIONS(1977), - [aux_sym_cmd_identifier_token10] = ACTIONS(1983), - [aux_sym_cmd_identifier_token11] = ACTIONS(1983), - [aux_sym_cmd_identifier_token12] = ACTIONS(1977), - [aux_sym_cmd_identifier_token13] = ACTIONS(1977), - [aux_sym_cmd_identifier_token14] = ACTIONS(1977), - [aux_sym_cmd_identifier_token15] = ACTIONS(1977), - [aux_sym_cmd_identifier_token16] = ACTIONS(1983), - [aux_sym_cmd_identifier_token17] = ACTIONS(1983), - [aux_sym_cmd_identifier_token18] = ACTIONS(1983), - [aux_sym_cmd_identifier_token19] = ACTIONS(1983), - [aux_sym_cmd_identifier_token20] = ACTIONS(1983), - [aux_sym_cmd_identifier_token21] = ACTIONS(1983), - [aux_sym_cmd_identifier_token22] = ACTIONS(1983), - [aux_sym_cmd_identifier_token23] = ACTIONS(1983), - [aux_sym_cmd_identifier_token24] = ACTIONS(1983), - [aux_sym_cmd_identifier_token25] = ACTIONS(1983), - [aux_sym_cmd_identifier_token26] = ACTIONS(1983), - [aux_sym_cmd_identifier_token27] = ACTIONS(1983), - [aux_sym_cmd_identifier_token28] = ACTIONS(1983), - [aux_sym_cmd_identifier_token29] = ACTIONS(1983), - [aux_sym_cmd_identifier_token30] = ACTIONS(1983), - [aux_sym_cmd_identifier_token31] = ACTIONS(1983), - [aux_sym_cmd_identifier_token32] = ACTIONS(1983), - [aux_sym_cmd_identifier_token33] = ACTIONS(1983), - [aux_sym_cmd_identifier_token34] = ACTIONS(1977), - [aux_sym_cmd_identifier_token35] = ACTIONS(1983), - [aux_sym_cmd_identifier_token36] = ACTIONS(1983), - [aux_sym_cmd_identifier_token37] = ACTIONS(1983), - [aux_sym_cmd_identifier_token38] = ACTIONS(1977), - [aux_sym_cmd_identifier_token39] = ACTIONS(1983), - [aux_sym_cmd_identifier_token40] = ACTIONS(1983), - [anon_sym_def] = ACTIONS(1977), - [anon_sym_export_DASHenv] = ACTIONS(1977), - [anon_sym_extern] = ACTIONS(1977), - [anon_sym_module] = ACTIONS(1977), - [anon_sym_use] = ACTIONS(1977), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_COMMA] = ACTIONS(1983), - [anon_sym_DOLLAR] = ACTIONS(1977), - [anon_sym_error] = ACTIONS(1977), - [anon_sym_DASH2] = ACTIONS(1977), - [anon_sym_break] = ACTIONS(1977), - [anon_sym_continue] = ACTIONS(1977), - [anon_sym_for] = ACTIONS(1977), - [anon_sym_in2] = ACTIONS(1977), - [anon_sym_loop] = ACTIONS(1977), - [anon_sym_make] = ACTIONS(1977), - [anon_sym_while] = ACTIONS(1977), - [anon_sym_do] = ACTIONS(1977), - [anon_sym_if] = ACTIONS(1977), - [anon_sym_else] = ACTIONS(1977), - [anon_sym_match] = ACTIONS(1977), - [anon_sym_RBRACE] = ACTIONS(1983), - [anon_sym_try] = ACTIONS(1977), - [anon_sym_catch] = ACTIONS(1977), - [anon_sym_return] = ACTIONS(1977), - [anon_sym_source] = ACTIONS(1977), - [anon_sym_source_DASHenv] = ACTIONS(1977), - [anon_sym_hide] = ACTIONS(1977), - [anon_sym_hide_DASHenv] = ACTIONS(1977), - [anon_sym_overlay] = ACTIONS(1977), - [anon_sym_as] = ACTIONS(1977), - [anon_sym_PLUS2] = ACTIONS(1977), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1983), - [aux_sym__val_number_decimal_token1] = ACTIONS(1977), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1983), - [aux_sym__val_number_decimal_token4] = ACTIONS(1983), - [aux_sym__val_number_token1] = ACTIONS(1983), - [aux_sym__val_number_token2] = ACTIONS(1983), - [aux_sym__val_number_token3] = ACTIONS(1983), - [aux_sym__val_number_token4] = ACTIONS(1977), - [aux_sym__val_number_token5] = ACTIONS(1977), - [aux_sym__val_number_token6] = ACTIONS(1977), - [anon_sym_DQUOTE] = ACTIONS(1983), - [sym__str_single_quotes] = ACTIONS(1983), - [sym__str_back_ticks] = ACTIONS(1983), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1983), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1983), - [anon_sym_register] = ACTIONS(1977), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1983), - }, - [683] = { - [sym_comment] = STATE(683), - [anon_sym_export] = ACTIONS(966), - [anon_sym_alias] = ACTIONS(966), - [anon_sym_let] = ACTIONS(966), - [anon_sym_let_DASHenv] = ACTIONS(966), - [anon_sym_mut] = ACTIONS(966), - [anon_sym_const] = ACTIONS(966), - [aux_sym_cmd_identifier_token1] = ACTIONS(966), - [aux_sym_cmd_identifier_token2] = ACTIONS(968), - [aux_sym_cmd_identifier_token3] = ACTIONS(968), - [aux_sym_cmd_identifier_token4] = ACTIONS(968), - [aux_sym_cmd_identifier_token5] = ACTIONS(968), - [aux_sym_cmd_identifier_token6] = ACTIONS(968), - [aux_sym_cmd_identifier_token7] = ACTIONS(968), - [aux_sym_cmd_identifier_token8] = ACTIONS(966), - [aux_sym_cmd_identifier_token9] = ACTIONS(966), - [aux_sym_cmd_identifier_token10] = ACTIONS(968), - [aux_sym_cmd_identifier_token11] = ACTIONS(968), - [aux_sym_cmd_identifier_token12] = ACTIONS(966), - [aux_sym_cmd_identifier_token13] = ACTIONS(966), - [aux_sym_cmd_identifier_token14] = ACTIONS(966), - [aux_sym_cmd_identifier_token15] = ACTIONS(966), - [aux_sym_cmd_identifier_token16] = ACTIONS(968), - [aux_sym_cmd_identifier_token17] = ACTIONS(968), - [aux_sym_cmd_identifier_token18] = ACTIONS(968), - [aux_sym_cmd_identifier_token19] = ACTIONS(968), - [aux_sym_cmd_identifier_token20] = ACTIONS(968), - [aux_sym_cmd_identifier_token21] = ACTIONS(968), - [aux_sym_cmd_identifier_token22] = ACTIONS(968), - [aux_sym_cmd_identifier_token23] = ACTIONS(968), - [aux_sym_cmd_identifier_token24] = ACTIONS(968), - [aux_sym_cmd_identifier_token25] = ACTIONS(968), - [aux_sym_cmd_identifier_token26] = ACTIONS(968), - [aux_sym_cmd_identifier_token27] = ACTIONS(968), - [aux_sym_cmd_identifier_token28] = ACTIONS(968), - [aux_sym_cmd_identifier_token29] = ACTIONS(968), - [aux_sym_cmd_identifier_token30] = ACTIONS(968), - [aux_sym_cmd_identifier_token31] = ACTIONS(968), - [aux_sym_cmd_identifier_token32] = ACTIONS(968), - [aux_sym_cmd_identifier_token33] = ACTIONS(968), - [aux_sym_cmd_identifier_token34] = ACTIONS(966), - [aux_sym_cmd_identifier_token35] = ACTIONS(968), - [aux_sym_cmd_identifier_token36] = ACTIONS(968), - [aux_sym_cmd_identifier_token37] = ACTIONS(968), - [aux_sym_cmd_identifier_token38] = ACTIONS(966), - [aux_sym_cmd_identifier_token39] = ACTIONS(968), - [aux_sym_cmd_identifier_token40] = ACTIONS(968), - [anon_sym_def] = ACTIONS(966), - [anon_sym_export_DASHenv] = ACTIONS(966), - [anon_sym_extern] = ACTIONS(966), - [anon_sym_module] = ACTIONS(966), - [anon_sym_use] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_COMMA] = ACTIONS(968), - [anon_sym_DOLLAR] = ACTIONS(966), - [anon_sym_error] = ACTIONS(966), - [anon_sym_DASH2] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_in2] = ACTIONS(966), - [anon_sym_loop] = ACTIONS(966), - [anon_sym_make] = ACTIONS(966), - [anon_sym_while] = ACTIONS(966), - [anon_sym_do] = ACTIONS(966), - [anon_sym_if] = ACTIONS(966), - [anon_sym_else] = ACTIONS(966), - [anon_sym_match] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_try] = ACTIONS(966), - [anon_sym_catch] = ACTIONS(966), - [anon_sym_return] = ACTIONS(966), - [anon_sym_source] = ACTIONS(966), - [anon_sym_source_DASHenv] = ACTIONS(966), - [anon_sym_hide] = ACTIONS(966), - [anon_sym_hide_DASHenv] = ACTIONS(966), - [anon_sym_overlay] = ACTIONS(966), - [anon_sym_as] = ACTIONS(966), - [anon_sym_PLUS2] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(968), - [aux_sym__val_number_decimal_token1] = ACTIONS(966), - [aux_sym__val_number_decimal_token2] = ACTIONS(968), - [aux_sym__val_number_decimal_token3] = ACTIONS(968), - [aux_sym__val_number_decimal_token4] = ACTIONS(968), - [aux_sym__val_number_token1] = ACTIONS(968), - [aux_sym__val_number_token2] = ACTIONS(968), - [aux_sym__val_number_token3] = ACTIONS(968), - [aux_sym__val_number_token4] = ACTIONS(966), - [aux_sym__val_number_token5] = ACTIONS(966), - [aux_sym__val_number_token6] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(968), - [sym__str_single_quotes] = ACTIONS(968), - [sym__str_back_ticks] = ACTIONS(968), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(968), - [anon_sym_register] = ACTIONS(966), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(968), - }, - [684] = { - [sym_comment] = STATE(684), - [anon_sym_export] = ACTIONS(1959), - [anon_sym_alias] = ACTIONS(1959), - [anon_sym_let] = ACTIONS(1959), - [anon_sym_let_DASHenv] = ACTIONS(1959), - [anon_sym_mut] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(1959), - [aux_sym_cmd_identifier_token1] = ACTIONS(1959), - [aux_sym_cmd_identifier_token2] = ACTIONS(1961), - [aux_sym_cmd_identifier_token3] = ACTIONS(1961), - [aux_sym_cmd_identifier_token4] = ACTIONS(1961), - [aux_sym_cmd_identifier_token5] = ACTIONS(1961), - [aux_sym_cmd_identifier_token6] = ACTIONS(1961), - [aux_sym_cmd_identifier_token7] = ACTIONS(1961), - [aux_sym_cmd_identifier_token8] = ACTIONS(1959), - [aux_sym_cmd_identifier_token9] = ACTIONS(1959), - [aux_sym_cmd_identifier_token10] = ACTIONS(1961), - [aux_sym_cmd_identifier_token11] = ACTIONS(1961), - [aux_sym_cmd_identifier_token12] = ACTIONS(1959), - [aux_sym_cmd_identifier_token13] = ACTIONS(1959), - [aux_sym_cmd_identifier_token14] = ACTIONS(1959), - [aux_sym_cmd_identifier_token15] = ACTIONS(1959), - [aux_sym_cmd_identifier_token16] = ACTIONS(1961), - [aux_sym_cmd_identifier_token17] = ACTIONS(1961), - [aux_sym_cmd_identifier_token18] = ACTIONS(1961), - [aux_sym_cmd_identifier_token19] = ACTIONS(1961), - [aux_sym_cmd_identifier_token20] = ACTIONS(1961), - [aux_sym_cmd_identifier_token21] = ACTIONS(1961), - [aux_sym_cmd_identifier_token22] = ACTIONS(1961), - [aux_sym_cmd_identifier_token23] = ACTIONS(1961), - [aux_sym_cmd_identifier_token24] = ACTIONS(1961), - [aux_sym_cmd_identifier_token25] = ACTIONS(1961), - [aux_sym_cmd_identifier_token26] = ACTIONS(1961), - [aux_sym_cmd_identifier_token27] = ACTIONS(1961), - [aux_sym_cmd_identifier_token28] = ACTIONS(1961), - [aux_sym_cmd_identifier_token29] = ACTIONS(1961), - [aux_sym_cmd_identifier_token30] = ACTIONS(1961), - [aux_sym_cmd_identifier_token31] = ACTIONS(1961), - [aux_sym_cmd_identifier_token32] = ACTIONS(1961), - [aux_sym_cmd_identifier_token33] = ACTIONS(1961), - [aux_sym_cmd_identifier_token34] = ACTIONS(1959), - [aux_sym_cmd_identifier_token35] = ACTIONS(1961), - [aux_sym_cmd_identifier_token36] = ACTIONS(1961), - [aux_sym_cmd_identifier_token37] = ACTIONS(1961), - [aux_sym_cmd_identifier_token38] = ACTIONS(1959), - [aux_sym_cmd_identifier_token39] = ACTIONS(1961), - [aux_sym_cmd_identifier_token40] = ACTIONS(1961), - [anon_sym_def] = ACTIONS(1959), - [anon_sym_export_DASHenv] = ACTIONS(1959), - [anon_sym_extern] = ACTIONS(1959), - [anon_sym_module] = ACTIONS(1959), - [anon_sym_use] = ACTIONS(1959), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_COMMA] = ACTIONS(1961), - [anon_sym_DOLLAR] = ACTIONS(1959), - [anon_sym_error] = ACTIONS(1959), - [anon_sym_DASH2] = ACTIONS(1959), - [anon_sym_break] = ACTIONS(1959), - [anon_sym_continue] = ACTIONS(1959), - [anon_sym_for] = ACTIONS(1959), - [anon_sym_in2] = ACTIONS(1959), - [anon_sym_loop] = ACTIONS(1959), - [anon_sym_make] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1959), - [anon_sym_do] = ACTIONS(1959), - [anon_sym_if] = ACTIONS(1959), - [anon_sym_else] = ACTIONS(1959), - [anon_sym_match] = ACTIONS(1959), - [anon_sym_RBRACE] = ACTIONS(1961), - [anon_sym_try] = ACTIONS(1959), - [anon_sym_catch] = ACTIONS(1959), - [anon_sym_return] = ACTIONS(1959), - [anon_sym_source] = ACTIONS(1959), - [anon_sym_source_DASHenv] = ACTIONS(1959), - [anon_sym_hide] = ACTIONS(1959), - [anon_sym_hide_DASHenv] = ACTIONS(1959), - [anon_sym_overlay] = ACTIONS(1959), - [anon_sym_as] = ACTIONS(1959), - [anon_sym_PLUS2] = ACTIONS(1959), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1961), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1961), - [aux_sym__val_number_decimal_token1] = ACTIONS(1959), - [aux_sym__val_number_decimal_token2] = ACTIONS(1961), - [aux_sym__val_number_decimal_token3] = ACTIONS(1961), - [aux_sym__val_number_decimal_token4] = ACTIONS(1961), - [aux_sym__val_number_token1] = ACTIONS(1961), - [aux_sym__val_number_token2] = ACTIONS(1961), - [aux_sym__val_number_token3] = ACTIONS(1961), - [aux_sym__val_number_token4] = ACTIONS(1959), - [aux_sym__val_number_token5] = ACTIONS(1959), - [aux_sym__val_number_token6] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(1961), - [sym__str_single_quotes] = ACTIONS(1961), - [sym__str_back_ticks] = ACTIONS(1961), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1961), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1961), - [anon_sym_register] = ACTIONS(1959), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1961), - }, - [685] = { - [sym_comment] = STATE(685), - [anon_sym_export] = ACTIONS(2370), - [anon_sym_alias] = ACTIONS(2370), - [anon_sym_let] = ACTIONS(2370), - [anon_sym_let_DASHenv] = ACTIONS(2370), - [anon_sym_mut] = ACTIONS(2370), - [anon_sym_const] = ACTIONS(2370), - [aux_sym_cmd_identifier_token1] = ACTIONS(2370), - [aux_sym_cmd_identifier_token2] = ACTIONS(2372), - [aux_sym_cmd_identifier_token3] = ACTIONS(2372), - [aux_sym_cmd_identifier_token4] = ACTIONS(2372), - [aux_sym_cmd_identifier_token5] = ACTIONS(2372), - [aux_sym_cmd_identifier_token6] = ACTIONS(2372), - [aux_sym_cmd_identifier_token7] = ACTIONS(2372), - [aux_sym_cmd_identifier_token8] = ACTIONS(2370), - [aux_sym_cmd_identifier_token9] = ACTIONS(2370), - [aux_sym_cmd_identifier_token10] = ACTIONS(2372), - [aux_sym_cmd_identifier_token11] = ACTIONS(2372), - [aux_sym_cmd_identifier_token12] = ACTIONS(2370), - [aux_sym_cmd_identifier_token13] = ACTIONS(2370), - [aux_sym_cmd_identifier_token14] = ACTIONS(2370), - [aux_sym_cmd_identifier_token15] = ACTIONS(2370), - [aux_sym_cmd_identifier_token16] = ACTIONS(2372), - [aux_sym_cmd_identifier_token17] = ACTIONS(2372), - [aux_sym_cmd_identifier_token18] = ACTIONS(2372), - [aux_sym_cmd_identifier_token19] = ACTIONS(2372), - [aux_sym_cmd_identifier_token20] = ACTIONS(2372), - [aux_sym_cmd_identifier_token21] = ACTIONS(2372), - [aux_sym_cmd_identifier_token22] = ACTIONS(2372), - [aux_sym_cmd_identifier_token23] = ACTIONS(2372), - [aux_sym_cmd_identifier_token24] = ACTIONS(2372), - [aux_sym_cmd_identifier_token25] = ACTIONS(2372), - [aux_sym_cmd_identifier_token26] = ACTIONS(2372), - [aux_sym_cmd_identifier_token27] = ACTIONS(2372), - [aux_sym_cmd_identifier_token28] = ACTIONS(2372), - [aux_sym_cmd_identifier_token29] = ACTIONS(2372), - [aux_sym_cmd_identifier_token30] = ACTIONS(2372), - [aux_sym_cmd_identifier_token31] = ACTIONS(2372), - [aux_sym_cmd_identifier_token32] = ACTIONS(2372), - [aux_sym_cmd_identifier_token33] = ACTIONS(2372), - [aux_sym_cmd_identifier_token34] = ACTIONS(2370), - [aux_sym_cmd_identifier_token35] = ACTIONS(2372), - [aux_sym_cmd_identifier_token36] = ACTIONS(2372), - [aux_sym_cmd_identifier_token37] = ACTIONS(2372), - [aux_sym_cmd_identifier_token38] = ACTIONS(2370), - [aux_sym_cmd_identifier_token39] = ACTIONS(2372), - [aux_sym_cmd_identifier_token40] = ACTIONS(2372), - [anon_sym_def] = ACTIONS(2370), - [anon_sym_export_DASHenv] = ACTIONS(2370), - [anon_sym_extern] = ACTIONS(2370), - [anon_sym_module] = ACTIONS(2370), - [anon_sym_use] = ACTIONS(2370), - [anon_sym_LPAREN] = ACTIONS(2372), - [anon_sym_COMMA] = ACTIONS(2372), - [anon_sym_DOLLAR] = ACTIONS(2370), - [anon_sym_error] = ACTIONS(2370), - [anon_sym_DASH2] = ACTIONS(2370), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2370), - [anon_sym_for] = ACTIONS(2370), - [anon_sym_in2] = ACTIONS(2370), - [anon_sym_loop] = ACTIONS(2370), - [anon_sym_make] = ACTIONS(2370), - [anon_sym_while] = ACTIONS(2370), - [anon_sym_do] = ACTIONS(2370), - [anon_sym_if] = ACTIONS(2370), - [anon_sym_else] = ACTIONS(2370), - [anon_sym_match] = ACTIONS(2370), - [anon_sym_RBRACE] = ACTIONS(2372), - [anon_sym_try] = ACTIONS(2370), - [anon_sym_catch] = ACTIONS(2370), - [anon_sym_return] = ACTIONS(2370), - [anon_sym_source] = ACTIONS(2370), - [anon_sym_source_DASHenv] = ACTIONS(2370), - [anon_sym_hide] = ACTIONS(2370), - [anon_sym_hide_DASHenv] = ACTIONS(2370), - [anon_sym_overlay] = ACTIONS(2370), - [anon_sym_as] = ACTIONS(2370), - [anon_sym_PLUS2] = ACTIONS(2370), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2372), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2372), - [aux_sym__val_number_decimal_token1] = ACTIONS(2370), - [aux_sym__val_number_decimal_token2] = ACTIONS(2372), - [aux_sym__val_number_decimal_token3] = ACTIONS(2372), - [aux_sym__val_number_decimal_token4] = ACTIONS(2372), - [aux_sym__val_number_token1] = ACTIONS(2372), - [aux_sym__val_number_token2] = ACTIONS(2372), - [aux_sym__val_number_token3] = ACTIONS(2372), - [aux_sym__val_number_token4] = ACTIONS(2370), - [aux_sym__val_number_token5] = ACTIONS(2370), - [aux_sym__val_number_token6] = ACTIONS(2370), - [anon_sym_DQUOTE] = ACTIONS(2372), - [sym__str_single_quotes] = ACTIONS(2372), - [sym__str_back_ticks] = ACTIONS(2372), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2372), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2372), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2372), - [anon_sym_register] = ACTIONS(2370), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2372), - }, - [686] = { - [sym_comment] = STATE(686), - [anon_sym_export] = ACTIONS(2485), - [anon_sym_alias] = ACTIONS(2485), - [anon_sym_let] = ACTIONS(2485), - [anon_sym_let_DASHenv] = ACTIONS(2485), - [anon_sym_mut] = ACTIONS(2485), - [anon_sym_const] = ACTIONS(2485), - [aux_sym_cmd_identifier_token1] = ACTIONS(2485), - [aux_sym_cmd_identifier_token2] = ACTIONS(2485), - [aux_sym_cmd_identifier_token3] = ACTIONS(2485), - [aux_sym_cmd_identifier_token4] = ACTIONS(2485), - [aux_sym_cmd_identifier_token5] = ACTIONS(2485), - [aux_sym_cmd_identifier_token6] = ACTIONS(2485), - [aux_sym_cmd_identifier_token7] = ACTIONS(2485), - [aux_sym_cmd_identifier_token8] = ACTIONS(2485), - [aux_sym_cmd_identifier_token9] = ACTIONS(2485), - [aux_sym_cmd_identifier_token10] = ACTIONS(2485), - [aux_sym_cmd_identifier_token11] = ACTIONS(2485), - [aux_sym_cmd_identifier_token12] = ACTIONS(2485), - [aux_sym_cmd_identifier_token13] = ACTIONS(2485), - [aux_sym_cmd_identifier_token14] = ACTIONS(2485), - [aux_sym_cmd_identifier_token15] = ACTIONS(2485), - [aux_sym_cmd_identifier_token16] = ACTIONS(2485), - [aux_sym_cmd_identifier_token17] = ACTIONS(2485), - [aux_sym_cmd_identifier_token18] = ACTIONS(2485), - [aux_sym_cmd_identifier_token19] = ACTIONS(2485), - [aux_sym_cmd_identifier_token20] = ACTIONS(2485), - [aux_sym_cmd_identifier_token21] = ACTIONS(2485), - [aux_sym_cmd_identifier_token22] = ACTIONS(2485), - [aux_sym_cmd_identifier_token23] = ACTIONS(2485), - [aux_sym_cmd_identifier_token24] = ACTIONS(2485), - [aux_sym_cmd_identifier_token25] = ACTIONS(2485), - [aux_sym_cmd_identifier_token26] = ACTIONS(2485), - [aux_sym_cmd_identifier_token27] = ACTIONS(2485), - [aux_sym_cmd_identifier_token28] = ACTIONS(2485), - [aux_sym_cmd_identifier_token29] = ACTIONS(2485), - [aux_sym_cmd_identifier_token30] = ACTIONS(2485), - [aux_sym_cmd_identifier_token31] = ACTIONS(2485), - [aux_sym_cmd_identifier_token32] = ACTIONS(2485), - [aux_sym_cmd_identifier_token33] = ACTIONS(2485), - [aux_sym_cmd_identifier_token34] = ACTIONS(2485), - [aux_sym_cmd_identifier_token35] = ACTIONS(2485), - [aux_sym_cmd_identifier_token36] = ACTIONS(2485), - [aux_sym_cmd_identifier_token37] = ACTIONS(2485), - [aux_sym_cmd_identifier_token38] = ACTIONS(2485), - [aux_sym_cmd_identifier_token39] = ACTIONS(2485), - [aux_sym_cmd_identifier_token40] = ACTIONS(2485), - [anon_sym_def] = ACTIONS(2485), - [anon_sym_export_DASHenv] = ACTIONS(2485), - [anon_sym_extern] = ACTIONS(2485), - [anon_sym_module] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2485), - [anon_sym_LPAREN] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2485), - [anon_sym_error] = ACTIONS(2485), - [anon_sym_DASH2] = ACTIONS(2485), - [anon_sym_break] = ACTIONS(2485), - [anon_sym_continue] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2485), - [anon_sym_in2] = ACTIONS(2485), - [anon_sym_loop] = ACTIONS(2485), - [anon_sym_make] = ACTIONS(2485), - [anon_sym_while] = ACTIONS(2485), - [anon_sym_do] = ACTIONS(2485), - [anon_sym_if] = ACTIONS(2485), - [anon_sym_else] = ACTIONS(2485), - [anon_sym_match] = ACTIONS(2485), - [anon_sym_RBRACE] = ACTIONS(2485), - [anon_sym_try] = ACTIONS(2485), - [anon_sym_catch] = ACTIONS(2485), - [anon_sym_return] = ACTIONS(2485), - [anon_sym_source] = ACTIONS(2485), - [anon_sym_source_DASHenv] = ACTIONS(2485), - [anon_sym_hide] = ACTIONS(2485), - [anon_sym_hide_DASHenv] = ACTIONS(2485), - [anon_sym_overlay] = ACTIONS(2485), - [anon_sym_as] = ACTIONS(2485), - [anon_sym_PLUS2] = ACTIONS(2485), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2485), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2485), - [aux_sym__val_number_decimal_token1] = ACTIONS(2485), - [aux_sym__val_number_decimal_token2] = ACTIONS(2485), - [aux_sym__val_number_decimal_token3] = ACTIONS(2485), - [aux_sym__val_number_decimal_token4] = ACTIONS(2485), - [aux_sym__val_number_token1] = ACTIONS(2485), - [aux_sym__val_number_token2] = ACTIONS(2485), - [aux_sym__val_number_token3] = ACTIONS(2485), - [aux_sym__val_number_token4] = ACTIONS(2485), - [aux_sym__val_number_token5] = ACTIONS(2485), - [aux_sym__val_number_token6] = ACTIONS(2485), - [anon_sym_DQUOTE] = ACTIONS(2485), - [sym__str_single_quotes] = ACTIONS(2485), - [sym__str_back_ticks] = ACTIONS(2485), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2485), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2485), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2485), - [sym__entry_separator] = ACTIONS(2487), - [anon_sym_register] = ACTIONS(2485), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2487), - }, - [687] = { - [sym_comment] = STATE(687), - [anon_sym_export] = ACTIONS(954), - [anon_sym_alias] = ACTIONS(954), - [anon_sym_let] = ACTIONS(954), - [anon_sym_let_DASHenv] = ACTIONS(954), - [anon_sym_mut] = ACTIONS(954), - [anon_sym_const] = ACTIONS(954), - [aux_sym_cmd_identifier_token1] = ACTIONS(954), - [aux_sym_cmd_identifier_token2] = ACTIONS(956), - [aux_sym_cmd_identifier_token3] = ACTIONS(956), - [aux_sym_cmd_identifier_token4] = ACTIONS(956), - [aux_sym_cmd_identifier_token5] = ACTIONS(956), - [aux_sym_cmd_identifier_token6] = ACTIONS(956), - [aux_sym_cmd_identifier_token7] = ACTIONS(956), - [aux_sym_cmd_identifier_token8] = ACTIONS(954), - [aux_sym_cmd_identifier_token9] = ACTIONS(954), - [aux_sym_cmd_identifier_token10] = ACTIONS(956), - [aux_sym_cmd_identifier_token11] = ACTIONS(956), - [aux_sym_cmd_identifier_token12] = ACTIONS(954), - [aux_sym_cmd_identifier_token13] = ACTIONS(954), - [aux_sym_cmd_identifier_token14] = ACTIONS(954), - [aux_sym_cmd_identifier_token15] = ACTIONS(954), - [aux_sym_cmd_identifier_token16] = ACTIONS(956), - [aux_sym_cmd_identifier_token17] = ACTIONS(956), - [aux_sym_cmd_identifier_token18] = ACTIONS(956), - [aux_sym_cmd_identifier_token19] = ACTIONS(956), - [aux_sym_cmd_identifier_token20] = ACTIONS(956), - [aux_sym_cmd_identifier_token21] = ACTIONS(956), - [aux_sym_cmd_identifier_token22] = ACTIONS(956), - [aux_sym_cmd_identifier_token23] = ACTIONS(956), - [aux_sym_cmd_identifier_token24] = ACTIONS(956), - [aux_sym_cmd_identifier_token25] = ACTIONS(956), - [aux_sym_cmd_identifier_token26] = ACTIONS(956), - [aux_sym_cmd_identifier_token27] = ACTIONS(956), - [aux_sym_cmd_identifier_token28] = ACTIONS(956), - [aux_sym_cmd_identifier_token29] = ACTIONS(956), - [aux_sym_cmd_identifier_token30] = ACTIONS(956), - [aux_sym_cmd_identifier_token31] = ACTIONS(956), - [aux_sym_cmd_identifier_token32] = ACTIONS(956), - [aux_sym_cmd_identifier_token33] = ACTIONS(956), - [aux_sym_cmd_identifier_token34] = ACTIONS(954), - [aux_sym_cmd_identifier_token35] = ACTIONS(956), - [aux_sym_cmd_identifier_token36] = ACTIONS(956), - [aux_sym_cmd_identifier_token37] = ACTIONS(956), - [aux_sym_cmd_identifier_token38] = ACTIONS(954), - [aux_sym_cmd_identifier_token39] = ACTIONS(956), - [aux_sym_cmd_identifier_token40] = ACTIONS(956), - [anon_sym_def] = ACTIONS(954), - [anon_sym_export_DASHenv] = ACTIONS(954), - [anon_sym_extern] = ACTIONS(954), - [anon_sym_module] = ACTIONS(954), - [anon_sym_use] = ACTIONS(954), - [anon_sym_LPAREN] = ACTIONS(956), - [anon_sym_COMMA] = ACTIONS(956), - [anon_sym_DOLLAR] = ACTIONS(954), - [anon_sym_error] = ACTIONS(954), - [anon_sym_DASH2] = ACTIONS(954), - [anon_sym_break] = ACTIONS(954), - [anon_sym_continue] = ACTIONS(954), - [anon_sym_for] = ACTIONS(954), - [anon_sym_in2] = ACTIONS(954), - [anon_sym_loop] = ACTIONS(954), - [anon_sym_make] = ACTIONS(954), - [anon_sym_while] = ACTIONS(954), - [anon_sym_do] = ACTIONS(954), - [anon_sym_if] = ACTIONS(954), - [anon_sym_else] = ACTIONS(954), - [anon_sym_match] = ACTIONS(954), - [anon_sym_RBRACE] = ACTIONS(956), - [anon_sym_try] = ACTIONS(954), - [anon_sym_catch] = ACTIONS(954), - [anon_sym_return] = ACTIONS(954), - [anon_sym_source] = ACTIONS(954), - [anon_sym_source_DASHenv] = ACTIONS(954), - [anon_sym_hide] = ACTIONS(954), - [anon_sym_hide_DASHenv] = ACTIONS(954), - [anon_sym_overlay] = ACTIONS(954), - [anon_sym_as] = ACTIONS(954), - [anon_sym_PLUS2] = ACTIONS(954), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(956), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(956), - [aux_sym__val_number_decimal_token1] = ACTIONS(954), - [aux_sym__val_number_decimal_token2] = ACTIONS(956), - [aux_sym__val_number_decimal_token3] = ACTIONS(956), - [aux_sym__val_number_decimal_token4] = ACTIONS(956), - [aux_sym__val_number_token1] = ACTIONS(956), - [aux_sym__val_number_token2] = ACTIONS(956), - [aux_sym__val_number_token3] = ACTIONS(956), - [aux_sym__val_number_token4] = ACTIONS(954), - [aux_sym__val_number_token5] = ACTIONS(954), - [aux_sym__val_number_token6] = ACTIONS(954), - [anon_sym_DQUOTE] = ACTIONS(956), - [sym__str_single_quotes] = ACTIONS(956), - [sym__str_back_ticks] = ACTIONS(956), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(956), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(956), - [anon_sym_register] = ACTIONS(954), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(956), + [647] = { + [sym_comment] = STATE(647), + [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(2250), + [aux_sym_cmd_identifier_token3] = ACTIONS(2250), + [aux_sym_cmd_identifier_token4] = ACTIONS(2250), + [aux_sym_cmd_identifier_token5] = ACTIONS(2250), + [aux_sym_cmd_identifier_token6] = ACTIONS(2250), + [aux_sym_cmd_identifier_token7] = ACTIONS(2250), + [aux_sym_cmd_identifier_token8] = ACTIONS(2248), + [aux_sym_cmd_identifier_token9] = ACTIONS(2248), + [aux_sym_cmd_identifier_token10] = ACTIONS(2250), + [aux_sym_cmd_identifier_token11] = ACTIONS(2250), + [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(2250), + [aux_sym_cmd_identifier_token17] = ACTIONS(2250), + [aux_sym_cmd_identifier_token18] = ACTIONS(2250), + [aux_sym_cmd_identifier_token19] = ACTIONS(2250), + [aux_sym_cmd_identifier_token20] = ACTIONS(2250), + [aux_sym_cmd_identifier_token21] = ACTIONS(2250), + [aux_sym_cmd_identifier_token22] = ACTIONS(2250), + [aux_sym_cmd_identifier_token23] = ACTIONS(2250), + [aux_sym_cmd_identifier_token24] = ACTIONS(2250), + [aux_sym_cmd_identifier_token25] = ACTIONS(2250), + [aux_sym_cmd_identifier_token26] = ACTIONS(2250), + [aux_sym_cmd_identifier_token27] = ACTIONS(2250), + [aux_sym_cmd_identifier_token28] = ACTIONS(2250), + [aux_sym_cmd_identifier_token29] = ACTIONS(2250), + [aux_sym_cmd_identifier_token30] = ACTIONS(2250), + [aux_sym_cmd_identifier_token31] = ACTIONS(2250), + [aux_sym_cmd_identifier_token32] = ACTIONS(2250), + [aux_sym_cmd_identifier_token33] = ACTIONS(2250), + [aux_sym_cmd_identifier_token34] = ACTIONS(2248), + [aux_sym_cmd_identifier_token35] = ACTIONS(2250), + [aux_sym_cmd_identifier_token36] = ACTIONS(2250), + [aux_sym_cmd_identifier_token37] = ACTIONS(2250), + [aux_sym_cmd_identifier_token38] = ACTIONS(2248), + [aux_sym_cmd_identifier_token39] = ACTIONS(2250), + [aux_sym_cmd_identifier_token40] = ACTIONS(2250), + [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_COMMA] = ACTIONS(2250), + [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_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(2250), + [aux_sym__val_number_decimal_token1] = ACTIONS(2248), + [aux_sym__val_number_decimal_token2] = ACTIONS(2250), + [aux_sym__val_number_decimal_token3] = ACTIONS(2250), + [aux_sym__val_number_decimal_token4] = ACTIONS(2250), + [aux_sym__val_number_token1] = ACTIONS(2250), + [aux_sym__val_number_token2] = ACTIONS(2250), + [aux_sym__val_number_token3] = ACTIONS(2250), + [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_DOLLAR_SQUOTE] = ACTIONS(2250), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2250), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2250), + [anon_sym_register] = ACTIONS(2248), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2250), }, - [688] = { - [sym_comment] = STATE(688), - [anon_sym_export] = ACTIONS(2374), - [anon_sym_alias] = ACTIONS(2374), - [anon_sym_let] = ACTIONS(2374), - [anon_sym_let_DASHenv] = ACTIONS(2374), - [anon_sym_mut] = ACTIONS(2374), - [anon_sym_const] = ACTIONS(2374), - [aux_sym_cmd_identifier_token1] = ACTIONS(2374), - [aux_sym_cmd_identifier_token2] = ACTIONS(2376), - [aux_sym_cmd_identifier_token3] = ACTIONS(2376), - [aux_sym_cmd_identifier_token4] = ACTIONS(2376), - [aux_sym_cmd_identifier_token5] = ACTIONS(2376), - [aux_sym_cmd_identifier_token6] = ACTIONS(2376), - [aux_sym_cmd_identifier_token7] = ACTIONS(2376), - [aux_sym_cmd_identifier_token8] = ACTIONS(2374), - [aux_sym_cmd_identifier_token9] = ACTIONS(2374), - [aux_sym_cmd_identifier_token10] = ACTIONS(2376), - [aux_sym_cmd_identifier_token11] = ACTIONS(2376), - [aux_sym_cmd_identifier_token12] = ACTIONS(2374), - [aux_sym_cmd_identifier_token13] = ACTIONS(2374), - [aux_sym_cmd_identifier_token14] = ACTIONS(2374), - [aux_sym_cmd_identifier_token15] = ACTIONS(2374), - [aux_sym_cmd_identifier_token16] = ACTIONS(2376), - [aux_sym_cmd_identifier_token17] = ACTIONS(2376), - [aux_sym_cmd_identifier_token18] = ACTIONS(2376), - [aux_sym_cmd_identifier_token19] = ACTIONS(2376), - [aux_sym_cmd_identifier_token20] = ACTIONS(2376), - [aux_sym_cmd_identifier_token21] = ACTIONS(2376), - [aux_sym_cmd_identifier_token22] = ACTIONS(2376), - [aux_sym_cmd_identifier_token23] = ACTIONS(2376), - [aux_sym_cmd_identifier_token24] = ACTIONS(2376), - [aux_sym_cmd_identifier_token25] = ACTIONS(2376), - [aux_sym_cmd_identifier_token26] = ACTIONS(2376), - [aux_sym_cmd_identifier_token27] = ACTIONS(2376), - [aux_sym_cmd_identifier_token28] = ACTIONS(2376), - [aux_sym_cmd_identifier_token29] = ACTIONS(2376), - [aux_sym_cmd_identifier_token30] = ACTIONS(2376), - [aux_sym_cmd_identifier_token31] = ACTIONS(2376), - [aux_sym_cmd_identifier_token32] = ACTIONS(2376), - [aux_sym_cmd_identifier_token33] = ACTIONS(2376), - [aux_sym_cmd_identifier_token34] = ACTIONS(2374), - [aux_sym_cmd_identifier_token35] = ACTIONS(2376), - [aux_sym_cmd_identifier_token36] = ACTIONS(2376), - [aux_sym_cmd_identifier_token37] = ACTIONS(2376), - [aux_sym_cmd_identifier_token38] = ACTIONS(2374), - [aux_sym_cmd_identifier_token39] = ACTIONS(2376), - [aux_sym_cmd_identifier_token40] = ACTIONS(2376), - [anon_sym_def] = ACTIONS(2374), - [anon_sym_export_DASHenv] = ACTIONS(2374), - [anon_sym_extern] = ACTIONS(2374), - [anon_sym_module] = ACTIONS(2374), - [anon_sym_use] = ACTIONS(2374), - [anon_sym_LPAREN] = ACTIONS(2376), - [anon_sym_COMMA] = ACTIONS(2376), - [anon_sym_DOLLAR] = ACTIONS(2374), - [anon_sym_error] = ACTIONS(2374), - [anon_sym_DASH2] = ACTIONS(2374), - [anon_sym_break] = ACTIONS(2374), - [anon_sym_continue] = ACTIONS(2374), - [anon_sym_for] = ACTIONS(2374), - [anon_sym_in2] = ACTIONS(2374), - [anon_sym_loop] = ACTIONS(2374), - [anon_sym_make] = ACTIONS(2374), - [anon_sym_while] = ACTIONS(2374), - [anon_sym_do] = ACTIONS(2374), - [anon_sym_if] = ACTIONS(2374), - [anon_sym_else] = ACTIONS(2374), - [anon_sym_match] = ACTIONS(2374), - [anon_sym_RBRACE] = ACTIONS(2376), - [anon_sym_try] = ACTIONS(2374), - [anon_sym_catch] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(2374), - [anon_sym_source] = ACTIONS(2374), - [anon_sym_source_DASHenv] = ACTIONS(2374), - [anon_sym_hide] = ACTIONS(2374), - [anon_sym_hide_DASHenv] = ACTIONS(2374), - [anon_sym_overlay] = ACTIONS(2374), - [anon_sym_as] = ACTIONS(2374), - [anon_sym_PLUS2] = ACTIONS(2374), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2376), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2376), - [aux_sym__val_number_decimal_token1] = ACTIONS(2374), - [aux_sym__val_number_decimal_token2] = ACTIONS(2376), - [aux_sym__val_number_decimal_token3] = ACTIONS(2376), - [aux_sym__val_number_decimal_token4] = ACTIONS(2376), - [aux_sym__val_number_token1] = ACTIONS(2376), - [aux_sym__val_number_token2] = ACTIONS(2376), - [aux_sym__val_number_token3] = ACTIONS(2376), - [aux_sym__val_number_token4] = ACTIONS(2374), - [aux_sym__val_number_token5] = ACTIONS(2374), - [aux_sym__val_number_token6] = ACTIONS(2374), - [anon_sym_DQUOTE] = ACTIONS(2376), - [sym__str_single_quotes] = ACTIONS(2376), - [sym__str_back_ticks] = ACTIONS(2376), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2376), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2376), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2376), - [anon_sym_register] = ACTIONS(2374), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2376), + [648] = { + [sym_comment] = STATE(648), + [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_COMMA] = ACTIONS(2423), + [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(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_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_DOLLAR_SQUOTE] = ACTIONS(2423), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2423), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2423), + [anon_sym_register] = ACTIONS(2421), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2423), }, - [689] = { - [sym_comment] = STATE(689), + [649] = { + [sym_comment] = STATE(649), [anon_sym_export] = ACTIONS(2378), [anon_sym_alias] = ACTIONS(2378), [anon_sym_let] = ACTIONS(2378), @@ -149885,8 +144601,416 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(2380), }, - [690] = { - [sym_comment] = STATE(690), + [650] = { + [sym_comment] = STATE(650), + [anon_sym_export] = ACTIONS(1760), + [anon_sym_alias] = ACTIONS(1760), + [anon_sym_let] = ACTIONS(1760), + [anon_sym_let_DASHenv] = ACTIONS(1760), + [anon_sym_mut] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [aux_sym_cmd_identifier_token1] = ACTIONS(1760), + [aux_sym_cmd_identifier_token2] = ACTIONS(1762), + [aux_sym_cmd_identifier_token3] = ACTIONS(1762), + [aux_sym_cmd_identifier_token4] = ACTIONS(1762), + [aux_sym_cmd_identifier_token5] = ACTIONS(1762), + [aux_sym_cmd_identifier_token6] = ACTIONS(1762), + [aux_sym_cmd_identifier_token7] = ACTIONS(1762), + [aux_sym_cmd_identifier_token8] = ACTIONS(1760), + [aux_sym_cmd_identifier_token9] = ACTIONS(1760), + [aux_sym_cmd_identifier_token10] = ACTIONS(1762), + [aux_sym_cmd_identifier_token11] = ACTIONS(1762), + [aux_sym_cmd_identifier_token12] = ACTIONS(1760), + [aux_sym_cmd_identifier_token13] = ACTIONS(1760), + [aux_sym_cmd_identifier_token14] = ACTIONS(1760), + [aux_sym_cmd_identifier_token15] = ACTIONS(1760), + [aux_sym_cmd_identifier_token16] = ACTIONS(1762), + [aux_sym_cmd_identifier_token17] = ACTIONS(1762), + [aux_sym_cmd_identifier_token18] = ACTIONS(1762), + [aux_sym_cmd_identifier_token19] = ACTIONS(1762), + [aux_sym_cmd_identifier_token20] = ACTIONS(1762), + [aux_sym_cmd_identifier_token21] = ACTIONS(1762), + [aux_sym_cmd_identifier_token22] = ACTIONS(1762), + [aux_sym_cmd_identifier_token23] = ACTIONS(1762), + [aux_sym_cmd_identifier_token24] = ACTIONS(1762), + [aux_sym_cmd_identifier_token25] = ACTIONS(1762), + [aux_sym_cmd_identifier_token26] = ACTIONS(1762), + [aux_sym_cmd_identifier_token27] = ACTIONS(1762), + [aux_sym_cmd_identifier_token28] = ACTIONS(1762), + [aux_sym_cmd_identifier_token29] = ACTIONS(1762), + [aux_sym_cmd_identifier_token30] = ACTIONS(1762), + [aux_sym_cmd_identifier_token31] = ACTIONS(1762), + [aux_sym_cmd_identifier_token32] = ACTIONS(1762), + [aux_sym_cmd_identifier_token33] = ACTIONS(1762), + [aux_sym_cmd_identifier_token34] = ACTIONS(1760), + [aux_sym_cmd_identifier_token35] = ACTIONS(1762), + [aux_sym_cmd_identifier_token36] = ACTIONS(1762), + [aux_sym_cmd_identifier_token37] = ACTIONS(1762), + [aux_sym_cmd_identifier_token38] = ACTIONS(1760), + [aux_sym_cmd_identifier_token39] = ACTIONS(1762), + [aux_sym_cmd_identifier_token40] = ACTIONS(1762), + [anon_sym_def] = ACTIONS(1760), + [anon_sym_export_DASHenv] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym_module] = ACTIONS(1760), + [anon_sym_use] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_COMMA] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_error] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_in2] = ACTIONS(1760), + [anon_sym_loop] = ACTIONS(1760), + [anon_sym_make] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_do] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1760), + [anon_sym_match] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_catch] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_source] = ACTIONS(1760), + [anon_sym_source_DASHenv] = ACTIONS(1760), + [anon_sym_hide] = ACTIONS(1760), + [anon_sym_hide_DASHenv] = ACTIONS(1760), + [anon_sym_overlay] = ACTIONS(1760), + [anon_sym_as] = ACTIONS(1760), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1762), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1760), + [aux_sym__val_number_token5] = ACTIONS(1760), + [aux_sym__val_number_token6] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1762), + [anon_sym_register] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1762), + }, + [651] = { + [sym_comment] = STATE(651), + [anon_sym_export] = ACTIONS(1797), + [anon_sym_alias] = ACTIONS(1797), + [anon_sym_let] = ACTIONS(1797), + [anon_sym_let_DASHenv] = ACTIONS(1797), + [anon_sym_mut] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(1797), + [aux_sym_cmd_identifier_token1] = ACTIONS(1797), + [aux_sym_cmd_identifier_token2] = ACTIONS(1799), + [aux_sym_cmd_identifier_token3] = ACTIONS(1799), + [aux_sym_cmd_identifier_token4] = ACTIONS(1799), + [aux_sym_cmd_identifier_token5] = ACTIONS(1799), + [aux_sym_cmd_identifier_token6] = ACTIONS(1799), + [aux_sym_cmd_identifier_token7] = ACTIONS(1799), + [aux_sym_cmd_identifier_token8] = ACTIONS(1797), + [aux_sym_cmd_identifier_token9] = ACTIONS(1797), + [aux_sym_cmd_identifier_token10] = ACTIONS(1799), + [aux_sym_cmd_identifier_token11] = ACTIONS(1799), + [aux_sym_cmd_identifier_token12] = ACTIONS(1797), + [aux_sym_cmd_identifier_token13] = ACTIONS(1797), + [aux_sym_cmd_identifier_token14] = ACTIONS(1797), + [aux_sym_cmd_identifier_token15] = ACTIONS(1797), + [aux_sym_cmd_identifier_token16] = ACTIONS(1799), + [aux_sym_cmd_identifier_token17] = ACTIONS(1799), + [aux_sym_cmd_identifier_token18] = ACTIONS(1799), + [aux_sym_cmd_identifier_token19] = ACTIONS(1799), + [aux_sym_cmd_identifier_token20] = ACTIONS(1799), + [aux_sym_cmd_identifier_token21] = ACTIONS(1799), + [aux_sym_cmd_identifier_token22] = ACTIONS(1799), + [aux_sym_cmd_identifier_token23] = ACTIONS(1799), + [aux_sym_cmd_identifier_token24] = ACTIONS(1799), + [aux_sym_cmd_identifier_token25] = ACTIONS(1799), + [aux_sym_cmd_identifier_token26] = ACTIONS(1799), + [aux_sym_cmd_identifier_token27] = ACTIONS(1799), + [aux_sym_cmd_identifier_token28] = ACTIONS(1799), + [aux_sym_cmd_identifier_token29] = ACTIONS(1799), + [aux_sym_cmd_identifier_token30] = ACTIONS(1799), + [aux_sym_cmd_identifier_token31] = ACTIONS(1799), + [aux_sym_cmd_identifier_token32] = ACTIONS(1799), + [aux_sym_cmd_identifier_token33] = ACTIONS(1799), + [aux_sym_cmd_identifier_token34] = ACTIONS(1797), + [aux_sym_cmd_identifier_token35] = ACTIONS(1799), + [aux_sym_cmd_identifier_token36] = ACTIONS(1799), + [aux_sym_cmd_identifier_token37] = ACTIONS(1799), + [aux_sym_cmd_identifier_token38] = ACTIONS(1797), + [aux_sym_cmd_identifier_token39] = ACTIONS(1799), + [aux_sym_cmd_identifier_token40] = ACTIONS(1799), + [anon_sym_def] = ACTIONS(1797), + [anon_sym_export_DASHenv] = ACTIONS(1797), + [anon_sym_extern] = ACTIONS(1797), + [anon_sym_module] = ACTIONS(1797), + [anon_sym_use] = ACTIONS(1797), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_COMMA] = ACTIONS(1799), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_error] = ACTIONS(1797), + [anon_sym_DASH2] = ACTIONS(1797), + [anon_sym_break] = ACTIONS(1797), + [anon_sym_continue] = ACTIONS(1797), + [anon_sym_for] = ACTIONS(1797), + [anon_sym_in2] = ACTIONS(1797), + [anon_sym_loop] = ACTIONS(1797), + [anon_sym_make] = ACTIONS(1797), + [anon_sym_while] = ACTIONS(1797), + [anon_sym_do] = ACTIONS(1797), + [anon_sym_if] = ACTIONS(1797), + [anon_sym_else] = ACTIONS(1797), + [anon_sym_match] = ACTIONS(1797), + [anon_sym_RBRACE] = ACTIONS(1799), + [anon_sym_try] = ACTIONS(1797), + [anon_sym_catch] = ACTIONS(1797), + [anon_sym_return] = ACTIONS(1797), + [anon_sym_source] = ACTIONS(1797), + [anon_sym_source_DASHenv] = ACTIONS(1797), + [anon_sym_hide] = ACTIONS(1797), + [anon_sym_hide_DASHenv] = ACTIONS(1797), + [anon_sym_overlay] = ACTIONS(1797), + [anon_sym_as] = ACTIONS(1797), + [anon_sym_PLUS2] = ACTIONS(1797), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1799), + [aux_sym__val_number_decimal_token1] = ACTIONS(1797), + [aux_sym__val_number_decimal_token2] = ACTIONS(1799), + [aux_sym__val_number_decimal_token3] = ACTIONS(1799), + [aux_sym__val_number_decimal_token4] = ACTIONS(1799), + [aux_sym__val_number_token1] = ACTIONS(1799), + [aux_sym__val_number_token2] = ACTIONS(1799), + [aux_sym__val_number_token3] = ACTIONS(1799), + [aux_sym__val_number_token4] = ACTIONS(1797), + [aux_sym__val_number_token5] = ACTIONS(1797), + [aux_sym__val_number_token6] = ACTIONS(1797), + [anon_sym_DQUOTE] = ACTIONS(1799), + [sym__str_single_quotes] = ACTIONS(1799), + [sym__str_back_ticks] = ACTIONS(1799), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1799), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1797), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1799), + }, + [652] = { + [sym_comment] = STATE(652), + [anon_sym_export] = ACTIONS(1949), + [anon_sym_alias] = ACTIONS(1949), + [anon_sym_let] = ACTIONS(1949), + [anon_sym_let_DASHenv] = ACTIONS(1949), + [anon_sym_mut] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(1949), + [aux_sym_cmd_identifier_token1] = ACTIONS(1949), + [aux_sym_cmd_identifier_token2] = ACTIONS(1955), + [aux_sym_cmd_identifier_token3] = ACTIONS(1955), + [aux_sym_cmd_identifier_token4] = ACTIONS(1955), + [aux_sym_cmd_identifier_token5] = ACTIONS(1955), + [aux_sym_cmd_identifier_token6] = ACTIONS(1955), + [aux_sym_cmd_identifier_token7] = ACTIONS(1955), + [aux_sym_cmd_identifier_token8] = ACTIONS(1949), + [aux_sym_cmd_identifier_token9] = ACTIONS(1949), + [aux_sym_cmd_identifier_token10] = ACTIONS(1955), + [aux_sym_cmd_identifier_token11] = ACTIONS(1955), + [aux_sym_cmd_identifier_token12] = ACTIONS(1949), + [aux_sym_cmd_identifier_token13] = ACTIONS(1949), + [aux_sym_cmd_identifier_token14] = ACTIONS(1949), + [aux_sym_cmd_identifier_token15] = ACTIONS(1949), + [aux_sym_cmd_identifier_token16] = ACTIONS(1955), + [aux_sym_cmd_identifier_token17] = ACTIONS(1955), + [aux_sym_cmd_identifier_token18] = ACTIONS(1955), + [aux_sym_cmd_identifier_token19] = ACTIONS(1955), + [aux_sym_cmd_identifier_token20] = ACTIONS(1955), + [aux_sym_cmd_identifier_token21] = ACTIONS(1955), + [aux_sym_cmd_identifier_token22] = ACTIONS(1955), + [aux_sym_cmd_identifier_token23] = ACTIONS(1955), + [aux_sym_cmd_identifier_token24] = ACTIONS(1955), + [aux_sym_cmd_identifier_token25] = ACTIONS(1955), + [aux_sym_cmd_identifier_token26] = ACTIONS(1955), + [aux_sym_cmd_identifier_token27] = ACTIONS(1955), + [aux_sym_cmd_identifier_token28] = ACTIONS(1955), + [aux_sym_cmd_identifier_token29] = ACTIONS(1955), + [aux_sym_cmd_identifier_token30] = ACTIONS(1955), + [aux_sym_cmd_identifier_token31] = ACTIONS(1955), + [aux_sym_cmd_identifier_token32] = ACTIONS(1955), + [aux_sym_cmd_identifier_token33] = ACTIONS(1955), + [aux_sym_cmd_identifier_token34] = ACTIONS(1949), + [aux_sym_cmd_identifier_token35] = ACTIONS(1955), + [aux_sym_cmd_identifier_token36] = ACTIONS(1955), + [aux_sym_cmd_identifier_token37] = ACTIONS(1955), + [aux_sym_cmd_identifier_token38] = ACTIONS(1949), + [aux_sym_cmd_identifier_token39] = ACTIONS(1955), + [aux_sym_cmd_identifier_token40] = ACTIONS(1955), + [anon_sym_def] = ACTIONS(1949), + [anon_sym_export_DASHenv] = ACTIONS(1949), + [anon_sym_extern] = ACTIONS(1949), + [anon_sym_module] = ACTIONS(1949), + [anon_sym_use] = ACTIONS(1949), + [anon_sym_LPAREN] = ACTIONS(1955), + [anon_sym_COMMA] = ACTIONS(1955), + [anon_sym_DOLLAR] = ACTIONS(1949), + [anon_sym_error] = ACTIONS(1949), + [anon_sym_DASH2] = ACTIONS(1949), + [anon_sym_break] = ACTIONS(1949), + [anon_sym_continue] = ACTIONS(1949), + [anon_sym_for] = ACTIONS(1949), + [anon_sym_in2] = ACTIONS(1949), + [anon_sym_loop] = ACTIONS(1949), + [anon_sym_make] = ACTIONS(1949), + [anon_sym_while] = ACTIONS(1949), + [anon_sym_do] = ACTIONS(1949), + [anon_sym_if] = ACTIONS(1949), + [anon_sym_else] = ACTIONS(1949), + [anon_sym_match] = ACTIONS(1949), + [anon_sym_RBRACE] = ACTIONS(1955), + [anon_sym_try] = ACTIONS(1949), + [anon_sym_catch] = ACTIONS(1949), + [anon_sym_return] = ACTIONS(1949), + [anon_sym_source] = ACTIONS(1949), + [anon_sym_source_DASHenv] = ACTIONS(1949), + [anon_sym_hide] = ACTIONS(1949), + [anon_sym_hide_DASHenv] = ACTIONS(1949), + [anon_sym_overlay] = ACTIONS(1949), + [anon_sym_as] = ACTIONS(1949), + [anon_sym_PLUS2] = ACTIONS(1949), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1955), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1955), + [aux_sym__val_number_decimal_token1] = ACTIONS(1949), + [aux_sym__val_number_decimal_token2] = ACTIONS(1955), + [aux_sym__val_number_decimal_token3] = ACTIONS(1955), + [aux_sym__val_number_decimal_token4] = ACTIONS(1955), + [aux_sym__val_number_token1] = ACTIONS(1955), + [aux_sym__val_number_token2] = ACTIONS(1955), + [aux_sym__val_number_token3] = ACTIONS(1955), + [aux_sym__val_number_token4] = ACTIONS(1949), + [aux_sym__val_number_token5] = ACTIONS(1949), + [aux_sym__val_number_token6] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(1955), + [sym__str_single_quotes] = ACTIONS(1955), + [sym__str_back_ticks] = ACTIONS(1955), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1955), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1955), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1955), + [anon_sym_register] = ACTIONS(1949), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1955), + }, + [653] = { + [sym_comment] = STATE(653), + [anon_sym_export] = ACTIONS(1957), + [anon_sym_alias] = ACTIONS(1957), + [anon_sym_let] = ACTIONS(1957), + [anon_sym_let_DASHenv] = ACTIONS(1957), + [anon_sym_mut] = ACTIONS(1957), + [anon_sym_const] = ACTIONS(1957), + [aux_sym_cmd_identifier_token1] = ACTIONS(1957), + [aux_sym_cmd_identifier_token2] = ACTIONS(1963), + [aux_sym_cmd_identifier_token3] = ACTIONS(1963), + [aux_sym_cmd_identifier_token4] = ACTIONS(1963), + [aux_sym_cmd_identifier_token5] = ACTIONS(1963), + [aux_sym_cmd_identifier_token6] = ACTIONS(1963), + [aux_sym_cmd_identifier_token7] = ACTIONS(1963), + [aux_sym_cmd_identifier_token8] = ACTIONS(1957), + [aux_sym_cmd_identifier_token9] = ACTIONS(1957), + [aux_sym_cmd_identifier_token10] = ACTIONS(1963), + [aux_sym_cmd_identifier_token11] = ACTIONS(1963), + [aux_sym_cmd_identifier_token12] = ACTIONS(1957), + [aux_sym_cmd_identifier_token13] = ACTIONS(1957), + [aux_sym_cmd_identifier_token14] = ACTIONS(1957), + [aux_sym_cmd_identifier_token15] = ACTIONS(1957), + [aux_sym_cmd_identifier_token16] = ACTIONS(1963), + [aux_sym_cmd_identifier_token17] = ACTIONS(1963), + [aux_sym_cmd_identifier_token18] = ACTIONS(1963), + [aux_sym_cmd_identifier_token19] = ACTIONS(1963), + [aux_sym_cmd_identifier_token20] = ACTIONS(1963), + [aux_sym_cmd_identifier_token21] = ACTIONS(1963), + [aux_sym_cmd_identifier_token22] = ACTIONS(1963), + [aux_sym_cmd_identifier_token23] = ACTIONS(1963), + [aux_sym_cmd_identifier_token24] = ACTIONS(1963), + [aux_sym_cmd_identifier_token25] = ACTIONS(1963), + [aux_sym_cmd_identifier_token26] = ACTIONS(1963), + [aux_sym_cmd_identifier_token27] = ACTIONS(1963), + [aux_sym_cmd_identifier_token28] = ACTIONS(1963), + [aux_sym_cmd_identifier_token29] = ACTIONS(1963), + [aux_sym_cmd_identifier_token30] = ACTIONS(1963), + [aux_sym_cmd_identifier_token31] = ACTIONS(1963), + [aux_sym_cmd_identifier_token32] = ACTIONS(1963), + [aux_sym_cmd_identifier_token33] = ACTIONS(1963), + [aux_sym_cmd_identifier_token34] = ACTIONS(1957), + [aux_sym_cmd_identifier_token35] = ACTIONS(1963), + [aux_sym_cmd_identifier_token36] = ACTIONS(1963), + [aux_sym_cmd_identifier_token37] = ACTIONS(1963), + [aux_sym_cmd_identifier_token38] = ACTIONS(1957), + [aux_sym_cmd_identifier_token39] = ACTIONS(1963), + [aux_sym_cmd_identifier_token40] = ACTIONS(1963), + [anon_sym_def] = ACTIONS(1957), + [anon_sym_export_DASHenv] = ACTIONS(1957), + [anon_sym_extern] = ACTIONS(1957), + [anon_sym_module] = ACTIONS(1957), + [anon_sym_use] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(1963), + [anon_sym_COMMA] = ACTIONS(1963), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_error] = ACTIONS(1957), + [anon_sym_DASH2] = ACTIONS(1957), + [anon_sym_break] = ACTIONS(1957), + [anon_sym_continue] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1957), + [anon_sym_in2] = ACTIONS(1957), + [anon_sym_loop] = ACTIONS(1957), + [anon_sym_make] = ACTIONS(1957), + [anon_sym_while] = ACTIONS(1957), + [anon_sym_do] = ACTIONS(1957), + [anon_sym_if] = ACTIONS(1957), + [anon_sym_else] = ACTIONS(1957), + [anon_sym_match] = ACTIONS(1957), + [anon_sym_RBRACE] = ACTIONS(1963), + [anon_sym_try] = ACTIONS(1957), + [anon_sym_catch] = ACTIONS(1957), + [anon_sym_return] = ACTIONS(1957), + [anon_sym_source] = ACTIONS(1957), + [anon_sym_source_DASHenv] = ACTIONS(1957), + [anon_sym_hide] = ACTIONS(1957), + [anon_sym_hide_DASHenv] = ACTIONS(1957), + [anon_sym_overlay] = ACTIONS(1957), + [anon_sym_as] = ACTIONS(1957), + [anon_sym_PLUS2] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1963), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1957), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1963), + [aux_sym__val_number_decimal_token4] = ACTIONS(1963), + [aux_sym__val_number_token1] = ACTIONS(1963), + [aux_sym__val_number_token2] = ACTIONS(1963), + [aux_sym__val_number_token3] = ACTIONS(1963), + [aux_sym__val_number_token4] = ACTIONS(1957), + [aux_sym__val_number_token5] = ACTIONS(1957), + [aux_sym__val_number_token6] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(1963), + [sym__str_single_quotes] = ACTIONS(1963), + [sym__str_back_ticks] = ACTIONS(1963), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1963), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1963), + [anon_sym_register] = ACTIONS(1957), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1963), + }, + [654] = { + [sym_comment] = STATE(654), [anon_sym_export] = ACTIONS(2382), [anon_sym_alias] = ACTIONS(2382), [anon_sym_let] = ACTIONS(2382), @@ -149987,2456 +145111,1334 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(2384), }, - [691] = { - [sym_comment] = STATE(691), - [anon_sym_export] = ACTIONS(2392), - [anon_sym_alias] = ACTIONS(2392), - [anon_sym_let] = ACTIONS(2392), - [anon_sym_let_DASHenv] = ACTIONS(2392), - [anon_sym_mut] = ACTIONS(2392), - [anon_sym_const] = ACTIONS(2392), - [aux_sym_cmd_identifier_token1] = ACTIONS(2392), - [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(2392), - [aux_sym_cmd_identifier_token9] = ACTIONS(2392), - [aux_sym_cmd_identifier_token10] = ACTIONS(2394), - [aux_sym_cmd_identifier_token11] = ACTIONS(2394), - [aux_sym_cmd_identifier_token12] = ACTIONS(2392), - [aux_sym_cmd_identifier_token13] = ACTIONS(2392), - [aux_sym_cmd_identifier_token14] = ACTIONS(2392), - [aux_sym_cmd_identifier_token15] = ACTIONS(2392), - [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(2392), - [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(2392), - [aux_sym_cmd_identifier_token39] = ACTIONS(2394), - [aux_sym_cmd_identifier_token40] = ACTIONS(2394), - [anon_sym_def] = ACTIONS(2392), - [anon_sym_export_DASHenv] = ACTIONS(2392), - [anon_sym_extern] = ACTIONS(2392), - [anon_sym_module] = ACTIONS(2392), - [anon_sym_use] = ACTIONS(2392), - [anon_sym_LPAREN] = ACTIONS(2394), - [anon_sym_COMMA] = ACTIONS(2394), - [anon_sym_DOLLAR] = ACTIONS(2392), - [anon_sym_error] = ACTIONS(2392), - [anon_sym_DASH2] = ACTIONS(2392), - [anon_sym_break] = ACTIONS(2392), - [anon_sym_continue] = ACTIONS(2392), - [anon_sym_for] = ACTIONS(2392), - [anon_sym_in2] = ACTIONS(2392), - [anon_sym_loop] = ACTIONS(2392), - [anon_sym_make] = ACTIONS(2392), - [anon_sym_while] = ACTIONS(2392), - [anon_sym_do] = ACTIONS(2392), - [anon_sym_if] = ACTIONS(2392), - [anon_sym_else] = ACTIONS(2392), - [anon_sym_match] = ACTIONS(2392), - [anon_sym_RBRACE] = ACTIONS(2394), - [anon_sym_try] = ACTIONS(2392), - [anon_sym_catch] = ACTIONS(2392), - [anon_sym_return] = ACTIONS(2392), - [anon_sym_source] = ACTIONS(2392), - [anon_sym_source_DASHenv] = ACTIONS(2392), - [anon_sym_hide] = ACTIONS(2392), - [anon_sym_hide_DASHenv] = ACTIONS(2392), - [anon_sym_overlay] = ACTIONS(2392), - [anon_sym_as] = ACTIONS(2392), - [anon_sym_PLUS2] = ACTIONS(2392), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2394), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2394), - [aux_sym__val_number_decimal_token1] = ACTIONS(2392), - [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(2392), - [aux_sym__val_number_token5] = ACTIONS(2392), - [aux_sym__val_number_token6] = ACTIONS(2392), - [anon_sym_DQUOTE] = ACTIONS(2394), - [sym__str_single_quotes] = ACTIONS(2394), - [sym__str_back_ticks] = ACTIONS(2394), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2394), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2394), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2394), - [anon_sym_register] = ACTIONS(2392), + [655] = { + [sym_comment] = STATE(655), + [anon_sym_export] = ACTIONS(1965), + [anon_sym_alias] = ACTIONS(1965), + [anon_sym_let] = ACTIONS(1965), + [anon_sym_let_DASHenv] = ACTIONS(1965), + [anon_sym_mut] = ACTIONS(1965), + [anon_sym_const] = ACTIONS(1965), + [aux_sym_cmd_identifier_token1] = ACTIONS(1965), + [aux_sym_cmd_identifier_token2] = ACTIONS(1971), + [aux_sym_cmd_identifier_token3] = ACTIONS(1971), + [aux_sym_cmd_identifier_token4] = ACTIONS(1971), + [aux_sym_cmd_identifier_token5] = ACTIONS(1971), + [aux_sym_cmd_identifier_token6] = ACTIONS(1971), + [aux_sym_cmd_identifier_token7] = ACTIONS(1971), + [aux_sym_cmd_identifier_token8] = ACTIONS(1965), + [aux_sym_cmd_identifier_token9] = ACTIONS(1965), + [aux_sym_cmd_identifier_token10] = ACTIONS(1971), + [aux_sym_cmd_identifier_token11] = ACTIONS(1971), + [aux_sym_cmd_identifier_token12] = ACTIONS(1965), + [aux_sym_cmd_identifier_token13] = ACTIONS(1965), + [aux_sym_cmd_identifier_token14] = ACTIONS(1965), + [aux_sym_cmd_identifier_token15] = ACTIONS(1965), + [aux_sym_cmd_identifier_token16] = ACTIONS(1971), + [aux_sym_cmd_identifier_token17] = ACTIONS(1971), + [aux_sym_cmd_identifier_token18] = ACTIONS(1971), + [aux_sym_cmd_identifier_token19] = ACTIONS(1971), + [aux_sym_cmd_identifier_token20] = ACTIONS(1971), + [aux_sym_cmd_identifier_token21] = ACTIONS(1971), + [aux_sym_cmd_identifier_token22] = ACTIONS(1971), + [aux_sym_cmd_identifier_token23] = ACTIONS(1971), + [aux_sym_cmd_identifier_token24] = ACTIONS(1971), + [aux_sym_cmd_identifier_token25] = ACTIONS(1971), + [aux_sym_cmd_identifier_token26] = ACTIONS(1971), + [aux_sym_cmd_identifier_token27] = ACTIONS(1971), + [aux_sym_cmd_identifier_token28] = ACTIONS(1971), + [aux_sym_cmd_identifier_token29] = ACTIONS(1971), + [aux_sym_cmd_identifier_token30] = ACTIONS(1971), + [aux_sym_cmd_identifier_token31] = ACTIONS(1971), + [aux_sym_cmd_identifier_token32] = ACTIONS(1971), + [aux_sym_cmd_identifier_token33] = ACTIONS(1971), + [aux_sym_cmd_identifier_token34] = ACTIONS(1965), + [aux_sym_cmd_identifier_token35] = ACTIONS(1971), + [aux_sym_cmd_identifier_token36] = ACTIONS(1971), + [aux_sym_cmd_identifier_token37] = ACTIONS(1971), + [aux_sym_cmd_identifier_token38] = ACTIONS(1965), + [aux_sym_cmd_identifier_token39] = ACTIONS(1971), + [aux_sym_cmd_identifier_token40] = ACTIONS(1971), + [anon_sym_def] = ACTIONS(1965), + [anon_sym_export_DASHenv] = ACTIONS(1965), + [anon_sym_extern] = ACTIONS(1965), + [anon_sym_module] = ACTIONS(1965), + [anon_sym_use] = ACTIONS(1965), + [anon_sym_LPAREN] = ACTIONS(1971), + [anon_sym_COMMA] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(1965), + [anon_sym_error] = ACTIONS(1965), + [anon_sym_DASH2] = ACTIONS(1965), + [anon_sym_break] = ACTIONS(1965), + [anon_sym_continue] = ACTIONS(1965), + [anon_sym_for] = ACTIONS(1965), + [anon_sym_in2] = ACTIONS(1965), + [anon_sym_loop] = ACTIONS(1965), + [anon_sym_make] = ACTIONS(1965), + [anon_sym_while] = ACTIONS(1965), + [anon_sym_do] = ACTIONS(1965), + [anon_sym_if] = ACTIONS(1965), + [anon_sym_else] = ACTIONS(1965), + [anon_sym_match] = ACTIONS(1965), + [anon_sym_RBRACE] = ACTIONS(1971), + [anon_sym_try] = ACTIONS(1965), + [anon_sym_catch] = ACTIONS(1965), + [anon_sym_return] = ACTIONS(1965), + [anon_sym_source] = ACTIONS(1965), + [anon_sym_source_DASHenv] = ACTIONS(1965), + [anon_sym_hide] = ACTIONS(1965), + [anon_sym_hide_DASHenv] = ACTIONS(1965), + [anon_sym_overlay] = ACTIONS(1965), + [anon_sym_as] = ACTIONS(1965), + [anon_sym_PLUS2] = ACTIONS(1965), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1971), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1971), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1971), + [aux_sym__val_number_decimal_token3] = ACTIONS(1971), + [aux_sym__val_number_decimal_token4] = ACTIONS(1971), + [aux_sym__val_number_token1] = ACTIONS(1971), + [aux_sym__val_number_token2] = ACTIONS(1971), + [aux_sym__val_number_token3] = ACTIONS(1971), + [aux_sym__val_number_token4] = ACTIONS(1965), + [aux_sym__val_number_token5] = ACTIONS(1965), + [aux_sym__val_number_token6] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1971), + [sym__str_single_quotes] = ACTIONS(1971), + [sym__str_back_ticks] = ACTIONS(1971), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1971), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1971), + [anon_sym_register] = ACTIONS(1965), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2394), + [sym_raw_string_begin] = ACTIONS(1971), }, - [692] = { - [sym_comment] = STATE(692), - [anon_sym_export] = ACTIONS(1985), - [anon_sym_alias] = ACTIONS(1985), - [anon_sym_let] = ACTIONS(1985), - [anon_sym_let_DASHenv] = ACTIONS(1985), - [anon_sym_mut] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1985), - [aux_sym_cmd_identifier_token1] = ACTIONS(1985), - [aux_sym_cmd_identifier_token2] = ACTIONS(1987), - [aux_sym_cmd_identifier_token3] = ACTIONS(1987), - [aux_sym_cmd_identifier_token4] = ACTIONS(1987), - [aux_sym_cmd_identifier_token5] = ACTIONS(1987), - [aux_sym_cmd_identifier_token6] = ACTIONS(1987), - [aux_sym_cmd_identifier_token7] = ACTIONS(1987), - [aux_sym_cmd_identifier_token8] = ACTIONS(1985), - [aux_sym_cmd_identifier_token9] = ACTIONS(1985), - [aux_sym_cmd_identifier_token10] = ACTIONS(1987), - [aux_sym_cmd_identifier_token11] = ACTIONS(1987), - [aux_sym_cmd_identifier_token12] = ACTIONS(1985), - [aux_sym_cmd_identifier_token13] = ACTIONS(1985), - [aux_sym_cmd_identifier_token14] = ACTIONS(1985), - [aux_sym_cmd_identifier_token15] = ACTIONS(1985), - [aux_sym_cmd_identifier_token16] = ACTIONS(1987), - [aux_sym_cmd_identifier_token17] = ACTIONS(1987), - [aux_sym_cmd_identifier_token18] = ACTIONS(1987), - [aux_sym_cmd_identifier_token19] = ACTIONS(1987), - [aux_sym_cmd_identifier_token20] = ACTIONS(1987), - [aux_sym_cmd_identifier_token21] = ACTIONS(1987), - [aux_sym_cmd_identifier_token22] = ACTIONS(1987), - [aux_sym_cmd_identifier_token23] = ACTIONS(1987), - [aux_sym_cmd_identifier_token24] = ACTIONS(1987), - [aux_sym_cmd_identifier_token25] = ACTIONS(1987), - [aux_sym_cmd_identifier_token26] = ACTIONS(1987), - [aux_sym_cmd_identifier_token27] = ACTIONS(1987), - [aux_sym_cmd_identifier_token28] = ACTIONS(1987), - [aux_sym_cmd_identifier_token29] = ACTIONS(1987), - [aux_sym_cmd_identifier_token30] = ACTIONS(1987), - [aux_sym_cmd_identifier_token31] = ACTIONS(1987), - [aux_sym_cmd_identifier_token32] = ACTIONS(1987), - [aux_sym_cmd_identifier_token33] = ACTIONS(1987), - [aux_sym_cmd_identifier_token34] = ACTIONS(1985), - [aux_sym_cmd_identifier_token35] = ACTIONS(1987), - [aux_sym_cmd_identifier_token36] = ACTIONS(1987), - [aux_sym_cmd_identifier_token37] = ACTIONS(1987), - [aux_sym_cmd_identifier_token38] = ACTIONS(1985), - [aux_sym_cmd_identifier_token39] = ACTIONS(1987), - [aux_sym_cmd_identifier_token40] = ACTIONS(1987), - [anon_sym_def] = ACTIONS(1985), - [anon_sym_export_DASHenv] = ACTIONS(1985), - [anon_sym_extern] = ACTIONS(1985), - [anon_sym_module] = ACTIONS(1985), - [anon_sym_use] = ACTIONS(1985), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_COMMA] = ACTIONS(1987), - [anon_sym_DOLLAR] = ACTIONS(1985), - [anon_sym_error] = ACTIONS(1985), - [anon_sym_DASH2] = ACTIONS(1985), - [anon_sym_break] = ACTIONS(1985), - [anon_sym_continue] = ACTIONS(1985), - [anon_sym_for] = ACTIONS(1985), - [anon_sym_in2] = ACTIONS(1985), - [anon_sym_loop] = ACTIONS(1985), - [anon_sym_make] = ACTIONS(1985), - [anon_sym_while] = ACTIONS(1985), - [anon_sym_do] = ACTIONS(1985), - [anon_sym_if] = ACTIONS(1985), - [anon_sym_else] = ACTIONS(1985), - [anon_sym_match] = ACTIONS(1985), - [anon_sym_RBRACE] = ACTIONS(1987), - [anon_sym_try] = ACTIONS(1985), - [anon_sym_catch] = ACTIONS(1985), - [anon_sym_return] = ACTIONS(1985), - [anon_sym_source] = ACTIONS(1985), - [anon_sym_source_DASHenv] = ACTIONS(1985), - [anon_sym_hide] = ACTIONS(1985), - [anon_sym_hide_DASHenv] = ACTIONS(1985), - [anon_sym_overlay] = ACTIONS(1985), - [anon_sym_as] = ACTIONS(1985), - [anon_sym_PLUS2] = ACTIONS(1985), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1987), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1987), - [aux_sym__val_number_decimal_token1] = ACTIONS(1985), - [aux_sym__val_number_decimal_token2] = ACTIONS(1987), - [aux_sym__val_number_decimal_token3] = ACTIONS(1987), - [aux_sym__val_number_decimal_token4] = ACTIONS(1987), - [aux_sym__val_number_token1] = ACTIONS(1987), - [aux_sym__val_number_token2] = ACTIONS(1987), - [aux_sym__val_number_token3] = ACTIONS(1987), - [aux_sym__val_number_token4] = ACTIONS(1985), - [aux_sym__val_number_token5] = ACTIONS(1985), - [aux_sym__val_number_token6] = ACTIONS(1985), - [anon_sym_DQUOTE] = ACTIONS(1987), - [sym__str_single_quotes] = ACTIONS(1987), - [sym__str_back_ticks] = ACTIONS(1987), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1987), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1987), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1987), - [anon_sym_register] = ACTIONS(1985), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1987), - }, - [693] = { - [sym_comment] = STATE(693), - [anon_sym_export] = ACTIONS(962), - [anon_sym_alias] = ACTIONS(962), - [anon_sym_let] = ACTIONS(962), - [anon_sym_let_DASHenv] = ACTIONS(962), - [anon_sym_mut] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [aux_sym_cmd_identifier_token1] = ACTIONS(962), - [aux_sym_cmd_identifier_token2] = ACTIONS(964), - [aux_sym_cmd_identifier_token3] = ACTIONS(964), - [aux_sym_cmd_identifier_token4] = ACTIONS(964), - [aux_sym_cmd_identifier_token5] = ACTIONS(964), - [aux_sym_cmd_identifier_token6] = ACTIONS(964), - [aux_sym_cmd_identifier_token7] = ACTIONS(964), - [aux_sym_cmd_identifier_token8] = ACTIONS(962), - [aux_sym_cmd_identifier_token9] = ACTIONS(962), - [aux_sym_cmd_identifier_token10] = ACTIONS(964), - [aux_sym_cmd_identifier_token11] = ACTIONS(964), - [aux_sym_cmd_identifier_token12] = ACTIONS(962), - [aux_sym_cmd_identifier_token13] = ACTIONS(962), - [aux_sym_cmd_identifier_token14] = ACTIONS(962), - [aux_sym_cmd_identifier_token15] = ACTIONS(962), - [aux_sym_cmd_identifier_token16] = ACTIONS(964), - [aux_sym_cmd_identifier_token17] = ACTIONS(964), - [aux_sym_cmd_identifier_token18] = ACTIONS(964), - [aux_sym_cmd_identifier_token19] = ACTIONS(964), - [aux_sym_cmd_identifier_token20] = ACTIONS(964), - [aux_sym_cmd_identifier_token21] = ACTIONS(964), - [aux_sym_cmd_identifier_token22] = ACTIONS(964), - [aux_sym_cmd_identifier_token23] = ACTIONS(964), - [aux_sym_cmd_identifier_token24] = ACTIONS(964), - [aux_sym_cmd_identifier_token25] = ACTIONS(964), - [aux_sym_cmd_identifier_token26] = ACTIONS(964), - [aux_sym_cmd_identifier_token27] = ACTIONS(964), - [aux_sym_cmd_identifier_token28] = ACTIONS(964), - [aux_sym_cmd_identifier_token29] = ACTIONS(964), - [aux_sym_cmd_identifier_token30] = ACTIONS(964), - [aux_sym_cmd_identifier_token31] = ACTIONS(964), - [aux_sym_cmd_identifier_token32] = ACTIONS(964), - [aux_sym_cmd_identifier_token33] = ACTIONS(964), - [aux_sym_cmd_identifier_token34] = ACTIONS(962), - [aux_sym_cmd_identifier_token35] = ACTIONS(964), - [aux_sym_cmd_identifier_token36] = ACTIONS(964), - [aux_sym_cmd_identifier_token37] = ACTIONS(964), - [aux_sym_cmd_identifier_token38] = ACTIONS(962), - [aux_sym_cmd_identifier_token39] = ACTIONS(964), - [aux_sym_cmd_identifier_token40] = ACTIONS(964), - [anon_sym_def] = ACTIONS(962), - [anon_sym_export_DASHenv] = ACTIONS(962), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_module] = ACTIONS(962), - [anon_sym_use] = ACTIONS(962), - [anon_sym_LPAREN] = ACTIONS(964), - [anon_sym_COMMA] = ACTIONS(964), - [anon_sym_DOLLAR] = ACTIONS(962), - [anon_sym_error] = ACTIONS(962), - [anon_sym_DASH2] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_in2] = ACTIONS(962), - [anon_sym_loop] = ACTIONS(962), - [anon_sym_make] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [anon_sym_do] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [anon_sym_else] = ACTIONS(962), - [anon_sym_match] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_try] = ACTIONS(962), - [anon_sym_catch] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_source] = ACTIONS(962), - [anon_sym_source_DASHenv] = ACTIONS(962), - [anon_sym_hide] = ACTIONS(962), - [anon_sym_hide_DASHenv] = ACTIONS(962), - [anon_sym_overlay] = ACTIONS(962), - [anon_sym_as] = ACTIONS(962), - [anon_sym_PLUS2] = ACTIONS(962), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(964), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(964), - [aux_sym__val_number_decimal_token1] = ACTIONS(962), - [aux_sym__val_number_decimal_token2] = ACTIONS(964), - [aux_sym__val_number_decimal_token3] = ACTIONS(964), - [aux_sym__val_number_decimal_token4] = ACTIONS(964), - [aux_sym__val_number_token1] = ACTIONS(964), - [aux_sym__val_number_token2] = ACTIONS(964), - [aux_sym__val_number_token3] = ACTIONS(964), - [aux_sym__val_number_token4] = ACTIONS(962), - [aux_sym__val_number_token5] = ACTIONS(962), - [aux_sym__val_number_token6] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym__str_single_quotes] = ACTIONS(964), - [sym__str_back_ticks] = ACTIONS(964), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(964), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(964), - [anon_sym_register] = ACTIONS(962), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(964), - }, - [694] = { - [sym_comment] = STATE(694), - [anon_sym_export] = ACTIONS(2386), - [anon_sym_alias] = ACTIONS(2386), - [anon_sym_let] = ACTIONS(2386), - [anon_sym_let_DASHenv] = ACTIONS(2386), - [anon_sym_mut] = ACTIONS(2386), - [anon_sym_const] = ACTIONS(2386), - [aux_sym_cmd_identifier_token1] = ACTIONS(2386), - [aux_sym_cmd_identifier_token2] = ACTIONS(2388), - [aux_sym_cmd_identifier_token3] = ACTIONS(2388), - [aux_sym_cmd_identifier_token4] = ACTIONS(2388), - [aux_sym_cmd_identifier_token5] = ACTIONS(2388), - [aux_sym_cmd_identifier_token6] = ACTIONS(2388), - [aux_sym_cmd_identifier_token7] = ACTIONS(2388), - [aux_sym_cmd_identifier_token8] = ACTIONS(2386), - [aux_sym_cmd_identifier_token9] = ACTIONS(2386), - [aux_sym_cmd_identifier_token10] = ACTIONS(2388), - [aux_sym_cmd_identifier_token11] = ACTIONS(2388), - [aux_sym_cmd_identifier_token12] = ACTIONS(2386), - [aux_sym_cmd_identifier_token13] = ACTIONS(2386), - [aux_sym_cmd_identifier_token14] = ACTIONS(2386), - [aux_sym_cmd_identifier_token15] = ACTIONS(2386), - [aux_sym_cmd_identifier_token16] = ACTIONS(2388), - [aux_sym_cmd_identifier_token17] = ACTIONS(2388), - [aux_sym_cmd_identifier_token18] = ACTIONS(2388), - [aux_sym_cmd_identifier_token19] = ACTIONS(2388), - [aux_sym_cmd_identifier_token20] = ACTIONS(2388), - [aux_sym_cmd_identifier_token21] = ACTIONS(2388), - [aux_sym_cmd_identifier_token22] = ACTIONS(2388), - [aux_sym_cmd_identifier_token23] = ACTIONS(2388), - [aux_sym_cmd_identifier_token24] = ACTIONS(2388), - [aux_sym_cmd_identifier_token25] = ACTIONS(2388), - [aux_sym_cmd_identifier_token26] = ACTIONS(2388), - [aux_sym_cmd_identifier_token27] = ACTIONS(2388), - [aux_sym_cmd_identifier_token28] = ACTIONS(2388), - [aux_sym_cmd_identifier_token29] = ACTIONS(2388), - [aux_sym_cmd_identifier_token30] = ACTIONS(2388), - [aux_sym_cmd_identifier_token31] = ACTIONS(2388), - [aux_sym_cmd_identifier_token32] = ACTIONS(2388), - [aux_sym_cmd_identifier_token33] = ACTIONS(2388), - [aux_sym_cmd_identifier_token34] = ACTIONS(2386), - [aux_sym_cmd_identifier_token35] = ACTIONS(2388), - [aux_sym_cmd_identifier_token36] = ACTIONS(2388), - [aux_sym_cmd_identifier_token37] = ACTIONS(2388), - [aux_sym_cmd_identifier_token38] = ACTIONS(2386), - [aux_sym_cmd_identifier_token39] = ACTIONS(2388), - [aux_sym_cmd_identifier_token40] = ACTIONS(2388), - [anon_sym_def] = ACTIONS(2386), - [anon_sym_export_DASHenv] = ACTIONS(2386), - [anon_sym_extern] = ACTIONS(2386), - [anon_sym_module] = ACTIONS(2386), - [anon_sym_use] = ACTIONS(2386), - [anon_sym_LPAREN] = ACTIONS(2388), - [anon_sym_COMMA] = ACTIONS(2388), - [anon_sym_DOLLAR] = ACTIONS(2386), - [anon_sym_error] = ACTIONS(2386), - [anon_sym_DASH2] = ACTIONS(2386), - [anon_sym_break] = ACTIONS(2386), - [anon_sym_continue] = ACTIONS(2386), - [anon_sym_for] = ACTIONS(2386), - [anon_sym_in2] = ACTIONS(2386), - [anon_sym_loop] = ACTIONS(2386), - [anon_sym_make] = ACTIONS(2386), - [anon_sym_while] = ACTIONS(2386), - [anon_sym_do] = ACTIONS(2386), - [anon_sym_if] = ACTIONS(2386), - [anon_sym_else] = ACTIONS(2386), - [anon_sym_match] = ACTIONS(2386), - [anon_sym_RBRACE] = ACTIONS(2388), - [anon_sym_try] = ACTIONS(2386), - [anon_sym_catch] = ACTIONS(2386), - [anon_sym_return] = ACTIONS(2386), - [anon_sym_source] = ACTIONS(2386), - [anon_sym_source_DASHenv] = ACTIONS(2386), - [anon_sym_hide] = ACTIONS(2386), - [anon_sym_hide_DASHenv] = ACTIONS(2386), - [anon_sym_overlay] = ACTIONS(2386), - [anon_sym_as] = ACTIONS(2386), - [anon_sym_PLUS2] = ACTIONS(2386), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2388), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2388), - [aux_sym__val_number_decimal_token1] = ACTIONS(2386), - [aux_sym__val_number_decimal_token2] = ACTIONS(2388), - [aux_sym__val_number_decimal_token3] = ACTIONS(2388), - [aux_sym__val_number_decimal_token4] = ACTIONS(2388), - [aux_sym__val_number_token1] = ACTIONS(2388), - [aux_sym__val_number_token2] = ACTIONS(2388), - [aux_sym__val_number_token3] = ACTIONS(2388), - [aux_sym__val_number_token4] = ACTIONS(2386), - [aux_sym__val_number_token5] = ACTIONS(2386), - [aux_sym__val_number_token6] = ACTIONS(2386), - [anon_sym_DQUOTE] = ACTIONS(2388), - [sym__str_single_quotes] = ACTIONS(2388), - [sym__str_back_ticks] = ACTIONS(2388), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2388), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2388), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2388), - [anon_sym_register] = ACTIONS(2386), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2388), - }, - [695] = { - [sym_comment] = STATE(695), - [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_COMMA] = ACTIONS(1929), - [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(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_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_DOLLAR_SQUOTE] = ACTIONS(1929), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1929), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1929), - [anon_sym_register] = ACTIONS(1927), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1929), + [656] = { + [sym_comment] = STATE(656), + [anon_sym_export] = ACTIONS(2302), + [anon_sym_alias] = ACTIONS(2302), + [anon_sym_let] = ACTIONS(2302), + [anon_sym_let_DASHenv] = ACTIONS(2302), + [anon_sym_mut] = ACTIONS(2302), + [anon_sym_const] = ACTIONS(2302), + [aux_sym_cmd_identifier_token1] = ACTIONS(2302), + [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(2302), + [aux_sym_cmd_identifier_token9] = ACTIONS(2302), + [aux_sym_cmd_identifier_token10] = ACTIONS(2304), + [aux_sym_cmd_identifier_token11] = ACTIONS(2304), + [aux_sym_cmd_identifier_token12] = ACTIONS(2302), + [aux_sym_cmd_identifier_token13] = ACTIONS(2302), + [aux_sym_cmd_identifier_token14] = ACTIONS(2302), + [aux_sym_cmd_identifier_token15] = ACTIONS(2302), + [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(2302), + [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(2302), + [aux_sym_cmd_identifier_token39] = ACTIONS(2304), + [aux_sym_cmd_identifier_token40] = ACTIONS(2304), + [anon_sym_def] = ACTIONS(2302), + [anon_sym_export_DASHenv] = ACTIONS(2302), + [anon_sym_extern] = ACTIONS(2302), + [anon_sym_module] = ACTIONS(2302), + [anon_sym_use] = ACTIONS(2302), + [anon_sym_LPAREN] = ACTIONS(2304), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_DOLLAR] = ACTIONS(2302), + [anon_sym_error] = ACTIONS(2302), + [anon_sym_DASH2] = ACTIONS(2302), + [anon_sym_break] = ACTIONS(2302), + [anon_sym_continue] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(2302), + [anon_sym_in2] = ACTIONS(2302), + [anon_sym_loop] = ACTIONS(2302), + [anon_sym_make] = ACTIONS(2302), + [anon_sym_while] = ACTIONS(2302), + [anon_sym_do] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2302), + [anon_sym_else] = ACTIONS(2302), + [anon_sym_match] = ACTIONS(2302), + [anon_sym_RBRACE] = ACTIONS(2304), + [anon_sym_try] = ACTIONS(2302), + [anon_sym_catch] = ACTIONS(2302), + [anon_sym_return] = ACTIONS(2302), + [anon_sym_source] = ACTIONS(2302), + [anon_sym_source_DASHenv] = ACTIONS(2302), + [anon_sym_hide] = ACTIONS(2302), + [anon_sym_hide_DASHenv] = ACTIONS(2302), + [anon_sym_overlay] = ACTIONS(2302), + [anon_sym_as] = ACTIONS(2302), + [anon_sym_PLUS2] = ACTIONS(2302), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2304), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2304), + [aux_sym__val_number_decimal_token1] = ACTIONS(2302), + [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(2302), + [aux_sym__val_number_token5] = ACTIONS(2302), + [aux_sym__val_number_token6] = ACTIONS(2302), + [anon_sym_DQUOTE] = ACTIONS(2304), + [sym__str_single_quotes] = ACTIONS(2304), + [sym__str_back_ticks] = ACTIONS(2304), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2304), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2304), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2304), + [anon_sym_register] = ACTIONS(2302), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2304), }, - [696] = { - [sym_comment] = STATE(696), - [anon_sym_export] = ACTIONS(1955), - [anon_sym_alias] = ACTIONS(1955), - [anon_sym_let] = ACTIONS(1955), - [anon_sym_let_DASHenv] = ACTIONS(1955), - [anon_sym_mut] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [aux_sym_cmd_identifier_token1] = ACTIONS(1955), - [aux_sym_cmd_identifier_token2] = ACTIONS(1957), - [aux_sym_cmd_identifier_token3] = ACTIONS(1957), - [aux_sym_cmd_identifier_token4] = ACTIONS(1957), - [aux_sym_cmd_identifier_token5] = ACTIONS(1957), - [aux_sym_cmd_identifier_token6] = ACTIONS(1957), - [aux_sym_cmd_identifier_token7] = ACTIONS(1957), - [aux_sym_cmd_identifier_token8] = ACTIONS(1955), - [aux_sym_cmd_identifier_token9] = ACTIONS(1955), - [aux_sym_cmd_identifier_token10] = ACTIONS(1957), - [aux_sym_cmd_identifier_token11] = ACTIONS(1957), - [aux_sym_cmd_identifier_token12] = ACTIONS(1955), - [aux_sym_cmd_identifier_token13] = ACTIONS(1955), - [aux_sym_cmd_identifier_token14] = ACTIONS(1955), - [aux_sym_cmd_identifier_token15] = ACTIONS(1955), - [aux_sym_cmd_identifier_token16] = ACTIONS(1957), - [aux_sym_cmd_identifier_token17] = ACTIONS(1957), - [aux_sym_cmd_identifier_token18] = ACTIONS(1957), - [aux_sym_cmd_identifier_token19] = ACTIONS(1957), - [aux_sym_cmd_identifier_token20] = ACTIONS(1957), - [aux_sym_cmd_identifier_token21] = ACTIONS(1957), - [aux_sym_cmd_identifier_token22] = ACTIONS(1957), - [aux_sym_cmd_identifier_token23] = ACTIONS(1957), - [aux_sym_cmd_identifier_token24] = ACTIONS(1957), - [aux_sym_cmd_identifier_token25] = ACTIONS(1957), - [aux_sym_cmd_identifier_token26] = ACTIONS(1957), - [aux_sym_cmd_identifier_token27] = ACTIONS(1957), - [aux_sym_cmd_identifier_token28] = ACTIONS(1957), - [aux_sym_cmd_identifier_token29] = ACTIONS(1957), - [aux_sym_cmd_identifier_token30] = ACTIONS(1957), - [aux_sym_cmd_identifier_token31] = ACTIONS(1957), - [aux_sym_cmd_identifier_token32] = ACTIONS(1957), - [aux_sym_cmd_identifier_token33] = ACTIONS(1957), - [aux_sym_cmd_identifier_token34] = ACTIONS(1955), - [aux_sym_cmd_identifier_token35] = ACTIONS(1957), - [aux_sym_cmd_identifier_token36] = ACTIONS(1957), - [aux_sym_cmd_identifier_token37] = ACTIONS(1957), - [aux_sym_cmd_identifier_token38] = ACTIONS(1955), - [aux_sym_cmd_identifier_token39] = ACTIONS(1957), - [aux_sym_cmd_identifier_token40] = ACTIONS(1957), - [anon_sym_def] = ACTIONS(1955), - [anon_sym_export_DASHenv] = ACTIONS(1955), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym_module] = ACTIONS(1955), - [anon_sym_use] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1957), - [anon_sym_COMMA] = ACTIONS(1957), - [anon_sym_DOLLAR] = ACTIONS(1955), - [anon_sym_error] = ACTIONS(1955), - [anon_sym_DASH2] = ACTIONS(1955), - [anon_sym_break] = ACTIONS(1955), - [anon_sym_continue] = ACTIONS(1955), - [anon_sym_for] = ACTIONS(1955), - [anon_sym_in2] = ACTIONS(1955), - [anon_sym_loop] = ACTIONS(1955), - [anon_sym_make] = ACTIONS(1955), - [anon_sym_while] = ACTIONS(1955), - [anon_sym_do] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1955), - [anon_sym_else] = ACTIONS(1955), - [anon_sym_match] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1957), - [anon_sym_try] = ACTIONS(1955), - [anon_sym_catch] = ACTIONS(1955), - [anon_sym_return] = ACTIONS(1955), - [anon_sym_source] = ACTIONS(1955), - [anon_sym_source_DASHenv] = ACTIONS(1955), - [anon_sym_hide] = ACTIONS(1955), - [anon_sym_hide_DASHenv] = ACTIONS(1955), - [anon_sym_overlay] = ACTIONS(1955), - [anon_sym_as] = ACTIONS(1955), - [anon_sym_PLUS2] = ACTIONS(1955), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1957), - [aux_sym__val_number_decimal_token1] = ACTIONS(1955), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1957), - [aux_sym__val_number_decimal_token4] = ACTIONS(1957), - [aux_sym__val_number_token1] = ACTIONS(1957), - [aux_sym__val_number_token2] = ACTIONS(1957), - [aux_sym__val_number_token3] = ACTIONS(1957), - [aux_sym__val_number_token4] = ACTIONS(1955), - [aux_sym__val_number_token5] = ACTIONS(1955), - [aux_sym__val_number_token6] = ACTIONS(1955), - [anon_sym_DQUOTE] = ACTIONS(1957), - [sym__str_single_quotes] = ACTIONS(1957), - [sym__str_back_ticks] = ACTIONS(1957), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1957), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1957), - [anon_sym_register] = ACTIONS(1955), + [657] = { + [sym_comment] = STATE(657), + [anon_sym_export] = ACTIONS(2306), + [anon_sym_alias] = ACTIONS(2306), + [anon_sym_let] = ACTIONS(2306), + [anon_sym_let_DASHenv] = ACTIONS(2306), + [anon_sym_mut] = ACTIONS(2306), + [anon_sym_const] = ACTIONS(2306), + [aux_sym_cmd_identifier_token1] = ACTIONS(2306), + [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(2306), + [aux_sym_cmd_identifier_token9] = ACTIONS(2306), + [aux_sym_cmd_identifier_token10] = ACTIONS(2308), + [aux_sym_cmd_identifier_token11] = ACTIONS(2308), + [aux_sym_cmd_identifier_token12] = ACTIONS(2306), + [aux_sym_cmd_identifier_token13] = ACTIONS(2306), + [aux_sym_cmd_identifier_token14] = ACTIONS(2306), + [aux_sym_cmd_identifier_token15] = ACTIONS(2306), + [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(2306), + [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(2306), + [aux_sym_cmd_identifier_token39] = ACTIONS(2308), + [aux_sym_cmd_identifier_token40] = ACTIONS(2308), + [anon_sym_def] = ACTIONS(2306), + [anon_sym_export_DASHenv] = ACTIONS(2306), + [anon_sym_extern] = ACTIONS(2306), + [anon_sym_module] = ACTIONS(2306), + [anon_sym_use] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2308), + [anon_sym_COMMA] = ACTIONS(2308), + [anon_sym_DOLLAR] = ACTIONS(2306), + [anon_sym_error] = ACTIONS(2306), + [anon_sym_DASH2] = ACTIONS(2306), + [anon_sym_break] = ACTIONS(2306), + [anon_sym_continue] = ACTIONS(2306), + [anon_sym_for] = ACTIONS(2306), + [anon_sym_in2] = ACTIONS(2306), + [anon_sym_loop] = ACTIONS(2306), + [anon_sym_make] = ACTIONS(2306), + [anon_sym_while] = ACTIONS(2306), + [anon_sym_do] = ACTIONS(2306), + [anon_sym_if] = ACTIONS(2306), + [anon_sym_else] = ACTIONS(2306), + [anon_sym_match] = ACTIONS(2306), + [anon_sym_RBRACE] = ACTIONS(2308), + [anon_sym_try] = ACTIONS(2306), + [anon_sym_catch] = ACTIONS(2306), + [anon_sym_return] = ACTIONS(2306), + [anon_sym_source] = ACTIONS(2306), + [anon_sym_source_DASHenv] = ACTIONS(2306), + [anon_sym_hide] = ACTIONS(2306), + [anon_sym_hide_DASHenv] = ACTIONS(2306), + [anon_sym_overlay] = ACTIONS(2306), + [anon_sym_as] = ACTIONS(2306), + [anon_sym_PLUS2] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2308), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2308), + [aux_sym__val_number_decimal_token1] = ACTIONS(2306), + [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(2306), + [aux_sym__val_number_token5] = ACTIONS(2306), + [aux_sym__val_number_token6] = ACTIONS(2306), + [anon_sym_DQUOTE] = ACTIONS(2308), + [sym__str_single_quotes] = ACTIONS(2308), + [sym__str_back_ticks] = ACTIONS(2308), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2308), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2308), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2308), + [anon_sym_register] = ACTIONS(2306), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1957), + [sym_raw_string_begin] = ACTIONS(2308), }, - [697] = { - [sym_comment] = STATE(697), - [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_COMMA] = ACTIONS(2400), - [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(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_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_DOLLAR_SQUOTE] = ACTIONS(2400), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2400), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2400), - [anon_sym_register] = ACTIONS(2398), + [658] = { + [sym_comment] = STATE(658), + [anon_sym_export] = ACTIONS(2310), + [anon_sym_alias] = ACTIONS(2310), + [anon_sym_let] = ACTIONS(2310), + [anon_sym_let_DASHenv] = ACTIONS(2310), + [anon_sym_mut] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2310), + [aux_sym_cmd_identifier_token1] = ACTIONS(2310), + [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(2310), + [aux_sym_cmd_identifier_token9] = ACTIONS(2310), + [aux_sym_cmd_identifier_token10] = ACTIONS(2312), + [aux_sym_cmd_identifier_token11] = ACTIONS(2312), + [aux_sym_cmd_identifier_token12] = ACTIONS(2310), + [aux_sym_cmd_identifier_token13] = ACTIONS(2310), + [aux_sym_cmd_identifier_token14] = ACTIONS(2310), + [aux_sym_cmd_identifier_token15] = ACTIONS(2310), + [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(2310), + [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(2310), + [aux_sym_cmd_identifier_token39] = ACTIONS(2312), + [aux_sym_cmd_identifier_token40] = ACTIONS(2312), + [anon_sym_def] = ACTIONS(2310), + [anon_sym_export_DASHenv] = ACTIONS(2310), + [anon_sym_extern] = ACTIONS(2310), + [anon_sym_module] = ACTIONS(2310), + [anon_sym_use] = ACTIONS(2310), + [anon_sym_LPAREN] = ACTIONS(2312), + [anon_sym_COMMA] = ACTIONS(2312), + [anon_sym_DOLLAR] = ACTIONS(2310), + [anon_sym_error] = ACTIONS(2310), + [anon_sym_DASH2] = ACTIONS(2310), + [anon_sym_break] = ACTIONS(2310), + [anon_sym_continue] = ACTIONS(2310), + [anon_sym_for] = ACTIONS(2310), + [anon_sym_in2] = ACTIONS(2310), + [anon_sym_loop] = ACTIONS(2310), + [anon_sym_make] = ACTIONS(2310), + [anon_sym_while] = ACTIONS(2310), + [anon_sym_do] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(2310), + [anon_sym_else] = ACTIONS(2310), + [anon_sym_match] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2312), + [anon_sym_try] = ACTIONS(2310), + [anon_sym_catch] = ACTIONS(2310), + [anon_sym_return] = ACTIONS(2310), + [anon_sym_source] = ACTIONS(2310), + [anon_sym_source_DASHenv] = ACTIONS(2310), + [anon_sym_hide] = ACTIONS(2310), + [anon_sym_hide_DASHenv] = ACTIONS(2310), + [anon_sym_overlay] = ACTIONS(2310), + [anon_sym_as] = ACTIONS(2310), + [anon_sym_PLUS2] = ACTIONS(2310), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2312), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2312), + [aux_sym__val_number_decimal_token1] = ACTIONS(2310), + [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(2310), + [aux_sym__val_number_token5] = ACTIONS(2310), + [aux_sym__val_number_token6] = ACTIONS(2310), + [anon_sym_DQUOTE] = ACTIONS(2312), + [sym__str_single_quotes] = ACTIONS(2312), + [sym__str_back_ticks] = ACTIONS(2312), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2312), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2312), + [anon_sym_register] = ACTIONS(2310), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2400), + [sym_raw_string_begin] = ACTIONS(2312), }, - [698] = { - [sym_comment] = STATE(698), - [anon_sym_export] = ACTIONS(2324), - [anon_sym_alias] = ACTIONS(2324), - [anon_sym_let] = ACTIONS(2324), - [anon_sym_let_DASHenv] = ACTIONS(2324), - [anon_sym_mut] = ACTIONS(2324), - [anon_sym_const] = ACTIONS(2324), - [aux_sym_cmd_identifier_token1] = ACTIONS(2324), - [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(2324), - [aux_sym_cmd_identifier_token9] = ACTIONS(2324), - [aux_sym_cmd_identifier_token10] = ACTIONS(2326), - [aux_sym_cmd_identifier_token11] = ACTIONS(2326), - [aux_sym_cmd_identifier_token12] = ACTIONS(2324), - [aux_sym_cmd_identifier_token13] = ACTIONS(2324), - [aux_sym_cmd_identifier_token14] = ACTIONS(2324), - [aux_sym_cmd_identifier_token15] = ACTIONS(2324), - [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(2324), - [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(2324), - [aux_sym_cmd_identifier_token39] = ACTIONS(2326), - [aux_sym_cmd_identifier_token40] = ACTIONS(2326), - [anon_sym_def] = ACTIONS(2324), - [anon_sym_export_DASHenv] = ACTIONS(2324), - [anon_sym_extern] = ACTIONS(2324), - [anon_sym_module] = ACTIONS(2324), - [anon_sym_use] = ACTIONS(2324), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_COMMA] = ACTIONS(2326), - [anon_sym_DOLLAR] = ACTIONS(2324), - [anon_sym_error] = ACTIONS(2324), - [anon_sym_DASH2] = ACTIONS(2324), - [anon_sym_break] = ACTIONS(2324), - [anon_sym_continue] = ACTIONS(2324), - [anon_sym_for] = ACTIONS(2324), - [anon_sym_in2] = ACTIONS(2324), - [anon_sym_loop] = ACTIONS(2324), - [anon_sym_make] = ACTIONS(2324), - [anon_sym_while] = ACTIONS(2324), - [anon_sym_do] = ACTIONS(2324), - [anon_sym_if] = ACTIONS(2324), - [anon_sym_else] = ACTIONS(2324), - [anon_sym_match] = ACTIONS(2324), - [anon_sym_RBRACE] = ACTIONS(2326), - [anon_sym_try] = ACTIONS(2324), - [anon_sym_catch] = ACTIONS(2324), - [anon_sym_return] = ACTIONS(2324), - [anon_sym_source] = ACTIONS(2324), - [anon_sym_source_DASHenv] = ACTIONS(2324), - [anon_sym_hide] = ACTIONS(2324), - [anon_sym_hide_DASHenv] = ACTIONS(2324), - [anon_sym_overlay] = ACTIONS(2324), - [anon_sym_as] = ACTIONS(2324), - [anon_sym_PLUS2] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2326), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2326), - [aux_sym__val_number_decimal_token1] = ACTIONS(2324), - [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(2324), - [aux_sym__val_number_token5] = ACTIONS(2324), - [aux_sym__val_number_token6] = ACTIONS(2324), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(2326), - [anon_sym_register] = ACTIONS(2324), + [659] = { + [sym_comment] = STATE(659), + [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(2320), + [anon_sym_COMMA] = ACTIONS(2320), + [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(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_hide] = ACTIONS(2318), + [anon_sym_hide_DASHenv] = ACTIONS(2318), + [anon_sym_overlay] = ACTIONS(2318), + [anon_sym_as] = ACTIONS(2318), + [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_DOLLAR_SQUOTE] = ACTIONS(2320), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2320), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2320), + [anon_sym_register] = ACTIONS(2318), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2326), + [sym_raw_string_begin] = ACTIONS(2320), }, - [699] = { - [sym_comment] = STATE(699), - [anon_sym_export] = ACTIONS(1666), - [anon_sym_alias] = ACTIONS(1666), - [anon_sym_let] = ACTIONS(1666), - [anon_sym_let_DASHenv] = ACTIONS(1666), - [anon_sym_mut] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [aux_sym_cmd_identifier_token1] = ACTIONS(1666), - [aux_sym_cmd_identifier_token2] = ACTIONS(1668), - [aux_sym_cmd_identifier_token3] = ACTIONS(1668), - [aux_sym_cmd_identifier_token4] = ACTIONS(1668), - [aux_sym_cmd_identifier_token5] = ACTIONS(1668), - [aux_sym_cmd_identifier_token6] = ACTIONS(1668), - [aux_sym_cmd_identifier_token7] = ACTIONS(1668), - [aux_sym_cmd_identifier_token8] = ACTIONS(1666), - [aux_sym_cmd_identifier_token9] = ACTIONS(1666), - [aux_sym_cmd_identifier_token10] = ACTIONS(1668), - [aux_sym_cmd_identifier_token11] = ACTIONS(1668), - [aux_sym_cmd_identifier_token12] = ACTIONS(1666), - [aux_sym_cmd_identifier_token13] = ACTIONS(1666), - [aux_sym_cmd_identifier_token14] = ACTIONS(1666), - [aux_sym_cmd_identifier_token15] = ACTIONS(1666), - [aux_sym_cmd_identifier_token16] = ACTIONS(1668), - [aux_sym_cmd_identifier_token17] = ACTIONS(1668), - [aux_sym_cmd_identifier_token18] = ACTIONS(1668), - [aux_sym_cmd_identifier_token19] = ACTIONS(1668), - [aux_sym_cmd_identifier_token20] = ACTIONS(1668), - [aux_sym_cmd_identifier_token21] = ACTIONS(1668), - [aux_sym_cmd_identifier_token22] = ACTIONS(1668), - [aux_sym_cmd_identifier_token23] = ACTIONS(1668), - [aux_sym_cmd_identifier_token24] = ACTIONS(1668), - [aux_sym_cmd_identifier_token25] = ACTIONS(1668), - [aux_sym_cmd_identifier_token26] = ACTIONS(1668), - [aux_sym_cmd_identifier_token27] = ACTIONS(1668), - [aux_sym_cmd_identifier_token28] = ACTIONS(1668), - [aux_sym_cmd_identifier_token29] = ACTIONS(1668), - [aux_sym_cmd_identifier_token30] = ACTIONS(1668), - [aux_sym_cmd_identifier_token31] = ACTIONS(1668), - [aux_sym_cmd_identifier_token32] = ACTIONS(1668), - [aux_sym_cmd_identifier_token33] = ACTIONS(1668), - [aux_sym_cmd_identifier_token34] = ACTIONS(1666), - [aux_sym_cmd_identifier_token35] = ACTIONS(1668), - [aux_sym_cmd_identifier_token36] = ACTIONS(1668), - [aux_sym_cmd_identifier_token37] = ACTIONS(1668), - [aux_sym_cmd_identifier_token38] = ACTIONS(1666), - [aux_sym_cmd_identifier_token39] = ACTIONS(1668), - [aux_sym_cmd_identifier_token40] = ACTIONS(1668), - [anon_sym_def] = ACTIONS(1666), - [anon_sym_export_DASHenv] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_module] = ACTIONS(1666), - [anon_sym_use] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_COMMA] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_error] = ACTIONS(1666), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_in2] = ACTIONS(1666), - [anon_sym_loop] = ACTIONS(1666), - [anon_sym_make] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_do] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_match] = ACTIONS(1666), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_try] = ACTIONS(1666), - [anon_sym_catch] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_source] = ACTIONS(1666), - [anon_sym_source_DASHenv] = ACTIONS(1666), - [anon_sym_hide] = ACTIONS(1666), - [anon_sym_hide_DASHenv] = ACTIONS(1666), - [anon_sym_overlay] = ACTIONS(1666), - [anon_sym_as] = ACTIONS(1666), - [anon_sym_PLUS2] = ACTIONS(1666), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1668), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1666), - [aux_sym__val_number_token5] = ACTIONS(1666), - [aux_sym__val_number_token6] = ACTIONS(1666), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1668), - [anon_sym_register] = ACTIONS(1666), + [660] = { + [sym_comment] = STATE(660), + [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(2324), + [aux_sym_cmd_identifier_token3] = ACTIONS(2324), + [aux_sym_cmd_identifier_token4] = ACTIONS(2324), + [aux_sym_cmd_identifier_token5] = ACTIONS(2324), + [aux_sym_cmd_identifier_token6] = ACTIONS(2324), + [aux_sym_cmd_identifier_token7] = ACTIONS(2324), + [aux_sym_cmd_identifier_token8] = ACTIONS(2322), + [aux_sym_cmd_identifier_token9] = ACTIONS(2322), + [aux_sym_cmd_identifier_token10] = ACTIONS(2324), + [aux_sym_cmd_identifier_token11] = ACTIONS(2324), + [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(2324), + [aux_sym_cmd_identifier_token17] = ACTIONS(2324), + [aux_sym_cmd_identifier_token18] = ACTIONS(2324), + [aux_sym_cmd_identifier_token19] = ACTIONS(2324), + [aux_sym_cmd_identifier_token20] = ACTIONS(2324), + [aux_sym_cmd_identifier_token21] = ACTIONS(2324), + [aux_sym_cmd_identifier_token22] = ACTIONS(2324), + [aux_sym_cmd_identifier_token23] = ACTIONS(2324), + [aux_sym_cmd_identifier_token24] = ACTIONS(2324), + [aux_sym_cmd_identifier_token25] = ACTIONS(2324), + [aux_sym_cmd_identifier_token26] = ACTIONS(2324), + [aux_sym_cmd_identifier_token27] = ACTIONS(2324), + [aux_sym_cmd_identifier_token28] = ACTIONS(2324), + [aux_sym_cmd_identifier_token29] = ACTIONS(2324), + [aux_sym_cmd_identifier_token30] = ACTIONS(2324), + [aux_sym_cmd_identifier_token31] = ACTIONS(2324), + [aux_sym_cmd_identifier_token32] = ACTIONS(2324), + [aux_sym_cmd_identifier_token33] = ACTIONS(2324), + [aux_sym_cmd_identifier_token34] = ACTIONS(2322), + [aux_sym_cmd_identifier_token35] = ACTIONS(2324), + [aux_sym_cmd_identifier_token36] = ACTIONS(2324), + [aux_sym_cmd_identifier_token37] = ACTIONS(2324), + [aux_sym_cmd_identifier_token38] = ACTIONS(2322), + [aux_sym_cmd_identifier_token39] = ACTIONS(2324), + [aux_sym_cmd_identifier_token40] = ACTIONS(2324), + [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(2324), + [anon_sym_COMMA] = ACTIONS(2324), + [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(2324), + [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_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(2324), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2324), + [aux_sym__val_number_decimal_token1] = ACTIONS(2322), + [aux_sym__val_number_decimal_token2] = ACTIONS(2324), + [aux_sym__val_number_decimal_token3] = ACTIONS(2324), + [aux_sym__val_number_decimal_token4] = ACTIONS(2324), + [aux_sym__val_number_token1] = ACTIONS(2324), + [aux_sym__val_number_token2] = ACTIONS(2324), + [aux_sym__val_number_token3] = ACTIONS(2324), + [aux_sym__val_number_token4] = ACTIONS(2322), + [aux_sym__val_number_token5] = ACTIONS(2322), + [aux_sym__val_number_token6] = ACTIONS(2322), + [anon_sym_DQUOTE] = ACTIONS(2324), + [sym__str_single_quotes] = ACTIONS(2324), + [sym__str_back_ticks] = ACTIONS(2324), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2324), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2324), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2324), + [anon_sym_register] = ACTIONS(2322), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), + [sym_raw_string_begin] = ACTIONS(2324), }, - [700] = { - [sym_comment] = STATE(700), - [anon_sym_export] = ACTIONS(1579), - [anon_sym_alias] = ACTIONS(1579), - [anon_sym_let] = ACTIONS(1579), - [anon_sym_let_DASHenv] = ACTIONS(1579), - [anon_sym_mut] = ACTIONS(1579), - [anon_sym_const] = ACTIONS(1579), - [aux_sym_cmd_identifier_token1] = ACTIONS(1579), - [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(1579), - [aux_sym_cmd_identifier_token9] = ACTIONS(1579), - [aux_sym_cmd_identifier_token10] = ACTIONS(1591), - [aux_sym_cmd_identifier_token11] = ACTIONS(1591), - [aux_sym_cmd_identifier_token12] = ACTIONS(1579), - [aux_sym_cmd_identifier_token13] = ACTIONS(1579), - [aux_sym_cmd_identifier_token14] = ACTIONS(1579), - [aux_sym_cmd_identifier_token15] = ACTIONS(1579), - [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(1579), - [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(1579), - [aux_sym_cmd_identifier_token39] = ACTIONS(1591), - [aux_sym_cmd_identifier_token40] = ACTIONS(1591), - [anon_sym_def] = ACTIONS(1579), - [anon_sym_export_DASHenv] = ACTIONS(1579), - [anon_sym_extern] = ACTIONS(1579), - [anon_sym_module] = ACTIONS(1579), - [anon_sym_use] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1591), - [anon_sym_COMMA] = ACTIONS(1591), - [anon_sym_DOLLAR] = ACTIONS(1579), - [anon_sym_error] = ACTIONS(1579), - [anon_sym_DASH2] = ACTIONS(1579), - [anon_sym_break] = ACTIONS(1579), - [anon_sym_continue] = ACTIONS(1579), - [anon_sym_for] = ACTIONS(1579), - [anon_sym_in2] = ACTIONS(1579), - [anon_sym_loop] = ACTIONS(1579), - [anon_sym_make] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1579), - [anon_sym_if] = ACTIONS(1579), - [anon_sym_else] = ACTIONS(1579), - [anon_sym_match] = ACTIONS(1579), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_try] = ACTIONS(1579), - [anon_sym_catch] = ACTIONS(1579), - [anon_sym_return] = ACTIONS(1579), - [anon_sym_source] = ACTIONS(1579), - [anon_sym_source_DASHenv] = ACTIONS(1579), - [anon_sym_hide] = ACTIONS(1579), - [anon_sym_hide_DASHenv] = ACTIONS(1579), - [anon_sym_overlay] = ACTIONS(1579), - [anon_sym_as] = ACTIONS(1579), - [anon_sym_PLUS2] = ACTIONS(1579), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1591), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1591), - [aux_sym__val_number_decimal_token1] = ACTIONS(1579), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [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(1579), - [aux_sym__val_number_token5] = ACTIONS(1579), - [aux_sym__val_number_token6] = ACTIONS(1579), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1591), - [anon_sym_register] = ACTIONS(1579), + [661] = { + [sym_comment] = STATE(661), + [anon_sym_export] = ACTIONS(2326), + [anon_sym_alias] = ACTIONS(2326), + [anon_sym_let] = ACTIONS(2326), + [anon_sym_let_DASHenv] = ACTIONS(2326), + [anon_sym_mut] = ACTIONS(2326), + [anon_sym_const] = ACTIONS(2326), + [aux_sym_cmd_identifier_token1] = ACTIONS(2326), + [aux_sym_cmd_identifier_token2] = ACTIONS(2328), + [aux_sym_cmd_identifier_token3] = ACTIONS(2328), + [aux_sym_cmd_identifier_token4] = ACTIONS(2328), + [aux_sym_cmd_identifier_token5] = ACTIONS(2328), + [aux_sym_cmd_identifier_token6] = ACTIONS(2328), + [aux_sym_cmd_identifier_token7] = ACTIONS(2328), + [aux_sym_cmd_identifier_token8] = ACTIONS(2326), + [aux_sym_cmd_identifier_token9] = ACTIONS(2326), + [aux_sym_cmd_identifier_token10] = ACTIONS(2328), + [aux_sym_cmd_identifier_token11] = ACTIONS(2328), + [aux_sym_cmd_identifier_token12] = ACTIONS(2326), + [aux_sym_cmd_identifier_token13] = ACTIONS(2326), + [aux_sym_cmd_identifier_token14] = ACTIONS(2326), + [aux_sym_cmd_identifier_token15] = ACTIONS(2326), + [aux_sym_cmd_identifier_token16] = ACTIONS(2328), + [aux_sym_cmd_identifier_token17] = ACTIONS(2328), + [aux_sym_cmd_identifier_token18] = ACTIONS(2328), + [aux_sym_cmd_identifier_token19] = ACTIONS(2328), + [aux_sym_cmd_identifier_token20] = ACTIONS(2328), + [aux_sym_cmd_identifier_token21] = ACTIONS(2328), + [aux_sym_cmd_identifier_token22] = ACTIONS(2328), + [aux_sym_cmd_identifier_token23] = ACTIONS(2328), + [aux_sym_cmd_identifier_token24] = ACTIONS(2328), + [aux_sym_cmd_identifier_token25] = ACTIONS(2328), + [aux_sym_cmd_identifier_token26] = ACTIONS(2328), + [aux_sym_cmd_identifier_token27] = ACTIONS(2328), + [aux_sym_cmd_identifier_token28] = ACTIONS(2328), + [aux_sym_cmd_identifier_token29] = ACTIONS(2328), + [aux_sym_cmd_identifier_token30] = ACTIONS(2328), + [aux_sym_cmd_identifier_token31] = ACTIONS(2328), + [aux_sym_cmd_identifier_token32] = ACTIONS(2328), + [aux_sym_cmd_identifier_token33] = ACTIONS(2328), + [aux_sym_cmd_identifier_token34] = ACTIONS(2326), + [aux_sym_cmd_identifier_token35] = ACTIONS(2328), + [aux_sym_cmd_identifier_token36] = ACTIONS(2328), + [aux_sym_cmd_identifier_token37] = ACTIONS(2328), + [aux_sym_cmd_identifier_token38] = ACTIONS(2326), + [aux_sym_cmd_identifier_token39] = ACTIONS(2328), + [aux_sym_cmd_identifier_token40] = ACTIONS(2328), + [anon_sym_def] = ACTIONS(2326), + [anon_sym_export_DASHenv] = ACTIONS(2326), + [anon_sym_extern] = ACTIONS(2326), + [anon_sym_module] = ACTIONS(2326), + [anon_sym_use] = ACTIONS(2326), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_COMMA] = ACTIONS(2328), + [anon_sym_DOLLAR] = ACTIONS(2326), + [anon_sym_error] = ACTIONS(2326), + [anon_sym_DASH2] = ACTIONS(2326), + [anon_sym_break] = ACTIONS(2326), + [anon_sym_continue] = ACTIONS(2326), + [anon_sym_for] = ACTIONS(2326), + [anon_sym_in2] = ACTIONS(2326), + [anon_sym_loop] = ACTIONS(2326), + [anon_sym_make] = ACTIONS(2326), + [anon_sym_while] = ACTIONS(2326), + [anon_sym_do] = ACTIONS(2326), + [anon_sym_if] = ACTIONS(2326), + [anon_sym_else] = ACTIONS(2326), + [anon_sym_match] = ACTIONS(2326), + [anon_sym_RBRACE] = ACTIONS(2328), + [anon_sym_try] = ACTIONS(2326), + [anon_sym_catch] = ACTIONS(2326), + [anon_sym_return] = ACTIONS(2326), + [anon_sym_source] = ACTIONS(2326), + [anon_sym_source_DASHenv] = ACTIONS(2326), + [anon_sym_hide] = ACTIONS(2326), + [anon_sym_hide_DASHenv] = ACTIONS(2326), + [anon_sym_overlay] = ACTIONS(2326), + [anon_sym_as] = ACTIONS(2326), + [anon_sym_PLUS2] = ACTIONS(2326), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2328), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2328), + [aux_sym__val_number_decimal_token1] = ACTIONS(2326), + [aux_sym__val_number_decimal_token2] = ACTIONS(2328), + [aux_sym__val_number_decimal_token3] = ACTIONS(2328), + [aux_sym__val_number_decimal_token4] = ACTIONS(2328), + [aux_sym__val_number_token1] = ACTIONS(2328), + [aux_sym__val_number_token2] = ACTIONS(2328), + [aux_sym__val_number_token3] = ACTIONS(2328), + [aux_sym__val_number_token4] = ACTIONS(2326), + [aux_sym__val_number_token5] = ACTIONS(2326), + [aux_sym__val_number_token6] = ACTIONS(2326), + [anon_sym_DQUOTE] = ACTIONS(2328), + [sym__str_single_quotes] = ACTIONS(2328), + [sym__str_back_ticks] = ACTIONS(2328), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2328), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2328), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2328), + [anon_sym_register] = ACTIONS(2326), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1591), - }, - [701] = { - [sym_comment] = STATE(701), - [anon_sym_export] = ACTIONS(1648), - [anon_sym_alias] = ACTIONS(1648), - [anon_sym_let] = ACTIONS(1648), - [anon_sym_let_DASHenv] = ACTIONS(1648), - [anon_sym_mut] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1648), - [aux_sym_cmd_identifier_token1] = ACTIONS(1648), - [aux_sym_cmd_identifier_token2] = ACTIONS(1650), - [aux_sym_cmd_identifier_token3] = ACTIONS(1650), - [aux_sym_cmd_identifier_token4] = ACTIONS(1650), - [aux_sym_cmd_identifier_token5] = ACTIONS(1650), - [aux_sym_cmd_identifier_token6] = ACTIONS(1650), - [aux_sym_cmd_identifier_token7] = ACTIONS(1650), - [aux_sym_cmd_identifier_token8] = ACTIONS(1648), - [aux_sym_cmd_identifier_token9] = ACTIONS(1648), - [aux_sym_cmd_identifier_token10] = ACTIONS(1650), - [aux_sym_cmd_identifier_token11] = ACTIONS(1650), - [aux_sym_cmd_identifier_token12] = ACTIONS(1648), - [aux_sym_cmd_identifier_token13] = ACTIONS(1648), - [aux_sym_cmd_identifier_token14] = ACTIONS(1648), - [aux_sym_cmd_identifier_token15] = ACTIONS(1648), - [aux_sym_cmd_identifier_token16] = ACTIONS(1650), - [aux_sym_cmd_identifier_token17] = ACTIONS(1650), - [aux_sym_cmd_identifier_token18] = ACTIONS(1650), - [aux_sym_cmd_identifier_token19] = ACTIONS(1650), - [aux_sym_cmd_identifier_token20] = ACTIONS(1650), - [aux_sym_cmd_identifier_token21] = ACTIONS(1650), - [aux_sym_cmd_identifier_token22] = ACTIONS(1650), - [aux_sym_cmd_identifier_token23] = ACTIONS(1650), - [aux_sym_cmd_identifier_token24] = ACTIONS(1650), - [aux_sym_cmd_identifier_token25] = ACTIONS(1650), - [aux_sym_cmd_identifier_token26] = ACTIONS(1650), - [aux_sym_cmd_identifier_token27] = ACTIONS(1650), - [aux_sym_cmd_identifier_token28] = ACTIONS(1650), - [aux_sym_cmd_identifier_token29] = ACTIONS(1650), - [aux_sym_cmd_identifier_token30] = ACTIONS(1650), - [aux_sym_cmd_identifier_token31] = ACTIONS(1650), - [aux_sym_cmd_identifier_token32] = ACTIONS(1650), - [aux_sym_cmd_identifier_token33] = ACTIONS(1650), - [aux_sym_cmd_identifier_token34] = ACTIONS(1648), - [aux_sym_cmd_identifier_token35] = ACTIONS(1650), - [aux_sym_cmd_identifier_token36] = ACTIONS(1650), - [aux_sym_cmd_identifier_token37] = ACTIONS(1650), - [aux_sym_cmd_identifier_token38] = ACTIONS(1648), - [aux_sym_cmd_identifier_token39] = ACTIONS(1650), - [aux_sym_cmd_identifier_token40] = ACTIONS(1650), - [anon_sym_def] = ACTIONS(1648), - [anon_sym_export_DASHenv] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_module] = ACTIONS(1648), - [anon_sym_use] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_COMMA] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_error] = ACTIONS(1648), - [anon_sym_DASH2] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_for] = ACTIONS(1648), - [anon_sym_in2] = ACTIONS(1648), - [anon_sym_loop] = ACTIONS(1648), - [anon_sym_make] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1648), - [anon_sym_do] = ACTIONS(1648), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1648), - [anon_sym_match] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_try] = ACTIONS(1648), - [anon_sym_catch] = ACTIONS(1648), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_source] = ACTIONS(1648), - [anon_sym_source_DASHenv] = ACTIONS(1648), - [anon_sym_hide] = ACTIONS(1648), - [anon_sym_hide_DASHenv] = ACTIONS(1648), - [anon_sym_overlay] = ACTIONS(1648), - [anon_sym_as] = ACTIONS(1648), - [anon_sym_PLUS2] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [aux_sym__val_number_token4] = ACTIONS(1648), - [aux_sym__val_number_token5] = ACTIONS(1648), - [aux_sym__val_number_token6] = ACTIONS(1648), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1650), - [anon_sym_register] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1650), + [sym_raw_string_begin] = ACTIONS(2328), }, - [702] = { - [sym_comment] = STATE(702), - [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_COMMA] = ACTIONS(2408), - [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(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_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_DOLLAR_SQUOTE] = ACTIONS(2408), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2408), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2408), - [anon_sym_register] = ACTIONS(2406), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2408), + [662] = { + [sym_comment] = STATE(662), + [anon_sym_export] = ACTIONS(1701), + [anon_sym_alias] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1701), + [anon_sym_let_DASHenv] = ACTIONS(1701), + [anon_sym_mut] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [aux_sym_cmd_identifier_token1] = ACTIONS(1701), + [aux_sym_cmd_identifier_token2] = ACTIONS(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [aux_sym_cmd_identifier_token12] = ACTIONS(1701), + [aux_sym_cmd_identifier_token13] = ACTIONS(1701), + [aux_sym_cmd_identifier_token14] = ACTIONS(1701), + [aux_sym_cmd_identifier_token15] = ACTIONS(1701), + [aux_sym_cmd_identifier_token16] = ACTIONS(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [aux_sym_cmd_identifier_token37] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [anon_sym_def] = ACTIONS(1701), + [anon_sym_export_DASHenv] = ACTIONS(1701), + [anon_sym_extern] = ACTIONS(1701), + [anon_sym_module] = ACTIONS(1701), + [anon_sym_use] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_COMMA] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = ACTIONS(1701), + [anon_sym_loop] = ACTIONS(1701), + [anon_sym_make] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_do] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_else] = ACTIONS(1701), + [anon_sym_match] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_try] = ACTIONS(1701), + [anon_sym_catch] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_source] = ACTIONS(1701), + [anon_sym_source_DASHenv] = ACTIONS(1701), + [anon_sym_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), }, - [703] = { - [sym_comment] = STATE(703), - [anon_sym_export] = ACTIONS(1963), - [anon_sym_alias] = ACTIONS(1963), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_let_DASHenv] = ACTIONS(1963), - [anon_sym_mut] = ACTIONS(1963), - [anon_sym_const] = ACTIONS(1963), - [aux_sym_cmd_identifier_token1] = ACTIONS(1963), - [aux_sym_cmd_identifier_token2] = ACTIONS(1965), - [aux_sym_cmd_identifier_token3] = ACTIONS(1965), - [aux_sym_cmd_identifier_token4] = ACTIONS(1965), - [aux_sym_cmd_identifier_token5] = ACTIONS(1965), - [aux_sym_cmd_identifier_token6] = ACTIONS(1965), - [aux_sym_cmd_identifier_token7] = ACTIONS(1965), - [aux_sym_cmd_identifier_token8] = ACTIONS(1963), - [aux_sym_cmd_identifier_token9] = ACTIONS(1963), - [aux_sym_cmd_identifier_token10] = ACTIONS(1965), - [aux_sym_cmd_identifier_token11] = ACTIONS(1965), - [aux_sym_cmd_identifier_token12] = ACTIONS(1963), - [aux_sym_cmd_identifier_token13] = ACTIONS(1963), - [aux_sym_cmd_identifier_token14] = ACTIONS(1963), - [aux_sym_cmd_identifier_token15] = ACTIONS(1963), - [aux_sym_cmd_identifier_token16] = ACTIONS(1965), - [aux_sym_cmd_identifier_token17] = ACTIONS(1965), - [aux_sym_cmd_identifier_token18] = ACTIONS(1965), - [aux_sym_cmd_identifier_token19] = ACTIONS(1965), - [aux_sym_cmd_identifier_token20] = ACTIONS(1965), - [aux_sym_cmd_identifier_token21] = ACTIONS(1965), - [aux_sym_cmd_identifier_token22] = ACTIONS(1965), - [aux_sym_cmd_identifier_token23] = ACTIONS(1965), - [aux_sym_cmd_identifier_token24] = ACTIONS(1965), - [aux_sym_cmd_identifier_token25] = ACTIONS(1965), - [aux_sym_cmd_identifier_token26] = ACTIONS(1965), - [aux_sym_cmd_identifier_token27] = ACTIONS(1965), - [aux_sym_cmd_identifier_token28] = ACTIONS(1965), - [aux_sym_cmd_identifier_token29] = ACTIONS(1965), - [aux_sym_cmd_identifier_token30] = ACTIONS(1965), - [aux_sym_cmd_identifier_token31] = ACTIONS(1965), - [aux_sym_cmd_identifier_token32] = ACTIONS(1965), - [aux_sym_cmd_identifier_token33] = ACTIONS(1965), - [aux_sym_cmd_identifier_token34] = ACTIONS(1963), - [aux_sym_cmd_identifier_token35] = ACTIONS(1965), - [aux_sym_cmd_identifier_token36] = ACTIONS(1965), - [aux_sym_cmd_identifier_token37] = ACTIONS(1965), - [aux_sym_cmd_identifier_token38] = ACTIONS(1963), - [aux_sym_cmd_identifier_token39] = ACTIONS(1965), - [aux_sym_cmd_identifier_token40] = ACTIONS(1965), - [anon_sym_def] = ACTIONS(1963), - [anon_sym_export_DASHenv] = ACTIONS(1963), - [anon_sym_extern] = ACTIONS(1963), - [anon_sym_module] = ACTIONS(1963), - [anon_sym_use] = ACTIONS(1963), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_COMMA] = ACTIONS(1965), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_error] = ACTIONS(1963), - [anon_sym_DASH2] = ACTIONS(1963), - [anon_sym_break] = ACTIONS(1963), - [anon_sym_continue] = ACTIONS(1963), - [anon_sym_for] = ACTIONS(1963), - [anon_sym_in2] = ACTIONS(1963), - [anon_sym_loop] = ACTIONS(1963), - [anon_sym_make] = ACTIONS(1963), - [anon_sym_while] = ACTIONS(1963), - [anon_sym_do] = ACTIONS(1963), - [anon_sym_if] = ACTIONS(1963), - [anon_sym_else] = ACTIONS(1963), - [anon_sym_match] = ACTIONS(1963), - [anon_sym_RBRACE] = ACTIONS(1965), - [anon_sym_try] = ACTIONS(1963), - [anon_sym_catch] = ACTIONS(1963), - [anon_sym_return] = ACTIONS(1963), - [anon_sym_source] = ACTIONS(1963), - [anon_sym_source_DASHenv] = ACTIONS(1963), - [anon_sym_hide] = ACTIONS(1963), - [anon_sym_hide_DASHenv] = ACTIONS(1963), - [anon_sym_overlay] = ACTIONS(1963), - [anon_sym_as] = ACTIONS(1963), - [anon_sym_PLUS2] = ACTIONS(1963), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1965), - [aux_sym__val_number_decimal_token1] = ACTIONS(1963), - [aux_sym__val_number_decimal_token2] = ACTIONS(1965), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), - [aux_sym__val_number_token1] = ACTIONS(1965), - [aux_sym__val_number_token2] = ACTIONS(1965), - [aux_sym__val_number_token3] = ACTIONS(1965), - [aux_sym__val_number_token4] = ACTIONS(1963), - [aux_sym__val_number_token5] = ACTIONS(1963), - [aux_sym__val_number_token6] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [sym__str_single_quotes] = ACTIONS(1965), - [sym__str_back_ticks] = ACTIONS(1965), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1965), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1965), - [anon_sym_register] = ACTIONS(1963), + [663] = { + [sym_comment] = STATE(663), + [anon_sym_export] = ACTIONS(2330), + [anon_sym_alias] = ACTIONS(2330), + [anon_sym_let] = ACTIONS(2330), + [anon_sym_let_DASHenv] = ACTIONS(2330), + [anon_sym_mut] = ACTIONS(2330), + [anon_sym_const] = ACTIONS(2330), + [aux_sym_cmd_identifier_token1] = ACTIONS(2330), + [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(2330), + [aux_sym_cmd_identifier_token9] = ACTIONS(2330), + [aux_sym_cmd_identifier_token10] = ACTIONS(2332), + [aux_sym_cmd_identifier_token11] = ACTIONS(2332), + [aux_sym_cmd_identifier_token12] = ACTIONS(2330), + [aux_sym_cmd_identifier_token13] = ACTIONS(2330), + [aux_sym_cmd_identifier_token14] = ACTIONS(2330), + [aux_sym_cmd_identifier_token15] = ACTIONS(2330), + [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(2330), + [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(2330), + [aux_sym_cmd_identifier_token39] = ACTIONS(2332), + [aux_sym_cmd_identifier_token40] = ACTIONS(2332), + [anon_sym_def] = ACTIONS(2330), + [anon_sym_export_DASHenv] = ACTIONS(2330), + [anon_sym_extern] = ACTIONS(2330), + [anon_sym_module] = ACTIONS(2330), + [anon_sym_use] = ACTIONS(2330), + [anon_sym_LPAREN] = ACTIONS(2332), + [anon_sym_COMMA] = ACTIONS(2332), + [anon_sym_DOLLAR] = ACTIONS(2330), + [anon_sym_error] = ACTIONS(2330), + [anon_sym_DASH2] = ACTIONS(2330), + [anon_sym_break] = ACTIONS(2330), + [anon_sym_continue] = ACTIONS(2330), + [anon_sym_for] = ACTIONS(2330), + [anon_sym_in2] = ACTIONS(2330), + [anon_sym_loop] = ACTIONS(2330), + [anon_sym_make] = ACTIONS(2330), + [anon_sym_while] = ACTIONS(2330), + [anon_sym_do] = ACTIONS(2330), + [anon_sym_if] = ACTIONS(2330), + [anon_sym_else] = ACTIONS(2330), + [anon_sym_match] = ACTIONS(2330), + [anon_sym_RBRACE] = ACTIONS(2332), + [anon_sym_try] = ACTIONS(2330), + [anon_sym_catch] = ACTIONS(2330), + [anon_sym_return] = ACTIONS(2330), + [anon_sym_source] = ACTIONS(2330), + [anon_sym_source_DASHenv] = ACTIONS(2330), + [anon_sym_hide] = ACTIONS(2330), + [anon_sym_hide_DASHenv] = ACTIONS(2330), + [anon_sym_overlay] = ACTIONS(2330), + [anon_sym_as] = ACTIONS(2330), + [anon_sym_PLUS2] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2332), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2332), + [aux_sym__val_number_decimal_token1] = ACTIONS(2330), + [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(2330), + [aux_sym__val_number_token5] = ACTIONS(2330), + [aux_sym__val_number_token6] = ACTIONS(2330), + [anon_sym_DQUOTE] = ACTIONS(2332), + [sym__str_single_quotes] = ACTIONS(2332), + [sym__str_back_ticks] = ACTIONS(2332), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2332), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2332), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2332), + [anon_sym_register] = ACTIONS(2330), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1965), - }, - [704] = { - [sym_comment] = STATE(704), - [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_COMMA] = ACTIONS(2412), - [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(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_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_DOLLAR_SQUOTE] = ACTIONS(2412), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2412), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2412), - [anon_sym_register] = ACTIONS(2410), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2412), - }, - [705] = { - [sym_comment] = STATE(705), - [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_COMMA] = ACTIONS(2416), - [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(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_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_DOLLAR_SQUOTE] = ACTIONS(2416), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2416), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2416), - [anon_sym_register] = ACTIONS(2414), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2416), - }, - [706] = { - [sym_comment] = STATE(706), - [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_COMMA] = ACTIONS(2420), - [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(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_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_DOLLAR_SQUOTE] = ACTIONS(2420), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2420), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2420), - [anon_sym_register] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2420), + [sym_raw_string_begin] = ACTIONS(2332), }, - [707] = { - [sym_comment] = STATE(707), - [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_COMMA] = ACTIONS(2424), - [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(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_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_DOLLAR_SQUOTE] = ACTIONS(2424), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2424), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2424), - [anon_sym_register] = ACTIONS(2422), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2424), - }, - [708] = { - [sym_comment] = STATE(708), - [anon_sym_export] = ACTIONS(1851), - [anon_sym_alias] = ACTIONS(1851), - [anon_sym_let] = ACTIONS(1851), - [anon_sym_let_DASHenv] = ACTIONS(1851), - [anon_sym_mut] = ACTIONS(1851), - [anon_sym_const] = ACTIONS(1851), - [aux_sym_cmd_identifier_token1] = ACTIONS(1851), - [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(1851), - [aux_sym_cmd_identifier_token9] = ACTIONS(1851), - [aux_sym_cmd_identifier_token10] = ACTIONS(1853), - [aux_sym_cmd_identifier_token11] = ACTIONS(1853), - [aux_sym_cmd_identifier_token12] = ACTIONS(1851), - [aux_sym_cmd_identifier_token13] = ACTIONS(1851), - [aux_sym_cmd_identifier_token14] = ACTIONS(1851), - [aux_sym_cmd_identifier_token15] = ACTIONS(1851), - [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(1851), - [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(1851), - [aux_sym_cmd_identifier_token39] = ACTIONS(1853), - [aux_sym_cmd_identifier_token40] = ACTIONS(1853), - [anon_sym_def] = ACTIONS(1851), - [anon_sym_export_DASHenv] = ACTIONS(1851), - [anon_sym_extern] = ACTIONS(1851), - [anon_sym_module] = ACTIONS(1851), - [anon_sym_use] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1853), - [anon_sym_COMMA] = ACTIONS(1853), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_error] = ACTIONS(1851), - [anon_sym_DASH2] = ACTIONS(1851), - [anon_sym_break] = ACTIONS(1851), - [anon_sym_continue] = ACTIONS(1851), - [anon_sym_for] = ACTIONS(1851), - [anon_sym_in2] = ACTIONS(1851), - [anon_sym_loop] = ACTIONS(1851), - [anon_sym_make] = ACTIONS(1851), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_else] = ACTIONS(1851), - [anon_sym_match] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1853), - [anon_sym_try] = ACTIONS(1851), - [anon_sym_catch] = ACTIONS(1851), - [anon_sym_return] = ACTIONS(1851), - [anon_sym_source] = ACTIONS(1851), - [anon_sym_source_DASHenv] = ACTIONS(1851), - [anon_sym_hide] = ACTIONS(1851), - [anon_sym_hide_DASHenv] = ACTIONS(1851), - [anon_sym_overlay] = ACTIONS(1851), - [anon_sym_as] = ACTIONS(1851), - [anon_sym_PLUS2] = ACTIONS(1851), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1853), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1853), - [aux_sym__val_number_decimal_token1] = ACTIONS(1851), - [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(1851), - [aux_sym__val_number_token5] = ACTIONS(1851), - [aux_sym__val_number_token6] = ACTIONS(1851), - [anon_sym_DQUOTE] = ACTIONS(1853), - [sym__str_single_quotes] = ACTIONS(1853), - [sym__str_back_ticks] = ACTIONS(1853), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1853), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1853), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1853), - [anon_sym_register] = ACTIONS(1851), + [664] = { + [sym_comment] = STATE(664), + [anon_sym_export] = ACTIONS(2366), + [anon_sym_alias] = ACTIONS(2366), + [anon_sym_let] = ACTIONS(2366), + [anon_sym_let_DASHenv] = ACTIONS(2366), + [anon_sym_mut] = ACTIONS(2366), + [anon_sym_const] = ACTIONS(2366), + [aux_sym_cmd_identifier_token1] = ACTIONS(2366), + [aux_sym_cmd_identifier_token2] = ACTIONS(2368), + [aux_sym_cmd_identifier_token3] = ACTIONS(2368), + [aux_sym_cmd_identifier_token4] = ACTIONS(2368), + [aux_sym_cmd_identifier_token5] = ACTIONS(2368), + [aux_sym_cmd_identifier_token6] = ACTIONS(2368), + [aux_sym_cmd_identifier_token7] = ACTIONS(2368), + [aux_sym_cmd_identifier_token8] = ACTIONS(2366), + [aux_sym_cmd_identifier_token9] = ACTIONS(2366), + [aux_sym_cmd_identifier_token10] = ACTIONS(2368), + [aux_sym_cmd_identifier_token11] = ACTIONS(2368), + [aux_sym_cmd_identifier_token12] = ACTIONS(2366), + [aux_sym_cmd_identifier_token13] = ACTIONS(2366), + [aux_sym_cmd_identifier_token14] = ACTIONS(2366), + [aux_sym_cmd_identifier_token15] = ACTIONS(2366), + [aux_sym_cmd_identifier_token16] = ACTIONS(2368), + [aux_sym_cmd_identifier_token17] = ACTIONS(2368), + [aux_sym_cmd_identifier_token18] = ACTIONS(2368), + [aux_sym_cmd_identifier_token19] = ACTIONS(2368), + [aux_sym_cmd_identifier_token20] = ACTIONS(2368), + [aux_sym_cmd_identifier_token21] = ACTIONS(2368), + [aux_sym_cmd_identifier_token22] = ACTIONS(2368), + [aux_sym_cmd_identifier_token23] = ACTIONS(2368), + [aux_sym_cmd_identifier_token24] = ACTIONS(2368), + [aux_sym_cmd_identifier_token25] = ACTIONS(2368), + [aux_sym_cmd_identifier_token26] = ACTIONS(2368), + [aux_sym_cmd_identifier_token27] = ACTIONS(2368), + [aux_sym_cmd_identifier_token28] = ACTIONS(2368), + [aux_sym_cmd_identifier_token29] = ACTIONS(2368), + [aux_sym_cmd_identifier_token30] = ACTIONS(2368), + [aux_sym_cmd_identifier_token31] = ACTIONS(2368), + [aux_sym_cmd_identifier_token32] = ACTIONS(2368), + [aux_sym_cmd_identifier_token33] = ACTIONS(2368), + [aux_sym_cmd_identifier_token34] = ACTIONS(2366), + [aux_sym_cmd_identifier_token35] = ACTIONS(2368), + [aux_sym_cmd_identifier_token36] = ACTIONS(2368), + [aux_sym_cmd_identifier_token37] = ACTIONS(2368), + [aux_sym_cmd_identifier_token38] = ACTIONS(2366), + [aux_sym_cmd_identifier_token39] = ACTIONS(2368), + [aux_sym_cmd_identifier_token40] = ACTIONS(2368), + [anon_sym_def] = ACTIONS(2366), + [anon_sym_export_DASHenv] = ACTIONS(2366), + [anon_sym_extern] = ACTIONS(2366), + [anon_sym_module] = ACTIONS(2366), + [anon_sym_use] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_COMMA] = ACTIONS(2368), + [anon_sym_DOLLAR] = ACTIONS(2366), + [anon_sym_error] = ACTIONS(2366), + [anon_sym_DASH2] = ACTIONS(2366), + [anon_sym_break] = ACTIONS(2366), + [anon_sym_continue] = ACTIONS(2366), + [anon_sym_for] = ACTIONS(2366), + [anon_sym_in2] = ACTIONS(2366), + [anon_sym_loop] = ACTIONS(2366), + [anon_sym_make] = ACTIONS(2366), + [anon_sym_while] = ACTIONS(2366), + [anon_sym_do] = ACTIONS(2366), + [anon_sym_if] = ACTIONS(2366), + [anon_sym_else] = ACTIONS(2366), + [anon_sym_match] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2366), + [anon_sym_catch] = ACTIONS(2366), + [anon_sym_return] = ACTIONS(2366), + [anon_sym_source] = ACTIONS(2366), + [anon_sym_source_DASHenv] = ACTIONS(2366), + [anon_sym_hide] = ACTIONS(2366), + [anon_sym_hide_DASHenv] = ACTIONS(2366), + [anon_sym_overlay] = ACTIONS(2366), + [anon_sym_as] = ACTIONS(2366), + [anon_sym_PLUS2] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2368), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2368), + [aux_sym__val_number_decimal_token1] = ACTIONS(2366), + [aux_sym__val_number_decimal_token2] = ACTIONS(2368), + [aux_sym__val_number_decimal_token3] = ACTIONS(2368), + [aux_sym__val_number_decimal_token4] = ACTIONS(2368), + [aux_sym__val_number_token1] = ACTIONS(2368), + [aux_sym__val_number_token2] = ACTIONS(2368), + [aux_sym__val_number_token3] = ACTIONS(2368), + [aux_sym__val_number_token4] = ACTIONS(2366), + [aux_sym__val_number_token5] = ACTIONS(2366), + [aux_sym__val_number_token6] = ACTIONS(2366), + [anon_sym_DQUOTE] = ACTIONS(2368), + [sym__str_single_quotes] = ACTIONS(2368), + [sym__str_back_ticks] = ACTIONS(2368), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2368), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2368), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2368), + [anon_sym_register] = ACTIONS(2366), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1853), + [sym_raw_string_begin] = ACTIONS(2368), }, - [709] = { - [sym_comment] = STATE(709), - [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_COMMA] = ACTIONS(2428), - [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(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_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_DOLLAR_SQUOTE] = ACTIONS(2428), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2428), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2428), - [anon_sym_register] = ACTIONS(2426), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2428), + [665] = { + [sym_comment] = STATE(665), + [anon_sym_export] = ACTIONS(2334), + [anon_sym_alias] = ACTIONS(2334), + [anon_sym_let] = ACTIONS(2334), + [anon_sym_let_DASHenv] = ACTIONS(2334), + [anon_sym_mut] = ACTIONS(2334), + [anon_sym_const] = ACTIONS(2334), + [aux_sym_cmd_identifier_token1] = ACTIONS(2334), + [aux_sym_cmd_identifier_token2] = ACTIONS(2336), + [aux_sym_cmd_identifier_token3] = ACTIONS(2336), + [aux_sym_cmd_identifier_token4] = ACTIONS(2336), + [aux_sym_cmd_identifier_token5] = ACTIONS(2336), + [aux_sym_cmd_identifier_token6] = ACTIONS(2336), + [aux_sym_cmd_identifier_token7] = ACTIONS(2336), + [aux_sym_cmd_identifier_token8] = ACTIONS(2334), + [aux_sym_cmd_identifier_token9] = ACTIONS(2334), + [aux_sym_cmd_identifier_token10] = ACTIONS(2336), + [aux_sym_cmd_identifier_token11] = ACTIONS(2336), + [aux_sym_cmd_identifier_token12] = ACTIONS(2334), + [aux_sym_cmd_identifier_token13] = ACTIONS(2334), + [aux_sym_cmd_identifier_token14] = ACTIONS(2334), + [aux_sym_cmd_identifier_token15] = ACTIONS(2334), + [aux_sym_cmd_identifier_token16] = ACTIONS(2336), + [aux_sym_cmd_identifier_token17] = ACTIONS(2336), + [aux_sym_cmd_identifier_token18] = ACTIONS(2336), + [aux_sym_cmd_identifier_token19] = ACTIONS(2336), + [aux_sym_cmd_identifier_token20] = ACTIONS(2336), + [aux_sym_cmd_identifier_token21] = ACTIONS(2336), + [aux_sym_cmd_identifier_token22] = ACTIONS(2336), + [aux_sym_cmd_identifier_token23] = ACTIONS(2336), + [aux_sym_cmd_identifier_token24] = ACTIONS(2336), + [aux_sym_cmd_identifier_token25] = ACTIONS(2336), + [aux_sym_cmd_identifier_token26] = ACTIONS(2336), + [aux_sym_cmd_identifier_token27] = ACTIONS(2336), + [aux_sym_cmd_identifier_token28] = ACTIONS(2336), + [aux_sym_cmd_identifier_token29] = ACTIONS(2336), + [aux_sym_cmd_identifier_token30] = ACTIONS(2336), + [aux_sym_cmd_identifier_token31] = ACTIONS(2336), + [aux_sym_cmd_identifier_token32] = ACTIONS(2336), + [aux_sym_cmd_identifier_token33] = ACTIONS(2336), + [aux_sym_cmd_identifier_token34] = ACTIONS(2334), + [aux_sym_cmd_identifier_token35] = ACTIONS(2336), + [aux_sym_cmd_identifier_token36] = ACTIONS(2336), + [aux_sym_cmd_identifier_token37] = ACTIONS(2336), + [aux_sym_cmd_identifier_token38] = ACTIONS(2334), + [aux_sym_cmd_identifier_token39] = ACTIONS(2336), + [aux_sym_cmd_identifier_token40] = ACTIONS(2336), + [anon_sym_def] = ACTIONS(2334), + [anon_sym_export_DASHenv] = ACTIONS(2334), + [anon_sym_extern] = ACTIONS(2334), + [anon_sym_module] = ACTIONS(2334), + [anon_sym_use] = ACTIONS(2334), + [anon_sym_LPAREN] = ACTIONS(2336), + [anon_sym_COMMA] = ACTIONS(2336), + [anon_sym_DOLLAR] = ACTIONS(2334), + [anon_sym_error] = ACTIONS(2334), + [anon_sym_DASH2] = ACTIONS(2334), + [anon_sym_break] = ACTIONS(2334), + [anon_sym_continue] = ACTIONS(2334), + [anon_sym_for] = ACTIONS(2334), + [anon_sym_in2] = ACTIONS(2334), + [anon_sym_loop] = ACTIONS(2334), + [anon_sym_make] = ACTIONS(2334), + [anon_sym_while] = ACTIONS(2334), + [anon_sym_do] = ACTIONS(2334), + [anon_sym_if] = ACTIONS(2334), + [anon_sym_else] = ACTIONS(2334), + [anon_sym_match] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2336), + [anon_sym_try] = ACTIONS(2334), + [anon_sym_catch] = ACTIONS(2334), + [anon_sym_return] = ACTIONS(2334), + [anon_sym_source] = ACTIONS(2334), + [anon_sym_source_DASHenv] = ACTIONS(2334), + [anon_sym_hide] = ACTIONS(2334), + [anon_sym_hide_DASHenv] = ACTIONS(2334), + [anon_sym_overlay] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(2334), + [anon_sym_PLUS2] = ACTIONS(2334), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2336), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2336), + [aux_sym__val_number_decimal_token1] = ACTIONS(2334), + [aux_sym__val_number_decimal_token2] = ACTIONS(2336), + [aux_sym__val_number_decimal_token3] = ACTIONS(2336), + [aux_sym__val_number_decimal_token4] = ACTIONS(2336), + [aux_sym__val_number_token1] = ACTIONS(2336), + [aux_sym__val_number_token2] = ACTIONS(2336), + [aux_sym__val_number_token3] = ACTIONS(2336), + [aux_sym__val_number_token4] = ACTIONS(2334), + [aux_sym__val_number_token5] = ACTIONS(2334), + [aux_sym__val_number_token6] = ACTIONS(2334), + [anon_sym_DQUOTE] = ACTIONS(2336), + [sym__str_single_quotes] = ACTIONS(2336), + [sym__str_back_ticks] = ACTIONS(2336), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2336), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2336), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2336), + [anon_sym_register] = ACTIONS(2334), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2336), }, - [710] = { - [sym_comment] = STATE(710), - [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_COMMA] = ACTIONS(2432), - [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(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_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_DOLLAR_SQUOTE] = ACTIONS(2432), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2432), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2432), - [anon_sym_register] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2432), + [666] = { + [sym_comment] = STATE(666), + [anon_sym_export] = ACTIONS(2338), + [anon_sym_alias] = ACTIONS(2338), + [anon_sym_let] = ACTIONS(2338), + [anon_sym_let_DASHenv] = ACTIONS(2338), + [anon_sym_mut] = ACTIONS(2338), + [anon_sym_const] = ACTIONS(2338), + [aux_sym_cmd_identifier_token1] = ACTIONS(2338), + [aux_sym_cmd_identifier_token2] = ACTIONS(2340), + [aux_sym_cmd_identifier_token3] = ACTIONS(2340), + [aux_sym_cmd_identifier_token4] = ACTIONS(2340), + [aux_sym_cmd_identifier_token5] = ACTIONS(2340), + [aux_sym_cmd_identifier_token6] = ACTIONS(2340), + [aux_sym_cmd_identifier_token7] = ACTIONS(2340), + [aux_sym_cmd_identifier_token8] = ACTIONS(2338), + [aux_sym_cmd_identifier_token9] = ACTIONS(2338), + [aux_sym_cmd_identifier_token10] = ACTIONS(2340), + [aux_sym_cmd_identifier_token11] = ACTIONS(2340), + [aux_sym_cmd_identifier_token12] = ACTIONS(2338), + [aux_sym_cmd_identifier_token13] = ACTIONS(2338), + [aux_sym_cmd_identifier_token14] = ACTIONS(2338), + [aux_sym_cmd_identifier_token15] = ACTIONS(2338), + [aux_sym_cmd_identifier_token16] = ACTIONS(2340), + [aux_sym_cmd_identifier_token17] = ACTIONS(2340), + [aux_sym_cmd_identifier_token18] = ACTIONS(2340), + [aux_sym_cmd_identifier_token19] = ACTIONS(2340), + [aux_sym_cmd_identifier_token20] = ACTIONS(2340), + [aux_sym_cmd_identifier_token21] = ACTIONS(2340), + [aux_sym_cmd_identifier_token22] = ACTIONS(2340), + [aux_sym_cmd_identifier_token23] = ACTIONS(2340), + [aux_sym_cmd_identifier_token24] = ACTIONS(2340), + [aux_sym_cmd_identifier_token25] = ACTIONS(2340), + [aux_sym_cmd_identifier_token26] = ACTIONS(2340), + [aux_sym_cmd_identifier_token27] = ACTIONS(2340), + [aux_sym_cmd_identifier_token28] = ACTIONS(2340), + [aux_sym_cmd_identifier_token29] = ACTIONS(2340), + [aux_sym_cmd_identifier_token30] = ACTIONS(2340), + [aux_sym_cmd_identifier_token31] = ACTIONS(2340), + [aux_sym_cmd_identifier_token32] = ACTIONS(2340), + [aux_sym_cmd_identifier_token33] = ACTIONS(2340), + [aux_sym_cmd_identifier_token34] = ACTIONS(2338), + [aux_sym_cmd_identifier_token35] = ACTIONS(2340), + [aux_sym_cmd_identifier_token36] = ACTIONS(2340), + [aux_sym_cmd_identifier_token37] = ACTIONS(2340), + [aux_sym_cmd_identifier_token38] = ACTIONS(2338), + [aux_sym_cmd_identifier_token39] = ACTIONS(2340), + [aux_sym_cmd_identifier_token40] = ACTIONS(2340), + [anon_sym_def] = ACTIONS(2338), + [anon_sym_export_DASHenv] = ACTIONS(2338), + [anon_sym_extern] = ACTIONS(2338), + [anon_sym_module] = ACTIONS(2338), + [anon_sym_use] = ACTIONS(2338), + [anon_sym_LPAREN] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2340), + [anon_sym_DOLLAR] = ACTIONS(2338), + [anon_sym_error] = ACTIONS(2338), + [anon_sym_DASH2] = ACTIONS(2338), + [anon_sym_break] = ACTIONS(2338), + [anon_sym_continue] = ACTIONS(2338), + [anon_sym_for] = ACTIONS(2338), + [anon_sym_in2] = ACTIONS(2338), + [anon_sym_loop] = ACTIONS(2338), + [anon_sym_make] = ACTIONS(2338), + [anon_sym_while] = ACTIONS(2338), + [anon_sym_do] = ACTIONS(2338), + [anon_sym_if] = ACTIONS(2338), + [anon_sym_else] = ACTIONS(2338), + [anon_sym_match] = ACTIONS(2338), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_try] = ACTIONS(2338), + [anon_sym_catch] = ACTIONS(2338), + [anon_sym_return] = ACTIONS(2338), + [anon_sym_source] = ACTIONS(2338), + [anon_sym_source_DASHenv] = ACTIONS(2338), + [anon_sym_hide] = ACTIONS(2338), + [anon_sym_hide_DASHenv] = ACTIONS(2338), + [anon_sym_overlay] = ACTIONS(2338), + [anon_sym_as] = ACTIONS(2338), + [anon_sym_PLUS2] = ACTIONS(2338), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2340), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2340), + [aux_sym__val_number_decimal_token1] = ACTIONS(2338), + [aux_sym__val_number_decimal_token2] = ACTIONS(2340), + [aux_sym__val_number_decimal_token3] = ACTIONS(2340), + [aux_sym__val_number_decimal_token4] = ACTIONS(2340), + [aux_sym__val_number_token1] = ACTIONS(2340), + [aux_sym__val_number_token2] = ACTIONS(2340), + [aux_sym__val_number_token3] = ACTIONS(2340), + [aux_sym__val_number_token4] = ACTIONS(2338), + [aux_sym__val_number_token5] = ACTIONS(2338), + [aux_sym__val_number_token6] = ACTIONS(2338), + [anon_sym_DQUOTE] = ACTIONS(2340), + [sym__str_single_quotes] = ACTIONS(2340), + [sym__str_back_ticks] = ACTIONS(2340), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2340), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2340), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2340), + [anon_sym_register] = ACTIONS(2338), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2340), }, - [711] = { - [sym_comment] = STATE(711), - [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_COMMA] = ACTIONS(1881), - [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(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_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_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_DOLLAR_SQUOTE] = ACTIONS(1881), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1881), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1881), - [anon_sym_register] = ACTIONS(1879), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1881), - }, - [712] = { - [sym_comment] = STATE(712), - [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_COMMA] = ACTIONS(1915), - [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(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_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_DOLLAR_SQUOTE] = ACTIONS(1915), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1915), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1915), - [anon_sym_register] = ACTIONS(1913), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1915), - }, - [713] = { - [sym_comment] = STATE(713), - [anon_sym_export] = ACTIONS(1945), - [anon_sym_alias] = ACTIONS(1945), - [anon_sym_let] = ACTIONS(1945), - [anon_sym_let_DASHenv] = ACTIONS(1945), - [anon_sym_mut] = ACTIONS(1945), - [anon_sym_const] = ACTIONS(1945), - [aux_sym_cmd_identifier_token1] = ACTIONS(1945), - [aux_sym_cmd_identifier_token2] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1947), - [aux_sym_cmd_identifier_token4] = ACTIONS(1947), - [aux_sym_cmd_identifier_token5] = ACTIONS(1947), - [aux_sym_cmd_identifier_token6] = ACTIONS(1947), - [aux_sym_cmd_identifier_token7] = ACTIONS(1947), - [aux_sym_cmd_identifier_token8] = ACTIONS(1945), - [aux_sym_cmd_identifier_token9] = ACTIONS(1945), - [aux_sym_cmd_identifier_token10] = ACTIONS(1947), - [aux_sym_cmd_identifier_token11] = ACTIONS(1947), - [aux_sym_cmd_identifier_token12] = ACTIONS(1945), - [aux_sym_cmd_identifier_token13] = ACTIONS(1945), - [aux_sym_cmd_identifier_token14] = ACTIONS(1945), - [aux_sym_cmd_identifier_token15] = ACTIONS(1945), - [aux_sym_cmd_identifier_token16] = ACTIONS(1947), - [aux_sym_cmd_identifier_token17] = ACTIONS(1947), - [aux_sym_cmd_identifier_token18] = ACTIONS(1947), - [aux_sym_cmd_identifier_token19] = ACTIONS(1947), - [aux_sym_cmd_identifier_token20] = ACTIONS(1947), - [aux_sym_cmd_identifier_token21] = ACTIONS(1947), - [aux_sym_cmd_identifier_token22] = ACTIONS(1947), - [aux_sym_cmd_identifier_token23] = ACTIONS(1947), - [aux_sym_cmd_identifier_token24] = ACTIONS(1947), - [aux_sym_cmd_identifier_token25] = ACTIONS(1947), - [aux_sym_cmd_identifier_token26] = ACTIONS(1947), - [aux_sym_cmd_identifier_token27] = ACTIONS(1947), - [aux_sym_cmd_identifier_token28] = ACTIONS(1947), - [aux_sym_cmd_identifier_token29] = ACTIONS(1947), - [aux_sym_cmd_identifier_token30] = ACTIONS(1947), - [aux_sym_cmd_identifier_token31] = ACTIONS(1947), - [aux_sym_cmd_identifier_token32] = ACTIONS(1947), - [aux_sym_cmd_identifier_token33] = ACTIONS(1947), - [aux_sym_cmd_identifier_token34] = ACTIONS(1945), - [aux_sym_cmd_identifier_token35] = ACTIONS(1947), - [aux_sym_cmd_identifier_token36] = ACTIONS(1947), - [aux_sym_cmd_identifier_token37] = ACTIONS(1947), - [aux_sym_cmd_identifier_token38] = ACTIONS(1945), - [aux_sym_cmd_identifier_token39] = ACTIONS(1947), - [aux_sym_cmd_identifier_token40] = ACTIONS(1947), - [anon_sym_def] = ACTIONS(1945), - [anon_sym_export_DASHenv] = ACTIONS(1945), - [anon_sym_extern] = ACTIONS(1945), - [anon_sym_module] = ACTIONS(1945), - [anon_sym_use] = ACTIONS(1945), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_COMMA] = ACTIONS(1947), - [anon_sym_DOLLAR] = ACTIONS(1945), - [anon_sym_error] = ACTIONS(1945), - [anon_sym_DASH2] = ACTIONS(1945), - [anon_sym_break] = ACTIONS(1945), - [anon_sym_continue] = ACTIONS(1945), - [anon_sym_for] = ACTIONS(1945), - [anon_sym_in2] = ACTIONS(1945), - [anon_sym_loop] = ACTIONS(1945), - [anon_sym_make] = ACTIONS(1945), - [anon_sym_while] = ACTIONS(1945), - [anon_sym_do] = ACTIONS(1945), - [anon_sym_if] = ACTIONS(1945), - [anon_sym_else] = ACTIONS(1945), - [anon_sym_match] = ACTIONS(1945), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_try] = ACTIONS(1945), - [anon_sym_catch] = ACTIONS(1945), - [anon_sym_return] = ACTIONS(1945), - [anon_sym_source] = ACTIONS(1945), - [anon_sym_source_DASHenv] = ACTIONS(1945), - [anon_sym_hide] = ACTIONS(1945), - [anon_sym_hide_DASHenv] = ACTIONS(1945), - [anon_sym_overlay] = ACTIONS(1945), - [anon_sym_as] = ACTIONS(1945), - [anon_sym_PLUS2] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1947), - [aux_sym__val_number_decimal_token1] = ACTIONS(1945), - [aux_sym__val_number_decimal_token2] = ACTIONS(1947), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(1947), - [aux_sym__val_number_token2] = ACTIONS(1947), - [aux_sym__val_number_token3] = ACTIONS(1947), - [aux_sym__val_number_token4] = ACTIONS(1945), - [aux_sym__val_number_token5] = ACTIONS(1945), - [aux_sym__val_number_token6] = ACTIONS(1945), - [anon_sym_DQUOTE] = ACTIONS(1947), - [sym__str_single_quotes] = ACTIONS(1947), - [sym__str_back_ticks] = ACTIONS(1947), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1947), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1947), - [anon_sym_register] = ACTIONS(1945), + [667] = { + [sym_comment] = STATE(667), + [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_COMMA] = ACTIONS(1885), + [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(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_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_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_DOLLAR_SQUOTE] = ACTIONS(1885), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1885), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1885), + [anon_sym_register] = ACTIONS(1883), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1947), - }, - [714] = { - [sym_comment] = STATE(714), - [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_COMMA] = ACTIONS(2443), - [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(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_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_DOLLAR_SQUOTE] = ACTIONS(2443), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2443), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2443), - [anon_sym_register] = ACTIONS(2441), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2443), + [sym_raw_string_begin] = ACTIONS(1885), }, - [715] = { - [sym_comment] = STATE(715), + [668] = { + [sym_comment] = STATE(668), [anon_sym_export] = ACTIONS(2342), [anon_sym_alias] = ACTIONS(2342), [anon_sym_let] = ACTIONS(2342), @@ -152537,8 +146539,825 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(2344), }, - [716] = { - [sym_comment] = STATE(716), + [669] = { + [sym_comment] = STATE(669), + [anon_sym_export] = ACTIONS(950), + [anon_sym_alias] = ACTIONS(950), + [anon_sym_let] = ACTIONS(950), + [anon_sym_let_DASHenv] = ACTIONS(950), + [anon_sym_mut] = ACTIONS(950), + [anon_sym_const] = ACTIONS(950), + [aux_sym_cmd_identifier_token1] = ACTIONS(950), + [aux_sym_cmd_identifier_token2] = ACTIONS(952), + [aux_sym_cmd_identifier_token3] = ACTIONS(952), + [aux_sym_cmd_identifier_token4] = ACTIONS(952), + [aux_sym_cmd_identifier_token5] = ACTIONS(952), + [aux_sym_cmd_identifier_token6] = ACTIONS(952), + [aux_sym_cmd_identifier_token7] = ACTIONS(952), + [aux_sym_cmd_identifier_token8] = ACTIONS(950), + [aux_sym_cmd_identifier_token9] = ACTIONS(950), + [aux_sym_cmd_identifier_token10] = ACTIONS(952), + [aux_sym_cmd_identifier_token11] = ACTIONS(952), + [aux_sym_cmd_identifier_token12] = ACTIONS(950), + [aux_sym_cmd_identifier_token13] = ACTIONS(950), + [aux_sym_cmd_identifier_token14] = ACTIONS(950), + [aux_sym_cmd_identifier_token15] = ACTIONS(950), + [aux_sym_cmd_identifier_token16] = ACTIONS(952), + [aux_sym_cmd_identifier_token17] = ACTIONS(952), + [aux_sym_cmd_identifier_token18] = ACTIONS(952), + [aux_sym_cmd_identifier_token19] = ACTIONS(952), + [aux_sym_cmd_identifier_token20] = ACTIONS(952), + [aux_sym_cmd_identifier_token21] = ACTIONS(952), + [aux_sym_cmd_identifier_token22] = ACTIONS(952), + [aux_sym_cmd_identifier_token23] = ACTIONS(952), + [aux_sym_cmd_identifier_token24] = ACTIONS(952), + [aux_sym_cmd_identifier_token25] = ACTIONS(952), + [aux_sym_cmd_identifier_token26] = ACTIONS(952), + [aux_sym_cmd_identifier_token27] = ACTIONS(952), + [aux_sym_cmd_identifier_token28] = ACTIONS(952), + [aux_sym_cmd_identifier_token29] = ACTIONS(952), + [aux_sym_cmd_identifier_token30] = ACTIONS(952), + [aux_sym_cmd_identifier_token31] = ACTIONS(952), + [aux_sym_cmd_identifier_token32] = ACTIONS(952), + [aux_sym_cmd_identifier_token33] = ACTIONS(952), + [aux_sym_cmd_identifier_token34] = ACTIONS(950), + [aux_sym_cmd_identifier_token35] = ACTIONS(952), + [aux_sym_cmd_identifier_token36] = ACTIONS(952), + [aux_sym_cmd_identifier_token37] = ACTIONS(952), + [aux_sym_cmd_identifier_token38] = ACTIONS(950), + [aux_sym_cmd_identifier_token39] = ACTIONS(952), + [aux_sym_cmd_identifier_token40] = ACTIONS(952), + [anon_sym_def] = ACTIONS(950), + [anon_sym_export_DASHenv] = ACTIONS(950), + [anon_sym_extern] = ACTIONS(950), + [anon_sym_module] = ACTIONS(950), + [anon_sym_use] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_COMMA] = ACTIONS(952), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_error] = ACTIONS(950), + [anon_sym_DASH2] = ACTIONS(950), + [anon_sym_break] = ACTIONS(950), + [anon_sym_continue] = ACTIONS(950), + [anon_sym_for] = ACTIONS(950), + [anon_sym_in2] = ACTIONS(950), + [anon_sym_loop] = ACTIONS(950), + [anon_sym_make] = ACTIONS(950), + [anon_sym_while] = ACTIONS(950), + [anon_sym_do] = ACTIONS(950), + [anon_sym_if] = ACTIONS(950), + [anon_sym_else] = ACTIONS(950), + [anon_sym_match] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_try] = ACTIONS(950), + [anon_sym_catch] = ACTIONS(950), + [anon_sym_return] = ACTIONS(950), + [anon_sym_source] = ACTIONS(950), + [anon_sym_source_DASHenv] = ACTIONS(950), + [anon_sym_hide] = ACTIONS(950), + [anon_sym_hide_DASHenv] = ACTIONS(950), + [anon_sym_overlay] = ACTIONS(950), + [anon_sym_as] = ACTIONS(950), + [anon_sym_PLUS2] = ACTIONS(950), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(952), + [aux_sym__val_number_decimal_token1] = ACTIONS(950), + [aux_sym__val_number_decimal_token2] = ACTIONS(952), + [aux_sym__val_number_decimal_token3] = ACTIONS(952), + [aux_sym__val_number_decimal_token4] = ACTIONS(952), + [aux_sym__val_number_token1] = ACTIONS(952), + [aux_sym__val_number_token2] = ACTIONS(952), + [aux_sym__val_number_token3] = ACTIONS(952), + [aux_sym__val_number_token4] = ACTIONS(950), + [aux_sym__val_number_token5] = ACTIONS(950), + [aux_sym__val_number_token6] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(952), + [sym__str_single_quotes] = ACTIONS(952), + [sym__str_back_ticks] = ACTIONS(952), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(952), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(952), + [anon_sym_register] = ACTIONS(950), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(952), + }, + [670] = { + [sym_comment] = STATE(670), + [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(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(998), + [aux_sym_cmd_identifier_token9] = ACTIONS(998), + [aux_sym_cmd_identifier_token10] = ACTIONS(994), + [aux_sym_cmd_identifier_token11] = ACTIONS(994), + [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(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(998), + [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(998), + [aux_sym_cmd_identifier_token39] = ACTIONS(994), + [aux_sym_cmd_identifier_token40] = ACTIONS(994), + [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(994), + [anon_sym_COMMA] = ACTIONS(994), + [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(994), + [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_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(994), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(994), + [aux_sym__val_number_decimal_token1] = ACTIONS(998), + [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(998), + [aux_sym__val_number_token5] = ACTIONS(998), + [aux_sym__val_number_token6] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym__str_single_quotes] = ACTIONS(994), + [sym__str_back_ticks] = ACTIONS(994), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(994), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(994), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(994), + [anon_sym_register] = ACTIONS(998), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(994), + }, + [671] = { + [sym_comment] = STATE(671), + [anon_sym_export] = ACTIONS(942), + [anon_sym_alias] = ACTIONS(942), + [anon_sym_let] = ACTIONS(942), + [anon_sym_let_DASHenv] = ACTIONS(942), + [anon_sym_mut] = ACTIONS(942), + [anon_sym_const] = ACTIONS(942), + [aux_sym_cmd_identifier_token1] = ACTIONS(942), + [aux_sym_cmd_identifier_token2] = ACTIONS(944), + [aux_sym_cmd_identifier_token3] = ACTIONS(944), + [aux_sym_cmd_identifier_token4] = ACTIONS(944), + [aux_sym_cmd_identifier_token5] = ACTIONS(944), + [aux_sym_cmd_identifier_token6] = ACTIONS(944), + [aux_sym_cmd_identifier_token7] = ACTIONS(944), + [aux_sym_cmd_identifier_token8] = ACTIONS(942), + [aux_sym_cmd_identifier_token9] = ACTIONS(942), + [aux_sym_cmd_identifier_token10] = ACTIONS(944), + [aux_sym_cmd_identifier_token11] = ACTIONS(944), + [aux_sym_cmd_identifier_token12] = ACTIONS(942), + [aux_sym_cmd_identifier_token13] = ACTIONS(942), + [aux_sym_cmd_identifier_token14] = ACTIONS(942), + [aux_sym_cmd_identifier_token15] = ACTIONS(942), + [aux_sym_cmd_identifier_token16] = ACTIONS(944), + [aux_sym_cmd_identifier_token17] = ACTIONS(944), + [aux_sym_cmd_identifier_token18] = ACTIONS(944), + [aux_sym_cmd_identifier_token19] = ACTIONS(944), + [aux_sym_cmd_identifier_token20] = ACTIONS(944), + [aux_sym_cmd_identifier_token21] = ACTIONS(944), + [aux_sym_cmd_identifier_token22] = ACTIONS(944), + [aux_sym_cmd_identifier_token23] = ACTIONS(944), + [aux_sym_cmd_identifier_token24] = ACTIONS(944), + [aux_sym_cmd_identifier_token25] = ACTIONS(944), + [aux_sym_cmd_identifier_token26] = ACTIONS(944), + [aux_sym_cmd_identifier_token27] = ACTIONS(944), + [aux_sym_cmd_identifier_token28] = ACTIONS(944), + [aux_sym_cmd_identifier_token29] = ACTIONS(944), + [aux_sym_cmd_identifier_token30] = ACTIONS(944), + [aux_sym_cmd_identifier_token31] = ACTIONS(944), + [aux_sym_cmd_identifier_token32] = ACTIONS(944), + [aux_sym_cmd_identifier_token33] = ACTIONS(944), + [aux_sym_cmd_identifier_token34] = ACTIONS(942), + [aux_sym_cmd_identifier_token35] = ACTIONS(944), + [aux_sym_cmd_identifier_token36] = ACTIONS(944), + [aux_sym_cmd_identifier_token37] = ACTIONS(944), + [aux_sym_cmd_identifier_token38] = ACTIONS(942), + [aux_sym_cmd_identifier_token39] = ACTIONS(944), + [aux_sym_cmd_identifier_token40] = ACTIONS(944), + [anon_sym_def] = ACTIONS(942), + [anon_sym_export_DASHenv] = ACTIONS(942), + [anon_sym_extern] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_use] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_COMMA] = ACTIONS(944), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_error] = ACTIONS(942), + [anon_sym_DASH2] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_in2] = ACTIONS(942), + [anon_sym_loop] = ACTIONS(942), + [anon_sym_make] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_do] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_else] = ACTIONS(942), + [anon_sym_match] = ACTIONS(942), + [anon_sym_RBRACE] = ACTIONS(944), + [anon_sym_try] = ACTIONS(942), + [anon_sym_catch] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_source] = ACTIONS(942), + [anon_sym_source_DASHenv] = ACTIONS(942), + [anon_sym_hide] = ACTIONS(942), + [anon_sym_hide_DASHenv] = ACTIONS(942), + [anon_sym_overlay] = ACTIONS(942), + [anon_sym_as] = ACTIONS(942), + [anon_sym_PLUS2] = ACTIONS(942), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(944), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(944), + [aux_sym__val_number_decimal_token1] = ACTIONS(942), + [aux_sym__val_number_decimal_token2] = ACTIONS(944), + [aux_sym__val_number_decimal_token3] = ACTIONS(944), + [aux_sym__val_number_decimal_token4] = ACTIONS(944), + [aux_sym__val_number_token1] = ACTIONS(944), + [aux_sym__val_number_token2] = ACTIONS(944), + [aux_sym__val_number_token3] = ACTIONS(944), + [aux_sym__val_number_token4] = ACTIONS(942), + [aux_sym__val_number_token5] = ACTIONS(942), + [aux_sym__val_number_token6] = ACTIONS(942), + [anon_sym_DQUOTE] = ACTIONS(944), + [sym__str_single_quotes] = ACTIONS(944), + [sym__str_back_ticks] = ACTIONS(944), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(944), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(944), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(944), + [anon_sym_register] = ACTIONS(942), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(944), + }, + [672] = { + [sym_comment] = STATE(672), + [anon_sym_export] = ACTIONS(954), + [anon_sym_alias] = ACTIONS(954), + [anon_sym_let] = ACTIONS(954), + [anon_sym_let_DASHenv] = ACTIONS(954), + [anon_sym_mut] = ACTIONS(954), + [anon_sym_const] = ACTIONS(954), + [aux_sym_cmd_identifier_token1] = ACTIONS(954), + [aux_sym_cmd_identifier_token2] = ACTIONS(956), + [aux_sym_cmd_identifier_token3] = ACTIONS(956), + [aux_sym_cmd_identifier_token4] = ACTIONS(956), + [aux_sym_cmd_identifier_token5] = ACTIONS(956), + [aux_sym_cmd_identifier_token6] = ACTIONS(956), + [aux_sym_cmd_identifier_token7] = ACTIONS(956), + [aux_sym_cmd_identifier_token8] = ACTIONS(954), + [aux_sym_cmd_identifier_token9] = ACTIONS(954), + [aux_sym_cmd_identifier_token10] = ACTIONS(956), + [aux_sym_cmd_identifier_token11] = ACTIONS(956), + [aux_sym_cmd_identifier_token12] = ACTIONS(954), + [aux_sym_cmd_identifier_token13] = ACTIONS(954), + [aux_sym_cmd_identifier_token14] = ACTIONS(954), + [aux_sym_cmd_identifier_token15] = ACTIONS(954), + [aux_sym_cmd_identifier_token16] = ACTIONS(956), + [aux_sym_cmd_identifier_token17] = ACTIONS(956), + [aux_sym_cmd_identifier_token18] = ACTIONS(956), + [aux_sym_cmd_identifier_token19] = ACTIONS(956), + [aux_sym_cmd_identifier_token20] = ACTIONS(956), + [aux_sym_cmd_identifier_token21] = ACTIONS(956), + [aux_sym_cmd_identifier_token22] = ACTIONS(956), + [aux_sym_cmd_identifier_token23] = ACTIONS(956), + [aux_sym_cmd_identifier_token24] = ACTIONS(956), + [aux_sym_cmd_identifier_token25] = ACTIONS(956), + [aux_sym_cmd_identifier_token26] = ACTIONS(956), + [aux_sym_cmd_identifier_token27] = ACTIONS(956), + [aux_sym_cmd_identifier_token28] = ACTIONS(956), + [aux_sym_cmd_identifier_token29] = ACTIONS(956), + [aux_sym_cmd_identifier_token30] = ACTIONS(956), + [aux_sym_cmd_identifier_token31] = ACTIONS(956), + [aux_sym_cmd_identifier_token32] = ACTIONS(956), + [aux_sym_cmd_identifier_token33] = ACTIONS(956), + [aux_sym_cmd_identifier_token34] = ACTIONS(954), + [aux_sym_cmd_identifier_token35] = ACTIONS(956), + [aux_sym_cmd_identifier_token36] = ACTIONS(956), + [aux_sym_cmd_identifier_token37] = ACTIONS(956), + [aux_sym_cmd_identifier_token38] = ACTIONS(954), + [aux_sym_cmd_identifier_token39] = ACTIONS(956), + [aux_sym_cmd_identifier_token40] = ACTIONS(956), + [anon_sym_def] = ACTIONS(954), + [anon_sym_export_DASHenv] = ACTIONS(954), + [anon_sym_extern] = ACTIONS(954), + [anon_sym_module] = ACTIONS(954), + [anon_sym_use] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(956), + [anon_sym_COMMA] = ACTIONS(956), + [anon_sym_DOLLAR] = ACTIONS(954), + [anon_sym_error] = ACTIONS(954), + [anon_sym_DASH2] = ACTIONS(954), + [anon_sym_break] = ACTIONS(954), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_for] = ACTIONS(954), + [anon_sym_in2] = ACTIONS(954), + [anon_sym_loop] = ACTIONS(954), + [anon_sym_make] = ACTIONS(954), + [anon_sym_while] = ACTIONS(954), + [anon_sym_do] = ACTIONS(954), + [anon_sym_if] = ACTIONS(954), + [anon_sym_else] = ACTIONS(954), + [anon_sym_match] = ACTIONS(954), + [anon_sym_RBRACE] = ACTIONS(956), + [anon_sym_try] = ACTIONS(954), + [anon_sym_catch] = ACTIONS(954), + [anon_sym_return] = ACTIONS(954), + [anon_sym_source] = ACTIONS(954), + [anon_sym_source_DASHenv] = ACTIONS(954), + [anon_sym_hide] = ACTIONS(954), + [anon_sym_hide_DASHenv] = ACTIONS(954), + [anon_sym_overlay] = ACTIONS(954), + [anon_sym_as] = ACTIONS(954), + [anon_sym_PLUS2] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(956), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(956), + [aux_sym__val_number_decimal_token1] = ACTIONS(954), + [aux_sym__val_number_decimal_token2] = ACTIONS(956), + [aux_sym__val_number_decimal_token3] = ACTIONS(956), + [aux_sym__val_number_decimal_token4] = ACTIONS(956), + [aux_sym__val_number_token1] = ACTIONS(956), + [aux_sym__val_number_token2] = ACTIONS(956), + [aux_sym__val_number_token3] = ACTIONS(956), + [aux_sym__val_number_token4] = ACTIONS(954), + [aux_sym__val_number_token5] = ACTIONS(954), + [aux_sym__val_number_token6] = ACTIONS(954), + [anon_sym_DQUOTE] = ACTIONS(956), + [sym__str_single_quotes] = ACTIONS(956), + [sym__str_back_ticks] = ACTIONS(956), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(956), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(956), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(956), + [anon_sym_register] = ACTIONS(954), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(956), + }, + [673] = { + [sym_comment] = STATE(673), + [anon_sym_export] = ACTIONS(946), + [anon_sym_alias] = ACTIONS(946), + [anon_sym_let] = ACTIONS(946), + [anon_sym_let_DASHenv] = ACTIONS(946), + [anon_sym_mut] = ACTIONS(946), + [anon_sym_const] = ACTIONS(946), + [aux_sym_cmd_identifier_token1] = ACTIONS(946), + [aux_sym_cmd_identifier_token2] = ACTIONS(948), + [aux_sym_cmd_identifier_token3] = ACTIONS(948), + [aux_sym_cmd_identifier_token4] = ACTIONS(948), + [aux_sym_cmd_identifier_token5] = ACTIONS(948), + [aux_sym_cmd_identifier_token6] = ACTIONS(948), + [aux_sym_cmd_identifier_token7] = ACTIONS(948), + [aux_sym_cmd_identifier_token8] = ACTIONS(946), + [aux_sym_cmd_identifier_token9] = ACTIONS(946), + [aux_sym_cmd_identifier_token10] = ACTIONS(948), + [aux_sym_cmd_identifier_token11] = ACTIONS(948), + [aux_sym_cmd_identifier_token12] = ACTIONS(946), + [aux_sym_cmd_identifier_token13] = ACTIONS(946), + [aux_sym_cmd_identifier_token14] = ACTIONS(946), + [aux_sym_cmd_identifier_token15] = ACTIONS(946), + [aux_sym_cmd_identifier_token16] = ACTIONS(948), + [aux_sym_cmd_identifier_token17] = ACTIONS(948), + [aux_sym_cmd_identifier_token18] = ACTIONS(948), + [aux_sym_cmd_identifier_token19] = ACTIONS(948), + [aux_sym_cmd_identifier_token20] = ACTIONS(948), + [aux_sym_cmd_identifier_token21] = ACTIONS(948), + [aux_sym_cmd_identifier_token22] = ACTIONS(948), + [aux_sym_cmd_identifier_token23] = ACTIONS(948), + [aux_sym_cmd_identifier_token24] = ACTIONS(948), + [aux_sym_cmd_identifier_token25] = ACTIONS(948), + [aux_sym_cmd_identifier_token26] = ACTIONS(948), + [aux_sym_cmd_identifier_token27] = ACTIONS(948), + [aux_sym_cmd_identifier_token28] = ACTIONS(948), + [aux_sym_cmd_identifier_token29] = ACTIONS(948), + [aux_sym_cmd_identifier_token30] = ACTIONS(948), + [aux_sym_cmd_identifier_token31] = ACTIONS(948), + [aux_sym_cmd_identifier_token32] = ACTIONS(948), + [aux_sym_cmd_identifier_token33] = ACTIONS(948), + [aux_sym_cmd_identifier_token34] = ACTIONS(946), + [aux_sym_cmd_identifier_token35] = ACTIONS(948), + [aux_sym_cmd_identifier_token36] = ACTIONS(948), + [aux_sym_cmd_identifier_token37] = ACTIONS(948), + [aux_sym_cmd_identifier_token38] = ACTIONS(946), + [aux_sym_cmd_identifier_token39] = ACTIONS(948), + [aux_sym_cmd_identifier_token40] = ACTIONS(948), + [anon_sym_def] = ACTIONS(946), + [anon_sym_export_DASHenv] = ACTIONS(946), + [anon_sym_extern] = ACTIONS(946), + [anon_sym_module] = ACTIONS(946), + [anon_sym_use] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(948), + [anon_sym_COMMA] = ACTIONS(948), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_error] = ACTIONS(946), + [anon_sym_DASH2] = ACTIONS(946), + [anon_sym_break] = ACTIONS(946), + [anon_sym_continue] = ACTIONS(946), + [anon_sym_for] = ACTIONS(946), + [anon_sym_in2] = ACTIONS(946), + [anon_sym_loop] = ACTIONS(946), + [anon_sym_make] = ACTIONS(946), + [anon_sym_while] = ACTIONS(946), + [anon_sym_do] = ACTIONS(946), + [anon_sym_if] = ACTIONS(946), + [anon_sym_else] = ACTIONS(946), + [anon_sym_match] = ACTIONS(946), + [anon_sym_RBRACE] = ACTIONS(948), + [anon_sym_try] = ACTIONS(946), + [anon_sym_catch] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_source] = ACTIONS(946), + [anon_sym_source_DASHenv] = ACTIONS(946), + [anon_sym_hide] = ACTIONS(946), + [anon_sym_hide_DASHenv] = ACTIONS(946), + [anon_sym_overlay] = ACTIONS(946), + [anon_sym_as] = ACTIONS(946), + [anon_sym_PLUS2] = ACTIONS(946), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(948), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(948), + [aux_sym__val_number_decimal_token1] = ACTIONS(946), + [aux_sym__val_number_decimal_token2] = ACTIONS(948), + [aux_sym__val_number_decimal_token3] = ACTIONS(948), + [aux_sym__val_number_decimal_token4] = ACTIONS(948), + [aux_sym__val_number_token1] = ACTIONS(948), + [aux_sym__val_number_token2] = ACTIONS(948), + [aux_sym__val_number_token3] = ACTIONS(948), + [aux_sym__val_number_token4] = ACTIONS(946), + [aux_sym__val_number_token5] = ACTIONS(946), + [aux_sym__val_number_token6] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(948), + [sym__str_single_quotes] = ACTIONS(948), + [sym__str_back_ticks] = ACTIONS(948), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(948), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(948), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(948), + [anon_sym_register] = ACTIONS(946), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(948), + }, + [674] = { + [sym_comment] = STATE(674), + [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_COMMA] = ACTIONS(2392), + [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(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_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_DOLLAR_SQUOTE] = ACTIONS(2392), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2392), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2392), + [anon_sym_register] = ACTIONS(2390), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2392), + }, + [675] = { + [sym_comment] = STATE(675), + [anon_sym_export] = ACTIONS(1686), + [anon_sym_alias] = ACTIONS(1686), + [anon_sym_let] = ACTIONS(1686), + [anon_sym_let_DASHenv] = ACTIONS(1686), + [anon_sym_mut] = ACTIONS(1686), + [anon_sym_const] = ACTIONS(1686), + [aux_sym_cmd_identifier_token1] = ACTIONS(1686), + [aux_sym_cmd_identifier_token2] = ACTIONS(1688), + [aux_sym_cmd_identifier_token3] = ACTIONS(1688), + [aux_sym_cmd_identifier_token4] = ACTIONS(1688), + [aux_sym_cmd_identifier_token5] = ACTIONS(1688), + [aux_sym_cmd_identifier_token6] = ACTIONS(1688), + [aux_sym_cmd_identifier_token7] = ACTIONS(1688), + [aux_sym_cmd_identifier_token8] = ACTIONS(1686), + [aux_sym_cmd_identifier_token9] = ACTIONS(1686), + [aux_sym_cmd_identifier_token10] = ACTIONS(1688), + [aux_sym_cmd_identifier_token11] = ACTIONS(1688), + [aux_sym_cmd_identifier_token12] = ACTIONS(1686), + [aux_sym_cmd_identifier_token13] = ACTIONS(1686), + [aux_sym_cmd_identifier_token14] = ACTIONS(1686), + [aux_sym_cmd_identifier_token15] = ACTIONS(1686), + [aux_sym_cmd_identifier_token16] = ACTIONS(1688), + [aux_sym_cmd_identifier_token17] = ACTIONS(1688), + [aux_sym_cmd_identifier_token18] = ACTIONS(1688), + [aux_sym_cmd_identifier_token19] = ACTIONS(1688), + [aux_sym_cmd_identifier_token20] = ACTIONS(1688), + [aux_sym_cmd_identifier_token21] = ACTIONS(1688), + [aux_sym_cmd_identifier_token22] = ACTIONS(1688), + [aux_sym_cmd_identifier_token23] = ACTIONS(1688), + [aux_sym_cmd_identifier_token24] = ACTIONS(1688), + [aux_sym_cmd_identifier_token25] = ACTIONS(1688), + [aux_sym_cmd_identifier_token26] = ACTIONS(1688), + [aux_sym_cmd_identifier_token27] = ACTIONS(1688), + [aux_sym_cmd_identifier_token28] = ACTIONS(1688), + [aux_sym_cmd_identifier_token29] = ACTIONS(1688), + [aux_sym_cmd_identifier_token30] = ACTIONS(1688), + [aux_sym_cmd_identifier_token31] = ACTIONS(1688), + [aux_sym_cmd_identifier_token32] = ACTIONS(1688), + [aux_sym_cmd_identifier_token33] = ACTIONS(1688), + [aux_sym_cmd_identifier_token34] = ACTIONS(1686), + [aux_sym_cmd_identifier_token35] = ACTIONS(1688), + [aux_sym_cmd_identifier_token36] = ACTIONS(1688), + [aux_sym_cmd_identifier_token37] = ACTIONS(1688), + [aux_sym_cmd_identifier_token38] = ACTIONS(1686), + [aux_sym_cmd_identifier_token39] = ACTIONS(1688), + [aux_sym_cmd_identifier_token40] = ACTIONS(1688), + [anon_sym_def] = ACTIONS(1686), + [anon_sym_export_DASHenv] = ACTIONS(1686), + [anon_sym_extern] = ACTIONS(1686), + [anon_sym_module] = ACTIONS(1686), + [anon_sym_use] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1688), + [anon_sym_COMMA] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_error] = ACTIONS(1686), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_break] = ACTIONS(1686), + [anon_sym_continue] = ACTIONS(1686), + [anon_sym_for] = ACTIONS(1686), + [anon_sym_in2] = ACTIONS(1686), + [anon_sym_loop] = ACTIONS(1686), + [anon_sym_make] = ACTIONS(1686), + [anon_sym_while] = ACTIONS(1686), + [anon_sym_do] = ACTIONS(1686), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_else] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_try] = ACTIONS(1686), + [anon_sym_catch] = ACTIONS(1686), + [anon_sym_return] = ACTIONS(1686), + [anon_sym_source] = ACTIONS(1686), + [anon_sym_source_DASHenv] = ACTIONS(1686), + [anon_sym_hide] = ACTIONS(1686), + [anon_sym_hide_DASHenv] = ACTIONS(1686), + [anon_sym_overlay] = ACTIONS(1686), + [anon_sym_as] = ACTIONS(1686), + [anon_sym_PLUS2] = ACTIONS(1686), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1688), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1688), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1688), + [aux_sym__val_number_decimal_token3] = ACTIONS(1688), + [aux_sym__val_number_decimal_token4] = ACTIONS(1688), + [aux_sym__val_number_token1] = ACTIONS(1688), + [aux_sym__val_number_token2] = ACTIONS(1688), + [aux_sym__val_number_token3] = ACTIONS(1688), + [aux_sym__val_number_token4] = ACTIONS(1686), + [aux_sym__val_number_token5] = ACTIONS(1686), + [aux_sym__val_number_token6] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [sym__str_single_quotes] = ACTIONS(1688), + [sym__str_back_ticks] = ACTIONS(1688), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1688), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1688), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1688), + [anon_sym_register] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1688), + }, + [676] = { + [sym_comment] = STATE(676), + [anon_sym_export] = ACTIONS(986), + [anon_sym_alias] = ACTIONS(986), + [anon_sym_let] = ACTIONS(986), + [anon_sym_let_DASHenv] = ACTIONS(986), + [anon_sym_mut] = ACTIONS(986), + [anon_sym_const] = ACTIONS(986), + [aux_sym_cmd_identifier_token1] = ACTIONS(986), + [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(986), + [aux_sym_cmd_identifier_token9] = ACTIONS(986), + [aux_sym_cmd_identifier_token10] = ACTIONS(992), + [aux_sym_cmd_identifier_token11] = ACTIONS(992), + [aux_sym_cmd_identifier_token12] = ACTIONS(986), + [aux_sym_cmd_identifier_token13] = ACTIONS(986), + [aux_sym_cmd_identifier_token14] = ACTIONS(986), + [aux_sym_cmd_identifier_token15] = ACTIONS(986), + [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(986), + [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(986), + [aux_sym_cmd_identifier_token39] = ACTIONS(992), + [aux_sym_cmd_identifier_token40] = ACTIONS(992), + [anon_sym_def] = ACTIONS(986), + [anon_sym_export_DASHenv] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_use] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_error] = ACTIONS(986), + [anon_sym_DASH2] = ACTIONS(986), + [anon_sym_break] = ACTIONS(986), + [anon_sym_continue] = ACTIONS(986), + [anon_sym_for] = ACTIONS(986), + [anon_sym_in2] = ACTIONS(986), + [anon_sym_loop] = ACTIONS(986), + [anon_sym_make] = ACTIONS(986), + [anon_sym_while] = ACTIONS(986), + [anon_sym_do] = ACTIONS(986), + [anon_sym_if] = ACTIONS(986), + [anon_sym_else] = ACTIONS(986), + [anon_sym_match] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_try] = ACTIONS(986), + [anon_sym_catch] = ACTIONS(986), + [anon_sym_return] = ACTIONS(986), + [anon_sym_source] = ACTIONS(986), + [anon_sym_source_DASHenv] = ACTIONS(986), + [anon_sym_hide] = ACTIONS(986), + [anon_sym_hide_DASHenv] = ACTIONS(986), + [anon_sym_overlay] = ACTIONS(986), + [anon_sym_as] = ACTIONS(986), + [anon_sym_PLUS2] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(986), + [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(986), + [aux_sym__val_number_token5] = ACTIONS(986), + [aux_sym__val_number_token6] = ACTIONS(986), + [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_DOT_DOT_DOT_LBRACE] = ACTIONS(992), + [anon_sym_register] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(992), + }, + [677] = { + [sym_comment] = STATE(677), + [aux_sym__multiple_types_repeat1] = STATE(634), [anon_sym_export] = ACTIONS(2346), [anon_sym_alias] = ACTIONS(2346), [anon_sym_let] = ACTIONS(2346), @@ -152546,52 +147365,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(2346), [anon_sym_const] = ACTIONS(2346), [aux_sym_cmd_identifier_token1] = ACTIONS(2346), - [aux_sym_cmd_identifier_token2] = ACTIONS(2348), - [aux_sym_cmd_identifier_token3] = ACTIONS(2348), - [aux_sym_cmd_identifier_token4] = ACTIONS(2348), - [aux_sym_cmd_identifier_token5] = ACTIONS(2348), - [aux_sym_cmd_identifier_token6] = ACTIONS(2348), - [aux_sym_cmd_identifier_token7] = ACTIONS(2348), + [aux_sym_cmd_identifier_token2] = ACTIONS(2346), + [aux_sym_cmd_identifier_token3] = ACTIONS(2346), + [aux_sym_cmd_identifier_token4] = ACTIONS(2346), + [aux_sym_cmd_identifier_token5] = ACTIONS(2346), + [aux_sym_cmd_identifier_token6] = ACTIONS(2346), + [aux_sym_cmd_identifier_token7] = ACTIONS(2346), [aux_sym_cmd_identifier_token8] = ACTIONS(2346), [aux_sym_cmd_identifier_token9] = ACTIONS(2346), - [aux_sym_cmd_identifier_token10] = ACTIONS(2348), - [aux_sym_cmd_identifier_token11] = ACTIONS(2348), + [aux_sym_cmd_identifier_token10] = ACTIONS(2346), + [aux_sym_cmd_identifier_token11] = ACTIONS(2346), [aux_sym_cmd_identifier_token12] = ACTIONS(2346), [aux_sym_cmd_identifier_token13] = ACTIONS(2346), [aux_sym_cmd_identifier_token14] = ACTIONS(2346), [aux_sym_cmd_identifier_token15] = ACTIONS(2346), - [aux_sym_cmd_identifier_token16] = ACTIONS(2348), - [aux_sym_cmd_identifier_token17] = ACTIONS(2348), - [aux_sym_cmd_identifier_token18] = ACTIONS(2348), - [aux_sym_cmd_identifier_token19] = ACTIONS(2348), - [aux_sym_cmd_identifier_token20] = ACTIONS(2348), - [aux_sym_cmd_identifier_token21] = ACTIONS(2348), - [aux_sym_cmd_identifier_token22] = ACTIONS(2348), - [aux_sym_cmd_identifier_token23] = ACTIONS(2348), - [aux_sym_cmd_identifier_token24] = ACTIONS(2348), - [aux_sym_cmd_identifier_token25] = ACTIONS(2348), - [aux_sym_cmd_identifier_token26] = ACTIONS(2348), - [aux_sym_cmd_identifier_token27] = ACTIONS(2348), - [aux_sym_cmd_identifier_token28] = ACTIONS(2348), - [aux_sym_cmd_identifier_token29] = ACTIONS(2348), - [aux_sym_cmd_identifier_token30] = ACTIONS(2348), - [aux_sym_cmd_identifier_token31] = ACTIONS(2348), - [aux_sym_cmd_identifier_token32] = ACTIONS(2348), - [aux_sym_cmd_identifier_token33] = ACTIONS(2348), + [aux_sym_cmd_identifier_token16] = ACTIONS(2346), + [aux_sym_cmd_identifier_token17] = ACTIONS(2346), + [aux_sym_cmd_identifier_token18] = ACTIONS(2346), + [aux_sym_cmd_identifier_token19] = ACTIONS(2346), + [aux_sym_cmd_identifier_token20] = ACTIONS(2346), + [aux_sym_cmd_identifier_token21] = ACTIONS(2346), + [aux_sym_cmd_identifier_token22] = ACTIONS(2346), + [aux_sym_cmd_identifier_token23] = ACTIONS(2346), + [aux_sym_cmd_identifier_token24] = ACTIONS(2346), + [aux_sym_cmd_identifier_token25] = ACTIONS(2346), + [aux_sym_cmd_identifier_token26] = ACTIONS(2346), + [aux_sym_cmd_identifier_token27] = ACTIONS(2346), + [aux_sym_cmd_identifier_token28] = ACTIONS(2346), + [aux_sym_cmd_identifier_token29] = ACTIONS(2346), + [aux_sym_cmd_identifier_token30] = ACTIONS(2346), + [aux_sym_cmd_identifier_token31] = ACTIONS(2346), + [aux_sym_cmd_identifier_token32] = ACTIONS(2346), + [aux_sym_cmd_identifier_token33] = ACTIONS(2346), [aux_sym_cmd_identifier_token34] = ACTIONS(2346), - [aux_sym_cmd_identifier_token35] = ACTIONS(2348), - [aux_sym_cmd_identifier_token36] = ACTIONS(2348), - [aux_sym_cmd_identifier_token37] = ACTIONS(2348), + [aux_sym_cmd_identifier_token35] = ACTIONS(2346), + [aux_sym_cmd_identifier_token36] = ACTIONS(2346), + [aux_sym_cmd_identifier_token37] = ACTIONS(2346), [aux_sym_cmd_identifier_token38] = ACTIONS(2346), - [aux_sym_cmd_identifier_token39] = ACTIONS(2348), - [aux_sym_cmd_identifier_token40] = ACTIONS(2348), + [aux_sym_cmd_identifier_token39] = ACTIONS(2346), + [aux_sym_cmd_identifier_token40] = ACTIONS(2346), [anon_sym_def] = ACTIONS(2346), [anon_sym_export_DASHenv] = ACTIONS(2346), [anon_sym_extern] = ACTIONS(2346), [anon_sym_module] = ACTIONS(2346), [anon_sym_use] = ACTIONS(2346), - [anon_sym_LPAREN] = ACTIONS(2348), - [anon_sym_COMMA] = ACTIONS(2348), + [anon_sym_LPAREN] = ACTIONS(2346), [anon_sym_DOLLAR] = ACTIONS(2346), [anon_sym_error] = ACTIONS(2346), [anon_sym_DASH2] = ACTIONS(2346), @@ -152606,7 +147424,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2346), [anon_sym_else] = ACTIONS(2346), [anon_sym_match] = ACTIONS(2346), - [anon_sym_RBRACE] = ACTIONS(2348), [anon_sym_try] = ACTIONS(2346), [anon_sym_catch] = ACTIONS(2346), [anon_sym_return] = ACTIONS(2346), @@ -152617,2785 +147434,2785 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(2346), [anon_sym_as] = ACTIONS(2346), [anon_sym_PLUS2] = ACTIONS(2346), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2348), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2348), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2346), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2346), [aux_sym__val_number_decimal_token1] = ACTIONS(2346), - [aux_sym__val_number_decimal_token2] = ACTIONS(2348), - [aux_sym__val_number_decimal_token3] = ACTIONS(2348), - [aux_sym__val_number_decimal_token4] = ACTIONS(2348), - [aux_sym__val_number_token1] = ACTIONS(2348), - [aux_sym__val_number_token2] = ACTIONS(2348), - [aux_sym__val_number_token3] = ACTIONS(2348), + [aux_sym__val_number_decimal_token2] = ACTIONS(2346), + [aux_sym__val_number_decimal_token3] = ACTIONS(2346), + [aux_sym__val_number_decimal_token4] = ACTIONS(2346), + [aux_sym__val_number_token1] = ACTIONS(2346), + [aux_sym__val_number_token2] = ACTIONS(2346), + [aux_sym__val_number_token3] = ACTIONS(2346), [aux_sym__val_number_token4] = ACTIONS(2346), [aux_sym__val_number_token5] = ACTIONS(2346), [aux_sym__val_number_token6] = ACTIONS(2346), - [anon_sym_DQUOTE] = ACTIONS(2348), - [sym__str_single_quotes] = ACTIONS(2348), - [sym__str_back_ticks] = ACTIONS(2348), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2348), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2348), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2348), + [anon_sym_DQUOTE] = ACTIONS(2346), + [sym__str_single_quotes] = ACTIONS(2346), + [sym__str_back_ticks] = ACTIONS(2346), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2346), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2346), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2346), + [sym__entry_separator] = ACTIONS(2256), [anon_sym_register] = ACTIONS(2346), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2348), - }, - [717] = { - [sym_comment] = STATE(717), - [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_COMMA] = ACTIONS(2451), - [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(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_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_DOLLAR_SQUOTE] = ACTIONS(2451), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2451), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2451), - [anon_sym_register] = ACTIONS(2449), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2451), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2350), }, - [718] = { - [sym_comment] = STATE(718), - [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_COMMA] = ACTIONS(1893), - [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(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_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_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_DOLLAR_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1893), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1893), - [anon_sym_register] = ACTIONS(1891), + [678] = { + [sym_comment] = STATE(678), + [anon_sym_export] = ACTIONS(1616), + [anon_sym_alias] = ACTIONS(1616), + [anon_sym_let] = ACTIONS(1616), + [anon_sym_let_DASHenv] = ACTIONS(1616), + [anon_sym_mut] = ACTIONS(1616), + [anon_sym_const] = ACTIONS(1616), + [aux_sym_cmd_identifier_token1] = ACTIONS(1616), + [aux_sym_cmd_identifier_token2] = ACTIONS(1628), + [aux_sym_cmd_identifier_token3] = ACTIONS(1628), + [aux_sym_cmd_identifier_token4] = ACTIONS(1628), + [aux_sym_cmd_identifier_token5] = ACTIONS(1628), + [aux_sym_cmd_identifier_token6] = ACTIONS(1628), + [aux_sym_cmd_identifier_token7] = ACTIONS(1628), + [aux_sym_cmd_identifier_token8] = ACTIONS(1616), + [aux_sym_cmd_identifier_token9] = ACTIONS(1616), + [aux_sym_cmd_identifier_token10] = ACTIONS(1628), + [aux_sym_cmd_identifier_token11] = ACTIONS(1628), + [aux_sym_cmd_identifier_token12] = ACTIONS(1616), + [aux_sym_cmd_identifier_token13] = ACTIONS(1616), + [aux_sym_cmd_identifier_token14] = ACTIONS(1616), + [aux_sym_cmd_identifier_token15] = ACTIONS(1616), + [aux_sym_cmd_identifier_token16] = ACTIONS(1628), + [aux_sym_cmd_identifier_token17] = ACTIONS(1628), + [aux_sym_cmd_identifier_token18] = ACTIONS(1628), + [aux_sym_cmd_identifier_token19] = ACTIONS(1628), + [aux_sym_cmd_identifier_token20] = ACTIONS(1628), + [aux_sym_cmd_identifier_token21] = ACTIONS(1628), + [aux_sym_cmd_identifier_token22] = ACTIONS(1628), + [aux_sym_cmd_identifier_token23] = ACTIONS(1628), + [aux_sym_cmd_identifier_token24] = ACTIONS(1628), + [aux_sym_cmd_identifier_token25] = ACTIONS(1628), + [aux_sym_cmd_identifier_token26] = ACTIONS(1628), + [aux_sym_cmd_identifier_token27] = ACTIONS(1628), + [aux_sym_cmd_identifier_token28] = ACTIONS(1628), + [aux_sym_cmd_identifier_token29] = ACTIONS(1628), + [aux_sym_cmd_identifier_token30] = ACTIONS(1628), + [aux_sym_cmd_identifier_token31] = ACTIONS(1628), + [aux_sym_cmd_identifier_token32] = ACTIONS(1628), + [aux_sym_cmd_identifier_token33] = ACTIONS(1628), + [aux_sym_cmd_identifier_token34] = ACTIONS(1616), + [aux_sym_cmd_identifier_token35] = ACTIONS(1628), + [aux_sym_cmd_identifier_token36] = ACTIONS(1628), + [aux_sym_cmd_identifier_token37] = ACTIONS(1628), + [aux_sym_cmd_identifier_token38] = ACTIONS(1616), + [aux_sym_cmd_identifier_token39] = ACTIONS(1628), + [aux_sym_cmd_identifier_token40] = ACTIONS(1628), + [anon_sym_def] = ACTIONS(1616), + [anon_sym_export_DASHenv] = ACTIONS(1616), + [anon_sym_extern] = ACTIONS(1616), + [anon_sym_module] = ACTIONS(1616), + [anon_sym_use] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_COMMA] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_error] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_break] = ACTIONS(1616), + [anon_sym_continue] = ACTIONS(1616), + [anon_sym_for] = ACTIONS(1616), + [anon_sym_in2] = ACTIONS(1616), + [anon_sym_loop] = ACTIONS(1616), + [anon_sym_make] = ACTIONS(1616), + [anon_sym_while] = ACTIONS(1616), + [anon_sym_do] = ACTIONS(1616), + [anon_sym_if] = ACTIONS(1616), + [anon_sym_else] = ACTIONS(1616), + [anon_sym_match] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_try] = ACTIONS(1616), + [anon_sym_catch] = ACTIONS(1616), + [anon_sym_return] = ACTIONS(1616), + [anon_sym_source] = ACTIONS(1616), + [anon_sym_source_DASHenv] = ACTIONS(1616), + [anon_sym_hide] = ACTIONS(1616), + [anon_sym_hide_DASHenv] = ACTIONS(1616), + [anon_sym_overlay] = ACTIONS(1616), + [anon_sym_as] = ACTIONS(1616), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1628), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1628), + [aux_sym__val_number_decimal_token1] = ACTIONS(1616), + [aux_sym__val_number_decimal_token2] = ACTIONS(1628), + [aux_sym__val_number_decimal_token3] = ACTIONS(1628), + [aux_sym__val_number_decimal_token4] = ACTIONS(1628), + [aux_sym__val_number_token1] = ACTIONS(1628), + [aux_sym__val_number_token2] = ACTIONS(1628), + [aux_sym__val_number_token3] = ACTIONS(1628), + [aux_sym__val_number_token4] = ACTIONS(1616), + [aux_sym__val_number_token5] = ACTIONS(1616), + [aux_sym__val_number_token6] = ACTIONS(1616), + [anon_sym_DQUOTE] = ACTIONS(1628), + [sym__str_single_quotes] = ACTIONS(1628), + [sym__str_back_ticks] = ACTIONS(1628), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1628), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1628), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1628), + [anon_sym_register] = ACTIONS(1616), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1893), + [sym_raw_string_begin] = ACTIONS(1628), }, - [719] = { - [sym_comment] = STATE(719), - [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_COMMA] = ACTIONS(1933), - [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(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_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_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_DOLLAR_SQUOTE] = ACTIONS(1933), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1933), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1933), - [anon_sym_register] = ACTIONS(1931), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1933), + [679] = { + [sym_comment] = STATE(679), + [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_COMMA] = ACTIONS(2396), + [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(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_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_DOLLAR_SQUOTE] = ACTIONS(2396), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2396), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2396), + [anon_sym_register] = ACTIONS(2394), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2396), }, - [720] = { - [sym_comment] = STATE(720), - [anon_sym_export] = ACTIONS(2453), - [anon_sym_alias] = ACTIONS(2453), - [anon_sym_let] = ACTIONS(2453), - [anon_sym_let_DASHenv] = ACTIONS(2453), - [anon_sym_mut] = ACTIONS(2453), - [anon_sym_const] = ACTIONS(2453), - [aux_sym_cmd_identifier_token1] = ACTIONS(2453), - [aux_sym_cmd_identifier_token2] = ACTIONS(2455), - [aux_sym_cmd_identifier_token3] = ACTIONS(2455), - [aux_sym_cmd_identifier_token4] = ACTIONS(2455), - [aux_sym_cmd_identifier_token5] = ACTIONS(2455), - [aux_sym_cmd_identifier_token6] = ACTIONS(2455), - [aux_sym_cmd_identifier_token7] = ACTIONS(2455), - [aux_sym_cmd_identifier_token8] = ACTIONS(2453), - [aux_sym_cmd_identifier_token9] = ACTIONS(2453), - [aux_sym_cmd_identifier_token10] = ACTIONS(2455), - [aux_sym_cmd_identifier_token11] = ACTIONS(2455), - [aux_sym_cmd_identifier_token12] = ACTIONS(2453), - [aux_sym_cmd_identifier_token13] = ACTIONS(2453), - [aux_sym_cmd_identifier_token14] = ACTIONS(2453), - [aux_sym_cmd_identifier_token15] = ACTIONS(2453), - [aux_sym_cmd_identifier_token16] = ACTIONS(2455), - [aux_sym_cmd_identifier_token17] = ACTIONS(2455), - [aux_sym_cmd_identifier_token18] = ACTIONS(2455), - [aux_sym_cmd_identifier_token19] = ACTIONS(2455), - [aux_sym_cmd_identifier_token20] = ACTIONS(2455), - [aux_sym_cmd_identifier_token21] = ACTIONS(2455), - [aux_sym_cmd_identifier_token22] = ACTIONS(2455), - [aux_sym_cmd_identifier_token23] = ACTIONS(2455), - [aux_sym_cmd_identifier_token24] = ACTIONS(2455), - [aux_sym_cmd_identifier_token25] = ACTIONS(2455), - [aux_sym_cmd_identifier_token26] = ACTIONS(2455), - [aux_sym_cmd_identifier_token27] = ACTIONS(2455), - [aux_sym_cmd_identifier_token28] = ACTIONS(2455), - [aux_sym_cmd_identifier_token29] = ACTIONS(2455), - [aux_sym_cmd_identifier_token30] = ACTIONS(2455), - [aux_sym_cmd_identifier_token31] = ACTIONS(2455), - [aux_sym_cmd_identifier_token32] = ACTIONS(2455), - [aux_sym_cmd_identifier_token33] = ACTIONS(2455), - [aux_sym_cmd_identifier_token34] = ACTIONS(2453), - [aux_sym_cmd_identifier_token35] = ACTIONS(2455), - [aux_sym_cmd_identifier_token36] = ACTIONS(2455), - [aux_sym_cmd_identifier_token37] = ACTIONS(2455), - [aux_sym_cmd_identifier_token38] = ACTIONS(2453), - [aux_sym_cmd_identifier_token39] = ACTIONS(2455), - [aux_sym_cmd_identifier_token40] = ACTIONS(2455), - [anon_sym_def] = ACTIONS(2453), - [anon_sym_export_DASHenv] = ACTIONS(2453), - [anon_sym_extern] = ACTIONS(2453), - [anon_sym_module] = ACTIONS(2453), - [anon_sym_use] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_COMMA] = ACTIONS(2455), - [anon_sym_DOLLAR] = ACTIONS(2453), - [anon_sym_error] = ACTIONS(2453), - [anon_sym_DASH2] = ACTIONS(2453), - [anon_sym_break] = ACTIONS(2453), - [anon_sym_continue] = ACTIONS(2453), - [anon_sym_for] = ACTIONS(2453), - [anon_sym_in2] = ACTIONS(2453), - [anon_sym_loop] = ACTIONS(2453), - [anon_sym_make] = ACTIONS(2453), - [anon_sym_while] = ACTIONS(2453), - [anon_sym_do] = ACTIONS(2453), - [anon_sym_if] = ACTIONS(2453), - [anon_sym_else] = ACTIONS(2453), - [anon_sym_match] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2455), - [anon_sym_try] = ACTIONS(2453), - [anon_sym_catch] = ACTIONS(2453), - [anon_sym_return] = ACTIONS(2453), - [anon_sym_source] = ACTIONS(2453), - [anon_sym_source_DASHenv] = ACTIONS(2453), - [anon_sym_hide] = ACTIONS(2453), - [anon_sym_hide_DASHenv] = ACTIONS(2453), - [anon_sym_overlay] = ACTIONS(2453), - [anon_sym_as] = ACTIONS(2453), - [anon_sym_PLUS2] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2455), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2455), - [aux_sym__val_number_decimal_token1] = ACTIONS(2453), - [aux_sym__val_number_decimal_token2] = ACTIONS(2455), - [aux_sym__val_number_decimal_token3] = ACTIONS(2455), - [aux_sym__val_number_decimal_token4] = ACTIONS(2455), - [aux_sym__val_number_token1] = ACTIONS(2455), - [aux_sym__val_number_token2] = ACTIONS(2455), - [aux_sym__val_number_token3] = ACTIONS(2455), - [aux_sym__val_number_token4] = ACTIONS(2453), - [aux_sym__val_number_token5] = ACTIONS(2453), - [aux_sym__val_number_token6] = ACTIONS(2453), - [anon_sym_DQUOTE] = ACTIONS(2455), - [sym__str_single_quotes] = ACTIONS(2455), - [sym__str_back_ticks] = ACTIONS(2455), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2455), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2455), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2455), - [anon_sym_register] = ACTIONS(2453), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2455), + [680] = { + [sym_comment] = STATE(680), + [anon_sym_export] = ACTIONS(2405), + [anon_sym_alias] = ACTIONS(2405), + [anon_sym_let] = ACTIONS(2405), + [anon_sym_let_DASHenv] = ACTIONS(2405), + [anon_sym_mut] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [aux_sym_cmd_identifier_token1] = ACTIONS(2405), + [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(2405), + [aux_sym_cmd_identifier_token9] = ACTIONS(2405), + [aux_sym_cmd_identifier_token10] = ACTIONS(2407), + [aux_sym_cmd_identifier_token11] = ACTIONS(2407), + [aux_sym_cmd_identifier_token12] = ACTIONS(2405), + [aux_sym_cmd_identifier_token13] = ACTIONS(2405), + [aux_sym_cmd_identifier_token14] = ACTIONS(2405), + [aux_sym_cmd_identifier_token15] = ACTIONS(2405), + [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(2405), + [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(2405), + [aux_sym_cmd_identifier_token39] = ACTIONS(2407), + [aux_sym_cmd_identifier_token40] = ACTIONS(2407), + [anon_sym_def] = ACTIONS(2405), + [anon_sym_export_DASHenv] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym_module] = ACTIONS(2405), + [anon_sym_use] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_COMMA] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2405), + [anon_sym_error] = ACTIONS(2405), + [anon_sym_DASH2] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_in2] = ACTIONS(2405), + [anon_sym_loop] = ACTIONS(2405), + [anon_sym_make] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_match] = ACTIONS(2405), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_catch] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_source] = ACTIONS(2405), + [anon_sym_source_DASHenv] = ACTIONS(2405), + [anon_sym_hide] = ACTIONS(2405), + [anon_sym_hide_DASHenv] = ACTIONS(2405), + [anon_sym_overlay] = ACTIONS(2405), + [anon_sym_as] = ACTIONS(2405), + [anon_sym_PLUS2] = ACTIONS(2405), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2407), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2405), + [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(2405), + [aux_sym__val_number_token5] = ACTIONS(2405), + [aux_sym__val_number_token6] = ACTIONS(2405), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym__str_single_quotes] = ACTIONS(2407), + [sym__str_back_ticks] = ACTIONS(2407), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2407), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2407), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2407), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2407), }, - [721] = { - [sym_comment] = STATE(721), - [anon_sym_export] = ACTIONS(2296), - [anon_sym_alias] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2296), - [anon_sym_let_DASHenv] = ACTIONS(2296), - [anon_sym_mut] = ACTIONS(2296), - [anon_sym_const] = ACTIONS(2296), - [aux_sym_cmd_identifier_token1] = ACTIONS(2296), - [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(2296), - [aux_sym_cmd_identifier_token9] = ACTIONS(2296), - [aux_sym_cmd_identifier_token10] = ACTIONS(2298), - [aux_sym_cmd_identifier_token11] = ACTIONS(2298), - [aux_sym_cmd_identifier_token12] = ACTIONS(2296), - [aux_sym_cmd_identifier_token13] = ACTIONS(2296), - [aux_sym_cmd_identifier_token14] = ACTIONS(2296), - [aux_sym_cmd_identifier_token15] = ACTIONS(2296), - [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(2296), - [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(2296), - [aux_sym_cmd_identifier_token39] = ACTIONS(2298), - [aux_sym_cmd_identifier_token40] = ACTIONS(2298), - [anon_sym_def] = ACTIONS(2296), - [anon_sym_export_DASHenv] = ACTIONS(2296), - [anon_sym_extern] = ACTIONS(2296), - [anon_sym_module] = ACTIONS(2296), - [anon_sym_use] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_COMMA] = ACTIONS(2298), - [anon_sym_DOLLAR] = ACTIONS(2296), - [anon_sym_error] = ACTIONS(2296), - [anon_sym_DASH2] = ACTIONS(2296), - [anon_sym_break] = ACTIONS(2296), - [anon_sym_continue] = ACTIONS(2296), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_in2] = ACTIONS(2296), - [anon_sym_loop] = ACTIONS(2296), - [anon_sym_make] = ACTIONS(2296), - [anon_sym_while] = ACTIONS(2296), - [anon_sym_do] = ACTIONS(2296), - [anon_sym_if] = ACTIONS(2296), - [anon_sym_else] = ACTIONS(2296), - [anon_sym_match] = ACTIONS(2296), - [anon_sym_RBRACE] = ACTIONS(2298), - [anon_sym_try] = ACTIONS(2296), - [anon_sym_catch] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(2296), - [anon_sym_source] = ACTIONS(2296), - [anon_sym_source_DASHenv] = ACTIONS(2296), - [anon_sym_hide] = ACTIONS(2296), - [anon_sym_hide_DASHenv] = ACTIONS(2296), - [anon_sym_overlay] = ACTIONS(2296), - [anon_sym_as] = ACTIONS(2296), - [anon_sym_PLUS2] = ACTIONS(2296), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2298), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2298), - [aux_sym__val_number_decimal_token1] = ACTIONS(2296), - [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(2296), - [aux_sym__val_number_token5] = ACTIONS(2296), - [aux_sym__val_number_token6] = ACTIONS(2296), - [anon_sym_DQUOTE] = ACTIONS(2298), - [sym__str_single_quotes] = ACTIONS(2298), - [sym__str_back_ticks] = ACTIONS(2298), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2298), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2298), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2298), - [anon_sym_register] = ACTIONS(2296), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2298), - }, - [722] = { - [sym_comment] = STATE(722), - [anon_sym_export] = ACTIONS(1935), - [anon_sym_alias] = ACTIONS(1935), - [anon_sym_let] = ACTIONS(1935), - [anon_sym_let_DASHenv] = ACTIONS(1935), - [anon_sym_mut] = ACTIONS(1935), - [anon_sym_const] = ACTIONS(1935), - [aux_sym_cmd_identifier_token1] = ACTIONS(1935), - [aux_sym_cmd_identifier_token2] = ACTIONS(1937), - [aux_sym_cmd_identifier_token3] = ACTIONS(1937), - [aux_sym_cmd_identifier_token4] = ACTIONS(1937), - [aux_sym_cmd_identifier_token5] = ACTIONS(1937), - [aux_sym_cmd_identifier_token6] = ACTIONS(1937), - [aux_sym_cmd_identifier_token7] = ACTIONS(1937), - [aux_sym_cmd_identifier_token8] = ACTIONS(1935), - [aux_sym_cmd_identifier_token9] = ACTIONS(1935), - [aux_sym_cmd_identifier_token10] = ACTIONS(1937), - [aux_sym_cmd_identifier_token11] = ACTIONS(1937), - [aux_sym_cmd_identifier_token12] = ACTIONS(1935), - [aux_sym_cmd_identifier_token13] = ACTIONS(1935), - [aux_sym_cmd_identifier_token14] = ACTIONS(1935), - [aux_sym_cmd_identifier_token15] = ACTIONS(1935), - [aux_sym_cmd_identifier_token16] = ACTIONS(1937), - [aux_sym_cmd_identifier_token17] = ACTIONS(1937), - [aux_sym_cmd_identifier_token18] = ACTIONS(1937), - [aux_sym_cmd_identifier_token19] = ACTIONS(1937), - [aux_sym_cmd_identifier_token20] = ACTIONS(1937), - [aux_sym_cmd_identifier_token21] = ACTIONS(1937), - [aux_sym_cmd_identifier_token22] = ACTIONS(1937), - [aux_sym_cmd_identifier_token23] = ACTIONS(1937), - [aux_sym_cmd_identifier_token24] = ACTIONS(1937), - [aux_sym_cmd_identifier_token25] = ACTIONS(1937), - [aux_sym_cmd_identifier_token26] = ACTIONS(1937), - [aux_sym_cmd_identifier_token27] = ACTIONS(1937), - [aux_sym_cmd_identifier_token28] = ACTIONS(1937), - [aux_sym_cmd_identifier_token29] = ACTIONS(1937), - [aux_sym_cmd_identifier_token30] = ACTIONS(1937), - [aux_sym_cmd_identifier_token31] = ACTIONS(1937), - [aux_sym_cmd_identifier_token32] = ACTIONS(1937), - [aux_sym_cmd_identifier_token33] = ACTIONS(1937), - [aux_sym_cmd_identifier_token34] = ACTIONS(1935), - [aux_sym_cmd_identifier_token35] = ACTIONS(1937), - [aux_sym_cmd_identifier_token36] = ACTIONS(1937), - [aux_sym_cmd_identifier_token37] = ACTIONS(1937), - [aux_sym_cmd_identifier_token38] = ACTIONS(1935), - [aux_sym_cmd_identifier_token39] = ACTIONS(1937), - [aux_sym_cmd_identifier_token40] = ACTIONS(1937), - [anon_sym_def] = ACTIONS(1935), - [anon_sym_export_DASHenv] = ACTIONS(1935), - [anon_sym_extern] = ACTIONS(1935), - [anon_sym_module] = ACTIONS(1935), - [anon_sym_use] = ACTIONS(1935), - [anon_sym_LPAREN] = ACTIONS(1937), - [anon_sym_COMMA] = ACTIONS(1937), - [anon_sym_DOLLAR] = ACTIONS(1935), - [anon_sym_error] = ACTIONS(1935), - [anon_sym_DASH2] = ACTIONS(1935), - [anon_sym_break] = ACTIONS(1935), - [anon_sym_continue] = ACTIONS(1935), - [anon_sym_for] = ACTIONS(1935), - [anon_sym_in2] = ACTIONS(1935), - [anon_sym_loop] = ACTIONS(1935), - [anon_sym_make] = ACTIONS(1935), - [anon_sym_while] = ACTIONS(1935), - [anon_sym_do] = ACTIONS(1935), - [anon_sym_if] = ACTIONS(1935), - [anon_sym_else] = ACTIONS(1935), - [anon_sym_match] = ACTIONS(1935), - [anon_sym_RBRACE] = ACTIONS(1937), - [anon_sym_try] = ACTIONS(1935), - [anon_sym_catch] = ACTIONS(1935), - [anon_sym_return] = ACTIONS(1935), - [anon_sym_source] = ACTIONS(1935), - [anon_sym_source_DASHenv] = ACTIONS(1935), - [anon_sym_hide] = ACTIONS(1935), - [anon_sym_hide_DASHenv] = ACTIONS(1935), - [anon_sym_overlay] = ACTIONS(1935), - [anon_sym_as] = ACTIONS(1935), - [anon_sym_PLUS2] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1937), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1937), - [aux_sym__val_number_decimal_token4] = ACTIONS(1937), - [aux_sym__val_number_token1] = ACTIONS(1937), - [aux_sym__val_number_token2] = ACTIONS(1937), - [aux_sym__val_number_token3] = ACTIONS(1937), - [aux_sym__val_number_token4] = ACTIONS(1935), - [aux_sym__val_number_token5] = ACTIONS(1935), - [aux_sym__val_number_token6] = ACTIONS(1935), - [anon_sym_DQUOTE] = ACTIONS(1937), - [sym__str_single_quotes] = ACTIONS(1937), - [sym__str_back_ticks] = ACTIONS(1937), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1937), - [anon_sym_register] = ACTIONS(1935), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1937), - }, - [723] = { - [sym_comment] = STATE(723), - [anon_sym_export] = ACTIONS(2461), - [anon_sym_alias] = ACTIONS(2461), - [anon_sym_let] = ACTIONS(2461), - [anon_sym_let_DASHenv] = ACTIONS(2461), - [anon_sym_mut] = ACTIONS(2461), - [anon_sym_const] = ACTIONS(2461), - [aux_sym_cmd_identifier_token1] = ACTIONS(2461), - [aux_sym_cmd_identifier_token2] = ACTIONS(2463), - [aux_sym_cmd_identifier_token3] = ACTIONS(2463), - [aux_sym_cmd_identifier_token4] = ACTIONS(2463), - [aux_sym_cmd_identifier_token5] = ACTIONS(2463), - [aux_sym_cmd_identifier_token6] = ACTIONS(2463), - [aux_sym_cmd_identifier_token7] = ACTIONS(2463), - [aux_sym_cmd_identifier_token8] = ACTIONS(2461), - [aux_sym_cmd_identifier_token9] = ACTIONS(2461), - [aux_sym_cmd_identifier_token10] = ACTIONS(2463), - [aux_sym_cmd_identifier_token11] = ACTIONS(2463), - [aux_sym_cmd_identifier_token12] = ACTIONS(2461), - [aux_sym_cmd_identifier_token13] = ACTIONS(2461), - [aux_sym_cmd_identifier_token14] = ACTIONS(2461), - [aux_sym_cmd_identifier_token15] = ACTIONS(2461), - [aux_sym_cmd_identifier_token16] = ACTIONS(2463), - [aux_sym_cmd_identifier_token17] = ACTIONS(2463), - [aux_sym_cmd_identifier_token18] = ACTIONS(2463), - [aux_sym_cmd_identifier_token19] = ACTIONS(2463), - [aux_sym_cmd_identifier_token20] = ACTIONS(2463), - [aux_sym_cmd_identifier_token21] = ACTIONS(2463), - [aux_sym_cmd_identifier_token22] = ACTIONS(2463), - [aux_sym_cmd_identifier_token23] = ACTIONS(2463), - [aux_sym_cmd_identifier_token24] = ACTIONS(2463), - [aux_sym_cmd_identifier_token25] = ACTIONS(2463), - [aux_sym_cmd_identifier_token26] = ACTIONS(2463), - [aux_sym_cmd_identifier_token27] = ACTIONS(2463), - [aux_sym_cmd_identifier_token28] = ACTIONS(2463), - [aux_sym_cmd_identifier_token29] = ACTIONS(2463), - [aux_sym_cmd_identifier_token30] = ACTIONS(2463), - [aux_sym_cmd_identifier_token31] = ACTIONS(2463), - [aux_sym_cmd_identifier_token32] = ACTIONS(2463), - [aux_sym_cmd_identifier_token33] = ACTIONS(2463), - [aux_sym_cmd_identifier_token34] = ACTIONS(2461), - [aux_sym_cmd_identifier_token35] = ACTIONS(2463), - [aux_sym_cmd_identifier_token36] = ACTIONS(2463), - [aux_sym_cmd_identifier_token37] = ACTIONS(2463), - [aux_sym_cmd_identifier_token38] = ACTIONS(2461), - [aux_sym_cmd_identifier_token39] = ACTIONS(2463), - [aux_sym_cmd_identifier_token40] = ACTIONS(2463), - [anon_sym_def] = ACTIONS(2461), - [anon_sym_export_DASHenv] = ACTIONS(2461), - [anon_sym_extern] = ACTIONS(2461), - [anon_sym_module] = ACTIONS(2461), - [anon_sym_use] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2463), - [anon_sym_COMMA] = ACTIONS(2463), - [anon_sym_DOLLAR] = ACTIONS(2461), - [anon_sym_error] = ACTIONS(2461), - [anon_sym_DASH2] = ACTIONS(2461), - [anon_sym_break] = ACTIONS(2461), - [anon_sym_continue] = ACTIONS(2461), - [anon_sym_for] = ACTIONS(2461), - [anon_sym_in2] = ACTIONS(2461), - [anon_sym_loop] = ACTIONS(2461), - [anon_sym_make] = ACTIONS(2461), - [anon_sym_while] = ACTIONS(2461), - [anon_sym_do] = ACTIONS(2461), - [anon_sym_if] = ACTIONS(2461), - [anon_sym_else] = ACTIONS(2461), - [anon_sym_match] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2463), - [anon_sym_try] = ACTIONS(2461), - [anon_sym_catch] = ACTIONS(2461), - [anon_sym_return] = ACTIONS(2461), - [anon_sym_source] = ACTIONS(2461), - [anon_sym_source_DASHenv] = ACTIONS(2461), - [anon_sym_hide] = ACTIONS(2461), - [anon_sym_hide_DASHenv] = ACTIONS(2461), - [anon_sym_overlay] = ACTIONS(2461), - [anon_sym_as] = ACTIONS(2461), - [anon_sym_PLUS2] = ACTIONS(2461), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2463), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2463), - [aux_sym__val_number_decimal_token1] = ACTIONS(2461), - [aux_sym__val_number_decimal_token2] = ACTIONS(2463), - [aux_sym__val_number_decimal_token3] = ACTIONS(2463), - [aux_sym__val_number_decimal_token4] = ACTIONS(2463), - [aux_sym__val_number_token1] = ACTIONS(2463), - [aux_sym__val_number_token2] = ACTIONS(2463), - [aux_sym__val_number_token3] = ACTIONS(2463), - [aux_sym__val_number_token4] = ACTIONS(2461), - [aux_sym__val_number_token5] = ACTIONS(2461), - [aux_sym__val_number_token6] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2463), - [sym__str_single_quotes] = ACTIONS(2463), - [sym__str_back_ticks] = ACTIONS(2463), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2463), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2463), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2463), - [anon_sym_register] = ACTIONS(2461), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2463), + [681] = { + [sym_comment] = STATE(681), + [anon_sym_export] = ACTIONS(2409), + [anon_sym_alias] = ACTIONS(2409), + [anon_sym_let] = ACTIONS(2409), + [anon_sym_let_DASHenv] = ACTIONS(2409), + [anon_sym_mut] = ACTIONS(2409), + [anon_sym_const] = ACTIONS(2409), + [aux_sym_cmd_identifier_token1] = ACTIONS(2409), + [aux_sym_cmd_identifier_token2] = ACTIONS(2411), + [aux_sym_cmd_identifier_token3] = ACTIONS(2411), + [aux_sym_cmd_identifier_token4] = ACTIONS(2411), + [aux_sym_cmd_identifier_token5] = ACTIONS(2411), + [aux_sym_cmd_identifier_token6] = ACTIONS(2411), + [aux_sym_cmd_identifier_token7] = ACTIONS(2411), + [aux_sym_cmd_identifier_token8] = ACTIONS(2409), + [aux_sym_cmd_identifier_token9] = ACTIONS(2409), + [aux_sym_cmd_identifier_token10] = ACTIONS(2411), + [aux_sym_cmd_identifier_token11] = ACTIONS(2411), + [aux_sym_cmd_identifier_token12] = ACTIONS(2409), + [aux_sym_cmd_identifier_token13] = ACTIONS(2409), + [aux_sym_cmd_identifier_token14] = ACTIONS(2409), + [aux_sym_cmd_identifier_token15] = ACTIONS(2409), + [aux_sym_cmd_identifier_token16] = ACTIONS(2411), + [aux_sym_cmd_identifier_token17] = ACTIONS(2411), + [aux_sym_cmd_identifier_token18] = ACTIONS(2411), + [aux_sym_cmd_identifier_token19] = ACTIONS(2411), + [aux_sym_cmd_identifier_token20] = ACTIONS(2411), + [aux_sym_cmd_identifier_token21] = ACTIONS(2411), + [aux_sym_cmd_identifier_token22] = ACTIONS(2411), + [aux_sym_cmd_identifier_token23] = ACTIONS(2411), + [aux_sym_cmd_identifier_token24] = ACTIONS(2411), + [aux_sym_cmd_identifier_token25] = ACTIONS(2411), + [aux_sym_cmd_identifier_token26] = ACTIONS(2411), + [aux_sym_cmd_identifier_token27] = ACTIONS(2411), + [aux_sym_cmd_identifier_token28] = ACTIONS(2411), + [aux_sym_cmd_identifier_token29] = ACTIONS(2411), + [aux_sym_cmd_identifier_token30] = ACTIONS(2411), + [aux_sym_cmd_identifier_token31] = ACTIONS(2411), + [aux_sym_cmd_identifier_token32] = ACTIONS(2411), + [aux_sym_cmd_identifier_token33] = ACTIONS(2411), + [aux_sym_cmd_identifier_token34] = ACTIONS(2409), + [aux_sym_cmd_identifier_token35] = ACTIONS(2411), + [aux_sym_cmd_identifier_token36] = ACTIONS(2411), + [aux_sym_cmd_identifier_token37] = ACTIONS(2411), + [aux_sym_cmd_identifier_token38] = ACTIONS(2409), + [aux_sym_cmd_identifier_token39] = ACTIONS(2411), + [aux_sym_cmd_identifier_token40] = ACTIONS(2411), + [anon_sym_def] = ACTIONS(2409), + [anon_sym_export_DASHenv] = ACTIONS(2409), + [anon_sym_extern] = ACTIONS(2409), + [anon_sym_module] = ACTIONS(2409), + [anon_sym_use] = ACTIONS(2409), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_COMMA] = ACTIONS(2411), + [anon_sym_DOLLAR] = ACTIONS(2409), + [anon_sym_error] = ACTIONS(2409), + [anon_sym_DASH2] = ACTIONS(2409), + [anon_sym_break] = ACTIONS(2409), + [anon_sym_continue] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(2409), + [anon_sym_in2] = ACTIONS(2409), + [anon_sym_loop] = ACTIONS(2409), + [anon_sym_make] = ACTIONS(2409), + [anon_sym_while] = ACTIONS(2409), + [anon_sym_do] = ACTIONS(2409), + [anon_sym_if] = ACTIONS(2409), + [anon_sym_else] = ACTIONS(2409), + [anon_sym_match] = ACTIONS(2409), + [anon_sym_RBRACE] = ACTIONS(2411), + [anon_sym_try] = ACTIONS(2409), + [anon_sym_catch] = ACTIONS(2409), + [anon_sym_return] = ACTIONS(2409), + [anon_sym_source] = ACTIONS(2409), + [anon_sym_source_DASHenv] = ACTIONS(2409), + [anon_sym_hide] = ACTIONS(2409), + [anon_sym_hide_DASHenv] = ACTIONS(2409), + [anon_sym_overlay] = ACTIONS(2409), + [anon_sym_as] = ACTIONS(2409), + [anon_sym_PLUS2] = ACTIONS(2409), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2411), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2411), + [aux_sym__val_number_decimal_token1] = ACTIONS(2409), + [aux_sym__val_number_decimal_token2] = ACTIONS(2411), + [aux_sym__val_number_decimal_token3] = ACTIONS(2411), + [aux_sym__val_number_decimal_token4] = ACTIONS(2411), + [aux_sym__val_number_token1] = ACTIONS(2411), + [aux_sym__val_number_token2] = ACTIONS(2411), + [aux_sym__val_number_token3] = ACTIONS(2411), + [aux_sym__val_number_token4] = ACTIONS(2409), + [aux_sym__val_number_token5] = ACTIONS(2409), + [aux_sym__val_number_token6] = ACTIONS(2409), + [anon_sym_DQUOTE] = ACTIONS(2411), + [sym__str_single_quotes] = ACTIONS(2411), + [sym__str_back_ticks] = ACTIONS(2411), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2411), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2411), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2411), + [anon_sym_register] = ACTIONS(2409), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2411), }, - [724] = { - [sym_comment] = STATE(724), - [anon_sym_export] = ACTIONS(2465), - [anon_sym_alias] = ACTIONS(2465), - [anon_sym_let] = ACTIONS(2465), - [anon_sym_let_DASHenv] = ACTIONS(2465), - [anon_sym_mut] = ACTIONS(2465), - [anon_sym_const] = ACTIONS(2465), - [aux_sym_cmd_identifier_token1] = ACTIONS(2465), - [aux_sym_cmd_identifier_token2] = ACTIONS(2467), - [aux_sym_cmd_identifier_token3] = ACTIONS(2467), - [aux_sym_cmd_identifier_token4] = ACTIONS(2467), - [aux_sym_cmd_identifier_token5] = ACTIONS(2467), - [aux_sym_cmd_identifier_token6] = ACTIONS(2467), - [aux_sym_cmd_identifier_token7] = ACTIONS(2467), - [aux_sym_cmd_identifier_token8] = ACTIONS(2465), - [aux_sym_cmd_identifier_token9] = ACTIONS(2465), - [aux_sym_cmd_identifier_token10] = ACTIONS(2467), - [aux_sym_cmd_identifier_token11] = ACTIONS(2467), - [aux_sym_cmd_identifier_token12] = ACTIONS(2465), - [aux_sym_cmd_identifier_token13] = ACTIONS(2465), - [aux_sym_cmd_identifier_token14] = ACTIONS(2465), - [aux_sym_cmd_identifier_token15] = ACTIONS(2465), - [aux_sym_cmd_identifier_token16] = ACTIONS(2467), - [aux_sym_cmd_identifier_token17] = ACTIONS(2467), - [aux_sym_cmd_identifier_token18] = ACTIONS(2467), - [aux_sym_cmd_identifier_token19] = ACTIONS(2467), - [aux_sym_cmd_identifier_token20] = ACTIONS(2467), - [aux_sym_cmd_identifier_token21] = ACTIONS(2467), - [aux_sym_cmd_identifier_token22] = ACTIONS(2467), - [aux_sym_cmd_identifier_token23] = ACTIONS(2467), - [aux_sym_cmd_identifier_token24] = ACTIONS(2467), - [aux_sym_cmd_identifier_token25] = ACTIONS(2467), - [aux_sym_cmd_identifier_token26] = ACTIONS(2467), - [aux_sym_cmd_identifier_token27] = ACTIONS(2467), - [aux_sym_cmd_identifier_token28] = ACTIONS(2467), - [aux_sym_cmd_identifier_token29] = ACTIONS(2467), - [aux_sym_cmd_identifier_token30] = ACTIONS(2467), - [aux_sym_cmd_identifier_token31] = ACTIONS(2467), - [aux_sym_cmd_identifier_token32] = ACTIONS(2467), - [aux_sym_cmd_identifier_token33] = ACTIONS(2467), - [aux_sym_cmd_identifier_token34] = ACTIONS(2465), - [aux_sym_cmd_identifier_token35] = ACTIONS(2467), - [aux_sym_cmd_identifier_token36] = ACTIONS(2467), - [aux_sym_cmd_identifier_token37] = ACTIONS(2467), - [aux_sym_cmd_identifier_token38] = ACTIONS(2465), - [aux_sym_cmd_identifier_token39] = ACTIONS(2467), - [aux_sym_cmd_identifier_token40] = ACTIONS(2467), - [anon_sym_def] = ACTIONS(2465), - [anon_sym_export_DASHenv] = ACTIONS(2465), - [anon_sym_extern] = ACTIONS(2465), - [anon_sym_module] = ACTIONS(2465), - [anon_sym_use] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2467), - [anon_sym_COMMA] = ACTIONS(2467), - [anon_sym_DOLLAR] = ACTIONS(2465), - [anon_sym_error] = ACTIONS(2465), - [anon_sym_DASH2] = ACTIONS(2465), - [anon_sym_break] = ACTIONS(2465), - [anon_sym_continue] = ACTIONS(2465), - [anon_sym_for] = ACTIONS(2465), - [anon_sym_in2] = ACTIONS(2465), - [anon_sym_loop] = ACTIONS(2465), - [anon_sym_make] = ACTIONS(2465), - [anon_sym_while] = ACTIONS(2465), - [anon_sym_do] = ACTIONS(2465), - [anon_sym_if] = ACTIONS(2465), - [anon_sym_else] = ACTIONS(2465), - [anon_sym_match] = ACTIONS(2465), - [anon_sym_RBRACE] = ACTIONS(2467), - [anon_sym_try] = ACTIONS(2465), - [anon_sym_catch] = ACTIONS(2465), - [anon_sym_return] = ACTIONS(2465), - [anon_sym_source] = ACTIONS(2465), - [anon_sym_source_DASHenv] = ACTIONS(2465), - [anon_sym_hide] = ACTIONS(2465), - [anon_sym_hide_DASHenv] = ACTIONS(2465), - [anon_sym_overlay] = ACTIONS(2465), - [anon_sym_as] = ACTIONS(2465), - [anon_sym_PLUS2] = ACTIONS(2465), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2467), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2467), - [aux_sym__val_number_decimal_token1] = ACTIONS(2465), - [aux_sym__val_number_decimal_token2] = ACTIONS(2467), - [aux_sym__val_number_decimal_token3] = ACTIONS(2467), - [aux_sym__val_number_decimal_token4] = ACTIONS(2467), - [aux_sym__val_number_token1] = ACTIONS(2467), - [aux_sym__val_number_token2] = ACTIONS(2467), - [aux_sym__val_number_token3] = ACTIONS(2467), - [aux_sym__val_number_token4] = ACTIONS(2465), - [aux_sym__val_number_token5] = ACTIONS(2465), - [aux_sym__val_number_token6] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(2467), - [sym__str_single_quotes] = ACTIONS(2467), - [sym__str_back_ticks] = ACTIONS(2467), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2467), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2467), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2467), - [anon_sym_register] = ACTIONS(2465), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2467), + [682] = { + [sym_comment] = STATE(682), + [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_COMMA] = ACTIONS(1869), + [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(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_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_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_DOLLAR_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1869), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1869), + [anon_sym_register] = ACTIONS(1867), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1869), }, - [725] = { - [sym_comment] = STATE(725), - [anon_sym_export] = ACTIONS(2469), - [anon_sym_alias] = ACTIONS(2469), - [anon_sym_let] = ACTIONS(2469), - [anon_sym_let_DASHenv] = ACTIONS(2469), - [anon_sym_mut] = ACTIONS(2469), - [anon_sym_const] = ACTIONS(2469), - [aux_sym_cmd_identifier_token1] = ACTIONS(2469), - [aux_sym_cmd_identifier_token2] = ACTIONS(2471), - [aux_sym_cmd_identifier_token3] = ACTIONS(2471), - [aux_sym_cmd_identifier_token4] = ACTIONS(2471), - [aux_sym_cmd_identifier_token5] = ACTIONS(2471), - [aux_sym_cmd_identifier_token6] = ACTIONS(2471), - [aux_sym_cmd_identifier_token7] = ACTIONS(2471), - [aux_sym_cmd_identifier_token8] = ACTIONS(2469), - [aux_sym_cmd_identifier_token9] = ACTIONS(2469), - [aux_sym_cmd_identifier_token10] = ACTIONS(2471), - [aux_sym_cmd_identifier_token11] = ACTIONS(2471), - [aux_sym_cmd_identifier_token12] = ACTIONS(2469), - [aux_sym_cmd_identifier_token13] = ACTIONS(2469), - [aux_sym_cmd_identifier_token14] = ACTIONS(2469), - [aux_sym_cmd_identifier_token15] = ACTIONS(2469), - [aux_sym_cmd_identifier_token16] = ACTIONS(2471), - [aux_sym_cmd_identifier_token17] = ACTIONS(2471), - [aux_sym_cmd_identifier_token18] = ACTIONS(2471), - [aux_sym_cmd_identifier_token19] = ACTIONS(2471), - [aux_sym_cmd_identifier_token20] = ACTIONS(2471), - [aux_sym_cmd_identifier_token21] = ACTIONS(2471), - [aux_sym_cmd_identifier_token22] = ACTIONS(2471), - [aux_sym_cmd_identifier_token23] = ACTIONS(2471), - [aux_sym_cmd_identifier_token24] = ACTIONS(2471), - [aux_sym_cmd_identifier_token25] = ACTIONS(2471), - [aux_sym_cmd_identifier_token26] = ACTIONS(2471), - [aux_sym_cmd_identifier_token27] = ACTIONS(2471), - [aux_sym_cmd_identifier_token28] = ACTIONS(2471), - [aux_sym_cmd_identifier_token29] = ACTIONS(2471), - [aux_sym_cmd_identifier_token30] = ACTIONS(2471), - [aux_sym_cmd_identifier_token31] = ACTIONS(2471), - [aux_sym_cmd_identifier_token32] = ACTIONS(2471), - [aux_sym_cmd_identifier_token33] = ACTIONS(2471), - [aux_sym_cmd_identifier_token34] = ACTIONS(2469), - [aux_sym_cmd_identifier_token35] = ACTIONS(2471), - [aux_sym_cmd_identifier_token36] = ACTIONS(2471), - [aux_sym_cmd_identifier_token37] = ACTIONS(2471), - [aux_sym_cmd_identifier_token38] = ACTIONS(2469), - [aux_sym_cmd_identifier_token39] = ACTIONS(2471), - [aux_sym_cmd_identifier_token40] = ACTIONS(2471), - [anon_sym_def] = ACTIONS(2469), - [anon_sym_export_DASHenv] = ACTIONS(2469), - [anon_sym_extern] = ACTIONS(2469), - [anon_sym_module] = ACTIONS(2469), - [anon_sym_use] = ACTIONS(2469), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_COMMA] = ACTIONS(2471), - [anon_sym_DOLLAR] = ACTIONS(2469), - [anon_sym_error] = ACTIONS(2469), - [anon_sym_DASH2] = ACTIONS(2469), - [anon_sym_break] = ACTIONS(2469), - [anon_sym_continue] = ACTIONS(2469), - [anon_sym_for] = ACTIONS(2469), - [anon_sym_in2] = ACTIONS(2469), - [anon_sym_loop] = ACTIONS(2469), - [anon_sym_make] = ACTIONS(2469), - [anon_sym_while] = ACTIONS(2469), - [anon_sym_do] = ACTIONS(2469), - [anon_sym_if] = ACTIONS(2469), - [anon_sym_else] = ACTIONS(2469), - [anon_sym_match] = ACTIONS(2469), - [anon_sym_RBRACE] = ACTIONS(2471), - [anon_sym_try] = ACTIONS(2469), - [anon_sym_catch] = ACTIONS(2469), - [anon_sym_return] = ACTIONS(2469), - [anon_sym_source] = ACTIONS(2469), - [anon_sym_source_DASHenv] = ACTIONS(2469), - [anon_sym_hide] = ACTIONS(2469), - [anon_sym_hide_DASHenv] = ACTIONS(2469), - [anon_sym_overlay] = ACTIONS(2469), - [anon_sym_as] = ACTIONS(2469), - [anon_sym_PLUS2] = ACTIONS(2469), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2471), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2471), - [aux_sym__val_number_decimal_token1] = ACTIONS(2469), - [aux_sym__val_number_decimal_token2] = ACTIONS(2471), - [aux_sym__val_number_decimal_token3] = ACTIONS(2471), - [aux_sym__val_number_decimal_token4] = ACTIONS(2471), - [aux_sym__val_number_token1] = ACTIONS(2471), - [aux_sym__val_number_token2] = ACTIONS(2471), - [aux_sym__val_number_token3] = ACTIONS(2471), - [aux_sym__val_number_token4] = ACTIONS(2469), - [aux_sym__val_number_token5] = ACTIONS(2469), - [aux_sym__val_number_token6] = ACTIONS(2469), - [anon_sym_DQUOTE] = ACTIONS(2471), - [sym__str_single_quotes] = ACTIONS(2471), - [sym__str_back_ticks] = ACTIONS(2471), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2471), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2471), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2471), - [anon_sym_register] = ACTIONS(2469), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2471), + [683] = { + [sym_comment] = STATE(683), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_alias] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_let_DASHenv] = ACTIONS(2370), + [anon_sym_mut] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [aux_sym_cmd_identifier_token1] = ACTIONS(2370), + [aux_sym_cmd_identifier_token2] = ACTIONS(2372), + [aux_sym_cmd_identifier_token3] = ACTIONS(2372), + [aux_sym_cmd_identifier_token4] = ACTIONS(2372), + [aux_sym_cmd_identifier_token5] = ACTIONS(2372), + [aux_sym_cmd_identifier_token6] = ACTIONS(2372), + [aux_sym_cmd_identifier_token7] = ACTIONS(2372), + [aux_sym_cmd_identifier_token8] = ACTIONS(2370), + [aux_sym_cmd_identifier_token9] = ACTIONS(2370), + [aux_sym_cmd_identifier_token10] = ACTIONS(2372), + [aux_sym_cmd_identifier_token11] = ACTIONS(2372), + [aux_sym_cmd_identifier_token12] = ACTIONS(2370), + [aux_sym_cmd_identifier_token13] = ACTIONS(2370), + [aux_sym_cmd_identifier_token14] = ACTIONS(2370), + [aux_sym_cmd_identifier_token15] = ACTIONS(2370), + [aux_sym_cmd_identifier_token16] = ACTIONS(2372), + [aux_sym_cmd_identifier_token17] = ACTIONS(2372), + [aux_sym_cmd_identifier_token18] = ACTIONS(2372), + [aux_sym_cmd_identifier_token19] = ACTIONS(2372), + [aux_sym_cmd_identifier_token20] = ACTIONS(2372), + [aux_sym_cmd_identifier_token21] = ACTIONS(2372), + [aux_sym_cmd_identifier_token22] = ACTIONS(2372), + [aux_sym_cmd_identifier_token23] = ACTIONS(2372), + [aux_sym_cmd_identifier_token24] = ACTIONS(2372), + [aux_sym_cmd_identifier_token25] = ACTIONS(2372), + [aux_sym_cmd_identifier_token26] = ACTIONS(2372), + [aux_sym_cmd_identifier_token27] = ACTIONS(2372), + [aux_sym_cmd_identifier_token28] = ACTIONS(2372), + [aux_sym_cmd_identifier_token29] = ACTIONS(2372), + [aux_sym_cmd_identifier_token30] = ACTIONS(2372), + [aux_sym_cmd_identifier_token31] = ACTIONS(2372), + [aux_sym_cmd_identifier_token32] = ACTIONS(2372), + [aux_sym_cmd_identifier_token33] = ACTIONS(2372), + [aux_sym_cmd_identifier_token34] = ACTIONS(2370), + [aux_sym_cmd_identifier_token35] = ACTIONS(2372), + [aux_sym_cmd_identifier_token36] = ACTIONS(2372), + [aux_sym_cmd_identifier_token37] = ACTIONS(2372), + [aux_sym_cmd_identifier_token38] = ACTIONS(2370), + [aux_sym_cmd_identifier_token39] = ACTIONS(2372), + [aux_sym_cmd_identifier_token40] = ACTIONS(2372), + [anon_sym_def] = ACTIONS(2370), + [anon_sym_export_DASHenv] = ACTIONS(2370), + [anon_sym_extern] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_use] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2372), + [anon_sym_COMMA] = ACTIONS(2372), + [anon_sym_DOLLAR] = ACTIONS(2370), + [anon_sym_error] = ACTIONS(2370), + [anon_sym_DASH2] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_in2] = ACTIONS(2370), + [anon_sym_loop] = ACTIONS(2370), + [anon_sym_make] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_else] = ACTIONS(2370), + [anon_sym_match] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2372), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_catch] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_source] = ACTIONS(2370), + [anon_sym_source_DASHenv] = ACTIONS(2370), + [anon_sym_hide] = ACTIONS(2370), + [anon_sym_hide_DASHenv] = ACTIONS(2370), + [anon_sym_overlay] = ACTIONS(2370), + [anon_sym_as] = ACTIONS(2370), + [anon_sym_PLUS2] = ACTIONS(2370), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2372), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2372), + [aux_sym__val_number_decimal_token1] = ACTIONS(2370), + [aux_sym__val_number_decimal_token2] = ACTIONS(2372), + [aux_sym__val_number_decimal_token3] = ACTIONS(2372), + [aux_sym__val_number_decimal_token4] = ACTIONS(2372), + [aux_sym__val_number_token1] = ACTIONS(2372), + [aux_sym__val_number_token2] = ACTIONS(2372), + [aux_sym__val_number_token3] = ACTIONS(2372), + [aux_sym__val_number_token4] = ACTIONS(2370), + [aux_sym__val_number_token5] = ACTIONS(2370), + [aux_sym__val_number_token6] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2372), + [sym__str_single_quotes] = ACTIONS(2372), + [sym__str_back_ticks] = ACTIONS(2372), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2372), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2372), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2372), + [anon_sym_register] = ACTIONS(2370), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2372), }, - [726] = { - [sym_comment] = STATE(726), - [anon_sym_export] = ACTIONS(2469), - [anon_sym_alias] = ACTIONS(2469), - [anon_sym_let] = ACTIONS(2469), - [anon_sym_let_DASHenv] = ACTIONS(2469), - [anon_sym_mut] = ACTIONS(2469), - [anon_sym_const] = ACTIONS(2469), - [aux_sym_cmd_identifier_token1] = ACTIONS(2469), - [aux_sym_cmd_identifier_token2] = ACTIONS(2471), - [aux_sym_cmd_identifier_token3] = ACTIONS(2471), - [aux_sym_cmd_identifier_token4] = ACTIONS(2471), - [aux_sym_cmd_identifier_token5] = ACTIONS(2471), - [aux_sym_cmd_identifier_token6] = ACTIONS(2471), - [aux_sym_cmd_identifier_token7] = ACTIONS(2471), - [aux_sym_cmd_identifier_token8] = ACTIONS(2469), - [aux_sym_cmd_identifier_token9] = ACTIONS(2469), - [aux_sym_cmd_identifier_token10] = ACTIONS(2471), - [aux_sym_cmd_identifier_token11] = ACTIONS(2471), - [aux_sym_cmd_identifier_token12] = ACTIONS(2469), - [aux_sym_cmd_identifier_token13] = ACTIONS(2469), - [aux_sym_cmd_identifier_token14] = ACTIONS(2469), - [aux_sym_cmd_identifier_token15] = ACTIONS(2469), - [aux_sym_cmd_identifier_token16] = ACTIONS(2471), - [aux_sym_cmd_identifier_token17] = ACTIONS(2471), - [aux_sym_cmd_identifier_token18] = ACTIONS(2471), - [aux_sym_cmd_identifier_token19] = ACTIONS(2471), - [aux_sym_cmd_identifier_token20] = ACTIONS(2471), - [aux_sym_cmd_identifier_token21] = ACTIONS(2471), - [aux_sym_cmd_identifier_token22] = ACTIONS(2471), - [aux_sym_cmd_identifier_token23] = ACTIONS(2471), - [aux_sym_cmd_identifier_token24] = ACTIONS(2471), - [aux_sym_cmd_identifier_token25] = ACTIONS(2471), - [aux_sym_cmd_identifier_token26] = ACTIONS(2471), - [aux_sym_cmd_identifier_token27] = ACTIONS(2471), - [aux_sym_cmd_identifier_token28] = ACTIONS(2471), - [aux_sym_cmd_identifier_token29] = ACTIONS(2471), - [aux_sym_cmd_identifier_token30] = ACTIONS(2471), - [aux_sym_cmd_identifier_token31] = ACTIONS(2471), - [aux_sym_cmd_identifier_token32] = ACTIONS(2471), - [aux_sym_cmd_identifier_token33] = ACTIONS(2471), - [aux_sym_cmd_identifier_token34] = ACTIONS(2469), - [aux_sym_cmd_identifier_token35] = ACTIONS(2471), - [aux_sym_cmd_identifier_token36] = ACTIONS(2471), - [aux_sym_cmd_identifier_token37] = ACTIONS(2471), - [aux_sym_cmd_identifier_token38] = ACTIONS(2469), - [aux_sym_cmd_identifier_token39] = ACTIONS(2471), - [aux_sym_cmd_identifier_token40] = ACTIONS(2471), - [anon_sym_def] = ACTIONS(2469), - [anon_sym_export_DASHenv] = ACTIONS(2469), - [anon_sym_extern] = ACTIONS(2469), - [anon_sym_module] = ACTIONS(2469), - [anon_sym_use] = ACTIONS(2469), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_COMMA] = ACTIONS(2471), - [anon_sym_DOLLAR] = ACTIONS(2469), - [anon_sym_error] = ACTIONS(2469), - [anon_sym_DASH2] = ACTIONS(2469), - [anon_sym_break] = ACTIONS(2469), - [anon_sym_continue] = ACTIONS(2469), - [anon_sym_for] = ACTIONS(2469), - [anon_sym_in2] = ACTIONS(2469), - [anon_sym_loop] = ACTIONS(2469), - [anon_sym_make] = ACTIONS(2469), - [anon_sym_while] = ACTIONS(2469), - [anon_sym_do] = ACTIONS(2469), - [anon_sym_if] = ACTIONS(2469), - [anon_sym_else] = ACTIONS(2469), - [anon_sym_match] = ACTIONS(2469), - [anon_sym_RBRACE] = ACTIONS(2471), - [anon_sym_try] = ACTIONS(2469), - [anon_sym_catch] = ACTIONS(2469), - [anon_sym_return] = ACTIONS(2469), - [anon_sym_source] = ACTIONS(2469), - [anon_sym_source_DASHenv] = ACTIONS(2469), - [anon_sym_hide] = ACTIONS(2469), - [anon_sym_hide_DASHenv] = ACTIONS(2469), - [anon_sym_overlay] = ACTIONS(2469), - [anon_sym_as] = ACTIONS(2469), - [anon_sym_PLUS2] = ACTIONS(2469), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2471), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2471), - [aux_sym__val_number_decimal_token1] = ACTIONS(2469), - [aux_sym__val_number_decimal_token2] = ACTIONS(2471), - [aux_sym__val_number_decimal_token3] = ACTIONS(2471), - [aux_sym__val_number_decimal_token4] = ACTIONS(2471), - [aux_sym__val_number_token1] = ACTIONS(2471), - [aux_sym__val_number_token2] = ACTIONS(2471), - [aux_sym__val_number_token3] = ACTIONS(2471), - [aux_sym__val_number_token4] = ACTIONS(2469), - [aux_sym__val_number_token5] = ACTIONS(2469), - [aux_sym__val_number_token6] = ACTIONS(2469), - [anon_sym_DQUOTE] = ACTIONS(2471), - [sym__str_single_quotes] = ACTIONS(2471), - [sym__str_back_ticks] = ACTIONS(2471), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2471), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2471), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2471), - [anon_sym_register] = ACTIONS(2469), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2471), + [684] = { + [sym_comment] = STATE(684), + [anon_sym_export] = ACTIONS(2374), + [anon_sym_alias] = ACTIONS(2374), + [anon_sym_let] = ACTIONS(2374), + [anon_sym_let_DASHenv] = ACTIONS(2374), + [anon_sym_mut] = ACTIONS(2374), + [anon_sym_const] = ACTIONS(2374), + [aux_sym_cmd_identifier_token1] = ACTIONS(2374), + [aux_sym_cmd_identifier_token2] = ACTIONS(2376), + [aux_sym_cmd_identifier_token3] = ACTIONS(2376), + [aux_sym_cmd_identifier_token4] = ACTIONS(2376), + [aux_sym_cmd_identifier_token5] = ACTIONS(2376), + [aux_sym_cmd_identifier_token6] = ACTIONS(2376), + [aux_sym_cmd_identifier_token7] = ACTIONS(2376), + [aux_sym_cmd_identifier_token8] = ACTIONS(2374), + [aux_sym_cmd_identifier_token9] = ACTIONS(2374), + [aux_sym_cmd_identifier_token10] = ACTIONS(2376), + [aux_sym_cmd_identifier_token11] = ACTIONS(2376), + [aux_sym_cmd_identifier_token12] = ACTIONS(2374), + [aux_sym_cmd_identifier_token13] = ACTIONS(2374), + [aux_sym_cmd_identifier_token14] = ACTIONS(2374), + [aux_sym_cmd_identifier_token15] = ACTIONS(2374), + [aux_sym_cmd_identifier_token16] = ACTIONS(2376), + [aux_sym_cmd_identifier_token17] = ACTIONS(2376), + [aux_sym_cmd_identifier_token18] = ACTIONS(2376), + [aux_sym_cmd_identifier_token19] = ACTIONS(2376), + [aux_sym_cmd_identifier_token20] = ACTIONS(2376), + [aux_sym_cmd_identifier_token21] = ACTIONS(2376), + [aux_sym_cmd_identifier_token22] = ACTIONS(2376), + [aux_sym_cmd_identifier_token23] = ACTIONS(2376), + [aux_sym_cmd_identifier_token24] = ACTIONS(2376), + [aux_sym_cmd_identifier_token25] = ACTIONS(2376), + [aux_sym_cmd_identifier_token26] = ACTIONS(2376), + [aux_sym_cmd_identifier_token27] = ACTIONS(2376), + [aux_sym_cmd_identifier_token28] = ACTIONS(2376), + [aux_sym_cmd_identifier_token29] = ACTIONS(2376), + [aux_sym_cmd_identifier_token30] = ACTIONS(2376), + [aux_sym_cmd_identifier_token31] = ACTIONS(2376), + [aux_sym_cmd_identifier_token32] = ACTIONS(2376), + [aux_sym_cmd_identifier_token33] = ACTIONS(2376), + [aux_sym_cmd_identifier_token34] = ACTIONS(2374), + [aux_sym_cmd_identifier_token35] = ACTIONS(2376), + [aux_sym_cmd_identifier_token36] = ACTIONS(2376), + [aux_sym_cmd_identifier_token37] = ACTIONS(2376), + [aux_sym_cmd_identifier_token38] = ACTIONS(2374), + [aux_sym_cmd_identifier_token39] = ACTIONS(2376), + [aux_sym_cmd_identifier_token40] = ACTIONS(2376), + [anon_sym_def] = ACTIONS(2374), + [anon_sym_export_DASHenv] = ACTIONS(2374), + [anon_sym_extern] = ACTIONS(2374), + [anon_sym_module] = ACTIONS(2374), + [anon_sym_use] = ACTIONS(2374), + [anon_sym_LPAREN] = ACTIONS(2376), + [anon_sym_COMMA] = ACTIONS(2376), + [anon_sym_DOLLAR] = ACTIONS(2374), + [anon_sym_error] = ACTIONS(2374), + [anon_sym_DASH2] = ACTIONS(2374), + [anon_sym_break] = ACTIONS(2374), + [anon_sym_continue] = ACTIONS(2374), + [anon_sym_for] = ACTIONS(2374), + [anon_sym_in2] = ACTIONS(2374), + [anon_sym_loop] = ACTIONS(2374), + [anon_sym_make] = ACTIONS(2374), + [anon_sym_while] = ACTIONS(2374), + [anon_sym_do] = ACTIONS(2374), + [anon_sym_if] = ACTIONS(2374), + [anon_sym_else] = ACTIONS(2374), + [anon_sym_match] = ACTIONS(2374), + [anon_sym_RBRACE] = ACTIONS(2376), + [anon_sym_try] = ACTIONS(2374), + [anon_sym_catch] = ACTIONS(2374), + [anon_sym_return] = ACTIONS(2374), + [anon_sym_source] = ACTIONS(2374), + [anon_sym_source_DASHenv] = ACTIONS(2374), + [anon_sym_hide] = ACTIONS(2374), + [anon_sym_hide_DASHenv] = ACTIONS(2374), + [anon_sym_overlay] = ACTIONS(2374), + [anon_sym_as] = ACTIONS(2374), + [anon_sym_PLUS2] = ACTIONS(2374), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2376), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2376), + [aux_sym__val_number_decimal_token1] = ACTIONS(2374), + [aux_sym__val_number_decimal_token2] = ACTIONS(2376), + [aux_sym__val_number_decimal_token3] = ACTIONS(2376), + [aux_sym__val_number_decimal_token4] = ACTIONS(2376), + [aux_sym__val_number_token1] = ACTIONS(2376), + [aux_sym__val_number_token2] = ACTIONS(2376), + [aux_sym__val_number_token3] = ACTIONS(2376), + [aux_sym__val_number_token4] = ACTIONS(2374), + [aux_sym__val_number_token5] = ACTIONS(2374), + [aux_sym__val_number_token6] = ACTIONS(2374), + [anon_sym_DQUOTE] = ACTIONS(2376), + [sym__str_single_quotes] = ACTIONS(2376), + [sym__str_back_ticks] = ACTIONS(2376), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2376), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2376), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2376), + [anon_sym_register] = ACTIONS(2374), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2376), }, - [727] = { - [sym_comment] = STATE(727), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_alias] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_let_DASHenv] = ACTIONS(1719), - [anon_sym_mut] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [aux_sym_cmd_identifier_token1] = ACTIONS(1719), - [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(1719), - [aux_sym_cmd_identifier_token9] = ACTIONS(1719), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1719), - [aux_sym_cmd_identifier_token13] = ACTIONS(1719), - [aux_sym_cmd_identifier_token14] = ACTIONS(1719), - [aux_sym_cmd_identifier_token15] = ACTIONS(1719), - [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(1719), - [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(1719), - [aux_sym_cmd_identifier_token39] = ACTIONS(1721), - [aux_sym_cmd_identifier_token40] = ACTIONS(1721), - [anon_sym_def] = ACTIONS(1719), - [anon_sym_export_DASHenv] = ACTIONS(1719), - [anon_sym_extern] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_use] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_COMMA] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_error] = ACTIONS(1719), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_in2] = ACTIONS(1719), - [anon_sym_loop] = ACTIONS(1719), - [anon_sym_make] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_match] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_catch] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_source] = ACTIONS(1719), - [anon_sym_source_DASHenv] = ACTIONS(1719), - [anon_sym_hide] = ACTIONS(1719), - [anon_sym_hide_DASHenv] = ACTIONS(1719), - [anon_sym_overlay] = ACTIONS(1719), - [anon_sym_as] = ACTIONS(1719), - [anon_sym_PLUS2] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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(1719), - [aux_sym__val_number_token5] = ACTIONS(1719), - [aux_sym__val_number_token6] = ACTIONS(1719), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1719), + [685] = { + [sym_comment] = STATE(685), + [anon_sym_export] = ACTIONS(1833), + [anon_sym_alias] = ACTIONS(1833), + [anon_sym_let] = ACTIONS(1833), + [anon_sym_let_DASHenv] = ACTIONS(1833), + [anon_sym_mut] = ACTIONS(1833), + [anon_sym_const] = ACTIONS(1833), + [aux_sym_cmd_identifier_token1] = ACTIONS(1833), + [aux_sym_cmd_identifier_token2] = ACTIONS(1835), + [aux_sym_cmd_identifier_token3] = ACTIONS(1835), + [aux_sym_cmd_identifier_token4] = ACTIONS(1835), + [aux_sym_cmd_identifier_token5] = ACTIONS(1835), + [aux_sym_cmd_identifier_token6] = ACTIONS(1835), + [aux_sym_cmd_identifier_token7] = ACTIONS(1835), + [aux_sym_cmd_identifier_token8] = ACTIONS(1833), + [aux_sym_cmd_identifier_token9] = ACTIONS(1833), + [aux_sym_cmd_identifier_token10] = ACTIONS(1835), + [aux_sym_cmd_identifier_token11] = ACTIONS(1835), + [aux_sym_cmd_identifier_token12] = ACTIONS(1833), + [aux_sym_cmd_identifier_token13] = ACTIONS(1833), + [aux_sym_cmd_identifier_token14] = ACTIONS(1833), + [aux_sym_cmd_identifier_token15] = ACTIONS(1833), + [aux_sym_cmd_identifier_token16] = ACTIONS(1835), + [aux_sym_cmd_identifier_token17] = ACTIONS(1835), + [aux_sym_cmd_identifier_token18] = ACTIONS(1835), + [aux_sym_cmd_identifier_token19] = ACTIONS(1835), + [aux_sym_cmd_identifier_token20] = ACTIONS(1835), + [aux_sym_cmd_identifier_token21] = ACTIONS(1835), + [aux_sym_cmd_identifier_token22] = ACTIONS(1835), + [aux_sym_cmd_identifier_token23] = ACTIONS(1835), + [aux_sym_cmd_identifier_token24] = ACTIONS(1835), + [aux_sym_cmd_identifier_token25] = ACTIONS(1835), + [aux_sym_cmd_identifier_token26] = ACTIONS(1835), + [aux_sym_cmd_identifier_token27] = ACTIONS(1835), + [aux_sym_cmd_identifier_token28] = ACTIONS(1835), + [aux_sym_cmd_identifier_token29] = ACTIONS(1835), + [aux_sym_cmd_identifier_token30] = ACTIONS(1835), + [aux_sym_cmd_identifier_token31] = ACTIONS(1835), + [aux_sym_cmd_identifier_token32] = ACTIONS(1835), + [aux_sym_cmd_identifier_token33] = ACTIONS(1835), + [aux_sym_cmd_identifier_token34] = ACTIONS(1833), + [aux_sym_cmd_identifier_token35] = ACTIONS(1835), + [aux_sym_cmd_identifier_token36] = ACTIONS(1835), + [aux_sym_cmd_identifier_token37] = ACTIONS(1835), + [aux_sym_cmd_identifier_token38] = ACTIONS(1833), + [aux_sym_cmd_identifier_token39] = ACTIONS(1835), + [aux_sym_cmd_identifier_token40] = ACTIONS(1835), + [anon_sym_def] = ACTIONS(1833), + [anon_sym_export_DASHenv] = ACTIONS(1833), + [anon_sym_extern] = ACTIONS(1833), + [anon_sym_module] = ACTIONS(1833), + [anon_sym_use] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1835), + [anon_sym_COMMA] = ACTIONS(1835), + [anon_sym_DOLLAR] = ACTIONS(1833), + [anon_sym_error] = ACTIONS(1833), + [anon_sym_DASH2] = ACTIONS(1833), + [anon_sym_break] = ACTIONS(1833), + [anon_sym_continue] = ACTIONS(1833), + [anon_sym_for] = ACTIONS(1833), + [anon_sym_in2] = ACTIONS(1833), + [anon_sym_loop] = ACTIONS(1833), + [anon_sym_make] = ACTIONS(1833), + [anon_sym_while] = ACTIONS(1833), + [anon_sym_do] = ACTIONS(1833), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_else] = ACTIONS(1833), + [anon_sym_match] = ACTIONS(1833), + [anon_sym_RBRACE] = ACTIONS(1835), + [anon_sym_try] = ACTIONS(1833), + [anon_sym_catch] = ACTIONS(1833), + [anon_sym_return] = ACTIONS(1833), + [anon_sym_source] = ACTIONS(1833), + [anon_sym_source_DASHenv] = ACTIONS(1833), + [anon_sym_hide] = ACTIONS(1833), + [anon_sym_hide_DASHenv] = ACTIONS(1833), + [anon_sym_overlay] = ACTIONS(1833), + [anon_sym_as] = ACTIONS(1833), + [anon_sym_PLUS2] = ACTIONS(1833), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1835), + [aux_sym__val_number_decimal_token1] = ACTIONS(1833), + [aux_sym__val_number_decimal_token2] = ACTIONS(1835), + [aux_sym__val_number_decimal_token3] = ACTIONS(1835), + [aux_sym__val_number_decimal_token4] = ACTIONS(1835), + [aux_sym__val_number_token1] = ACTIONS(1835), + [aux_sym__val_number_token2] = ACTIONS(1835), + [aux_sym__val_number_token3] = ACTIONS(1835), + [aux_sym__val_number_token4] = ACTIONS(1833), + [aux_sym__val_number_token5] = ACTIONS(1833), + [aux_sym__val_number_token6] = ACTIONS(1833), + [anon_sym_DQUOTE] = ACTIONS(1835), + [sym__str_single_quotes] = ACTIONS(1835), + [sym__str_back_ticks] = ACTIONS(1835), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1835), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1835), + [anon_sym_register] = ACTIONS(1833), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1721), + [sym_raw_string_begin] = ACTIONS(1835), }, - [728] = { - [sym_comment] = STATE(728), - [anon_sym_export] = ACTIONS(2475), - [anon_sym_alias] = ACTIONS(2475), - [anon_sym_let] = ACTIONS(2475), - [anon_sym_let_DASHenv] = ACTIONS(2475), - [anon_sym_mut] = ACTIONS(2475), - [anon_sym_const] = ACTIONS(2475), - [aux_sym_cmd_identifier_token1] = ACTIONS(2475), - [aux_sym_cmd_identifier_token2] = ACTIONS(2477), - [aux_sym_cmd_identifier_token3] = ACTIONS(2477), - [aux_sym_cmd_identifier_token4] = ACTIONS(2477), - [aux_sym_cmd_identifier_token5] = ACTIONS(2477), - [aux_sym_cmd_identifier_token6] = ACTIONS(2477), - [aux_sym_cmd_identifier_token7] = ACTIONS(2477), - [aux_sym_cmd_identifier_token8] = ACTIONS(2475), - [aux_sym_cmd_identifier_token9] = ACTIONS(2475), - [aux_sym_cmd_identifier_token10] = ACTIONS(2477), - [aux_sym_cmd_identifier_token11] = ACTIONS(2477), - [aux_sym_cmd_identifier_token12] = ACTIONS(2475), - [aux_sym_cmd_identifier_token13] = ACTIONS(2475), - [aux_sym_cmd_identifier_token14] = ACTIONS(2475), - [aux_sym_cmd_identifier_token15] = ACTIONS(2475), - [aux_sym_cmd_identifier_token16] = ACTIONS(2477), - [aux_sym_cmd_identifier_token17] = ACTIONS(2477), - [aux_sym_cmd_identifier_token18] = ACTIONS(2477), - [aux_sym_cmd_identifier_token19] = ACTIONS(2477), - [aux_sym_cmd_identifier_token20] = ACTIONS(2477), - [aux_sym_cmd_identifier_token21] = ACTIONS(2477), - [aux_sym_cmd_identifier_token22] = ACTIONS(2477), - [aux_sym_cmd_identifier_token23] = ACTIONS(2477), - [aux_sym_cmd_identifier_token24] = ACTIONS(2477), - [aux_sym_cmd_identifier_token25] = ACTIONS(2477), - [aux_sym_cmd_identifier_token26] = ACTIONS(2477), - [aux_sym_cmd_identifier_token27] = ACTIONS(2477), - [aux_sym_cmd_identifier_token28] = ACTIONS(2477), - [aux_sym_cmd_identifier_token29] = ACTIONS(2477), - [aux_sym_cmd_identifier_token30] = ACTIONS(2477), - [aux_sym_cmd_identifier_token31] = ACTIONS(2477), - [aux_sym_cmd_identifier_token32] = ACTIONS(2477), - [aux_sym_cmd_identifier_token33] = ACTIONS(2477), - [aux_sym_cmd_identifier_token34] = ACTIONS(2475), - [aux_sym_cmd_identifier_token35] = ACTIONS(2477), - [aux_sym_cmd_identifier_token36] = ACTIONS(2477), - [aux_sym_cmd_identifier_token37] = ACTIONS(2477), - [aux_sym_cmd_identifier_token38] = ACTIONS(2475), - [aux_sym_cmd_identifier_token39] = ACTIONS(2477), - [aux_sym_cmd_identifier_token40] = ACTIONS(2477), - [anon_sym_def] = ACTIONS(2475), - [anon_sym_export_DASHenv] = ACTIONS(2475), - [anon_sym_extern] = ACTIONS(2475), - [anon_sym_module] = ACTIONS(2475), - [anon_sym_use] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_COMMA] = ACTIONS(2477), - [anon_sym_DOLLAR] = ACTIONS(2475), - [anon_sym_error] = ACTIONS(2475), - [anon_sym_DASH2] = ACTIONS(2475), - [anon_sym_break] = ACTIONS(2475), - [anon_sym_continue] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_in2] = ACTIONS(2475), - [anon_sym_loop] = ACTIONS(2475), - [anon_sym_make] = ACTIONS(2475), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_do] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_else] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_try] = ACTIONS(2475), - [anon_sym_catch] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2475), - [anon_sym_source] = ACTIONS(2475), - [anon_sym_source_DASHenv] = ACTIONS(2475), - [anon_sym_hide] = ACTIONS(2475), - [anon_sym_hide_DASHenv] = ACTIONS(2475), - [anon_sym_overlay] = ACTIONS(2475), - [anon_sym_as] = ACTIONS(2475), - [anon_sym_PLUS2] = ACTIONS(2475), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2477), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2477), - [aux_sym__val_number_decimal_token1] = ACTIONS(2475), - [aux_sym__val_number_decimal_token2] = ACTIONS(2477), - [aux_sym__val_number_decimal_token3] = ACTIONS(2477), - [aux_sym__val_number_decimal_token4] = ACTIONS(2477), - [aux_sym__val_number_token1] = ACTIONS(2477), - [aux_sym__val_number_token2] = ACTIONS(2477), - [aux_sym__val_number_token3] = ACTIONS(2477), - [aux_sym__val_number_token4] = ACTIONS(2475), - [aux_sym__val_number_token5] = ACTIONS(2475), - [aux_sym__val_number_token6] = ACTIONS(2475), - [anon_sym_DQUOTE] = ACTIONS(2477), - [sym__str_single_quotes] = ACTIONS(2477), - [sym__str_back_ticks] = ACTIONS(2477), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2477), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2477), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2477), - [anon_sym_register] = ACTIONS(2475), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2477), + [686] = { + [sym_comment] = STATE(686), + [anon_sym_export] = ACTIONS(2260), + [anon_sym_alias] = ACTIONS(2260), + [anon_sym_let] = ACTIONS(2260), + [anon_sym_let_DASHenv] = ACTIONS(2260), + [anon_sym_mut] = ACTIONS(2260), + [anon_sym_const] = ACTIONS(2260), + [aux_sym_cmd_identifier_token1] = ACTIONS(2260), + [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(2260), + [aux_sym_cmd_identifier_token9] = ACTIONS(2260), + [aux_sym_cmd_identifier_token10] = ACTIONS(2262), + [aux_sym_cmd_identifier_token11] = ACTIONS(2262), + [aux_sym_cmd_identifier_token12] = ACTIONS(2260), + [aux_sym_cmd_identifier_token13] = ACTIONS(2260), + [aux_sym_cmd_identifier_token14] = ACTIONS(2260), + [aux_sym_cmd_identifier_token15] = ACTIONS(2260), + [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(2260), + [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(2260), + [aux_sym_cmd_identifier_token39] = ACTIONS(2262), + [aux_sym_cmd_identifier_token40] = ACTIONS(2262), + [anon_sym_def] = ACTIONS(2260), + [anon_sym_export_DASHenv] = ACTIONS(2260), + [anon_sym_extern] = ACTIONS(2260), + [anon_sym_module] = ACTIONS(2260), + [anon_sym_use] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_COMMA] = ACTIONS(2262), + [anon_sym_DOLLAR] = ACTIONS(2260), + [anon_sym_error] = ACTIONS(2260), + [anon_sym_DASH2] = ACTIONS(2260), + [anon_sym_break] = ACTIONS(2260), + [anon_sym_continue] = ACTIONS(2260), + [anon_sym_for] = ACTIONS(2260), + [anon_sym_in2] = ACTIONS(2260), + [anon_sym_loop] = ACTIONS(2260), + [anon_sym_make] = ACTIONS(2260), + [anon_sym_while] = ACTIONS(2260), + [anon_sym_do] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2260), + [anon_sym_else] = ACTIONS(2260), + [anon_sym_match] = ACTIONS(2260), + [anon_sym_RBRACE] = ACTIONS(2262), + [anon_sym_try] = ACTIONS(2260), + [anon_sym_catch] = ACTIONS(2260), + [anon_sym_return] = ACTIONS(2260), + [anon_sym_source] = ACTIONS(2260), + [anon_sym_source_DASHenv] = ACTIONS(2260), + [anon_sym_hide] = ACTIONS(2260), + [anon_sym_hide_DASHenv] = ACTIONS(2260), + [anon_sym_overlay] = ACTIONS(2260), + [anon_sym_as] = ACTIONS(2260), + [anon_sym_PLUS2] = ACTIONS(2260), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2262), + [aux_sym__val_number_decimal_token1] = ACTIONS(2260), + [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(2260), + [aux_sym__val_number_token5] = ACTIONS(2260), + [aux_sym__val_number_token6] = ACTIONS(2260), + [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_DOT_DOT_DOT_LBRACE] = ACTIONS(2262), + [anon_sym_register] = ACTIONS(2260), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2262), }, - [729] = { - [sym_comment] = STATE(729), - [anon_sym_export] = ACTIONS(2479), - [anon_sym_alias] = ACTIONS(2479), - [anon_sym_let] = ACTIONS(2479), - [anon_sym_let_DASHenv] = ACTIONS(2479), - [anon_sym_mut] = ACTIONS(2479), - [anon_sym_const] = ACTIONS(2479), - [aux_sym_cmd_identifier_token1] = ACTIONS(2479), - [aux_sym_cmd_identifier_token2] = ACTIONS(2481), - [aux_sym_cmd_identifier_token3] = ACTIONS(2481), - [aux_sym_cmd_identifier_token4] = ACTIONS(2481), - [aux_sym_cmd_identifier_token5] = ACTIONS(2481), - [aux_sym_cmd_identifier_token6] = ACTIONS(2481), - [aux_sym_cmd_identifier_token7] = ACTIONS(2481), - [aux_sym_cmd_identifier_token8] = ACTIONS(2479), - [aux_sym_cmd_identifier_token9] = ACTIONS(2479), - [aux_sym_cmd_identifier_token10] = ACTIONS(2481), - [aux_sym_cmd_identifier_token11] = ACTIONS(2481), - [aux_sym_cmd_identifier_token12] = ACTIONS(2479), - [aux_sym_cmd_identifier_token13] = ACTIONS(2479), - [aux_sym_cmd_identifier_token14] = ACTIONS(2479), - [aux_sym_cmd_identifier_token15] = ACTIONS(2479), - [aux_sym_cmd_identifier_token16] = ACTIONS(2481), - [aux_sym_cmd_identifier_token17] = ACTIONS(2481), - [aux_sym_cmd_identifier_token18] = ACTIONS(2481), - [aux_sym_cmd_identifier_token19] = ACTIONS(2481), - [aux_sym_cmd_identifier_token20] = ACTIONS(2481), - [aux_sym_cmd_identifier_token21] = ACTIONS(2481), - [aux_sym_cmd_identifier_token22] = ACTIONS(2481), - [aux_sym_cmd_identifier_token23] = ACTIONS(2481), - [aux_sym_cmd_identifier_token24] = ACTIONS(2481), - [aux_sym_cmd_identifier_token25] = ACTIONS(2481), - [aux_sym_cmd_identifier_token26] = ACTIONS(2481), - [aux_sym_cmd_identifier_token27] = ACTIONS(2481), - [aux_sym_cmd_identifier_token28] = ACTIONS(2481), - [aux_sym_cmd_identifier_token29] = ACTIONS(2481), - [aux_sym_cmd_identifier_token30] = ACTIONS(2481), - [aux_sym_cmd_identifier_token31] = ACTIONS(2481), - [aux_sym_cmd_identifier_token32] = ACTIONS(2481), - [aux_sym_cmd_identifier_token33] = ACTIONS(2481), - [aux_sym_cmd_identifier_token34] = ACTIONS(2479), - [aux_sym_cmd_identifier_token35] = ACTIONS(2481), - [aux_sym_cmd_identifier_token36] = ACTIONS(2481), - [aux_sym_cmd_identifier_token37] = ACTIONS(2481), - [aux_sym_cmd_identifier_token38] = ACTIONS(2479), - [aux_sym_cmd_identifier_token39] = ACTIONS(2481), - [aux_sym_cmd_identifier_token40] = ACTIONS(2481), - [anon_sym_def] = ACTIONS(2479), - [anon_sym_export_DASHenv] = ACTIONS(2479), - [anon_sym_extern] = ACTIONS(2479), - [anon_sym_module] = ACTIONS(2479), - [anon_sym_use] = ACTIONS(2479), - [anon_sym_LPAREN] = ACTIONS(2481), - [anon_sym_COMMA] = ACTIONS(2481), - [anon_sym_DOLLAR] = ACTIONS(2479), - [anon_sym_error] = ACTIONS(2479), - [anon_sym_DASH2] = ACTIONS(2479), - [anon_sym_break] = ACTIONS(2479), - [anon_sym_continue] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_in2] = ACTIONS(2479), - [anon_sym_loop] = ACTIONS(2479), - [anon_sym_make] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_else] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_catch] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_source] = ACTIONS(2479), - [anon_sym_source_DASHenv] = ACTIONS(2479), - [anon_sym_hide] = ACTIONS(2479), - [anon_sym_hide_DASHenv] = ACTIONS(2479), - [anon_sym_overlay] = ACTIONS(2479), - [anon_sym_as] = ACTIONS(2479), - [anon_sym_PLUS2] = ACTIONS(2479), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2481), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2481), - [aux_sym__val_number_decimal_token1] = ACTIONS(2479), - [aux_sym__val_number_decimal_token2] = ACTIONS(2481), - [aux_sym__val_number_decimal_token3] = ACTIONS(2481), - [aux_sym__val_number_decimal_token4] = ACTIONS(2481), - [aux_sym__val_number_token1] = ACTIONS(2481), - [aux_sym__val_number_token2] = ACTIONS(2481), - [aux_sym__val_number_token3] = ACTIONS(2481), - [aux_sym__val_number_token4] = ACTIONS(2479), - [aux_sym__val_number_token5] = ACTIONS(2479), - [aux_sym__val_number_token6] = ACTIONS(2479), - [anon_sym_DQUOTE] = ACTIONS(2481), - [sym__str_single_quotes] = ACTIONS(2481), - [sym__str_back_ticks] = ACTIONS(2481), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2481), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2481), - [anon_sym_register] = ACTIONS(2479), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2481), + [687] = { + [sym_comment] = STATE(687), + [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_COMMA] = ACTIONS(1865), + [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(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_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_DOLLAR_SQUOTE] = ACTIONS(1865), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1865), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1865), + [anon_sym_register] = ACTIONS(1863), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1865), }, - [730] = { - [sym_comment] = STATE(730), - [anon_sym_export] = ACTIONS(2300), - [anon_sym_alias] = ACTIONS(2300), - [anon_sym_let] = ACTIONS(2300), - [anon_sym_let_DASHenv] = ACTIONS(2300), - [anon_sym_mut] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [aux_sym_cmd_identifier_token1] = ACTIONS(2300), - [aux_sym_cmd_identifier_token2] = ACTIONS(2302), - [aux_sym_cmd_identifier_token3] = ACTIONS(2302), - [aux_sym_cmd_identifier_token4] = ACTIONS(2302), - [aux_sym_cmd_identifier_token5] = ACTIONS(2302), - [aux_sym_cmd_identifier_token6] = ACTIONS(2302), - [aux_sym_cmd_identifier_token7] = ACTIONS(2302), - [aux_sym_cmd_identifier_token8] = ACTIONS(2300), - [aux_sym_cmd_identifier_token9] = ACTIONS(2300), - [aux_sym_cmd_identifier_token10] = ACTIONS(2302), - [aux_sym_cmd_identifier_token11] = ACTIONS(2302), - [aux_sym_cmd_identifier_token12] = ACTIONS(2300), - [aux_sym_cmd_identifier_token13] = ACTIONS(2300), - [aux_sym_cmd_identifier_token14] = ACTIONS(2300), - [aux_sym_cmd_identifier_token15] = ACTIONS(2300), - [aux_sym_cmd_identifier_token16] = ACTIONS(2302), - [aux_sym_cmd_identifier_token17] = ACTIONS(2302), - [aux_sym_cmd_identifier_token18] = ACTIONS(2302), - [aux_sym_cmd_identifier_token19] = ACTIONS(2302), - [aux_sym_cmd_identifier_token20] = ACTIONS(2302), - [aux_sym_cmd_identifier_token21] = ACTIONS(2302), - [aux_sym_cmd_identifier_token22] = ACTIONS(2302), - [aux_sym_cmd_identifier_token23] = ACTIONS(2302), - [aux_sym_cmd_identifier_token24] = ACTIONS(2302), - [aux_sym_cmd_identifier_token25] = ACTIONS(2302), - [aux_sym_cmd_identifier_token26] = ACTIONS(2302), - [aux_sym_cmd_identifier_token27] = ACTIONS(2302), - [aux_sym_cmd_identifier_token28] = ACTIONS(2302), - [aux_sym_cmd_identifier_token29] = ACTIONS(2302), - [aux_sym_cmd_identifier_token30] = ACTIONS(2302), - [aux_sym_cmd_identifier_token31] = ACTIONS(2302), - [aux_sym_cmd_identifier_token32] = ACTIONS(2302), - [aux_sym_cmd_identifier_token33] = ACTIONS(2302), - [aux_sym_cmd_identifier_token34] = ACTIONS(2300), - [aux_sym_cmd_identifier_token35] = ACTIONS(2302), - [aux_sym_cmd_identifier_token36] = ACTIONS(2302), - [aux_sym_cmd_identifier_token37] = ACTIONS(2302), - [aux_sym_cmd_identifier_token38] = ACTIONS(2300), - [aux_sym_cmd_identifier_token39] = ACTIONS(2302), - [aux_sym_cmd_identifier_token40] = ACTIONS(2302), - [anon_sym_def] = ACTIONS(2300), - [anon_sym_export_DASHenv] = ACTIONS(2300), - [anon_sym_extern] = ACTIONS(2300), - [anon_sym_module] = ACTIONS(2300), - [anon_sym_use] = ACTIONS(2300), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_COMMA] = ACTIONS(2302), - [anon_sym_DOLLAR] = ACTIONS(2300), - [anon_sym_error] = ACTIONS(2300), - [anon_sym_DASH2] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_for] = ACTIONS(2300), - [anon_sym_in2] = ACTIONS(2300), - [anon_sym_loop] = ACTIONS(2300), - [anon_sym_make] = ACTIONS(2300), - [anon_sym_while] = ACTIONS(2300), - [anon_sym_do] = ACTIONS(2300), - [anon_sym_if] = ACTIONS(2300), - [anon_sym_else] = ACTIONS(2300), - [anon_sym_match] = ACTIONS(2300), - [anon_sym_RBRACE] = ACTIONS(2302), - [anon_sym_try] = ACTIONS(2300), - [anon_sym_catch] = ACTIONS(2300), - [anon_sym_return] = ACTIONS(2300), - [anon_sym_source] = ACTIONS(2300), - [anon_sym_source_DASHenv] = ACTIONS(2300), - [anon_sym_hide] = ACTIONS(2300), - [anon_sym_hide_DASHenv] = ACTIONS(2300), - [anon_sym_overlay] = ACTIONS(2300), - [anon_sym_as] = ACTIONS(2300), - [anon_sym_PLUS2] = ACTIONS(2300), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2302), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2302), - [aux_sym__val_number_decimal_token1] = ACTIONS(2300), - [aux_sym__val_number_decimal_token2] = ACTIONS(2302), - [aux_sym__val_number_decimal_token3] = ACTIONS(2302), - [aux_sym__val_number_decimal_token4] = ACTIONS(2302), - [aux_sym__val_number_token1] = ACTIONS(2302), - [aux_sym__val_number_token2] = ACTIONS(2302), - [aux_sym__val_number_token3] = ACTIONS(2302), - [aux_sym__val_number_token4] = ACTIONS(2300), - [aux_sym__val_number_token5] = ACTIONS(2300), - [aux_sym__val_number_token6] = ACTIONS(2300), - [anon_sym_DQUOTE] = ACTIONS(2302), - [sym__str_single_quotes] = ACTIONS(2302), - [sym__str_back_ticks] = ACTIONS(2302), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2302), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2302), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2302), - [anon_sym_register] = ACTIONS(2300), + [688] = { + [sym_comment] = STATE(688), + [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_COMMA] = ACTIONS(1873), + [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(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_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_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_DOLLAR_SQUOTE] = ACTIONS(1873), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1873), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1873), + [anon_sym_register] = ACTIONS(1871), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2302), + [sym_raw_string_begin] = ACTIONS(1873), }, - [731] = { - [sym_comment] = STATE(731), - [anon_sym_export] = ACTIONS(2457), - [anon_sym_alias] = ACTIONS(2457), - [anon_sym_let] = ACTIONS(2457), - [anon_sym_let_DASHenv] = ACTIONS(2457), - [anon_sym_mut] = ACTIONS(2457), - [anon_sym_const] = ACTIONS(2457), - [aux_sym_cmd_identifier_token1] = ACTIONS(2457), - [aux_sym_cmd_identifier_token2] = ACTIONS(2459), - [aux_sym_cmd_identifier_token3] = ACTIONS(2459), - [aux_sym_cmd_identifier_token4] = ACTIONS(2459), - [aux_sym_cmd_identifier_token5] = ACTIONS(2459), - [aux_sym_cmd_identifier_token6] = ACTIONS(2459), - [aux_sym_cmd_identifier_token7] = ACTIONS(2459), - [aux_sym_cmd_identifier_token8] = ACTIONS(2457), - [aux_sym_cmd_identifier_token9] = ACTIONS(2457), - [aux_sym_cmd_identifier_token10] = ACTIONS(2459), - [aux_sym_cmd_identifier_token11] = ACTIONS(2459), - [aux_sym_cmd_identifier_token12] = ACTIONS(2457), - [aux_sym_cmd_identifier_token13] = ACTIONS(2457), - [aux_sym_cmd_identifier_token14] = ACTIONS(2457), - [aux_sym_cmd_identifier_token15] = ACTIONS(2457), - [aux_sym_cmd_identifier_token16] = ACTIONS(2459), - [aux_sym_cmd_identifier_token17] = ACTIONS(2459), - [aux_sym_cmd_identifier_token18] = ACTIONS(2459), - [aux_sym_cmd_identifier_token19] = ACTIONS(2459), - [aux_sym_cmd_identifier_token20] = ACTIONS(2459), - [aux_sym_cmd_identifier_token21] = ACTIONS(2459), - [aux_sym_cmd_identifier_token22] = ACTIONS(2459), - [aux_sym_cmd_identifier_token23] = ACTIONS(2459), - [aux_sym_cmd_identifier_token24] = ACTIONS(2459), - [aux_sym_cmd_identifier_token25] = ACTIONS(2459), - [aux_sym_cmd_identifier_token26] = ACTIONS(2459), - [aux_sym_cmd_identifier_token27] = ACTIONS(2459), - [aux_sym_cmd_identifier_token28] = ACTIONS(2459), - [aux_sym_cmd_identifier_token29] = ACTIONS(2459), - [aux_sym_cmd_identifier_token30] = ACTIONS(2459), - [aux_sym_cmd_identifier_token31] = ACTIONS(2459), - [aux_sym_cmd_identifier_token32] = ACTIONS(2459), - [aux_sym_cmd_identifier_token33] = ACTIONS(2459), - [aux_sym_cmd_identifier_token34] = ACTIONS(2457), - [aux_sym_cmd_identifier_token35] = ACTIONS(2459), - [aux_sym_cmd_identifier_token36] = ACTIONS(2459), - [aux_sym_cmd_identifier_token37] = ACTIONS(2459), - [aux_sym_cmd_identifier_token38] = ACTIONS(2457), - [aux_sym_cmd_identifier_token39] = ACTIONS(2459), - [aux_sym_cmd_identifier_token40] = ACTIONS(2459), - [anon_sym_def] = ACTIONS(2457), - [anon_sym_export_DASHenv] = ACTIONS(2457), - [anon_sym_extern] = ACTIONS(2457), - [anon_sym_module] = ACTIONS(2457), - [anon_sym_use] = ACTIONS(2457), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_COMMA] = ACTIONS(2459), - [anon_sym_DOLLAR] = ACTIONS(2457), - [anon_sym_error] = ACTIONS(2457), - [anon_sym_DASH2] = ACTIONS(2457), - [anon_sym_break] = ACTIONS(2457), - [anon_sym_continue] = ACTIONS(2457), - [anon_sym_for] = ACTIONS(2457), - [anon_sym_in2] = ACTIONS(2457), - [anon_sym_loop] = ACTIONS(2457), - [anon_sym_make] = ACTIONS(2457), - [anon_sym_while] = ACTIONS(2457), - [anon_sym_do] = ACTIONS(2457), - [anon_sym_if] = ACTIONS(2457), - [anon_sym_else] = ACTIONS(2457), - [anon_sym_match] = ACTIONS(2457), - [anon_sym_RBRACE] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2457), - [anon_sym_catch] = ACTIONS(2457), - [anon_sym_return] = ACTIONS(2457), - [anon_sym_source] = ACTIONS(2457), - [anon_sym_source_DASHenv] = ACTIONS(2457), - [anon_sym_hide] = ACTIONS(2457), - [anon_sym_hide_DASHenv] = ACTIONS(2457), - [anon_sym_overlay] = ACTIONS(2457), - [anon_sym_as] = ACTIONS(2457), - [anon_sym_PLUS2] = ACTIONS(2457), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2459), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2459), - [aux_sym__val_number_decimal_token1] = ACTIONS(2457), - [aux_sym__val_number_decimal_token2] = ACTIONS(2459), - [aux_sym__val_number_decimal_token3] = ACTIONS(2459), - [aux_sym__val_number_decimal_token4] = ACTIONS(2459), - [aux_sym__val_number_token1] = ACTIONS(2459), - [aux_sym__val_number_token2] = ACTIONS(2459), - [aux_sym__val_number_token3] = ACTIONS(2459), - [aux_sym__val_number_token4] = ACTIONS(2457), - [aux_sym__val_number_token5] = ACTIONS(2457), - [aux_sym__val_number_token6] = ACTIONS(2457), - [anon_sym_DQUOTE] = ACTIONS(2459), - [sym__str_single_quotes] = ACTIONS(2459), - [sym__str_back_ticks] = ACTIONS(2459), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2459), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2459), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2457), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2459), + [689] = { + [sym_comment] = STATE(689), + [anon_sym_export] = ACTIONS(2264), + [anon_sym_alias] = ACTIONS(2264), + [anon_sym_let] = ACTIONS(2264), + [anon_sym_let_DASHenv] = ACTIONS(2264), + [anon_sym_mut] = ACTIONS(2264), + [anon_sym_const] = ACTIONS(2264), + [aux_sym_cmd_identifier_token1] = ACTIONS(2264), + [aux_sym_cmd_identifier_token2] = ACTIONS(2266), + [aux_sym_cmd_identifier_token3] = ACTIONS(2266), + [aux_sym_cmd_identifier_token4] = ACTIONS(2266), + [aux_sym_cmd_identifier_token5] = ACTIONS(2266), + [aux_sym_cmd_identifier_token6] = ACTIONS(2266), + [aux_sym_cmd_identifier_token7] = ACTIONS(2266), + [aux_sym_cmd_identifier_token8] = ACTIONS(2264), + [aux_sym_cmd_identifier_token9] = ACTIONS(2264), + [aux_sym_cmd_identifier_token10] = ACTIONS(2266), + [aux_sym_cmd_identifier_token11] = ACTIONS(2266), + [aux_sym_cmd_identifier_token12] = ACTIONS(2264), + [aux_sym_cmd_identifier_token13] = ACTIONS(2264), + [aux_sym_cmd_identifier_token14] = ACTIONS(2264), + [aux_sym_cmd_identifier_token15] = ACTIONS(2264), + [aux_sym_cmd_identifier_token16] = ACTIONS(2266), + [aux_sym_cmd_identifier_token17] = ACTIONS(2266), + [aux_sym_cmd_identifier_token18] = ACTIONS(2266), + [aux_sym_cmd_identifier_token19] = ACTIONS(2266), + [aux_sym_cmd_identifier_token20] = ACTIONS(2266), + [aux_sym_cmd_identifier_token21] = ACTIONS(2266), + [aux_sym_cmd_identifier_token22] = ACTIONS(2266), + [aux_sym_cmd_identifier_token23] = ACTIONS(2266), + [aux_sym_cmd_identifier_token24] = ACTIONS(2266), + [aux_sym_cmd_identifier_token25] = ACTIONS(2266), + [aux_sym_cmd_identifier_token26] = ACTIONS(2266), + [aux_sym_cmd_identifier_token27] = ACTIONS(2266), + [aux_sym_cmd_identifier_token28] = ACTIONS(2266), + [aux_sym_cmd_identifier_token29] = ACTIONS(2266), + [aux_sym_cmd_identifier_token30] = ACTIONS(2266), + [aux_sym_cmd_identifier_token31] = ACTIONS(2266), + [aux_sym_cmd_identifier_token32] = ACTIONS(2266), + [aux_sym_cmd_identifier_token33] = ACTIONS(2266), + [aux_sym_cmd_identifier_token34] = ACTIONS(2264), + [aux_sym_cmd_identifier_token35] = ACTIONS(2266), + [aux_sym_cmd_identifier_token36] = ACTIONS(2266), + [aux_sym_cmd_identifier_token37] = ACTIONS(2266), + [aux_sym_cmd_identifier_token38] = ACTIONS(2264), + [aux_sym_cmd_identifier_token39] = ACTIONS(2266), + [aux_sym_cmd_identifier_token40] = ACTIONS(2266), + [anon_sym_def] = ACTIONS(2264), + [anon_sym_export_DASHenv] = ACTIONS(2264), + [anon_sym_extern] = ACTIONS(2264), + [anon_sym_module] = ACTIONS(2264), + [anon_sym_use] = ACTIONS(2264), + [anon_sym_LPAREN] = ACTIONS(2266), + [anon_sym_COMMA] = ACTIONS(2266), + [anon_sym_DOLLAR] = ACTIONS(2264), + [anon_sym_error] = ACTIONS(2264), + [anon_sym_DASH2] = ACTIONS(2264), + [anon_sym_break] = ACTIONS(2264), + [anon_sym_continue] = ACTIONS(2264), + [anon_sym_for] = ACTIONS(2264), + [anon_sym_in2] = ACTIONS(2264), + [anon_sym_loop] = ACTIONS(2264), + [anon_sym_make] = ACTIONS(2264), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2264), + [anon_sym_if] = ACTIONS(2264), + [anon_sym_else] = ACTIONS(2264), + [anon_sym_match] = ACTIONS(2264), + [anon_sym_RBRACE] = ACTIONS(2266), + [anon_sym_try] = ACTIONS(2264), + [anon_sym_catch] = ACTIONS(2264), + [anon_sym_return] = ACTIONS(2264), + [anon_sym_source] = ACTIONS(2264), + [anon_sym_source_DASHenv] = ACTIONS(2264), + [anon_sym_hide] = ACTIONS(2264), + [anon_sym_hide_DASHenv] = ACTIONS(2264), + [anon_sym_overlay] = ACTIONS(2264), + [anon_sym_as] = ACTIONS(2264), + [anon_sym_PLUS2] = ACTIONS(2264), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2266), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2266), + [aux_sym__val_number_decimal_token1] = ACTIONS(2264), + [aux_sym__val_number_decimal_token2] = ACTIONS(2266), + [aux_sym__val_number_decimal_token3] = ACTIONS(2266), + [aux_sym__val_number_decimal_token4] = ACTIONS(2266), + [aux_sym__val_number_token1] = ACTIONS(2266), + [aux_sym__val_number_token2] = ACTIONS(2266), + [aux_sym__val_number_token3] = ACTIONS(2266), + [aux_sym__val_number_token4] = ACTIONS(2264), + [aux_sym__val_number_token5] = ACTIONS(2264), + [aux_sym__val_number_token6] = ACTIONS(2264), + [anon_sym_DQUOTE] = ACTIONS(2266), + [sym__str_single_quotes] = ACTIONS(2266), + [sym__str_back_ticks] = ACTIONS(2266), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2266), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2266), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2266), + [anon_sym_register] = ACTIONS(2264), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2266), }, - [732] = { - [sym_comment] = STATE(732), - [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_COMMA] = ACTIONS(2404), - [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(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_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_DOLLAR_SQUOTE] = ACTIONS(2404), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2404), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2404), - [anon_sym_register] = ACTIONS(2402), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2404), + [690] = { + [sym_comment] = STATE(690), + [anon_sym_export] = ACTIONS(1829), + [anon_sym_alias] = ACTIONS(1829), + [anon_sym_let] = ACTIONS(1829), + [anon_sym_let_DASHenv] = ACTIONS(1829), + [anon_sym_mut] = ACTIONS(1829), + [anon_sym_const] = ACTIONS(1829), + [aux_sym_cmd_identifier_token1] = ACTIONS(1829), + [aux_sym_cmd_identifier_token2] = ACTIONS(1831), + [aux_sym_cmd_identifier_token3] = ACTIONS(1831), + [aux_sym_cmd_identifier_token4] = ACTIONS(1831), + [aux_sym_cmd_identifier_token5] = ACTIONS(1831), + [aux_sym_cmd_identifier_token6] = ACTIONS(1831), + [aux_sym_cmd_identifier_token7] = ACTIONS(1831), + [aux_sym_cmd_identifier_token8] = ACTIONS(1829), + [aux_sym_cmd_identifier_token9] = ACTIONS(1829), + [aux_sym_cmd_identifier_token10] = ACTIONS(1831), + [aux_sym_cmd_identifier_token11] = ACTIONS(1831), + [aux_sym_cmd_identifier_token12] = ACTIONS(1829), + [aux_sym_cmd_identifier_token13] = ACTIONS(1829), + [aux_sym_cmd_identifier_token14] = ACTIONS(1829), + [aux_sym_cmd_identifier_token15] = ACTIONS(1829), + [aux_sym_cmd_identifier_token16] = ACTIONS(1831), + [aux_sym_cmd_identifier_token17] = ACTIONS(1831), + [aux_sym_cmd_identifier_token18] = ACTIONS(1831), + [aux_sym_cmd_identifier_token19] = ACTIONS(1831), + [aux_sym_cmd_identifier_token20] = ACTIONS(1831), + [aux_sym_cmd_identifier_token21] = ACTIONS(1831), + [aux_sym_cmd_identifier_token22] = ACTIONS(1831), + [aux_sym_cmd_identifier_token23] = ACTIONS(1831), + [aux_sym_cmd_identifier_token24] = ACTIONS(1831), + [aux_sym_cmd_identifier_token25] = ACTIONS(1831), + [aux_sym_cmd_identifier_token26] = ACTIONS(1831), + [aux_sym_cmd_identifier_token27] = ACTIONS(1831), + [aux_sym_cmd_identifier_token28] = ACTIONS(1831), + [aux_sym_cmd_identifier_token29] = ACTIONS(1831), + [aux_sym_cmd_identifier_token30] = ACTIONS(1831), + [aux_sym_cmd_identifier_token31] = ACTIONS(1831), + [aux_sym_cmd_identifier_token32] = ACTIONS(1831), + [aux_sym_cmd_identifier_token33] = ACTIONS(1831), + [aux_sym_cmd_identifier_token34] = ACTIONS(1829), + [aux_sym_cmd_identifier_token35] = ACTIONS(1831), + [aux_sym_cmd_identifier_token36] = ACTIONS(1831), + [aux_sym_cmd_identifier_token37] = ACTIONS(1831), + [aux_sym_cmd_identifier_token38] = ACTIONS(1829), + [aux_sym_cmd_identifier_token39] = ACTIONS(1831), + [aux_sym_cmd_identifier_token40] = ACTIONS(1831), + [anon_sym_def] = ACTIONS(1829), + [anon_sym_export_DASHenv] = ACTIONS(1829), + [anon_sym_extern] = ACTIONS(1829), + [anon_sym_module] = ACTIONS(1829), + [anon_sym_use] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_COMMA] = ACTIONS(1831), + [anon_sym_DOLLAR] = ACTIONS(1829), + [anon_sym_error] = ACTIONS(1829), + [anon_sym_DASH2] = ACTIONS(1829), + [anon_sym_break] = ACTIONS(1829), + [anon_sym_continue] = ACTIONS(1829), + [anon_sym_for] = ACTIONS(1829), + [anon_sym_in2] = ACTIONS(1829), + [anon_sym_loop] = ACTIONS(1829), + [anon_sym_make] = ACTIONS(1829), + [anon_sym_while] = ACTIONS(1829), + [anon_sym_do] = ACTIONS(1829), + [anon_sym_if] = ACTIONS(1829), + [anon_sym_else] = ACTIONS(1829), + [anon_sym_match] = ACTIONS(1829), + [anon_sym_RBRACE] = ACTIONS(1831), + [anon_sym_try] = ACTIONS(1829), + [anon_sym_catch] = ACTIONS(1829), + [anon_sym_return] = ACTIONS(1829), + [anon_sym_source] = ACTIONS(1829), + [anon_sym_source_DASHenv] = ACTIONS(1829), + [anon_sym_hide] = ACTIONS(1829), + [anon_sym_hide_DASHenv] = ACTIONS(1829), + [anon_sym_overlay] = ACTIONS(1829), + [anon_sym_as] = ACTIONS(1829), + [anon_sym_PLUS2] = ACTIONS(1829), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1831), + [aux_sym__val_number_decimal_token1] = ACTIONS(1829), + [aux_sym__val_number_decimal_token2] = ACTIONS(1831), + [aux_sym__val_number_decimal_token3] = ACTIONS(1831), + [aux_sym__val_number_decimal_token4] = ACTIONS(1831), + [aux_sym__val_number_token1] = ACTIONS(1831), + [aux_sym__val_number_token2] = ACTIONS(1831), + [aux_sym__val_number_token3] = ACTIONS(1831), + [aux_sym__val_number_token4] = ACTIONS(1829), + [aux_sym__val_number_token5] = ACTIONS(1829), + [aux_sym__val_number_token6] = ACTIONS(1829), + [anon_sym_DQUOTE] = ACTIONS(1831), + [sym__str_single_quotes] = ACTIONS(1831), + [sym__str_back_ticks] = ACTIONS(1831), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1831), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1831), + [anon_sym_register] = ACTIONS(1829), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1831), }, - [733] = { - [sym_comment] = STATE(733), - [anon_sym_export] = ACTIONS(1901), - [anon_sym_alias] = ACTIONS(1901), - [anon_sym_let] = ACTIONS(1901), - [anon_sym_let_DASHenv] = ACTIONS(1901), - [anon_sym_mut] = ACTIONS(1901), - [anon_sym_const] = ACTIONS(1901), - [aux_sym_cmd_identifier_token1] = ACTIONS(1901), - [aux_sym_cmd_identifier_token2] = ACTIONS(1903), - [aux_sym_cmd_identifier_token3] = ACTIONS(1903), - [aux_sym_cmd_identifier_token4] = ACTIONS(1903), - [aux_sym_cmd_identifier_token5] = ACTIONS(1903), - [aux_sym_cmd_identifier_token6] = ACTIONS(1903), - [aux_sym_cmd_identifier_token7] = ACTIONS(1903), - [aux_sym_cmd_identifier_token8] = ACTIONS(1901), - [aux_sym_cmd_identifier_token9] = ACTIONS(1901), - [aux_sym_cmd_identifier_token10] = ACTIONS(1903), - [aux_sym_cmd_identifier_token11] = ACTIONS(1903), - [aux_sym_cmd_identifier_token12] = ACTIONS(1901), - [aux_sym_cmd_identifier_token13] = ACTIONS(1901), - [aux_sym_cmd_identifier_token14] = ACTIONS(1901), - [aux_sym_cmd_identifier_token15] = ACTIONS(1901), - [aux_sym_cmd_identifier_token16] = ACTIONS(1903), - [aux_sym_cmd_identifier_token17] = ACTIONS(1903), - [aux_sym_cmd_identifier_token18] = ACTIONS(1903), - [aux_sym_cmd_identifier_token19] = ACTIONS(1903), - [aux_sym_cmd_identifier_token20] = ACTIONS(1903), - [aux_sym_cmd_identifier_token21] = ACTIONS(1903), - [aux_sym_cmd_identifier_token22] = ACTIONS(1903), - [aux_sym_cmd_identifier_token23] = ACTIONS(1903), - [aux_sym_cmd_identifier_token24] = ACTIONS(1903), - [aux_sym_cmd_identifier_token25] = ACTIONS(1903), - [aux_sym_cmd_identifier_token26] = ACTIONS(1903), - [aux_sym_cmd_identifier_token27] = ACTIONS(1903), - [aux_sym_cmd_identifier_token28] = ACTIONS(1903), - [aux_sym_cmd_identifier_token29] = ACTIONS(1903), - [aux_sym_cmd_identifier_token30] = ACTIONS(1903), - [aux_sym_cmd_identifier_token31] = ACTIONS(1903), - [aux_sym_cmd_identifier_token32] = ACTIONS(1903), - [aux_sym_cmd_identifier_token33] = ACTIONS(1903), - [aux_sym_cmd_identifier_token34] = ACTIONS(1901), - [aux_sym_cmd_identifier_token35] = ACTIONS(1903), - [aux_sym_cmd_identifier_token36] = ACTIONS(1903), - [aux_sym_cmd_identifier_token37] = ACTIONS(1903), - [aux_sym_cmd_identifier_token38] = ACTIONS(1901), - [aux_sym_cmd_identifier_token39] = ACTIONS(1903), - [aux_sym_cmd_identifier_token40] = ACTIONS(1903), - [anon_sym_def] = ACTIONS(1901), - [anon_sym_export_DASHenv] = ACTIONS(1901), - [anon_sym_extern] = ACTIONS(1901), - [anon_sym_module] = ACTIONS(1901), - [anon_sym_use] = ACTIONS(1901), - [anon_sym_LPAREN] = ACTIONS(1903), - [anon_sym_COMMA] = ACTIONS(1903), - [anon_sym_DOLLAR] = ACTIONS(1901), - [anon_sym_error] = ACTIONS(1901), - [anon_sym_DASH2] = ACTIONS(1901), - [anon_sym_break] = ACTIONS(1901), - [anon_sym_continue] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_in2] = ACTIONS(1901), - [anon_sym_loop] = ACTIONS(1901), - [anon_sym_make] = ACTIONS(1901), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_do] = ACTIONS(1901), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_else] = ACTIONS(1901), - [anon_sym_match] = ACTIONS(1901), - [anon_sym_RBRACE] = ACTIONS(1903), - [anon_sym_try] = ACTIONS(1901), - [anon_sym_catch] = ACTIONS(1901), - [anon_sym_return] = ACTIONS(1901), - [anon_sym_source] = ACTIONS(1901), - [anon_sym_source_DASHenv] = ACTIONS(1901), - [anon_sym_hide] = ACTIONS(1901), - [anon_sym_hide_DASHenv] = ACTIONS(1901), - [anon_sym_overlay] = ACTIONS(1901), - [anon_sym_as] = ACTIONS(1901), - [anon_sym_PLUS2] = ACTIONS(1901), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1903), - [aux_sym__val_number_decimal_token1] = ACTIONS(1901), - [aux_sym__val_number_decimal_token2] = ACTIONS(1903), - [aux_sym__val_number_decimal_token3] = ACTIONS(1903), - [aux_sym__val_number_decimal_token4] = ACTIONS(1903), - [aux_sym__val_number_token1] = ACTIONS(1903), - [aux_sym__val_number_token2] = ACTIONS(1903), - [aux_sym__val_number_token3] = ACTIONS(1903), - [aux_sym__val_number_token4] = ACTIONS(1901), - [aux_sym__val_number_token5] = ACTIONS(1901), - [aux_sym__val_number_token6] = ACTIONS(1901), - [anon_sym_DQUOTE] = ACTIONS(1903), - [sym__str_single_quotes] = ACTIONS(1903), - [sym__str_back_ticks] = ACTIONS(1903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1903), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1903), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1903), - [anon_sym_register] = ACTIONS(1901), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1903), + [691] = { + [sym_comment] = STATE(691), + [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(2272), + [anon_sym_COMMA] = ACTIONS(2272), + [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(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_hide] = ACTIONS(2270), + [anon_sym_hide_DASHenv] = ACTIONS(2270), + [anon_sym_overlay] = ACTIONS(2270), + [anon_sym_as] = ACTIONS(2270), + [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_DOLLAR_SQUOTE] = ACTIONS(2272), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2272), + [anon_sym_register] = ACTIONS(2270), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2272), }, - [734] = { - [sym_comment] = STATE(734), - [anon_sym_export] = ACTIONS(1967), - [anon_sym_alias] = ACTIONS(1967), - [anon_sym_let] = ACTIONS(1967), - [anon_sym_let_DASHenv] = ACTIONS(1967), - [anon_sym_mut] = ACTIONS(1967), - [anon_sym_const] = ACTIONS(1967), - [aux_sym_cmd_identifier_token1] = ACTIONS(1967), - [aux_sym_cmd_identifier_token2] = ACTIONS(1969), - [aux_sym_cmd_identifier_token3] = ACTIONS(1969), - [aux_sym_cmd_identifier_token4] = ACTIONS(1969), - [aux_sym_cmd_identifier_token5] = ACTIONS(1969), - [aux_sym_cmd_identifier_token6] = ACTIONS(1969), - [aux_sym_cmd_identifier_token7] = ACTIONS(1969), - [aux_sym_cmd_identifier_token8] = ACTIONS(1967), - [aux_sym_cmd_identifier_token9] = ACTIONS(1967), - [aux_sym_cmd_identifier_token10] = ACTIONS(1969), - [aux_sym_cmd_identifier_token11] = ACTIONS(1969), - [aux_sym_cmd_identifier_token12] = ACTIONS(1967), - [aux_sym_cmd_identifier_token13] = ACTIONS(1967), - [aux_sym_cmd_identifier_token14] = ACTIONS(1967), - [aux_sym_cmd_identifier_token15] = ACTIONS(1967), - [aux_sym_cmd_identifier_token16] = ACTIONS(1969), - [aux_sym_cmd_identifier_token17] = ACTIONS(1969), - [aux_sym_cmd_identifier_token18] = ACTIONS(1969), - [aux_sym_cmd_identifier_token19] = ACTIONS(1969), - [aux_sym_cmd_identifier_token20] = ACTIONS(1969), - [aux_sym_cmd_identifier_token21] = ACTIONS(1969), - [aux_sym_cmd_identifier_token22] = ACTIONS(1969), - [aux_sym_cmd_identifier_token23] = ACTIONS(1969), - [aux_sym_cmd_identifier_token24] = ACTIONS(1969), - [aux_sym_cmd_identifier_token25] = ACTIONS(1969), - [aux_sym_cmd_identifier_token26] = ACTIONS(1969), - [aux_sym_cmd_identifier_token27] = ACTIONS(1969), - [aux_sym_cmd_identifier_token28] = ACTIONS(1969), - [aux_sym_cmd_identifier_token29] = ACTIONS(1969), - [aux_sym_cmd_identifier_token30] = ACTIONS(1969), - [aux_sym_cmd_identifier_token31] = ACTIONS(1969), - [aux_sym_cmd_identifier_token32] = ACTIONS(1969), - [aux_sym_cmd_identifier_token33] = ACTIONS(1969), - [aux_sym_cmd_identifier_token34] = ACTIONS(1967), - [aux_sym_cmd_identifier_token35] = ACTIONS(1969), - [aux_sym_cmd_identifier_token36] = ACTIONS(1969), - [aux_sym_cmd_identifier_token37] = ACTIONS(1969), - [aux_sym_cmd_identifier_token38] = ACTIONS(1967), - [aux_sym_cmd_identifier_token39] = ACTIONS(1969), - [aux_sym_cmd_identifier_token40] = ACTIONS(1969), - [anon_sym_def] = ACTIONS(1967), - [anon_sym_export_DASHenv] = ACTIONS(1967), - [anon_sym_extern] = ACTIONS(1967), - [anon_sym_module] = ACTIONS(1967), - [anon_sym_use] = ACTIONS(1967), - [anon_sym_LPAREN] = ACTIONS(1969), - [anon_sym_COMMA] = ACTIONS(1969), - [anon_sym_DOLLAR] = ACTIONS(1967), - [anon_sym_error] = ACTIONS(1967), - [anon_sym_DASH2] = ACTIONS(1967), - [anon_sym_break] = ACTIONS(1967), - [anon_sym_continue] = ACTIONS(1967), - [anon_sym_for] = ACTIONS(1967), - [anon_sym_in2] = ACTIONS(1967), - [anon_sym_loop] = ACTIONS(1967), - [anon_sym_make] = ACTIONS(1967), - [anon_sym_while] = ACTIONS(1967), - [anon_sym_do] = ACTIONS(1967), - [anon_sym_if] = ACTIONS(1967), - [anon_sym_else] = ACTIONS(1967), - [anon_sym_match] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(1969), - [anon_sym_try] = ACTIONS(1967), - [anon_sym_catch] = ACTIONS(1967), - [anon_sym_return] = ACTIONS(1967), - [anon_sym_source] = ACTIONS(1967), - [anon_sym_source_DASHenv] = ACTIONS(1967), - [anon_sym_hide] = ACTIONS(1967), - [anon_sym_hide_DASHenv] = ACTIONS(1967), - [anon_sym_overlay] = ACTIONS(1967), - [anon_sym_as] = ACTIONS(1967), - [anon_sym_PLUS2] = ACTIONS(1967), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1969), - [aux_sym__val_number_decimal_token1] = ACTIONS(1967), - [aux_sym__val_number_decimal_token2] = ACTIONS(1969), - [aux_sym__val_number_decimal_token3] = ACTIONS(1969), - [aux_sym__val_number_decimal_token4] = ACTIONS(1969), - [aux_sym__val_number_token1] = ACTIONS(1969), - [aux_sym__val_number_token2] = ACTIONS(1969), - [aux_sym__val_number_token3] = ACTIONS(1969), - [aux_sym__val_number_token4] = ACTIONS(1967), - [aux_sym__val_number_token5] = ACTIONS(1967), - [aux_sym__val_number_token6] = ACTIONS(1967), - [anon_sym_DQUOTE] = ACTIONS(1969), - [sym__str_single_quotes] = ACTIONS(1969), - [sym__str_back_ticks] = ACTIONS(1969), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1969), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1969), - [anon_sym_register] = ACTIONS(1967), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1969), + [692] = { + [sym_comment] = STATE(692), + [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(2276), + [anon_sym_COMMA] = ACTIONS(2276), + [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(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_hide] = ACTIONS(2274), + [anon_sym_hide_DASHenv] = ACTIONS(2274), + [anon_sym_overlay] = ACTIONS(2274), + [anon_sym_as] = ACTIONS(2274), + [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_DOLLAR_SQUOTE] = ACTIONS(2276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2276), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2276), + [anon_sym_register] = ACTIONS(2274), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2276), }, - [735] = { - [sym_comment] = STATE(735), - [anon_sym_export] = ACTIONS(2306), - [anon_sym_alias] = ACTIONS(2306), - [anon_sym_let] = ACTIONS(2306), - [anon_sym_let_DASHenv] = ACTIONS(2306), - [anon_sym_mut] = ACTIONS(2306), - [anon_sym_const] = ACTIONS(2306), - [aux_sym_cmd_identifier_token1] = ACTIONS(2306), - [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(2306), - [aux_sym_cmd_identifier_token9] = ACTIONS(2306), - [aux_sym_cmd_identifier_token10] = ACTIONS(2308), - [aux_sym_cmd_identifier_token11] = ACTIONS(2308), - [aux_sym_cmd_identifier_token12] = ACTIONS(2306), - [aux_sym_cmd_identifier_token13] = ACTIONS(2306), - [aux_sym_cmd_identifier_token14] = ACTIONS(2306), - [aux_sym_cmd_identifier_token15] = ACTIONS(2306), - [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(2306), - [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(2306), - [aux_sym_cmd_identifier_token39] = ACTIONS(2308), - [aux_sym_cmd_identifier_token40] = ACTIONS(2308), - [anon_sym_def] = ACTIONS(2306), - [anon_sym_export_DASHenv] = ACTIONS(2306), - [anon_sym_extern] = ACTIONS(2306), - [anon_sym_module] = ACTIONS(2306), - [anon_sym_use] = ACTIONS(2306), - [anon_sym_LPAREN] = ACTIONS(2308), - [anon_sym_COMMA] = ACTIONS(2308), - [anon_sym_DOLLAR] = ACTIONS(2306), - [anon_sym_error] = ACTIONS(2306), - [anon_sym_DASH2] = ACTIONS(2306), - [anon_sym_break] = ACTIONS(2306), - [anon_sym_continue] = ACTIONS(2306), - [anon_sym_for] = ACTIONS(2306), - [anon_sym_in2] = ACTIONS(2306), - [anon_sym_loop] = ACTIONS(2306), - [anon_sym_make] = ACTIONS(2306), - [anon_sym_while] = ACTIONS(2306), - [anon_sym_do] = ACTIONS(2306), - [anon_sym_if] = ACTIONS(2306), - [anon_sym_else] = ACTIONS(2306), - [anon_sym_match] = ACTIONS(2306), - [anon_sym_RBRACE] = ACTIONS(2308), - [anon_sym_try] = ACTIONS(2306), - [anon_sym_catch] = ACTIONS(2306), - [anon_sym_return] = ACTIONS(2306), - [anon_sym_source] = ACTIONS(2306), - [anon_sym_source_DASHenv] = ACTIONS(2306), - [anon_sym_hide] = ACTIONS(2306), - [anon_sym_hide_DASHenv] = ACTIONS(2306), - [anon_sym_overlay] = ACTIONS(2306), - [anon_sym_as] = ACTIONS(2306), - [anon_sym_PLUS2] = ACTIONS(2306), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2308), - [aux_sym__val_number_decimal_token1] = ACTIONS(2306), - [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(2306), - [aux_sym__val_number_token5] = ACTIONS(2306), - [aux_sym__val_number_token6] = ACTIONS(2306), - [anon_sym_DQUOTE] = ACTIONS(2308), - [sym__str_single_quotes] = ACTIONS(2308), - [sym__str_back_ticks] = ACTIONS(2308), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2308), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2308), - [anon_sym_register] = ACTIONS(2306), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2308), + [693] = { + [sym_comment] = STATE(693), + [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_COMMA] = ACTIONS(2415), + [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(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_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_DOLLAR_SQUOTE] = ACTIONS(2415), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2415), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2415), + [anon_sym_register] = ACTIONS(2413), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2415), }, - [736] = { - [sym_comment] = STATE(736), - [anon_sym_export] = ACTIONS(1790), - [anon_sym_alias] = ACTIONS(1790), - [anon_sym_let] = ACTIONS(1790), - [anon_sym_let_DASHenv] = ACTIONS(1790), - [anon_sym_mut] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [aux_sym_cmd_identifier_token1] = ACTIONS(1790), - [aux_sym_cmd_identifier_token2] = ACTIONS(1792), - [aux_sym_cmd_identifier_token3] = ACTIONS(1792), - [aux_sym_cmd_identifier_token4] = ACTIONS(1792), - [aux_sym_cmd_identifier_token5] = ACTIONS(1792), - [aux_sym_cmd_identifier_token6] = ACTIONS(1792), - [aux_sym_cmd_identifier_token7] = ACTIONS(1792), - [aux_sym_cmd_identifier_token8] = ACTIONS(1790), - [aux_sym_cmd_identifier_token9] = ACTIONS(1790), - [aux_sym_cmd_identifier_token10] = ACTIONS(1792), - [aux_sym_cmd_identifier_token11] = ACTIONS(1792), - [aux_sym_cmd_identifier_token12] = ACTIONS(1790), - [aux_sym_cmd_identifier_token13] = ACTIONS(1790), - [aux_sym_cmd_identifier_token14] = ACTIONS(1790), - [aux_sym_cmd_identifier_token15] = ACTIONS(1790), - [aux_sym_cmd_identifier_token16] = ACTIONS(1792), - [aux_sym_cmd_identifier_token17] = ACTIONS(1792), - [aux_sym_cmd_identifier_token18] = ACTIONS(1792), - [aux_sym_cmd_identifier_token19] = ACTIONS(1792), - [aux_sym_cmd_identifier_token20] = ACTIONS(1792), - [aux_sym_cmd_identifier_token21] = ACTIONS(1792), - [aux_sym_cmd_identifier_token22] = ACTIONS(1792), - [aux_sym_cmd_identifier_token23] = ACTIONS(1792), - [aux_sym_cmd_identifier_token24] = ACTIONS(1792), - [aux_sym_cmd_identifier_token25] = ACTIONS(1792), - [aux_sym_cmd_identifier_token26] = ACTIONS(1792), - [aux_sym_cmd_identifier_token27] = ACTIONS(1792), - [aux_sym_cmd_identifier_token28] = ACTIONS(1792), - [aux_sym_cmd_identifier_token29] = ACTIONS(1792), - [aux_sym_cmd_identifier_token30] = ACTIONS(1792), - [aux_sym_cmd_identifier_token31] = ACTIONS(1792), - [aux_sym_cmd_identifier_token32] = ACTIONS(1792), - [aux_sym_cmd_identifier_token33] = ACTIONS(1792), - [aux_sym_cmd_identifier_token34] = ACTIONS(1790), - [aux_sym_cmd_identifier_token35] = ACTIONS(1792), - [aux_sym_cmd_identifier_token36] = ACTIONS(1792), - [aux_sym_cmd_identifier_token37] = ACTIONS(1792), - [aux_sym_cmd_identifier_token38] = ACTIONS(1790), - [aux_sym_cmd_identifier_token39] = ACTIONS(1792), - [aux_sym_cmd_identifier_token40] = ACTIONS(1792), - [anon_sym_def] = ACTIONS(1790), - [anon_sym_export_DASHenv] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym_module] = ACTIONS(1790), - [anon_sym_use] = ACTIONS(1790), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1790), - [anon_sym_error] = ACTIONS(1790), - [anon_sym_DASH2] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_in2] = ACTIONS(1790), - [anon_sym_loop] = ACTIONS(1790), - [anon_sym_make] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_match] = ACTIONS(1790), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_catch] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_source] = ACTIONS(1790), - [anon_sym_source_DASHenv] = ACTIONS(1790), - [anon_sym_hide] = ACTIONS(1790), - [anon_sym_hide_DASHenv] = ACTIONS(1790), - [anon_sym_overlay] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_PLUS2] = ACTIONS(1790), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1792), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1792), - [aux_sym__val_number_decimal_token1] = ACTIONS(1790), - [aux_sym__val_number_decimal_token2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1792), - [aux_sym__val_number_decimal_token4] = ACTIONS(1792), - [aux_sym__val_number_token1] = ACTIONS(1792), - [aux_sym__val_number_token2] = ACTIONS(1792), - [aux_sym__val_number_token3] = ACTIONS(1792), - [aux_sym__val_number_token4] = ACTIONS(1790), - [aux_sym__val_number_token5] = ACTIONS(1790), - [aux_sym__val_number_token6] = ACTIONS(1790), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym__str_single_quotes] = ACTIONS(1792), - [sym__str_back_ticks] = ACTIONS(1792), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1792), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1792), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1792), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1792), + [694] = { + [sym_comment] = STATE(694), + [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(2419), + [aux_sym_cmd_identifier_token3] = ACTIONS(2419), + [aux_sym_cmd_identifier_token4] = ACTIONS(2419), + [aux_sym_cmd_identifier_token5] = ACTIONS(2419), + [aux_sym_cmd_identifier_token6] = ACTIONS(2419), + [aux_sym_cmd_identifier_token7] = ACTIONS(2419), + [aux_sym_cmd_identifier_token8] = ACTIONS(2417), + [aux_sym_cmd_identifier_token9] = ACTIONS(2417), + [aux_sym_cmd_identifier_token10] = ACTIONS(2419), + [aux_sym_cmd_identifier_token11] = ACTIONS(2419), + [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(2419), + [aux_sym_cmd_identifier_token17] = ACTIONS(2419), + [aux_sym_cmd_identifier_token18] = ACTIONS(2419), + [aux_sym_cmd_identifier_token19] = ACTIONS(2419), + [aux_sym_cmd_identifier_token20] = ACTIONS(2419), + [aux_sym_cmd_identifier_token21] = ACTIONS(2419), + [aux_sym_cmd_identifier_token22] = ACTIONS(2419), + [aux_sym_cmd_identifier_token23] = ACTIONS(2419), + [aux_sym_cmd_identifier_token24] = ACTIONS(2419), + [aux_sym_cmd_identifier_token25] = ACTIONS(2419), + [aux_sym_cmd_identifier_token26] = ACTIONS(2419), + [aux_sym_cmd_identifier_token27] = ACTIONS(2419), + [aux_sym_cmd_identifier_token28] = ACTIONS(2419), + [aux_sym_cmd_identifier_token29] = ACTIONS(2419), + [aux_sym_cmd_identifier_token30] = ACTIONS(2419), + [aux_sym_cmd_identifier_token31] = ACTIONS(2419), + [aux_sym_cmd_identifier_token32] = ACTIONS(2419), + [aux_sym_cmd_identifier_token33] = ACTIONS(2419), + [aux_sym_cmd_identifier_token34] = ACTIONS(2417), + [aux_sym_cmd_identifier_token35] = ACTIONS(2419), + [aux_sym_cmd_identifier_token36] = ACTIONS(2419), + [aux_sym_cmd_identifier_token37] = ACTIONS(2419), + [aux_sym_cmd_identifier_token38] = ACTIONS(2417), + [aux_sym_cmd_identifier_token39] = ACTIONS(2419), + [aux_sym_cmd_identifier_token40] = ACTIONS(2419), + [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(2419), + [anon_sym_COMMA] = ACTIONS(2419), + [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(2419), + [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_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(2419), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2419), + [aux_sym__val_number_decimal_token1] = ACTIONS(2417), + [aux_sym__val_number_decimal_token2] = ACTIONS(2419), + [aux_sym__val_number_decimal_token3] = ACTIONS(2419), + [aux_sym__val_number_decimal_token4] = ACTIONS(2419), + [aux_sym__val_number_token1] = ACTIONS(2419), + [aux_sym__val_number_token2] = ACTIONS(2419), + [aux_sym__val_number_token3] = ACTIONS(2419), + [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(2419), + [sym__str_single_quotes] = ACTIONS(2419), + [sym__str_back_ticks] = ACTIONS(2419), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2419), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2419), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2419), + [anon_sym_register] = ACTIONS(2417), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2419), }, - [737] = { - [sym_comment] = STATE(737), - [anon_sym_export] = ACTIONS(2310), - [anon_sym_alias] = ACTIONS(2310), - [anon_sym_let] = ACTIONS(2310), - [anon_sym_let_DASHenv] = ACTIONS(2310), - [anon_sym_mut] = ACTIONS(2310), - [anon_sym_const] = ACTIONS(2310), - [aux_sym_cmd_identifier_token1] = ACTIONS(2310), - [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(2310), - [aux_sym_cmd_identifier_token9] = ACTIONS(2310), - [aux_sym_cmd_identifier_token10] = ACTIONS(2312), - [aux_sym_cmd_identifier_token11] = ACTIONS(2312), - [aux_sym_cmd_identifier_token12] = ACTIONS(2310), - [aux_sym_cmd_identifier_token13] = ACTIONS(2310), - [aux_sym_cmd_identifier_token14] = ACTIONS(2310), - [aux_sym_cmd_identifier_token15] = ACTIONS(2310), - [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(2310), - [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(2310), - [aux_sym_cmd_identifier_token39] = ACTIONS(2312), - [aux_sym_cmd_identifier_token40] = ACTIONS(2312), - [anon_sym_def] = ACTIONS(2310), - [anon_sym_export_DASHenv] = ACTIONS(2310), - [anon_sym_extern] = ACTIONS(2310), - [anon_sym_module] = ACTIONS(2310), - [anon_sym_use] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2312), - [anon_sym_COMMA] = ACTIONS(2312), - [anon_sym_DOLLAR] = ACTIONS(2310), - [anon_sym_error] = ACTIONS(2310), - [anon_sym_DASH2] = ACTIONS(2310), - [anon_sym_break] = ACTIONS(2310), - [anon_sym_continue] = ACTIONS(2310), - [anon_sym_for] = ACTIONS(2310), - [anon_sym_in2] = ACTIONS(2310), - [anon_sym_loop] = ACTIONS(2310), - [anon_sym_make] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2310), - [anon_sym_do] = ACTIONS(2310), - [anon_sym_if] = ACTIONS(2310), - [anon_sym_else] = ACTIONS(2310), - [anon_sym_match] = ACTIONS(2310), - [anon_sym_RBRACE] = ACTIONS(2312), - [anon_sym_try] = ACTIONS(2310), - [anon_sym_catch] = ACTIONS(2310), - [anon_sym_return] = ACTIONS(2310), - [anon_sym_source] = ACTIONS(2310), - [anon_sym_source_DASHenv] = ACTIONS(2310), - [anon_sym_hide] = ACTIONS(2310), - [anon_sym_hide_DASHenv] = ACTIONS(2310), - [anon_sym_overlay] = ACTIONS(2310), - [anon_sym_as] = ACTIONS(2310), - [anon_sym_PLUS2] = ACTIONS(2310), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2312), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2312), - [aux_sym__val_number_decimal_token1] = ACTIONS(2310), - [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(2310), - [aux_sym__val_number_token5] = ACTIONS(2310), - [aux_sym__val_number_token6] = ACTIONS(2310), - [anon_sym_DQUOTE] = ACTIONS(2312), - [sym__str_single_quotes] = ACTIONS(2312), - [sym__str_back_ticks] = ACTIONS(2312), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2312), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2312), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2312), - [anon_sym_register] = ACTIONS(2310), + [695] = { + [sym_comment] = STATE(695), + [anon_sym_export] = ACTIONS(1875), + [anon_sym_alias] = ACTIONS(1875), + [anon_sym_let] = ACTIONS(1875), + [anon_sym_let_DASHenv] = ACTIONS(1875), + [anon_sym_mut] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [aux_sym_cmd_identifier_token1] = ACTIONS(1875), + [aux_sym_cmd_identifier_token2] = ACTIONS(1877), + [aux_sym_cmd_identifier_token3] = ACTIONS(1877), + [aux_sym_cmd_identifier_token4] = ACTIONS(1877), + [aux_sym_cmd_identifier_token5] = ACTIONS(1877), + [aux_sym_cmd_identifier_token6] = ACTIONS(1877), + [aux_sym_cmd_identifier_token7] = ACTIONS(1877), + [aux_sym_cmd_identifier_token8] = ACTIONS(1875), + [aux_sym_cmd_identifier_token9] = ACTIONS(1875), + [aux_sym_cmd_identifier_token10] = ACTIONS(1877), + [aux_sym_cmd_identifier_token11] = ACTIONS(1877), + [aux_sym_cmd_identifier_token12] = ACTIONS(1875), + [aux_sym_cmd_identifier_token13] = ACTIONS(1875), + [aux_sym_cmd_identifier_token14] = ACTIONS(1875), + [aux_sym_cmd_identifier_token15] = ACTIONS(1875), + [aux_sym_cmd_identifier_token16] = ACTIONS(1877), + [aux_sym_cmd_identifier_token17] = ACTIONS(1877), + [aux_sym_cmd_identifier_token18] = ACTIONS(1877), + [aux_sym_cmd_identifier_token19] = ACTIONS(1877), + [aux_sym_cmd_identifier_token20] = ACTIONS(1877), + [aux_sym_cmd_identifier_token21] = ACTIONS(1877), + [aux_sym_cmd_identifier_token22] = ACTIONS(1877), + [aux_sym_cmd_identifier_token23] = ACTIONS(1877), + [aux_sym_cmd_identifier_token24] = ACTIONS(1877), + [aux_sym_cmd_identifier_token25] = ACTIONS(1877), + [aux_sym_cmd_identifier_token26] = ACTIONS(1877), + [aux_sym_cmd_identifier_token27] = ACTIONS(1877), + [aux_sym_cmd_identifier_token28] = ACTIONS(1877), + [aux_sym_cmd_identifier_token29] = ACTIONS(1877), + [aux_sym_cmd_identifier_token30] = ACTIONS(1877), + [aux_sym_cmd_identifier_token31] = ACTIONS(1877), + [aux_sym_cmd_identifier_token32] = ACTIONS(1877), + [aux_sym_cmd_identifier_token33] = ACTIONS(1877), + [aux_sym_cmd_identifier_token34] = ACTIONS(1875), + [aux_sym_cmd_identifier_token35] = ACTIONS(1877), + [aux_sym_cmd_identifier_token36] = ACTIONS(1877), + [aux_sym_cmd_identifier_token37] = ACTIONS(1877), + [aux_sym_cmd_identifier_token38] = ACTIONS(1875), + [aux_sym_cmd_identifier_token39] = ACTIONS(1877), + [aux_sym_cmd_identifier_token40] = ACTIONS(1877), + [anon_sym_def] = ACTIONS(1875), + [anon_sym_export_DASHenv] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1875), + [anon_sym_module] = ACTIONS(1875), + [anon_sym_use] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_COMMA] = ACTIONS(1877), + [anon_sym_DOLLAR] = ACTIONS(1875), + [anon_sym_error] = ACTIONS(1875), + [anon_sym_DASH2] = ACTIONS(1875), + [anon_sym_break] = ACTIONS(1875), + [anon_sym_continue] = ACTIONS(1875), + [anon_sym_for] = ACTIONS(1875), + [anon_sym_in2] = ACTIONS(1875), + [anon_sym_loop] = ACTIONS(1875), + [anon_sym_make] = ACTIONS(1875), + [anon_sym_while] = ACTIONS(1875), + [anon_sym_do] = ACTIONS(1875), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_else] = ACTIONS(1875), + [anon_sym_match] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_try] = ACTIONS(1875), + [anon_sym_catch] = ACTIONS(1875), + [anon_sym_return] = ACTIONS(1875), + [anon_sym_source] = ACTIONS(1875), + [anon_sym_source_DASHenv] = ACTIONS(1875), + [anon_sym_hide] = ACTIONS(1875), + [anon_sym_hide_DASHenv] = ACTIONS(1875), + [anon_sym_overlay] = ACTIONS(1875), + [anon_sym_as] = ACTIONS(1875), + [anon_sym_PLUS2] = ACTIONS(1875), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1877), + [aux_sym__val_number_decimal_token1] = ACTIONS(1875), + [aux_sym__val_number_decimal_token2] = ACTIONS(1877), + [aux_sym__val_number_decimal_token3] = ACTIONS(1877), + [aux_sym__val_number_decimal_token4] = ACTIONS(1877), + [aux_sym__val_number_token1] = ACTIONS(1877), + [aux_sym__val_number_token2] = ACTIONS(1877), + [aux_sym__val_number_token3] = ACTIONS(1877), + [aux_sym__val_number_token4] = ACTIONS(1875), + [aux_sym__val_number_token5] = ACTIONS(1875), + [aux_sym__val_number_token6] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1877), + [sym__str_single_quotes] = ACTIONS(1877), + [sym__str_back_ticks] = ACTIONS(1877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1877), + [anon_sym_register] = ACTIONS(1875), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2312), + [sym_raw_string_begin] = ACTIONS(1877), }, - [738] = { - [sym_comment] = STATE(738), - [anon_sym_export] = ACTIONS(1989), - [anon_sym_alias] = ACTIONS(1989), - [anon_sym_let] = ACTIONS(1989), - [anon_sym_let_DASHenv] = ACTIONS(1989), - [anon_sym_mut] = ACTIONS(1989), - [anon_sym_const] = ACTIONS(1989), - [aux_sym_cmd_identifier_token1] = ACTIONS(1989), - [aux_sym_cmd_identifier_token2] = ACTIONS(1991), - [aux_sym_cmd_identifier_token3] = ACTIONS(1991), - [aux_sym_cmd_identifier_token4] = ACTIONS(1991), - [aux_sym_cmd_identifier_token5] = ACTIONS(1991), - [aux_sym_cmd_identifier_token6] = ACTIONS(1991), - [aux_sym_cmd_identifier_token7] = ACTIONS(1991), - [aux_sym_cmd_identifier_token8] = ACTIONS(1989), - [aux_sym_cmd_identifier_token9] = ACTIONS(1989), - [aux_sym_cmd_identifier_token10] = ACTIONS(1991), - [aux_sym_cmd_identifier_token11] = ACTIONS(1991), - [aux_sym_cmd_identifier_token12] = ACTIONS(1989), - [aux_sym_cmd_identifier_token13] = ACTIONS(1989), - [aux_sym_cmd_identifier_token14] = ACTIONS(1989), - [aux_sym_cmd_identifier_token15] = ACTIONS(1989), - [aux_sym_cmd_identifier_token16] = ACTIONS(1991), - [aux_sym_cmd_identifier_token17] = ACTIONS(1991), - [aux_sym_cmd_identifier_token18] = ACTIONS(1991), - [aux_sym_cmd_identifier_token19] = ACTIONS(1991), - [aux_sym_cmd_identifier_token20] = ACTIONS(1991), - [aux_sym_cmd_identifier_token21] = ACTIONS(1991), - [aux_sym_cmd_identifier_token22] = ACTIONS(1991), - [aux_sym_cmd_identifier_token23] = ACTIONS(1991), - [aux_sym_cmd_identifier_token24] = ACTIONS(1991), - [aux_sym_cmd_identifier_token25] = ACTIONS(1991), - [aux_sym_cmd_identifier_token26] = ACTIONS(1991), - [aux_sym_cmd_identifier_token27] = ACTIONS(1991), - [aux_sym_cmd_identifier_token28] = ACTIONS(1991), - [aux_sym_cmd_identifier_token29] = ACTIONS(1991), - [aux_sym_cmd_identifier_token30] = ACTIONS(1991), - [aux_sym_cmd_identifier_token31] = ACTIONS(1991), - [aux_sym_cmd_identifier_token32] = ACTIONS(1991), - [aux_sym_cmd_identifier_token33] = ACTIONS(1991), - [aux_sym_cmd_identifier_token34] = ACTIONS(1989), - [aux_sym_cmd_identifier_token35] = ACTIONS(1991), - [aux_sym_cmd_identifier_token36] = ACTIONS(1991), - [aux_sym_cmd_identifier_token37] = ACTIONS(1991), - [aux_sym_cmd_identifier_token38] = ACTIONS(1989), - [aux_sym_cmd_identifier_token39] = ACTIONS(1991), - [aux_sym_cmd_identifier_token40] = ACTIONS(1991), - [anon_sym_def] = ACTIONS(1989), - [anon_sym_export_DASHenv] = ACTIONS(1989), - [anon_sym_extern] = ACTIONS(1989), - [anon_sym_module] = ACTIONS(1989), - [anon_sym_use] = ACTIONS(1989), - [anon_sym_LPAREN] = ACTIONS(1991), - [anon_sym_COMMA] = ACTIONS(1991), - [anon_sym_DOLLAR] = ACTIONS(1989), - [anon_sym_error] = ACTIONS(1989), - [anon_sym_DASH2] = ACTIONS(1989), - [anon_sym_break] = ACTIONS(1989), - [anon_sym_continue] = ACTIONS(1989), - [anon_sym_for] = ACTIONS(1989), - [anon_sym_in2] = ACTIONS(1989), - [anon_sym_loop] = ACTIONS(1989), - [anon_sym_make] = ACTIONS(1989), - [anon_sym_while] = ACTIONS(1989), - [anon_sym_do] = ACTIONS(1989), - [anon_sym_if] = ACTIONS(1989), - [anon_sym_else] = ACTIONS(1989), - [anon_sym_match] = ACTIONS(1989), - [anon_sym_RBRACE] = ACTIONS(1991), - [anon_sym_try] = ACTIONS(1989), - [anon_sym_catch] = ACTIONS(1989), - [anon_sym_return] = ACTIONS(1989), - [anon_sym_source] = ACTIONS(1989), - [anon_sym_source_DASHenv] = ACTIONS(1989), - [anon_sym_hide] = ACTIONS(1989), - [anon_sym_hide_DASHenv] = ACTIONS(1989), - [anon_sym_overlay] = ACTIONS(1989), - [anon_sym_as] = ACTIONS(1989), - [anon_sym_PLUS2] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1991), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1991), - [aux_sym__val_number_decimal_token1] = ACTIONS(1989), - [aux_sym__val_number_decimal_token2] = ACTIONS(1991), - [aux_sym__val_number_decimal_token3] = ACTIONS(1991), - [aux_sym__val_number_decimal_token4] = ACTIONS(1991), - [aux_sym__val_number_token1] = ACTIONS(1991), - [aux_sym__val_number_token2] = ACTIONS(1991), - [aux_sym__val_number_token3] = ACTIONS(1991), - [aux_sym__val_number_token4] = ACTIONS(1989), - [aux_sym__val_number_token5] = ACTIONS(1989), - [aux_sym__val_number_token6] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [sym__str_single_quotes] = ACTIONS(1991), - [sym__str_back_ticks] = ACTIONS(1991), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1991), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1991), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1991), - [anon_sym_register] = ACTIONS(1989), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1991), + [696] = { + [sym_comment] = STATE(696), + [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(2280), + [anon_sym_COMMA] = ACTIONS(2280), + [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(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_hide] = ACTIONS(2278), + [anon_sym_hide_DASHenv] = ACTIONS(2278), + [anon_sym_overlay] = ACTIONS(2278), + [anon_sym_as] = ACTIONS(2278), + [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_DOLLAR_SQUOTE] = ACTIONS(2280), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2280), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2280), + [anon_sym_register] = ACTIONS(2278), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2280), }, - [739] = { - [sym_comment] = STATE(739), - [aux_sym_shebang_repeat1] = STATE(739), - [anon_sym_export] = ACTIONS(1284), - [anon_sym_alias] = ACTIONS(1284), - [anon_sym_let] = ACTIONS(1284), - [anon_sym_let_DASHenv] = ACTIONS(1284), - [anon_sym_mut] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [aux_sym_cmd_identifier_token1] = ACTIONS(1284), - [aux_sym_cmd_identifier_token2] = ACTIONS(1286), - [aux_sym_cmd_identifier_token3] = ACTIONS(1286), - [aux_sym_cmd_identifier_token4] = ACTIONS(1286), - [aux_sym_cmd_identifier_token5] = ACTIONS(1286), - [aux_sym_cmd_identifier_token6] = ACTIONS(1286), - [aux_sym_cmd_identifier_token7] = ACTIONS(1286), - [aux_sym_cmd_identifier_token8] = ACTIONS(1284), - [aux_sym_cmd_identifier_token9] = ACTIONS(1284), - [aux_sym_cmd_identifier_token10] = ACTIONS(1286), - [aux_sym_cmd_identifier_token11] = ACTIONS(1286), - [aux_sym_cmd_identifier_token12] = ACTIONS(1284), - [aux_sym_cmd_identifier_token13] = ACTIONS(1284), - [aux_sym_cmd_identifier_token14] = ACTIONS(1284), - [aux_sym_cmd_identifier_token15] = ACTIONS(1284), - [aux_sym_cmd_identifier_token16] = ACTIONS(1286), - [aux_sym_cmd_identifier_token17] = ACTIONS(1286), - [aux_sym_cmd_identifier_token18] = ACTIONS(1286), - [aux_sym_cmd_identifier_token19] = ACTIONS(1286), - [aux_sym_cmd_identifier_token20] = ACTIONS(1286), - [aux_sym_cmd_identifier_token21] = ACTIONS(1286), - [aux_sym_cmd_identifier_token22] = ACTIONS(1286), - [aux_sym_cmd_identifier_token23] = ACTIONS(1286), - [aux_sym_cmd_identifier_token24] = ACTIONS(1286), - [aux_sym_cmd_identifier_token25] = ACTIONS(1286), - [aux_sym_cmd_identifier_token26] = ACTIONS(1286), - [aux_sym_cmd_identifier_token27] = ACTIONS(1286), - [aux_sym_cmd_identifier_token28] = ACTIONS(1286), - [aux_sym_cmd_identifier_token29] = ACTIONS(1286), - [aux_sym_cmd_identifier_token30] = ACTIONS(1286), - [aux_sym_cmd_identifier_token31] = ACTIONS(1286), - [aux_sym_cmd_identifier_token32] = ACTIONS(1286), - [aux_sym_cmd_identifier_token33] = ACTIONS(1286), - [aux_sym_cmd_identifier_token34] = ACTIONS(1284), - [aux_sym_cmd_identifier_token35] = ACTIONS(1286), - [aux_sym_cmd_identifier_token36] = ACTIONS(1286), - [aux_sym_cmd_identifier_token37] = ACTIONS(1286), - [aux_sym_cmd_identifier_token38] = ACTIONS(1284), - [aux_sym_cmd_identifier_token39] = ACTIONS(1286), - [aux_sym_cmd_identifier_token40] = ACTIONS(1286), - [sym__newline] = ACTIONS(2489), - [anon_sym_def] = ACTIONS(1284), - [anon_sym_export_DASHenv] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym_module] = ACTIONS(1284), - [anon_sym_use] = ACTIONS(1284), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1284), - [anon_sym_error] = ACTIONS(1284), - [anon_sym_DASH2] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_in2] = ACTIONS(1284), - [anon_sym_loop] = ACTIONS(1284), - [anon_sym_make] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_do] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_else] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1284), - [anon_sym_try] = ACTIONS(1284), - [anon_sym_catch] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_source] = ACTIONS(1284), - [anon_sym_source_DASHenv] = ACTIONS(1284), - [anon_sym_hide] = ACTIONS(1284), - [anon_sym_hide_DASHenv] = ACTIONS(1284), - [anon_sym_overlay] = ACTIONS(1284), - [anon_sym_as] = ACTIONS(1284), - [anon_sym_PLUS2] = ACTIONS(1284), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1286), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1286), - [aux_sym__val_number_decimal_token1] = ACTIONS(1284), - [aux_sym__val_number_decimal_token2] = ACTIONS(1286), - [aux_sym__val_number_decimal_token3] = ACTIONS(1286), - [aux_sym__val_number_decimal_token4] = ACTIONS(1286), - [aux_sym__val_number_token1] = ACTIONS(1286), - [aux_sym__val_number_token2] = ACTIONS(1286), - [aux_sym__val_number_token3] = ACTIONS(1286), - [aux_sym__val_number_token4] = ACTIONS(1284), - [aux_sym__val_number_token5] = ACTIONS(1284), - [aux_sym__val_number_token6] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1286), - [sym__str_back_ticks] = ACTIONS(1286), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1286), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1286), - [anon_sym_register] = ACTIONS(1284), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1286), + [697] = { + [sym_comment] = STATE(697), + [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(2280), + [anon_sym_COMMA] = ACTIONS(2280), + [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(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_hide] = ACTIONS(2278), + [anon_sym_hide_DASHenv] = ACTIONS(2278), + [anon_sym_overlay] = ACTIONS(2278), + [anon_sym_as] = ACTIONS(2278), + [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_DOLLAR_SQUOTE] = ACTIONS(2280), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2280), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2280), + [anon_sym_register] = ACTIONS(2278), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2280), }, - [740] = { - [sym_comment] = STATE(740), - [anon_sym_export] = ACTIONS(986), - [anon_sym_alias] = ACTIONS(986), - [anon_sym_let] = ACTIONS(986), - [anon_sym_let_DASHenv] = ACTIONS(986), - [anon_sym_mut] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [aux_sym_cmd_identifier_token1] = ACTIONS(986), - [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(986), - [aux_sym_cmd_identifier_token9] = ACTIONS(986), - [aux_sym_cmd_identifier_token10] = ACTIONS(992), - [aux_sym_cmd_identifier_token11] = ACTIONS(992), - [aux_sym_cmd_identifier_token12] = ACTIONS(986), - [aux_sym_cmd_identifier_token13] = ACTIONS(986), - [aux_sym_cmd_identifier_token14] = ACTIONS(986), - [aux_sym_cmd_identifier_token15] = ACTIONS(986), - [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(986), - [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(986), - [aux_sym_cmd_identifier_token39] = ACTIONS(992), - [aux_sym_cmd_identifier_token40] = ACTIONS(992), - [anon_sym_def] = ACTIONS(986), - [anon_sym_export_DASHenv] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym_module] = ACTIONS(986), - [anon_sym_use] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_COMMA] = ACTIONS(996), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_error] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_in2] = ACTIONS(986), - [anon_sym_loop] = ACTIONS(986), - [anon_sym_make] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_do] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_match] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_try] = ACTIONS(986), - [anon_sym_catch] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_source] = ACTIONS(986), - [anon_sym_source_DASHenv] = ACTIONS(986), - [anon_sym_hide] = ACTIONS(986), - [anon_sym_hide_DASHenv] = ACTIONS(986), - [anon_sym_overlay] = ACTIONS(986), - [anon_sym_as] = ACTIONS(986), - [anon_sym_PLUS2] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), - [aux_sym__val_number_decimal_token1] = ACTIONS(986), - [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(986), - [aux_sym__val_number_token5] = ACTIONS(986), - [aux_sym__val_number_token6] = ACTIONS(986), - [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_DOT_DOT_DOT_LBRACE] = ACTIONS(992), - [anon_sym_register] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(992), + [698] = { + [sym_comment] = STATE(698), + [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_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_DOLLAR_SQUOTE] = ACTIONS(2429), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2429), + [sym__entry_separator] = ACTIONS(2431), + [anon_sym_register] = ACTIONS(2429), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2431), }, - [741] = { - [sym_comment] = STATE(741), - [anon_sym_export] = ACTIONS(958), - [anon_sym_alias] = ACTIONS(958), - [anon_sym_let] = ACTIONS(958), - [anon_sym_let_DASHenv] = ACTIONS(958), - [anon_sym_mut] = ACTIONS(958), - [anon_sym_const] = ACTIONS(958), - [aux_sym_cmd_identifier_token1] = ACTIONS(958), - [aux_sym_cmd_identifier_token2] = ACTIONS(960), - [aux_sym_cmd_identifier_token3] = ACTIONS(960), - [aux_sym_cmd_identifier_token4] = ACTIONS(960), - [aux_sym_cmd_identifier_token5] = ACTIONS(960), - [aux_sym_cmd_identifier_token6] = ACTIONS(960), - [aux_sym_cmd_identifier_token7] = ACTIONS(960), - [aux_sym_cmd_identifier_token8] = ACTIONS(958), - [aux_sym_cmd_identifier_token9] = ACTIONS(958), - [aux_sym_cmd_identifier_token10] = ACTIONS(960), - [aux_sym_cmd_identifier_token11] = ACTIONS(960), - [aux_sym_cmd_identifier_token12] = ACTIONS(958), - [aux_sym_cmd_identifier_token13] = ACTIONS(958), - [aux_sym_cmd_identifier_token14] = ACTIONS(958), - [aux_sym_cmd_identifier_token15] = ACTIONS(958), - [aux_sym_cmd_identifier_token16] = ACTIONS(960), - [aux_sym_cmd_identifier_token17] = ACTIONS(960), - [aux_sym_cmd_identifier_token18] = ACTIONS(960), - [aux_sym_cmd_identifier_token19] = ACTIONS(960), - [aux_sym_cmd_identifier_token20] = ACTIONS(960), - [aux_sym_cmd_identifier_token21] = ACTIONS(960), - [aux_sym_cmd_identifier_token22] = ACTIONS(960), - [aux_sym_cmd_identifier_token23] = ACTIONS(960), - [aux_sym_cmd_identifier_token24] = ACTIONS(960), - [aux_sym_cmd_identifier_token25] = ACTIONS(960), - [aux_sym_cmd_identifier_token26] = ACTIONS(960), - [aux_sym_cmd_identifier_token27] = ACTIONS(960), - [aux_sym_cmd_identifier_token28] = ACTIONS(960), - [aux_sym_cmd_identifier_token29] = ACTIONS(960), - [aux_sym_cmd_identifier_token30] = ACTIONS(960), - [aux_sym_cmd_identifier_token31] = ACTIONS(960), - [aux_sym_cmd_identifier_token32] = ACTIONS(960), - [aux_sym_cmd_identifier_token33] = ACTIONS(960), - [aux_sym_cmd_identifier_token34] = ACTIONS(958), - [aux_sym_cmd_identifier_token35] = ACTIONS(960), - [aux_sym_cmd_identifier_token36] = ACTIONS(960), - [aux_sym_cmd_identifier_token37] = ACTIONS(960), - [aux_sym_cmd_identifier_token38] = ACTIONS(958), - [aux_sym_cmd_identifier_token39] = ACTIONS(960), - [aux_sym_cmd_identifier_token40] = ACTIONS(960), - [anon_sym_def] = ACTIONS(958), - [anon_sym_export_DASHenv] = ACTIONS(958), - [anon_sym_extern] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_use] = ACTIONS(958), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_COMMA] = ACTIONS(960), - [anon_sym_DOLLAR] = ACTIONS(958), - [anon_sym_error] = ACTIONS(958), - [anon_sym_DASH2] = ACTIONS(958), - [anon_sym_break] = ACTIONS(958), - [anon_sym_continue] = ACTIONS(958), - [anon_sym_for] = ACTIONS(958), - [anon_sym_in2] = ACTIONS(958), - [anon_sym_loop] = ACTIONS(958), - [anon_sym_make] = ACTIONS(958), - [anon_sym_while] = ACTIONS(958), - [anon_sym_do] = ACTIONS(958), - [anon_sym_if] = ACTIONS(958), - [anon_sym_else] = ACTIONS(958), - [anon_sym_match] = ACTIONS(958), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_try] = ACTIONS(958), - [anon_sym_catch] = ACTIONS(958), - [anon_sym_return] = ACTIONS(958), - [anon_sym_source] = ACTIONS(958), - [anon_sym_source_DASHenv] = ACTIONS(958), - [anon_sym_hide] = ACTIONS(958), - [anon_sym_hide_DASHenv] = ACTIONS(958), - [anon_sym_overlay] = ACTIONS(958), - [anon_sym_as] = ACTIONS(958), - [anon_sym_PLUS2] = ACTIONS(958), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(960), - [aux_sym__val_number_decimal_token1] = ACTIONS(958), - [aux_sym__val_number_decimal_token2] = ACTIONS(960), - [aux_sym__val_number_decimal_token3] = ACTIONS(960), - [aux_sym__val_number_decimal_token4] = ACTIONS(960), - [aux_sym__val_number_token1] = ACTIONS(960), - [aux_sym__val_number_token2] = ACTIONS(960), - [aux_sym__val_number_token3] = ACTIONS(960), - [aux_sym__val_number_token4] = ACTIONS(958), - [aux_sym__val_number_token5] = ACTIONS(958), - [aux_sym__val_number_token6] = ACTIONS(958), - [anon_sym_DQUOTE] = ACTIONS(960), - [sym__str_single_quotes] = ACTIONS(960), - [sym__str_back_ticks] = ACTIONS(960), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(960), - [anon_sym_register] = ACTIONS(958), + [699] = { + [sym_comment] = STATE(699), + [anon_sym_export] = ACTIONS(2362), + [anon_sym_alias] = ACTIONS(2362), + [anon_sym_let] = ACTIONS(2362), + [anon_sym_let_DASHenv] = ACTIONS(2362), + [anon_sym_mut] = ACTIONS(2362), + [anon_sym_const] = ACTIONS(2362), + [aux_sym_cmd_identifier_token1] = ACTIONS(2362), + [aux_sym_cmd_identifier_token2] = ACTIONS(2364), + [aux_sym_cmd_identifier_token3] = ACTIONS(2364), + [aux_sym_cmd_identifier_token4] = ACTIONS(2364), + [aux_sym_cmd_identifier_token5] = ACTIONS(2364), + [aux_sym_cmd_identifier_token6] = ACTIONS(2364), + [aux_sym_cmd_identifier_token7] = ACTIONS(2364), + [aux_sym_cmd_identifier_token8] = ACTIONS(2362), + [aux_sym_cmd_identifier_token9] = ACTIONS(2362), + [aux_sym_cmd_identifier_token10] = ACTIONS(2364), + [aux_sym_cmd_identifier_token11] = ACTIONS(2364), + [aux_sym_cmd_identifier_token12] = ACTIONS(2362), + [aux_sym_cmd_identifier_token13] = ACTIONS(2362), + [aux_sym_cmd_identifier_token14] = ACTIONS(2362), + [aux_sym_cmd_identifier_token15] = ACTIONS(2362), + [aux_sym_cmd_identifier_token16] = ACTIONS(2364), + [aux_sym_cmd_identifier_token17] = ACTIONS(2364), + [aux_sym_cmd_identifier_token18] = ACTIONS(2364), + [aux_sym_cmd_identifier_token19] = ACTIONS(2364), + [aux_sym_cmd_identifier_token20] = ACTIONS(2364), + [aux_sym_cmd_identifier_token21] = ACTIONS(2364), + [aux_sym_cmd_identifier_token22] = ACTIONS(2364), + [aux_sym_cmd_identifier_token23] = ACTIONS(2364), + [aux_sym_cmd_identifier_token24] = ACTIONS(2364), + [aux_sym_cmd_identifier_token25] = ACTIONS(2364), + [aux_sym_cmd_identifier_token26] = ACTIONS(2364), + [aux_sym_cmd_identifier_token27] = ACTIONS(2364), + [aux_sym_cmd_identifier_token28] = ACTIONS(2364), + [aux_sym_cmd_identifier_token29] = ACTIONS(2364), + [aux_sym_cmd_identifier_token30] = ACTIONS(2364), + [aux_sym_cmd_identifier_token31] = ACTIONS(2364), + [aux_sym_cmd_identifier_token32] = ACTIONS(2364), + [aux_sym_cmd_identifier_token33] = ACTIONS(2364), + [aux_sym_cmd_identifier_token34] = ACTIONS(2362), + [aux_sym_cmd_identifier_token35] = ACTIONS(2364), + [aux_sym_cmd_identifier_token36] = ACTIONS(2364), + [aux_sym_cmd_identifier_token37] = ACTIONS(2364), + [aux_sym_cmd_identifier_token38] = ACTIONS(2362), + [aux_sym_cmd_identifier_token39] = ACTIONS(2364), + [aux_sym_cmd_identifier_token40] = ACTIONS(2364), + [anon_sym_def] = ACTIONS(2362), + [anon_sym_export_DASHenv] = ACTIONS(2362), + [anon_sym_extern] = ACTIONS(2362), + [anon_sym_module] = ACTIONS(2362), + [anon_sym_use] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2364), + [anon_sym_COMMA] = ACTIONS(2364), + [anon_sym_DOLLAR] = ACTIONS(2362), + [anon_sym_error] = ACTIONS(2362), + [anon_sym_DASH2] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_in2] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_make] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_else] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2364), + [anon_sym_try] = ACTIONS(2362), + [anon_sym_catch] = ACTIONS(2362), + [anon_sym_return] = ACTIONS(2362), + [anon_sym_source] = ACTIONS(2362), + [anon_sym_source_DASHenv] = ACTIONS(2362), + [anon_sym_hide] = ACTIONS(2362), + [anon_sym_hide_DASHenv] = ACTIONS(2362), + [anon_sym_overlay] = ACTIONS(2362), + [anon_sym_as] = ACTIONS(2362), + [anon_sym_PLUS2] = ACTIONS(2362), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2364), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2364), + [aux_sym__val_number_decimal_token1] = ACTIONS(2362), + [aux_sym__val_number_decimal_token2] = ACTIONS(2364), + [aux_sym__val_number_decimal_token3] = ACTIONS(2364), + [aux_sym__val_number_decimal_token4] = ACTIONS(2364), + [aux_sym__val_number_token1] = ACTIONS(2364), + [aux_sym__val_number_token2] = ACTIONS(2364), + [aux_sym__val_number_token3] = ACTIONS(2364), + [aux_sym__val_number_token4] = ACTIONS(2362), + [aux_sym__val_number_token5] = ACTIONS(2362), + [aux_sym__val_number_token6] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2364), + [sym__str_single_quotes] = ACTIONS(2364), + [sym__str_back_ticks] = ACTIONS(2364), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2364), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2364), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2364), + [anon_sym_register] = ACTIONS(2362), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(960), + [sym_raw_string_begin] = ACTIONS(2364), }, - [742] = { - [sym_comment] = STATE(742), - [anon_sym_export] = ACTIONS(2033), - [anon_sym_alias] = ACTIONS(2033), - [anon_sym_let] = ACTIONS(2033), - [anon_sym_let_DASHenv] = ACTIONS(2033), - [anon_sym_mut] = ACTIONS(2033), - [anon_sym_const] = ACTIONS(2033), - [aux_sym_cmd_identifier_token1] = ACTIONS(2033), - [aux_sym_cmd_identifier_token2] = ACTIONS(2039), - [aux_sym_cmd_identifier_token3] = ACTIONS(2039), - [aux_sym_cmd_identifier_token4] = ACTIONS(2039), - [aux_sym_cmd_identifier_token5] = ACTIONS(2039), - [aux_sym_cmd_identifier_token6] = ACTIONS(2039), - [aux_sym_cmd_identifier_token7] = ACTIONS(2039), - [aux_sym_cmd_identifier_token8] = ACTIONS(2033), - [aux_sym_cmd_identifier_token9] = ACTIONS(2033), - [aux_sym_cmd_identifier_token10] = ACTIONS(2039), - [aux_sym_cmd_identifier_token11] = ACTIONS(2039), - [aux_sym_cmd_identifier_token12] = ACTIONS(2033), - [aux_sym_cmd_identifier_token13] = ACTIONS(2033), - [aux_sym_cmd_identifier_token14] = ACTIONS(2033), - [aux_sym_cmd_identifier_token15] = ACTIONS(2033), - [aux_sym_cmd_identifier_token16] = ACTIONS(2039), - [aux_sym_cmd_identifier_token17] = ACTIONS(2039), - [aux_sym_cmd_identifier_token18] = ACTIONS(2039), - [aux_sym_cmd_identifier_token19] = ACTIONS(2039), - [aux_sym_cmd_identifier_token20] = ACTIONS(2039), - [aux_sym_cmd_identifier_token21] = ACTIONS(2039), - [aux_sym_cmd_identifier_token22] = ACTIONS(2039), - [aux_sym_cmd_identifier_token23] = ACTIONS(2039), - [aux_sym_cmd_identifier_token24] = ACTIONS(2039), - [aux_sym_cmd_identifier_token25] = ACTIONS(2039), - [aux_sym_cmd_identifier_token26] = ACTIONS(2039), - [aux_sym_cmd_identifier_token27] = ACTIONS(2039), - [aux_sym_cmd_identifier_token28] = ACTIONS(2039), - [aux_sym_cmd_identifier_token29] = ACTIONS(2039), - [aux_sym_cmd_identifier_token30] = ACTIONS(2039), - [aux_sym_cmd_identifier_token31] = ACTIONS(2039), - [aux_sym_cmd_identifier_token32] = ACTIONS(2039), - [aux_sym_cmd_identifier_token33] = ACTIONS(2039), - [aux_sym_cmd_identifier_token34] = ACTIONS(2033), - [aux_sym_cmd_identifier_token35] = ACTIONS(2039), - [aux_sym_cmd_identifier_token36] = ACTIONS(2039), - [aux_sym_cmd_identifier_token37] = ACTIONS(2039), - [aux_sym_cmd_identifier_token38] = ACTIONS(2033), - [aux_sym_cmd_identifier_token39] = ACTIONS(2039), - [aux_sym_cmd_identifier_token40] = ACTIONS(2039), - [anon_sym_def] = ACTIONS(2033), - [anon_sym_export_DASHenv] = ACTIONS(2033), - [anon_sym_extern] = ACTIONS(2033), - [anon_sym_module] = ACTIONS(2033), - [anon_sym_use] = ACTIONS(2033), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_COMMA] = ACTIONS(2039), - [anon_sym_DOLLAR] = ACTIONS(2033), - [anon_sym_error] = ACTIONS(2033), - [anon_sym_DASH2] = ACTIONS(2033), - [anon_sym_break] = ACTIONS(2033), - [anon_sym_continue] = ACTIONS(2033), - [anon_sym_for] = ACTIONS(2033), - [anon_sym_in2] = ACTIONS(2033), - [anon_sym_loop] = ACTIONS(2033), - [anon_sym_make] = ACTIONS(2033), - [anon_sym_while] = ACTIONS(2033), - [anon_sym_do] = ACTIONS(2033), - [anon_sym_if] = ACTIONS(2033), - [anon_sym_else] = ACTIONS(2033), - [anon_sym_match] = ACTIONS(2033), - [anon_sym_RBRACE] = ACTIONS(2039), - [anon_sym_try] = ACTIONS(2033), - [anon_sym_catch] = ACTIONS(2033), - [anon_sym_return] = ACTIONS(2033), - [anon_sym_source] = ACTIONS(2033), - [anon_sym_source_DASHenv] = ACTIONS(2033), - [anon_sym_hide] = ACTIONS(2033), - [anon_sym_hide_DASHenv] = ACTIONS(2033), - [anon_sym_overlay] = ACTIONS(2033), - [anon_sym_as] = ACTIONS(2033), - [anon_sym_PLUS2] = ACTIONS(2033), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2039), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2039), - [aux_sym__val_number_decimal_token1] = ACTIONS(2033), - [aux_sym__val_number_decimal_token2] = ACTIONS(2039), - [aux_sym__val_number_decimal_token3] = ACTIONS(2039), - [aux_sym__val_number_decimal_token4] = ACTIONS(2039), - [aux_sym__val_number_token1] = ACTIONS(2039), - [aux_sym__val_number_token2] = ACTIONS(2039), - [aux_sym__val_number_token3] = ACTIONS(2039), - [aux_sym__val_number_token4] = ACTIONS(2033), - [aux_sym__val_number_token5] = ACTIONS(2033), - [aux_sym__val_number_token6] = ACTIONS(2033), - [anon_sym_DQUOTE] = ACTIONS(2039), - [sym__str_single_quotes] = ACTIONS(2039), - [sym__str_back_ticks] = ACTIONS(2039), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2039), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2039), - [anon_sym_register] = ACTIONS(2033), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2039), + [700] = { + [sym_comment] = STATE(700), + [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(2284), + [anon_sym_COMMA] = ACTIONS(2284), + [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(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_hide] = ACTIONS(2282), + [anon_sym_hide_DASHenv] = ACTIONS(2282), + [anon_sym_overlay] = ACTIONS(2282), + [anon_sym_as] = ACTIONS(2282), + [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_DOLLAR_SQUOTE] = ACTIONS(2284), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2284), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2284), + [anon_sym_register] = ACTIONS(2282), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2284), }, - [743] = { - [sym_comment] = STATE(743), - [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(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(2320), - [aux_sym_cmd_identifier_token9] = ACTIONS(2320), - [aux_sym_cmd_identifier_token10] = ACTIONS(2322), - [aux_sym_cmd_identifier_token11] = ACTIONS(2322), - [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(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(2320), - [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(2320), - [aux_sym_cmd_identifier_token39] = ACTIONS(2322), - [aux_sym_cmd_identifier_token40] = ACTIONS(2322), - [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(2322), - [anon_sym_COMMA] = ACTIONS(2322), - [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(2322), - [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_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(2322), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2322), - [aux_sym__val_number_decimal_token1] = ACTIONS(2320), - [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(2320), - [aux_sym__val_number_token5] = ACTIONS(2320), - [aux_sym__val_number_token6] = ACTIONS(2320), - [anon_sym_DQUOTE] = ACTIONS(2322), - [sym__str_single_quotes] = ACTIONS(2322), - [sym__str_back_ticks] = ACTIONS(2322), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2322), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2322), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2322), - [anon_sym_register] = ACTIONS(2320), + [701] = { + [sym_comment] = STATE(701), + [anon_sym_export] = ACTIONS(1997), + [anon_sym_alias] = ACTIONS(1997), + [anon_sym_let] = ACTIONS(1997), + [anon_sym_let_DASHenv] = ACTIONS(1997), + [anon_sym_mut] = ACTIONS(1997), + [anon_sym_const] = ACTIONS(1997), + [aux_sym_cmd_identifier_token1] = ACTIONS(1997), + [aux_sym_cmd_identifier_token2] = ACTIONS(1999), + [aux_sym_cmd_identifier_token3] = ACTIONS(1999), + [aux_sym_cmd_identifier_token4] = ACTIONS(1999), + [aux_sym_cmd_identifier_token5] = ACTIONS(1999), + [aux_sym_cmd_identifier_token6] = ACTIONS(1999), + [aux_sym_cmd_identifier_token7] = ACTIONS(1999), + [aux_sym_cmd_identifier_token8] = ACTIONS(1997), + [aux_sym_cmd_identifier_token9] = ACTIONS(1997), + [aux_sym_cmd_identifier_token10] = ACTIONS(1999), + [aux_sym_cmd_identifier_token11] = ACTIONS(1999), + [aux_sym_cmd_identifier_token12] = ACTIONS(1997), + [aux_sym_cmd_identifier_token13] = ACTIONS(1997), + [aux_sym_cmd_identifier_token14] = ACTIONS(1997), + [aux_sym_cmd_identifier_token15] = ACTIONS(1997), + [aux_sym_cmd_identifier_token16] = ACTIONS(1999), + [aux_sym_cmd_identifier_token17] = ACTIONS(1999), + [aux_sym_cmd_identifier_token18] = ACTIONS(1999), + [aux_sym_cmd_identifier_token19] = ACTIONS(1999), + [aux_sym_cmd_identifier_token20] = ACTIONS(1999), + [aux_sym_cmd_identifier_token21] = ACTIONS(1999), + [aux_sym_cmd_identifier_token22] = ACTIONS(1999), + [aux_sym_cmd_identifier_token23] = ACTIONS(1999), + [aux_sym_cmd_identifier_token24] = ACTIONS(1999), + [aux_sym_cmd_identifier_token25] = ACTIONS(1999), + [aux_sym_cmd_identifier_token26] = ACTIONS(1999), + [aux_sym_cmd_identifier_token27] = ACTIONS(1999), + [aux_sym_cmd_identifier_token28] = ACTIONS(1999), + [aux_sym_cmd_identifier_token29] = ACTIONS(1999), + [aux_sym_cmd_identifier_token30] = ACTIONS(1999), + [aux_sym_cmd_identifier_token31] = ACTIONS(1999), + [aux_sym_cmd_identifier_token32] = ACTIONS(1999), + [aux_sym_cmd_identifier_token33] = ACTIONS(1999), + [aux_sym_cmd_identifier_token34] = ACTIONS(1997), + [aux_sym_cmd_identifier_token35] = ACTIONS(1999), + [aux_sym_cmd_identifier_token36] = ACTIONS(1999), + [aux_sym_cmd_identifier_token37] = ACTIONS(1999), + [aux_sym_cmd_identifier_token38] = ACTIONS(1997), + [aux_sym_cmd_identifier_token39] = ACTIONS(1999), + [aux_sym_cmd_identifier_token40] = ACTIONS(1999), + [anon_sym_def] = ACTIONS(1997), + [anon_sym_export_DASHenv] = ACTIONS(1997), + [anon_sym_extern] = ACTIONS(1997), + [anon_sym_module] = ACTIONS(1997), + [anon_sym_use] = ACTIONS(1997), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_COMMA] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(1997), + [anon_sym_error] = ACTIONS(1997), + [anon_sym_DASH2] = ACTIONS(1997), + [anon_sym_break] = ACTIONS(1997), + [anon_sym_continue] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1997), + [anon_sym_in2] = ACTIONS(1997), + [anon_sym_loop] = ACTIONS(1997), + [anon_sym_make] = ACTIONS(1997), + [anon_sym_while] = ACTIONS(1997), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_if] = ACTIONS(1997), + [anon_sym_else] = ACTIONS(1997), + [anon_sym_match] = ACTIONS(1997), + [anon_sym_RBRACE] = ACTIONS(1999), + [anon_sym_try] = ACTIONS(1997), + [anon_sym_catch] = ACTIONS(1997), + [anon_sym_return] = ACTIONS(1997), + [anon_sym_source] = ACTIONS(1997), + [anon_sym_source_DASHenv] = ACTIONS(1997), + [anon_sym_hide] = ACTIONS(1997), + [anon_sym_hide_DASHenv] = ACTIONS(1997), + [anon_sym_overlay] = ACTIONS(1997), + [anon_sym_as] = ACTIONS(1997), + [anon_sym_PLUS2] = ACTIONS(1997), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1999), + [aux_sym__val_number_decimal_token1] = ACTIONS(1997), + [aux_sym__val_number_decimal_token2] = ACTIONS(1999), + [aux_sym__val_number_decimal_token3] = ACTIONS(1999), + [aux_sym__val_number_decimal_token4] = ACTIONS(1999), + [aux_sym__val_number_token1] = ACTIONS(1999), + [aux_sym__val_number_token2] = ACTIONS(1999), + [aux_sym__val_number_token3] = ACTIONS(1999), + [aux_sym__val_number_token4] = ACTIONS(1997), + [aux_sym__val_number_token5] = ACTIONS(1997), + [aux_sym__val_number_token6] = ACTIONS(1997), + [anon_sym_DQUOTE] = ACTIONS(1999), + [sym__str_single_quotes] = ACTIONS(1999), + [sym__str_back_ticks] = ACTIONS(1999), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1999), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1999), + [anon_sym_register] = ACTIONS(1997), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1999), + }, + [702] = { + [sym_comment] = STATE(702), + [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(2288), + [aux_sym_cmd_identifier_token3] = ACTIONS(2288), + [aux_sym_cmd_identifier_token4] = ACTIONS(2288), + [aux_sym_cmd_identifier_token5] = ACTIONS(2288), + [aux_sym_cmd_identifier_token6] = ACTIONS(2288), + [aux_sym_cmd_identifier_token7] = ACTIONS(2288), + [aux_sym_cmd_identifier_token8] = ACTIONS(2286), + [aux_sym_cmd_identifier_token9] = ACTIONS(2286), + [aux_sym_cmd_identifier_token10] = ACTIONS(2288), + [aux_sym_cmd_identifier_token11] = ACTIONS(2288), + [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(2288), + [aux_sym_cmd_identifier_token17] = ACTIONS(2288), + [aux_sym_cmd_identifier_token18] = ACTIONS(2288), + [aux_sym_cmd_identifier_token19] = ACTIONS(2288), + [aux_sym_cmd_identifier_token20] = ACTIONS(2288), + [aux_sym_cmd_identifier_token21] = ACTIONS(2288), + [aux_sym_cmd_identifier_token22] = ACTIONS(2288), + [aux_sym_cmd_identifier_token23] = ACTIONS(2288), + [aux_sym_cmd_identifier_token24] = ACTIONS(2288), + [aux_sym_cmd_identifier_token25] = ACTIONS(2288), + [aux_sym_cmd_identifier_token26] = ACTIONS(2288), + [aux_sym_cmd_identifier_token27] = ACTIONS(2288), + [aux_sym_cmd_identifier_token28] = ACTIONS(2288), + [aux_sym_cmd_identifier_token29] = ACTIONS(2288), + [aux_sym_cmd_identifier_token30] = ACTIONS(2288), + [aux_sym_cmd_identifier_token31] = ACTIONS(2288), + [aux_sym_cmd_identifier_token32] = ACTIONS(2288), + [aux_sym_cmd_identifier_token33] = ACTIONS(2288), + [aux_sym_cmd_identifier_token34] = ACTIONS(2286), + [aux_sym_cmd_identifier_token35] = ACTIONS(2288), + [aux_sym_cmd_identifier_token36] = ACTIONS(2288), + [aux_sym_cmd_identifier_token37] = ACTIONS(2288), + [aux_sym_cmd_identifier_token38] = ACTIONS(2286), + [aux_sym_cmd_identifier_token39] = ACTIONS(2288), + [aux_sym_cmd_identifier_token40] = ACTIONS(2288), + [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(2288), + [anon_sym_COMMA] = ACTIONS(2288), + [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_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(2288), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2288), + [aux_sym__val_number_decimal_token1] = ACTIONS(2286), + [aux_sym__val_number_decimal_token2] = ACTIONS(2288), + [aux_sym__val_number_decimal_token3] = ACTIONS(2288), + [aux_sym__val_number_decimal_token4] = ACTIONS(2288), + [aux_sym__val_number_token1] = ACTIONS(2288), + [aux_sym__val_number_token2] = ACTIONS(2288), + [aux_sym__val_number_token3] = ACTIONS(2288), + [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(2288), + [sym__str_single_quotes] = ACTIONS(2288), + [sym__str_back_ticks] = ACTIONS(2288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2288), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2288), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2288), + [anon_sym_register] = ACTIONS(2286), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2288), + }, + [703] = { + [sym_comment] = STATE(703), + [anon_sym_export] = ACTIONS(1897), + [anon_sym_alias] = ACTIONS(1897), + [anon_sym_let] = ACTIONS(1897), + [anon_sym_let_DASHenv] = ACTIONS(1897), + [anon_sym_mut] = ACTIONS(1897), + [anon_sym_const] = ACTIONS(1897), + [aux_sym_cmd_identifier_token1] = ACTIONS(1897), + [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(1897), + [aux_sym_cmd_identifier_token9] = ACTIONS(1897), + [aux_sym_cmd_identifier_token10] = ACTIONS(1899), + [aux_sym_cmd_identifier_token11] = ACTIONS(1899), + [aux_sym_cmd_identifier_token12] = ACTIONS(1897), + [aux_sym_cmd_identifier_token13] = ACTIONS(1897), + [aux_sym_cmd_identifier_token14] = ACTIONS(1897), + [aux_sym_cmd_identifier_token15] = ACTIONS(1897), + [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(1897), + [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(1897), + [aux_sym_cmd_identifier_token39] = ACTIONS(1899), + [aux_sym_cmd_identifier_token40] = ACTIONS(1899), + [anon_sym_def] = ACTIONS(1897), + [anon_sym_export_DASHenv] = ACTIONS(1897), + [anon_sym_extern] = ACTIONS(1897), + [anon_sym_module] = ACTIONS(1897), + [anon_sym_use] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_COMMA] = ACTIONS(1899), + [anon_sym_DOLLAR] = ACTIONS(1897), + [anon_sym_error] = ACTIONS(1897), + [anon_sym_DASH2] = ACTIONS(1897), + [anon_sym_break] = ACTIONS(1897), + [anon_sym_continue] = ACTIONS(1897), + [anon_sym_for] = ACTIONS(1897), + [anon_sym_in2] = ACTIONS(1897), + [anon_sym_loop] = ACTIONS(1897), + [anon_sym_make] = ACTIONS(1897), + [anon_sym_while] = ACTIONS(1897), + [anon_sym_do] = ACTIONS(1897), + [anon_sym_if] = ACTIONS(1897), + [anon_sym_else] = ACTIONS(1897), + [anon_sym_match] = ACTIONS(1897), + [anon_sym_RBRACE] = ACTIONS(1899), + [anon_sym_try] = ACTIONS(1897), + [anon_sym_catch] = ACTIONS(1897), + [anon_sym_return] = ACTIONS(1897), + [anon_sym_source] = ACTIONS(1897), + [anon_sym_source_DASHenv] = ACTIONS(1897), + [anon_sym_hide] = ACTIONS(1897), + [anon_sym_hide_DASHenv] = ACTIONS(1897), + [anon_sym_overlay] = ACTIONS(1897), + [anon_sym_as] = ACTIONS(1897), + [anon_sym_PLUS2] = ACTIONS(1897), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1899), + [aux_sym__val_number_decimal_token1] = ACTIONS(1897), + [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(1897), + [aux_sym__val_number_token5] = ACTIONS(1897), + [aux_sym__val_number_token6] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1899), + [sym__str_single_quotes] = ACTIONS(1899), + [sym__str_back_ticks] = ACTIONS(1899), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1899), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1899), + [anon_sym_register] = ACTIONS(1897), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2322), + [sym_raw_string_begin] = ACTIONS(1899), }, - [744] = { - [sym_comment] = STATE(744), - [aux_sym__multiple_types_repeat1] = STATE(657), + [704] = { + [sym_comment] = STATE(704), + [anon_sym_export] = ACTIONS(2001), + [anon_sym_alias] = ACTIONS(2001), + [anon_sym_let] = ACTIONS(2001), + [anon_sym_let_DASHenv] = ACTIONS(2001), + [anon_sym_mut] = ACTIONS(2001), + [anon_sym_const] = ACTIONS(2001), + [aux_sym_cmd_identifier_token1] = ACTIONS(2001), + [aux_sym_cmd_identifier_token2] = ACTIONS(2003), + [aux_sym_cmd_identifier_token3] = ACTIONS(2003), + [aux_sym_cmd_identifier_token4] = ACTIONS(2003), + [aux_sym_cmd_identifier_token5] = ACTIONS(2003), + [aux_sym_cmd_identifier_token6] = ACTIONS(2003), + [aux_sym_cmd_identifier_token7] = ACTIONS(2003), + [aux_sym_cmd_identifier_token8] = ACTIONS(2001), + [aux_sym_cmd_identifier_token9] = ACTIONS(2001), + [aux_sym_cmd_identifier_token10] = ACTIONS(2003), + [aux_sym_cmd_identifier_token11] = ACTIONS(2003), + [aux_sym_cmd_identifier_token12] = ACTIONS(2001), + [aux_sym_cmd_identifier_token13] = ACTIONS(2001), + [aux_sym_cmd_identifier_token14] = ACTIONS(2001), + [aux_sym_cmd_identifier_token15] = ACTIONS(2001), + [aux_sym_cmd_identifier_token16] = ACTIONS(2003), + [aux_sym_cmd_identifier_token17] = ACTIONS(2003), + [aux_sym_cmd_identifier_token18] = ACTIONS(2003), + [aux_sym_cmd_identifier_token19] = ACTIONS(2003), + [aux_sym_cmd_identifier_token20] = ACTIONS(2003), + [aux_sym_cmd_identifier_token21] = ACTIONS(2003), + [aux_sym_cmd_identifier_token22] = ACTIONS(2003), + [aux_sym_cmd_identifier_token23] = ACTIONS(2003), + [aux_sym_cmd_identifier_token24] = ACTIONS(2003), + [aux_sym_cmd_identifier_token25] = ACTIONS(2003), + [aux_sym_cmd_identifier_token26] = ACTIONS(2003), + [aux_sym_cmd_identifier_token27] = ACTIONS(2003), + [aux_sym_cmd_identifier_token28] = ACTIONS(2003), + [aux_sym_cmd_identifier_token29] = ACTIONS(2003), + [aux_sym_cmd_identifier_token30] = ACTIONS(2003), + [aux_sym_cmd_identifier_token31] = ACTIONS(2003), + [aux_sym_cmd_identifier_token32] = ACTIONS(2003), + [aux_sym_cmd_identifier_token33] = ACTIONS(2003), + [aux_sym_cmd_identifier_token34] = ACTIONS(2001), + [aux_sym_cmd_identifier_token35] = ACTIONS(2003), + [aux_sym_cmd_identifier_token36] = ACTIONS(2003), + [aux_sym_cmd_identifier_token37] = ACTIONS(2003), + [aux_sym_cmd_identifier_token38] = ACTIONS(2001), + [aux_sym_cmd_identifier_token39] = ACTIONS(2003), + [aux_sym_cmd_identifier_token40] = ACTIONS(2003), + [anon_sym_def] = ACTIONS(2001), + [anon_sym_export_DASHenv] = ACTIONS(2001), + [anon_sym_extern] = ACTIONS(2001), + [anon_sym_module] = ACTIONS(2001), + [anon_sym_use] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_COMMA] = ACTIONS(2003), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_error] = ACTIONS(2001), + [anon_sym_DASH2] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_in2] = ACTIONS(2001), + [anon_sym_loop] = ACTIONS(2001), + [anon_sym_make] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2001), + [anon_sym_do] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_else] = ACTIONS(2001), + [anon_sym_match] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2003), + [anon_sym_try] = ACTIONS(2001), + [anon_sym_catch] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_source] = ACTIONS(2001), + [anon_sym_source_DASHenv] = ACTIONS(2001), + [anon_sym_hide] = ACTIONS(2001), + [anon_sym_hide_DASHenv] = ACTIONS(2001), + [anon_sym_overlay] = ACTIONS(2001), + [anon_sym_as] = ACTIONS(2001), + [anon_sym_PLUS2] = ACTIONS(2001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2003), + [aux_sym__val_number_decimal_token1] = ACTIONS(2001), + [aux_sym__val_number_decimal_token2] = ACTIONS(2003), + [aux_sym__val_number_decimal_token3] = ACTIONS(2003), + [aux_sym__val_number_decimal_token4] = ACTIONS(2003), + [aux_sym__val_number_token1] = ACTIONS(2003), + [aux_sym__val_number_token2] = ACTIONS(2003), + [aux_sym__val_number_token3] = ACTIONS(2003), + [aux_sym__val_number_token4] = ACTIONS(2001), + [aux_sym__val_number_token5] = ACTIONS(2001), + [aux_sym__val_number_token6] = ACTIONS(2001), + [anon_sym_DQUOTE] = ACTIONS(2003), + [sym__str_single_quotes] = ACTIONS(2003), + [sym__str_back_ticks] = ACTIONS(2003), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2003), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2003), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2003), + [anon_sym_register] = ACTIONS(2001), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2003), + }, + [705] = { + [sym_comment] = STATE(705), [anon_sym_export] = ACTIONS(2314), [anon_sym_alias] = ACTIONS(2314), [anon_sym_let] = ACTIONS(2314), @@ -155403,51 +150220,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(2314), [anon_sym_const] = ACTIONS(2314), [aux_sym_cmd_identifier_token1] = ACTIONS(2314), - [aux_sym_cmd_identifier_token2] = ACTIONS(2314), - [aux_sym_cmd_identifier_token3] = ACTIONS(2314), - [aux_sym_cmd_identifier_token4] = ACTIONS(2314), - [aux_sym_cmd_identifier_token5] = ACTIONS(2314), - [aux_sym_cmd_identifier_token6] = ACTIONS(2314), - [aux_sym_cmd_identifier_token7] = ACTIONS(2314), + [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(2314), [aux_sym_cmd_identifier_token9] = ACTIONS(2314), - [aux_sym_cmd_identifier_token10] = ACTIONS(2314), - [aux_sym_cmd_identifier_token11] = ACTIONS(2314), + [aux_sym_cmd_identifier_token10] = ACTIONS(2316), + [aux_sym_cmd_identifier_token11] = ACTIONS(2316), [aux_sym_cmd_identifier_token12] = ACTIONS(2314), [aux_sym_cmd_identifier_token13] = ACTIONS(2314), [aux_sym_cmd_identifier_token14] = ACTIONS(2314), [aux_sym_cmd_identifier_token15] = ACTIONS(2314), - [aux_sym_cmd_identifier_token16] = ACTIONS(2314), - [aux_sym_cmd_identifier_token17] = ACTIONS(2314), - [aux_sym_cmd_identifier_token18] = ACTIONS(2314), - [aux_sym_cmd_identifier_token19] = ACTIONS(2314), - [aux_sym_cmd_identifier_token20] = ACTIONS(2314), - [aux_sym_cmd_identifier_token21] = ACTIONS(2314), - [aux_sym_cmd_identifier_token22] = ACTIONS(2314), - [aux_sym_cmd_identifier_token23] = ACTIONS(2314), - [aux_sym_cmd_identifier_token24] = ACTIONS(2314), - [aux_sym_cmd_identifier_token25] = ACTIONS(2314), - [aux_sym_cmd_identifier_token26] = ACTIONS(2314), - [aux_sym_cmd_identifier_token27] = ACTIONS(2314), - [aux_sym_cmd_identifier_token28] = ACTIONS(2314), - [aux_sym_cmd_identifier_token29] = ACTIONS(2314), - [aux_sym_cmd_identifier_token30] = ACTIONS(2314), - [aux_sym_cmd_identifier_token31] = ACTIONS(2314), - [aux_sym_cmd_identifier_token32] = ACTIONS(2314), - [aux_sym_cmd_identifier_token33] = ACTIONS(2314), + [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(2314), - [aux_sym_cmd_identifier_token35] = ACTIONS(2314), - [aux_sym_cmd_identifier_token36] = ACTIONS(2314), - [aux_sym_cmd_identifier_token37] = ACTIONS(2314), + [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(2314), - [aux_sym_cmd_identifier_token39] = ACTIONS(2314), - [aux_sym_cmd_identifier_token40] = ACTIONS(2314), + [aux_sym_cmd_identifier_token39] = ACTIONS(2316), + [aux_sym_cmd_identifier_token40] = ACTIONS(2316), [anon_sym_def] = ACTIONS(2314), [anon_sym_export_DASHenv] = ACTIONS(2314), [anon_sym_extern] = ACTIONS(2314), [anon_sym_module] = ACTIONS(2314), [anon_sym_use] = ACTIONS(2314), - [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_LPAREN] = ACTIONS(2316), + [anon_sym_COMMA] = ACTIONS(2316), [anon_sym_DOLLAR] = ACTIONS(2314), [anon_sym_error] = ACTIONS(2314), [anon_sym_DASH2] = ACTIONS(2314), @@ -155462,6 +150280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2314), [anon_sym_else] = ACTIONS(2314), [anon_sym_match] = ACTIONS(2314), + [anon_sym_RBRACE] = ACTIONS(2316), [anon_sym_try] = ACTIONS(2314), [anon_sym_catch] = ACTIONS(2314), [anon_sym_return] = ACTIONS(2314), @@ -155472,2772 +150291,2085 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(2314), [anon_sym_as] = ACTIONS(2314), [anon_sym_PLUS2] = ACTIONS(2314), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2314), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2314), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2316), [aux_sym__val_number_decimal_token1] = ACTIONS(2314), - [aux_sym__val_number_decimal_token2] = ACTIONS(2314), - [aux_sym__val_number_decimal_token3] = ACTIONS(2314), - [aux_sym__val_number_decimal_token4] = ACTIONS(2314), - [aux_sym__val_number_token1] = ACTIONS(2314), - [aux_sym__val_number_token2] = ACTIONS(2314), - [aux_sym__val_number_token3] = ACTIONS(2314), + [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(2314), [aux_sym__val_number_token5] = ACTIONS(2314), [aux_sym__val_number_token6] = ACTIONS(2314), - [anon_sym_DQUOTE] = ACTIONS(2314), - [sym__str_single_quotes] = ACTIONS(2314), - [sym__str_back_ticks] = ACTIONS(2314), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2314), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2314), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2314), - [sym__entry_separator] = ACTIONS(2210), + [anon_sym_DQUOTE] = ACTIONS(2316), + [sym__str_single_quotes] = ACTIONS(2316), + [sym__str_back_ticks] = ACTIONS(2316), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2316), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2316), [anon_sym_register] = ACTIONS(2314), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2318), - }, - [745] = { - [sym_comment] = STATE(745), - [anon_sym_export] = ACTIONS(2009), - [anon_sym_alias] = ACTIONS(2009), - [anon_sym_let] = ACTIONS(2009), - [anon_sym_let_DASHenv] = ACTIONS(2009), - [anon_sym_mut] = ACTIONS(2009), - [anon_sym_const] = ACTIONS(2009), - [aux_sym_cmd_identifier_token1] = ACTIONS(2009), - [aux_sym_cmd_identifier_token2] = ACTIONS(2015), - [aux_sym_cmd_identifier_token3] = ACTIONS(2015), - [aux_sym_cmd_identifier_token4] = ACTIONS(2015), - [aux_sym_cmd_identifier_token5] = ACTIONS(2015), - [aux_sym_cmd_identifier_token6] = ACTIONS(2015), - [aux_sym_cmd_identifier_token7] = ACTIONS(2015), - [aux_sym_cmd_identifier_token8] = ACTIONS(2009), - [aux_sym_cmd_identifier_token9] = ACTIONS(2009), - [aux_sym_cmd_identifier_token10] = ACTIONS(2015), - [aux_sym_cmd_identifier_token11] = ACTIONS(2015), - [aux_sym_cmd_identifier_token12] = ACTIONS(2009), - [aux_sym_cmd_identifier_token13] = ACTIONS(2009), - [aux_sym_cmd_identifier_token14] = ACTIONS(2009), - [aux_sym_cmd_identifier_token15] = ACTIONS(2009), - [aux_sym_cmd_identifier_token16] = ACTIONS(2015), - [aux_sym_cmd_identifier_token17] = ACTIONS(2015), - [aux_sym_cmd_identifier_token18] = ACTIONS(2015), - [aux_sym_cmd_identifier_token19] = ACTIONS(2015), - [aux_sym_cmd_identifier_token20] = ACTIONS(2015), - [aux_sym_cmd_identifier_token21] = ACTIONS(2015), - [aux_sym_cmd_identifier_token22] = ACTIONS(2015), - [aux_sym_cmd_identifier_token23] = ACTIONS(2015), - [aux_sym_cmd_identifier_token24] = ACTIONS(2015), - [aux_sym_cmd_identifier_token25] = ACTIONS(2015), - [aux_sym_cmd_identifier_token26] = ACTIONS(2015), - [aux_sym_cmd_identifier_token27] = ACTIONS(2015), - [aux_sym_cmd_identifier_token28] = ACTIONS(2015), - [aux_sym_cmd_identifier_token29] = ACTIONS(2015), - [aux_sym_cmd_identifier_token30] = ACTIONS(2015), - [aux_sym_cmd_identifier_token31] = ACTIONS(2015), - [aux_sym_cmd_identifier_token32] = ACTIONS(2015), - [aux_sym_cmd_identifier_token33] = ACTIONS(2015), - [aux_sym_cmd_identifier_token34] = ACTIONS(2009), - [aux_sym_cmd_identifier_token35] = ACTIONS(2015), - [aux_sym_cmd_identifier_token36] = ACTIONS(2015), - [aux_sym_cmd_identifier_token37] = ACTIONS(2015), - [aux_sym_cmd_identifier_token38] = ACTIONS(2009), - [aux_sym_cmd_identifier_token39] = ACTIONS(2015), - [aux_sym_cmd_identifier_token40] = ACTIONS(2015), - [anon_sym_def] = ACTIONS(2009), - [anon_sym_export_DASHenv] = ACTIONS(2009), - [anon_sym_extern] = ACTIONS(2009), - [anon_sym_module] = ACTIONS(2009), - [anon_sym_use] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_COMMA] = ACTIONS(2015), - [anon_sym_DOLLAR] = ACTIONS(2009), - [anon_sym_error] = ACTIONS(2009), - [anon_sym_DASH2] = ACTIONS(2009), - [anon_sym_break] = ACTIONS(2009), - [anon_sym_continue] = ACTIONS(2009), - [anon_sym_for] = ACTIONS(2009), - [anon_sym_in2] = ACTIONS(2009), - [anon_sym_loop] = ACTIONS(2009), - [anon_sym_make] = ACTIONS(2009), - [anon_sym_while] = ACTIONS(2009), - [anon_sym_do] = ACTIONS(2009), - [anon_sym_if] = ACTIONS(2009), - [anon_sym_else] = ACTIONS(2009), - [anon_sym_match] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_try] = ACTIONS(2009), - [anon_sym_catch] = ACTIONS(2009), - [anon_sym_return] = ACTIONS(2009), - [anon_sym_source] = ACTIONS(2009), - [anon_sym_source_DASHenv] = ACTIONS(2009), - [anon_sym_hide] = ACTIONS(2009), - [anon_sym_hide_DASHenv] = ACTIONS(2009), - [anon_sym_overlay] = ACTIONS(2009), - [anon_sym_as] = ACTIONS(2009), - [anon_sym_PLUS2] = ACTIONS(2009), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2015), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2015), - [aux_sym__val_number_decimal_token1] = ACTIONS(2009), - [aux_sym__val_number_decimal_token2] = ACTIONS(2015), - [aux_sym__val_number_decimal_token3] = ACTIONS(2015), - [aux_sym__val_number_decimal_token4] = ACTIONS(2015), - [aux_sym__val_number_token1] = ACTIONS(2015), - [aux_sym__val_number_token2] = ACTIONS(2015), - [aux_sym__val_number_token3] = ACTIONS(2015), - [aux_sym__val_number_token4] = ACTIONS(2009), - [aux_sym__val_number_token5] = ACTIONS(2009), - [aux_sym__val_number_token6] = ACTIONS(2009), - [anon_sym_DQUOTE] = ACTIONS(2015), - [sym__str_single_quotes] = ACTIONS(2015), - [sym__str_back_ticks] = ACTIONS(2015), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2015), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2015), - [anon_sym_register] = ACTIONS(2009), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2015), - }, - [746] = { - [sym_comment] = STATE(746), - [anon_sym_export] = ACTIONS(2017), - [anon_sym_alias] = ACTIONS(2017), - [anon_sym_let] = ACTIONS(2017), - [anon_sym_let_DASHenv] = ACTIONS(2017), - [anon_sym_mut] = ACTIONS(2017), - [anon_sym_const] = ACTIONS(2017), - [aux_sym_cmd_identifier_token1] = ACTIONS(2017), - [aux_sym_cmd_identifier_token2] = ACTIONS(2023), - [aux_sym_cmd_identifier_token3] = ACTIONS(2023), - [aux_sym_cmd_identifier_token4] = ACTIONS(2023), - [aux_sym_cmd_identifier_token5] = ACTIONS(2023), - [aux_sym_cmd_identifier_token6] = ACTIONS(2023), - [aux_sym_cmd_identifier_token7] = ACTIONS(2023), - [aux_sym_cmd_identifier_token8] = ACTIONS(2017), - [aux_sym_cmd_identifier_token9] = ACTIONS(2017), - [aux_sym_cmd_identifier_token10] = ACTIONS(2023), - [aux_sym_cmd_identifier_token11] = ACTIONS(2023), - [aux_sym_cmd_identifier_token12] = ACTIONS(2017), - [aux_sym_cmd_identifier_token13] = ACTIONS(2017), - [aux_sym_cmd_identifier_token14] = ACTIONS(2017), - [aux_sym_cmd_identifier_token15] = ACTIONS(2017), - [aux_sym_cmd_identifier_token16] = ACTIONS(2023), - [aux_sym_cmd_identifier_token17] = ACTIONS(2023), - [aux_sym_cmd_identifier_token18] = ACTIONS(2023), - [aux_sym_cmd_identifier_token19] = ACTIONS(2023), - [aux_sym_cmd_identifier_token20] = ACTIONS(2023), - [aux_sym_cmd_identifier_token21] = ACTIONS(2023), - [aux_sym_cmd_identifier_token22] = ACTIONS(2023), - [aux_sym_cmd_identifier_token23] = ACTIONS(2023), - [aux_sym_cmd_identifier_token24] = ACTIONS(2023), - [aux_sym_cmd_identifier_token25] = ACTIONS(2023), - [aux_sym_cmd_identifier_token26] = ACTIONS(2023), - [aux_sym_cmd_identifier_token27] = ACTIONS(2023), - [aux_sym_cmd_identifier_token28] = ACTIONS(2023), - [aux_sym_cmd_identifier_token29] = ACTIONS(2023), - [aux_sym_cmd_identifier_token30] = ACTIONS(2023), - [aux_sym_cmd_identifier_token31] = ACTIONS(2023), - [aux_sym_cmd_identifier_token32] = ACTIONS(2023), - [aux_sym_cmd_identifier_token33] = ACTIONS(2023), - [aux_sym_cmd_identifier_token34] = ACTIONS(2017), - [aux_sym_cmd_identifier_token35] = ACTIONS(2023), - [aux_sym_cmd_identifier_token36] = ACTIONS(2023), - [aux_sym_cmd_identifier_token37] = ACTIONS(2023), - [aux_sym_cmd_identifier_token38] = ACTIONS(2017), - [aux_sym_cmd_identifier_token39] = ACTIONS(2023), - [aux_sym_cmd_identifier_token40] = ACTIONS(2023), - [anon_sym_def] = ACTIONS(2017), - [anon_sym_export_DASHenv] = ACTIONS(2017), - [anon_sym_extern] = ACTIONS(2017), - [anon_sym_module] = ACTIONS(2017), - [anon_sym_use] = ACTIONS(2017), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_COMMA] = ACTIONS(2023), - [anon_sym_DOLLAR] = ACTIONS(2017), - [anon_sym_error] = ACTIONS(2017), - [anon_sym_DASH2] = ACTIONS(2017), - [anon_sym_break] = ACTIONS(2017), - [anon_sym_continue] = ACTIONS(2017), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_in2] = ACTIONS(2017), - [anon_sym_loop] = ACTIONS(2017), - [anon_sym_make] = ACTIONS(2017), - [anon_sym_while] = ACTIONS(2017), - [anon_sym_do] = ACTIONS(2017), - [anon_sym_if] = ACTIONS(2017), - [anon_sym_else] = ACTIONS(2017), - [anon_sym_match] = ACTIONS(2017), - [anon_sym_RBRACE] = ACTIONS(2023), - [anon_sym_try] = ACTIONS(2017), - [anon_sym_catch] = ACTIONS(2017), - [anon_sym_return] = ACTIONS(2017), - [anon_sym_source] = ACTIONS(2017), - [anon_sym_source_DASHenv] = ACTIONS(2017), - [anon_sym_hide] = ACTIONS(2017), - [anon_sym_hide_DASHenv] = ACTIONS(2017), - [anon_sym_overlay] = ACTIONS(2017), - [anon_sym_as] = ACTIONS(2017), - [anon_sym_PLUS2] = ACTIONS(2017), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2023), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2023), - [aux_sym__val_number_decimal_token1] = ACTIONS(2017), - [aux_sym__val_number_decimal_token2] = ACTIONS(2023), - [aux_sym__val_number_decimal_token3] = ACTIONS(2023), - [aux_sym__val_number_decimal_token4] = ACTIONS(2023), - [aux_sym__val_number_token1] = ACTIONS(2023), - [aux_sym__val_number_token2] = ACTIONS(2023), - [aux_sym__val_number_token3] = ACTIONS(2023), - [aux_sym__val_number_token4] = ACTIONS(2017), - [aux_sym__val_number_token5] = ACTIONS(2017), - [aux_sym__val_number_token6] = ACTIONS(2017), - [anon_sym_DQUOTE] = ACTIONS(2023), - [sym__str_single_quotes] = ACTIONS(2023), - [sym__str_back_ticks] = ACTIONS(2023), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2023), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2023), - [anon_sym_register] = ACTIONS(2017), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2023), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2316), }, - [747] = { - [sym_comment] = STATE(747), - [anon_sym_export] = ACTIONS(2025), - [anon_sym_alias] = ACTIONS(2025), - [anon_sym_let] = ACTIONS(2025), - [anon_sym_let_DASHenv] = ACTIONS(2025), - [anon_sym_mut] = ACTIONS(2025), - [anon_sym_const] = ACTIONS(2025), - [aux_sym_cmd_identifier_token1] = ACTIONS(2025), - [aux_sym_cmd_identifier_token2] = ACTIONS(2031), - [aux_sym_cmd_identifier_token3] = ACTIONS(2031), - [aux_sym_cmd_identifier_token4] = ACTIONS(2031), - [aux_sym_cmd_identifier_token5] = ACTIONS(2031), - [aux_sym_cmd_identifier_token6] = ACTIONS(2031), - [aux_sym_cmd_identifier_token7] = ACTIONS(2031), - [aux_sym_cmd_identifier_token8] = ACTIONS(2025), - [aux_sym_cmd_identifier_token9] = ACTIONS(2025), - [aux_sym_cmd_identifier_token10] = ACTIONS(2031), - [aux_sym_cmd_identifier_token11] = ACTIONS(2031), - [aux_sym_cmd_identifier_token12] = ACTIONS(2025), - [aux_sym_cmd_identifier_token13] = ACTIONS(2025), - [aux_sym_cmd_identifier_token14] = ACTIONS(2025), - [aux_sym_cmd_identifier_token15] = ACTIONS(2025), - [aux_sym_cmd_identifier_token16] = ACTIONS(2031), - [aux_sym_cmd_identifier_token17] = ACTIONS(2031), - [aux_sym_cmd_identifier_token18] = ACTIONS(2031), - [aux_sym_cmd_identifier_token19] = ACTIONS(2031), - [aux_sym_cmd_identifier_token20] = ACTIONS(2031), - [aux_sym_cmd_identifier_token21] = ACTIONS(2031), - [aux_sym_cmd_identifier_token22] = ACTIONS(2031), - [aux_sym_cmd_identifier_token23] = ACTIONS(2031), - [aux_sym_cmd_identifier_token24] = ACTIONS(2031), - [aux_sym_cmd_identifier_token25] = ACTIONS(2031), - [aux_sym_cmd_identifier_token26] = ACTIONS(2031), - [aux_sym_cmd_identifier_token27] = ACTIONS(2031), - [aux_sym_cmd_identifier_token28] = ACTIONS(2031), - [aux_sym_cmd_identifier_token29] = ACTIONS(2031), - [aux_sym_cmd_identifier_token30] = ACTIONS(2031), - [aux_sym_cmd_identifier_token31] = ACTIONS(2031), - [aux_sym_cmd_identifier_token32] = ACTIONS(2031), - [aux_sym_cmd_identifier_token33] = ACTIONS(2031), - [aux_sym_cmd_identifier_token34] = ACTIONS(2025), - [aux_sym_cmd_identifier_token35] = ACTIONS(2031), - [aux_sym_cmd_identifier_token36] = ACTIONS(2031), - [aux_sym_cmd_identifier_token37] = ACTIONS(2031), - [aux_sym_cmd_identifier_token38] = ACTIONS(2025), - [aux_sym_cmd_identifier_token39] = ACTIONS(2031), - [aux_sym_cmd_identifier_token40] = ACTIONS(2031), - [anon_sym_def] = ACTIONS(2025), - [anon_sym_export_DASHenv] = ACTIONS(2025), - [anon_sym_extern] = ACTIONS(2025), - [anon_sym_module] = ACTIONS(2025), - [anon_sym_use] = ACTIONS(2025), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_COMMA] = ACTIONS(2031), - [anon_sym_DOLLAR] = ACTIONS(2025), - [anon_sym_error] = ACTIONS(2025), - [anon_sym_DASH2] = ACTIONS(2025), - [anon_sym_break] = ACTIONS(2025), - [anon_sym_continue] = ACTIONS(2025), - [anon_sym_for] = ACTIONS(2025), - [anon_sym_in2] = ACTIONS(2025), - [anon_sym_loop] = ACTIONS(2025), - [anon_sym_make] = ACTIONS(2025), - [anon_sym_while] = ACTIONS(2025), - [anon_sym_do] = ACTIONS(2025), - [anon_sym_if] = ACTIONS(2025), - [anon_sym_else] = ACTIONS(2025), - [anon_sym_match] = ACTIONS(2025), - [anon_sym_RBRACE] = ACTIONS(2031), - [anon_sym_try] = ACTIONS(2025), - [anon_sym_catch] = ACTIONS(2025), - [anon_sym_return] = ACTIONS(2025), - [anon_sym_source] = ACTIONS(2025), - [anon_sym_source_DASHenv] = ACTIONS(2025), - [anon_sym_hide] = ACTIONS(2025), - [anon_sym_hide_DASHenv] = ACTIONS(2025), - [anon_sym_overlay] = ACTIONS(2025), - [anon_sym_as] = ACTIONS(2025), - [anon_sym_PLUS2] = ACTIONS(2025), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2031), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2031), - [aux_sym__val_number_decimal_token1] = ACTIONS(2025), - [aux_sym__val_number_decimal_token2] = ACTIONS(2031), - [aux_sym__val_number_decimal_token3] = ACTIONS(2031), - [aux_sym__val_number_decimal_token4] = ACTIONS(2031), - [aux_sym__val_number_token1] = ACTIONS(2031), - [aux_sym__val_number_token2] = ACTIONS(2031), - [aux_sym__val_number_token3] = ACTIONS(2031), - [aux_sym__val_number_token4] = ACTIONS(2025), - [aux_sym__val_number_token5] = ACTIONS(2025), - [aux_sym__val_number_token6] = ACTIONS(2025), - [anon_sym_DQUOTE] = ACTIONS(2031), - [sym__str_single_quotes] = ACTIONS(2031), - [sym__str_back_ticks] = ACTIONS(2031), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2031), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2031), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2031), - [anon_sym_register] = ACTIONS(2025), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2031), + [706] = { + [sym_comment] = STATE(706), + [anon_sym_export] = ACTIONS(1934), + [anon_sym_alias] = ACTIONS(1934), + [anon_sym_let] = ACTIONS(1934), + [anon_sym_let_DASHenv] = ACTIONS(1934), + [anon_sym_mut] = ACTIONS(1934), + [anon_sym_const] = ACTIONS(1934), + [aux_sym_cmd_identifier_token1] = ACTIONS(1934), + [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(1934), + [aux_sym_cmd_identifier_token9] = ACTIONS(1934), + [aux_sym_cmd_identifier_token10] = ACTIONS(1940), + [aux_sym_cmd_identifier_token11] = ACTIONS(1940), + [aux_sym_cmd_identifier_token12] = ACTIONS(1934), + [aux_sym_cmd_identifier_token13] = ACTIONS(1934), + [aux_sym_cmd_identifier_token14] = ACTIONS(1934), + [aux_sym_cmd_identifier_token15] = ACTIONS(1934), + [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(1934), + [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(1934), + [aux_sym_cmd_identifier_token39] = ACTIONS(1940), + [aux_sym_cmd_identifier_token40] = ACTIONS(1940), + [anon_sym_def] = ACTIONS(1934), + [anon_sym_export_DASHenv] = ACTIONS(1934), + [anon_sym_extern] = ACTIONS(1934), + [anon_sym_module] = ACTIONS(1934), + [anon_sym_use] = ACTIONS(1934), + [anon_sym_LPAREN] = ACTIONS(1940), + [anon_sym_COMMA] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(1934), + [anon_sym_error] = ACTIONS(1934), + [anon_sym_DASH2] = ACTIONS(1934), + [anon_sym_break] = ACTIONS(1934), + [anon_sym_continue] = ACTIONS(1934), + [anon_sym_for] = ACTIONS(1934), + [anon_sym_in2] = ACTIONS(1934), + [anon_sym_loop] = ACTIONS(1934), + [anon_sym_make] = ACTIONS(1934), + [anon_sym_while] = ACTIONS(1934), + [anon_sym_do] = ACTIONS(1934), + [anon_sym_if] = ACTIONS(1934), + [anon_sym_else] = ACTIONS(1934), + [anon_sym_match] = ACTIONS(1934), + [anon_sym_RBRACE] = ACTIONS(1940), + [anon_sym_try] = ACTIONS(1934), + [anon_sym_catch] = ACTIONS(1934), + [anon_sym_return] = ACTIONS(1934), + [anon_sym_source] = ACTIONS(1934), + [anon_sym_source_DASHenv] = ACTIONS(1934), + [anon_sym_hide] = ACTIONS(1934), + [anon_sym_hide_DASHenv] = ACTIONS(1934), + [anon_sym_overlay] = ACTIONS(1934), + [anon_sym_as] = ACTIONS(1934), + [anon_sym_PLUS2] = ACTIONS(1934), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1940), + [aux_sym__val_number_decimal_token1] = ACTIONS(1934), + [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(1934), + [aux_sym__val_number_token5] = ACTIONS(1934), + [aux_sym__val_number_token6] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1940), + [sym__str_single_quotes] = ACTIONS(1940), + [sym__str_back_ticks] = ACTIONS(1940), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1940), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1934), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1940), }, - [748] = { - [sym_comment] = STATE(748), - [anon_sym_export] = ACTIONS(2328), - [anon_sym_alias] = ACTIONS(2328), - [anon_sym_let] = ACTIONS(2328), - [anon_sym_let_DASHenv] = ACTIONS(2328), - [anon_sym_mut] = ACTIONS(2328), - [anon_sym_const] = ACTIONS(2328), - [aux_sym_cmd_identifier_token1] = ACTIONS(2328), - [aux_sym_cmd_identifier_token2] = ACTIONS(2330), - [aux_sym_cmd_identifier_token3] = ACTIONS(2330), - [aux_sym_cmd_identifier_token4] = ACTIONS(2330), - [aux_sym_cmd_identifier_token5] = ACTIONS(2330), - [aux_sym_cmd_identifier_token6] = ACTIONS(2330), - [aux_sym_cmd_identifier_token7] = ACTIONS(2330), - [aux_sym_cmd_identifier_token8] = ACTIONS(2328), - [aux_sym_cmd_identifier_token9] = ACTIONS(2328), - [aux_sym_cmd_identifier_token10] = ACTIONS(2330), - [aux_sym_cmd_identifier_token11] = ACTIONS(2330), - [aux_sym_cmd_identifier_token12] = ACTIONS(2328), - [aux_sym_cmd_identifier_token13] = ACTIONS(2328), - [aux_sym_cmd_identifier_token14] = ACTIONS(2328), - [aux_sym_cmd_identifier_token15] = ACTIONS(2328), - [aux_sym_cmd_identifier_token16] = ACTIONS(2330), - [aux_sym_cmd_identifier_token17] = ACTIONS(2330), - [aux_sym_cmd_identifier_token18] = ACTIONS(2330), - [aux_sym_cmd_identifier_token19] = ACTIONS(2330), - [aux_sym_cmd_identifier_token20] = ACTIONS(2330), - [aux_sym_cmd_identifier_token21] = ACTIONS(2330), - [aux_sym_cmd_identifier_token22] = ACTIONS(2330), - [aux_sym_cmd_identifier_token23] = ACTIONS(2330), - [aux_sym_cmd_identifier_token24] = ACTIONS(2330), - [aux_sym_cmd_identifier_token25] = ACTIONS(2330), - [aux_sym_cmd_identifier_token26] = ACTIONS(2330), - [aux_sym_cmd_identifier_token27] = ACTIONS(2330), - [aux_sym_cmd_identifier_token28] = ACTIONS(2330), - [aux_sym_cmd_identifier_token29] = ACTIONS(2330), - [aux_sym_cmd_identifier_token30] = ACTIONS(2330), - [aux_sym_cmd_identifier_token31] = ACTIONS(2330), - [aux_sym_cmd_identifier_token32] = ACTIONS(2330), - [aux_sym_cmd_identifier_token33] = ACTIONS(2330), - [aux_sym_cmd_identifier_token34] = ACTIONS(2328), - [aux_sym_cmd_identifier_token35] = ACTIONS(2330), - [aux_sym_cmd_identifier_token36] = ACTIONS(2330), - [aux_sym_cmd_identifier_token37] = ACTIONS(2330), - [aux_sym_cmd_identifier_token38] = ACTIONS(2328), - [aux_sym_cmd_identifier_token39] = ACTIONS(2330), - [aux_sym_cmd_identifier_token40] = ACTIONS(2330), - [anon_sym_def] = ACTIONS(2328), - [anon_sym_export_DASHenv] = ACTIONS(2328), - [anon_sym_extern] = ACTIONS(2328), - [anon_sym_module] = ACTIONS(2328), - [anon_sym_use] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2330), - [anon_sym_COMMA] = ACTIONS(2330), - [anon_sym_DOLLAR] = ACTIONS(2328), - [anon_sym_error] = ACTIONS(2328), - [anon_sym_DASH2] = ACTIONS(2328), - [anon_sym_break] = ACTIONS(2328), - [anon_sym_continue] = ACTIONS(2328), - [anon_sym_for] = ACTIONS(2328), - [anon_sym_in2] = ACTIONS(2328), - [anon_sym_loop] = ACTIONS(2328), - [anon_sym_make] = ACTIONS(2328), - [anon_sym_while] = ACTIONS(2328), - [anon_sym_do] = ACTIONS(2328), - [anon_sym_if] = ACTIONS(2328), - [anon_sym_else] = ACTIONS(2328), - [anon_sym_match] = ACTIONS(2328), - [anon_sym_RBRACE] = ACTIONS(2330), - [anon_sym_try] = ACTIONS(2328), - [anon_sym_catch] = ACTIONS(2328), - [anon_sym_return] = ACTIONS(2328), - [anon_sym_source] = ACTIONS(2328), - [anon_sym_source_DASHenv] = ACTIONS(2328), - [anon_sym_hide] = ACTIONS(2328), - [anon_sym_hide_DASHenv] = ACTIONS(2328), - [anon_sym_overlay] = ACTIONS(2328), - [anon_sym_as] = ACTIONS(2328), - [anon_sym_PLUS2] = ACTIONS(2328), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2330), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2330), - [aux_sym__val_number_decimal_token1] = ACTIONS(2328), - [aux_sym__val_number_decimal_token2] = ACTIONS(2330), - [aux_sym__val_number_decimal_token3] = ACTIONS(2330), - [aux_sym__val_number_decimal_token4] = ACTIONS(2330), - [aux_sym__val_number_token1] = ACTIONS(2330), - [aux_sym__val_number_token2] = ACTIONS(2330), - [aux_sym__val_number_token3] = ACTIONS(2330), - [aux_sym__val_number_token4] = ACTIONS(2328), - [aux_sym__val_number_token5] = ACTIONS(2328), - [aux_sym__val_number_token6] = ACTIONS(2328), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym__str_single_quotes] = ACTIONS(2330), - [sym__str_back_ticks] = ACTIONS(2330), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2330), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2330), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2330), - [anon_sym_register] = ACTIONS(2328), + [707] = { + [sym_comment] = STATE(707), + [anon_sym_export] = ACTIONS(2290), + [anon_sym_alias] = ACTIONS(2290), + [anon_sym_let] = ACTIONS(2290), + [anon_sym_let_DASHenv] = ACTIONS(2290), + [anon_sym_mut] = ACTIONS(2290), + [anon_sym_const] = ACTIONS(2290), + [aux_sym_cmd_identifier_token1] = ACTIONS(2290), + [aux_sym_cmd_identifier_token2] = ACTIONS(2292), + [aux_sym_cmd_identifier_token3] = ACTIONS(2292), + [aux_sym_cmd_identifier_token4] = ACTIONS(2292), + [aux_sym_cmd_identifier_token5] = ACTIONS(2292), + [aux_sym_cmd_identifier_token6] = ACTIONS(2292), + [aux_sym_cmd_identifier_token7] = ACTIONS(2292), + [aux_sym_cmd_identifier_token8] = ACTIONS(2290), + [aux_sym_cmd_identifier_token9] = ACTIONS(2290), + [aux_sym_cmd_identifier_token10] = ACTIONS(2292), + [aux_sym_cmd_identifier_token11] = ACTIONS(2292), + [aux_sym_cmd_identifier_token12] = ACTIONS(2290), + [aux_sym_cmd_identifier_token13] = ACTIONS(2290), + [aux_sym_cmd_identifier_token14] = ACTIONS(2290), + [aux_sym_cmd_identifier_token15] = ACTIONS(2290), + [aux_sym_cmd_identifier_token16] = ACTIONS(2292), + [aux_sym_cmd_identifier_token17] = ACTIONS(2292), + [aux_sym_cmd_identifier_token18] = ACTIONS(2292), + [aux_sym_cmd_identifier_token19] = ACTIONS(2292), + [aux_sym_cmd_identifier_token20] = ACTIONS(2292), + [aux_sym_cmd_identifier_token21] = ACTIONS(2292), + [aux_sym_cmd_identifier_token22] = ACTIONS(2292), + [aux_sym_cmd_identifier_token23] = ACTIONS(2292), + [aux_sym_cmd_identifier_token24] = ACTIONS(2292), + [aux_sym_cmd_identifier_token25] = ACTIONS(2292), + [aux_sym_cmd_identifier_token26] = ACTIONS(2292), + [aux_sym_cmd_identifier_token27] = ACTIONS(2292), + [aux_sym_cmd_identifier_token28] = ACTIONS(2292), + [aux_sym_cmd_identifier_token29] = ACTIONS(2292), + [aux_sym_cmd_identifier_token30] = ACTIONS(2292), + [aux_sym_cmd_identifier_token31] = ACTIONS(2292), + [aux_sym_cmd_identifier_token32] = ACTIONS(2292), + [aux_sym_cmd_identifier_token33] = ACTIONS(2292), + [aux_sym_cmd_identifier_token34] = ACTIONS(2290), + [aux_sym_cmd_identifier_token35] = ACTIONS(2292), + [aux_sym_cmd_identifier_token36] = ACTIONS(2292), + [aux_sym_cmd_identifier_token37] = ACTIONS(2292), + [aux_sym_cmd_identifier_token38] = ACTIONS(2290), + [aux_sym_cmd_identifier_token39] = ACTIONS(2292), + [aux_sym_cmd_identifier_token40] = ACTIONS(2292), + [anon_sym_def] = ACTIONS(2290), + [anon_sym_export_DASHenv] = ACTIONS(2290), + [anon_sym_extern] = ACTIONS(2290), + [anon_sym_module] = ACTIONS(2290), + [anon_sym_use] = ACTIONS(2290), + [anon_sym_LPAREN] = ACTIONS(2292), + [anon_sym_COMMA] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2290), + [anon_sym_error] = ACTIONS(2290), + [anon_sym_DASH2] = ACTIONS(2290), + [anon_sym_break] = ACTIONS(2290), + [anon_sym_continue] = ACTIONS(2290), + [anon_sym_for] = ACTIONS(2290), + [anon_sym_in2] = ACTIONS(2290), + [anon_sym_loop] = ACTIONS(2290), + [anon_sym_make] = ACTIONS(2290), + [anon_sym_while] = ACTIONS(2290), + [anon_sym_do] = ACTIONS(2290), + [anon_sym_if] = ACTIONS(2290), + [anon_sym_else] = ACTIONS(2290), + [anon_sym_match] = ACTIONS(2290), + [anon_sym_RBRACE] = ACTIONS(2292), + [anon_sym_try] = ACTIONS(2290), + [anon_sym_catch] = ACTIONS(2290), + [anon_sym_return] = ACTIONS(2290), + [anon_sym_source] = ACTIONS(2290), + [anon_sym_source_DASHenv] = ACTIONS(2290), + [anon_sym_hide] = ACTIONS(2290), + [anon_sym_hide_DASHenv] = ACTIONS(2290), + [anon_sym_overlay] = ACTIONS(2290), + [anon_sym_as] = ACTIONS(2290), + [anon_sym_PLUS2] = ACTIONS(2290), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2292), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2292), + [aux_sym__val_number_decimal_token1] = ACTIONS(2290), + [aux_sym__val_number_decimal_token2] = ACTIONS(2292), + [aux_sym__val_number_decimal_token3] = ACTIONS(2292), + [aux_sym__val_number_decimal_token4] = ACTIONS(2292), + [aux_sym__val_number_token1] = ACTIONS(2292), + [aux_sym__val_number_token2] = ACTIONS(2292), + [aux_sym__val_number_token3] = ACTIONS(2292), + [aux_sym__val_number_token4] = ACTIONS(2290), + [aux_sym__val_number_token5] = ACTIONS(2290), + [aux_sym__val_number_token6] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2292), + [sym__str_single_quotes] = ACTIONS(2292), + [sym__str_back_ticks] = ACTIONS(2292), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2292), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2292), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2292), + [anon_sym_register] = ACTIONS(2290), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2330), + [sym_raw_string_begin] = ACTIONS(2292), }, - [749] = { - [sym_comment] = STATE(749), - [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(2334), - [aux_sym_cmd_identifier_token3] = ACTIONS(2334), - [aux_sym_cmd_identifier_token4] = ACTIONS(2334), - [aux_sym_cmd_identifier_token5] = ACTIONS(2334), - [aux_sym_cmd_identifier_token6] = ACTIONS(2334), - [aux_sym_cmd_identifier_token7] = ACTIONS(2334), - [aux_sym_cmd_identifier_token8] = ACTIONS(2332), - [aux_sym_cmd_identifier_token9] = ACTIONS(2332), - [aux_sym_cmd_identifier_token10] = ACTIONS(2334), - [aux_sym_cmd_identifier_token11] = ACTIONS(2334), - [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(2334), - [aux_sym_cmd_identifier_token17] = ACTIONS(2334), - [aux_sym_cmd_identifier_token18] = ACTIONS(2334), - [aux_sym_cmd_identifier_token19] = ACTIONS(2334), - [aux_sym_cmd_identifier_token20] = ACTIONS(2334), - [aux_sym_cmd_identifier_token21] = ACTIONS(2334), - [aux_sym_cmd_identifier_token22] = ACTIONS(2334), - [aux_sym_cmd_identifier_token23] = ACTIONS(2334), - [aux_sym_cmd_identifier_token24] = ACTIONS(2334), - [aux_sym_cmd_identifier_token25] = ACTIONS(2334), - [aux_sym_cmd_identifier_token26] = ACTIONS(2334), - [aux_sym_cmd_identifier_token27] = ACTIONS(2334), - [aux_sym_cmd_identifier_token28] = ACTIONS(2334), - [aux_sym_cmd_identifier_token29] = ACTIONS(2334), - [aux_sym_cmd_identifier_token30] = ACTIONS(2334), - [aux_sym_cmd_identifier_token31] = ACTIONS(2334), - [aux_sym_cmd_identifier_token32] = ACTIONS(2334), - [aux_sym_cmd_identifier_token33] = ACTIONS(2334), - [aux_sym_cmd_identifier_token34] = ACTIONS(2332), - [aux_sym_cmd_identifier_token35] = ACTIONS(2334), - [aux_sym_cmd_identifier_token36] = ACTIONS(2334), - [aux_sym_cmd_identifier_token37] = ACTIONS(2334), - [aux_sym_cmd_identifier_token38] = ACTIONS(2332), - [aux_sym_cmd_identifier_token39] = ACTIONS(2334), - [aux_sym_cmd_identifier_token40] = ACTIONS(2334), - [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(2334), - [anon_sym_COMMA] = ACTIONS(2334), - [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(2334), - [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_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(2334), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2334), - [aux_sym__val_number_decimal_token1] = ACTIONS(2332), - [aux_sym__val_number_decimal_token2] = ACTIONS(2334), - [aux_sym__val_number_decimal_token3] = ACTIONS(2334), - [aux_sym__val_number_decimal_token4] = ACTIONS(2334), - [aux_sym__val_number_token1] = ACTIONS(2334), - [aux_sym__val_number_token2] = ACTIONS(2334), - [aux_sym__val_number_token3] = ACTIONS(2334), - [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(2334), - [sym__str_single_quotes] = ACTIONS(2334), - [sym__str_back_ticks] = ACTIONS(2334), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2334), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2334), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2334), - [anon_sym_register] = ACTIONS(2332), + [708] = { + [sym_comment] = STATE(708), + [anon_sym_export] = ACTIONS(2294), + [anon_sym_alias] = ACTIONS(2294), + [anon_sym_let] = ACTIONS(2294), + [anon_sym_let_DASHenv] = ACTIONS(2294), + [anon_sym_mut] = ACTIONS(2294), + [anon_sym_const] = ACTIONS(2294), + [aux_sym_cmd_identifier_token1] = ACTIONS(2294), + [aux_sym_cmd_identifier_token2] = ACTIONS(2296), + [aux_sym_cmd_identifier_token3] = ACTIONS(2296), + [aux_sym_cmd_identifier_token4] = ACTIONS(2296), + [aux_sym_cmd_identifier_token5] = ACTIONS(2296), + [aux_sym_cmd_identifier_token6] = ACTIONS(2296), + [aux_sym_cmd_identifier_token7] = ACTIONS(2296), + [aux_sym_cmd_identifier_token8] = ACTIONS(2294), + [aux_sym_cmd_identifier_token9] = ACTIONS(2294), + [aux_sym_cmd_identifier_token10] = ACTIONS(2296), + [aux_sym_cmd_identifier_token11] = ACTIONS(2296), + [aux_sym_cmd_identifier_token12] = ACTIONS(2294), + [aux_sym_cmd_identifier_token13] = ACTIONS(2294), + [aux_sym_cmd_identifier_token14] = ACTIONS(2294), + [aux_sym_cmd_identifier_token15] = ACTIONS(2294), + [aux_sym_cmd_identifier_token16] = ACTIONS(2296), + [aux_sym_cmd_identifier_token17] = ACTIONS(2296), + [aux_sym_cmd_identifier_token18] = ACTIONS(2296), + [aux_sym_cmd_identifier_token19] = ACTIONS(2296), + [aux_sym_cmd_identifier_token20] = ACTIONS(2296), + [aux_sym_cmd_identifier_token21] = ACTIONS(2296), + [aux_sym_cmd_identifier_token22] = ACTIONS(2296), + [aux_sym_cmd_identifier_token23] = ACTIONS(2296), + [aux_sym_cmd_identifier_token24] = ACTIONS(2296), + [aux_sym_cmd_identifier_token25] = ACTIONS(2296), + [aux_sym_cmd_identifier_token26] = ACTIONS(2296), + [aux_sym_cmd_identifier_token27] = ACTIONS(2296), + [aux_sym_cmd_identifier_token28] = ACTIONS(2296), + [aux_sym_cmd_identifier_token29] = ACTIONS(2296), + [aux_sym_cmd_identifier_token30] = ACTIONS(2296), + [aux_sym_cmd_identifier_token31] = ACTIONS(2296), + [aux_sym_cmd_identifier_token32] = ACTIONS(2296), + [aux_sym_cmd_identifier_token33] = ACTIONS(2296), + [aux_sym_cmd_identifier_token34] = ACTIONS(2294), + [aux_sym_cmd_identifier_token35] = ACTIONS(2296), + [aux_sym_cmd_identifier_token36] = ACTIONS(2296), + [aux_sym_cmd_identifier_token37] = ACTIONS(2296), + [aux_sym_cmd_identifier_token38] = ACTIONS(2294), + [aux_sym_cmd_identifier_token39] = ACTIONS(2296), + [aux_sym_cmd_identifier_token40] = ACTIONS(2296), + [anon_sym_def] = ACTIONS(2294), + [anon_sym_export_DASHenv] = ACTIONS(2294), + [anon_sym_extern] = ACTIONS(2294), + [anon_sym_module] = ACTIONS(2294), + [anon_sym_use] = ACTIONS(2294), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_COMMA] = ACTIONS(2296), + [anon_sym_DOLLAR] = ACTIONS(2294), + [anon_sym_error] = ACTIONS(2294), + [anon_sym_DASH2] = ACTIONS(2294), + [anon_sym_break] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2294), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_in2] = ACTIONS(2294), + [anon_sym_loop] = ACTIONS(2294), + [anon_sym_make] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2294), + [anon_sym_do] = ACTIONS(2294), + [anon_sym_if] = ACTIONS(2294), + [anon_sym_else] = ACTIONS(2294), + [anon_sym_match] = ACTIONS(2294), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_try] = ACTIONS(2294), + [anon_sym_catch] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_source] = ACTIONS(2294), + [anon_sym_source_DASHenv] = ACTIONS(2294), + [anon_sym_hide] = ACTIONS(2294), + [anon_sym_hide_DASHenv] = ACTIONS(2294), + [anon_sym_overlay] = ACTIONS(2294), + [anon_sym_as] = ACTIONS(2294), + [anon_sym_PLUS2] = ACTIONS(2294), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2296), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2296), + [aux_sym__val_number_decimal_token1] = ACTIONS(2294), + [aux_sym__val_number_decimal_token2] = ACTIONS(2296), + [aux_sym__val_number_decimal_token3] = ACTIONS(2296), + [aux_sym__val_number_decimal_token4] = ACTIONS(2296), + [aux_sym__val_number_token1] = ACTIONS(2296), + [aux_sym__val_number_token2] = ACTIONS(2296), + [aux_sym__val_number_token3] = ACTIONS(2296), + [aux_sym__val_number_token4] = ACTIONS(2294), + [aux_sym__val_number_token5] = ACTIONS(2294), + [aux_sym__val_number_token6] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2296), + [sym__str_single_quotes] = ACTIONS(2296), + [sym__str_back_ticks] = ACTIONS(2296), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2296), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2296), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2296), + [anon_sym_register] = ACTIONS(2294), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2334), + [sym_raw_string_begin] = ACTIONS(2296), }, - [750] = { - [sym_comment] = STATE(750), - [anon_sym_export] = ACTIONS(2336), - [anon_sym_alias] = ACTIONS(2336), - [anon_sym_let] = ACTIONS(2336), - [anon_sym_let_DASHenv] = ACTIONS(2336), - [anon_sym_mut] = ACTIONS(2336), - [anon_sym_const] = ACTIONS(2336), - [aux_sym_cmd_identifier_token1] = ACTIONS(2336), - [aux_sym_cmd_identifier_token2] = ACTIONS(2338), - [aux_sym_cmd_identifier_token3] = ACTIONS(2338), - [aux_sym_cmd_identifier_token4] = ACTIONS(2338), - [aux_sym_cmd_identifier_token5] = ACTIONS(2338), - [aux_sym_cmd_identifier_token6] = ACTIONS(2338), - [aux_sym_cmd_identifier_token7] = ACTIONS(2338), - [aux_sym_cmd_identifier_token8] = ACTIONS(2336), - [aux_sym_cmd_identifier_token9] = ACTIONS(2336), - [aux_sym_cmd_identifier_token10] = ACTIONS(2338), - [aux_sym_cmd_identifier_token11] = ACTIONS(2338), - [aux_sym_cmd_identifier_token12] = ACTIONS(2336), - [aux_sym_cmd_identifier_token13] = ACTIONS(2336), - [aux_sym_cmd_identifier_token14] = ACTIONS(2336), - [aux_sym_cmd_identifier_token15] = ACTIONS(2336), - [aux_sym_cmd_identifier_token16] = ACTIONS(2338), - [aux_sym_cmd_identifier_token17] = ACTIONS(2338), - [aux_sym_cmd_identifier_token18] = ACTIONS(2338), - [aux_sym_cmd_identifier_token19] = ACTIONS(2338), - [aux_sym_cmd_identifier_token20] = ACTIONS(2338), - [aux_sym_cmd_identifier_token21] = ACTIONS(2338), - [aux_sym_cmd_identifier_token22] = ACTIONS(2338), - [aux_sym_cmd_identifier_token23] = ACTIONS(2338), - [aux_sym_cmd_identifier_token24] = ACTIONS(2338), - [aux_sym_cmd_identifier_token25] = ACTIONS(2338), - [aux_sym_cmd_identifier_token26] = ACTIONS(2338), - [aux_sym_cmd_identifier_token27] = ACTIONS(2338), - [aux_sym_cmd_identifier_token28] = ACTIONS(2338), - [aux_sym_cmd_identifier_token29] = ACTIONS(2338), - [aux_sym_cmd_identifier_token30] = ACTIONS(2338), - [aux_sym_cmd_identifier_token31] = ACTIONS(2338), - [aux_sym_cmd_identifier_token32] = ACTIONS(2338), - [aux_sym_cmd_identifier_token33] = ACTIONS(2338), - [aux_sym_cmd_identifier_token34] = ACTIONS(2336), - [aux_sym_cmd_identifier_token35] = ACTIONS(2338), - [aux_sym_cmd_identifier_token36] = ACTIONS(2338), - [aux_sym_cmd_identifier_token37] = ACTIONS(2338), - [aux_sym_cmd_identifier_token38] = ACTIONS(2336), - [aux_sym_cmd_identifier_token39] = ACTIONS(2338), - [aux_sym_cmd_identifier_token40] = ACTIONS(2338), - [anon_sym_def] = ACTIONS(2336), - [anon_sym_export_DASHenv] = ACTIONS(2336), - [anon_sym_extern] = ACTIONS(2336), - [anon_sym_module] = ACTIONS(2336), - [anon_sym_use] = ACTIONS(2336), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_COMMA] = ACTIONS(2338), - [anon_sym_DOLLAR] = ACTIONS(2336), - [anon_sym_error] = ACTIONS(2336), - [anon_sym_DASH2] = ACTIONS(2336), - [anon_sym_break] = ACTIONS(2336), - [anon_sym_continue] = ACTIONS(2336), - [anon_sym_for] = ACTIONS(2336), - [anon_sym_in2] = ACTIONS(2336), - [anon_sym_loop] = ACTIONS(2336), - [anon_sym_make] = ACTIONS(2336), - [anon_sym_while] = ACTIONS(2336), - [anon_sym_do] = ACTIONS(2336), - [anon_sym_if] = ACTIONS(2336), - [anon_sym_else] = ACTIONS(2336), - [anon_sym_match] = ACTIONS(2336), - [anon_sym_RBRACE] = ACTIONS(2338), - [anon_sym_try] = ACTIONS(2336), - [anon_sym_catch] = ACTIONS(2336), - [anon_sym_return] = ACTIONS(2336), - [anon_sym_source] = ACTIONS(2336), - [anon_sym_source_DASHenv] = ACTIONS(2336), - [anon_sym_hide] = ACTIONS(2336), - [anon_sym_hide_DASHenv] = ACTIONS(2336), - [anon_sym_overlay] = ACTIONS(2336), - [anon_sym_as] = ACTIONS(2336), - [anon_sym_PLUS2] = ACTIONS(2336), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2338), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2338), - [aux_sym__val_number_decimal_token1] = ACTIONS(2336), - [aux_sym__val_number_decimal_token2] = ACTIONS(2338), - [aux_sym__val_number_decimal_token3] = ACTIONS(2338), - [aux_sym__val_number_decimal_token4] = ACTIONS(2338), - [aux_sym__val_number_token1] = ACTIONS(2338), - [aux_sym__val_number_token2] = ACTIONS(2338), - [aux_sym__val_number_token3] = ACTIONS(2338), - [aux_sym__val_number_token4] = ACTIONS(2336), - [aux_sym__val_number_token5] = ACTIONS(2336), - [aux_sym__val_number_token6] = ACTIONS(2336), - [anon_sym_DQUOTE] = ACTIONS(2338), - [sym__str_single_quotes] = ACTIONS(2338), - [sym__str_back_ticks] = ACTIONS(2338), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2338), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2338), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2338), - [anon_sym_register] = ACTIONS(2336), + [709] = { + [sym_comment] = STATE(709), + [anon_sym_export] = ACTIONS(1987), + [anon_sym_alias] = ACTIONS(1987), + [anon_sym_let] = ACTIONS(1987), + [anon_sym_let_DASHenv] = ACTIONS(1987), + [anon_sym_mut] = ACTIONS(1987), + [anon_sym_const] = ACTIONS(1987), + [aux_sym_cmd_identifier_token1] = ACTIONS(1987), + [aux_sym_cmd_identifier_token2] = ACTIONS(1989), + [aux_sym_cmd_identifier_token3] = ACTIONS(1989), + [aux_sym_cmd_identifier_token4] = ACTIONS(1989), + [aux_sym_cmd_identifier_token5] = ACTIONS(1989), + [aux_sym_cmd_identifier_token6] = ACTIONS(1989), + [aux_sym_cmd_identifier_token7] = ACTIONS(1989), + [aux_sym_cmd_identifier_token8] = ACTIONS(1987), + [aux_sym_cmd_identifier_token9] = ACTIONS(1987), + [aux_sym_cmd_identifier_token10] = ACTIONS(1989), + [aux_sym_cmd_identifier_token11] = ACTIONS(1989), + [aux_sym_cmd_identifier_token12] = ACTIONS(1987), + [aux_sym_cmd_identifier_token13] = ACTIONS(1987), + [aux_sym_cmd_identifier_token14] = ACTIONS(1987), + [aux_sym_cmd_identifier_token15] = ACTIONS(1987), + [aux_sym_cmd_identifier_token16] = ACTIONS(1989), + [aux_sym_cmd_identifier_token17] = ACTIONS(1989), + [aux_sym_cmd_identifier_token18] = ACTIONS(1989), + [aux_sym_cmd_identifier_token19] = ACTIONS(1989), + [aux_sym_cmd_identifier_token20] = ACTIONS(1989), + [aux_sym_cmd_identifier_token21] = ACTIONS(1989), + [aux_sym_cmd_identifier_token22] = ACTIONS(1989), + [aux_sym_cmd_identifier_token23] = ACTIONS(1989), + [aux_sym_cmd_identifier_token24] = ACTIONS(1989), + [aux_sym_cmd_identifier_token25] = ACTIONS(1989), + [aux_sym_cmd_identifier_token26] = ACTIONS(1989), + [aux_sym_cmd_identifier_token27] = ACTIONS(1989), + [aux_sym_cmd_identifier_token28] = ACTIONS(1989), + [aux_sym_cmd_identifier_token29] = ACTIONS(1989), + [aux_sym_cmd_identifier_token30] = ACTIONS(1989), + [aux_sym_cmd_identifier_token31] = ACTIONS(1989), + [aux_sym_cmd_identifier_token32] = ACTIONS(1989), + [aux_sym_cmd_identifier_token33] = ACTIONS(1989), + [aux_sym_cmd_identifier_token34] = ACTIONS(1987), + [aux_sym_cmd_identifier_token35] = ACTIONS(1989), + [aux_sym_cmd_identifier_token36] = ACTIONS(1989), + [aux_sym_cmd_identifier_token37] = ACTIONS(1989), + [aux_sym_cmd_identifier_token38] = ACTIONS(1987), + [aux_sym_cmd_identifier_token39] = ACTIONS(1989), + [aux_sym_cmd_identifier_token40] = ACTIONS(1989), + [anon_sym_def] = ACTIONS(1987), + [anon_sym_export_DASHenv] = ACTIONS(1987), + [anon_sym_extern] = ACTIONS(1987), + [anon_sym_module] = ACTIONS(1987), + [anon_sym_use] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_COMMA] = ACTIONS(1989), + [anon_sym_DOLLAR] = ACTIONS(1987), + [anon_sym_error] = ACTIONS(1987), + [anon_sym_DASH2] = ACTIONS(1987), + [anon_sym_break] = ACTIONS(1987), + [anon_sym_continue] = ACTIONS(1987), + [anon_sym_for] = ACTIONS(1987), + [anon_sym_in2] = ACTIONS(1987), + [anon_sym_loop] = ACTIONS(1987), + [anon_sym_make] = ACTIONS(1987), + [anon_sym_while] = ACTIONS(1987), + [anon_sym_do] = ACTIONS(1987), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_else] = ACTIONS(1987), + [anon_sym_match] = ACTIONS(1987), + [anon_sym_RBRACE] = ACTIONS(1989), + [anon_sym_try] = ACTIONS(1987), + [anon_sym_catch] = ACTIONS(1987), + [anon_sym_return] = ACTIONS(1987), + [anon_sym_source] = ACTIONS(1987), + [anon_sym_source_DASHenv] = ACTIONS(1987), + [anon_sym_hide] = ACTIONS(1987), + [anon_sym_hide_DASHenv] = ACTIONS(1987), + [anon_sym_overlay] = ACTIONS(1987), + [anon_sym_as] = ACTIONS(1987), + [anon_sym_PLUS2] = ACTIONS(1987), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1989), + [aux_sym__val_number_decimal_token1] = ACTIONS(1987), + [aux_sym__val_number_decimal_token2] = ACTIONS(1989), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), + [aux_sym__val_number_token1] = ACTIONS(1989), + [aux_sym__val_number_token2] = ACTIONS(1989), + [aux_sym__val_number_token3] = ACTIONS(1989), + [aux_sym__val_number_token4] = ACTIONS(1987), + [aux_sym__val_number_token5] = ACTIONS(1987), + [aux_sym__val_number_token6] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(1989), + [sym__str_single_quotes] = ACTIONS(1989), + [sym__str_back_ticks] = ACTIONS(1989), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1989), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1989), + [anon_sym_register] = ACTIONS(1987), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2338), - }, - [751] = { - [sym_comment] = STATE(751), - [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_COMMA] = ACTIONS(2447), - [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(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_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_DOLLAR_SQUOTE] = ACTIONS(2447), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2447), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2447), - [anon_sym_register] = ACTIONS(2445), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2447), - }, - [752] = { - [sym_comment] = STATE(752), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT] = ACTIONS(2492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(2494), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_COLON2] = ACTIONS(1492), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1492), - [anon_sym_out_GT_GT] = ACTIONS(1492), - [anon_sym_e_GT_GT] = ACTIONS(1492), - [anon_sym_o_GT_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(3), - }, - [753] = { - [sym_comment] = STATE(753), - [anon_sym_export] = ACTIONS(1280), - [anon_sym_alias] = ACTIONS(1280), - [anon_sym_let] = ACTIONS(1280), - [anon_sym_let_DASHenv] = ACTIONS(1280), - [anon_sym_mut] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [aux_sym_cmd_identifier_token1] = ACTIONS(1280), - [aux_sym_cmd_identifier_token2] = ACTIONS(1278), - [aux_sym_cmd_identifier_token3] = ACTIONS(1278), - [aux_sym_cmd_identifier_token4] = ACTIONS(1278), - [aux_sym_cmd_identifier_token5] = ACTIONS(1278), - [aux_sym_cmd_identifier_token6] = ACTIONS(1278), - [aux_sym_cmd_identifier_token7] = ACTIONS(1278), - [aux_sym_cmd_identifier_token8] = ACTIONS(1280), - [aux_sym_cmd_identifier_token9] = ACTIONS(1280), - [aux_sym_cmd_identifier_token10] = ACTIONS(1278), - [aux_sym_cmd_identifier_token11] = ACTIONS(1278), - [aux_sym_cmd_identifier_token12] = ACTIONS(1280), - [aux_sym_cmd_identifier_token13] = ACTIONS(1280), - [aux_sym_cmd_identifier_token14] = ACTIONS(1280), - [aux_sym_cmd_identifier_token15] = ACTIONS(1280), - [aux_sym_cmd_identifier_token16] = ACTIONS(1278), - [aux_sym_cmd_identifier_token17] = ACTIONS(1278), - [aux_sym_cmd_identifier_token18] = ACTIONS(1278), - [aux_sym_cmd_identifier_token19] = ACTIONS(1278), - [aux_sym_cmd_identifier_token20] = ACTIONS(1278), - [aux_sym_cmd_identifier_token21] = ACTIONS(1278), - [aux_sym_cmd_identifier_token22] = ACTIONS(1278), - [aux_sym_cmd_identifier_token23] = ACTIONS(1278), - [aux_sym_cmd_identifier_token24] = ACTIONS(1278), - [aux_sym_cmd_identifier_token25] = ACTIONS(1278), - [aux_sym_cmd_identifier_token26] = ACTIONS(1278), - [aux_sym_cmd_identifier_token27] = ACTIONS(1278), - [aux_sym_cmd_identifier_token28] = ACTIONS(1278), - [aux_sym_cmd_identifier_token29] = ACTIONS(1278), - [aux_sym_cmd_identifier_token30] = ACTIONS(1278), - [aux_sym_cmd_identifier_token31] = ACTIONS(1278), - [aux_sym_cmd_identifier_token32] = ACTIONS(1278), - [aux_sym_cmd_identifier_token33] = ACTIONS(1278), - [aux_sym_cmd_identifier_token34] = ACTIONS(1280), - [aux_sym_cmd_identifier_token35] = ACTIONS(1278), - [aux_sym_cmd_identifier_token36] = ACTIONS(1278), - [aux_sym_cmd_identifier_token37] = ACTIONS(1278), - [aux_sym_cmd_identifier_token38] = ACTIONS(1280), - [aux_sym_cmd_identifier_token39] = ACTIONS(1278), - [aux_sym_cmd_identifier_token40] = ACTIONS(1278), - [sym__newline] = ACTIONS(1278), - [anon_sym_def] = ACTIONS(1280), - [anon_sym_export_DASHenv] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym_module] = ACTIONS(1280), - [anon_sym_use] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_DOLLAR] = ACTIONS(1280), - [anon_sym_error] = ACTIONS(1280), - [anon_sym_DASH2] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_in2] = ACTIONS(1280), - [anon_sym_loop] = ACTIONS(1280), - [anon_sym_make] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_else] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_try] = ACTIONS(1280), - [anon_sym_catch] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_source] = ACTIONS(1280), - [anon_sym_source_DASHenv] = ACTIONS(1280), - [anon_sym_hide] = ACTIONS(1280), - [anon_sym_hide_DASHenv] = ACTIONS(1280), - [anon_sym_overlay] = ACTIONS(1280), - [anon_sym_as] = ACTIONS(1280), - [anon_sym_PLUS2] = ACTIONS(1280), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1278), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1278), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1278), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), - [aux_sym__val_number_token1] = ACTIONS(1278), - [aux_sym__val_number_token2] = ACTIONS(1278), - [aux_sym__val_number_token3] = ACTIONS(1278), - [aux_sym__val_number_token4] = ACTIONS(1280), - [aux_sym__val_number_token5] = ACTIONS(1280), - [aux_sym__val_number_token6] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym__str_single_quotes] = ACTIONS(1278), - [sym__str_back_ticks] = ACTIONS(1278), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1278), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1278), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1278), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1278), - }, - [754] = { - [sym_comment] = STATE(754), - [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(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(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_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_DOLLAR_SQUOTE] = ACTIONS(2498), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2498), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2498), - [anon_sym_register] = ACTIONS(2496), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2498), - }, - [755] = { - [sym_comment] = STATE(755), - [anon_sym_STAR_STAR] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_SLASH] = ACTIONS(1484), - [anon_sym_mod] = ACTIONS(1486), - [anon_sym_SLASH_SLASH] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_bit_DASHshl] = ACTIONS(1486), - [anon_sym_bit_DASHshr] = ACTIONS(1486), - [anon_sym_EQ_TILDE] = ACTIONS(1486), - [anon_sym_BANG_TILDE] = ACTIONS(1486), - [anon_sym_bit_DASHand] = ACTIONS(1486), - [anon_sym_bit_DASHxor] = ACTIONS(1486), - [anon_sym_bit_DASHor] = ACTIONS(1486), - [anon_sym_and] = ACTIONS(1486), - [anon_sym_xor] = ACTIONS(1486), - [anon_sym_or] = ACTIONS(1486), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_not_DASHin] = ACTIONS(1486), - [anon_sym_has] = ACTIONS(1486), - [anon_sym_not_DASHhas] = ACTIONS(1486), - [anon_sym_starts_DASHwith] = ACTIONS(1486), - [anon_sym_ends_DASHwith] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(1486), - [anon_sym_BANG_EQ] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1486), - [aux_sym_cmd_identifier_token41] = ACTIONS(1484), - [sym__newline] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_err_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_GT_PIPE] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1484), - [anon_sym_GT2] = ACTIONS(1484), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_in2] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_STAR2] = ACTIONS(1484), - [anon_sym_and2] = ACTIONS(1484), - [anon_sym_xor2] = ACTIONS(1484), - [anon_sym_or2] = ACTIONS(1484), - [anon_sym_not_DASHin2] = ACTIONS(1484), - [anon_sym_has2] = ACTIONS(1484), - [anon_sym_not_DASHhas2] = ACTIONS(1484), - [anon_sym_starts_DASHwith2] = ACTIONS(1484), - [anon_sym_ends_DASHwith2] = ACTIONS(1484), - [anon_sym_EQ_EQ2] = ACTIONS(1484), - [anon_sym_BANG_EQ2] = ACTIONS(1484), - [anon_sym_LT2] = ACTIONS(1484), - [anon_sym_LT_EQ2] = ACTIONS(1484), - [anon_sym_GT_EQ2] = ACTIONS(1484), - [anon_sym_EQ_TILDE2] = ACTIONS(1484), - [anon_sym_BANG_TILDE2] = ACTIONS(1484), - [anon_sym_STAR_STAR2] = ACTIONS(1484), - [anon_sym_PLUS_PLUS2] = ACTIONS(1484), - [anon_sym_SLASH2] = ACTIONS(1484), - [anon_sym_mod2] = ACTIONS(1484), - [anon_sym_SLASH_SLASH2] = ACTIONS(1484), - [anon_sym_PLUS2] = ACTIONS(1484), - [anon_sym_bit_DASHshl2] = ACTIONS(1484), - [anon_sym_bit_DASHshr2] = ACTIONS(1484), - [anon_sym_bit_DASHand2] = ACTIONS(1484), - [anon_sym_bit_DASHxor2] = ACTIONS(1484), - [anon_sym_bit_DASHor2] = ACTIONS(1484), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [aux_sym__immediate_decimal_token1] = ACTIONS(2500), - [aux_sym__immediate_decimal_token2] = ACTIONS(2502), - [sym_filesize_unit] = ACTIONS(1484), - [sym_duration_unit] = ACTIONS(1486), - [anon_sym_COLON2] = ACTIONS(1484), - [anon_sym_err_GT] = ACTIONS(1484), - [anon_sym_out_GT] = ACTIONS(1484), - [anon_sym_e_GT] = ACTIONS(1484), - [anon_sym_o_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT] = ACTIONS(1484), - [anon_sym_err_GT_GT] = ACTIONS(1484), - [anon_sym_out_GT_GT] = ACTIONS(1484), - [anon_sym_e_GT_GT] = ACTIONS(1484), - [anon_sym_o_GT_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1484), - [anon_sym_POUND] = ACTIONS(3), - }, - [756] = { - [sym_comment] = STATE(756), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT] = ACTIONS(2504), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(2506), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1492), - [anon_sym_out_GT_GT] = ACTIONS(1492), - [anon_sym_e_GT_GT] = ACTIONS(1492), - [anon_sym_o_GT_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1989), }, - [757] = { - [sym_comment] = STATE(757), - [anon_sym_STAR_STAR] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_SLASH] = ACTIONS(1484), - [anon_sym_mod] = ACTIONS(1486), - [anon_sym_SLASH_SLASH] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_bit_DASHshl] = ACTIONS(1486), - [anon_sym_bit_DASHshr] = ACTIONS(1486), - [anon_sym_EQ_TILDE] = ACTIONS(1486), - [anon_sym_BANG_TILDE] = ACTIONS(1486), - [anon_sym_bit_DASHand] = ACTIONS(1486), - [anon_sym_bit_DASHxor] = ACTIONS(1486), - [anon_sym_bit_DASHor] = ACTIONS(1486), - [anon_sym_and] = ACTIONS(1486), - [anon_sym_xor] = ACTIONS(1486), - [anon_sym_or] = ACTIONS(1486), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_not_DASHin] = ACTIONS(1486), - [anon_sym_has] = ACTIONS(1486), - [anon_sym_not_DASHhas] = ACTIONS(1486), - [anon_sym_starts_DASHwith] = ACTIONS(1486), - [anon_sym_ends_DASHwith] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(1486), - [anon_sym_BANG_EQ] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1486), - [aux_sym_cmd_identifier_token41] = ACTIONS(1484), - [sym__newline] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_err_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_GT_PIPE] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1484), - [anon_sym_RPAREN] = ACTIONS(1484), - [anon_sym_GT2] = ACTIONS(1484), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_in2] = ACTIONS(1484), - [anon_sym_STAR2] = ACTIONS(1484), - [anon_sym_and2] = ACTIONS(1484), - [anon_sym_xor2] = ACTIONS(1484), - [anon_sym_or2] = ACTIONS(1484), - [anon_sym_not_DASHin2] = ACTIONS(1484), - [anon_sym_has2] = ACTIONS(1484), - [anon_sym_not_DASHhas2] = ACTIONS(1484), - [anon_sym_starts_DASHwith2] = ACTIONS(1484), - [anon_sym_ends_DASHwith2] = ACTIONS(1484), - [anon_sym_EQ_EQ2] = ACTIONS(1484), - [anon_sym_BANG_EQ2] = ACTIONS(1484), - [anon_sym_LT2] = ACTIONS(1484), - [anon_sym_LT_EQ2] = ACTIONS(1484), - [anon_sym_GT_EQ2] = ACTIONS(1484), - [anon_sym_EQ_TILDE2] = ACTIONS(1484), - [anon_sym_BANG_TILDE2] = ACTIONS(1484), - [anon_sym_STAR_STAR2] = ACTIONS(1484), - [anon_sym_PLUS_PLUS2] = ACTIONS(1484), - [anon_sym_SLASH2] = ACTIONS(1484), - [anon_sym_mod2] = ACTIONS(1484), - [anon_sym_SLASH_SLASH2] = ACTIONS(1484), - [anon_sym_PLUS2] = ACTIONS(1484), - [anon_sym_bit_DASHshl2] = ACTIONS(1484), - [anon_sym_bit_DASHshr2] = ACTIONS(1484), - [anon_sym_bit_DASHand2] = ACTIONS(1484), - [anon_sym_bit_DASHxor2] = ACTIONS(1484), - [anon_sym_bit_DASHor2] = ACTIONS(1484), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [aux_sym__immediate_decimal_token1] = ACTIONS(2508), - [aux_sym__immediate_decimal_token2] = ACTIONS(2510), - [sym_filesize_unit] = ACTIONS(1484), - [sym_duration_unit] = ACTIONS(1486), - [anon_sym_err_GT] = ACTIONS(1484), - [anon_sym_out_GT] = ACTIONS(1484), - [anon_sym_e_GT] = ACTIONS(1484), - [anon_sym_o_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT] = ACTIONS(1484), - [anon_sym_err_GT_GT] = ACTIONS(1484), - [anon_sym_out_GT_GT] = ACTIONS(1484), - [anon_sym_e_GT_GT] = ACTIONS(1484), - [anon_sym_o_GT_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1484), - [anon_sym_POUND] = ACTIONS(3), - }, - [758] = { - [sym_comment] = STATE(758), - [ts_builtin_sym_end] = ACTIONS(1494), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT] = ACTIONS(2512), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(2514), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1492), - [anon_sym_out_GT_GT] = ACTIONS(1492), - [anon_sym_e_GT_GT] = ACTIONS(1492), - [anon_sym_o_GT_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(3), - }, - [759] = { - [sym_comment] = STATE(759), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(2494), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_COLON2] = ACTIONS(1492), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1492), - [anon_sym_out_GT_GT] = ACTIONS(1492), - [anon_sym_e_GT_GT] = ACTIONS(1492), - [anon_sym_o_GT_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(3), + [710] = { + [sym_comment] = STATE(710), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_alias] = ACTIONS(1973), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_let_DASHenv] = ACTIONS(1973), + [anon_sym_mut] = ACTIONS(1973), + [anon_sym_const] = ACTIONS(1973), + [aux_sym_cmd_identifier_token1] = ACTIONS(1973), + [aux_sym_cmd_identifier_token2] = ACTIONS(1979), + [aux_sym_cmd_identifier_token3] = ACTIONS(1979), + [aux_sym_cmd_identifier_token4] = ACTIONS(1979), + [aux_sym_cmd_identifier_token5] = ACTIONS(1979), + [aux_sym_cmd_identifier_token6] = ACTIONS(1979), + [aux_sym_cmd_identifier_token7] = ACTIONS(1979), + [aux_sym_cmd_identifier_token8] = ACTIONS(1973), + [aux_sym_cmd_identifier_token9] = ACTIONS(1973), + [aux_sym_cmd_identifier_token10] = ACTIONS(1979), + [aux_sym_cmd_identifier_token11] = ACTIONS(1979), + [aux_sym_cmd_identifier_token12] = ACTIONS(1973), + [aux_sym_cmd_identifier_token13] = ACTIONS(1973), + [aux_sym_cmd_identifier_token14] = ACTIONS(1973), + [aux_sym_cmd_identifier_token15] = ACTIONS(1973), + [aux_sym_cmd_identifier_token16] = ACTIONS(1979), + [aux_sym_cmd_identifier_token17] = ACTIONS(1979), + [aux_sym_cmd_identifier_token18] = ACTIONS(1979), + [aux_sym_cmd_identifier_token19] = ACTIONS(1979), + [aux_sym_cmd_identifier_token20] = ACTIONS(1979), + [aux_sym_cmd_identifier_token21] = ACTIONS(1979), + [aux_sym_cmd_identifier_token22] = ACTIONS(1979), + [aux_sym_cmd_identifier_token23] = ACTIONS(1979), + [aux_sym_cmd_identifier_token24] = ACTIONS(1979), + [aux_sym_cmd_identifier_token25] = ACTIONS(1979), + [aux_sym_cmd_identifier_token26] = ACTIONS(1979), + [aux_sym_cmd_identifier_token27] = ACTIONS(1979), + [aux_sym_cmd_identifier_token28] = ACTIONS(1979), + [aux_sym_cmd_identifier_token29] = ACTIONS(1979), + [aux_sym_cmd_identifier_token30] = ACTIONS(1979), + [aux_sym_cmd_identifier_token31] = ACTIONS(1979), + [aux_sym_cmd_identifier_token32] = ACTIONS(1979), + [aux_sym_cmd_identifier_token33] = ACTIONS(1979), + [aux_sym_cmd_identifier_token34] = ACTIONS(1973), + [aux_sym_cmd_identifier_token35] = ACTIONS(1979), + [aux_sym_cmd_identifier_token36] = ACTIONS(1979), + [aux_sym_cmd_identifier_token37] = ACTIONS(1979), + [aux_sym_cmd_identifier_token38] = ACTIONS(1973), + [aux_sym_cmd_identifier_token39] = ACTIONS(1979), + [aux_sym_cmd_identifier_token40] = ACTIONS(1979), + [anon_sym_def] = ACTIONS(1973), + [anon_sym_export_DASHenv] = ACTIONS(1973), + [anon_sym_extern] = ACTIONS(1973), + [anon_sym_module] = ACTIONS(1973), + [anon_sym_use] = ACTIONS(1973), + [anon_sym_LPAREN] = ACTIONS(1979), + [anon_sym_COMMA] = ACTIONS(1979), + [anon_sym_DOLLAR] = ACTIONS(1973), + [anon_sym_error] = ACTIONS(1973), + [anon_sym_DASH2] = ACTIONS(1973), + [anon_sym_break] = ACTIONS(1973), + [anon_sym_continue] = ACTIONS(1973), + [anon_sym_for] = ACTIONS(1973), + [anon_sym_in2] = ACTIONS(1973), + [anon_sym_loop] = ACTIONS(1973), + [anon_sym_make] = ACTIONS(1973), + [anon_sym_while] = ACTIONS(1973), + [anon_sym_do] = ACTIONS(1973), + [anon_sym_if] = ACTIONS(1973), + [anon_sym_else] = ACTIONS(1973), + [anon_sym_match] = ACTIONS(1973), + [anon_sym_RBRACE] = ACTIONS(1979), + [anon_sym_try] = ACTIONS(1973), + [anon_sym_catch] = ACTIONS(1973), + [anon_sym_return] = ACTIONS(1973), + [anon_sym_source] = ACTIONS(1973), + [anon_sym_source_DASHenv] = ACTIONS(1973), + [anon_sym_hide] = ACTIONS(1973), + [anon_sym_hide_DASHenv] = ACTIONS(1973), + [anon_sym_overlay] = ACTIONS(1973), + [anon_sym_as] = ACTIONS(1973), + [anon_sym_PLUS2] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1979), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1973), + [aux_sym__val_number_decimal_token2] = ACTIONS(1979), + [aux_sym__val_number_decimal_token3] = ACTIONS(1979), + [aux_sym__val_number_decimal_token4] = ACTIONS(1979), + [aux_sym__val_number_token1] = ACTIONS(1979), + [aux_sym__val_number_token2] = ACTIONS(1979), + [aux_sym__val_number_token3] = ACTIONS(1979), + [aux_sym__val_number_token4] = ACTIONS(1973), + [aux_sym__val_number_token5] = ACTIONS(1973), + [aux_sym__val_number_token6] = ACTIONS(1973), + [anon_sym_DQUOTE] = ACTIONS(1979), + [sym__str_single_quotes] = ACTIONS(1979), + [sym__str_back_ticks] = ACTIONS(1979), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1979), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1979), + [anon_sym_register] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1979), }, - [760] = { - [sym_comment] = STATE(760), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1540), - [anon_sym_SLASH_SLASH] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_bit_DASHshl] = ACTIONS(1540), - [anon_sym_bit_DASHshr] = ACTIONS(1540), - [anon_sym_EQ_TILDE] = ACTIONS(1540), - [anon_sym_BANG_TILDE] = ACTIONS(1540), - [anon_sym_bit_DASHand] = ACTIONS(1540), - [anon_sym_bit_DASHxor] = ACTIONS(1540), - [anon_sym_bit_DASHor] = ACTIONS(1540), - [anon_sym_and] = ACTIONS(1540), - [anon_sym_xor] = ACTIONS(1540), - [anon_sym_or] = ACTIONS(1540), - [anon_sym_in] = ACTIONS(1540), - [anon_sym_not_DASHin] = ACTIONS(1540), - [anon_sym_has] = ACTIONS(1540), - [anon_sym_not_DASHhas] = ACTIONS(1540), - [anon_sym_starts_DASHwith] = ACTIONS(1540), - [anon_sym_ends_DASHwith] = ACTIONS(1540), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1538), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1540), - [aux_sym_cmd_identifier_token41] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(1538), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_in2] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_STAR2] = ACTIONS(1538), - [anon_sym_and2] = ACTIONS(1538), - [anon_sym_xor2] = ACTIONS(1538), - [anon_sym_or2] = ACTIONS(1538), - [anon_sym_not_DASHin2] = ACTIONS(1538), - [anon_sym_has2] = ACTIONS(1538), - [anon_sym_not_DASHhas2] = ACTIONS(1538), - [anon_sym_starts_DASHwith2] = ACTIONS(1538), - [anon_sym_ends_DASHwith2] = ACTIONS(1538), - [anon_sym_EQ_EQ2] = ACTIONS(1538), - [anon_sym_BANG_EQ2] = ACTIONS(1538), - [anon_sym_LT2] = ACTIONS(1538), - [anon_sym_LT_EQ2] = ACTIONS(1538), - [anon_sym_GT_EQ2] = ACTIONS(1538), - [anon_sym_EQ_TILDE2] = ACTIONS(1538), - [anon_sym_BANG_TILDE2] = ACTIONS(1538), - [anon_sym_STAR_STAR2] = ACTIONS(1538), - [anon_sym_PLUS_PLUS2] = ACTIONS(1538), - [anon_sym_SLASH2] = ACTIONS(1538), - [anon_sym_mod2] = ACTIONS(1538), - [anon_sym_SLASH_SLASH2] = ACTIONS(1538), - [anon_sym_PLUS2] = ACTIONS(1538), - [anon_sym_bit_DASHshl2] = ACTIONS(1538), - [anon_sym_bit_DASHshr2] = ACTIONS(1538), - [anon_sym_bit_DASHand2] = ACTIONS(1538), - [anon_sym_bit_DASHxor2] = ACTIONS(1538), - [anon_sym_bit_DASHor2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [aux_sym__immediate_decimal_token2] = ACTIONS(2516), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1540), - [anon_sym_COLON2] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1538), - [anon_sym_out_GT] = ACTIONS(1538), - [anon_sym_e_GT] = ACTIONS(1538), - [anon_sym_o_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT] = ACTIONS(1538), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(3), + [711] = { + [sym_comment] = STATE(711), + [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(2300), + [anon_sym_COMMA] = ACTIONS(2300), + [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(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_hide] = ACTIONS(2298), + [anon_sym_hide_DASHenv] = ACTIONS(2298), + [anon_sym_overlay] = ACTIONS(2298), + [anon_sym_as] = ACTIONS(2298), + [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_DOLLAR_SQUOTE] = ACTIONS(2300), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2300), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2300), + [anon_sym_register] = ACTIONS(2298), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2300), }, - [761] = { - [sym_comment] = STATE(761), - [anon_sym_STAR_STAR] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_SLASH] = ACTIONS(1484), - [anon_sym_mod] = ACTIONS(1486), - [anon_sym_SLASH_SLASH] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_bit_DASHshl] = ACTIONS(1486), - [anon_sym_bit_DASHshr] = ACTIONS(1486), - [anon_sym_EQ_TILDE] = ACTIONS(1486), - [anon_sym_BANG_TILDE] = ACTIONS(1486), - [anon_sym_bit_DASHand] = ACTIONS(1486), - [anon_sym_bit_DASHxor] = ACTIONS(1486), - [anon_sym_bit_DASHor] = ACTIONS(1486), - [anon_sym_and] = ACTIONS(1486), - [anon_sym_xor] = ACTIONS(1486), - [anon_sym_or] = ACTIONS(1486), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_not_DASHin] = ACTIONS(1486), - [anon_sym_has] = ACTIONS(1486), - [anon_sym_not_DASHhas] = ACTIONS(1486), - [anon_sym_starts_DASHwith] = ACTIONS(1486), - [anon_sym_ends_DASHwith] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(1486), - [anon_sym_BANG_EQ] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1486), - [aux_sym_cmd_identifier_token41] = ACTIONS(1484), - [sym__newline] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_err_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_GT_PIPE] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1484), - [anon_sym_GT2] = ACTIONS(1484), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_in2] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_STAR2] = ACTIONS(1484), - [anon_sym_and2] = ACTIONS(1484), - [anon_sym_xor2] = ACTIONS(1484), - [anon_sym_or2] = ACTIONS(1484), - [anon_sym_not_DASHin2] = ACTIONS(1484), - [anon_sym_has2] = ACTIONS(1484), - [anon_sym_not_DASHhas2] = ACTIONS(1484), - [anon_sym_starts_DASHwith2] = ACTIONS(1484), - [anon_sym_ends_DASHwith2] = ACTIONS(1484), - [anon_sym_EQ_EQ2] = ACTIONS(1484), - [anon_sym_BANG_EQ2] = ACTIONS(1484), - [anon_sym_LT2] = ACTIONS(1484), - [anon_sym_LT_EQ2] = ACTIONS(1484), - [anon_sym_GT_EQ2] = ACTIONS(1484), - [anon_sym_EQ_TILDE2] = ACTIONS(1484), - [anon_sym_BANG_TILDE2] = ACTIONS(1484), - [anon_sym_STAR_STAR2] = ACTIONS(1484), - [anon_sym_PLUS_PLUS2] = ACTIONS(1484), - [anon_sym_SLASH2] = ACTIONS(1484), - [anon_sym_mod2] = ACTIONS(1484), - [anon_sym_SLASH_SLASH2] = ACTIONS(1484), - [anon_sym_PLUS2] = ACTIONS(1484), - [anon_sym_bit_DASHshl2] = ACTIONS(1484), - [anon_sym_bit_DASHshr2] = ACTIONS(1484), - [anon_sym_bit_DASHand2] = ACTIONS(1484), - [anon_sym_bit_DASHxor2] = ACTIONS(1484), - [anon_sym_bit_DASHor2] = ACTIONS(1484), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [aux_sym__immediate_decimal_token1] = ACTIONS(2518), - [aux_sym__immediate_decimal_token2] = ACTIONS(2520), - [sym_filesize_unit] = ACTIONS(1484), - [sym_duration_unit] = ACTIONS(1486), - [anon_sym_err_GT] = ACTIONS(1484), - [anon_sym_out_GT] = ACTIONS(1484), - [anon_sym_e_GT] = ACTIONS(1484), - [anon_sym_o_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT] = ACTIONS(1484), - [anon_sym_err_GT_GT] = ACTIONS(1484), - [anon_sym_out_GT_GT] = ACTIONS(1484), - [anon_sym_e_GT_GT] = ACTIONS(1484), - [anon_sym_o_GT_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1484), - [anon_sym_POUND] = ACTIONS(3), + [712] = { + [sym_comment] = STATE(712), + [anon_sym_export] = ACTIONS(1993), + [anon_sym_alias] = ACTIONS(1993), + [anon_sym_let] = ACTIONS(1993), + [anon_sym_let_DASHenv] = ACTIONS(1993), + [anon_sym_mut] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1993), + [aux_sym_cmd_identifier_token1] = ACTIONS(1993), + [aux_sym_cmd_identifier_token2] = ACTIONS(1995), + [aux_sym_cmd_identifier_token3] = ACTIONS(1995), + [aux_sym_cmd_identifier_token4] = ACTIONS(1995), + [aux_sym_cmd_identifier_token5] = ACTIONS(1995), + [aux_sym_cmd_identifier_token6] = ACTIONS(1995), + [aux_sym_cmd_identifier_token7] = ACTIONS(1995), + [aux_sym_cmd_identifier_token8] = ACTIONS(1993), + [aux_sym_cmd_identifier_token9] = ACTIONS(1993), + [aux_sym_cmd_identifier_token10] = ACTIONS(1995), + [aux_sym_cmd_identifier_token11] = ACTIONS(1995), + [aux_sym_cmd_identifier_token12] = ACTIONS(1993), + [aux_sym_cmd_identifier_token13] = ACTIONS(1993), + [aux_sym_cmd_identifier_token14] = ACTIONS(1993), + [aux_sym_cmd_identifier_token15] = ACTIONS(1993), + [aux_sym_cmd_identifier_token16] = ACTIONS(1995), + [aux_sym_cmd_identifier_token17] = ACTIONS(1995), + [aux_sym_cmd_identifier_token18] = ACTIONS(1995), + [aux_sym_cmd_identifier_token19] = ACTIONS(1995), + [aux_sym_cmd_identifier_token20] = ACTIONS(1995), + [aux_sym_cmd_identifier_token21] = ACTIONS(1995), + [aux_sym_cmd_identifier_token22] = ACTIONS(1995), + [aux_sym_cmd_identifier_token23] = ACTIONS(1995), + [aux_sym_cmd_identifier_token24] = ACTIONS(1995), + [aux_sym_cmd_identifier_token25] = ACTIONS(1995), + [aux_sym_cmd_identifier_token26] = ACTIONS(1995), + [aux_sym_cmd_identifier_token27] = ACTIONS(1995), + [aux_sym_cmd_identifier_token28] = ACTIONS(1995), + [aux_sym_cmd_identifier_token29] = ACTIONS(1995), + [aux_sym_cmd_identifier_token30] = ACTIONS(1995), + [aux_sym_cmd_identifier_token31] = ACTIONS(1995), + [aux_sym_cmd_identifier_token32] = ACTIONS(1995), + [aux_sym_cmd_identifier_token33] = ACTIONS(1995), + [aux_sym_cmd_identifier_token34] = ACTIONS(1993), + [aux_sym_cmd_identifier_token35] = ACTIONS(1995), + [aux_sym_cmd_identifier_token36] = ACTIONS(1995), + [aux_sym_cmd_identifier_token37] = ACTIONS(1995), + [aux_sym_cmd_identifier_token38] = ACTIONS(1993), + [aux_sym_cmd_identifier_token39] = ACTIONS(1995), + [aux_sym_cmd_identifier_token40] = ACTIONS(1995), + [anon_sym_def] = ACTIONS(1993), + [anon_sym_export_DASHenv] = ACTIONS(1993), + [anon_sym_extern] = ACTIONS(1993), + [anon_sym_module] = ACTIONS(1993), + [anon_sym_use] = ACTIONS(1993), + [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_COMMA] = ACTIONS(1995), + [anon_sym_DOLLAR] = ACTIONS(1993), + [anon_sym_error] = ACTIONS(1993), + [anon_sym_DASH2] = ACTIONS(1993), + [anon_sym_break] = ACTIONS(1993), + [anon_sym_continue] = ACTIONS(1993), + [anon_sym_for] = ACTIONS(1993), + [anon_sym_in2] = ACTIONS(1993), + [anon_sym_loop] = ACTIONS(1993), + [anon_sym_make] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1993), + [anon_sym_do] = ACTIONS(1993), + [anon_sym_if] = ACTIONS(1993), + [anon_sym_else] = ACTIONS(1993), + [anon_sym_match] = ACTIONS(1993), + [anon_sym_RBRACE] = ACTIONS(1995), + [anon_sym_try] = ACTIONS(1993), + [anon_sym_catch] = ACTIONS(1993), + [anon_sym_return] = ACTIONS(1993), + [anon_sym_source] = ACTIONS(1993), + [anon_sym_source_DASHenv] = ACTIONS(1993), + [anon_sym_hide] = ACTIONS(1993), + [anon_sym_hide_DASHenv] = ACTIONS(1993), + [anon_sym_overlay] = ACTIONS(1993), + [anon_sym_as] = ACTIONS(1993), + [anon_sym_PLUS2] = ACTIONS(1993), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1995), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1995), + [aux_sym__val_number_decimal_token1] = ACTIONS(1993), + [aux_sym__val_number_decimal_token2] = ACTIONS(1995), + [aux_sym__val_number_decimal_token3] = ACTIONS(1995), + [aux_sym__val_number_decimal_token4] = ACTIONS(1995), + [aux_sym__val_number_token1] = ACTIONS(1995), + [aux_sym__val_number_token2] = ACTIONS(1995), + [aux_sym__val_number_token3] = ACTIONS(1995), + [aux_sym__val_number_token4] = ACTIONS(1993), + [aux_sym__val_number_token5] = ACTIONS(1993), + [aux_sym__val_number_token6] = ACTIONS(1993), + [anon_sym_DQUOTE] = ACTIONS(1995), + [sym__str_single_quotes] = ACTIONS(1995), + [sym__str_back_ticks] = ACTIONS(1995), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1995), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1995), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1995), + [anon_sym_register] = ACTIONS(1993), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1995), }, - [762] = { - [sym_comment] = STATE(762), - [ts_builtin_sym_end] = ACTIONS(1486), - [anon_sym_STAR_STAR] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_SLASH] = ACTIONS(1484), - [anon_sym_mod] = ACTIONS(1486), - [anon_sym_SLASH_SLASH] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_bit_DASHshl] = ACTIONS(1486), - [anon_sym_bit_DASHshr] = ACTIONS(1486), - [anon_sym_EQ_TILDE] = ACTIONS(1486), - [anon_sym_BANG_TILDE] = ACTIONS(1486), - [anon_sym_bit_DASHand] = ACTIONS(1486), - [anon_sym_bit_DASHxor] = ACTIONS(1486), - [anon_sym_bit_DASHor] = ACTIONS(1486), - [anon_sym_and] = ACTIONS(1486), - [anon_sym_xor] = ACTIONS(1486), - [anon_sym_or] = ACTIONS(1486), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_not_DASHin] = ACTIONS(1486), - [anon_sym_has] = ACTIONS(1486), - [anon_sym_not_DASHhas] = ACTIONS(1486), - [anon_sym_starts_DASHwith] = ACTIONS(1486), - [anon_sym_ends_DASHwith] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(1486), - [anon_sym_BANG_EQ] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1486), - [aux_sym_cmd_identifier_token41] = ACTIONS(1484), - [sym__newline] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_err_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_GT_PIPE] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1484), - [anon_sym_GT2] = ACTIONS(1484), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_in2] = ACTIONS(1484), - [anon_sym_STAR2] = ACTIONS(1484), - [anon_sym_and2] = ACTIONS(1484), - [anon_sym_xor2] = ACTIONS(1484), - [anon_sym_or2] = ACTIONS(1484), - [anon_sym_not_DASHin2] = ACTIONS(1484), - [anon_sym_has2] = ACTIONS(1484), - [anon_sym_not_DASHhas2] = ACTIONS(1484), - [anon_sym_starts_DASHwith2] = ACTIONS(1484), - [anon_sym_ends_DASHwith2] = ACTIONS(1484), - [anon_sym_EQ_EQ2] = ACTIONS(1484), - [anon_sym_BANG_EQ2] = ACTIONS(1484), - [anon_sym_LT2] = ACTIONS(1484), - [anon_sym_LT_EQ2] = ACTIONS(1484), - [anon_sym_GT_EQ2] = ACTIONS(1484), - [anon_sym_EQ_TILDE2] = ACTIONS(1484), - [anon_sym_BANG_TILDE2] = ACTIONS(1484), - [anon_sym_STAR_STAR2] = ACTIONS(1484), - [anon_sym_PLUS_PLUS2] = ACTIONS(1484), - [anon_sym_SLASH2] = ACTIONS(1484), - [anon_sym_mod2] = ACTIONS(1484), - [anon_sym_SLASH_SLASH2] = ACTIONS(1484), - [anon_sym_PLUS2] = ACTIONS(1484), - [anon_sym_bit_DASHshl2] = ACTIONS(1484), - [anon_sym_bit_DASHshr2] = ACTIONS(1484), - [anon_sym_bit_DASHand2] = ACTIONS(1484), - [anon_sym_bit_DASHxor2] = ACTIONS(1484), - [anon_sym_bit_DASHor2] = ACTIONS(1484), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [aux_sym__immediate_decimal_token1] = ACTIONS(2522), - [aux_sym__immediate_decimal_token2] = ACTIONS(2524), - [sym_filesize_unit] = ACTIONS(1484), - [sym_duration_unit] = ACTIONS(1486), - [anon_sym_err_GT] = ACTIONS(1484), - [anon_sym_out_GT] = ACTIONS(1484), - [anon_sym_e_GT] = ACTIONS(1484), - [anon_sym_o_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT] = ACTIONS(1484), - [anon_sym_err_GT_GT] = ACTIONS(1484), - [anon_sym_out_GT_GT] = ACTIONS(1484), - [anon_sym_e_GT_GT] = ACTIONS(1484), - [anon_sym_o_GT_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1484), - [anon_sym_POUND] = ACTIONS(3), + [713] = { + [sym_comment] = STATE(713), + [anon_sym_export] = ACTIONS(2358), + [anon_sym_alias] = ACTIONS(2358), + [anon_sym_let] = ACTIONS(2358), + [anon_sym_let_DASHenv] = ACTIONS(2358), + [anon_sym_mut] = ACTIONS(2358), + [anon_sym_const] = ACTIONS(2358), + [aux_sym_cmd_identifier_token1] = ACTIONS(2358), + [aux_sym_cmd_identifier_token2] = ACTIONS(2360), + [aux_sym_cmd_identifier_token3] = ACTIONS(2360), + [aux_sym_cmd_identifier_token4] = ACTIONS(2360), + [aux_sym_cmd_identifier_token5] = ACTIONS(2360), + [aux_sym_cmd_identifier_token6] = ACTIONS(2360), + [aux_sym_cmd_identifier_token7] = ACTIONS(2360), + [aux_sym_cmd_identifier_token8] = ACTIONS(2358), + [aux_sym_cmd_identifier_token9] = ACTIONS(2358), + [aux_sym_cmd_identifier_token10] = ACTIONS(2360), + [aux_sym_cmd_identifier_token11] = ACTIONS(2360), + [aux_sym_cmd_identifier_token12] = ACTIONS(2358), + [aux_sym_cmd_identifier_token13] = ACTIONS(2358), + [aux_sym_cmd_identifier_token14] = ACTIONS(2358), + [aux_sym_cmd_identifier_token15] = ACTIONS(2358), + [aux_sym_cmd_identifier_token16] = ACTIONS(2360), + [aux_sym_cmd_identifier_token17] = ACTIONS(2360), + [aux_sym_cmd_identifier_token18] = ACTIONS(2360), + [aux_sym_cmd_identifier_token19] = ACTIONS(2360), + [aux_sym_cmd_identifier_token20] = ACTIONS(2360), + [aux_sym_cmd_identifier_token21] = ACTIONS(2360), + [aux_sym_cmd_identifier_token22] = ACTIONS(2360), + [aux_sym_cmd_identifier_token23] = ACTIONS(2360), + [aux_sym_cmd_identifier_token24] = ACTIONS(2360), + [aux_sym_cmd_identifier_token25] = ACTIONS(2360), + [aux_sym_cmd_identifier_token26] = ACTIONS(2360), + [aux_sym_cmd_identifier_token27] = ACTIONS(2360), + [aux_sym_cmd_identifier_token28] = ACTIONS(2360), + [aux_sym_cmd_identifier_token29] = ACTIONS(2360), + [aux_sym_cmd_identifier_token30] = ACTIONS(2360), + [aux_sym_cmd_identifier_token31] = ACTIONS(2360), + [aux_sym_cmd_identifier_token32] = ACTIONS(2360), + [aux_sym_cmd_identifier_token33] = ACTIONS(2360), + [aux_sym_cmd_identifier_token34] = ACTIONS(2358), + [aux_sym_cmd_identifier_token35] = ACTIONS(2360), + [aux_sym_cmd_identifier_token36] = ACTIONS(2360), + [aux_sym_cmd_identifier_token37] = ACTIONS(2360), + [aux_sym_cmd_identifier_token38] = ACTIONS(2358), + [aux_sym_cmd_identifier_token39] = ACTIONS(2360), + [aux_sym_cmd_identifier_token40] = ACTIONS(2360), + [anon_sym_def] = ACTIONS(2358), + [anon_sym_export_DASHenv] = ACTIONS(2358), + [anon_sym_extern] = ACTIONS(2358), + [anon_sym_module] = ACTIONS(2358), + [anon_sym_use] = ACTIONS(2358), + [anon_sym_LPAREN] = ACTIONS(2360), + [anon_sym_COMMA] = ACTIONS(2360), + [anon_sym_DOLLAR] = ACTIONS(2358), + [anon_sym_error] = ACTIONS(2358), + [anon_sym_DASH2] = ACTIONS(2358), + [anon_sym_break] = ACTIONS(2358), + [anon_sym_continue] = ACTIONS(2358), + [anon_sym_for] = ACTIONS(2358), + [anon_sym_in2] = ACTIONS(2358), + [anon_sym_loop] = ACTIONS(2358), + [anon_sym_make] = ACTIONS(2358), + [anon_sym_while] = ACTIONS(2358), + [anon_sym_do] = ACTIONS(2358), + [anon_sym_if] = ACTIONS(2358), + [anon_sym_else] = ACTIONS(2358), + [anon_sym_match] = ACTIONS(2358), + [anon_sym_RBRACE] = ACTIONS(2360), + [anon_sym_try] = ACTIONS(2358), + [anon_sym_catch] = ACTIONS(2358), + [anon_sym_return] = ACTIONS(2358), + [anon_sym_source] = ACTIONS(2358), + [anon_sym_source_DASHenv] = ACTIONS(2358), + [anon_sym_hide] = ACTIONS(2358), + [anon_sym_hide_DASHenv] = ACTIONS(2358), + [anon_sym_overlay] = ACTIONS(2358), + [anon_sym_as] = ACTIONS(2358), + [anon_sym_PLUS2] = ACTIONS(2358), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2360), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2360), + [aux_sym__val_number_decimal_token1] = ACTIONS(2358), + [aux_sym__val_number_decimal_token2] = ACTIONS(2360), + [aux_sym__val_number_decimal_token3] = ACTIONS(2360), + [aux_sym__val_number_decimal_token4] = ACTIONS(2360), + [aux_sym__val_number_token1] = ACTIONS(2360), + [aux_sym__val_number_token2] = ACTIONS(2360), + [aux_sym__val_number_token3] = ACTIONS(2360), + [aux_sym__val_number_token4] = ACTIONS(2358), + [aux_sym__val_number_token5] = ACTIONS(2358), + [aux_sym__val_number_token6] = ACTIONS(2358), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym__str_single_quotes] = ACTIONS(2360), + [sym__str_back_ticks] = ACTIONS(2360), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2360), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2360), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2360), + [anon_sym_register] = ACTIONS(2358), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2360), }, - [763] = { - [sym_comment] = STATE(763), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT] = ACTIONS(2526), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(2528), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1492), - [anon_sym_out_GT_GT] = ACTIONS(1492), - [anon_sym_e_GT_GT] = ACTIONS(1492), - [anon_sym_o_GT_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(3), + [714] = { + [sym_comment] = STATE(714), + [aux_sym_shebang_repeat1] = STATE(714), + [anon_sym_export] = ACTIONS(1272), + [anon_sym_alias] = ACTIONS(1272), + [anon_sym_let] = ACTIONS(1272), + [anon_sym_let_DASHenv] = ACTIONS(1272), + [anon_sym_mut] = ACTIONS(1272), + [anon_sym_const] = ACTIONS(1272), + [aux_sym_cmd_identifier_token1] = ACTIONS(1272), + [aux_sym_cmd_identifier_token2] = ACTIONS(1274), + [aux_sym_cmd_identifier_token3] = ACTIONS(1274), + [aux_sym_cmd_identifier_token4] = ACTIONS(1274), + [aux_sym_cmd_identifier_token5] = ACTIONS(1274), + [aux_sym_cmd_identifier_token6] = ACTIONS(1274), + [aux_sym_cmd_identifier_token7] = ACTIONS(1274), + [aux_sym_cmd_identifier_token8] = ACTIONS(1272), + [aux_sym_cmd_identifier_token9] = ACTIONS(1272), + [aux_sym_cmd_identifier_token10] = ACTIONS(1274), + [aux_sym_cmd_identifier_token11] = ACTIONS(1274), + [aux_sym_cmd_identifier_token12] = ACTIONS(1272), + [aux_sym_cmd_identifier_token13] = ACTIONS(1272), + [aux_sym_cmd_identifier_token14] = ACTIONS(1272), + [aux_sym_cmd_identifier_token15] = ACTIONS(1272), + [aux_sym_cmd_identifier_token16] = ACTIONS(1274), + [aux_sym_cmd_identifier_token17] = ACTIONS(1274), + [aux_sym_cmd_identifier_token18] = ACTIONS(1274), + [aux_sym_cmd_identifier_token19] = ACTIONS(1274), + [aux_sym_cmd_identifier_token20] = ACTIONS(1274), + [aux_sym_cmd_identifier_token21] = ACTIONS(1274), + [aux_sym_cmd_identifier_token22] = ACTIONS(1274), + [aux_sym_cmd_identifier_token23] = ACTIONS(1274), + [aux_sym_cmd_identifier_token24] = ACTIONS(1274), + [aux_sym_cmd_identifier_token25] = ACTIONS(1274), + [aux_sym_cmd_identifier_token26] = ACTIONS(1274), + [aux_sym_cmd_identifier_token27] = ACTIONS(1274), + [aux_sym_cmd_identifier_token28] = ACTIONS(1274), + [aux_sym_cmd_identifier_token29] = ACTIONS(1274), + [aux_sym_cmd_identifier_token30] = ACTIONS(1274), + [aux_sym_cmd_identifier_token31] = ACTIONS(1274), + [aux_sym_cmd_identifier_token32] = ACTIONS(1274), + [aux_sym_cmd_identifier_token33] = ACTIONS(1274), + [aux_sym_cmd_identifier_token34] = ACTIONS(1272), + [aux_sym_cmd_identifier_token35] = ACTIONS(1274), + [aux_sym_cmd_identifier_token36] = ACTIONS(1274), + [aux_sym_cmd_identifier_token37] = ACTIONS(1274), + [aux_sym_cmd_identifier_token38] = ACTIONS(1272), + [aux_sym_cmd_identifier_token39] = ACTIONS(1274), + [aux_sym_cmd_identifier_token40] = ACTIONS(1274), + [sym__newline] = ACTIONS(2433), + [anon_sym_def] = ACTIONS(1272), + [anon_sym_export_DASHenv] = ACTIONS(1272), + [anon_sym_extern] = ACTIONS(1272), + [anon_sym_module] = ACTIONS(1272), + [anon_sym_use] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_DOLLAR] = ACTIONS(1272), + [anon_sym_error] = ACTIONS(1272), + [anon_sym_DASH2] = ACTIONS(1272), + [anon_sym_break] = ACTIONS(1272), + [anon_sym_continue] = ACTIONS(1272), + [anon_sym_for] = ACTIONS(1272), + [anon_sym_in2] = ACTIONS(1272), + [anon_sym_loop] = ACTIONS(1272), + [anon_sym_make] = ACTIONS(1272), + [anon_sym_while] = ACTIONS(1272), + [anon_sym_do] = ACTIONS(1272), + [anon_sym_if] = ACTIONS(1272), + [anon_sym_else] = ACTIONS(1272), + [anon_sym_match] = ACTIONS(1272), + [anon_sym_try] = ACTIONS(1272), + [anon_sym_catch] = ACTIONS(1272), + [anon_sym_return] = ACTIONS(1272), + [anon_sym_source] = ACTIONS(1272), + [anon_sym_source_DASHenv] = ACTIONS(1272), + [anon_sym_hide] = ACTIONS(1272), + [anon_sym_hide_DASHenv] = ACTIONS(1272), + [anon_sym_overlay] = ACTIONS(1272), + [anon_sym_as] = ACTIONS(1272), + [anon_sym_PLUS2] = ACTIONS(1272), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1274), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1272), + [aux_sym__val_number_decimal_token2] = ACTIONS(1274), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_token1] = ACTIONS(1274), + [aux_sym__val_number_token2] = ACTIONS(1274), + [aux_sym__val_number_token3] = ACTIONS(1274), + [aux_sym__val_number_token4] = ACTIONS(1272), + [aux_sym__val_number_token5] = ACTIONS(1272), + [aux_sym__val_number_token6] = ACTIONS(1272), + [anon_sym_DQUOTE] = ACTIONS(1274), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1274), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1274), + [anon_sym_register] = ACTIONS(1272), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1274), }, - [764] = { - [sym_comment] = STATE(764), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_COLON2] = ACTIONS(1492), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1492), - [anon_sym_out_GT_GT] = ACTIONS(1492), - [anon_sym_e_GT_GT] = ACTIONS(1492), - [anon_sym_o_GT_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [715] = { + [sym_comment] = STATE(715), + [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_COMMA] = ACTIONS(2427), + [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(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_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_DOLLAR_SQUOTE] = ACTIONS(2427), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2427), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2427), + [anon_sym_register] = ACTIONS(2425), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2427), + }, + [716] = { + [sym_comment] = STATE(716), + [anon_sym_export] = ACTIONS(1287), + [anon_sym_alias] = ACTIONS(1287), + [anon_sym_let] = ACTIONS(1287), + [anon_sym_let_DASHenv] = ACTIONS(1287), + [anon_sym_mut] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [aux_sym_cmd_identifier_token1] = ACTIONS(1287), + [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(1287), + [aux_sym_cmd_identifier_token9] = ACTIONS(1287), + [aux_sym_cmd_identifier_token10] = ACTIONS(1285), + [aux_sym_cmd_identifier_token11] = ACTIONS(1285), + [aux_sym_cmd_identifier_token12] = ACTIONS(1287), + [aux_sym_cmd_identifier_token13] = ACTIONS(1287), + [aux_sym_cmd_identifier_token14] = ACTIONS(1287), + [aux_sym_cmd_identifier_token15] = ACTIONS(1287), + [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(1287), + [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(1287), + [aux_sym_cmd_identifier_token39] = ACTIONS(1285), + [aux_sym_cmd_identifier_token40] = ACTIONS(1285), + [sym__newline] = ACTIONS(1285), + [anon_sym_def] = ACTIONS(1287), + [anon_sym_export_DASHenv] = ACTIONS(1287), + [anon_sym_extern] = ACTIONS(1287), + [anon_sym_module] = ACTIONS(1287), + [anon_sym_use] = ACTIONS(1287), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1287), + [anon_sym_error] = ACTIONS(1287), + [anon_sym_DASH2] = ACTIONS(1287), + [anon_sym_break] = ACTIONS(1287), + [anon_sym_continue] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1287), + [anon_sym_in2] = ACTIONS(1287), + [anon_sym_loop] = ACTIONS(1287), + [anon_sym_make] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1287), + [anon_sym_else] = ACTIONS(1287), + [anon_sym_match] = ACTIONS(1287), + [anon_sym_try] = ACTIONS(1287), + [anon_sym_catch] = ACTIONS(1287), + [anon_sym_return] = ACTIONS(1287), + [anon_sym_source] = ACTIONS(1287), + [anon_sym_source_DASHenv] = ACTIONS(1287), + [anon_sym_hide] = ACTIONS(1287), + [anon_sym_hide_DASHenv] = ACTIONS(1287), + [anon_sym_overlay] = ACTIONS(1287), + [anon_sym_as] = ACTIONS(1287), + [anon_sym_PLUS2] = ACTIONS(1287), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1285), + [aux_sym__val_number_decimal_token1] = ACTIONS(1287), + [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(1287), + [aux_sym__val_number_token5] = ACTIONS(1287), + [aux_sym__val_number_token6] = ACTIONS(1287), + [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), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1285), + [anon_sym_register] = ACTIONS(1287), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1285), + }, + [717] = { + [sym_comment] = STATE(717), + [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(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(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_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_DOLLAR_SQUOTE] = ACTIONS(2438), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2438), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2438), + [anon_sym_register] = ACTIONS(2436), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2438), + }, + [718] = { + [sym_comment] = STATE(718), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT] = ACTIONS(2440), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(2442), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_COLON2] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, - [765] = { - [sym_comment] = STATE(765), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT] = ACTIONS(2530), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(2532), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1492), - [anon_sym_out_GT_GT] = ACTIONS(1492), - [anon_sym_e_GT_GT] = ACTIONS(1492), - [anon_sym_o_GT_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [719] = { + [sym_comment] = STATE(719), + [anon_sym_STAR_STAR] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_mod] = ACTIONS(1493), + [anon_sym_SLASH_SLASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_bit_DASHshl] = ACTIONS(1493), + [anon_sym_bit_DASHshr] = ACTIONS(1493), + [anon_sym_EQ_TILDE] = ACTIONS(1493), + [anon_sym_BANG_TILDE] = ACTIONS(1493), + [anon_sym_bit_DASHand] = ACTIONS(1493), + [anon_sym_bit_DASHxor] = ACTIONS(1493), + [anon_sym_bit_DASHor] = ACTIONS(1493), + [anon_sym_and] = ACTIONS(1493), + [anon_sym_xor] = ACTIONS(1493), + [anon_sym_or] = ACTIONS(1493), + [anon_sym_in] = ACTIONS(1493), + [anon_sym_not_DASHin] = ACTIONS(1493), + [anon_sym_has] = ACTIONS(1493), + [anon_sym_not_DASHhas] = ACTIONS(1493), + [anon_sym_starts_DASHwith] = ACTIONS(1493), + [anon_sym_ends_DASHwith] = ACTIONS(1493), + [anon_sym_EQ_EQ] = ACTIONS(1493), + [anon_sym_BANG_EQ] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1493), + [aux_sym_cmd_identifier_token41] = ACTIONS(1491), + [sym__newline] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_err_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_GT_PIPE] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1491), + [anon_sym_GT2] = ACTIONS(1491), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_in2] = ACTIONS(1491), + [anon_sym_RBRACE] = ACTIONS(1491), + [anon_sym_STAR2] = ACTIONS(1491), + [anon_sym_and2] = ACTIONS(1491), + [anon_sym_xor2] = ACTIONS(1491), + [anon_sym_or2] = ACTIONS(1491), + [anon_sym_not_DASHin2] = ACTIONS(1491), + [anon_sym_has2] = ACTIONS(1491), + [anon_sym_not_DASHhas2] = ACTIONS(1491), + [anon_sym_starts_DASHwith2] = ACTIONS(1491), + [anon_sym_ends_DASHwith2] = ACTIONS(1491), + [anon_sym_EQ_EQ2] = ACTIONS(1491), + [anon_sym_BANG_EQ2] = ACTIONS(1491), + [anon_sym_LT2] = ACTIONS(1491), + [anon_sym_LT_EQ2] = ACTIONS(1491), + [anon_sym_GT_EQ2] = ACTIONS(1491), + [anon_sym_EQ_TILDE2] = ACTIONS(1491), + [anon_sym_BANG_TILDE2] = ACTIONS(1491), + [anon_sym_STAR_STAR2] = ACTIONS(1491), + [anon_sym_PLUS_PLUS2] = ACTIONS(1491), + [anon_sym_SLASH2] = ACTIONS(1491), + [anon_sym_mod2] = ACTIONS(1491), + [anon_sym_SLASH_SLASH2] = ACTIONS(1491), + [anon_sym_PLUS2] = ACTIONS(1491), + [anon_sym_bit_DASHshl2] = ACTIONS(1491), + [anon_sym_bit_DASHshr2] = ACTIONS(1491), + [anon_sym_bit_DASHand2] = ACTIONS(1491), + [anon_sym_bit_DASHxor2] = ACTIONS(1491), + [anon_sym_bit_DASHor2] = ACTIONS(1491), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [aux_sym__immediate_decimal_token1] = ACTIONS(2444), + [aux_sym__immediate_decimal_token2] = ACTIONS(2446), + [sym_filesize_unit] = ACTIONS(1491), + [sym_duration_unit] = ACTIONS(1493), + [anon_sym_COLON2] = ACTIONS(1491), + [anon_sym_err_GT] = ACTIONS(1491), + [anon_sym_out_GT] = ACTIONS(1491), + [anon_sym_e_GT] = ACTIONS(1491), + [anon_sym_o_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT] = ACTIONS(1491), + [anon_sym_err_GT_GT] = ACTIONS(1491), + [anon_sym_out_GT_GT] = ACTIONS(1491), + [anon_sym_e_GT_GT] = ACTIONS(1491), + [anon_sym_o_GT_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1491), [anon_sym_POUND] = ACTIONS(3), }, - [766] = { - [sym_comment] = STATE(766), - [ts_builtin_sym_end] = ACTIONS(1540), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1540), - [anon_sym_SLASH_SLASH] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_bit_DASHshl] = ACTIONS(1540), - [anon_sym_bit_DASHshr] = ACTIONS(1540), - [anon_sym_EQ_TILDE] = ACTIONS(1540), - [anon_sym_BANG_TILDE] = ACTIONS(1540), - [anon_sym_bit_DASHand] = ACTIONS(1540), - [anon_sym_bit_DASHxor] = ACTIONS(1540), - [anon_sym_bit_DASHor] = ACTIONS(1540), - [anon_sym_and] = ACTIONS(1540), - [anon_sym_xor] = ACTIONS(1540), - [anon_sym_or] = ACTIONS(1540), - [anon_sym_in] = ACTIONS(1540), - [anon_sym_not_DASHin] = ACTIONS(1540), - [anon_sym_has] = ACTIONS(1540), - [anon_sym_not_DASHhas] = ACTIONS(1540), - [anon_sym_starts_DASHwith] = ACTIONS(1540), - [anon_sym_ends_DASHwith] = ACTIONS(1540), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1538), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1540), - [aux_sym_cmd_identifier_token41] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(1538), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_in2] = ACTIONS(1538), - [anon_sym_STAR2] = ACTIONS(1538), - [anon_sym_and2] = ACTIONS(1538), - [anon_sym_xor2] = ACTIONS(1538), - [anon_sym_or2] = ACTIONS(1538), - [anon_sym_not_DASHin2] = ACTIONS(1538), - [anon_sym_has2] = ACTIONS(1538), - [anon_sym_not_DASHhas2] = ACTIONS(1538), - [anon_sym_starts_DASHwith2] = ACTIONS(1538), - [anon_sym_ends_DASHwith2] = ACTIONS(1538), - [anon_sym_EQ_EQ2] = ACTIONS(1538), - [anon_sym_BANG_EQ2] = ACTIONS(1538), - [anon_sym_LT2] = ACTIONS(1538), - [anon_sym_LT_EQ2] = ACTIONS(1538), - [anon_sym_GT_EQ2] = ACTIONS(1538), - [anon_sym_EQ_TILDE2] = ACTIONS(1538), - [anon_sym_BANG_TILDE2] = ACTIONS(1538), - [anon_sym_STAR_STAR2] = ACTIONS(1538), - [anon_sym_PLUS_PLUS2] = ACTIONS(1538), - [anon_sym_SLASH2] = ACTIONS(1538), - [anon_sym_mod2] = ACTIONS(1538), - [anon_sym_SLASH_SLASH2] = ACTIONS(1538), - [anon_sym_PLUS2] = ACTIONS(1538), - [anon_sym_bit_DASHshl2] = ACTIONS(1538), - [anon_sym_bit_DASHshr2] = ACTIONS(1538), - [anon_sym_bit_DASHand2] = ACTIONS(1538), - [anon_sym_bit_DASHxor2] = ACTIONS(1538), - [anon_sym_bit_DASHor2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [aux_sym__immediate_decimal_token2] = ACTIONS(2534), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1540), - [anon_sym_err_GT] = ACTIONS(1538), - [anon_sym_out_GT] = ACTIONS(1538), - [anon_sym_e_GT] = ACTIONS(1538), - [anon_sym_o_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT] = ACTIONS(1538), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [720] = { + [sym_comment] = STATE(720), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(2442), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_COLON2] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, - [767] = { - [sym_comment] = STATE(767), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1540), - [anon_sym_SLASH_SLASH] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_bit_DASHshl] = ACTIONS(1540), - [anon_sym_bit_DASHshr] = ACTIONS(1540), - [anon_sym_EQ_TILDE] = ACTIONS(1540), - [anon_sym_BANG_TILDE] = ACTIONS(1540), - [anon_sym_bit_DASHand] = ACTIONS(1540), - [anon_sym_bit_DASHxor] = ACTIONS(1540), - [anon_sym_bit_DASHor] = ACTIONS(1540), - [anon_sym_and] = ACTIONS(1540), - [anon_sym_xor] = ACTIONS(1540), - [anon_sym_or] = ACTIONS(1540), - [anon_sym_in] = ACTIONS(1540), - [anon_sym_not_DASHin] = ACTIONS(1540), - [anon_sym_has] = ACTIONS(1540), - [anon_sym_not_DASHhas] = ACTIONS(1540), - [anon_sym_starts_DASHwith] = ACTIONS(1540), - [anon_sym_ends_DASHwith] = ACTIONS(1540), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1538), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1540), - [aux_sym_cmd_identifier_token41] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(1538), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_in2] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_STAR2] = ACTIONS(1538), - [anon_sym_and2] = ACTIONS(1538), - [anon_sym_xor2] = ACTIONS(1538), - [anon_sym_or2] = ACTIONS(1538), - [anon_sym_not_DASHin2] = ACTIONS(1538), - [anon_sym_has2] = ACTIONS(1538), - [anon_sym_not_DASHhas2] = ACTIONS(1538), - [anon_sym_starts_DASHwith2] = ACTIONS(1538), - [anon_sym_ends_DASHwith2] = ACTIONS(1538), - [anon_sym_EQ_EQ2] = ACTIONS(1538), - [anon_sym_BANG_EQ2] = ACTIONS(1538), - [anon_sym_LT2] = ACTIONS(1538), - [anon_sym_LT_EQ2] = ACTIONS(1538), - [anon_sym_GT_EQ2] = ACTIONS(1538), - [anon_sym_EQ_TILDE2] = ACTIONS(1538), - [anon_sym_BANG_TILDE2] = ACTIONS(1538), - [anon_sym_STAR_STAR2] = ACTIONS(1538), - [anon_sym_PLUS_PLUS2] = ACTIONS(1538), - [anon_sym_SLASH2] = ACTIONS(1538), - [anon_sym_mod2] = ACTIONS(1538), - [anon_sym_SLASH_SLASH2] = ACTIONS(1538), - [anon_sym_PLUS2] = ACTIONS(1538), - [anon_sym_bit_DASHshl2] = ACTIONS(1538), - [anon_sym_bit_DASHshr2] = ACTIONS(1538), - [anon_sym_bit_DASHand2] = ACTIONS(1538), - [anon_sym_bit_DASHxor2] = ACTIONS(1538), - [anon_sym_bit_DASHor2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1540), - [anon_sym_COLON2] = ACTIONS(1538), - [anon_sym_err_GT] = ACTIONS(1538), - [anon_sym_out_GT] = ACTIONS(1538), - [anon_sym_e_GT] = ACTIONS(1538), - [anon_sym_o_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT] = ACTIONS(1538), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [721] = { + [sym_comment] = STATE(721), + [anon_sym_STAR_STAR] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_mod] = ACTIONS(1493), + [anon_sym_SLASH_SLASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_bit_DASHshl] = ACTIONS(1493), + [anon_sym_bit_DASHshr] = ACTIONS(1493), + [anon_sym_EQ_TILDE] = ACTIONS(1493), + [anon_sym_BANG_TILDE] = ACTIONS(1493), + [anon_sym_bit_DASHand] = ACTIONS(1493), + [anon_sym_bit_DASHxor] = ACTIONS(1493), + [anon_sym_bit_DASHor] = ACTIONS(1493), + [anon_sym_and] = ACTIONS(1493), + [anon_sym_xor] = ACTIONS(1493), + [anon_sym_or] = ACTIONS(1493), + [anon_sym_in] = ACTIONS(1493), + [anon_sym_not_DASHin] = ACTIONS(1493), + [anon_sym_has] = ACTIONS(1493), + [anon_sym_not_DASHhas] = ACTIONS(1493), + [anon_sym_starts_DASHwith] = ACTIONS(1493), + [anon_sym_ends_DASHwith] = ACTIONS(1493), + [anon_sym_EQ_EQ] = ACTIONS(1493), + [anon_sym_BANG_EQ] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1493), + [aux_sym_cmd_identifier_token41] = ACTIONS(1491), + [sym__newline] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_err_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_GT_PIPE] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1491), + [anon_sym_RPAREN] = ACTIONS(1491), + [anon_sym_GT2] = ACTIONS(1491), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_in2] = ACTIONS(1491), + [anon_sym_STAR2] = ACTIONS(1491), + [anon_sym_and2] = ACTIONS(1491), + [anon_sym_xor2] = ACTIONS(1491), + [anon_sym_or2] = ACTIONS(1491), + [anon_sym_not_DASHin2] = ACTIONS(1491), + [anon_sym_has2] = ACTIONS(1491), + [anon_sym_not_DASHhas2] = ACTIONS(1491), + [anon_sym_starts_DASHwith2] = ACTIONS(1491), + [anon_sym_ends_DASHwith2] = ACTIONS(1491), + [anon_sym_EQ_EQ2] = ACTIONS(1491), + [anon_sym_BANG_EQ2] = ACTIONS(1491), + [anon_sym_LT2] = ACTIONS(1491), + [anon_sym_LT_EQ2] = ACTIONS(1491), + [anon_sym_GT_EQ2] = ACTIONS(1491), + [anon_sym_EQ_TILDE2] = ACTIONS(1491), + [anon_sym_BANG_TILDE2] = ACTIONS(1491), + [anon_sym_STAR_STAR2] = ACTIONS(1491), + [anon_sym_PLUS_PLUS2] = ACTIONS(1491), + [anon_sym_SLASH2] = ACTIONS(1491), + [anon_sym_mod2] = ACTIONS(1491), + [anon_sym_SLASH_SLASH2] = ACTIONS(1491), + [anon_sym_PLUS2] = ACTIONS(1491), + [anon_sym_bit_DASHshl2] = ACTIONS(1491), + [anon_sym_bit_DASHshr2] = ACTIONS(1491), + [anon_sym_bit_DASHand2] = ACTIONS(1491), + [anon_sym_bit_DASHxor2] = ACTIONS(1491), + [anon_sym_bit_DASHor2] = ACTIONS(1491), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [aux_sym__immediate_decimal_token1] = ACTIONS(2448), + [aux_sym__immediate_decimal_token2] = ACTIONS(2450), + [sym_filesize_unit] = ACTIONS(1491), + [sym_duration_unit] = ACTIONS(1493), + [anon_sym_err_GT] = ACTIONS(1491), + [anon_sym_out_GT] = ACTIONS(1491), + [anon_sym_e_GT] = ACTIONS(1491), + [anon_sym_o_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT] = ACTIONS(1491), + [anon_sym_err_GT_GT] = ACTIONS(1491), + [anon_sym_out_GT_GT] = ACTIONS(1491), + [anon_sym_e_GT_GT] = ACTIONS(1491), + [anon_sym_o_GT_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1491), [anon_sym_POUND] = ACTIONS(3), }, - [768] = { - [sym_comment] = STATE(768), - [anon_sym_STAR_STAR] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_STAR] = ACTIONS(1715), - [anon_sym_SLASH] = ACTIONS(1715), - [anon_sym_mod] = ACTIONS(1717), - [anon_sym_SLASH_SLASH] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_bit_DASHshl] = ACTIONS(1717), - [anon_sym_bit_DASHshr] = ACTIONS(1717), - [anon_sym_EQ_TILDE] = ACTIONS(1717), - [anon_sym_BANG_TILDE] = ACTIONS(1717), - [anon_sym_bit_DASHand] = ACTIONS(1717), - [anon_sym_bit_DASHxor] = ACTIONS(1717), - [anon_sym_bit_DASHor] = ACTIONS(1717), - [anon_sym_and] = ACTIONS(1717), - [anon_sym_xor] = ACTIONS(1717), - [anon_sym_or] = ACTIONS(1717), - [anon_sym_in] = ACTIONS(1717), - [anon_sym_not_DASHin] = ACTIONS(1717), - [anon_sym_has] = ACTIONS(1717), - [anon_sym_not_DASHhas] = ACTIONS(1717), - [anon_sym_starts_DASHwith] = ACTIONS(1717), - [anon_sym_ends_DASHwith] = ACTIONS(1717), - [anon_sym_EQ_EQ] = ACTIONS(1717), - [anon_sym_BANG_EQ] = ACTIONS(1717), - [anon_sym_LT] = ACTIONS(1715), - [anon_sym_LT_EQ] = ACTIONS(1717), - [anon_sym_GT] = ACTIONS(1715), - [anon_sym_GT_EQ] = ACTIONS(1717), - [aux_sym_cmd_identifier_token41] = ACTIONS(1715), - [sym__newline] = ACTIONS(1715), - [anon_sym_SEMI] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_err_GT_PIPE] = ACTIONS(1715), - [anon_sym_out_GT_PIPE] = ACTIONS(1715), - [anon_sym_e_GT_PIPE] = ACTIONS(1715), - [anon_sym_o_GT_PIPE] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1715), - [anon_sym_GT2] = ACTIONS(1715), - [anon_sym_DASH2] = ACTIONS(1715), - [anon_sym_in2] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_STAR2] = ACTIONS(1715), - [anon_sym_and2] = ACTIONS(1715), - [anon_sym_xor2] = ACTIONS(1715), - [anon_sym_or2] = ACTIONS(1715), - [anon_sym_not_DASHin2] = ACTIONS(1715), - [anon_sym_has2] = ACTIONS(1715), - [anon_sym_not_DASHhas2] = ACTIONS(1715), - [anon_sym_starts_DASHwith2] = ACTIONS(1715), - [anon_sym_ends_DASHwith2] = ACTIONS(1715), - [anon_sym_EQ_EQ2] = ACTIONS(1715), - [anon_sym_BANG_EQ2] = ACTIONS(1715), - [anon_sym_LT2] = ACTIONS(1715), - [anon_sym_LT_EQ2] = ACTIONS(1715), - [anon_sym_GT_EQ2] = ACTIONS(1715), - [anon_sym_EQ_TILDE2] = ACTIONS(1715), - [anon_sym_BANG_TILDE2] = ACTIONS(1715), - [anon_sym_STAR_STAR2] = ACTIONS(1715), - [anon_sym_PLUS_PLUS2] = ACTIONS(1715), - [anon_sym_SLASH2] = ACTIONS(1715), - [anon_sym_mod2] = ACTIONS(1715), - [anon_sym_SLASH_SLASH2] = ACTIONS(1715), - [anon_sym_PLUS2] = ACTIONS(1715), - [anon_sym_bit_DASHshl2] = ACTIONS(1715), - [anon_sym_bit_DASHshr2] = ACTIONS(1715), - [anon_sym_bit_DASHand2] = ACTIONS(1715), - [anon_sym_bit_DASHxor2] = ACTIONS(1715), - [anon_sym_bit_DASHor2] = ACTIONS(1715), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [sym_filesize_unit] = ACTIONS(1715), - [sym_duration_unit] = ACTIONS(1717), - [anon_sym_COLON2] = ACTIONS(1715), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1715), - [anon_sym_out_GT_GT] = ACTIONS(1715), - [anon_sym_e_GT_GT] = ACTIONS(1715), - [anon_sym_o_GT_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1715), + [722] = { + [sym_comment] = STATE(722), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT] = ACTIONS(2452), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(2454), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, - [769] = { - [sym_comment] = STATE(769), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(2506), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1492), - [anon_sym_out_GT_GT] = ACTIONS(1492), - [anon_sym_e_GT_GT] = ACTIONS(1492), - [anon_sym_o_GT_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [723] = { + [sym_comment] = STATE(723), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT] = ACTIONS(2456), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(2458), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, - [770] = { - [sym_comment] = STATE(770), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1540), - [anon_sym_SLASH_SLASH] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_bit_DASHshl] = ACTIONS(1540), - [anon_sym_bit_DASHshr] = ACTIONS(1540), - [anon_sym_EQ_TILDE] = ACTIONS(1540), - [anon_sym_BANG_TILDE] = ACTIONS(1540), - [anon_sym_bit_DASHand] = ACTIONS(1540), - [anon_sym_bit_DASHxor] = ACTIONS(1540), - [anon_sym_bit_DASHor] = ACTIONS(1540), - [anon_sym_and] = ACTIONS(1540), - [anon_sym_xor] = ACTIONS(1540), - [anon_sym_or] = ACTIONS(1540), - [anon_sym_in] = ACTIONS(1540), - [anon_sym_not_DASHin] = ACTIONS(1540), - [anon_sym_has] = ACTIONS(1540), - [anon_sym_not_DASHhas] = ACTIONS(1540), - [anon_sym_starts_DASHwith] = ACTIONS(1540), - [anon_sym_ends_DASHwith] = ACTIONS(1540), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1538), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1540), - [aux_sym_cmd_identifier_token41] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(1538), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_in2] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_STAR2] = ACTIONS(1538), - [anon_sym_and2] = ACTIONS(1538), - [anon_sym_xor2] = ACTIONS(1538), - [anon_sym_or2] = ACTIONS(1538), - [anon_sym_not_DASHin2] = ACTIONS(1538), - [anon_sym_has2] = ACTIONS(1538), - [anon_sym_not_DASHhas2] = ACTIONS(1538), - [anon_sym_starts_DASHwith2] = ACTIONS(1538), - [anon_sym_ends_DASHwith2] = ACTIONS(1538), - [anon_sym_EQ_EQ2] = ACTIONS(1538), - [anon_sym_BANG_EQ2] = ACTIONS(1538), - [anon_sym_LT2] = ACTIONS(1538), - [anon_sym_LT_EQ2] = ACTIONS(1538), - [anon_sym_GT_EQ2] = ACTIONS(1538), - [anon_sym_EQ_TILDE2] = ACTIONS(1538), - [anon_sym_BANG_TILDE2] = ACTIONS(1538), - [anon_sym_STAR_STAR2] = ACTIONS(1538), - [anon_sym_PLUS_PLUS2] = ACTIONS(1538), - [anon_sym_SLASH2] = ACTIONS(1538), - [anon_sym_mod2] = ACTIONS(1538), - [anon_sym_SLASH_SLASH2] = ACTIONS(1538), - [anon_sym_PLUS2] = ACTIONS(1538), - [anon_sym_bit_DASHshl2] = ACTIONS(1538), - [anon_sym_bit_DASHshr2] = ACTIONS(1538), - [anon_sym_bit_DASHand2] = ACTIONS(1538), - [anon_sym_bit_DASHxor2] = ACTIONS(1538), - [anon_sym_bit_DASHor2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [aux_sym__immediate_decimal_token2] = ACTIONS(2536), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1540), - [anon_sym_err_GT] = ACTIONS(1538), - [anon_sym_out_GT] = ACTIONS(1538), - [anon_sym_e_GT] = ACTIONS(1538), - [anon_sym_o_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT] = ACTIONS(1538), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [724] = { + [sym_comment] = STATE(724), + [ts_builtin_sym_end] = ACTIONS(1501), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT] = ACTIONS(2460), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(2462), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, - [771] = { - [sym_comment] = STATE(771), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1540), - [anon_sym_SLASH_SLASH] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_bit_DASHshl] = ACTIONS(1540), - [anon_sym_bit_DASHshr] = ACTIONS(1540), - [anon_sym_EQ_TILDE] = ACTIONS(1540), - [anon_sym_BANG_TILDE] = ACTIONS(1540), - [anon_sym_bit_DASHand] = ACTIONS(1540), - [anon_sym_bit_DASHxor] = ACTIONS(1540), - [anon_sym_bit_DASHor] = ACTIONS(1540), - [anon_sym_and] = ACTIONS(1540), - [anon_sym_xor] = ACTIONS(1540), - [anon_sym_or] = ACTIONS(1540), - [anon_sym_in] = ACTIONS(1540), - [anon_sym_not_DASHin] = ACTIONS(1540), - [anon_sym_has] = ACTIONS(1540), - [anon_sym_not_DASHhas] = ACTIONS(1540), - [anon_sym_starts_DASHwith] = ACTIONS(1540), - [anon_sym_ends_DASHwith] = ACTIONS(1540), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1538), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1540), - [aux_sym_cmd_identifier_token41] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(1538), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_in2] = ACTIONS(1538), - [anon_sym_STAR2] = ACTIONS(1538), - [anon_sym_and2] = ACTIONS(1538), - [anon_sym_xor2] = ACTIONS(1538), - [anon_sym_or2] = ACTIONS(1538), - [anon_sym_not_DASHin2] = ACTIONS(1538), - [anon_sym_has2] = ACTIONS(1538), - [anon_sym_not_DASHhas2] = ACTIONS(1538), - [anon_sym_starts_DASHwith2] = ACTIONS(1538), - [anon_sym_ends_DASHwith2] = ACTIONS(1538), - [anon_sym_EQ_EQ2] = ACTIONS(1538), - [anon_sym_BANG_EQ2] = ACTIONS(1538), - [anon_sym_LT2] = ACTIONS(1538), - [anon_sym_LT_EQ2] = ACTIONS(1538), - [anon_sym_GT_EQ2] = ACTIONS(1538), - [anon_sym_EQ_TILDE2] = ACTIONS(1538), - [anon_sym_BANG_TILDE2] = ACTIONS(1538), - [anon_sym_STAR_STAR2] = ACTIONS(1538), - [anon_sym_PLUS_PLUS2] = ACTIONS(1538), - [anon_sym_SLASH2] = ACTIONS(1538), - [anon_sym_mod2] = ACTIONS(1538), - [anon_sym_SLASH_SLASH2] = ACTIONS(1538), - [anon_sym_PLUS2] = ACTIONS(1538), - [anon_sym_bit_DASHshl2] = ACTIONS(1538), - [anon_sym_bit_DASHshr2] = ACTIONS(1538), - [anon_sym_bit_DASHand2] = ACTIONS(1538), - [anon_sym_bit_DASHxor2] = ACTIONS(1538), - [anon_sym_bit_DASHor2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [aux_sym__immediate_decimal_token2] = ACTIONS(2538), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1540), - [anon_sym_err_GT] = ACTIONS(1538), - [anon_sym_out_GT] = ACTIONS(1538), - [anon_sym_e_GT] = ACTIONS(1538), - [anon_sym_o_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT] = ACTIONS(1538), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [725] = { + [sym_comment] = STATE(725), + [anon_sym_STAR_STAR] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_mod] = ACTIONS(1493), + [anon_sym_SLASH_SLASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_bit_DASHshl] = ACTIONS(1493), + [anon_sym_bit_DASHshr] = ACTIONS(1493), + [anon_sym_EQ_TILDE] = ACTIONS(1493), + [anon_sym_BANG_TILDE] = ACTIONS(1493), + [anon_sym_bit_DASHand] = ACTIONS(1493), + [anon_sym_bit_DASHxor] = ACTIONS(1493), + [anon_sym_bit_DASHor] = ACTIONS(1493), + [anon_sym_and] = ACTIONS(1493), + [anon_sym_xor] = ACTIONS(1493), + [anon_sym_or] = ACTIONS(1493), + [anon_sym_in] = ACTIONS(1493), + [anon_sym_not_DASHin] = ACTIONS(1493), + [anon_sym_has] = ACTIONS(1493), + [anon_sym_not_DASHhas] = ACTIONS(1493), + [anon_sym_starts_DASHwith] = ACTIONS(1493), + [anon_sym_ends_DASHwith] = ACTIONS(1493), + [anon_sym_EQ_EQ] = ACTIONS(1493), + [anon_sym_BANG_EQ] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1493), + [aux_sym_cmd_identifier_token41] = ACTIONS(1491), + [sym__newline] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_err_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_GT_PIPE] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1491), + [anon_sym_GT2] = ACTIONS(1491), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_in2] = ACTIONS(1491), + [anon_sym_RBRACE] = ACTIONS(1491), + [anon_sym_STAR2] = ACTIONS(1491), + [anon_sym_and2] = ACTIONS(1491), + [anon_sym_xor2] = ACTIONS(1491), + [anon_sym_or2] = ACTIONS(1491), + [anon_sym_not_DASHin2] = ACTIONS(1491), + [anon_sym_has2] = ACTIONS(1491), + [anon_sym_not_DASHhas2] = ACTIONS(1491), + [anon_sym_starts_DASHwith2] = ACTIONS(1491), + [anon_sym_ends_DASHwith2] = ACTIONS(1491), + [anon_sym_EQ_EQ2] = ACTIONS(1491), + [anon_sym_BANG_EQ2] = ACTIONS(1491), + [anon_sym_LT2] = ACTIONS(1491), + [anon_sym_LT_EQ2] = ACTIONS(1491), + [anon_sym_GT_EQ2] = ACTIONS(1491), + [anon_sym_EQ_TILDE2] = ACTIONS(1491), + [anon_sym_BANG_TILDE2] = ACTIONS(1491), + [anon_sym_STAR_STAR2] = ACTIONS(1491), + [anon_sym_PLUS_PLUS2] = ACTIONS(1491), + [anon_sym_SLASH2] = ACTIONS(1491), + [anon_sym_mod2] = ACTIONS(1491), + [anon_sym_SLASH_SLASH2] = ACTIONS(1491), + [anon_sym_PLUS2] = ACTIONS(1491), + [anon_sym_bit_DASHshl2] = ACTIONS(1491), + [anon_sym_bit_DASHshr2] = ACTIONS(1491), + [anon_sym_bit_DASHand2] = ACTIONS(1491), + [anon_sym_bit_DASHxor2] = ACTIONS(1491), + [anon_sym_bit_DASHor2] = ACTIONS(1491), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [aux_sym__immediate_decimal_token1] = ACTIONS(2464), + [aux_sym__immediate_decimal_token2] = ACTIONS(2466), + [sym_filesize_unit] = ACTIONS(1491), + [sym_duration_unit] = ACTIONS(1493), + [anon_sym_err_GT] = ACTIONS(1491), + [anon_sym_out_GT] = ACTIONS(1491), + [anon_sym_e_GT] = ACTIONS(1491), + [anon_sym_o_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT] = ACTIONS(1491), + [anon_sym_err_GT_GT] = ACTIONS(1491), + [anon_sym_out_GT_GT] = ACTIONS(1491), + [anon_sym_e_GT_GT] = ACTIONS(1491), + [anon_sym_o_GT_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1491), [anon_sym_POUND] = ACTIONS(3), }, - [772] = { - [sym_comment] = STATE(772), - [anon_sym_STAR_STAR] = ACTIONS(2540), - [anon_sym_PLUS_PLUS] = ACTIONS(2540), - [anon_sym_STAR] = ACTIONS(2542), - [anon_sym_SLASH] = ACTIONS(2542), - [anon_sym_mod] = ACTIONS(2540), - [anon_sym_SLASH_SLASH] = ACTIONS(2540), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2540), - [anon_sym_bit_DASHshl] = ACTIONS(2540), - [anon_sym_bit_DASHshr] = ACTIONS(2540), - [anon_sym_EQ_TILDE] = ACTIONS(2540), - [anon_sym_BANG_TILDE] = ACTIONS(2540), - [anon_sym_bit_DASHand] = ACTIONS(2540), - [anon_sym_bit_DASHxor] = ACTIONS(2540), - [anon_sym_bit_DASHor] = ACTIONS(2540), - [anon_sym_and] = ACTIONS(2540), - [anon_sym_xor] = ACTIONS(2540), - [anon_sym_or] = ACTIONS(2540), - [anon_sym_in] = ACTIONS(2540), - [anon_sym_not_DASHin] = ACTIONS(2540), - [anon_sym_has] = ACTIONS(2540), - [anon_sym_not_DASHhas] = ACTIONS(2540), - [anon_sym_starts_DASHwith] = ACTIONS(2540), - [anon_sym_ends_DASHwith] = ACTIONS(2540), - [anon_sym_EQ_EQ] = ACTIONS(2540), - [anon_sym_BANG_EQ] = ACTIONS(2540), - [anon_sym_LT] = ACTIONS(2542), - [anon_sym_LT_EQ] = ACTIONS(2540), - [anon_sym_GT] = ACTIONS(2542), - [anon_sym_GT_EQ] = ACTIONS(2540), - [aux_sym_cmd_identifier_token41] = ACTIONS(2544), + [726] = { + [sym_comment] = STATE(726), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1581), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_bit_DASHshl] = ACTIONS(1581), + [anon_sym_bit_DASHshr] = ACTIONS(1581), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1581), + [anon_sym_bit_DASHxor] = ACTIONS(1581), + [anon_sym_bit_DASHor] = ACTIONS(1581), + [anon_sym_and] = ACTIONS(1581), + [anon_sym_xor] = ACTIONS(1581), + [anon_sym_or] = ACTIONS(1581), + [anon_sym_in] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1581), + [anon_sym_has] = ACTIONS(1581), + [anon_sym_not_DASHhas] = ACTIONS(1581), + [anon_sym_starts_DASHwith] = ACTIONS(1581), + [anon_sym_ends_DASHwith] = ACTIONS(1581), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1581), + [aux_sym_cmd_identifier_token41] = ACTIONS(1579), [sym__newline] = ACTIONS(1579), [anon_sym_SEMI] = ACTIONS(1579), [anon_sym_PIPE] = ACTIONS(1579), @@ -158280,11 +152412,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1579), [anon_sym_bit_DASHxor2] = ACTIONS(1579), [anon_sym_bit_DASHor2] = ACTIONS(1579), - [anon_sym_DOT_DOT2] = ACTIONS(2546), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2548), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2548), - [sym_filesize_unit] = ACTIONS(2550), - [sym_duration_unit] = ACTIONS(2552), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [aux_sym__immediate_decimal_token2] = ACTIONS(2468), + [sym_filesize_unit] = ACTIONS(1579), + [sym_duration_unit] = ACTIONS(1581), [anon_sym_COLON2] = ACTIONS(1579), [anon_sym_err_GT] = ACTIONS(1579), [anon_sym_out_GT] = ACTIONS(1579), @@ -158304,534 +152437,437 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(3), }, - [773] = { - [sym_comment] = STATE(773), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(2528), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1492), - [anon_sym_out_GT_GT] = ACTIONS(1492), - [anon_sym_e_GT_GT] = ACTIONS(1492), - [anon_sym_o_GT_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(3), - }, - [774] = { - [sym_comment] = STATE(774), - [ts_builtin_sym_end] = ACTIONS(1494), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(2514), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1492), - [anon_sym_out_GT_GT] = ACTIONS(1492), - [anon_sym_e_GT_GT] = ACTIONS(1492), - [anon_sym_o_GT_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [727] = { + [sym_comment] = STATE(727), + [ts_builtin_sym_end] = ACTIONS(1493), + [anon_sym_STAR_STAR] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_mod] = ACTIONS(1493), + [anon_sym_SLASH_SLASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_bit_DASHshl] = ACTIONS(1493), + [anon_sym_bit_DASHshr] = ACTIONS(1493), + [anon_sym_EQ_TILDE] = ACTIONS(1493), + [anon_sym_BANG_TILDE] = ACTIONS(1493), + [anon_sym_bit_DASHand] = ACTIONS(1493), + [anon_sym_bit_DASHxor] = ACTIONS(1493), + [anon_sym_bit_DASHor] = ACTIONS(1493), + [anon_sym_and] = ACTIONS(1493), + [anon_sym_xor] = ACTIONS(1493), + [anon_sym_or] = ACTIONS(1493), + [anon_sym_in] = ACTIONS(1493), + [anon_sym_not_DASHin] = ACTIONS(1493), + [anon_sym_has] = ACTIONS(1493), + [anon_sym_not_DASHhas] = ACTIONS(1493), + [anon_sym_starts_DASHwith] = ACTIONS(1493), + [anon_sym_ends_DASHwith] = ACTIONS(1493), + [anon_sym_EQ_EQ] = ACTIONS(1493), + [anon_sym_BANG_EQ] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1493), + [aux_sym_cmd_identifier_token41] = ACTIONS(1491), + [sym__newline] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_err_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_GT_PIPE] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1491), + [anon_sym_GT2] = ACTIONS(1491), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_in2] = ACTIONS(1491), + [anon_sym_STAR2] = ACTIONS(1491), + [anon_sym_and2] = ACTIONS(1491), + [anon_sym_xor2] = ACTIONS(1491), + [anon_sym_or2] = ACTIONS(1491), + [anon_sym_not_DASHin2] = ACTIONS(1491), + [anon_sym_has2] = ACTIONS(1491), + [anon_sym_not_DASHhas2] = ACTIONS(1491), + [anon_sym_starts_DASHwith2] = ACTIONS(1491), + [anon_sym_ends_DASHwith2] = ACTIONS(1491), + [anon_sym_EQ_EQ2] = ACTIONS(1491), + [anon_sym_BANG_EQ2] = ACTIONS(1491), + [anon_sym_LT2] = ACTIONS(1491), + [anon_sym_LT_EQ2] = ACTIONS(1491), + [anon_sym_GT_EQ2] = ACTIONS(1491), + [anon_sym_EQ_TILDE2] = ACTIONS(1491), + [anon_sym_BANG_TILDE2] = ACTIONS(1491), + [anon_sym_STAR_STAR2] = ACTIONS(1491), + [anon_sym_PLUS_PLUS2] = ACTIONS(1491), + [anon_sym_SLASH2] = ACTIONS(1491), + [anon_sym_mod2] = ACTIONS(1491), + [anon_sym_SLASH_SLASH2] = ACTIONS(1491), + [anon_sym_PLUS2] = ACTIONS(1491), + [anon_sym_bit_DASHshl2] = ACTIONS(1491), + [anon_sym_bit_DASHshr2] = ACTIONS(1491), + [anon_sym_bit_DASHand2] = ACTIONS(1491), + [anon_sym_bit_DASHxor2] = ACTIONS(1491), + [anon_sym_bit_DASHor2] = ACTIONS(1491), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [aux_sym__immediate_decimal_token1] = ACTIONS(2470), + [aux_sym__immediate_decimal_token2] = ACTIONS(2472), + [sym_filesize_unit] = ACTIONS(1491), + [sym_duration_unit] = ACTIONS(1493), + [anon_sym_err_GT] = ACTIONS(1491), + [anon_sym_out_GT] = ACTIONS(1491), + [anon_sym_e_GT] = ACTIONS(1491), + [anon_sym_o_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT] = ACTIONS(1491), + [anon_sym_err_GT_GT] = ACTIONS(1491), + [anon_sym_out_GT_GT] = ACTIONS(1491), + [anon_sym_e_GT_GT] = ACTIONS(1491), + [anon_sym_o_GT_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1491), [anon_sym_POUND] = ACTIONS(3), }, - [775] = { - [sym_comment] = STATE(775), - [anon_sym_STAR_STAR] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_SLASH] = ACTIONS(1484), - [anon_sym_mod] = ACTIONS(1486), - [anon_sym_SLASH_SLASH] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_bit_DASHshl] = ACTIONS(1486), - [anon_sym_bit_DASHshr] = ACTIONS(1486), - [anon_sym_EQ_TILDE] = ACTIONS(1486), - [anon_sym_BANG_TILDE] = ACTIONS(1486), - [anon_sym_bit_DASHand] = ACTIONS(1486), - [anon_sym_bit_DASHxor] = ACTIONS(1486), - [anon_sym_bit_DASHor] = ACTIONS(1486), - [anon_sym_and] = ACTIONS(1486), - [anon_sym_xor] = ACTIONS(1486), - [anon_sym_or] = ACTIONS(1486), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_not_DASHin] = ACTIONS(1486), - [anon_sym_has] = ACTIONS(1486), - [anon_sym_not_DASHhas] = ACTIONS(1486), - [anon_sym_starts_DASHwith] = ACTIONS(1486), - [anon_sym_ends_DASHwith] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(1486), - [anon_sym_BANG_EQ] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1486), - [aux_sym_cmd_identifier_token41] = ACTIONS(1484), - [sym__newline] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_err_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_GT_PIPE] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1484), - [anon_sym_GT2] = ACTIONS(1484), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_in2] = ACTIONS(1484), - [anon_sym_STAR2] = ACTIONS(1484), - [anon_sym_and2] = ACTIONS(1484), - [anon_sym_xor2] = ACTIONS(1484), - [anon_sym_or2] = ACTIONS(1484), - [anon_sym_not_DASHin2] = ACTIONS(1484), - [anon_sym_has2] = ACTIONS(1484), - [anon_sym_not_DASHhas2] = ACTIONS(1484), - [anon_sym_starts_DASHwith2] = ACTIONS(1484), - [anon_sym_ends_DASHwith2] = ACTIONS(1484), - [anon_sym_EQ_EQ2] = ACTIONS(1484), - [anon_sym_BANG_EQ2] = ACTIONS(1484), - [anon_sym_LT2] = ACTIONS(1484), - [anon_sym_LT_EQ2] = ACTIONS(1484), - [anon_sym_GT_EQ2] = ACTIONS(1484), - [anon_sym_EQ_TILDE2] = ACTIONS(1484), - [anon_sym_BANG_TILDE2] = ACTIONS(1484), - [anon_sym_STAR_STAR2] = ACTIONS(1484), - [anon_sym_PLUS_PLUS2] = ACTIONS(1484), - [anon_sym_SLASH2] = ACTIONS(1484), - [anon_sym_mod2] = ACTIONS(1484), - [anon_sym_SLASH_SLASH2] = ACTIONS(1484), - [anon_sym_PLUS2] = ACTIONS(1484), - [anon_sym_bit_DASHshl2] = ACTIONS(1484), - [anon_sym_bit_DASHshr2] = ACTIONS(1484), - [anon_sym_bit_DASHand2] = ACTIONS(1484), - [anon_sym_bit_DASHxor2] = ACTIONS(1484), - [anon_sym_bit_DASHor2] = ACTIONS(1484), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [aux_sym__immediate_decimal_token1] = ACTIONS(2554), - [aux_sym__immediate_decimal_token2] = ACTIONS(2556), - [sym_filesize_unit] = ACTIONS(1484), - [sym_duration_unit] = ACTIONS(1486), - [anon_sym_err_GT] = ACTIONS(1484), - [anon_sym_out_GT] = ACTIONS(1484), - [anon_sym_e_GT] = ACTIONS(1484), - [anon_sym_o_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT] = ACTIONS(1484), - [anon_sym_err_GT_GT] = ACTIONS(1484), - [anon_sym_out_GT_GT] = ACTIONS(1484), - [anon_sym_e_GT_GT] = ACTIONS(1484), - [anon_sym_o_GT_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1484), + [728] = { + [sym_comment] = STATE(728), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_COLON2] = ACTIONS(1499), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, - [776] = { - [sym_comment] = STATE(776), - [anon_sym_STAR_STAR] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_SLASH] = ACTIONS(1484), - [anon_sym_mod] = ACTIONS(1486), - [anon_sym_SLASH_SLASH] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_bit_DASHshl] = ACTIONS(1486), - [anon_sym_bit_DASHshr] = ACTIONS(1486), - [anon_sym_EQ_TILDE] = ACTIONS(1486), - [anon_sym_BANG_TILDE] = ACTIONS(1486), - [anon_sym_bit_DASHand] = ACTIONS(1486), - [anon_sym_bit_DASHxor] = ACTIONS(1486), - [anon_sym_bit_DASHor] = ACTIONS(1486), - [anon_sym_and] = ACTIONS(1486), - [anon_sym_xor] = ACTIONS(1486), - [anon_sym_or] = ACTIONS(1486), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_not_DASHin] = ACTIONS(1486), - [anon_sym_has] = ACTIONS(1486), - [anon_sym_not_DASHhas] = ACTIONS(1486), - [anon_sym_starts_DASHwith] = ACTIONS(1486), - [anon_sym_ends_DASHwith] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(1486), - [anon_sym_BANG_EQ] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1486), - [aux_sym_cmd_identifier_token41] = ACTIONS(1484), - [sym__newline] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_err_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_GT_PIPE] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1484), - [anon_sym_GT2] = ACTIONS(1484), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_in2] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_STAR2] = ACTIONS(1484), - [anon_sym_and2] = ACTIONS(1484), - [anon_sym_xor2] = ACTIONS(1484), - [anon_sym_or2] = ACTIONS(1484), - [anon_sym_not_DASHin2] = ACTIONS(1484), - [anon_sym_has2] = ACTIONS(1484), - [anon_sym_not_DASHhas2] = ACTIONS(1484), - [anon_sym_starts_DASHwith2] = ACTIONS(1484), - [anon_sym_ends_DASHwith2] = ACTIONS(1484), - [anon_sym_EQ_EQ2] = ACTIONS(1484), - [anon_sym_BANG_EQ2] = ACTIONS(1484), - [anon_sym_LT2] = ACTIONS(1484), - [anon_sym_LT_EQ2] = ACTIONS(1484), - [anon_sym_GT_EQ2] = ACTIONS(1484), - [anon_sym_EQ_TILDE2] = ACTIONS(1484), - [anon_sym_BANG_TILDE2] = ACTIONS(1484), - [anon_sym_STAR_STAR2] = ACTIONS(1484), - [anon_sym_PLUS_PLUS2] = ACTIONS(1484), - [anon_sym_SLASH2] = ACTIONS(1484), - [anon_sym_mod2] = ACTIONS(1484), - [anon_sym_SLASH_SLASH2] = ACTIONS(1484), - [anon_sym_PLUS2] = ACTIONS(1484), - [anon_sym_bit_DASHshl2] = ACTIONS(1484), - [anon_sym_bit_DASHshr2] = ACTIONS(1484), - [anon_sym_bit_DASHand2] = ACTIONS(1484), - [anon_sym_bit_DASHxor2] = ACTIONS(1484), - [anon_sym_bit_DASHor2] = ACTIONS(1484), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [sym_filesize_unit] = ACTIONS(1484), - [sym_duration_unit] = ACTIONS(1486), - [anon_sym_COLON2] = ACTIONS(1484), - [anon_sym_err_GT] = ACTIONS(1484), - [anon_sym_out_GT] = ACTIONS(1484), - [anon_sym_e_GT] = ACTIONS(1484), - [anon_sym_o_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT] = ACTIONS(1484), - [anon_sym_err_GT_GT] = ACTIONS(1484), - [anon_sym_out_GT_GT] = ACTIONS(1484), - [anon_sym_e_GT_GT] = ACTIONS(1484), - [anon_sym_o_GT_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1484), + [729] = { + [sym_comment] = STATE(729), + [anon_sym_STAR_STAR] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_mod] = ACTIONS(1493), + [anon_sym_SLASH_SLASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_bit_DASHshl] = ACTIONS(1493), + [anon_sym_bit_DASHshr] = ACTIONS(1493), + [anon_sym_EQ_TILDE] = ACTIONS(1493), + [anon_sym_BANG_TILDE] = ACTIONS(1493), + [anon_sym_bit_DASHand] = ACTIONS(1493), + [anon_sym_bit_DASHxor] = ACTIONS(1493), + [anon_sym_bit_DASHor] = ACTIONS(1493), + [anon_sym_and] = ACTIONS(1493), + [anon_sym_xor] = ACTIONS(1493), + [anon_sym_or] = ACTIONS(1493), + [anon_sym_in] = ACTIONS(1493), + [anon_sym_not_DASHin] = ACTIONS(1493), + [anon_sym_has] = ACTIONS(1493), + [anon_sym_not_DASHhas] = ACTIONS(1493), + [anon_sym_starts_DASHwith] = ACTIONS(1493), + [anon_sym_ends_DASHwith] = ACTIONS(1493), + [anon_sym_EQ_EQ] = ACTIONS(1493), + [anon_sym_BANG_EQ] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1493), + [aux_sym_cmd_identifier_token41] = ACTIONS(1491), + [sym__newline] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_err_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_GT_PIPE] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1491), + [anon_sym_GT2] = ACTIONS(1491), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_in2] = ACTIONS(1491), + [anon_sym_RBRACE] = ACTIONS(1491), + [anon_sym_STAR2] = ACTIONS(1491), + [anon_sym_and2] = ACTIONS(1491), + [anon_sym_xor2] = ACTIONS(1491), + [anon_sym_or2] = ACTIONS(1491), + [anon_sym_not_DASHin2] = ACTIONS(1491), + [anon_sym_has2] = ACTIONS(1491), + [anon_sym_not_DASHhas2] = ACTIONS(1491), + [anon_sym_starts_DASHwith2] = ACTIONS(1491), + [anon_sym_ends_DASHwith2] = ACTIONS(1491), + [anon_sym_EQ_EQ2] = ACTIONS(1491), + [anon_sym_BANG_EQ2] = ACTIONS(1491), + [anon_sym_LT2] = ACTIONS(1491), + [anon_sym_LT_EQ2] = ACTIONS(1491), + [anon_sym_GT_EQ2] = ACTIONS(1491), + [anon_sym_EQ_TILDE2] = ACTIONS(1491), + [anon_sym_BANG_TILDE2] = ACTIONS(1491), + [anon_sym_STAR_STAR2] = ACTIONS(1491), + [anon_sym_PLUS_PLUS2] = ACTIONS(1491), + [anon_sym_SLASH2] = ACTIONS(1491), + [anon_sym_mod2] = ACTIONS(1491), + [anon_sym_SLASH_SLASH2] = ACTIONS(1491), + [anon_sym_PLUS2] = ACTIONS(1491), + [anon_sym_bit_DASHshl2] = ACTIONS(1491), + [anon_sym_bit_DASHshr2] = ACTIONS(1491), + [anon_sym_bit_DASHand2] = ACTIONS(1491), + [anon_sym_bit_DASHxor2] = ACTIONS(1491), + [anon_sym_bit_DASHor2] = ACTIONS(1491), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [sym_filesize_unit] = ACTIONS(1491), + [sym_duration_unit] = ACTIONS(1493), + [anon_sym_COLON2] = ACTIONS(1491), + [anon_sym_err_GT] = ACTIONS(1491), + [anon_sym_out_GT] = ACTIONS(1491), + [anon_sym_e_GT] = ACTIONS(1491), + [anon_sym_o_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT] = ACTIONS(1491), + [anon_sym_err_GT_GT] = ACTIONS(1491), + [anon_sym_out_GT_GT] = ACTIONS(1491), + [anon_sym_e_GT_GT] = ACTIONS(1491), + [anon_sym_o_GT_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1491), [anon_sym_POUND] = ACTIONS(3), }, - [777] = { - [sym_comment] = STATE(777), - [ts_builtin_sym_end] = ACTIONS(1486), - [anon_sym_STAR_STAR] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_SLASH] = ACTIONS(1484), - [anon_sym_mod] = ACTIONS(1486), - [anon_sym_SLASH_SLASH] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_bit_DASHshl] = ACTIONS(1486), - [anon_sym_bit_DASHshr] = ACTIONS(1486), - [anon_sym_EQ_TILDE] = ACTIONS(1486), - [anon_sym_BANG_TILDE] = ACTIONS(1486), - [anon_sym_bit_DASHand] = ACTIONS(1486), - [anon_sym_bit_DASHxor] = ACTIONS(1486), - [anon_sym_bit_DASHor] = ACTIONS(1486), - [anon_sym_and] = ACTIONS(1486), - [anon_sym_xor] = ACTIONS(1486), - [anon_sym_or] = ACTIONS(1486), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_not_DASHin] = ACTIONS(1486), - [anon_sym_has] = ACTIONS(1486), - [anon_sym_not_DASHhas] = ACTIONS(1486), - [anon_sym_starts_DASHwith] = ACTIONS(1486), - [anon_sym_ends_DASHwith] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(1486), - [anon_sym_BANG_EQ] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1486), - [aux_sym_cmd_identifier_token41] = ACTIONS(1484), - [sym__newline] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_err_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_GT_PIPE] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1484), - [anon_sym_GT2] = ACTIONS(1484), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_in2] = ACTIONS(1484), - [anon_sym_STAR2] = ACTIONS(1484), - [anon_sym_and2] = ACTIONS(1484), - [anon_sym_xor2] = ACTIONS(1484), - [anon_sym_or2] = ACTIONS(1484), - [anon_sym_not_DASHin2] = ACTIONS(1484), - [anon_sym_has2] = ACTIONS(1484), - [anon_sym_not_DASHhas2] = ACTIONS(1484), - [anon_sym_starts_DASHwith2] = ACTIONS(1484), - [anon_sym_ends_DASHwith2] = ACTIONS(1484), - [anon_sym_EQ_EQ2] = ACTIONS(1484), - [anon_sym_BANG_EQ2] = ACTIONS(1484), - [anon_sym_LT2] = ACTIONS(1484), - [anon_sym_LT_EQ2] = ACTIONS(1484), - [anon_sym_GT_EQ2] = ACTIONS(1484), - [anon_sym_EQ_TILDE2] = ACTIONS(1484), - [anon_sym_BANG_TILDE2] = ACTIONS(1484), - [anon_sym_STAR_STAR2] = ACTIONS(1484), - [anon_sym_PLUS_PLUS2] = ACTIONS(1484), - [anon_sym_SLASH2] = ACTIONS(1484), - [anon_sym_mod2] = ACTIONS(1484), - [anon_sym_SLASH_SLASH2] = ACTIONS(1484), - [anon_sym_PLUS2] = ACTIONS(1484), - [anon_sym_bit_DASHshl2] = ACTIONS(1484), - [anon_sym_bit_DASHshr2] = ACTIONS(1484), - [anon_sym_bit_DASHand2] = ACTIONS(1484), - [anon_sym_bit_DASHxor2] = ACTIONS(1484), - [anon_sym_bit_DASHor2] = ACTIONS(1484), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [sym_filesize_unit] = ACTIONS(1484), - [sym_duration_unit] = ACTIONS(1486), - [anon_sym_err_GT] = ACTIONS(1484), - [anon_sym_out_GT] = ACTIONS(1484), - [anon_sym_e_GT] = ACTIONS(1484), - [anon_sym_o_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT] = ACTIONS(1484), - [anon_sym_err_GT_GT] = ACTIONS(1484), - [anon_sym_out_GT_GT] = ACTIONS(1484), - [anon_sym_e_GT_GT] = ACTIONS(1484), - [anon_sym_o_GT_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1484), + [730] = { + [sym_comment] = STATE(730), + [anon_sym_STAR_STAR] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_mod] = ACTIONS(1493), + [anon_sym_SLASH_SLASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_bit_DASHshl] = ACTIONS(1493), + [anon_sym_bit_DASHshr] = ACTIONS(1493), + [anon_sym_EQ_TILDE] = ACTIONS(1493), + [anon_sym_BANG_TILDE] = ACTIONS(1493), + [anon_sym_bit_DASHand] = ACTIONS(1493), + [anon_sym_bit_DASHxor] = ACTIONS(1493), + [anon_sym_bit_DASHor] = ACTIONS(1493), + [anon_sym_and] = ACTIONS(1493), + [anon_sym_xor] = ACTIONS(1493), + [anon_sym_or] = ACTIONS(1493), + [anon_sym_in] = ACTIONS(1493), + [anon_sym_not_DASHin] = ACTIONS(1493), + [anon_sym_has] = ACTIONS(1493), + [anon_sym_not_DASHhas] = ACTIONS(1493), + [anon_sym_starts_DASHwith] = ACTIONS(1493), + [anon_sym_ends_DASHwith] = ACTIONS(1493), + [anon_sym_EQ_EQ] = ACTIONS(1493), + [anon_sym_BANG_EQ] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1493), + [aux_sym_cmd_identifier_token41] = ACTIONS(1491), + [sym__newline] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_err_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_GT_PIPE] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1491), + [anon_sym_GT2] = ACTIONS(1491), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_in2] = ACTIONS(1491), + [anon_sym_STAR2] = ACTIONS(1491), + [anon_sym_and2] = ACTIONS(1491), + [anon_sym_xor2] = ACTIONS(1491), + [anon_sym_or2] = ACTIONS(1491), + [anon_sym_not_DASHin2] = ACTIONS(1491), + [anon_sym_has2] = ACTIONS(1491), + [anon_sym_not_DASHhas2] = ACTIONS(1491), + [anon_sym_starts_DASHwith2] = ACTIONS(1491), + [anon_sym_ends_DASHwith2] = ACTIONS(1491), + [anon_sym_EQ_EQ2] = ACTIONS(1491), + [anon_sym_BANG_EQ2] = ACTIONS(1491), + [anon_sym_LT2] = ACTIONS(1491), + [anon_sym_LT_EQ2] = ACTIONS(1491), + [anon_sym_GT_EQ2] = ACTIONS(1491), + [anon_sym_EQ_TILDE2] = ACTIONS(1491), + [anon_sym_BANG_TILDE2] = ACTIONS(1491), + [anon_sym_STAR_STAR2] = ACTIONS(1491), + [anon_sym_PLUS_PLUS2] = ACTIONS(1491), + [anon_sym_SLASH2] = ACTIONS(1491), + [anon_sym_mod2] = ACTIONS(1491), + [anon_sym_SLASH_SLASH2] = ACTIONS(1491), + [anon_sym_PLUS2] = ACTIONS(1491), + [anon_sym_bit_DASHshl2] = ACTIONS(1491), + [anon_sym_bit_DASHshr2] = ACTIONS(1491), + [anon_sym_bit_DASHand2] = ACTIONS(1491), + [anon_sym_bit_DASHxor2] = ACTIONS(1491), + [anon_sym_bit_DASHor2] = ACTIONS(1491), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [aux_sym__immediate_decimal_token1] = ACTIONS(2474), + [aux_sym__immediate_decimal_token2] = ACTIONS(2476), + [sym_filesize_unit] = ACTIONS(1491), + [sym_duration_unit] = ACTIONS(1493), + [anon_sym_err_GT] = ACTIONS(1491), + [anon_sym_out_GT] = ACTIONS(1491), + [anon_sym_e_GT] = ACTIONS(1491), + [anon_sym_o_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT] = ACTIONS(1491), + [anon_sym_err_GT_GT] = ACTIONS(1491), + [anon_sym_out_GT_GT] = ACTIONS(1491), + [anon_sym_e_GT_GT] = ACTIONS(1491), + [anon_sym_o_GT_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1491), [anon_sym_POUND] = ACTIONS(3), }, - [778] = { - [sym_comment] = STATE(778), - [ts_builtin_sym_end] = ACTIONS(1591), - [anon_sym_STAR_STAR] = ACTIONS(2558), - [anon_sym_PLUS_PLUS] = ACTIONS(2558), - [anon_sym_STAR] = ACTIONS(2560), - [anon_sym_SLASH] = ACTIONS(2560), - [anon_sym_mod] = ACTIONS(2558), - [anon_sym_SLASH_SLASH] = ACTIONS(2558), - [anon_sym_PLUS] = ACTIONS(2560), - [anon_sym_DASH] = ACTIONS(2558), - [anon_sym_bit_DASHshl] = ACTIONS(2558), - [anon_sym_bit_DASHshr] = ACTIONS(2558), - [anon_sym_EQ_TILDE] = ACTIONS(2558), - [anon_sym_BANG_TILDE] = ACTIONS(2558), - [anon_sym_bit_DASHand] = ACTIONS(2558), - [anon_sym_bit_DASHxor] = ACTIONS(2558), - [anon_sym_bit_DASHor] = ACTIONS(2558), - [anon_sym_and] = ACTIONS(2558), - [anon_sym_xor] = ACTIONS(2558), - [anon_sym_or] = ACTIONS(2558), - [anon_sym_in] = ACTIONS(2558), - [anon_sym_not_DASHin] = ACTIONS(2558), - [anon_sym_has] = ACTIONS(2558), - [anon_sym_not_DASHhas] = ACTIONS(2558), - [anon_sym_starts_DASHwith] = ACTIONS(2558), - [anon_sym_ends_DASHwith] = ACTIONS(2558), - [anon_sym_EQ_EQ] = ACTIONS(2558), - [anon_sym_BANG_EQ] = ACTIONS(2558), - [anon_sym_LT] = ACTIONS(2560), - [anon_sym_LT_EQ] = ACTIONS(2558), - [anon_sym_GT] = ACTIONS(2560), - [anon_sym_GT_EQ] = ACTIONS(2558), - [aux_sym_cmd_identifier_token41] = ACTIONS(2562), + [731] = { + [sym_comment] = STATE(731), + [ts_builtin_sym_end] = ACTIONS(1581), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1581), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_bit_DASHshl] = ACTIONS(1581), + [anon_sym_bit_DASHshr] = ACTIONS(1581), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1581), + [anon_sym_bit_DASHxor] = ACTIONS(1581), + [anon_sym_bit_DASHor] = ACTIONS(1581), + [anon_sym_and] = ACTIONS(1581), + [anon_sym_xor] = ACTIONS(1581), + [anon_sym_or] = ACTIONS(1581), + [anon_sym_in] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1581), + [anon_sym_has] = ACTIONS(1581), + [anon_sym_not_DASHhas] = ACTIONS(1581), + [anon_sym_starts_DASHwith] = ACTIONS(1581), + [anon_sym_ends_DASHwith] = ACTIONS(1581), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1581), + [aux_sym_cmd_identifier_token41] = ACTIONS(1579), [sym__newline] = ACTIONS(1579), [anon_sym_SEMI] = ACTIONS(1579), [anon_sym_PIPE] = ACTIONS(1579), @@ -158873,11 +152909,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1579), [anon_sym_bit_DASHxor2] = ACTIONS(1579), [anon_sym_bit_DASHor2] = ACTIONS(1579), - [anon_sym_DOT_DOT2] = ACTIONS(2564), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2566), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2566), - [sym_filesize_unit] = ACTIONS(2568), - [sym_duration_unit] = ACTIONS(2570), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [aux_sym__immediate_decimal_token2] = ACTIONS(2478), + [sym_filesize_unit] = ACTIONS(1579), + [sym_duration_unit] = ACTIONS(1581), [anon_sym_err_GT] = ACTIONS(1579), [anon_sym_out_GT] = ACTIONS(1579), [anon_sym_e_GT] = ACTIONS(1579), @@ -158896,39 +152933,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(3), }, - [779] = { - [sym_comment] = STATE(779), - [anon_sym_STAR_STAR] = ACTIONS(2572), - [anon_sym_PLUS_PLUS] = ACTIONS(2572), - [anon_sym_STAR] = ACTIONS(2574), - [anon_sym_SLASH] = ACTIONS(2574), - [anon_sym_mod] = ACTIONS(2572), - [anon_sym_SLASH_SLASH] = ACTIONS(2572), - [anon_sym_PLUS] = ACTIONS(2574), - [anon_sym_DASH] = ACTIONS(2572), - [anon_sym_bit_DASHshl] = ACTIONS(2572), - [anon_sym_bit_DASHshr] = ACTIONS(2572), - [anon_sym_EQ_TILDE] = ACTIONS(2572), - [anon_sym_BANG_TILDE] = ACTIONS(2572), - [anon_sym_bit_DASHand] = ACTIONS(2572), - [anon_sym_bit_DASHxor] = ACTIONS(2572), - [anon_sym_bit_DASHor] = ACTIONS(2572), - [anon_sym_and] = ACTIONS(2572), - [anon_sym_xor] = ACTIONS(2572), - [anon_sym_or] = ACTIONS(2572), - [anon_sym_in] = ACTIONS(2572), - [anon_sym_not_DASHin] = ACTIONS(2572), - [anon_sym_has] = ACTIONS(2572), - [anon_sym_not_DASHhas] = ACTIONS(2572), - [anon_sym_starts_DASHwith] = ACTIONS(2572), - [anon_sym_ends_DASHwith] = ACTIONS(2572), - [anon_sym_EQ_EQ] = ACTIONS(2572), - [anon_sym_BANG_EQ] = ACTIONS(2572), - [anon_sym_LT] = ACTIONS(2574), - [anon_sym_LT_EQ] = ACTIONS(2572), - [anon_sym_GT] = ACTIONS(2574), - [anon_sym_GT_EQ] = ACTIONS(2572), - [aux_sym_cmd_identifier_token41] = ACTIONS(2576), + [732] = { + [sym__match_pattern_expression] = STATE(3033), + [sym__match_pattern_value] = STATE(3028), + [sym__match_pattern_list] = STATE(3041), + [sym__match_pattern_rest] = STATE(7050), + [sym__match_pattern_record] = STATE(3043), + [sym_expr_parenthesized] = STATE(2679), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(2942), + [sym__val_range] = STATE(7376), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(2944), + [sym_val_bool] = STATE(2797), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(2685), + [sym_val_number] = STATE(2944), + [sym__val_number_decimal] = STATE(2423), + [sym__val_number] = STATE(2967), + [sym_val_duration] = STATE(2944), + [sym_val_filesize] = STATE(2944), + [sym_val_binary] = STATE(2944), + [sym_val_string] = STATE(2944), + [sym__raw_str] = STATE(2936), + [sym__str_double_quotes] = STATE(2936), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6628), + [sym__spread_list] = STATE(6920), + [sym_list_body] = STATE(7167), + [sym_val_entry] = STATE(6647), + [sym_val_record] = STATE(6683), + [sym__table_head] = STATE(5595), + [sym_val_table] = STATE(2944), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(2747), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6479), + [sym_comment] = STATE(732), + [aux_sym_shebang_repeat1] = STATE(836), + [aux_sym_parameter_repeat2] = STATE(6308), + [aux_sym__match_pattern_list_repeat1] = STATE(1226), + [aux_sym_list_body_repeat1] = STATE(872), + [sym__newline] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(2482), + [anon_sym_RBRACK] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2486), + [anon_sym_COMMA] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(2490), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_DOT_DOT] = ACTIONS(2494), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2496), + [anon_sym_DOT_DOT_LT] = ACTIONS(2496), + [anon_sym_null] = ACTIONS(2498), + [anon_sym_true] = ACTIONS(2500), + [anon_sym_false] = ACTIONS(2500), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), + [aux_sym__val_number_decimal_token1] = ACTIONS(2502), + [aux_sym__val_number_decimal_token2] = ACTIONS(2504), + [aux_sym__val_number_decimal_token3] = ACTIONS(2506), + [aux_sym__val_number_decimal_token4] = ACTIONS(2508), + [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(2512), + [aux_sym__val_number_token5] = ACTIONS(2512), + [aux_sym__val_number_token6] = ACTIONS(2512), + [anon_sym_0b] = ACTIONS(2514), + [anon_sym_0o] = ACTIONS(2516), + [anon_sym_0x] = ACTIONS(2516), + [sym_val_date] = ACTIONS(2518), + [anon_sym_DQUOTE] = ACTIONS(2520), + [sym__str_single_quotes] = ACTIONS(2522), + [sym__str_back_ticks] = ACTIONS(2522), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2528), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2534), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2536), + }, + [733] = { + [sym_comment] = STATE(733), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT] = ACTIONS(2538), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(2540), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(3), + }, + [734] = { + [sym_comment] = STATE(734), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1581), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_bit_DASHshl] = ACTIONS(1581), + [anon_sym_bit_DASHshr] = ACTIONS(1581), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1581), + [anon_sym_bit_DASHxor] = ACTIONS(1581), + [anon_sym_bit_DASHor] = ACTIONS(1581), + [anon_sym_and] = ACTIONS(1581), + [anon_sym_xor] = ACTIONS(1581), + [anon_sym_or] = ACTIONS(1581), + [anon_sym_in] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1581), + [anon_sym_has] = ACTIONS(1581), + [anon_sym_not_DASHhas] = ACTIONS(1581), + [anon_sym_starts_DASHwith] = ACTIONS(1581), + [anon_sym_ends_DASHwith] = ACTIONS(1581), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1581), + [aux_sym_cmd_identifier_token41] = ACTIONS(1579), [sym__newline] = ACTIONS(1579), [anon_sym_SEMI] = ACTIONS(1579), [anon_sym_PIPE] = ACTIONS(1579), @@ -158940,10 +153175,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), - [anon_sym_RPAREN] = ACTIONS(1579), [anon_sym_GT2] = ACTIONS(1579), [anon_sym_DASH2] = ACTIONS(1579), [anon_sym_in2] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), [anon_sym_STAR2] = ACTIONS(1579), [anon_sym_and2] = ACTIONS(1579), [anon_sym_xor2] = ACTIONS(1579), @@ -158971,11 +153206,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1579), [anon_sym_bit_DASHxor2] = ACTIONS(1579), [anon_sym_bit_DASHor2] = ACTIONS(1579), - [anon_sym_DOT_DOT2] = ACTIONS(2546), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2548), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2548), - [sym_filesize_unit] = ACTIONS(2578), - [sym_duration_unit] = ACTIONS(2580), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [sym_filesize_unit] = ACTIONS(1579), + [sym_duration_unit] = ACTIONS(1581), + [anon_sym_COLON2] = ACTIONS(1579), [anon_sym_err_GT] = ACTIONS(1579), [anon_sym_out_GT] = ACTIONS(1579), [anon_sym_e_GT] = ACTIONS(1579), @@ -158994,333 +153230,534 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(3), }, - [780] = { - [sym_comment] = STATE(780), - [anon_sym_STAR_STAR] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_SLASH] = ACTIONS(1484), - [anon_sym_mod] = ACTIONS(1486), - [anon_sym_SLASH_SLASH] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_bit_DASHshl] = ACTIONS(1486), - [anon_sym_bit_DASHshr] = ACTIONS(1486), - [anon_sym_EQ_TILDE] = ACTIONS(1486), - [anon_sym_BANG_TILDE] = ACTIONS(1486), - [anon_sym_bit_DASHand] = ACTIONS(1486), - [anon_sym_bit_DASHxor] = ACTIONS(1486), - [anon_sym_bit_DASHor] = ACTIONS(1486), - [anon_sym_and] = ACTIONS(1486), - [anon_sym_xor] = ACTIONS(1486), - [anon_sym_or] = ACTIONS(1486), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_not_DASHin] = ACTIONS(1486), - [anon_sym_has] = ACTIONS(1486), - [anon_sym_not_DASHhas] = ACTIONS(1486), - [anon_sym_starts_DASHwith] = ACTIONS(1486), - [anon_sym_ends_DASHwith] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(1486), - [anon_sym_BANG_EQ] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1486), - [aux_sym_cmd_identifier_token41] = ACTIONS(1484), - [sym__newline] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_err_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_GT_PIPE] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1484), - [anon_sym_GT2] = ACTIONS(1484), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_in2] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_STAR2] = ACTIONS(1484), - [anon_sym_and2] = ACTIONS(1484), - [anon_sym_xor2] = ACTIONS(1484), - [anon_sym_or2] = ACTIONS(1484), - [anon_sym_not_DASHin2] = ACTIONS(1484), - [anon_sym_has2] = ACTIONS(1484), - [anon_sym_not_DASHhas2] = ACTIONS(1484), - [anon_sym_starts_DASHwith2] = ACTIONS(1484), - [anon_sym_ends_DASHwith2] = ACTIONS(1484), - [anon_sym_EQ_EQ2] = ACTIONS(1484), - [anon_sym_BANG_EQ2] = ACTIONS(1484), - [anon_sym_LT2] = ACTIONS(1484), - [anon_sym_LT_EQ2] = ACTIONS(1484), - [anon_sym_GT_EQ2] = ACTIONS(1484), - [anon_sym_EQ_TILDE2] = ACTIONS(1484), - [anon_sym_BANG_TILDE2] = ACTIONS(1484), - [anon_sym_STAR_STAR2] = ACTIONS(1484), - [anon_sym_PLUS_PLUS2] = ACTIONS(1484), - [anon_sym_SLASH2] = ACTIONS(1484), - [anon_sym_mod2] = ACTIONS(1484), - [anon_sym_SLASH_SLASH2] = ACTIONS(1484), - [anon_sym_PLUS2] = ACTIONS(1484), - [anon_sym_bit_DASHshl2] = ACTIONS(1484), - [anon_sym_bit_DASHshr2] = ACTIONS(1484), - [anon_sym_bit_DASHand2] = ACTIONS(1484), - [anon_sym_bit_DASHxor2] = ACTIONS(1484), - [anon_sym_bit_DASHor2] = ACTIONS(1484), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [sym_filesize_unit] = ACTIONS(1484), - [sym_duration_unit] = ACTIONS(1486), - [anon_sym_err_GT] = ACTIONS(1484), - [anon_sym_out_GT] = ACTIONS(1484), - [anon_sym_e_GT] = ACTIONS(1484), - [anon_sym_o_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT] = ACTIONS(1484), - [anon_sym_err_GT_GT] = ACTIONS(1484), - [anon_sym_out_GT_GT] = ACTIONS(1484), - [anon_sym_e_GT_GT] = ACTIONS(1484), - [anon_sym_o_GT_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1484), + [735] = { + [sym_comment] = STATE(735), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(2458), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, - [781] = { - [sym_comment] = STATE(781), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(2532), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1492), - [anon_sym_out_GT_GT] = ACTIONS(1492), - [anon_sym_e_GT_GT] = ACTIONS(1492), - [anon_sym_o_GT_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [736] = { + [sym_comment] = STATE(736), + [anon_sym_STAR_STAR] = ACTIONS(1680), + [anon_sym_PLUS_PLUS] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_SLASH] = ACTIONS(1678), + [anon_sym_mod] = ACTIONS(1680), + [anon_sym_SLASH_SLASH] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1680), + [anon_sym_bit_DASHshl] = ACTIONS(1680), + [anon_sym_bit_DASHshr] = ACTIONS(1680), + [anon_sym_EQ_TILDE] = ACTIONS(1680), + [anon_sym_BANG_TILDE] = ACTIONS(1680), + [anon_sym_bit_DASHand] = ACTIONS(1680), + [anon_sym_bit_DASHxor] = ACTIONS(1680), + [anon_sym_bit_DASHor] = ACTIONS(1680), + [anon_sym_and] = ACTIONS(1680), + [anon_sym_xor] = ACTIONS(1680), + [anon_sym_or] = ACTIONS(1680), + [anon_sym_in] = ACTIONS(1680), + [anon_sym_not_DASHin] = ACTIONS(1680), + [anon_sym_has] = ACTIONS(1680), + [anon_sym_not_DASHhas] = ACTIONS(1680), + [anon_sym_starts_DASHwith] = ACTIONS(1680), + [anon_sym_ends_DASHwith] = ACTIONS(1680), + [anon_sym_EQ_EQ] = ACTIONS(1680), + [anon_sym_BANG_EQ] = ACTIONS(1680), + [anon_sym_LT] = ACTIONS(1678), + [anon_sym_LT_EQ] = ACTIONS(1680), + [anon_sym_GT] = ACTIONS(1678), + [anon_sym_GT_EQ] = ACTIONS(1680), + [aux_sym_cmd_identifier_token41] = ACTIONS(1678), + [sym__newline] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_PIPE] = ACTIONS(1678), + [anon_sym_err_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_GT_PIPE] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1678), + [anon_sym_GT2] = ACTIONS(1678), + [anon_sym_DASH2] = ACTIONS(1678), + [anon_sym_in2] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_STAR2] = ACTIONS(1678), + [anon_sym_and2] = ACTIONS(1678), + [anon_sym_xor2] = ACTIONS(1678), + [anon_sym_or2] = ACTIONS(1678), + [anon_sym_not_DASHin2] = ACTIONS(1678), + [anon_sym_has2] = ACTIONS(1678), + [anon_sym_not_DASHhas2] = ACTIONS(1678), + [anon_sym_starts_DASHwith2] = ACTIONS(1678), + [anon_sym_ends_DASHwith2] = ACTIONS(1678), + [anon_sym_EQ_EQ2] = ACTIONS(1678), + [anon_sym_BANG_EQ2] = ACTIONS(1678), + [anon_sym_LT2] = ACTIONS(1678), + [anon_sym_LT_EQ2] = ACTIONS(1678), + [anon_sym_GT_EQ2] = ACTIONS(1678), + [anon_sym_EQ_TILDE2] = ACTIONS(1678), + [anon_sym_BANG_TILDE2] = ACTIONS(1678), + [anon_sym_STAR_STAR2] = ACTIONS(1678), + [anon_sym_PLUS_PLUS2] = ACTIONS(1678), + [anon_sym_SLASH2] = ACTIONS(1678), + [anon_sym_mod2] = ACTIONS(1678), + [anon_sym_SLASH_SLASH2] = ACTIONS(1678), + [anon_sym_PLUS2] = ACTIONS(1678), + [anon_sym_bit_DASHshl2] = ACTIONS(1678), + [anon_sym_bit_DASHshr2] = ACTIONS(1678), + [anon_sym_bit_DASHand2] = ACTIONS(1678), + [anon_sym_bit_DASHxor2] = ACTIONS(1678), + [anon_sym_bit_DASHor2] = ACTIONS(1678), + [anon_sym_DOT_DOT2] = ACTIONS(1678), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1680), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1680), + [sym_filesize_unit] = ACTIONS(1678), + [sym_duration_unit] = ACTIONS(1680), + [anon_sym_COLON2] = ACTIONS(1678), + [anon_sym_err_GT] = ACTIONS(1678), + [anon_sym_out_GT] = ACTIONS(1678), + [anon_sym_e_GT] = ACTIONS(1678), + [anon_sym_o_GT] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT] = ACTIONS(1678), + [anon_sym_err_GT_GT] = ACTIONS(1678), + [anon_sym_out_GT_GT] = ACTIONS(1678), + [anon_sym_e_GT_GT] = ACTIONS(1678), + [anon_sym_o_GT_GT] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1678), [anon_sym_POUND] = ACTIONS(3), }, - [782] = { - [sym_comment] = STATE(782), - [ts_builtin_sym_end] = ACTIONS(1540), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1540), - [anon_sym_SLASH_SLASH] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_bit_DASHshl] = ACTIONS(1540), - [anon_sym_bit_DASHshr] = ACTIONS(1540), - [anon_sym_EQ_TILDE] = ACTIONS(1540), - [anon_sym_BANG_TILDE] = ACTIONS(1540), - [anon_sym_bit_DASHand] = ACTIONS(1540), - [anon_sym_bit_DASHxor] = ACTIONS(1540), - [anon_sym_bit_DASHor] = ACTIONS(1540), - [anon_sym_and] = ACTIONS(1540), - [anon_sym_xor] = ACTIONS(1540), - [anon_sym_or] = ACTIONS(1540), - [anon_sym_in] = ACTIONS(1540), - [anon_sym_not_DASHin] = ACTIONS(1540), - [anon_sym_has] = ACTIONS(1540), - [anon_sym_not_DASHhas] = ACTIONS(1540), - [anon_sym_starts_DASHwith] = ACTIONS(1540), - [anon_sym_ends_DASHwith] = ACTIONS(1540), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1538), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1540), - [aux_sym_cmd_identifier_token41] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(1538), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_in2] = ACTIONS(1538), - [anon_sym_STAR2] = ACTIONS(1538), - [anon_sym_and2] = ACTIONS(1538), - [anon_sym_xor2] = ACTIONS(1538), - [anon_sym_or2] = ACTIONS(1538), - [anon_sym_not_DASHin2] = ACTIONS(1538), - [anon_sym_has2] = ACTIONS(1538), - [anon_sym_not_DASHhas2] = ACTIONS(1538), - [anon_sym_starts_DASHwith2] = ACTIONS(1538), - [anon_sym_ends_DASHwith2] = ACTIONS(1538), - [anon_sym_EQ_EQ2] = ACTIONS(1538), - [anon_sym_BANG_EQ2] = ACTIONS(1538), - [anon_sym_LT2] = ACTIONS(1538), - [anon_sym_LT_EQ2] = ACTIONS(1538), - [anon_sym_GT_EQ2] = ACTIONS(1538), - [anon_sym_EQ_TILDE2] = ACTIONS(1538), - [anon_sym_BANG_TILDE2] = ACTIONS(1538), - [anon_sym_STAR_STAR2] = ACTIONS(1538), - [anon_sym_PLUS_PLUS2] = ACTIONS(1538), - [anon_sym_SLASH2] = ACTIONS(1538), - [anon_sym_mod2] = ACTIONS(1538), - [anon_sym_SLASH_SLASH2] = ACTIONS(1538), - [anon_sym_PLUS2] = ACTIONS(1538), - [anon_sym_bit_DASHshl2] = ACTIONS(1538), - [anon_sym_bit_DASHshr2] = ACTIONS(1538), - [anon_sym_bit_DASHand2] = ACTIONS(1538), - [anon_sym_bit_DASHxor2] = ACTIONS(1538), - [anon_sym_bit_DASHor2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1540), - [anon_sym_err_GT] = ACTIONS(1538), - [anon_sym_out_GT] = ACTIONS(1538), - [anon_sym_e_GT] = ACTIONS(1538), - [anon_sym_o_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT] = ACTIONS(1538), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [737] = { + [sym_comment] = STATE(737), + [ts_builtin_sym_end] = ACTIONS(1501), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(2462), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, - [783] = { - [sym_comment] = STATE(783), - [anon_sym_STAR_STAR] = ACTIONS(2572), - [anon_sym_PLUS_PLUS] = ACTIONS(2572), - [anon_sym_STAR] = ACTIONS(2574), - [anon_sym_SLASH] = ACTIONS(2574), - [anon_sym_mod] = ACTIONS(2572), - [anon_sym_SLASH_SLASH] = ACTIONS(2572), - [anon_sym_PLUS] = ACTIONS(2574), - [anon_sym_DASH] = ACTIONS(2572), - [anon_sym_bit_DASHshl] = ACTIONS(2572), - [anon_sym_bit_DASHshr] = ACTIONS(2572), - [anon_sym_EQ_TILDE] = ACTIONS(2572), - [anon_sym_BANG_TILDE] = ACTIONS(2572), - [anon_sym_bit_DASHand] = ACTIONS(2572), - [anon_sym_bit_DASHxor] = ACTIONS(2572), - [anon_sym_bit_DASHor] = ACTIONS(2572), - [anon_sym_and] = ACTIONS(2572), - [anon_sym_xor] = ACTIONS(2572), - [anon_sym_or] = ACTIONS(2572), - [anon_sym_in] = ACTIONS(2572), - [anon_sym_not_DASHin] = ACTIONS(2572), - [anon_sym_has] = ACTIONS(2572), - [anon_sym_not_DASHhas] = ACTIONS(2572), - [anon_sym_starts_DASHwith] = ACTIONS(2572), - [anon_sym_ends_DASHwith] = ACTIONS(2572), - [anon_sym_EQ_EQ] = ACTIONS(2572), - [anon_sym_BANG_EQ] = ACTIONS(2572), - [anon_sym_LT] = ACTIONS(2574), - [anon_sym_LT_EQ] = ACTIONS(2572), - [anon_sym_GT] = ACTIONS(2574), - [anon_sym_GT_EQ] = ACTIONS(2572), - [aux_sym_cmd_identifier_token41] = ACTIONS(2576), + [738] = { + [sym_comment] = STATE(738), + [anon_sym_STAR_STAR] = ACTIONS(2542), + [anon_sym_PLUS_PLUS] = ACTIONS(2542), + [anon_sym_STAR] = ACTIONS(2544), + [anon_sym_SLASH] = ACTIONS(2544), + [anon_sym_mod] = ACTIONS(2542), + [anon_sym_SLASH_SLASH] = ACTIONS(2542), + [anon_sym_PLUS] = ACTIONS(2544), + [anon_sym_DASH] = ACTIONS(2542), + [anon_sym_bit_DASHshl] = ACTIONS(2542), + [anon_sym_bit_DASHshr] = ACTIONS(2542), + [anon_sym_EQ_TILDE] = ACTIONS(2542), + [anon_sym_BANG_TILDE] = ACTIONS(2542), + [anon_sym_bit_DASHand] = ACTIONS(2542), + [anon_sym_bit_DASHxor] = ACTIONS(2542), + [anon_sym_bit_DASHor] = ACTIONS(2542), + [anon_sym_and] = ACTIONS(2542), + [anon_sym_xor] = ACTIONS(2542), + [anon_sym_or] = ACTIONS(2542), + [anon_sym_in] = ACTIONS(2542), + [anon_sym_not_DASHin] = ACTIONS(2542), + [anon_sym_has] = ACTIONS(2542), + [anon_sym_not_DASHhas] = ACTIONS(2542), + [anon_sym_starts_DASHwith] = ACTIONS(2542), + [anon_sym_ends_DASHwith] = ACTIONS(2542), + [anon_sym_EQ_EQ] = ACTIONS(2542), + [anon_sym_BANG_EQ] = ACTIONS(2542), + [anon_sym_LT] = ACTIONS(2544), + [anon_sym_LT_EQ] = ACTIONS(2542), + [anon_sym_GT] = ACTIONS(2544), + [anon_sym_GT_EQ] = ACTIONS(2542), + [aux_sym_cmd_identifier_token41] = ACTIONS(2546), + [sym__newline] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1616), + [anon_sym_err_GT_PIPE] = ACTIONS(1616), + [anon_sym_out_GT_PIPE] = ACTIONS(1616), + [anon_sym_e_GT_PIPE] = ACTIONS(1616), + [anon_sym_o_GT_PIPE] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1616), + [anon_sym_GT2] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_in2] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1616), + [anon_sym_STAR2] = ACTIONS(1616), + [anon_sym_and2] = ACTIONS(1616), + [anon_sym_xor2] = ACTIONS(1616), + [anon_sym_or2] = ACTIONS(1616), + [anon_sym_not_DASHin2] = ACTIONS(1616), + [anon_sym_has2] = ACTIONS(1616), + [anon_sym_not_DASHhas2] = ACTIONS(1616), + [anon_sym_starts_DASHwith2] = ACTIONS(1616), + [anon_sym_ends_DASHwith2] = ACTIONS(1616), + [anon_sym_EQ_EQ2] = ACTIONS(1616), + [anon_sym_BANG_EQ2] = ACTIONS(1616), + [anon_sym_LT2] = ACTIONS(1616), + [anon_sym_LT_EQ2] = ACTIONS(1616), + [anon_sym_GT_EQ2] = ACTIONS(1616), + [anon_sym_EQ_TILDE2] = ACTIONS(1616), + [anon_sym_BANG_TILDE2] = ACTIONS(1616), + [anon_sym_STAR_STAR2] = ACTIONS(1616), + [anon_sym_PLUS_PLUS2] = ACTIONS(1616), + [anon_sym_SLASH2] = ACTIONS(1616), + [anon_sym_mod2] = ACTIONS(1616), + [anon_sym_SLASH_SLASH2] = ACTIONS(1616), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_bit_DASHshl2] = ACTIONS(1616), + [anon_sym_bit_DASHshr2] = ACTIONS(1616), + [anon_sym_bit_DASHand2] = ACTIONS(1616), + [anon_sym_bit_DASHxor2] = ACTIONS(1616), + [anon_sym_bit_DASHor2] = ACTIONS(1616), + [anon_sym_DOT_DOT2] = ACTIONS(2548), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2550), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2550), + [sym_filesize_unit] = ACTIONS(2552), + [sym_duration_unit] = ACTIONS(2554), + [anon_sym_COLON2] = ACTIONS(1616), + [anon_sym_err_GT] = ACTIONS(1616), + [anon_sym_out_GT] = ACTIONS(1616), + [anon_sym_e_GT] = ACTIONS(1616), + [anon_sym_o_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT] = ACTIONS(1616), + [anon_sym_err_GT_GT] = ACTIONS(1616), + [anon_sym_out_GT_GT] = ACTIONS(1616), + [anon_sym_e_GT_GT] = ACTIONS(1616), + [anon_sym_o_GT_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1616), + [anon_sym_POUND] = ACTIONS(3), + }, + [739] = { + [sym_comment] = STATE(739), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(2454), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(3), + }, + [740] = { + [sym_comment] = STATE(740), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1581), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_bit_DASHshl] = ACTIONS(1581), + [anon_sym_bit_DASHshr] = ACTIONS(1581), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1581), + [anon_sym_bit_DASHxor] = ACTIONS(1581), + [anon_sym_bit_DASHor] = ACTIONS(1581), + [anon_sym_and] = ACTIONS(1581), + [anon_sym_xor] = ACTIONS(1581), + [anon_sym_or] = ACTIONS(1581), + [anon_sym_in] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1581), + [anon_sym_has] = ACTIONS(1581), + [anon_sym_not_DASHhas] = ACTIONS(1581), + [anon_sym_starts_DASHwith] = ACTIONS(1581), + [anon_sym_ends_DASHwith] = ACTIONS(1581), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1581), + [aux_sym_cmd_identifier_token41] = ACTIONS(1579), [sym__newline] = ACTIONS(1579), [anon_sym_SEMI] = ACTIONS(1579), [anon_sym_PIPE] = ACTIONS(1579), @@ -159332,10 +153769,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), [anon_sym_GT2] = ACTIONS(1579), [anon_sym_DASH2] = ACTIONS(1579), [anon_sym_in2] = ACTIONS(1579), - [anon_sym_RBRACE] = ACTIONS(1579), [anon_sym_STAR2] = ACTIONS(1579), [anon_sym_and2] = ACTIONS(1579), [anon_sym_xor2] = ACTIONS(1579), @@ -159363,11 +153800,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1579), [anon_sym_bit_DASHxor2] = ACTIONS(1579), [anon_sym_bit_DASHor2] = ACTIONS(1579), - [anon_sym_DOT_DOT2] = ACTIONS(2546), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2548), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2548), - [sym_filesize_unit] = ACTIONS(2582), - [sym_duration_unit] = ACTIONS(2584), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [aux_sym__immediate_decimal_token2] = ACTIONS(2556), + [sym_filesize_unit] = ACTIONS(1579), + [sym_duration_unit] = ACTIONS(1581), [anon_sym_err_GT] = ACTIONS(1579), [anon_sym_out_GT] = ACTIONS(1579), [anon_sym_e_GT] = ACTIONS(1579), @@ -159386,2966 +153824,1903 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(3), }, - [784] = { - [sym_comment] = STATE(784), - [anon_sym_STAR_STAR] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_STAR] = ACTIONS(1715), - [anon_sym_SLASH] = ACTIONS(1715), - [anon_sym_mod] = ACTIONS(1717), - [anon_sym_SLASH_SLASH] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_bit_DASHshl] = ACTIONS(1717), - [anon_sym_bit_DASHshr] = ACTIONS(1717), - [anon_sym_EQ_TILDE] = ACTIONS(1717), - [anon_sym_BANG_TILDE] = ACTIONS(1717), - [anon_sym_bit_DASHand] = ACTIONS(1717), - [anon_sym_bit_DASHxor] = ACTIONS(1717), - [anon_sym_bit_DASHor] = ACTIONS(1717), - [anon_sym_and] = ACTIONS(1717), - [anon_sym_xor] = ACTIONS(1717), - [anon_sym_or] = ACTIONS(1717), - [anon_sym_in] = ACTIONS(1717), - [anon_sym_not_DASHin] = ACTIONS(1717), - [anon_sym_has] = ACTIONS(1717), - [anon_sym_not_DASHhas] = ACTIONS(1717), - [anon_sym_starts_DASHwith] = ACTIONS(1717), - [anon_sym_ends_DASHwith] = ACTIONS(1717), - [anon_sym_EQ_EQ] = ACTIONS(1717), - [anon_sym_BANG_EQ] = ACTIONS(1717), - [anon_sym_LT] = ACTIONS(1715), - [anon_sym_LT_EQ] = ACTIONS(1717), - [anon_sym_GT] = ACTIONS(1715), - [anon_sym_GT_EQ] = ACTIONS(1717), - [aux_sym_cmd_identifier_token41] = ACTIONS(1715), - [sym__newline] = ACTIONS(1715), - [anon_sym_SEMI] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_err_GT_PIPE] = ACTIONS(1715), - [anon_sym_out_GT_PIPE] = ACTIONS(1715), - [anon_sym_e_GT_PIPE] = ACTIONS(1715), - [anon_sym_o_GT_PIPE] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1715), - [anon_sym_RPAREN] = ACTIONS(1715), - [anon_sym_GT2] = ACTIONS(1715), - [anon_sym_DASH2] = ACTIONS(1715), - [anon_sym_in2] = ACTIONS(1715), - [anon_sym_STAR2] = ACTIONS(1715), - [anon_sym_and2] = ACTIONS(1715), - [anon_sym_xor2] = ACTIONS(1715), - [anon_sym_or2] = ACTIONS(1715), - [anon_sym_not_DASHin2] = ACTIONS(1715), - [anon_sym_has2] = ACTIONS(1715), - [anon_sym_not_DASHhas2] = ACTIONS(1715), - [anon_sym_starts_DASHwith2] = ACTIONS(1715), - [anon_sym_ends_DASHwith2] = ACTIONS(1715), - [anon_sym_EQ_EQ2] = ACTIONS(1715), - [anon_sym_BANG_EQ2] = ACTIONS(1715), - [anon_sym_LT2] = ACTIONS(1715), - [anon_sym_LT_EQ2] = ACTIONS(1715), - [anon_sym_GT_EQ2] = ACTIONS(1715), - [anon_sym_EQ_TILDE2] = ACTIONS(1715), - [anon_sym_BANG_TILDE2] = ACTIONS(1715), - [anon_sym_STAR_STAR2] = ACTIONS(1715), - [anon_sym_PLUS_PLUS2] = ACTIONS(1715), - [anon_sym_SLASH2] = ACTIONS(1715), - [anon_sym_mod2] = ACTIONS(1715), - [anon_sym_SLASH_SLASH2] = ACTIONS(1715), - [anon_sym_PLUS2] = ACTIONS(1715), - [anon_sym_bit_DASHshl2] = ACTIONS(1715), - [anon_sym_bit_DASHshr2] = ACTIONS(1715), - [anon_sym_bit_DASHand2] = ACTIONS(1715), - [anon_sym_bit_DASHxor2] = ACTIONS(1715), - [anon_sym_bit_DASHor2] = ACTIONS(1715), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [sym_filesize_unit] = ACTIONS(1715), - [sym_duration_unit] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1715), - [anon_sym_out_GT_GT] = ACTIONS(1715), - [anon_sym_e_GT_GT] = ACTIONS(1715), - [anon_sym_o_GT_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(3), + [741] = { + [sym__match_pattern_expression] = STATE(3033), + [sym__match_pattern_value] = STATE(3028), + [sym__match_pattern_list] = STATE(3041), + [sym__match_pattern_rest] = STATE(7050), + [sym__match_pattern_record] = STATE(3043), + [sym_expr_parenthesized] = STATE(2679), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(2942), + [sym__val_range] = STATE(7376), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(2944), + [sym_val_bool] = STATE(2797), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(2685), + [sym_val_number] = STATE(2944), + [sym__val_number_decimal] = STATE(2423), + [sym__val_number] = STATE(2967), + [sym_val_duration] = STATE(2944), + [sym_val_filesize] = STATE(2944), + [sym_val_binary] = STATE(2944), + [sym_val_string] = STATE(2944), + [sym__raw_str] = STATE(2936), + [sym__str_double_quotes] = STATE(2936), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6628), + [sym__spread_list] = STATE(6920), + [sym_list_body] = STATE(7292), + [sym_val_entry] = STATE(6647), + [sym_val_record] = STATE(6683), + [sym__table_head] = STATE(5440), + [sym_val_table] = STATE(2944), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(2747), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6479), + [sym_comment] = STATE(741), + [aux_sym_shebang_repeat1] = STATE(836), + [aux_sym_parameter_repeat2] = STATE(6308), + [aux_sym__match_pattern_list_repeat1] = STATE(1226), + [aux_sym_list_body_repeat1] = STATE(872), + [sym__newline] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(2482), + [anon_sym_RBRACK] = ACTIONS(2558), + [anon_sym_LPAREN] = ACTIONS(2486), + [anon_sym_COMMA] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(2490), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_DOT_DOT] = ACTIONS(2494), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2496), + [anon_sym_DOT_DOT_LT] = ACTIONS(2496), + [anon_sym_null] = ACTIONS(2498), + [anon_sym_true] = ACTIONS(2500), + [anon_sym_false] = ACTIONS(2500), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), + [aux_sym__val_number_decimal_token1] = ACTIONS(2502), + [aux_sym__val_number_decimal_token2] = ACTIONS(2504), + [aux_sym__val_number_decimal_token3] = ACTIONS(2506), + [aux_sym__val_number_decimal_token4] = ACTIONS(2508), + [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(2512), + [aux_sym__val_number_token5] = ACTIONS(2512), + [aux_sym__val_number_token6] = ACTIONS(2512), + [anon_sym_0b] = ACTIONS(2514), + [anon_sym_0o] = ACTIONS(2516), + [anon_sym_0x] = ACTIONS(2516), + [sym_val_date] = ACTIONS(2518), + [anon_sym_DQUOTE] = ACTIONS(2520), + [sym__str_single_quotes] = ACTIONS(2522), + [sym__str_back_ticks] = ACTIONS(2522), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2528), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2534), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2536), }, - [785] = { - [sym_comment] = STATE(785), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1540), - [anon_sym_SLASH_SLASH] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_bit_DASHshl] = ACTIONS(1540), - [anon_sym_bit_DASHshr] = ACTIONS(1540), - [anon_sym_EQ_TILDE] = ACTIONS(1540), - [anon_sym_BANG_TILDE] = ACTIONS(1540), - [anon_sym_bit_DASHand] = ACTIONS(1540), - [anon_sym_bit_DASHxor] = ACTIONS(1540), - [anon_sym_bit_DASHor] = ACTIONS(1540), - [anon_sym_and] = ACTIONS(1540), - [anon_sym_xor] = ACTIONS(1540), - [anon_sym_or] = ACTIONS(1540), - [anon_sym_in] = ACTIONS(1540), - [anon_sym_not_DASHin] = ACTIONS(1540), - [anon_sym_has] = ACTIONS(1540), - [anon_sym_not_DASHhas] = ACTIONS(1540), - [anon_sym_starts_DASHwith] = ACTIONS(1540), - [anon_sym_ends_DASHwith] = ACTIONS(1540), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1538), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1540), - [aux_sym_cmd_identifier_token41] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(1538), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_in2] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_STAR2] = ACTIONS(1538), - [anon_sym_and2] = ACTIONS(1538), - [anon_sym_xor2] = ACTIONS(1538), - [anon_sym_or2] = ACTIONS(1538), - [anon_sym_not_DASHin2] = ACTIONS(1538), - [anon_sym_has2] = ACTIONS(1538), - [anon_sym_not_DASHhas2] = ACTIONS(1538), - [anon_sym_starts_DASHwith2] = ACTIONS(1538), - [anon_sym_ends_DASHwith2] = ACTIONS(1538), - [anon_sym_EQ_EQ2] = ACTIONS(1538), - [anon_sym_BANG_EQ2] = ACTIONS(1538), - [anon_sym_LT2] = ACTIONS(1538), - [anon_sym_LT_EQ2] = ACTIONS(1538), - [anon_sym_GT_EQ2] = ACTIONS(1538), - [anon_sym_EQ_TILDE2] = ACTIONS(1538), - [anon_sym_BANG_TILDE2] = ACTIONS(1538), - [anon_sym_STAR_STAR2] = ACTIONS(1538), - [anon_sym_PLUS_PLUS2] = ACTIONS(1538), - [anon_sym_SLASH2] = ACTIONS(1538), - [anon_sym_mod2] = ACTIONS(1538), - [anon_sym_SLASH_SLASH2] = ACTIONS(1538), - [anon_sym_PLUS2] = ACTIONS(1538), - [anon_sym_bit_DASHshl2] = ACTIONS(1538), - [anon_sym_bit_DASHshr2] = ACTIONS(1538), - [anon_sym_bit_DASHand2] = ACTIONS(1538), - [anon_sym_bit_DASHxor2] = ACTIONS(1538), - [anon_sym_bit_DASHor2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1540), - [anon_sym_err_GT] = ACTIONS(1538), - [anon_sym_out_GT] = ACTIONS(1538), - [anon_sym_e_GT] = ACTIONS(1538), - [anon_sym_o_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT] = ACTIONS(1538), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [742] = { + [sym_comment] = STATE(742), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1581), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_bit_DASHshl] = ACTIONS(1581), + [anon_sym_bit_DASHshr] = ACTIONS(1581), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1581), + [anon_sym_bit_DASHxor] = ACTIONS(1581), + [anon_sym_bit_DASHor] = ACTIONS(1581), + [anon_sym_and] = ACTIONS(1581), + [anon_sym_xor] = ACTIONS(1581), + [anon_sym_or] = ACTIONS(1581), + [anon_sym_in] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1581), + [anon_sym_has] = ACTIONS(1581), + [anon_sym_not_DASHhas] = ACTIONS(1581), + [anon_sym_starts_DASHwith] = ACTIONS(1581), + [anon_sym_ends_DASHwith] = ACTIONS(1581), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1581), + [aux_sym_cmd_identifier_token41] = ACTIONS(1579), + [sym__newline] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_err_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_GT_PIPE] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), + [anon_sym_GT2] = ACTIONS(1579), + [anon_sym_DASH2] = ACTIONS(1579), + [anon_sym_in2] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_STAR2] = ACTIONS(1579), + [anon_sym_and2] = ACTIONS(1579), + [anon_sym_xor2] = ACTIONS(1579), + [anon_sym_or2] = ACTIONS(1579), + [anon_sym_not_DASHin2] = ACTIONS(1579), + [anon_sym_has2] = ACTIONS(1579), + [anon_sym_not_DASHhas2] = ACTIONS(1579), + [anon_sym_starts_DASHwith2] = ACTIONS(1579), + [anon_sym_ends_DASHwith2] = ACTIONS(1579), + [anon_sym_EQ_EQ2] = ACTIONS(1579), + [anon_sym_BANG_EQ2] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ2] = ACTIONS(1579), + [anon_sym_GT_EQ2] = ACTIONS(1579), + [anon_sym_EQ_TILDE2] = ACTIONS(1579), + [anon_sym_BANG_TILDE2] = ACTIONS(1579), + [anon_sym_STAR_STAR2] = ACTIONS(1579), + [anon_sym_PLUS_PLUS2] = ACTIONS(1579), + [anon_sym_SLASH2] = ACTIONS(1579), + [anon_sym_mod2] = ACTIONS(1579), + [anon_sym_SLASH_SLASH2] = ACTIONS(1579), + [anon_sym_PLUS2] = ACTIONS(1579), + [anon_sym_bit_DASHshl2] = ACTIONS(1579), + [anon_sym_bit_DASHshr2] = ACTIONS(1579), + [anon_sym_bit_DASHand2] = ACTIONS(1579), + [anon_sym_bit_DASHxor2] = ACTIONS(1579), + [anon_sym_bit_DASHor2] = ACTIONS(1579), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [aux_sym__immediate_decimal_token2] = ACTIONS(2560), + [sym_filesize_unit] = ACTIONS(1579), + [sym_duration_unit] = ACTIONS(1581), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [anon_sym_err_GT_GT] = ACTIONS(1579), + [anon_sym_out_GT_GT] = ACTIONS(1579), + [anon_sym_e_GT_GT] = ACTIONS(1579), + [anon_sym_o_GT_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(3), }, - [786] = { - [sym_comment] = STATE(786), - [anon_sym_STAR_STAR] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_STAR] = ACTIONS(1715), - [anon_sym_SLASH] = ACTIONS(1715), - [anon_sym_mod] = ACTIONS(1717), - [anon_sym_SLASH_SLASH] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_bit_DASHshl] = ACTIONS(1717), - [anon_sym_bit_DASHshr] = ACTIONS(1717), - [anon_sym_EQ_TILDE] = ACTIONS(1717), - [anon_sym_BANG_TILDE] = ACTIONS(1717), - [anon_sym_bit_DASHand] = ACTIONS(1717), - [anon_sym_bit_DASHxor] = ACTIONS(1717), - [anon_sym_bit_DASHor] = ACTIONS(1717), - [anon_sym_and] = ACTIONS(1717), - [anon_sym_xor] = ACTIONS(1717), - [anon_sym_or] = ACTIONS(1717), - [anon_sym_in] = ACTIONS(1717), - [anon_sym_not_DASHin] = ACTIONS(1717), - [anon_sym_has] = ACTIONS(1717), - [anon_sym_not_DASHhas] = ACTIONS(1717), - [anon_sym_starts_DASHwith] = ACTIONS(1717), - [anon_sym_ends_DASHwith] = ACTIONS(1717), - [anon_sym_EQ_EQ] = ACTIONS(1717), - [anon_sym_BANG_EQ] = ACTIONS(1717), - [anon_sym_LT] = ACTIONS(1715), - [anon_sym_LT_EQ] = ACTIONS(1717), - [anon_sym_GT] = ACTIONS(1715), - [anon_sym_GT_EQ] = ACTIONS(1717), - [aux_sym_cmd_identifier_token41] = ACTIONS(1715), - [sym__newline] = ACTIONS(1715), - [anon_sym_SEMI] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_err_GT_PIPE] = ACTIONS(1715), - [anon_sym_out_GT_PIPE] = ACTIONS(1715), - [anon_sym_e_GT_PIPE] = ACTIONS(1715), - [anon_sym_o_GT_PIPE] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1715), - [anon_sym_GT2] = ACTIONS(1715), - [anon_sym_DASH2] = ACTIONS(1715), - [anon_sym_in2] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_STAR2] = ACTIONS(1715), - [anon_sym_and2] = ACTIONS(1715), - [anon_sym_xor2] = ACTIONS(1715), - [anon_sym_or2] = ACTIONS(1715), - [anon_sym_not_DASHin2] = ACTIONS(1715), - [anon_sym_has2] = ACTIONS(1715), - [anon_sym_not_DASHhas2] = ACTIONS(1715), - [anon_sym_starts_DASHwith2] = ACTIONS(1715), - [anon_sym_ends_DASHwith2] = ACTIONS(1715), - [anon_sym_EQ_EQ2] = ACTIONS(1715), - [anon_sym_BANG_EQ2] = ACTIONS(1715), - [anon_sym_LT2] = ACTIONS(1715), - [anon_sym_LT_EQ2] = ACTIONS(1715), - [anon_sym_GT_EQ2] = ACTIONS(1715), - [anon_sym_EQ_TILDE2] = ACTIONS(1715), - [anon_sym_BANG_TILDE2] = ACTIONS(1715), - [anon_sym_STAR_STAR2] = ACTIONS(1715), - [anon_sym_PLUS_PLUS2] = ACTIONS(1715), - [anon_sym_SLASH2] = ACTIONS(1715), - [anon_sym_mod2] = ACTIONS(1715), - [anon_sym_SLASH_SLASH2] = ACTIONS(1715), - [anon_sym_PLUS2] = ACTIONS(1715), - [anon_sym_bit_DASHshl2] = ACTIONS(1715), - [anon_sym_bit_DASHshr2] = ACTIONS(1715), - [anon_sym_bit_DASHand2] = ACTIONS(1715), - [anon_sym_bit_DASHxor2] = ACTIONS(1715), - [anon_sym_bit_DASHor2] = ACTIONS(1715), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [sym_filesize_unit] = ACTIONS(1715), - [sym_duration_unit] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1715), - [anon_sym_out_GT_GT] = ACTIONS(1715), - [anon_sym_e_GT_GT] = ACTIONS(1715), - [anon_sym_o_GT_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1715), + [743] = { + [sym_comment] = STATE(743), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT] = ACTIONS(2562), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(2564), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, - [787] = { - [aux_sym__pipe_separator] = STATE(798), - [sym_comment] = STATE(787), - [aux_sym_shebang_repeat1] = STATE(806), - [aux_sym_cmd_identifier_token1] = ACTIONS(2586), - [aux_sym_cmd_identifier_token2] = ACTIONS(2588), - [aux_sym_cmd_identifier_token3] = ACTIONS(2588), - [aux_sym_cmd_identifier_token4] = ACTIONS(2588), - [aux_sym_cmd_identifier_token5] = ACTIONS(2588), - [aux_sym_cmd_identifier_token6] = ACTIONS(2588), - [aux_sym_cmd_identifier_token7] = ACTIONS(2588), - [aux_sym_cmd_identifier_token8] = ACTIONS(2588), - [aux_sym_cmd_identifier_token9] = ACTIONS(2586), - [aux_sym_cmd_identifier_token10] = ACTIONS(2588), - [aux_sym_cmd_identifier_token11] = ACTIONS(2588), - [aux_sym_cmd_identifier_token12] = ACTIONS(2588), - [aux_sym_cmd_identifier_token13] = ACTIONS(2586), - [aux_sym_cmd_identifier_token14] = ACTIONS(2588), - [aux_sym_cmd_identifier_token15] = ACTIONS(2586), - [aux_sym_cmd_identifier_token16] = ACTIONS(2588), - [aux_sym_cmd_identifier_token17] = ACTIONS(2588), - [aux_sym_cmd_identifier_token18] = ACTIONS(2588), - [aux_sym_cmd_identifier_token19] = ACTIONS(2588), - [aux_sym_cmd_identifier_token20] = ACTIONS(2588), - [aux_sym_cmd_identifier_token21] = ACTIONS(2588), - [aux_sym_cmd_identifier_token22] = ACTIONS(2588), - [aux_sym_cmd_identifier_token23] = ACTIONS(2588), - [aux_sym_cmd_identifier_token24] = ACTIONS(2588), - [aux_sym_cmd_identifier_token25] = ACTIONS(2588), - [aux_sym_cmd_identifier_token26] = ACTIONS(2588), - [aux_sym_cmd_identifier_token27] = ACTIONS(2588), - [aux_sym_cmd_identifier_token28] = ACTIONS(2588), - [aux_sym_cmd_identifier_token29] = ACTIONS(2588), - [aux_sym_cmd_identifier_token30] = ACTIONS(2588), - [aux_sym_cmd_identifier_token31] = ACTIONS(2588), - [aux_sym_cmd_identifier_token32] = ACTIONS(2588), - [aux_sym_cmd_identifier_token33] = ACTIONS(2588), - [aux_sym_cmd_identifier_token34] = ACTIONS(2586), - [aux_sym_cmd_identifier_token35] = ACTIONS(2588), - [aux_sym_cmd_identifier_token36] = ACTIONS(2588), - [aux_sym_cmd_identifier_token37] = ACTIONS(2588), - [aux_sym_cmd_identifier_token38] = ACTIONS(2586), - [aux_sym_cmd_identifier_token39] = ACTIONS(2588), - [aux_sym_cmd_identifier_token40] = ACTIONS(2588), - [sym__newline] = ACTIONS(2590), - [anon_sym_PIPE] = ACTIONS(2592), - [anon_sym_err_GT_PIPE] = ACTIONS(2592), - [anon_sym_out_GT_PIPE] = ACTIONS(2592), - [anon_sym_e_GT_PIPE] = ACTIONS(2592), - [anon_sym_o_GT_PIPE] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2592), - [anon_sym_LBRACK] = ACTIONS(2588), - [anon_sym_LPAREN] = ACTIONS(2588), - [anon_sym_DOLLAR] = ACTIONS(2586), - [anon_sym_DASH2] = ACTIONS(2586), - [anon_sym_break] = ACTIONS(2586), - [anon_sym_continue] = ACTIONS(2586), - [anon_sym_do] = ACTIONS(2586), - [anon_sym_if] = ACTIONS(2586), - [anon_sym_match] = ACTIONS(2586), - [anon_sym_LBRACE] = ACTIONS(2588), - [anon_sym_DOT_DOT] = ACTIONS(2586), - [anon_sym_try] = ACTIONS(2586), - [anon_sym_return] = ACTIONS(2586), - [anon_sym_where] = ACTIONS(2588), - [aux_sym_expr_unary_token1] = ACTIONS(2588), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2588), - [anon_sym_DOT_DOT_LT] = ACTIONS(2588), - [anon_sym_null] = ACTIONS(2586), - [anon_sym_true] = ACTIONS(2586), - [anon_sym_false] = ACTIONS(2586), - [aux_sym__val_number_decimal_token1] = ACTIONS(2586), - [aux_sym__val_number_decimal_token2] = ACTIONS(2588), - [aux_sym__val_number_decimal_token3] = ACTIONS(2588), - [aux_sym__val_number_decimal_token4] = ACTIONS(2588), - [aux_sym__val_number_token1] = ACTIONS(2588), - [aux_sym__val_number_token2] = ACTIONS(2588), - [aux_sym__val_number_token3] = ACTIONS(2588), - [aux_sym__val_number_token4] = ACTIONS(2586), - [aux_sym__val_number_token5] = ACTIONS(2586), - [aux_sym__val_number_token6] = ACTIONS(2586), - [anon_sym_0b] = ACTIONS(2586), - [anon_sym_0o] = ACTIONS(2586), - [anon_sym_0x] = ACTIONS(2586), - [sym_val_date] = ACTIONS(2588), - [anon_sym_DQUOTE] = ACTIONS(2588), - [sym__str_single_quotes] = ACTIONS(2588), - [sym__str_back_ticks] = ACTIONS(2588), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2588), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2588), - [aux_sym_env_var_token1] = ACTIONS(2586), - [anon_sym_CARET] = ACTIONS(2588), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2588), - }, - [788] = { - [sym_comment] = STATE(788), - [anon_sym_STAR_STAR] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_SLASH] = ACTIONS(1484), - [anon_sym_mod] = ACTIONS(1486), - [anon_sym_SLASH_SLASH] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_bit_DASHshl] = ACTIONS(1486), - [anon_sym_bit_DASHshr] = ACTIONS(1486), - [anon_sym_EQ_TILDE] = ACTIONS(1486), - [anon_sym_BANG_TILDE] = ACTIONS(1486), - [anon_sym_bit_DASHand] = ACTIONS(1486), - [anon_sym_bit_DASHxor] = ACTIONS(1486), - [anon_sym_bit_DASHor] = ACTIONS(1486), - [anon_sym_and] = ACTIONS(1486), - [anon_sym_xor] = ACTIONS(1486), - [anon_sym_or] = ACTIONS(1486), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_not_DASHin] = ACTIONS(1486), - [anon_sym_has] = ACTIONS(1486), - [anon_sym_not_DASHhas] = ACTIONS(1486), - [anon_sym_starts_DASHwith] = ACTIONS(1486), - [anon_sym_ends_DASHwith] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(1486), - [anon_sym_BANG_EQ] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1486), - [aux_sym_cmd_identifier_token41] = ACTIONS(1484), - [sym__newline] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_err_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_GT_PIPE] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1484), - [anon_sym_RPAREN] = ACTIONS(1484), - [anon_sym_GT2] = ACTIONS(1484), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_in2] = ACTIONS(1484), - [anon_sym_STAR2] = ACTIONS(1484), - [anon_sym_and2] = ACTIONS(1484), - [anon_sym_xor2] = ACTIONS(1484), - [anon_sym_or2] = ACTIONS(1484), - [anon_sym_not_DASHin2] = ACTIONS(1484), - [anon_sym_has2] = ACTIONS(1484), - [anon_sym_not_DASHhas2] = ACTIONS(1484), - [anon_sym_starts_DASHwith2] = ACTIONS(1484), - [anon_sym_ends_DASHwith2] = ACTIONS(1484), - [anon_sym_EQ_EQ2] = ACTIONS(1484), - [anon_sym_BANG_EQ2] = ACTIONS(1484), - [anon_sym_LT2] = ACTIONS(1484), - [anon_sym_LT_EQ2] = ACTIONS(1484), - [anon_sym_GT_EQ2] = ACTIONS(1484), - [anon_sym_EQ_TILDE2] = ACTIONS(1484), - [anon_sym_BANG_TILDE2] = ACTIONS(1484), - [anon_sym_STAR_STAR2] = ACTIONS(1484), - [anon_sym_PLUS_PLUS2] = ACTIONS(1484), - [anon_sym_SLASH2] = ACTIONS(1484), - [anon_sym_mod2] = ACTIONS(1484), - [anon_sym_SLASH_SLASH2] = ACTIONS(1484), - [anon_sym_PLUS2] = ACTIONS(1484), - [anon_sym_bit_DASHshl2] = ACTIONS(1484), - [anon_sym_bit_DASHshr2] = ACTIONS(1484), - [anon_sym_bit_DASHand2] = ACTIONS(1484), - [anon_sym_bit_DASHxor2] = ACTIONS(1484), - [anon_sym_bit_DASHor2] = ACTIONS(1484), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [sym_filesize_unit] = ACTIONS(1484), - [sym_duration_unit] = ACTIONS(1486), - [anon_sym_err_GT] = ACTIONS(1484), - [anon_sym_out_GT] = ACTIONS(1484), - [anon_sym_e_GT] = ACTIONS(1484), - [anon_sym_o_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT] = ACTIONS(1484), - [anon_sym_err_GT_GT] = ACTIONS(1484), - [anon_sym_out_GT_GT] = ACTIONS(1484), - [anon_sym_e_GT_GT] = ACTIONS(1484), - [anon_sym_o_GT_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1484), + [744] = { + [sym_comment] = STATE(744), + [anon_sym_STAR_STAR] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_mod] = ACTIONS(1493), + [anon_sym_SLASH_SLASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_bit_DASHshl] = ACTIONS(1493), + [anon_sym_bit_DASHshr] = ACTIONS(1493), + [anon_sym_EQ_TILDE] = ACTIONS(1493), + [anon_sym_BANG_TILDE] = ACTIONS(1493), + [anon_sym_bit_DASHand] = ACTIONS(1493), + [anon_sym_bit_DASHxor] = ACTIONS(1493), + [anon_sym_bit_DASHor] = ACTIONS(1493), + [anon_sym_and] = ACTIONS(1493), + [anon_sym_xor] = ACTIONS(1493), + [anon_sym_or] = ACTIONS(1493), + [anon_sym_in] = ACTIONS(1493), + [anon_sym_not_DASHin] = ACTIONS(1493), + [anon_sym_has] = ACTIONS(1493), + [anon_sym_not_DASHhas] = ACTIONS(1493), + [anon_sym_starts_DASHwith] = ACTIONS(1493), + [anon_sym_ends_DASHwith] = ACTIONS(1493), + [anon_sym_EQ_EQ] = ACTIONS(1493), + [anon_sym_BANG_EQ] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1493), + [aux_sym_cmd_identifier_token41] = ACTIONS(1491), + [sym__newline] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_err_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_GT_PIPE] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1491), + [anon_sym_RPAREN] = ACTIONS(1491), + [anon_sym_GT2] = ACTIONS(1491), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_in2] = ACTIONS(1491), + [anon_sym_STAR2] = ACTIONS(1491), + [anon_sym_and2] = ACTIONS(1491), + [anon_sym_xor2] = ACTIONS(1491), + [anon_sym_or2] = ACTIONS(1491), + [anon_sym_not_DASHin2] = ACTIONS(1491), + [anon_sym_has2] = ACTIONS(1491), + [anon_sym_not_DASHhas2] = ACTIONS(1491), + [anon_sym_starts_DASHwith2] = ACTIONS(1491), + [anon_sym_ends_DASHwith2] = ACTIONS(1491), + [anon_sym_EQ_EQ2] = ACTIONS(1491), + [anon_sym_BANG_EQ2] = ACTIONS(1491), + [anon_sym_LT2] = ACTIONS(1491), + [anon_sym_LT_EQ2] = ACTIONS(1491), + [anon_sym_GT_EQ2] = ACTIONS(1491), + [anon_sym_EQ_TILDE2] = ACTIONS(1491), + [anon_sym_BANG_TILDE2] = ACTIONS(1491), + [anon_sym_STAR_STAR2] = ACTIONS(1491), + [anon_sym_PLUS_PLUS2] = ACTIONS(1491), + [anon_sym_SLASH2] = ACTIONS(1491), + [anon_sym_mod2] = ACTIONS(1491), + [anon_sym_SLASH_SLASH2] = ACTIONS(1491), + [anon_sym_PLUS2] = ACTIONS(1491), + [anon_sym_bit_DASHshl2] = ACTIONS(1491), + [anon_sym_bit_DASHshr2] = ACTIONS(1491), + [anon_sym_bit_DASHand2] = ACTIONS(1491), + [anon_sym_bit_DASHxor2] = ACTIONS(1491), + [anon_sym_bit_DASHor2] = ACTIONS(1491), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [sym_filesize_unit] = ACTIONS(1491), + [sym_duration_unit] = ACTIONS(1493), + [anon_sym_err_GT] = ACTIONS(1491), + [anon_sym_out_GT] = ACTIONS(1491), + [anon_sym_e_GT] = ACTIONS(1491), + [anon_sym_o_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT] = ACTIONS(1491), + [anon_sym_err_GT_GT] = ACTIONS(1491), + [anon_sym_out_GT_GT] = ACTIONS(1491), + [anon_sym_e_GT_GT] = ACTIONS(1491), + [anon_sym_o_GT_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1491), [anon_sym_POUND] = ACTIONS(3), }, - [789] = { - [sym_comment] = STATE(789), - [anon_sym_STAR_STAR] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_SLASH] = ACTIONS(1484), - [anon_sym_mod] = ACTIONS(1486), - [anon_sym_SLASH_SLASH] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_bit_DASHshl] = ACTIONS(1486), - [anon_sym_bit_DASHshr] = ACTIONS(1486), - [anon_sym_EQ_TILDE] = ACTIONS(1486), - [anon_sym_BANG_TILDE] = ACTIONS(1486), - [anon_sym_bit_DASHand] = ACTIONS(1486), - [anon_sym_bit_DASHxor] = ACTIONS(1486), - [anon_sym_bit_DASHor] = ACTIONS(1486), - [anon_sym_and] = ACTIONS(1486), - [anon_sym_xor] = ACTIONS(1486), - [anon_sym_or] = ACTIONS(1486), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_not_DASHin] = ACTIONS(1486), - [anon_sym_has] = ACTIONS(1486), - [anon_sym_not_DASHhas] = ACTIONS(1486), - [anon_sym_starts_DASHwith] = ACTIONS(1486), - [anon_sym_ends_DASHwith] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(1486), - [anon_sym_BANG_EQ] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1486), - [aux_sym_cmd_identifier_token41] = ACTIONS(1484), - [sym__newline] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_err_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_GT_PIPE] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1484), - [anon_sym_GT2] = ACTIONS(1484), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_in2] = ACTIONS(1484), - [anon_sym_STAR2] = ACTIONS(1484), - [anon_sym_and2] = ACTIONS(1484), - [anon_sym_xor2] = ACTIONS(1484), - [anon_sym_or2] = ACTIONS(1484), - [anon_sym_not_DASHin2] = ACTIONS(1484), - [anon_sym_has2] = ACTIONS(1484), - [anon_sym_not_DASHhas2] = ACTIONS(1484), - [anon_sym_starts_DASHwith2] = ACTIONS(1484), - [anon_sym_ends_DASHwith2] = ACTIONS(1484), - [anon_sym_EQ_EQ2] = ACTIONS(1484), - [anon_sym_BANG_EQ2] = ACTIONS(1484), - [anon_sym_LT2] = ACTIONS(1484), - [anon_sym_LT_EQ2] = ACTIONS(1484), - [anon_sym_GT_EQ2] = ACTIONS(1484), - [anon_sym_EQ_TILDE2] = ACTIONS(1484), - [anon_sym_BANG_TILDE2] = ACTIONS(1484), - [anon_sym_STAR_STAR2] = ACTIONS(1484), - [anon_sym_PLUS_PLUS2] = ACTIONS(1484), - [anon_sym_SLASH2] = ACTIONS(1484), - [anon_sym_mod2] = ACTIONS(1484), - [anon_sym_SLASH_SLASH2] = ACTIONS(1484), - [anon_sym_PLUS2] = ACTIONS(1484), - [anon_sym_bit_DASHshl2] = ACTIONS(1484), - [anon_sym_bit_DASHshr2] = ACTIONS(1484), - [anon_sym_bit_DASHand2] = ACTIONS(1484), - [anon_sym_bit_DASHxor2] = ACTIONS(1484), - [anon_sym_bit_DASHor2] = ACTIONS(1484), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [aux_sym__immediate_decimal_token1] = ACTIONS(2594), - [aux_sym__immediate_decimal_token2] = ACTIONS(2596), - [sym_filesize_unit] = ACTIONS(1484), - [sym_duration_unit] = ACTIONS(1486), - [anon_sym_err_GT] = ACTIONS(1484), - [anon_sym_out_GT] = ACTIONS(1484), - [anon_sym_e_GT] = ACTIONS(1484), - [anon_sym_o_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT] = ACTIONS(1484), - [anon_sym_err_GT_GT] = ACTIONS(1484), - [anon_sym_out_GT_GT] = ACTIONS(1484), - [anon_sym_e_GT_GT] = ACTIONS(1484), - [anon_sym_o_GT_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1484), + [745] = { + [sym_comment] = STATE(745), + [ts_builtin_sym_end] = ACTIONS(1493), + [anon_sym_STAR_STAR] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_mod] = ACTIONS(1493), + [anon_sym_SLASH_SLASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_bit_DASHshl] = ACTIONS(1493), + [anon_sym_bit_DASHshr] = ACTIONS(1493), + [anon_sym_EQ_TILDE] = ACTIONS(1493), + [anon_sym_BANG_TILDE] = ACTIONS(1493), + [anon_sym_bit_DASHand] = ACTIONS(1493), + [anon_sym_bit_DASHxor] = ACTIONS(1493), + [anon_sym_bit_DASHor] = ACTIONS(1493), + [anon_sym_and] = ACTIONS(1493), + [anon_sym_xor] = ACTIONS(1493), + [anon_sym_or] = ACTIONS(1493), + [anon_sym_in] = ACTIONS(1493), + [anon_sym_not_DASHin] = ACTIONS(1493), + [anon_sym_has] = ACTIONS(1493), + [anon_sym_not_DASHhas] = ACTIONS(1493), + [anon_sym_starts_DASHwith] = ACTIONS(1493), + [anon_sym_ends_DASHwith] = ACTIONS(1493), + [anon_sym_EQ_EQ] = ACTIONS(1493), + [anon_sym_BANG_EQ] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1493), + [aux_sym_cmd_identifier_token41] = ACTIONS(1491), + [sym__newline] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_err_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_GT_PIPE] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1491), + [anon_sym_GT2] = ACTIONS(1491), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_in2] = ACTIONS(1491), + [anon_sym_STAR2] = ACTIONS(1491), + [anon_sym_and2] = ACTIONS(1491), + [anon_sym_xor2] = ACTIONS(1491), + [anon_sym_or2] = ACTIONS(1491), + [anon_sym_not_DASHin2] = ACTIONS(1491), + [anon_sym_has2] = ACTIONS(1491), + [anon_sym_not_DASHhas2] = ACTIONS(1491), + [anon_sym_starts_DASHwith2] = ACTIONS(1491), + [anon_sym_ends_DASHwith2] = ACTIONS(1491), + [anon_sym_EQ_EQ2] = ACTIONS(1491), + [anon_sym_BANG_EQ2] = ACTIONS(1491), + [anon_sym_LT2] = ACTIONS(1491), + [anon_sym_LT_EQ2] = ACTIONS(1491), + [anon_sym_GT_EQ2] = ACTIONS(1491), + [anon_sym_EQ_TILDE2] = ACTIONS(1491), + [anon_sym_BANG_TILDE2] = ACTIONS(1491), + [anon_sym_STAR_STAR2] = ACTIONS(1491), + [anon_sym_PLUS_PLUS2] = ACTIONS(1491), + [anon_sym_SLASH2] = ACTIONS(1491), + [anon_sym_mod2] = ACTIONS(1491), + [anon_sym_SLASH_SLASH2] = ACTIONS(1491), + [anon_sym_PLUS2] = ACTIONS(1491), + [anon_sym_bit_DASHshl2] = ACTIONS(1491), + [anon_sym_bit_DASHshr2] = ACTIONS(1491), + [anon_sym_bit_DASHand2] = ACTIONS(1491), + [anon_sym_bit_DASHxor2] = ACTIONS(1491), + [anon_sym_bit_DASHor2] = ACTIONS(1491), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [sym_filesize_unit] = ACTIONS(1491), + [sym_duration_unit] = ACTIONS(1493), + [anon_sym_err_GT] = ACTIONS(1491), + [anon_sym_out_GT] = ACTIONS(1491), + [anon_sym_e_GT] = ACTIONS(1491), + [anon_sym_o_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT] = ACTIONS(1491), + [anon_sym_err_GT_GT] = ACTIONS(1491), + [anon_sym_out_GT_GT] = ACTIONS(1491), + [anon_sym_e_GT_GT] = ACTIONS(1491), + [anon_sym_o_GT_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1491), [anon_sym_POUND] = ACTIONS(3), }, - [790] = { - [sym__match_pattern_expression] = STATE(3193), - [sym__match_pattern_value] = STATE(3202), - [sym__match_pattern_list] = STATE(3203), - [sym__match_pattern_rest] = STATE(7662), - [sym__match_pattern_record] = STATE(3204), - [sym_expr_parenthesized] = STATE(2882), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(3144), - [sym__val_range] = STATE(7933), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(3145), - [sym_val_bool] = STATE(2955), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(2891), - [sym_val_number] = STATE(3145), - [sym__val_number_decimal] = STATE(2552), - [sym__val_number] = STATE(3148), - [sym_val_duration] = STATE(3145), - [sym_val_filesize] = STATE(3145), - [sym_val_binary] = STATE(3145), - [sym_val_string] = STATE(3145), - [sym__raw_str] = STATE(3140), - [sym__str_double_quotes] = STATE(3140), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7304), - [sym__spread_list] = STATE(7482), - [sym_list_body] = STATE(7679), - [sym_val_entry] = STATE(7220), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(3145), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(2964), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7280), - [sym_comment] = STATE(790), - [aux_sym_shebang_repeat1] = STATE(885), - [aux_sym_parameter_repeat2] = STATE(6754), - [aux_sym__match_pattern_list_repeat1] = STATE(1270), - [aux_sym_list_body_repeat1] = STATE(905), - [sym__newline] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(2600), - [anon_sym_RBRACK] = ACTIONS(2602), - [anon_sym_LPAREN] = ACTIONS(2604), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_DOLLAR] = ACTIONS(2608), - [anon_sym_LBRACE] = ACTIONS(2610), - [anon_sym_DOT_DOT] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2614), - [anon_sym_DOT_DOT_LT] = ACTIONS(2614), - [anon_sym_null] = ACTIONS(2616), - [anon_sym_true] = ACTIONS(2618), - [anon_sym_false] = ACTIONS(2618), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2620), - [aux_sym__val_number_decimal_token2] = ACTIONS(2622), - [aux_sym__val_number_decimal_token3] = ACTIONS(2624), - [aux_sym__val_number_decimal_token4] = ACTIONS(2626), - [aux_sym__val_number_token1] = ACTIONS(2628), - [aux_sym__val_number_token2] = ACTIONS(2628), - [aux_sym__val_number_token3] = ACTIONS(2628), - [aux_sym__val_number_token4] = ACTIONS(2630), - [aux_sym__val_number_token5] = ACTIONS(2630), - [aux_sym__val_number_token6] = ACTIONS(2630), - [anon_sym_0b] = ACTIONS(2632), - [anon_sym_0o] = ACTIONS(2634), - [anon_sym_0x] = ACTIONS(2634), - [sym_val_date] = ACTIONS(2636), - [anon_sym_DQUOTE] = ACTIONS(2638), - [sym__str_single_quotes] = ACTIONS(2640), - [sym__str_back_ticks] = ACTIONS(2640), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2652), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2654), - }, - [791] = { - [sym_comment] = STATE(791), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1492), - [anon_sym_out_GT_GT] = ACTIONS(1492), - [anon_sym_e_GT_GT] = ACTIONS(1492), - [anon_sym_o_GT_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [746] = { + [sym_comment] = STATE(746), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1581), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_bit_DASHshl] = ACTIONS(1581), + [anon_sym_bit_DASHshr] = ACTIONS(1581), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1581), + [anon_sym_bit_DASHxor] = ACTIONS(1581), + [anon_sym_bit_DASHor] = ACTIONS(1581), + [anon_sym_and] = ACTIONS(1581), + [anon_sym_xor] = ACTIONS(1581), + [anon_sym_or] = ACTIONS(1581), + [anon_sym_in] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1581), + [anon_sym_has] = ACTIONS(1581), + [anon_sym_not_DASHhas] = ACTIONS(1581), + [anon_sym_starts_DASHwith] = ACTIONS(1581), + [anon_sym_ends_DASHwith] = ACTIONS(1581), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1581), + [aux_sym_cmd_identifier_token41] = ACTIONS(1579), + [sym__newline] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_err_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_GT_PIPE] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), + [anon_sym_GT2] = ACTIONS(1579), + [anon_sym_DASH2] = ACTIONS(1579), + [anon_sym_in2] = ACTIONS(1579), + [anon_sym_STAR2] = ACTIONS(1579), + [anon_sym_and2] = ACTIONS(1579), + [anon_sym_xor2] = ACTIONS(1579), + [anon_sym_or2] = ACTIONS(1579), + [anon_sym_not_DASHin2] = ACTIONS(1579), + [anon_sym_has2] = ACTIONS(1579), + [anon_sym_not_DASHhas2] = ACTIONS(1579), + [anon_sym_starts_DASHwith2] = ACTIONS(1579), + [anon_sym_ends_DASHwith2] = ACTIONS(1579), + [anon_sym_EQ_EQ2] = ACTIONS(1579), + [anon_sym_BANG_EQ2] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ2] = ACTIONS(1579), + [anon_sym_GT_EQ2] = ACTIONS(1579), + [anon_sym_EQ_TILDE2] = ACTIONS(1579), + [anon_sym_BANG_TILDE2] = ACTIONS(1579), + [anon_sym_STAR_STAR2] = ACTIONS(1579), + [anon_sym_PLUS_PLUS2] = ACTIONS(1579), + [anon_sym_SLASH2] = ACTIONS(1579), + [anon_sym_mod2] = ACTIONS(1579), + [anon_sym_SLASH_SLASH2] = ACTIONS(1579), + [anon_sym_PLUS2] = ACTIONS(1579), + [anon_sym_bit_DASHshl2] = ACTIONS(1579), + [anon_sym_bit_DASHshr2] = ACTIONS(1579), + [anon_sym_bit_DASHand2] = ACTIONS(1579), + [anon_sym_bit_DASHxor2] = ACTIONS(1579), + [anon_sym_bit_DASHor2] = ACTIONS(1579), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [aux_sym__immediate_decimal_token2] = ACTIONS(2566), + [sym_filesize_unit] = ACTIONS(1579), + [sym_duration_unit] = ACTIONS(1581), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [anon_sym_err_GT_GT] = ACTIONS(1579), + [anon_sym_out_GT_GT] = ACTIONS(1579), + [anon_sym_e_GT_GT] = ACTIONS(1579), + [anon_sym_o_GT_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(3), }, - [792] = { - [sym_comment] = STATE(792), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1492), - [anon_sym_out_GT_GT] = ACTIONS(1492), - [anon_sym_e_GT_GT] = ACTIONS(1492), - [anon_sym_o_GT_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [747] = { + [sym_comment] = STATE(747), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1581), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_bit_DASHshl] = ACTIONS(1581), + [anon_sym_bit_DASHshr] = ACTIONS(1581), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1581), + [anon_sym_bit_DASHxor] = ACTIONS(1581), + [anon_sym_bit_DASHor] = ACTIONS(1581), + [anon_sym_and] = ACTIONS(1581), + [anon_sym_xor] = ACTIONS(1581), + [anon_sym_or] = ACTIONS(1581), + [anon_sym_in] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1581), + [anon_sym_has] = ACTIONS(1581), + [anon_sym_not_DASHhas] = ACTIONS(1581), + [anon_sym_starts_DASHwith] = ACTIONS(1581), + [anon_sym_ends_DASHwith] = ACTIONS(1581), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1581), + [aux_sym_cmd_identifier_token41] = ACTIONS(1579), + [sym__newline] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_err_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_GT_PIPE] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_GT2] = ACTIONS(1579), + [anon_sym_DASH2] = ACTIONS(1579), + [anon_sym_in2] = ACTIONS(1579), + [anon_sym_STAR2] = ACTIONS(1579), + [anon_sym_and2] = ACTIONS(1579), + [anon_sym_xor2] = ACTIONS(1579), + [anon_sym_or2] = ACTIONS(1579), + [anon_sym_not_DASHin2] = ACTIONS(1579), + [anon_sym_has2] = ACTIONS(1579), + [anon_sym_not_DASHhas2] = ACTIONS(1579), + [anon_sym_starts_DASHwith2] = ACTIONS(1579), + [anon_sym_ends_DASHwith2] = ACTIONS(1579), + [anon_sym_EQ_EQ2] = ACTIONS(1579), + [anon_sym_BANG_EQ2] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ2] = ACTIONS(1579), + [anon_sym_GT_EQ2] = ACTIONS(1579), + [anon_sym_EQ_TILDE2] = ACTIONS(1579), + [anon_sym_BANG_TILDE2] = ACTIONS(1579), + [anon_sym_STAR_STAR2] = ACTIONS(1579), + [anon_sym_PLUS_PLUS2] = ACTIONS(1579), + [anon_sym_SLASH2] = ACTIONS(1579), + [anon_sym_mod2] = ACTIONS(1579), + [anon_sym_SLASH_SLASH2] = ACTIONS(1579), + [anon_sym_PLUS2] = ACTIONS(1579), + [anon_sym_bit_DASHshl2] = ACTIONS(1579), + [anon_sym_bit_DASHshr2] = ACTIONS(1579), + [anon_sym_bit_DASHand2] = ACTIONS(1579), + [anon_sym_bit_DASHxor2] = ACTIONS(1579), + [anon_sym_bit_DASHor2] = ACTIONS(1579), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [sym_filesize_unit] = ACTIONS(1579), + [sym_duration_unit] = ACTIONS(1581), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [anon_sym_err_GT_GT] = ACTIONS(1579), + [anon_sym_out_GT_GT] = ACTIONS(1579), + [anon_sym_e_GT_GT] = ACTIONS(1579), + [anon_sym_o_GT_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(3), }, - [793] = { - [aux_sym__pipe_separator] = STATE(798), - [sym_comment] = STATE(793), - [aux_sym_shebang_repeat1] = STATE(5183), - [aux_sym_cmd_identifier_token1] = ACTIONS(2656), - [aux_sym_cmd_identifier_token2] = ACTIONS(2658), - [aux_sym_cmd_identifier_token3] = ACTIONS(2658), - [aux_sym_cmd_identifier_token4] = ACTIONS(2658), - [aux_sym_cmd_identifier_token5] = ACTIONS(2658), - [aux_sym_cmd_identifier_token6] = ACTIONS(2658), - [aux_sym_cmd_identifier_token7] = ACTIONS(2658), - [aux_sym_cmd_identifier_token8] = ACTIONS(2658), - [aux_sym_cmd_identifier_token9] = ACTIONS(2656), - [aux_sym_cmd_identifier_token10] = ACTIONS(2658), - [aux_sym_cmd_identifier_token11] = ACTIONS(2658), - [aux_sym_cmd_identifier_token12] = ACTIONS(2658), - [aux_sym_cmd_identifier_token13] = ACTIONS(2656), - [aux_sym_cmd_identifier_token14] = ACTIONS(2658), - [aux_sym_cmd_identifier_token15] = ACTIONS(2656), - [aux_sym_cmd_identifier_token16] = ACTIONS(2658), - [aux_sym_cmd_identifier_token17] = ACTIONS(2658), - [aux_sym_cmd_identifier_token18] = ACTIONS(2658), - [aux_sym_cmd_identifier_token19] = ACTIONS(2658), - [aux_sym_cmd_identifier_token20] = ACTIONS(2658), - [aux_sym_cmd_identifier_token21] = ACTIONS(2658), - [aux_sym_cmd_identifier_token22] = ACTIONS(2658), - [aux_sym_cmd_identifier_token23] = ACTIONS(2658), - [aux_sym_cmd_identifier_token24] = ACTIONS(2658), - [aux_sym_cmd_identifier_token25] = ACTIONS(2658), - [aux_sym_cmd_identifier_token26] = ACTIONS(2658), - [aux_sym_cmd_identifier_token27] = ACTIONS(2658), - [aux_sym_cmd_identifier_token28] = ACTIONS(2658), - [aux_sym_cmd_identifier_token29] = ACTIONS(2658), - [aux_sym_cmd_identifier_token30] = ACTIONS(2658), - [aux_sym_cmd_identifier_token31] = ACTIONS(2658), - [aux_sym_cmd_identifier_token32] = ACTIONS(2658), - [aux_sym_cmd_identifier_token33] = ACTIONS(2658), - [aux_sym_cmd_identifier_token34] = ACTIONS(2656), - [aux_sym_cmd_identifier_token35] = ACTIONS(2658), - [aux_sym_cmd_identifier_token36] = ACTIONS(2658), - [aux_sym_cmd_identifier_token37] = ACTIONS(2658), - [aux_sym_cmd_identifier_token38] = ACTIONS(2656), - [aux_sym_cmd_identifier_token39] = ACTIONS(2658), - [aux_sym_cmd_identifier_token40] = ACTIONS(2658), - [sym__newline] = ACTIONS(2660), - [anon_sym_PIPE] = ACTIONS(2592), - [anon_sym_err_GT_PIPE] = ACTIONS(2592), - [anon_sym_out_GT_PIPE] = ACTIONS(2592), - [anon_sym_e_GT_PIPE] = ACTIONS(2592), - [anon_sym_o_GT_PIPE] = ACTIONS(2592), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2592), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2592), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2592), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2592), - [anon_sym_LBRACK] = ACTIONS(2658), - [anon_sym_LPAREN] = ACTIONS(2658), - [anon_sym_DOLLAR] = ACTIONS(2656), - [anon_sym_DASH2] = ACTIONS(2656), - [anon_sym_break] = ACTIONS(2656), - [anon_sym_continue] = ACTIONS(2656), - [anon_sym_do] = ACTIONS(2656), - [anon_sym_if] = ACTIONS(2656), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_DOT_DOT] = ACTIONS(2656), - [anon_sym_try] = ACTIONS(2656), - [anon_sym_return] = ACTIONS(2656), - [anon_sym_where] = ACTIONS(2658), - [aux_sym_expr_unary_token1] = ACTIONS(2658), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2658), - [anon_sym_DOT_DOT_LT] = ACTIONS(2658), - [anon_sym_null] = ACTIONS(2656), - [anon_sym_true] = ACTIONS(2656), - [anon_sym_false] = ACTIONS(2656), - [aux_sym__val_number_decimal_token1] = ACTIONS(2656), - [aux_sym__val_number_decimal_token2] = ACTIONS(2658), - [aux_sym__val_number_decimal_token3] = ACTIONS(2658), - [aux_sym__val_number_decimal_token4] = ACTIONS(2658), - [aux_sym__val_number_token1] = ACTIONS(2658), - [aux_sym__val_number_token2] = ACTIONS(2658), - [aux_sym__val_number_token3] = ACTIONS(2658), - [aux_sym__val_number_token4] = ACTIONS(2656), - [aux_sym__val_number_token5] = ACTIONS(2656), - [aux_sym__val_number_token6] = ACTIONS(2656), - [anon_sym_0b] = ACTIONS(2656), - [anon_sym_0o] = ACTIONS(2656), - [anon_sym_0x] = ACTIONS(2656), - [sym_val_date] = ACTIONS(2658), - [anon_sym_DQUOTE] = ACTIONS(2658), - [sym__str_single_quotes] = ACTIONS(2658), - [sym__str_back_ticks] = ACTIONS(2658), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2658), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2658), - [aux_sym_env_var_token1] = ACTIONS(2656), - [anon_sym_CARET] = ACTIONS(2658), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2658), - }, - [794] = { - [sym_comment] = STATE(794), - [ts_builtin_sym_end] = ACTIONS(1494), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1492), - [anon_sym_out_GT_GT] = ACTIONS(1492), - [anon_sym_e_GT_GT] = ACTIONS(1492), - [anon_sym_o_GT_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [748] = { + [sym_comment] = STATE(748), + [anon_sym_STAR_STAR] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(2570), + [anon_sym_SLASH] = ACTIONS(2570), + [anon_sym_mod] = ACTIONS(2568), + [anon_sym_SLASH_SLASH] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_bit_DASHshl] = ACTIONS(2568), + [anon_sym_bit_DASHshr] = ACTIONS(2568), + [anon_sym_EQ_TILDE] = ACTIONS(2568), + [anon_sym_BANG_TILDE] = ACTIONS(2568), + [anon_sym_bit_DASHand] = ACTIONS(2568), + [anon_sym_bit_DASHxor] = ACTIONS(2568), + [anon_sym_bit_DASHor] = ACTIONS(2568), + [anon_sym_and] = ACTIONS(2568), + [anon_sym_xor] = ACTIONS(2568), + [anon_sym_or] = ACTIONS(2568), + [anon_sym_in] = ACTIONS(2568), + [anon_sym_not_DASHin] = ACTIONS(2568), + [anon_sym_has] = ACTIONS(2568), + [anon_sym_not_DASHhas] = ACTIONS(2568), + [anon_sym_starts_DASHwith] = ACTIONS(2568), + [anon_sym_ends_DASHwith] = ACTIONS(2568), + [anon_sym_EQ_EQ] = ACTIONS(2568), + [anon_sym_BANG_EQ] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_LT_EQ] = ACTIONS(2568), + [anon_sym_GT] = ACTIONS(2570), + [anon_sym_GT_EQ] = ACTIONS(2568), + [aux_sym_cmd_identifier_token41] = ACTIONS(2572), + [sym__newline] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1616), + [anon_sym_err_GT_PIPE] = ACTIONS(1616), + [anon_sym_out_GT_PIPE] = ACTIONS(1616), + [anon_sym_e_GT_PIPE] = ACTIONS(1616), + [anon_sym_o_GT_PIPE] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1616), + [anon_sym_RPAREN] = ACTIONS(1616), + [anon_sym_GT2] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_in2] = ACTIONS(1616), + [anon_sym_STAR2] = ACTIONS(1616), + [anon_sym_and2] = ACTIONS(1616), + [anon_sym_xor2] = ACTIONS(1616), + [anon_sym_or2] = ACTIONS(1616), + [anon_sym_not_DASHin2] = ACTIONS(1616), + [anon_sym_has2] = ACTIONS(1616), + [anon_sym_not_DASHhas2] = ACTIONS(1616), + [anon_sym_starts_DASHwith2] = ACTIONS(1616), + [anon_sym_ends_DASHwith2] = ACTIONS(1616), + [anon_sym_EQ_EQ2] = ACTIONS(1616), + [anon_sym_BANG_EQ2] = ACTIONS(1616), + [anon_sym_LT2] = ACTIONS(1616), + [anon_sym_LT_EQ2] = ACTIONS(1616), + [anon_sym_GT_EQ2] = ACTIONS(1616), + [anon_sym_EQ_TILDE2] = ACTIONS(1616), + [anon_sym_BANG_TILDE2] = ACTIONS(1616), + [anon_sym_STAR_STAR2] = ACTIONS(1616), + [anon_sym_PLUS_PLUS2] = ACTIONS(1616), + [anon_sym_SLASH2] = ACTIONS(1616), + [anon_sym_mod2] = ACTIONS(1616), + [anon_sym_SLASH_SLASH2] = ACTIONS(1616), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_bit_DASHshl2] = ACTIONS(1616), + [anon_sym_bit_DASHshr2] = ACTIONS(1616), + [anon_sym_bit_DASHand2] = ACTIONS(1616), + [anon_sym_bit_DASHxor2] = ACTIONS(1616), + [anon_sym_bit_DASHor2] = ACTIONS(1616), + [anon_sym_DOT_DOT2] = ACTIONS(2548), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2550), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2550), + [sym_filesize_unit] = ACTIONS(2574), + [sym_duration_unit] = ACTIONS(2576), + [anon_sym_err_GT] = ACTIONS(1616), + [anon_sym_out_GT] = ACTIONS(1616), + [anon_sym_e_GT] = ACTIONS(1616), + [anon_sym_o_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT] = ACTIONS(1616), + [anon_sym_err_GT_GT] = ACTIONS(1616), + [anon_sym_out_GT_GT] = ACTIONS(1616), + [anon_sym_e_GT_GT] = ACTIONS(1616), + [anon_sym_o_GT_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1616), [anon_sym_POUND] = ACTIONS(3), }, - [795] = { - [sym_comment] = STATE(795), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1540), - [anon_sym_SLASH_SLASH] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_bit_DASHshl] = ACTIONS(1540), - [anon_sym_bit_DASHshr] = ACTIONS(1540), - [anon_sym_EQ_TILDE] = ACTIONS(1540), - [anon_sym_BANG_TILDE] = ACTIONS(1540), - [anon_sym_bit_DASHand] = ACTIONS(1540), - [anon_sym_bit_DASHxor] = ACTIONS(1540), - [anon_sym_bit_DASHor] = ACTIONS(1540), - [anon_sym_and] = ACTIONS(1540), - [anon_sym_xor] = ACTIONS(1540), - [anon_sym_or] = ACTIONS(1540), - [anon_sym_in] = ACTIONS(1540), - [anon_sym_not_DASHin] = ACTIONS(1540), - [anon_sym_has] = ACTIONS(1540), - [anon_sym_not_DASHhas] = ACTIONS(1540), - [anon_sym_starts_DASHwith] = ACTIONS(1540), - [anon_sym_ends_DASHwith] = ACTIONS(1540), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1538), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1540), - [aux_sym_cmd_identifier_token41] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(1538), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_in2] = ACTIONS(1538), - [anon_sym_STAR2] = ACTIONS(1538), - [anon_sym_and2] = ACTIONS(1538), - [anon_sym_xor2] = ACTIONS(1538), - [anon_sym_or2] = ACTIONS(1538), - [anon_sym_not_DASHin2] = ACTIONS(1538), - [anon_sym_has2] = ACTIONS(1538), - [anon_sym_not_DASHhas2] = ACTIONS(1538), - [anon_sym_starts_DASHwith2] = ACTIONS(1538), - [anon_sym_ends_DASHwith2] = ACTIONS(1538), - [anon_sym_EQ_EQ2] = ACTIONS(1538), - [anon_sym_BANG_EQ2] = ACTIONS(1538), - [anon_sym_LT2] = ACTIONS(1538), - [anon_sym_LT_EQ2] = ACTIONS(1538), - [anon_sym_GT_EQ2] = ACTIONS(1538), - [anon_sym_EQ_TILDE2] = ACTIONS(1538), - [anon_sym_BANG_TILDE2] = ACTIONS(1538), - [anon_sym_STAR_STAR2] = ACTIONS(1538), - [anon_sym_PLUS_PLUS2] = ACTIONS(1538), - [anon_sym_SLASH2] = ACTIONS(1538), - [anon_sym_mod2] = ACTIONS(1538), - [anon_sym_SLASH_SLASH2] = ACTIONS(1538), - [anon_sym_PLUS2] = ACTIONS(1538), - [anon_sym_bit_DASHshl2] = ACTIONS(1538), - [anon_sym_bit_DASHshr2] = ACTIONS(1538), - [anon_sym_bit_DASHand2] = ACTIONS(1538), - [anon_sym_bit_DASHxor2] = ACTIONS(1538), - [anon_sym_bit_DASHor2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1540), - [anon_sym_err_GT] = ACTIONS(1538), - [anon_sym_out_GT] = ACTIONS(1538), - [anon_sym_e_GT] = ACTIONS(1538), - [anon_sym_o_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT] = ACTIONS(1538), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [749] = { + [sym_comment] = STATE(749), + [ts_builtin_sym_end] = ACTIONS(1628), + [anon_sym_STAR_STAR] = ACTIONS(2578), + [anon_sym_PLUS_PLUS] = ACTIONS(2578), + [anon_sym_STAR] = ACTIONS(2580), + [anon_sym_SLASH] = ACTIONS(2580), + [anon_sym_mod] = ACTIONS(2578), + [anon_sym_SLASH_SLASH] = ACTIONS(2578), + [anon_sym_PLUS] = ACTIONS(2580), + [anon_sym_DASH] = ACTIONS(2578), + [anon_sym_bit_DASHshl] = ACTIONS(2578), + [anon_sym_bit_DASHshr] = ACTIONS(2578), + [anon_sym_EQ_TILDE] = ACTIONS(2578), + [anon_sym_BANG_TILDE] = ACTIONS(2578), + [anon_sym_bit_DASHand] = ACTIONS(2578), + [anon_sym_bit_DASHxor] = ACTIONS(2578), + [anon_sym_bit_DASHor] = ACTIONS(2578), + [anon_sym_and] = ACTIONS(2578), + [anon_sym_xor] = ACTIONS(2578), + [anon_sym_or] = ACTIONS(2578), + [anon_sym_in] = ACTIONS(2578), + [anon_sym_not_DASHin] = ACTIONS(2578), + [anon_sym_has] = ACTIONS(2578), + [anon_sym_not_DASHhas] = ACTIONS(2578), + [anon_sym_starts_DASHwith] = ACTIONS(2578), + [anon_sym_ends_DASHwith] = ACTIONS(2578), + [anon_sym_EQ_EQ] = ACTIONS(2578), + [anon_sym_BANG_EQ] = ACTIONS(2578), + [anon_sym_LT] = ACTIONS(2580), + [anon_sym_LT_EQ] = ACTIONS(2578), + [anon_sym_GT] = ACTIONS(2580), + [anon_sym_GT_EQ] = ACTIONS(2578), + [aux_sym_cmd_identifier_token41] = ACTIONS(2582), + [sym__newline] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1616), + [anon_sym_err_GT_PIPE] = ACTIONS(1616), + [anon_sym_out_GT_PIPE] = ACTIONS(1616), + [anon_sym_e_GT_PIPE] = ACTIONS(1616), + [anon_sym_o_GT_PIPE] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1616), + [anon_sym_GT2] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_in2] = ACTIONS(1616), + [anon_sym_STAR2] = ACTIONS(1616), + [anon_sym_and2] = ACTIONS(1616), + [anon_sym_xor2] = ACTIONS(1616), + [anon_sym_or2] = ACTIONS(1616), + [anon_sym_not_DASHin2] = ACTIONS(1616), + [anon_sym_has2] = ACTIONS(1616), + [anon_sym_not_DASHhas2] = ACTIONS(1616), + [anon_sym_starts_DASHwith2] = ACTIONS(1616), + [anon_sym_ends_DASHwith2] = ACTIONS(1616), + [anon_sym_EQ_EQ2] = ACTIONS(1616), + [anon_sym_BANG_EQ2] = ACTIONS(1616), + [anon_sym_LT2] = ACTIONS(1616), + [anon_sym_LT_EQ2] = ACTIONS(1616), + [anon_sym_GT_EQ2] = ACTIONS(1616), + [anon_sym_EQ_TILDE2] = ACTIONS(1616), + [anon_sym_BANG_TILDE2] = ACTIONS(1616), + [anon_sym_STAR_STAR2] = ACTIONS(1616), + [anon_sym_PLUS_PLUS2] = ACTIONS(1616), + [anon_sym_SLASH2] = ACTIONS(1616), + [anon_sym_mod2] = ACTIONS(1616), + [anon_sym_SLASH_SLASH2] = ACTIONS(1616), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_bit_DASHshl2] = ACTIONS(1616), + [anon_sym_bit_DASHshr2] = ACTIONS(1616), + [anon_sym_bit_DASHand2] = ACTIONS(1616), + [anon_sym_bit_DASHxor2] = ACTIONS(1616), + [anon_sym_bit_DASHor2] = ACTIONS(1616), + [anon_sym_DOT_DOT2] = ACTIONS(2584), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2586), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2586), + [sym_filesize_unit] = ACTIONS(2588), + [sym_duration_unit] = ACTIONS(2590), + [anon_sym_err_GT] = ACTIONS(1616), + [anon_sym_out_GT] = ACTIONS(1616), + [anon_sym_e_GT] = ACTIONS(1616), + [anon_sym_o_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT] = ACTIONS(1616), + [anon_sym_err_GT_GT] = ACTIONS(1616), + [anon_sym_out_GT_GT] = ACTIONS(1616), + [anon_sym_e_GT_GT] = ACTIONS(1616), + [anon_sym_o_GT_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1616), [anon_sym_POUND] = ACTIONS(3), }, - [796] = { - [sym__match_pattern_expression] = STATE(3193), - [sym__match_pattern_value] = STATE(3202), - [sym__match_pattern_list] = STATE(3203), - [sym__match_pattern_rest] = STATE(7662), - [sym__match_pattern_record] = STATE(3204), - [sym_expr_parenthesized] = STATE(2882), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(3144), - [sym__val_range] = STATE(7933), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(3145), - [sym_val_bool] = STATE(2955), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(2891), - [sym_val_number] = STATE(3145), - [sym__val_number_decimal] = STATE(2552), - [sym__val_number] = STATE(3148), - [sym_val_duration] = STATE(3145), - [sym_val_filesize] = STATE(3145), - [sym_val_binary] = STATE(3145), - [sym_val_string] = STATE(3145), - [sym__raw_str] = STATE(3140), - [sym__str_double_quotes] = STATE(3140), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7326), - [sym__spread_list] = STATE(7482), - [sym_list_body] = STATE(7753), - [sym_val_entry] = STATE(7220), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(3145), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(2964), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7280), - [sym_comment] = STATE(796), - [aux_sym_shebang_repeat1] = STATE(888), - [aux_sym_parameter_repeat2] = STATE(6754), - [aux_sym__match_pattern_list_repeat1] = STATE(1270), - [aux_sym_list_body_repeat1] = STATE(905), - [sym__newline] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(2600), - [anon_sym_RBRACK] = ACTIONS(2662), - [anon_sym_LPAREN] = ACTIONS(2604), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_DOLLAR] = ACTIONS(2608), - [anon_sym_LBRACE] = ACTIONS(2610), - [anon_sym_DOT_DOT] = ACTIONS(2612), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2614), - [anon_sym_DOT_DOT_LT] = ACTIONS(2614), - [anon_sym_null] = ACTIONS(2616), - [anon_sym_true] = ACTIONS(2618), - [anon_sym_false] = ACTIONS(2618), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2620), - [aux_sym__val_number_decimal_token2] = ACTIONS(2622), - [aux_sym__val_number_decimal_token3] = ACTIONS(2624), - [aux_sym__val_number_decimal_token4] = ACTIONS(2626), - [aux_sym__val_number_token1] = ACTIONS(2628), - [aux_sym__val_number_token2] = ACTIONS(2628), - [aux_sym__val_number_token3] = ACTIONS(2628), - [aux_sym__val_number_token4] = ACTIONS(2630), - [aux_sym__val_number_token5] = ACTIONS(2630), - [aux_sym__val_number_token6] = ACTIONS(2630), - [anon_sym_0b] = ACTIONS(2632), - [anon_sym_0o] = ACTIONS(2634), - [anon_sym_0x] = ACTIONS(2634), - [sym_val_date] = ACTIONS(2636), - [anon_sym_DQUOTE] = ACTIONS(2638), - [sym__str_single_quotes] = ACTIONS(2640), - [sym__str_back_ticks] = ACTIONS(2640), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2652), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2654), + [750] = { + [aux_sym__pipe_separator] = STATE(750), + [sym_comment] = STATE(750), + [aux_sym_shebang_repeat1] = STATE(4916), + [aux_sym_cmd_identifier_token1] = ACTIONS(2592), + [aux_sym_cmd_identifier_token2] = ACTIONS(2594), + [aux_sym_cmd_identifier_token3] = ACTIONS(2594), + [aux_sym_cmd_identifier_token4] = ACTIONS(2594), + [aux_sym_cmd_identifier_token5] = ACTIONS(2594), + [aux_sym_cmd_identifier_token6] = ACTIONS(2594), + [aux_sym_cmd_identifier_token7] = ACTIONS(2594), + [aux_sym_cmd_identifier_token8] = ACTIONS(2594), + [aux_sym_cmd_identifier_token9] = ACTIONS(2592), + [aux_sym_cmd_identifier_token10] = ACTIONS(2594), + [aux_sym_cmd_identifier_token11] = ACTIONS(2594), + [aux_sym_cmd_identifier_token12] = ACTIONS(2594), + [aux_sym_cmd_identifier_token13] = ACTIONS(2592), + [aux_sym_cmd_identifier_token14] = ACTIONS(2594), + [aux_sym_cmd_identifier_token15] = ACTIONS(2592), + [aux_sym_cmd_identifier_token16] = ACTIONS(2594), + [aux_sym_cmd_identifier_token17] = ACTIONS(2594), + [aux_sym_cmd_identifier_token18] = ACTIONS(2594), + [aux_sym_cmd_identifier_token19] = ACTIONS(2594), + [aux_sym_cmd_identifier_token20] = ACTIONS(2594), + [aux_sym_cmd_identifier_token21] = ACTIONS(2594), + [aux_sym_cmd_identifier_token22] = ACTIONS(2594), + [aux_sym_cmd_identifier_token23] = ACTIONS(2594), + [aux_sym_cmd_identifier_token24] = ACTIONS(2594), + [aux_sym_cmd_identifier_token25] = ACTIONS(2594), + [aux_sym_cmd_identifier_token26] = ACTIONS(2594), + [aux_sym_cmd_identifier_token27] = ACTIONS(2594), + [aux_sym_cmd_identifier_token28] = ACTIONS(2594), + [aux_sym_cmd_identifier_token29] = ACTIONS(2594), + [aux_sym_cmd_identifier_token30] = ACTIONS(2594), + [aux_sym_cmd_identifier_token31] = ACTIONS(2594), + [aux_sym_cmd_identifier_token32] = ACTIONS(2594), + [aux_sym_cmd_identifier_token33] = ACTIONS(2594), + [aux_sym_cmd_identifier_token34] = ACTIONS(2592), + [aux_sym_cmd_identifier_token35] = ACTIONS(2594), + [aux_sym_cmd_identifier_token36] = ACTIONS(2594), + [aux_sym_cmd_identifier_token37] = ACTIONS(2594), + [aux_sym_cmd_identifier_token38] = ACTIONS(2592), + [aux_sym_cmd_identifier_token39] = ACTIONS(2594), + [aux_sym_cmd_identifier_token40] = ACTIONS(2594), + [sym__newline] = ACTIONS(2596), + [anon_sym_PIPE] = ACTIONS(2599), + [anon_sym_err_GT_PIPE] = ACTIONS(2599), + [anon_sym_out_GT_PIPE] = ACTIONS(2599), + [anon_sym_e_GT_PIPE] = ACTIONS(2599), + [anon_sym_o_GT_PIPE] = ACTIONS(2599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2599), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_DOLLAR] = ACTIONS(2592), + [anon_sym_DASH2] = ACTIONS(2592), + [anon_sym_break] = ACTIONS(2592), + [anon_sym_continue] = ACTIONS(2592), + [anon_sym_do] = ACTIONS(2592), + [anon_sym_if] = ACTIONS(2592), + [anon_sym_match] = ACTIONS(2592), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_DOT_DOT] = ACTIONS(2592), + [anon_sym_try] = ACTIONS(2592), + [anon_sym_return] = ACTIONS(2592), + [anon_sym_where] = ACTIONS(2594), + [aux_sym_expr_unary_token1] = ACTIONS(2594), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2594), + [anon_sym_DOT_DOT_LT] = ACTIONS(2594), + [anon_sym_null] = ACTIONS(2592), + [anon_sym_true] = ACTIONS(2592), + [anon_sym_false] = ACTIONS(2592), + [aux_sym__val_number_decimal_token1] = ACTIONS(2592), + [aux_sym__val_number_decimal_token2] = ACTIONS(2594), + [aux_sym__val_number_decimal_token3] = ACTIONS(2594), + [aux_sym__val_number_decimal_token4] = ACTIONS(2594), + [aux_sym__val_number_token1] = ACTIONS(2594), + [aux_sym__val_number_token2] = ACTIONS(2594), + [aux_sym__val_number_token3] = ACTIONS(2594), + [aux_sym__val_number_token4] = ACTIONS(2592), + [aux_sym__val_number_token5] = ACTIONS(2592), + [aux_sym__val_number_token6] = ACTIONS(2592), + [anon_sym_0b] = ACTIONS(2592), + [anon_sym_0o] = ACTIONS(2592), + [anon_sym_0x] = ACTIONS(2592), + [sym_val_date] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [sym__str_single_quotes] = ACTIONS(2594), + [sym__str_back_ticks] = ACTIONS(2594), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2594), + [aux_sym_env_var_token1] = ACTIONS(2592), + [anon_sym_CARET] = ACTIONS(2594), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2594), }, - [797] = { - [sym_comment] = STATE(797), - [ts_builtin_sym_end] = ACTIONS(1717), - [anon_sym_STAR_STAR] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_STAR] = ACTIONS(1715), - [anon_sym_SLASH] = ACTIONS(1715), - [anon_sym_mod] = ACTIONS(1717), - [anon_sym_SLASH_SLASH] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_bit_DASHshl] = ACTIONS(1717), - [anon_sym_bit_DASHshr] = ACTIONS(1717), - [anon_sym_EQ_TILDE] = ACTIONS(1717), - [anon_sym_BANG_TILDE] = ACTIONS(1717), - [anon_sym_bit_DASHand] = ACTIONS(1717), - [anon_sym_bit_DASHxor] = ACTIONS(1717), - [anon_sym_bit_DASHor] = ACTIONS(1717), - [anon_sym_and] = ACTIONS(1717), - [anon_sym_xor] = ACTIONS(1717), - [anon_sym_or] = ACTIONS(1717), - [anon_sym_in] = ACTIONS(1717), - [anon_sym_not_DASHin] = ACTIONS(1717), - [anon_sym_has] = ACTIONS(1717), - [anon_sym_not_DASHhas] = ACTIONS(1717), - [anon_sym_starts_DASHwith] = ACTIONS(1717), - [anon_sym_ends_DASHwith] = ACTIONS(1717), - [anon_sym_EQ_EQ] = ACTIONS(1717), - [anon_sym_BANG_EQ] = ACTIONS(1717), - [anon_sym_LT] = ACTIONS(1715), - [anon_sym_LT_EQ] = ACTIONS(1717), - [anon_sym_GT] = ACTIONS(1715), - [anon_sym_GT_EQ] = ACTIONS(1717), - [aux_sym_cmd_identifier_token41] = ACTIONS(1715), - [sym__newline] = ACTIONS(1715), - [anon_sym_SEMI] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_err_GT_PIPE] = ACTIONS(1715), - [anon_sym_out_GT_PIPE] = ACTIONS(1715), - [anon_sym_e_GT_PIPE] = ACTIONS(1715), - [anon_sym_o_GT_PIPE] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1715), - [anon_sym_GT2] = ACTIONS(1715), - [anon_sym_DASH2] = ACTIONS(1715), - [anon_sym_in2] = ACTIONS(1715), - [anon_sym_STAR2] = ACTIONS(1715), - [anon_sym_and2] = ACTIONS(1715), - [anon_sym_xor2] = ACTIONS(1715), - [anon_sym_or2] = ACTIONS(1715), - [anon_sym_not_DASHin2] = ACTIONS(1715), - [anon_sym_has2] = ACTIONS(1715), - [anon_sym_not_DASHhas2] = ACTIONS(1715), - [anon_sym_starts_DASHwith2] = ACTIONS(1715), - [anon_sym_ends_DASHwith2] = ACTIONS(1715), - [anon_sym_EQ_EQ2] = ACTIONS(1715), - [anon_sym_BANG_EQ2] = ACTIONS(1715), - [anon_sym_LT2] = ACTIONS(1715), - [anon_sym_LT_EQ2] = ACTIONS(1715), - [anon_sym_GT_EQ2] = ACTIONS(1715), - [anon_sym_EQ_TILDE2] = ACTIONS(1715), - [anon_sym_BANG_TILDE2] = ACTIONS(1715), - [anon_sym_STAR_STAR2] = ACTIONS(1715), - [anon_sym_PLUS_PLUS2] = ACTIONS(1715), - [anon_sym_SLASH2] = ACTIONS(1715), - [anon_sym_mod2] = ACTIONS(1715), - [anon_sym_SLASH_SLASH2] = ACTIONS(1715), - [anon_sym_PLUS2] = ACTIONS(1715), - [anon_sym_bit_DASHshl2] = ACTIONS(1715), - [anon_sym_bit_DASHshr2] = ACTIONS(1715), - [anon_sym_bit_DASHand2] = ACTIONS(1715), - [anon_sym_bit_DASHxor2] = ACTIONS(1715), - [anon_sym_bit_DASHor2] = ACTIONS(1715), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [sym_filesize_unit] = ACTIONS(1715), - [sym_duration_unit] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1715), - [anon_sym_out_GT_GT] = ACTIONS(1715), - [anon_sym_e_GT_GT] = ACTIONS(1715), - [anon_sym_o_GT_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1715), + [751] = { + [sym_comment] = STATE(751), + [anon_sym_STAR_STAR] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_mod] = ACTIONS(1493), + [anon_sym_SLASH_SLASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_bit_DASHshl] = ACTIONS(1493), + [anon_sym_bit_DASHshr] = ACTIONS(1493), + [anon_sym_EQ_TILDE] = ACTIONS(1493), + [anon_sym_BANG_TILDE] = ACTIONS(1493), + [anon_sym_bit_DASHand] = ACTIONS(1493), + [anon_sym_bit_DASHxor] = ACTIONS(1493), + [anon_sym_bit_DASHor] = ACTIONS(1493), + [anon_sym_and] = ACTIONS(1493), + [anon_sym_xor] = ACTIONS(1493), + [anon_sym_or] = ACTIONS(1493), + [anon_sym_in] = ACTIONS(1493), + [anon_sym_not_DASHin] = ACTIONS(1493), + [anon_sym_has] = ACTIONS(1493), + [anon_sym_not_DASHhas] = ACTIONS(1493), + [anon_sym_starts_DASHwith] = ACTIONS(1493), + [anon_sym_ends_DASHwith] = ACTIONS(1493), + [anon_sym_EQ_EQ] = ACTIONS(1493), + [anon_sym_BANG_EQ] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1493), + [aux_sym_cmd_identifier_token41] = ACTIONS(1491), + [sym__newline] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_err_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_GT_PIPE] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1491), + [anon_sym_GT2] = ACTIONS(1491), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_in2] = ACTIONS(1491), + [anon_sym_STAR2] = ACTIONS(1491), + [anon_sym_and2] = ACTIONS(1491), + [anon_sym_xor2] = ACTIONS(1491), + [anon_sym_or2] = ACTIONS(1491), + [anon_sym_not_DASHin2] = ACTIONS(1491), + [anon_sym_has2] = ACTIONS(1491), + [anon_sym_not_DASHhas2] = ACTIONS(1491), + [anon_sym_starts_DASHwith2] = ACTIONS(1491), + [anon_sym_ends_DASHwith2] = ACTIONS(1491), + [anon_sym_EQ_EQ2] = ACTIONS(1491), + [anon_sym_BANG_EQ2] = ACTIONS(1491), + [anon_sym_LT2] = ACTIONS(1491), + [anon_sym_LT_EQ2] = ACTIONS(1491), + [anon_sym_GT_EQ2] = ACTIONS(1491), + [anon_sym_EQ_TILDE2] = ACTIONS(1491), + [anon_sym_BANG_TILDE2] = ACTIONS(1491), + [anon_sym_STAR_STAR2] = ACTIONS(1491), + [anon_sym_PLUS_PLUS2] = ACTIONS(1491), + [anon_sym_SLASH2] = ACTIONS(1491), + [anon_sym_mod2] = ACTIONS(1491), + [anon_sym_SLASH_SLASH2] = ACTIONS(1491), + [anon_sym_PLUS2] = ACTIONS(1491), + [anon_sym_bit_DASHshl2] = ACTIONS(1491), + [anon_sym_bit_DASHshr2] = ACTIONS(1491), + [anon_sym_bit_DASHand2] = ACTIONS(1491), + [anon_sym_bit_DASHxor2] = ACTIONS(1491), + [anon_sym_bit_DASHor2] = ACTIONS(1491), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [aux_sym__immediate_decimal_token1] = ACTIONS(2602), + [aux_sym__immediate_decimal_token2] = ACTIONS(2604), + [sym_filesize_unit] = ACTIONS(1491), + [sym_duration_unit] = ACTIONS(1493), + [anon_sym_err_GT] = ACTIONS(1491), + [anon_sym_out_GT] = ACTIONS(1491), + [anon_sym_e_GT] = ACTIONS(1491), + [anon_sym_o_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT] = ACTIONS(1491), + [anon_sym_err_GT_GT] = ACTIONS(1491), + [anon_sym_out_GT_GT] = ACTIONS(1491), + [anon_sym_e_GT_GT] = ACTIONS(1491), + [anon_sym_o_GT_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1491), [anon_sym_POUND] = ACTIONS(3), }, - [798] = { - [aux_sym__pipe_separator] = STATE(798), - [sym_comment] = STATE(798), - [aux_sym_shebang_repeat1] = STATE(5183), - [aux_sym_cmd_identifier_token1] = ACTIONS(2664), - [aux_sym_cmd_identifier_token2] = ACTIONS(2666), - [aux_sym_cmd_identifier_token3] = ACTIONS(2666), - [aux_sym_cmd_identifier_token4] = ACTIONS(2666), - [aux_sym_cmd_identifier_token5] = ACTIONS(2666), - [aux_sym_cmd_identifier_token6] = ACTIONS(2666), - [aux_sym_cmd_identifier_token7] = ACTIONS(2666), - [aux_sym_cmd_identifier_token8] = ACTIONS(2666), - [aux_sym_cmd_identifier_token9] = ACTIONS(2664), - [aux_sym_cmd_identifier_token10] = ACTIONS(2666), - [aux_sym_cmd_identifier_token11] = ACTIONS(2666), - [aux_sym_cmd_identifier_token12] = ACTIONS(2666), - [aux_sym_cmd_identifier_token13] = ACTIONS(2664), - [aux_sym_cmd_identifier_token14] = ACTIONS(2666), - [aux_sym_cmd_identifier_token15] = ACTIONS(2664), - [aux_sym_cmd_identifier_token16] = ACTIONS(2666), - [aux_sym_cmd_identifier_token17] = ACTIONS(2666), - [aux_sym_cmd_identifier_token18] = ACTIONS(2666), - [aux_sym_cmd_identifier_token19] = ACTIONS(2666), - [aux_sym_cmd_identifier_token20] = ACTIONS(2666), - [aux_sym_cmd_identifier_token21] = ACTIONS(2666), - [aux_sym_cmd_identifier_token22] = ACTIONS(2666), - [aux_sym_cmd_identifier_token23] = ACTIONS(2666), - [aux_sym_cmd_identifier_token24] = ACTIONS(2666), - [aux_sym_cmd_identifier_token25] = ACTIONS(2666), - [aux_sym_cmd_identifier_token26] = ACTIONS(2666), - [aux_sym_cmd_identifier_token27] = ACTIONS(2666), - [aux_sym_cmd_identifier_token28] = ACTIONS(2666), - [aux_sym_cmd_identifier_token29] = ACTIONS(2666), - [aux_sym_cmd_identifier_token30] = ACTIONS(2666), - [aux_sym_cmd_identifier_token31] = ACTIONS(2666), - [aux_sym_cmd_identifier_token32] = ACTIONS(2666), - [aux_sym_cmd_identifier_token33] = ACTIONS(2666), - [aux_sym_cmd_identifier_token34] = ACTIONS(2664), - [aux_sym_cmd_identifier_token35] = ACTIONS(2666), - [aux_sym_cmd_identifier_token36] = ACTIONS(2666), - [aux_sym_cmd_identifier_token37] = ACTIONS(2666), - [aux_sym_cmd_identifier_token38] = ACTIONS(2664), - [aux_sym_cmd_identifier_token39] = ACTIONS(2666), - [aux_sym_cmd_identifier_token40] = ACTIONS(2666), - [sym__newline] = ACTIONS(2668), - [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(2666), - [anon_sym_LPAREN] = ACTIONS(2666), - [anon_sym_DOLLAR] = ACTIONS(2664), - [anon_sym_DASH2] = ACTIONS(2664), - [anon_sym_break] = ACTIONS(2664), - [anon_sym_continue] = ACTIONS(2664), - [anon_sym_do] = ACTIONS(2664), - [anon_sym_if] = ACTIONS(2664), - [anon_sym_match] = ACTIONS(2664), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_DOT_DOT] = ACTIONS(2664), - [anon_sym_try] = ACTIONS(2664), - [anon_sym_return] = ACTIONS(2664), - [anon_sym_where] = ACTIONS(2666), - [aux_sym_expr_unary_token1] = ACTIONS(2666), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2666), - [anon_sym_DOT_DOT_LT] = ACTIONS(2666), - [anon_sym_null] = ACTIONS(2664), - [anon_sym_true] = ACTIONS(2664), - [anon_sym_false] = ACTIONS(2664), - [aux_sym__val_number_decimal_token1] = ACTIONS(2664), - [aux_sym__val_number_decimal_token2] = ACTIONS(2666), - [aux_sym__val_number_decimal_token3] = ACTIONS(2666), - [aux_sym__val_number_decimal_token4] = ACTIONS(2666), - [aux_sym__val_number_token1] = ACTIONS(2666), - [aux_sym__val_number_token2] = ACTIONS(2666), - [aux_sym__val_number_token3] = ACTIONS(2666), - [aux_sym__val_number_token4] = ACTIONS(2664), - [aux_sym__val_number_token5] = ACTIONS(2664), - [aux_sym__val_number_token6] = ACTIONS(2664), - [anon_sym_0b] = ACTIONS(2664), - [anon_sym_0o] = ACTIONS(2664), - [anon_sym_0x] = ACTIONS(2664), - [sym_val_date] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [sym__str_single_quotes] = ACTIONS(2666), - [sym__str_back_ticks] = ACTIONS(2666), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2666), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2666), - [aux_sym_env_var_token1] = ACTIONS(2664), - [anon_sym_CARET] = ACTIONS(2666), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2666), - }, - [799] = { - [sym_comment] = STATE(799), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT] = ACTIONS(2674), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(2676), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1492), - [anon_sym_out_GT_GT] = ACTIONS(1492), - [anon_sym_e_GT_GT] = ACTIONS(1492), - [anon_sym_o_GT_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(3), + [752] = { + [aux_sym__pipe_separator] = STATE(750), + [sym_comment] = STATE(752), + [aux_sym_shebang_repeat1] = STATE(4916), + [aux_sym_cmd_identifier_token1] = ACTIONS(2606), + [aux_sym_cmd_identifier_token2] = ACTIONS(2608), + [aux_sym_cmd_identifier_token3] = ACTIONS(2608), + [aux_sym_cmd_identifier_token4] = ACTIONS(2608), + [aux_sym_cmd_identifier_token5] = ACTIONS(2608), + [aux_sym_cmd_identifier_token6] = ACTIONS(2608), + [aux_sym_cmd_identifier_token7] = ACTIONS(2608), + [aux_sym_cmd_identifier_token8] = ACTIONS(2608), + [aux_sym_cmd_identifier_token9] = ACTIONS(2606), + [aux_sym_cmd_identifier_token10] = ACTIONS(2608), + [aux_sym_cmd_identifier_token11] = ACTIONS(2608), + [aux_sym_cmd_identifier_token12] = ACTIONS(2608), + [aux_sym_cmd_identifier_token13] = ACTIONS(2606), + [aux_sym_cmd_identifier_token14] = ACTIONS(2608), + [aux_sym_cmd_identifier_token15] = ACTIONS(2606), + [aux_sym_cmd_identifier_token16] = ACTIONS(2608), + [aux_sym_cmd_identifier_token17] = ACTIONS(2608), + [aux_sym_cmd_identifier_token18] = ACTIONS(2608), + [aux_sym_cmd_identifier_token19] = ACTIONS(2608), + [aux_sym_cmd_identifier_token20] = ACTIONS(2608), + [aux_sym_cmd_identifier_token21] = ACTIONS(2608), + [aux_sym_cmd_identifier_token22] = ACTIONS(2608), + [aux_sym_cmd_identifier_token23] = ACTIONS(2608), + [aux_sym_cmd_identifier_token24] = ACTIONS(2608), + [aux_sym_cmd_identifier_token25] = ACTIONS(2608), + [aux_sym_cmd_identifier_token26] = ACTIONS(2608), + [aux_sym_cmd_identifier_token27] = ACTIONS(2608), + [aux_sym_cmd_identifier_token28] = ACTIONS(2608), + [aux_sym_cmd_identifier_token29] = ACTIONS(2608), + [aux_sym_cmd_identifier_token30] = ACTIONS(2608), + [aux_sym_cmd_identifier_token31] = ACTIONS(2608), + [aux_sym_cmd_identifier_token32] = ACTIONS(2608), + [aux_sym_cmd_identifier_token33] = ACTIONS(2608), + [aux_sym_cmd_identifier_token34] = ACTIONS(2606), + [aux_sym_cmd_identifier_token35] = ACTIONS(2608), + [aux_sym_cmd_identifier_token36] = ACTIONS(2608), + [aux_sym_cmd_identifier_token37] = ACTIONS(2608), + [aux_sym_cmd_identifier_token38] = ACTIONS(2606), + [aux_sym_cmd_identifier_token39] = ACTIONS(2608), + [aux_sym_cmd_identifier_token40] = ACTIONS(2608), + [sym__newline] = ACTIONS(2610), + [anon_sym_PIPE] = ACTIONS(2612), + [anon_sym_err_GT_PIPE] = ACTIONS(2612), + [anon_sym_out_GT_PIPE] = ACTIONS(2612), + [anon_sym_e_GT_PIPE] = ACTIONS(2612), + [anon_sym_o_GT_PIPE] = ACTIONS(2612), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2612), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2612), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2612), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2612), + [anon_sym_LBRACK] = ACTIONS(2608), + [anon_sym_LPAREN] = ACTIONS(2608), + [anon_sym_DOLLAR] = ACTIONS(2606), + [anon_sym_DASH2] = ACTIONS(2606), + [anon_sym_break] = ACTIONS(2606), + [anon_sym_continue] = ACTIONS(2606), + [anon_sym_do] = ACTIONS(2606), + [anon_sym_if] = ACTIONS(2606), + [anon_sym_match] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_DOT_DOT] = ACTIONS(2606), + [anon_sym_try] = ACTIONS(2606), + [anon_sym_return] = ACTIONS(2606), + [anon_sym_where] = ACTIONS(2608), + [aux_sym_expr_unary_token1] = ACTIONS(2608), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2608), + [anon_sym_DOT_DOT_LT] = ACTIONS(2608), + [anon_sym_null] = ACTIONS(2606), + [anon_sym_true] = ACTIONS(2606), + [anon_sym_false] = ACTIONS(2606), + [aux_sym__val_number_decimal_token1] = ACTIONS(2606), + [aux_sym__val_number_decimal_token2] = ACTIONS(2608), + [aux_sym__val_number_decimal_token3] = ACTIONS(2608), + [aux_sym__val_number_decimal_token4] = ACTIONS(2608), + [aux_sym__val_number_token1] = ACTIONS(2608), + [aux_sym__val_number_token2] = ACTIONS(2608), + [aux_sym__val_number_token3] = ACTIONS(2608), + [aux_sym__val_number_token4] = ACTIONS(2606), + [aux_sym__val_number_token5] = ACTIONS(2606), + [aux_sym__val_number_token6] = ACTIONS(2606), + [anon_sym_0b] = ACTIONS(2606), + [anon_sym_0o] = ACTIONS(2606), + [anon_sym_0x] = ACTIONS(2606), + [sym_val_date] = ACTIONS(2608), + [anon_sym_DQUOTE] = ACTIONS(2608), + [sym__str_single_quotes] = ACTIONS(2608), + [sym__str_back_ticks] = ACTIONS(2608), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2608), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2608), + [aux_sym_env_var_token1] = ACTIONS(2606), + [anon_sym_CARET] = ACTIONS(2608), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2608), }, - [800] = { - [sym_comment] = STATE(800), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1540), - [anon_sym_SLASH_SLASH] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_bit_DASHshl] = ACTIONS(1540), - [anon_sym_bit_DASHshr] = ACTIONS(1540), - [anon_sym_EQ_TILDE] = ACTIONS(1540), - [anon_sym_BANG_TILDE] = ACTIONS(1540), - [anon_sym_bit_DASHand] = ACTIONS(1540), - [anon_sym_bit_DASHxor] = ACTIONS(1540), - [anon_sym_bit_DASHor] = ACTIONS(1540), - [anon_sym_and] = ACTIONS(1540), - [anon_sym_xor] = ACTIONS(1540), - [anon_sym_or] = ACTIONS(1540), - [anon_sym_in] = ACTIONS(1540), - [anon_sym_not_DASHin] = ACTIONS(1540), - [anon_sym_has] = ACTIONS(1540), - [anon_sym_not_DASHhas] = ACTIONS(1540), - [anon_sym_starts_DASHwith] = ACTIONS(1540), - [anon_sym_ends_DASHwith] = ACTIONS(1540), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1538), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1540), - [aux_sym_cmd_identifier_token41] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(1538), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_in2] = ACTIONS(1538), - [anon_sym_STAR2] = ACTIONS(1538), - [anon_sym_and2] = ACTIONS(1538), - [anon_sym_xor2] = ACTIONS(1538), - [anon_sym_or2] = ACTIONS(1538), - [anon_sym_not_DASHin2] = ACTIONS(1538), - [anon_sym_has2] = ACTIONS(1538), - [anon_sym_not_DASHhas2] = ACTIONS(1538), - [anon_sym_starts_DASHwith2] = ACTIONS(1538), - [anon_sym_ends_DASHwith2] = ACTIONS(1538), - [anon_sym_EQ_EQ2] = ACTIONS(1538), - [anon_sym_BANG_EQ2] = ACTIONS(1538), - [anon_sym_LT2] = ACTIONS(1538), - [anon_sym_LT_EQ2] = ACTIONS(1538), - [anon_sym_GT_EQ2] = ACTIONS(1538), - [anon_sym_EQ_TILDE2] = ACTIONS(1538), - [anon_sym_BANG_TILDE2] = ACTIONS(1538), - [anon_sym_STAR_STAR2] = ACTIONS(1538), - [anon_sym_PLUS_PLUS2] = ACTIONS(1538), - [anon_sym_SLASH2] = ACTIONS(1538), - [anon_sym_mod2] = ACTIONS(1538), - [anon_sym_SLASH_SLASH2] = ACTIONS(1538), - [anon_sym_PLUS2] = ACTIONS(1538), - [anon_sym_bit_DASHshl2] = ACTIONS(1538), - [anon_sym_bit_DASHshr2] = ACTIONS(1538), - [anon_sym_bit_DASHand2] = ACTIONS(1538), - [anon_sym_bit_DASHxor2] = ACTIONS(1538), - [anon_sym_bit_DASHor2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [aux_sym__immediate_decimal_token2] = ACTIONS(2678), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1540), - [anon_sym_err_GT] = ACTIONS(1538), - [anon_sym_out_GT] = ACTIONS(1538), - [anon_sym_e_GT] = ACTIONS(1538), - [anon_sym_o_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT] = ACTIONS(1538), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [753] = { + [sym_comment] = STATE(753), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, - [801] = { - [sym_expr_parenthesized] = STATE(1560), - [sym_val_range] = STATE(1892), - [sym__val_range] = STATE(7821), - [sym__val_range_with_end] = STATE(7494), - [sym__value] = STATE(1892), - [sym_val_nothing] = STATE(1840), - [sym_val_bool] = STATE(1602), - [sym_val_variable] = STATE(1569), - [sym_val_number] = STATE(1840), - [sym__val_number_decimal] = STATE(1327), - [sym__val_number] = STATE(1971), - [sym_val_duration] = STATE(1840), - [sym_val_filesize] = STATE(1840), - [sym_val_binary] = STATE(1840), - [sym_val_string] = STATE(1840), - [sym__raw_str] = STATE(1896), - [sym__str_double_quotes] = STATE(1896), - [sym_val_interpolated] = STATE(1840), - [sym__inter_single_quotes] = STATE(1846), - [sym__inter_double_quotes] = STATE(1864), - [sym_val_list] = STATE(1840), - [sym_val_record] = STATE(1840), - [sym_val_table] = STATE(1840), - [sym_val_closure] = STATE(1840), - [sym__flag] = STATE(1892), - [sym_short_flag] = STATE(1895), - [sym_long_flag] = STATE(1895), - [sym_unquoted] = STATE(1621), - [sym__unquoted_with_expr] = STATE(1897), - [sym__unquoted_anonymous_prefix] = STATE(6783), - [sym_comment] = STATE(801), - [aux_sym_ctrl_do_repeat2] = STATE(812), - [sym__newline] = ACTIONS(2680), - [anon_sym_SEMI] = ACTIONS(2680), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_err_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_GT_PIPE] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2680), - [anon_sym_DOLLAR] = ACTIONS(2686), - [anon_sym_DASH_DASH] = ACTIONS(2688), - [anon_sym_DASH2] = ACTIONS(2690), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_RBRACE] = ACTIONS(2680), - [anon_sym_DOT_DOT] = ACTIONS(2694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2696), - [anon_sym_DOT_DOT_LT] = ACTIONS(2696), - [anon_sym_null] = ACTIONS(2698), - [anon_sym_true] = ACTIONS(2700), - [anon_sym_false] = ACTIONS(2700), - [aux_sym__val_number_decimal_token1] = ACTIONS(2702), - [aux_sym__val_number_decimal_token2] = ACTIONS(2704), - [aux_sym__val_number_decimal_token3] = ACTIONS(2706), - [aux_sym__val_number_decimal_token4] = ACTIONS(2708), - [aux_sym__val_number_token1] = ACTIONS(2710), - [aux_sym__val_number_token2] = ACTIONS(2710), - [aux_sym__val_number_token3] = ACTIONS(2710), - [aux_sym__val_number_token4] = ACTIONS(2712), - [aux_sym__val_number_token5] = ACTIONS(2712), - [aux_sym__val_number_token6] = ACTIONS(2712), - [anon_sym_0b] = ACTIONS(2714), - [anon_sym_0o] = ACTIONS(2716), - [anon_sym_0x] = ACTIONS(2716), - [sym_val_date] = ACTIONS(2718), - [anon_sym_DQUOTE] = ACTIONS(2720), - [sym__str_single_quotes] = ACTIONS(2722), - [sym__str_back_ticks] = ACTIONS(2722), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2726), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(2732), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2734), - }, - [802] = { - [sym_comment] = STATE(802), - [aux_sym_shebang_repeat1] = STATE(802), - [aux_sym_cmd_identifier_token1] = ACTIONS(1284), - [aux_sym_cmd_identifier_token2] = ACTIONS(1286), - [aux_sym_cmd_identifier_token3] = ACTIONS(1286), - [aux_sym_cmd_identifier_token4] = ACTIONS(1286), - [aux_sym_cmd_identifier_token5] = ACTIONS(1286), - [aux_sym_cmd_identifier_token6] = ACTIONS(1286), - [aux_sym_cmd_identifier_token7] = ACTIONS(1286), - [aux_sym_cmd_identifier_token8] = ACTIONS(1286), - [aux_sym_cmd_identifier_token9] = ACTIONS(1284), - [aux_sym_cmd_identifier_token10] = ACTIONS(1286), - [aux_sym_cmd_identifier_token11] = ACTIONS(1286), - [aux_sym_cmd_identifier_token12] = ACTIONS(1286), - [aux_sym_cmd_identifier_token13] = ACTIONS(1284), - [aux_sym_cmd_identifier_token14] = ACTIONS(1286), - [aux_sym_cmd_identifier_token15] = ACTIONS(1284), - [aux_sym_cmd_identifier_token16] = ACTIONS(1286), - [aux_sym_cmd_identifier_token17] = ACTIONS(1286), - [aux_sym_cmd_identifier_token18] = ACTIONS(1286), - [aux_sym_cmd_identifier_token19] = ACTIONS(1286), - [aux_sym_cmd_identifier_token20] = ACTIONS(1286), - [aux_sym_cmd_identifier_token21] = ACTIONS(1286), - [aux_sym_cmd_identifier_token22] = ACTIONS(1286), - [aux_sym_cmd_identifier_token23] = ACTIONS(1286), - [aux_sym_cmd_identifier_token24] = ACTIONS(1286), - [aux_sym_cmd_identifier_token25] = ACTIONS(1286), - [aux_sym_cmd_identifier_token26] = ACTIONS(1286), - [aux_sym_cmd_identifier_token27] = ACTIONS(1286), - [aux_sym_cmd_identifier_token28] = ACTIONS(1286), - [aux_sym_cmd_identifier_token29] = ACTIONS(1286), - [aux_sym_cmd_identifier_token30] = ACTIONS(1286), - [aux_sym_cmd_identifier_token31] = ACTIONS(1286), - [aux_sym_cmd_identifier_token32] = ACTIONS(1286), - [aux_sym_cmd_identifier_token33] = ACTIONS(1286), - [aux_sym_cmd_identifier_token34] = ACTIONS(1284), - [aux_sym_cmd_identifier_token35] = ACTIONS(1286), - [aux_sym_cmd_identifier_token36] = ACTIONS(1286), - [aux_sym_cmd_identifier_token37] = ACTIONS(1286), - [aux_sym_cmd_identifier_token38] = ACTIONS(1284), - [aux_sym_cmd_identifier_token39] = ACTIONS(1286), - [aux_sym_cmd_identifier_token40] = ACTIONS(1286), - [sym__newline] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(1286), - [anon_sym_err_GT_PIPE] = ACTIONS(1286), - [anon_sym_out_GT_PIPE] = ACTIONS(1286), - [anon_sym_e_GT_PIPE] = ACTIONS(1286), - [anon_sym_o_GT_PIPE] = ACTIONS(1286), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1286), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1286), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1286), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1286), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1284), - [anon_sym_DASH2] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_do] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_match] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_DOT_DOT] = ACTIONS(1284), - [anon_sym_try] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_where] = ACTIONS(1286), - [aux_sym_expr_unary_token1] = ACTIONS(1286), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1286), - [anon_sym_DOT_DOT_LT] = ACTIONS(1286), - [anon_sym_null] = ACTIONS(1284), - [anon_sym_true] = ACTIONS(1284), - [anon_sym_false] = ACTIONS(1284), - [aux_sym__val_number_decimal_token1] = ACTIONS(1284), - [aux_sym__val_number_decimal_token2] = ACTIONS(1286), - [aux_sym__val_number_decimal_token3] = ACTIONS(1286), - [aux_sym__val_number_decimal_token4] = ACTIONS(1286), - [aux_sym__val_number_token1] = ACTIONS(1286), - [aux_sym__val_number_token2] = ACTIONS(1286), - [aux_sym__val_number_token3] = ACTIONS(1286), - [aux_sym__val_number_token4] = ACTIONS(1284), - [aux_sym__val_number_token5] = ACTIONS(1284), - [aux_sym__val_number_token6] = ACTIONS(1284), - [anon_sym_0b] = ACTIONS(1284), - [anon_sym_0o] = ACTIONS(1284), - [anon_sym_0x] = ACTIONS(1284), - [sym_val_date] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1286), - [sym__str_back_ticks] = ACTIONS(1286), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1286), - [aux_sym_env_var_token1] = ACTIONS(1284), - [anon_sym_CARET] = ACTIONS(1286), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1286), - }, - [803] = { - [sym_comment] = STATE(803), - [anon_sym_STAR_STAR] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_STAR] = ACTIONS(1715), - [anon_sym_SLASH] = ACTIONS(1715), - [anon_sym_mod] = ACTIONS(1717), - [anon_sym_SLASH_SLASH] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_bit_DASHshl] = ACTIONS(1717), - [anon_sym_bit_DASHshr] = ACTIONS(1717), - [anon_sym_EQ_TILDE] = ACTIONS(1717), - [anon_sym_BANG_TILDE] = ACTIONS(1717), - [anon_sym_bit_DASHand] = ACTIONS(1717), - [anon_sym_bit_DASHxor] = ACTIONS(1717), - [anon_sym_bit_DASHor] = ACTIONS(1717), - [anon_sym_and] = ACTIONS(1717), - [anon_sym_xor] = ACTIONS(1717), - [anon_sym_or] = ACTIONS(1717), - [anon_sym_in] = ACTIONS(1717), - [anon_sym_not_DASHin] = ACTIONS(1717), - [anon_sym_has] = ACTIONS(1717), - [anon_sym_not_DASHhas] = ACTIONS(1717), - [anon_sym_starts_DASHwith] = ACTIONS(1717), - [anon_sym_ends_DASHwith] = ACTIONS(1717), - [anon_sym_EQ_EQ] = ACTIONS(1717), - [anon_sym_BANG_EQ] = ACTIONS(1717), - [anon_sym_LT] = ACTIONS(1715), - [anon_sym_LT_EQ] = ACTIONS(1717), - [anon_sym_GT] = ACTIONS(1715), - [anon_sym_GT_EQ] = ACTIONS(1717), - [aux_sym_cmd_identifier_token41] = ACTIONS(1715), - [sym__newline] = ACTIONS(1715), - [anon_sym_SEMI] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_err_GT_PIPE] = ACTIONS(1715), - [anon_sym_out_GT_PIPE] = ACTIONS(1715), - [anon_sym_e_GT_PIPE] = ACTIONS(1715), - [anon_sym_o_GT_PIPE] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1715), - [anon_sym_GT2] = ACTIONS(1715), - [anon_sym_DASH2] = ACTIONS(1715), - [anon_sym_in2] = ACTIONS(1715), - [anon_sym_STAR2] = ACTIONS(1715), - [anon_sym_and2] = ACTIONS(1715), - [anon_sym_xor2] = ACTIONS(1715), - [anon_sym_or2] = ACTIONS(1715), - [anon_sym_not_DASHin2] = ACTIONS(1715), - [anon_sym_has2] = ACTIONS(1715), - [anon_sym_not_DASHhas2] = ACTIONS(1715), - [anon_sym_starts_DASHwith2] = ACTIONS(1715), - [anon_sym_ends_DASHwith2] = ACTIONS(1715), - [anon_sym_EQ_EQ2] = ACTIONS(1715), - [anon_sym_BANG_EQ2] = ACTIONS(1715), - [anon_sym_LT2] = ACTIONS(1715), - [anon_sym_LT_EQ2] = ACTIONS(1715), - [anon_sym_GT_EQ2] = ACTIONS(1715), - [anon_sym_EQ_TILDE2] = ACTIONS(1715), - [anon_sym_BANG_TILDE2] = ACTIONS(1715), - [anon_sym_STAR_STAR2] = ACTIONS(1715), - [anon_sym_PLUS_PLUS2] = ACTIONS(1715), - [anon_sym_SLASH2] = ACTIONS(1715), - [anon_sym_mod2] = ACTIONS(1715), - [anon_sym_SLASH_SLASH2] = ACTIONS(1715), - [anon_sym_PLUS2] = ACTIONS(1715), - [anon_sym_bit_DASHshl2] = ACTIONS(1715), - [anon_sym_bit_DASHshr2] = ACTIONS(1715), - [anon_sym_bit_DASHand2] = ACTIONS(1715), - [anon_sym_bit_DASHxor2] = ACTIONS(1715), - [anon_sym_bit_DASHor2] = ACTIONS(1715), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [sym_filesize_unit] = ACTIONS(1715), - [sym_duration_unit] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1715), - [anon_sym_out_GT_GT] = ACTIONS(1715), - [anon_sym_e_GT_GT] = ACTIONS(1715), - [anon_sym_o_GT_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1715), + [754] = { + [sym_comment] = STATE(754), + [anon_sym_STAR_STAR] = ACTIONS(1680), + [anon_sym_PLUS_PLUS] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_SLASH] = ACTIONS(1678), + [anon_sym_mod] = ACTIONS(1680), + [anon_sym_SLASH_SLASH] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1680), + [anon_sym_bit_DASHshl] = ACTIONS(1680), + [anon_sym_bit_DASHshr] = ACTIONS(1680), + [anon_sym_EQ_TILDE] = ACTIONS(1680), + [anon_sym_BANG_TILDE] = ACTIONS(1680), + [anon_sym_bit_DASHand] = ACTIONS(1680), + [anon_sym_bit_DASHxor] = ACTIONS(1680), + [anon_sym_bit_DASHor] = ACTIONS(1680), + [anon_sym_and] = ACTIONS(1680), + [anon_sym_xor] = ACTIONS(1680), + [anon_sym_or] = ACTIONS(1680), + [anon_sym_in] = ACTIONS(1680), + [anon_sym_not_DASHin] = ACTIONS(1680), + [anon_sym_has] = ACTIONS(1680), + [anon_sym_not_DASHhas] = ACTIONS(1680), + [anon_sym_starts_DASHwith] = ACTIONS(1680), + [anon_sym_ends_DASHwith] = ACTIONS(1680), + [anon_sym_EQ_EQ] = ACTIONS(1680), + [anon_sym_BANG_EQ] = ACTIONS(1680), + [anon_sym_LT] = ACTIONS(1678), + [anon_sym_LT_EQ] = ACTIONS(1680), + [anon_sym_GT] = ACTIONS(1678), + [anon_sym_GT_EQ] = ACTIONS(1680), + [aux_sym_cmd_identifier_token41] = ACTIONS(1678), + [sym__newline] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_PIPE] = ACTIONS(1678), + [anon_sym_err_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_GT_PIPE] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1678), + [anon_sym_RPAREN] = ACTIONS(1678), + [anon_sym_GT2] = ACTIONS(1678), + [anon_sym_DASH2] = ACTIONS(1678), + [anon_sym_in2] = ACTIONS(1678), + [anon_sym_STAR2] = ACTIONS(1678), + [anon_sym_and2] = ACTIONS(1678), + [anon_sym_xor2] = ACTIONS(1678), + [anon_sym_or2] = ACTIONS(1678), + [anon_sym_not_DASHin2] = ACTIONS(1678), + [anon_sym_has2] = ACTIONS(1678), + [anon_sym_not_DASHhas2] = ACTIONS(1678), + [anon_sym_starts_DASHwith2] = ACTIONS(1678), + [anon_sym_ends_DASHwith2] = ACTIONS(1678), + [anon_sym_EQ_EQ2] = ACTIONS(1678), + [anon_sym_BANG_EQ2] = ACTIONS(1678), + [anon_sym_LT2] = ACTIONS(1678), + [anon_sym_LT_EQ2] = ACTIONS(1678), + [anon_sym_GT_EQ2] = ACTIONS(1678), + [anon_sym_EQ_TILDE2] = ACTIONS(1678), + [anon_sym_BANG_TILDE2] = ACTIONS(1678), + [anon_sym_STAR_STAR2] = ACTIONS(1678), + [anon_sym_PLUS_PLUS2] = ACTIONS(1678), + [anon_sym_SLASH2] = ACTIONS(1678), + [anon_sym_mod2] = ACTIONS(1678), + [anon_sym_SLASH_SLASH2] = ACTIONS(1678), + [anon_sym_PLUS2] = ACTIONS(1678), + [anon_sym_bit_DASHshl2] = ACTIONS(1678), + [anon_sym_bit_DASHshr2] = ACTIONS(1678), + [anon_sym_bit_DASHand2] = ACTIONS(1678), + [anon_sym_bit_DASHxor2] = ACTIONS(1678), + [anon_sym_bit_DASHor2] = ACTIONS(1678), + [anon_sym_DOT_DOT2] = ACTIONS(1678), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1680), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1680), + [sym_filesize_unit] = ACTIONS(1678), + [sym_duration_unit] = ACTIONS(1680), + [anon_sym_err_GT] = ACTIONS(1678), + [anon_sym_out_GT] = ACTIONS(1678), + [anon_sym_e_GT] = ACTIONS(1678), + [anon_sym_o_GT] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT] = ACTIONS(1678), + [anon_sym_err_GT_GT] = ACTIONS(1678), + [anon_sym_out_GT_GT] = ACTIONS(1678), + [anon_sym_e_GT_GT] = ACTIONS(1678), + [anon_sym_o_GT_GT] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1678), [anon_sym_POUND] = ACTIONS(3), }, - [804] = { - [sym_expr_parenthesized] = STATE(1560), - [sym_val_range] = STATE(1892), - [sym__val_range] = STATE(7821), - [sym__val_range_with_end] = STATE(7494), - [sym__value] = STATE(1892), - [sym_val_nothing] = STATE(1840), - [sym_val_bool] = STATE(1602), - [sym_val_variable] = STATE(1569), - [sym_val_number] = STATE(1840), - [sym__val_number_decimal] = STATE(1327), - [sym__val_number] = STATE(1971), - [sym_val_duration] = STATE(1840), - [sym_val_filesize] = STATE(1840), - [sym_val_binary] = STATE(1840), - [sym_val_string] = STATE(1840), - [sym__raw_str] = STATE(1896), - [sym__str_double_quotes] = STATE(1896), - [sym_val_interpolated] = STATE(1840), - [sym__inter_single_quotes] = STATE(1846), - [sym__inter_double_quotes] = STATE(1864), - [sym_val_list] = STATE(1840), - [sym_val_record] = STATE(1840), - [sym_val_table] = STATE(1840), - [sym_val_closure] = STATE(1840), - [sym__flag] = STATE(1892), - [sym_short_flag] = STATE(1895), - [sym_long_flag] = STATE(1895), - [sym_unquoted] = STATE(1621), - [sym__unquoted_with_expr] = STATE(1897), - [sym__unquoted_anonymous_prefix] = STATE(6783), - [sym_comment] = STATE(804), - [aux_sym_ctrl_do_repeat2] = STATE(804), - [sym__newline] = ACTIONS(2739), - [anon_sym_SEMI] = ACTIONS(2739), - [anon_sym_PIPE] = ACTIONS(2739), - [anon_sym_err_GT_PIPE] = ACTIONS(2739), - [anon_sym_out_GT_PIPE] = ACTIONS(2739), - [anon_sym_e_GT_PIPE] = ACTIONS(2739), - [anon_sym_o_GT_PIPE] = ACTIONS(2739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2739), - [anon_sym_LBRACK] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2739), - [anon_sym_DOLLAR] = ACTIONS(2747), - [anon_sym_DASH_DASH] = ACTIONS(2750), - [anon_sym_DASH2] = ACTIONS(2753), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(2739), - [anon_sym_DOT_DOT] = ACTIONS(2759), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2762), - [anon_sym_DOT_DOT_LT] = ACTIONS(2762), - [anon_sym_null] = ACTIONS(2765), - [anon_sym_true] = ACTIONS(2768), - [anon_sym_false] = ACTIONS(2768), - [aux_sym__val_number_decimal_token1] = ACTIONS(2771), - [aux_sym__val_number_decimal_token2] = ACTIONS(2774), - [aux_sym__val_number_decimal_token3] = ACTIONS(2777), - [aux_sym__val_number_decimal_token4] = ACTIONS(2780), - [aux_sym__val_number_token1] = ACTIONS(2783), - [aux_sym__val_number_token2] = ACTIONS(2783), - [aux_sym__val_number_token3] = ACTIONS(2783), - [aux_sym__val_number_token4] = ACTIONS(2786), - [aux_sym__val_number_token5] = ACTIONS(2786), - [aux_sym__val_number_token6] = ACTIONS(2786), - [anon_sym_0b] = ACTIONS(2789), - [anon_sym_0o] = ACTIONS(2792), - [anon_sym_0x] = ACTIONS(2792), - [sym_val_date] = ACTIONS(2795), - [anon_sym_DQUOTE] = ACTIONS(2798), - [sym__str_single_quotes] = ACTIONS(2801), - [sym__str_back_ticks] = ACTIONS(2801), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2804), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2807), - [anon_sym_err_GT] = ACTIONS(2810), - [anon_sym_out_GT] = ACTIONS(2810), - [anon_sym_e_GT] = ACTIONS(2810), - [anon_sym_o_GT] = ACTIONS(2810), - [anon_sym_err_PLUSout_GT] = ACTIONS(2810), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2810), - [anon_sym_o_PLUSe_GT] = ACTIONS(2810), - [anon_sym_e_PLUSo_GT] = ACTIONS(2810), - [anon_sym_err_GT_GT] = ACTIONS(2813), - [anon_sym_out_GT_GT] = ACTIONS(2813), - [anon_sym_e_GT_GT] = ACTIONS(2813), - [anon_sym_o_GT_GT] = ACTIONS(2813), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2813), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2813), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2813), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2813), - [aux_sym_unquoted_token1] = ACTIONS(2816), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2819), - }, - [805] = { - [sym_comment] = STATE(805), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1492), - [anon_sym_out_GT_GT] = ACTIONS(1492), - [anon_sym_e_GT_GT] = ACTIONS(1492), - [anon_sym_o_GT_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [755] = { + [sym_comment] = STATE(755), + [ts_builtin_sym_end] = ACTIONS(1680), + [anon_sym_STAR_STAR] = ACTIONS(1680), + [anon_sym_PLUS_PLUS] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_SLASH] = ACTIONS(1678), + [anon_sym_mod] = ACTIONS(1680), + [anon_sym_SLASH_SLASH] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1680), + [anon_sym_bit_DASHshl] = ACTIONS(1680), + [anon_sym_bit_DASHshr] = ACTIONS(1680), + [anon_sym_EQ_TILDE] = ACTIONS(1680), + [anon_sym_BANG_TILDE] = ACTIONS(1680), + [anon_sym_bit_DASHand] = ACTIONS(1680), + [anon_sym_bit_DASHxor] = ACTIONS(1680), + [anon_sym_bit_DASHor] = ACTIONS(1680), + [anon_sym_and] = ACTIONS(1680), + [anon_sym_xor] = ACTIONS(1680), + [anon_sym_or] = ACTIONS(1680), + [anon_sym_in] = ACTIONS(1680), + [anon_sym_not_DASHin] = ACTIONS(1680), + [anon_sym_has] = ACTIONS(1680), + [anon_sym_not_DASHhas] = ACTIONS(1680), + [anon_sym_starts_DASHwith] = ACTIONS(1680), + [anon_sym_ends_DASHwith] = ACTIONS(1680), + [anon_sym_EQ_EQ] = ACTIONS(1680), + [anon_sym_BANG_EQ] = ACTIONS(1680), + [anon_sym_LT] = ACTIONS(1678), + [anon_sym_LT_EQ] = ACTIONS(1680), + [anon_sym_GT] = ACTIONS(1678), + [anon_sym_GT_EQ] = ACTIONS(1680), + [aux_sym_cmd_identifier_token41] = ACTIONS(1678), + [sym__newline] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_PIPE] = ACTIONS(1678), + [anon_sym_err_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_GT_PIPE] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1678), + [anon_sym_GT2] = ACTIONS(1678), + [anon_sym_DASH2] = ACTIONS(1678), + [anon_sym_in2] = ACTIONS(1678), + [anon_sym_STAR2] = ACTIONS(1678), + [anon_sym_and2] = ACTIONS(1678), + [anon_sym_xor2] = ACTIONS(1678), + [anon_sym_or2] = ACTIONS(1678), + [anon_sym_not_DASHin2] = ACTIONS(1678), + [anon_sym_has2] = ACTIONS(1678), + [anon_sym_not_DASHhas2] = ACTIONS(1678), + [anon_sym_starts_DASHwith2] = ACTIONS(1678), + [anon_sym_ends_DASHwith2] = ACTIONS(1678), + [anon_sym_EQ_EQ2] = ACTIONS(1678), + [anon_sym_BANG_EQ2] = ACTIONS(1678), + [anon_sym_LT2] = ACTIONS(1678), + [anon_sym_LT_EQ2] = ACTIONS(1678), + [anon_sym_GT_EQ2] = ACTIONS(1678), + [anon_sym_EQ_TILDE2] = ACTIONS(1678), + [anon_sym_BANG_TILDE2] = ACTIONS(1678), + [anon_sym_STAR_STAR2] = ACTIONS(1678), + [anon_sym_PLUS_PLUS2] = ACTIONS(1678), + [anon_sym_SLASH2] = ACTIONS(1678), + [anon_sym_mod2] = ACTIONS(1678), + [anon_sym_SLASH_SLASH2] = ACTIONS(1678), + [anon_sym_PLUS2] = ACTIONS(1678), + [anon_sym_bit_DASHshl2] = ACTIONS(1678), + [anon_sym_bit_DASHshr2] = ACTIONS(1678), + [anon_sym_bit_DASHand2] = ACTIONS(1678), + [anon_sym_bit_DASHxor2] = ACTIONS(1678), + [anon_sym_bit_DASHor2] = ACTIONS(1678), + [anon_sym_DOT_DOT2] = ACTIONS(1678), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1680), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1680), + [sym_filesize_unit] = ACTIONS(1678), + [sym_duration_unit] = ACTIONS(1680), + [anon_sym_err_GT] = ACTIONS(1678), + [anon_sym_out_GT] = ACTIONS(1678), + [anon_sym_e_GT] = ACTIONS(1678), + [anon_sym_o_GT] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT] = ACTIONS(1678), + [anon_sym_err_GT_GT] = ACTIONS(1678), + [anon_sym_out_GT_GT] = ACTIONS(1678), + [anon_sym_e_GT_GT] = ACTIONS(1678), + [anon_sym_o_GT_GT] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1678), [anon_sym_POUND] = ACTIONS(3), }, - [806] = { - [sym_comment] = STATE(806), - [aux_sym_shebang_repeat1] = STATE(802), - [aux_sym_cmd_identifier_token1] = ACTIONS(2822), - [aux_sym_cmd_identifier_token2] = ACTIONS(2824), - [aux_sym_cmd_identifier_token3] = ACTIONS(2824), - [aux_sym_cmd_identifier_token4] = ACTIONS(2824), - [aux_sym_cmd_identifier_token5] = ACTIONS(2824), - [aux_sym_cmd_identifier_token6] = ACTIONS(2824), - [aux_sym_cmd_identifier_token7] = ACTIONS(2824), - [aux_sym_cmd_identifier_token8] = ACTIONS(2824), - [aux_sym_cmd_identifier_token9] = ACTIONS(2822), - [aux_sym_cmd_identifier_token10] = ACTIONS(2824), - [aux_sym_cmd_identifier_token11] = ACTIONS(2824), - [aux_sym_cmd_identifier_token12] = ACTIONS(2824), - [aux_sym_cmd_identifier_token13] = ACTIONS(2822), - [aux_sym_cmd_identifier_token14] = ACTIONS(2824), - [aux_sym_cmd_identifier_token15] = ACTIONS(2822), - [aux_sym_cmd_identifier_token16] = ACTIONS(2824), - [aux_sym_cmd_identifier_token17] = ACTIONS(2824), - [aux_sym_cmd_identifier_token18] = ACTIONS(2824), - [aux_sym_cmd_identifier_token19] = ACTIONS(2824), - [aux_sym_cmd_identifier_token20] = ACTIONS(2824), - [aux_sym_cmd_identifier_token21] = ACTIONS(2824), - [aux_sym_cmd_identifier_token22] = ACTIONS(2824), - [aux_sym_cmd_identifier_token23] = ACTIONS(2824), - [aux_sym_cmd_identifier_token24] = ACTIONS(2824), - [aux_sym_cmd_identifier_token25] = ACTIONS(2824), - [aux_sym_cmd_identifier_token26] = ACTIONS(2824), - [aux_sym_cmd_identifier_token27] = ACTIONS(2824), - [aux_sym_cmd_identifier_token28] = ACTIONS(2824), - [aux_sym_cmd_identifier_token29] = ACTIONS(2824), - [aux_sym_cmd_identifier_token30] = ACTIONS(2824), - [aux_sym_cmd_identifier_token31] = ACTIONS(2824), - [aux_sym_cmd_identifier_token32] = ACTIONS(2824), - [aux_sym_cmd_identifier_token33] = ACTIONS(2824), - [aux_sym_cmd_identifier_token34] = ACTIONS(2822), - [aux_sym_cmd_identifier_token35] = ACTIONS(2824), - [aux_sym_cmd_identifier_token36] = ACTIONS(2824), - [aux_sym_cmd_identifier_token37] = ACTIONS(2824), - [aux_sym_cmd_identifier_token38] = ACTIONS(2822), - [aux_sym_cmd_identifier_token39] = ACTIONS(2824), - [aux_sym_cmd_identifier_token40] = ACTIONS(2824), - [sym__newline] = ACTIONS(2590), - [anon_sym_PIPE] = ACTIONS(2826), - [anon_sym_err_GT_PIPE] = ACTIONS(2826), - [anon_sym_out_GT_PIPE] = ACTIONS(2826), - [anon_sym_e_GT_PIPE] = ACTIONS(2826), - [anon_sym_o_GT_PIPE] = ACTIONS(2826), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2826), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2826), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2826), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2824), - [anon_sym_LPAREN] = ACTIONS(2824), - [anon_sym_DOLLAR] = ACTIONS(2822), - [anon_sym_DASH2] = ACTIONS(2822), - [anon_sym_break] = ACTIONS(2822), - [anon_sym_continue] = ACTIONS(2822), - [anon_sym_do] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_match] = ACTIONS(2822), - [anon_sym_LBRACE] = ACTIONS(2824), - [anon_sym_DOT_DOT] = ACTIONS(2822), - [anon_sym_try] = ACTIONS(2822), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_where] = ACTIONS(2824), - [aux_sym_expr_unary_token1] = ACTIONS(2824), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2824), - [anon_sym_DOT_DOT_LT] = ACTIONS(2824), - [anon_sym_null] = ACTIONS(2822), - [anon_sym_true] = ACTIONS(2822), - [anon_sym_false] = ACTIONS(2822), - [aux_sym__val_number_decimal_token1] = ACTIONS(2822), - [aux_sym__val_number_decimal_token2] = ACTIONS(2824), - [aux_sym__val_number_decimal_token3] = ACTIONS(2824), - [aux_sym__val_number_decimal_token4] = ACTIONS(2824), - [aux_sym__val_number_token1] = ACTIONS(2824), - [aux_sym__val_number_token2] = ACTIONS(2824), - [aux_sym__val_number_token3] = ACTIONS(2824), - [aux_sym__val_number_token4] = ACTIONS(2822), - [aux_sym__val_number_token5] = ACTIONS(2822), - [aux_sym__val_number_token6] = ACTIONS(2822), - [anon_sym_0b] = ACTIONS(2822), - [anon_sym_0o] = ACTIONS(2822), - [anon_sym_0x] = ACTIONS(2822), - [sym_val_date] = ACTIONS(2824), - [anon_sym_DQUOTE] = ACTIONS(2824), - [sym__str_single_quotes] = ACTIONS(2824), - [sym__str_back_ticks] = ACTIONS(2824), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2824), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2824), - [aux_sym_env_var_token1] = ACTIONS(2822), - [anon_sym_CARET] = ACTIONS(2824), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2824), + [756] = { + [aux_sym__pipe_separator] = STATE(750), + [sym_comment] = STATE(756), + [aux_sym_shebang_repeat1] = STATE(782), + [aux_sym_cmd_identifier_token1] = ACTIONS(2614), + [aux_sym_cmd_identifier_token2] = ACTIONS(2616), + [aux_sym_cmd_identifier_token3] = ACTIONS(2616), + [aux_sym_cmd_identifier_token4] = ACTIONS(2616), + [aux_sym_cmd_identifier_token5] = ACTIONS(2616), + [aux_sym_cmd_identifier_token6] = ACTIONS(2616), + [aux_sym_cmd_identifier_token7] = ACTIONS(2616), + [aux_sym_cmd_identifier_token8] = ACTIONS(2616), + [aux_sym_cmd_identifier_token9] = ACTIONS(2614), + [aux_sym_cmd_identifier_token10] = ACTIONS(2616), + [aux_sym_cmd_identifier_token11] = ACTIONS(2616), + [aux_sym_cmd_identifier_token12] = ACTIONS(2616), + [aux_sym_cmd_identifier_token13] = ACTIONS(2614), + [aux_sym_cmd_identifier_token14] = ACTIONS(2616), + [aux_sym_cmd_identifier_token15] = ACTIONS(2614), + [aux_sym_cmd_identifier_token16] = ACTIONS(2616), + [aux_sym_cmd_identifier_token17] = ACTIONS(2616), + [aux_sym_cmd_identifier_token18] = ACTIONS(2616), + [aux_sym_cmd_identifier_token19] = ACTIONS(2616), + [aux_sym_cmd_identifier_token20] = ACTIONS(2616), + [aux_sym_cmd_identifier_token21] = ACTIONS(2616), + [aux_sym_cmd_identifier_token22] = ACTIONS(2616), + [aux_sym_cmd_identifier_token23] = ACTIONS(2616), + [aux_sym_cmd_identifier_token24] = ACTIONS(2616), + [aux_sym_cmd_identifier_token25] = ACTIONS(2616), + [aux_sym_cmd_identifier_token26] = ACTIONS(2616), + [aux_sym_cmd_identifier_token27] = ACTIONS(2616), + [aux_sym_cmd_identifier_token28] = ACTIONS(2616), + [aux_sym_cmd_identifier_token29] = ACTIONS(2616), + [aux_sym_cmd_identifier_token30] = ACTIONS(2616), + [aux_sym_cmd_identifier_token31] = ACTIONS(2616), + [aux_sym_cmd_identifier_token32] = ACTIONS(2616), + [aux_sym_cmd_identifier_token33] = ACTIONS(2616), + [aux_sym_cmd_identifier_token34] = ACTIONS(2614), + [aux_sym_cmd_identifier_token35] = ACTIONS(2616), + [aux_sym_cmd_identifier_token36] = ACTIONS(2616), + [aux_sym_cmd_identifier_token37] = ACTIONS(2616), + [aux_sym_cmd_identifier_token38] = ACTIONS(2614), + [aux_sym_cmd_identifier_token39] = ACTIONS(2616), + [aux_sym_cmd_identifier_token40] = ACTIONS(2616), + [sym__newline] = ACTIONS(2618), + [anon_sym_PIPE] = ACTIONS(2612), + [anon_sym_err_GT_PIPE] = ACTIONS(2612), + [anon_sym_out_GT_PIPE] = ACTIONS(2612), + [anon_sym_e_GT_PIPE] = ACTIONS(2612), + [anon_sym_o_GT_PIPE] = ACTIONS(2612), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2612), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2612), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2612), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2612), + [anon_sym_LBRACK] = ACTIONS(2616), + [anon_sym_LPAREN] = ACTIONS(2616), + [anon_sym_DOLLAR] = ACTIONS(2614), + [anon_sym_DASH2] = ACTIONS(2614), + [anon_sym_break] = ACTIONS(2614), + [anon_sym_continue] = ACTIONS(2614), + [anon_sym_do] = ACTIONS(2614), + [anon_sym_if] = ACTIONS(2614), + [anon_sym_match] = ACTIONS(2614), + [anon_sym_LBRACE] = ACTIONS(2616), + [anon_sym_DOT_DOT] = ACTIONS(2614), + [anon_sym_try] = ACTIONS(2614), + [anon_sym_return] = ACTIONS(2614), + [anon_sym_where] = ACTIONS(2616), + [aux_sym_expr_unary_token1] = ACTIONS(2616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2616), + [anon_sym_DOT_DOT_LT] = ACTIONS(2616), + [anon_sym_null] = ACTIONS(2614), + [anon_sym_true] = ACTIONS(2614), + [anon_sym_false] = ACTIONS(2614), + [aux_sym__val_number_decimal_token1] = ACTIONS(2614), + [aux_sym__val_number_decimal_token2] = ACTIONS(2616), + [aux_sym__val_number_decimal_token3] = ACTIONS(2616), + [aux_sym__val_number_decimal_token4] = ACTIONS(2616), + [aux_sym__val_number_token1] = ACTIONS(2616), + [aux_sym__val_number_token2] = ACTIONS(2616), + [aux_sym__val_number_token3] = ACTIONS(2616), + [aux_sym__val_number_token4] = ACTIONS(2614), + [aux_sym__val_number_token5] = ACTIONS(2614), + [aux_sym__val_number_token6] = ACTIONS(2614), + [anon_sym_0b] = ACTIONS(2614), + [anon_sym_0o] = ACTIONS(2614), + [anon_sym_0x] = ACTIONS(2614), + [sym_val_date] = ACTIONS(2616), + [anon_sym_DQUOTE] = ACTIONS(2616), + [sym__str_single_quotes] = ACTIONS(2616), + [sym__str_back_ticks] = ACTIONS(2616), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2616), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2616), + [aux_sym_env_var_token1] = ACTIONS(2614), + [anon_sym_CARET] = ACTIONS(2616), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2616), }, - [807] = { - [sym_comment] = STATE(807), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1540), - [anon_sym_SLASH_SLASH] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_bit_DASHshl] = ACTIONS(1540), - [anon_sym_bit_DASHshr] = ACTIONS(1540), - [anon_sym_EQ_TILDE] = ACTIONS(1540), - [anon_sym_BANG_TILDE] = ACTIONS(1540), - [anon_sym_bit_DASHand] = ACTIONS(1540), - [anon_sym_bit_DASHxor] = ACTIONS(1540), - [anon_sym_bit_DASHor] = ACTIONS(1540), - [anon_sym_and] = ACTIONS(1540), - [anon_sym_xor] = ACTIONS(1540), - [anon_sym_or] = ACTIONS(1540), - [anon_sym_in] = ACTIONS(1540), - [anon_sym_not_DASHin] = ACTIONS(1540), - [anon_sym_has] = ACTIONS(1540), - [anon_sym_not_DASHhas] = ACTIONS(1540), - [anon_sym_starts_DASHwith] = ACTIONS(1540), - [anon_sym_ends_DASHwith] = ACTIONS(1540), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1538), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1540), - [aux_sym_cmd_identifier_token41] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(1538), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_in2] = ACTIONS(1538), - [anon_sym_STAR2] = ACTIONS(1538), - [anon_sym_and2] = ACTIONS(1538), - [anon_sym_xor2] = ACTIONS(1538), - [anon_sym_or2] = ACTIONS(1538), - [anon_sym_not_DASHin2] = ACTIONS(1538), - [anon_sym_has2] = ACTIONS(1538), - [anon_sym_not_DASHhas2] = ACTIONS(1538), - [anon_sym_starts_DASHwith2] = ACTIONS(1538), - [anon_sym_ends_DASHwith2] = ACTIONS(1538), - [anon_sym_EQ_EQ2] = ACTIONS(1538), - [anon_sym_BANG_EQ2] = ACTIONS(1538), - [anon_sym_LT2] = ACTIONS(1538), - [anon_sym_LT_EQ2] = ACTIONS(1538), - [anon_sym_GT_EQ2] = ACTIONS(1538), - [anon_sym_EQ_TILDE2] = ACTIONS(1538), - [anon_sym_BANG_TILDE2] = ACTIONS(1538), - [anon_sym_STAR_STAR2] = ACTIONS(1538), - [anon_sym_PLUS_PLUS2] = ACTIONS(1538), - [anon_sym_SLASH2] = ACTIONS(1538), - [anon_sym_mod2] = ACTIONS(1538), - [anon_sym_SLASH_SLASH2] = ACTIONS(1538), - [anon_sym_PLUS2] = ACTIONS(1538), - [anon_sym_bit_DASHshl2] = ACTIONS(1538), - [anon_sym_bit_DASHshr2] = ACTIONS(1538), - [anon_sym_bit_DASHand2] = ACTIONS(1538), - [anon_sym_bit_DASHxor2] = ACTIONS(1538), - [anon_sym_bit_DASHor2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [aux_sym__immediate_decimal_token2] = ACTIONS(2828), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1540), - [anon_sym_err_GT] = ACTIONS(1538), - [anon_sym_out_GT] = ACTIONS(1538), - [anon_sym_e_GT] = ACTIONS(1538), - [anon_sym_o_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT] = ACTIONS(1538), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [757] = { + [sym_comment] = STATE(757), + [ts_builtin_sym_end] = ACTIONS(1581), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1581), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_bit_DASHshl] = ACTIONS(1581), + [anon_sym_bit_DASHshr] = ACTIONS(1581), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1581), + [anon_sym_bit_DASHxor] = ACTIONS(1581), + [anon_sym_bit_DASHor] = ACTIONS(1581), + [anon_sym_and] = ACTIONS(1581), + [anon_sym_xor] = ACTIONS(1581), + [anon_sym_or] = ACTIONS(1581), + [anon_sym_in] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1581), + [anon_sym_has] = ACTIONS(1581), + [anon_sym_not_DASHhas] = ACTIONS(1581), + [anon_sym_starts_DASHwith] = ACTIONS(1581), + [anon_sym_ends_DASHwith] = ACTIONS(1581), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1581), + [aux_sym_cmd_identifier_token41] = ACTIONS(1579), + [sym__newline] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_err_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_GT_PIPE] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), + [anon_sym_GT2] = ACTIONS(1579), + [anon_sym_DASH2] = ACTIONS(1579), + [anon_sym_in2] = ACTIONS(1579), + [anon_sym_STAR2] = ACTIONS(1579), + [anon_sym_and2] = ACTIONS(1579), + [anon_sym_xor2] = ACTIONS(1579), + [anon_sym_or2] = ACTIONS(1579), + [anon_sym_not_DASHin2] = ACTIONS(1579), + [anon_sym_has2] = ACTIONS(1579), + [anon_sym_not_DASHhas2] = ACTIONS(1579), + [anon_sym_starts_DASHwith2] = ACTIONS(1579), + [anon_sym_ends_DASHwith2] = ACTIONS(1579), + [anon_sym_EQ_EQ2] = ACTIONS(1579), + [anon_sym_BANG_EQ2] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ2] = ACTIONS(1579), + [anon_sym_GT_EQ2] = ACTIONS(1579), + [anon_sym_EQ_TILDE2] = ACTIONS(1579), + [anon_sym_BANG_TILDE2] = ACTIONS(1579), + [anon_sym_STAR_STAR2] = ACTIONS(1579), + [anon_sym_PLUS_PLUS2] = ACTIONS(1579), + [anon_sym_SLASH2] = ACTIONS(1579), + [anon_sym_mod2] = ACTIONS(1579), + [anon_sym_SLASH_SLASH2] = ACTIONS(1579), + [anon_sym_PLUS2] = ACTIONS(1579), + [anon_sym_bit_DASHshl2] = ACTIONS(1579), + [anon_sym_bit_DASHshr2] = ACTIONS(1579), + [anon_sym_bit_DASHand2] = ACTIONS(1579), + [anon_sym_bit_DASHxor2] = ACTIONS(1579), + [anon_sym_bit_DASHor2] = ACTIONS(1579), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [sym_filesize_unit] = ACTIONS(1579), + [sym_duration_unit] = ACTIONS(1581), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [anon_sym_err_GT_GT] = ACTIONS(1579), + [anon_sym_out_GT_GT] = ACTIONS(1579), + [anon_sym_e_GT_GT] = ACTIONS(1579), + [anon_sym_o_GT_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(3), }, - [808] = { - [sym_expr_parenthesized] = STATE(1642), - [sym_val_range] = STATE(1996), - [sym__val_range] = STATE(7821), - [sym__val_range_with_end] = STATE(7494), - [sym__value] = STATE(1996), - [sym_val_nothing] = STATE(1840), - [sym_val_bool] = STATE(1602), - [sym_val_variable] = STATE(1569), - [sym_val_number] = STATE(1840), - [sym__val_number_decimal] = STATE(1327), - [sym__val_number] = STATE(1971), - [sym_val_duration] = STATE(1840), - [sym_val_filesize] = STATE(1840), - [sym_val_binary] = STATE(1840), - [sym_val_string] = STATE(1840), - [sym__raw_str] = STATE(1896), - [sym__str_double_quotes] = STATE(1896), - [sym_val_interpolated] = STATE(1840), - [sym__inter_single_quotes] = STATE(1846), - [sym__inter_double_quotes] = STATE(1864), - [sym_val_list] = STATE(1840), - [sym_val_record] = STATE(1840), - [sym_val_table] = STATE(1840), - [sym_val_closure] = STATE(1840), - [sym__flag] = STATE(1996), - [sym_short_flag] = STATE(1895), - [sym_long_flag] = STATE(1895), - [sym_unquoted] = STATE(1717), - [sym__unquoted_with_expr] = STATE(2004), - [sym__unquoted_anonymous_prefix] = STATE(6783), - [sym_comment] = STATE(808), - [aux_sym_shebang_repeat1] = STATE(1050), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(811), - [sym__newline] = ACTIONS(2830), - [anon_sym_SEMI] = ACTIONS(2833), - [anon_sym_PIPE] = ACTIONS(2833), - [anon_sym_err_GT_PIPE] = ACTIONS(2833), - [anon_sym_out_GT_PIPE] = ACTIONS(2833), - [anon_sym_e_GT_PIPE] = ACTIONS(2833), - [anon_sym_o_GT_PIPE] = ACTIONS(2833), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2833), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2833), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2833), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2833), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2833), - [anon_sym_DOLLAR] = ACTIONS(2686), - [anon_sym_DASH_DASH] = ACTIONS(2688), - [anon_sym_DASH2] = ACTIONS(2690), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_DOT_DOT] = ACTIONS(2694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2696), - [anon_sym_DOT_DOT_LT] = ACTIONS(2696), - [anon_sym_null] = ACTIONS(2698), - [anon_sym_true] = ACTIONS(2700), - [anon_sym_false] = ACTIONS(2700), - [aux_sym__val_number_decimal_token1] = ACTIONS(2702), - [aux_sym__val_number_decimal_token2] = ACTIONS(2704), - [aux_sym__val_number_decimal_token3] = ACTIONS(2706), - [aux_sym__val_number_decimal_token4] = ACTIONS(2708), - [aux_sym__val_number_token1] = ACTIONS(2710), - [aux_sym__val_number_token2] = ACTIONS(2710), - [aux_sym__val_number_token3] = ACTIONS(2710), - [aux_sym__val_number_token4] = ACTIONS(2712), - [aux_sym__val_number_token5] = ACTIONS(2712), - [aux_sym__val_number_token6] = ACTIONS(2712), - [anon_sym_0b] = ACTIONS(2714), - [anon_sym_0o] = ACTIONS(2716), - [anon_sym_0x] = ACTIONS(2716), - [sym_val_date] = ACTIONS(2718), - [anon_sym_DQUOTE] = ACTIONS(2720), - [sym__str_single_quotes] = ACTIONS(2722), - [sym__str_back_ticks] = ACTIONS(2722), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2726), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(2732), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2734), - }, - [809] = { - [sym_comment] = STATE(809), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(2676), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1492), - [anon_sym_out_GT_GT] = ACTIONS(1492), - [anon_sym_e_GT_GT] = ACTIONS(1492), - [anon_sym_o_GT_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [758] = { + [sym_comment] = STATE(758), + [ts_builtin_sym_end] = ACTIONS(1501), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, - [810] = { - [sym_expr_parenthesized] = STATE(1642), - [sym_val_range] = STATE(1996), - [sym__val_range] = STATE(7821), - [sym__val_range_with_end] = STATE(7494), - [sym__value] = STATE(1996), - [sym_val_nothing] = STATE(1840), - [sym_val_bool] = STATE(1602), - [sym_val_variable] = STATE(1569), - [sym_val_number] = STATE(1840), - [sym__val_number_decimal] = STATE(1327), - [sym__val_number] = STATE(1971), - [sym_val_duration] = STATE(1840), - [sym_val_filesize] = STATE(1840), - [sym_val_binary] = STATE(1840), - [sym_val_string] = STATE(1840), - [sym__raw_str] = STATE(1896), - [sym__str_double_quotes] = STATE(1896), - [sym_val_interpolated] = STATE(1840), - [sym__inter_single_quotes] = STATE(1846), - [sym__inter_double_quotes] = STATE(1864), - [sym_val_list] = STATE(1840), - [sym_val_record] = STATE(1840), - [sym_val_table] = STATE(1840), - [sym_val_closure] = STATE(1840), - [sym__flag] = STATE(1996), - [sym_short_flag] = STATE(1895), - [sym_long_flag] = STATE(1895), - [sym_unquoted] = STATE(1717), - [sym__unquoted_with_expr] = STATE(2004), - [sym__unquoted_anonymous_prefix] = STATE(6783), - [sym_comment] = STATE(810), - [aux_sym_shebang_repeat1] = STATE(1050), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(808), - [sym__newline] = ACTIONS(2835), - [anon_sym_SEMI] = ACTIONS(2838), - [anon_sym_PIPE] = ACTIONS(2838), - [anon_sym_err_GT_PIPE] = ACTIONS(2838), - [anon_sym_out_GT_PIPE] = ACTIONS(2838), - [anon_sym_e_GT_PIPE] = ACTIONS(2838), - [anon_sym_o_GT_PIPE] = ACTIONS(2838), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2838), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2838), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2838), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2838), - [anon_sym_DOLLAR] = ACTIONS(2686), - [anon_sym_DASH_DASH] = ACTIONS(2688), - [anon_sym_DASH2] = ACTIONS(2690), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_DOT_DOT] = ACTIONS(2694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2696), - [anon_sym_DOT_DOT_LT] = ACTIONS(2696), - [anon_sym_null] = ACTIONS(2698), - [anon_sym_true] = ACTIONS(2700), - [anon_sym_false] = ACTIONS(2700), - [aux_sym__val_number_decimal_token1] = ACTIONS(2702), - [aux_sym__val_number_decimal_token2] = ACTIONS(2704), - [aux_sym__val_number_decimal_token3] = ACTIONS(2706), - [aux_sym__val_number_decimal_token4] = ACTIONS(2708), - [aux_sym__val_number_token1] = ACTIONS(2710), - [aux_sym__val_number_token2] = ACTIONS(2710), - [aux_sym__val_number_token3] = ACTIONS(2710), - [aux_sym__val_number_token4] = ACTIONS(2712), - [aux_sym__val_number_token5] = ACTIONS(2712), - [aux_sym__val_number_token6] = ACTIONS(2712), - [anon_sym_0b] = ACTIONS(2714), - [anon_sym_0o] = ACTIONS(2716), - [anon_sym_0x] = ACTIONS(2716), - [sym_val_date] = ACTIONS(2718), - [anon_sym_DQUOTE] = ACTIONS(2720), - [sym__str_single_quotes] = ACTIONS(2722), - [sym__str_back_ticks] = ACTIONS(2722), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2726), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(2732), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2734), - }, - [811] = { - [sym_expr_parenthesized] = STATE(1642), - [sym_val_range] = STATE(1996), - [sym__val_range] = STATE(7821), - [sym__val_range_with_end] = STATE(7494), - [sym__value] = STATE(1996), - [sym_val_nothing] = STATE(1840), - [sym_val_bool] = STATE(1602), - [sym_val_variable] = STATE(1569), - [sym_val_number] = STATE(1840), - [sym__val_number_decimal] = STATE(1327), - [sym__val_number] = STATE(1971), - [sym_val_duration] = STATE(1840), - [sym_val_filesize] = STATE(1840), - [sym_val_binary] = STATE(1840), - [sym_val_string] = STATE(1840), - [sym__raw_str] = STATE(1896), - [sym__str_double_quotes] = STATE(1896), - [sym_val_interpolated] = STATE(1840), - [sym__inter_single_quotes] = STATE(1846), - [sym__inter_double_quotes] = STATE(1864), - [sym_val_list] = STATE(1840), - [sym_val_record] = STATE(1840), - [sym_val_table] = STATE(1840), - [sym_val_closure] = STATE(1840), - [sym__flag] = STATE(1996), - [sym_short_flag] = STATE(1895), - [sym_long_flag] = STATE(1895), - [sym_unquoted] = STATE(1717), - [sym__unquoted_with_expr] = STATE(2004), - [sym__unquoted_anonymous_prefix] = STATE(6783), - [sym_comment] = STATE(811), - [aux_sym_shebang_repeat1] = STATE(1050), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(811), - [sym__newline] = ACTIONS(2840), - [anon_sym_SEMI] = ACTIONS(2843), - [anon_sym_PIPE] = ACTIONS(2843), - [anon_sym_err_GT_PIPE] = ACTIONS(2843), - [anon_sym_out_GT_PIPE] = ACTIONS(2843), - [anon_sym_e_GT_PIPE] = ACTIONS(2843), - [anon_sym_o_GT_PIPE] = ACTIONS(2843), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2843), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2843), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2843), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2845), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym_RPAREN] = ACTIONS(2843), - [anon_sym_DOLLAR] = ACTIONS(2851), - [anon_sym_DASH_DASH] = ACTIONS(2854), - [anon_sym_DASH2] = ACTIONS(2857), - [anon_sym_LBRACE] = ACTIONS(2860), - [anon_sym_DOT_DOT] = ACTIONS(2863), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2866), - [anon_sym_DOT_DOT_LT] = ACTIONS(2866), - [anon_sym_null] = ACTIONS(2869), - [anon_sym_true] = ACTIONS(2872), - [anon_sym_false] = ACTIONS(2872), - [aux_sym__val_number_decimal_token1] = ACTIONS(2875), - [aux_sym__val_number_decimal_token2] = ACTIONS(2878), - [aux_sym__val_number_decimal_token3] = ACTIONS(2881), - [aux_sym__val_number_decimal_token4] = ACTIONS(2884), - [aux_sym__val_number_token1] = ACTIONS(2887), - [aux_sym__val_number_token2] = ACTIONS(2887), - [aux_sym__val_number_token3] = ACTIONS(2887), - [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(2893), - [anon_sym_0o] = ACTIONS(2896), - [anon_sym_0x] = ACTIONS(2896), - [sym_val_date] = ACTIONS(2899), - [anon_sym_DQUOTE] = ACTIONS(2902), - [sym__str_single_quotes] = ACTIONS(2905), - [sym__str_back_ticks] = ACTIONS(2905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2908), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2911), - [anon_sym_err_GT] = ACTIONS(2914), - [anon_sym_out_GT] = ACTIONS(2914), - [anon_sym_e_GT] = ACTIONS(2914), - [anon_sym_o_GT] = ACTIONS(2914), - [anon_sym_err_PLUSout_GT] = ACTIONS(2914), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2914), - [anon_sym_o_PLUSe_GT] = ACTIONS(2914), - [anon_sym_e_PLUSo_GT] = ACTIONS(2914), - [anon_sym_err_GT_GT] = ACTIONS(2917), - [anon_sym_out_GT_GT] = ACTIONS(2917), - [anon_sym_e_GT_GT] = ACTIONS(2917), - [anon_sym_o_GT_GT] = ACTIONS(2917), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2917), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2917), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2917), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2917), - [aux_sym_unquoted_token1] = ACTIONS(2920), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2923), - }, - [812] = { - [sym_expr_parenthesized] = STATE(1560), - [sym_val_range] = STATE(1892), - [sym__val_range] = STATE(7821), - [sym__val_range_with_end] = STATE(7494), - [sym__value] = STATE(1892), - [sym_val_nothing] = STATE(1840), - [sym_val_bool] = STATE(1602), - [sym_val_variable] = STATE(1569), - [sym_val_number] = STATE(1840), - [sym__val_number_decimal] = STATE(1327), - [sym__val_number] = STATE(1971), - [sym_val_duration] = STATE(1840), - [sym_val_filesize] = STATE(1840), - [sym_val_binary] = STATE(1840), - [sym_val_string] = STATE(1840), - [sym__raw_str] = STATE(1896), - [sym__str_double_quotes] = STATE(1896), - [sym_val_interpolated] = STATE(1840), - [sym__inter_single_quotes] = STATE(1846), - [sym__inter_double_quotes] = STATE(1864), - [sym_val_list] = STATE(1840), - [sym_val_record] = STATE(1840), - [sym_val_table] = STATE(1840), - [sym_val_closure] = STATE(1840), - [sym__flag] = STATE(1892), - [sym_short_flag] = STATE(1895), - [sym_long_flag] = STATE(1895), - [sym_unquoted] = STATE(1621), - [sym__unquoted_with_expr] = STATE(1897), - [sym__unquoted_anonymous_prefix] = STATE(6783), - [sym_comment] = STATE(812), - [aux_sym_ctrl_do_repeat2] = STATE(804), - [sym__newline] = ACTIONS(2926), - [anon_sym_SEMI] = ACTIONS(2926), - [anon_sym_PIPE] = ACTIONS(2926), - [anon_sym_err_GT_PIPE] = ACTIONS(2926), - [anon_sym_out_GT_PIPE] = ACTIONS(2926), - [anon_sym_e_GT_PIPE] = ACTIONS(2926), - [anon_sym_o_GT_PIPE] = ACTIONS(2926), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2926), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2926), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2926), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2926), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2686), - [anon_sym_DASH_DASH] = ACTIONS(2688), - [anon_sym_DASH2] = ACTIONS(2690), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_RBRACE] = ACTIONS(2926), - [anon_sym_DOT_DOT] = ACTIONS(2694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2696), - [anon_sym_DOT_DOT_LT] = ACTIONS(2696), - [anon_sym_null] = ACTIONS(2698), - [anon_sym_true] = ACTIONS(2700), - [anon_sym_false] = ACTIONS(2700), - [aux_sym__val_number_decimal_token1] = ACTIONS(2702), - [aux_sym__val_number_decimal_token2] = ACTIONS(2704), - [aux_sym__val_number_decimal_token3] = ACTIONS(2706), - [aux_sym__val_number_decimal_token4] = ACTIONS(2708), - [aux_sym__val_number_token1] = ACTIONS(2710), - [aux_sym__val_number_token2] = ACTIONS(2710), - [aux_sym__val_number_token3] = ACTIONS(2710), - [aux_sym__val_number_token4] = ACTIONS(2712), - [aux_sym__val_number_token5] = ACTIONS(2712), - [aux_sym__val_number_token6] = ACTIONS(2712), - [anon_sym_0b] = ACTIONS(2714), - [anon_sym_0o] = ACTIONS(2716), - [anon_sym_0x] = ACTIONS(2716), - [sym_val_date] = ACTIONS(2718), - [anon_sym_DQUOTE] = ACTIONS(2720), - [sym__str_single_quotes] = ACTIONS(2722), - [sym__str_back_ticks] = ACTIONS(2722), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2726), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(2732), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2734), - }, - [813] = { - [sym_comment] = STATE(813), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1540), - [anon_sym_SLASH_SLASH] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_bit_DASHshl] = ACTIONS(1540), - [anon_sym_bit_DASHshr] = ACTIONS(1540), - [anon_sym_EQ_TILDE] = ACTIONS(1540), - [anon_sym_BANG_TILDE] = ACTIONS(1540), - [anon_sym_bit_DASHand] = ACTIONS(1540), - [anon_sym_bit_DASHxor] = ACTIONS(1540), - [anon_sym_bit_DASHor] = ACTIONS(1540), - [anon_sym_and] = ACTIONS(1540), - [anon_sym_xor] = ACTIONS(1540), - [anon_sym_or] = ACTIONS(1540), - [anon_sym_in] = ACTIONS(1540), - [anon_sym_not_DASHin] = ACTIONS(1540), - [anon_sym_has] = ACTIONS(1540), - [anon_sym_not_DASHhas] = ACTIONS(1540), - [anon_sym_starts_DASHwith] = ACTIONS(1540), - [anon_sym_ends_DASHwith] = ACTIONS(1540), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1538), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1540), - [aux_sym_cmd_identifier_token41] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(1538), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_in2] = ACTIONS(1538), - [anon_sym_STAR2] = ACTIONS(1538), - [anon_sym_and2] = ACTIONS(1538), - [anon_sym_xor2] = ACTIONS(1538), - [anon_sym_or2] = ACTIONS(1538), - [anon_sym_not_DASHin2] = ACTIONS(1538), - [anon_sym_has2] = ACTIONS(1538), - [anon_sym_not_DASHhas2] = ACTIONS(1538), - [anon_sym_starts_DASHwith2] = ACTIONS(1538), - [anon_sym_ends_DASHwith2] = ACTIONS(1538), - [anon_sym_EQ_EQ2] = ACTIONS(1538), - [anon_sym_BANG_EQ2] = ACTIONS(1538), - [anon_sym_LT2] = ACTIONS(1538), - [anon_sym_LT_EQ2] = ACTIONS(1538), - [anon_sym_GT_EQ2] = ACTIONS(1538), - [anon_sym_EQ_TILDE2] = ACTIONS(1538), - [anon_sym_BANG_TILDE2] = ACTIONS(1538), - [anon_sym_STAR_STAR2] = ACTIONS(1538), - [anon_sym_PLUS_PLUS2] = ACTIONS(1538), - [anon_sym_SLASH2] = ACTIONS(1538), - [anon_sym_mod2] = ACTIONS(1538), - [anon_sym_SLASH_SLASH2] = ACTIONS(1538), - [anon_sym_PLUS2] = ACTIONS(1538), - [anon_sym_bit_DASHshl2] = ACTIONS(1538), - [anon_sym_bit_DASHshr2] = ACTIONS(1538), - [anon_sym_bit_DASHand2] = ACTIONS(1538), - [anon_sym_bit_DASHxor2] = ACTIONS(1538), - [anon_sym_bit_DASHor2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1540), - [anon_sym_err_GT] = ACTIONS(1538), - [anon_sym_out_GT] = ACTIONS(1538), - [anon_sym_e_GT] = ACTIONS(1538), - [anon_sym_o_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT] = ACTIONS(1538), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [759] = { + [sym_comment] = STATE(759), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, - [814] = { - [sym_comment] = STATE(814), - [anon_sym_STAR_STAR] = ACTIONS(2572), - [anon_sym_PLUS_PLUS] = ACTIONS(2572), - [anon_sym_STAR] = ACTIONS(2574), - [anon_sym_SLASH] = ACTIONS(2574), - [anon_sym_mod] = ACTIONS(2572), - [anon_sym_SLASH_SLASH] = ACTIONS(2572), - [anon_sym_PLUS] = ACTIONS(2574), - [anon_sym_DASH] = ACTIONS(2572), - [anon_sym_bit_DASHshl] = ACTIONS(2572), - [anon_sym_bit_DASHshr] = ACTIONS(2572), - [anon_sym_EQ_TILDE] = ACTIONS(2572), - [anon_sym_BANG_TILDE] = ACTIONS(2572), - [anon_sym_bit_DASHand] = ACTIONS(2572), - [anon_sym_bit_DASHxor] = ACTIONS(2572), - [anon_sym_bit_DASHor] = ACTIONS(2572), - [anon_sym_and] = ACTIONS(2572), - [anon_sym_xor] = ACTIONS(2572), - [anon_sym_or] = ACTIONS(2572), - [anon_sym_in] = ACTIONS(2572), - [anon_sym_not_DASHin] = ACTIONS(2572), - [anon_sym_has] = ACTIONS(2572), - [anon_sym_not_DASHhas] = ACTIONS(2572), - [anon_sym_starts_DASHwith] = ACTIONS(2572), - [anon_sym_ends_DASHwith] = ACTIONS(2572), - [anon_sym_EQ_EQ] = ACTIONS(2572), - [anon_sym_BANG_EQ] = ACTIONS(2572), - [anon_sym_LT] = ACTIONS(2574), - [anon_sym_LT_EQ] = ACTIONS(2572), - [anon_sym_GT] = ACTIONS(2574), - [anon_sym_GT_EQ] = ACTIONS(2572), - [aux_sym_cmd_identifier_token41] = ACTIONS(2576), + [760] = { + [sym_comment] = STATE(760), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1581), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_bit_DASHshl] = ACTIONS(1581), + [anon_sym_bit_DASHshr] = ACTIONS(1581), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1581), + [anon_sym_bit_DASHxor] = ACTIONS(1581), + [anon_sym_bit_DASHor] = ACTIONS(1581), + [anon_sym_and] = ACTIONS(1581), + [anon_sym_xor] = ACTIONS(1581), + [anon_sym_or] = ACTIONS(1581), + [anon_sym_in] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1581), + [anon_sym_has] = ACTIONS(1581), + [anon_sym_not_DASHhas] = ACTIONS(1581), + [anon_sym_starts_DASHwith] = ACTIONS(1581), + [anon_sym_ends_DASHwith] = ACTIONS(1581), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1581), + [aux_sym_cmd_identifier_token41] = ACTIONS(1579), [sym__newline] = ACTIONS(1579), [anon_sym_SEMI] = ACTIONS(1579), [anon_sym_PIPE] = ACTIONS(1579), @@ -162360,6 +155735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT2] = ACTIONS(1579), [anon_sym_DASH2] = ACTIONS(1579), [anon_sym_in2] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), [anon_sym_STAR2] = ACTIONS(1579), [anon_sym_and2] = ACTIONS(1579), [anon_sym_xor2] = ACTIONS(1579), @@ -162387,11 +155763,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1579), [anon_sym_bit_DASHxor2] = ACTIONS(1579), [anon_sym_bit_DASHor2] = ACTIONS(1579), - [anon_sym_DOT_DOT2] = ACTIONS(2546), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2548), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2548), - [sym_filesize_unit] = ACTIONS(2928), - [sym_duration_unit] = ACTIONS(2930), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [sym_filesize_unit] = ACTIONS(1579), + [sym_duration_unit] = ACTIONS(1581), [anon_sym_err_GT] = ACTIONS(1579), [anon_sym_out_GT] = ACTIONS(1579), [anon_sym_e_GT] = ACTIONS(1579), @@ -162410,1101 +155786,821 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(3), }, - [815] = { - [sym_comment] = STATE(815), - [anon_sym_STAR_STAR] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_SLASH] = ACTIONS(1484), - [anon_sym_mod] = ACTIONS(1486), - [anon_sym_SLASH_SLASH] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_bit_DASHshl] = ACTIONS(1486), - [anon_sym_bit_DASHshr] = ACTIONS(1486), - [anon_sym_EQ_TILDE] = ACTIONS(1486), - [anon_sym_BANG_TILDE] = ACTIONS(1486), - [anon_sym_bit_DASHand] = ACTIONS(1486), - [anon_sym_bit_DASHxor] = ACTIONS(1486), - [anon_sym_bit_DASHor] = ACTIONS(1486), - [anon_sym_and] = ACTIONS(1486), - [anon_sym_xor] = ACTIONS(1486), - [anon_sym_or] = ACTIONS(1486), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_not_DASHin] = ACTIONS(1486), - [anon_sym_has] = ACTIONS(1486), - [anon_sym_not_DASHhas] = ACTIONS(1486), - [anon_sym_starts_DASHwith] = ACTIONS(1486), - [anon_sym_ends_DASHwith] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(1486), - [anon_sym_BANG_EQ] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1486), - [aux_sym_cmd_identifier_token41] = ACTIONS(1484), - [sym__newline] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_err_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_GT_PIPE] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1484), - [anon_sym_GT2] = ACTIONS(1484), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_in2] = ACTIONS(1484), - [anon_sym_STAR2] = ACTIONS(1484), - [anon_sym_and2] = ACTIONS(1484), - [anon_sym_xor2] = ACTIONS(1484), - [anon_sym_or2] = ACTIONS(1484), - [anon_sym_not_DASHin2] = ACTIONS(1484), - [anon_sym_has2] = ACTIONS(1484), - [anon_sym_not_DASHhas2] = ACTIONS(1484), - [anon_sym_starts_DASHwith2] = ACTIONS(1484), - [anon_sym_ends_DASHwith2] = ACTIONS(1484), - [anon_sym_EQ_EQ2] = ACTIONS(1484), - [anon_sym_BANG_EQ2] = ACTIONS(1484), - [anon_sym_LT2] = ACTIONS(1484), - [anon_sym_LT_EQ2] = ACTIONS(1484), - [anon_sym_GT_EQ2] = ACTIONS(1484), - [anon_sym_EQ_TILDE2] = ACTIONS(1484), - [anon_sym_BANG_TILDE2] = ACTIONS(1484), - [anon_sym_STAR_STAR2] = ACTIONS(1484), - [anon_sym_PLUS_PLUS2] = ACTIONS(1484), - [anon_sym_SLASH2] = ACTIONS(1484), - [anon_sym_mod2] = ACTIONS(1484), - [anon_sym_SLASH_SLASH2] = ACTIONS(1484), - [anon_sym_PLUS2] = ACTIONS(1484), - [anon_sym_bit_DASHshl2] = ACTIONS(1484), - [anon_sym_bit_DASHshr2] = ACTIONS(1484), - [anon_sym_bit_DASHand2] = ACTIONS(1484), - [anon_sym_bit_DASHxor2] = ACTIONS(1484), - [anon_sym_bit_DASHor2] = ACTIONS(1484), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [sym_filesize_unit] = ACTIONS(1484), - [sym_duration_unit] = ACTIONS(1486), - [anon_sym_err_GT] = ACTIONS(1484), - [anon_sym_out_GT] = ACTIONS(1484), - [anon_sym_e_GT] = ACTIONS(1484), - [anon_sym_o_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT] = ACTIONS(1484), - [anon_sym_err_GT_GT] = ACTIONS(1484), - [anon_sym_out_GT_GT] = ACTIONS(1484), - [anon_sym_e_GT_GT] = ACTIONS(1484), - [anon_sym_o_GT_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1484), + [761] = { + [sym_comment] = STATE(761), + [anon_sym_STAR_STAR] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(2570), + [anon_sym_SLASH] = ACTIONS(2570), + [anon_sym_mod] = ACTIONS(2568), + [anon_sym_SLASH_SLASH] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_bit_DASHshl] = ACTIONS(2568), + [anon_sym_bit_DASHshr] = ACTIONS(2568), + [anon_sym_EQ_TILDE] = ACTIONS(2568), + [anon_sym_BANG_TILDE] = ACTIONS(2568), + [anon_sym_bit_DASHand] = ACTIONS(2568), + [anon_sym_bit_DASHxor] = ACTIONS(2568), + [anon_sym_bit_DASHor] = ACTIONS(2568), + [anon_sym_and] = ACTIONS(2568), + [anon_sym_xor] = ACTIONS(2568), + [anon_sym_or] = ACTIONS(2568), + [anon_sym_in] = ACTIONS(2568), + [anon_sym_not_DASHin] = ACTIONS(2568), + [anon_sym_has] = ACTIONS(2568), + [anon_sym_not_DASHhas] = ACTIONS(2568), + [anon_sym_starts_DASHwith] = ACTIONS(2568), + [anon_sym_ends_DASHwith] = ACTIONS(2568), + [anon_sym_EQ_EQ] = ACTIONS(2568), + [anon_sym_BANG_EQ] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_LT_EQ] = ACTIONS(2568), + [anon_sym_GT] = ACTIONS(2570), + [anon_sym_GT_EQ] = ACTIONS(2568), + [aux_sym_cmd_identifier_token41] = ACTIONS(2572), + [sym__newline] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1616), + [anon_sym_err_GT_PIPE] = ACTIONS(1616), + [anon_sym_out_GT_PIPE] = ACTIONS(1616), + [anon_sym_e_GT_PIPE] = ACTIONS(1616), + [anon_sym_o_GT_PIPE] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1616), + [anon_sym_GT2] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_in2] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1616), + [anon_sym_STAR2] = ACTIONS(1616), + [anon_sym_and2] = ACTIONS(1616), + [anon_sym_xor2] = ACTIONS(1616), + [anon_sym_or2] = ACTIONS(1616), + [anon_sym_not_DASHin2] = ACTIONS(1616), + [anon_sym_has2] = ACTIONS(1616), + [anon_sym_not_DASHhas2] = ACTIONS(1616), + [anon_sym_starts_DASHwith2] = ACTIONS(1616), + [anon_sym_ends_DASHwith2] = ACTIONS(1616), + [anon_sym_EQ_EQ2] = ACTIONS(1616), + [anon_sym_BANG_EQ2] = ACTIONS(1616), + [anon_sym_LT2] = ACTIONS(1616), + [anon_sym_LT_EQ2] = ACTIONS(1616), + [anon_sym_GT_EQ2] = ACTIONS(1616), + [anon_sym_EQ_TILDE2] = ACTIONS(1616), + [anon_sym_BANG_TILDE2] = ACTIONS(1616), + [anon_sym_STAR_STAR2] = ACTIONS(1616), + [anon_sym_PLUS_PLUS2] = ACTIONS(1616), + [anon_sym_SLASH2] = ACTIONS(1616), + [anon_sym_mod2] = ACTIONS(1616), + [anon_sym_SLASH_SLASH2] = ACTIONS(1616), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_bit_DASHshl2] = ACTIONS(1616), + [anon_sym_bit_DASHshr2] = ACTIONS(1616), + [anon_sym_bit_DASHand2] = ACTIONS(1616), + [anon_sym_bit_DASHxor2] = ACTIONS(1616), + [anon_sym_bit_DASHor2] = ACTIONS(1616), + [anon_sym_DOT_DOT2] = ACTIONS(2548), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2550), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2550), + [sym_filesize_unit] = ACTIONS(2620), + [sym_duration_unit] = ACTIONS(2622), + [anon_sym_err_GT] = ACTIONS(1616), + [anon_sym_out_GT] = ACTIONS(1616), + [anon_sym_e_GT] = ACTIONS(1616), + [anon_sym_o_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT] = ACTIONS(1616), + [anon_sym_err_GT_GT] = ACTIONS(1616), + [anon_sym_out_GT_GT] = ACTIONS(1616), + [anon_sym_e_GT_GT] = ACTIONS(1616), + [anon_sym_o_GT_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1616), [anon_sym_POUND] = ACTIONS(3), }, - [816] = { - [sym_expr_parenthesized] = STATE(1642), - [sym_val_range] = STATE(1996), - [sym__val_range] = STATE(7821), - [sym__val_range_with_end] = STATE(7494), - [sym__value] = STATE(1996), - [sym_val_nothing] = STATE(1840), - [sym_val_bool] = STATE(1602), - [sym_val_variable] = STATE(1569), - [sym_val_number] = STATE(1840), - [sym__val_number_decimal] = STATE(1327), - [sym__val_number] = STATE(1971), - [sym_val_duration] = STATE(1840), - [sym_val_filesize] = STATE(1840), - [sym_val_binary] = STATE(1840), - [sym_val_string] = STATE(1840), - [sym__raw_str] = STATE(1896), - [sym__str_double_quotes] = STATE(1896), - [sym_val_interpolated] = STATE(1840), - [sym__inter_single_quotes] = STATE(1846), - [sym__inter_double_quotes] = STATE(1864), - [sym_val_list] = STATE(1840), - [sym_val_record] = STATE(1840), - [sym_val_table] = STATE(1840), - [sym_val_closure] = STATE(1840), - [sym__flag] = STATE(1996), - [sym_short_flag] = STATE(1895), - [sym_long_flag] = STATE(1895), - [sym_unquoted] = STATE(1717), - [sym__unquoted_with_expr] = STATE(2004), - [sym__unquoted_anonymous_prefix] = STATE(6783), - [sym_comment] = STATE(816), - [aux_sym_shebang_repeat1] = STATE(1050), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(811), - [sym__newline] = ACTIONS(2932), - [anon_sym_SEMI] = ACTIONS(2935), - [anon_sym_PIPE] = ACTIONS(2935), - [anon_sym_err_GT_PIPE] = ACTIONS(2935), - [anon_sym_out_GT_PIPE] = ACTIONS(2935), - [anon_sym_e_GT_PIPE] = ACTIONS(2935), - [anon_sym_o_GT_PIPE] = ACTIONS(2935), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2935), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2935), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2935), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2935), - [anon_sym_DOLLAR] = ACTIONS(2686), - [anon_sym_DASH_DASH] = ACTIONS(2688), - [anon_sym_DASH2] = ACTIONS(2690), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_DOT_DOT] = ACTIONS(2694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2696), - [anon_sym_DOT_DOT_LT] = ACTIONS(2696), - [anon_sym_null] = ACTIONS(2698), - [anon_sym_true] = ACTIONS(2700), - [anon_sym_false] = ACTIONS(2700), - [aux_sym__val_number_decimal_token1] = ACTIONS(2702), - [aux_sym__val_number_decimal_token2] = ACTIONS(2704), - [aux_sym__val_number_decimal_token3] = ACTIONS(2706), - [aux_sym__val_number_decimal_token4] = ACTIONS(2708), - [aux_sym__val_number_token1] = ACTIONS(2710), - [aux_sym__val_number_token2] = ACTIONS(2710), - [aux_sym__val_number_token3] = ACTIONS(2710), - [aux_sym__val_number_token4] = ACTIONS(2712), - [aux_sym__val_number_token5] = ACTIONS(2712), - [aux_sym__val_number_token6] = ACTIONS(2712), - [anon_sym_0b] = ACTIONS(2714), - [anon_sym_0o] = ACTIONS(2716), - [anon_sym_0x] = ACTIONS(2716), - [sym_val_date] = ACTIONS(2718), - [anon_sym_DQUOTE] = ACTIONS(2720), - [sym__str_single_quotes] = ACTIONS(2722), - [sym__str_back_ticks] = ACTIONS(2722), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2726), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(2732), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2734), + [762] = { + [sym_comment] = STATE(762), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(2540), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(3), }, - [817] = { - [sym_expr_parenthesized] = STATE(1560), - [sym_val_range] = STATE(1892), - [sym__val_range] = STATE(7821), - [sym__val_range_with_end] = STATE(7494), - [sym__value] = STATE(1892), - [sym_val_nothing] = STATE(1840), - [sym_val_bool] = STATE(1602), - [sym_val_variable] = STATE(1569), - [sym_val_number] = STATE(1840), - [sym__val_number_decimal] = STATE(1327), - [sym__val_number] = STATE(1971), - [sym_val_duration] = STATE(1840), - [sym_val_filesize] = STATE(1840), - [sym_val_binary] = STATE(1840), - [sym_val_string] = STATE(1840), - [sym__raw_str] = STATE(1896), - [sym__str_double_quotes] = STATE(1896), - [sym_val_interpolated] = STATE(1840), - [sym__inter_single_quotes] = STATE(1846), - [sym__inter_double_quotes] = STATE(1864), - [sym_val_list] = STATE(1840), - [sym_val_record] = STATE(1840), - [sym_val_table] = STATE(1840), - [sym_val_closure] = STATE(1840), - [sym__flag] = STATE(1892), - [sym_short_flag] = STATE(1895), - [sym_long_flag] = STATE(1895), - [sym_unquoted] = STATE(1621), - [sym__unquoted_with_expr] = STATE(1897), - [sym__unquoted_anonymous_prefix] = STATE(6783), - [sym_comment] = STATE(817), - [aux_sym_ctrl_do_repeat2] = STATE(804), - [sym__newline] = ACTIONS(2680), - [anon_sym_SEMI] = ACTIONS(2680), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_err_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_GT_PIPE] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2680), - [anon_sym_DOLLAR] = ACTIONS(2686), - [anon_sym_DASH_DASH] = ACTIONS(2688), - [anon_sym_DASH2] = ACTIONS(2690), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_RBRACE] = ACTIONS(2680), - [anon_sym_DOT_DOT] = ACTIONS(2694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2696), - [anon_sym_DOT_DOT_LT] = ACTIONS(2696), - [anon_sym_null] = ACTIONS(2698), - [anon_sym_true] = ACTIONS(2700), - [anon_sym_false] = ACTIONS(2700), - [aux_sym__val_number_decimal_token1] = ACTIONS(2702), - [aux_sym__val_number_decimal_token2] = ACTIONS(2704), - [aux_sym__val_number_decimal_token3] = ACTIONS(2706), - [aux_sym__val_number_decimal_token4] = ACTIONS(2708), - [aux_sym__val_number_token1] = ACTIONS(2710), - [aux_sym__val_number_token2] = ACTIONS(2710), - [aux_sym__val_number_token3] = ACTIONS(2710), - [aux_sym__val_number_token4] = ACTIONS(2712), - [aux_sym__val_number_token5] = ACTIONS(2712), - [aux_sym__val_number_token6] = ACTIONS(2712), - [anon_sym_0b] = ACTIONS(2714), - [anon_sym_0o] = ACTIONS(2716), - [anon_sym_0x] = ACTIONS(2716), - [sym_val_date] = ACTIONS(2718), - [anon_sym_DQUOTE] = ACTIONS(2720), - [sym__str_single_quotes] = ACTIONS(2722), - [sym__str_back_ticks] = ACTIONS(2722), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2726), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(2732), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2734), + [763] = { + [sym_comment] = STATE(763), + [anon_sym_STAR_STAR] = ACTIONS(1680), + [anon_sym_PLUS_PLUS] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_SLASH] = ACTIONS(1678), + [anon_sym_mod] = ACTIONS(1680), + [anon_sym_SLASH_SLASH] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1680), + [anon_sym_bit_DASHshl] = ACTIONS(1680), + [anon_sym_bit_DASHshr] = ACTIONS(1680), + [anon_sym_EQ_TILDE] = ACTIONS(1680), + [anon_sym_BANG_TILDE] = ACTIONS(1680), + [anon_sym_bit_DASHand] = ACTIONS(1680), + [anon_sym_bit_DASHxor] = ACTIONS(1680), + [anon_sym_bit_DASHor] = ACTIONS(1680), + [anon_sym_and] = ACTIONS(1680), + [anon_sym_xor] = ACTIONS(1680), + [anon_sym_or] = ACTIONS(1680), + [anon_sym_in] = ACTIONS(1680), + [anon_sym_not_DASHin] = ACTIONS(1680), + [anon_sym_has] = ACTIONS(1680), + [anon_sym_not_DASHhas] = ACTIONS(1680), + [anon_sym_starts_DASHwith] = ACTIONS(1680), + [anon_sym_ends_DASHwith] = ACTIONS(1680), + [anon_sym_EQ_EQ] = ACTIONS(1680), + [anon_sym_BANG_EQ] = ACTIONS(1680), + [anon_sym_LT] = ACTIONS(1678), + [anon_sym_LT_EQ] = ACTIONS(1680), + [anon_sym_GT] = ACTIONS(1678), + [anon_sym_GT_EQ] = ACTIONS(1680), + [aux_sym_cmd_identifier_token41] = ACTIONS(1678), + [sym__newline] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_PIPE] = ACTIONS(1678), + [anon_sym_err_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_GT_PIPE] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1678), + [anon_sym_GT2] = ACTIONS(1678), + [anon_sym_DASH2] = ACTIONS(1678), + [anon_sym_in2] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_STAR2] = ACTIONS(1678), + [anon_sym_and2] = ACTIONS(1678), + [anon_sym_xor2] = ACTIONS(1678), + [anon_sym_or2] = ACTIONS(1678), + [anon_sym_not_DASHin2] = ACTIONS(1678), + [anon_sym_has2] = ACTIONS(1678), + [anon_sym_not_DASHhas2] = ACTIONS(1678), + [anon_sym_starts_DASHwith2] = ACTIONS(1678), + [anon_sym_ends_DASHwith2] = ACTIONS(1678), + [anon_sym_EQ_EQ2] = ACTIONS(1678), + [anon_sym_BANG_EQ2] = ACTIONS(1678), + [anon_sym_LT2] = ACTIONS(1678), + [anon_sym_LT_EQ2] = ACTIONS(1678), + [anon_sym_GT_EQ2] = ACTIONS(1678), + [anon_sym_EQ_TILDE2] = ACTIONS(1678), + [anon_sym_BANG_TILDE2] = ACTIONS(1678), + [anon_sym_STAR_STAR2] = ACTIONS(1678), + [anon_sym_PLUS_PLUS2] = ACTIONS(1678), + [anon_sym_SLASH2] = ACTIONS(1678), + [anon_sym_mod2] = ACTIONS(1678), + [anon_sym_SLASH_SLASH2] = ACTIONS(1678), + [anon_sym_PLUS2] = ACTIONS(1678), + [anon_sym_bit_DASHshl2] = ACTIONS(1678), + [anon_sym_bit_DASHshr2] = ACTIONS(1678), + [anon_sym_bit_DASHand2] = ACTIONS(1678), + [anon_sym_bit_DASHxor2] = ACTIONS(1678), + [anon_sym_bit_DASHor2] = ACTIONS(1678), + [anon_sym_DOT_DOT2] = ACTIONS(1678), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1680), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1680), + [sym_filesize_unit] = ACTIONS(1678), + [sym_duration_unit] = ACTIONS(1680), + [anon_sym_err_GT] = ACTIONS(1678), + [anon_sym_out_GT] = ACTIONS(1678), + [anon_sym_e_GT] = ACTIONS(1678), + [anon_sym_o_GT] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT] = ACTIONS(1678), + [anon_sym_err_GT_GT] = ACTIONS(1678), + [anon_sym_out_GT_GT] = ACTIONS(1678), + [anon_sym_e_GT_GT] = ACTIONS(1678), + [anon_sym_o_GT_GT] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1678), + [anon_sym_POUND] = ACTIONS(3), }, - [818] = { - [sym_expr_parenthesized] = STATE(1642), - [sym_val_range] = STATE(1996), - [sym__val_range] = STATE(7821), - [sym__val_range_with_end] = STATE(7494), - [sym__value] = STATE(1996), - [sym_val_nothing] = STATE(1840), - [sym_val_bool] = STATE(1602), - [sym_val_variable] = STATE(1569), - [sym_val_number] = STATE(1840), - [sym__val_number_decimal] = STATE(1327), - [sym__val_number] = STATE(1971), - [sym_val_duration] = STATE(1840), - [sym_val_filesize] = STATE(1840), - [sym_val_binary] = STATE(1840), - [sym_val_string] = STATE(1840), - [sym__raw_str] = STATE(1896), - [sym__str_double_quotes] = STATE(1896), - [sym_val_interpolated] = STATE(1840), - [sym__inter_single_quotes] = STATE(1846), - [sym__inter_double_quotes] = STATE(1864), - [sym_val_list] = STATE(1840), - [sym_val_record] = STATE(1840), - [sym_val_table] = STATE(1840), - [sym_val_closure] = STATE(1840), - [sym__flag] = STATE(1996), - [sym_short_flag] = STATE(1895), - [sym_long_flag] = STATE(1895), - [sym_unquoted] = STATE(1717), - [sym__unquoted_with_expr] = STATE(2004), - [sym__unquoted_anonymous_prefix] = STATE(6783), - [sym_comment] = STATE(818), - [aux_sym_shebang_repeat1] = STATE(1050), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(816), - [sym__newline] = ACTIONS(2830), - [anon_sym_SEMI] = ACTIONS(2833), - [anon_sym_PIPE] = ACTIONS(2833), - [anon_sym_err_GT_PIPE] = ACTIONS(2833), - [anon_sym_out_GT_PIPE] = ACTIONS(2833), - [anon_sym_e_GT_PIPE] = ACTIONS(2833), - [anon_sym_o_GT_PIPE] = ACTIONS(2833), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2833), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2833), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2833), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2833), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2833), - [anon_sym_DOLLAR] = ACTIONS(2686), - [anon_sym_DASH_DASH] = ACTIONS(2688), - [anon_sym_DASH2] = ACTIONS(2690), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_DOT_DOT] = ACTIONS(2694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2696), - [anon_sym_DOT_DOT_LT] = ACTIONS(2696), - [anon_sym_null] = ACTIONS(2698), - [anon_sym_true] = ACTIONS(2700), - [anon_sym_false] = ACTIONS(2700), - [aux_sym__val_number_decimal_token1] = ACTIONS(2702), - [aux_sym__val_number_decimal_token2] = ACTIONS(2704), - [aux_sym__val_number_decimal_token3] = ACTIONS(2706), - [aux_sym__val_number_decimal_token4] = ACTIONS(2708), - [aux_sym__val_number_token1] = ACTIONS(2710), - [aux_sym__val_number_token2] = ACTIONS(2710), - [aux_sym__val_number_token3] = ACTIONS(2710), - [aux_sym__val_number_token4] = ACTIONS(2712), - [aux_sym__val_number_token5] = ACTIONS(2712), - [aux_sym__val_number_token6] = ACTIONS(2712), - [anon_sym_0b] = ACTIONS(2714), - [anon_sym_0o] = ACTIONS(2716), - [anon_sym_0x] = ACTIONS(2716), - [sym_val_date] = ACTIONS(2718), - [anon_sym_DQUOTE] = ACTIONS(2720), - [sym__str_single_quotes] = ACTIONS(2722), - [sym__str_back_ticks] = ACTIONS(2722), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2726), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(2732), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2734), + [764] = { + [sym_comment] = STATE(764), + [anon_sym_STAR_STAR] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_mod] = ACTIONS(1493), + [anon_sym_SLASH_SLASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_bit_DASHshl] = ACTIONS(1493), + [anon_sym_bit_DASHshr] = ACTIONS(1493), + [anon_sym_EQ_TILDE] = ACTIONS(1493), + [anon_sym_BANG_TILDE] = ACTIONS(1493), + [anon_sym_bit_DASHand] = ACTIONS(1493), + [anon_sym_bit_DASHxor] = ACTIONS(1493), + [anon_sym_bit_DASHor] = ACTIONS(1493), + [anon_sym_and] = ACTIONS(1493), + [anon_sym_xor] = ACTIONS(1493), + [anon_sym_or] = ACTIONS(1493), + [anon_sym_in] = ACTIONS(1493), + [anon_sym_not_DASHin] = ACTIONS(1493), + [anon_sym_has] = ACTIONS(1493), + [anon_sym_not_DASHhas] = ACTIONS(1493), + [anon_sym_starts_DASHwith] = ACTIONS(1493), + [anon_sym_ends_DASHwith] = ACTIONS(1493), + [anon_sym_EQ_EQ] = ACTIONS(1493), + [anon_sym_BANG_EQ] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1493), + [aux_sym_cmd_identifier_token41] = ACTIONS(1491), + [sym__newline] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_err_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_GT_PIPE] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1491), + [anon_sym_GT2] = ACTIONS(1491), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_in2] = ACTIONS(1491), + [anon_sym_RBRACE] = ACTIONS(1491), + [anon_sym_STAR2] = ACTIONS(1491), + [anon_sym_and2] = ACTIONS(1491), + [anon_sym_xor2] = ACTIONS(1491), + [anon_sym_or2] = ACTIONS(1491), + [anon_sym_not_DASHin2] = ACTIONS(1491), + [anon_sym_has2] = ACTIONS(1491), + [anon_sym_not_DASHhas2] = ACTIONS(1491), + [anon_sym_starts_DASHwith2] = ACTIONS(1491), + [anon_sym_ends_DASHwith2] = ACTIONS(1491), + [anon_sym_EQ_EQ2] = ACTIONS(1491), + [anon_sym_BANG_EQ2] = ACTIONS(1491), + [anon_sym_LT2] = ACTIONS(1491), + [anon_sym_LT_EQ2] = ACTIONS(1491), + [anon_sym_GT_EQ2] = ACTIONS(1491), + [anon_sym_EQ_TILDE2] = ACTIONS(1491), + [anon_sym_BANG_TILDE2] = ACTIONS(1491), + [anon_sym_STAR_STAR2] = ACTIONS(1491), + [anon_sym_PLUS_PLUS2] = ACTIONS(1491), + [anon_sym_SLASH2] = ACTIONS(1491), + [anon_sym_mod2] = ACTIONS(1491), + [anon_sym_SLASH_SLASH2] = ACTIONS(1491), + [anon_sym_PLUS2] = ACTIONS(1491), + [anon_sym_bit_DASHshl2] = ACTIONS(1491), + [anon_sym_bit_DASHshr2] = ACTIONS(1491), + [anon_sym_bit_DASHand2] = ACTIONS(1491), + [anon_sym_bit_DASHxor2] = ACTIONS(1491), + [anon_sym_bit_DASHor2] = ACTIONS(1491), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [sym_filesize_unit] = ACTIONS(1491), + [sym_duration_unit] = ACTIONS(1493), + [anon_sym_err_GT] = ACTIONS(1491), + [anon_sym_out_GT] = ACTIONS(1491), + [anon_sym_e_GT] = ACTIONS(1491), + [anon_sym_o_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT] = ACTIONS(1491), + [anon_sym_err_GT_GT] = ACTIONS(1491), + [anon_sym_out_GT_GT] = ACTIONS(1491), + [anon_sym_e_GT_GT] = ACTIONS(1491), + [anon_sym_o_GT_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(3), }, - [819] = { - [sym_expr_parenthesized] = STATE(1560), + [765] = { + [sym_expr_parenthesized] = STATE(1575), [sym_val_range] = STATE(1892), - [sym__val_range] = STATE(7821), - [sym__val_range_with_end] = STATE(7494), + [sym__val_range] = STATE(7095), + [sym__val_range_with_end] = STATE(6952), [sym__value] = STATE(1892), - [sym_val_nothing] = STATE(1840), - [sym_val_bool] = STATE(1602), - [sym_val_variable] = STATE(1569), - [sym_val_number] = STATE(1840), - [sym__val_number_decimal] = STATE(1327), - [sym__val_number] = STATE(1971), - [sym_val_duration] = STATE(1840), - [sym_val_filesize] = STATE(1840), - [sym_val_binary] = STATE(1840), - [sym_val_string] = STATE(1840), - [sym__raw_str] = STATE(1896), - [sym__str_double_quotes] = STATE(1896), - [sym_val_interpolated] = STATE(1840), - [sym__inter_single_quotes] = STATE(1846), - [sym__inter_double_quotes] = STATE(1864), - [sym_val_list] = STATE(1840), - [sym_val_record] = STATE(1840), - [sym_val_table] = STATE(1840), - [sym_val_closure] = STATE(1840), + [sym_val_nothing] = STATE(1680), + [sym_val_bool] = STATE(1539), + [sym_val_variable] = STATE(1470), + [sym_val_number] = STATE(1680), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1686), + [sym_val_duration] = STATE(1680), + [sym_val_filesize] = STATE(1680), + [sym_val_binary] = STATE(1680), + [sym_val_string] = STATE(1680), + [sym__raw_str] = STATE(1800), + [sym__str_double_quotes] = STATE(1800), + [sym_val_interpolated] = STATE(1680), + [sym__inter_single_quotes] = STATE(1858), + [sym__inter_double_quotes] = STATE(1859), + [sym_val_list] = STATE(1680), + [sym_val_record] = STATE(1680), + [sym_val_table] = STATE(1680), + [sym_val_closure] = STATE(1680), [sym__flag] = STATE(1892), - [sym_short_flag] = STATE(1895), - [sym_long_flag] = STATE(1895), - [sym_unquoted] = STATE(1621), - [sym__unquoted_with_expr] = STATE(1897), - [sym__unquoted_anonymous_prefix] = STATE(6783), - [sym_comment] = STATE(819), - [aux_sym_ctrl_do_repeat2] = STATE(817), - [sym__newline] = ACTIONS(2937), - [anon_sym_SEMI] = ACTIONS(2937), - [anon_sym_PIPE] = ACTIONS(2937), - [anon_sym_err_GT_PIPE] = ACTIONS(2937), - [anon_sym_out_GT_PIPE] = ACTIONS(2937), - [anon_sym_e_GT_PIPE] = ACTIONS(2937), - [anon_sym_o_GT_PIPE] = ACTIONS(2937), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2937), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2937), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2937), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2937), - [anon_sym_DOLLAR] = ACTIONS(2686), - [anon_sym_DASH_DASH] = ACTIONS(2688), - [anon_sym_DASH2] = ACTIONS(2690), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_RBRACE] = ACTIONS(2937), - [anon_sym_DOT_DOT] = ACTIONS(2694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2696), - [anon_sym_DOT_DOT_LT] = ACTIONS(2696), - [anon_sym_null] = ACTIONS(2698), - [anon_sym_true] = ACTIONS(2700), - [anon_sym_false] = ACTIONS(2700), - [aux_sym__val_number_decimal_token1] = ACTIONS(2702), - [aux_sym__val_number_decimal_token2] = ACTIONS(2704), - [aux_sym__val_number_decimal_token3] = ACTIONS(2706), - [aux_sym__val_number_decimal_token4] = ACTIONS(2708), - [aux_sym__val_number_token1] = ACTIONS(2710), - [aux_sym__val_number_token2] = ACTIONS(2710), - [aux_sym__val_number_token3] = ACTIONS(2710), - [aux_sym__val_number_token4] = ACTIONS(2712), - [aux_sym__val_number_token5] = ACTIONS(2712), - [aux_sym__val_number_token6] = ACTIONS(2712), - [anon_sym_0b] = ACTIONS(2714), - [anon_sym_0o] = ACTIONS(2716), - [anon_sym_0x] = ACTIONS(2716), - [sym_val_date] = ACTIONS(2718), - [anon_sym_DQUOTE] = ACTIONS(2720), - [sym__str_single_quotes] = ACTIONS(2722), - [sym__str_back_ticks] = ACTIONS(2722), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2726), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(2732), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2734), - }, - [820] = { - [sym_expr_parenthesized] = STATE(1617), - [sym_val_range] = STATE(2059), - [sym__val_range] = STATE(7585), - [sym__val_range_with_end] = STATE(7427), - [sym__value] = STATE(2059), - [sym_val_nothing] = STATE(2003), - [sym_val_bool] = STATE(1706), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(2003), - [sym__val_number_decimal] = STATE(1332), - [sym__val_number] = STATE(2005), - [sym_val_duration] = STATE(2003), - [sym_val_filesize] = STATE(2003), - [sym_val_binary] = STATE(2003), - [sym_val_string] = STATE(2003), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2003), - [sym__inter_single_quotes] = STATE(2112), - [sym__inter_double_quotes] = STATE(2113), - [sym_val_list] = STATE(2003), - [sym_val_record] = STATE(2003), - [sym_val_table] = STATE(2003), - [sym_val_closure] = STATE(2003), - [sym__flag] = STATE(2059), - [sym_short_flag] = STATE(2088), - [sym_long_flag] = STATE(2088), - [sym_unquoted] = STATE(1696), - [sym__unquoted_with_expr] = STATE(2060), - [sym__unquoted_anonymous_prefix] = STATE(6894), - [sym_comment] = STATE(820), - [aux_sym_ctrl_do_repeat2] = STATE(832), - [ts_builtin_sym_end] = ACTIONS(2680), - [sym__newline] = ACTIONS(2680), - [anon_sym_SEMI] = ACTIONS(2680), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_err_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_GT_PIPE] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_DOLLAR] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(2945), - [anon_sym_DASH2] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DOT_DOT] = ACTIONS(2951), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2953), - [anon_sym_DOT_DOT_LT] = ACTIONS(2953), - [anon_sym_null] = ACTIONS(2955), - [anon_sym_true] = ACTIONS(2957), - [anon_sym_false] = ACTIONS(2957), - [aux_sym__val_number_decimal_token1] = ACTIONS(2959), - [aux_sym__val_number_decimal_token2] = ACTIONS(2961), - [aux_sym__val_number_decimal_token3] = ACTIONS(2963), - [aux_sym__val_number_decimal_token4] = ACTIONS(2965), - [aux_sym__val_number_token1] = ACTIONS(2967), - [aux_sym__val_number_token2] = ACTIONS(2967), - [aux_sym__val_number_token3] = ACTIONS(2967), - [aux_sym__val_number_token4] = ACTIONS(2969), - [aux_sym__val_number_token5] = ACTIONS(2969), - [aux_sym__val_number_token6] = ACTIONS(2969), - [anon_sym_0b] = ACTIONS(2971), - [anon_sym_0o] = ACTIONS(2973), - [anon_sym_0x] = ACTIONS(2973), - [sym_val_date] = ACTIONS(2975), - [anon_sym_DQUOTE] = ACTIONS(2977), - [sym__str_single_quotes] = ACTIONS(2979), - [sym__str_back_ticks] = ACTIONS(2979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2981), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2983), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(2985), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2987), - }, - [821] = { - [sym_comment] = STATE(821), - [aux_sym_cmd_identifier_token1] = ACTIONS(1280), - [aux_sym_cmd_identifier_token2] = ACTIONS(1278), - [aux_sym_cmd_identifier_token3] = ACTIONS(1278), - [aux_sym_cmd_identifier_token4] = ACTIONS(1278), - [aux_sym_cmd_identifier_token5] = ACTIONS(1278), - [aux_sym_cmd_identifier_token6] = ACTIONS(1278), - [aux_sym_cmd_identifier_token7] = ACTIONS(1278), - [aux_sym_cmd_identifier_token8] = ACTIONS(1278), - [aux_sym_cmd_identifier_token9] = ACTIONS(1280), - [aux_sym_cmd_identifier_token10] = ACTIONS(1278), - [aux_sym_cmd_identifier_token11] = ACTIONS(1278), - [aux_sym_cmd_identifier_token12] = ACTIONS(1278), - [aux_sym_cmd_identifier_token13] = ACTIONS(1280), - [aux_sym_cmd_identifier_token14] = ACTIONS(1278), - [aux_sym_cmd_identifier_token15] = ACTIONS(1280), - [aux_sym_cmd_identifier_token16] = ACTIONS(1278), - [aux_sym_cmd_identifier_token17] = ACTIONS(1278), - [aux_sym_cmd_identifier_token18] = ACTIONS(1278), - [aux_sym_cmd_identifier_token19] = ACTIONS(1278), - [aux_sym_cmd_identifier_token20] = ACTIONS(1278), - [aux_sym_cmd_identifier_token21] = ACTIONS(1278), - [aux_sym_cmd_identifier_token22] = ACTIONS(1278), - [aux_sym_cmd_identifier_token23] = ACTIONS(1278), - [aux_sym_cmd_identifier_token24] = ACTIONS(1278), - [aux_sym_cmd_identifier_token25] = ACTIONS(1278), - [aux_sym_cmd_identifier_token26] = ACTIONS(1278), - [aux_sym_cmd_identifier_token27] = ACTIONS(1278), - [aux_sym_cmd_identifier_token28] = ACTIONS(1278), - [aux_sym_cmd_identifier_token29] = ACTIONS(1278), - [aux_sym_cmd_identifier_token30] = ACTIONS(1278), - [aux_sym_cmd_identifier_token31] = ACTIONS(1278), - [aux_sym_cmd_identifier_token32] = ACTIONS(1278), - [aux_sym_cmd_identifier_token33] = ACTIONS(1278), - [aux_sym_cmd_identifier_token34] = ACTIONS(1280), - [aux_sym_cmd_identifier_token35] = ACTIONS(1278), - [aux_sym_cmd_identifier_token36] = ACTIONS(1278), - [aux_sym_cmd_identifier_token37] = ACTIONS(1278), - [aux_sym_cmd_identifier_token38] = ACTIONS(1280), - [aux_sym_cmd_identifier_token39] = ACTIONS(1278), - [aux_sym_cmd_identifier_token40] = ACTIONS(1278), - [sym__newline] = ACTIONS(1278), - [anon_sym_PIPE] = ACTIONS(1278), - [anon_sym_err_GT_PIPE] = ACTIONS(1278), - [anon_sym_out_GT_PIPE] = ACTIONS(1278), - [anon_sym_e_GT_PIPE] = ACTIONS(1278), - [anon_sym_o_GT_PIPE] = ACTIONS(1278), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1278), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1278), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1278), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_DOLLAR] = ACTIONS(1280), - [anon_sym_DASH2] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [anon_sym_try] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_where] = ACTIONS(1278), - [aux_sym_expr_unary_token1] = ACTIONS(1278), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1278), - [anon_sym_DOT_DOT_LT] = ACTIONS(1278), - [anon_sym_null] = ACTIONS(1280), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1278), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), - [aux_sym__val_number_token1] = ACTIONS(1278), - [aux_sym__val_number_token2] = ACTIONS(1278), - [aux_sym__val_number_token3] = ACTIONS(1278), - [aux_sym__val_number_token4] = ACTIONS(1280), - [aux_sym__val_number_token5] = ACTIONS(1280), - [aux_sym__val_number_token6] = ACTIONS(1280), - [anon_sym_0b] = ACTIONS(1280), - [anon_sym_0o] = ACTIONS(1280), - [anon_sym_0x] = ACTIONS(1280), - [sym_val_date] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym__str_single_quotes] = ACTIONS(1278), - [sym__str_back_ticks] = ACTIONS(1278), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1278), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1278), - [aux_sym_env_var_token1] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1278), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1278), - }, - [822] = { - [sym_expr_parenthesized] = STATE(1617), - [sym_val_range] = STATE(2059), - [sym__val_range] = STATE(7585), - [sym__val_range_with_end] = STATE(7427), - [sym__value] = STATE(2059), - [sym_val_nothing] = STATE(2003), - [sym_val_bool] = STATE(1706), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(2003), - [sym__val_number_decimal] = STATE(1332), - [sym__val_number] = STATE(2005), - [sym_val_duration] = STATE(2003), - [sym_val_filesize] = STATE(2003), - [sym_val_binary] = STATE(2003), - [sym_val_string] = STATE(2003), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2003), - [sym__inter_single_quotes] = STATE(2112), - [sym__inter_double_quotes] = STATE(2113), - [sym_val_list] = STATE(2003), - [sym_val_record] = STATE(2003), - [sym_val_table] = STATE(2003), - [sym_val_closure] = STATE(2003), - [sym__flag] = STATE(2059), - [sym_short_flag] = STATE(2088), - [sym_long_flag] = STATE(2088), - [sym_unquoted] = STATE(1696), - [sym__unquoted_with_expr] = STATE(2060), - [sym__unquoted_anonymous_prefix] = STATE(6894), - [sym_comment] = STATE(822), - [aux_sym_ctrl_do_repeat2] = STATE(833), - [ts_builtin_sym_end] = ACTIONS(2680), - [sym__newline] = ACTIONS(2680), - [anon_sym_SEMI] = ACTIONS(2680), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_err_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_GT_PIPE] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_DOLLAR] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(2945), - [anon_sym_DASH2] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DOT_DOT] = ACTIONS(2951), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2953), - [anon_sym_DOT_DOT_LT] = ACTIONS(2953), - [anon_sym_null] = ACTIONS(2955), - [anon_sym_true] = ACTIONS(2957), - [anon_sym_false] = ACTIONS(2957), - [aux_sym__val_number_decimal_token1] = ACTIONS(2959), - [aux_sym__val_number_decimal_token2] = ACTIONS(2961), - [aux_sym__val_number_decimal_token3] = ACTIONS(2963), - [aux_sym__val_number_decimal_token4] = ACTIONS(2965), - [aux_sym__val_number_token1] = ACTIONS(2967), - [aux_sym__val_number_token2] = ACTIONS(2967), - [aux_sym__val_number_token3] = ACTIONS(2967), - [aux_sym__val_number_token4] = ACTIONS(2969), - [aux_sym__val_number_token5] = ACTIONS(2969), - [aux_sym__val_number_token6] = ACTIONS(2969), - [anon_sym_0b] = ACTIONS(2971), - [anon_sym_0o] = ACTIONS(2973), - [anon_sym_0x] = ACTIONS(2973), - [sym_val_date] = ACTIONS(2975), - [anon_sym_DQUOTE] = ACTIONS(2977), - [sym__str_single_quotes] = ACTIONS(2979), - [sym__str_back_ticks] = ACTIONS(2979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2981), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2983), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(2985), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2987), + [sym_short_flag] = STATE(1720), + [sym_long_flag] = STATE(1720), + [sym_unquoted] = STATE(1582), + [sym__unquoted_with_expr] = STATE(1936), + [sym__unquoted_anonymous_prefix] = STATE(6407), + [sym_comment] = STATE(765), + [aux_sym_shebang_repeat1] = STATE(997), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(781), + [sym__newline] = ACTIONS(2624), + [anon_sym_SEMI] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_err_GT_PIPE] = ACTIONS(2627), + [anon_sym_out_GT_PIPE] = ACTIONS(2627), + [anon_sym_e_GT_PIPE] = ACTIONS(2627), + [anon_sym_o_GT_PIPE] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_LPAREN] = ACTIONS(2631), + [anon_sym_RPAREN] = ACTIONS(2627), + [anon_sym_DOLLAR] = ACTIONS(2633), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_DASH2] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_DOT_DOT] = ACTIONS(2641), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2643), + [anon_sym_DOT_DOT_LT] = ACTIONS(2643), + [anon_sym_null] = ACTIONS(2645), + [anon_sym_true] = ACTIONS(2647), + [anon_sym_false] = ACTIONS(2647), + [aux_sym__val_number_decimal_token1] = ACTIONS(2649), + [aux_sym__val_number_decimal_token2] = ACTIONS(2651), + [aux_sym__val_number_decimal_token3] = ACTIONS(2653), + [aux_sym__val_number_decimal_token4] = ACTIONS(2655), + [aux_sym__val_number_token1] = ACTIONS(2657), + [aux_sym__val_number_token2] = ACTIONS(2657), + [aux_sym__val_number_token3] = ACTIONS(2657), + [aux_sym__val_number_token4] = ACTIONS(2659), + [aux_sym__val_number_token5] = ACTIONS(2659), + [aux_sym__val_number_token6] = ACTIONS(2659), + [anon_sym_0b] = ACTIONS(2661), + [anon_sym_0o] = ACTIONS(2663), + [anon_sym_0x] = ACTIONS(2663), + [sym_val_date] = ACTIONS(2665), + [anon_sym_DQUOTE] = ACTIONS(2667), + [sym__str_single_quotes] = ACTIONS(2669), + [sym__str_back_ticks] = ACTIONS(2669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2673), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(2679), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2681), }, - [823] = { - [sym_comment] = STATE(823), - [aux_sym_cmd_identifier_token1] = ACTIONS(2664), - [aux_sym_cmd_identifier_token2] = ACTIONS(2666), - [aux_sym_cmd_identifier_token3] = ACTIONS(2666), - [aux_sym_cmd_identifier_token4] = ACTIONS(2666), - [aux_sym_cmd_identifier_token5] = ACTIONS(2666), - [aux_sym_cmd_identifier_token6] = ACTIONS(2666), - [aux_sym_cmd_identifier_token7] = ACTIONS(2666), - [aux_sym_cmd_identifier_token8] = ACTIONS(2666), - [aux_sym_cmd_identifier_token9] = ACTIONS(2664), - [aux_sym_cmd_identifier_token10] = ACTIONS(2666), - [aux_sym_cmd_identifier_token11] = ACTIONS(2666), - [aux_sym_cmd_identifier_token12] = ACTIONS(2666), - [aux_sym_cmd_identifier_token13] = ACTIONS(2664), - [aux_sym_cmd_identifier_token14] = ACTIONS(2666), - [aux_sym_cmd_identifier_token15] = ACTIONS(2664), - [aux_sym_cmd_identifier_token16] = ACTIONS(2666), - [aux_sym_cmd_identifier_token17] = ACTIONS(2666), - [aux_sym_cmd_identifier_token18] = ACTIONS(2666), - [aux_sym_cmd_identifier_token19] = ACTIONS(2666), - [aux_sym_cmd_identifier_token20] = ACTIONS(2666), - [aux_sym_cmd_identifier_token21] = ACTIONS(2666), - [aux_sym_cmd_identifier_token22] = ACTIONS(2666), - [aux_sym_cmd_identifier_token23] = ACTIONS(2666), - [aux_sym_cmd_identifier_token24] = ACTIONS(2666), - [aux_sym_cmd_identifier_token25] = ACTIONS(2666), - [aux_sym_cmd_identifier_token26] = ACTIONS(2666), - [aux_sym_cmd_identifier_token27] = ACTIONS(2666), - [aux_sym_cmd_identifier_token28] = ACTIONS(2666), - [aux_sym_cmd_identifier_token29] = ACTIONS(2666), - [aux_sym_cmd_identifier_token30] = ACTIONS(2666), - [aux_sym_cmd_identifier_token31] = ACTIONS(2666), - [aux_sym_cmd_identifier_token32] = ACTIONS(2666), - [aux_sym_cmd_identifier_token33] = ACTIONS(2666), - [aux_sym_cmd_identifier_token34] = ACTIONS(2664), - [aux_sym_cmd_identifier_token35] = ACTIONS(2666), - [aux_sym_cmd_identifier_token36] = ACTIONS(2666), - [aux_sym_cmd_identifier_token37] = ACTIONS(2666), - [aux_sym_cmd_identifier_token38] = ACTIONS(2664), - [aux_sym_cmd_identifier_token39] = ACTIONS(2666), - [aux_sym_cmd_identifier_token40] = ACTIONS(2666), - [sym__newline] = ACTIONS(2666), - [anon_sym_PIPE] = ACTIONS(2666), - [anon_sym_err_GT_PIPE] = ACTIONS(2666), - [anon_sym_out_GT_PIPE] = ACTIONS(2666), - [anon_sym_e_GT_PIPE] = ACTIONS(2666), - [anon_sym_o_GT_PIPE] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_LPAREN] = ACTIONS(2666), - [anon_sym_DOLLAR] = ACTIONS(2664), - [anon_sym_DASH2] = ACTIONS(2664), - [anon_sym_break] = ACTIONS(2664), - [anon_sym_continue] = ACTIONS(2664), - [anon_sym_do] = ACTIONS(2664), - [anon_sym_if] = ACTIONS(2664), - [anon_sym_match] = ACTIONS(2664), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_DOT_DOT] = ACTIONS(2664), - [anon_sym_try] = ACTIONS(2664), - [anon_sym_return] = ACTIONS(2664), - [anon_sym_where] = ACTIONS(2666), - [aux_sym_expr_unary_token1] = ACTIONS(2666), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2666), - [anon_sym_DOT_DOT_LT] = ACTIONS(2666), - [anon_sym_null] = ACTIONS(2664), - [anon_sym_true] = ACTIONS(2664), - [anon_sym_false] = ACTIONS(2664), - [aux_sym__val_number_decimal_token1] = ACTIONS(2664), - [aux_sym__val_number_decimal_token2] = ACTIONS(2666), - [aux_sym__val_number_decimal_token3] = ACTIONS(2666), - [aux_sym__val_number_decimal_token4] = ACTIONS(2666), - [aux_sym__val_number_token1] = ACTIONS(2666), - [aux_sym__val_number_token2] = ACTIONS(2666), - [aux_sym__val_number_token3] = ACTIONS(2666), - [aux_sym__val_number_token4] = ACTIONS(2664), - [aux_sym__val_number_token5] = ACTIONS(2664), - [aux_sym__val_number_token6] = ACTIONS(2664), - [anon_sym_0b] = ACTIONS(2664), - [anon_sym_0o] = ACTIONS(2664), - [anon_sym_0x] = ACTIONS(2664), - [sym_val_date] = ACTIONS(2666), - [anon_sym_DQUOTE] = ACTIONS(2666), - [sym__str_single_quotes] = ACTIONS(2666), - [sym__str_back_ticks] = ACTIONS(2666), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2666), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2666), - [aux_sym_env_var_token1] = ACTIONS(2664), - [anon_sym_CARET] = ACTIONS(2666), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2666), + [766] = { + [sym_comment] = STATE(766), + [anon_sym_STAR_STAR] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_mod] = ACTIONS(1493), + [anon_sym_SLASH_SLASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_bit_DASHshl] = ACTIONS(1493), + [anon_sym_bit_DASHshr] = ACTIONS(1493), + [anon_sym_EQ_TILDE] = ACTIONS(1493), + [anon_sym_BANG_TILDE] = ACTIONS(1493), + [anon_sym_bit_DASHand] = ACTIONS(1493), + [anon_sym_bit_DASHxor] = ACTIONS(1493), + [anon_sym_bit_DASHor] = ACTIONS(1493), + [anon_sym_and] = ACTIONS(1493), + [anon_sym_xor] = ACTIONS(1493), + [anon_sym_or] = ACTIONS(1493), + [anon_sym_in] = ACTIONS(1493), + [anon_sym_not_DASHin] = ACTIONS(1493), + [anon_sym_has] = ACTIONS(1493), + [anon_sym_not_DASHhas] = ACTIONS(1493), + [anon_sym_starts_DASHwith] = ACTIONS(1493), + [anon_sym_ends_DASHwith] = ACTIONS(1493), + [anon_sym_EQ_EQ] = ACTIONS(1493), + [anon_sym_BANG_EQ] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1493), + [aux_sym_cmd_identifier_token41] = ACTIONS(1491), + [sym__newline] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_err_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_GT_PIPE] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1491), + [anon_sym_GT2] = ACTIONS(1491), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_in2] = ACTIONS(1491), + [anon_sym_STAR2] = ACTIONS(1491), + [anon_sym_and2] = ACTIONS(1491), + [anon_sym_xor2] = ACTIONS(1491), + [anon_sym_or2] = ACTIONS(1491), + [anon_sym_not_DASHin2] = ACTIONS(1491), + [anon_sym_has2] = ACTIONS(1491), + [anon_sym_not_DASHhas2] = ACTIONS(1491), + [anon_sym_starts_DASHwith2] = ACTIONS(1491), + [anon_sym_ends_DASHwith2] = ACTIONS(1491), + [anon_sym_EQ_EQ2] = ACTIONS(1491), + [anon_sym_BANG_EQ2] = ACTIONS(1491), + [anon_sym_LT2] = ACTIONS(1491), + [anon_sym_LT_EQ2] = ACTIONS(1491), + [anon_sym_GT_EQ2] = ACTIONS(1491), + [anon_sym_EQ_TILDE2] = ACTIONS(1491), + [anon_sym_BANG_TILDE2] = ACTIONS(1491), + [anon_sym_STAR_STAR2] = ACTIONS(1491), + [anon_sym_PLUS_PLUS2] = ACTIONS(1491), + [anon_sym_SLASH2] = ACTIONS(1491), + [anon_sym_mod2] = ACTIONS(1491), + [anon_sym_SLASH_SLASH2] = ACTIONS(1491), + [anon_sym_PLUS2] = ACTIONS(1491), + [anon_sym_bit_DASHshl2] = ACTIONS(1491), + [anon_sym_bit_DASHshr2] = ACTIONS(1491), + [anon_sym_bit_DASHand2] = ACTIONS(1491), + [anon_sym_bit_DASHxor2] = ACTIONS(1491), + [anon_sym_bit_DASHor2] = ACTIONS(1491), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [sym_filesize_unit] = ACTIONS(1491), + [sym_duration_unit] = ACTIONS(1493), + [anon_sym_err_GT] = ACTIONS(1491), + [anon_sym_out_GT] = ACTIONS(1491), + [anon_sym_e_GT] = ACTIONS(1491), + [anon_sym_o_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT] = ACTIONS(1491), + [anon_sym_err_GT_GT] = ACTIONS(1491), + [anon_sym_out_GT_GT] = ACTIONS(1491), + [anon_sym_e_GT_GT] = ACTIONS(1491), + [anon_sym_o_GT_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(3), }, - [824] = { - [sym_expr_parenthesized] = STATE(1617), - [sym_val_range] = STATE(2059), - [sym__val_range] = STATE(7585), - [sym__val_range_with_end] = STATE(7427), - [sym__value] = STATE(2059), - [sym_val_nothing] = STATE(2003), - [sym_val_bool] = STATE(1706), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(2003), - [sym__val_number_decimal] = STATE(1332), - [sym__val_number] = STATE(2005), - [sym_val_duration] = STATE(2003), - [sym_val_filesize] = STATE(2003), - [sym_val_binary] = STATE(2003), - [sym_val_string] = STATE(2003), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2003), - [sym__inter_single_quotes] = STATE(2112), - [sym__inter_double_quotes] = STATE(2113), - [sym_val_list] = STATE(2003), - [sym_val_record] = STATE(2003), - [sym_val_table] = STATE(2003), - [sym_val_closure] = STATE(2003), - [sym__flag] = STATE(2059), - [sym_short_flag] = STATE(2088), - [sym_long_flag] = STATE(2088), - [sym_unquoted] = STATE(1696), - [sym__unquoted_with_expr] = STATE(2060), - [sym__unquoted_anonymous_prefix] = STATE(6894), - [sym_comment] = STATE(824), - [aux_sym_ctrl_do_repeat2] = STATE(820), - [ts_builtin_sym_end] = ACTIONS(2937), - [sym__newline] = ACTIONS(2937), - [anon_sym_SEMI] = ACTIONS(2937), - [anon_sym_PIPE] = ACTIONS(2937), - [anon_sym_err_GT_PIPE] = ACTIONS(2937), - [anon_sym_out_GT_PIPE] = ACTIONS(2937), - [anon_sym_e_GT_PIPE] = ACTIONS(2937), - [anon_sym_o_GT_PIPE] = ACTIONS(2937), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2937), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2937), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2937), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_DOLLAR] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(2945), - [anon_sym_DASH2] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DOT_DOT] = ACTIONS(2951), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2953), - [anon_sym_DOT_DOT_LT] = ACTIONS(2953), - [anon_sym_null] = ACTIONS(2955), - [anon_sym_true] = ACTIONS(2957), - [anon_sym_false] = ACTIONS(2957), - [aux_sym__val_number_decimal_token1] = ACTIONS(2959), - [aux_sym__val_number_decimal_token2] = ACTIONS(2961), - [aux_sym__val_number_decimal_token3] = ACTIONS(2963), - [aux_sym__val_number_decimal_token4] = ACTIONS(2965), - [aux_sym__val_number_token1] = ACTIONS(2967), - [aux_sym__val_number_token2] = ACTIONS(2967), - [aux_sym__val_number_token3] = ACTIONS(2967), - [aux_sym__val_number_token4] = ACTIONS(2969), - [aux_sym__val_number_token5] = ACTIONS(2969), - [aux_sym__val_number_token6] = ACTIONS(2969), - [anon_sym_0b] = ACTIONS(2971), - [anon_sym_0o] = ACTIONS(2973), - [anon_sym_0x] = ACTIONS(2973), - [sym_val_date] = ACTIONS(2975), - [anon_sym_DQUOTE] = ACTIONS(2977), - [sym__str_single_quotes] = ACTIONS(2979), - [sym__str_back_ticks] = ACTIONS(2979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2981), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2983), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(2985), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2987), + [767] = { + [sym_comment] = STATE(767), + [aux_sym_shebang_repeat1] = STATE(767), + [aux_sym_cmd_identifier_token1] = ACTIONS(1272), + [aux_sym_cmd_identifier_token2] = ACTIONS(1274), + [aux_sym_cmd_identifier_token3] = ACTIONS(1274), + [aux_sym_cmd_identifier_token4] = ACTIONS(1274), + [aux_sym_cmd_identifier_token5] = ACTIONS(1274), + [aux_sym_cmd_identifier_token6] = ACTIONS(1274), + [aux_sym_cmd_identifier_token7] = ACTIONS(1274), + [aux_sym_cmd_identifier_token8] = ACTIONS(1274), + [aux_sym_cmd_identifier_token9] = ACTIONS(1272), + [aux_sym_cmd_identifier_token10] = ACTIONS(1274), + [aux_sym_cmd_identifier_token11] = ACTIONS(1274), + [aux_sym_cmd_identifier_token12] = ACTIONS(1274), + [aux_sym_cmd_identifier_token13] = ACTIONS(1272), + [aux_sym_cmd_identifier_token14] = ACTIONS(1274), + [aux_sym_cmd_identifier_token15] = ACTIONS(1272), + [aux_sym_cmd_identifier_token16] = ACTIONS(1274), + [aux_sym_cmd_identifier_token17] = ACTIONS(1274), + [aux_sym_cmd_identifier_token18] = ACTIONS(1274), + [aux_sym_cmd_identifier_token19] = ACTIONS(1274), + [aux_sym_cmd_identifier_token20] = ACTIONS(1274), + [aux_sym_cmd_identifier_token21] = ACTIONS(1274), + [aux_sym_cmd_identifier_token22] = ACTIONS(1274), + [aux_sym_cmd_identifier_token23] = ACTIONS(1274), + [aux_sym_cmd_identifier_token24] = ACTIONS(1274), + [aux_sym_cmd_identifier_token25] = ACTIONS(1274), + [aux_sym_cmd_identifier_token26] = ACTIONS(1274), + [aux_sym_cmd_identifier_token27] = ACTIONS(1274), + [aux_sym_cmd_identifier_token28] = ACTIONS(1274), + [aux_sym_cmd_identifier_token29] = ACTIONS(1274), + [aux_sym_cmd_identifier_token30] = ACTIONS(1274), + [aux_sym_cmd_identifier_token31] = ACTIONS(1274), + [aux_sym_cmd_identifier_token32] = ACTIONS(1274), + [aux_sym_cmd_identifier_token33] = ACTIONS(1274), + [aux_sym_cmd_identifier_token34] = ACTIONS(1272), + [aux_sym_cmd_identifier_token35] = ACTIONS(1274), + [aux_sym_cmd_identifier_token36] = ACTIONS(1274), + [aux_sym_cmd_identifier_token37] = ACTIONS(1274), + [aux_sym_cmd_identifier_token38] = ACTIONS(1272), + [aux_sym_cmd_identifier_token39] = ACTIONS(1274), + [aux_sym_cmd_identifier_token40] = ACTIONS(1274), + [sym__newline] = ACTIONS(2683), + [anon_sym_PIPE] = ACTIONS(1274), + [anon_sym_err_GT_PIPE] = ACTIONS(1274), + [anon_sym_out_GT_PIPE] = ACTIONS(1274), + [anon_sym_e_GT_PIPE] = ACTIONS(1274), + [anon_sym_o_GT_PIPE] = ACTIONS(1274), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1274), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1274), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1274), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1274), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_DOLLAR] = ACTIONS(1272), + [anon_sym_DASH2] = ACTIONS(1272), + [anon_sym_break] = ACTIONS(1272), + [anon_sym_continue] = ACTIONS(1272), + [anon_sym_do] = ACTIONS(1272), + [anon_sym_if] = ACTIONS(1272), + [anon_sym_match] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_DOT_DOT] = ACTIONS(1272), + [anon_sym_try] = ACTIONS(1272), + [anon_sym_return] = ACTIONS(1272), + [anon_sym_where] = ACTIONS(1274), + [aux_sym_expr_unary_token1] = ACTIONS(1274), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1274), + [anon_sym_DOT_DOT_LT] = ACTIONS(1274), + [anon_sym_null] = ACTIONS(1272), + [anon_sym_true] = ACTIONS(1272), + [anon_sym_false] = ACTIONS(1272), + [aux_sym__val_number_decimal_token1] = ACTIONS(1272), + [aux_sym__val_number_decimal_token2] = ACTIONS(1274), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_token1] = ACTIONS(1274), + [aux_sym__val_number_token2] = ACTIONS(1274), + [aux_sym__val_number_token3] = ACTIONS(1274), + [aux_sym__val_number_token4] = ACTIONS(1272), + [aux_sym__val_number_token5] = ACTIONS(1272), + [aux_sym__val_number_token6] = ACTIONS(1272), + [anon_sym_0b] = ACTIONS(1272), + [anon_sym_0o] = ACTIONS(1272), + [anon_sym_0x] = ACTIONS(1272), + [sym_val_date] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1274), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1274), + [aux_sym_env_var_token1] = ACTIONS(1272), + [anon_sym_CARET] = ACTIONS(1274), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1274), }, - [825] = { - [sym_comment] = STATE(825), - [anon_sym_STAR_STAR] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_STAR] = ACTIONS(1715), - [anon_sym_SLASH] = ACTIONS(1715), - [anon_sym_mod] = ACTIONS(1717), - [anon_sym_SLASH_SLASH] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_bit_DASHshl] = ACTIONS(1717), - [anon_sym_bit_DASHshr] = ACTIONS(1717), - [anon_sym_EQ_TILDE] = ACTIONS(1717), - [anon_sym_BANG_TILDE] = ACTIONS(1717), - [anon_sym_bit_DASHand] = ACTIONS(1717), - [anon_sym_bit_DASHxor] = ACTIONS(1717), - [anon_sym_bit_DASHor] = ACTIONS(1717), - [anon_sym_and] = ACTIONS(1717), - [anon_sym_xor] = ACTIONS(1717), - [anon_sym_or] = ACTIONS(1717), - [anon_sym_in] = ACTIONS(1717), - [anon_sym_not_DASHin] = ACTIONS(1717), - [anon_sym_has] = ACTIONS(1717), - [anon_sym_not_DASHhas] = ACTIONS(1717), - [anon_sym_starts_DASHwith] = ACTIONS(1717), - [anon_sym_ends_DASHwith] = ACTIONS(1717), - [anon_sym_EQ_EQ] = ACTIONS(1717), - [anon_sym_BANG_EQ] = ACTIONS(1717), - [anon_sym_LT] = ACTIONS(1715), - [anon_sym_LT_EQ] = ACTIONS(1717), - [anon_sym_GT] = ACTIONS(1715), - [anon_sym_GT_EQ] = ACTIONS(1717), - [aux_sym_cmd_identifier_token41] = ACTIONS(1715), - [sym__newline] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_err_GT_PIPE] = ACTIONS(1715), - [anon_sym_out_GT_PIPE] = ACTIONS(1715), - [anon_sym_e_GT_PIPE] = ACTIONS(1715), - [anon_sym_o_GT_PIPE] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1715), - [anon_sym_GT2] = ACTIONS(1715), - [anon_sym_DASH2] = ACTIONS(1715), - [anon_sym_in2] = ACTIONS(1715), - [anon_sym_STAR2] = ACTIONS(1715), - [anon_sym_and2] = ACTIONS(1715), - [anon_sym_xor2] = ACTIONS(1715), - [anon_sym_or2] = ACTIONS(1715), - [anon_sym_not_DASHin2] = ACTIONS(1715), - [anon_sym_has2] = ACTIONS(1715), - [anon_sym_not_DASHhas2] = ACTIONS(1715), - [anon_sym_starts_DASHwith2] = ACTIONS(1715), - [anon_sym_ends_DASHwith2] = ACTIONS(1715), - [anon_sym_EQ_EQ2] = ACTIONS(1715), - [anon_sym_BANG_EQ2] = ACTIONS(1715), - [anon_sym_LT2] = ACTIONS(1715), - [anon_sym_LT_EQ2] = ACTIONS(1715), - [anon_sym_GT_EQ2] = ACTIONS(1715), - [anon_sym_EQ_TILDE2] = ACTIONS(1715), - [anon_sym_BANG_TILDE2] = ACTIONS(1715), - [anon_sym_STAR_STAR2] = ACTIONS(1715), - [anon_sym_PLUS_PLUS2] = ACTIONS(1715), - [anon_sym_SLASH2] = ACTIONS(1715), - [anon_sym_mod2] = ACTIONS(1715), - [anon_sym_SLASH_SLASH2] = ACTIONS(1715), - [anon_sym_PLUS2] = ACTIONS(1715), - [anon_sym_bit_DASHshl2] = ACTIONS(1715), - [anon_sym_bit_DASHshr2] = ACTIONS(1715), - [anon_sym_bit_DASHand2] = ACTIONS(1715), - [anon_sym_bit_DASHxor2] = ACTIONS(1715), - [anon_sym_bit_DASHor2] = ACTIONS(1715), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [sym_filesize_unit] = ACTIONS(1715), - [sym_duration_unit] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1715), - [anon_sym_out_GT_GT] = ACTIONS(1715), - [anon_sym_e_GT_GT] = ACTIONS(1715), - [anon_sym_o_GT_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(3), + [768] = { + [sym_expr_parenthesized] = STATE(1516), + [sym_val_range] = STATE(1749), + [sym__val_range] = STATE(7095), + [sym__val_range_with_end] = STATE(6952), + [sym__value] = STATE(1749), + [sym_val_nothing] = STATE(1680), + [sym_val_bool] = STATE(1539), + [sym_val_variable] = STATE(1470), + [sym_val_number] = STATE(1680), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1686), + [sym_val_duration] = STATE(1680), + [sym_val_filesize] = STATE(1680), + [sym_val_binary] = STATE(1680), + [sym_val_string] = STATE(1680), + [sym__raw_str] = STATE(1800), + [sym__str_double_quotes] = STATE(1800), + [sym_val_interpolated] = STATE(1680), + [sym__inter_single_quotes] = STATE(1858), + [sym__inter_double_quotes] = STATE(1859), + [sym_val_list] = STATE(1680), + [sym_val_record] = STATE(1680), + [sym_val_table] = STATE(1680), + [sym_val_closure] = STATE(1680), + [sym__flag] = STATE(1749), + [sym_short_flag] = STATE(1720), + [sym_long_flag] = STATE(1720), + [sym_unquoted] = STATE(1552), + [sym__unquoted_with_expr] = STATE(1754), + [sym__unquoted_anonymous_prefix] = STATE(6407), + [sym_comment] = STATE(768), + [aux_sym_ctrl_do_repeat2] = STATE(772), + [sym__newline] = ACTIONS(2686), + [anon_sym_SEMI] = ACTIONS(2686), + [anon_sym_PIPE] = ACTIONS(2686), + [anon_sym_err_GT_PIPE] = ACTIONS(2686), + [anon_sym_out_GT_PIPE] = ACTIONS(2686), + [anon_sym_e_GT_PIPE] = ACTIONS(2686), + [anon_sym_o_GT_PIPE] = ACTIONS(2686), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2686), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2686), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2686), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_LPAREN] = ACTIONS(2631), + [anon_sym_RPAREN] = ACTIONS(2686), + [anon_sym_DOLLAR] = ACTIONS(2633), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_DASH2] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_RBRACE] = ACTIONS(2686), + [anon_sym_DOT_DOT] = ACTIONS(2641), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2643), + [anon_sym_DOT_DOT_LT] = ACTIONS(2643), + [anon_sym_null] = ACTIONS(2645), + [anon_sym_true] = ACTIONS(2647), + [anon_sym_false] = ACTIONS(2647), + [aux_sym__val_number_decimal_token1] = ACTIONS(2649), + [aux_sym__val_number_decimal_token2] = ACTIONS(2651), + [aux_sym__val_number_decimal_token3] = ACTIONS(2653), + [aux_sym__val_number_decimal_token4] = ACTIONS(2655), + [aux_sym__val_number_token1] = ACTIONS(2657), + [aux_sym__val_number_token2] = ACTIONS(2657), + [aux_sym__val_number_token3] = ACTIONS(2657), + [aux_sym__val_number_token4] = ACTIONS(2659), + [aux_sym__val_number_token5] = ACTIONS(2659), + [aux_sym__val_number_token6] = ACTIONS(2659), + [anon_sym_0b] = ACTIONS(2661), + [anon_sym_0o] = ACTIONS(2663), + [anon_sym_0x] = ACTIONS(2663), + [sym_val_date] = ACTIONS(2665), + [anon_sym_DQUOTE] = ACTIONS(2667), + [sym__str_single_quotes] = ACTIONS(2669), + [sym__str_back_ticks] = ACTIONS(2669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2673), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(2679), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2681), }, - [826] = { - [sym_comment] = STATE(826), - [anon_sym_STAR_STAR] = ACTIONS(2572), - [anon_sym_PLUS_PLUS] = ACTIONS(2572), - [anon_sym_STAR] = ACTIONS(2574), - [anon_sym_SLASH] = ACTIONS(2574), - [anon_sym_mod] = ACTIONS(2572), - [anon_sym_SLASH_SLASH] = ACTIONS(2572), - [anon_sym_PLUS] = ACTIONS(2574), - [anon_sym_DASH] = ACTIONS(2572), - [anon_sym_bit_DASHshl] = ACTIONS(2572), - [anon_sym_bit_DASHshr] = ACTIONS(2572), - [anon_sym_EQ_TILDE] = ACTIONS(2572), - [anon_sym_BANG_TILDE] = ACTIONS(2572), - [anon_sym_bit_DASHand] = ACTIONS(2572), - [anon_sym_bit_DASHxor] = ACTIONS(2572), - [anon_sym_bit_DASHor] = ACTIONS(2572), - [anon_sym_and] = ACTIONS(2572), - [anon_sym_xor] = ACTIONS(2572), - [anon_sym_or] = ACTIONS(2572), - [anon_sym_in] = ACTIONS(2572), - [anon_sym_not_DASHin] = ACTIONS(2572), - [anon_sym_has] = ACTIONS(2572), - [anon_sym_not_DASHhas] = ACTIONS(2572), - [anon_sym_starts_DASHwith] = ACTIONS(2572), - [anon_sym_ends_DASHwith] = ACTIONS(2572), - [anon_sym_EQ_EQ] = ACTIONS(2572), - [anon_sym_BANG_EQ] = ACTIONS(2572), - [anon_sym_LT] = ACTIONS(2574), - [anon_sym_LT_EQ] = ACTIONS(2572), - [anon_sym_GT] = ACTIONS(2574), - [anon_sym_GT_EQ] = ACTIONS(2572), - [aux_sym_cmd_identifier_token41] = ACTIONS(2576), + [769] = { + [sym_comment] = STATE(769), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1581), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_bit_DASHshl] = ACTIONS(1581), + [anon_sym_bit_DASHshr] = ACTIONS(1581), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1581), + [anon_sym_bit_DASHxor] = ACTIONS(1581), + [anon_sym_bit_DASHor] = ACTIONS(1581), + [anon_sym_and] = ACTIONS(1581), + [anon_sym_xor] = ACTIONS(1581), + [anon_sym_or] = ACTIONS(1581), + [anon_sym_in] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1581), + [anon_sym_has] = ACTIONS(1581), + [anon_sym_not_DASHhas] = ACTIONS(1581), + [anon_sym_starts_DASHwith] = ACTIONS(1581), + [anon_sym_ends_DASHwith] = ACTIONS(1581), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1581), + [aux_sym_cmd_identifier_token41] = ACTIONS(1579), [sym__newline] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), [anon_sym_PIPE] = ACTIONS(1579), [anon_sym_err_GT_PIPE] = ACTIONS(1579), [anon_sym_out_GT_PIPE] = ACTIONS(1579), @@ -163544,11 +156640,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1579), [anon_sym_bit_DASHxor2] = ACTIONS(1579), [anon_sym_bit_DASHor2] = ACTIONS(1579), - [anon_sym_DOT_DOT2] = ACTIONS(2546), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2548), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2548), - [sym_filesize_unit] = ACTIONS(2989), - [sym_duration_unit] = ACTIONS(2991), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [sym_filesize_unit] = ACTIONS(1579), + [sym_duration_unit] = ACTIONS(1581), [anon_sym_err_GT] = ACTIONS(1579), [anon_sym_out_GT] = ACTIONS(1579), [anon_sym_e_GT] = ACTIONS(1579), @@ -163567,27483 +156663,27453 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(3), }, - [827] = { - [sym_comment] = STATE(827), - [aux_sym_cmd_identifier_token1] = ACTIONS(2993), - [aux_sym_cmd_identifier_token2] = ACTIONS(2995), - [aux_sym_cmd_identifier_token3] = ACTIONS(2995), - [aux_sym_cmd_identifier_token4] = ACTIONS(2995), - [aux_sym_cmd_identifier_token5] = ACTIONS(2995), - [aux_sym_cmd_identifier_token6] = ACTIONS(2995), - [aux_sym_cmd_identifier_token7] = ACTIONS(2995), - [aux_sym_cmd_identifier_token8] = ACTIONS(2995), - [aux_sym_cmd_identifier_token9] = ACTIONS(2993), - [aux_sym_cmd_identifier_token10] = ACTIONS(2995), - [aux_sym_cmd_identifier_token11] = ACTIONS(2995), - [aux_sym_cmd_identifier_token12] = ACTIONS(2995), - [aux_sym_cmd_identifier_token13] = ACTIONS(2993), - [aux_sym_cmd_identifier_token14] = ACTIONS(2995), - [aux_sym_cmd_identifier_token15] = ACTIONS(2993), - [aux_sym_cmd_identifier_token16] = ACTIONS(2995), - [aux_sym_cmd_identifier_token17] = ACTIONS(2995), - [aux_sym_cmd_identifier_token18] = ACTIONS(2995), - [aux_sym_cmd_identifier_token19] = ACTIONS(2995), - [aux_sym_cmd_identifier_token20] = ACTIONS(2995), - [aux_sym_cmd_identifier_token21] = ACTIONS(2995), - [aux_sym_cmd_identifier_token22] = ACTIONS(2995), - [aux_sym_cmd_identifier_token23] = ACTIONS(2995), - [aux_sym_cmd_identifier_token24] = ACTIONS(2995), - [aux_sym_cmd_identifier_token25] = ACTIONS(2995), - [aux_sym_cmd_identifier_token26] = ACTIONS(2995), - [aux_sym_cmd_identifier_token27] = ACTIONS(2995), - [aux_sym_cmd_identifier_token28] = ACTIONS(2995), - [aux_sym_cmd_identifier_token29] = ACTIONS(2995), - [aux_sym_cmd_identifier_token30] = ACTIONS(2995), - [aux_sym_cmd_identifier_token31] = ACTIONS(2995), - [aux_sym_cmd_identifier_token32] = ACTIONS(2995), - [aux_sym_cmd_identifier_token33] = ACTIONS(2995), - [aux_sym_cmd_identifier_token34] = ACTIONS(2993), - [aux_sym_cmd_identifier_token35] = ACTIONS(2995), - [aux_sym_cmd_identifier_token36] = ACTIONS(2995), - [aux_sym_cmd_identifier_token37] = ACTIONS(2995), - [aux_sym_cmd_identifier_token38] = ACTIONS(2993), - [aux_sym_cmd_identifier_token39] = ACTIONS(2995), - [aux_sym_cmd_identifier_token40] = ACTIONS(2995), - [sym__newline] = ACTIONS(2995), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_err_GT_PIPE] = ACTIONS(2995), - [anon_sym_out_GT_PIPE] = ACTIONS(2995), - [anon_sym_e_GT_PIPE] = ACTIONS(2995), - [anon_sym_o_GT_PIPE] = ACTIONS(2995), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2995), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2995), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2995), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2995), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2993), - [anon_sym_DASH2] = ACTIONS(2993), - [anon_sym_break] = ACTIONS(2993), - [anon_sym_continue] = ACTIONS(2993), - [anon_sym_do] = ACTIONS(2993), - [anon_sym_if] = ACTIONS(2993), - [anon_sym_match] = ACTIONS(2993), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_DOT_DOT] = ACTIONS(2993), - [anon_sym_try] = ACTIONS(2993), - [anon_sym_return] = ACTIONS(2993), - [anon_sym_where] = ACTIONS(2995), - [aux_sym_expr_unary_token1] = ACTIONS(2995), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2995), - [anon_sym_DOT_DOT_LT] = ACTIONS(2995), - [anon_sym_null] = ACTIONS(2993), - [anon_sym_true] = ACTIONS(2993), - [anon_sym_false] = ACTIONS(2993), - [aux_sym__val_number_decimal_token1] = ACTIONS(2993), - [aux_sym__val_number_decimal_token2] = ACTIONS(2995), - [aux_sym__val_number_decimal_token3] = ACTIONS(2995), - [aux_sym__val_number_decimal_token4] = ACTIONS(2995), - [aux_sym__val_number_token1] = ACTIONS(2995), - [aux_sym__val_number_token2] = ACTIONS(2995), - [aux_sym__val_number_token3] = ACTIONS(2995), - [aux_sym__val_number_token4] = ACTIONS(2993), - [aux_sym__val_number_token5] = ACTIONS(2993), - [aux_sym__val_number_token6] = ACTIONS(2993), - [anon_sym_0b] = ACTIONS(2993), - [anon_sym_0o] = ACTIONS(2993), - [anon_sym_0x] = ACTIONS(2993), - [sym_val_date] = ACTIONS(2995), - [anon_sym_DQUOTE] = ACTIONS(2995), - [sym__str_single_quotes] = ACTIONS(2995), - [sym__str_back_ticks] = ACTIONS(2995), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2995), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2995), - [aux_sym_env_var_token1] = ACTIONS(2993), - [anon_sym_CARET] = ACTIONS(2995), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2995), - }, - [828] = { - [sym_comment] = STATE(828), - [aux_sym_cmd_identifier_token1] = ACTIONS(2997), - [aux_sym_cmd_identifier_token2] = ACTIONS(2999), - [aux_sym_cmd_identifier_token3] = ACTIONS(2999), - [aux_sym_cmd_identifier_token4] = ACTIONS(2999), - [aux_sym_cmd_identifier_token5] = ACTIONS(2999), - [aux_sym_cmd_identifier_token6] = ACTIONS(2999), - [aux_sym_cmd_identifier_token7] = ACTIONS(2999), - [aux_sym_cmd_identifier_token8] = ACTIONS(2999), - [aux_sym_cmd_identifier_token9] = ACTIONS(2997), - [aux_sym_cmd_identifier_token10] = ACTIONS(2999), - [aux_sym_cmd_identifier_token11] = ACTIONS(2999), - [aux_sym_cmd_identifier_token12] = ACTIONS(2999), - [aux_sym_cmd_identifier_token13] = ACTIONS(2997), - [aux_sym_cmd_identifier_token14] = ACTIONS(2999), - [aux_sym_cmd_identifier_token15] = ACTIONS(2997), - [aux_sym_cmd_identifier_token16] = ACTIONS(2999), - [aux_sym_cmd_identifier_token17] = ACTIONS(2999), - [aux_sym_cmd_identifier_token18] = ACTIONS(2999), - [aux_sym_cmd_identifier_token19] = ACTIONS(2999), - [aux_sym_cmd_identifier_token20] = ACTIONS(2999), - [aux_sym_cmd_identifier_token21] = ACTIONS(2999), - [aux_sym_cmd_identifier_token22] = ACTIONS(2999), - [aux_sym_cmd_identifier_token23] = ACTIONS(2999), - [aux_sym_cmd_identifier_token24] = ACTIONS(2999), - [aux_sym_cmd_identifier_token25] = ACTIONS(2999), - [aux_sym_cmd_identifier_token26] = ACTIONS(2999), - [aux_sym_cmd_identifier_token27] = ACTIONS(2999), - [aux_sym_cmd_identifier_token28] = ACTIONS(2999), - [aux_sym_cmd_identifier_token29] = ACTIONS(2999), - [aux_sym_cmd_identifier_token30] = ACTIONS(2999), - [aux_sym_cmd_identifier_token31] = ACTIONS(2999), - [aux_sym_cmd_identifier_token32] = ACTIONS(2999), - [aux_sym_cmd_identifier_token33] = ACTIONS(2999), - [aux_sym_cmd_identifier_token34] = ACTIONS(2997), - [aux_sym_cmd_identifier_token35] = ACTIONS(2999), - [aux_sym_cmd_identifier_token36] = ACTIONS(2999), - [aux_sym_cmd_identifier_token37] = ACTIONS(2999), - [aux_sym_cmd_identifier_token38] = ACTIONS(2997), - [aux_sym_cmd_identifier_token39] = ACTIONS(2999), - [aux_sym_cmd_identifier_token40] = ACTIONS(2999), - [sym__newline] = ACTIONS(1278), - [anon_sym_PIPE] = ACTIONS(1278), - [anon_sym_err_GT_PIPE] = ACTIONS(1278), - [anon_sym_out_GT_PIPE] = ACTIONS(1278), - [anon_sym_e_GT_PIPE] = ACTIONS(1278), - [anon_sym_o_GT_PIPE] = ACTIONS(1278), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1278), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1278), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1278), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(2999), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_DASH2] = ACTIONS(2997), - [anon_sym_break] = ACTIONS(2997), - [anon_sym_continue] = ACTIONS(2997), - [anon_sym_do] = ACTIONS(2997), - [anon_sym_if] = ACTIONS(2997), - [anon_sym_match] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(2997), - [anon_sym_try] = ACTIONS(2997), - [anon_sym_return] = ACTIONS(2997), - [anon_sym_where] = ACTIONS(2999), - [aux_sym_expr_unary_token1] = ACTIONS(2999), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2999), - [anon_sym_DOT_DOT_LT] = ACTIONS(2999), - [anon_sym_null] = ACTIONS(2997), - [anon_sym_true] = ACTIONS(2997), - [anon_sym_false] = ACTIONS(2997), - [aux_sym__val_number_decimal_token1] = ACTIONS(2997), - [aux_sym__val_number_decimal_token2] = ACTIONS(2999), - [aux_sym__val_number_decimal_token3] = ACTIONS(2999), - [aux_sym__val_number_decimal_token4] = ACTIONS(2999), - [aux_sym__val_number_token1] = ACTIONS(2999), - [aux_sym__val_number_token2] = ACTIONS(2999), - [aux_sym__val_number_token3] = ACTIONS(2999), - [aux_sym__val_number_token4] = ACTIONS(2997), - [aux_sym__val_number_token5] = ACTIONS(2997), - [aux_sym__val_number_token6] = ACTIONS(2997), - [anon_sym_0b] = ACTIONS(2997), - [anon_sym_0o] = ACTIONS(2997), - [anon_sym_0x] = ACTIONS(2997), - [sym_val_date] = ACTIONS(2999), - [anon_sym_DQUOTE] = ACTIONS(2999), - [sym__str_single_quotes] = ACTIONS(2999), - [sym__str_back_ticks] = ACTIONS(2999), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2999), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2999), - [aux_sym_env_var_token1] = ACTIONS(2997), - [anon_sym_CARET] = ACTIONS(2999), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2999), - }, - [829] = { - [sym_comment] = STATE(829), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1492), - [anon_sym_out_GT_GT] = ACTIONS(1492), - [anon_sym_e_GT_GT] = ACTIONS(1492), - [anon_sym_o_GT_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(3), - }, - [830] = { - [sym_comment] = STATE(830), - [anon_sym_STAR_STAR] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_SLASH] = ACTIONS(1484), - [anon_sym_mod] = ACTIONS(1486), - [anon_sym_SLASH_SLASH] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_bit_DASHshl] = ACTIONS(1486), - [anon_sym_bit_DASHshr] = ACTIONS(1486), - [anon_sym_EQ_TILDE] = ACTIONS(1486), - [anon_sym_BANG_TILDE] = ACTIONS(1486), - [anon_sym_bit_DASHand] = ACTIONS(1486), - [anon_sym_bit_DASHxor] = ACTIONS(1486), - [anon_sym_bit_DASHor] = ACTIONS(1486), - [anon_sym_and] = ACTIONS(1486), - [anon_sym_xor] = ACTIONS(1486), - [anon_sym_or] = ACTIONS(1486), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_not_DASHin] = ACTIONS(1486), - [anon_sym_has] = ACTIONS(1486), - [anon_sym_not_DASHhas] = ACTIONS(1486), - [anon_sym_starts_DASHwith] = ACTIONS(1486), - [anon_sym_ends_DASHwith] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(1486), - [anon_sym_BANG_EQ] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1486), - [aux_sym_cmd_identifier_token41] = ACTIONS(1484), - [sym__newline] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_err_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_GT_PIPE] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1484), - [anon_sym_GT2] = ACTIONS(1484), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_in2] = ACTIONS(1484), - [anon_sym_STAR2] = ACTIONS(1484), - [anon_sym_and2] = ACTIONS(1484), - [anon_sym_xor2] = ACTIONS(1484), - [anon_sym_or2] = ACTIONS(1484), - [anon_sym_not_DASHin2] = ACTIONS(1484), - [anon_sym_has2] = ACTIONS(1484), - [anon_sym_not_DASHhas2] = ACTIONS(1484), - [anon_sym_starts_DASHwith2] = ACTIONS(1484), - [anon_sym_ends_DASHwith2] = ACTIONS(1484), - [anon_sym_EQ_EQ2] = ACTIONS(1484), - [anon_sym_BANG_EQ2] = ACTIONS(1484), - [anon_sym_LT2] = ACTIONS(1484), - [anon_sym_LT_EQ2] = ACTIONS(1484), - [anon_sym_GT_EQ2] = ACTIONS(1484), - [anon_sym_EQ_TILDE2] = ACTIONS(1484), - [anon_sym_BANG_TILDE2] = ACTIONS(1484), - [anon_sym_STAR_STAR2] = ACTIONS(1484), - [anon_sym_PLUS_PLUS2] = ACTIONS(1484), - [anon_sym_SLASH2] = ACTIONS(1484), - [anon_sym_mod2] = ACTIONS(1484), - [anon_sym_SLASH_SLASH2] = ACTIONS(1484), - [anon_sym_PLUS2] = ACTIONS(1484), - [anon_sym_bit_DASHshl2] = ACTIONS(1484), - [anon_sym_bit_DASHshr2] = ACTIONS(1484), - [anon_sym_bit_DASHand2] = ACTIONS(1484), - [anon_sym_bit_DASHxor2] = ACTIONS(1484), - [anon_sym_bit_DASHor2] = ACTIONS(1484), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [sym_filesize_unit] = ACTIONS(1484), - [sym_duration_unit] = ACTIONS(1486), - [anon_sym_err_GT] = ACTIONS(1484), - [anon_sym_out_GT] = ACTIONS(1484), - [anon_sym_e_GT] = ACTIONS(1484), - [anon_sym_o_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT] = ACTIONS(1484), - [anon_sym_err_GT_GT] = ACTIONS(1484), - [anon_sym_out_GT_GT] = ACTIONS(1484), - [anon_sym_e_GT_GT] = ACTIONS(1484), - [anon_sym_o_GT_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1484), + [770] = { + [sym_comment] = STATE(770), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(2564), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, - [831] = { - [sym_comment] = STATE(831), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1540), - [anon_sym_SLASH_SLASH] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_bit_DASHshl] = ACTIONS(1540), - [anon_sym_bit_DASHshr] = ACTIONS(1540), - [anon_sym_EQ_TILDE] = ACTIONS(1540), - [anon_sym_BANG_TILDE] = ACTIONS(1540), - [anon_sym_bit_DASHand] = ACTIONS(1540), - [anon_sym_bit_DASHxor] = ACTIONS(1540), - [anon_sym_bit_DASHor] = ACTIONS(1540), - [anon_sym_and] = ACTIONS(1540), - [anon_sym_xor] = ACTIONS(1540), - [anon_sym_or] = ACTIONS(1540), - [anon_sym_in] = ACTIONS(1540), - [anon_sym_not_DASHin] = ACTIONS(1540), - [anon_sym_has] = ACTIONS(1540), - [anon_sym_not_DASHhas] = ACTIONS(1540), - [anon_sym_starts_DASHwith] = ACTIONS(1540), - [anon_sym_ends_DASHwith] = ACTIONS(1540), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1538), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1540), - [aux_sym_cmd_identifier_token41] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(1538), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_in2] = ACTIONS(1538), - [anon_sym_STAR2] = ACTIONS(1538), - [anon_sym_and2] = ACTIONS(1538), - [anon_sym_xor2] = ACTIONS(1538), - [anon_sym_or2] = ACTIONS(1538), - [anon_sym_not_DASHin2] = ACTIONS(1538), - [anon_sym_has2] = ACTIONS(1538), - [anon_sym_not_DASHhas2] = ACTIONS(1538), - [anon_sym_starts_DASHwith2] = ACTIONS(1538), - [anon_sym_ends_DASHwith2] = ACTIONS(1538), - [anon_sym_EQ_EQ2] = ACTIONS(1538), - [anon_sym_BANG_EQ2] = ACTIONS(1538), - [anon_sym_LT2] = ACTIONS(1538), - [anon_sym_LT_EQ2] = ACTIONS(1538), - [anon_sym_GT_EQ2] = ACTIONS(1538), - [anon_sym_EQ_TILDE2] = ACTIONS(1538), - [anon_sym_BANG_TILDE2] = ACTIONS(1538), - [anon_sym_STAR_STAR2] = ACTIONS(1538), - [anon_sym_PLUS_PLUS2] = ACTIONS(1538), - [anon_sym_SLASH2] = ACTIONS(1538), - [anon_sym_mod2] = ACTIONS(1538), - [anon_sym_SLASH_SLASH2] = ACTIONS(1538), - [anon_sym_PLUS2] = ACTIONS(1538), - [anon_sym_bit_DASHshl2] = ACTIONS(1538), - [anon_sym_bit_DASHshr2] = ACTIONS(1538), - [anon_sym_bit_DASHand2] = ACTIONS(1538), - [anon_sym_bit_DASHxor2] = ACTIONS(1538), - [anon_sym_bit_DASHor2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1540), - [anon_sym_err_GT] = ACTIONS(1538), - [anon_sym_out_GT] = ACTIONS(1538), - [anon_sym_e_GT] = ACTIONS(1538), - [anon_sym_o_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT] = ACTIONS(1538), - [anon_sym_err_GT_GT] = ACTIONS(1538), - [anon_sym_out_GT_GT] = ACTIONS(1538), - [anon_sym_e_GT_GT] = ACTIONS(1538), - [anon_sym_o_GT_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [771] = { + [sym_comment] = STATE(771), + [anon_sym_STAR_STAR] = ACTIONS(1680), + [anon_sym_PLUS_PLUS] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_SLASH] = ACTIONS(1678), + [anon_sym_mod] = ACTIONS(1680), + [anon_sym_SLASH_SLASH] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1680), + [anon_sym_bit_DASHshl] = ACTIONS(1680), + [anon_sym_bit_DASHshr] = ACTIONS(1680), + [anon_sym_EQ_TILDE] = ACTIONS(1680), + [anon_sym_BANG_TILDE] = ACTIONS(1680), + [anon_sym_bit_DASHand] = ACTIONS(1680), + [anon_sym_bit_DASHxor] = ACTIONS(1680), + [anon_sym_bit_DASHor] = ACTIONS(1680), + [anon_sym_and] = ACTIONS(1680), + [anon_sym_xor] = ACTIONS(1680), + [anon_sym_or] = ACTIONS(1680), + [anon_sym_in] = ACTIONS(1680), + [anon_sym_not_DASHin] = ACTIONS(1680), + [anon_sym_has] = ACTIONS(1680), + [anon_sym_not_DASHhas] = ACTIONS(1680), + [anon_sym_starts_DASHwith] = ACTIONS(1680), + [anon_sym_ends_DASHwith] = ACTIONS(1680), + [anon_sym_EQ_EQ] = ACTIONS(1680), + [anon_sym_BANG_EQ] = ACTIONS(1680), + [anon_sym_LT] = ACTIONS(1678), + [anon_sym_LT_EQ] = ACTIONS(1680), + [anon_sym_GT] = ACTIONS(1678), + [anon_sym_GT_EQ] = ACTIONS(1680), + [aux_sym_cmd_identifier_token41] = ACTIONS(1678), + [sym__newline] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_PIPE] = ACTIONS(1678), + [anon_sym_err_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_GT_PIPE] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1678), + [anon_sym_GT2] = ACTIONS(1678), + [anon_sym_DASH2] = ACTIONS(1678), + [anon_sym_in2] = ACTIONS(1678), + [anon_sym_STAR2] = ACTIONS(1678), + [anon_sym_and2] = ACTIONS(1678), + [anon_sym_xor2] = ACTIONS(1678), + [anon_sym_or2] = ACTIONS(1678), + [anon_sym_not_DASHin2] = ACTIONS(1678), + [anon_sym_has2] = ACTIONS(1678), + [anon_sym_not_DASHhas2] = ACTIONS(1678), + [anon_sym_starts_DASHwith2] = ACTIONS(1678), + [anon_sym_ends_DASHwith2] = ACTIONS(1678), + [anon_sym_EQ_EQ2] = ACTIONS(1678), + [anon_sym_BANG_EQ2] = ACTIONS(1678), + [anon_sym_LT2] = ACTIONS(1678), + [anon_sym_LT_EQ2] = ACTIONS(1678), + [anon_sym_GT_EQ2] = ACTIONS(1678), + [anon_sym_EQ_TILDE2] = ACTIONS(1678), + [anon_sym_BANG_TILDE2] = ACTIONS(1678), + [anon_sym_STAR_STAR2] = ACTIONS(1678), + [anon_sym_PLUS_PLUS2] = ACTIONS(1678), + [anon_sym_SLASH2] = ACTIONS(1678), + [anon_sym_mod2] = ACTIONS(1678), + [anon_sym_SLASH_SLASH2] = ACTIONS(1678), + [anon_sym_PLUS2] = ACTIONS(1678), + [anon_sym_bit_DASHshl2] = ACTIONS(1678), + [anon_sym_bit_DASHshr2] = ACTIONS(1678), + [anon_sym_bit_DASHand2] = ACTIONS(1678), + [anon_sym_bit_DASHxor2] = ACTIONS(1678), + [anon_sym_bit_DASHor2] = ACTIONS(1678), + [anon_sym_DOT_DOT2] = ACTIONS(1678), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1680), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1680), + [sym_filesize_unit] = ACTIONS(1678), + [sym_duration_unit] = ACTIONS(1680), + [anon_sym_err_GT] = ACTIONS(1678), + [anon_sym_out_GT] = ACTIONS(1678), + [anon_sym_e_GT] = ACTIONS(1678), + [anon_sym_o_GT] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT] = ACTIONS(1678), + [anon_sym_err_GT_GT] = ACTIONS(1678), + [anon_sym_out_GT_GT] = ACTIONS(1678), + [anon_sym_e_GT_GT] = ACTIONS(1678), + [anon_sym_o_GT_GT] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1678), [anon_sym_POUND] = ACTIONS(3), }, - [832] = { - [sym_expr_parenthesized] = STATE(1617), - [sym_val_range] = STATE(2059), - [sym__val_range] = STATE(7585), - [sym__val_range_with_end] = STATE(7427), - [sym__value] = STATE(2059), - [sym_val_nothing] = STATE(2003), - [sym_val_bool] = STATE(1706), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(2003), - [sym__val_number_decimal] = STATE(1332), - [sym__val_number] = STATE(2005), - [sym_val_duration] = STATE(2003), - [sym_val_filesize] = STATE(2003), - [sym_val_binary] = STATE(2003), - [sym_val_string] = STATE(2003), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2003), - [sym__inter_single_quotes] = STATE(2112), - [sym__inter_double_quotes] = STATE(2113), - [sym_val_list] = STATE(2003), - [sym_val_record] = STATE(2003), - [sym_val_table] = STATE(2003), - [sym_val_closure] = STATE(2003), - [sym__flag] = STATE(2059), - [sym_short_flag] = STATE(2088), - [sym_long_flag] = STATE(2088), - [sym_unquoted] = STATE(1696), - [sym__unquoted_with_expr] = STATE(2060), - [sym__unquoted_anonymous_prefix] = STATE(6894), - [sym_comment] = STATE(832), - [aux_sym_ctrl_do_repeat2] = STATE(832), - [ts_builtin_sym_end] = ACTIONS(2739), - [sym__newline] = ACTIONS(2739), - [anon_sym_SEMI] = ACTIONS(2739), - [anon_sym_PIPE] = ACTIONS(2739), - [anon_sym_err_GT_PIPE] = ACTIONS(2739), - [anon_sym_out_GT_PIPE] = ACTIONS(2739), - [anon_sym_e_GT_PIPE] = ACTIONS(2739), - [anon_sym_o_GT_PIPE] = ACTIONS(2739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2739), - [anon_sym_LBRACK] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_DOLLAR] = ACTIONS(3007), - [anon_sym_DASH_DASH] = ACTIONS(3010), - [anon_sym_DASH2] = ACTIONS(3013), - [anon_sym_LBRACE] = ACTIONS(3016), - [anon_sym_DOT_DOT] = ACTIONS(3019), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3022), - [anon_sym_DOT_DOT_LT] = ACTIONS(3022), - [anon_sym_null] = ACTIONS(3025), - [anon_sym_true] = ACTIONS(3028), - [anon_sym_false] = ACTIONS(3028), - [aux_sym__val_number_decimal_token1] = ACTIONS(3031), - [aux_sym__val_number_decimal_token2] = ACTIONS(3034), - [aux_sym__val_number_decimal_token3] = ACTIONS(3037), - [aux_sym__val_number_decimal_token4] = ACTIONS(3040), - [aux_sym__val_number_token1] = ACTIONS(3043), - [aux_sym__val_number_token2] = ACTIONS(3043), - [aux_sym__val_number_token3] = ACTIONS(3043), - [aux_sym__val_number_token4] = ACTIONS(3046), - [aux_sym__val_number_token5] = ACTIONS(3046), - [aux_sym__val_number_token6] = ACTIONS(3046), - [anon_sym_0b] = ACTIONS(3049), - [anon_sym_0o] = ACTIONS(3052), - [anon_sym_0x] = ACTIONS(3052), - [sym_val_date] = ACTIONS(3055), - [anon_sym_DQUOTE] = ACTIONS(3058), - [sym__str_single_quotes] = ACTIONS(3061), - [sym__str_back_ticks] = ACTIONS(3061), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3064), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3067), - [anon_sym_err_GT] = ACTIONS(2810), - [anon_sym_out_GT] = ACTIONS(2810), - [anon_sym_e_GT] = ACTIONS(2810), - [anon_sym_o_GT] = ACTIONS(2810), - [anon_sym_err_PLUSout_GT] = ACTIONS(2810), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2810), - [anon_sym_o_PLUSe_GT] = ACTIONS(2810), - [anon_sym_e_PLUSo_GT] = ACTIONS(2810), - [anon_sym_err_GT_GT] = ACTIONS(2813), - [anon_sym_out_GT_GT] = ACTIONS(2813), - [anon_sym_e_GT_GT] = ACTIONS(2813), - [anon_sym_o_GT_GT] = ACTIONS(2813), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2813), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2813), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2813), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2813), - [aux_sym_unquoted_token1] = ACTIONS(3070), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3073), + [772] = { + [sym_expr_parenthesized] = STATE(1516), + [sym_val_range] = STATE(1749), + [sym__val_range] = STATE(7095), + [sym__val_range_with_end] = STATE(6952), + [sym__value] = STATE(1749), + [sym_val_nothing] = STATE(1680), + [sym_val_bool] = STATE(1539), + [sym_val_variable] = STATE(1470), + [sym_val_number] = STATE(1680), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1686), + [sym_val_duration] = STATE(1680), + [sym_val_filesize] = STATE(1680), + [sym_val_binary] = STATE(1680), + [sym_val_string] = STATE(1680), + [sym__raw_str] = STATE(1800), + [sym__str_double_quotes] = STATE(1800), + [sym_val_interpolated] = STATE(1680), + [sym__inter_single_quotes] = STATE(1858), + [sym__inter_double_quotes] = STATE(1859), + [sym_val_list] = STATE(1680), + [sym_val_record] = STATE(1680), + [sym_val_table] = STATE(1680), + [sym_val_closure] = STATE(1680), + [sym__flag] = STATE(1749), + [sym_short_flag] = STATE(1720), + [sym_long_flag] = STATE(1720), + [sym_unquoted] = STATE(1552), + [sym__unquoted_with_expr] = STATE(1754), + [sym__unquoted_anonymous_prefix] = STATE(6407), + [sym_comment] = STATE(772), + [aux_sym_ctrl_do_repeat2] = STATE(774), + [sym__newline] = ACTIONS(2688), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_err_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_GT_PIPE] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_LPAREN] = ACTIONS(2631), + [anon_sym_RPAREN] = ACTIONS(2688), + [anon_sym_DOLLAR] = ACTIONS(2633), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_DASH2] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_RBRACE] = ACTIONS(2688), + [anon_sym_DOT_DOT] = ACTIONS(2641), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2643), + [anon_sym_DOT_DOT_LT] = ACTIONS(2643), + [anon_sym_null] = ACTIONS(2645), + [anon_sym_true] = ACTIONS(2647), + [anon_sym_false] = ACTIONS(2647), + [aux_sym__val_number_decimal_token1] = ACTIONS(2649), + [aux_sym__val_number_decimal_token2] = ACTIONS(2651), + [aux_sym__val_number_decimal_token3] = ACTIONS(2653), + [aux_sym__val_number_decimal_token4] = ACTIONS(2655), + [aux_sym__val_number_token1] = ACTIONS(2657), + [aux_sym__val_number_token2] = ACTIONS(2657), + [aux_sym__val_number_token3] = ACTIONS(2657), + [aux_sym__val_number_token4] = ACTIONS(2659), + [aux_sym__val_number_token5] = ACTIONS(2659), + [aux_sym__val_number_token6] = ACTIONS(2659), + [anon_sym_0b] = ACTIONS(2661), + [anon_sym_0o] = ACTIONS(2663), + [anon_sym_0x] = ACTIONS(2663), + [sym_val_date] = ACTIONS(2665), + [anon_sym_DQUOTE] = ACTIONS(2667), + [sym__str_single_quotes] = ACTIONS(2669), + [sym__str_back_ticks] = ACTIONS(2669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2673), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(2679), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2681), }, - [833] = { - [sym_expr_parenthesized] = STATE(1617), - [sym_val_range] = STATE(2059), - [sym__val_range] = STATE(7585), - [sym__val_range_with_end] = STATE(7427), - [sym__value] = STATE(2059), - [sym_val_nothing] = STATE(2003), - [sym_val_bool] = STATE(1706), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(2003), - [sym__val_number_decimal] = STATE(1332), - [sym__val_number] = STATE(2005), - [sym_val_duration] = STATE(2003), - [sym_val_filesize] = STATE(2003), - [sym_val_binary] = STATE(2003), - [sym_val_string] = STATE(2003), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2003), - [sym__inter_single_quotes] = STATE(2112), - [sym__inter_double_quotes] = STATE(2113), - [sym_val_list] = STATE(2003), - [sym_val_record] = STATE(2003), - [sym_val_table] = STATE(2003), - [sym_val_closure] = STATE(2003), - [sym__flag] = STATE(2059), - [sym_short_flag] = STATE(2088), - [sym_long_flag] = STATE(2088), - [sym_unquoted] = STATE(1696), - [sym__unquoted_with_expr] = STATE(2060), - [sym__unquoted_anonymous_prefix] = STATE(6894), - [sym_comment] = STATE(833), - [aux_sym_ctrl_do_repeat2] = STATE(832), - [ts_builtin_sym_end] = ACTIONS(2926), - [sym__newline] = ACTIONS(2926), - [anon_sym_SEMI] = ACTIONS(2926), - [anon_sym_PIPE] = ACTIONS(2926), - [anon_sym_err_GT_PIPE] = ACTIONS(2926), - [anon_sym_out_GT_PIPE] = ACTIONS(2926), - [anon_sym_e_GT_PIPE] = ACTIONS(2926), - [anon_sym_o_GT_PIPE] = ACTIONS(2926), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2926), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2926), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2926), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2926), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_DOLLAR] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(2945), - [anon_sym_DASH2] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DOT_DOT] = ACTIONS(2951), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2953), - [anon_sym_DOT_DOT_LT] = ACTIONS(2953), - [anon_sym_null] = ACTIONS(2955), - [anon_sym_true] = ACTIONS(2957), - [anon_sym_false] = ACTIONS(2957), - [aux_sym__val_number_decimal_token1] = ACTIONS(2959), - [aux_sym__val_number_decimal_token2] = ACTIONS(2961), - [aux_sym__val_number_decimal_token3] = ACTIONS(2963), - [aux_sym__val_number_decimal_token4] = ACTIONS(2965), - [aux_sym__val_number_token1] = ACTIONS(2967), - [aux_sym__val_number_token2] = ACTIONS(2967), - [aux_sym__val_number_token3] = ACTIONS(2967), - [aux_sym__val_number_token4] = ACTIONS(2969), - [aux_sym__val_number_token5] = ACTIONS(2969), - [aux_sym__val_number_token6] = ACTIONS(2969), - [anon_sym_0b] = ACTIONS(2971), - [anon_sym_0o] = ACTIONS(2973), - [anon_sym_0x] = ACTIONS(2973), - [sym_val_date] = ACTIONS(2975), - [anon_sym_DQUOTE] = ACTIONS(2977), - [sym__str_single_quotes] = ACTIONS(2979), - [sym__str_back_ticks] = ACTIONS(2979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2981), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2983), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(2985), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2987), + [773] = { + [sym_expr_parenthesized] = STATE(1516), + [sym_val_range] = STATE(1749), + [sym__val_range] = STATE(7095), + [sym__val_range_with_end] = STATE(6952), + [sym__value] = STATE(1749), + [sym_val_nothing] = STATE(1680), + [sym_val_bool] = STATE(1539), + [sym_val_variable] = STATE(1470), + [sym_val_number] = STATE(1680), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1686), + [sym_val_duration] = STATE(1680), + [sym_val_filesize] = STATE(1680), + [sym_val_binary] = STATE(1680), + [sym_val_string] = STATE(1680), + [sym__raw_str] = STATE(1800), + [sym__str_double_quotes] = STATE(1800), + [sym_val_interpolated] = STATE(1680), + [sym__inter_single_quotes] = STATE(1858), + [sym__inter_double_quotes] = STATE(1859), + [sym_val_list] = STATE(1680), + [sym_val_record] = STATE(1680), + [sym_val_table] = STATE(1680), + [sym_val_closure] = STATE(1680), + [sym__flag] = STATE(1749), + [sym_short_flag] = STATE(1720), + [sym_long_flag] = STATE(1720), + [sym_unquoted] = STATE(1552), + [sym__unquoted_with_expr] = STATE(1754), + [sym__unquoted_anonymous_prefix] = STATE(6407), + [sym_comment] = STATE(773), + [aux_sym_ctrl_do_repeat2] = STATE(775), + [sym__newline] = ACTIONS(2688), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_err_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_GT_PIPE] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_LPAREN] = ACTIONS(2631), + [anon_sym_RPAREN] = ACTIONS(2688), + [anon_sym_DOLLAR] = ACTIONS(2633), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_DASH2] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_RBRACE] = ACTIONS(2688), + [anon_sym_DOT_DOT] = ACTIONS(2641), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2643), + [anon_sym_DOT_DOT_LT] = ACTIONS(2643), + [anon_sym_null] = ACTIONS(2645), + [anon_sym_true] = ACTIONS(2647), + [anon_sym_false] = ACTIONS(2647), + [aux_sym__val_number_decimal_token1] = ACTIONS(2649), + [aux_sym__val_number_decimal_token2] = ACTIONS(2651), + [aux_sym__val_number_decimal_token3] = ACTIONS(2653), + [aux_sym__val_number_decimal_token4] = ACTIONS(2655), + [aux_sym__val_number_token1] = ACTIONS(2657), + [aux_sym__val_number_token2] = ACTIONS(2657), + [aux_sym__val_number_token3] = ACTIONS(2657), + [aux_sym__val_number_token4] = ACTIONS(2659), + [aux_sym__val_number_token5] = ACTIONS(2659), + [aux_sym__val_number_token6] = ACTIONS(2659), + [anon_sym_0b] = ACTIONS(2661), + [anon_sym_0o] = ACTIONS(2663), + [anon_sym_0x] = ACTIONS(2663), + [sym_val_date] = ACTIONS(2665), + [anon_sym_DQUOTE] = ACTIONS(2667), + [sym__str_single_quotes] = ACTIONS(2669), + [sym__str_back_ticks] = ACTIONS(2669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2673), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(2679), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2681), }, - [834] = { - [sym_expr_parenthesized] = STATE(5768), - [sym__spread_parenthesized] = STATE(4679), - [sym_val_range] = STATE(4686), - [sym__val_range] = STATE(7563), - [sym__val_range_with_end] = STATE(7481), - [sym__value] = STATE(4686), - [sym_val_nothing] = STATE(4706), - [sym_val_bool] = STATE(6087), - [sym__spread_variable] = STATE(4687), - [sym_val_variable] = STATE(5813), - [sym_val_number] = STATE(4706), - [sym__val_number_decimal] = STATE(5175), - [sym__val_number] = STATE(4709), - [sym_val_duration] = STATE(4706), - [sym_val_filesize] = STATE(4706), - [sym_val_binary] = STATE(4706), - [sym_val_string] = STATE(4706), - [sym__raw_str] = STATE(4077), - [sym__str_double_quotes] = STATE(4077), - [sym_val_interpolated] = STATE(4706), - [sym__inter_single_quotes] = STATE(4625), - [sym__inter_double_quotes] = STATE(4629), - [sym_val_list] = STATE(4706), - [sym__spread_list] = STATE(4679), - [sym_val_record] = STATE(4706), - [sym_val_table] = STATE(4706), - [sym_val_closure] = STATE(4706), - [sym__cmd_arg] = STATE(4692), - [sym_redirection] = STATE(4693), - [sym__flag] = STATE(4694), - [sym_short_flag] = STATE(4663), - [sym_long_flag] = STATE(4663), - [sym_unquoted] = STATE(4375), - [sym__unquoted_with_expr] = STATE(4697), - [sym__unquoted_anonymous_prefix] = STATE(7047), - [sym_comment] = STATE(834), - [sym__newline] = ACTIONS(2128), - [sym__space] = ACTIONS(2188), - [anon_sym_SEMI] = ACTIONS(2128), - [anon_sym_LBRACK] = ACTIONS(2130), - [anon_sym_LPAREN] = ACTIONS(2132), - [anon_sym_DOLLAR] = ACTIONS(2134), - [anon_sym_DASH_DASH] = ACTIONS(3076), - [anon_sym_DASH2] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_DOT_DOT] = ACTIONS(3080), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2144), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3082), - [anon_sym_DOT_DOT_LT] = ACTIONS(3082), - [anon_sym_null] = ACTIONS(3084), - [anon_sym_true] = ACTIONS(3086), - [anon_sym_false] = ACTIONS(3086), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2152), - [aux_sym__val_number_decimal_token1] = ACTIONS(3088), - [aux_sym__val_number_decimal_token2] = ACTIONS(3088), - [aux_sym__val_number_decimal_token3] = ACTIONS(3090), - [aux_sym__val_number_decimal_token4] = ACTIONS(3092), - [aux_sym__val_number_token1] = ACTIONS(2160), - [aux_sym__val_number_token2] = ACTIONS(2160), - [aux_sym__val_number_token3] = ACTIONS(2160), - [aux_sym__val_number_token4] = ACTIONS(3094), - [aux_sym__val_number_token5] = ACTIONS(3094), - [aux_sym__val_number_token6] = ACTIONS(3094), - [anon_sym_0b] = ACTIONS(2164), - [anon_sym_0o] = ACTIONS(2166), - [anon_sym_0x] = ACTIONS(2166), - [sym_val_date] = ACTIONS(3096), - [anon_sym_DQUOTE] = ACTIONS(2170), - [sym__str_single_quotes] = ACTIONS(2172), - [sym__str_back_ticks] = ACTIONS(2172), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2174), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2176), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2178), - [anon_sym_err_GT] = ACTIONS(2182), - [anon_sym_out_GT] = ACTIONS(2182), - [anon_sym_e_GT] = ACTIONS(2182), - [anon_sym_o_GT] = ACTIONS(2182), - [anon_sym_err_PLUSout_GT] = ACTIONS(2182), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2182), - [anon_sym_o_PLUSe_GT] = ACTIONS(2182), - [anon_sym_e_PLUSo_GT] = ACTIONS(2182), - [anon_sym_err_GT_GT] = ACTIONS(2182), - [anon_sym_out_GT_GT] = ACTIONS(2182), - [anon_sym_e_GT_GT] = ACTIONS(2182), - [anon_sym_o_GT_GT] = ACTIONS(2182), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2182), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2182), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2182), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2182), - [aux_sym_unquoted_token1] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2186), + [774] = { + [sym_expr_parenthesized] = STATE(1516), + [sym_val_range] = STATE(1749), + [sym__val_range] = STATE(7095), + [sym__val_range_with_end] = STATE(6952), + [sym__value] = STATE(1749), + [sym_val_nothing] = STATE(1680), + [sym_val_bool] = STATE(1539), + [sym_val_variable] = STATE(1470), + [sym_val_number] = STATE(1680), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1686), + [sym_val_duration] = STATE(1680), + [sym_val_filesize] = STATE(1680), + [sym_val_binary] = STATE(1680), + [sym_val_string] = STATE(1680), + [sym__raw_str] = STATE(1800), + [sym__str_double_quotes] = STATE(1800), + [sym_val_interpolated] = STATE(1680), + [sym__inter_single_quotes] = STATE(1858), + [sym__inter_double_quotes] = STATE(1859), + [sym_val_list] = STATE(1680), + [sym_val_record] = STATE(1680), + [sym_val_table] = STATE(1680), + [sym_val_closure] = STATE(1680), + [sym__flag] = STATE(1749), + [sym_short_flag] = STATE(1720), + [sym_long_flag] = STATE(1720), + [sym_unquoted] = STATE(1552), + [sym__unquoted_with_expr] = STATE(1754), + [sym__unquoted_anonymous_prefix] = STATE(6407), + [sym_comment] = STATE(774), + [aux_sym_ctrl_do_repeat2] = STATE(774), + [sym__newline] = ACTIONS(2690), + [anon_sym_SEMI] = ACTIONS(2690), + [anon_sym_PIPE] = ACTIONS(2690), + [anon_sym_err_GT_PIPE] = ACTIONS(2690), + [anon_sym_out_GT_PIPE] = ACTIONS(2690), + [anon_sym_e_GT_PIPE] = ACTIONS(2690), + [anon_sym_o_GT_PIPE] = ACTIONS(2690), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2690), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2690), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2690), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(2695), + [anon_sym_RPAREN] = ACTIONS(2690), + [anon_sym_DOLLAR] = ACTIONS(2698), + [anon_sym_DASH_DASH] = ACTIONS(2701), + [anon_sym_DASH2] = ACTIONS(2704), + [anon_sym_LBRACE] = ACTIONS(2707), + [anon_sym_RBRACE] = ACTIONS(2690), + [anon_sym_DOT_DOT] = ACTIONS(2710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2713), + [anon_sym_DOT_DOT_LT] = ACTIONS(2713), + [anon_sym_null] = ACTIONS(2716), + [anon_sym_true] = ACTIONS(2719), + [anon_sym_false] = ACTIONS(2719), + [aux_sym__val_number_decimal_token1] = ACTIONS(2722), + [aux_sym__val_number_decimal_token2] = ACTIONS(2725), + [aux_sym__val_number_decimal_token3] = ACTIONS(2728), + [aux_sym__val_number_decimal_token4] = ACTIONS(2731), + [aux_sym__val_number_token1] = ACTIONS(2734), + [aux_sym__val_number_token2] = ACTIONS(2734), + [aux_sym__val_number_token3] = ACTIONS(2734), + [aux_sym__val_number_token4] = ACTIONS(2737), + [aux_sym__val_number_token5] = ACTIONS(2737), + [aux_sym__val_number_token6] = ACTIONS(2737), + [anon_sym_0b] = ACTIONS(2740), + [anon_sym_0o] = ACTIONS(2743), + [anon_sym_0x] = ACTIONS(2743), + [sym_val_date] = ACTIONS(2746), + [anon_sym_DQUOTE] = ACTIONS(2749), + [sym__str_single_quotes] = ACTIONS(2752), + [sym__str_back_ticks] = ACTIONS(2752), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2755), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2758), + [anon_sym_err_GT] = ACTIONS(2761), + [anon_sym_out_GT] = ACTIONS(2761), + [anon_sym_e_GT] = ACTIONS(2761), + [anon_sym_o_GT] = ACTIONS(2761), + [anon_sym_err_PLUSout_GT] = ACTIONS(2761), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2761), + [anon_sym_o_PLUSe_GT] = ACTIONS(2761), + [anon_sym_e_PLUSo_GT] = ACTIONS(2761), + [anon_sym_err_GT_GT] = ACTIONS(2764), + [anon_sym_out_GT_GT] = ACTIONS(2764), + [anon_sym_e_GT_GT] = ACTIONS(2764), + [anon_sym_o_GT_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2764), + [aux_sym_unquoted_token1] = ACTIONS(2767), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2770), }, - [835] = { - [sym_comment] = STATE(835), - [ts_builtin_sym_end] = ACTIONS(2204), - [anon_sym_STAR_STAR] = ACTIONS(3098), - [anon_sym_PLUS_PLUS] = ACTIONS(3098), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_SLASH] = ACTIONS(3100), - [anon_sym_mod] = ACTIONS(3098), - [anon_sym_SLASH_SLASH] = ACTIONS(3098), - [anon_sym_PLUS] = ACTIONS(3100), - [anon_sym_DASH] = ACTIONS(3098), - [anon_sym_bit_DASHshl] = ACTIONS(3098), - [anon_sym_bit_DASHshr] = ACTIONS(3098), - [anon_sym_EQ_TILDE] = ACTIONS(3098), - [anon_sym_BANG_TILDE] = ACTIONS(3098), - [anon_sym_bit_DASHand] = ACTIONS(3098), - [anon_sym_bit_DASHxor] = ACTIONS(3098), - [anon_sym_bit_DASHor] = ACTIONS(3098), - [anon_sym_and] = ACTIONS(3098), - [anon_sym_xor] = ACTIONS(3098), - [anon_sym_or] = ACTIONS(3098), - [anon_sym_in] = ACTIONS(3098), - [anon_sym_not_DASHin] = ACTIONS(3098), - [anon_sym_has] = ACTIONS(3098), - [anon_sym_not_DASHhas] = ACTIONS(3098), - [anon_sym_starts_DASHwith] = ACTIONS(3098), - [anon_sym_ends_DASHwith] = ACTIONS(3098), - [anon_sym_EQ_EQ] = ACTIONS(3098), - [anon_sym_BANG_EQ] = ACTIONS(3098), - [anon_sym_LT] = ACTIONS(3100), - [anon_sym_LT_EQ] = ACTIONS(3098), - [anon_sym_GT] = ACTIONS(3100), - [anon_sym_GT_EQ] = ACTIONS(3098), - [aux_sym_cmd_identifier_token41] = ACTIONS(3102), - [sym__newline] = ACTIONS(2202), - [anon_sym_SEMI] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_err_GT_PIPE] = ACTIONS(2202), - [anon_sym_out_GT_PIPE] = ACTIONS(2202), - [anon_sym_e_GT_PIPE] = ACTIONS(2202), - [anon_sym_o_GT_PIPE] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2202), - [anon_sym_GT2] = ACTIONS(2202), - [anon_sym_DASH2] = ACTIONS(2202), - [anon_sym_in2] = ACTIONS(2202), - [anon_sym_STAR2] = ACTIONS(2202), - [anon_sym_and2] = ACTIONS(2202), - [anon_sym_xor2] = ACTIONS(2202), - [anon_sym_or2] = ACTIONS(2202), - [anon_sym_not_DASHin2] = ACTIONS(2202), - [anon_sym_has2] = ACTIONS(2202), - [anon_sym_not_DASHhas2] = ACTIONS(2202), - [anon_sym_starts_DASHwith2] = ACTIONS(2202), - [anon_sym_ends_DASHwith2] = ACTIONS(2202), - [anon_sym_EQ_EQ2] = ACTIONS(2202), - [anon_sym_BANG_EQ2] = ACTIONS(2202), - [anon_sym_LT2] = ACTIONS(2202), - [anon_sym_LT_EQ2] = ACTIONS(2202), - [anon_sym_GT_EQ2] = ACTIONS(2202), - [anon_sym_EQ_TILDE2] = ACTIONS(2202), - [anon_sym_BANG_TILDE2] = ACTIONS(2202), - [anon_sym_STAR_STAR2] = ACTIONS(2202), - [anon_sym_PLUS_PLUS2] = ACTIONS(2202), - [anon_sym_SLASH2] = ACTIONS(2202), - [anon_sym_mod2] = ACTIONS(2202), - [anon_sym_SLASH_SLASH2] = ACTIONS(2202), - [anon_sym_PLUS2] = ACTIONS(2202), - [anon_sym_bit_DASHshl2] = ACTIONS(2202), - [anon_sym_bit_DASHshr2] = ACTIONS(2202), - [anon_sym_bit_DASHand2] = ACTIONS(2202), - [anon_sym_bit_DASHxor2] = ACTIONS(2202), - [anon_sym_bit_DASHor2] = ACTIONS(2202), - [anon_sym_err_GT] = ACTIONS(2202), - [anon_sym_out_GT] = ACTIONS(2202), - [anon_sym_e_GT] = ACTIONS(2202), - [anon_sym_o_GT] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT] = ACTIONS(2202), - [anon_sym_err_GT_GT] = ACTIONS(2202), - [anon_sym_out_GT_GT] = ACTIONS(2202), - [anon_sym_e_GT_GT] = ACTIONS(2202), - [anon_sym_o_GT_GT] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2202), - [anon_sym_POUND] = ACTIONS(3), + [775] = { + [sym_expr_parenthesized] = STATE(1516), + [sym_val_range] = STATE(1749), + [sym__val_range] = STATE(7095), + [sym__val_range_with_end] = STATE(6952), + [sym__value] = STATE(1749), + [sym_val_nothing] = STATE(1680), + [sym_val_bool] = STATE(1539), + [sym_val_variable] = STATE(1470), + [sym_val_number] = STATE(1680), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1686), + [sym_val_duration] = STATE(1680), + [sym_val_filesize] = STATE(1680), + [sym_val_binary] = STATE(1680), + [sym_val_string] = STATE(1680), + [sym__raw_str] = STATE(1800), + [sym__str_double_quotes] = STATE(1800), + [sym_val_interpolated] = STATE(1680), + [sym__inter_single_quotes] = STATE(1858), + [sym__inter_double_quotes] = STATE(1859), + [sym_val_list] = STATE(1680), + [sym_val_record] = STATE(1680), + [sym_val_table] = STATE(1680), + [sym_val_closure] = STATE(1680), + [sym__flag] = STATE(1749), + [sym_short_flag] = STATE(1720), + [sym_long_flag] = STATE(1720), + [sym_unquoted] = STATE(1552), + [sym__unquoted_with_expr] = STATE(1754), + [sym__unquoted_anonymous_prefix] = STATE(6407), + [sym_comment] = STATE(775), + [aux_sym_ctrl_do_repeat2] = STATE(774), + [sym__newline] = ACTIONS(2773), + [anon_sym_SEMI] = ACTIONS(2773), + [anon_sym_PIPE] = ACTIONS(2773), + [anon_sym_err_GT_PIPE] = ACTIONS(2773), + [anon_sym_out_GT_PIPE] = ACTIONS(2773), + [anon_sym_e_GT_PIPE] = ACTIONS(2773), + [anon_sym_o_GT_PIPE] = ACTIONS(2773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_LPAREN] = ACTIONS(2631), + [anon_sym_RPAREN] = ACTIONS(2773), + [anon_sym_DOLLAR] = ACTIONS(2633), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_DASH2] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_RBRACE] = ACTIONS(2773), + [anon_sym_DOT_DOT] = ACTIONS(2641), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2643), + [anon_sym_DOT_DOT_LT] = ACTIONS(2643), + [anon_sym_null] = ACTIONS(2645), + [anon_sym_true] = ACTIONS(2647), + [anon_sym_false] = ACTIONS(2647), + [aux_sym__val_number_decimal_token1] = ACTIONS(2649), + [aux_sym__val_number_decimal_token2] = ACTIONS(2651), + [aux_sym__val_number_decimal_token3] = ACTIONS(2653), + [aux_sym__val_number_decimal_token4] = ACTIONS(2655), + [aux_sym__val_number_token1] = ACTIONS(2657), + [aux_sym__val_number_token2] = ACTIONS(2657), + [aux_sym__val_number_token3] = ACTIONS(2657), + [aux_sym__val_number_token4] = ACTIONS(2659), + [aux_sym__val_number_token5] = ACTIONS(2659), + [aux_sym__val_number_token6] = ACTIONS(2659), + [anon_sym_0b] = ACTIONS(2661), + [anon_sym_0o] = ACTIONS(2663), + [anon_sym_0x] = ACTIONS(2663), + [sym_val_date] = ACTIONS(2665), + [anon_sym_DQUOTE] = ACTIONS(2667), + [sym__str_single_quotes] = ACTIONS(2669), + [sym__str_back_ticks] = ACTIONS(2669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2673), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(2679), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2681), }, - [836] = { - [sym_comment] = STATE(836), - [anon_sym_STAR_STAR] = ACTIONS(3104), - [anon_sym_PLUS_PLUS] = ACTIONS(3104), - [anon_sym_STAR] = ACTIONS(3106), - [anon_sym_SLASH] = ACTIONS(3106), - [anon_sym_mod] = ACTIONS(3104), - [anon_sym_SLASH_SLASH] = ACTIONS(3104), - [anon_sym_PLUS] = ACTIONS(3106), - [anon_sym_DASH] = ACTIONS(3104), - [anon_sym_bit_DASHshl] = ACTIONS(3104), - [anon_sym_bit_DASHshr] = ACTIONS(3104), - [anon_sym_EQ_TILDE] = ACTIONS(3104), - [anon_sym_BANG_TILDE] = ACTIONS(3104), - [anon_sym_bit_DASHand] = ACTIONS(3104), - [anon_sym_bit_DASHxor] = ACTIONS(3104), - [anon_sym_bit_DASHor] = ACTIONS(3104), - [anon_sym_and] = ACTIONS(3104), - [anon_sym_xor] = ACTIONS(3104), - [anon_sym_or] = ACTIONS(3104), - [anon_sym_in] = ACTIONS(3104), - [anon_sym_not_DASHin] = ACTIONS(3104), - [anon_sym_has] = ACTIONS(3104), - [anon_sym_not_DASHhas] = ACTIONS(3104), - [anon_sym_starts_DASHwith] = ACTIONS(3104), - [anon_sym_ends_DASHwith] = ACTIONS(3104), - [anon_sym_EQ_EQ] = ACTIONS(3104), - [anon_sym_BANG_EQ] = ACTIONS(3104), - [anon_sym_LT] = ACTIONS(3106), - [anon_sym_LT_EQ] = ACTIONS(3104), - [anon_sym_GT] = ACTIONS(3106), - [anon_sym_GT_EQ] = ACTIONS(3104), - [aux_sym_cmd_identifier_token41] = ACTIONS(3108), - [sym__newline] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(2089), - [anon_sym_PIPE] = ACTIONS(2089), - [anon_sym_err_GT_PIPE] = ACTIONS(2089), - [anon_sym_out_GT_PIPE] = ACTIONS(2089), - [anon_sym_e_GT_PIPE] = ACTIONS(2089), - [anon_sym_o_GT_PIPE] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2089), - [anon_sym_GT2] = ACTIONS(2089), - [anon_sym_DASH2] = ACTIONS(2089), - [anon_sym_in2] = ACTIONS(2089), - [anon_sym_RBRACE] = ACTIONS(2089), - [anon_sym_STAR2] = ACTIONS(2089), - [anon_sym_and2] = ACTIONS(2089), - [anon_sym_xor2] = ACTIONS(2089), - [anon_sym_or2] = ACTIONS(2089), - [anon_sym_not_DASHin2] = ACTIONS(2089), - [anon_sym_has2] = ACTIONS(2089), - [anon_sym_not_DASHhas2] = ACTIONS(2089), - [anon_sym_starts_DASHwith2] = ACTIONS(2089), - [anon_sym_ends_DASHwith2] = ACTIONS(2089), - [anon_sym_EQ_EQ2] = ACTIONS(2089), - [anon_sym_BANG_EQ2] = ACTIONS(2089), - [anon_sym_LT2] = ACTIONS(2089), - [anon_sym_LT_EQ2] = ACTIONS(2089), - [anon_sym_GT_EQ2] = ACTIONS(2089), - [anon_sym_EQ_TILDE2] = ACTIONS(2089), - [anon_sym_BANG_TILDE2] = ACTIONS(2089), - [anon_sym_STAR_STAR2] = ACTIONS(2089), - [anon_sym_PLUS_PLUS2] = ACTIONS(2089), - [anon_sym_SLASH2] = ACTIONS(2089), - [anon_sym_mod2] = ACTIONS(2089), - [anon_sym_SLASH_SLASH2] = ACTIONS(2089), - [anon_sym_PLUS2] = ACTIONS(2089), - [anon_sym_bit_DASHshl2] = ACTIONS(2089), - [anon_sym_bit_DASHshr2] = ACTIONS(2089), - [anon_sym_bit_DASHand2] = ACTIONS(2089), - [anon_sym_bit_DASHxor2] = ACTIONS(2089), - [anon_sym_bit_DASHor2] = ACTIONS(2089), - [anon_sym_err_GT] = ACTIONS(2089), - [anon_sym_out_GT] = ACTIONS(2089), - [anon_sym_e_GT] = ACTIONS(2089), - [anon_sym_o_GT] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT] = ACTIONS(2089), - [anon_sym_err_GT_GT] = ACTIONS(2089), - [anon_sym_out_GT_GT] = ACTIONS(2089), - [anon_sym_e_GT_GT] = ACTIONS(2089), - [anon_sym_o_GT_GT] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2089), + [776] = { + [sym_comment] = STATE(776), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, - [837] = { - [sym_comment] = STATE(837), - [anon_sym_STAR_STAR] = ACTIONS(3104), - [anon_sym_PLUS_PLUS] = ACTIONS(3104), - [anon_sym_STAR] = ACTIONS(3106), - [anon_sym_SLASH] = ACTIONS(3106), - [anon_sym_mod] = ACTIONS(3104), - [anon_sym_SLASH_SLASH] = ACTIONS(3104), - [anon_sym_PLUS] = ACTIONS(3106), - [anon_sym_DASH] = ACTIONS(3104), - [anon_sym_bit_DASHshl] = ACTIONS(3104), - [anon_sym_bit_DASHshr] = ACTIONS(3104), - [anon_sym_EQ_TILDE] = ACTIONS(3104), - [anon_sym_BANG_TILDE] = ACTIONS(3104), - [anon_sym_bit_DASHand] = ACTIONS(3104), - [anon_sym_bit_DASHxor] = ACTIONS(3104), - [anon_sym_bit_DASHor] = ACTIONS(3104), - [anon_sym_and] = ACTIONS(3104), - [anon_sym_xor] = ACTIONS(3104), - [anon_sym_or] = ACTIONS(3104), - [anon_sym_in] = ACTIONS(3104), - [anon_sym_not_DASHin] = ACTIONS(3104), - [anon_sym_has] = ACTIONS(3104), - [anon_sym_not_DASHhas] = ACTIONS(3104), - [anon_sym_starts_DASHwith] = ACTIONS(3104), - [anon_sym_ends_DASHwith] = ACTIONS(3104), - [anon_sym_EQ_EQ] = ACTIONS(3104), - [anon_sym_BANG_EQ] = ACTIONS(3104), - [anon_sym_LT] = ACTIONS(3106), - [anon_sym_LT_EQ] = ACTIONS(3104), - [anon_sym_GT] = ACTIONS(3106), - [anon_sym_GT_EQ] = ACTIONS(3104), - [aux_sym_cmd_identifier_token41] = ACTIONS(3108), - [sym__newline] = ACTIONS(2202), - [anon_sym_SEMI] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_err_GT_PIPE] = ACTIONS(2202), - [anon_sym_out_GT_PIPE] = ACTIONS(2202), - [anon_sym_e_GT_PIPE] = ACTIONS(2202), - [anon_sym_o_GT_PIPE] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2202), - [anon_sym_GT2] = ACTIONS(2202), - [anon_sym_DASH2] = ACTIONS(2202), - [anon_sym_in2] = ACTIONS(2202), - [anon_sym_RBRACE] = ACTIONS(2202), - [anon_sym_STAR2] = ACTIONS(2202), - [anon_sym_and2] = ACTIONS(2202), - [anon_sym_xor2] = ACTIONS(2202), - [anon_sym_or2] = ACTIONS(2202), - [anon_sym_not_DASHin2] = ACTIONS(2202), - [anon_sym_has2] = ACTIONS(2202), - [anon_sym_not_DASHhas2] = ACTIONS(2202), - [anon_sym_starts_DASHwith2] = ACTIONS(2202), - [anon_sym_ends_DASHwith2] = ACTIONS(2202), - [anon_sym_EQ_EQ2] = ACTIONS(2202), - [anon_sym_BANG_EQ2] = ACTIONS(2202), - [anon_sym_LT2] = ACTIONS(2202), - [anon_sym_LT_EQ2] = ACTIONS(2202), - [anon_sym_GT_EQ2] = ACTIONS(2202), - [anon_sym_EQ_TILDE2] = ACTIONS(2202), - [anon_sym_BANG_TILDE2] = ACTIONS(2202), - [anon_sym_STAR_STAR2] = ACTIONS(2202), - [anon_sym_PLUS_PLUS2] = ACTIONS(2202), - [anon_sym_SLASH2] = ACTIONS(2202), - [anon_sym_mod2] = ACTIONS(2202), - [anon_sym_SLASH_SLASH2] = ACTIONS(2202), - [anon_sym_PLUS2] = ACTIONS(2202), - [anon_sym_bit_DASHshl2] = ACTIONS(2202), - [anon_sym_bit_DASHshr2] = ACTIONS(2202), - [anon_sym_bit_DASHand2] = ACTIONS(2202), - [anon_sym_bit_DASHxor2] = ACTIONS(2202), - [anon_sym_bit_DASHor2] = ACTIONS(2202), - [anon_sym_err_GT] = ACTIONS(2202), - [anon_sym_out_GT] = ACTIONS(2202), - [anon_sym_e_GT] = ACTIONS(2202), - [anon_sym_o_GT] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT] = ACTIONS(2202), - [anon_sym_err_GT_GT] = ACTIONS(2202), - [anon_sym_out_GT_GT] = ACTIONS(2202), - [anon_sym_e_GT_GT] = ACTIONS(2202), - [anon_sym_o_GT_GT] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2202), - [anon_sym_POUND] = ACTIONS(3), + [777] = { + [sym_expr_parenthesized] = STATE(1575), + [sym_val_range] = STATE(1892), + [sym__val_range] = STATE(7095), + [sym__val_range_with_end] = STATE(6952), + [sym__value] = STATE(1892), + [sym_val_nothing] = STATE(1680), + [sym_val_bool] = STATE(1539), + [sym_val_variable] = STATE(1470), + [sym_val_number] = STATE(1680), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1686), + [sym_val_duration] = STATE(1680), + [sym_val_filesize] = STATE(1680), + [sym_val_binary] = STATE(1680), + [sym_val_string] = STATE(1680), + [sym__raw_str] = STATE(1800), + [sym__str_double_quotes] = STATE(1800), + [sym_val_interpolated] = STATE(1680), + [sym__inter_single_quotes] = STATE(1858), + [sym__inter_double_quotes] = STATE(1859), + [sym_val_list] = STATE(1680), + [sym_val_record] = STATE(1680), + [sym_val_table] = STATE(1680), + [sym_val_closure] = STATE(1680), + [sym__flag] = STATE(1892), + [sym_short_flag] = STATE(1720), + [sym_long_flag] = STATE(1720), + [sym_unquoted] = STATE(1582), + [sym__unquoted_with_expr] = STATE(1936), + [sym__unquoted_anonymous_prefix] = STATE(6407), + [sym_comment] = STATE(777), + [aux_sym_shebang_repeat1] = STATE(997), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(765), + [sym__newline] = ACTIONS(2775), + [anon_sym_SEMI] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2778), + [anon_sym_err_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_GT_PIPE] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2778), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_LPAREN] = ACTIONS(2631), + [anon_sym_RPAREN] = ACTIONS(2778), + [anon_sym_DOLLAR] = ACTIONS(2633), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_DASH2] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_DOT_DOT] = ACTIONS(2641), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2643), + [anon_sym_DOT_DOT_LT] = ACTIONS(2643), + [anon_sym_null] = ACTIONS(2645), + [anon_sym_true] = ACTIONS(2647), + [anon_sym_false] = ACTIONS(2647), + [aux_sym__val_number_decimal_token1] = ACTIONS(2649), + [aux_sym__val_number_decimal_token2] = ACTIONS(2651), + [aux_sym__val_number_decimal_token3] = ACTIONS(2653), + [aux_sym__val_number_decimal_token4] = ACTIONS(2655), + [aux_sym__val_number_token1] = ACTIONS(2657), + [aux_sym__val_number_token2] = ACTIONS(2657), + [aux_sym__val_number_token3] = ACTIONS(2657), + [aux_sym__val_number_token4] = ACTIONS(2659), + [aux_sym__val_number_token5] = ACTIONS(2659), + [aux_sym__val_number_token6] = ACTIONS(2659), + [anon_sym_0b] = ACTIONS(2661), + [anon_sym_0o] = ACTIONS(2663), + [anon_sym_0x] = ACTIONS(2663), + [sym_val_date] = ACTIONS(2665), + [anon_sym_DQUOTE] = ACTIONS(2667), + [sym__str_single_quotes] = ACTIONS(2669), + [sym__str_back_ticks] = ACTIONS(2669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2673), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(2679), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2681), }, - [838] = { - [sym_comment] = STATE(838), - [anon_sym_STAR_STAR] = ACTIONS(3110), - [anon_sym_PLUS_PLUS] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_mod] = ACTIONS(3110), - [anon_sym_SLASH_SLASH] = ACTIONS(3110), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3110), - [anon_sym_bit_DASHshl] = ACTIONS(3110), - [anon_sym_bit_DASHshr] = ACTIONS(3110), - [anon_sym_EQ_TILDE] = ACTIONS(3110), - [anon_sym_BANG_TILDE] = ACTIONS(3110), - [anon_sym_bit_DASHand] = ACTIONS(3110), - [anon_sym_bit_DASHxor] = ACTIONS(3110), - [anon_sym_bit_DASHor] = ACTIONS(3110), - [anon_sym_and] = ACTIONS(3110), - [anon_sym_xor] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3110), - [anon_sym_in] = ACTIONS(3110), - [anon_sym_not_DASHin] = ACTIONS(3110), - [anon_sym_has] = ACTIONS(3110), - [anon_sym_not_DASHhas] = ACTIONS(3110), - [anon_sym_starts_DASHwith] = ACTIONS(3110), - [anon_sym_ends_DASHwith] = ACTIONS(3110), - [anon_sym_EQ_EQ] = ACTIONS(3110), - [anon_sym_BANG_EQ] = ACTIONS(3110), - [anon_sym_LT] = ACTIONS(3112), - [anon_sym_LT_EQ] = ACTIONS(3110), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_GT_EQ] = ACTIONS(3110), - [aux_sym_cmd_identifier_token41] = ACTIONS(3114), - [sym__newline] = ACTIONS(2202), - [anon_sym_SEMI] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_err_GT_PIPE] = ACTIONS(2202), - [anon_sym_out_GT_PIPE] = ACTIONS(2202), - [anon_sym_e_GT_PIPE] = ACTIONS(2202), - [anon_sym_o_GT_PIPE] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2202), - [anon_sym_RPAREN] = ACTIONS(2202), - [anon_sym_GT2] = ACTIONS(2202), - [anon_sym_DASH2] = ACTIONS(2202), - [anon_sym_in2] = ACTIONS(2202), - [anon_sym_STAR2] = ACTIONS(2202), - [anon_sym_and2] = ACTIONS(2202), - [anon_sym_xor2] = ACTIONS(2202), - [anon_sym_or2] = ACTIONS(2202), - [anon_sym_not_DASHin2] = ACTIONS(2202), - [anon_sym_has2] = ACTIONS(2202), - [anon_sym_not_DASHhas2] = ACTIONS(2202), - [anon_sym_starts_DASHwith2] = ACTIONS(2202), - [anon_sym_ends_DASHwith2] = ACTIONS(2202), - [anon_sym_EQ_EQ2] = ACTIONS(2202), - [anon_sym_BANG_EQ2] = ACTIONS(2202), - [anon_sym_LT2] = ACTIONS(2202), - [anon_sym_LT_EQ2] = ACTIONS(2202), - [anon_sym_GT_EQ2] = ACTIONS(2202), - [anon_sym_EQ_TILDE2] = ACTIONS(2202), - [anon_sym_BANG_TILDE2] = ACTIONS(2202), - [anon_sym_STAR_STAR2] = ACTIONS(2202), - [anon_sym_PLUS_PLUS2] = ACTIONS(2202), - [anon_sym_SLASH2] = ACTIONS(2202), - [anon_sym_mod2] = ACTIONS(2202), - [anon_sym_SLASH_SLASH2] = ACTIONS(2202), - [anon_sym_PLUS2] = ACTIONS(2202), - [anon_sym_bit_DASHshl2] = ACTIONS(2202), - [anon_sym_bit_DASHshr2] = ACTIONS(2202), - [anon_sym_bit_DASHand2] = ACTIONS(2202), - [anon_sym_bit_DASHxor2] = ACTIONS(2202), - [anon_sym_bit_DASHor2] = ACTIONS(2202), - [anon_sym_err_GT] = ACTIONS(2202), - [anon_sym_out_GT] = ACTIONS(2202), - [anon_sym_e_GT] = ACTIONS(2202), - [anon_sym_o_GT] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT] = ACTIONS(2202), - [anon_sym_err_GT_GT] = ACTIONS(2202), - [anon_sym_out_GT_GT] = ACTIONS(2202), - [anon_sym_e_GT_GT] = ACTIONS(2202), - [anon_sym_o_GT_GT] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2202), - [anon_sym_POUND] = ACTIONS(3), + [778] = { + [sym_expr_parenthesized] = STATE(1575), + [sym_val_range] = STATE(1892), + [sym__val_range] = STATE(7095), + [sym__val_range_with_end] = STATE(6952), + [sym__value] = STATE(1892), + [sym_val_nothing] = STATE(1680), + [sym_val_bool] = STATE(1539), + [sym_val_variable] = STATE(1470), + [sym_val_number] = STATE(1680), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1686), + [sym_val_duration] = STATE(1680), + [sym_val_filesize] = STATE(1680), + [sym_val_binary] = STATE(1680), + [sym_val_string] = STATE(1680), + [sym__raw_str] = STATE(1800), + [sym__str_double_quotes] = STATE(1800), + [sym_val_interpolated] = STATE(1680), + [sym__inter_single_quotes] = STATE(1858), + [sym__inter_double_quotes] = STATE(1859), + [sym_val_list] = STATE(1680), + [sym_val_record] = STATE(1680), + [sym_val_table] = STATE(1680), + [sym_val_closure] = STATE(1680), + [sym__flag] = STATE(1892), + [sym_short_flag] = STATE(1720), + [sym_long_flag] = STATE(1720), + [sym_unquoted] = STATE(1582), + [sym__unquoted_with_expr] = STATE(1936), + [sym__unquoted_anonymous_prefix] = STATE(6407), + [sym_comment] = STATE(778), + [aux_sym_shebang_repeat1] = STATE(997), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(781), + [sym__newline] = ACTIONS(2775), + [anon_sym_SEMI] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2778), + [anon_sym_err_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_GT_PIPE] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2778), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_LPAREN] = ACTIONS(2631), + [anon_sym_RPAREN] = ACTIONS(2778), + [anon_sym_DOLLAR] = ACTIONS(2633), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_DASH2] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_DOT_DOT] = ACTIONS(2641), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2643), + [anon_sym_DOT_DOT_LT] = ACTIONS(2643), + [anon_sym_null] = ACTIONS(2645), + [anon_sym_true] = ACTIONS(2647), + [anon_sym_false] = ACTIONS(2647), + [aux_sym__val_number_decimal_token1] = ACTIONS(2649), + [aux_sym__val_number_decimal_token2] = ACTIONS(2651), + [aux_sym__val_number_decimal_token3] = ACTIONS(2653), + [aux_sym__val_number_decimal_token4] = ACTIONS(2655), + [aux_sym__val_number_token1] = ACTIONS(2657), + [aux_sym__val_number_token2] = ACTIONS(2657), + [aux_sym__val_number_token3] = ACTIONS(2657), + [aux_sym__val_number_token4] = ACTIONS(2659), + [aux_sym__val_number_token5] = ACTIONS(2659), + [aux_sym__val_number_token6] = ACTIONS(2659), + [anon_sym_0b] = ACTIONS(2661), + [anon_sym_0o] = ACTIONS(2663), + [anon_sym_0x] = ACTIONS(2663), + [sym_val_date] = ACTIONS(2665), + [anon_sym_DQUOTE] = ACTIONS(2667), + [sym__str_single_quotes] = ACTIONS(2669), + [sym__str_back_ticks] = ACTIONS(2669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2673), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(2679), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2681), }, - [839] = { - [sym_comment] = STATE(839), - [anon_sym_STAR_STAR] = ACTIONS(3110), - [anon_sym_PLUS_PLUS] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_mod] = ACTIONS(3110), - [anon_sym_SLASH_SLASH] = ACTIONS(3110), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3110), - [anon_sym_bit_DASHshl] = ACTIONS(3110), - [anon_sym_bit_DASHshr] = ACTIONS(3110), - [anon_sym_EQ_TILDE] = ACTIONS(3110), - [anon_sym_BANG_TILDE] = ACTIONS(3110), - [anon_sym_bit_DASHand] = ACTIONS(3110), - [anon_sym_bit_DASHxor] = ACTIONS(3110), - [anon_sym_bit_DASHor] = ACTIONS(3110), - [anon_sym_and] = ACTIONS(3110), - [anon_sym_xor] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3110), - [anon_sym_in] = ACTIONS(3110), - [anon_sym_not_DASHin] = ACTIONS(3110), - [anon_sym_has] = ACTIONS(3110), - [anon_sym_not_DASHhas] = ACTIONS(3110), - [anon_sym_starts_DASHwith] = ACTIONS(3110), - [anon_sym_ends_DASHwith] = ACTIONS(3110), - [anon_sym_EQ_EQ] = ACTIONS(3110), - [anon_sym_BANG_EQ] = ACTIONS(3110), - [anon_sym_LT] = ACTIONS(3112), - [anon_sym_LT_EQ] = ACTIONS(3110), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_GT_EQ] = ACTIONS(3110), - [aux_sym_cmd_identifier_token41] = ACTIONS(3114), - [sym__newline] = ACTIONS(2202), - [anon_sym_SEMI] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_err_GT_PIPE] = ACTIONS(2202), - [anon_sym_out_GT_PIPE] = ACTIONS(2202), - [anon_sym_e_GT_PIPE] = ACTIONS(2202), - [anon_sym_o_GT_PIPE] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2202), - [anon_sym_GT2] = ACTIONS(2202), - [anon_sym_DASH2] = ACTIONS(2202), - [anon_sym_in2] = ACTIONS(2202), - [anon_sym_RBRACE] = ACTIONS(2202), - [anon_sym_STAR2] = ACTIONS(2202), - [anon_sym_and2] = ACTIONS(2202), - [anon_sym_xor2] = ACTIONS(2202), - [anon_sym_or2] = ACTIONS(2202), - [anon_sym_not_DASHin2] = ACTIONS(2202), - [anon_sym_has2] = ACTIONS(2202), - [anon_sym_not_DASHhas2] = ACTIONS(2202), - [anon_sym_starts_DASHwith2] = ACTIONS(2202), - [anon_sym_ends_DASHwith2] = ACTIONS(2202), - [anon_sym_EQ_EQ2] = ACTIONS(2202), - [anon_sym_BANG_EQ2] = ACTIONS(2202), - [anon_sym_LT2] = ACTIONS(2202), - [anon_sym_LT_EQ2] = ACTIONS(2202), - [anon_sym_GT_EQ2] = ACTIONS(2202), - [anon_sym_EQ_TILDE2] = ACTIONS(2202), - [anon_sym_BANG_TILDE2] = ACTIONS(2202), - [anon_sym_STAR_STAR2] = ACTIONS(2202), - [anon_sym_PLUS_PLUS2] = ACTIONS(2202), - [anon_sym_SLASH2] = ACTIONS(2202), - [anon_sym_mod2] = ACTIONS(2202), - [anon_sym_SLASH_SLASH2] = ACTIONS(2202), - [anon_sym_PLUS2] = ACTIONS(2202), - [anon_sym_bit_DASHshl2] = ACTIONS(2202), - [anon_sym_bit_DASHshr2] = ACTIONS(2202), - [anon_sym_bit_DASHand2] = ACTIONS(2202), - [anon_sym_bit_DASHxor2] = ACTIONS(2202), - [anon_sym_bit_DASHor2] = ACTIONS(2202), - [anon_sym_err_GT] = ACTIONS(2202), - [anon_sym_out_GT] = ACTIONS(2202), - [anon_sym_e_GT] = ACTIONS(2202), - [anon_sym_o_GT] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT] = ACTIONS(2202), - [anon_sym_err_GT_GT] = ACTIONS(2202), - [anon_sym_out_GT_GT] = ACTIONS(2202), - [anon_sym_e_GT_GT] = ACTIONS(2202), - [anon_sym_o_GT_GT] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2202), + [779] = { + [sym_comment] = STATE(779), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1581), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_bit_DASHshl] = ACTIONS(1581), + [anon_sym_bit_DASHshr] = ACTIONS(1581), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1581), + [anon_sym_bit_DASHxor] = ACTIONS(1581), + [anon_sym_bit_DASHor] = ACTIONS(1581), + [anon_sym_and] = ACTIONS(1581), + [anon_sym_xor] = ACTIONS(1581), + [anon_sym_or] = ACTIONS(1581), + [anon_sym_in] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1581), + [anon_sym_has] = ACTIONS(1581), + [anon_sym_not_DASHhas] = ACTIONS(1581), + [anon_sym_starts_DASHwith] = ACTIONS(1581), + [anon_sym_ends_DASHwith] = ACTIONS(1581), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1581), + [aux_sym_cmd_identifier_token41] = ACTIONS(1579), + [sym__newline] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_err_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_GT_PIPE] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), + [anon_sym_GT2] = ACTIONS(1579), + [anon_sym_DASH2] = ACTIONS(1579), + [anon_sym_in2] = ACTIONS(1579), + [anon_sym_STAR2] = ACTIONS(1579), + [anon_sym_and2] = ACTIONS(1579), + [anon_sym_xor2] = ACTIONS(1579), + [anon_sym_or2] = ACTIONS(1579), + [anon_sym_not_DASHin2] = ACTIONS(1579), + [anon_sym_has2] = ACTIONS(1579), + [anon_sym_not_DASHhas2] = ACTIONS(1579), + [anon_sym_starts_DASHwith2] = ACTIONS(1579), + [anon_sym_ends_DASHwith2] = ACTIONS(1579), + [anon_sym_EQ_EQ2] = ACTIONS(1579), + [anon_sym_BANG_EQ2] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ2] = ACTIONS(1579), + [anon_sym_GT_EQ2] = ACTIONS(1579), + [anon_sym_EQ_TILDE2] = ACTIONS(1579), + [anon_sym_BANG_TILDE2] = ACTIONS(1579), + [anon_sym_STAR_STAR2] = ACTIONS(1579), + [anon_sym_PLUS_PLUS2] = ACTIONS(1579), + [anon_sym_SLASH2] = ACTIONS(1579), + [anon_sym_mod2] = ACTIONS(1579), + [anon_sym_SLASH_SLASH2] = ACTIONS(1579), + [anon_sym_PLUS2] = ACTIONS(1579), + [anon_sym_bit_DASHshl2] = ACTIONS(1579), + [anon_sym_bit_DASHshr2] = ACTIONS(1579), + [anon_sym_bit_DASHand2] = ACTIONS(1579), + [anon_sym_bit_DASHxor2] = ACTIONS(1579), + [anon_sym_bit_DASHor2] = ACTIONS(1579), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [aux_sym__immediate_decimal_token2] = ACTIONS(2780), + [sym_filesize_unit] = ACTIONS(1579), + [sym_duration_unit] = ACTIONS(1581), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [anon_sym_err_GT_GT] = ACTIONS(1579), + [anon_sym_out_GT_GT] = ACTIONS(1579), + [anon_sym_e_GT_GT] = ACTIONS(1579), + [anon_sym_o_GT_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(3), }, - [840] = { - [sym_comment] = STATE(840), - [anon_sym_STAR_STAR] = ACTIONS(3110), - [anon_sym_PLUS_PLUS] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_mod] = ACTIONS(3110), - [anon_sym_SLASH_SLASH] = ACTIONS(3110), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3110), - [anon_sym_bit_DASHshl] = ACTIONS(3110), - [anon_sym_bit_DASHshr] = ACTIONS(3110), - [anon_sym_EQ_TILDE] = ACTIONS(3110), - [anon_sym_BANG_TILDE] = ACTIONS(3110), - [anon_sym_bit_DASHand] = ACTIONS(3110), - [anon_sym_bit_DASHxor] = ACTIONS(3110), - [anon_sym_bit_DASHor] = ACTIONS(3110), - [anon_sym_and] = ACTIONS(3110), - [anon_sym_xor] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3110), - [anon_sym_in] = ACTIONS(3110), - [anon_sym_not_DASHin] = ACTIONS(3110), - [anon_sym_has] = ACTIONS(3110), - [anon_sym_not_DASHhas] = ACTIONS(3110), - [anon_sym_starts_DASHwith] = ACTIONS(3110), - [anon_sym_ends_DASHwith] = ACTIONS(3110), - [anon_sym_EQ_EQ] = ACTIONS(3110), - [anon_sym_BANG_EQ] = ACTIONS(3110), - [anon_sym_LT] = ACTIONS(3112), - [anon_sym_LT_EQ] = ACTIONS(3110), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_GT_EQ] = ACTIONS(3110), - [aux_sym_cmd_identifier_token41] = ACTIONS(3114), - [sym__newline] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(2089), - [anon_sym_PIPE] = ACTIONS(2089), - [anon_sym_err_GT_PIPE] = ACTIONS(2089), - [anon_sym_out_GT_PIPE] = ACTIONS(2089), - [anon_sym_e_GT_PIPE] = ACTIONS(2089), - [anon_sym_o_GT_PIPE] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2089), - [anon_sym_GT2] = ACTIONS(2089), - [anon_sym_DASH2] = ACTIONS(2089), - [anon_sym_in2] = ACTIONS(2089), - [anon_sym_RBRACE] = ACTIONS(2089), - [anon_sym_STAR2] = ACTIONS(2089), - [anon_sym_and2] = ACTIONS(2089), - [anon_sym_xor2] = ACTIONS(2089), - [anon_sym_or2] = ACTIONS(2089), - [anon_sym_not_DASHin2] = ACTIONS(2089), - [anon_sym_has2] = ACTIONS(2089), - [anon_sym_not_DASHhas2] = ACTIONS(2089), - [anon_sym_starts_DASHwith2] = ACTIONS(2089), - [anon_sym_ends_DASHwith2] = ACTIONS(2089), - [anon_sym_EQ_EQ2] = ACTIONS(2089), - [anon_sym_BANG_EQ2] = ACTIONS(2089), - [anon_sym_LT2] = ACTIONS(2089), - [anon_sym_LT_EQ2] = ACTIONS(2089), - [anon_sym_GT_EQ2] = ACTIONS(2089), - [anon_sym_EQ_TILDE2] = ACTIONS(2089), - [anon_sym_BANG_TILDE2] = ACTIONS(2089), - [anon_sym_STAR_STAR2] = ACTIONS(2089), - [anon_sym_PLUS_PLUS2] = ACTIONS(2089), - [anon_sym_SLASH2] = ACTIONS(2089), - [anon_sym_mod2] = ACTIONS(2089), - [anon_sym_SLASH_SLASH2] = ACTIONS(2089), - [anon_sym_PLUS2] = ACTIONS(2089), - [anon_sym_bit_DASHshl2] = ACTIONS(2089), - [anon_sym_bit_DASHshr2] = ACTIONS(2089), - [anon_sym_bit_DASHand2] = ACTIONS(2089), - [anon_sym_bit_DASHxor2] = ACTIONS(2089), - [anon_sym_bit_DASHor2] = ACTIONS(2089), - [anon_sym_err_GT] = ACTIONS(2089), - [anon_sym_out_GT] = ACTIONS(2089), - [anon_sym_e_GT] = ACTIONS(2089), - [anon_sym_o_GT] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT] = ACTIONS(2089), - [anon_sym_err_GT_GT] = ACTIONS(2089), - [anon_sym_out_GT_GT] = ACTIONS(2089), - [anon_sym_e_GT_GT] = ACTIONS(2089), - [anon_sym_o_GT_GT] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2089), - [anon_sym_POUND] = ACTIONS(3), + [780] = { + [sym_expr_parenthesized] = STATE(1575), + [sym_val_range] = STATE(1892), + [sym__val_range] = STATE(7095), + [sym__val_range_with_end] = STATE(6952), + [sym__value] = STATE(1892), + [sym_val_nothing] = STATE(1680), + [sym_val_bool] = STATE(1539), + [sym_val_variable] = STATE(1470), + [sym_val_number] = STATE(1680), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1686), + [sym_val_duration] = STATE(1680), + [sym_val_filesize] = STATE(1680), + [sym_val_binary] = STATE(1680), + [sym_val_string] = STATE(1680), + [sym__raw_str] = STATE(1800), + [sym__str_double_quotes] = STATE(1800), + [sym_val_interpolated] = STATE(1680), + [sym__inter_single_quotes] = STATE(1858), + [sym__inter_double_quotes] = STATE(1859), + [sym_val_list] = STATE(1680), + [sym_val_record] = STATE(1680), + [sym_val_table] = STATE(1680), + [sym_val_closure] = STATE(1680), + [sym__flag] = STATE(1892), + [sym_short_flag] = STATE(1720), + [sym_long_flag] = STATE(1720), + [sym_unquoted] = STATE(1582), + [sym__unquoted_with_expr] = STATE(1936), + [sym__unquoted_anonymous_prefix] = STATE(6407), + [sym_comment] = STATE(780), + [aux_sym_shebang_repeat1] = STATE(997), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(778), + [sym__newline] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2785), + [anon_sym_PIPE] = ACTIONS(2785), + [anon_sym_err_GT_PIPE] = ACTIONS(2785), + [anon_sym_out_GT_PIPE] = ACTIONS(2785), + [anon_sym_e_GT_PIPE] = ACTIONS(2785), + [anon_sym_o_GT_PIPE] = ACTIONS(2785), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2785), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2785), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2785), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2785), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_LPAREN] = ACTIONS(2631), + [anon_sym_RPAREN] = ACTIONS(2785), + [anon_sym_DOLLAR] = ACTIONS(2633), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_DASH2] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_DOT_DOT] = ACTIONS(2641), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2643), + [anon_sym_DOT_DOT_LT] = ACTIONS(2643), + [anon_sym_null] = ACTIONS(2645), + [anon_sym_true] = ACTIONS(2647), + [anon_sym_false] = ACTIONS(2647), + [aux_sym__val_number_decimal_token1] = ACTIONS(2649), + [aux_sym__val_number_decimal_token2] = ACTIONS(2651), + [aux_sym__val_number_decimal_token3] = ACTIONS(2653), + [aux_sym__val_number_decimal_token4] = ACTIONS(2655), + [aux_sym__val_number_token1] = ACTIONS(2657), + [aux_sym__val_number_token2] = ACTIONS(2657), + [aux_sym__val_number_token3] = ACTIONS(2657), + [aux_sym__val_number_token4] = ACTIONS(2659), + [aux_sym__val_number_token5] = ACTIONS(2659), + [aux_sym__val_number_token6] = ACTIONS(2659), + [anon_sym_0b] = ACTIONS(2661), + [anon_sym_0o] = ACTIONS(2663), + [anon_sym_0x] = ACTIONS(2663), + [sym_val_date] = ACTIONS(2665), + [anon_sym_DQUOTE] = ACTIONS(2667), + [sym__str_single_quotes] = ACTIONS(2669), + [sym__str_back_ticks] = ACTIONS(2669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2673), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(2679), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2681), }, - [841] = { - [sym_comment] = STATE(841), - [anon_sym_STAR_STAR] = ACTIONS(3110), - [anon_sym_PLUS_PLUS] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_mod] = ACTIONS(3110), - [anon_sym_SLASH_SLASH] = ACTIONS(3110), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3110), - [anon_sym_bit_DASHshl] = ACTIONS(3110), - [anon_sym_bit_DASHshr] = ACTIONS(3110), - [anon_sym_EQ_TILDE] = ACTIONS(3110), - [anon_sym_BANG_TILDE] = ACTIONS(3110), - [anon_sym_bit_DASHand] = ACTIONS(3110), - [anon_sym_bit_DASHxor] = ACTIONS(3110), - [anon_sym_bit_DASHor] = ACTIONS(3110), - [anon_sym_and] = ACTIONS(3110), - [anon_sym_xor] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3110), - [anon_sym_in] = ACTIONS(3110), - [anon_sym_not_DASHin] = ACTIONS(3110), - [anon_sym_has] = ACTIONS(3110), - [anon_sym_not_DASHhas] = ACTIONS(3110), - [anon_sym_starts_DASHwith] = ACTIONS(3110), - [anon_sym_ends_DASHwith] = ACTIONS(3110), - [anon_sym_EQ_EQ] = ACTIONS(3110), - [anon_sym_BANG_EQ] = ACTIONS(3110), - [anon_sym_LT] = ACTIONS(3112), - [anon_sym_LT_EQ] = ACTIONS(3110), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_GT_EQ] = ACTIONS(3110), - [aux_sym_cmd_identifier_token41] = ACTIONS(3114), - [sym__newline] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(2089), - [anon_sym_PIPE] = ACTIONS(2089), - [anon_sym_err_GT_PIPE] = ACTIONS(2089), - [anon_sym_out_GT_PIPE] = ACTIONS(2089), - [anon_sym_e_GT_PIPE] = ACTIONS(2089), - [anon_sym_o_GT_PIPE] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2089), - [anon_sym_RPAREN] = ACTIONS(2089), - [anon_sym_GT2] = ACTIONS(2089), - [anon_sym_DASH2] = ACTIONS(2089), - [anon_sym_in2] = ACTIONS(2089), - [anon_sym_STAR2] = ACTIONS(2089), - [anon_sym_and2] = ACTIONS(2089), - [anon_sym_xor2] = ACTIONS(2089), - [anon_sym_or2] = ACTIONS(2089), - [anon_sym_not_DASHin2] = ACTIONS(2089), - [anon_sym_has2] = ACTIONS(2089), - [anon_sym_not_DASHhas2] = ACTIONS(2089), - [anon_sym_starts_DASHwith2] = ACTIONS(2089), - [anon_sym_ends_DASHwith2] = ACTIONS(2089), - [anon_sym_EQ_EQ2] = ACTIONS(2089), - [anon_sym_BANG_EQ2] = ACTIONS(2089), - [anon_sym_LT2] = ACTIONS(2089), - [anon_sym_LT_EQ2] = ACTIONS(2089), - [anon_sym_GT_EQ2] = ACTIONS(2089), - [anon_sym_EQ_TILDE2] = ACTIONS(2089), - [anon_sym_BANG_TILDE2] = ACTIONS(2089), - [anon_sym_STAR_STAR2] = ACTIONS(2089), - [anon_sym_PLUS_PLUS2] = ACTIONS(2089), - [anon_sym_SLASH2] = ACTIONS(2089), - [anon_sym_mod2] = ACTIONS(2089), - [anon_sym_SLASH_SLASH2] = ACTIONS(2089), - [anon_sym_PLUS2] = ACTIONS(2089), - [anon_sym_bit_DASHshl2] = ACTIONS(2089), - [anon_sym_bit_DASHshr2] = ACTIONS(2089), - [anon_sym_bit_DASHand2] = ACTIONS(2089), - [anon_sym_bit_DASHxor2] = ACTIONS(2089), - [anon_sym_bit_DASHor2] = ACTIONS(2089), - [anon_sym_err_GT] = ACTIONS(2089), - [anon_sym_out_GT] = ACTIONS(2089), - [anon_sym_e_GT] = ACTIONS(2089), - [anon_sym_o_GT] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT] = ACTIONS(2089), - [anon_sym_err_GT_GT] = ACTIONS(2089), - [anon_sym_out_GT_GT] = ACTIONS(2089), - [anon_sym_e_GT_GT] = ACTIONS(2089), - [anon_sym_o_GT_GT] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2089), + [781] = { + [sym_expr_parenthesized] = STATE(1575), + [sym_val_range] = STATE(1892), + [sym__val_range] = STATE(7095), + [sym__val_range_with_end] = STATE(6952), + [sym__value] = STATE(1892), + [sym_val_nothing] = STATE(1680), + [sym_val_bool] = STATE(1539), + [sym_val_variable] = STATE(1470), + [sym_val_number] = STATE(1680), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1686), + [sym_val_duration] = STATE(1680), + [sym_val_filesize] = STATE(1680), + [sym_val_binary] = STATE(1680), + [sym_val_string] = STATE(1680), + [sym__raw_str] = STATE(1800), + [sym__str_double_quotes] = STATE(1800), + [sym_val_interpolated] = STATE(1680), + [sym__inter_single_quotes] = STATE(1858), + [sym__inter_double_quotes] = STATE(1859), + [sym_val_list] = STATE(1680), + [sym_val_record] = STATE(1680), + [sym_val_table] = STATE(1680), + [sym_val_closure] = STATE(1680), + [sym__flag] = STATE(1892), + [sym_short_flag] = STATE(1720), + [sym_long_flag] = STATE(1720), + [sym_unquoted] = STATE(1582), + [sym__unquoted_with_expr] = STATE(1936), + [sym__unquoted_anonymous_prefix] = STATE(6407), + [sym_comment] = STATE(781), + [aux_sym_shebang_repeat1] = STATE(997), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(781), + [sym__newline] = ACTIONS(2787), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_err_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_GT_PIPE] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2790), + [anon_sym_LBRACK] = ACTIONS(2792), + [anon_sym_LPAREN] = ACTIONS(2795), + [anon_sym_RPAREN] = ACTIONS(2790), + [anon_sym_DOLLAR] = ACTIONS(2798), + [anon_sym_DASH_DASH] = ACTIONS(2801), + [anon_sym_DASH2] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_DOT_DOT] = ACTIONS(2810), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2813), + [anon_sym_DOT_DOT_LT] = ACTIONS(2813), + [anon_sym_null] = ACTIONS(2816), + [anon_sym_true] = ACTIONS(2819), + [anon_sym_false] = ACTIONS(2819), + [aux_sym__val_number_decimal_token1] = ACTIONS(2822), + [aux_sym__val_number_decimal_token2] = ACTIONS(2825), + [aux_sym__val_number_decimal_token3] = ACTIONS(2828), + [aux_sym__val_number_decimal_token4] = ACTIONS(2831), + [aux_sym__val_number_token1] = ACTIONS(2834), + [aux_sym__val_number_token2] = ACTIONS(2834), + [aux_sym__val_number_token3] = ACTIONS(2834), + [aux_sym__val_number_token4] = ACTIONS(2837), + [aux_sym__val_number_token5] = ACTIONS(2837), + [aux_sym__val_number_token6] = ACTIONS(2837), + [anon_sym_0b] = ACTIONS(2840), + [anon_sym_0o] = ACTIONS(2843), + [anon_sym_0x] = ACTIONS(2843), + [sym_val_date] = ACTIONS(2846), + [anon_sym_DQUOTE] = ACTIONS(2849), + [sym__str_single_quotes] = ACTIONS(2852), + [sym__str_back_ticks] = ACTIONS(2852), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2855), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2858), + [anon_sym_err_GT] = ACTIONS(2861), + [anon_sym_out_GT] = ACTIONS(2861), + [anon_sym_e_GT] = ACTIONS(2861), + [anon_sym_o_GT] = ACTIONS(2861), + [anon_sym_err_PLUSout_GT] = ACTIONS(2861), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2861), + [anon_sym_o_PLUSe_GT] = ACTIONS(2861), + [anon_sym_e_PLUSo_GT] = ACTIONS(2861), + [anon_sym_err_GT_GT] = ACTIONS(2864), + [anon_sym_out_GT_GT] = ACTIONS(2864), + [anon_sym_e_GT_GT] = ACTIONS(2864), + [anon_sym_o_GT_GT] = ACTIONS(2864), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2864), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2864), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2864), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2864), + [aux_sym_unquoted_token1] = ACTIONS(2867), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2870), + }, + [782] = { + [sym_comment] = STATE(782), + [aux_sym_shebang_repeat1] = STATE(767), + [aux_sym_cmd_identifier_token1] = ACTIONS(2873), + [aux_sym_cmd_identifier_token2] = ACTIONS(2875), + [aux_sym_cmd_identifier_token3] = ACTIONS(2875), + [aux_sym_cmd_identifier_token4] = ACTIONS(2875), + [aux_sym_cmd_identifier_token5] = ACTIONS(2875), + [aux_sym_cmd_identifier_token6] = ACTIONS(2875), + [aux_sym_cmd_identifier_token7] = ACTIONS(2875), + [aux_sym_cmd_identifier_token8] = ACTIONS(2875), + [aux_sym_cmd_identifier_token9] = ACTIONS(2873), + [aux_sym_cmd_identifier_token10] = ACTIONS(2875), + [aux_sym_cmd_identifier_token11] = ACTIONS(2875), + [aux_sym_cmd_identifier_token12] = ACTIONS(2875), + [aux_sym_cmd_identifier_token13] = ACTIONS(2873), + [aux_sym_cmd_identifier_token14] = ACTIONS(2875), + [aux_sym_cmd_identifier_token15] = ACTIONS(2873), + [aux_sym_cmd_identifier_token16] = ACTIONS(2875), + [aux_sym_cmd_identifier_token17] = ACTIONS(2875), + [aux_sym_cmd_identifier_token18] = ACTIONS(2875), + [aux_sym_cmd_identifier_token19] = ACTIONS(2875), + [aux_sym_cmd_identifier_token20] = ACTIONS(2875), + [aux_sym_cmd_identifier_token21] = ACTIONS(2875), + [aux_sym_cmd_identifier_token22] = ACTIONS(2875), + [aux_sym_cmd_identifier_token23] = ACTIONS(2875), + [aux_sym_cmd_identifier_token24] = ACTIONS(2875), + [aux_sym_cmd_identifier_token25] = ACTIONS(2875), + [aux_sym_cmd_identifier_token26] = ACTIONS(2875), + [aux_sym_cmd_identifier_token27] = ACTIONS(2875), + [aux_sym_cmd_identifier_token28] = ACTIONS(2875), + [aux_sym_cmd_identifier_token29] = ACTIONS(2875), + [aux_sym_cmd_identifier_token30] = ACTIONS(2875), + [aux_sym_cmd_identifier_token31] = ACTIONS(2875), + [aux_sym_cmd_identifier_token32] = ACTIONS(2875), + [aux_sym_cmd_identifier_token33] = ACTIONS(2875), + [aux_sym_cmd_identifier_token34] = ACTIONS(2873), + [aux_sym_cmd_identifier_token35] = ACTIONS(2875), + [aux_sym_cmd_identifier_token36] = ACTIONS(2875), + [aux_sym_cmd_identifier_token37] = ACTIONS(2875), + [aux_sym_cmd_identifier_token38] = ACTIONS(2873), + [aux_sym_cmd_identifier_token39] = ACTIONS(2875), + [aux_sym_cmd_identifier_token40] = ACTIONS(2875), + [sym__newline] = ACTIONS(2618), + [anon_sym_PIPE] = ACTIONS(2877), + [anon_sym_err_GT_PIPE] = ACTIONS(2877), + [anon_sym_out_GT_PIPE] = ACTIONS(2877), + [anon_sym_e_GT_PIPE] = ACTIONS(2877), + [anon_sym_o_GT_PIPE] = ACTIONS(2877), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2877), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2877), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2877), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2877), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_LPAREN] = ACTIONS(2875), + [anon_sym_DOLLAR] = ACTIONS(2873), + [anon_sym_DASH2] = ACTIONS(2873), + [anon_sym_break] = ACTIONS(2873), + [anon_sym_continue] = ACTIONS(2873), + [anon_sym_do] = ACTIONS(2873), + [anon_sym_if] = ACTIONS(2873), + [anon_sym_match] = ACTIONS(2873), + [anon_sym_LBRACE] = ACTIONS(2875), + [anon_sym_DOT_DOT] = ACTIONS(2873), + [anon_sym_try] = ACTIONS(2873), + [anon_sym_return] = ACTIONS(2873), + [anon_sym_where] = ACTIONS(2875), + [aux_sym_expr_unary_token1] = ACTIONS(2875), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2875), + [anon_sym_DOT_DOT_LT] = ACTIONS(2875), + [anon_sym_null] = ACTIONS(2873), + [anon_sym_true] = ACTIONS(2873), + [anon_sym_false] = ACTIONS(2873), + [aux_sym__val_number_decimal_token1] = ACTIONS(2873), + [aux_sym__val_number_decimal_token2] = ACTIONS(2875), + [aux_sym__val_number_decimal_token3] = ACTIONS(2875), + [aux_sym__val_number_decimal_token4] = ACTIONS(2875), + [aux_sym__val_number_token1] = ACTIONS(2875), + [aux_sym__val_number_token2] = ACTIONS(2875), + [aux_sym__val_number_token3] = ACTIONS(2875), + [aux_sym__val_number_token4] = ACTIONS(2873), + [aux_sym__val_number_token5] = ACTIONS(2873), + [aux_sym__val_number_token6] = ACTIONS(2873), + [anon_sym_0b] = ACTIONS(2873), + [anon_sym_0o] = ACTIONS(2873), + [anon_sym_0x] = ACTIONS(2873), + [sym_val_date] = ACTIONS(2875), + [anon_sym_DQUOTE] = ACTIONS(2875), + [sym__str_single_quotes] = ACTIONS(2875), + [sym__str_back_ticks] = ACTIONS(2875), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2875), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2875), + [aux_sym_env_var_token1] = ACTIONS(2873), + [anon_sym_CARET] = ACTIONS(2875), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2875), + }, + [783] = { + [sym_comment] = STATE(783), + [anon_sym_STAR_STAR] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(2570), + [anon_sym_SLASH] = ACTIONS(2570), + [anon_sym_mod] = ACTIONS(2568), + [anon_sym_SLASH_SLASH] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_bit_DASHshl] = ACTIONS(2568), + [anon_sym_bit_DASHshr] = ACTIONS(2568), + [anon_sym_EQ_TILDE] = ACTIONS(2568), + [anon_sym_BANG_TILDE] = ACTIONS(2568), + [anon_sym_bit_DASHand] = ACTIONS(2568), + [anon_sym_bit_DASHxor] = ACTIONS(2568), + [anon_sym_bit_DASHor] = ACTIONS(2568), + [anon_sym_and] = ACTIONS(2568), + [anon_sym_xor] = ACTIONS(2568), + [anon_sym_or] = ACTIONS(2568), + [anon_sym_in] = ACTIONS(2568), + [anon_sym_not_DASHin] = ACTIONS(2568), + [anon_sym_has] = ACTIONS(2568), + [anon_sym_not_DASHhas] = ACTIONS(2568), + [anon_sym_starts_DASHwith] = ACTIONS(2568), + [anon_sym_ends_DASHwith] = ACTIONS(2568), + [anon_sym_EQ_EQ] = ACTIONS(2568), + [anon_sym_BANG_EQ] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_LT_EQ] = ACTIONS(2568), + [anon_sym_GT] = ACTIONS(2570), + [anon_sym_GT_EQ] = ACTIONS(2568), + [aux_sym_cmd_identifier_token41] = ACTIONS(2572), + [sym__newline] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1616), + [anon_sym_err_GT_PIPE] = ACTIONS(1616), + [anon_sym_out_GT_PIPE] = ACTIONS(1616), + [anon_sym_e_GT_PIPE] = ACTIONS(1616), + [anon_sym_o_GT_PIPE] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1616), + [anon_sym_GT2] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_in2] = ACTIONS(1616), + [anon_sym_STAR2] = ACTIONS(1616), + [anon_sym_and2] = ACTIONS(1616), + [anon_sym_xor2] = ACTIONS(1616), + [anon_sym_or2] = ACTIONS(1616), + [anon_sym_not_DASHin2] = ACTIONS(1616), + [anon_sym_has2] = ACTIONS(1616), + [anon_sym_not_DASHhas2] = ACTIONS(1616), + [anon_sym_starts_DASHwith2] = ACTIONS(1616), + [anon_sym_ends_DASHwith2] = ACTIONS(1616), + [anon_sym_EQ_EQ2] = ACTIONS(1616), + [anon_sym_BANG_EQ2] = ACTIONS(1616), + [anon_sym_LT2] = ACTIONS(1616), + [anon_sym_LT_EQ2] = ACTIONS(1616), + [anon_sym_GT_EQ2] = ACTIONS(1616), + [anon_sym_EQ_TILDE2] = ACTIONS(1616), + [anon_sym_BANG_TILDE2] = ACTIONS(1616), + [anon_sym_STAR_STAR2] = ACTIONS(1616), + [anon_sym_PLUS_PLUS2] = ACTIONS(1616), + [anon_sym_SLASH2] = ACTIONS(1616), + [anon_sym_mod2] = ACTIONS(1616), + [anon_sym_SLASH_SLASH2] = ACTIONS(1616), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_bit_DASHshl2] = ACTIONS(1616), + [anon_sym_bit_DASHshr2] = ACTIONS(1616), + [anon_sym_bit_DASHand2] = ACTIONS(1616), + [anon_sym_bit_DASHxor2] = ACTIONS(1616), + [anon_sym_bit_DASHor2] = ACTIONS(1616), + [anon_sym_DOT_DOT2] = ACTIONS(2548), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2550), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2550), + [sym_filesize_unit] = ACTIONS(2879), + [sym_duration_unit] = ACTIONS(2881), + [anon_sym_err_GT] = ACTIONS(1616), + [anon_sym_out_GT] = ACTIONS(1616), + [anon_sym_e_GT] = ACTIONS(1616), + [anon_sym_o_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT] = ACTIONS(1616), + [anon_sym_err_GT_GT] = ACTIONS(1616), + [anon_sym_out_GT_GT] = ACTIONS(1616), + [anon_sym_e_GT_GT] = ACTIONS(1616), + [anon_sym_o_GT_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1616), [anon_sym_POUND] = ACTIONS(3), }, - [842] = { - [sym_comment] = STATE(842), - [ts_builtin_sym_end] = ACTIONS(2093), - [anon_sym_STAR_STAR] = ACTIONS(3098), - [anon_sym_PLUS_PLUS] = ACTIONS(3098), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_SLASH] = ACTIONS(3100), - [anon_sym_mod] = ACTIONS(3098), - [anon_sym_SLASH_SLASH] = ACTIONS(3098), - [anon_sym_PLUS] = ACTIONS(3100), - [anon_sym_DASH] = ACTIONS(3098), - [anon_sym_bit_DASHshl] = ACTIONS(3098), - [anon_sym_bit_DASHshr] = ACTIONS(3098), - [anon_sym_EQ_TILDE] = ACTIONS(3098), - [anon_sym_BANG_TILDE] = ACTIONS(3098), - [anon_sym_bit_DASHand] = ACTIONS(3098), - [anon_sym_bit_DASHxor] = ACTIONS(3098), - [anon_sym_bit_DASHor] = ACTIONS(3098), - [anon_sym_and] = ACTIONS(3098), - [anon_sym_xor] = ACTIONS(3098), - [anon_sym_or] = ACTIONS(3098), - [anon_sym_in] = ACTIONS(3098), - [anon_sym_not_DASHin] = ACTIONS(3098), - [anon_sym_has] = ACTIONS(3098), - [anon_sym_not_DASHhas] = ACTIONS(3098), - [anon_sym_starts_DASHwith] = ACTIONS(3098), - [anon_sym_ends_DASHwith] = ACTIONS(3098), - [anon_sym_EQ_EQ] = ACTIONS(3098), - [anon_sym_BANG_EQ] = ACTIONS(3098), - [anon_sym_LT] = ACTIONS(3100), - [anon_sym_LT_EQ] = ACTIONS(3098), - [anon_sym_GT] = ACTIONS(3100), - [anon_sym_GT_EQ] = ACTIONS(3098), - [aux_sym_cmd_identifier_token41] = ACTIONS(3102), - [sym__newline] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(2089), - [anon_sym_PIPE] = ACTIONS(2089), - [anon_sym_err_GT_PIPE] = ACTIONS(2089), - [anon_sym_out_GT_PIPE] = ACTIONS(2089), - [anon_sym_e_GT_PIPE] = ACTIONS(2089), - [anon_sym_o_GT_PIPE] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2089), - [anon_sym_GT2] = ACTIONS(2089), - [anon_sym_DASH2] = ACTIONS(2089), - [anon_sym_in2] = ACTIONS(2089), - [anon_sym_STAR2] = ACTIONS(2089), - [anon_sym_and2] = ACTIONS(2089), - [anon_sym_xor2] = ACTIONS(2089), - [anon_sym_or2] = ACTIONS(2089), - [anon_sym_not_DASHin2] = ACTIONS(2089), - [anon_sym_has2] = ACTIONS(2089), - [anon_sym_not_DASHhas2] = ACTIONS(2089), - [anon_sym_starts_DASHwith2] = ACTIONS(2089), - [anon_sym_ends_DASHwith2] = ACTIONS(2089), - [anon_sym_EQ_EQ2] = ACTIONS(2089), - [anon_sym_BANG_EQ2] = ACTIONS(2089), - [anon_sym_LT2] = ACTIONS(2089), - [anon_sym_LT_EQ2] = ACTIONS(2089), - [anon_sym_GT_EQ2] = ACTIONS(2089), - [anon_sym_EQ_TILDE2] = ACTIONS(2089), - [anon_sym_BANG_TILDE2] = ACTIONS(2089), - [anon_sym_STAR_STAR2] = ACTIONS(2089), - [anon_sym_PLUS_PLUS2] = ACTIONS(2089), - [anon_sym_SLASH2] = ACTIONS(2089), - [anon_sym_mod2] = ACTIONS(2089), - [anon_sym_SLASH_SLASH2] = ACTIONS(2089), - [anon_sym_PLUS2] = ACTIONS(2089), - [anon_sym_bit_DASHshl2] = ACTIONS(2089), - [anon_sym_bit_DASHshr2] = ACTIONS(2089), - [anon_sym_bit_DASHand2] = ACTIONS(2089), - [anon_sym_bit_DASHxor2] = ACTIONS(2089), - [anon_sym_bit_DASHor2] = ACTIONS(2089), - [anon_sym_err_GT] = ACTIONS(2089), - [anon_sym_out_GT] = ACTIONS(2089), - [anon_sym_e_GT] = ACTIONS(2089), - [anon_sym_o_GT] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT] = ACTIONS(2089), - [anon_sym_err_GT_GT] = ACTIONS(2089), - [anon_sym_out_GT_GT] = ACTIONS(2089), - [anon_sym_e_GT_GT] = ACTIONS(2089), - [anon_sym_o_GT_GT] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2089), + [784] = { + [sym_expr_parenthesized] = STATE(1519), + [sym_val_range] = STATE(1880), + [sym__val_range] = STATE(7025), + [sym__val_range_with_end] = STATE(6971), + [sym__value] = STATE(1880), + [sym_val_nothing] = STATE(1981), + [sym_val_bool] = STATE(1636), + [sym_val_variable] = STATE(1548), + [sym_val_number] = STATE(1981), + [sym__val_number_decimal] = STATE(1293), + [sym__val_number] = STATE(1876), + [sym_val_duration] = STATE(1981), + [sym_val_filesize] = STATE(1981), + [sym_val_binary] = STATE(1981), + [sym_val_string] = STATE(1981), + [sym__raw_str] = STATE(1907), + [sym__str_double_quotes] = STATE(1907), + [sym_val_interpolated] = STATE(1981), + [sym__inter_single_quotes] = STATE(1974), + [sym__inter_double_quotes] = STATE(1975), + [sym_val_list] = STATE(1981), + [sym_val_record] = STATE(1981), + [sym_val_table] = STATE(1981), + [sym_val_closure] = STATE(1981), + [sym__flag] = STATE(1880), + [sym_short_flag] = STATE(1893), + [sym_long_flag] = STATE(1893), + [sym_unquoted] = STATE(1583), + [sym__unquoted_with_expr] = STATE(1971), + [sym__unquoted_anonymous_prefix] = STATE(6426), + [sym_comment] = STATE(784), + [aux_sym_ctrl_do_repeat2] = STATE(794), + [ts_builtin_sym_end] = ACTIONS(2688), + [sym__newline] = ACTIONS(2688), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_err_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_GT_PIPE] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), + [anon_sym_LBRACK] = ACTIONS(2883), + [anon_sym_LPAREN] = ACTIONS(2885), + [anon_sym_DOLLAR] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2889), + [anon_sym_DASH2] = ACTIONS(2891), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_DOT_DOT] = ACTIONS(2895), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2897), + [anon_sym_DOT_DOT_LT] = ACTIONS(2897), + [anon_sym_null] = ACTIONS(2899), + [anon_sym_true] = ACTIONS(2901), + [anon_sym_false] = ACTIONS(2901), + [aux_sym__val_number_decimal_token1] = ACTIONS(2903), + [aux_sym__val_number_decimal_token2] = ACTIONS(2905), + [aux_sym__val_number_decimal_token3] = ACTIONS(2907), + [aux_sym__val_number_decimal_token4] = ACTIONS(2909), + [aux_sym__val_number_token1] = ACTIONS(2911), + [aux_sym__val_number_token2] = ACTIONS(2911), + [aux_sym__val_number_token3] = ACTIONS(2911), + [aux_sym__val_number_token4] = ACTIONS(2913), + [aux_sym__val_number_token5] = ACTIONS(2913), + [aux_sym__val_number_token6] = ACTIONS(2913), + [anon_sym_0b] = ACTIONS(2915), + [anon_sym_0o] = ACTIONS(2917), + [anon_sym_0x] = ACTIONS(2917), + [sym_val_date] = ACTIONS(2919), + [anon_sym_DQUOTE] = ACTIONS(2921), + [sym__str_single_quotes] = ACTIONS(2923), + [sym__str_back_ticks] = ACTIONS(2923), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2925), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2927), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(2929), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2931), + }, + [785] = { + [sym_comment] = STATE(785), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1499), + [anon_sym_out_GT_GT] = ACTIONS(1499), + [anon_sym_e_GT_GT] = ACTIONS(1499), + [anon_sym_o_GT_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(3), }, - [843] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7333), - [sym__spread_list] = STATE(7482), - [sym_list_body] = STATE(7614), - [sym_val_entry] = STATE(7220), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(843), - [aux_sym_shebang_repeat1] = STATE(889), - [aux_sym_parameter_repeat2] = STATE(6754), - [aux_sym_list_body_repeat1] = STATE(905), - [sym__newline] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_RBRACK] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [786] = { + [sym_comment] = STATE(786), + [aux_sym_cmd_identifier_token1] = ACTIONS(2592), + [aux_sym_cmd_identifier_token2] = ACTIONS(2594), + [aux_sym_cmd_identifier_token3] = ACTIONS(2594), + [aux_sym_cmd_identifier_token4] = ACTIONS(2594), + [aux_sym_cmd_identifier_token5] = ACTIONS(2594), + [aux_sym_cmd_identifier_token6] = ACTIONS(2594), + [aux_sym_cmd_identifier_token7] = ACTIONS(2594), + [aux_sym_cmd_identifier_token8] = ACTIONS(2594), + [aux_sym_cmd_identifier_token9] = ACTIONS(2592), + [aux_sym_cmd_identifier_token10] = ACTIONS(2594), + [aux_sym_cmd_identifier_token11] = ACTIONS(2594), + [aux_sym_cmd_identifier_token12] = ACTIONS(2594), + [aux_sym_cmd_identifier_token13] = ACTIONS(2592), + [aux_sym_cmd_identifier_token14] = ACTIONS(2594), + [aux_sym_cmd_identifier_token15] = ACTIONS(2592), + [aux_sym_cmd_identifier_token16] = ACTIONS(2594), + [aux_sym_cmd_identifier_token17] = ACTIONS(2594), + [aux_sym_cmd_identifier_token18] = ACTIONS(2594), + [aux_sym_cmd_identifier_token19] = ACTIONS(2594), + [aux_sym_cmd_identifier_token20] = ACTIONS(2594), + [aux_sym_cmd_identifier_token21] = ACTIONS(2594), + [aux_sym_cmd_identifier_token22] = ACTIONS(2594), + [aux_sym_cmd_identifier_token23] = ACTIONS(2594), + [aux_sym_cmd_identifier_token24] = ACTIONS(2594), + [aux_sym_cmd_identifier_token25] = ACTIONS(2594), + [aux_sym_cmd_identifier_token26] = ACTIONS(2594), + [aux_sym_cmd_identifier_token27] = ACTIONS(2594), + [aux_sym_cmd_identifier_token28] = ACTIONS(2594), + [aux_sym_cmd_identifier_token29] = ACTIONS(2594), + [aux_sym_cmd_identifier_token30] = ACTIONS(2594), + [aux_sym_cmd_identifier_token31] = ACTIONS(2594), + [aux_sym_cmd_identifier_token32] = ACTIONS(2594), + [aux_sym_cmd_identifier_token33] = ACTIONS(2594), + [aux_sym_cmd_identifier_token34] = ACTIONS(2592), + [aux_sym_cmd_identifier_token35] = ACTIONS(2594), + [aux_sym_cmd_identifier_token36] = ACTIONS(2594), + [aux_sym_cmd_identifier_token37] = ACTIONS(2594), + [aux_sym_cmd_identifier_token38] = ACTIONS(2592), + [aux_sym_cmd_identifier_token39] = ACTIONS(2594), + [aux_sym_cmd_identifier_token40] = ACTIONS(2594), + [sym__newline] = ACTIONS(2594), + [anon_sym_PIPE] = ACTIONS(2594), + [anon_sym_err_GT_PIPE] = ACTIONS(2594), + [anon_sym_out_GT_PIPE] = ACTIONS(2594), + [anon_sym_e_GT_PIPE] = ACTIONS(2594), + [anon_sym_o_GT_PIPE] = ACTIONS(2594), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2594), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2594), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2594), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_DOLLAR] = ACTIONS(2592), + [anon_sym_DASH2] = ACTIONS(2592), + [anon_sym_break] = ACTIONS(2592), + [anon_sym_continue] = ACTIONS(2592), + [anon_sym_do] = ACTIONS(2592), + [anon_sym_if] = ACTIONS(2592), + [anon_sym_match] = ACTIONS(2592), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_DOT_DOT] = ACTIONS(2592), + [anon_sym_try] = ACTIONS(2592), + [anon_sym_return] = ACTIONS(2592), + [anon_sym_where] = ACTIONS(2594), + [aux_sym_expr_unary_token1] = ACTIONS(2594), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2594), + [anon_sym_DOT_DOT_LT] = ACTIONS(2594), + [anon_sym_null] = ACTIONS(2592), + [anon_sym_true] = ACTIONS(2592), + [anon_sym_false] = ACTIONS(2592), + [aux_sym__val_number_decimal_token1] = ACTIONS(2592), + [aux_sym__val_number_decimal_token2] = ACTIONS(2594), + [aux_sym__val_number_decimal_token3] = ACTIONS(2594), + [aux_sym__val_number_decimal_token4] = ACTIONS(2594), + [aux_sym__val_number_token1] = ACTIONS(2594), + [aux_sym__val_number_token2] = ACTIONS(2594), + [aux_sym__val_number_token3] = ACTIONS(2594), + [aux_sym__val_number_token4] = ACTIONS(2592), + [aux_sym__val_number_token5] = ACTIONS(2592), + [aux_sym__val_number_token6] = ACTIONS(2592), + [anon_sym_0b] = ACTIONS(2592), + [anon_sym_0o] = ACTIONS(2592), + [anon_sym_0x] = ACTIONS(2592), + [sym_val_date] = ACTIONS(2594), + [anon_sym_DQUOTE] = ACTIONS(2594), + [sym__str_single_quotes] = ACTIONS(2594), + [sym__str_back_ticks] = ACTIONS(2594), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2594), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2594), + [aux_sym_env_var_token1] = ACTIONS(2592), + [anon_sym_CARET] = ACTIONS(2594), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2594), }, - [844] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7234), - [sym__spread_list] = STATE(7482), - [sym_list_body] = STATE(7619), - [sym_val_entry] = STATE(7220), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(844), - [aux_sym_shebang_repeat1] = STATE(873), - [aux_sym_parameter_repeat2] = STATE(6754), - [aux_sym_list_body_repeat1] = STATE(905), - [sym__newline] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_RBRACK] = ACTIONS(3162), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [787] = { + [sym_expr_parenthesized] = STATE(1519), + [sym_val_range] = STATE(1880), + [sym__val_range] = STATE(7025), + [sym__val_range_with_end] = STATE(6971), + [sym__value] = STATE(1880), + [sym_val_nothing] = STATE(1981), + [sym_val_bool] = STATE(1636), + [sym_val_variable] = STATE(1548), + [sym_val_number] = STATE(1981), + [sym__val_number_decimal] = STATE(1293), + [sym__val_number] = STATE(1876), + [sym_val_duration] = STATE(1981), + [sym_val_filesize] = STATE(1981), + [sym_val_binary] = STATE(1981), + [sym_val_string] = STATE(1981), + [sym__raw_str] = STATE(1907), + [sym__str_double_quotes] = STATE(1907), + [sym_val_interpolated] = STATE(1981), + [sym__inter_single_quotes] = STATE(1974), + [sym__inter_double_quotes] = STATE(1975), + [sym_val_list] = STATE(1981), + [sym_val_record] = STATE(1981), + [sym_val_table] = STATE(1981), + [sym_val_closure] = STATE(1981), + [sym__flag] = STATE(1880), + [sym_short_flag] = STATE(1893), + [sym_long_flag] = STATE(1893), + [sym_unquoted] = STATE(1583), + [sym__unquoted_with_expr] = STATE(1971), + [sym__unquoted_anonymous_prefix] = STATE(6426), + [sym_comment] = STATE(787), + [aux_sym_ctrl_do_repeat2] = STATE(787), + [ts_builtin_sym_end] = ACTIONS(2690), + [sym__newline] = ACTIONS(2690), + [anon_sym_SEMI] = ACTIONS(2690), + [anon_sym_PIPE] = ACTIONS(2690), + [anon_sym_err_GT_PIPE] = ACTIONS(2690), + [anon_sym_out_GT_PIPE] = ACTIONS(2690), + [anon_sym_e_GT_PIPE] = ACTIONS(2690), + [anon_sym_o_GT_PIPE] = ACTIONS(2690), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2690), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2690), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2690), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(2933), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_DOLLAR] = ACTIONS(2939), + [anon_sym_DASH_DASH] = ACTIONS(2942), + [anon_sym_DASH2] = ACTIONS(2945), + [anon_sym_LBRACE] = ACTIONS(2948), + [anon_sym_DOT_DOT] = ACTIONS(2951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2954), + [anon_sym_DOT_DOT_LT] = ACTIONS(2954), + [anon_sym_null] = ACTIONS(2957), + [anon_sym_true] = ACTIONS(2960), + [anon_sym_false] = ACTIONS(2960), + [aux_sym__val_number_decimal_token1] = ACTIONS(2963), + [aux_sym__val_number_decimal_token2] = ACTIONS(2966), + [aux_sym__val_number_decimal_token3] = ACTIONS(2969), + [aux_sym__val_number_decimal_token4] = ACTIONS(2972), + [aux_sym__val_number_token1] = ACTIONS(2975), + [aux_sym__val_number_token2] = ACTIONS(2975), + [aux_sym__val_number_token3] = ACTIONS(2975), + [aux_sym__val_number_token4] = ACTIONS(2978), + [aux_sym__val_number_token5] = ACTIONS(2978), + [aux_sym__val_number_token6] = ACTIONS(2978), + [anon_sym_0b] = ACTIONS(2981), + [anon_sym_0o] = ACTIONS(2984), + [anon_sym_0x] = ACTIONS(2984), + [sym_val_date] = ACTIONS(2987), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym__str_single_quotes] = ACTIONS(2993), + [sym__str_back_ticks] = ACTIONS(2993), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2996), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2999), + [anon_sym_err_GT] = ACTIONS(2761), + [anon_sym_out_GT] = ACTIONS(2761), + [anon_sym_e_GT] = ACTIONS(2761), + [anon_sym_o_GT] = ACTIONS(2761), + [anon_sym_err_PLUSout_GT] = ACTIONS(2761), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2761), + [anon_sym_o_PLUSe_GT] = ACTIONS(2761), + [anon_sym_e_PLUSo_GT] = ACTIONS(2761), + [anon_sym_err_GT_GT] = ACTIONS(2764), + [anon_sym_out_GT_GT] = ACTIONS(2764), + [anon_sym_e_GT_GT] = ACTIONS(2764), + [anon_sym_o_GT_GT] = ACTIONS(2764), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2764), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2764), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2764), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2764), + [aux_sym_unquoted_token1] = ACTIONS(3002), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3005), }, - [845] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7179), - [sym__spread_list] = STATE(7482), - [sym_list_body] = STATE(7587), - [sym_val_entry] = STATE(7220), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(845), - [aux_sym_shebang_repeat1] = STATE(874), - [aux_sym_parameter_repeat2] = STATE(6754), - [aux_sym_list_body_repeat1] = STATE(905), - [sym__newline] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_RBRACK] = ACTIONS(3164), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [788] = { + [sym_comment] = STATE(788), + [anon_sym_STAR_STAR] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_mod] = ACTIONS(1493), + [anon_sym_SLASH_SLASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_bit_DASHshl] = ACTIONS(1493), + [anon_sym_bit_DASHshr] = ACTIONS(1493), + [anon_sym_EQ_TILDE] = ACTIONS(1493), + [anon_sym_BANG_TILDE] = ACTIONS(1493), + [anon_sym_bit_DASHand] = ACTIONS(1493), + [anon_sym_bit_DASHxor] = ACTIONS(1493), + [anon_sym_bit_DASHor] = ACTIONS(1493), + [anon_sym_and] = ACTIONS(1493), + [anon_sym_xor] = ACTIONS(1493), + [anon_sym_or] = ACTIONS(1493), + [anon_sym_in] = ACTIONS(1493), + [anon_sym_not_DASHin] = ACTIONS(1493), + [anon_sym_has] = ACTIONS(1493), + [anon_sym_not_DASHhas] = ACTIONS(1493), + [anon_sym_starts_DASHwith] = ACTIONS(1493), + [anon_sym_ends_DASHwith] = ACTIONS(1493), + [anon_sym_EQ_EQ] = ACTIONS(1493), + [anon_sym_BANG_EQ] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1493), + [aux_sym_cmd_identifier_token41] = ACTIONS(1491), + [sym__newline] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_err_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_GT_PIPE] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1491), + [anon_sym_GT2] = ACTIONS(1491), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_in2] = ACTIONS(1491), + [anon_sym_STAR2] = ACTIONS(1491), + [anon_sym_and2] = ACTIONS(1491), + [anon_sym_xor2] = ACTIONS(1491), + [anon_sym_or2] = ACTIONS(1491), + [anon_sym_not_DASHin2] = ACTIONS(1491), + [anon_sym_has2] = ACTIONS(1491), + [anon_sym_not_DASHhas2] = ACTIONS(1491), + [anon_sym_starts_DASHwith2] = ACTIONS(1491), + [anon_sym_ends_DASHwith2] = ACTIONS(1491), + [anon_sym_EQ_EQ2] = ACTIONS(1491), + [anon_sym_BANG_EQ2] = ACTIONS(1491), + [anon_sym_LT2] = ACTIONS(1491), + [anon_sym_LT_EQ2] = ACTIONS(1491), + [anon_sym_GT_EQ2] = ACTIONS(1491), + [anon_sym_EQ_TILDE2] = ACTIONS(1491), + [anon_sym_BANG_TILDE2] = ACTIONS(1491), + [anon_sym_STAR_STAR2] = ACTIONS(1491), + [anon_sym_PLUS_PLUS2] = ACTIONS(1491), + [anon_sym_SLASH2] = ACTIONS(1491), + [anon_sym_mod2] = ACTIONS(1491), + [anon_sym_SLASH_SLASH2] = ACTIONS(1491), + [anon_sym_PLUS2] = ACTIONS(1491), + [anon_sym_bit_DASHshl2] = ACTIONS(1491), + [anon_sym_bit_DASHshr2] = ACTIONS(1491), + [anon_sym_bit_DASHand2] = ACTIONS(1491), + [anon_sym_bit_DASHxor2] = ACTIONS(1491), + [anon_sym_bit_DASHor2] = ACTIONS(1491), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [sym_filesize_unit] = ACTIONS(1491), + [sym_duration_unit] = ACTIONS(1493), + [anon_sym_err_GT] = ACTIONS(1491), + [anon_sym_out_GT] = ACTIONS(1491), + [anon_sym_e_GT] = ACTIONS(1491), + [anon_sym_o_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT] = ACTIONS(1491), + [anon_sym_err_GT_GT] = ACTIONS(1491), + [anon_sym_out_GT_GT] = ACTIONS(1491), + [anon_sym_e_GT_GT] = ACTIONS(1491), + [anon_sym_o_GT_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(3), }, - [846] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7234), - [sym__spread_list] = STATE(7482), - [sym_list_body] = STATE(7650), - [sym_val_entry] = STATE(7220), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(846), - [aux_sym_shebang_repeat1] = STATE(873), - [aux_sym_parameter_repeat2] = STATE(6754), - [aux_sym_list_body_repeat1] = STATE(905), - [sym__newline] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_RBRACK] = ACTIONS(3166), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [789] = { + [sym_expr_parenthesized] = STATE(1519), + [sym_val_range] = STATE(1880), + [sym__val_range] = STATE(7025), + [sym__val_range_with_end] = STATE(6971), + [sym__value] = STATE(1880), + [sym_val_nothing] = STATE(1981), + [sym_val_bool] = STATE(1636), + [sym_val_variable] = STATE(1548), + [sym_val_number] = STATE(1981), + [sym__val_number_decimal] = STATE(1293), + [sym__val_number] = STATE(1876), + [sym_val_duration] = STATE(1981), + [sym_val_filesize] = STATE(1981), + [sym_val_binary] = STATE(1981), + [sym_val_string] = STATE(1981), + [sym__raw_str] = STATE(1907), + [sym__str_double_quotes] = STATE(1907), + [sym_val_interpolated] = STATE(1981), + [sym__inter_single_quotes] = STATE(1974), + [sym__inter_double_quotes] = STATE(1975), + [sym_val_list] = STATE(1981), + [sym_val_record] = STATE(1981), + [sym_val_table] = STATE(1981), + [sym_val_closure] = STATE(1981), + [sym__flag] = STATE(1880), + [sym_short_flag] = STATE(1893), + [sym_long_flag] = STATE(1893), + [sym_unquoted] = STATE(1583), + [sym__unquoted_with_expr] = STATE(1971), + [sym__unquoted_anonymous_prefix] = STATE(6426), + [sym_comment] = STATE(789), + [aux_sym_ctrl_do_repeat2] = STATE(793), + [ts_builtin_sym_end] = ACTIONS(2686), + [sym__newline] = ACTIONS(2686), + [anon_sym_SEMI] = ACTIONS(2686), + [anon_sym_PIPE] = ACTIONS(2686), + [anon_sym_err_GT_PIPE] = ACTIONS(2686), + [anon_sym_out_GT_PIPE] = ACTIONS(2686), + [anon_sym_e_GT_PIPE] = ACTIONS(2686), + [anon_sym_o_GT_PIPE] = ACTIONS(2686), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2686), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2686), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2686), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2883), + [anon_sym_LPAREN] = ACTIONS(2885), + [anon_sym_DOLLAR] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2889), + [anon_sym_DASH2] = ACTIONS(2891), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_DOT_DOT] = ACTIONS(2895), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2897), + [anon_sym_DOT_DOT_LT] = ACTIONS(2897), + [anon_sym_null] = ACTIONS(2899), + [anon_sym_true] = ACTIONS(2901), + [anon_sym_false] = ACTIONS(2901), + [aux_sym__val_number_decimal_token1] = ACTIONS(2903), + [aux_sym__val_number_decimal_token2] = ACTIONS(2905), + [aux_sym__val_number_decimal_token3] = ACTIONS(2907), + [aux_sym__val_number_decimal_token4] = ACTIONS(2909), + [aux_sym__val_number_token1] = ACTIONS(2911), + [aux_sym__val_number_token2] = ACTIONS(2911), + [aux_sym__val_number_token3] = ACTIONS(2911), + [aux_sym__val_number_token4] = ACTIONS(2913), + [aux_sym__val_number_token5] = ACTIONS(2913), + [aux_sym__val_number_token6] = ACTIONS(2913), + [anon_sym_0b] = ACTIONS(2915), + [anon_sym_0o] = ACTIONS(2917), + [anon_sym_0x] = ACTIONS(2917), + [sym_val_date] = ACTIONS(2919), + [anon_sym_DQUOTE] = ACTIONS(2921), + [sym__str_single_quotes] = ACTIONS(2923), + [sym__str_back_ticks] = ACTIONS(2923), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2925), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2927), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(2929), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2931), }, - [847] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7234), - [sym__spread_list] = STATE(7482), - [sym_list_body] = STATE(7557), - [sym_val_entry] = STATE(7220), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(847), - [aux_sym_shebang_repeat1] = STATE(873), - [aux_sym_parameter_repeat2] = STATE(6754), - [aux_sym_list_body_repeat1] = STATE(905), - [sym__newline] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_RBRACK] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [790] = { + [sym_comment] = STATE(790), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1581), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_bit_DASHshl] = ACTIONS(1581), + [anon_sym_bit_DASHshr] = ACTIONS(1581), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1581), + [anon_sym_bit_DASHxor] = ACTIONS(1581), + [anon_sym_bit_DASHor] = ACTIONS(1581), + [anon_sym_and] = ACTIONS(1581), + [anon_sym_xor] = ACTIONS(1581), + [anon_sym_or] = ACTIONS(1581), + [anon_sym_in] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1581), + [anon_sym_has] = ACTIONS(1581), + [anon_sym_not_DASHhas] = ACTIONS(1581), + [anon_sym_starts_DASHwith] = ACTIONS(1581), + [anon_sym_ends_DASHwith] = ACTIONS(1581), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1581), + [aux_sym_cmd_identifier_token41] = ACTIONS(1579), + [sym__newline] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_err_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_GT_PIPE] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), + [anon_sym_GT2] = ACTIONS(1579), + [anon_sym_DASH2] = ACTIONS(1579), + [anon_sym_in2] = ACTIONS(1579), + [anon_sym_STAR2] = ACTIONS(1579), + [anon_sym_and2] = ACTIONS(1579), + [anon_sym_xor2] = ACTIONS(1579), + [anon_sym_or2] = ACTIONS(1579), + [anon_sym_not_DASHin2] = ACTIONS(1579), + [anon_sym_has2] = ACTIONS(1579), + [anon_sym_not_DASHhas2] = ACTIONS(1579), + [anon_sym_starts_DASHwith2] = ACTIONS(1579), + [anon_sym_ends_DASHwith2] = ACTIONS(1579), + [anon_sym_EQ_EQ2] = ACTIONS(1579), + [anon_sym_BANG_EQ2] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ2] = ACTIONS(1579), + [anon_sym_GT_EQ2] = ACTIONS(1579), + [anon_sym_EQ_TILDE2] = ACTIONS(1579), + [anon_sym_BANG_TILDE2] = ACTIONS(1579), + [anon_sym_STAR_STAR2] = ACTIONS(1579), + [anon_sym_PLUS_PLUS2] = ACTIONS(1579), + [anon_sym_SLASH2] = ACTIONS(1579), + [anon_sym_mod2] = ACTIONS(1579), + [anon_sym_SLASH_SLASH2] = ACTIONS(1579), + [anon_sym_PLUS2] = ACTIONS(1579), + [anon_sym_bit_DASHshl2] = ACTIONS(1579), + [anon_sym_bit_DASHshr2] = ACTIONS(1579), + [anon_sym_bit_DASHand2] = ACTIONS(1579), + [anon_sym_bit_DASHxor2] = ACTIONS(1579), + [anon_sym_bit_DASHor2] = ACTIONS(1579), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [sym_filesize_unit] = ACTIONS(1579), + [sym_duration_unit] = ACTIONS(1581), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [anon_sym_err_GT_GT] = ACTIONS(1579), + [anon_sym_out_GT_GT] = ACTIONS(1579), + [anon_sym_e_GT_GT] = ACTIONS(1579), + [anon_sym_o_GT_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(3), }, - [848] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7205), - [sym__spread_list] = STATE(7482), - [sym_list_body] = STATE(7946), - [sym_val_entry] = STATE(7220), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(848), - [aux_sym_shebang_repeat1] = STATE(876), - [aux_sym_parameter_repeat2] = STATE(6754), - [aux_sym_list_body_repeat1] = STATE(905), - [sym__newline] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_RBRACK] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [791] = { + [sym_comment] = STATE(791), + [aux_sym_cmd_identifier_token1] = ACTIONS(1287), + [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(1285), + [aux_sym_cmd_identifier_token9] = ACTIONS(1287), + [aux_sym_cmd_identifier_token10] = ACTIONS(1285), + [aux_sym_cmd_identifier_token11] = ACTIONS(1285), + [aux_sym_cmd_identifier_token12] = ACTIONS(1285), + [aux_sym_cmd_identifier_token13] = ACTIONS(1287), + [aux_sym_cmd_identifier_token14] = ACTIONS(1285), + [aux_sym_cmd_identifier_token15] = ACTIONS(1287), + [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(1287), + [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(1287), + [aux_sym_cmd_identifier_token39] = ACTIONS(1285), + [aux_sym_cmd_identifier_token40] = ACTIONS(1285), + [sym__newline] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1285), + [anon_sym_err_GT_PIPE] = ACTIONS(1285), + [anon_sym_out_GT_PIPE] = ACTIONS(1285), + [anon_sym_e_GT_PIPE] = ACTIONS(1285), + [anon_sym_o_GT_PIPE] = ACTIONS(1285), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1285), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1285), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1285), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1285), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1287), + [anon_sym_DASH2] = ACTIONS(1287), + [anon_sym_break] = ACTIONS(1287), + [anon_sym_continue] = ACTIONS(1287), + [anon_sym_do] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1287), + [anon_sym_match] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_DOT_DOT] = ACTIONS(1287), + [anon_sym_try] = ACTIONS(1287), + [anon_sym_return] = ACTIONS(1287), + [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(1287), + [anon_sym_true] = ACTIONS(1287), + [anon_sym_false] = ACTIONS(1287), + [aux_sym__val_number_decimal_token1] = ACTIONS(1287), + [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(1287), + [aux_sym__val_number_token5] = ACTIONS(1287), + [aux_sym__val_number_token6] = ACTIONS(1287), + [anon_sym_0b] = ACTIONS(1287), + [anon_sym_0o] = ACTIONS(1287), + [anon_sym_0x] = ACTIONS(1287), + [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(1287), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1285), }, - [849] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7234), - [sym__spread_list] = STATE(7482), - [sym_list_body] = STATE(7756), - [sym_val_entry] = STATE(7220), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(849), - [aux_sym_shebang_repeat1] = STATE(873), - [aux_sym_parameter_repeat2] = STATE(6754), - [aux_sym_list_body_repeat1] = STATE(905), - [sym__newline] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_RBRACK] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [792] = { + [sym_comment] = STATE(792), + [aux_sym_cmd_identifier_token1] = ACTIONS(3008), + [aux_sym_cmd_identifier_token2] = ACTIONS(3010), + [aux_sym_cmd_identifier_token3] = ACTIONS(3010), + [aux_sym_cmd_identifier_token4] = ACTIONS(3010), + [aux_sym_cmd_identifier_token5] = ACTIONS(3010), + [aux_sym_cmd_identifier_token6] = ACTIONS(3010), + [aux_sym_cmd_identifier_token7] = ACTIONS(3010), + [aux_sym_cmd_identifier_token8] = ACTIONS(3010), + [aux_sym_cmd_identifier_token9] = ACTIONS(3008), + [aux_sym_cmd_identifier_token10] = ACTIONS(3010), + [aux_sym_cmd_identifier_token11] = ACTIONS(3010), + [aux_sym_cmd_identifier_token12] = ACTIONS(3010), + [aux_sym_cmd_identifier_token13] = ACTIONS(3008), + [aux_sym_cmd_identifier_token14] = ACTIONS(3010), + [aux_sym_cmd_identifier_token15] = ACTIONS(3008), + [aux_sym_cmd_identifier_token16] = ACTIONS(3010), + [aux_sym_cmd_identifier_token17] = ACTIONS(3010), + [aux_sym_cmd_identifier_token18] = ACTIONS(3010), + [aux_sym_cmd_identifier_token19] = ACTIONS(3010), + [aux_sym_cmd_identifier_token20] = ACTIONS(3010), + [aux_sym_cmd_identifier_token21] = ACTIONS(3010), + [aux_sym_cmd_identifier_token22] = ACTIONS(3010), + [aux_sym_cmd_identifier_token23] = ACTIONS(3010), + [aux_sym_cmd_identifier_token24] = ACTIONS(3010), + [aux_sym_cmd_identifier_token25] = ACTIONS(3010), + [aux_sym_cmd_identifier_token26] = ACTIONS(3010), + [aux_sym_cmd_identifier_token27] = ACTIONS(3010), + [aux_sym_cmd_identifier_token28] = ACTIONS(3010), + [aux_sym_cmd_identifier_token29] = ACTIONS(3010), + [aux_sym_cmd_identifier_token30] = ACTIONS(3010), + [aux_sym_cmd_identifier_token31] = ACTIONS(3010), + [aux_sym_cmd_identifier_token32] = ACTIONS(3010), + [aux_sym_cmd_identifier_token33] = ACTIONS(3010), + [aux_sym_cmd_identifier_token34] = ACTIONS(3008), + [aux_sym_cmd_identifier_token35] = ACTIONS(3010), + [aux_sym_cmd_identifier_token36] = ACTIONS(3010), + [aux_sym_cmd_identifier_token37] = ACTIONS(3010), + [aux_sym_cmd_identifier_token38] = ACTIONS(3008), + [aux_sym_cmd_identifier_token39] = ACTIONS(3010), + [aux_sym_cmd_identifier_token40] = ACTIONS(3010), + [sym__newline] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1285), + [anon_sym_err_GT_PIPE] = ACTIONS(1285), + [anon_sym_out_GT_PIPE] = ACTIONS(1285), + [anon_sym_e_GT_PIPE] = ACTIONS(1285), + [anon_sym_o_GT_PIPE] = ACTIONS(1285), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1285), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1285), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1285), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1285), + [anon_sym_LBRACK] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3010), + [anon_sym_DOLLAR] = ACTIONS(3008), + [anon_sym_DASH2] = ACTIONS(3008), + [anon_sym_break] = ACTIONS(3008), + [anon_sym_continue] = ACTIONS(3008), + [anon_sym_do] = ACTIONS(3008), + [anon_sym_if] = ACTIONS(3008), + [anon_sym_match] = ACTIONS(3008), + [anon_sym_LBRACE] = ACTIONS(3010), + [anon_sym_DOT_DOT] = ACTIONS(3008), + [anon_sym_try] = ACTIONS(3008), + [anon_sym_return] = ACTIONS(3008), + [anon_sym_where] = ACTIONS(3010), + [aux_sym_expr_unary_token1] = ACTIONS(3010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3010), + [anon_sym_DOT_DOT_LT] = ACTIONS(3010), + [anon_sym_null] = ACTIONS(3008), + [anon_sym_true] = ACTIONS(3008), + [anon_sym_false] = ACTIONS(3008), + [aux_sym__val_number_decimal_token1] = ACTIONS(3008), + [aux_sym__val_number_decimal_token2] = ACTIONS(3010), + [aux_sym__val_number_decimal_token3] = ACTIONS(3010), + [aux_sym__val_number_decimal_token4] = ACTIONS(3010), + [aux_sym__val_number_token1] = ACTIONS(3010), + [aux_sym__val_number_token2] = ACTIONS(3010), + [aux_sym__val_number_token3] = ACTIONS(3010), + [aux_sym__val_number_token4] = ACTIONS(3008), + [aux_sym__val_number_token5] = ACTIONS(3008), + [aux_sym__val_number_token6] = ACTIONS(3008), + [anon_sym_0b] = ACTIONS(3008), + [anon_sym_0o] = ACTIONS(3008), + [anon_sym_0x] = ACTIONS(3008), + [sym_val_date] = ACTIONS(3010), + [anon_sym_DQUOTE] = ACTIONS(3010), + [sym__str_single_quotes] = ACTIONS(3010), + [sym__str_back_ticks] = ACTIONS(3010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3010), + [aux_sym_env_var_token1] = ACTIONS(3008), + [anon_sym_CARET] = ACTIONS(3010), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3010), }, - [850] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7234), - [sym__spread_list] = STATE(7482), - [sym_list_body] = STATE(7614), - [sym_val_entry] = STATE(7220), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(850), - [aux_sym_shebang_repeat1] = STATE(873), - [aux_sym_parameter_repeat2] = STATE(6754), - [aux_sym_list_body_repeat1] = STATE(905), - [sym__newline] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_RBRACK] = ACTIONS(3118), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [793] = { + [sym_expr_parenthesized] = STATE(1519), + [sym_val_range] = STATE(1880), + [sym__val_range] = STATE(7025), + [sym__val_range_with_end] = STATE(6971), + [sym__value] = STATE(1880), + [sym_val_nothing] = STATE(1981), + [sym_val_bool] = STATE(1636), + [sym_val_variable] = STATE(1548), + [sym_val_number] = STATE(1981), + [sym__val_number_decimal] = STATE(1293), + [sym__val_number] = STATE(1876), + [sym_val_duration] = STATE(1981), + [sym_val_filesize] = STATE(1981), + [sym_val_binary] = STATE(1981), + [sym_val_string] = STATE(1981), + [sym__raw_str] = STATE(1907), + [sym__str_double_quotes] = STATE(1907), + [sym_val_interpolated] = STATE(1981), + [sym__inter_single_quotes] = STATE(1974), + [sym__inter_double_quotes] = STATE(1975), + [sym_val_list] = STATE(1981), + [sym_val_record] = STATE(1981), + [sym_val_table] = STATE(1981), + [sym_val_closure] = STATE(1981), + [sym__flag] = STATE(1880), + [sym_short_flag] = STATE(1893), + [sym_long_flag] = STATE(1893), + [sym_unquoted] = STATE(1583), + [sym__unquoted_with_expr] = STATE(1971), + [sym__unquoted_anonymous_prefix] = STATE(6426), + [sym_comment] = STATE(793), + [aux_sym_ctrl_do_repeat2] = STATE(787), + [ts_builtin_sym_end] = ACTIONS(2688), + [sym__newline] = ACTIONS(2688), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_err_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_GT_PIPE] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), + [anon_sym_LBRACK] = ACTIONS(2883), + [anon_sym_LPAREN] = ACTIONS(2885), + [anon_sym_DOLLAR] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2889), + [anon_sym_DASH2] = ACTIONS(2891), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_DOT_DOT] = ACTIONS(2895), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2897), + [anon_sym_DOT_DOT_LT] = ACTIONS(2897), + [anon_sym_null] = ACTIONS(2899), + [anon_sym_true] = ACTIONS(2901), + [anon_sym_false] = ACTIONS(2901), + [aux_sym__val_number_decimal_token1] = ACTIONS(2903), + [aux_sym__val_number_decimal_token2] = ACTIONS(2905), + [aux_sym__val_number_decimal_token3] = ACTIONS(2907), + [aux_sym__val_number_decimal_token4] = ACTIONS(2909), + [aux_sym__val_number_token1] = ACTIONS(2911), + [aux_sym__val_number_token2] = ACTIONS(2911), + [aux_sym__val_number_token3] = ACTIONS(2911), + [aux_sym__val_number_token4] = ACTIONS(2913), + [aux_sym__val_number_token5] = ACTIONS(2913), + [aux_sym__val_number_token6] = ACTIONS(2913), + [anon_sym_0b] = ACTIONS(2915), + [anon_sym_0o] = ACTIONS(2917), + [anon_sym_0x] = ACTIONS(2917), + [sym_val_date] = ACTIONS(2919), + [anon_sym_DQUOTE] = ACTIONS(2921), + [sym__str_single_quotes] = ACTIONS(2923), + [sym__str_back_ticks] = ACTIONS(2923), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2925), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2927), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(2929), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2931), }, - [851] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7239), - [sym__spread_list] = STATE(7482), - [sym_list_body] = STATE(7732), - [sym_val_entry] = STATE(7220), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(851), - [aux_sym_shebang_repeat1] = STATE(877), - [aux_sym_parameter_repeat2] = STATE(6754), - [aux_sym_list_body_repeat1] = STATE(905), - [sym__newline] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_RBRACK] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [794] = { + [sym_expr_parenthesized] = STATE(1519), + [sym_val_range] = STATE(1880), + [sym__val_range] = STATE(7025), + [sym__val_range_with_end] = STATE(6971), + [sym__value] = STATE(1880), + [sym_val_nothing] = STATE(1981), + [sym_val_bool] = STATE(1636), + [sym_val_variable] = STATE(1548), + [sym_val_number] = STATE(1981), + [sym__val_number_decimal] = STATE(1293), + [sym__val_number] = STATE(1876), + [sym_val_duration] = STATE(1981), + [sym_val_filesize] = STATE(1981), + [sym_val_binary] = STATE(1981), + [sym_val_string] = STATE(1981), + [sym__raw_str] = STATE(1907), + [sym__str_double_quotes] = STATE(1907), + [sym_val_interpolated] = STATE(1981), + [sym__inter_single_quotes] = STATE(1974), + [sym__inter_double_quotes] = STATE(1975), + [sym_val_list] = STATE(1981), + [sym_val_record] = STATE(1981), + [sym_val_table] = STATE(1981), + [sym_val_closure] = STATE(1981), + [sym__flag] = STATE(1880), + [sym_short_flag] = STATE(1893), + [sym_long_flag] = STATE(1893), + [sym_unquoted] = STATE(1583), + [sym__unquoted_with_expr] = STATE(1971), + [sym__unquoted_anonymous_prefix] = STATE(6426), + [sym_comment] = STATE(794), + [aux_sym_ctrl_do_repeat2] = STATE(787), + [ts_builtin_sym_end] = ACTIONS(2773), + [sym__newline] = ACTIONS(2773), + [anon_sym_SEMI] = ACTIONS(2773), + [anon_sym_PIPE] = ACTIONS(2773), + [anon_sym_err_GT_PIPE] = ACTIONS(2773), + [anon_sym_out_GT_PIPE] = ACTIONS(2773), + [anon_sym_e_GT_PIPE] = ACTIONS(2773), + [anon_sym_o_GT_PIPE] = ACTIONS(2773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(2883), + [anon_sym_LPAREN] = ACTIONS(2885), + [anon_sym_DOLLAR] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2889), + [anon_sym_DASH2] = ACTIONS(2891), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_DOT_DOT] = ACTIONS(2895), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2897), + [anon_sym_DOT_DOT_LT] = ACTIONS(2897), + [anon_sym_null] = ACTIONS(2899), + [anon_sym_true] = ACTIONS(2901), + [anon_sym_false] = ACTIONS(2901), + [aux_sym__val_number_decimal_token1] = ACTIONS(2903), + [aux_sym__val_number_decimal_token2] = ACTIONS(2905), + [aux_sym__val_number_decimal_token3] = ACTIONS(2907), + [aux_sym__val_number_decimal_token4] = ACTIONS(2909), + [aux_sym__val_number_token1] = ACTIONS(2911), + [aux_sym__val_number_token2] = ACTIONS(2911), + [aux_sym__val_number_token3] = ACTIONS(2911), + [aux_sym__val_number_token4] = ACTIONS(2913), + [aux_sym__val_number_token5] = ACTIONS(2913), + [aux_sym__val_number_token6] = ACTIONS(2913), + [anon_sym_0b] = ACTIONS(2915), + [anon_sym_0o] = ACTIONS(2917), + [anon_sym_0x] = ACTIONS(2917), + [sym_val_date] = ACTIONS(2919), + [anon_sym_DQUOTE] = ACTIONS(2921), + [sym__str_single_quotes] = ACTIONS(2923), + [sym__str_back_ticks] = ACTIONS(2923), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2925), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2927), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(2929), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2931), }, - [852] = { - [sym_comment] = STATE(852), - [anon_sym_STAR_STAR] = ACTIONS(3110), - [anon_sym_PLUS_PLUS] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_mod] = ACTIONS(3110), - [anon_sym_SLASH_SLASH] = ACTIONS(3110), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3110), - [anon_sym_bit_DASHshl] = ACTIONS(3110), - [anon_sym_bit_DASHshr] = ACTIONS(3110), - [anon_sym_EQ_TILDE] = ACTIONS(3110), - [anon_sym_BANG_TILDE] = ACTIONS(3110), - [anon_sym_bit_DASHand] = ACTIONS(3110), - [anon_sym_bit_DASHxor] = ACTIONS(3110), - [anon_sym_bit_DASHor] = ACTIONS(3110), - [anon_sym_and] = ACTIONS(3110), - [anon_sym_xor] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3110), - [anon_sym_in] = ACTIONS(3110), - [anon_sym_not_DASHin] = ACTIONS(3110), - [anon_sym_has] = ACTIONS(3110), - [anon_sym_not_DASHhas] = ACTIONS(3110), - [anon_sym_starts_DASHwith] = ACTIONS(3110), - [anon_sym_ends_DASHwith] = ACTIONS(3110), - [anon_sym_EQ_EQ] = ACTIONS(3110), - [anon_sym_BANG_EQ] = ACTIONS(3110), - [anon_sym_LT] = ACTIONS(3112), - [anon_sym_LT_EQ] = ACTIONS(3110), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_GT_EQ] = ACTIONS(3110), - [aux_sym_cmd_identifier_token41] = ACTIONS(3114), - [sym__newline] = ACTIONS(2202), - [anon_sym_SEMI] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_err_GT_PIPE] = ACTIONS(2202), - [anon_sym_out_GT_PIPE] = ACTIONS(2202), - [anon_sym_e_GT_PIPE] = ACTIONS(2202), - [anon_sym_o_GT_PIPE] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2202), - [anon_sym_GT2] = ACTIONS(2202), - [anon_sym_DASH2] = ACTIONS(2202), - [anon_sym_in2] = ACTIONS(2202), - [anon_sym_STAR2] = ACTIONS(2202), - [anon_sym_and2] = ACTIONS(2202), - [anon_sym_xor2] = ACTIONS(2202), - [anon_sym_or2] = ACTIONS(2202), - [anon_sym_not_DASHin2] = ACTIONS(2202), - [anon_sym_has2] = ACTIONS(2202), - [anon_sym_not_DASHhas2] = ACTIONS(2202), - [anon_sym_starts_DASHwith2] = ACTIONS(2202), - [anon_sym_ends_DASHwith2] = ACTIONS(2202), - [anon_sym_EQ_EQ2] = ACTIONS(2202), - [anon_sym_BANG_EQ2] = ACTIONS(2202), - [anon_sym_LT2] = ACTIONS(2202), - [anon_sym_LT_EQ2] = ACTIONS(2202), - [anon_sym_GT_EQ2] = ACTIONS(2202), - [anon_sym_EQ_TILDE2] = ACTIONS(2202), - [anon_sym_BANG_TILDE2] = ACTIONS(2202), - [anon_sym_STAR_STAR2] = ACTIONS(2202), - [anon_sym_PLUS_PLUS2] = ACTIONS(2202), - [anon_sym_SLASH2] = ACTIONS(2202), - [anon_sym_mod2] = ACTIONS(2202), - [anon_sym_SLASH_SLASH2] = ACTIONS(2202), - [anon_sym_PLUS2] = ACTIONS(2202), - [anon_sym_bit_DASHshl2] = ACTIONS(2202), - [anon_sym_bit_DASHshr2] = ACTIONS(2202), - [anon_sym_bit_DASHand2] = ACTIONS(2202), - [anon_sym_bit_DASHxor2] = ACTIONS(2202), - [anon_sym_bit_DASHor2] = ACTIONS(2202), - [anon_sym_err_GT] = ACTIONS(2202), - [anon_sym_out_GT] = ACTIONS(2202), - [anon_sym_e_GT] = ACTIONS(2202), - [anon_sym_o_GT] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT] = ACTIONS(2202), - [anon_sym_err_GT_GT] = ACTIONS(2202), - [anon_sym_out_GT_GT] = ACTIONS(2202), - [anon_sym_e_GT_GT] = ACTIONS(2202), - [anon_sym_o_GT_GT] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2202), + [795] = { + [sym_comment] = STATE(795), + [aux_sym_cmd_identifier_token1] = ACTIONS(3012), + [aux_sym_cmd_identifier_token2] = ACTIONS(3014), + [aux_sym_cmd_identifier_token3] = ACTIONS(3014), + [aux_sym_cmd_identifier_token4] = ACTIONS(3014), + [aux_sym_cmd_identifier_token5] = ACTIONS(3014), + [aux_sym_cmd_identifier_token6] = ACTIONS(3014), + [aux_sym_cmd_identifier_token7] = ACTIONS(3014), + [aux_sym_cmd_identifier_token8] = ACTIONS(3014), + [aux_sym_cmd_identifier_token9] = ACTIONS(3012), + [aux_sym_cmd_identifier_token10] = ACTIONS(3014), + [aux_sym_cmd_identifier_token11] = ACTIONS(3014), + [aux_sym_cmd_identifier_token12] = ACTIONS(3014), + [aux_sym_cmd_identifier_token13] = ACTIONS(3012), + [aux_sym_cmd_identifier_token14] = ACTIONS(3014), + [aux_sym_cmd_identifier_token15] = ACTIONS(3012), + [aux_sym_cmd_identifier_token16] = ACTIONS(3014), + [aux_sym_cmd_identifier_token17] = ACTIONS(3014), + [aux_sym_cmd_identifier_token18] = ACTIONS(3014), + [aux_sym_cmd_identifier_token19] = ACTIONS(3014), + [aux_sym_cmd_identifier_token20] = ACTIONS(3014), + [aux_sym_cmd_identifier_token21] = ACTIONS(3014), + [aux_sym_cmd_identifier_token22] = ACTIONS(3014), + [aux_sym_cmd_identifier_token23] = ACTIONS(3014), + [aux_sym_cmd_identifier_token24] = ACTIONS(3014), + [aux_sym_cmd_identifier_token25] = ACTIONS(3014), + [aux_sym_cmd_identifier_token26] = ACTIONS(3014), + [aux_sym_cmd_identifier_token27] = ACTIONS(3014), + [aux_sym_cmd_identifier_token28] = ACTIONS(3014), + [aux_sym_cmd_identifier_token29] = ACTIONS(3014), + [aux_sym_cmd_identifier_token30] = ACTIONS(3014), + [aux_sym_cmd_identifier_token31] = ACTIONS(3014), + [aux_sym_cmd_identifier_token32] = ACTIONS(3014), + [aux_sym_cmd_identifier_token33] = ACTIONS(3014), + [aux_sym_cmd_identifier_token34] = ACTIONS(3012), + [aux_sym_cmd_identifier_token35] = ACTIONS(3014), + [aux_sym_cmd_identifier_token36] = ACTIONS(3014), + [aux_sym_cmd_identifier_token37] = ACTIONS(3014), + [aux_sym_cmd_identifier_token38] = ACTIONS(3012), + [aux_sym_cmd_identifier_token39] = ACTIONS(3014), + [aux_sym_cmd_identifier_token40] = ACTIONS(3014), + [sym__newline] = ACTIONS(3014), + [anon_sym_PIPE] = ACTIONS(3014), + [anon_sym_err_GT_PIPE] = ACTIONS(3014), + [anon_sym_out_GT_PIPE] = ACTIONS(3014), + [anon_sym_e_GT_PIPE] = ACTIONS(3014), + [anon_sym_o_GT_PIPE] = ACTIONS(3014), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3014), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3014), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3014), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3014), + [anon_sym_LBRACK] = ACTIONS(3014), + [anon_sym_LPAREN] = ACTIONS(3014), + [anon_sym_DOLLAR] = ACTIONS(3012), + [anon_sym_DASH2] = ACTIONS(3012), + [anon_sym_break] = ACTIONS(3012), + [anon_sym_continue] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_match] = ACTIONS(3012), + [anon_sym_LBRACE] = ACTIONS(3014), + [anon_sym_DOT_DOT] = ACTIONS(3012), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_where] = ACTIONS(3014), + [aux_sym_expr_unary_token1] = ACTIONS(3014), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3014), + [anon_sym_DOT_DOT_LT] = ACTIONS(3014), + [anon_sym_null] = ACTIONS(3012), + [anon_sym_true] = ACTIONS(3012), + [anon_sym_false] = ACTIONS(3012), + [aux_sym__val_number_decimal_token1] = ACTIONS(3012), + [aux_sym__val_number_decimal_token2] = ACTIONS(3014), + [aux_sym__val_number_decimal_token3] = ACTIONS(3014), + [aux_sym__val_number_decimal_token4] = ACTIONS(3014), + [aux_sym__val_number_token1] = ACTIONS(3014), + [aux_sym__val_number_token2] = ACTIONS(3014), + [aux_sym__val_number_token3] = ACTIONS(3014), + [aux_sym__val_number_token4] = ACTIONS(3012), + [aux_sym__val_number_token5] = ACTIONS(3012), + [aux_sym__val_number_token6] = ACTIONS(3012), + [anon_sym_0b] = ACTIONS(3012), + [anon_sym_0o] = ACTIONS(3012), + [anon_sym_0x] = ACTIONS(3012), + [sym_val_date] = ACTIONS(3014), + [anon_sym_DQUOTE] = ACTIONS(3014), + [sym__str_single_quotes] = ACTIONS(3014), + [sym__str_back_ticks] = ACTIONS(3014), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3014), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3014), + [aux_sym_env_var_token1] = ACTIONS(3012), + [anon_sym_CARET] = ACTIONS(3014), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3014), + }, + [796] = { + [sym_comment] = STATE(796), + [anon_sym_STAR_STAR] = ACTIONS(1680), + [anon_sym_PLUS_PLUS] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_SLASH] = ACTIONS(1678), + [anon_sym_mod] = ACTIONS(1680), + [anon_sym_SLASH_SLASH] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1680), + [anon_sym_bit_DASHshl] = ACTIONS(1680), + [anon_sym_bit_DASHshr] = ACTIONS(1680), + [anon_sym_EQ_TILDE] = ACTIONS(1680), + [anon_sym_BANG_TILDE] = ACTIONS(1680), + [anon_sym_bit_DASHand] = ACTIONS(1680), + [anon_sym_bit_DASHxor] = ACTIONS(1680), + [anon_sym_bit_DASHor] = ACTIONS(1680), + [anon_sym_and] = ACTIONS(1680), + [anon_sym_xor] = ACTIONS(1680), + [anon_sym_or] = ACTIONS(1680), + [anon_sym_in] = ACTIONS(1680), + [anon_sym_not_DASHin] = ACTIONS(1680), + [anon_sym_has] = ACTIONS(1680), + [anon_sym_not_DASHhas] = ACTIONS(1680), + [anon_sym_starts_DASHwith] = ACTIONS(1680), + [anon_sym_ends_DASHwith] = ACTIONS(1680), + [anon_sym_EQ_EQ] = ACTIONS(1680), + [anon_sym_BANG_EQ] = ACTIONS(1680), + [anon_sym_LT] = ACTIONS(1678), + [anon_sym_LT_EQ] = ACTIONS(1680), + [anon_sym_GT] = ACTIONS(1678), + [anon_sym_GT_EQ] = ACTIONS(1680), + [aux_sym_cmd_identifier_token41] = ACTIONS(1678), + [sym__newline] = ACTIONS(1678), + [anon_sym_PIPE] = ACTIONS(1678), + [anon_sym_err_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_GT_PIPE] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1678), + [anon_sym_GT2] = ACTIONS(1678), + [anon_sym_DASH2] = ACTIONS(1678), + [anon_sym_in2] = ACTIONS(1678), + [anon_sym_STAR2] = ACTIONS(1678), + [anon_sym_and2] = ACTIONS(1678), + [anon_sym_xor2] = ACTIONS(1678), + [anon_sym_or2] = ACTIONS(1678), + [anon_sym_not_DASHin2] = ACTIONS(1678), + [anon_sym_has2] = ACTIONS(1678), + [anon_sym_not_DASHhas2] = ACTIONS(1678), + [anon_sym_starts_DASHwith2] = ACTIONS(1678), + [anon_sym_ends_DASHwith2] = ACTIONS(1678), + [anon_sym_EQ_EQ2] = ACTIONS(1678), + [anon_sym_BANG_EQ2] = ACTIONS(1678), + [anon_sym_LT2] = ACTIONS(1678), + [anon_sym_LT_EQ2] = ACTIONS(1678), + [anon_sym_GT_EQ2] = ACTIONS(1678), + [anon_sym_EQ_TILDE2] = ACTIONS(1678), + [anon_sym_BANG_TILDE2] = ACTIONS(1678), + [anon_sym_STAR_STAR2] = ACTIONS(1678), + [anon_sym_PLUS_PLUS2] = ACTIONS(1678), + [anon_sym_SLASH2] = ACTIONS(1678), + [anon_sym_mod2] = ACTIONS(1678), + [anon_sym_SLASH_SLASH2] = ACTIONS(1678), + [anon_sym_PLUS2] = ACTIONS(1678), + [anon_sym_bit_DASHshl2] = ACTIONS(1678), + [anon_sym_bit_DASHshr2] = ACTIONS(1678), + [anon_sym_bit_DASHand2] = ACTIONS(1678), + [anon_sym_bit_DASHxor2] = ACTIONS(1678), + [anon_sym_bit_DASHor2] = ACTIONS(1678), + [anon_sym_DOT_DOT2] = ACTIONS(1678), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1680), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1680), + [sym_filesize_unit] = ACTIONS(1678), + [sym_duration_unit] = ACTIONS(1680), + [anon_sym_err_GT] = ACTIONS(1678), + [anon_sym_out_GT] = ACTIONS(1678), + [anon_sym_e_GT] = ACTIONS(1678), + [anon_sym_o_GT] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT] = ACTIONS(1678), + [anon_sym_err_GT_GT] = ACTIONS(1678), + [anon_sym_out_GT_GT] = ACTIONS(1678), + [anon_sym_e_GT_GT] = ACTIONS(1678), + [anon_sym_o_GT_GT] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1678), [anon_sym_POUND] = ACTIONS(3), }, - [853] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7234), - [sym__spread_list] = STATE(7482), - [sym_list_body] = STATE(7824), - [sym_val_entry] = STATE(7220), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(853), - [aux_sym_shebang_repeat1] = STATE(873), - [aux_sym_parameter_repeat2] = STATE(6754), - [aux_sym_list_body_repeat1] = STATE(905), - [sym__newline] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_RBRACK] = ACTIONS(3176), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [797] = { + [sym_comment] = STATE(797), + [anon_sym_STAR_STAR] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(2570), + [anon_sym_SLASH] = ACTIONS(2570), + [anon_sym_mod] = ACTIONS(2568), + [anon_sym_SLASH_SLASH] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_bit_DASHshl] = ACTIONS(2568), + [anon_sym_bit_DASHshr] = ACTIONS(2568), + [anon_sym_EQ_TILDE] = ACTIONS(2568), + [anon_sym_BANG_TILDE] = ACTIONS(2568), + [anon_sym_bit_DASHand] = ACTIONS(2568), + [anon_sym_bit_DASHxor] = ACTIONS(2568), + [anon_sym_bit_DASHor] = ACTIONS(2568), + [anon_sym_and] = ACTIONS(2568), + [anon_sym_xor] = ACTIONS(2568), + [anon_sym_or] = ACTIONS(2568), + [anon_sym_in] = ACTIONS(2568), + [anon_sym_not_DASHin] = ACTIONS(2568), + [anon_sym_has] = ACTIONS(2568), + [anon_sym_not_DASHhas] = ACTIONS(2568), + [anon_sym_starts_DASHwith] = ACTIONS(2568), + [anon_sym_ends_DASHwith] = ACTIONS(2568), + [anon_sym_EQ_EQ] = ACTIONS(2568), + [anon_sym_BANG_EQ] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_LT_EQ] = ACTIONS(2568), + [anon_sym_GT] = ACTIONS(2570), + [anon_sym_GT_EQ] = ACTIONS(2568), + [aux_sym_cmd_identifier_token41] = ACTIONS(2572), + [sym__newline] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1616), + [anon_sym_err_GT_PIPE] = ACTIONS(1616), + [anon_sym_out_GT_PIPE] = ACTIONS(1616), + [anon_sym_e_GT_PIPE] = ACTIONS(1616), + [anon_sym_o_GT_PIPE] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1616), + [anon_sym_GT2] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_in2] = ACTIONS(1616), + [anon_sym_STAR2] = ACTIONS(1616), + [anon_sym_and2] = ACTIONS(1616), + [anon_sym_xor2] = ACTIONS(1616), + [anon_sym_or2] = ACTIONS(1616), + [anon_sym_not_DASHin2] = ACTIONS(1616), + [anon_sym_has2] = ACTIONS(1616), + [anon_sym_not_DASHhas2] = ACTIONS(1616), + [anon_sym_starts_DASHwith2] = ACTIONS(1616), + [anon_sym_ends_DASHwith2] = ACTIONS(1616), + [anon_sym_EQ_EQ2] = ACTIONS(1616), + [anon_sym_BANG_EQ2] = ACTIONS(1616), + [anon_sym_LT2] = ACTIONS(1616), + [anon_sym_LT_EQ2] = ACTIONS(1616), + [anon_sym_GT_EQ2] = ACTIONS(1616), + [anon_sym_EQ_TILDE2] = ACTIONS(1616), + [anon_sym_BANG_TILDE2] = ACTIONS(1616), + [anon_sym_STAR_STAR2] = ACTIONS(1616), + [anon_sym_PLUS_PLUS2] = ACTIONS(1616), + [anon_sym_SLASH2] = ACTIONS(1616), + [anon_sym_mod2] = ACTIONS(1616), + [anon_sym_SLASH_SLASH2] = ACTIONS(1616), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_bit_DASHshl2] = ACTIONS(1616), + [anon_sym_bit_DASHshr2] = ACTIONS(1616), + [anon_sym_bit_DASHand2] = ACTIONS(1616), + [anon_sym_bit_DASHxor2] = ACTIONS(1616), + [anon_sym_bit_DASHor2] = ACTIONS(1616), + [anon_sym_DOT_DOT2] = ACTIONS(2548), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2550), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2550), + [sym_filesize_unit] = ACTIONS(3016), + [sym_duration_unit] = ACTIONS(3018), + [anon_sym_err_GT] = ACTIONS(1616), + [anon_sym_out_GT] = ACTIONS(1616), + [anon_sym_e_GT] = ACTIONS(1616), + [anon_sym_o_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT] = ACTIONS(1616), + [anon_sym_err_GT_GT] = ACTIONS(1616), + [anon_sym_out_GT_GT] = ACTIONS(1616), + [anon_sym_e_GT_GT] = ACTIONS(1616), + [anon_sym_o_GT_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1616), + [anon_sym_POUND] = ACTIONS(3), }, - [854] = { - [sym_comment] = STATE(854), - [anon_sym_STAR_STAR] = ACTIONS(3110), - [anon_sym_PLUS_PLUS] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_mod] = ACTIONS(3110), - [anon_sym_SLASH_SLASH] = ACTIONS(3110), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3110), - [anon_sym_bit_DASHshl] = ACTIONS(3110), - [anon_sym_bit_DASHshr] = ACTIONS(3110), - [anon_sym_EQ_TILDE] = ACTIONS(3110), - [anon_sym_BANG_TILDE] = ACTIONS(3110), - [anon_sym_bit_DASHand] = ACTIONS(3110), - [anon_sym_bit_DASHxor] = ACTIONS(3110), - [anon_sym_bit_DASHor] = ACTIONS(3110), - [anon_sym_and] = ACTIONS(3110), - [anon_sym_xor] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3110), - [anon_sym_in] = ACTIONS(3110), - [anon_sym_not_DASHin] = ACTIONS(3110), - [anon_sym_has] = ACTIONS(3110), - [anon_sym_not_DASHhas] = ACTIONS(3110), - [anon_sym_starts_DASHwith] = ACTIONS(3110), - [anon_sym_ends_DASHwith] = ACTIONS(3110), - [anon_sym_EQ_EQ] = ACTIONS(3110), - [anon_sym_BANG_EQ] = ACTIONS(3110), - [anon_sym_LT] = ACTIONS(3112), - [anon_sym_LT_EQ] = ACTIONS(3110), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_GT_EQ] = ACTIONS(3110), - [aux_sym_cmd_identifier_token41] = ACTIONS(3114), - [sym__newline] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(2089), - [anon_sym_PIPE] = ACTIONS(2089), - [anon_sym_err_GT_PIPE] = ACTIONS(2089), - [anon_sym_out_GT_PIPE] = ACTIONS(2089), - [anon_sym_e_GT_PIPE] = ACTIONS(2089), - [anon_sym_o_GT_PIPE] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2089), - [anon_sym_GT2] = ACTIONS(2089), - [anon_sym_DASH2] = ACTIONS(2089), - [anon_sym_in2] = ACTIONS(2089), - [anon_sym_STAR2] = ACTIONS(2089), - [anon_sym_and2] = ACTIONS(2089), - [anon_sym_xor2] = ACTIONS(2089), - [anon_sym_or2] = ACTIONS(2089), - [anon_sym_not_DASHin2] = ACTIONS(2089), - [anon_sym_has2] = ACTIONS(2089), - [anon_sym_not_DASHhas2] = ACTIONS(2089), - [anon_sym_starts_DASHwith2] = ACTIONS(2089), - [anon_sym_ends_DASHwith2] = ACTIONS(2089), - [anon_sym_EQ_EQ2] = ACTIONS(2089), - [anon_sym_BANG_EQ2] = ACTIONS(2089), - [anon_sym_LT2] = ACTIONS(2089), - [anon_sym_LT_EQ2] = ACTIONS(2089), - [anon_sym_GT_EQ2] = ACTIONS(2089), - [anon_sym_EQ_TILDE2] = ACTIONS(2089), - [anon_sym_BANG_TILDE2] = ACTIONS(2089), - [anon_sym_STAR_STAR2] = ACTIONS(2089), - [anon_sym_PLUS_PLUS2] = ACTIONS(2089), - [anon_sym_SLASH2] = ACTIONS(2089), - [anon_sym_mod2] = ACTIONS(2089), - [anon_sym_SLASH_SLASH2] = ACTIONS(2089), - [anon_sym_PLUS2] = ACTIONS(2089), - [anon_sym_bit_DASHshl2] = ACTIONS(2089), - [anon_sym_bit_DASHshr2] = ACTIONS(2089), - [anon_sym_bit_DASHand2] = ACTIONS(2089), - [anon_sym_bit_DASHxor2] = ACTIONS(2089), - [anon_sym_bit_DASHor2] = ACTIONS(2089), - [anon_sym_err_GT] = ACTIONS(2089), - [anon_sym_out_GT] = ACTIONS(2089), - [anon_sym_e_GT] = ACTIONS(2089), - [anon_sym_o_GT] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT] = ACTIONS(2089), - [anon_sym_err_GT_GT] = ACTIONS(2089), - [anon_sym_out_GT_GT] = ACTIONS(2089), - [anon_sym_e_GT_GT] = ACTIONS(2089), - [anon_sym_o_GT_GT] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2089), + [798] = { + [sym_expr_parenthesized] = STATE(5590), + [sym__spread_parenthesized] = STATE(4427), + [sym_val_range] = STATE(4431), + [sym__val_range] = STATE(7359), + [sym__val_range_with_end] = STATE(6944), + [sym__value] = STATE(4431), + [sym_val_nothing] = STATE(4406), + [sym_val_bool] = STATE(5677), + [sym__spread_variable] = STATE(4467), + [sym_val_variable] = STATE(5483), + [sym_val_number] = STATE(4406), + [sym__val_number_decimal] = STATE(4890), + [sym__val_number] = STATE(4446), + [sym_val_duration] = STATE(4406), + [sym_val_filesize] = STATE(4406), + [sym_val_binary] = STATE(4406), + [sym_val_string] = STATE(4406), + [sym__raw_str] = STATE(3849), + [sym__str_double_quotes] = STATE(3849), + [sym_val_interpolated] = STATE(4406), + [sym__inter_single_quotes] = STATE(4336), + [sym__inter_double_quotes] = STATE(4388), + [sym_val_list] = STATE(4406), + [sym__spread_list] = STATE(4427), + [sym_val_record] = STATE(4406), + [sym_val_table] = STATE(4406), + [sym_val_closure] = STATE(4406), + [sym__cmd_arg] = STATE(4395), + [sym_redirection] = STATE(4398), + [sym__flag] = STATE(4482), + [sym_short_flag] = STATE(4417), + [sym_long_flag] = STATE(4417), + [sym_unquoted] = STATE(4066), + [sym__unquoted_with_expr] = STATE(4390), + [sym__unquoted_anonymous_prefix] = STATE(6718), + [sym_comment] = STATE(798), + [sym__newline] = ACTIONS(2008), + [sym__space] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2010), + [anon_sym_LPAREN] = ACTIONS(2012), + [anon_sym_DOLLAR] = ACTIONS(2014), + [anon_sym_DASH_DASH] = ACTIONS(3020), + [anon_sym_DASH2] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(2020), + [anon_sym_DOT_DOT] = ACTIONS(3024), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3026), + [anon_sym_DOT_DOT_LT] = ACTIONS(3026), + [anon_sym_null] = ACTIONS(3028), + [anon_sym_true] = ACTIONS(3030), + [anon_sym_false] = ACTIONS(3030), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2032), + [aux_sym__val_number_decimal_token1] = ACTIONS(3032), + [aux_sym__val_number_decimal_token2] = ACTIONS(3032), + [aux_sym__val_number_decimal_token3] = ACTIONS(3034), + [aux_sym__val_number_decimal_token4] = ACTIONS(3036), + [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(3038), + [aux_sym__val_number_token5] = ACTIONS(3038), + [aux_sym__val_number_token6] = ACTIONS(3038), + [anon_sym_0b] = ACTIONS(2044), + [anon_sym_0o] = ACTIONS(2046), + [anon_sym_0x] = ACTIONS(2046), + [sym_val_date] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(2050), + [sym__str_single_quotes] = ACTIONS(2052), + [sym__str_back_ticks] = ACTIONS(2052), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2054), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2056), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2058), + [anon_sym_err_GT] = ACTIONS(2062), + [anon_sym_out_GT] = ACTIONS(2062), + [anon_sym_e_GT] = ACTIONS(2062), + [anon_sym_o_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT] = ACTIONS(2062), + [anon_sym_err_GT_GT] = ACTIONS(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [aux_sym_unquoted_token1] = ACTIONS(2064), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2066), }, - [855] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7105), - [sym__spread_list] = STATE(7482), - [sym_list_body] = STATE(7619), - [sym_val_entry] = STATE(7220), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(855), - [aux_sym_shebang_repeat1] = STATE(875), - [aux_sym_parameter_repeat2] = STATE(6754), - [aux_sym_list_body_repeat1] = STATE(905), - [sym__newline] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_RBRACK] = ACTIONS(3162), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), + [799] = { + [sym_expr_parenthesized] = STATE(5880), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(6848), + [sym__val_range] = STATE(7049), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6303), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4993), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6628), + [sym__spread_list] = STATE(6920), + [sym_list_body] = STATE(7097), + [sym_val_entry] = STATE(6647), + [sym_val_record] = STATE(6683), + [sym__table_head] = STATE(5469), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(6280), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6734), + [sym_comment] = STATE(799), + [aux_sym_shebang_repeat1] = STATE(836), + [aux_sym_parameter_repeat2] = STATE(6308), + [aux_sym_list_body_repeat1] = STATE(872), + [sym__newline] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_RBRACK] = ACTIONS(3044), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3052), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_LT] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [aux_sym__val_number_decimal_token1] = ACTIONS(3060), + [aux_sym__val_number_decimal_token2] = ACTIONS(3062), + [aux_sym__val_number_decimal_token3] = ACTIONS(3064), + [aux_sym__val_number_decimal_token4] = ACTIONS(3066), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3070), + [aux_sym__val_number_token5] = ACTIONS(3070), + [aux_sym__val_number_token6] = ACTIONS(3070), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2528), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), }, - [856] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7234), - [sym__spread_list] = STATE(7482), - [sym_list_body] = STATE(7679), - [sym_val_entry] = STATE(7220), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(856), - [aux_sym_shebang_repeat1] = STATE(873), - [aux_sym_parameter_repeat2] = STATE(6754), - [aux_sym_list_body_repeat1] = STATE(905), - [sym__newline] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_RBRACK] = ACTIONS(3178), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), + [800] = { + [sym_expr_parenthesized] = STATE(5880), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(6848), + [sym__val_range] = STATE(7049), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6303), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4993), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6628), + [sym__spread_list] = STATE(6920), + [sym_list_body] = STATE(7362), + [sym_val_entry] = STATE(6647), + [sym_val_record] = STATE(6683), + [sym__table_head] = STATE(5620), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(6280), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6734), + [sym_comment] = STATE(800), + [aux_sym_shebang_repeat1] = STATE(836), + [aux_sym_parameter_repeat2] = STATE(6308), + [aux_sym_list_body_repeat1] = STATE(872), + [sym__newline] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_RBRACK] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3052), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_LT] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [aux_sym__val_number_decimal_token1] = ACTIONS(3060), + [aux_sym__val_number_decimal_token2] = ACTIONS(3062), + [aux_sym__val_number_decimal_token3] = ACTIONS(3064), + [aux_sym__val_number_decimal_token4] = ACTIONS(3066), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3070), + [aux_sym__val_number_token5] = ACTIONS(3070), + [aux_sym__val_number_token6] = ACTIONS(3070), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2528), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), }, - [857] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7250), - [sym__spread_list] = STATE(7482), - [sym_list_body] = STATE(7910), - [sym_val_entry] = STATE(7220), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(857), - [aux_sym_shebang_repeat1] = STATE(878), - [aux_sym_parameter_repeat2] = STATE(6754), - [aux_sym_list_body_repeat1] = STATE(905), - [sym__newline] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_RBRACK] = ACTIONS(3180), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), + [801] = { + [sym_expr_parenthesized] = STATE(5880), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(6848), + [sym__val_range] = STATE(7049), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6303), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4993), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6628), + [sym__spread_list] = STATE(6920), + [sym_list_body] = STATE(7153), + [sym_val_entry] = STATE(6647), + [sym_val_record] = STATE(6683), + [sym__table_head] = STATE(5579), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(6280), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6734), + [sym_comment] = STATE(801), + [aux_sym_shebang_repeat1] = STATE(836), + [aux_sym_parameter_repeat2] = STATE(6308), + [aux_sym_list_body_repeat1] = STATE(872), + [sym__newline] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_RBRACK] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3052), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_LT] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [aux_sym__val_number_decimal_token1] = ACTIONS(3060), + [aux_sym__val_number_decimal_token2] = ACTIONS(3062), + [aux_sym__val_number_decimal_token3] = ACTIONS(3064), + [aux_sym__val_number_decimal_token4] = ACTIONS(3066), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3070), + [aux_sym__val_number_token5] = ACTIONS(3070), + [aux_sym__val_number_token6] = ACTIONS(3070), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2528), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), }, - [858] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7258), - [sym__spread_list] = STATE(7482), - [sym_list_body] = STATE(7572), - [sym_val_entry] = STATE(7220), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(858), - [aux_sym_shebang_repeat1] = STATE(872), - [aux_sym_parameter_repeat2] = STATE(6754), - [aux_sym_list_body_repeat1] = STATE(905), - [sym__newline] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_RBRACK] = ACTIONS(3182), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), + [802] = { + [sym_expr_parenthesized] = STATE(5880), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(6848), + [sym__val_range] = STATE(7049), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6303), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4993), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6628), + [sym__spread_list] = STATE(6920), + [sym_list_body] = STATE(7260), + [sym_val_entry] = STATE(6647), + [sym_val_record] = STATE(6683), + [sym__table_head] = STATE(5564), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(6280), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6734), + [sym_comment] = STATE(802), + [aux_sym_shebang_repeat1] = STATE(836), + [aux_sym_parameter_repeat2] = STATE(6308), + [aux_sym_list_body_repeat1] = STATE(872), + [sym__newline] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_RBRACK] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3052), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_LT] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [aux_sym__val_number_decimal_token1] = ACTIONS(3060), + [aux_sym__val_number_decimal_token2] = ACTIONS(3062), + [aux_sym__val_number_decimal_token3] = ACTIONS(3064), + [aux_sym__val_number_decimal_token4] = ACTIONS(3066), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3070), + [aux_sym__val_number_token5] = ACTIONS(3070), + [aux_sym__val_number_token6] = ACTIONS(3070), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2528), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), }, - [859] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7264), - [sym__spread_list] = STATE(7482), - [sym_list_body] = STATE(7639), - [sym_val_entry] = STATE(7220), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(859), - [aux_sym_shebang_repeat1] = STATE(880), - [aux_sym_parameter_repeat2] = STATE(6754), - [aux_sym_list_body_repeat1] = STATE(905), - [sym__newline] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_RBRACK] = ACTIONS(3184), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), + [803] = { + [sym_expr_parenthesized] = STATE(5880), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(6848), + [sym__val_range] = STATE(7049), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6303), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4993), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6628), + [sym__spread_list] = STATE(6920), + [sym_list_body] = STATE(7350), + [sym_val_entry] = STATE(6647), + [sym_val_record] = STATE(6683), + [sym__table_head] = STATE(5446), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(6280), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6734), + [sym_comment] = STATE(803), + [aux_sym_shebang_repeat1] = STATE(836), + [aux_sym_parameter_repeat2] = STATE(6308), + [aux_sym_list_body_repeat1] = STATE(872), + [sym__newline] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_RBRACK] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3052), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_LT] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [aux_sym__val_number_decimal_token1] = ACTIONS(3060), + [aux_sym__val_number_decimal_token2] = ACTIONS(3062), + [aux_sym__val_number_decimal_token3] = ACTIONS(3064), + [aux_sym__val_number_decimal_token4] = ACTIONS(3066), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3070), + [aux_sym__val_number_token5] = ACTIONS(3070), + [aux_sym__val_number_token6] = ACTIONS(3070), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2528), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), }, - [860] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7272), - [sym__spread_list] = STATE(7482), - [sym_list_body] = STATE(7648), - [sym_val_entry] = STATE(7220), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(860), - [aux_sym_shebang_repeat1] = STATE(881), - [aux_sym_parameter_repeat2] = STATE(6754), - [aux_sym_list_body_repeat1] = STATE(905), - [sym__newline] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_RBRACK] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), + [804] = { + [sym_expr_parenthesized] = STATE(5880), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(6848), + [sym__val_range] = STATE(7049), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6303), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4993), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6628), + [sym__spread_list] = STATE(6920), + [sym_list_body] = STATE(6998), + [sym_val_entry] = STATE(6647), + [sym_val_record] = STATE(6683), + [sym__table_head] = STATE(5451), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(6280), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6734), + [sym_comment] = STATE(804), + [aux_sym_shebang_repeat1] = STATE(836), + [aux_sym_parameter_repeat2] = STATE(6308), + [aux_sym_list_body_repeat1] = STATE(872), + [sym__newline] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_RBRACK] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3052), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_LT] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [aux_sym__val_number_decimal_token1] = ACTIONS(3060), + [aux_sym__val_number_decimal_token2] = ACTIONS(3062), + [aux_sym__val_number_decimal_token3] = ACTIONS(3064), + [aux_sym__val_number_decimal_token4] = ACTIONS(3066), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3070), + [aux_sym__val_number_token5] = ACTIONS(3070), + [aux_sym__val_number_token6] = ACTIONS(3070), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2528), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), }, - [861] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7279), - [sym__spread_list] = STATE(7482), - [sym_list_body] = STATE(7824), - [sym_val_entry] = STATE(7220), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(861), - [aux_sym_shebang_repeat1] = STATE(882), - [aux_sym_parameter_repeat2] = STATE(6754), - [aux_sym_list_body_repeat1] = STATE(905), - [sym__newline] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_RBRACK] = ACTIONS(3176), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [805] = { + [sym_comment] = STATE(805), + [anon_sym_STAR_STAR] = ACTIONS(3096), + [anon_sym_PLUS_PLUS] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_mod] = ACTIONS(3096), + [anon_sym_SLASH_SLASH] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3098), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_bit_DASHshl] = ACTIONS(3096), + [anon_sym_bit_DASHshr] = ACTIONS(3096), + [anon_sym_EQ_TILDE] = ACTIONS(3096), + [anon_sym_BANG_TILDE] = ACTIONS(3096), + [anon_sym_bit_DASHand] = ACTIONS(3096), + [anon_sym_bit_DASHxor] = ACTIONS(3096), + [anon_sym_bit_DASHor] = ACTIONS(3096), + [anon_sym_and] = ACTIONS(3096), + [anon_sym_xor] = ACTIONS(3096), + [anon_sym_or] = ACTIONS(3096), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_not_DASHin] = ACTIONS(3096), + [anon_sym_has] = ACTIONS(3096), + [anon_sym_not_DASHhas] = ACTIONS(3096), + [anon_sym_starts_DASHwith] = ACTIONS(3096), + [anon_sym_ends_DASHwith] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3096), + [aux_sym_cmd_identifier_token41] = ACTIONS(3100), + [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_RPAREN] = ACTIONS(2128), + [anon_sym_GT2] = ACTIONS(2128), + [anon_sym_DASH2] = ACTIONS(2128), + [anon_sym_in2] = ACTIONS(2128), + [anon_sym_STAR2] = ACTIONS(2128), + [anon_sym_and2] = ACTIONS(2128), + [anon_sym_xor2] = ACTIONS(2128), + [anon_sym_or2] = ACTIONS(2128), + [anon_sym_not_DASHin2] = ACTIONS(2128), + [anon_sym_has2] = ACTIONS(2128), + [anon_sym_not_DASHhas2] = ACTIONS(2128), + [anon_sym_starts_DASHwith2] = ACTIONS(2128), + [anon_sym_ends_DASHwith2] = ACTIONS(2128), + [anon_sym_EQ_EQ2] = ACTIONS(2128), + [anon_sym_BANG_EQ2] = ACTIONS(2128), + [anon_sym_LT2] = ACTIONS(2128), + [anon_sym_LT_EQ2] = ACTIONS(2128), + [anon_sym_GT_EQ2] = ACTIONS(2128), + [anon_sym_EQ_TILDE2] = ACTIONS(2128), + [anon_sym_BANG_TILDE2] = ACTIONS(2128), + [anon_sym_STAR_STAR2] = ACTIONS(2128), + [anon_sym_PLUS_PLUS2] = ACTIONS(2128), + [anon_sym_SLASH2] = ACTIONS(2128), + [anon_sym_mod2] = ACTIONS(2128), + [anon_sym_SLASH_SLASH2] = ACTIONS(2128), + [anon_sym_PLUS2] = ACTIONS(2128), + [anon_sym_bit_DASHshl2] = ACTIONS(2128), + [anon_sym_bit_DASHshr2] = ACTIONS(2128), + [anon_sym_bit_DASHand2] = ACTIONS(2128), + [anon_sym_bit_DASHxor2] = ACTIONS(2128), + [anon_sym_bit_DASHor2] = ACTIONS(2128), + [anon_sym_err_GT] = ACTIONS(2128), + [anon_sym_out_GT] = ACTIONS(2128), + [anon_sym_e_GT] = ACTIONS(2128), + [anon_sym_o_GT] = ACTIONS(2128), + [anon_sym_err_PLUSout_GT] = ACTIONS(2128), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2128), + [anon_sym_o_PLUSe_GT] = ACTIONS(2128), + [anon_sym_e_PLUSo_GT] = ACTIONS(2128), + [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), + [anon_sym_POUND] = ACTIONS(3), }, - [862] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7287), - [sym__spread_list] = STATE(7482), - [sym_list_body] = STATE(7601), - [sym_val_entry] = STATE(7220), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(862), - [aux_sym_shebang_repeat1] = STATE(883), - [aux_sym_parameter_repeat2] = STATE(6754), - [aux_sym_list_body_repeat1] = STATE(905), - [sym__newline] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_RBRACK] = ACTIONS(3188), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [806] = { + [sym_comment] = STATE(806), + [anon_sym_STAR_STAR] = ACTIONS(3096), + [anon_sym_PLUS_PLUS] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_mod] = ACTIONS(3096), + [anon_sym_SLASH_SLASH] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3098), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_bit_DASHshl] = ACTIONS(3096), + [anon_sym_bit_DASHshr] = ACTIONS(3096), + [anon_sym_EQ_TILDE] = ACTIONS(3096), + [anon_sym_BANG_TILDE] = ACTIONS(3096), + [anon_sym_bit_DASHand] = ACTIONS(3096), + [anon_sym_bit_DASHxor] = ACTIONS(3096), + [anon_sym_bit_DASHor] = ACTIONS(3096), + [anon_sym_and] = ACTIONS(3096), + [anon_sym_xor] = ACTIONS(3096), + [anon_sym_or] = ACTIONS(3096), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_not_DASHin] = ACTIONS(3096), + [anon_sym_has] = ACTIONS(3096), + [anon_sym_not_DASHhas] = ACTIONS(3096), + [anon_sym_starts_DASHwith] = ACTIONS(3096), + [anon_sym_ends_DASHwith] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3096), + [aux_sym_cmd_identifier_token41] = ACTIONS(3100), + [sym__newline] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_err_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_GT_PIPE] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2068), + [anon_sym_RPAREN] = ACTIONS(2068), + [anon_sym_GT2] = ACTIONS(2068), + [anon_sym_DASH2] = ACTIONS(2068), + [anon_sym_in2] = ACTIONS(2068), + [anon_sym_STAR2] = ACTIONS(2068), + [anon_sym_and2] = ACTIONS(2068), + [anon_sym_xor2] = ACTIONS(2068), + [anon_sym_or2] = ACTIONS(2068), + [anon_sym_not_DASHin2] = ACTIONS(2068), + [anon_sym_has2] = ACTIONS(2068), + [anon_sym_not_DASHhas2] = ACTIONS(2068), + [anon_sym_starts_DASHwith2] = ACTIONS(2068), + [anon_sym_ends_DASHwith2] = ACTIONS(2068), + [anon_sym_EQ_EQ2] = ACTIONS(2068), + [anon_sym_BANG_EQ2] = ACTIONS(2068), + [anon_sym_LT2] = ACTIONS(2068), + [anon_sym_LT_EQ2] = ACTIONS(2068), + [anon_sym_GT_EQ2] = ACTIONS(2068), + [anon_sym_EQ_TILDE2] = ACTIONS(2068), + [anon_sym_BANG_TILDE2] = ACTIONS(2068), + [anon_sym_STAR_STAR2] = ACTIONS(2068), + [anon_sym_PLUS_PLUS2] = ACTIONS(2068), + [anon_sym_SLASH2] = ACTIONS(2068), + [anon_sym_mod2] = ACTIONS(2068), + [anon_sym_SLASH_SLASH2] = ACTIONS(2068), + [anon_sym_PLUS2] = ACTIONS(2068), + [anon_sym_bit_DASHshl2] = ACTIONS(2068), + [anon_sym_bit_DASHshr2] = ACTIONS(2068), + [anon_sym_bit_DASHand2] = ACTIONS(2068), + [anon_sym_bit_DASHxor2] = ACTIONS(2068), + [anon_sym_bit_DASHor2] = ACTIONS(2068), + [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(2068), + [anon_sym_out_GT_GT] = ACTIONS(2068), + [anon_sym_e_GT_GT] = ACTIONS(2068), + [anon_sym_o_GT_GT] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2068), + [anon_sym_POUND] = ACTIONS(3), }, - [863] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7295), - [sym__spread_list] = STATE(7482), - [sym_list_body] = STATE(7865), - [sym_val_entry] = STATE(7220), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(863), - [aux_sym_shebang_repeat1] = STATE(884), - [aux_sym_parameter_repeat2] = STATE(6754), - [aux_sym_list_body_repeat1] = STATE(905), - [sym__newline] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_RBRACK] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), + [807] = { + [sym_expr_parenthesized] = STATE(5880), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(6848), + [sym__val_range] = STATE(7049), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6303), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4993), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6628), + [sym__spread_list] = STATE(6920), + [sym_list_body] = STATE(7013), + [sym_val_entry] = STATE(6647), + [sym_val_record] = STATE(6683), + [sym__table_head] = STATE(5635), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(6280), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6734), + [sym_comment] = STATE(807), + [aux_sym_shebang_repeat1] = STATE(836), + [aux_sym_parameter_repeat2] = STATE(6308), + [aux_sym_list_body_repeat1] = STATE(872), + [sym__newline] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_RBRACK] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3052), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_LT] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [aux_sym__val_number_decimal_token1] = ACTIONS(3060), + [aux_sym__val_number_decimal_token2] = ACTIONS(3062), + [aux_sym__val_number_decimal_token3] = ACTIONS(3064), + [aux_sym__val_number_decimal_token4] = ACTIONS(3066), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3070), + [aux_sym__val_number_token5] = ACTIONS(3070), + [aux_sym__val_number_token6] = ACTIONS(3070), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2528), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), }, - [864] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7319), - [sym__spread_list] = STATE(7482), - [sym_list_body] = STATE(7557), - [sym_val_entry] = STATE(7220), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(864), - [aux_sym_shebang_repeat1] = STATE(887), - [aux_sym_parameter_repeat2] = STATE(6754), - [aux_sym_list_body_repeat1] = STATE(905), - [sym__newline] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_RBRACK] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), + [808] = { + [sym_expr_parenthesized] = STATE(5880), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(6848), + [sym__val_range] = STATE(7049), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6303), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4993), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6628), + [sym__spread_list] = STATE(6920), + [sym_list_body] = STATE(7059), + [sym_val_entry] = STATE(6647), + [sym_val_record] = STATE(6683), + [sym__table_head] = STATE(5456), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(6280), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6734), + [sym_comment] = STATE(808), + [aux_sym_shebang_repeat1] = STATE(836), + [aux_sym_parameter_repeat2] = STATE(6308), + [aux_sym_list_body_repeat1] = STATE(872), + [sym__newline] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_RBRACK] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3052), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_LT] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [aux_sym__val_number_decimal_token1] = ACTIONS(3060), + [aux_sym__val_number_decimal_token2] = ACTIONS(3062), + [aux_sym__val_number_decimal_token3] = ACTIONS(3064), + [aux_sym__val_number_decimal_token4] = ACTIONS(3066), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3070), + [aux_sym__val_number_token5] = ACTIONS(3070), + [aux_sym__val_number_token6] = ACTIONS(3070), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2528), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), }, - [865] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7339), - [sym__spread_list] = STATE(7482), - [sym_list_body] = STATE(7794), - [sym_val_entry] = STATE(7220), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(865), - [aux_sym_shebang_repeat1] = STATE(890), - [aux_sym_parameter_repeat2] = STATE(6754), - [aux_sym_list_body_repeat1] = STATE(905), - [sym__newline] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_RBRACK] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), + [809] = { + [sym_expr_parenthesized] = STATE(5880), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(6848), + [sym__val_range] = STATE(7049), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6303), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4993), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6628), + [sym__spread_list] = STATE(6920), + [sym_list_body] = STATE(7113), + [sym_val_entry] = STATE(6647), + [sym_val_record] = STATE(6683), + [sym__table_head] = STATE(5551), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(6280), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6734), + [sym_comment] = STATE(809), + [aux_sym_shebang_repeat1] = STATE(836), + [aux_sym_parameter_repeat2] = STATE(6308), + [aux_sym_list_body_repeat1] = STATE(872), + [sym__newline] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_RBRACK] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3052), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_LT] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [aux_sym__val_number_decimal_token1] = ACTIONS(3060), + [aux_sym__val_number_decimal_token2] = ACTIONS(3062), + [aux_sym__val_number_decimal_token3] = ACTIONS(3064), + [aux_sym__val_number_decimal_token4] = ACTIONS(3066), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3070), + [aux_sym__val_number_token5] = ACTIONS(3070), + [aux_sym__val_number_token6] = ACTIONS(3070), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2528), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), }, - [866] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7345), - [sym__spread_list] = STATE(7482), - [sym_list_body] = STATE(7840), - [sym_val_entry] = STATE(7220), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(866), - [aux_sym_shebang_repeat1] = STATE(879), - [aux_sym_parameter_repeat2] = STATE(6754), - [aux_sym_list_body_repeat1] = STATE(905), - [sym__newline] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_RBRACK] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), + [810] = { + [sym_expr_parenthesized] = STATE(5880), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(6848), + [sym__val_range] = STATE(7049), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6303), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4993), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6628), + [sym__spread_list] = STATE(6920), + [sym_list_body] = STATE(7180), + [sym_val_entry] = STATE(6647), + [sym_val_record] = STATE(6683), + [sym__table_head] = STATE(5525), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(6280), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6734), + [sym_comment] = STATE(810), + [aux_sym_shebang_repeat1] = STATE(836), + [aux_sym_parameter_repeat2] = STATE(6308), + [aux_sym_list_body_repeat1] = STATE(872), + [sym__newline] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_RBRACK] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3052), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_LT] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [aux_sym__val_number_decimal_token1] = ACTIONS(3060), + [aux_sym__val_number_decimal_token2] = ACTIONS(3062), + [aux_sym__val_number_decimal_token3] = ACTIONS(3064), + [aux_sym__val_number_decimal_token4] = ACTIONS(3066), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3070), + [aux_sym__val_number_token5] = ACTIONS(3070), + [aux_sym__val_number_token6] = ACTIONS(3070), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2528), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), }, - [867] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7313), - [sym__spread_list] = STATE(7482), - [sym_list_body] = STATE(7745), - [sym_val_entry] = STATE(7220), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(867), - [aux_sym_shebang_repeat1] = STATE(886), - [aux_sym_parameter_repeat2] = STATE(6754), - [aux_sym_list_body_repeat1] = STATE(905), - [sym__newline] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_RBRACK] = ACTIONS(3196), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), + [811] = { + [sym_comment] = STATE(811), + [anon_sym_STAR_STAR] = ACTIONS(3096), + [anon_sym_PLUS_PLUS] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_mod] = ACTIONS(3096), + [anon_sym_SLASH_SLASH] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3098), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_bit_DASHshl] = ACTIONS(3096), + [anon_sym_bit_DASHshr] = ACTIONS(3096), + [anon_sym_EQ_TILDE] = ACTIONS(3096), + [anon_sym_BANG_TILDE] = ACTIONS(3096), + [anon_sym_bit_DASHand] = ACTIONS(3096), + [anon_sym_bit_DASHxor] = ACTIONS(3096), + [anon_sym_bit_DASHor] = ACTIONS(3096), + [anon_sym_and] = ACTIONS(3096), + [anon_sym_xor] = ACTIONS(3096), + [anon_sym_or] = ACTIONS(3096), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_not_DASHin] = ACTIONS(3096), + [anon_sym_has] = ACTIONS(3096), + [anon_sym_not_DASHhas] = ACTIONS(3096), + [anon_sym_starts_DASHwith] = ACTIONS(3096), + [anon_sym_ends_DASHwith] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3096), + [aux_sym_cmd_identifier_token41] = ACTIONS(3100), + [sym__newline] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_err_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_GT_PIPE] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2068), + [anon_sym_GT2] = ACTIONS(2068), + [anon_sym_DASH2] = ACTIONS(2068), + [anon_sym_in2] = ACTIONS(2068), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_STAR2] = ACTIONS(2068), + [anon_sym_and2] = ACTIONS(2068), + [anon_sym_xor2] = ACTIONS(2068), + [anon_sym_or2] = ACTIONS(2068), + [anon_sym_not_DASHin2] = ACTIONS(2068), + [anon_sym_has2] = ACTIONS(2068), + [anon_sym_not_DASHhas2] = ACTIONS(2068), + [anon_sym_starts_DASHwith2] = ACTIONS(2068), + [anon_sym_ends_DASHwith2] = ACTIONS(2068), + [anon_sym_EQ_EQ2] = ACTIONS(2068), + [anon_sym_BANG_EQ2] = ACTIONS(2068), + [anon_sym_LT2] = ACTIONS(2068), + [anon_sym_LT_EQ2] = ACTIONS(2068), + [anon_sym_GT_EQ2] = ACTIONS(2068), + [anon_sym_EQ_TILDE2] = ACTIONS(2068), + [anon_sym_BANG_TILDE2] = ACTIONS(2068), + [anon_sym_STAR_STAR2] = ACTIONS(2068), + [anon_sym_PLUS_PLUS2] = ACTIONS(2068), + [anon_sym_SLASH2] = ACTIONS(2068), + [anon_sym_mod2] = ACTIONS(2068), + [anon_sym_SLASH_SLASH2] = ACTIONS(2068), + [anon_sym_PLUS2] = ACTIONS(2068), + [anon_sym_bit_DASHshl2] = ACTIONS(2068), + [anon_sym_bit_DASHshr2] = ACTIONS(2068), + [anon_sym_bit_DASHand2] = ACTIONS(2068), + [anon_sym_bit_DASHxor2] = ACTIONS(2068), + [anon_sym_bit_DASHor2] = ACTIONS(2068), + [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(2068), + [anon_sym_out_GT_GT] = ACTIONS(2068), + [anon_sym_e_GT_GT] = ACTIONS(2068), + [anon_sym_o_GT_GT] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2068), + [anon_sym_POUND] = ACTIONS(3), + }, + [812] = { + [sym_expr_parenthesized] = STATE(5880), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(6848), + [sym__val_range] = STATE(7049), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6303), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4993), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6628), + [sym__spread_list] = STATE(6920), + [sym_list_body] = STATE(6985), + [sym_val_entry] = STATE(6647), + [sym_val_record] = STATE(6683), + [sym__table_head] = STATE(5511), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(6280), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6734), + [sym_comment] = STATE(812), + [aux_sym_shebang_repeat1] = STATE(836), + [aux_sym_parameter_repeat2] = STATE(6308), + [aux_sym_list_body_repeat1] = STATE(872), + [sym__newline] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_RBRACK] = ACTIONS(3110), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3052), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_LT] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [aux_sym__val_number_decimal_token1] = ACTIONS(3060), + [aux_sym__val_number_decimal_token2] = ACTIONS(3062), + [aux_sym__val_number_decimal_token3] = ACTIONS(3064), + [aux_sym__val_number_decimal_token4] = ACTIONS(3066), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3070), + [aux_sym__val_number_token5] = ACTIONS(3070), + [aux_sym__val_number_token6] = ACTIONS(3070), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2528), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), }, - [868] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7105), - [sym__spread_list] = STATE(7482), - [sym_list_body] = STATE(7753), - [sym_val_entry] = STATE(7220), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(868), - [aux_sym_shebang_repeat1] = STATE(875), - [aux_sym_parameter_repeat2] = STATE(6754), - [aux_sym_list_body_repeat1] = STATE(905), - [sym__newline] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_RBRACK] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), + [813] = { + [sym_expr_parenthesized] = STATE(5880), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(6848), + [sym__val_range] = STATE(7049), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6303), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4993), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6628), + [sym__spread_list] = STATE(6920), + [sym_list_body] = STATE(7110), + [sym_val_entry] = STATE(6647), + [sym_val_record] = STATE(6683), + [sym__table_head] = STATE(5459), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(6280), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6734), + [sym_comment] = STATE(813), + [aux_sym_shebang_repeat1] = STATE(836), + [aux_sym_parameter_repeat2] = STATE(6308), + [aux_sym_list_body_repeat1] = STATE(872), + [sym__newline] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_RBRACK] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3052), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_LT] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [aux_sym__val_number_decimal_token1] = ACTIONS(3060), + [aux_sym__val_number_decimal_token2] = ACTIONS(3062), + [aux_sym__val_number_decimal_token3] = ACTIONS(3064), + [aux_sym__val_number_decimal_token4] = ACTIONS(3066), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3070), + [aux_sym__val_number_token5] = ACTIONS(3070), + [aux_sym__val_number_token6] = ACTIONS(3070), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2528), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), }, - [869] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7234), - [sym__spread_list] = STATE(7482), - [sym_list_body] = STATE(7929), - [sym_val_entry] = STATE(7220), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(869), - [aux_sym_shebang_repeat1] = STATE(873), - [aux_sym_parameter_repeat2] = STATE(6754), - [aux_sym_list_body_repeat1] = STATE(905), - [sym__newline] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_RBRACK] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), + [814] = { + [sym_expr_parenthesized] = STATE(5880), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(6848), + [sym__val_range] = STATE(7049), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6303), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4993), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6628), + [sym__spread_list] = STATE(6920), + [sym_list_body] = STATE(7119), + [sym_val_entry] = STATE(6647), + [sym_val_record] = STATE(6683), + [sym__table_head] = STATE(5537), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(6280), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6734), + [sym_comment] = STATE(814), + [aux_sym_shebang_repeat1] = STATE(836), + [aux_sym_parameter_repeat2] = STATE(6308), + [aux_sym_list_body_repeat1] = STATE(872), + [sym__newline] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_RBRACK] = ACTIONS(3114), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3052), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_LT] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [aux_sym__val_number_decimal_token1] = ACTIONS(3060), + [aux_sym__val_number_decimal_token2] = ACTIONS(3062), + [aux_sym__val_number_decimal_token3] = ACTIONS(3064), + [aux_sym__val_number_decimal_token4] = ACTIONS(3066), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3070), + [aux_sym__val_number_token5] = ACTIONS(3070), + [aux_sym__val_number_token6] = ACTIONS(3070), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2528), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), }, - [870] = { - [sym_comment] = STATE(870), - [anon_sym_STAR_STAR] = ACTIONS(3110), - [anon_sym_PLUS_PLUS] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_mod] = ACTIONS(3110), - [anon_sym_SLASH_SLASH] = ACTIONS(3110), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3110), - [anon_sym_bit_DASHshl] = ACTIONS(3110), - [anon_sym_bit_DASHshr] = ACTIONS(3110), - [anon_sym_EQ_TILDE] = ACTIONS(3110), - [anon_sym_BANG_TILDE] = ACTIONS(3110), - [anon_sym_bit_DASHand] = ACTIONS(3110), - [anon_sym_bit_DASHxor] = ACTIONS(3110), - [anon_sym_bit_DASHor] = ACTIONS(3110), - [anon_sym_and] = ACTIONS(3110), - [anon_sym_xor] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3110), - [anon_sym_in] = ACTIONS(3110), - [anon_sym_not_DASHin] = ACTIONS(3110), - [anon_sym_has] = ACTIONS(3110), - [anon_sym_not_DASHhas] = ACTIONS(3110), - [anon_sym_starts_DASHwith] = ACTIONS(3110), - [anon_sym_ends_DASHwith] = ACTIONS(3110), - [anon_sym_EQ_EQ] = ACTIONS(3110), - [anon_sym_BANG_EQ] = ACTIONS(3110), - [anon_sym_LT] = ACTIONS(3112), - [anon_sym_LT_EQ] = ACTIONS(3110), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_GT_EQ] = ACTIONS(3110), - [aux_sym_cmd_identifier_token41] = ACTIONS(3114), - [sym__newline] = ACTIONS(2089), - [anon_sym_PIPE] = ACTIONS(2089), - [anon_sym_err_GT_PIPE] = ACTIONS(2089), - [anon_sym_out_GT_PIPE] = ACTIONS(2089), - [anon_sym_e_GT_PIPE] = ACTIONS(2089), - [anon_sym_o_GT_PIPE] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2089), - [anon_sym_GT2] = ACTIONS(2089), - [anon_sym_DASH2] = ACTIONS(2089), - [anon_sym_in2] = ACTIONS(2089), - [anon_sym_STAR2] = ACTIONS(2089), - [anon_sym_and2] = ACTIONS(2089), - [anon_sym_xor2] = ACTIONS(2089), - [anon_sym_or2] = ACTIONS(2089), - [anon_sym_not_DASHin2] = ACTIONS(2089), - [anon_sym_has2] = ACTIONS(2089), - [anon_sym_not_DASHhas2] = ACTIONS(2089), - [anon_sym_starts_DASHwith2] = ACTIONS(2089), - [anon_sym_ends_DASHwith2] = ACTIONS(2089), - [anon_sym_EQ_EQ2] = ACTIONS(2089), - [anon_sym_BANG_EQ2] = ACTIONS(2089), - [anon_sym_LT2] = ACTIONS(2089), - [anon_sym_LT_EQ2] = ACTIONS(2089), - [anon_sym_GT_EQ2] = ACTIONS(2089), - [anon_sym_EQ_TILDE2] = ACTIONS(2089), - [anon_sym_BANG_TILDE2] = ACTIONS(2089), - [anon_sym_STAR_STAR2] = ACTIONS(2089), - [anon_sym_PLUS_PLUS2] = ACTIONS(2089), - [anon_sym_SLASH2] = ACTIONS(2089), - [anon_sym_mod2] = ACTIONS(2089), - [anon_sym_SLASH_SLASH2] = ACTIONS(2089), - [anon_sym_PLUS2] = ACTIONS(2089), - [anon_sym_bit_DASHshl2] = ACTIONS(2089), - [anon_sym_bit_DASHshr2] = ACTIONS(2089), - [anon_sym_bit_DASHand2] = ACTIONS(2089), - [anon_sym_bit_DASHxor2] = ACTIONS(2089), - [anon_sym_bit_DASHor2] = ACTIONS(2089), - [anon_sym_err_GT] = ACTIONS(2089), - [anon_sym_out_GT] = ACTIONS(2089), - [anon_sym_e_GT] = ACTIONS(2089), - [anon_sym_o_GT] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT] = ACTIONS(2089), - [anon_sym_err_GT_GT] = ACTIONS(2089), - [anon_sym_out_GT_GT] = ACTIONS(2089), - [anon_sym_e_GT_GT] = ACTIONS(2089), - [anon_sym_o_GT_GT] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2089), + [815] = { + [sym_comment] = STATE(815), + [ts_builtin_sym_end] = ACTIONS(2130), + [anon_sym_STAR_STAR] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_mod] = ACTIONS(3116), + [anon_sym_SLASH_SLASH] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3116), + [anon_sym_bit_DASHshl] = ACTIONS(3116), + [anon_sym_bit_DASHshr] = ACTIONS(3116), + [anon_sym_EQ_TILDE] = ACTIONS(3116), + [anon_sym_BANG_TILDE] = ACTIONS(3116), + [anon_sym_bit_DASHand] = ACTIONS(3116), + [anon_sym_bit_DASHxor] = ACTIONS(3116), + [anon_sym_bit_DASHor] = ACTIONS(3116), + [anon_sym_and] = ACTIONS(3116), + [anon_sym_xor] = ACTIONS(3116), + [anon_sym_or] = ACTIONS(3116), + [anon_sym_in] = ACTIONS(3116), + [anon_sym_not_DASHin] = ACTIONS(3116), + [anon_sym_has] = ACTIONS(3116), + [anon_sym_not_DASHhas] = ACTIONS(3116), + [anon_sym_starts_DASHwith] = ACTIONS(3116), + [anon_sym_ends_DASHwith] = ACTIONS(3116), + [anon_sym_EQ_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_EQ] = ACTIONS(3116), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3116), + [aux_sym_cmd_identifier_token41] = ACTIONS(3120), + [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_GT2] = ACTIONS(2128), + [anon_sym_DASH2] = ACTIONS(2128), + [anon_sym_in2] = ACTIONS(2128), + [anon_sym_STAR2] = ACTIONS(2128), + [anon_sym_and2] = ACTIONS(2128), + [anon_sym_xor2] = ACTIONS(2128), + [anon_sym_or2] = ACTIONS(2128), + [anon_sym_not_DASHin2] = ACTIONS(2128), + [anon_sym_has2] = ACTIONS(2128), + [anon_sym_not_DASHhas2] = ACTIONS(2128), + [anon_sym_starts_DASHwith2] = ACTIONS(2128), + [anon_sym_ends_DASHwith2] = ACTIONS(2128), + [anon_sym_EQ_EQ2] = ACTIONS(2128), + [anon_sym_BANG_EQ2] = ACTIONS(2128), + [anon_sym_LT2] = ACTIONS(2128), + [anon_sym_LT_EQ2] = ACTIONS(2128), + [anon_sym_GT_EQ2] = ACTIONS(2128), + [anon_sym_EQ_TILDE2] = ACTIONS(2128), + [anon_sym_BANG_TILDE2] = ACTIONS(2128), + [anon_sym_STAR_STAR2] = ACTIONS(2128), + [anon_sym_PLUS_PLUS2] = ACTIONS(2128), + [anon_sym_SLASH2] = ACTIONS(2128), + [anon_sym_mod2] = ACTIONS(2128), + [anon_sym_SLASH_SLASH2] = ACTIONS(2128), + [anon_sym_PLUS2] = ACTIONS(2128), + [anon_sym_bit_DASHshl2] = ACTIONS(2128), + [anon_sym_bit_DASHshr2] = ACTIONS(2128), + [anon_sym_bit_DASHand2] = ACTIONS(2128), + [anon_sym_bit_DASHxor2] = ACTIONS(2128), + [anon_sym_bit_DASHor2] = ACTIONS(2128), + [anon_sym_err_GT] = ACTIONS(2128), + [anon_sym_out_GT] = ACTIONS(2128), + [anon_sym_e_GT] = ACTIONS(2128), + [anon_sym_o_GT] = ACTIONS(2128), + [anon_sym_err_PLUSout_GT] = ACTIONS(2128), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2128), + [anon_sym_o_PLUSe_GT] = ACTIONS(2128), + [anon_sym_e_PLUSo_GT] = ACTIONS(2128), + [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), [anon_sym_POUND] = ACTIONS(3), }, - [871] = { - [sym_comment] = STATE(871), - [anon_sym_STAR_STAR] = ACTIONS(3110), - [anon_sym_PLUS_PLUS] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_mod] = ACTIONS(3110), - [anon_sym_SLASH_SLASH] = ACTIONS(3110), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3110), - [anon_sym_bit_DASHshl] = ACTIONS(3110), - [anon_sym_bit_DASHshr] = ACTIONS(3110), - [anon_sym_EQ_TILDE] = ACTIONS(3110), - [anon_sym_BANG_TILDE] = ACTIONS(3110), - [anon_sym_bit_DASHand] = ACTIONS(3110), - [anon_sym_bit_DASHxor] = ACTIONS(3110), - [anon_sym_bit_DASHor] = ACTIONS(3110), - [anon_sym_and] = ACTIONS(3110), - [anon_sym_xor] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3110), - [anon_sym_in] = ACTIONS(3110), - [anon_sym_not_DASHin] = ACTIONS(3110), - [anon_sym_has] = ACTIONS(3110), - [anon_sym_not_DASHhas] = ACTIONS(3110), - [anon_sym_starts_DASHwith] = ACTIONS(3110), - [anon_sym_ends_DASHwith] = ACTIONS(3110), - [anon_sym_EQ_EQ] = ACTIONS(3110), - [anon_sym_BANG_EQ] = ACTIONS(3110), - [anon_sym_LT] = ACTIONS(3112), - [anon_sym_LT_EQ] = ACTIONS(3110), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_GT_EQ] = ACTIONS(3110), - [aux_sym_cmd_identifier_token41] = ACTIONS(3114), - [sym__newline] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_err_GT_PIPE] = ACTIONS(2202), - [anon_sym_out_GT_PIPE] = ACTIONS(2202), - [anon_sym_e_GT_PIPE] = ACTIONS(2202), - [anon_sym_o_GT_PIPE] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2202), - [anon_sym_GT2] = ACTIONS(2202), - [anon_sym_DASH2] = ACTIONS(2202), - [anon_sym_in2] = ACTIONS(2202), - [anon_sym_STAR2] = ACTIONS(2202), - [anon_sym_and2] = ACTIONS(2202), - [anon_sym_xor2] = ACTIONS(2202), - [anon_sym_or2] = ACTIONS(2202), - [anon_sym_not_DASHin2] = ACTIONS(2202), - [anon_sym_has2] = ACTIONS(2202), - [anon_sym_not_DASHhas2] = ACTIONS(2202), - [anon_sym_starts_DASHwith2] = ACTIONS(2202), - [anon_sym_ends_DASHwith2] = ACTIONS(2202), - [anon_sym_EQ_EQ2] = ACTIONS(2202), - [anon_sym_BANG_EQ2] = ACTIONS(2202), - [anon_sym_LT2] = ACTIONS(2202), - [anon_sym_LT_EQ2] = ACTIONS(2202), - [anon_sym_GT_EQ2] = ACTIONS(2202), - [anon_sym_EQ_TILDE2] = ACTIONS(2202), - [anon_sym_BANG_TILDE2] = ACTIONS(2202), - [anon_sym_STAR_STAR2] = ACTIONS(2202), - [anon_sym_PLUS_PLUS2] = ACTIONS(2202), - [anon_sym_SLASH2] = ACTIONS(2202), - [anon_sym_mod2] = ACTIONS(2202), - [anon_sym_SLASH_SLASH2] = ACTIONS(2202), - [anon_sym_PLUS2] = ACTIONS(2202), - [anon_sym_bit_DASHshl2] = ACTIONS(2202), - [anon_sym_bit_DASHshr2] = ACTIONS(2202), - [anon_sym_bit_DASHand2] = ACTIONS(2202), - [anon_sym_bit_DASHxor2] = ACTIONS(2202), - [anon_sym_bit_DASHor2] = ACTIONS(2202), - [anon_sym_err_GT] = ACTIONS(2202), - [anon_sym_out_GT] = ACTIONS(2202), - [anon_sym_e_GT] = ACTIONS(2202), - [anon_sym_o_GT] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT] = ACTIONS(2202), - [anon_sym_err_GT_GT] = ACTIONS(2202), - [anon_sym_out_GT_GT] = ACTIONS(2202), - [anon_sym_e_GT_GT] = ACTIONS(2202), - [anon_sym_o_GT_GT] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2202), + [816] = { + [sym_comment] = STATE(816), + [anon_sym_STAR_STAR] = ACTIONS(3122), + [anon_sym_PLUS_PLUS] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_SLASH] = ACTIONS(3124), + [anon_sym_mod] = ACTIONS(3122), + [anon_sym_SLASH_SLASH] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3124), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_bit_DASHshl] = ACTIONS(3122), + [anon_sym_bit_DASHshr] = ACTIONS(3122), + [anon_sym_EQ_TILDE] = ACTIONS(3122), + [anon_sym_BANG_TILDE] = ACTIONS(3122), + [anon_sym_bit_DASHand] = ACTIONS(3122), + [anon_sym_bit_DASHxor] = ACTIONS(3122), + [anon_sym_bit_DASHor] = ACTIONS(3122), + [anon_sym_and] = ACTIONS(3122), + [anon_sym_xor] = ACTIONS(3122), + [anon_sym_or] = ACTIONS(3122), + [anon_sym_in] = ACTIONS(3122), + [anon_sym_not_DASHin] = ACTIONS(3122), + [anon_sym_has] = ACTIONS(3122), + [anon_sym_not_DASHhas] = ACTIONS(3122), + [anon_sym_starts_DASHwith] = ACTIONS(3122), + [anon_sym_ends_DASHwith] = ACTIONS(3122), + [anon_sym_EQ_EQ] = ACTIONS(3122), + [anon_sym_BANG_EQ] = ACTIONS(3122), + [anon_sym_LT] = ACTIONS(3124), + [anon_sym_LT_EQ] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3124), + [anon_sym_GT_EQ] = ACTIONS(3122), + [aux_sym_cmd_identifier_token41] = ACTIONS(3126), + [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_GT2] = ACTIONS(2128), + [anon_sym_DASH2] = ACTIONS(2128), + [anon_sym_in2] = ACTIONS(2128), + [anon_sym_RBRACE] = ACTIONS(2128), + [anon_sym_STAR2] = ACTIONS(2128), + [anon_sym_and2] = ACTIONS(2128), + [anon_sym_xor2] = ACTIONS(2128), + [anon_sym_or2] = ACTIONS(2128), + [anon_sym_not_DASHin2] = ACTIONS(2128), + [anon_sym_has2] = ACTIONS(2128), + [anon_sym_not_DASHhas2] = ACTIONS(2128), + [anon_sym_starts_DASHwith2] = ACTIONS(2128), + [anon_sym_ends_DASHwith2] = ACTIONS(2128), + [anon_sym_EQ_EQ2] = ACTIONS(2128), + [anon_sym_BANG_EQ2] = ACTIONS(2128), + [anon_sym_LT2] = ACTIONS(2128), + [anon_sym_LT_EQ2] = ACTIONS(2128), + [anon_sym_GT_EQ2] = ACTIONS(2128), + [anon_sym_EQ_TILDE2] = ACTIONS(2128), + [anon_sym_BANG_TILDE2] = ACTIONS(2128), + [anon_sym_STAR_STAR2] = ACTIONS(2128), + [anon_sym_PLUS_PLUS2] = ACTIONS(2128), + [anon_sym_SLASH2] = ACTIONS(2128), + [anon_sym_mod2] = ACTIONS(2128), + [anon_sym_SLASH_SLASH2] = ACTIONS(2128), + [anon_sym_PLUS2] = ACTIONS(2128), + [anon_sym_bit_DASHshl2] = ACTIONS(2128), + [anon_sym_bit_DASHshr2] = ACTIONS(2128), + [anon_sym_bit_DASHand2] = ACTIONS(2128), + [anon_sym_bit_DASHxor2] = ACTIONS(2128), + [anon_sym_bit_DASHor2] = ACTIONS(2128), + [anon_sym_err_GT] = ACTIONS(2128), + [anon_sym_out_GT] = ACTIONS(2128), + [anon_sym_e_GT] = ACTIONS(2128), + [anon_sym_o_GT] = ACTIONS(2128), + [anon_sym_err_PLUSout_GT] = ACTIONS(2128), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2128), + [anon_sym_o_PLUSe_GT] = ACTIONS(2128), + [anon_sym_e_PLUSo_GT] = ACTIONS(2128), + [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), [anon_sym_POUND] = ACTIONS(3), }, - [872] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7259), - [sym__spread_list] = STATE(7482), - [sym_val_entry] = STATE(6788), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(872), - [aux_sym_shebang_repeat1] = STATE(2768), - [aux_sym_list_body_repeat1] = STATE(912), - [sym__newline] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [817] = { + [sym_comment] = STATE(817), + [anon_sym_STAR_STAR] = ACTIONS(3122), + [anon_sym_PLUS_PLUS] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_SLASH] = ACTIONS(3124), + [anon_sym_mod] = ACTIONS(3122), + [anon_sym_SLASH_SLASH] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3124), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_bit_DASHshl] = ACTIONS(3122), + [anon_sym_bit_DASHshr] = ACTIONS(3122), + [anon_sym_EQ_TILDE] = ACTIONS(3122), + [anon_sym_BANG_TILDE] = ACTIONS(3122), + [anon_sym_bit_DASHand] = ACTIONS(3122), + [anon_sym_bit_DASHxor] = ACTIONS(3122), + [anon_sym_bit_DASHor] = ACTIONS(3122), + [anon_sym_and] = ACTIONS(3122), + [anon_sym_xor] = ACTIONS(3122), + [anon_sym_or] = ACTIONS(3122), + [anon_sym_in] = ACTIONS(3122), + [anon_sym_not_DASHin] = ACTIONS(3122), + [anon_sym_has] = ACTIONS(3122), + [anon_sym_not_DASHhas] = ACTIONS(3122), + [anon_sym_starts_DASHwith] = ACTIONS(3122), + [anon_sym_ends_DASHwith] = ACTIONS(3122), + [anon_sym_EQ_EQ] = ACTIONS(3122), + [anon_sym_BANG_EQ] = ACTIONS(3122), + [anon_sym_LT] = ACTIONS(3124), + [anon_sym_LT_EQ] = ACTIONS(3122), + [anon_sym_GT] = ACTIONS(3124), + [anon_sym_GT_EQ] = ACTIONS(3122), + [aux_sym_cmd_identifier_token41] = ACTIONS(3126), + [sym__newline] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_err_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_GT_PIPE] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2068), + [anon_sym_GT2] = ACTIONS(2068), + [anon_sym_DASH2] = ACTIONS(2068), + [anon_sym_in2] = ACTIONS(2068), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_STAR2] = ACTIONS(2068), + [anon_sym_and2] = ACTIONS(2068), + [anon_sym_xor2] = ACTIONS(2068), + [anon_sym_or2] = ACTIONS(2068), + [anon_sym_not_DASHin2] = ACTIONS(2068), + [anon_sym_has2] = ACTIONS(2068), + [anon_sym_not_DASHhas2] = ACTIONS(2068), + [anon_sym_starts_DASHwith2] = ACTIONS(2068), + [anon_sym_ends_DASHwith2] = ACTIONS(2068), + [anon_sym_EQ_EQ2] = ACTIONS(2068), + [anon_sym_BANG_EQ2] = ACTIONS(2068), + [anon_sym_LT2] = ACTIONS(2068), + [anon_sym_LT_EQ2] = ACTIONS(2068), + [anon_sym_GT_EQ2] = ACTIONS(2068), + [anon_sym_EQ_TILDE2] = ACTIONS(2068), + [anon_sym_BANG_TILDE2] = ACTIONS(2068), + [anon_sym_STAR_STAR2] = ACTIONS(2068), + [anon_sym_PLUS_PLUS2] = ACTIONS(2068), + [anon_sym_SLASH2] = ACTIONS(2068), + [anon_sym_mod2] = ACTIONS(2068), + [anon_sym_SLASH_SLASH2] = ACTIONS(2068), + [anon_sym_PLUS2] = ACTIONS(2068), + [anon_sym_bit_DASHshl2] = ACTIONS(2068), + [anon_sym_bit_DASHshr2] = ACTIONS(2068), + [anon_sym_bit_DASHand2] = ACTIONS(2068), + [anon_sym_bit_DASHxor2] = ACTIONS(2068), + [anon_sym_bit_DASHor2] = ACTIONS(2068), + [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(2068), + [anon_sym_out_GT_GT] = ACTIONS(2068), + [anon_sym_e_GT_GT] = ACTIONS(2068), + [anon_sym_o_GT_GT] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2068), + [anon_sym_POUND] = ACTIONS(3), }, - [873] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7234), - [sym__spread_list] = STATE(7482), - [sym_val_entry] = STATE(6788), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(873), - [aux_sym_shebang_repeat1] = STATE(2768), - [aux_sym_list_body_repeat1] = STATE(912), - [sym__newline] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), + [818] = { + [sym_expr_parenthesized] = STATE(5880), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(6848), + [sym__val_range] = STATE(7049), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6303), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4993), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6628), + [sym__spread_list] = STATE(6920), + [sym_list_body] = STATE(7021), + [sym_val_entry] = STATE(6647), + [sym_val_record] = STATE(6683), + [sym__table_head] = STATE(5458), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(6280), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6734), + [sym_comment] = STATE(818), + [aux_sym_shebang_repeat1] = STATE(836), + [aux_sym_parameter_repeat2] = STATE(6308), + [aux_sym_list_body_repeat1] = STATE(872), + [sym__newline] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_RBRACK] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3052), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_LT] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [aux_sym__val_number_decimal_token1] = ACTIONS(3060), + [aux_sym__val_number_decimal_token2] = ACTIONS(3062), + [aux_sym__val_number_decimal_token3] = ACTIONS(3064), + [aux_sym__val_number_decimal_token4] = ACTIONS(3066), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3070), + [aux_sym__val_number_token5] = ACTIONS(3070), + [aux_sym__val_number_token6] = ACTIONS(3070), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2528), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), }, - [874] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(6785), - [sym__spread_list] = STATE(7482), - [sym_val_entry] = STATE(6788), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(874), - [aux_sym_shebang_repeat1] = STATE(2768), - [aux_sym_list_body_repeat1] = STATE(912), - [sym__newline] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), + [819] = { + [sym_expr_parenthesized] = STATE(5880), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(6848), + [sym__val_range] = STATE(7049), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6303), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4993), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6628), + [sym__spread_list] = STATE(6920), + [sym_list_body] = STATE(7209), + [sym_val_entry] = STATE(6647), + [sym_val_record] = STATE(6683), + [sym__table_head] = STATE(5596), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(6280), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6734), + [sym_comment] = STATE(819), + [aux_sym_shebang_repeat1] = STATE(836), + [aux_sym_parameter_repeat2] = STATE(6308), + [aux_sym_list_body_repeat1] = STATE(872), + [sym__newline] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_RBRACK] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3052), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_LT] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [aux_sym__val_number_decimal_token1] = ACTIONS(3060), + [aux_sym__val_number_decimal_token2] = ACTIONS(3062), + [aux_sym__val_number_decimal_token3] = ACTIONS(3064), + [aux_sym__val_number_decimal_token4] = ACTIONS(3066), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3070), + [aux_sym__val_number_token5] = ACTIONS(3070), + [aux_sym__val_number_token6] = ACTIONS(3070), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2528), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), }, - [875] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7132), - [sym__spread_list] = STATE(7482), - [sym_val_entry] = STATE(6788), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(875), - [aux_sym_shebang_repeat1] = STATE(2768), - [aux_sym_list_body_repeat1] = STATE(912), - [sym__newline] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), + [820] = { + [sym_expr_parenthesized] = STATE(5880), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(6848), + [sym__val_range] = STATE(7049), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6303), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4993), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6628), + [sym__spread_list] = STATE(6920), + [sym_list_body] = STATE(7042), + [sym_val_entry] = STATE(6647), + [sym_val_record] = STATE(6683), + [sym__table_head] = STATE(5629), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(6280), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6734), + [sym_comment] = STATE(820), + [aux_sym_shebang_repeat1] = STATE(836), + [aux_sym_parameter_repeat2] = STATE(6308), + [aux_sym_list_body_repeat1] = STATE(872), + [sym__newline] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_RBRACK] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3052), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_LT] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [aux_sym__val_number_decimal_token1] = ACTIONS(3060), + [aux_sym__val_number_decimal_token2] = ACTIONS(3062), + [aux_sym__val_number_decimal_token3] = ACTIONS(3064), + [aux_sym__val_number_decimal_token4] = ACTIONS(3066), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3070), + [aux_sym__val_number_token5] = ACTIONS(3070), + [aux_sym__val_number_token6] = ACTIONS(3070), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2528), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), }, - [876] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7208), - [sym__spread_list] = STATE(7482), - [sym_val_entry] = STATE(6788), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(876), - [aux_sym_shebang_repeat1] = STATE(2768), - [aux_sym_list_body_repeat1] = STATE(912), - [sym__newline] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), + [821] = { + [sym_expr_parenthesized] = STATE(5880), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(6848), + [sym__val_range] = STATE(7049), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6303), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4993), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6628), + [sym__spread_list] = STATE(6920), + [sym_list_body] = STATE(7292), + [sym_val_entry] = STATE(6647), + [sym_val_record] = STATE(6683), + [sym__table_head] = STATE(5551), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(6280), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6734), + [sym_comment] = STATE(821), + [aux_sym_shebang_repeat1] = STATE(836), + [aux_sym_parameter_repeat2] = STATE(6308), + [aux_sym_list_body_repeat1] = STATE(872), + [sym__newline] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_RBRACK] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3052), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_LT] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [aux_sym__val_number_decimal_token1] = ACTIONS(3060), + [aux_sym__val_number_decimal_token2] = ACTIONS(3062), + [aux_sym__val_number_decimal_token3] = ACTIONS(3064), + [aux_sym__val_number_decimal_token4] = ACTIONS(3066), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3070), + [aux_sym__val_number_token5] = ACTIONS(3070), + [aux_sym__val_number_token6] = ACTIONS(3070), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2528), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), }, - [877] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7241), - [sym__spread_list] = STATE(7482), - [sym_val_entry] = STATE(6788), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(877), - [aux_sym_shebang_repeat1] = STATE(2768), - [aux_sym_list_body_repeat1] = STATE(912), - [sym__newline] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [822] = { + [sym_comment] = STATE(822), + [anon_sym_STAR_STAR] = ACTIONS(3096), + [anon_sym_PLUS_PLUS] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_mod] = ACTIONS(3096), + [anon_sym_SLASH_SLASH] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3098), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_bit_DASHshl] = ACTIONS(3096), + [anon_sym_bit_DASHshr] = ACTIONS(3096), + [anon_sym_EQ_TILDE] = ACTIONS(3096), + [anon_sym_BANG_TILDE] = ACTIONS(3096), + [anon_sym_bit_DASHand] = ACTIONS(3096), + [anon_sym_bit_DASHxor] = ACTIONS(3096), + [anon_sym_bit_DASHor] = ACTIONS(3096), + [anon_sym_and] = ACTIONS(3096), + [anon_sym_xor] = ACTIONS(3096), + [anon_sym_or] = ACTIONS(3096), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_not_DASHin] = ACTIONS(3096), + [anon_sym_has] = ACTIONS(3096), + [anon_sym_not_DASHhas] = ACTIONS(3096), + [anon_sym_starts_DASHwith] = ACTIONS(3096), + [anon_sym_ends_DASHwith] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3096), + [aux_sym_cmd_identifier_token41] = ACTIONS(3100), + [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_GT2] = ACTIONS(2128), + [anon_sym_DASH2] = ACTIONS(2128), + [anon_sym_in2] = ACTIONS(2128), + [anon_sym_RBRACE] = ACTIONS(2128), + [anon_sym_STAR2] = ACTIONS(2128), + [anon_sym_and2] = ACTIONS(2128), + [anon_sym_xor2] = ACTIONS(2128), + [anon_sym_or2] = ACTIONS(2128), + [anon_sym_not_DASHin2] = ACTIONS(2128), + [anon_sym_has2] = ACTIONS(2128), + [anon_sym_not_DASHhas2] = ACTIONS(2128), + [anon_sym_starts_DASHwith2] = ACTIONS(2128), + [anon_sym_ends_DASHwith2] = ACTIONS(2128), + [anon_sym_EQ_EQ2] = ACTIONS(2128), + [anon_sym_BANG_EQ2] = ACTIONS(2128), + [anon_sym_LT2] = ACTIONS(2128), + [anon_sym_LT_EQ2] = ACTIONS(2128), + [anon_sym_GT_EQ2] = ACTIONS(2128), + [anon_sym_EQ_TILDE2] = ACTIONS(2128), + [anon_sym_BANG_TILDE2] = ACTIONS(2128), + [anon_sym_STAR_STAR2] = ACTIONS(2128), + [anon_sym_PLUS_PLUS2] = ACTIONS(2128), + [anon_sym_SLASH2] = ACTIONS(2128), + [anon_sym_mod2] = ACTIONS(2128), + [anon_sym_SLASH_SLASH2] = ACTIONS(2128), + [anon_sym_PLUS2] = ACTIONS(2128), + [anon_sym_bit_DASHshl2] = ACTIONS(2128), + [anon_sym_bit_DASHshr2] = ACTIONS(2128), + [anon_sym_bit_DASHand2] = ACTIONS(2128), + [anon_sym_bit_DASHxor2] = ACTIONS(2128), + [anon_sym_bit_DASHor2] = ACTIONS(2128), + [anon_sym_err_GT] = ACTIONS(2128), + [anon_sym_out_GT] = ACTIONS(2128), + [anon_sym_e_GT] = ACTIONS(2128), + [anon_sym_o_GT] = ACTIONS(2128), + [anon_sym_err_PLUSout_GT] = ACTIONS(2128), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2128), + [anon_sym_o_PLUSe_GT] = ACTIONS(2128), + [anon_sym_e_PLUSo_GT] = ACTIONS(2128), + [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), + [anon_sym_POUND] = ACTIONS(3), }, - [878] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7251), - [sym__spread_list] = STATE(7482), - [sym_val_entry] = STATE(6788), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(878), - [aux_sym_shebang_repeat1] = STATE(2768), - [aux_sym_list_body_repeat1] = STATE(912), - [sym__newline] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [823] = { + [sym_comment] = STATE(823), + [ts_builtin_sym_end] = ACTIONS(2072), + [anon_sym_STAR_STAR] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_mod] = ACTIONS(3116), + [anon_sym_SLASH_SLASH] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3116), + [anon_sym_bit_DASHshl] = ACTIONS(3116), + [anon_sym_bit_DASHshr] = ACTIONS(3116), + [anon_sym_EQ_TILDE] = ACTIONS(3116), + [anon_sym_BANG_TILDE] = ACTIONS(3116), + [anon_sym_bit_DASHand] = ACTIONS(3116), + [anon_sym_bit_DASHxor] = ACTIONS(3116), + [anon_sym_bit_DASHor] = ACTIONS(3116), + [anon_sym_and] = ACTIONS(3116), + [anon_sym_xor] = ACTIONS(3116), + [anon_sym_or] = ACTIONS(3116), + [anon_sym_in] = ACTIONS(3116), + [anon_sym_not_DASHin] = ACTIONS(3116), + [anon_sym_has] = ACTIONS(3116), + [anon_sym_not_DASHhas] = ACTIONS(3116), + [anon_sym_starts_DASHwith] = ACTIONS(3116), + [anon_sym_ends_DASHwith] = ACTIONS(3116), + [anon_sym_EQ_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_EQ] = ACTIONS(3116), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3116), + [aux_sym_cmd_identifier_token41] = ACTIONS(3120), + [sym__newline] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_err_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_GT_PIPE] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2068), + [anon_sym_GT2] = ACTIONS(2068), + [anon_sym_DASH2] = ACTIONS(2068), + [anon_sym_in2] = ACTIONS(2068), + [anon_sym_STAR2] = ACTIONS(2068), + [anon_sym_and2] = ACTIONS(2068), + [anon_sym_xor2] = ACTIONS(2068), + [anon_sym_or2] = ACTIONS(2068), + [anon_sym_not_DASHin2] = ACTIONS(2068), + [anon_sym_has2] = ACTIONS(2068), + [anon_sym_not_DASHhas2] = ACTIONS(2068), + [anon_sym_starts_DASHwith2] = ACTIONS(2068), + [anon_sym_ends_DASHwith2] = ACTIONS(2068), + [anon_sym_EQ_EQ2] = ACTIONS(2068), + [anon_sym_BANG_EQ2] = ACTIONS(2068), + [anon_sym_LT2] = ACTIONS(2068), + [anon_sym_LT_EQ2] = ACTIONS(2068), + [anon_sym_GT_EQ2] = ACTIONS(2068), + [anon_sym_EQ_TILDE2] = ACTIONS(2068), + [anon_sym_BANG_TILDE2] = ACTIONS(2068), + [anon_sym_STAR_STAR2] = ACTIONS(2068), + [anon_sym_PLUS_PLUS2] = ACTIONS(2068), + [anon_sym_SLASH2] = ACTIONS(2068), + [anon_sym_mod2] = ACTIONS(2068), + [anon_sym_SLASH_SLASH2] = ACTIONS(2068), + [anon_sym_PLUS2] = ACTIONS(2068), + [anon_sym_bit_DASHshl2] = ACTIONS(2068), + [anon_sym_bit_DASHshr2] = ACTIONS(2068), + [anon_sym_bit_DASHand2] = ACTIONS(2068), + [anon_sym_bit_DASHxor2] = ACTIONS(2068), + [anon_sym_bit_DASHor2] = ACTIONS(2068), + [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(2068), + [anon_sym_out_GT_GT] = ACTIONS(2068), + [anon_sym_e_GT_GT] = ACTIONS(2068), + [anon_sym_o_GT_GT] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2068), + [anon_sym_POUND] = ACTIONS(3), }, - [879] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7346), - [sym__spread_list] = STATE(7482), - [sym_val_entry] = STATE(6788), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(879), - [aux_sym_shebang_repeat1] = STATE(2768), - [aux_sym_list_body_repeat1] = STATE(912), - [sym__newline] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), + [824] = { + [sym_expr_parenthesized] = STATE(5880), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(6848), + [sym__val_range] = STATE(7049), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6303), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4993), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6683), + [sym__spread_list] = STATE(6920), + [sym_list_body] = STATE(7075), + [sym_val_entry] = STATE(6647), + [sym_val_record] = STATE(6683), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(6280), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6734), + [sym_comment] = STATE(824), + [aux_sym_shebang_repeat1] = STATE(837), + [aux_sym_parameter_repeat2] = STATE(6308), + [aux_sym_list_body_repeat1] = STATE(872), + [sym__newline] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(3136), + [anon_sym_RBRACK] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3052), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_LT] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [aux_sym__val_number_decimal_token1] = ACTIONS(3060), + [aux_sym__val_number_decimal_token2] = ACTIONS(3062), + [aux_sym__val_number_decimal_token3] = ACTIONS(3064), + [aux_sym__val_number_decimal_token4] = ACTIONS(3066), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3070), + [aux_sym__val_number_token5] = ACTIONS(3070), + [aux_sym__val_number_token6] = ACTIONS(3070), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2528), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), }, - [880] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7266), - [sym__spread_list] = STATE(7482), - [sym_val_entry] = STATE(6788), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(880), - [aux_sym_shebang_repeat1] = STATE(2768), - [aux_sym_list_body_repeat1] = STATE(912), - [sym__newline] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), + [825] = { + [sym_expr_parenthesized] = STATE(5880), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(6848), + [sym__val_range] = STATE(7049), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6303), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4993), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6683), + [sym__spread_list] = STATE(6920), + [sym_list_body] = STATE(7042), + [sym_val_entry] = STATE(6647), + [sym_val_record] = STATE(6683), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(6280), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6734), + [sym_comment] = STATE(825), + [aux_sym_shebang_repeat1] = STATE(837), + [aux_sym_parameter_repeat2] = STATE(6308), + [aux_sym_list_body_repeat1] = STATE(872), + [sym__newline] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(3136), + [anon_sym_RBRACK] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3052), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_LT] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [aux_sym__val_number_decimal_token1] = ACTIONS(3060), + [aux_sym__val_number_decimal_token2] = ACTIONS(3062), + [aux_sym__val_number_decimal_token3] = ACTIONS(3064), + [aux_sym__val_number_decimal_token4] = ACTIONS(3066), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3070), + [aux_sym__val_number_token5] = ACTIONS(3070), + [aux_sym__val_number_token6] = ACTIONS(3070), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2528), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), }, - [881] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7273), - [sym__spread_list] = STATE(7482), - [sym_val_entry] = STATE(6788), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(881), - [aux_sym_shebang_repeat1] = STATE(2768), - [aux_sym_list_body_repeat1] = STATE(912), - [sym__newline] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), + [826] = { + [sym_expr_parenthesized] = STATE(5880), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(6848), + [sym__val_range] = STATE(7049), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6303), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4993), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6683), + [sym__spread_list] = STATE(6920), + [sym_list_body] = STATE(6989), + [sym_val_entry] = STATE(6647), + [sym_val_record] = STATE(6683), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(6280), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6734), + [sym_comment] = STATE(826), + [aux_sym_shebang_repeat1] = STATE(837), + [aux_sym_parameter_repeat2] = STATE(6308), + [aux_sym_list_body_repeat1] = STATE(872), + [sym__newline] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(3136), + [anon_sym_RBRACK] = ACTIONS(3140), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3052), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_LT] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [aux_sym__val_number_decimal_token1] = ACTIONS(3060), + [aux_sym__val_number_decimal_token2] = ACTIONS(3062), + [aux_sym__val_number_decimal_token3] = ACTIONS(3064), + [aux_sym__val_number_decimal_token4] = ACTIONS(3066), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3070), + [aux_sym__val_number_token5] = ACTIONS(3070), + [aux_sym__val_number_token6] = ACTIONS(3070), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2528), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), }, - [882] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7281), - [sym__spread_list] = STATE(7482), - [sym_val_entry] = STATE(6788), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(882), - [aux_sym_shebang_repeat1] = STATE(2768), - [aux_sym_list_body_repeat1] = STATE(912), - [sym__newline] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [827] = { + [sym_comment] = STATE(827), + [anon_sym_STAR_STAR] = ACTIONS(3096), + [anon_sym_PLUS_PLUS] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_mod] = ACTIONS(3096), + [anon_sym_SLASH_SLASH] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3098), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_bit_DASHshl] = ACTIONS(3096), + [anon_sym_bit_DASHshr] = ACTIONS(3096), + [anon_sym_EQ_TILDE] = ACTIONS(3096), + [anon_sym_BANG_TILDE] = ACTIONS(3096), + [anon_sym_bit_DASHand] = ACTIONS(3096), + [anon_sym_bit_DASHxor] = ACTIONS(3096), + [anon_sym_bit_DASHor] = ACTIONS(3096), + [anon_sym_and] = ACTIONS(3096), + [anon_sym_xor] = ACTIONS(3096), + [anon_sym_or] = ACTIONS(3096), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_not_DASHin] = ACTIONS(3096), + [anon_sym_has] = ACTIONS(3096), + [anon_sym_not_DASHhas] = ACTIONS(3096), + [anon_sym_starts_DASHwith] = ACTIONS(3096), + [anon_sym_ends_DASHwith] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3096), + [aux_sym_cmd_identifier_token41] = ACTIONS(3100), + [sym__newline] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_err_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_GT_PIPE] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2068), + [anon_sym_GT2] = ACTIONS(2068), + [anon_sym_DASH2] = ACTIONS(2068), + [anon_sym_in2] = ACTIONS(2068), + [anon_sym_STAR2] = ACTIONS(2068), + [anon_sym_and2] = ACTIONS(2068), + [anon_sym_xor2] = ACTIONS(2068), + [anon_sym_or2] = ACTIONS(2068), + [anon_sym_not_DASHin2] = ACTIONS(2068), + [anon_sym_has2] = ACTIONS(2068), + [anon_sym_not_DASHhas2] = ACTIONS(2068), + [anon_sym_starts_DASHwith2] = ACTIONS(2068), + [anon_sym_ends_DASHwith2] = ACTIONS(2068), + [anon_sym_EQ_EQ2] = ACTIONS(2068), + [anon_sym_BANG_EQ2] = ACTIONS(2068), + [anon_sym_LT2] = ACTIONS(2068), + [anon_sym_LT_EQ2] = ACTIONS(2068), + [anon_sym_GT_EQ2] = ACTIONS(2068), + [anon_sym_EQ_TILDE2] = ACTIONS(2068), + [anon_sym_BANG_TILDE2] = ACTIONS(2068), + [anon_sym_STAR_STAR2] = ACTIONS(2068), + [anon_sym_PLUS_PLUS2] = ACTIONS(2068), + [anon_sym_SLASH2] = ACTIONS(2068), + [anon_sym_mod2] = ACTIONS(2068), + [anon_sym_SLASH_SLASH2] = ACTIONS(2068), + [anon_sym_PLUS2] = ACTIONS(2068), + [anon_sym_bit_DASHshl2] = ACTIONS(2068), + [anon_sym_bit_DASHshr2] = ACTIONS(2068), + [anon_sym_bit_DASHand2] = ACTIONS(2068), + [anon_sym_bit_DASHxor2] = ACTIONS(2068), + [anon_sym_bit_DASHor2] = ACTIONS(2068), + [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(2068), + [anon_sym_out_GT_GT] = ACTIONS(2068), + [anon_sym_e_GT_GT] = ACTIONS(2068), + [anon_sym_o_GT_GT] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2068), + [anon_sym_POUND] = ACTIONS(3), }, - [883] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7289), - [sym__spread_list] = STATE(7482), - [sym_val_entry] = STATE(6788), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(883), - [aux_sym_shebang_repeat1] = STATE(2768), - [aux_sym_list_body_repeat1] = STATE(912), - [sym__newline] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), + [828] = { + [sym_expr_parenthesized] = STATE(5880), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(6848), + [sym__val_range] = STATE(7049), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6303), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4993), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6683), + [sym__spread_list] = STATE(6920), + [sym_list_body] = STATE(7350), + [sym_val_entry] = STATE(6647), + [sym_val_record] = STATE(6683), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(6280), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6734), + [sym_comment] = STATE(828), + [aux_sym_shebang_repeat1] = STATE(837), + [aux_sym_parameter_repeat2] = STATE(6308), + [aux_sym_list_body_repeat1] = STATE(872), + [sym__newline] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(3136), + [anon_sym_RBRACK] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3052), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_LT] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [aux_sym__val_number_decimal_token1] = ACTIONS(3060), + [aux_sym__val_number_decimal_token2] = ACTIONS(3062), + [aux_sym__val_number_decimal_token3] = ACTIONS(3064), + [aux_sym__val_number_decimal_token4] = ACTIONS(3066), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3070), + [aux_sym__val_number_token5] = ACTIONS(3070), + [aux_sym__val_number_token6] = ACTIONS(3070), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2528), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), }, - [884] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7297), - [sym__spread_list] = STATE(7482), - [sym_val_entry] = STATE(6788), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(884), - [aux_sym_shebang_repeat1] = STATE(2768), - [aux_sym_list_body_repeat1] = STATE(912), - [sym__newline] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), + [829] = { + [sym_expr_parenthesized] = STATE(5880), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(6848), + [sym__val_range] = STATE(7049), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6303), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4993), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6683), + [sym__spread_list] = STATE(6920), + [sym_list_body] = STATE(7167), + [sym_val_entry] = STATE(6647), + [sym_val_record] = STATE(6683), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(6280), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6734), + [sym_comment] = STATE(829), + [aux_sym_shebang_repeat1] = STATE(837), + [aux_sym_parameter_repeat2] = STATE(6308), + [aux_sym_list_body_repeat1] = STATE(872), + [sym__newline] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(3136), + [anon_sym_RBRACK] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3052), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_LT] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [aux_sym__val_number_decimal_token1] = ACTIONS(3060), + [aux_sym__val_number_decimal_token2] = ACTIONS(3062), + [aux_sym__val_number_decimal_token3] = ACTIONS(3064), + [aux_sym__val_number_decimal_token4] = ACTIONS(3066), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3070), + [aux_sym__val_number_token5] = ACTIONS(3070), + [aux_sym__val_number_token6] = ACTIONS(3070), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2528), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), }, - [885] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7307), - [sym__spread_list] = STATE(7482), - [sym_val_entry] = STATE(6788), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(885), - [aux_sym_shebang_repeat1] = STATE(2768), - [aux_sym_list_body_repeat1] = STATE(912), - [sym__newline] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [830] = { + [sym_comment] = STATE(830), + [anon_sym_STAR_STAR] = ACTIONS(3096), + [anon_sym_PLUS_PLUS] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_mod] = ACTIONS(3096), + [anon_sym_SLASH_SLASH] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3098), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_bit_DASHshl] = ACTIONS(3096), + [anon_sym_bit_DASHshr] = ACTIONS(3096), + [anon_sym_EQ_TILDE] = ACTIONS(3096), + [anon_sym_BANG_TILDE] = ACTIONS(3096), + [anon_sym_bit_DASHand] = ACTIONS(3096), + [anon_sym_bit_DASHxor] = ACTIONS(3096), + [anon_sym_bit_DASHor] = ACTIONS(3096), + [anon_sym_and] = ACTIONS(3096), + [anon_sym_xor] = ACTIONS(3096), + [anon_sym_or] = ACTIONS(3096), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_not_DASHin] = ACTIONS(3096), + [anon_sym_has] = ACTIONS(3096), + [anon_sym_not_DASHhas] = ACTIONS(3096), + [anon_sym_starts_DASHwith] = ACTIONS(3096), + [anon_sym_ends_DASHwith] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3096), + [aux_sym_cmd_identifier_token41] = ACTIONS(3100), + [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_GT2] = ACTIONS(2128), + [anon_sym_DASH2] = ACTIONS(2128), + [anon_sym_in2] = ACTIONS(2128), + [anon_sym_STAR2] = ACTIONS(2128), + [anon_sym_and2] = ACTIONS(2128), + [anon_sym_xor2] = ACTIONS(2128), + [anon_sym_or2] = ACTIONS(2128), + [anon_sym_not_DASHin2] = ACTIONS(2128), + [anon_sym_has2] = ACTIONS(2128), + [anon_sym_not_DASHhas2] = ACTIONS(2128), + [anon_sym_starts_DASHwith2] = ACTIONS(2128), + [anon_sym_ends_DASHwith2] = ACTIONS(2128), + [anon_sym_EQ_EQ2] = ACTIONS(2128), + [anon_sym_BANG_EQ2] = ACTIONS(2128), + [anon_sym_LT2] = ACTIONS(2128), + [anon_sym_LT_EQ2] = ACTIONS(2128), + [anon_sym_GT_EQ2] = ACTIONS(2128), + [anon_sym_EQ_TILDE2] = ACTIONS(2128), + [anon_sym_BANG_TILDE2] = ACTIONS(2128), + [anon_sym_STAR_STAR2] = ACTIONS(2128), + [anon_sym_PLUS_PLUS2] = ACTIONS(2128), + [anon_sym_SLASH2] = ACTIONS(2128), + [anon_sym_mod2] = ACTIONS(2128), + [anon_sym_SLASH_SLASH2] = ACTIONS(2128), + [anon_sym_PLUS2] = ACTIONS(2128), + [anon_sym_bit_DASHshl2] = ACTIONS(2128), + [anon_sym_bit_DASHshr2] = ACTIONS(2128), + [anon_sym_bit_DASHand2] = ACTIONS(2128), + [anon_sym_bit_DASHxor2] = ACTIONS(2128), + [anon_sym_bit_DASHor2] = ACTIONS(2128), + [anon_sym_err_GT] = ACTIONS(2128), + [anon_sym_out_GT] = ACTIONS(2128), + [anon_sym_e_GT] = ACTIONS(2128), + [anon_sym_o_GT] = ACTIONS(2128), + [anon_sym_err_PLUSout_GT] = ACTIONS(2128), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2128), + [anon_sym_o_PLUSe_GT] = ACTIONS(2128), + [anon_sym_e_PLUSo_GT] = ACTIONS(2128), + [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), + [anon_sym_POUND] = ACTIONS(3), }, - [886] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7314), - [sym__spread_list] = STATE(7482), - [sym_val_entry] = STATE(6788), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(886), - [aux_sym_shebang_repeat1] = STATE(2768), - [aux_sym_list_body_repeat1] = STATE(912), - [sym__newline] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), + [831] = { + [sym_expr_parenthesized] = STATE(5880), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(6848), + [sym__val_range] = STATE(7049), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6303), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4993), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6683), + [sym__spread_list] = STATE(6920), + [sym_list_body] = STATE(7097), + [sym_val_entry] = STATE(6647), + [sym_val_record] = STATE(6683), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(6280), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6734), + [sym_comment] = STATE(831), + [aux_sym_shebang_repeat1] = STATE(837), + [aux_sym_parameter_repeat2] = STATE(6308), + [aux_sym_list_body_repeat1] = STATE(872), + [sym__newline] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(3136), + [anon_sym_RBRACK] = ACTIONS(3044), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3052), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_LT] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [aux_sym__val_number_decimal_token1] = ACTIONS(3060), + [aux_sym__val_number_decimal_token2] = ACTIONS(3062), + [aux_sym__val_number_decimal_token3] = ACTIONS(3064), + [aux_sym__val_number_decimal_token4] = ACTIONS(3066), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3070), + [aux_sym__val_number_token5] = ACTIONS(3070), + [aux_sym__val_number_token6] = ACTIONS(3070), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2528), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), }, - [887] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7320), - [sym__spread_list] = STATE(7482), - [sym_val_entry] = STATE(6788), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(887), - [aux_sym_shebang_repeat1] = STATE(2768), - [aux_sym_list_body_repeat1] = STATE(912), - [sym__newline] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), + [832] = { + [sym_expr_parenthesized] = STATE(5880), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(6848), + [sym__val_range] = STATE(7049), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6303), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4993), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6683), + [sym__spread_list] = STATE(6920), + [sym_list_body] = STATE(7113), + [sym_val_entry] = STATE(6647), + [sym_val_record] = STATE(6683), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(6280), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6734), + [sym_comment] = STATE(832), + [aux_sym_shebang_repeat1] = STATE(837), + [aux_sym_parameter_repeat2] = STATE(6308), + [aux_sym_list_body_repeat1] = STATE(872), + [sym__newline] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(3136), + [anon_sym_RBRACK] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3052), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_LT] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [aux_sym__val_number_decimal_token1] = ACTIONS(3060), + [aux_sym__val_number_decimal_token2] = ACTIONS(3062), + [aux_sym__val_number_decimal_token3] = ACTIONS(3064), + [aux_sym__val_number_decimal_token4] = ACTIONS(3066), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3070), + [aux_sym__val_number_token5] = ACTIONS(3070), + [aux_sym__val_number_token6] = ACTIONS(3070), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2528), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), }, - [888] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7327), - [sym__spread_list] = STATE(7482), - [sym_val_entry] = STATE(6788), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(888), - [aux_sym_shebang_repeat1] = STATE(2768), - [aux_sym_list_body_repeat1] = STATE(912), - [sym__newline] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), + [833] = { + [sym_expr_parenthesized] = STATE(5880), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(6848), + [sym__val_range] = STATE(7049), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6303), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4993), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6683), + [sym__spread_list] = STATE(6920), + [sym_list_body] = STATE(7087), + [sym_val_entry] = STATE(6647), + [sym_val_record] = STATE(6683), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(6280), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6734), + [sym_comment] = STATE(833), + [aux_sym_shebang_repeat1] = STATE(837), + [aux_sym_parameter_repeat2] = STATE(6308), + [aux_sym_list_body_repeat1] = STATE(872), + [sym__newline] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(3136), + [anon_sym_RBRACK] = ACTIONS(3144), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3052), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_LT] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [aux_sym__val_number_decimal_token1] = ACTIONS(3060), + [aux_sym__val_number_decimal_token2] = ACTIONS(3062), + [aux_sym__val_number_decimal_token3] = ACTIONS(3064), + [aux_sym__val_number_decimal_token4] = ACTIONS(3066), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3070), + [aux_sym__val_number_token5] = ACTIONS(3070), + [aux_sym__val_number_token6] = ACTIONS(3070), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2528), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), }, - [889] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7334), - [sym__spread_list] = STATE(7482), - [sym_val_entry] = STATE(6788), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(889), - [aux_sym_shebang_repeat1] = STATE(2768), - [aux_sym_list_body_repeat1] = STATE(912), - [sym__newline] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), + [834] = { + [sym_comment] = STATE(834), + [anon_sym_STAR_STAR] = ACTIONS(3096), + [anon_sym_PLUS_PLUS] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_mod] = ACTIONS(3096), + [anon_sym_SLASH_SLASH] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3098), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_bit_DASHshl] = ACTIONS(3096), + [anon_sym_bit_DASHshr] = ACTIONS(3096), + [anon_sym_EQ_TILDE] = ACTIONS(3096), + [anon_sym_BANG_TILDE] = ACTIONS(3096), + [anon_sym_bit_DASHand] = ACTIONS(3096), + [anon_sym_bit_DASHxor] = ACTIONS(3096), + [anon_sym_bit_DASHor] = ACTIONS(3096), + [anon_sym_and] = ACTIONS(3096), + [anon_sym_xor] = ACTIONS(3096), + [anon_sym_or] = ACTIONS(3096), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_not_DASHin] = ACTIONS(3096), + [anon_sym_has] = ACTIONS(3096), + [anon_sym_not_DASHhas] = ACTIONS(3096), + [anon_sym_starts_DASHwith] = ACTIONS(3096), + [anon_sym_ends_DASHwith] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3096), + [aux_sym_cmd_identifier_token41] = ACTIONS(3100), + [sym__newline] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_err_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_GT_PIPE] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2068), + [anon_sym_GT2] = ACTIONS(2068), + [anon_sym_DASH2] = ACTIONS(2068), + [anon_sym_in2] = ACTIONS(2068), + [anon_sym_STAR2] = ACTIONS(2068), + [anon_sym_and2] = ACTIONS(2068), + [anon_sym_xor2] = ACTIONS(2068), + [anon_sym_or2] = ACTIONS(2068), + [anon_sym_not_DASHin2] = ACTIONS(2068), + [anon_sym_has2] = ACTIONS(2068), + [anon_sym_not_DASHhas2] = ACTIONS(2068), + [anon_sym_starts_DASHwith2] = ACTIONS(2068), + [anon_sym_ends_DASHwith2] = ACTIONS(2068), + [anon_sym_EQ_EQ2] = ACTIONS(2068), + [anon_sym_BANG_EQ2] = ACTIONS(2068), + [anon_sym_LT2] = ACTIONS(2068), + [anon_sym_LT_EQ2] = ACTIONS(2068), + [anon_sym_GT_EQ2] = ACTIONS(2068), + [anon_sym_EQ_TILDE2] = ACTIONS(2068), + [anon_sym_BANG_TILDE2] = ACTIONS(2068), + [anon_sym_STAR_STAR2] = ACTIONS(2068), + [anon_sym_PLUS_PLUS2] = ACTIONS(2068), + [anon_sym_SLASH2] = ACTIONS(2068), + [anon_sym_mod2] = ACTIONS(2068), + [anon_sym_SLASH_SLASH2] = ACTIONS(2068), + [anon_sym_PLUS2] = ACTIONS(2068), + [anon_sym_bit_DASHshl2] = ACTIONS(2068), + [anon_sym_bit_DASHshr2] = ACTIONS(2068), + [anon_sym_bit_DASHand2] = ACTIONS(2068), + [anon_sym_bit_DASHxor2] = ACTIONS(2068), + [anon_sym_bit_DASHor2] = ACTIONS(2068), + [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(2068), + [anon_sym_out_GT_GT] = ACTIONS(2068), + [anon_sym_e_GT_GT] = ACTIONS(2068), + [anon_sym_o_GT_GT] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2068), + [anon_sym_POUND] = ACTIONS(3), + }, + [835] = { + [sym_comment] = STATE(835), + [anon_sym_STAR_STAR] = ACTIONS(3096), + [anon_sym_PLUS_PLUS] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_mod] = ACTIONS(3096), + [anon_sym_SLASH_SLASH] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3098), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_bit_DASHshl] = ACTIONS(3096), + [anon_sym_bit_DASHshr] = ACTIONS(3096), + [anon_sym_EQ_TILDE] = ACTIONS(3096), + [anon_sym_BANG_TILDE] = ACTIONS(3096), + [anon_sym_bit_DASHand] = ACTIONS(3096), + [anon_sym_bit_DASHxor] = ACTIONS(3096), + [anon_sym_bit_DASHor] = ACTIONS(3096), + [anon_sym_and] = ACTIONS(3096), + [anon_sym_xor] = ACTIONS(3096), + [anon_sym_or] = ACTIONS(3096), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_not_DASHin] = ACTIONS(3096), + [anon_sym_has] = ACTIONS(3096), + [anon_sym_not_DASHhas] = ACTIONS(3096), + [anon_sym_starts_DASHwith] = ACTIONS(3096), + [anon_sym_ends_DASHwith] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3096), + [aux_sym_cmd_identifier_token41] = ACTIONS(3100), + [sym__newline] = 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_GT2] = ACTIONS(2128), + [anon_sym_DASH2] = ACTIONS(2128), + [anon_sym_in2] = ACTIONS(2128), + [anon_sym_STAR2] = ACTIONS(2128), + [anon_sym_and2] = ACTIONS(2128), + [anon_sym_xor2] = ACTIONS(2128), + [anon_sym_or2] = ACTIONS(2128), + [anon_sym_not_DASHin2] = ACTIONS(2128), + [anon_sym_has2] = ACTIONS(2128), + [anon_sym_not_DASHhas2] = ACTIONS(2128), + [anon_sym_starts_DASHwith2] = ACTIONS(2128), + [anon_sym_ends_DASHwith2] = ACTIONS(2128), + [anon_sym_EQ_EQ2] = ACTIONS(2128), + [anon_sym_BANG_EQ2] = ACTIONS(2128), + [anon_sym_LT2] = ACTIONS(2128), + [anon_sym_LT_EQ2] = ACTIONS(2128), + [anon_sym_GT_EQ2] = ACTIONS(2128), + [anon_sym_EQ_TILDE2] = ACTIONS(2128), + [anon_sym_BANG_TILDE2] = ACTIONS(2128), + [anon_sym_STAR_STAR2] = ACTIONS(2128), + [anon_sym_PLUS_PLUS2] = ACTIONS(2128), + [anon_sym_SLASH2] = ACTIONS(2128), + [anon_sym_mod2] = ACTIONS(2128), + [anon_sym_SLASH_SLASH2] = ACTIONS(2128), + [anon_sym_PLUS2] = ACTIONS(2128), + [anon_sym_bit_DASHshl2] = ACTIONS(2128), + [anon_sym_bit_DASHshr2] = ACTIONS(2128), + [anon_sym_bit_DASHand2] = ACTIONS(2128), + [anon_sym_bit_DASHxor2] = ACTIONS(2128), + [anon_sym_bit_DASHor2] = ACTIONS(2128), + [anon_sym_err_GT] = ACTIONS(2128), + [anon_sym_out_GT] = ACTIONS(2128), + [anon_sym_e_GT] = ACTIONS(2128), + [anon_sym_o_GT] = ACTIONS(2128), + [anon_sym_err_PLUSout_GT] = ACTIONS(2128), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2128), + [anon_sym_o_PLUSe_GT] = ACTIONS(2128), + [anon_sym_e_PLUSo_GT] = ACTIONS(2128), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [836] = { + [sym_expr_parenthesized] = STATE(5880), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(6848), + [sym__val_range] = STATE(7049), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6303), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4993), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6616), + [sym__spread_list] = STATE(6920), + [sym_val_entry] = STATE(6618), + [sym_val_record] = STATE(6683), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(6280), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6734), + [sym_comment] = STATE(836), + [aux_sym_shebang_repeat1] = STATE(2632), + [aux_sym_list_body_repeat1] = STATE(873), + [sym__newline] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3052), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_LT] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [aux_sym__val_number_decimal_token1] = ACTIONS(3060), + [aux_sym__val_number_decimal_token2] = ACTIONS(3062), + [aux_sym__val_number_decimal_token3] = ACTIONS(3064), + [aux_sym__val_number_decimal_token4] = ACTIONS(3066), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3070), + [aux_sym__val_number_token5] = ACTIONS(3070), + [aux_sym__val_number_token6] = ACTIONS(3070), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2528), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), }, - [890] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7340), - [sym__spread_list] = STATE(7482), - [sym_val_entry] = STATE(6788), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(890), - [aux_sym_shebang_repeat1] = STATE(2768), - [aux_sym_list_body_repeat1] = STATE(912), - [sym__newline] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), + [837] = { + [sym_expr_parenthesized] = STATE(5880), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(6848), + [sym__val_range] = STATE(7049), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6303), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4993), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6683), + [sym__spread_list] = STATE(6920), + [sym_val_entry] = STATE(6618), + [sym_val_record] = STATE(6683), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(6280), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6734), + [sym_comment] = STATE(837), + [aux_sym_shebang_repeat1] = STATE(2632), + [aux_sym_list_body_repeat1] = STATE(873), + [sym__newline] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3136), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3052), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_LT] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [aux_sym__val_number_decimal_token1] = ACTIONS(3060), + [aux_sym__val_number_decimal_token2] = ACTIONS(3062), + [aux_sym__val_number_decimal_token3] = ACTIONS(3064), + [aux_sym__val_number_decimal_token4] = ACTIONS(3066), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3070), + [aux_sym__val_number_token5] = ACTIONS(3070), + [aux_sym__val_number_token6] = ACTIONS(3070), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2528), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), }, - [891] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3719), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1922), - [sym__unquoted_with_expr] = STATE(2291), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(891), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [838] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2204), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1746), + [sym__unquoted_with_expr] = STATE(2141), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(838), + [aux_sym_shebang_repeat1] = STATE(859), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [892] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3764), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1865), - [sym__unquoted_with_expr] = STATE(2271), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(892), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [839] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2189), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1791), + [sym__unquoted_with_expr] = STATE(2090), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(839), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [893] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3766), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1867), - [sym__unquoted_with_expr] = STATE(2152), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(893), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [840] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2191), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1806), + [sym__unquoted_with_expr] = STATE(2037), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(840), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [894] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3768), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1872), - [sym__unquoted_with_expr] = STATE(2163), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(894), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [841] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2193), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1848), + [sym__unquoted_with_expr] = STATE(2122), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(841), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [895] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1875), - [sym__unquoted_with_expr] = STATE(2173), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(895), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [842] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2058), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1697), + [sym__unquoted_with_expr] = STATE(2081), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(842), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [896] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3770), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1982), - [sym__unquoted_with_expr] = STATE(2180), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(896), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [843] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2197), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1712), + [sym__unquoted_with_expr] = STATE(2159), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(843), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [897] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3772), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1886), - [sym__unquoted_with_expr] = STATE(2191), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(897), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [844] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2199), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1713), + [sym__unquoted_with_expr] = STATE(2036), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(844), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [898] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3774), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1891), - [sym__unquoted_with_expr] = STATE(2195), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(898), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [845] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2201), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1718), + [sym__unquoted_with_expr] = STATE(2068), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(845), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [899] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3776), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1894), - [sym__unquoted_with_expr] = STATE(2197), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(899), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [846] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2203), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1727), + [sym__unquoted_with_expr] = STATE(2175), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(846), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [900] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1875), - [sym__unquoted_with_expr] = STATE(2173), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(900), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [847] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2205), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1768), + [sym__unquoted_with_expr] = STATE(2168), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(847), + [aux_sym_shebang_repeat1] = STATE(860), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [901] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2306), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1982), - [sym__unquoted_with_expr] = STATE(2180), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(901), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [848] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2207), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1849), + [sym__unquoted_with_expr] = STATE(2061), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(848), + [aux_sym_shebang_repeat1] = STATE(861), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [902] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2351), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1886), - [sym__unquoted_with_expr] = STATE(2191), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(902), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [849] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2208), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1856), + [sym__unquoted_with_expr] = STATE(2139), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(849), + [aux_sym_shebang_repeat1] = STATE(862), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [903] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2408), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1891), - [sym__unquoted_with_expr] = STATE(2195), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(903), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [850] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2209), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1671), + [sym__unquoted_with_expr] = STATE(2146), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(850), + [aux_sym_shebang_repeat1] = STATE(863), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [904] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2310), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1894), - [sym__unquoted_with_expr] = STATE(2197), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(904), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [851] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2210), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1674), + [sym__unquoted_with_expr] = STATE(2169), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(851), + [aux_sym_shebang_repeat1] = STATE(864), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [905] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7234), - [sym__spread_list] = STATE(7482), - [sym_val_entry] = STATE(6806), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(905), - [aux_sym_list_body_repeat1] = STATE(953), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), - }, - [906] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2193), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1799), - [sym__unquoted_with_expr] = STATE(2251), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(906), - [aux_sym_shebang_repeat1] = STATE(1001), - [sym__newline] = ACTIONS(3204), + [852] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2212), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1675), + [sym__unquoted_with_expr] = STATE(2025), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(852), + [aux_sym_shebang_repeat1] = STATE(865), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [907] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3702), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1806), - [sym__unquoted_with_expr] = STATE(2185), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(907), - [aux_sym_shebang_repeat1] = STATE(1002), - [sym__newline] = ACTIONS(3204), + [853] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2213), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1677), + [sym__unquoted_with_expr] = STATE(2032), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(853), + [aux_sym_shebang_repeat1] = STATE(866), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [908] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3703), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1851), - [sym__unquoted_with_expr] = STATE(2200), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(908), - [aux_sym_shebang_repeat1] = STATE(1006), - [sym__newline] = ACTIONS(3204), + [854] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2046), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1679), + [sym__unquoted_with_expr] = STATE(2055), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(854), + [aux_sym_shebang_repeat1] = STATE(867), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [909] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3704), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1888), - [sym__unquoted_with_expr] = STATE(2249), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(909), - [aux_sym_shebang_repeat1] = STATE(1010), - [sym__newline] = ACTIONS(3204), + [855] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2214), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1681), + [sym__unquoted_with_expr] = STATE(2065), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(855), + [aux_sym_shebang_repeat1] = STATE(868), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [910] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3705), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1900), - [sym__unquoted_with_expr] = STATE(2267), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(910), - [aux_sym_shebang_repeat1] = STATE(1014), - [sym__newline] = ACTIONS(3204), + [856] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2215), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1682), + [sym__unquoted_with_expr] = STATE(2069), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(856), + [aux_sym_shebang_repeat1] = STATE(869), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [911] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2315), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1859), - [sym__unquoted_with_expr] = STATE(2198), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(911), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [857] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2216), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1684), + [sym__unquoted_with_expr] = STATE(2076), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(857), + [aux_sym_shebang_repeat1] = STATE(870), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [912] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7234), - [sym__spread_list] = STATE(7482), - [sym_val_entry] = STATE(7073), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(912), - [aux_sym_list_body_repeat1] = STATE(953), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3126), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), - [anon_sym_DOT_DOT_LT] = ACTIONS(3128), - [anon_sym_null] = ACTIONS(3130), - [anon_sym_true] = ACTIONS(3132), - [anon_sym_false] = ACTIONS(3132), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), - [aux_sym__val_number_decimal_token1] = ACTIONS(3134), - [aux_sym__val_number_decimal_token2] = ACTIONS(3136), - [aux_sym__val_number_decimal_token3] = ACTIONS(3138), - [aux_sym__val_number_decimal_token4] = ACTIONS(3140), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3144), - [aux_sym__val_number_token5] = ACTIONS(3144), - [aux_sym__val_number_token6] = ACTIONS(3144), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2646), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3156), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), - }, - [913] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3426), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1917), - [sym__unquoted_with_expr] = STATE(2213), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(913), - [aux_sym_shebang_repeat1] = STATE(927), - [sym__newline] = ACTIONS(3204), + [858] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2217), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1687), + [sym__unquoted_with_expr] = STATE(2098), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(858), + [aux_sym_shebang_repeat1] = STATE(871), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [914] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3429), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1750), - [sym__unquoted_with_expr] = STATE(2140), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(914), - [aux_sym_shebang_repeat1] = STATE(928), - [sym__newline] = ACTIONS(3204), + [859] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2238), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1719), + [sym__unquoted_with_expr] = STATE(2170), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(859), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [915] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3430), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1772), - [sym__unquoted_with_expr] = STATE(2151), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(915), - [aux_sym_shebang_repeat1] = STATE(929), - [sym__newline] = ACTIONS(3204), + [860] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2241), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1726), + [sym__unquoted_with_expr] = STATE(2143), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(860), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [916] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3431), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1960), - [sym__unquoted_with_expr] = STATE(2143), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(916), - [aux_sym_shebang_repeat1] = STATE(930), - [sym__newline] = ACTIONS(3204), + [861] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2244), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1729), + [sym__unquoted_with_expr] = STATE(2164), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(861), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [917] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3432), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1978), - [sym__unquoted_with_expr] = STATE(2204), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(917), - [aux_sym_shebang_repeat1] = STATE(931), - [sym__newline] = ACTIONS(3204), + [862] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2247), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1734), + [sym__unquoted_with_expr] = STATE(2047), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(862), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [918] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3433), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1780), - [sym__unquoted_with_expr] = STATE(2186), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(918), - [aux_sym_shebang_repeat1] = STATE(932), - [sym__newline] = ACTIONS(3204), + [863] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2249), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1737), + [sym__unquoted_with_expr] = STATE(2067), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(863), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [919] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3434), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1783), - [sym__unquoted_with_expr] = STATE(2205), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(919), - [aux_sym_shebang_repeat1] = STATE(933), - [sym__newline] = ACTIONS(3204), + [864] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2251), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1740), + [sym__unquoted_with_expr] = STATE(2097), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(864), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [920] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3435), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1789), - [sym__unquoted_with_expr] = STATE(2177), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(920), - [aux_sym_shebang_repeat1] = STATE(934), - [sym__newline] = ACTIONS(3204), + [865] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2255), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1743), + [sym__unquoted_with_expr] = STATE(2115), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(865), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [921] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2193), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1799), - [sym__unquoted_with_expr] = STATE(2251), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(921), - [aux_sym_shebang_repeat1] = STATE(935), - [sym__newline] = ACTIONS(3204), + [866] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2258), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1744), + [sym__unquoted_with_expr] = STATE(2137), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(866), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [922] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3436), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1806), - [sym__unquoted_with_expr] = STATE(2185), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(922), - [aux_sym_shebang_repeat1] = STATE(936), - [sym__newline] = ACTIONS(3204), + [867] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2148), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1750), + [sym__unquoted_with_expr] = STATE(2156), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(867), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [923] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3439), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1851), - [sym__unquoted_with_expr] = STATE(2200), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(923), - [aux_sym_shebang_repeat1] = STATE(937), - [sym__newline] = ACTIONS(3204), + [868] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2263), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1669), + [sym__unquoted_with_expr] = STATE(2038), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(868), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [924] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3440), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1888), - [sym__unquoted_with_expr] = STATE(2249), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(924), - [aux_sym_shebang_repeat1] = STATE(938), - [sym__newline] = ACTIONS(3204), + [869] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2265), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1763), + [sym__unquoted_with_expr] = STATE(2057), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(869), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [925] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3444), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1900), - [sym__unquoted_with_expr] = STATE(2267), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(925), - [aux_sym_shebang_repeat1] = STATE(939), - [sym__newline] = ACTIONS(3204), + [870] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2267), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1774), + [sym__unquoted_with_expr] = STATE(2100), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(870), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [926] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3701), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1789), - [sym__unquoted_with_expr] = STATE(2177), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(926), - [aux_sym_shebang_repeat1] = STATE(1000), - [sym__newline] = ACTIONS(3204), + [871] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2269), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1777), + [sym__unquoted_with_expr] = STATE(2108), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(871), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [927] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3380), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1863), - [sym__unquoted_with_expr] = STATE(2261), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(927), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [872] = { + [sym_expr_parenthesized] = STATE(5880), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(6848), + [sym__val_range] = STATE(7049), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6303), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4993), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6683), + [sym__spread_list] = STATE(6920), + [sym_val_entry] = STATE(6671), + [sym_val_record] = STATE(6683), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(6280), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6734), + [sym_comment] = STATE(872), + [aux_sym_list_body_repeat1] = STATE(874), + [anon_sym_LBRACK] = ACTIONS(3136), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3052), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_LT] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), + [aux_sym__val_number_decimal_token1] = ACTIONS(3060), + [aux_sym__val_number_decimal_token2] = ACTIONS(3062), + [aux_sym__val_number_decimal_token3] = ACTIONS(3064), + [aux_sym__val_number_decimal_token4] = ACTIONS(3066), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3070), + [aux_sym__val_number_token5] = ACTIONS(3070), + [aux_sym__val_number_token6] = ACTIONS(3070), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2528), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), + }, + [873] = { + [sym_expr_parenthesized] = STATE(5880), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(6848), + [sym__val_range] = STATE(7049), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6303), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4993), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6683), + [sym__spread_list] = STATE(6920), + [sym_val_entry] = STATE(6371), + [sym_val_record] = STATE(6683), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(6280), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6734), + [sym_comment] = STATE(873), + [aux_sym_list_body_repeat1] = STATE(874), + [anon_sym_LBRACK] = ACTIONS(3136), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3052), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(305), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3054), + [anon_sym_DOT_DOT_LT] = ACTIONS(3054), + [anon_sym_null] = ACTIONS(3056), + [anon_sym_true] = ACTIONS(3058), + [anon_sym_false] = ACTIONS(3058), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(307), + [aux_sym__val_number_decimal_token1] = ACTIONS(3060), + [aux_sym__val_number_decimal_token2] = ACTIONS(3062), + [aux_sym__val_number_decimal_token3] = ACTIONS(3064), + [aux_sym__val_number_decimal_token4] = ACTIONS(3066), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3070), + [aux_sym__val_number_token5] = ACTIONS(3070), + [aux_sym__val_number_token6] = ACTIONS(3070), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3076), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2528), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3082), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), + }, + [874] = { + [sym_expr_parenthesized] = STATE(5880), + [sym__spread_parenthesized] = STATE(6920), + [sym_val_range] = STATE(6848), + [sym__val_range] = STATE(7049), + [sym__val_range_with_end] = STATE(6959), + [sym__value] = STATE(6848), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6303), + [sym__spread_variable] = STATE(6820), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4993), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6683), + [sym__spread_list] = STATE(6920), + [sym_val_entry] = STATE(6806), + [sym_val_record] = STATE(6683), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_list] = STATE(6280), + [sym__unquoted_in_list_with_expr] = STATE(6848), + [sym__unquoted_anonymous_prefix] = STATE(6734), + [sym_comment] = STATE(874), + [aux_sym_list_body_repeat1] = STATE(874), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_DOLLAR] = ACTIONS(3178), + [anon_sym_LBRACE] = ACTIONS(3181), + [anon_sym_DOT_DOT] = ACTIONS(3184), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(3187), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3190), + [anon_sym_DOT_DOT_LT] = ACTIONS(3190), + [anon_sym_null] = ACTIONS(3193), + [anon_sym_true] = ACTIONS(3196), + [anon_sym_false] = ACTIONS(3196), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(3199), + [aux_sym__val_number_decimal_token1] = ACTIONS(3202), + [aux_sym__val_number_decimal_token2] = ACTIONS(3205), + [aux_sym__val_number_decimal_token3] = ACTIONS(3208), + [aux_sym__val_number_decimal_token4] = ACTIONS(3211), + [aux_sym__val_number_token1] = ACTIONS(3214), + [aux_sym__val_number_token2] = ACTIONS(3214), + [aux_sym__val_number_token3] = ACTIONS(3214), + [aux_sym__val_number_token4] = ACTIONS(3217), + [aux_sym__val_number_token5] = ACTIONS(3217), + [aux_sym__val_number_token6] = ACTIONS(3217), + [anon_sym_0b] = ACTIONS(3220), + [anon_sym_0o] = ACTIONS(3223), + [anon_sym_0x] = ACTIONS(3223), + [sym_val_date] = ACTIONS(3226), + [anon_sym_DQUOTE] = ACTIONS(3229), + [sym__str_single_quotes] = ACTIONS(3232), + [sym__str_back_ticks] = ACTIONS(3232), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3235), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3238), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(3241), + [anon_sym_err_GT] = ACTIONS(3244), + [anon_sym_out_GT] = ACTIONS(3244), + [anon_sym_e_GT] = ACTIONS(3244), + [anon_sym_o_GT] = ACTIONS(3244), + [anon_sym_err_PLUSout_GT] = ACTIONS(3244), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3244), + [anon_sym_o_PLUSe_GT] = ACTIONS(3244), + [anon_sym_e_PLUSo_GT] = ACTIONS(3244), + [anon_sym_err_GT_GT] = ACTIONS(3247), + [anon_sym_out_GT_GT] = ACTIONS(3247), + [anon_sym_e_GT_GT] = ACTIONS(3247), + [anon_sym_o_GT_GT] = ACTIONS(3247), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3247), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3247), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3247), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3247), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3250), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3253), + }, + [875] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2220), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1840), + [sym__unquoted_with_expr] = STATE(2101), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(875), + [aux_sym_shebang_repeat1] = STATE(992), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [928] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3371), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1866), - [sym__unquoted_with_expr] = STATE(2142), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(928), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [876] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2222), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1851), + [sym__unquoted_with_expr] = STATE(2131), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(876), + [aux_sym_shebang_repeat1] = STATE(993), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [929] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3386), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1869), - [sym__unquoted_with_expr] = STATE(2156), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(929), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [877] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2227), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1867), + [sym__unquoted_with_expr] = STATE(2153), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(877), + [aux_sym_shebang_repeat1] = STATE(994), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [930] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3389), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1873), - [sym__unquoted_with_expr] = STATE(2166), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(930), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [878] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2231), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1870), + [sym__unquoted_with_expr] = STATE(2161), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(878), + [aux_sym_shebang_repeat1] = STATE(995), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [931] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3405), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1876), - [sym__unquoted_with_expr] = STATE(2174), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(931), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [879] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2234), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1782), + [sym__unquoted_with_expr] = STATE(2133), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(879), + [aux_sym_shebang_repeat1] = STATE(921), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [932] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3408), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1880), - [sym__unquoted_with_expr] = STATE(2183), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(932), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [880] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2239), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1745), + [sym__unquoted_with_expr] = STATE(2125), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(880), + [aux_sym_shebang_repeat1] = STATE(839), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [933] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3412), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1922), - [sym__unquoted_with_expr] = STATE(2291), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(933), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [881] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2242), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1802), + [sym__unquoted_with_expr] = STATE(2174), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(881), + [aux_sym_shebang_repeat1] = STATE(840), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [934] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3414), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1932), - [sym__unquoted_with_expr] = STATE(2236), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(934), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [882] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2246), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1830), + [sym__unquoted_with_expr] = STATE(2089), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(882), + [aux_sym_shebang_repeat1] = STATE(841), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [935] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2264), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1979), - [sym__unquoted_with_expr] = STATE(2287), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(935), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [883] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2024), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1673), + [sym__unquoted_with_expr] = STATE(2151), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(883), + [aux_sym_shebang_repeat1] = STATE(842), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [936] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3417), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1868), - [sym__unquoted_with_expr] = STATE(2178), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(936), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [884] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2253), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1721), + [sym__unquoted_with_expr] = STATE(2130), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(884), + [aux_sym_shebang_repeat1] = STATE(843), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [937] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3420), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1765), - [sym__unquoted_with_expr] = STATE(2150), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(937), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [885] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2257), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1758), + [sym__unquoted_with_expr] = STATE(2035), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(885), + [aux_sym_shebang_repeat1] = STATE(844), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [938] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3438), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1898), - [sym__unquoted_with_expr] = STATE(2217), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(938), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [886] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2259), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1795), + [sym__unquoted_with_expr] = STATE(2126), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(886), + [aux_sym_shebang_repeat1] = STATE(845), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [939] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3442), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1941), - [sym__unquoted_with_expr] = STATE(2253), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(939), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [887] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2262), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1701), + [sym__unquoted_with_expr] = STATE(2028), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(887), + [aux_sym_shebang_repeat1] = STATE(846), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [940] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3443), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1966), - [sym__unquoted_with_expr] = STATE(2283), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(940), - [aux_sym_shebang_repeat1] = STATE(954), - [sym__newline] = ACTIONS(3204), + [888] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3502), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1840), + [sym__unquoted_with_expr] = STATE(2101), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(888), + [aux_sym_shebang_repeat1] = STATE(901), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [941] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3324), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1751), - [sym__unquoted_with_expr] = STATE(2212), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(941), - [aux_sym_shebang_repeat1] = STATE(955), - [sym__newline] = ACTIONS(3204), + [889] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3509), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1851), + [sym__unquoted_with_expr] = STATE(2131), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(889), + [aux_sym_shebang_repeat1] = STATE(902), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [942] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3325), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1916), - [sym__unquoted_with_expr] = STATE(2199), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(942), - [aux_sym_shebang_repeat1] = STATE(956), - [sym__newline] = ACTIONS(3204), + [890] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3496), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1867), + [sym__unquoted_with_expr] = STATE(2153), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(890), + [aux_sym_shebang_repeat1] = STATE(903), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [943] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3326), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1948), - [sym__unquoted_with_expr] = STATE(2154), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(943), - [aux_sym_shebang_repeat1] = STATE(957), - [sym__newline] = ACTIONS(3204), + [891] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3529), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1870), + [sym__unquoted_with_expr] = STATE(2161), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(891), + [aux_sym_shebang_repeat1] = STATE(904), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [944] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3327), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1970), - [sym__unquoted_with_expr] = STATE(2256), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(944), - [aux_sym_shebang_repeat1] = STATE(958), - [sym__newline] = ACTIONS(3204), + [892] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3538), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1782), + [sym__unquoted_with_expr] = STATE(2133), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(892), + [aux_sym_shebang_repeat1] = STATE(905), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [945] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3328), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1788), - [sym__unquoted_with_expr] = STATE(2147), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(945), - [aux_sym_shebang_repeat1] = STATE(959), - [sym__newline] = ACTIONS(3204), + [893] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3599), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1745), + [sym__unquoted_with_expr] = STATE(2125), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(893), + [aux_sym_shebang_repeat1] = STATE(906), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [946] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3329), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1794), - [sym__unquoted_with_expr] = STATE(2168), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(946), - [aux_sym_shebang_repeat1] = STATE(960), - [sym__newline] = ACTIONS(3204), + [894] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3544), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1802), + [sym__unquoted_with_expr] = STATE(2174), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(894), + [aux_sym_shebang_repeat1] = STATE(907), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [947] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3330), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1800), - [sym__unquoted_with_expr] = STATE(2231), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(947), - [aux_sym_shebang_repeat1] = STATE(961), - [sym__newline] = ACTIONS(3204), + [895] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3545), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1830), + [sym__unquoted_with_expr] = STATE(2089), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(895), + [aux_sym_shebang_repeat1] = STATE(908), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [948] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2179), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1857), - [sym__unquoted_with_expr] = STATE(2206), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(948), - [aux_sym_shebang_repeat1] = STATE(962), - [sym__newline] = ACTIONS(3204), + [896] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2024), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1673), + [sym__unquoted_with_expr] = STATE(2151), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(896), + [aux_sym_shebang_repeat1] = STATE(909), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [949] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3331), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1870), - [sym__unquoted_with_expr] = STATE(2214), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(949), - [aux_sym_shebang_repeat1] = STATE(963), - [sym__newline] = ACTIONS(3204), + [897] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3546), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1721), + [sym__unquoted_with_expr] = STATE(2130), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(897), + [aux_sym_shebang_repeat1] = STATE(910), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [950] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3332), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1883), - [sym__unquoted_with_expr] = STATE(2218), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(950), - [aux_sym_shebang_repeat1] = STATE(964), - [sym__newline] = ACTIONS(3204), + [898] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3556), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1758), + [sym__unquoted_with_expr] = STATE(2035), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(898), + [aux_sym_shebang_repeat1] = STATE(911), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [951] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3333), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1884), - [sym__unquoted_with_expr] = STATE(2234), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(951), - [aux_sym_shebang_repeat1] = STATE(965), - [sym__newline] = ACTIONS(3204), + [899] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3557), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1795), + [sym__unquoted_with_expr] = STATE(2126), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(899), + [aux_sym_shebang_repeat1] = STATE(912), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [952] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3334), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1973), - [sym__unquoted_with_expr] = STATE(2145), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(952), - [aux_sym_shebang_repeat1] = STATE(966), - [sym__newline] = ACTIONS(3204), + [900] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3562), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1701), + [sym__unquoted_with_expr] = STATE(2028), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(900), + [aux_sym_shebang_repeat1] = STATE(913), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [953] = { - [sym_expr_parenthesized] = STATE(6045), - [sym__spread_parenthesized] = STATE(7482), - [sym_val_range] = STATE(7485), - [sym__val_range] = STATE(7766), - [sym__val_range_with_end] = STATE(7413), - [sym__value] = STATE(7485), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6403), - [sym__spread_variable] = STATE(7412), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5351), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7234), - [sym__spread_list] = STATE(7482), - [sym_val_entry] = STATE(7377), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_list] = STATE(6747), - [sym__unquoted_in_list_with_expr] = STATE(7485), - [sym__unquoted_anonymous_prefix] = STATE(7235), - [sym_comment] = STATE(953), - [aux_sym_list_body_repeat1] = STATE(953), - [anon_sym_LBRACK] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(3271), - [anon_sym_DOLLAR] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3277), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(3283), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3286), - [anon_sym_DOT_DOT_LT] = ACTIONS(3286), - [anon_sym_null] = ACTIONS(3289), - [anon_sym_true] = ACTIONS(3292), - [anon_sym_false] = ACTIONS(3292), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(3295), - [aux_sym__val_number_decimal_token1] = ACTIONS(3298), - [aux_sym__val_number_decimal_token2] = ACTIONS(3301), - [aux_sym__val_number_decimal_token3] = ACTIONS(3304), - [aux_sym__val_number_decimal_token4] = ACTIONS(3307), - [aux_sym__val_number_token1] = ACTIONS(3310), - [aux_sym__val_number_token2] = ACTIONS(3310), - [aux_sym__val_number_token3] = ACTIONS(3310), - [aux_sym__val_number_token4] = ACTIONS(3313), - [aux_sym__val_number_token5] = ACTIONS(3313), - [aux_sym__val_number_token6] = ACTIONS(3313), - [anon_sym_0b] = ACTIONS(3316), - [anon_sym_0o] = ACTIONS(3319), - [anon_sym_0x] = ACTIONS(3319), - [sym_val_date] = ACTIONS(3322), - [anon_sym_DQUOTE] = ACTIONS(3325), - [sym__str_single_quotes] = ACTIONS(3328), - [sym__str_back_ticks] = ACTIONS(3328), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3331), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3334), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(3337), - [anon_sym_err_GT] = ACTIONS(3340), - [anon_sym_out_GT] = ACTIONS(3340), - [anon_sym_e_GT] = ACTIONS(3340), - [anon_sym_o_GT] = ACTIONS(3340), - [anon_sym_err_PLUSout_GT] = ACTIONS(3340), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3340), - [anon_sym_o_PLUSe_GT] = ACTIONS(3340), - [anon_sym_e_PLUSo_GT] = ACTIONS(3340), - [anon_sym_err_GT_GT] = ACTIONS(3343), - [anon_sym_out_GT_GT] = ACTIONS(3343), - [anon_sym_e_GT_GT] = ACTIONS(3343), - [anon_sym_o_GT_GT] = ACTIONS(3343), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3343), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3343), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3343), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3343), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3346), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3349), - }, - [954] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3348), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1830), - [sym__unquoted_with_expr] = STATE(2273), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(954), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [901] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3594), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1772), + [sym__unquoted_with_expr] = STATE(2162), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(901), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [955] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3350), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1839), - [sym__unquoted_with_expr] = STATE(2141), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(955), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [902] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3483), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1778), + [sym__unquoted_with_expr] = STATE(2147), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(902), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [956] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3352), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1850), - [sym__unquoted_with_expr] = STATE(2172), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(956), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [903] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3486), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1785), + [sym__unquoted_with_expr] = STATE(2140), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(903), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [957] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3354), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1859), - [sym__unquoted_with_expr] = STATE(2198), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(957), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [904] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3490), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1786), + [sym__unquoted_with_expr] = STATE(2030), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(904), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [958] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3356), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1862), - [sym__unquoted_with_expr] = STATE(2235), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(958), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [905] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3495), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1787), + [sym__unquoted_with_expr] = STATE(2070), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(905), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [959] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3358), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1865), - [sym__unquoted_with_expr] = STATE(2271), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(959), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [906] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3503), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1791), + [sym__unquoted_with_expr] = STATE(2090), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(906), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [960] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3360), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1867), - [sym__unquoted_with_expr] = STATE(2152), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(960), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [907] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3505), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1806), + [sym__unquoted_with_expr] = STATE(2037), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(907), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [961] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3362), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1872), - [sym__unquoted_with_expr] = STATE(2163), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(961), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [908] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3508), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1848), + [sym__unquoted_with_expr] = STATE(2122), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(908), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [962] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2167), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1875), - [sym__unquoted_with_expr] = STATE(2173), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(962), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [909] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2058), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1697), + [sym__unquoted_with_expr] = STATE(2081), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(909), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [963] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3364), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1982), - [sym__unquoted_with_expr] = STATE(2180), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(963), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [910] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3511), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1712), + [sym__unquoted_with_expr] = STATE(2159), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(910), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [964] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3366), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1886), - [sym__unquoted_with_expr] = STATE(2191), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(964), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [911] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3514), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1713), + [sym__unquoted_with_expr] = STATE(2036), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(911), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [965] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3368), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1891), - [sym__unquoted_with_expr] = STATE(2195), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(965), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [912] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3518), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1718), + [sym__unquoted_with_expr] = STATE(2068), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(912), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [966] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3370), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1894), - [sym__unquoted_with_expr] = STATE(2197), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(966), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [913] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3520), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1727), + [sym__unquoted_with_expr] = STATE(2175), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(913), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [967] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2339), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1917), - [sym__unquoted_with_expr] = STATE(2213), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(967), - [aux_sym_shebang_repeat1] = STATE(974), - [sym__newline] = ACTIONS(3204), + [914] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3522), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1746), + [sym__unquoted_with_expr] = STATE(2141), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(914), + [aux_sym_shebang_repeat1] = STATE(927), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [968] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2336), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1750), - [sym__unquoted_with_expr] = STATE(2140), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(968), - [aux_sym_shebang_repeat1] = STATE(975), - [sym__newline] = ACTIONS(3204), + [915] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3524), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1768), + [sym__unquoted_with_expr] = STATE(2168), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(915), + [aux_sym_shebang_repeat1] = STATE(928), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [969] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2379), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1772), - [sym__unquoted_with_expr] = STATE(2151), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(969), - [aux_sym_shebang_repeat1] = STATE(976), - [sym__newline] = ACTIONS(3204), + [916] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3525), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1849), + [sym__unquoted_with_expr] = STATE(2061), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(916), + [aux_sym_shebang_repeat1] = STATE(929), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [970] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2319), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1960), - [sym__unquoted_with_expr] = STATE(2143), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(970), - [aux_sym_shebang_repeat1] = STATE(977), - [sym__newline] = ACTIONS(3204), + [917] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3526), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1856), + [sym__unquoted_with_expr] = STATE(2139), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(917), + [aux_sym_shebang_repeat1] = STATE(930), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [971] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2344), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1978), - [sym__unquoted_with_expr] = STATE(2204), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(971), - [aux_sym_shebang_repeat1] = STATE(978), - [sym__newline] = ACTIONS(3204), + [918] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3527), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1671), + [sym__unquoted_with_expr] = STATE(2146), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(918), + [aux_sym_shebang_repeat1] = STATE(931), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [972] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2322), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1780), - [sym__unquoted_with_expr] = STATE(2186), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(972), - [aux_sym_shebang_repeat1] = STATE(979), - [sym__newline] = ACTIONS(3204), + [919] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3528), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1674), + [sym__unquoted_with_expr] = STATE(2169), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(919), + [aux_sym_shebang_repeat1] = STATE(932), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [973] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2330), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1783), - [sym__unquoted_with_expr] = STATE(2205), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(973), - [aux_sym_shebang_repeat1] = STATE(980), - [sym__newline] = ACTIONS(3204), + [920] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3530), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1675), + [sym__unquoted_with_expr] = STATE(2025), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(920), + [aux_sym_shebang_repeat1] = STATE(933), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [974] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2335), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1863), - [sym__unquoted_with_expr] = STATE(2261), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(974), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [921] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2187), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1787), + [sym__unquoted_with_expr] = STATE(2070), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(921), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [975] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2389), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1866), - [sym__unquoted_with_expr] = STATE(2142), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(975), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [922] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2046), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1679), + [sym__unquoted_with_expr] = STATE(2055), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(922), + [aux_sym_shebang_repeat1] = STATE(935), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [976] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2417), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1869), - [sym__unquoted_with_expr] = STATE(2156), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(976), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [923] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3533), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1681), + [sym__unquoted_with_expr] = STATE(2065), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(923), + [aux_sym_shebang_repeat1] = STATE(936), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [977] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2302), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1873), - [sym__unquoted_with_expr] = STATE(2166), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(977), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [924] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3535), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1682), + [sym__unquoted_with_expr] = STATE(2069), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(924), + [aux_sym_shebang_repeat1] = STATE(937), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [978] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2357), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1876), - [sym__unquoted_with_expr] = STATE(2174), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(978), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [925] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3539), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1684), + [sym__unquoted_with_expr] = STATE(2076), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(925), + [aux_sym_shebang_repeat1] = STATE(938), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [979] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2323), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1880), - [sym__unquoted_with_expr] = STATE(2183), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(979), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [926] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3542), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1687), + [sym__unquoted_with_expr] = STATE(2098), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(926), + [aux_sym_shebang_repeat1] = STATE(939), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [980] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2390), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1922), - [sym__unquoted_with_expr] = STATE(2291), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(980), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [927] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3543), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1719), + [sym__unquoted_with_expr] = STATE(2170), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(927), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [981] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2303), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1862), - [sym__unquoted_with_expr] = STATE(2235), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(981), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [928] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3488), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1726), + [sym__unquoted_with_expr] = STATE(2143), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(928), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [982] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3707), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1863), - [sym__unquoted_with_expr] = STATE(2261), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(982), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [929] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3513), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1729), + [sym__unquoted_with_expr] = STATE(2164), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(929), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [983] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2296), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1932), - [sym__unquoted_with_expr] = STATE(2236), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(983), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [930] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3549), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1734), + [sym__unquoted_with_expr] = STATE(2047), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(930), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [984] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3709), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1866), - [sym__unquoted_with_expr] = STATE(2142), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(984), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [931] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3555), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1737), + [sym__unquoted_with_expr] = STATE(2067), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(931), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [985] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2264), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1979), - [sym__unquoted_with_expr] = STATE(2287), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(985), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [932] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3573), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1740), + [sym__unquoted_with_expr] = STATE(2097), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(932), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [986] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3711), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1869), - [sym__unquoted_with_expr] = STATE(2156), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(986), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [933] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3576), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1743), + [sym__unquoted_with_expr] = STATE(2115), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(933), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [987] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2295), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1868), - [sym__unquoted_with_expr] = STATE(2178), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(987), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [934] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3479), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1744), + [sym__unquoted_with_expr] = STATE(2137), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(934), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [988] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2401), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1765), - [sym__unquoted_with_expr] = STATE(2150), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(988), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [935] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2148), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1750), + [sym__unquoted_with_expr] = STATE(2156), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(935), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [989] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2350), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1898), - [sym__unquoted_with_expr] = STATE(2217), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(989), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [936] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3489), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1669), + [sym__unquoted_with_expr] = STATE(2038), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(936), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [990] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2320), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1941), - [sym__unquoted_with_expr] = STATE(2253), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(990), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [937] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3497), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1763), + [sym__unquoted_with_expr] = STATE(2057), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(937), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [991] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2348), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1966), - [sym__unquoted_with_expr] = STATE(2283), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(991), - [aux_sym_shebang_repeat1] = STATE(1025), - [sym__newline] = ACTIONS(3204), + [938] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3515), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1774), + [sym__unquoted_with_expr] = STATE(2100), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(938), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [992] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3713), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1873), - [sym__unquoted_with_expr] = STATE(2166), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(992), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [939] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3521), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1777), + [sym__unquoted_with_expr] = STATE(2108), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(939), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [993] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3715), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1876), - [sym__unquoted_with_expr] = STATE(2174), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(993), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [940] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3237), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1840), + [sym__unquoted_with_expr] = STATE(2101), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(940), + [aux_sym_shebang_repeat1] = STATE(953), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [994] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2368), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1751), - [sym__unquoted_with_expr] = STATE(2212), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(994), - [aux_sym_shebang_repeat1] = STATE(1026), - [sym__newline] = ACTIONS(3204), + [941] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3149), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1851), + [sym__unquoted_with_expr] = STATE(2131), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(941), + [aux_sym_shebang_repeat1] = STATE(954), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [995] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2386), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1916), - [sym__unquoted_with_expr] = STATE(2199), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(995), - [aux_sym_shebang_repeat1] = STATE(1027), - [sym__newline] = ACTIONS(3204), + [942] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3153), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1867), + [sym__unquoted_with_expr] = STATE(2153), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(942), + [aux_sym_shebang_repeat1] = STATE(955), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [996] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2334), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1948), - [sym__unquoted_with_expr] = STATE(2154), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(996), - [aux_sym_shebang_repeat1] = STATE(911), - [sym__newline] = ACTIONS(3204), + [943] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3154), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1870), + [sym__unquoted_with_expr] = STATE(2161), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(943), + [aux_sym_shebang_repeat1] = STATE(956), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [997] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2410), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1970), - [sym__unquoted_with_expr] = STATE(2256), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(997), - [aux_sym_shebang_repeat1] = STATE(981), - [sym__newline] = ACTIONS(3204), + [944] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3221), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1782), + [sym__unquoted_with_expr] = STATE(2133), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(944), + [aux_sym_shebang_repeat1] = STATE(957), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [998] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3717), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1880), - [sym__unquoted_with_expr] = STATE(2183), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(998), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [945] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3222), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1745), + [sym__unquoted_with_expr] = STATE(2125), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(945), + [aux_sym_shebang_repeat1] = STATE(958), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [999] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3699), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1780), - [sym__unquoted_with_expr] = STATE(2186), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(999), - [aux_sym_shebang_repeat1] = STATE(998), - [sym__newline] = ACTIONS(3204), + [946] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3224), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1802), + [sym__unquoted_with_expr] = STATE(2174), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(946), + [aux_sym_shebang_repeat1] = STATE(959), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1000] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3721), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1932), - [sym__unquoted_with_expr] = STATE(2236), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1000), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [947] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3227), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1830), + [sym__unquoted_with_expr] = STATE(2089), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(947), + [aux_sym_shebang_repeat1] = STATE(960), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1001] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2264), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1979), - [sym__unquoted_with_expr] = STATE(2287), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1001), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [948] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2024), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1673), + [sym__unquoted_with_expr] = STATE(2151), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(948), + [aux_sym_shebang_repeat1] = STATE(961), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1002] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3723), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1868), - [sym__unquoted_with_expr] = STATE(2178), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1002), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [949] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3229), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1721), + [sym__unquoted_with_expr] = STATE(2130), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(949), + [aux_sym_shebang_repeat1] = STATE(962), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1003] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2406), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1788), - [sym__unquoted_with_expr] = STATE(2147), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1003), - [aux_sym_shebang_repeat1] = STATE(1041), - [sym__newline] = ACTIONS(3204), + [950] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3231), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1758), + [sym__unquoted_with_expr] = STATE(2035), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(950), + [aux_sym_shebang_repeat1] = STATE(963), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1004] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2363), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1794), - [sym__unquoted_with_expr] = STATE(2168), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1004), - [aux_sym_shebang_repeat1] = STATE(1042), - [sym__newline] = ACTIONS(3204), + [951] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3232), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1795), + [sym__unquoted_with_expr] = STATE(2126), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(951), + [aux_sym_shebang_repeat1] = STATE(964), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1005] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2297), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1800), - [sym__unquoted_with_expr] = STATE(2231), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1005), - [aux_sym_shebang_repeat1] = STATE(1043), - [sym__newline] = ACTIONS(3204), + [952] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3234), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1701), + [sym__unquoted_with_expr] = STATE(2028), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(952), + [aux_sym_shebang_repeat1] = STATE(965), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1006] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3725), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1765), - [sym__unquoted_with_expr] = STATE(2150), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1006), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [953] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3240), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1772), + [sym__unquoted_with_expr] = STATE(2162), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(953), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1007] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2179), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1857), - [sym__unquoted_with_expr] = STATE(2206), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1007), - [aux_sym_shebang_repeat1] = STATE(900), - [sym__newline] = ACTIONS(3204), + [954] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3243), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1778), + [sym__unquoted_with_expr] = STATE(2147), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(954), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1008] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2345), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1870), - [sym__unquoted_with_expr] = STATE(2214), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1008), - [aux_sym_shebang_repeat1] = STATE(901), - [sym__newline] = ACTIONS(3204), + [955] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3245), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1785), + [sym__unquoted_with_expr] = STATE(2140), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(955), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1009] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2370), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1883), - [sym__unquoted_with_expr] = STATE(2218), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1009), - [aux_sym_shebang_repeat1] = STATE(902), - [sym__newline] = ACTIONS(3204), + [956] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3247), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1786), + [sym__unquoted_with_expr] = STATE(2030), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(956), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1010] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3727), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1898), - [sym__unquoted_with_expr] = STATE(2217), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1010), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [957] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3249), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1787), + [sym__unquoted_with_expr] = STATE(2070), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(957), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1011] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2404), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1884), - [sym__unquoted_with_expr] = STATE(2234), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1011), - [aux_sym_shebang_repeat1] = STATE(903), - [sym__newline] = ACTIONS(3204), + [958] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3251), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1791), + [sym__unquoted_with_expr] = STATE(2090), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(958), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1012] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2415), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1973), - [sym__unquoted_with_expr] = STATE(2145), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1012), - [aux_sym_shebang_repeat1] = STATE(904), - [sym__newline] = ACTIONS(3204), + [959] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3255), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1806), + [sym__unquoted_with_expr] = STATE(2037), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(959), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1013] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2407), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1789), - [sym__unquoted_with_expr] = STATE(2177), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1013), - [aux_sym_shebang_repeat1] = STATE(983), - [sym__newline] = ACTIONS(3204), + [960] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3199), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1848), + [sym__unquoted_with_expr] = STATE(2122), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(960), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1014] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3729), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1941), - [sym__unquoted_with_expr] = STATE(2253), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1014), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [961] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2058), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1697), + [sym__unquoted_with_expr] = STATE(2081), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(961), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1015] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2193), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1799), - [sym__unquoted_with_expr] = STATE(2251), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1015), - [aux_sym_shebang_repeat1] = STATE(985), - [sym__newline] = ACTIONS(3204), + [962] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3137), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1712), + [sym__unquoted_with_expr] = STATE(2159), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(962), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1016] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2317), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1806), - [sym__unquoted_with_expr] = STATE(2185), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1016), - [aux_sym_shebang_repeat1] = STATE(987), - [sym__newline] = ACTIONS(3204), + [963] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3139), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1713), + [sym__unquoted_with_expr] = STATE(2036), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(963), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1017] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3730), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1966), - [sym__unquoted_with_expr] = STATE(2283), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1017), - [aux_sym_shebang_repeat1] = STATE(1044), - [sym__newline] = ACTIONS(3204), + [964] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3141), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1718), + [sym__unquoted_with_expr] = STATE(2068), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(964), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1018] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2311), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1851), - [sym__unquoted_with_expr] = STATE(2200), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1018), - [aux_sym_shebang_repeat1] = STATE(988), - [sym__newline] = ACTIONS(3204), + [965] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3143), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1727), + [sym__unquoted_with_expr] = STATE(2175), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(965), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1019] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2300), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1888), - [sym__unquoted_with_expr] = STATE(2249), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1019), - [aux_sym_shebang_repeat1] = STATE(989), - [sym__newline] = ACTIONS(3204), + [966] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3144), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1746), + [sym__unquoted_with_expr] = STATE(2141), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(966), + [aux_sym_shebang_repeat1] = STATE(979), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1020] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2342), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1900), - [sym__unquoted_with_expr] = STATE(2267), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1020), - [aux_sym_shebang_repeat1] = STATE(990), - [sym__newline] = ACTIONS(3204), + [967] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3145), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1768), + [sym__unquoted_with_expr] = STATE(2168), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(967), + [aux_sym_shebang_repeat1] = STATE(980), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1021] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3731), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1751), - [sym__unquoted_with_expr] = STATE(2212), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1021), - [aux_sym_shebang_repeat1] = STATE(1045), - [sym__newline] = ACTIONS(3204), + [968] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3146), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1849), + [sym__unquoted_with_expr] = STATE(2061), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(968), + [aux_sym_shebang_repeat1] = STATE(981), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1022] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3732), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1916), - [sym__unquoted_with_expr] = STATE(2199), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1022), - [aux_sym_shebang_repeat1] = STATE(1046), - [sym__newline] = ACTIONS(3204), + [969] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3147), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1856), + [sym__unquoted_with_expr] = STATE(2139), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(969), + [aux_sym_shebang_repeat1] = STATE(982), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1023] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3733), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1948), - [sym__unquoted_with_expr] = STATE(2154), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1023), - [aux_sym_shebang_repeat1] = STATE(1047), - [sym__newline] = ACTIONS(3204), + [970] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3148), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1671), + [sym__unquoted_with_expr] = STATE(2146), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(970), + [aux_sym_shebang_repeat1] = STATE(983), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1024] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3734), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1970), - [sym__unquoted_with_expr] = STATE(2256), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1024), - [aux_sym_shebang_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3204), + [971] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3150), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1674), + [sym__unquoted_with_expr] = STATE(2169), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(971), + [aux_sym_shebang_repeat1] = STATE(984), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1025] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2374), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1830), - [sym__unquoted_with_expr] = STATE(2273), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1025), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [972] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3151), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1675), + [sym__unquoted_with_expr] = STATE(2025), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(972), + [aux_sym_shebang_repeat1] = STATE(985), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1026] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2413), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1839), - [sym__unquoted_with_expr] = STATE(2141), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1026), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [973] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3152), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1677), + [sym__unquoted_with_expr] = STATE(2032), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(973), + [aux_sym_shebang_repeat1] = STATE(986), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1027] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2343), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1850), - [sym__unquoted_with_expr] = STATE(2172), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1027), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [974] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2046), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1679), + [sym__unquoted_with_expr] = STATE(2055), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(974), + [aux_sym_shebang_repeat1] = STATE(987), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1028] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3694), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1917), - [sym__unquoted_with_expr] = STATE(2213), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1028), - [aux_sym_shebang_repeat1] = STATE(982), - [sym__newline] = ACTIONS(3204), + [975] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3155), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1681), + [sym__unquoted_with_expr] = STATE(2065), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(975), + [aux_sym_shebang_repeat1] = STATE(988), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1029] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3695), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1750), - [sym__unquoted_with_expr] = STATE(2140), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1029), - [aux_sym_shebang_repeat1] = STATE(984), - [sym__newline] = ACTIONS(3204), + [976] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3156), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1682), + [sym__unquoted_with_expr] = STATE(2069), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(976), + [aux_sym_shebang_repeat1] = STATE(989), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1030] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3696), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1772), - [sym__unquoted_with_expr] = STATE(2151), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1030), - [aux_sym_shebang_repeat1] = STATE(986), - [sym__newline] = ACTIONS(3204), + [977] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3157), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1684), + [sym__unquoted_with_expr] = STATE(2076), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(977), + [aux_sym_shebang_repeat1] = STATE(990), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1031] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3697), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1960), - [sym__unquoted_with_expr] = STATE(2143), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1031), - [aux_sym_shebang_repeat1] = STATE(992), - [sym__newline] = ACTIONS(3204), + [978] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3159), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1687), + [sym__unquoted_with_expr] = STATE(2098), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(978), + [aux_sym_shebang_repeat1] = STATE(991), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1032] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3698), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1978), - [sym__unquoted_with_expr] = STATE(2204), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1032), - [aux_sym_shebang_repeat1] = STATE(993), - [sym__newline] = ACTIONS(3204), + [979] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3174), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1719), + [sym__unquoted_with_expr] = STATE(2170), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(979), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1033] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3735), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1788), - [sym__unquoted_with_expr] = STATE(2147), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1033), - [aux_sym_shebang_repeat1] = STATE(892), - [sym__newline] = ACTIONS(3204), + [980] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3176), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1726), + [sym__unquoted_with_expr] = STATE(2143), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(980), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1034] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3736), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1794), - [sym__unquoted_with_expr] = STATE(2168), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1034), - [aux_sym_shebang_repeat1] = STATE(893), - [sym__newline] = ACTIONS(3204), + [981] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3178), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1729), + [sym__unquoted_with_expr] = STATE(2164), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(981), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1035] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3737), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1800), - [sym__unquoted_with_expr] = STATE(2231), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1035), - [aux_sym_shebang_repeat1] = STATE(894), - [sym__newline] = ACTIONS(3204), + [982] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3180), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1734), + [sym__unquoted_with_expr] = STATE(2047), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(982), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1036] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2179), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1857), - [sym__unquoted_with_expr] = STATE(2206), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1036), - [aux_sym_shebang_repeat1] = STATE(895), - [sym__newline] = ACTIONS(3204), + [983] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3182), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1737), + [sym__unquoted_with_expr] = STATE(2067), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(983), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1037] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3738), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1870), - [sym__unquoted_with_expr] = STATE(2214), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1037), - [aux_sym_shebang_repeat1] = STATE(896), - [sym__newline] = ACTIONS(3204), + [984] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3184), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1740), + [sym__unquoted_with_expr] = STATE(2097), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(984), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1038] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3739), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1883), - [sym__unquoted_with_expr] = STATE(2218), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1038), - [aux_sym_shebang_repeat1] = STATE(897), - [sym__newline] = ACTIONS(3204), + [985] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3186), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1743), + [sym__unquoted_with_expr] = STATE(2115), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(985), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1039] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3740), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1884), - [sym__unquoted_with_expr] = STATE(2234), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1039), - [aux_sym_shebang_repeat1] = STATE(898), - [sym__newline] = ACTIONS(3204), + [986] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3188), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1744), + [sym__unquoted_with_expr] = STATE(2137), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(986), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1040] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3796), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1973), - [sym__unquoted_with_expr] = STATE(2145), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1040), - [aux_sym_shebang_repeat1] = STATE(899), - [sym__newline] = ACTIONS(3204), + [987] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2148), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1750), + [sym__unquoted_with_expr] = STATE(2156), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(987), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1041] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2359), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1865), - [sym__unquoted_with_expr] = STATE(2271), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1041), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [988] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3190), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1669), + [sym__unquoted_with_expr] = STATE(2038), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(988), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1042] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2394), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1867), - [sym__unquoted_with_expr] = STATE(2152), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1042), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [989] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3192), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1763), + [sym__unquoted_with_expr] = STATE(2057), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(989), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1043] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(2381), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1872), - [sym__unquoted_with_expr] = STATE(2163), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1043), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [990] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3194), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1774), + [sym__unquoted_with_expr] = STATE(2100), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(990), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1044] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3754), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1830), - [sym__unquoted_with_expr] = STATE(2273), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1044), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [991] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3196), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1777), + [sym__unquoted_with_expr] = STATE(2108), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(991), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1045] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3756), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1839), - [sym__unquoted_with_expr] = STATE(2141), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1045), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [992] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2179), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1772), + [sym__unquoted_with_expr] = STATE(2162), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(992), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1046] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3758), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1850), - [sym__unquoted_with_expr] = STATE(2172), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1046), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [993] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2181), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1778), + [sym__unquoted_with_expr] = STATE(2147), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(993), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1047] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3760), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1859), - [sym__unquoted_with_expr] = STATE(2198), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1047), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [994] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2183), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1785), + [sym__unquoted_with_expr] = STATE(2140), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(994), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1048] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3762), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1862), - [sym__unquoted_with_expr] = STATE(2235), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1048), - [aux_sym_shebang_repeat1] = STATE(2852), - [sym__newline] = ACTIONS(3204), + [995] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(2185), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1786), + [sym__unquoted_with_expr] = STATE(2030), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(995), + [aux_sym_shebang_repeat1] = STATE(2713), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1049] = { - [sym_expr_unary] = STATE(2314), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary_parenthesized] = STATE(2314), - [sym__expr_binary_expression_parenthesized] = STATE(3700), - [sym_expr_parenthesized] = STATE(1776), - [sym_val_range] = STATE(2314), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2314), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1783), - [sym__unquoted_with_expr] = STATE(2205), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1049), - [aux_sym_shebang_repeat1] = STATE(891), - [sym__newline] = ACTIONS(3204), + [996] = { + [sym_expr_unary] = STATE(2219), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary_parenthesized] = STATE(2219), + [sym__expr_binary_expression_parenthesized] = STATE(3531), + [sym_expr_parenthesized] = STATE(1838), + [sym_val_range] = STATE(2219), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(2219), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1677), + [sym__unquoted_with_expr] = STATE(2032), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(996), + [aux_sym_shebang_repeat1] = STATE(934), + [sym__newline] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1050] = { - [sym_expr_parenthesized] = STATE(1638), - [sym_val_range] = STATE(2085), - [sym__val_range] = STATE(7821), - [sym__val_range_with_end] = STATE(7494), - [sym__value] = STATE(2085), - [sym_val_nothing] = STATE(1840), - [sym_val_bool] = STATE(1602), - [sym_val_variable] = STATE(1569), - [sym_val_number] = STATE(1840), - [sym__val_number_decimal] = STATE(1327), - [sym__val_number] = STATE(1971), - [sym_val_duration] = STATE(1840), - [sym_val_filesize] = STATE(1840), - [sym_val_binary] = STATE(1840), - [sym_val_string] = STATE(1840), - [sym__raw_str] = STATE(1896), - [sym__str_double_quotes] = STATE(1896), - [sym_val_interpolated] = STATE(1840), - [sym__inter_single_quotes] = STATE(1846), - [sym__inter_double_quotes] = STATE(1864), - [sym_val_list] = STATE(1840), - [sym_val_record] = STATE(1840), - [sym_val_table] = STATE(1840), - [sym_val_closure] = STATE(1840), - [sym__flag] = STATE(2085), - [sym_short_flag] = STATE(1895), - [sym_long_flag] = STATE(1895), - [sym_unquoted] = STATE(1707), - [sym__unquoted_with_expr] = STATE(2087), - [sym__unquoted_anonymous_prefix] = STATE(6783), - [sym_comment] = STATE(1050), - [aux_sym_shebang_repeat1] = STATE(2864), - [sym__newline] = ACTIONS(3352), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_DOLLAR] = ACTIONS(2686), - [anon_sym_DASH_DASH] = ACTIONS(2688), - [anon_sym_DASH2] = ACTIONS(2690), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_DOT_DOT] = ACTIONS(2694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2696), - [anon_sym_DOT_DOT_LT] = ACTIONS(2696), - [anon_sym_null] = ACTIONS(2698), - [anon_sym_true] = ACTIONS(2700), - [anon_sym_false] = ACTIONS(2700), - [aux_sym__val_number_decimal_token1] = ACTIONS(2702), - [aux_sym__val_number_decimal_token2] = ACTIONS(2704), - [aux_sym__val_number_decimal_token3] = ACTIONS(2706), - [aux_sym__val_number_decimal_token4] = ACTIONS(2708), - [aux_sym__val_number_token1] = ACTIONS(2710), - [aux_sym__val_number_token2] = ACTIONS(2710), - [aux_sym__val_number_token3] = ACTIONS(2710), - [aux_sym__val_number_token4] = ACTIONS(2712), - [aux_sym__val_number_token5] = ACTIONS(2712), - [aux_sym__val_number_token6] = ACTIONS(2712), - [anon_sym_0b] = ACTIONS(2714), - [anon_sym_0o] = ACTIONS(2716), - [anon_sym_0x] = ACTIONS(2716), - [sym_val_date] = ACTIONS(2718), - [anon_sym_DQUOTE] = ACTIONS(2720), - [sym__str_single_quotes] = ACTIONS(2722), - [sym__str_back_ticks] = ACTIONS(2722), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2726), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(2732), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2734), + [997] = { + [sym_expr_parenthesized] = STATE(1563), + [sym_val_range] = STATE(1943), + [sym__val_range] = STATE(7095), + [sym__val_range_with_end] = STATE(6952), + [sym__value] = STATE(1943), + [sym_val_nothing] = STATE(1680), + [sym_val_bool] = STATE(1539), + [sym_val_variable] = STATE(1470), + [sym_val_number] = STATE(1680), + [sym__val_number_decimal] = STATE(1236), + [sym__val_number] = STATE(1686), + [sym_val_duration] = STATE(1680), + [sym_val_filesize] = STATE(1680), + [sym_val_binary] = STATE(1680), + [sym_val_string] = STATE(1680), + [sym__raw_str] = STATE(1800), + [sym__str_double_quotes] = STATE(1800), + [sym_val_interpolated] = STATE(1680), + [sym__inter_single_quotes] = STATE(1858), + [sym__inter_double_quotes] = STATE(1859), + [sym_val_list] = STATE(1680), + [sym_val_record] = STATE(1680), + [sym_val_table] = STATE(1680), + [sym_val_closure] = STATE(1680), + [sym__flag] = STATE(1943), + [sym_short_flag] = STATE(1720), + [sym_long_flag] = STATE(1720), + [sym_unquoted] = STATE(1625), + [sym__unquoted_with_expr] = STATE(1949), + [sym__unquoted_anonymous_prefix] = STATE(6407), + [sym_comment] = STATE(997), + [aux_sym_shebang_repeat1] = STATE(2740), + [sym__newline] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_LPAREN] = ACTIONS(2631), + [anon_sym_DOLLAR] = ACTIONS(2633), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_DASH2] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_DOT_DOT] = ACTIONS(2641), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2643), + [anon_sym_DOT_DOT_LT] = ACTIONS(2643), + [anon_sym_null] = ACTIONS(2645), + [anon_sym_true] = ACTIONS(2647), + [anon_sym_false] = ACTIONS(2647), + [aux_sym__val_number_decimal_token1] = ACTIONS(2649), + [aux_sym__val_number_decimal_token2] = ACTIONS(2651), + [aux_sym__val_number_decimal_token3] = ACTIONS(2653), + [aux_sym__val_number_decimal_token4] = ACTIONS(2655), + [aux_sym__val_number_token1] = ACTIONS(2657), + [aux_sym__val_number_token2] = ACTIONS(2657), + [aux_sym__val_number_token3] = ACTIONS(2657), + [aux_sym__val_number_token4] = ACTIONS(2659), + [aux_sym__val_number_token5] = ACTIONS(2659), + [aux_sym__val_number_token6] = ACTIONS(2659), + [anon_sym_0b] = ACTIONS(2661), + [anon_sym_0o] = ACTIONS(2663), + [anon_sym_0x] = ACTIONS(2663), + [sym_val_date] = ACTIONS(2665), + [anon_sym_DQUOTE] = ACTIONS(2667), + [sym__str_single_quotes] = ACTIONS(2669), + [sym__str_back_ticks] = ACTIONS(2669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2673), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(2679), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2681), }, - [1051] = { - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2460), - [sym__expr_binary_expression] = STATE(2465), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(2460), - [sym__val_range] = STATE(7738), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(2160), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(1454), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_unquoted] = STATE(2216), - [sym__unquoted_with_expr] = STATE(2466), - [sym__unquoted_anonymous_prefix] = STATE(7042), - [sym_comment] = STATE(1051), + [998] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3213), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1606), + [sym__unquoted_with_expr] = STATE(1991), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(998), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1012), + [anon_sym_DASH2] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3276), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3294), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(247), + }, + [999] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3629), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1614), + [sym__unquoted_with_expr] = STATE(1886), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(999), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1012), + [anon_sym_DASH2] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3256), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(247), + }, + [1000] = { + [sym_expr_unary] = STATE(2325), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2325), + [sym__expr_binary_expression] = STATE(3271), + [sym_expr_parenthesized] = STATE(1976), + [sym_val_range] = STATE(2325), + [sym__val_range] = STATE(7034), + [sym__val_range_with_end] = STATE(6930), + [sym__value] = STATE(2325), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(3126), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(2794), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_unquoted] = STATE(2092), + [sym__unquoted_with_expr] = STATE(2340), + [sym__unquoted_anonymous_prefix] = STATE(6777), + [sym_comment] = STATE(1000), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1026), [anon_sym_DASH2] = ACTIONS(47), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(3354), + [anon_sym_DOT_DOT] = ACTIONS(3298), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3356), - [anon_sym_DOT_DOT_LT] = ACTIONS(3356), - [anon_sym_null] = ACTIONS(3358), - [anon_sym_true] = ACTIONS(3360), - [anon_sym_false] = ACTIONS(3360), - [aux_sym__val_number_decimal_token1] = ACTIONS(3362), - [aux_sym__val_number_decimal_token2] = ACTIONS(3364), - [aux_sym__val_number_decimal_token3] = ACTIONS(3366), - [aux_sym__val_number_decimal_token4] = ACTIONS(3368), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3300), + [anon_sym_DOT_DOT_LT] = ACTIONS(3300), + [anon_sym_null] = ACTIONS(3302), + [anon_sym_true] = ACTIONS(3304), + [anon_sym_false] = ACTIONS(3304), + [aux_sym__val_number_decimal_token1] = ACTIONS(3306), + [aux_sym__val_number_decimal_token2] = ACTIONS(3308), + [aux_sym__val_number_decimal_token3] = ACTIONS(3310), + [aux_sym__val_number_decimal_token4] = ACTIONS(3312), [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(3370), - [aux_sym__val_number_token5] = ACTIONS(3370), - [aux_sym__val_number_token6] = ACTIONS(3370), + [aux_sym__val_number_token4] = ACTIONS(3314), + [aux_sym__val_number_token5] = ACTIONS(3314), + [aux_sym__val_number_token6] = ACTIONS(3314), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3372), + [sym_val_date] = ACTIONS(3316), [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3374), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3318), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(121), }, - [1052] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3400), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1686), - [sym__unquoted_with_expr] = STATE(1997), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1052), + [1001] = { + [sym_expr_unary] = STATE(2325), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2325), + [sym__expr_binary_expression] = STATE(3272), + [sym_expr_parenthesized] = STATE(1976), + [sym_val_range] = STATE(2325), + [sym__val_range] = STATE(7034), + [sym__val_range_with_end] = STATE(6930), + [sym__value] = STATE(2325), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(3126), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(2794), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_unquoted] = STATE(2094), + [sym__unquoted_with_expr] = STATE(2302), + [sym__unquoted_anonymous_prefix] = STATE(6777), + [sym_comment] = STATE(1001), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3300), + [anon_sym_DOT_DOT_LT] = ACTIONS(3300), + [anon_sym_null] = ACTIONS(3302), + [anon_sym_true] = ACTIONS(3304), + [anon_sym_false] = ACTIONS(3304), + [aux_sym__val_number_decimal_token1] = ACTIONS(3306), + [aux_sym__val_number_decimal_token2] = ACTIONS(3308), + [aux_sym__val_number_decimal_token3] = ACTIONS(3310), + [aux_sym__val_number_decimal_token4] = ACTIONS(3312), + [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(3314), + [aux_sym__val_number_token5] = ACTIONS(3314), + [aux_sym__val_number_token6] = ACTIONS(3314), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3316), + [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(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3318), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(121), + }, + [1002] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3628), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1613), + [sym__unquoted_with_expr] = STATE(1881), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1002), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1053] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3401), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1687), - [sym__unquoted_with_expr] = STATE(1998), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1053), + [1003] = { + [sym_expr_unary] = STATE(2325), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2325), + [sym__expr_binary_expression] = STATE(3274), + [sym_expr_parenthesized] = STATE(1976), + [sym_val_range] = STATE(2325), + [sym__val_range] = STATE(7034), + [sym__val_range_with_end] = STATE(6930), + [sym__value] = STATE(2325), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(3126), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(2794), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_unquoted] = STATE(2103), + [sym__unquoted_with_expr] = STATE(2373), + [sym__unquoted_anonymous_prefix] = STATE(6777), + [sym_comment] = STATE(1003), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3300), + [anon_sym_DOT_DOT_LT] = ACTIONS(3300), + [anon_sym_null] = ACTIONS(3302), + [anon_sym_true] = ACTIONS(3304), + [anon_sym_false] = ACTIONS(3304), + [aux_sym__val_number_decimal_token1] = ACTIONS(3306), + [aux_sym__val_number_decimal_token2] = ACTIONS(3308), + [aux_sym__val_number_decimal_token3] = ACTIONS(3310), + [aux_sym__val_number_decimal_token4] = ACTIONS(3312), + [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(3314), + [aux_sym__val_number_token5] = ACTIONS(3314), + [aux_sym__val_number_token6] = ACTIONS(3314), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3316), + [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(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3318), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(121), + }, + [1004] = { + [sym_expr_unary] = STATE(2325), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2325), + [sym__expr_binary_expression] = STATE(3275), + [sym_expr_parenthesized] = STATE(1976), + [sym_val_range] = STATE(2325), + [sym__val_range] = STATE(7034), + [sym__val_range_with_end] = STATE(6930), + [sym__value] = STATE(2325), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(3126), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(2794), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_unquoted] = STATE(2116), + [sym__unquoted_with_expr] = STATE(2380), + [sym__unquoted_anonymous_prefix] = STATE(6777), + [sym_comment] = STATE(1004), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3300), + [anon_sym_DOT_DOT_LT] = ACTIONS(3300), + [anon_sym_null] = ACTIONS(3302), + [anon_sym_true] = ACTIONS(3304), + [anon_sym_false] = ACTIONS(3304), + [aux_sym__val_number_decimal_token1] = ACTIONS(3306), + [aux_sym__val_number_decimal_token2] = ACTIONS(3308), + [aux_sym__val_number_decimal_token3] = ACTIONS(3310), + [aux_sym__val_number_decimal_token4] = ACTIONS(3312), + [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(3314), + [aux_sym__val_number_token5] = ACTIONS(3314), + [aux_sym__val_number_token6] = ACTIONS(3314), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3316), + [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(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3318), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(121), + }, + [1005] = { + [sym_expr_unary] = STATE(2325), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2325), + [sym__expr_binary_expression] = STATE(3276), + [sym_expr_parenthesized] = STATE(1976), + [sym_val_range] = STATE(2325), + [sym__val_range] = STATE(7034), + [sym__val_range_with_end] = STATE(6930), + [sym__value] = STATE(2325), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(3126), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(2794), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_unquoted] = STATE(2118), + [sym__unquoted_with_expr] = STATE(2310), + [sym__unquoted_anonymous_prefix] = STATE(6777), + [sym_comment] = STATE(1005), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3300), + [anon_sym_DOT_DOT_LT] = ACTIONS(3300), + [anon_sym_null] = ACTIONS(3302), + [anon_sym_true] = ACTIONS(3304), + [anon_sym_false] = ACTIONS(3304), + [aux_sym__val_number_decimal_token1] = ACTIONS(3306), + [aux_sym__val_number_decimal_token2] = ACTIONS(3308), + [aux_sym__val_number_decimal_token3] = ACTIONS(3310), + [aux_sym__val_number_decimal_token4] = ACTIONS(3312), + [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(3314), + [aux_sym__val_number_token5] = ACTIONS(3314), + [aux_sym__val_number_token6] = ACTIONS(3314), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3316), + [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(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3318), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(121), + }, + [1006] = { + [sym_expr_unary] = STATE(2325), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2325), + [sym__expr_binary_expression] = STATE(3277), + [sym_expr_parenthesized] = STATE(1976), + [sym_val_range] = STATE(2325), + [sym__val_range] = STATE(7034), + [sym__val_range_with_end] = STATE(6930), + [sym__value] = STATE(2325), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(3126), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(2794), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_unquoted] = STATE(2119), + [sym__unquoted_with_expr] = STATE(2314), + [sym__unquoted_anonymous_prefix] = STATE(6777), + [sym_comment] = STATE(1006), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3300), + [anon_sym_DOT_DOT_LT] = ACTIONS(3300), + [anon_sym_null] = ACTIONS(3302), + [anon_sym_true] = ACTIONS(3304), + [anon_sym_false] = ACTIONS(3304), + [aux_sym__val_number_decimal_token1] = ACTIONS(3306), + [aux_sym__val_number_decimal_token2] = ACTIONS(3308), + [aux_sym__val_number_decimal_token3] = ACTIONS(3310), + [aux_sym__val_number_decimal_token4] = ACTIONS(3312), + [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(3314), + [aux_sym__val_number_token5] = ACTIONS(3314), + [aux_sym__val_number_token6] = ACTIONS(3314), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3316), + [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(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3318), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(121), + }, + [1007] = { + [sym_expr_unary] = STATE(2325), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2325), + [sym__expr_binary_expression] = STATE(3278), + [sym_expr_parenthesized] = STATE(1976), + [sym_val_range] = STATE(2325), + [sym__val_range] = STATE(7034), + [sym__val_range_with_end] = STATE(6930), + [sym__value] = STATE(2325), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(3126), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(2794), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_unquoted] = STATE(2120), + [sym__unquoted_with_expr] = STATE(2316), + [sym__unquoted_anonymous_prefix] = STATE(6777), + [sym_comment] = STATE(1007), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3300), + [anon_sym_DOT_DOT_LT] = ACTIONS(3300), + [anon_sym_null] = ACTIONS(3302), + [anon_sym_true] = ACTIONS(3304), + [anon_sym_false] = ACTIONS(3304), + [aux_sym__val_number_decimal_token1] = ACTIONS(3306), + [aux_sym__val_number_decimal_token2] = ACTIONS(3308), + [aux_sym__val_number_decimal_token3] = ACTIONS(3310), + [aux_sym__val_number_decimal_token4] = ACTIONS(3312), + [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(3314), + [aux_sym__val_number_token5] = ACTIONS(3314), + [aux_sym__val_number_token6] = ACTIONS(3314), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3316), + [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(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3318), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(121), + }, + [1008] = { + [sym_expr_unary] = STATE(2325), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2325), + [sym__expr_binary_expression] = STATE(2317), + [sym_expr_parenthesized] = STATE(1976), + [sym_val_range] = STATE(2325), + [sym__val_range] = STATE(7034), + [sym__val_range_with_end] = STATE(6930), + [sym__value] = STATE(2325), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(3126), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(2794), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_unquoted] = STATE(2128), + [sym__unquoted_with_expr] = STATE(2319), + [sym__unquoted_anonymous_prefix] = STATE(6777), + [sym_comment] = STATE(1008), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3300), + [anon_sym_DOT_DOT_LT] = ACTIONS(3300), + [anon_sym_null] = ACTIONS(3302), + [anon_sym_true] = ACTIONS(3304), + [anon_sym_false] = ACTIONS(3304), + [aux_sym__val_number_decimal_token1] = ACTIONS(3306), + [aux_sym__val_number_decimal_token2] = ACTIONS(3308), + [aux_sym__val_number_decimal_token3] = ACTIONS(3310), + [aux_sym__val_number_decimal_token4] = ACTIONS(3312), + [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(3314), + [aux_sym__val_number_token5] = ACTIONS(3314), + [aux_sym__val_number_token6] = ACTIONS(3314), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3316), + [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(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3318), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(121), + }, + [1009] = { + [sym_expr_unary] = STATE(2325), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2325), + [sym__expr_binary_expression] = STATE(3279), + [sym_expr_parenthesized] = STATE(1976), + [sym_val_range] = STATE(2325), + [sym__val_range] = STATE(7034), + [sym__val_range_with_end] = STATE(6930), + [sym__value] = STATE(2325), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(3126), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(2794), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_unquoted] = STATE(2121), + [sym__unquoted_with_expr] = STATE(2322), + [sym__unquoted_anonymous_prefix] = STATE(6777), + [sym_comment] = STATE(1009), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3300), + [anon_sym_DOT_DOT_LT] = ACTIONS(3300), + [anon_sym_null] = ACTIONS(3302), + [anon_sym_true] = ACTIONS(3304), + [anon_sym_false] = ACTIONS(3304), + [aux_sym__val_number_decimal_token1] = ACTIONS(3306), + [aux_sym__val_number_decimal_token2] = ACTIONS(3308), + [aux_sym__val_number_decimal_token3] = ACTIONS(3310), + [aux_sym__val_number_decimal_token4] = ACTIONS(3312), + [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(3314), + [aux_sym__val_number_token5] = ACTIONS(3314), + [aux_sym__val_number_token6] = ACTIONS(3314), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3316), + [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(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3318), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(121), + }, + [1010] = { + [sym_expr_unary] = STATE(2325), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2325), + [sym__expr_binary_expression] = STATE(3280), + [sym_expr_parenthesized] = STATE(1976), + [sym_val_range] = STATE(2325), + [sym__val_range] = STATE(7034), + [sym__val_range_with_end] = STATE(6930), + [sym__value] = STATE(2325), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(3126), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(2794), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_unquoted] = STATE(2096), + [sym__unquoted_with_expr] = STATE(2326), + [sym__unquoted_anonymous_prefix] = STATE(6777), + [sym_comment] = STATE(1010), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3300), + [anon_sym_DOT_DOT_LT] = ACTIONS(3300), + [anon_sym_null] = ACTIONS(3302), + [anon_sym_true] = ACTIONS(3304), + [anon_sym_false] = ACTIONS(3304), + [aux_sym__val_number_decimal_token1] = ACTIONS(3306), + [aux_sym__val_number_decimal_token2] = ACTIONS(3308), + [aux_sym__val_number_decimal_token3] = ACTIONS(3310), + [aux_sym__val_number_decimal_token4] = ACTIONS(3312), + [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(3314), + [aux_sym__val_number_token5] = ACTIONS(3314), + [aux_sym__val_number_token6] = ACTIONS(3314), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3316), + [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(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3318), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(121), + }, + [1011] = { + [sym_expr_unary] = STATE(2325), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2325), + [sym__expr_binary_expression] = STATE(3281), + [sym_expr_parenthesized] = STATE(1976), + [sym_val_range] = STATE(2325), + [sym__val_range] = STATE(7034), + [sym__val_range_with_end] = STATE(6930), + [sym__value] = STATE(2325), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(3126), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(2794), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_unquoted] = STATE(2142), + [sym__unquoted_with_expr] = STATE(2333), + [sym__unquoted_anonymous_prefix] = STATE(6777), + [sym_comment] = STATE(1011), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3300), + [anon_sym_DOT_DOT_LT] = ACTIONS(3300), + [anon_sym_null] = ACTIONS(3302), + [anon_sym_true] = ACTIONS(3304), + [anon_sym_false] = ACTIONS(3304), + [aux_sym__val_number_decimal_token1] = ACTIONS(3306), + [aux_sym__val_number_decimal_token2] = ACTIONS(3308), + [aux_sym__val_number_decimal_token3] = ACTIONS(3310), + [aux_sym__val_number_decimal_token4] = ACTIONS(3312), + [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(3314), + [aux_sym__val_number_token5] = ACTIONS(3314), + [aux_sym__val_number_token6] = ACTIONS(3314), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3316), + [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(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3318), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(121), + }, + [1012] = { + [sym_expr_unary] = STATE(2325), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2325), + [sym__expr_binary_expression] = STATE(3282), + [sym_expr_parenthesized] = STATE(1976), + [sym_val_range] = STATE(2325), + [sym__val_range] = STATE(7034), + [sym__val_range_with_end] = STATE(6930), + [sym__value] = STATE(2325), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(3126), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(2794), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_unquoted] = STATE(2059), + [sym__unquoted_with_expr] = STATE(2339), + [sym__unquoted_anonymous_prefix] = STATE(6777), + [sym_comment] = STATE(1012), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3300), + [anon_sym_DOT_DOT_LT] = ACTIONS(3300), + [anon_sym_null] = ACTIONS(3302), + [anon_sym_true] = ACTIONS(3304), + [anon_sym_false] = ACTIONS(3304), + [aux_sym__val_number_decimal_token1] = ACTIONS(3306), + [aux_sym__val_number_decimal_token2] = ACTIONS(3308), + [aux_sym__val_number_decimal_token3] = ACTIONS(3310), + [aux_sym__val_number_decimal_token4] = ACTIONS(3312), + [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(3314), + [aux_sym__val_number_token5] = ACTIONS(3314), + [aux_sym__val_number_token6] = ACTIONS(3314), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3316), + [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(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3318), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(121), + }, + [1013] = { + [sym_ctrl_do] = STATE(4563), + [sym_ctrl_if] = STATE(4563), + [sym_ctrl_match] = STATE(4563), + [sym_ctrl_try] = STATE(4563), + [sym__expression] = STATE(4563), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3669), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2848), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_comment] = STATE(1013), + [sym__newline] = ACTIONS(3320), + [anon_sym_SEMI] = ACTIONS(3320), + [anon_sym_PIPE] = ACTIONS(3320), + [anon_sym_err_GT_PIPE] = ACTIONS(3320), + [anon_sym_out_GT_PIPE] = ACTIONS(3320), + [anon_sym_e_GT_PIPE] = ACTIONS(3320), + [anon_sym_o_GT_PIPE] = ACTIONS(3320), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3320), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3320), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3320), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3320), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_match] = ACTIONS(3326), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3320), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(3328), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(3330), + [anon_sym_true] = ACTIONS(3332), + [anon_sym_false] = ACTIONS(3332), + [aux_sym__val_number_decimal_token1] = ACTIONS(3334), + [aux_sym__val_number_decimal_token2] = ACTIONS(3336), + [aux_sym__val_number_decimal_token3] = ACTIONS(3338), + [aux_sym__val_number_decimal_token4] = ACTIONS(3340), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(223), + [aux_sym__val_number_token5] = ACTIONS(223), + [aux_sym__val_number_token6] = ACTIONS(223), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(231), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_COLON2] = ACTIONS(3342), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1054] = { - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2460), - [sym__expr_binary_expression] = STATE(2461), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(2460), - [sym__val_range] = STATE(7738), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(2160), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(1454), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_unquoted] = STATE(2158), - [sym__unquoted_with_expr] = STATE(2462), - [sym__unquoted_anonymous_prefix] = STATE(7042), - [sym_comment] = STATE(1054), + [1014] = { + [sym_comment] = STATE(1014), + [ts_builtin_sym_end] = ACTIONS(1493), + [anon_sym_STAR_STAR] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_mod] = ACTIONS(1493), + [anon_sym_SLASH_SLASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_bit_DASHshl] = ACTIONS(1493), + [anon_sym_bit_DASHshr] = ACTIONS(1493), + [anon_sym_EQ_TILDE] = ACTIONS(1493), + [anon_sym_BANG_TILDE] = ACTIONS(1493), + [anon_sym_bit_DASHand] = ACTIONS(1493), + [anon_sym_bit_DASHxor] = ACTIONS(1493), + [anon_sym_bit_DASHor] = ACTIONS(1493), + [anon_sym_and] = ACTIONS(1493), + [anon_sym_xor] = ACTIONS(1493), + [anon_sym_or] = ACTIONS(1493), + [anon_sym_in] = ACTIONS(1493), + [anon_sym_not_DASHin] = ACTIONS(1493), + [anon_sym_has] = ACTIONS(1493), + [anon_sym_not_DASHhas] = ACTIONS(1493), + [anon_sym_starts_DASHwith] = ACTIONS(1493), + [anon_sym_ends_DASHwith] = ACTIONS(1493), + [anon_sym_EQ_EQ] = ACTIONS(1493), + [anon_sym_BANG_EQ] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1493), + [aux_sym_cmd_identifier_token41] = ACTIONS(1491), + [sym__newline] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_err_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_GT_PIPE] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1491), + [anon_sym_GT2] = ACTIONS(1491), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_in2] = ACTIONS(1491), + [anon_sym_STAR2] = ACTIONS(1491), + [anon_sym_and2] = ACTIONS(1491), + [anon_sym_xor2] = ACTIONS(1491), + [anon_sym_or2] = ACTIONS(1491), + [anon_sym_not_DASHin2] = ACTIONS(1491), + [anon_sym_has2] = ACTIONS(1491), + [anon_sym_not_DASHhas2] = ACTIONS(1491), + [anon_sym_starts_DASHwith2] = ACTIONS(1491), + [anon_sym_ends_DASHwith2] = ACTIONS(1491), + [anon_sym_EQ_EQ2] = ACTIONS(1491), + [anon_sym_BANG_EQ2] = ACTIONS(1491), + [anon_sym_LT2] = ACTIONS(1491), + [anon_sym_LT_EQ2] = ACTIONS(1491), + [anon_sym_GT_EQ2] = ACTIONS(1491), + [anon_sym_EQ_TILDE2] = ACTIONS(1491), + [anon_sym_BANG_TILDE2] = ACTIONS(1491), + [anon_sym_STAR_STAR2] = ACTIONS(1491), + [anon_sym_PLUS_PLUS2] = ACTIONS(1491), + [anon_sym_SLASH2] = ACTIONS(1491), + [anon_sym_mod2] = ACTIONS(1491), + [anon_sym_SLASH_SLASH2] = ACTIONS(1491), + [anon_sym_PLUS2] = ACTIONS(1491), + [anon_sym_bit_DASHshl2] = ACTIONS(1491), + [anon_sym_bit_DASHshr2] = ACTIONS(1491), + [anon_sym_bit_DASHand2] = ACTIONS(1491), + [anon_sym_bit_DASHxor2] = ACTIONS(1491), + [anon_sym_bit_DASHor2] = ACTIONS(1491), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [aux_sym__immediate_decimal_token1] = ACTIONS(3344), + [aux_sym__immediate_decimal_token2] = ACTIONS(3346), + [sym_filesize_unit] = ACTIONS(1491), + [sym_duration_unit] = ACTIONS(1493), + [anon_sym_POUND] = ACTIONS(3), + }, + [1015] = { + [sym_expr_unary] = STATE(2325), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2325), + [sym__expr_binary_expression] = STATE(2327), + [sym_expr_parenthesized] = STATE(1976), + [sym_val_range] = STATE(2325), + [sym__val_range] = STATE(7034), + [sym__val_range_with_end] = STATE(6930), + [sym__value] = STATE(2325), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(1415), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_unquoted] = STATE(2092), + [sym__unquoted_with_expr] = STATE(2340), + [sym__unquoted_anonymous_prefix] = STATE(6777), + [sym_comment] = STATE(1015), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1026), [anon_sym_DASH2] = ACTIONS(47), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(3354), + [anon_sym_DOT_DOT] = ACTIONS(3348), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3356), - [anon_sym_DOT_DOT_LT] = ACTIONS(3356), - [anon_sym_null] = ACTIONS(3358), - [anon_sym_true] = ACTIONS(3360), - [anon_sym_false] = ACTIONS(3360), - [aux_sym__val_number_decimal_token1] = ACTIONS(3362), - [aux_sym__val_number_decimal_token2] = ACTIONS(3364), - [aux_sym__val_number_decimal_token3] = ACTIONS(3366), - [aux_sym__val_number_decimal_token4] = ACTIONS(3368), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3350), + [anon_sym_DOT_DOT_LT] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [aux_sym__val_number_decimal_token1] = ACTIONS(3356), + [aux_sym__val_number_decimal_token2] = ACTIONS(3358), + [aux_sym__val_number_decimal_token3] = ACTIONS(3360), + [aux_sym__val_number_decimal_token4] = ACTIONS(3362), [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(3370), - [aux_sym__val_number_token5] = ACTIONS(3370), - [aux_sym__val_number_token6] = ACTIONS(3370), + [aux_sym__val_number_token4] = ACTIONS(3364), + [aux_sym__val_number_token5] = ACTIONS(3364), + [aux_sym__val_number_token6] = ACTIONS(3364), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3372), + [sym_val_date] = ACTIONS(3366), [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3374), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3318), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(121), }, - [1055] = { - [sym_comment] = STATE(1055), - [anon_sym_STAR_STAR] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_SLASH] = ACTIONS(1484), - [anon_sym_mod] = ACTIONS(1486), - [anon_sym_SLASH_SLASH] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_bit_DASHshl] = ACTIONS(1486), - [anon_sym_bit_DASHshr] = ACTIONS(1486), - [anon_sym_EQ_TILDE] = ACTIONS(1486), - [anon_sym_BANG_TILDE] = ACTIONS(1486), - [anon_sym_bit_DASHand] = ACTIONS(1486), - [anon_sym_bit_DASHxor] = ACTIONS(1486), - [anon_sym_bit_DASHor] = ACTIONS(1486), - [anon_sym_and] = ACTIONS(1486), - [anon_sym_xor] = ACTIONS(1486), - [anon_sym_or] = ACTIONS(1486), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_not_DASHin] = ACTIONS(1486), - [anon_sym_has] = ACTIONS(1486), - [anon_sym_not_DASHhas] = ACTIONS(1486), - [anon_sym_starts_DASHwith] = ACTIONS(1486), - [anon_sym_ends_DASHwith] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(1486), - [anon_sym_BANG_EQ] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1486), - [aux_sym_cmd_identifier_token41] = ACTIONS(1484), - [sym__newline] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_err_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_GT_PIPE] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1484), - [anon_sym_RPAREN] = ACTIONS(1484), - [anon_sym_GT2] = ACTIONS(1484), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_in2] = ACTIONS(1484), - [anon_sym_STAR2] = ACTIONS(1484), - [anon_sym_and2] = ACTIONS(1484), - [anon_sym_xor2] = ACTIONS(1484), - [anon_sym_or2] = ACTIONS(1484), - [anon_sym_not_DASHin2] = ACTIONS(1484), - [anon_sym_has2] = ACTIONS(1484), - [anon_sym_not_DASHhas2] = ACTIONS(1484), - [anon_sym_starts_DASHwith2] = ACTIONS(1484), - [anon_sym_ends_DASHwith2] = ACTIONS(1484), - [anon_sym_EQ_EQ2] = ACTIONS(1484), - [anon_sym_BANG_EQ2] = ACTIONS(1484), - [anon_sym_LT2] = ACTIONS(1484), - [anon_sym_LT_EQ2] = ACTIONS(1484), - [anon_sym_GT_EQ2] = ACTIONS(1484), - [anon_sym_EQ_TILDE2] = ACTIONS(1484), - [anon_sym_BANG_TILDE2] = ACTIONS(1484), - [anon_sym_STAR_STAR2] = ACTIONS(1484), - [anon_sym_PLUS_PLUS2] = ACTIONS(1484), - [anon_sym_SLASH2] = ACTIONS(1484), - [anon_sym_mod2] = ACTIONS(1484), - [anon_sym_SLASH_SLASH2] = ACTIONS(1484), - [anon_sym_PLUS2] = ACTIONS(1484), - [anon_sym_bit_DASHshl2] = ACTIONS(1484), - [anon_sym_bit_DASHshr2] = ACTIONS(1484), - [anon_sym_bit_DASHand2] = ACTIONS(1484), - [anon_sym_bit_DASHxor2] = ACTIONS(1484), - [anon_sym_bit_DASHor2] = ACTIONS(1484), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [aux_sym__immediate_decimal_token1] = ACTIONS(3376), - [aux_sym__immediate_decimal_token2] = ACTIONS(3378), - [sym_filesize_unit] = ACTIONS(1484), - [sym_duration_unit] = ACTIONS(1486), - [anon_sym_POUND] = ACTIONS(3), + [1016] = { + [sym_expr_unary] = STATE(2325), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2325), + [sym__expr_binary_expression] = STATE(2343), + [sym_expr_parenthesized] = STATE(1976), + [sym_val_range] = STATE(2325), + [sym__val_range] = STATE(7034), + [sym__val_range_with_end] = STATE(6930), + [sym__value] = STATE(2325), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(1415), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_unquoted] = STATE(2094), + [sym__unquoted_with_expr] = STATE(2302), + [sym__unquoted_anonymous_prefix] = STATE(6777), + [sym_comment] = STATE(1016), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(3348), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3350), + [anon_sym_DOT_DOT_LT] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [aux_sym__val_number_decimal_token1] = ACTIONS(3356), + [aux_sym__val_number_decimal_token2] = ACTIONS(3358), + [aux_sym__val_number_decimal_token3] = ACTIONS(3360), + [aux_sym__val_number_decimal_token4] = ACTIONS(3362), + [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(3364), + [aux_sym__val_number_token5] = ACTIONS(3364), + [aux_sym__val_number_token6] = ACTIONS(3364), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3366), + [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(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3318), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(121), }, - [1056] = { - [sym_comment] = STATE(1056), - [anon_sym_STAR_STAR] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_SLASH] = ACTIONS(1484), - [anon_sym_mod] = ACTIONS(1486), - [anon_sym_SLASH_SLASH] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_bit_DASHshl] = ACTIONS(1486), - [anon_sym_bit_DASHshr] = ACTIONS(1486), - [anon_sym_EQ_TILDE] = ACTIONS(1486), - [anon_sym_BANG_TILDE] = ACTIONS(1486), - [anon_sym_bit_DASHand] = ACTIONS(1486), - [anon_sym_bit_DASHxor] = ACTIONS(1486), - [anon_sym_bit_DASHor] = ACTIONS(1486), - [anon_sym_and] = ACTIONS(1486), - [anon_sym_xor] = ACTIONS(1486), - [anon_sym_or] = ACTIONS(1486), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_not_DASHin] = ACTIONS(1486), - [anon_sym_has] = ACTIONS(1486), - [anon_sym_not_DASHhas] = ACTIONS(1486), - [anon_sym_starts_DASHwith] = ACTIONS(1486), - [anon_sym_ends_DASHwith] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(1486), - [anon_sym_BANG_EQ] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1486), - [aux_sym_cmd_identifier_token41] = ACTIONS(1484), - [sym__newline] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_err_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_GT_PIPE] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1484), - [anon_sym_GT2] = ACTIONS(1484), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_in2] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_STAR2] = ACTIONS(1484), - [anon_sym_and2] = ACTIONS(1484), - [anon_sym_xor2] = ACTIONS(1484), - [anon_sym_or2] = ACTIONS(1484), - [anon_sym_not_DASHin2] = ACTIONS(1484), - [anon_sym_has2] = ACTIONS(1484), - [anon_sym_not_DASHhas2] = ACTIONS(1484), - [anon_sym_starts_DASHwith2] = ACTIONS(1484), - [anon_sym_ends_DASHwith2] = ACTIONS(1484), - [anon_sym_EQ_EQ2] = ACTIONS(1484), - [anon_sym_BANG_EQ2] = ACTIONS(1484), - [anon_sym_LT2] = ACTIONS(1484), - [anon_sym_LT_EQ2] = ACTIONS(1484), - [anon_sym_GT_EQ2] = ACTIONS(1484), - [anon_sym_EQ_TILDE2] = ACTIONS(1484), - [anon_sym_BANG_TILDE2] = ACTIONS(1484), - [anon_sym_STAR_STAR2] = ACTIONS(1484), - [anon_sym_PLUS_PLUS2] = ACTIONS(1484), - [anon_sym_SLASH2] = ACTIONS(1484), - [anon_sym_mod2] = ACTIONS(1484), - [anon_sym_SLASH_SLASH2] = ACTIONS(1484), - [anon_sym_PLUS2] = ACTIONS(1484), - [anon_sym_bit_DASHshl2] = ACTIONS(1484), - [anon_sym_bit_DASHshr2] = ACTIONS(1484), - [anon_sym_bit_DASHand2] = ACTIONS(1484), - [anon_sym_bit_DASHxor2] = ACTIONS(1484), - [anon_sym_bit_DASHor2] = ACTIONS(1484), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [aux_sym__immediate_decimal_token1] = ACTIONS(3380), - [aux_sym__immediate_decimal_token2] = ACTIONS(3382), - [sym_filesize_unit] = ACTIONS(1484), - [sym_duration_unit] = ACTIONS(1486), - [anon_sym_POUND] = ACTIONS(3), + [1017] = { + [sym_expr_unary] = STATE(2325), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2325), + [sym__expr_binary_expression] = STATE(2356), + [sym_expr_parenthesized] = STATE(1976), + [sym_val_range] = STATE(2325), + [sym__val_range] = STATE(7034), + [sym__val_range_with_end] = STATE(6930), + [sym__value] = STATE(2325), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(1415), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_unquoted] = STATE(2095), + [sym__unquoted_with_expr] = STATE(2362), + [sym__unquoted_anonymous_prefix] = STATE(6777), + [sym_comment] = STATE(1017), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(3348), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3350), + [anon_sym_DOT_DOT_LT] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [aux_sym__val_number_decimal_token1] = ACTIONS(3356), + [aux_sym__val_number_decimal_token2] = ACTIONS(3358), + [aux_sym__val_number_decimal_token3] = ACTIONS(3360), + [aux_sym__val_number_decimal_token4] = ACTIONS(3362), + [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(3364), + [aux_sym__val_number_token5] = ACTIONS(3364), + [aux_sym__val_number_token6] = ACTIONS(3364), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3366), + [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(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3318), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(121), }, - [1057] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(2353), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1675), - [sym__unquoted_with_expr] = STATE(2130), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1057), + [1018] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(2270), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1602), + [sym__unquoted_with_expr] = STATE(1955), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1018), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1058] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(2367), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1676), - [sym__unquoted_with_expr] = STATE(1984), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1058), + [1019] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(2271), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1603), + [sym__unquoted_with_expr] = STATE(1964), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1019), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1059] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(2369), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1677), - [sym__unquoted_with_expr] = STATE(1985), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1059), + [1020] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(2176), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1604), + [sym__unquoted_with_expr] = STATE(1969), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1020), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1060] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(2371), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1678), - [sym__unquoted_with_expr] = STATE(1986), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1060), + [1021] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(2272), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1605), + [sym__unquoted_with_expr] = STATE(1985), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1021), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1061] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(2378), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1679), - [sym__unquoted_with_expr] = STATE(1988), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1061), + [1022] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(2273), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1606), + [sym__unquoted_with_expr] = STATE(1991), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1022), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1062] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(2380), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1680), - [sym__unquoted_with_expr] = STATE(1989), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1062), + [1023] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(2274), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1607), + [sym__unquoted_with_expr] = STATE(1993), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1023), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1063] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3816), - [sym_expr_parenthesized] = STATE(3656), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3681), - [sym_val_variable] = STATE(3654), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3566), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1675), - [sym__unquoted_with_expr] = STATE(2130), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1063), + [1024] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(2275), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1608), + [sym__unquoted_with_expr] = STATE(1994), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1024), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3384), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3386), - [anon_sym_DOT_DOT_LT] = ACTIONS(3386), - [anon_sym_null] = ACTIONS(3388), - [anon_sym_true] = ACTIONS(3390), - [anon_sym_false] = ACTIONS(3390), - [aux_sym__val_number_decimal_token1] = ACTIONS(3392), - [aux_sym__val_number_decimal_token2] = ACTIONS(3394), - [aux_sym__val_number_decimal_token3] = ACTIONS(3396), - [aux_sym__val_number_decimal_token4] = ACTIONS(3398), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3400), - [aux_sym__val_number_token5] = ACTIONS(3400), - [aux_sym__val_number_token6] = ACTIONS(3400), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3402), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1064] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3817), - [sym_expr_parenthesized] = STATE(3656), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3681), - [sym_val_variable] = STATE(3654), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3566), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1676), - [sym__unquoted_with_expr] = STATE(1984), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1064), + [1025] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(2276), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1609), + [sym__unquoted_with_expr] = STATE(2008), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1025), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3384), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3386), - [anon_sym_DOT_DOT_LT] = ACTIONS(3386), - [anon_sym_null] = ACTIONS(3388), - [anon_sym_true] = ACTIONS(3390), - [anon_sym_false] = ACTIONS(3390), - [aux_sym__val_number_decimal_token1] = ACTIONS(3392), - [aux_sym__val_number_decimal_token2] = ACTIONS(3394), - [aux_sym__val_number_decimal_token3] = ACTIONS(3396), - [aux_sym__val_number_decimal_token4] = ACTIONS(3398), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3400), - [aux_sym__val_number_token5] = ACTIONS(3400), - [aux_sym__val_number_token6] = ACTIONS(3400), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3402), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1065] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3818), - [sym_expr_parenthesized] = STATE(3656), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3681), - [sym_val_variable] = STATE(3654), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3566), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1677), - [sym__unquoted_with_expr] = STATE(1985), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1065), + [1026] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(2011), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1610), + [sym__unquoted_with_expr] = STATE(2015), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1026), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3384), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3386), - [anon_sym_DOT_DOT_LT] = ACTIONS(3386), - [anon_sym_null] = ACTIONS(3388), - [anon_sym_true] = ACTIONS(3390), - [anon_sym_false] = ACTIONS(3390), - [aux_sym__val_number_decimal_token1] = ACTIONS(3392), - [aux_sym__val_number_decimal_token2] = ACTIONS(3394), - [aux_sym__val_number_decimal_token3] = ACTIONS(3396), - [aux_sym__val_number_decimal_token4] = ACTIONS(3398), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3400), - [aux_sym__val_number_token5] = ACTIONS(3400), - [aux_sym__val_number_token6] = ACTIONS(3400), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3402), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1066] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3819), - [sym_expr_parenthesized] = STATE(3656), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3681), - [sym_val_variable] = STATE(3654), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3566), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1678), - [sym__unquoted_with_expr] = STATE(1986), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1066), + [1027] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(2277), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1611), + [sym__unquoted_with_expr] = STATE(1956), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1027), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3384), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3386), - [anon_sym_DOT_DOT_LT] = ACTIONS(3386), - [anon_sym_null] = ACTIONS(3388), - [anon_sym_true] = ACTIONS(3390), - [anon_sym_false] = ACTIONS(3390), - [aux_sym__val_number_decimal_token1] = ACTIONS(3392), - [aux_sym__val_number_decimal_token2] = ACTIONS(3394), - [aux_sym__val_number_decimal_token3] = ACTIONS(3396), - [aux_sym__val_number_decimal_token4] = ACTIONS(3398), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3400), - [aux_sym__val_number_token5] = ACTIONS(3400), - [aux_sym__val_number_token6] = ACTIONS(3400), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3402), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1067] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3841), - [sym_expr_parenthesized] = STATE(3656), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3681), - [sym_val_variable] = STATE(3654), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3566), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1679), - [sym__unquoted_with_expr] = STATE(1988), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1067), + [1028] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(2278), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1612), + [sym__unquoted_with_expr] = STATE(1878), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1028), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3384), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3386), - [anon_sym_DOT_DOT_LT] = ACTIONS(3386), - [anon_sym_null] = ACTIONS(3388), - [anon_sym_true] = ACTIONS(3390), - [anon_sym_false] = ACTIONS(3390), - [aux_sym__val_number_decimal_token1] = ACTIONS(3392), - [aux_sym__val_number_decimal_token2] = ACTIONS(3394), - [aux_sym__val_number_decimal_token3] = ACTIONS(3396), - [aux_sym__val_number_decimal_token4] = ACTIONS(3398), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3400), - [aux_sym__val_number_token5] = ACTIONS(3400), - [aux_sym__val_number_token6] = ACTIONS(3400), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3402), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1068] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3820), - [sym_expr_parenthesized] = STATE(3656), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3681), - [sym_val_variable] = STATE(3654), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3566), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1680), - [sym__unquoted_with_expr] = STATE(1989), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1068), + [1029] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(2279), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1613), + [sym__unquoted_with_expr] = STATE(1881), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1029), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3384), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3386), - [anon_sym_DOT_DOT_LT] = ACTIONS(3386), - [anon_sym_null] = ACTIONS(3388), - [anon_sym_true] = ACTIONS(3390), - [anon_sym_false] = ACTIONS(3390), - [aux_sym__val_number_decimal_token1] = ACTIONS(3392), - [aux_sym__val_number_decimal_token2] = ACTIONS(3394), - [aux_sym__val_number_decimal_token3] = ACTIONS(3396), - [aux_sym__val_number_decimal_token4] = ACTIONS(3398), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3400), - [aux_sym__val_number_token5] = ACTIONS(3400), - [aux_sym__val_number_token6] = ACTIONS(3400), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3402), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1069] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3821), - [sym_expr_parenthesized] = STATE(3656), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3681), - [sym_val_variable] = STATE(3654), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3566), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1681), - [sym__unquoted_with_expr] = STATE(1990), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1069), + [1030] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(2280), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1923), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(1379), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1614), + [sym__unquoted_with_expr] = STATE(1886), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1030), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3384), + [anon_sym_DOT_DOT] = ACTIONS(3150), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3386), - [anon_sym_DOT_DOT_LT] = ACTIONS(3386), - [anon_sym_null] = ACTIONS(3388), - [anon_sym_true] = ACTIONS(3390), - [anon_sym_false] = ACTIONS(3390), - [aux_sym__val_number_decimal_token1] = ACTIONS(3392), - [aux_sym__val_number_decimal_token2] = ACTIONS(3394), - [aux_sym__val_number_decimal_token3] = ACTIONS(3396), - [aux_sym__val_number_decimal_token4] = ACTIONS(3398), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3152), + [anon_sym_DOT_DOT_LT] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3156), + [anon_sym_false] = ACTIONS(3156), + [aux_sym__val_number_decimal_token1] = ACTIONS(3158), + [aux_sym__val_number_decimal_token2] = ACTIONS(3160), + [aux_sym__val_number_decimal_token3] = ACTIONS(3162), + [aux_sym__val_number_decimal_token4] = ACTIONS(3164), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3400), - [aux_sym__val_number_token5] = ACTIONS(3400), - [aux_sym__val_number_token6] = ACTIONS(3400), + [aux_sym__val_number_token4] = ACTIONS(3166), + [aux_sym__val_number_token5] = ACTIONS(3166), + [aux_sym__val_number_token6] = ACTIONS(3166), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3402), + [sym_val_date] = ACTIONS(3168), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1070] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3822), - [sym_expr_parenthesized] = STATE(3656), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3681), - [sym_val_variable] = STATE(3654), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3566), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1682), - [sym__unquoted_with_expr] = STATE(1991), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1070), + [1031] = { + [sym_comment] = STATE(1031), + [ts_builtin_sym_end] = ACTIONS(1501), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(3370), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_POUND] = ACTIONS(3), + }, + [1032] = { + [sym_comment] = STATE(1032), + [anon_sym_STAR_STAR] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_mod] = ACTIONS(1493), + [anon_sym_SLASH_SLASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_bit_DASHshl] = ACTIONS(1493), + [anon_sym_bit_DASHshr] = ACTIONS(1493), + [anon_sym_EQ_TILDE] = ACTIONS(1493), + [anon_sym_BANG_TILDE] = ACTIONS(1493), + [anon_sym_bit_DASHand] = ACTIONS(1493), + [anon_sym_bit_DASHxor] = ACTIONS(1493), + [anon_sym_bit_DASHor] = ACTIONS(1493), + [anon_sym_and] = ACTIONS(1493), + [anon_sym_xor] = ACTIONS(1493), + [anon_sym_or] = ACTIONS(1493), + [anon_sym_in] = ACTIONS(1493), + [anon_sym_not_DASHin] = ACTIONS(1493), + [anon_sym_has] = ACTIONS(1493), + [anon_sym_not_DASHhas] = ACTIONS(1493), + [anon_sym_starts_DASHwith] = ACTIONS(1493), + [anon_sym_ends_DASHwith] = ACTIONS(1493), + [anon_sym_EQ_EQ] = ACTIONS(1493), + [anon_sym_BANG_EQ] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1493), + [aux_sym_cmd_identifier_token41] = ACTIONS(1491), + [sym__newline] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_err_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_GT_PIPE] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1491), + [anon_sym_RPAREN] = ACTIONS(1491), + [anon_sym_GT2] = ACTIONS(1491), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_in2] = ACTIONS(1491), + [anon_sym_STAR2] = ACTIONS(1491), + [anon_sym_and2] = ACTIONS(1491), + [anon_sym_xor2] = ACTIONS(1491), + [anon_sym_or2] = ACTIONS(1491), + [anon_sym_not_DASHin2] = ACTIONS(1491), + [anon_sym_has2] = ACTIONS(1491), + [anon_sym_not_DASHhas2] = ACTIONS(1491), + [anon_sym_starts_DASHwith2] = ACTIONS(1491), + [anon_sym_ends_DASHwith2] = ACTIONS(1491), + [anon_sym_EQ_EQ2] = ACTIONS(1491), + [anon_sym_BANG_EQ2] = ACTIONS(1491), + [anon_sym_LT2] = ACTIONS(1491), + [anon_sym_LT_EQ2] = ACTIONS(1491), + [anon_sym_GT_EQ2] = ACTIONS(1491), + [anon_sym_EQ_TILDE2] = ACTIONS(1491), + [anon_sym_BANG_TILDE2] = ACTIONS(1491), + [anon_sym_STAR_STAR2] = ACTIONS(1491), + [anon_sym_PLUS_PLUS2] = ACTIONS(1491), + [anon_sym_SLASH2] = ACTIONS(1491), + [anon_sym_mod2] = ACTIONS(1491), + [anon_sym_SLASH_SLASH2] = ACTIONS(1491), + [anon_sym_PLUS2] = ACTIONS(1491), + [anon_sym_bit_DASHshl2] = ACTIONS(1491), + [anon_sym_bit_DASHshr2] = ACTIONS(1491), + [anon_sym_bit_DASHand2] = ACTIONS(1491), + [anon_sym_bit_DASHxor2] = ACTIONS(1491), + [anon_sym_bit_DASHor2] = ACTIONS(1491), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [aux_sym__immediate_decimal_token1] = ACTIONS(3372), + [aux_sym__immediate_decimal_token2] = ACTIONS(3374), + [sym_filesize_unit] = ACTIONS(1491), + [sym_duration_unit] = ACTIONS(1493), + [anon_sym_POUND] = ACTIONS(3), + }, + [1033] = { + [sym_comment] = STATE(1033), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT] = ACTIONS(3376), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(3378), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_POUND] = ACTIONS(3), + }, + [1034] = { + [sym_comment] = STATE(1034), + [anon_sym_STAR_STAR] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_mod] = ACTIONS(1493), + [anon_sym_SLASH_SLASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_bit_DASHshl] = ACTIONS(1493), + [anon_sym_bit_DASHshr] = ACTIONS(1493), + [anon_sym_EQ_TILDE] = ACTIONS(1493), + [anon_sym_BANG_TILDE] = ACTIONS(1493), + [anon_sym_bit_DASHand] = ACTIONS(1493), + [anon_sym_bit_DASHxor] = ACTIONS(1493), + [anon_sym_bit_DASHor] = ACTIONS(1493), + [anon_sym_and] = ACTIONS(1493), + [anon_sym_xor] = ACTIONS(1493), + [anon_sym_or] = ACTIONS(1493), + [anon_sym_in] = ACTIONS(1493), + [anon_sym_not_DASHin] = ACTIONS(1493), + [anon_sym_has] = ACTIONS(1493), + [anon_sym_not_DASHhas] = ACTIONS(1493), + [anon_sym_starts_DASHwith] = ACTIONS(1493), + [anon_sym_ends_DASHwith] = ACTIONS(1493), + [anon_sym_EQ_EQ] = ACTIONS(1493), + [anon_sym_BANG_EQ] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1493), + [aux_sym_cmd_identifier_token41] = ACTIONS(1491), + [sym__newline] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_err_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_GT_PIPE] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1491), + [anon_sym_GT2] = ACTIONS(1491), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_in2] = ACTIONS(1491), + [anon_sym_RBRACE] = ACTIONS(1491), + [anon_sym_STAR2] = ACTIONS(1491), + [anon_sym_and2] = ACTIONS(1491), + [anon_sym_xor2] = ACTIONS(1491), + [anon_sym_or2] = ACTIONS(1491), + [anon_sym_not_DASHin2] = ACTIONS(1491), + [anon_sym_has2] = ACTIONS(1491), + [anon_sym_not_DASHhas2] = ACTIONS(1491), + [anon_sym_starts_DASHwith2] = ACTIONS(1491), + [anon_sym_ends_DASHwith2] = ACTIONS(1491), + [anon_sym_EQ_EQ2] = ACTIONS(1491), + [anon_sym_BANG_EQ2] = ACTIONS(1491), + [anon_sym_LT2] = ACTIONS(1491), + [anon_sym_LT_EQ2] = ACTIONS(1491), + [anon_sym_GT_EQ2] = ACTIONS(1491), + [anon_sym_EQ_TILDE2] = ACTIONS(1491), + [anon_sym_BANG_TILDE2] = ACTIONS(1491), + [anon_sym_STAR_STAR2] = ACTIONS(1491), + [anon_sym_PLUS_PLUS2] = ACTIONS(1491), + [anon_sym_SLASH2] = ACTIONS(1491), + [anon_sym_mod2] = ACTIONS(1491), + [anon_sym_SLASH_SLASH2] = ACTIONS(1491), + [anon_sym_PLUS2] = ACTIONS(1491), + [anon_sym_bit_DASHshl2] = ACTIONS(1491), + [anon_sym_bit_DASHshr2] = ACTIONS(1491), + [anon_sym_bit_DASHand2] = ACTIONS(1491), + [anon_sym_bit_DASHxor2] = ACTIONS(1491), + [anon_sym_bit_DASHor2] = ACTIONS(1491), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [aux_sym__immediate_decimal_token1] = ACTIONS(3380), + [aux_sym__immediate_decimal_token2] = ACTIONS(3382), + [sym_filesize_unit] = ACTIONS(1491), + [sym_duration_unit] = ACTIONS(1493), + [anon_sym_POUND] = ACTIONS(3), + }, + [1035] = { + [sym_comment] = STATE(1035), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT] = ACTIONS(3384), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(3386), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_POUND] = ACTIONS(3), + }, + [1036] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3616), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1602), + [sym__unquoted_with_expr] = STATE(1955), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1036), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3384), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3386), - [anon_sym_DOT_DOT_LT] = ACTIONS(3386), - [anon_sym_null] = ACTIONS(3388), - [anon_sym_true] = ACTIONS(3390), - [anon_sym_false] = ACTIONS(3390), - [aux_sym__val_number_decimal_token1] = ACTIONS(3392), - [aux_sym__val_number_decimal_token2] = ACTIONS(3394), - [aux_sym__val_number_decimal_token3] = ACTIONS(3396), - [aux_sym__val_number_decimal_token4] = ACTIONS(3398), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3400), - [aux_sym__val_number_token5] = ACTIONS(3400), - [aux_sym__val_number_token6] = ACTIONS(3400), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3402), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1071] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(1992), - [sym_expr_parenthesized] = STATE(3656), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3681), - [sym_val_variable] = STATE(3654), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3566), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1683), - [sym__unquoted_with_expr] = STATE(1993), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1071), + [1037] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3617), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1603), + [sym__unquoted_with_expr] = STATE(1964), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1037), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3384), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3386), - [anon_sym_DOT_DOT_LT] = ACTIONS(3386), - [anon_sym_null] = ACTIONS(3388), - [anon_sym_true] = ACTIONS(3390), - [anon_sym_false] = ACTIONS(3390), - [aux_sym__val_number_decimal_token1] = ACTIONS(3392), - [aux_sym__val_number_decimal_token2] = ACTIONS(3394), - [aux_sym__val_number_decimal_token3] = ACTIONS(3396), - [aux_sym__val_number_decimal_token4] = ACTIONS(3398), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3400), - [aux_sym__val_number_token5] = ACTIONS(3400), - [aux_sym__val_number_token6] = ACTIONS(3400), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3402), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1072] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3823), - [sym_expr_parenthesized] = STATE(3656), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3681), - [sym_val_variable] = STATE(3654), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3566), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1684), - [sym__unquoted_with_expr] = STATE(1994), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1072), + [1038] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3618), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1604), + [sym__unquoted_with_expr] = STATE(1969), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1038), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3384), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3386), - [anon_sym_DOT_DOT_LT] = ACTIONS(3386), - [anon_sym_null] = ACTIONS(3388), - [anon_sym_true] = ACTIONS(3390), - [anon_sym_false] = ACTIONS(3390), - [aux_sym__val_number_decimal_token1] = ACTIONS(3392), - [aux_sym__val_number_decimal_token2] = ACTIONS(3394), - [aux_sym__val_number_decimal_token3] = ACTIONS(3396), - [aux_sym__val_number_decimal_token4] = ACTIONS(3398), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3400), - [aux_sym__val_number_token5] = ACTIONS(3400), - [aux_sym__val_number_token6] = ACTIONS(3400), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3402), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1073] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3824), - [sym_expr_parenthesized] = STATE(3656), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3681), - [sym_val_variable] = STATE(3654), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3566), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1685), - [sym__unquoted_with_expr] = STATE(1995), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1073), + [1039] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3619), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1605), + [sym__unquoted_with_expr] = STATE(1985), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1039), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3384), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3386), - [anon_sym_DOT_DOT_LT] = ACTIONS(3386), - [anon_sym_null] = ACTIONS(3388), - [anon_sym_true] = ACTIONS(3390), - [anon_sym_false] = ACTIONS(3390), - [aux_sym__val_number_decimal_token1] = ACTIONS(3392), - [aux_sym__val_number_decimal_token2] = ACTIONS(3394), - [aux_sym__val_number_decimal_token3] = ACTIONS(3396), - [aux_sym__val_number_decimal_token4] = ACTIONS(3398), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3400), - [aux_sym__val_number_token5] = ACTIONS(3400), - [aux_sym__val_number_token6] = ACTIONS(3400), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3402), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1074] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3825), - [sym_expr_parenthesized] = STATE(3656), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3681), - [sym_val_variable] = STATE(3654), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3566), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1686), - [sym__unquoted_with_expr] = STATE(1997), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1074), + [1040] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3620), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1606), + [sym__unquoted_with_expr] = STATE(1991), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1040), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3384), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3386), - [anon_sym_DOT_DOT_LT] = ACTIONS(3386), - [anon_sym_null] = ACTIONS(3388), - [anon_sym_true] = ACTIONS(3390), - [anon_sym_false] = ACTIONS(3390), - [aux_sym__val_number_decimal_token1] = ACTIONS(3392), - [aux_sym__val_number_decimal_token2] = ACTIONS(3394), - [aux_sym__val_number_decimal_token3] = ACTIONS(3396), - [aux_sym__val_number_decimal_token4] = ACTIONS(3398), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3400), - [aux_sym__val_number_token5] = ACTIONS(3400), - [aux_sym__val_number_token6] = ACTIONS(3400), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3402), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1075] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3826), - [sym_expr_parenthesized] = STATE(3656), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3681), - [sym_val_variable] = STATE(3654), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3566), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1687), - [sym__unquoted_with_expr] = STATE(1998), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1075), + [1041] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3621), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1607), + [sym__unquoted_with_expr] = STATE(1993), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1041), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3384), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3386), - [anon_sym_DOT_DOT_LT] = ACTIONS(3386), - [anon_sym_null] = ACTIONS(3388), - [anon_sym_true] = ACTIONS(3390), - [anon_sym_false] = ACTIONS(3390), - [aux_sym__val_number_decimal_token1] = ACTIONS(3392), - [aux_sym__val_number_decimal_token2] = ACTIONS(3394), - [aux_sym__val_number_decimal_token3] = ACTIONS(3396), - [aux_sym__val_number_decimal_token4] = ACTIONS(3398), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3400), - [aux_sym__val_number_token5] = ACTIONS(3400), - [aux_sym__val_number_token6] = ACTIONS(3400), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3402), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1076] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(2393), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1681), - [sym__unquoted_with_expr] = STATE(1990), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1076), + [1042] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3622), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1608), + [sym__unquoted_with_expr] = STATE(1994), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1042), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1077] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(2405), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1682), - [sym__unquoted_with_expr] = STATE(1991), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1077), + [1043] = { + [sym_expr_unary] = STATE(2325), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2325), + [sym__expr_binary_expression] = STATE(2367), + [sym_expr_parenthesized] = STATE(1976), + [sym_val_range] = STATE(2325), + [sym__val_range] = STATE(7034), + [sym__val_range_with_end] = STATE(6930), + [sym__value] = STATE(2325), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(1415), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_unquoted] = STATE(2103), + [sym__unquoted_with_expr] = STATE(2373), + [sym__unquoted_anonymous_prefix] = STATE(6777), + [sym_comment] = STATE(1043), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(3348), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3350), + [anon_sym_DOT_DOT_LT] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [aux_sym__val_number_decimal_token1] = ACTIONS(3356), + [aux_sym__val_number_decimal_token2] = ACTIONS(3358), + [aux_sym__val_number_decimal_token3] = ACTIONS(3360), + [aux_sym__val_number_decimal_token4] = ACTIONS(3362), + [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(3364), + [aux_sym__val_number_token5] = ACTIONS(3364), + [aux_sym__val_number_token6] = ACTIONS(3364), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3366), + [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(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3318), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(121), + }, + [1044] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3209), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1602), + [sym__unquoted_with_expr] = STATE(1955), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1044), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1078] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(1992), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1683), - [sym__unquoted_with_expr] = STATE(1993), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1078), + [1045] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3210), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1603), + [sym__unquoted_with_expr] = STATE(1964), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1045), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1079] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(2411), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1684), - [sym__unquoted_with_expr] = STATE(1994), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1079), + [1046] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3211), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1604), + [sym__unquoted_with_expr] = STATE(1969), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1046), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1080] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(2414), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1685), - [sym__unquoted_with_expr] = STATE(1995), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1080), + [1047] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3212), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1605), + [sym__unquoted_with_expr] = STATE(1985), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1047), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1081] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(2293), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1686), - [sym__unquoted_with_expr] = STATE(1997), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1081), + [1048] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3214), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1607), + [sym__unquoted_with_expr] = STATE(1993), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1048), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1082] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(2298), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(1432), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1687), - [sym__unquoted_with_expr] = STATE(1998), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1082), + [1049] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3215), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1608), + [sym__unquoted_with_expr] = STATE(1994), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1049), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3228), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3230), - [anon_sym_DOT_DOT_LT] = ACTIONS(3230), - [anon_sym_null] = ACTIONS(3232), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [aux_sym__val_number_decimal_token1] = ACTIONS(3236), - [aux_sym__val_number_decimal_token2] = ACTIONS(3238), - [aux_sym__val_number_decimal_token3] = ACTIONS(3240), - [aux_sym__val_number_decimal_token4] = ACTIONS(3242), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3244), - [aux_sym__val_number_token5] = ACTIONS(3244), - [aux_sym__val_number_token6] = ACTIONS(3244), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3246), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1083] = { - [sym_comment] = STATE(1083), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT] = ACTIONS(3404), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(3406), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(3), - }, - [1084] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3831), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1675), - [sym__unquoted_with_expr] = STATE(2130), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1084), + [1050] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3216), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1609), + [sym__unquoted_with_expr] = STATE(2008), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1050), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1085] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3832), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1676), - [sym__unquoted_with_expr] = STATE(1984), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1085), + [1051] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(2011), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1610), + [sym__unquoted_with_expr] = STATE(2015), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1051), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1086] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3833), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1677), - [sym__unquoted_with_expr] = STATE(1985), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1086), + [1052] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3217), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1611), + [sym__unquoted_with_expr] = STATE(1956), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1052), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1087] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3834), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1678), - [sym__unquoted_with_expr] = STATE(1986), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1087), + [1053] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3218), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1612), + [sym__unquoted_with_expr] = STATE(1878), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1053), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1088] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3835), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1679), - [sym__unquoted_with_expr] = STATE(1988), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1088), + [1054] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3219), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1613), + [sym__unquoted_with_expr] = STATE(1881), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1054), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1089] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3810), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1680), - [sym__unquoted_with_expr] = STATE(1989), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1089), + [1055] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3220), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3092), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2709), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1614), + [sym__unquoted_with_expr] = STATE(1886), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1055), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3276), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3278), + [anon_sym_DOT_DOT_LT] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [anon_sym_true] = ACTIONS(3282), + [anon_sym_false] = ACTIONS(3282), + [aux_sym__val_number_decimal_token1] = ACTIONS(3284), + [aux_sym__val_number_decimal_token2] = ACTIONS(3286), + [aux_sym__val_number_decimal_token3] = ACTIONS(3288), + [aux_sym__val_number_decimal_token4] = ACTIONS(3290), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3292), + [aux_sym__val_number_token5] = ACTIONS(3292), + [aux_sym__val_number_token6] = ACTIONS(3292), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3294), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1090] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1681), - [sym__unquoted_with_expr] = STATE(1990), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1090), + [1056] = { + [sym_expr_unary] = STATE(2325), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2325), + [sym__expr_binary_expression] = STATE(2374), + [sym_expr_parenthesized] = STATE(1976), + [sym_val_range] = STATE(2325), + [sym__val_range] = STATE(7034), + [sym__val_range_with_end] = STATE(6930), + [sym__value] = STATE(2325), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(1415), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_unquoted] = STATE(2116), + [sym__unquoted_with_expr] = STATE(2380), + [sym__unquoted_anonymous_prefix] = STATE(6777), + [sym_comment] = STATE(1056), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(3348), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3350), + [anon_sym_DOT_DOT_LT] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [aux_sym__val_number_decimal_token1] = ACTIONS(3356), + [aux_sym__val_number_decimal_token2] = ACTIONS(3358), + [aux_sym__val_number_decimal_token3] = ACTIONS(3360), + [aux_sym__val_number_decimal_token4] = ACTIONS(3362), + [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(3364), + [aux_sym__val_number_token5] = ACTIONS(3364), + [aux_sym__val_number_token6] = ACTIONS(3364), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3366), + [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(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3318), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(121), + }, + [1057] = { + [sym_expr_unary] = STATE(2325), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2325), + [sym__expr_binary_expression] = STATE(2307), + [sym_expr_parenthesized] = STATE(1976), + [sym_val_range] = STATE(2325), + [sym__val_range] = STATE(7034), + [sym__val_range_with_end] = STATE(6930), + [sym__value] = STATE(2325), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(1415), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_unquoted] = STATE(2118), + [sym__unquoted_with_expr] = STATE(2310), + [sym__unquoted_anonymous_prefix] = STATE(6777), + [sym_comment] = STATE(1057), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(3348), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3350), + [anon_sym_DOT_DOT_LT] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [aux_sym__val_number_decimal_token1] = ACTIONS(3356), + [aux_sym__val_number_decimal_token2] = ACTIONS(3358), + [aux_sym__val_number_decimal_token3] = ACTIONS(3360), + [aux_sym__val_number_decimal_token4] = ACTIONS(3362), + [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(3364), + [aux_sym__val_number_token5] = ACTIONS(3364), + [aux_sym__val_number_token6] = ACTIONS(3364), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3366), + [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(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3318), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(121), + }, + [1058] = { + [sym_expr_unary] = STATE(2325), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2325), + [sym__expr_binary_expression] = STATE(2311), + [sym_expr_parenthesized] = STATE(1976), + [sym_val_range] = STATE(2325), + [sym__val_range] = STATE(7034), + [sym__val_range_with_end] = STATE(6930), + [sym__value] = STATE(2325), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(1415), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_unquoted] = STATE(2119), + [sym__unquoted_with_expr] = STATE(2314), + [sym__unquoted_anonymous_prefix] = STATE(6777), + [sym_comment] = STATE(1058), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(1026), + [anon_sym_DASH2] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(3348), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3350), + [anon_sym_DOT_DOT_LT] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [aux_sym__val_number_decimal_token1] = ACTIONS(3356), + [aux_sym__val_number_decimal_token2] = ACTIONS(3358), + [aux_sym__val_number_decimal_token3] = ACTIONS(3360), + [aux_sym__val_number_decimal_token4] = ACTIONS(3362), + [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(3364), + [aux_sym__val_number_token5] = ACTIONS(3364), + [aux_sym__val_number_token6] = ACTIONS(3364), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3366), + [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(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3318), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(121), + }, + [1059] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3631), + [sym_expr_parenthesized] = STATE(3465), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3570), + [sym_val_variable] = STATE(3463), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3363), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1602), + [sym__unquoted_with_expr] = STATE(1955), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1059), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3388), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3390), + [anon_sym_DOT_DOT_LT] = ACTIONS(3390), + [anon_sym_null] = ACTIONS(3392), + [anon_sym_true] = ACTIONS(3394), + [anon_sym_false] = ACTIONS(3394), + [aux_sym__val_number_decimal_token1] = ACTIONS(3396), + [aux_sym__val_number_decimal_token2] = ACTIONS(3398), + [aux_sym__val_number_decimal_token3] = ACTIONS(3400), + [aux_sym__val_number_decimal_token4] = ACTIONS(3402), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3404), + [aux_sym__val_number_token5] = ACTIONS(3404), + [aux_sym__val_number_token6] = ACTIONS(3404), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3406), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1091] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3837), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1682), - [sym__unquoted_with_expr] = STATE(1991), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1091), + [1060] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3632), + [sym_expr_parenthesized] = STATE(3465), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3570), + [sym_val_variable] = STATE(3463), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3363), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1603), + [sym__unquoted_with_expr] = STATE(1964), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1060), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3388), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3390), + [anon_sym_DOT_DOT_LT] = ACTIONS(3390), + [anon_sym_null] = ACTIONS(3392), + [anon_sym_true] = ACTIONS(3394), + [anon_sym_false] = ACTIONS(3394), + [aux_sym__val_number_decimal_token1] = ACTIONS(3396), + [aux_sym__val_number_decimal_token2] = ACTIONS(3398), + [aux_sym__val_number_decimal_token3] = ACTIONS(3400), + [aux_sym__val_number_decimal_token4] = ACTIONS(3402), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3404), + [aux_sym__val_number_token5] = ACTIONS(3404), + [aux_sym__val_number_token6] = ACTIONS(3404), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3406), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1092] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(1992), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1683), - [sym__unquoted_with_expr] = STATE(1993), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1092), + [1061] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3633), + [sym_expr_parenthesized] = STATE(3465), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3570), + [sym_val_variable] = STATE(3463), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3363), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1604), + [sym__unquoted_with_expr] = STATE(1969), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1061), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3388), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3390), + [anon_sym_DOT_DOT_LT] = ACTIONS(3390), + [anon_sym_null] = ACTIONS(3392), + [anon_sym_true] = ACTIONS(3394), + [anon_sym_false] = ACTIONS(3394), + [aux_sym__val_number_decimal_token1] = ACTIONS(3396), + [aux_sym__val_number_decimal_token2] = ACTIONS(3398), + [aux_sym__val_number_decimal_token3] = ACTIONS(3400), + [aux_sym__val_number_decimal_token4] = ACTIONS(3402), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3404), + [aux_sym__val_number_token5] = ACTIONS(3404), + [aux_sym__val_number_token6] = ACTIONS(3404), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3406), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1093] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3838), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1684), - [sym__unquoted_with_expr] = STATE(1994), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1093), + [1062] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3634), + [sym_expr_parenthesized] = STATE(3465), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3570), + [sym_val_variable] = STATE(3463), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3363), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1605), + [sym__unquoted_with_expr] = STATE(1985), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1062), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3388), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3390), + [anon_sym_DOT_DOT_LT] = ACTIONS(3390), + [anon_sym_null] = ACTIONS(3392), + [anon_sym_true] = ACTIONS(3394), + [anon_sym_false] = ACTIONS(3394), + [aux_sym__val_number_decimal_token1] = ACTIONS(3396), + [aux_sym__val_number_decimal_token2] = ACTIONS(3398), + [aux_sym__val_number_decimal_token3] = ACTIONS(3400), + [aux_sym__val_number_decimal_token4] = ACTIONS(3402), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3404), + [aux_sym__val_number_token5] = ACTIONS(3404), + [aux_sym__val_number_token6] = ACTIONS(3404), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3406), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1094] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3839), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1685), - [sym__unquoted_with_expr] = STATE(1995), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1094), + [1063] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3635), + [sym_expr_parenthesized] = STATE(3465), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3570), + [sym_val_variable] = STATE(3463), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3363), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1606), + [sym__unquoted_with_expr] = STATE(1991), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1063), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3388), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3390), + [anon_sym_DOT_DOT_LT] = ACTIONS(3390), + [anon_sym_null] = ACTIONS(3392), + [anon_sym_true] = ACTIONS(3394), + [anon_sym_false] = ACTIONS(3394), + [aux_sym__val_number_decimal_token1] = ACTIONS(3396), + [aux_sym__val_number_decimal_token2] = ACTIONS(3398), + [aux_sym__val_number_decimal_token3] = ACTIONS(3400), + [aux_sym__val_number_decimal_token4] = ACTIONS(3402), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3404), + [aux_sym__val_number_token5] = ACTIONS(3404), + [aux_sym__val_number_token6] = ACTIONS(3404), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3406), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1095] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3840), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1686), - [sym__unquoted_with_expr] = STATE(1997), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1095), + [1064] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3636), + [sym_expr_parenthesized] = STATE(3465), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3570), + [sym_val_variable] = STATE(3463), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3363), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1607), + [sym__unquoted_with_expr] = STATE(1993), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1064), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3388), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3390), + [anon_sym_DOT_DOT_LT] = ACTIONS(3390), + [anon_sym_null] = ACTIONS(3392), + [anon_sym_true] = ACTIONS(3394), + [anon_sym_false] = ACTIONS(3394), + [aux_sym__val_number_decimal_token1] = ACTIONS(3396), + [aux_sym__val_number_decimal_token2] = ACTIONS(3398), + [aux_sym__val_number_decimal_token3] = ACTIONS(3400), + [aux_sym__val_number_decimal_token4] = ACTIONS(3402), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3404), + [aux_sym__val_number_token5] = ACTIONS(3404), + [aux_sym__val_number_token6] = ACTIONS(3404), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3406), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1096] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3811), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3644), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3552), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1687), - [sym__unquoted_with_expr] = STATE(1998), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1096), + [1065] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3613), + [sym_expr_parenthesized] = STATE(3465), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3570), + [sym_val_variable] = STATE(3463), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3363), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1608), + [sym__unquoted_with_expr] = STATE(1994), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1065), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3206), + [anon_sym_DOT_DOT] = ACTIONS(3388), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3208), - [anon_sym_DOT_DOT_LT] = ACTIONS(3208), - [anon_sym_null] = ACTIONS(3210), - [anon_sym_true] = ACTIONS(3212), - [anon_sym_false] = ACTIONS(3212), - [aux_sym__val_number_decimal_token1] = ACTIONS(3214), - [aux_sym__val_number_decimal_token2] = ACTIONS(3216), - [aux_sym__val_number_decimal_token3] = ACTIONS(3218), - [aux_sym__val_number_decimal_token4] = ACTIONS(3220), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3390), + [anon_sym_DOT_DOT_LT] = ACTIONS(3390), + [anon_sym_null] = ACTIONS(3392), + [anon_sym_true] = ACTIONS(3394), + [anon_sym_false] = ACTIONS(3394), + [aux_sym__val_number_decimal_token1] = ACTIONS(3396), + [aux_sym__val_number_decimal_token2] = ACTIONS(3398), + [aux_sym__val_number_decimal_token3] = ACTIONS(3400), + [aux_sym__val_number_decimal_token4] = ACTIONS(3402), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3222), - [aux_sym__val_number_token5] = ACTIONS(3222), - [aux_sym__val_number_token6] = ACTIONS(3222), + [aux_sym__val_number_token4] = ACTIONS(3404), + [aux_sym__val_number_token5] = ACTIONS(3404), + [aux_sym__val_number_token6] = ACTIONS(3404), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3224), + [sym_val_date] = ACTIONS(3406), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1097] = { - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2460), - [sym__expr_binary_expression] = STATE(2463), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(2460), - [sym__val_range] = STATE(7738), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(2160), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(1454), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_unquoted] = STATE(2207), - [sym__unquoted_with_expr] = STATE(2464), - [sym__unquoted_anonymous_prefix] = STATE(7042), - [sym_comment] = STATE(1097), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_DASH2] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(3354), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3356), - [anon_sym_DOT_DOT_LT] = ACTIONS(3356), - [anon_sym_null] = ACTIONS(3358), - [anon_sym_true] = ACTIONS(3360), - [anon_sym_false] = ACTIONS(3360), - [aux_sym__val_number_decimal_token1] = ACTIONS(3362), - [aux_sym__val_number_decimal_token2] = ACTIONS(3364), - [aux_sym__val_number_decimal_token3] = ACTIONS(3366), - [aux_sym__val_number_decimal_token4] = ACTIONS(3368), - [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(3370), - [aux_sym__val_number_token5] = ACTIONS(3370), - [aux_sym__val_number_token6] = ACTIONS(3370), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3372), - [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3374), + [1066] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3637), + [sym_expr_parenthesized] = STATE(3465), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3570), + [sym_val_variable] = STATE(3463), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3363), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1609), + [sym__unquoted_with_expr] = STATE(2008), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1066), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1012), + [anon_sym_DASH2] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3388), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3390), + [anon_sym_DOT_DOT_LT] = ACTIONS(3390), + [anon_sym_null] = ACTIONS(3392), + [anon_sym_true] = ACTIONS(3394), + [anon_sym_false] = ACTIONS(3394), + [aux_sym__val_number_decimal_token1] = ACTIONS(3396), + [aux_sym__val_number_decimal_token2] = ACTIONS(3398), + [aux_sym__val_number_decimal_token3] = ACTIONS(3400), + [aux_sym__val_number_decimal_token4] = ACTIONS(3402), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3404), + [aux_sym__val_number_token5] = ACTIONS(3404), + [aux_sym__val_number_token6] = ACTIONS(3404), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3406), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(121), + [sym_raw_string_begin] = ACTIONS(247), }, - [1098] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(1992), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1683), - [sym__unquoted_with_expr] = STATE(1993), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1098), + [1067] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(2011), + [sym_expr_parenthesized] = STATE(3465), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3570), + [sym_val_variable] = STATE(3463), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3363), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1610), + [sym__unquoted_with_expr] = STATE(2015), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1067), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3388), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3390), + [anon_sym_DOT_DOT_LT] = ACTIONS(3390), + [anon_sym_null] = ACTIONS(3392), + [anon_sym_true] = ACTIONS(3394), + [anon_sym_false] = ACTIONS(3394), + [aux_sym__val_number_decimal_token1] = ACTIONS(3396), + [aux_sym__val_number_decimal_token2] = ACTIONS(3398), + [aux_sym__val_number_decimal_token3] = ACTIONS(3400), + [aux_sym__val_number_decimal_token4] = ACTIONS(3402), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3404), + [aux_sym__val_number_token5] = ACTIONS(3404), + [aux_sym__val_number_token6] = ACTIONS(3404), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3406), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1099] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3398), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1684), - [sym__unquoted_with_expr] = STATE(1994), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1099), + [1068] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3638), + [sym_expr_parenthesized] = STATE(3465), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3570), + [sym_val_variable] = STATE(3463), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3363), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1611), + [sym__unquoted_with_expr] = STATE(1956), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1068), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3388), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3390), + [anon_sym_DOT_DOT_LT] = ACTIONS(3390), + [anon_sym_null] = ACTIONS(3392), + [anon_sym_true] = ACTIONS(3394), + [anon_sym_false] = ACTIONS(3394), + [aux_sym__val_number_decimal_token1] = ACTIONS(3396), + [aux_sym__val_number_decimal_token2] = ACTIONS(3398), + [aux_sym__val_number_decimal_token3] = ACTIONS(3400), + [aux_sym__val_number_decimal_token4] = ACTIONS(3402), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3404), + [aux_sym__val_number_token5] = ACTIONS(3404), + [aux_sym__val_number_token6] = ACTIONS(3404), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3406), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1100] = { - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2460), - [sym__expr_binary_expression] = STATE(2469), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(2460), - [sym__val_range] = STATE(7738), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(2160), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(1454), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_unquoted] = STATE(2241), - [sym__unquoted_with_expr] = STATE(2471), - [sym__unquoted_anonymous_prefix] = STATE(7042), - [sym_comment] = STATE(1100), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_DASH2] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(3354), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3356), - [anon_sym_DOT_DOT_LT] = ACTIONS(3356), - [anon_sym_null] = ACTIONS(3358), - [anon_sym_true] = ACTIONS(3360), - [anon_sym_false] = ACTIONS(3360), - [aux_sym__val_number_decimal_token1] = ACTIONS(3362), - [aux_sym__val_number_decimal_token2] = ACTIONS(3364), - [aux_sym__val_number_decimal_token3] = ACTIONS(3366), - [aux_sym__val_number_decimal_token4] = ACTIONS(3368), - [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(3370), - [aux_sym__val_number_token5] = ACTIONS(3370), - [aux_sym__val_number_token6] = ACTIONS(3370), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3372), - [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3374), + [1069] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3639), + [sym_expr_parenthesized] = STATE(3465), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3570), + [sym_val_variable] = STATE(3463), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3363), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1612), + [sym__unquoted_with_expr] = STATE(1878), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1069), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1012), + [anon_sym_DASH2] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3388), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3390), + [anon_sym_DOT_DOT_LT] = ACTIONS(3390), + [anon_sym_null] = ACTIONS(3392), + [anon_sym_true] = ACTIONS(3394), + [anon_sym_false] = ACTIONS(3394), + [aux_sym__val_number_decimal_token1] = ACTIONS(3396), + [aux_sym__val_number_decimal_token2] = ACTIONS(3398), + [aux_sym__val_number_decimal_token3] = ACTIONS(3400), + [aux_sym__val_number_decimal_token4] = ACTIONS(3402), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3404), + [aux_sym__val_number_token5] = ACTIONS(3404), + [aux_sym__val_number_token6] = ACTIONS(3404), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3406), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(121), + [sym_raw_string_begin] = ACTIONS(247), }, - [1101] = { - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2460), - [sym__expr_binary_expression] = STATE(2472), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(2460), - [sym__val_range] = STATE(7738), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(2160), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(1454), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_unquoted] = STATE(2149), - [sym__unquoted_with_expr] = STATE(2473), - [sym__unquoted_anonymous_prefix] = STATE(7042), - [sym_comment] = STATE(1101), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_DASH2] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(3354), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3356), - [anon_sym_DOT_DOT_LT] = ACTIONS(3356), - [anon_sym_null] = ACTIONS(3358), - [anon_sym_true] = ACTIONS(3360), - [anon_sym_false] = ACTIONS(3360), - [aux_sym__val_number_decimal_token1] = ACTIONS(3362), - [aux_sym__val_number_decimal_token2] = ACTIONS(3364), - [aux_sym__val_number_decimal_token3] = ACTIONS(3366), - [aux_sym__val_number_decimal_token4] = ACTIONS(3368), - [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(3370), - [aux_sym__val_number_token5] = ACTIONS(3370), - [aux_sym__val_number_token6] = ACTIONS(3370), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3372), - [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3374), + [1070] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3640), + [sym_expr_parenthesized] = STATE(3465), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3570), + [sym_val_variable] = STATE(3463), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3363), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1613), + [sym__unquoted_with_expr] = STATE(1881), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1070), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1012), + [anon_sym_DASH2] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3388), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3390), + [anon_sym_DOT_DOT_LT] = ACTIONS(3390), + [anon_sym_null] = ACTIONS(3392), + [anon_sym_true] = ACTIONS(3394), + [anon_sym_false] = ACTIONS(3394), + [aux_sym__val_number_decimal_token1] = ACTIONS(3396), + [aux_sym__val_number_decimal_token2] = ACTIONS(3398), + [aux_sym__val_number_decimal_token3] = ACTIONS(3400), + [aux_sym__val_number_decimal_token4] = ACTIONS(3402), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3404), + [aux_sym__val_number_token5] = ACTIONS(3404), + [aux_sym__val_number_token6] = ACTIONS(3404), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3406), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(121), + [sym_raw_string_begin] = ACTIONS(247), }, - [1102] = { - [sym_ctrl_do] = STATE(4937), - [sym_ctrl_if] = STATE(4937), - [sym_ctrl_match] = STATE(4937), - [sym_ctrl_try] = STATE(4937), - [sym__expression] = STATE(4937), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3844), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2977), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_comment] = STATE(1102), - [sym__newline] = ACTIONS(3408), - [anon_sym_SEMI] = ACTIONS(3408), - [anon_sym_PIPE] = ACTIONS(3408), - [anon_sym_err_GT_PIPE] = ACTIONS(3408), - [anon_sym_out_GT_PIPE] = ACTIONS(3408), - [anon_sym_e_GT_PIPE] = ACTIONS(3408), - [anon_sym_o_GT_PIPE] = ACTIONS(3408), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3408), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3408), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3408), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3408), + [1071] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3641), + [sym_expr_parenthesized] = STATE(3465), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3570), + [sym_val_variable] = STATE(3463), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3363), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1614), + [sym__unquoted_with_expr] = STATE(1886), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1071), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_do] = ACTIONS(3410), - [anon_sym_if] = ACTIONS(3412), - [anon_sym_match] = ACTIONS(3414), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(3408), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(3416), + [anon_sym_DOT_DOT] = ACTIONS(3388), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(207), - [anon_sym_DOT_DOT_LT] = ACTIONS(207), - [anon_sym_null] = ACTIONS(3418), - [anon_sym_true] = ACTIONS(3420), - [anon_sym_false] = ACTIONS(3420), - [aux_sym__val_number_decimal_token1] = ACTIONS(3422), - [aux_sym__val_number_decimal_token2] = ACTIONS(3424), - [aux_sym__val_number_decimal_token3] = ACTIONS(3426), - [aux_sym__val_number_decimal_token4] = ACTIONS(3428), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3390), + [anon_sym_DOT_DOT_LT] = ACTIONS(3390), + [anon_sym_null] = ACTIONS(3392), + [anon_sym_true] = ACTIONS(3394), + [anon_sym_false] = ACTIONS(3394), + [aux_sym__val_number_decimal_token1] = ACTIONS(3396), + [aux_sym__val_number_decimal_token2] = ACTIONS(3398), + [aux_sym__val_number_decimal_token3] = ACTIONS(3400), + [aux_sym__val_number_decimal_token4] = ACTIONS(3402), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(223), - [aux_sym__val_number_token5] = ACTIONS(223), - [aux_sym__val_number_token6] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3404), + [aux_sym__val_number_token5] = ACTIONS(3404), + [aux_sym__val_number_token6] = ACTIONS(3404), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), + [sym_val_date] = ACTIONS(3406), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_COLON2] = ACTIONS(3430), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1103] = { - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2460), - [sym__expr_binary_expression] = STATE(2474), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(2460), - [sym__val_range] = STATE(7738), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(2160), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(1454), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_unquoted] = STATE(2188), - [sym__unquoted_with_expr] = STATE(2475), - [sym__unquoted_anonymous_prefix] = STATE(7042), - [sym_comment] = STATE(1103), + [1072] = { + [sym_expr_unary] = STATE(2325), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2325), + [sym__expr_binary_expression] = STATE(2315), + [sym_expr_parenthesized] = STATE(1976), + [sym_val_range] = STATE(2325), + [sym__val_range] = STATE(7034), + [sym__val_range_with_end] = STATE(6930), + [sym__value] = STATE(2325), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(1415), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_unquoted] = STATE(2120), + [sym__unquoted_with_expr] = STATE(2316), + [sym__unquoted_anonymous_prefix] = STATE(6777), + [sym_comment] = STATE(1072), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1026), [anon_sym_DASH2] = ACTIONS(47), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(3354), + [anon_sym_DOT_DOT] = ACTIONS(3348), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3356), - [anon_sym_DOT_DOT_LT] = ACTIONS(3356), - [anon_sym_null] = ACTIONS(3358), - [anon_sym_true] = ACTIONS(3360), - [anon_sym_false] = ACTIONS(3360), - [aux_sym__val_number_decimal_token1] = ACTIONS(3362), - [aux_sym__val_number_decimal_token2] = ACTIONS(3364), - [aux_sym__val_number_decimal_token3] = ACTIONS(3366), - [aux_sym__val_number_decimal_token4] = ACTIONS(3368), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3350), + [anon_sym_DOT_DOT_LT] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [aux_sym__val_number_decimal_token1] = ACTIONS(3356), + [aux_sym__val_number_decimal_token2] = ACTIONS(3358), + [aux_sym__val_number_decimal_token3] = ACTIONS(3360), + [aux_sym__val_number_decimal_token4] = ACTIONS(3362), [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(3370), - [aux_sym__val_number_token5] = ACTIONS(3370), - [aux_sym__val_number_token6] = ACTIONS(3370), + [aux_sym__val_number_token4] = ACTIONS(3364), + [aux_sym__val_number_token5] = ACTIONS(3364), + [aux_sym__val_number_token6] = ACTIONS(3364), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3372), + [sym_val_date] = ACTIONS(3366), [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3374), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3318), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(121), }, - [1104] = { - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2460), - [sym__expr_binary_expression] = STATE(2476), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(2460), - [sym__val_range] = STATE(7738), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(2160), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(1454), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_unquoted] = STATE(2209), - [sym__unquoted_with_expr] = STATE(2477), - [sym__unquoted_anonymous_prefix] = STATE(7042), - [sym_comment] = STATE(1104), + [1073] = { + [sym_expr_unary] = STATE(2325), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2325), + [sym__expr_binary_expression] = STATE(2317), + [sym_expr_parenthesized] = STATE(1976), + [sym_val_range] = STATE(2325), + [sym__val_range] = STATE(7034), + [sym__val_range_with_end] = STATE(6930), + [sym__value] = STATE(2325), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(1415), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_unquoted] = STATE(2128), + [sym__unquoted_with_expr] = STATE(2319), + [sym__unquoted_anonymous_prefix] = STATE(6777), + [sym_comment] = STATE(1073), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1026), [anon_sym_DASH2] = ACTIONS(47), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(3354), + [anon_sym_DOT_DOT] = ACTIONS(3348), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3356), - [anon_sym_DOT_DOT_LT] = ACTIONS(3356), - [anon_sym_null] = ACTIONS(3358), - [anon_sym_true] = ACTIONS(3360), - [anon_sym_false] = ACTIONS(3360), - [aux_sym__val_number_decimal_token1] = ACTIONS(3362), - [aux_sym__val_number_decimal_token2] = ACTIONS(3364), - [aux_sym__val_number_decimal_token3] = ACTIONS(3366), - [aux_sym__val_number_decimal_token4] = ACTIONS(3368), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3350), + [anon_sym_DOT_DOT_LT] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [aux_sym__val_number_decimal_token1] = ACTIONS(3356), + [aux_sym__val_number_decimal_token2] = ACTIONS(3358), + [aux_sym__val_number_decimal_token3] = ACTIONS(3360), + [aux_sym__val_number_decimal_token4] = ACTIONS(3362), [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(3370), - [aux_sym__val_number_token5] = ACTIONS(3370), - [aux_sym__val_number_token6] = ACTIONS(3370), + [aux_sym__val_number_token4] = ACTIONS(3364), + [aux_sym__val_number_token5] = ACTIONS(3364), + [aux_sym__val_number_token6] = ACTIONS(3364), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3372), + [sym_val_date] = ACTIONS(3366), [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3374), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3318), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(121), }, - [1105] = { - [sym_comment] = STATE(1105), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT] = ACTIONS(3432), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(3434), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(3), - }, - [1106] = { - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2460), - [sym__expr_binary_expression] = STATE(2478), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(2460), - [sym__val_range] = STATE(7738), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(2160), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(1454), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_unquoted] = STATE(2265), - [sym__unquoted_with_expr] = STATE(2479), - [sym__unquoted_anonymous_prefix] = STATE(7042), - [sym_comment] = STATE(1106), + [1074] = { + [sym_expr_unary] = STATE(2325), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2325), + [sym__expr_binary_expression] = STATE(2320), + [sym_expr_parenthesized] = STATE(1976), + [sym_val_range] = STATE(2325), + [sym__val_range] = STATE(7034), + [sym__val_range_with_end] = STATE(6930), + [sym__value] = STATE(2325), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(1415), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_unquoted] = STATE(2121), + [sym__unquoted_with_expr] = STATE(2322), + [sym__unquoted_anonymous_prefix] = STATE(6777), + [sym_comment] = STATE(1074), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1026), [anon_sym_DASH2] = ACTIONS(47), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(3354), + [anon_sym_DOT_DOT] = ACTIONS(3348), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3356), - [anon_sym_DOT_DOT_LT] = ACTIONS(3356), - [anon_sym_null] = ACTIONS(3358), - [anon_sym_true] = ACTIONS(3360), - [anon_sym_false] = ACTIONS(3360), - [aux_sym__val_number_decimal_token1] = ACTIONS(3362), - [aux_sym__val_number_decimal_token2] = ACTIONS(3364), - [aux_sym__val_number_decimal_token3] = ACTIONS(3366), - [aux_sym__val_number_decimal_token4] = ACTIONS(3368), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3350), + [anon_sym_DOT_DOT_LT] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [aux_sym__val_number_decimal_token1] = ACTIONS(3356), + [aux_sym__val_number_decimal_token2] = ACTIONS(3358), + [aux_sym__val_number_decimal_token3] = ACTIONS(3360), + [aux_sym__val_number_decimal_token4] = ACTIONS(3362), [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(3370), - [aux_sym__val_number_token5] = ACTIONS(3370), - [aux_sym__val_number_token6] = ACTIONS(3370), + [aux_sym__val_number_token4] = ACTIONS(3364), + [aux_sym__val_number_token5] = ACTIONS(3364), + [aux_sym__val_number_token6] = ACTIONS(3364), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3372), + [sym_val_date] = ACTIONS(3366), [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3374), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3318), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(121), }, - [1107] = { - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2460), - [sym__expr_binary_expression] = STATE(2480), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(2460), - [sym__val_range] = STATE(7738), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(2160), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(1454), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_unquoted] = STATE(2279), - [sym__unquoted_with_expr] = STATE(2481), - [sym__unquoted_anonymous_prefix] = STATE(7042), - [sym_comment] = STATE(1107), + [1075] = { + [sym_expr_unary] = STATE(2325), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2325), + [sym__expr_binary_expression] = STATE(2324), + [sym_expr_parenthesized] = STATE(1976), + [sym_val_range] = STATE(2325), + [sym__val_range] = STATE(7034), + [sym__val_range_with_end] = STATE(6930), + [sym__value] = STATE(2325), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(1415), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_unquoted] = STATE(2096), + [sym__unquoted_with_expr] = STATE(2326), + [sym__unquoted_anonymous_prefix] = STATE(6777), + [sym_comment] = STATE(1075), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1026), [anon_sym_DASH2] = ACTIONS(47), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(3354), + [anon_sym_DOT_DOT] = ACTIONS(3348), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3356), - [anon_sym_DOT_DOT_LT] = ACTIONS(3356), - [anon_sym_null] = ACTIONS(3358), - [anon_sym_true] = ACTIONS(3360), - [anon_sym_false] = ACTIONS(3360), - [aux_sym__val_number_decimal_token1] = ACTIONS(3362), - [aux_sym__val_number_decimal_token2] = ACTIONS(3364), - [aux_sym__val_number_decimal_token3] = ACTIONS(3366), - [aux_sym__val_number_decimal_token4] = ACTIONS(3368), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3350), + [anon_sym_DOT_DOT_LT] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [aux_sym__val_number_decimal_token1] = ACTIONS(3356), + [aux_sym__val_number_decimal_token2] = ACTIONS(3358), + [aux_sym__val_number_decimal_token3] = ACTIONS(3360), + [aux_sym__val_number_decimal_token4] = ACTIONS(3362), [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(3370), - [aux_sym__val_number_token5] = ACTIONS(3370), - [aux_sym__val_number_token6] = ACTIONS(3370), + [aux_sym__val_number_token4] = ACTIONS(3364), + [aux_sym__val_number_token5] = ACTIONS(3364), + [aux_sym__val_number_token6] = ACTIONS(3364), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3372), + [sym_val_date] = ACTIONS(3366), [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3374), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3318), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(121), }, - [1108] = { - [sym_comment] = STATE(1108), - [ts_builtin_sym_end] = ACTIONS(1486), - [anon_sym_STAR_STAR] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_SLASH] = ACTIONS(1484), - [anon_sym_mod] = ACTIONS(1486), - [anon_sym_SLASH_SLASH] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_bit_DASHshl] = ACTIONS(1486), - [anon_sym_bit_DASHshr] = ACTIONS(1486), - [anon_sym_EQ_TILDE] = ACTIONS(1486), - [anon_sym_BANG_TILDE] = ACTIONS(1486), - [anon_sym_bit_DASHand] = ACTIONS(1486), - [anon_sym_bit_DASHxor] = ACTIONS(1486), - [anon_sym_bit_DASHor] = ACTIONS(1486), - [anon_sym_and] = ACTIONS(1486), - [anon_sym_xor] = ACTIONS(1486), - [anon_sym_or] = ACTIONS(1486), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_not_DASHin] = ACTIONS(1486), - [anon_sym_has] = ACTIONS(1486), - [anon_sym_not_DASHhas] = ACTIONS(1486), - [anon_sym_starts_DASHwith] = ACTIONS(1486), - [anon_sym_ends_DASHwith] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(1486), - [anon_sym_BANG_EQ] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1486), - [aux_sym_cmd_identifier_token41] = ACTIONS(1484), - [sym__newline] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_err_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_GT_PIPE] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1484), - [anon_sym_GT2] = ACTIONS(1484), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_in2] = ACTIONS(1484), - [anon_sym_STAR2] = ACTIONS(1484), - [anon_sym_and2] = ACTIONS(1484), - [anon_sym_xor2] = ACTIONS(1484), - [anon_sym_or2] = ACTIONS(1484), - [anon_sym_not_DASHin2] = ACTIONS(1484), - [anon_sym_has2] = ACTIONS(1484), - [anon_sym_not_DASHhas2] = ACTIONS(1484), - [anon_sym_starts_DASHwith2] = ACTIONS(1484), - [anon_sym_ends_DASHwith2] = ACTIONS(1484), - [anon_sym_EQ_EQ2] = ACTIONS(1484), - [anon_sym_BANG_EQ2] = ACTIONS(1484), - [anon_sym_LT2] = ACTIONS(1484), - [anon_sym_LT_EQ2] = ACTIONS(1484), - [anon_sym_GT_EQ2] = ACTIONS(1484), - [anon_sym_EQ_TILDE2] = ACTIONS(1484), - [anon_sym_BANG_TILDE2] = ACTIONS(1484), - [anon_sym_STAR_STAR2] = ACTIONS(1484), - [anon_sym_PLUS_PLUS2] = ACTIONS(1484), - [anon_sym_SLASH2] = ACTIONS(1484), - [anon_sym_mod2] = ACTIONS(1484), - [anon_sym_SLASH_SLASH2] = ACTIONS(1484), - [anon_sym_PLUS2] = ACTIONS(1484), - [anon_sym_bit_DASHshl2] = ACTIONS(1484), - [anon_sym_bit_DASHshr2] = ACTIONS(1484), - [anon_sym_bit_DASHand2] = ACTIONS(1484), - [anon_sym_bit_DASHxor2] = ACTIONS(1484), - [anon_sym_bit_DASHor2] = ACTIONS(1484), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [aux_sym__immediate_decimal_token1] = ACTIONS(3436), - [aux_sym__immediate_decimal_token2] = ACTIONS(3438), - [sym_filesize_unit] = ACTIONS(1484), - [sym_duration_unit] = ACTIONS(1486), - [anon_sym_POUND] = ACTIONS(3), - }, - [1109] = { - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2460), - [sym__expr_binary_expression] = STATE(2482), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(2460), - [sym__val_range] = STATE(7738), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(2160), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(1454), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_unquoted] = STATE(2280), - [sym__unquoted_with_expr] = STATE(2483), - [sym__unquoted_anonymous_prefix] = STATE(7042), - [sym_comment] = STATE(1109), + [1076] = { + [sym_expr_unary] = STATE(2325), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2325), + [sym__expr_binary_expression] = STATE(2329), + [sym_expr_parenthesized] = STATE(1976), + [sym_val_range] = STATE(2325), + [sym__val_range] = STATE(7034), + [sym__val_range_with_end] = STATE(6930), + [sym__value] = STATE(2325), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(1415), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_unquoted] = STATE(2142), + [sym__unquoted_with_expr] = STATE(2333), + [sym__unquoted_anonymous_prefix] = STATE(6777), + [sym_comment] = STATE(1076), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1026), [anon_sym_DASH2] = ACTIONS(47), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(3354), + [anon_sym_DOT_DOT] = ACTIONS(3348), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3356), - [anon_sym_DOT_DOT_LT] = ACTIONS(3356), - [anon_sym_null] = ACTIONS(3358), - [anon_sym_true] = ACTIONS(3360), - [anon_sym_false] = ACTIONS(3360), - [aux_sym__val_number_decimal_token1] = ACTIONS(3362), - [aux_sym__val_number_decimal_token2] = ACTIONS(3364), - [aux_sym__val_number_decimal_token3] = ACTIONS(3366), - [aux_sym__val_number_decimal_token4] = ACTIONS(3368), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3350), + [anon_sym_DOT_DOT_LT] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [aux_sym__val_number_decimal_token1] = ACTIONS(3356), + [aux_sym__val_number_decimal_token2] = ACTIONS(3358), + [aux_sym__val_number_decimal_token3] = ACTIONS(3360), + [aux_sym__val_number_decimal_token4] = ACTIONS(3362), [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(3370), - [aux_sym__val_number_token5] = ACTIONS(3370), - [aux_sym__val_number_token6] = ACTIONS(3370), + [aux_sym__val_number_token4] = ACTIONS(3364), + [aux_sym__val_number_token5] = ACTIONS(3364), + [aux_sym__val_number_token6] = ACTIONS(3364), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3372), + [sym_val_date] = ACTIONS(3366), [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3374), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3318), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(121), }, - [1110] = { - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2460), - [sym__expr_binary_expression] = STATE(2484), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(2460), - [sym__val_range] = STATE(7738), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(2160), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(1454), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_unquoted] = STATE(2182), - [sym__unquoted_with_expr] = STATE(2485), - [sym__unquoted_anonymous_prefix] = STATE(7042), - [sym_comment] = STATE(1110), + [1077] = { + [sym_expr_unary] = STATE(2325), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2325), + [sym__expr_binary_expression] = STATE(2335), + [sym_expr_parenthesized] = STATE(1976), + [sym_val_range] = STATE(2325), + [sym__val_range] = STATE(7034), + [sym__val_range_with_end] = STATE(6930), + [sym__value] = STATE(2325), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(1415), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_unquoted] = STATE(2059), + [sym__unquoted_with_expr] = STATE(2339), + [sym__unquoted_anonymous_prefix] = STATE(6777), + [sym_comment] = STATE(1077), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1026), [anon_sym_DASH2] = ACTIONS(47), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(3354), + [anon_sym_DOT_DOT] = ACTIONS(3348), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3356), - [anon_sym_DOT_DOT_LT] = ACTIONS(3356), - [anon_sym_null] = ACTIONS(3358), - [anon_sym_true] = ACTIONS(3360), - [anon_sym_false] = ACTIONS(3360), - [aux_sym__val_number_decimal_token1] = ACTIONS(3362), - [aux_sym__val_number_decimal_token2] = ACTIONS(3364), - [aux_sym__val_number_decimal_token3] = ACTIONS(3366), - [aux_sym__val_number_decimal_token4] = ACTIONS(3368), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3350), + [anon_sym_DOT_DOT_LT] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [aux_sym__val_number_decimal_token1] = ACTIONS(3356), + [aux_sym__val_number_decimal_token2] = ACTIONS(3358), + [aux_sym__val_number_decimal_token3] = ACTIONS(3360), + [aux_sym__val_number_decimal_token4] = ACTIONS(3362), [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(3370), - [aux_sym__val_number_token5] = ACTIONS(3370), - [aux_sym__val_number_token6] = ACTIONS(3370), + [aux_sym__val_number_token4] = ACTIONS(3364), + [aux_sym__val_number_token5] = ACTIONS(3364), + [aux_sym__val_number_token6] = ACTIONS(3364), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3372), + [sym_val_date] = ACTIONS(3366), [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3374), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3318), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(121), }, - [1111] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3399), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1685), - [sym__unquoted_with_expr] = STATE(1995), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1111), + [1078] = { + [sym_ctrl_do] = STATE(4563), + [sym_ctrl_if] = STATE(4563), + [sym_ctrl_match] = STATE(4563), + [sym_ctrl_try] = STATE(4563), + [sym__expression] = STATE(4563), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3669), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2848), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_comment] = STATE(1078), + [sym__newline] = ACTIONS(3320), + [anon_sym_SEMI] = ACTIONS(3320), + [anon_sym_PIPE] = ACTIONS(3320), + [anon_sym_err_GT_PIPE] = ACTIONS(3320), + [anon_sym_out_GT_PIPE] = ACTIONS(3320), + [anon_sym_e_GT_PIPE] = ACTIONS(3320), + [anon_sym_o_GT_PIPE] = ACTIONS(3320), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3320), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3320), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3320), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3320), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_match] = ACTIONS(3326), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3320), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(3328), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(3330), + [anon_sym_true] = ACTIONS(3332), + [anon_sym_false] = ACTIONS(3332), + [aux_sym__val_number_decimal_token1] = ACTIONS(3334), + [aux_sym__val_number_decimal_token2] = ACTIONS(3336), + [aux_sym__val_number_decimal_token3] = ACTIONS(3338), + [aux_sym__val_number_decimal_token4] = ACTIONS(3340), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(223), + [aux_sym__val_number_token5] = ACTIONS(223), + [aux_sym__val_number_token6] = ACTIONS(223), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(231), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_COLON2] = ACTIONS(3408), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1112] = { - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2460), - [sym__expr_binary_expression] = STATE(2486), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(2460), - [sym__val_range] = STATE(7738), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(2160), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(1454), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_unquoted] = STATE(2187), - [sym__unquoted_with_expr] = STATE(2488), - [sym__unquoted_anonymous_prefix] = STATE(7042), - [sym_comment] = STATE(1112), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_DASH2] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(3354), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3356), - [anon_sym_DOT_DOT_LT] = ACTIONS(3356), - [anon_sym_null] = ACTIONS(3358), - [anon_sym_true] = ACTIONS(3360), - [anon_sym_false] = ACTIONS(3360), - [aux_sym__val_number_decimal_token1] = ACTIONS(3362), - [aux_sym__val_number_decimal_token2] = ACTIONS(3364), - [aux_sym__val_number_decimal_token3] = ACTIONS(3366), - [aux_sym__val_number_decimal_token4] = ACTIONS(3368), - [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(3370), - [aux_sym__val_number_token5] = ACTIONS(3370), - [aux_sym__val_number_token6] = ACTIONS(3370), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3372), - [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3374), + [1079] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3623), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1609), + [sym__unquoted_with_expr] = STATE(2008), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1079), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1012), + [anon_sym_DASH2] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3256), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(121), + [sym_raw_string_begin] = ACTIONS(247), }, - [1113] = { - [sym_ctrl_do] = STATE(4937), - [sym_ctrl_if] = STATE(4937), - [sym_ctrl_match] = STATE(4937), - [sym_ctrl_try] = STATE(4937), - [sym__expression] = STATE(4937), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3844), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2977), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_comment] = STATE(1113), - [sym__newline] = ACTIONS(3408), - [anon_sym_SEMI] = ACTIONS(3408), - [anon_sym_PIPE] = ACTIONS(3408), - [anon_sym_err_GT_PIPE] = ACTIONS(3408), - [anon_sym_out_GT_PIPE] = ACTIONS(3408), - [anon_sym_e_GT_PIPE] = ACTIONS(3408), - [anon_sym_o_GT_PIPE] = ACTIONS(3408), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3408), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3408), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3408), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3408), + [1080] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(2011), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1610), + [sym__unquoted_with_expr] = STATE(2015), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1080), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_do] = ACTIONS(3410), - [anon_sym_if] = ACTIONS(3412), - [anon_sym_match] = ACTIONS(3414), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(3408), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(3416), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(207), - [anon_sym_DOT_DOT_LT] = ACTIONS(207), - [anon_sym_null] = ACTIONS(3418), - [anon_sym_true] = ACTIONS(3420), - [anon_sym_false] = ACTIONS(3420), - [aux_sym__val_number_decimal_token1] = ACTIONS(3422), - [aux_sym__val_number_decimal_token2] = ACTIONS(3424), - [aux_sym__val_number_decimal_token3] = ACTIONS(3426), - [aux_sym__val_number_decimal_token4] = ACTIONS(3428), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(223), - [aux_sym__val_number_token5] = ACTIONS(223), - [aux_sym__val_number_token6] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_COLON2] = ACTIONS(3440), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1114] = { - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2460), - [sym__expr_binary_expression] = STATE(3465), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(2460), - [sym__val_range] = STATE(7738), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(3305), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(2901), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_unquoted] = STATE(2158), - [sym__unquoted_with_expr] = STATE(2462), - [sym__unquoted_anonymous_prefix] = STATE(7042), - [sym_comment] = STATE(1114), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_DASH2] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(3442), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3444), - [anon_sym_DOT_DOT_LT] = ACTIONS(3444), - [anon_sym_null] = ACTIONS(3446), - [anon_sym_true] = ACTIONS(3448), - [anon_sym_false] = ACTIONS(3448), - [aux_sym__val_number_decimal_token1] = ACTIONS(3450), - [aux_sym__val_number_decimal_token2] = ACTIONS(3452), - [aux_sym__val_number_decimal_token3] = ACTIONS(3454), - [aux_sym__val_number_decimal_token4] = ACTIONS(3456), - [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(3458), - [aux_sym__val_number_token5] = ACTIONS(3458), - [aux_sym__val_number_token6] = ACTIONS(3458), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3460), - [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3374), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1115] = { - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2460), - [sym__expr_binary_expression] = STATE(3466), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(2460), - [sym__val_range] = STATE(7738), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(3305), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(2901), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_unquoted] = STATE(2207), - [sym__unquoted_with_expr] = STATE(2464), - [sym__unquoted_anonymous_prefix] = STATE(7042), - [sym_comment] = STATE(1115), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_DASH2] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(3442), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3444), - [anon_sym_DOT_DOT_LT] = ACTIONS(3444), - [anon_sym_null] = ACTIONS(3446), - [anon_sym_true] = ACTIONS(3448), - [anon_sym_false] = ACTIONS(3448), - [aux_sym__val_number_decimal_token1] = ACTIONS(3450), - [aux_sym__val_number_decimal_token2] = ACTIONS(3452), - [aux_sym__val_number_decimal_token3] = ACTIONS(3454), - [aux_sym__val_number_decimal_token4] = ACTIONS(3456), - [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(3458), - [aux_sym__val_number_token5] = ACTIONS(3458), - [aux_sym__val_number_token6] = ACTIONS(3458), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3460), - [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3374), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1116] = { - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2460), - [sym__expr_binary_expression] = STATE(3467), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(2460), - [sym__val_range] = STATE(7738), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(3305), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(2901), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_unquoted] = STATE(2216), - [sym__unquoted_with_expr] = STATE(2466), - [sym__unquoted_anonymous_prefix] = STATE(7042), - [sym_comment] = STATE(1116), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_DASH2] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(3442), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3444), - [anon_sym_DOT_DOT_LT] = ACTIONS(3444), - [anon_sym_null] = ACTIONS(3446), - [anon_sym_true] = ACTIONS(3448), - [anon_sym_false] = ACTIONS(3448), - [aux_sym__val_number_decimal_token1] = ACTIONS(3450), - [aux_sym__val_number_decimal_token2] = ACTIONS(3452), - [aux_sym__val_number_decimal_token3] = ACTIONS(3454), - [aux_sym__val_number_decimal_token4] = ACTIONS(3456), - [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(3458), - [aux_sym__val_number_token5] = ACTIONS(3458), - [aux_sym__val_number_token6] = ACTIONS(3458), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3460), - [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3374), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1117] = { - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2460), - [sym__expr_binary_expression] = STATE(3468), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(2460), - [sym__val_range] = STATE(7738), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(3305), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(2901), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_unquoted] = STATE(2221), - [sym__unquoted_with_expr] = STATE(2468), - [sym__unquoted_anonymous_prefix] = STATE(7042), - [sym_comment] = STATE(1117), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_DASH2] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(3442), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3444), - [anon_sym_DOT_DOT_LT] = ACTIONS(3444), - [anon_sym_null] = ACTIONS(3446), - [anon_sym_true] = ACTIONS(3448), - [anon_sym_false] = ACTIONS(3448), - [aux_sym__val_number_decimal_token1] = ACTIONS(3450), - [aux_sym__val_number_decimal_token2] = ACTIONS(3452), - [aux_sym__val_number_decimal_token3] = ACTIONS(3454), - [aux_sym__val_number_decimal_token4] = ACTIONS(3456), - [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(3458), - [aux_sym__val_number_token5] = ACTIONS(3458), - [aux_sym__val_number_token6] = ACTIONS(3458), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3460), - [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3374), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1118] = { - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2460), - [sym__expr_binary_expression] = STATE(3469), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(2460), - [sym__val_range] = STATE(7738), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(3305), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(2901), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_unquoted] = STATE(2241), - [sym__unquoted_with_expr] = STATE(2471), - [sym__unquoted_anonymous_prefix] = STATE(7042), - [sym_comment] = STATE(1118), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_DASH2] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(3442), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3444), - [anon_sym_DOT_DOT_LT] = ACTIONS(3444), - [anon_sym_null] = ACTIONS(3446), - [anon_sym_true] = ACTIONS(3448), - [anon_sym_false] = ACTIONS(3448), - [aux_sym__val_number_decimal_token1] = ACTIONS(3450), - [aux_sym__val_number_decimal_token2] = ACTIONS(3452), - [aux_sym__val_number_decimal_token3] = ACTIONS(3454), - [aux_sym__val_number_decimal_token4] = ACTIONS(3456), - [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(3458), - [aux_sym__val_number_token5] = ACTIONS(3458), - [aux_sym__val_number_token6] = ACTIONS(3458), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3460), - [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3374), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1119] = { - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2460), - [sym__expr_binary_expression] = STATE(3470), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(2460), - [sym__val_range] = STATE(7738), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(3305), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(2901), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_unquoted] = STATE(2149), - [sym__unquoted_with_expr] = STATE(2473), - [sym__unquoted_anonymous_prefix] = STATE(7042), - [sym_comment] = STATE(1119), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_DASH2] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(3442), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3444), - [anon_sym_DOT_DOT_LT] = ACTIONS(3444), - [anon_sym_null] = ACTIONS(3446), - [anon_sym_true] = ACTIONS(3448), - [anon_sym_false] = ACTIONS(3448), - [aux_sym__val_number_decimal_token1] = ACTIONS(3450), - [aux_sym__val_number_decimal_token2] = ACTIONS(3452), - [aux_sym__val_number_decimal_token3] = ACTIONS(3454), - [aux_sym__val_number_decimal_token4] = ACTIONS(3456), - [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(3458), - [aux_sym__val_number_token5] = ACTIONS(3458), - [aux_sym__val_number_token6] = ACTIONS(3458), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3460), - [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3374), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1120] = { - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2460), - [sym__expr_binary_expression] = STATE(3471), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(2460), - [sym__val_range] = STATE(7738), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(3305), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(2901), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_unquoted] = STATE(2188), - [sym__unquoted_with_expr] = STATE(2475), - [sym__unquoted_anonymous_prefix] = STATE(7042), - [sym_comment] = STATE(1120), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_DASH2] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(3442), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3444), - [anon_sym_DOT_DOT_LT] = ACTIONS(3444), - [anon_sym_null] = ACTIONS(3446), - [anon_sym_true] = ACTIONS(3448), - [anon_sym_false] = ACTIONS(3448), - [aux_sym__val_number_decimal_token1] = ACTIONS(3450), - [aux_sym__val_number_decimal_token2] = ACTIONS(3452), - [aux_sym__val_number_decimal_token3] = ACTIONS(3454), - [aux_sym__val_number_decimal_token4] = ACTIONS(3456), - [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(3458), - [aux_sym__val_number_token5] = ACTIONS(3458), - [aux_sym__val_number_token6] = ACTIONS(3458), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3460), - [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3374), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1121] = { - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2460), - [sym__expr_binary_expression] = STATE(3472), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(2460), - [sym__val_range] = STATE(7738), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(3305), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(2901), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_unquoted] = STATE(2209), - [sym__unquoted_with_expr] = STATE(2477), - [sym__unquoted_anonymous_prefix] = STATE(7042), - [sym_comment] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_DASH2] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(3442), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3444), - [anon_sym_DOT_DOT_LT] = ACTIONS(3444), - [anon_sym_null] = ACTIONS(3446), - [anon_sym_true] = ACTIONS(3448), - [anon_sym_false] = ACTIONS(3448), - [aux_sym__val_number_decimal_token1] = ACTIONS(3450), - [aux_sym__val_number_decimal_token2] = ACTIONS(3452), - [aux_sym__val_number_decimal_token3] = ACTIONS(3454), - [aux_sym__val_number_decimal_token4] = ACTIONS(3456), - [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(3458), - [aux_sym__val_number_token5] = ACTIONS(3458), - [aux_sym__val_number_token6] = ACTIONS(3458), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3460), - [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3374), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1122] = { - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2460), - [sym__expr_binary_expression] = STATE(2478), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(2460), - [sym__val_range] = STATE(7738), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(3305), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(2901), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_unquoted] = STATE(2265), - [sym__unquoted_with_expr] = STATE(2479), - [sym__unquoted_anonymous_prefix] = STATE(7042), - [sym_comment] = STATE(1122), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_DASH2] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(3442), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3444), - [anon_sym_DOT_DOT_LT] = ACTIONS(3444), - [anon_sym_null] = ACTIONS(3446), - [anon_sym_true] = ACTIONS(3448), - [anon_sym_false] = ACTIONS(3448), - [aux_sym__val_number_decimal_token1] = ACTIONS(3450), - [aux_sym__val_number_decimal_token2] = ACTIONS(3452), - [aux_sym__val_number_decimal_token3] = ACTIONS(3454), - [aux_sym__val_number_decimal_token4] = ACTIONS(3456), - [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(3458), - [aux_sym__val_number_token5] = ACTIONS(3458), - [aux_sym__val_number_token6] = ACTIONS(3458), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3460), - [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3374), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1123] = { - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2460), - [sym__expr_binary_expression] = STATE(3473), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(2460), - [sym__val_range] = STATE(7738), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(3305), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(2901), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_unquoted] = STATE(2279), - [sym__unquoted_with_expr] = STATE(2481), - [sym__unquoted_anonymous_prefix] = STATE(7042), - [sym_comment] = STATE(1123), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_DASH2] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(3442), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3444), - [anon_sym_DOT_DOT_LT] = ACTIONS(3444), - [anon_sym_null] = ACTIONS(3446), - [anon_sym_true] = ACTIONS(3448), - [anon_sym_false] = ACTIONS(3448), - [aux_sym__val_number_decimal_token1] = ACTIONS(3450), - [aux_sym__val_number_decimal_token2] = ACTIONS(3452), - [aux_sym__val_number_decimal_token3] = ACTIONS(3454), - [aux_sym__val_number_decimal_token4] = ACTIONS(3456), - [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(3458), - [aux_sym__val_number_token5] = ACTIONS(3458), - [aux_sym__val_number_token6] = ACTIONS(3458), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3460), - [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3374), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1124] = { - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2460), - [sym__expr_binary_expression] = STATE(3474), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(2460), - [sym__val_range] = STATE(7738), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(3305), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(2901), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_unquoted] = STATE(2280), - [sym__unquoted_with_expr] = STATE(2483), - [sym__unquoted_anonymous_prefix] = STATE(7042), - [sym_comment] = STATE(1124), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_DASH2] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(3442), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3444), - [anon_sym_DOT_DOT_LT] = ACTIONS(3444), - [anon_sym_null] = ACTIONS(3446), - [anon_sym_true] = ACTIONS(3448), - [anon_sym_false] = ACTIONS(3448), - [aux_sym__val_number_decimal_token1] = ACTIONS(3450), - [aux_sym__val_number_decimal_token2] = ACTIONS(3452), - [aux_sym__val_number_decimal_token3] = ACTIONS(3454), - [aux_sym__val_number_decimal_token4] = ACTIONS(3456), - [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(3458), - [aux_sym__val_number_token5] = ACTIONS(3458), - [aux_sym__val_number_token6] = ACTIONS(3458), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3460), - [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3374), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1125] = { - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2460), - [sym__expr_binary_expression] = STATE(3475), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(2460), - [sym__val_range] = STATE(7738), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(3305), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(2901), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_unquoted] = STATE(2182), - [sym__unquoted_with_expr] = STATE(2485), - [sym__unquoted_anonymous_prefix] = STATE(7042), - [sym_comment] = STATE(1125), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_DASH2] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(3442), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3444), - [anon_sym_DOT_DOT_LT] = ACTIONS(3444), - [anon_sym_null] = ACTIONS(3446), - [anon_sym_true] = ACTIONS(3448), - [anon_sym_false] = ACTIONS(3448), - [aux_sym__val_number_decimal_token1] = ACTIONS(3450), - [aux_sym__val_number_decimal_token2] = ACTIONS(3452), - [aux_sym__val_number_decimal_token3] = ACTIONS(3454), - [aux_sym__val_number_decimal_token4] = ACTIONS(3456), - [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(3458), - [aux_sym__val_number_token5] = ACTIONS(3458), - [aux_sym__val_number_token6] = ACTIONS(3458), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3460), - [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3374), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1126] = { - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2460), - [sym__expr_binary_expression] = STATE(3476), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(2460), - [sym__val_range] = STATE(7738), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(3305), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(2901), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_unquoted] = STATE(2187), - [sym__unquoted_with_expr] = STATE(2488), - [sym__unquoted_anonymous_prefix] = STATE(7042), - [sym_comment] = STATE(1126), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_DASH2] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(3442), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3444), - [anon_sym_DOT_DOT_LT] = ACTIONS(3444), - [anon_sym_null] = ACTIONS(3446), - [anon_sym_true] = ACTIONS(3448), - [anon_sym_false] = ACTIONS(3448), - [aux_sym__val_number_decimal_token1] = ACTIONS(3450), - [aux_sym__val_number_decimal_token2] = ACTIONS(3452), - [aux_sym__val_number_decimal_token3] = ACTIONS(3454), - [aux_sym__val_number_decimal_token4] = ACTIONS(3456), - [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(3458), - [aux_sym__val_number_token5] = ACTIONS(3458), - [aux_sym__val_number_token6] = ACTIONS(3458), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3460), - [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3374), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(121), - }, - [1127] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3397), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1682), - [sym__unquoted_with_expr] = STATE(1991), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1127), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(1012), - [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), - [aux_sym__val_number_token1] = ACTIONS(223), - [aux_sym__val_number_token2] = ACTIONS(223), - [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(247), - }, - [1128] = { - [sym_comment] = STATE(1128), - [ts_builtin_sym_end] = ACTIONS(1494), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT] = ACTIONS(3462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(3464), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(3), - }, - [1129] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3390), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1675), - [sym__unquoted_with_expr] = STATE(2130), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1129), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(1012), - [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), - [aux_sym__val_number_token1] = ACTIONS(223), - [aux_sym__val_number_token2] = ACTIONS(223), - [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(247), - }, - [1130] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3391), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1676), - [sym__unquoted_with_expr] = STATE(1984), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1130), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(1012), - [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), - [aux_sym__val_number_token1] = ACTIONS(223), - [aux_sym__val_number_token2] = ACTIONS(223), - [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(247), - }, - [1131] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3392), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1677), - [sym__unquoted_with_expr] = STATE(1985), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1131), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(1012), - [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), - [aux_sym__val_number_token1] = ACTIONS(223), - [aux_sym__val_number_token2] = ACTIONS(223), - [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(247), - }, - [1132] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3393), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1678), - [sym__unquoted_with_expr] = STATE(1986), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1132), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(1012), - [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), - [aux_sym__val_number_token1] = ACTIONS(223), - [aux_sym__val_number_token2] = ACTIONS(223), - [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(247), - }, - [1133] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3394), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1679), - [sym__unquoted_with_expr] = STATE(1988), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1133), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(1012), - [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), - [aux_sym__val_number_token1] = ACTIONS(223), - [aux_sym__val_number_token2] = ACTIONS(223), - [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(247), - }, - [1134] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3395), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1680), - [sym__unquoted_with_expr] = STATE(1989), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1134), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(1012), - [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), - [aux_sym__val_number_token1] = ACTIONS(223), - [aux_sym__val_number_token2] = ACTIONS(223), - [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [1081] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3626), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1611), + [sym__unquoted_with_expr] = STATE(1956), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1081), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1012), + [anon_sym_DASH2] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(3256), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1135] = { - [sym_expr_unary] = STATE(2126), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2126), - [sym__expr_binary_expression] = STATE(3396), - [sym_expr_parenthesized] = STATE(1674), - [sym_val_range] = STATE(2126), - [sym__val_range] = STATE(7643), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(2126), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(3279), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2863), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(1681), - [sym__unquoted_with_expr] = STATE(1990), - [sym__unquoted_anonymous_prefix] = STATE(7164), - [sym_comment] = STATE(1135), + [1082] = { + [sym_expr_unary] = STATE(1948), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(1948), + [sym__expr_binary_expression] = STATE(3627), + [sym_expr_parenthesized] = STATE(1601), + [sym_val_range] = STATE(1948), + [sym__val_range] = STATE(7011), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(1948), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3455), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3342), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(1612), + [sym__unquoted_with_expr] = STATE(1878), + [sym__unquoted_anonymous_prefix] = STATE(6381), + [sym_comment] = STATE(1082), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(3248), + [anon_sym_DOT_DOT] = ACTIONS(3256), [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3250), - [anon_sym_DOT_DOT_LT] = ACTIONS(3250), - [anon_sym_null] = ACTIONS(3252), - [anon_sym_true] = ACTIONS(3254), - [anon_sym_false] = ACTIONS(3254), - [aux_sym__val_number_decimal_token1] = ACTIONS(3256), - [aux_sym__val_number_decimal_token2] = ACTIONS(3258), - [aux_sym__val_number_decimal_token3] = ACTIONS(3260), - [aux_sym__val_number_decimal_token4] = ACTIONS(3262), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_LT] = ACTIONS(3258), + [anon_sym_null] = ACTIONS(3260), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [aux_sym__val_number_decimal_token1] = ACTIONS(3264), + [aux_sym__val_number_decimal_token2] = ACTIONS(3266), + [aux_sym__val_number_decimal_token3] = ACTIONS(3268), + [aux_sym__val_number_decimal_token4] = ACTIONS(3270), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3264), - [aux_sym__val_number_token5] = ACTIONS(3264), - [aux_sym__val_number_token6] = ACTIONS(3264), + [aux_sym__val_number_token4] = ACTIONS(3272), + [aux_sym__val_number_token5] = ACTIONS(3272), + [aux_sym__val_number_token6] = ACTIONS(3272), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3266), + [sym_val_date] = ACTIONS(3274), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3226), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3170), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1136] = { - [sym_expr_unary] = STATE(2460), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2460), - [sym__expr_binary_expression] = STATE(2467), - [sym_expr_parenthesized] = STATE(2008), - [sym_val_range] = STATE(2460), - [sym__val_range] = STATE(7738), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(2460), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(2160), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(1454), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_unquoted] = STATE(2221), - [sym__unquoted_with_expr] = STATE(2468), - [sym__unquoted_anonymous_prefix] = STATE(7042), - [sym_comment] = STATE(1136), + [1083] = { + [sym_expr_unary] = STATE(2325), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2325), + [sym__expr_binary_expression] = STATE(3273), + [sym_expr_parenthesized] = STATE(1976), + [sym_val_range] = STATE(2325), + [sym__val_range] = STATE(7034), + [sym__val_range_with_end] = STATE(6930), + [sym__value] = STATE(2325), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(3126), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(2794), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_unquoted] = STATE(2095), + [sym__unquoted_with_expr] = STATE(2362), + [sym__unquoted_anonymous_prefix] = STATE(6777), + [sym_comment] = STATE(1083), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1026), [anon_sym_DASH2] = ACTIONS(47), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(3354), + [anon_sym_DOT_DOT] = ACTIONS(3298), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3356), - [anon_sym_DOT_DOT_LT] = ACTIONS(3356), - [anon_sym_null] = ACTIONS(3358), - [anon_sym_true] = ACTIONS(3360), - [anon_sym_false] = ACTIONS(3360), - [aux_sym__val_number_decimal_token1] = ACTIONS(3362), - [aux_sym__val_number_decimal_token2] = ACTIONS(3364), - [aux_sym__val_number_decimal_token3] = ACTIONS(3366), - [aux_sym__val_number_decimal_token4] = ACTIONS(3368), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3300), + [anon_sym_DOT_DOT_LT] = ACTIONS(3300), + [anon_sym_null] = ACTIONS(3302), + [anon_sym_true] = ACTIONS(3304), + [anon_sym_false] = ACTIONS(3304), + [aux_sym__val_number_decimal_token1] = ACTIONS(3306), + [aux_sym__val_number_decimal_token2] = ACTIONS(3308), + [aux_sym__val_number_decimal_token3] = ACTIONS(3310), + [aux_sym__val_number_decimal_token4] = ACTIONS(3312), [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(3370), - [aux_sym__val_number_token5] = ACTIONS(3370), - [aux_sym__val_number_token6] = ACTIONS(3370), + [aux_sym__val_number_token4] = ACTIONS(3314), + [aux_sym__val_number_token5] = ACTIONS(3314), + [aux_sym__val_number_token6] = ACTIONS(3314), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3372), + [sym_val_date] = ACTIONS(3316), [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3374), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3318), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(121), }, - [1137] = { - [sym_comment] = STATE(1137), - [anon_sym_STAR_STAR] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_SLASH] = ACTIONS(1484), - [anon_sym_mod] = ACTIONS(1486), - [anon_sym_SLASH_SLASH] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_bit_DASHshl] = ACTIONS(1486), - [anon_sym_bit_DASHshr] = ACTIONS(1486), - [anon_sym_EQ_TILDE] = ACTIONS(1486), - [anon_sym_BANG_TILDE] = ACTIONS(1486), - [anon_sym_bit_DASHand] = ACTIONS(1486), - [anon_sym_bit_DASHxor] = ACTIONS(1486), - [anon_sym_bit_DASHor] = ACTIONS(1486), - [anon_sym_and] = ACTIONS(1486), - [anon_sym_xor] = ACTIONS(1486), - [anon_sym_or] = ACTIONS(1486), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_not_DASHin] = ACTIONS(1486), - [anon_sym_has] = ACTIONS(1486), - [anon_sym_not_DASHhas] = ACTIONS(1486), - [anon_sym_starts_DASHwith] = ACTIONS(1486), - [anon_sym_ends_DASHwith] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(1486), - [anon_sym_BANG_EQ] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1486), - [aux_sym_cmd_identifier_token41] = ACTIONS(1484), - [sym__newline] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_err_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_GT_PIPE] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1484), - [anon_sym_GT2] = ACTIONS(1484), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_in2] = ACTIONS(1484), - [anon_sym_STAR2] = ACTIONS(1484), - [anon_sym_and2] = ACTIONS(1484), - [anon_sym_xor2] = ACTIONS(1484), - [anon_sym_or2] = ACTIONS(1484), - [anon_sym_not_DASHin2] = ACTIONS(1484), - [anon_sym_has2] = ACTIONS(1484), - [anon_sym_not_DASHhas2] = ACTIONS(1484), - [anon_sym_starts_DASHwith2] = ACTIONS(1484), - [anon_sym_ends_DASHwith2] = ACTIONS(1484), - [anon_sym_EQ_EQ2] = ACTIONS(1484), - [anon_sym_BANG_EQ2] = ACTIONS(1484), - [anon_sym_LT2] = ACTIONS(1484), - [anon_sym_LT_EQ2] = ACTIONS(1484), - [anon_sym_GT_EQ2] = ACTIONS(1484), - [anon_sym_EQ_TILDE2] = ACTIONS(1484), - [anon_sym_BANG_TILDE2] = ACTIONS(1484), - [anon_sym_STAR_STAR2] = ACTIONS(1484), - [anon_sym_PLUS_PLUS2] = ACTIONS(1484), - [anon_sym_SLASH2] = ACTIONS(1484), - [anon_sym_mod2] = ACTIONS(1484), - [anon_sym_SLASH_SLASH2] = ACTIONS(1484), - [anon_sym_PLUS2] = ACTIONS(1484), - [anon_sym_bit_DASHshl2] = ACTIONS(1484), - [anon_sym_bit_DASHshr2] = ACTIONS(1484), - [anon_sym_bit_DASHand2] = ACTIONS(1484), - [anon_sym_bit_DASHxor2] = ACTIONS(1484), - [anon_sym_bit_DASHor2] = ACTIONS(1484), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [aux_sym__immediate_decimal_token1] = ACTIONS(3466), - [aux_sym__immediate_decimal_token2] = ACTIONS(3468), - [sym_filesize_unit] = ACTIONS(1484), - [sym_duration_unit] = ACTIONS(1486), - [anon_sym_POUND] = ACTIONS(3), - }, - [1138] = { - [sym_comment] = STATE(1138), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT] = ACTIONS(3470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(3472), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(3), - }, - [1139] = { - [sym_comment] = STATE(1139), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(3434), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(3), - }, - [1140] = { - [sym_comment] = STATE(1140), - [ts_builtin_sym_end] = ACTIONS(1494), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(3464), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(3), - }, - [1141] = { - [sym_comment] = STATE(1141), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(3406), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(3), - }, - [1142] = { - [sym_comment] = STATE(1142), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1540), - [anon_sym_SLASH_SLASH] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_bit_DASHshl] = ACTIONS(1540), - [anon_sym_bit_DASHshr] = ACTIONS(1540), - [anon_sym_EQ_TILDE] = ACTIONS(1540), - [anon_sym_BANG_TILDE] = ACTIONS(1540), - [anon_sym_bit_DASHand] = ACTIONS(1540), - [anon_sym_bit_DASHxor] = ACTIONS(1540), - [anon_sym_bit_DASHor] = ACTIONS(1540), - [anon_sym_and] = ACTIONS(1540), - [anon_sym_xor] = ACTIONS(1540), - [anon_sym_or] = ACTIONS(1540), - [anon_sym_in] = ACTIONS(1540), - [anon_sym_not_DASHin] = ACTIONS(1540), - [anon_sym_has] = ACTIONS(1540), - [anon_sym_not_DASHhas] = ACTIONS(1540), - [anon_sym_starts_DASHwith] = ACTIONS(1540), - [anon_sym_ends_DASHwith] = ACTIONS(1540), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1538), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1540), - [aux_sym_cmd_identifier_token41] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(1538), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_in2] = ACTIONS(1538), - [anon_sym_STAR2] = ACTIONS(1538), - [anon_sym_and2] = ACTIONS(1538), - [anon_sym_xor2] = ACTIONS(1538), - [anon_sym_or2] = ACTIONS(1538), - [anon_sym_not_DASHin2] = ACTIONS(1538), - [anon_sym_has2] = ACTIONS(1538), - [anon_sym_not_DASHhas2] = ACTIONS(1538), - [anon_sym_starts_DASHwith2] = ACTIONS(1538), - [anon_sym_ends_DASHwith2] = ACTIONS(1538), - [anon_sym_EQ_EQ2] = ACTIONS(1538), - [anon_sym_BANG_EQ2] = ACTIONS(1538), - [anon_sym_LT2] = ACTIONS(1538), - [anon_sym_LT_EQ2] = ACTIONS(1538), - [anon_sym_GT_EQ2] = ACTIONS(1538), - [anon_sym_EQ_TILDE2] = ACTIONS(1538), - [anon_sym_BANG_TILDE2] = ACTIONS(1538), - [anon_sym_STAR_STAR2] = ACTIONS(1538), - [anon_sym_PLUS_PLUS2] = ACTIONS(1538), - [anon_sym_SLASH2] = ACTIONS(1538), - [anon_sym_mod2] = ACTIONS(1538), - [anon_sym_SLASH_SLASH2] = ACTIONS(1538), - [anon_sym_PLUS2] = ACTIONS(1538), - [anon_sym_bit_DASHshl2] = ACTIONS(1538), - [anon_sym_bit_DASHshr2] = ACTIONS(1538), - [anon_sym_bit_DASHand2] = ACTIONS(1538), - [anon_sym_bit_DASHxor2] = ACTIONS(1538), - [anon_sym_bit_DASHor2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [aux_sym__immediate_decimal_token2] = ACTIONS(3474), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(3), - }, - [1143] = { - [sym_ctrl_do] = STATE(4937), - [sym_ctrl_if] = STATE(4937), - [sym_ctrl_match] = STATE(4937), - [sym_ctrl_try] = STATE(4937), - [sym__expression] = STATE(4937), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3844), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2977), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_comment] = STATE(1143), - [sym__newline] = ACTIONS(3408), - [anon_sym_SEMI] = ACTIONS(3408), - [anon_sym_PIPE] = ACTIONS(3408), - [anon_sym_err_GT_PIPE] = ACTIONS(3408), - [anon_sym_out_GT_PIPE] = ACTIONS(3408), - [anon_sym_e_GT_PIPE] = ACTIONS(3408), - [anon_sym_o_GT_PIPE] = ACTIONS(3408), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3408), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3408), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3408), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3408), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_RPAREN] = ACTIONS(3408), - [anon_sym_DOLLAR] = ACTIONS(1012), - [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_do] = ACTIONS(3410), - [anon_sym_if] = ACTIONS(3476), - [anon_sym_match] = ACTIONS(3414), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(3416), - [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(207), - [anon_sym_DOT_DOT_LT] = ACTIONS(207), - [anon_sym_null] = ACTIONS(3418), - [anon_sym_true] = ACTIONS(3420), - [anon_sym_false] = ACTIONS(3420), - [aux_sym__val_number_decimal_token1] = ACTIONS(3422), - [aux_sym__val_number_decimal_token2] = ACTIONS(3424), - [aux_sym__val_number_decimal_token3] = ACTIONS(3426), - [aux_sym__val_number_decimal_token4] = ACTIONS(3428), - [aux_sym__val_number_token1] = ACTIONS(223), - [aux_sym__val_number_token2] = ACTIONS(223), - [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(223), - [aux_sym__val_number_token5] = ACTIONS(223), - [aux_sym__val_number_token6] = ACTIONS(223), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(247), - }, - [1144] = { - [sym_ctrl_do] = STATE(5064), - [sym_ctrl_if] = STATE(5064), - [sym_ctrl_match] = STATE(5064), - [sym_ctrl_try] = STATE(5064), - [sym__expression] = STATE(5064), - [sym_expr_unary] = STATE(2510), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_binary] = STATE(2510), - [sym__expr_binary_expression] = STATE(3857), - [sym_expr_parenthesized] = STATE(2098), - [sym_val_range] = STATE(2510), - [sym__value] = STATE(2510), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(2470), - [sym_val_variable] = STATE(2084), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(3186), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_comment] = STATE(1144), - [ts_builtin_sym_end] = ACTIONS(3408), - [sym__newline] = ACTIONS(3408), - [anon_sym_SEMI] = ACTIONS(3408), - [anon_sym_PIPE] = ACTIONS(3408), - [anon_sym_err_GT_PIPE] = ACTIONS(3408), - [anon_sym_out_GT_PIPE] = ACTIONS(3408), - [anon_sym_e_GT_PIPE] = ACTIONS(3408), - [anon_sym_o_GT_PIPE] = ACTIONS(3408), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3408), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3408), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3408), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3408), + [1084] = { + [sym_ctrl_do] = STATE(4864), + [sym_ctrl_if] = STATE(4864), + [sym_ctrl_match] = STATE(4864), + [sym_ctrl_try] = STATE(4864), + [sym__expression] = STATE(4864), + [sym_expr_unary] = STATE(2328), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_binary] = STATE(2328), + [sym__expr_binary_expression] = STATE(3677), + [sym_expr_parenthesized] = STATE(1929), + [sym_val_range] = STATE(2328), + [sym__value] = STATE(2328), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(2375), + [sym_val_variable] = STATE(1877), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(2981), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_comment] = STATE(1084), + [ts_builtin_sym_end] = ACTIONS(3320), + [sym__newline] = ACTIONS(3320), + [anon_sym_SEMI] = ACTIONS(3320), + [anon_sym_PIPE] = ACTIONS(3320), + [anon_sym_err_GT_PIPE] = ACTIONS(3320), + [anon_sym_out_GT_PIPE] = ACTIONS(3320), + [anon_sym_e_GT_PIPE] = ACTIONS(3320), + [anon_sym_o_GT_PIPE] = ACTIONS(3320), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3320), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3320), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3320), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3320), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1026), [anon_sym_DASH2] = ACTIONS(47), - [anon_sym_do] = ACTIONS(3478), - [anon_sym_if] = ACTIONS(3480), - [anon_sym_match] = ACTIONS(3482), + [anon_sym_do] = ACTIONS(3410), + [anon_sym_if] = ACTIONS(3412), + [anon_sym_match] = ACTIONS(3414), [anon_sym_LBRACE] = ACTIONS(65), [anon_sym_DOT_DOT] = ACTIONS(67), - [anon_sym_try] = ACTIONS(3484), + [anon_sym_try] = ACTIONS(3416), [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(3486), - [anon_sym_true] = ACTIONS(3488), - [anon_sym_false] = ACTIONS(3488), - [aux_sym__val_number_decimal_token1] = ACTIONS(3362), - [aux_sym__val_number_decimal_token2] = ACTIONS(3364), - [aux_sym__val_number_decimal_token3] = ACTIONS(3366), - [aux_sym__val_number_decimal_token4] = ACTIONS(3368), + [anon_sym_null] = ACTIONS(3418), + [anon_sym_true] = ACTIONS(3420), + [anon_sym_false] = ACTIONS(3420), + [aux_sym__val_number_decimal_token1] = ACTIONS(3356), + [aux_sym__val_number_decimal_token2] = ACTIONS(3358), + [aux_sym__val_number_decimal_token3] = ACTIONS(3360), + [aux_sym__val_number_decimal_token4] = ACTIONS(3362), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), @@ -191062,154 +184128,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(121), }, - [1145] = { - [sym_comment] = STATE(1145), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1540), - [anon_sym_SLASH_SLASH] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_bit_DASHshl] = ACTIONS(1540), - [anon_sym_bit_DASHshr] = ACTIONS(1540), - [anon_sym_EQ_TILDE] = ACTIONS(1540), - [anon_sym_BANG_TILDE] = ACTIONS(1540), - [anon_sym_bit_DASHand] = ACTIONS(1540), - [anon_sym_bit_DASHxor] = ACTIONS(1540), - [anon_sym_bit_DASHor] = ACTIONS(1540), - [anon_sym_and] = ACTIONS(1540), - [anon_sym_xor] = ACTIONS(1540), - [anon_sym_or] = ACTIONS(1540), - [anon_sym_in] = ACTIONS(1540), - [anon_sym_not_DASHin] = ACTIONS(1540), - [anon_sym_has] = ACTIONS(1540), - [anon_sym_not_DASHhas] = ACTIONS(1540), - [anon_sym_starts_DASHwith] = ACTIONS(1540), - [anon_sym_ends_DASHwith] = ACTIONS(1540), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1538), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1540), - [aux_sym_cmd_identifier_token41] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(1538), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_in2] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_STAR2] = ACTIONS(1538), - [anon_sym_and2] = ACTIONS(1538), - [anon_sym_xor2] = ACTIONS(1538), - [anon_sym_or2] = ACTIONS(1538), - [anon_sym_not_DASHin2] = ACTIONS(1538), - [anon_sym_has2] = ACTIONS(1538), - [anon_sym_not_DASHhas2] = ACTIONS(1538), - [anon_sym_starts_DASHwith2] = ACTIONS(1538), - [anon_sym_ends_DASHwith2] = ACTIONS(1538), - [anon_sym_EQ_EQ2] = ACTIONS(1538), - [anon_sym_BANG_EQ2] = ACTIONS(1538), - [anon_sym_LT2] = ACTIONS(1538), - [anon_sym_LT_EQ2] = ACTIONS(1538), - [anon_sym_GT_EQ2] = ACTIONS(1538), - [anon_sym_EQ_TILDE2] = ACTIONS(1538), - [anon_sym_BANG_TILDE2] = ACTIONS(1538), - [anon_sym_STAR_STAR2] = ACTIONS(1538), - [anon_sym_PLUS_PLUS2] = ACTIONS(1538), - [anon_sym_SLASH2] = ACTIONS(1538), - [anon_sym_mod2] = ACTIONS(1538), - [anon_sym_SLASH_SLASH2] = ACTIONS(1538), - [anon_sym_PLUS2] = ACTIONS(1538), - [anon_sym_bit_DASHshl2] = ACTIONS(1538), - [anon_sym_bit_DASHshr2] = ACTIONS(1538), - [anon_sym_bit_DASHand2] = ACTIONS(1538), - [anon_sym_bit_DASHxor2] = ACTIONS(1538), - [anon_sym_bit_DASHor2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [aux_sym__immediate_decimal_token2] = ACTIONS(3490), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1540), + [1085] = { + [sym_comment] = STATE(1085), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(3378), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), [anon_sym_POUND] = ACTIONS(3), }, - [1146] = { - [sym_ctrl_do] = STATE(4937), - [sym_ctrl_if] = STATE(4937), - [sym_ctrl_match] = STATE(4937), - [sym_ctrl_try] = STATE(4937), - [sym__expression] = STATE(4937), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3844), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2977), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_comment] = STATE(1146), - [sym__newline] = ACTIONS(3408), - [anon_sym_SEMI] = ACTIONS(3408), - [anon_sym_PIPE] = ACTIONS(3408), - [anon_sym_err_GT_PIPE] = ACTIONS(3408), - [anon_sym_out_GT_PIPE] = ACTIONS(3408), - [anon_sym_e_GT_PIPE] = ACTIONS(3408), - [anon_sym_o_GT_PIPE] = ACTIONS(3408), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3408), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3408), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3408), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3408), + [1086] = { + [sym_comment] = STATE(1086), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1581), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_bit_DASHshl] = ACTIONS(1581), + [anon_sym_bit_DASHshr] = ACTIONS(1581), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1581), + [anon_sym_bit_DASHxor] = ACTIONS(1581), + [anon_sym_bit_DASHor] = ACTIONS(1581), + [anon_sym_and] = ACTIONS(1581), + [anon_sym_xor] = ACTIONS(1581), + [anon_sym_or] = ACTIONS(1581), + [anon_sym_in] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1581), + [anon_sym_has] = ACTIONS(1581), + [anon_sym_not_DASHhas] = ACTIONS(1581), + [anon_sym_starts_DASHwith] = ACTIONS(1581), + [anon_sym_ends_DASHwith] = ACTIONS(1581), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1581), + [aux_sym_cmd_identifier_token41] = ACTIONS(1579), + [sym__newline] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_err_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_GT_PIPE] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_GT2] = ACTIONS(1579), + [anon_sym_DASH2] = ACTIONS(1579), + [anon_sym_in2] = ACTIONS(1579), + [anon_sym_STAR2] = ACTIONS(1579), + [anon_sym_and2] = ACTIONS(1579), + [anon_sym_xor2] = ACTIONS(1579), + [anon_sym_or2] = ACTIONS(1579), + [anon_sym_not_DASHin2] = ACTIONS(1579), + [anon_sym_has2] = ACTIONS(1579), + [anon_sym_not_DASHhas2] = ACTIONS(1579), + [anon_sym_starts_DASHwith2] = ACTIONS(1579), + [anon_sym_ends_DASHwith2] = ACTIONS(1579), + [anon_sym_EQ_EQ2] = ACTIONS(1579), + [anon_sym_BANG_EQ2] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ2] = ACTIONS(1579), + [anon_sym_GT_EQ2] = ACTIONS(1579), + [anon_sym_EQ_TILDE2] = ACTIONS(1579), + [anon_sym_BANG_TILDE2] = ACTIONS(1579), + [anon_sym_STAR_STAR2] = ACTIONS(1579), + [anon_sym_PLUS_PLUS2] = ACTIONS(1579), + [anon_sym_SLASH2] = ACTIONS(1579), + [anon_sym_mod2] = ACTIONS(1579), + [anon_sym_SLASH_SLASH2] = ACTIONS(1579), + [anon_sym_PLUS2] = ACTIONS(1579), + [anon_sym_bit_DASHshl2] = ACTIONS(1579), + [anon_sym_bit_DASHshr2] = ACTIONS(1579), + [anon_sym_bit_DASHand2] = ACTIONS(1579), + [anon_sym_bit_DASHxor2] = ACTIONS(1579), + [anon_sym_bit_DASHor2] = ACTIONS(1579), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [aux_sym__immediate_decimal_token2] = ACTIONS(3422), + [sym_filesize_unit] = ACTIONS(1579), + [sym_duration_unit] = ACTIONS(1581), + [anon_sym_POUND] = ACTIONS(3), + }, + [1087] = { + [sym_ctrl_do] = STATE(4563), + [sym_ctrl_if] = STATE(4563), + [sym_ctrl_match] = STATE(4563), + [sym_ctrl_try] = STATE(4563), + [sym__expression] = STATE(4563), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3669), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2848), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_comment] = STATE(1087), + [sym__newline] = ACTIONS(3320), + [anon_sym_SEMI] = ACTIONS(3320), + [anon_sym_PIPE] = ACTIONS(3320), + [anon_sym_err_GT_PIPE] = ACTIONS(3320), + [anon_sym_out_GT_PIPE] = ACTIONS(3320), + [anon_sym_e_GT_PIPE] = ACTIONS(3320), + [anon_sym_o_GT_PIPE] = ACTIONS(3320), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3320), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3320), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3320), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3320), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(3320), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_do] = ACTIONS(3410), - [anon_sym_if] = ACTIONS(3412), - [anon_sym_match] = ACTIONS(3414), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3424), + [anon_sym_match] = ACTIONS(3326), [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_RBRACE] = ACTIONS(3408), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(3416), + [anon_sym_try] = ACTIONS(3328), [aux_sym_expr_unary_token1] = ACTIONS(201), [anon_sym_DOT_DOT_EQ] = ACTIONS(207), [anon_sym_DOT_DOT_LT] = ACTIONS(207), - [anon_sym_null] = ACTIONS(3418), - [anon_sym_true] = ACTIONS(3420), - [anon_sym_false] = ACTIONS(3420), - [aux_sym__val_number_decimal_token1] = ACTIONS(3422), - [aux_sym__val_number_decimal_token2] = ACTIONS(3424), - [aux_sym__val_number_decimal_token3] = ACTIONS(3426), - [aux_sym__val_number_decimal_token4] = ACTIONS(3428), + [anon_sym_null] = ACTIONS(3330), + [anon_sym_true] = ACTIONS(3332), + [anon_sym_false] = ACTIONS(3332), + [aux_sym__val_number_decimal_token1] = ACTIONS(3334), + [aux_sym__val_number_decimal_token2] = ACTIONS(3336), + [aux_sym__val_number_decimal_token3] = ACTIONS(3338), + [aux_sym__val_number_decimal_token4] = ACTIONS(3340), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -191228,204 +184377,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1147] = { - [sym_comment] = STATE(1147), - [ts_builtin_sym_end] = ACTIONS(1540), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1540), - [anon_sym_SLASH_SLASH] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_bit_DASHshl] = ACTIONS(1540), - [anon_sym_bit_DASHshr] = ACTIONS(1540), - [anon_sym_EQ_TILDE] = ACTIONS(1540), - [anon_sym_BANG_TILDE] = ACTIONS(1540), - [anon_sym_bit_DASHand] = ACTIONS(1540), - [anon_sym_bit_DASHxor] = ACTIONS(1540), - [anon_sym_bit_DASHor] = ACTIONS(1540), - [anon_sym_and] = ACTIONS(1540), - [anon_sym_xor] = ACTIONS(1540), - [anon_sym_or] = ACTIONS(1540), - [anon_sym_in] = ACTIONS(1540), - [anon_sym_not_DASHin] = ACTIONS(1540), - [anon_sym_has] = ACTIONS(1540), - [anon_sym_not_DASHhas] = ACTIONS(1540), - [anon_sym_starts_DASHwith] = ACTIONS(1540), - [anon_sym_ends_DASHwith] = ACTIONS(1540), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1538), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1540), - [aux_sym_cmd_identifier_token41] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(1538), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_in2] = ACTIONS(1538), - [anon_sym_STAR2] = ACTIONS(1538), - [anon_sym_and2] = ACTIONS(1538), - [anon_sym_xor2] = ACTIONS(1538), - [anon_sym_or2] = ACTIONS(1538), - [anon_sym_not_DASHin2] = ACTIONS(1538), - [anon_sym_has2] = ACTIONS(1538), - [anon_sym_not_DASHhas2] = ACTIONS(1538), - [anon_sym_starts_DASHwith2] = ACTIONS(1538), - [anon_sym_ends_DASHwith2] = ACTIONS(1538), - [anon_sym_EQ_EQ2] = ACTIONS(1538), - [anon_sym_BANG_EQ2] = ACTIONS(1538), - [anon_sym_LT2] = ACTIONS(1538), - [anon_sym_LT_EQ2] = ACTIONS(1538), - [anon_sym_GT_EQ2] = ACTIONS(1538), - [anon_sym_EQ_TILDE2] = ACTIONS(1538), - [anon_sym_BANG_TILDE2] = ACTIONS(1538), - [anon_sym_STAR_STAR2] = ACTIONS(1538), - [anon_sym_PLUS_PLUS2] = ACTIONS(1538), - [anon_sym_SLASH2] = ACTIONS(1538), - [anon_sym_mod2] = ACTIONS(1538), - [anon_sym_SLASH_SLASH2] = ACTIONS(1538), - [anon_sym_PLUS2] = ACTIONS(1538), - [anon_sym_bit_DASHshl2] = ACTIONS(1538), - [anon_sym_bit_DASHshr2] = ACTIONS(1538), - [anon_sym_bit_DASHand2] = ACTIONS(1538), - [anon_sym_bit_DASHxor2] = ACTIONS(1538), - [anon_sym_bit_DASHor2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [aux_sym__immediate_decimal_token2] = ACTIONS(3492), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(3), - }, - [1148] = { - [sym_comment] = STATE(1148), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(3472), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), + [1088] = { + [sym_comment] = STATE(1088), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(3386), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), [anon_sym_POUND] = ACTIONS(3), }, - [1149] = { - [sym_comment] = STATE(1149), - [anon_sym_STAR_STAR] = ACTIONS(2572), - [anon_sym_PLUS_PLUS] = ACTIONS(2572), - [anon_sym_STAR] = ACTIONS(2574), - [anon_sym_SLASH] = ACTIONS(2574), - [anon_sym_mod] = ACTIONS(2572), - [anon_sym_SLASH_SLASH] = ACTIONS(2572), - [anon_sym_PLUS] = ACTIONS(2574), - [anon_sym_DASH] = ACTIONS(2572), - [anon_sym_bit_DASHshl] = ACTIONS(2572), - [anon_sym_bit_DASHshr] = ACTIONS(2572), - [anon_sym_EQ_TILDE] = ACTIONS(2572), - [anon_sym_BANG_TILDE] = ACTIONS(2572), - [anon_sym_bit_DASHand] = ACTIONS(2572), - [anon_sym_bit_DASHxor] = ACTIONS(2572), - [anon_sym_bit_DASHor] = ACTIONS(2572), - [anon_sym_and] = ACTIONS(2572), - [anon_sym_xor] = ACTIONS(2572), - [anon_sym_or] = ACTIONS(2572), - [anon_sym_in] = ACTIONS(2572), - [anon_sym_not_DASHin] = ACTIONS(2572), - [anon_sym_has] = ACTIONS(2572), - [anon_sym_not_DASHhas] = ACTIONS(2572), - [anon_sym_starts_DASHwith] = ACTIONS(2572), - [anon_sym_ends_DASHwith] = ACTIONS(2572), - [anon_sym_EQ_EQ] = ACTIONS(2572), - [anon_sym_BANG_EQ] = ACTIONS(2572), - [anon_sym_LT] = ACTIONS(2574), - [anon_sym_LT_EQ] = ACTIONS(2572), - [anon_sym_GT] = ACTIONS(2574), - [anon_sym_GT_EQ] = ACTIONS(2572), - [aux_sym_cmd_identifier_token41] = ACTIONS(2576), + [1089] = { + [sym_comment] = STATE(1089), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1581), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_bit_DASHshl] = ACTIONS(1581), + [anon_sym_bit_DASHshr] = ACTIONS(1581), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1581), + [anon_sym_bit_DASHxor] = ACTIONS(1581), + [anon_sym_bit_DASHor] = ACTIONS(1581), + [anon_sym_and] = ACTIONS(1581), + [anon_sym_xor] = ACTIONS(1581), + [anon_sym_or] = ACTIONS(1581), + [anon_sym_in] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1581), + [anon_sym_has] = ACTIONS(1581), + [anon_sym_not_DASHhas] = ACTIONS(1581), + [anon_sym_starts_DASHwith] = ACTIONS(1581), + [anon_sym_ends_DASHwith] = ACTIONS(1581), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1581), + [aux_sym_cmd_identifier_token41] = ACTIONS(1579), [sym__newline] = ACTIONS(1579), [anon_sym_SEMI] = ACTIONS(1579), [anon_sym_PIPE] = ACTIONS(1579), @@ -191437,10 +184504,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), - [anon_sym_RPAREN] = ACTIONS(1579), [anon_sym_GT2] = ACTIONS(1579), [anon_sym_DASH2] = ACTIONS(1579), [anon_sym_in2] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), [anon_sym_STAR2] = ACTIONS(1579), [anon_sym_and2] = ACTIONS(1579), [anon_sym_xor2] = ACTIONS(1579), @@ -191468,292 +184535,380 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1579), [anon_sym_bit_DASHxor2] = ACTIONS(1579), [anon_sym_bit_DASHor2] = ACTIONS(1579), - [anon_sym_DOT_DOT2] = ACTIONS(2546), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2548), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2548), - [sym_filesize_unit] = ACTIONS(3494), - [sym_duration_unit] = ACTIONS(3496), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [aux_sym__immediate_decimal_token2] = ACTIONS(3426), + [sym_filesize_unit] = ACTIONS(1579), + [sym_duration_unit] = ACTIONS(1581), [anon_sym_POUND] = ACTIONS(3), }, - [1150] = { - [sym_comment] = STATE(1150), - [ts_builtin_sym_end] = ACTIONS(1494), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), + [1090] = { + [sym_ctrl_do] = STATE(4563), + [sym_ctrl_if] = STATE(4563), + [sym_ctrl_match] = STATE(4563), + [sym_ctrl_try] = STATE(4563), + [sym__expression] = STATE(4563), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3669), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2848), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_comment] = STATE(1090), + [sym__newline] = ACTIONS(3320), + [anon_sym_SEMI] = ACTIONS(3320), + [anon_sym_PIPE] = ACTIONS(3320), + [anon_sym_err_GT_PIPE] = ACTIONS(3320), + [anon_sym_out_GT_PIPE] = ACTIONS(3320), + [anon_sym_e_GT_PIPE] = ACTIONS(3320), + [anon_sym_o_GT_PIPE] = ACTIONS(3320), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3320), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3320), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3320), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3320), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1012), + [anon_sym_DASH2] = ACTIONS(375), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_match] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(3320), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(3328), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(3330), + [anon_sym_true] = ACTIONS(3332), + [anon_sym_false] = ACTIONS(3332), + [aux_sym__val_number_decimal_token1] = ACTIONS(3334), + [aux_sym__val_number_decimal_token2] = ACTIONS(3336), + [aux_sym__val_number_decimal_token3] = ACTIONS(3338), + [aux_sym__val_number_decimal_token4] = ACTIONS(3340), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(223), + [aux_sym__val_number_token5] = ACTIONS(223), + [aux_sym__val_number_token6] = ACTIONS(223), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(247), + }, + [1091] = { + [sym_comment] = STATE(1091), + [anon_sym_STAR_STAR] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_mod] = ACTIONS(1493), + [anon_sym_SLASH_SLASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_bit_DASHshl] = ACTIONS(1493), + [anon_sym_bit_DASHshr] = ACTIONS(1493), + [anon_sym_EQ_TILDE] = ACTIONS(1493), + [anon_sym_BANG_TILDE] = ACTIONS(1493), + [anon_sym_bit_DASHand] = ACTIONS(1493), + [anon_sym_bit_DASHxor] = ACTIONS(1493), + [anon_sym_bit_DASHor] = ACTIONS(1493), + [anon_sym_and] = ACTIONS(1493), + [anon_sym_xor] = ACTIONS(1493), + [anon_sym_or] = ACTIONS(1493), + [anon_sym_in] = ACTIONS(1493), + [anon_sym_not_DASHin] = ACTIONS(1493), + [anon_sym_has] = ACTIONS(1493), + [anon_sym_not_DASHhas] = ACTIONS(1493), + [anon_sym_starts_DASHwith] = ACTIONS(1493), + [anon_sym_ends_DASHwith] = ACTIONS(1493), + [anon_sym_EQ_EQ] = ACTIONS(1493), + [anon_sym_BANG_EQ] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1493), + [aux_sym_cmd_identifier_token41] = ACTIONS(1491), + [sym__newline] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_err_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_GT_PIPE] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1491), + [anon_sym_GT2] = ACTIONS(1491), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_in2] = ACTIONS(1491), + [anon_sym_STAR2] = ACTIONS(1491), + [anon_sym_and2] = ACTIONS(1491), + [anon_sym_xor2] = ACTIONS(1491), + [anon_sym_or2] = ACTIONS(1491), + [anon_sym_not_DASHin2] = ACTIONS(1491), + [anon_sym_has2] = ACTIONS(1491), + [anon_sym_not_DASHhas2] = ACTIONS(1491), + [anon_sym_starts_DASHwith2] = ACTIONS(1491), + [anon_sym_ends_DASHwith2] = ACTIONS(1491), + [anon_sym_EQ_EQ2] = ACTIONS(1491), + [anon_sym_BANG_EQ2] = ACTIONS(1491), + [anon_sym_LT2] = ACTIONS(1491), + [anon_sym_LT_EQ2] = ACTIONS(1491), + [anon_sym_GT_EQ2] = ACTIONS(1491), + [anon_sym_EQ_TILDE2] = ACTIONS(1491), + [anon_sym_BANG_TILDE2] = ACTIONS(1491), + [anon_sym_STAR_STAR2] = ACTIONS(1491), + [anon_sym_PLUS_PLUS2] = ACTIONS(1491), + [anon_sym_SLASH2] = ACTIONS(1491), + [anon_sym_mod2] = ACTIONS(1491), + [anon_sym_SLASH_SLASH2] = ACTIONS(1491), + [anon_sym_PLUS2] = ACTIONS(1491), + [anon_sym_bit_DASHshl2] = ACTIONS(1491), + [anon_sym_bit_DASHshr2] = ACTIONS(1491), + [anon_sym_bit_DASHand2] = ACTIONS(1491), + [anon_sym_bit_DASHxor2] = ACTIONS(1491), + [anon_sym_bit_DASHor2] = ACTIONS(1491), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [aux_sym__immediate_decimal_token1] = ACTIONS(3428), + [aux_sym__immediate_decimal_token2] = ACTIONS(3430), + [sym_filesize_unit] = ACTIONS(1491), + [sym_duration_unit] = ACTIONS(1493), [anon_sym_POUND] = ACTIONS(3), }, - [1151] = { - [sym_comment] = STATE(1151), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), + [1092] = { + [sym_comment] = STATE(1092), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT] = ACTIONS(3432), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(3434), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), [anon_sym_POUND] = ACTIONS(3), }, - [1152] = { - [sym_comment] = STATE(1152), - [anon_sym_STAR_STAR] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_SLASH] = ACTIONS(1484), - [anon_sym_mod] = ACTIONS(1486), - [anon_sym_SLASH_SLASH] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_bit_DASHshl] = ACTIONS(1486), - [anon_sym_bit_DASHshr] = ACTIONS(1486), - [anon_sym_EQ_TILDE] = ACTIONS(1486), - [anon_sym_BANG_TILDE] = ACTIONS(1486), - [anon_sym_bit_DASHand] = ACTIONS(1486), - [anon_sym_bit_DASHxor] = ACTIONS(1486), - [anon_sym_bit_DASHor] = ACTIONS(1486), - [anon_sym_and] = ACTIONS(1486), - [anon_sym_xor] = ACTIONS(1486), - [anon_sym_or] = ACTIONS(1486), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_not_DASHin] = ACTIONS(1486), - [anon_sym_has] = ACTIONS(1486), - [anon_sym_not_DASHhas] = ACTIONS(1486), - [anon_sym_starts_DASHwith] = ACTIONS(1486), - [anon_sym_ends_DASHwith] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(1486), - [anon_sym_BANG_EQ] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1486), - [aux_sym_cmd_identifier_token41] = ACTIONS(1484), - [sym__newline] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_err_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_GT_PIPE] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1484), - [anon_sym_RPAREN] = ACTIONS(1484), - [anon_sym_GT2] = ACTIONS(1484), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_in2] = ACTIONS(1484), - [anon_sym_STAR2] = ACTIONS(1484), - [anon_sym_and2] = ACTIONS(1484), - [anon_sym_xor2] = ACTIONS(1484), - [anon_sym_or2] = ACTIONS(1484), - [anon_sym_not_DASHin2] = ACTIONS(1484), - [anon_sym_has2] = ACTIONS(1484), - [anon_sym_not_DASHhas2] = ACTIONS(1484), - [anon_sym_starts_DASHwith2] = ACTIONS(1484), - [anon_sym_ends_DASHwith2] = ACTIONS(1484), - [anon_sym_EQ_EQ2] = ACTIONS(1484), - [anon_sym_BANG_EQ2] = ACTIONS(1484), - [anon_sym_LT2] = ACTIONS(1484), - [anon_sym_LT_EQ2] = ACTIONS(1484), - [anon_sym_GT_EQ2] = ACTIONS(1484), - [anon_sym_EQ_TILDE2] = ACTIONS(1484), - [anon_sym_BANG_TILDE2] = ACTIONS(1484), - [anon_sym_STAR_STAR2] = ACTIONS(1484), - [anon_sym_PLUS_PLUS2] = ACTIONS(1484), - [anon_sym_SLASH2] = ACTIONS(1484), - [anon_sym_mod2] = ACTIONS(1484), - [anon_sym_SLASH_SLASH2] = ACTIONS(1484), - [anon_sym_PLUS2] = ACTIONS(1484), - [anon_sym_bit_DASHshl2] = ACTIONS(1484), - [anon_sym_bit_DASHshr2] = ACTIONS(1484), - [anon_sym_bit_DASHand2] = ACTIONS(1484), - [anon_sym_bit_DASHxor2] = ACTIONS(1484), - [anon_sym_bit_DASHor2] = ACTIONS(1484), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [sym_filesize_unit] = ACTIONS(1484), - [sym_duration_unit] = ACTIONS(1486), + [1093] = { + [sym_comment] = STATE(1093), + [ts_builtin_sym_end] = ACTIONS(1501), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(3370), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), [anon_sym_POUND] = ACTIONS(3), }, - [1153] = { - [sym_comment] = STATE(1153), - [anon_sym_STAR_STAR] = ACTIONS(2572), - [anon_sym_PLUS_PLUS] = ACTIONS(2572), - [anon_sym_STAR] = ACTIONS(2574), - [anon_sym_SLASH] = ACTIONS(2574), - [anon_sym_mod] = ACTIONS(2572), - [anon_sym_SLASH_SLASH] = ACTIONS(2572), - [anon_sym_PLUS] = ACTIONS(2574), - [anon_sym_DASH] = ACTIONS(2572), - [anon_sym_bit_DASHshl] = ACTIONS(2572), - [anon_sym_bit_DASHshr] = ACTIONS(2572), - [anon_sym_EQ_TILDE] = ACTIONS(2572), - [anon_sym_BANG_TILDE] = ACTIONS(2572), - [anon_sym_bit_DASHand] = ACTIONS(2572), - [anon_sym_bit_DASHxor] = ACTIONS(2572), - [anon_sym_bit_DASHor] = ACTIONS(2572), - [anon_sym_and] = ACTIONS(2572), - [anon_sym_xor] = ACTIONS(2572), - [anon_sym_or] = ACTIONS(2572), - [anon_sym_in] = ACTIONS(2572), - [anon_sym_not_DASHin] = ACTIONS(2572), - [anon_sym_has] = ACTIONS(2572), - [anon_sym_not_DASHhas] = ACTIONS(2572), - [anon_sym_starts_DASHwith] = ACTIONS(2572), - [anon_sym_ends_DASHwith] = ACTIONS(2572), - [anon_sym_EQ_EQ] = ACTIONS(2572), - [anon_sym_BANG_EQ] = ACTIONS(2572), - [anon_sym_LT] = ACTIONS(2574), - [anon_sym_LT_EQ] = ACTIONS(2572), - [anon_sym_GT] = ACTIONS(2574), - [anon_sym_GT_EQ] = ACTIONS(2572), - [aux_sym_cmd_identifier_token41] = ACTIONS(2576), + [1094] = { + [sym_comment] = STATE(1094), + [ts_builtin_sym_end] = ACTIONS(1581), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1581), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_bit_DASHshl] = ACTIONS(1581), + [anon_sym_bit_DASHshr] = ACTIONS(1581), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1581), + [anon_sym_bit_DASHxor] = ACTIONS(1581), + [anon_sym_bit_DASHor] = ACTIONS(1581), + [anon_sym_and] = ACTIONS(1581), + [anon_sym_xor] = ACTIONS(1581), + [anon_sym_or] = ACTIONS(1581), + [anon_sym_in] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1581), + [anon_sym_has] = ACTIONS(1581), + [anon_sym_not_DASHhas] = ACTIONS(1581), + [anon_sym_starts_DASHwith] = ACTIONS(1581), + [anon_sym_ends_DASHwith] = ACTIONS(1581), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1581), + [aux_sym_cmd_identifier_token41] = ACTIONS(1579), [sym__newline] = ACTIONS(1579), [anon_sym_SEMI] = ACTIONS(1579), [anon_sym_PIPE] = ACTIONS(1579), @@ -191768,7 +184923,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT2] = ACTIONS(1579), [anon_sym_DASH2] = ACTIONS(1579), [anon_sym_in2] = ACTIONS(1579), - [anon_sym_RBRACE] = ACTIONS(1579), [anon_sym_STAR2] = ACTIONS(1579), [anon_sym_and2] = ACTIONS(1579), [anon_sym_xor2] = ACTIONS(1579), @@ -191796,47 +184950,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1579), [anon_sym_bit_DASHxor2] = ACTIONS(1579), [anon_sym_bit_DASHor2] = ACTIONS(1579), - [anon_sym_DOT_DOT2] = ACTIONS(2546), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2548), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2548), - [sym_filesize_unit] = ACTIONS(3498), - [sym_duration_unit] = ACTIONS(3500), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [aux_sym__immediate_decimal_token2] = ACTIONS(3436), + [sym_filesize_unit] = ACTIONS(1579), + [sym_duration_unit] = ACTIONS(1581), [anon_sym_POUND] = ACTIONS(3), }, - [1154] = { - [sym_comment] = STATE(1154), - [ts_builtin_sym_end] = ACTIONS(1591), - [anon_sym_STAR_STAR] = ACTIONS(2558), - [anon_sym_PLUS_PLUS] = ACTIONS(2558), - [anon_sym_STAR] = ACTIONS(2560), - [anon_sym_SLASH] = ACTIONS(2560), - [anon_sym_mod] = ACTIONS(2558), - [anon_sym_SLASH_SLASH] = ACTIONS(2558), - [anon_sym_PLUS] = ACTIONS(2560), - [anon_sym_DASH] = ACTIONS(2558), - [anon_sym_bit_DASHshl] = ACTIONS(2558), - [anon_sym_bit_DASHshr] = ACTIONS(2558), - [anon_sym_EQ_TILDE] = ACTIONS(2558), - [anon_sym_BANG_TILDE] = ACTIONS(2558), - [anon_sym_bit_DASHand] = ACTIONS(2558), - [anon_sym_bit_DASHxor] = ACTIONS(2558), - [anon_sym_bit_DASHor] = ACTIONS(2558), - [anon_sym_and] = ACTIONS(2558), - [anon_sym_xor] = ACTIONS(2558), - [anon_sym_or] = ACTIONS(2558), - [anon_sym_in] = ACTIONS(2558), - [anon_sym_not_DASHin] = ACTIONS(2558), - [anon_sym_has] = ACTIONS(2558), - [anon_sym_not_DASHhas] = ACTIONS(2558), - [anon_sym_starts_DASHwith] = ACTIONS(2558), - [anon_sym_ends_DASHwith] = ACTIONS(2558), - [anon_sym_EQ_EQ] = ACTIONS(2558), - [anon_sym_BANG_EQ] = ACTIONS(2558), - [anon_sym_LT] = ACTIONS(2560), - [anon_sym_LT_EQ] = ACTIONS(2558), - [anon_sym_GT] = ACTIONS(2560), - [anon_sym_GT_EQ] = ACTIONS(2558), - [aux_sym_cmd_identifier_token41] = ACTIONS(2562), + [1095] = { + [sym_comment] = STATE(1095), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1581), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_bit_DASHshl] = ACTIONS(1581), + [anon_sym_bit_DASHshr] = ACTIONS(1581), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1581), + [anon_sym_bit_DASHxor] = ACTIONS(1581), + [anon_sym_bit_DASHor] = ACTIONS(1581), + [anon_sym_and] = ACTIONS(1581), + [anon_sym_xor] = ACTIONS(1581), + [anon_sym_or] = ACTIONS(1581), + [anon_sym_in] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1581), + [anon_sym_has] = ACTIONS(1581), + [anon_sym_not_DASHhas] = ACTIONS(1581), + [anon_sym_starts_DASHwith] = ACTIONS(1581), + [anon_sym_ends_DASHwith] = ACTIONS(1581), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1581), + [aux_sym_cmd_identifier_token41] = ACTIONS(1579), [sym__newline] = ACTIONS(1579), [anon_sym_SEMI] = ACTIONS(1579), [anon_sym_PIPE] = ACTIONS(1579), @@ -191851,6 +185005,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT2] = ACTIONS(1579), [anon_sym_DASH2] = ACTIONS(1579), [anon_sym_in2] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), [anon_sym_STAR2] = ACTIONS(1579), [anon_sym_and2] = ACTIONS(1579), [anon_sym_xor2] = ACTIONS(1579), @@ -191878,1604 +185033,1769 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1579), [anon_sym_bit_DASHxor2] = ACTIONS(1579), [anon_sym_bit_DASHor2] = ACTIONS(1579), - [anon_sym_DOT_DOT2] = ACTIONS(2564), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2566), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2566), - [sym_filesize_unit] = ACTIONS(3502), - [sym_duration_unit] = ACTIONS(3504), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [sym_filesize_unit] = ACTIONS(1579), + [sym_duration_unit] = ACTIONS(1581), [anon_sym_POUND] = ACTIONS(3), }, - [1155] = { - [sym_comment] = STATE(1155), - [ts_builtin_sym_end] = ACTIONS(1717), - [anon_sym_STAR_STAR] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_STAR] = ACTIONS(1715), - [anon_sym_SLASH] = ACTIONS(1715), - [anon_sym_mod] = ACTIONS(1717), - [anon_sym_SLASH_SLASH] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_bit_DASHshl] = ACTIONS(1717), - [anon_sym_bit_DASHshr] = ACTIONS(1717), - [anon_sym_EQ_TILDE] = ACTIONS(1717), - [anon_sym_BANG_TILDE] = ACTIONS(1717), - [anon_sym_bit_DASHand] = ACTIONS(1717), - [anon_sym_bit_DASHxor] = ACTIONS(1717), - [anon_sym_bit_DASHor] = ACTIONS(1717), - [anon_sym_and] = ACTIONS(1717), - [anon_sym_xor] = ACTIONS(1717), - [anon_sym_or] = ACTIONS(1717), - [anon_sym_in] = ACTIONS(1717), - [anon_sym_not_DASHin] = ACTIONS(1717), - [anon_sym_has] = ACTIONS(1717), - [anon_sym_not_DASHhas] = ACTIONS(1717), - [anon_sym_starts_DASHwith] = ACTIONS(1717), - [anon_sym_ends_DASHwith] = ACTIONS(1717), - [anon_sym_EQ_EQ] = ACTIONS(1717), - [anon_sym_BANG_EQ] = ACTIONS(1717), - [anon_sym_LT] = ACTIONS(1715), - [anon_sym_LT_EQ] = ACTIONS(1717), - [anon_sym_GT] = ACTIONS(1715), - [anon_sym_GT_EQ] = ACTIONS(1717), - [aux_sym_cmd_identifier_token41] = ACTIONS(1715), - [sym__newline] = ACTIONS(1715), - [anon_sym_SEMI] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_err_GT_PIPE] = ACTIONS(1715), - [anon_sym_out_GT_PIPE] = ACTIONS(1715), - [anon_sym_e_GT_PIPE] = ACTIONS(1715), - [anon_sym_o_GT_PIPE] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1715), - [anon_sym_GT2] = ACTIONS(1715), - [anon_sym_DASH2] = ACTIONS(1715), - [anon_sym_in2] = ACTIONS(1715), - [anon_sym_STAR2] = ACTIONS(1715), - [anon_sym_and2] = ACTIONS(1715), - [anon_sym_xor2] = ACTIONS(1715), - [anon_sym_or2] = ACTIONS(1715), - [anon_sym_not_DASHin2] = ACTIONS(1715), - [anon_sym_has2] = ACTIONS(1715), - [anon_sym_not_DASHhas2] = ACTIONS(1715), - [anon_sym_starts_DASHwith2] = ACTIONS(1715), - [anon_sym_ends_DASHwith2] = ACTIONS(1715), - [anon_sym_EQ_EQ2] = ACTIONS(1715), - [anon_sym_BANG_EQ2] = ACTIONS(1715), - [anon_sym_LT2] = ACTIONS(1715), - [anon_sym_LT_EQ2] = ACTIONS(1715), - [anon_sym_GT_EQ2] = ACTIONS(1715), - [anon_sym_EQ_TILDE2] = ACTIONS(1715), - [anon_sym_BANG_TILDE2] = ACTIONS(1715), - [anon_sym_STAR_STAR2] = ACTIONS(1715), - [anon_sym_PLUS_PLUS2] = ACTIONS(1715), - [anon_sym_SLASH2] = ACTIONS(1715), - [anon_sym_mod2] = ACTIONS(1715), - [anon_sym_SLASH_SLASH2] = ACTIONS(1715), - [anon_sym_PLUS2] = ACTIONS(1715), - [anon_sym_bit_DASHshl2] = ACTIONS(1715), - [anon_sym_bit_DASHshr2] = ACTIONS(1715), - [anon_sym_bit_DASHand2] = ACTIONS(1715), - [anon_sym_bit_DASHxor2] = ACTIONS(1715), - [anon_sym_bit_DASHor2] = ACTIONS(1715), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [sym_filesize_unit] = ACTIONS(1715), - [sym_duration_unit] = ACTIONS(1717), + [1096] = { + [sym_expr_unary] = STATE(4218), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_parenthesized] = STATE(3880), + [sym_val_range] = STATE(4218), + [sym__val_range] = STATE(7094), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(4218), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(3881), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3720), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(3962), + [sym__unquoted_with_expr] = STATE(4140), + [sym__unquoted_anonymous_prefix] = STATE(6454), + [sym_comment] = STATE(1096), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_DASH2] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(3444), + [anon_sym_DOT_DOT] = ACTIONS(3446), + [aux_sym_expr_unary_token1] = ACTIONS(3448), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3450), + [anon_sym_DOT_DOT_LT] = ACTIONS(3450), + [anon_sym_null] = ACTIONS(3452), + [anon_sym_true] = ACTIONS(3454), + [anon_sym_false] = ACTIONS(3454), + [aux_sym__val_number_decimal_token1] = ACTIONS(3456), + [aux_sym__val_number_decimal_token2] = ACTIONS(3458), + [aux_sym__val_number_decimal_token3] = ACTIONS(3460), + [aux_sym__val_number_decimal_token4] = ACTIONS(3462), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3464), + [aux_sym__val_number_token5] = ACTIONS(3464), + [aux_sym__val_number_token6] = ACTIONS(3464), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3466), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym__str_single_quotes] = ACTIONS(1264), + [sym__str_back_ticks] = ACTIONS(1264), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1266), + }, + [1097] = { + [sym_comment] = STATE(1097), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), [anon_sym_POUND] = ACTIONS(3), }, - [1156] = { - [sym_comment] = STATE(1156), - [ts_builtin_sym_end] = ACTIONS(1486), - [anon_sym_STAR_STAR] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_SLASH] = ACTIONS(1484), - [anon_sym_mod] = ACTIONS(1486), - [anon_sym_SLASH_SLASH] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_bit_DASHshl] = ACTIONS(1486), - [anon_sym_bit_DASHshr] = ACTIONS(1486), - [anon_sym_EQ_TILDE] = ACTIONS(1486), - [anon_sym_BANG_TILDE] = ACTIONS(1486), - [anon_sym_bit_DASHand] = ACTIONS(1486), - [anon_sym_bit_DASHxor] = ACTIONS(1486), - [anon_sym_bit_DASHor] = ACTIONS(1486), - [anon_sym_and] = ACTIONS(1486), - [anon_sym_xor] = ACTIONS(1486), - [anon_sym_or] = ACTIONS(1486), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_not_DASHin] = ACTIONS(1486), - [anon_sym_has] = ACTIONS(1486), - [anon_sym_not_DASHhas] = ACTIONS(1486), - [anon_sym_starts_DASHwith] = ACTIONS(1486), - [anon_sym_ends_DASHwith] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(1486), - [anon_sym_BANG_EQ] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1486), - [aux_sym_cmd_identifier_token41] = ACTIONS(1484), - [sym__newline] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_err_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_GT_PIPE] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1484), - [anon_sym_GT2] = ACTIONS(1484), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_in2] = ACTIONS(1484), - [anon_sym_STAR2] = ACTIONS(1484), - [anon_sym_and2] = ACTIONS(1484), - [anon_sym_xor2] = ACTIONS(1484), - [anon_sym_or2] = ACTIONS(1484), - [anon_sym_not_DASHin2] = ACTIONS(1484), - [anon_sym_has2] = ACTIONS(1484), - [anon_sym_not_DASHhas2] = ACTIONS(1484), - [anon_sym_starts_DASHwith2] = ACTIONS(1484), - [anon_sym_ends_DASHwith2] = ACTIONS(1484), - [anon_sym_EQ_EQ2] = ACTIONS(1484), - [anon_sym_BANG_EQ2] = ACTIONS(1484), - [anon_sym_LT2] = ACTIONS(1484), - [anon_sym_LT_EQ2] = ACTIONS(1484), - [anon_sym_GT_EQ2] = ACTIONS(1484), - [anon_sym_EQ_TILDE2] = ACTIONS(1484), - [anon_sym_BANG_TILDE2] = ACTIONS(1484), - [anon_sym_STAR_STAR2] = ACTIONS(1484), - [anon_sym_PLUS_PLUS2] = ACTIONS(1484), - [anon_sym_SLASH2] = ACTIONS(1484), - [anon_sym_mod2] = ACTIONS(1484), - [anon_sym_SLASH_SLASH2] = ACTIONS(1484), - [anon_sym_PLUS2] = ACTIONS(1484), - [anon_sym_bit_DASHshl2] = ACTIONS(1484), - [anon_sym_bit_DASHshr2] = ACTIONS(1484), - [anon_sym_bit_DASHand2] = ACTIONS(1484), - [anon_sym_bit_DASHxor2] = ACTIONS(1484), - [anon_sym_bit_DASHor2] = ACTIONS(1484), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [sym_filesize_unit] = ACTIONS(1484), - [sym_duration_unit] = ACTIONS(1486), + [1098] = { + [sym_comment] = STATE(1098), + [anon_sym_STAR_STAR] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_mod] = ACTIONS(1493), + [anon_sym_SLASH_SLASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_bit_DASHshl] = ACTIONS(1493), + [anon_sym_bit_DASHshr] = ACTIONS(1493), + [anon_sym_EQ_TILDE] = ACTIONS(1493), + [anon_sym_BANG_TILDE] = ACTIONS(1493), + [anon_sym_bit_DASHand] = ACTIONS(1493), + [anon_sym_bit_DASHxor] = ACTIONS(1493), + [anon_sym_bit_DASHor] = ACTIONS(1493), + [anon_sym_and] = ACTIONS(1493), + [anon_sym_xor] = ACTIONS(1493), + [anon_sym_or] = ACTIONS(1493), + [anon_sym_in] = ACTIONS(1493), + [anon_sym_not_DASHin] = ACTIONS(1493), + [anon_sym_has] = ACTIONS(1493), + [anon_sym_not_DASHhas] = ACTIONS(1493), + [anon_sym_starts_DASHwith] = ACTIONS(1493), + [anon_sym_ends_DASHwith] = ACTIONS(1493), + [anon_sym_EQ_EQ] = ACTIONS(1493), + [anon_sym_BANG_EQ] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1493), + [aux_sym_cmd_identifier_token41] = ACTIONS(1491), + [sym__newline] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_err_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_GT_PIPE] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1491), + [anon_sym_GT2] = ACTIONS(1491), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_in2] = ACTIONS(1491), + [anon_sym_RBRACE] = ACTIONS(1491), + [anon_sym_STAR2] = ACTIONS(1491), + [anon_sym_and2] = ACTIONS(1491), + [anon_sym_xor2] = ACTIONS(1491), + [anon_sym_or2] = ACTIONS(1491), + [anon_sym_not_DASHin2] = ACTIONS(1491), + [anon_sym_has2] = ACTIONS(1491), + [anon_sym_not_DASHhas2] = ACTIONS(1491), + [anon_sym_starts_DASHwith2] = ACTIONS(1491), + [anon_sym_ends_DASHwith2] = ACTIONS(1491), + [anon_sym_EQ_EQ2] = ACTIONS(1491), + [anon_sym_BANG_EQ2] = ACTIONS(1491), + [anon_sym_LT2] = ACTIONS(1491), + [anon_sym_LT_EQ2] = ACTIONS(1491), + [anon_sym_GT_EQ2] = ACTIONS(1491), + [anon_sym_EQ_TILDE2] = ACTIONS(1491), + [anon_sym_BANG_TILDE2] = ACTIONS(1491), + [anon_sym_STAR_STAR2] = ACTIONS(1491), + [anon_sym_PLUS_PLUS2] = ACTIONS(1491), + [anon_sym_SLASH2] = ACTIONS(1491), + [anon_sym_mod2] = ACTIONS(1491), + [anon_sym_SLASH_SLASH2] = ACTIONS(1491), + [anon_sym_PLUS2] = ACTIONS(1491), + [anon_sym_bit_DASHshl2] = ACTIONS(1491), + [anon_sym_bit_DASHshr2] = ACTIONS(1491), + [anon_sym_bit_DASHand2] = ACTIONS(1491), + [anon_sym_bit_DASHxor2] = ACTIONS(1491), + [anon_sym_bit_DASHor2] = ACTIONS(1491), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [sym_filesize_unit] = ACTIONS(1491), + [sym_duration_unit] = ACTIONS(1493), [anon_sym_POUND] = ACTIONS(3), }, - [1157] = { - [sym_expr_unary] = STATE(4483), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_parenthesized] = STATE(4105), - [sym_val_range] = STATE(4483), - [sym__val_range] = STATE(7905), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(4483), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(4202), - [sym_val_variable] = STATE(4127), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(3942), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_unquoted] = STATE(4244), - [sym__unquoted_with_expr] = STATE(4504), - [sym__unquoted_anonymous_prefix] = STATE(6815), - [sym_comment] = STATE(1157), + [1099] = { + [sym_expr_unary] = STATE(4318), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_parenthesized] = STATE(3958), + [sym_val_range] = STATE(4318), + [sym__val_range] = STATE(7269), + [sym__val_range_with_end] = STATE(6930), + [sym__value] = STATE(4318), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(4034), + [sym_val_variable] = STATE(3954), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(3736), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_unquoted] = STATE(3987), + [sym__unquoted_with_expr] = STATE(4247), + [sym__unquoted_anonymous_prefix] = STATE(6430), + [sym_comment] = STATE(1099), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(3506), + [anon_sym_DOLLAR] = ACTIONS(3470), [anon_sym_DASH2] = ACTIONS(47), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(3508), - [aux_sym_expr_unary_token1] = ACTIONS(3510), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3512), - [anon_sym_DOT_DOT_LT] = ACTIONS(3512), - [anon_sym_null] = ACTIONS(3514), - [anon_sym_true] = ACTIONS(3516), - [anon_sym_false] = ACTIONS(3516), - [aux_sym__val_number_decimal_token1] = ACTIONS(3518), - [aux_sym__val_number_decimal_token2] = ACTIONS(3520), - [aux_sym__val_number_decimal_token3] = ACTIONS(3522), - [aux_sym__val_number_decimal_token4] = ACTIONS(3524), + [anon_sym_DOT_DOT] = ACTIONS(3472), + [aux_sym_expr_unary_token1] = ACTIONS(3474), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3476), + [anon_sym_DOT_DOT_LT] = ACTIONS(3476), + [anon_sym_null] = ACTIONS(3478), + [anon_sym_true] = ACTIONS(3480), + [anon_sym_false] = ACTIONS(3480), + [aux_sym__val_number_decimal_token1] = ACTIONS(3482), + [aux_sym__val_number_decimal_token2] = ACTIONS(3484), + [aux_sym__val_number_decimal_token3] = ACTIONS(3486), + [aux_sym__val_number_decimal_token4] = ACTIONS(3488), [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(3526), - [aux_sym__val_number_token5] = ACTIONS(3526), - [aux_sym__val_number_token6] = ACTIONS(3526), + [aux_sym__val_number_token4] = ACTIONS(3490), + [aux_sym__val_number_token5] = ACTIONS(3490), + [aux_sym__val_number_token6] = ACTIONS(3490), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3528), + [sym_val_date] = ACTIONS(3492), [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3530), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3494), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(121), }, - [1158] = { - [sym_expr_unary] = STATE(4534), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_parenthesized] = STATE(4123), - [sym_val_range] = STATE(4534), - [sym__val_range] = STATE(7905), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(4534), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(4202), - [sym_val_variable] = STATE(4127), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(3942), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_unquoted] = STATE(4186), - [sym__unquoted_with_expr] = STATE(4513), - [sym__unquoted_anonymous_prefix] = STATE(6815), - [sym_comment] = STATE(1158), + [1100] = { + [sym_expr_unary] = STATE(4291), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_parenthesized] = STATE(3923), + [sym_val_range] = STATE(4291), + [sym__val_range] = STATE(7269), + [sym__val_range_with_end] = STATE(6930), + [sym__value] = STATE(4291), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(4034), + [sym_val_variable] = STATE(3954), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(3736), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_unquoted] = STATE(3968), + [sym__unquoted_with_expr] = STATE(4304), + [sym__unquoted_anonymous_prefix] = STATE(6430), + [sym_comment] = STATE(1100), [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(3506), + [anon_sym_DOLLAR] = ACTIONS(3470), [anon_sym_DASH2] = ACTIONS(47), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(3508), - [aux_sym_expr_unary_token1] = ACTIONS(3510), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3512), - [anon_sym_DOT_DOT_LT] = ACTIONS(3512), - [anon_sym_null] = ACTIONS(3514), - [anon_sym_true] = ACTIONS(3516), - [anon_sym_false] = ACTIONS(3516), - [aux_sym__val_number_decimal_token1] = ACTIONS(3518), - [aux_sym__val_number_decimal_token2] = ACTIONS(3520), - [aux_sym__val_number_decimal_token3] = ACTIONS(3522), - [aux_sym__val_number_decimal_token4] = ACTIONS(3524), + [anon_sym_DOT_DOT] = ACTIONS(3472), + [aux_sym_expr_unary_token1] = ACTIONS(3474), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3476), + [anon_sym_DOT_DOT_LT] = ACTIONS(3476), + [anon_sym_null] = ACTIONS(3478), + [anon_sym_true] = ACTIONS(3480), + [anon_sym_false] = ACTIONS(3480), + [aux_sym__val_number_decimal_token1] = ACTIONS(3482), + [aux_sym__val_number_decimal_token2] = ACTIONS(3484), + [aux_sym__val_number_decimal_token3] = ACTIONS(3486), + [aux_sym__val_number_decimal_token4] = ACTIONS(3488), [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(3526), - [aux_sym__val_number_token5] = ACTIONS(3526), - [aux_sym__val_number_token6] = ACTIONS(3526), + [aux_sym__val_number_token4] = ACTIONS(3490), + [aux_sym__val_number_token5] = ACTIONS(3490), + [aux_sym__val_number_token6] = ACTIONS(3490), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3528), + [sym_val_date] = ACTIONS(3492), [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3530), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3494), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(121), }, - [1159] = { - [sym_expr_unary] = STATE(4488), - [sym__expr_unary_minus] = STATE(2511), - [sym_expr_parenthesized] = STATE(4108), - [sym_val_range] = STATE(4488), - [sym__val_range] = STATE(7905), - [sym__val_range_with_end] = STATE(7455), - [sym__value] = STATE(4488), - [sym_val_nothing] = STATE(2470), - [sym_val_bool] = STATE(4202), - [sym_val_variable] = STATE(4127), - [sym_val_number] = STATE(2470), - [sym__val_number_decimal] = STATE(3942), - [sym__val_number] = STATE(2514), - [sym_val_duration] = STATE(2470), - [sym_val_filesize] = STATE(2470), - [sym_val_binary] = STATE(2470), - [sym_val_string] = STATE(2470), - [sym__raw_str] = STATE(1634), - [sym__str_double_quotes] = STATE(1634), - [sym_val_interpolated] = STATE(2470), - [sym__inter_single_quotes] = STATE(2515), - [sym__inter_double_quotes] = STATE(2418), - [sym_val_list] = STATE(2470), - [sym_val_record] = STATE(2470), - [sym_val_table] = STATE(2470), - [sym_val_closure] = STATE(2470), - [sym_unquoted] = STATE(4218), - [sym__unquoted_with_expr] = STATE(4485), - [sym__unquoted_anonymous_prefix] = STATE(6815), - [sym_comment] = STATE(1159), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(3506), - [anon_sym_DASH2] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_DOT_DOT] = ACTIONS(3508), - [aux_sym_expr_unary_token1] = ACTIONS(3510), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3512), - [anon_sym_DOT_DOT_LT] = ACTIONS(3512), - [anon_sym_null] = ACTIONS(3514), - [anon_sym_true] = ACTIONS(3516), - [anon_sym_false] = ACTIONS(3516), - [aux_sym__val_number_decimal_token1] = ACTIONS(3518), - [aux_sym__val_number_decimal_token2] = ACTIONS(3520), - [aux_sym__val_number_decimal_token3] = ACTIONS(3522), - [aux_sym__val_number_decimal_token4] = ACTIONS(3524), - [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(3526), - [aux_sym__val_number_token5] = ACTIONS(3526), - [aux_sym__val_number_token6] = ACTIONS(3526), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3528), - [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3530), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(121), + [1101] = { + [sym_comment] = STATE(1101), + [anon_sym_STAR_STAR] = ACTIONS(1680), + [anon_sym_PLUS_PLUS] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_SLASH] = ACTIONS(1678), + [anon_sym_mod] = ACTIONS(1680), + [anon_sym_SLASH_SLASH] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1680), + [anon_sym_bit_DASHshl] = ACTIONS(1680), + [anon_sym_bit_DASHshr] = ACTIONS(1680), + [anon_sym_EQ_TILDE] = ACTIONS(1680), + [anon_sym_BANG_TILDE] = ACTIONS(1680), + [anon_sym_bit_DASHand] = ACTIONS(1680), + [anon_sym_bit_DASHxor] = ACTIONS(1680), + [anon_sym_bit_DASHor] = ACTIONS(1680), + [anon_sym_and] = ACTIONS(1680), + [anon_sym_xor] = ACTIONS(1680), + [anon_sym_or] = ACTIONS(1680), + [anon_sym_in] = ACTIONS(1680), + [anon_sym_not_DASHin] = ACTIONS(1680), + [anon_sym_has] = ACTIONS(1680), + [anon_sym_not_DASHhas] = ACTIONS(1680), + [anon_sym_starts_DASHwith] = ACTIONS(1680), + [anon_sym_ends_DASHwith] = ACTIONS(1680), + [anon_sym_EQ_EQ] = ACTIONS(1680), + [anon_sym_BANG_EQ] = ACTIONS(1680), + [anon_sym_LT] = ACTIONS(1678), + [anon_sym_LT_EQ] = ACTIONS(1680), + [anon_sym_GT] = ACTIONS(1678), + [anon_sym_GT_EQ] = ACTIONS(1680), + [aux_sym_cmd_identifier_token41] = ACTIONS(1678), + [sym__newline] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_PIPE] = ACTIONS(1678), + [anon_sym_err_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_GT_PIPE] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1678), + [anon_sym_GT2] = ACTIONS(1678), + [anon_sym_DASH2] = ACTIONS(1678), + [anon_sym_in2] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_STAR2] = ACTIONS(1678), + [anon_sym_and2] = ACTIONS(1678), + [anon_sym_xor2] = ACTIONS(1678), + [anon_sym_or2] = ACTIONS(1678), + [anon_sym_not_DASHin2] = ACTIONS(1678), + [anon_sym_has2] = ACTIONS(1678), + [anon_sym_not_DASHhas2] = ACTIONS(1678), + [anon_sym_starts_DASHwith2] = ACTIONS(1678), + [anon_sym_ends_DASHwith2] = ACTIONS(1678), + [anon_sym_EQ_EQ2] = ACTIONS(1678), + [anon_sym_BANG_EQ2] = ACTIONS(1678), + [anon_sym_LT2] = ACTIONS(1678), + [anon_sym_LT_EQ2] = ACTIONS(1678), + [anon_sym_GT_EQ2] = ACTIONS(1678), + [anon_sym_EQ_TILDE2] = ACTIONS(1678), + [anon_sym_BANG_TILDE2] = ACTIONS(1678), + [anon_sym_STAR_STAR2] = ACTIONS(1678), + [anon_sym_PLUS_PLUS2] = ACTIONS(1678), + [anon_sym_SLASH2] = ACTIONS(1678), + [anon_sym_mod2] = ACTIONS(1678), + [anon_sym_SLASH_SLASH2] = ACTIONS(1678), + [anon_sym_PLUS2] = ACTIONS(1678), + [anon_sym_bit_DASHshl2] = ACTIONS(1678), + [anon_sym_bit_DASHshr2] = ACTIONS(1678), + [anon_sym_bit_DASHand2] = ACTIONS(1678), + [anon_sym_bit_DASHxor2] = ACTIONS(1678), + [anon_sym_bit_DASHor2] = ACTIONS(1678), + [anon_sym_DOT_DOT2] = ACTIONS(1678), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1680), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1680), + [sym_filesize_unit] = ACTIONS(1678), + [sym_duration_unit] = ACTIONS(1680), + [anon_sym_POUND] = ACTIONS(3), }, - [1160] = { - [sym_comment] = STATE(1160), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), + [1102] = { + [sym_comment] = STATE(1102), + [anon_sym_STAR_STAR] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_mod] = ACTIONS(1493), + [anon_sym_SLASH_SLASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_bit_DASHshl] = ACTIONS(1493), + [anon_sym_bit_DASHshr] = ACTIONS(1493), + [anon_sym_EQ_TILDE] = ACTIONS(1493), + [anon_sym_BANG_TILDE] = ACTIONS(1493), + [anon_sym_bit_DASHand] = ACTIONS(1493), + [anon_sym_bit_DASHxor] = ACTIONS(1493), + [anon_sym_bit_DASHor] = ACTIONS(1493), + [anon_sym_and] = ACTIONS(1493), + [anon_sym_xor] = ACTIONS(1493), + [anon_sym_or] = ACTIONS(1493), + [anon_sym_in] = ACTIONS(1493), + [anon_sym_not_DASHin] = ACTIONS(1493), + [anon_sym_has] = ACTIONS(1493), + [anon_sym_not_DASHhas] = ACTIONS(1493), + [anon_sym_starts_DASHwith] = ACTIONS(1493), + [anon_sym_ends_DASHwith] = ACTIONS(1493), + [anon_sym_EQ_EQ] = ACTIONS(1493), + [anon_sym_BANG_EQ] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1493), + [aux_sym_cmd_identifier_token41] = ACTIONS(1491), + [sym__newline] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_err_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_GT_PIPE] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1491), + [anon_sym_GT2] = ACTIONS(1491), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_in2] = ACTIONS(1491), + [anon_sym_STAR2] = ACTIONS(1491), + [anon_sym_and2] = ACTIONS(1491), + [anon_sym_xor2] = ACTIONS(1491), + [anon_sym_or2] = ACTIONS(1491), + [anon_sym_not_DASHin2] = ACTIONS(1491), + [anon_sym_has2] = ACTIONS(1491), + [anon_sym_not_DASHhas2] = ACTIONS(1491), + [anon_sym_starts_DASHwith2] = ACTIONS(1491), + [anon_sym_ends_DASHwith2] = ACTIONS(1491), + [anon_sym_EQ_EQ2] = ACTIONS(1491), + [anon_sym_BANG_EQ2] = ACTIONS(1491), + [anon_sym_LT2] = ACTIONS(1491), + [anon_sym_LT_EQ2] = ACTIONS(1491), + [anon_sym_GT_EQ2] = ACTIONS(1491), + [anon_sym_EQ_TILDE2] = ACTIONS(1491), + [anon_sym_BANG_TILDE2] = ACTIONS(1491), + [anon_sym_STAR_STAR2] = ACTIONS(1491), + [anon_sym_PLUS_PLUS2] = ACTIONS(1491), + [anon_sym_SLASH2] = ACTIONS(1491), + [anon_sym_mod2] = ACTIONS(1491), + [anon_sym_SLASH_SLASH2] = ACTIONS(1491), + [anon_sym_PLUS2] = ACTIONS(1491), + [anon_sym_bit_DASHshl2] = ACTIONS(1491), + [anon_sym_bit_DASHshr2] = ACTIONS(1491), + [anon_sym_bit_DASHand2] = ACTIONS(1491), + [anon_sym_bit_DASHxor2] = ACTIONS(1491), + [anon_sym_bit_DASHor2] = ACTIONS(1491), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [aux_sym__immediate_decimal_token1] = ACTIONS(3496), + [aux_sym__immediate_decimal_token2] = ACTIONS(3498), + [sym_filesize_unit] = ACTIONS(1491), + [sym_duration_unit] = ACTIONS(1493), [anon_sym_POUND] = ACTIONS(3), }, - [1161] = { - [sym_comment] = STATE(1161), - [ts_builtin_sym_end] = ACTIONS(1540), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1540), - [anon_sym_SLASH_SLASH] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_bit_DASHshl] = ACTIONS(1540), - [anon_sym_bit_DASHshr] = ACTIONS(1540), - [anon_sym_EQ_TILDE] = ACTIONS(1540), - [anon_sym_BANG_TILDE] = ACTIONS(1540), - [anon_sym_bit_DASHand] = ACTIONS(1540), - [anon_sym_bit_DASHxor] = ACTIONS(1540), - [anon_sym_bit_DASHor] = ACTIONS(1540), - [anon_sym_and] = ACTIONS(1540), - [anon_sym_xor] = ACTIONS(1540), - [anon_sym_or] = ACTIONS(1540), - [anon_sym_in] = ACTIONS(1540), - [anon_sym_not_DASHin] = ACTIONS(1540), - [anon_sym_has] = ACTIONS(1540), - [anon_sym_not_DASHhas] = ACTIONS(1540), - [anon_sym_starts_DASHwith] = ACTIONS(1540), - [anon_sym_ends_DASHwith] = ACTIONS(1540), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1538), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1540), - [aux_sym_cmd_identifier_token41] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(1538), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_in2] = ACTIONS(1538), - [anon_sym_STAR2] = ACTIONS(1538), - [anon_sym_and2] = ACTIONS(1538), - [anon_sym_xor2] = ACTIONS(1538), - [anon_sym_or2] = ACTIONS(1538), - [anon_sym_not_DASHin2] = ACTIONS(1538), - [anon_sym_has2] = ACTIONS(1538), - [anon_sym_not_DASHhas2] = ACTIONS(1538), - [anon_sym_starts_DASHwith2] = ACTIONS(1538), - [anon_sym_ends_DASHwith2] = ACTIONS(1538), - [anon_sym_EQ_EQ2] = ACTIONS(1538), - [anon_sym_BANG_EQ2] = ACTIONS(1538), - [anon_sym_LT2] = ACTIONS(1538), - [anon_sym_LT_EQ2] = ACTIONS(1538), - [anon_sym_GT_EQ2] = ACTIONS(1538), - [anon_sym_EQ_TILDE2] = ACTIONS(1538), - [anon_sym_BANG_TILDE2] = ACTIONS(1538), - [anon_sym_STAR_STAR2] = ACTIONS(1538), - [anon_sym_PLUS_PLUS2] = ACTIONS(1538), - [anon_sym_SLASH2] = ACTIONS(1538), - [anon_sym_mod2] = ACTIONS(1538), - [anon_sym_SLASH_SLASH2] = ACTIONS(1538), - [anon_sym_PLUS2] = ACTIONS(1538), - [anon_sym_bit_DASHshl2] = ACTIONS(1538), - [anon_sym_bit_DASHshr2] = ACTIONS(1538), - [anon_sym_bit_DASHand2] = ACTIONS(1538), - [anon_sym_bit_DASHxor2] = ACTIONS(1538), - [anon_sym_bit_DASHor2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1540), + [1103] = { + [sym_comment] = STATE(1103), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT] = ACTIONS(3500), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(3502), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), [anon_sym_POUND] = ACTIONS(3), }, - [1162] = { - [sym_comment] = STATE(1162), - [anon_sym_STAR_STAR] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_SLASH] = ACTIONS(1484), - [anon_sym_mod] = ACTIONS(1486), - [anon_sym_SLASH_SLASH] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_bit_DASHshl] = ACTIONS(1486), - [anon_sym_bit_DASHshr] = ACTIONS(1486), - [anon_sym_EQ_TILDE] = ACTIONS(1486), - [anon_sym_BANG_TILDE] = ACTIONS(1486), - [anon_sym_bit_DASHand] = ACTIONS(1486), - [anon_sym_bit_DASHxor] = ACTIONS(1486), - [anon_sym_bit_DASHor] = ACTIONS(1486), - [anon_sym_and] = ACTIONS(1486), - [anon_sym_xor] = ACTIONS(1486), - [anon_sym_or] = ACTIONS(1486), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_not_DASHin] = ACTIONS(1486), - [anon_sym_has] = ACTIONS(1486), - [anon_sym_not_DASHhas] = ACTIONS(1486), - [anon_sym_starts_DASHwith] = ACTIONS(1486), - [anon_sym_ends_DASHwith] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(1486), - [anon_sym_BANG_EQ] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1486), - [aux_sym_cmd_identifier_token41] = ACTIONS(1484), - [sym__newline] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_err_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_GT_PIPE] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1484), - [anon_sym_GT2] = ACTIONS(1484), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_in2] = ACTIONS(1484), - [anon_sym_STAR2] = ACTIONS(1484), - [anon_sym_and2] = ACTIONS(1484), - [anon_sym_xor2] = ACTIONS(1484), - [anon_sym_or2] = ACTIONS(1484), - [anon_sym_not_DASHin2] = ACTIONS(1484), - [anon_sym_has2] = ACTIONS(1484), - [anon_sym_not_DASHhas2] = ACTIONS(1484), - [anon_sym_starts_DASHwith2] = ACTIONS(1484), - [anon_sym_ends_DASHwith2] = ACTIONS(1484), - [anon_sym_EQ_EQ2] = ACTIONS(1484), - [anon_sym_BANG_EQ2] = ACTIONS(1484), - [anon_sym_LT2] = ACTIONS(1484), - [anon_sym_LT_EQ2] = ACTIONS(1484), - [anon_sym_GT_EQ2] = ACTIONS(1484), - [anon_sym_EQ_TILDE2] = ACTIONS(1484), - [anon_sym_BANG_TILDE2] = ACTIONS(1484), - [anon_sym_STAR_STAR2] = ACTIONS(1484), - [anon_sym_PLUS_PLUS2] = ACTIONS(1484), - [anon_sym_SLASH2] = ACTIONS(1484), - [anon_sym_mod2] = ACTIONS(1484), - [anon_sym_SLASH_SLASH2] = ACTIONS(1484), - [anon_sym_PLUS2] = ACTIONS(1484), - [anon_sym_bit_DASHshl2] = ACTIONS(1484), - [anon_sym_bit_DASHshr2] = ACTIONS(1484), - [anon_sym_bit_DASHand2] = ACTIONS(1484), - [anon_sym_bit_DASHxor2] = ACTIONS(1484), - [anon_sym_bit_DASHor2] = ACTIONS(1484), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [aux_sym__immediate_decimal_token1] = ACTIONS(3532), - [aux_sym__immediate_decimal_token2] = ACTIONS(3534), - [sym_filesize_unit] = ACTIONS(1484), - [sym_duration_unit] = ACTIONS(1486), + [1104] = { + [sym_comment] = STATE(1104), + [anon_sym_STAR_STAR] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_mod] = ACTIONS(1493), + [anon_sym_SLASH_SLASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_bit_DASHshl] = ACTIONS(1493), + [anon_sym_bit_DASHshr] = ACTIONS(1493), + [anon_sym_EQ_TILDE] = ACTIONS(1493), + [anon_sym_BANG_TILDE] = ACTIONS(1493), + [anon_sym_bit_DASHand] = ACTIONS(1493), + [anon_sym_bit_DASHxor] = ACTIONS(1493), + [anon_sym_bit_DASHor] = ACTIONS(1493), + [anon_sym_and] = ACTIONS(1493), + [anon_sym_xor] = ACTIONS(1493), + [anon_sym_or] = ACTIONS(1493), + [anon_sym_in] = ACTIONS(1493), + [anon_sym_not_DASHin] = ACTIONS(1493), + [anon_sym_has] = ACTIONS(1493), + [anon_sym_not_DASHhas] = ACTIONS(1493), + [anon_sym_starts_DASHwith] = ACTIONS(1493), + [anon_sym_ends_DASHwith] = ACTIONS(1493), + [anon_sym_EQ_EQ] = ACTIONS(1493), + [anon_sym_BANG_EQ] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1493), + [aux_sym_cmd_identifier_token41] = ACTIONS(1491), + [sym__newline] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_err_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_GT_PIPE] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1491), + [anon_sym_RPAREN] = ACTIONS(1491), + [anon_sym_GT2] = ACTIONS(1491), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_in2] = ACTIONS(1491), + [anon_sym_STAR2] = ACTIONS(1491), + [anon_sym_and2] = ACTIONS(1491), + [anon_sym_xor2] = ACTIONS(1491), + [anon_sym_or2] = ACTIONS(1491), + [anon_sym_not_DASHin2] = ACTIONS(1491), + [anon_sym_has2] = ACTIONS(1491), + [anon_sym_not_DASHhas2] = ACTIONS(1491), + [anon_sym_starts_DASHwith2] = ACTIONS(1491), + [anon_sym_ends_DASHwith2] = ACTIONS(1491), + [anon_sym_EQ_EQ2] = ACTIONS(1491), + [anon_sym_BANG_EQ2] = ACTIONS(1491), + [anon_sym_LT2] = ACTIONS(1491), + [anon_sym_LT_EQ2] = ACTIONS(1491), + [anon_sym_GT_EQ2] = ACTIONS(1491), + [anon_sym_EQ_TILDE2] = ACTIONS(1491), + [anon_sym_BANG_TILDE2] = ACTIONS(1491), + [anon_sym_STAR_STAR2] = ACTIONS(1491), + [anon_sym_PLUS_PLUS2] = ACTIONS(1491), + [anon_sym_SLASH2] = ACTIONS(1491), + [anon_sym_mod2] = ACTIONS(1491), + [anon_sym_SLASH_SLASH2] = ACTIONS(1491), + [anon_sym_PLUS2] = ACTIONS(1491), + [anon_sym_bit_DASHshl2] = ACTIONS(1491), + [anon_sym_bit_DASHshr2] = ACTIONS(1491), + [anon_sym_bit_DASHand2] = ACTIONS(1491), + [anon_sym_bit_DASHxor2] = ACTIONS(1491), + [anon_sym_bit_DASHor2] = ACTIONS(1491), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [sym_filesize_unit] = ACTIONS(1491), + [sym_duration_unit] = ACTIONS(1493), [anon_sym_POUND] = ACTIONS(3), }, - [1163] = { - [sym_comment] = STATE(1163), - [anon_sym_STAR_STAR] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_SLASH] = ACTIONS(1484), - [anon_sym_mod] = ACTIONS(1486), - [anon_sym_SLASH_SLASH] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_bit_DASHshl] = ACTIONS(1486), - [anon_sym_bit_DASHshr] = ACTIONS(1486), - [anon_sym_EQ_TILDE] = ACTIONS(1486), - [anon_sym_BANG_TILDE] = ACTIONS(1486), - [anon_sym_bit_DASHand] = ACTIONS(1486), - [anon_sym_bit_DASHxor] = ACTIONS(1486), - [anon_sym_bit_DASHor] = ACTIONS(1486), - [anon_sym_and] = ACTIONS(1486), - [anon_sym_xor] = ACTIONS(1486), - [anon_sym_or] = ACTIONS(1486), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_not_DASHin] = ACTIONS(1486), - [anon_sym_has] = ACTIONS(1486), - [anon_sym_not_DASHhas] = ACTIONS(1486), - [anon_sym_starts_DASHwith] = ACTIONS(1486), - [anon_sym_ends_DASHwith] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(1486), - [anon_sym_BANG_EQ] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1486), - [aux_sym_cmd_identifier_token41] = ACTIONS(1484), - [sym__newline] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_err_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_GT_PIPE] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1484), - [anon_sym_GT2] = ACTIONS(1484), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_in2] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_STAR2] = ACTIONS(1484), - [anon_sym_and2] = ACTIONS(1484), - [anon_sym_xor2] = ACTIONS(1484), - [anon_sym_or2] = ACTIONS(1484), - [anon_sym_not_DASHin2] = ACTIONS(1484), - [anon_sym_has2] = ACTIONS(1484), - [anon_sym_not_DASHhas2] = ACTIONS(1484), - [anon_sym_starts_DASHwith2] = ACTIONS(1484), - [anon_sym_ends_DASHwith2] = ACTIONS(1484), - [anon_sym_EQ_EQ2] = ACTIONS(1484), - [anon_sym_BANG_EQ2] = ACTIONS(1484), - [anon_sym_LT2] = ACTIONS(1484), - [anon_sym_LT_EQ2] = ACTIONS(1484), - [anon_sym_GT_EQ2] = ACTIONS(1484), - [anon_sym_EQ_TILDE2] = ACTIONS(1484), - [anon_sym_BANG_TILDE2] = ACTIONS(1484), - [anon_sym_STAR_STAR2] = ACTIONS(1484), - [anon_sym_PLUS_PLUS2] = ACTIONS(1484), - [anon_sym_SLASH2] = ACTIONS(1484), - [anon_sym_mod2] = ACTIONS(1484), - [anon_sym_SLASH_SLASH2] = ACTIONS(1484), - [anon_sym_PLUS2] = ACTIONS(1484), - [anon_sym_bit_DASHshl2] = ACTIONS(1484), - [anon_sym_bit_DASHshr2] = ACTIONS(1484), - [anon_sym_bit_DASHand2] = ACTIONS(1484), - [anon_sym_bit_DASHxor2] = ACTIONS(1484), - [anon_sym_bit_DASHor2] = ACTIONS(1484), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [sym_filesize_unit] = ACTIONS(1484), - [sym_duration_unit] = ACTIONS(1486), + [1105] = { + [sym_comment] = STATE(1105), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(3434), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), [anon_sym_POUND] = ACTIONS(3), }, - [1164] = { - [sym_comment] = STATE(1164), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1540), - [anon_sym_SLASH_SLASH] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_bit_DASHshl] = ACTIONS(1540), - [anon_sym_bit_DASHshr] = ACTIONS(1540), - [anon_sym_EQ_TILDE] = ACTIONS(1540), - [anon_sym_BANG_TILDE] = ACTIONS(1540), - [anon_sym_bit_DASHand] = ACTIONS(1540), - [anon_sym_bit_DASHxor] = ACTIONS(1540), - [anon_sym_bit_DASHor] = ACTIONS(1540), - [anon_sym_and] = ACTIONS(1540), - [anon_sym_xor] = ACTIONS(1540), - [anon_sym_or] = ACTIONS(1540), - [anon_sym_in] = ACTIONS(1540), - [anon_sym_not_DASHin] = ACTIONS(1540), - [anon_sym_has] = ACTIONS(1540), - [anon_sym_not_DASHhas] = ACTIONS(1540), - [anon_sym_starts_DASHwith] = ACTIONS(1540), - [anon_sym_ends_DASHwith] = ACTIONS(1540), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1538), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1540), - [aux_sym_cmd_identifier_token41] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(1538), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_in2] = ACTIONS(1538), - [anon_sym_STAR2] = ACTIONS(1538), - [anon_sym_and2] = ACTIONS(1538), - [anon_sym_xor2] = ACTIONS(1538), - [anon_sym_or2] = ACTIONS(1538), - [anon_sym_not_DASHin2] = ACTIONS(1538), - [anon_sym_has2] = ACTIONS(1538), - [anon_sym_not_DASHhas2] = ACTIONS(1538), - [anon_sym_starts_DASHwith2] = ACTIONS(1538), - [anon_sym_ends_DASHwith2] = ACTIONS(1538), - [anon_sym_EQ_EQ2] = ACTIONS(1538), - [anon_sym_BANG_EQ2] = ACTIONS(1538), - [anon_sym_LT2] = ACTIONS(1538), - [anon_sym_LT_EQ2] = ACTIONS(1538), - [anon_sym_GT_EQ2] = ACTIONS(1538), - [anon_sym_EQ_TILDE2] = ACTIONS(1538), - [anon_sym_BANG_TILDE2] = ACTIONS(1538), - [anon_sym_STAR_STAR2] = ACTIONS(1538), - [anon_sym_PLUS_PLUS2] = ACTIONS(1538), - [anon_sym_SLASH2] = ACTIONS(1538), - [anon_sym_mod2] = ACTIONS(1538), - [anon_sym_SLASH_SLASH2] = ACTIONS(1538), - [anon_sym_PLUS2] = ACTIONS(1538), - [anon_sym_bit_DASHshl2] = ACTIONS(1538), - [anon_sym_bit_DASHshr2] = ACTIONS(1538), - [anon_sym_bit_DASHand2] = ACTIONS(1538), - [anon_sym_bit_DASHxor2] = ACTIONS(1538), - [anon_sym_bit_DASHor2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1540), + [1106] = { + [sym_comment] = STATE(1106), + [anon_sym_STAR_STAR] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(2570), + [anon_sym_SLASH] = ACTIONS(2570), + [anon_sym_mod] = ACTIONS(2568), + [anon_sym_SLASH_SLASH] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_bit_DASHshl] = ACTIONS(2568), + [anon_sym_bit_DASHshr] = ACTIONS(2568), + [anon_sym_EQ_TILDE] = ACTIONS(2568), + [anon_sym_BANG_TILDE] = ACTIONS(2568), + [anon_sym_bit_DASHand] = ACTIONS(2568), + [anon_sym_bit_DASHxor] = ACTIONS(2568), + [anon_sym_bit_DASHor] = ACTIONS(2568), + [anon_sym_and] = ACTIONS(2568), + [anon_sym_xor] = ACTIONS(2568), + [anon_sym_or] = ACTIONS(2568), + [anon_sym_in] = ACTIONS(2568), + [anon_sym_not_DASHin] = ACTIONS(2568), + [anon_sym_has] = ACTIONS(2568), + [anon_sym_not_DASHhas] = ACTIONS(2568), + [anon_sym_starts_DASHwith] = ACTIONS(2568), + [anon_sym_ends_DASHwith] = ACTIONS(2568), + [anon_sym_EQ_EQ] = ACTIONS(2568), + [anon_sym_BANG_EQ] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_LT_EQ] = ACTIONS(2568), + [anon_sym_GT] = ACTIONS(2570), + [anon_sym_GT_EQ] = ACTIONS(2568), + [aux_sym_cmd_identifier_token41] = ACTIONS(2572), + [sym__newline] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1616), + [anon_sym_err_GT_PIPE] = ACTIONS(1616), + [anon_sym_out_GT_PIPE] = ACTIONS(1616), + [anon_sym_e_GT_PIPE] = ACTIONS(1616), + [anon_sym_o_GT_PIPE] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1616), + [anon_sym_GT2] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_in2] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1616), + [anon_sym_STAR2] = ACTIONS(1616), + [anon_sym_and2] = ACTIONS(1616), + [anon_sym_xor2] = ACTIONS(1616), + [anon_sym_or2] = ACTIONS(1616), + [anon_sym_not_DASHin2] = ACTIONS(1616), + [anon_sym_has2] = ACTIONS(1616), + [anon_sym_not_DASHhas2] = ACTIONS(1616), + [anon_sym_starts_DASHwith2] = ACTIONS(1616), + [anon_sym_ends_DASHwith2] = ACTIONS(1616), + [anon_sym_EQ_EQ2] = ACTIONS(1616), + [anon_sym_BANG_EQ2] = ACTIONS(1616), + [anon_sym_LT2] = ACTIONS(1616), + [anon_sym_LT_EQ2] = ACTIONS(1616), + [anon_sym_GT_EQ2] = ACTIONS(1616), + [anon_sym_EQ_TILDE2] = ACTIONS(1616), + [anon_sym_BANG_TILDE2] = ACTIONS(1616), + [anon_sym_STAR_STAR2] = ACTIONS(1616), + [anon_sym_PLUS_PLUS2] = ACTIONS(1616), + [anon_sym_SLASH2] = ACTIONS(1616), + [anon_sym_mod2] = ACTIONS(1616), + [anon_sym_SLASH_SLASH2] = ACTIONS(1616), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_bit_DASHshl2] = ACTIONS(1616), + [anon_sym_bit_DASHshr2] = ACTIONS(1616), + [anon_sym_bit_DASHand2] = ACTIONS(1616), + [anon_sym_bit_DASHxor2] = ACTIONS(1616), + [anon_sym_bit_DASHor2] = ACTIONS(1616), + [anon_sym_DOT_DOT2] = ACTIONS(2548), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2550), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2550), + [sym_filesize_unit] = ACTIONS(3504), + [sym_duration_unit] = ACTIONS(3506), [anon_sym_POUND] = ACTIONS(3), }, - [1165] = { - [sym_comment] = STATE(1165), - [anon_sym_STAR_STAR] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_STAR] = ACTIONS(1715), - [anon_sym_SLASH] = ACTIONS(1715), - [anon_sym_mod] = ACTIONS(1717), - [anon_sym_SLASH_SLASH] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_bit_DASHshl] = ACTIONS(1717), - [anon_sym_bit_DASHshr] = ACTIONS(1717), - [anon_sym_EQ_TILDE] = ACTIONS(1717), - [anon_sym_BANG_TILDE] = ACTIONS(1717), - [anon_sym_bit_DASHand] = ACTIONS(1717), - [anon_sym_bit_DASHxor] = ACTIONS(1717), - [anon_sym_bit_DASHor] = ACTIONS(1717), - [anon_sym_and] = ACTIONS(1717), - [anon_sym_xor] = ACTIONS(1717), - [anon_sym_or] = ACTIONS(1717), - [anon_sym_in] = ACTIONS(1717), - [anon_sym_not_DASHin] = ACTIONS(1717), - [anon_sym_has] = ACTIONS(1717), - [anon_sym_not_DASHhas] = ACTIONS(1717), - [anon_sym_starts_DASHwith] = ACTIONS(1717), - [anon_sym_ends_DASHwith] = ACTIONS(1717), - [anon_sym_EQ_EQ] = ACTIONS(1717), - [anon_sym_BANG_EQ] = ACTIONS(1717), - [anon_sym_LT] = ACTIONS(1715), - [anon_sym_LT_EQ] = ACTIONS(1717), - [anon_sym_GT] = ACTIONS(1715), - [anon_sym_GT_EQ] = ACTIONS(1717), - [aux_sym_cmd_identifier_token41] = ACTIONS(1715), - [sym__newline] = ACTIONS(1715), - [anon_sym_SEMI] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_err_GT_PIPE] = ACTIONS(1715), - [anon_sym_out_GT_PIPE] = ACTIONS(1715), - [anon_sym_e_GT_PIPE] = ACTIONS(1715), - [anon_sym_o_GT_PIPE] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1715), - [anon_sym_RPAREN] = ACTIONS(1715), - [anon_sym_GT2] = ACTIONS(1715), - [anon_sym_DASH2] = ACTIONS(1715), - [anon_sym_in2] = ACTIONS(1715), - [anon_sym_STAR2] = ACTIONS(1715), - [anon_sym_and2] = ACTIONS(1715), - [anon_sym_xor2] = ACTIONS(1715), - [anon_sym_or2] = ACTIONS(1715), - [anon_sym_not_DASHin2] = ACTIONS(1715), - [anon_sym_has2] = ACTIONS(1715), - [anon_sym_not_DASHhas2] = ACTIONS(1715), - [anon_sym_starts_DASHwith2] = ACTIONS(1715), - [anon_sym_ends_DASHwith2] = ACTIONS(1715), - [anon_sym_EQ_EQ2] = ACTIONS(1715), - [anon_sym_BANG_EQ2] = ACTIONS(1715), - [anon_sym_LT2] = ACTIONS(1715), - [anon_sym_LT_EQ2] = ACTIONS(1715), - [anon_sym_GT_EQ2] = ACTIONS(1715), - [anon_sym_EQ_TILDE2] = ACTIONS(1715), - [anon_sym_BANG_TILDE2] = ACTIONS(1715), - [anon_sym_STAR_STAR2] = ACTIONS(1715), - [anon_sym_PLUS_PLUS2] = ACTIONS(1715), - [anon_sym_SLASH2] = ACTIONS(1715), - [anon_sym_mod2] = ACTIONS(1715), - [anon_sym_SLASH_SLASH2] = ACTIONS(1715), - [anon_sym_PLUS2] = ACTIONS(1715), - [anon_sym_bit_DASHshl2] = ACTIONS(1715), - [anon_sym_bit_DASHshr2] = ACTIONS(1715), - [anon_sym_bit_DASHand2] = ACTIONS(1715), - [anon_sym_bit_DASHxor2] = ACTIONS(1715), - [anon_sym_bit_DASHor2] = ACTIONS(1715), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [sym_filesize_unit] = ACTIONS(1715), - [sym_duration_unit] = ACTIONS(1717), + [1107] = { + [sym_comment] = STATE(1107), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1581), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_bit_DASHshl] = ACTIONS(1581), + [anon_sym_bit_DASHshr] = ACTIONS(1581), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1581), + [anon_sym_bit_DASHxor] = ACTIONS(1581), + [anon_sym_bit_DASHor] = ACTIONS(1581), + [anon_sym_and] = ACTIONS(1581), + [anon_sym_xor] = ACTIONS(1581), + [anon_sym_or] = ACTIONS(1581), + [anon_sym_in] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1581), + [anon_sym_has] = ACTIONS(1581), + [anon_sym_not_DASHhas] = ACTIONS(1581), + [anon_sym_starts_DASHwith] = ACTIONS(1581), + [anon_sym_ends_DASHwith] = ACTIONS(1581), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1581), + [aux_sym_cmd_identifier_token41] = ACTIONS(1579), + [sym__newline] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_err_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_GT_PIPE] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), + [anon_sym_GT2] = ACTIONS(1579), + [anon_sym_DASH2] = ACTIONS(1579), + [anon_sym_in2] = ACTIONS(1579), + [anon_sym_STAR2] = ACTIONS(1579), + [anon_sym_and2] = ACTIONS(1579), + [anon_sym_xor2] = ACTIONS(1579), + [anon_sym_or2] = ACTIONS(1579), + [anon_sym_not_DASHin2] = ACTIONS(1579), + [anon_sym_has2] = ACTIONS(1579), + [anon_sym_not_DASHhas2] = ACTIONS(1579), + [anon_sym_starts_DASHwith2] = ACTIONS(1579), + [anon_sym_ends_DASHwith2] = ACTIONS(1579), + [anon_sym_EQ_EQ2] = ACTIONS(1579), + [anon_sym_BANG_EQ2] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ2] = ACTIONS(1579), + [anon_sym_GT_EQ2] = ACTIONS(1579), + [anon_sym_EQ_TILDE2] = ACTIONS(1579), + [anon_sym_BANG_TILDE2] = ACTIONS(1579), + [anon_sym_STAR_STAR2] = ACTIONS(1579), + [anon_sym_PLUS_PLUS2] = ACTIONS(1579), + [anon_sym_SLASH2] = ACTIONS(1579), + [anon_sym_mod2] = ACTIONS(1579), + [anon_sym_SLASH_SLASH2] = ACTIONS(1579), + [anon_sym_PLUS2] = ACTIONS(1579), + [anon_sym_bit_DASHshl2] = ACTIONS(1579), + [anon_sym_bit_DASHshr2] = ACTIONS(1579), + [anon_sym_bit_DASHand2] = ACTIONS(1579), + [anon_sym_bit_DASHxor2] = ACTIONS(1579), + [anon_sym_bit_DASHor2] = ACTIONS(1579), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [aux_sym__immediate_decimal_token2] = ACTIONS(3508), + [sym_filesize_unit] = ACTIONS(1579), + [sym_duration_unit] = ACTIONS(1581), [anon_sym_POUND] = ACTIONS(3), }, - [1166] = { - [sym_comment] = STATE(1166), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1540), - [anon_sym_SLASH_SLASH] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_bit_DASHshl] = ACTIONS(1540), - [anon_sym_bit_DASHshr] = ACTIONS(1540), - [anon_sym_EQ_TILDE] = ACTIONS(1540), - [anon_sym_BANG_TILDE] = ACTIONS(1540), - [anon_sym_bit_DASHand] = ACTIONS(1540), - [anon_sym_bit_DASHxor] = ACTIONS(1540), - [anon_sym_bit_DASHor] = ACTIONS(1540), - [anon_sym_and] = ACTIONS(1540), - [anon_sym_xor] = ACTIONS(1540), - [anon_sym_or] = ACTIONS(1540), - [anon_sym_in] = ACTIONS(1540), - [anon_sym_not_DASHin] = ACTIONS(1540), - [anon_sym_has] = ACTIONS(1540), - [anon_sym_not_DASHhas] = ACTIONS(1540), - [anon_sym_starts_DASHwith] = ACTIONS(1540), - [anon_sym_ends_DASHwith] = ACTIONS(1540), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1538), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1540), - [aux_sym_cmd_identifier_token41] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(1538), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_in2] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_STAR2] = ACTIONS(1538), - [anon_sym_and2] = ACTIONS(1538), - [anon_sym_xor2] = ACTIONS(1538), - [anon_sym_or2] = ACTIONS(1538), - [anon_sym_not_DASHin2] = ACTIONS(1538), - [anon_sym_has2] = ACTIONS(1538), - [anon_sym_not_DASHhas2] = ACTIONS(1538), - [anon_sym_starts_DASHwith2] = ACTIONS(1538), - [anon_sym_ends_DASHwith2] = ACTIONS(1538), - [anon_sym_EQ_EQ2] = ACTIONS(1538), - [anon_sym_BANG_EQ2] = ACTIONS(1538), - [anon_sym_LT2] = ACTIONS(1538), - [anon_sym_LT_EQ2] = ACTIONS(1538), - [anon_sym_GT_EQ2] = ACTIONS(1538), - [anon_sym_EQ_TILDE2] = ACTIONS(1538), - [anon_sym_BANG_TILDE2] = ACTIONS(1538), - [anon_sym_STAR_STAR2] = ACTIONS(1538), - [anon_sym_PLUS_PLUS2] = ACTIONS(1538), - [anon_sym_SLASH2] = ACTIONS(1538), - [anon_sym_mod2] = ACTIONS(1538), - [anon_sym_SLASH_SLASH2] = ACTIONS(1538), - [anon_sym_PLUS2] = ACTIONS(1538), - [anon_sym_bit_DASHshl2] = ACTIONS(1538), - [anon_sym_bit_DASHshr2] = ACTIONS(1538), - [anon_sym_bit_DASHand2] = ACTIONS(1538), - [anon_sym_bit_DASHxor2] = ACTIONS(1538), - [anon_sym_bit_DASHor2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1540), + [1108] = { + [sym_comment] = STATE(1108), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1581), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_bit_DASHshl] = ACTIONS(1581), + [anon_sym_bit_DASHshr] = ACTIONS(1581), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1581), + [anon_sym_bit_DASHxor] = ACTIONS(1581), + [anon_sym_bit_DASHor] = ACTIONS(1581), + [anon_sym_and] = ACTIONS(1581), + [anon_sym_xor] = ACTIONS(1581), + [anon_sym_or] = ACTIONS(1581), + [anon_sym_in] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1581), + [anon_sym_has] = ACTIONS(1581), + [anon_sym_not_DASHhas] = ACTIONS(1581), + [anon_sym_starts_DASHwith] = ACTIONS(1581), + [anon_sym_ends_DASHwith] = ACTIONS(1581), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1581), + [aux_sym_cmd_identifier_token41] = ACTIONS(1579), + [sym__newline] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_err_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_GT_PIPE] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_GT2] = ACTIONS(1579), + [anon_sym_DASH2] = ACTIONS(1579), + [anon_sym_in2] = ACTIONS(1579), + [anon_sym_STAR2] = ACTIONS(1579), + [anon_sym_and2] = ACTIONS(1579), + [anon_sym_xor2] = ACTIONS(1579), + [anon_sym_or2] = ACTIONS(1579), + [anon_sym_not_DASHin2] = ACTIONS(1579), + [anon_sym_has2] = ACTIONS(1579), + [anon_sym_not_DASHhas2] = ACTIONS(1579), + [anon_sym_starts_DASHwith2] = ACTIONS(1579), + [anon_sym_ends_DASHwith2] = ACTIONS(1579), + [anon_sym_EQ_EQ2] = ACTIONS(1579), + [anon_sym_BANG_EQ2] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ2] = ACTIONS(1579), + [anon_sym_GT_EQ2] = ACTIONS(1579), + [anon_sym_EQ_TILDE2] = ACTIONS(1579), + [anon_sym_BANG_TILDE2] = ACTIONS(1579), + [anon_sym_STAR_STAR2] = ACTIONS(1579), + [anon_sym_PLUS_PLUS2] = ACTIONS(1579), + [anon_sym_SLASH2] = ACTIONS(1579), + [anon_sym_mod2] = ACTIONS(1579), + [anon_sym_SLASH_SLASH2] = ACTIONS(1579), + [anon_sym_PLUS2] = ACTIONS(1579), + [anon_sym_bit_DASHshl2] = ACTIONS(1579), + [anon_sym_bit_DASHshr2] = ACTIONS(1579), + [anon_sym_bit_DASHand2] = ACTIONS(1579), + [anon_sym_bit_DASHxor2] = ACTIONS(1579), + [anon_sym_bit_DASHor2] = ACTIONS(1579), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [sym_filesize_unit] = ACTIONS(1579), + [sym_duration_unit] = ACTIONS(1581), [anon_sym_POUND] = ACTIONS(3), }, - [1167] = { - [sym_comment] = STATE(1167), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT] = ACTIONS(3536), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(3538), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), + [1109] = { + [sym_comment] = STATE(1109), + [anon_sym_STAR_STAR] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(2570), + [anon_sym_SLASH] = ACTIONS(2570), + [anon_sym_mod] = ACTIONS(2568), + [anon_sym_SLASH_SLASH] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_bit_DASHshl] = ACTIONS(2568), + [anon_sym_bit_DASHshr] = ACTIONS(2568), + [anon_sym_EQ_TILDE] = ACTIONS(2568), + [anon_sym_BANG_TILDE] = ACTIONS(2568), + [anon_sym_bit_DASHand] = ACTIONS(2568), + [anon_sym_bit_DASHxor] = ACTIONS(2568), + [anon_sym_bit_DASHor] = ACTIONS(2568), + [anon_sym_and] = ACTIONS(2568), + [anon_sym_xor] = ACTIONS(2568), + [anon_sym_or] = ACTIONS(2568), + [anon_sym_in] = ACTIONS(2568), + [anon_sym_not_DASHin] = ACTIONS(2568), + [anon_sym_has] = ACTIONS(2568), + [anon_sym_not_DASHhas] = ACTIONS(2568), + [anon_sym_starts_DASHwith] = ACTIONS(2568), + [anon_sym_ends_DASHwith] = ACTIONS(2568), + [anon_sym_EQ_EQ] = ACTIONS(2568), + [anon_sym_BANG_EQ] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_LT_EQ] = ACTIONS(2568), + [anon_sym_GT] = ACTIONS(2570), + [anon_sym_GT_EQ] = ACTIONS(2568), + [aux_sym_cmd_identifier_token41] = ACTIONS(2572), + [sym__newline] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1616), + [anon_sym_err_GT_PIPE] = ACTIONS(1616), + [anon_sym_out_GT_PIPE] = ACTIONS(1616), + [anon_sym_e_GT_PIPE] = ACTIONS(1616), + [anon_sym_o_GT_PIPE] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1616), + [anon_sym_RPAREN] = ACTIONS(1616), + [anon_sym_GT2] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_in2] = ACTIONS(1616), + [anon_sym_STAR2] = ACTIONS(1616), + [anon_sym_and2] = ACTIONS(1616), + [anon_sym_xor2] = ACTIONS(1616), + [anon_sym_or2] = ACTIONS(1616), + [anon_sym_not_DASHin2] = ACTIONS(1616), + [anon_sym_has2] = ACTIONS(1616), + [anon_sym_not_DASHhas2] = ACTIONS(1616), + [anon_sym_starts_DASHwith2] = ACTIONS(1616), + [anon_sym_ends_DASHwith2] = ACTIONS(1616), + [anon_sym_EQ_EQ2] = ACTIONS(1616), + [anon_sym_BANG_EQ2] = ACTIONS(1616), + [anon_sym_LT2] = ACTIONS(1616), + [anon_sym_LT_EQ2] = ACTIONS(1616), + [anon_sym_GT_EQ2] = ACTIONS(1616), + [anon_sym_EQ_TILDE2] = ACTIONS(1616), + [anon_sym_BANG_TILDE2] = ACTIONS(1616), + [anon_sym_STAR_STAR2] = ACTIONS(1616), + [anon_sym_PLUS_PLUS2] = ACTIONS(1616), + [anon_sym_SLASH2] = ACTIONS(1616), + [anon_sym_mod2] = ACTIONS(1616), + [anon_sym_SLASH_SLASH2] = ACTIONS(1616), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_bit_DASHshl2] = ACTIONS(1616), + [anon_sym_bit_DASHshr2] = ACTIONS(1616), + [anon_sym_bit_DASHand2] = ACTIONS(1616), + [anon_sym_bit_DASHxor2] = ACTIONS(1616), + [anon_sym_bit_DASHor2] = ACTIONS(1616), + [anon_sym_DOT_DOT2] = ACTIONS(2548), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2550), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2550), + [sym_filesize_unit] = ACTIONS(3510), + [sym_duration_unit] = ACTIONS(3512), [anon_sym_POUND] = ACTIONS(3), }, - [1168] = { - [sym_expr_unary] = STATE(4316), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_parenthesized] = STATE(4069), - [sym_val_range] = STATE(4316), - [sym__val_range] = STATE(7723), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(4316), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(4104), - [sym_val_variable] = STATE(4087), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3922), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(4110), - [sym__unquoted_with_expr] = STATE(4326), - [sym__unquoted_anonymous_prefix] = STATE(6846), - [sym_comment] = STATE(1168), - [anon_sym_LBRACK] = ACTIONS(3540), - [anon_sym_LPAREN] = ACTIONS(3542), - [anon_sym_DOLLAR] = ACTIONS(3544), + [1110] = { + [sym_expr_unary] = STATE(4143), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_parenthesized] = STATE(3866), + [sym_val_range] = STATE(4143), + [sym__val_range] = STATE(7094), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(4143), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(3881), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3720), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(3893), + [sym__unquoted_with_expr] = STATE(4189), + [sym__unquoted_anonymous_prefix] = STATE(6454), + [sym_comment] = STATE(1110), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3442), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_DOT_DOT] = ACTIONS(3548), - [aux_sym_expr_unary_token1] = ACTIONS(3550), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3552), - [anon_sym_DOT_DOT_LT] = ACTIONS(3552), - [anon_sym_null] = ACTIONS(3554), - [anon_sym_true] = ACTIONS(3556), - [anon_sym_false] = ACTIONS(3556), - [aux_sym__val_number_decimal_token1] = ACTIONS(3558), - [aux_sym__val_number_decimal_token2] = ACTIONS(3560), - [aux_sym__val_number_decimal_token3] = ACTIONS(3562), - [aux_sym__val_number_decimal_token4] = ACTIONS(3564), + [anon_sym_LBRACE] = ACTIONS(3444), + [anon_sym_DOT_DOT] = ACTIONS(3446), + [aux_sym_expr_unary_token1] = ACTIONS(3448), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3450), + [anon_sym_DOT_DOT_LT] = ACTIONS(3450), + [anon_sym_null] = ACTIONS(3452), + [anon_sym_true] = ACTIONS(3454), + [anon_sym_false] = ACTIONS(3454), + [aux_sym__val_number_decimal_token1] = ACTIONS(3456), + [aux_sym__val_number_decimal_token2] = ACTIONS(3458), + [aux_sym__val_number_decimal_token3] = ACTIONS(3460), + [aux_sym__val_number_decimal_token4] = ACTIONS(3462), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3566), - [aux_sym__val_number_token5] = ACTIONS(3566), - [aux_sym__val_number_token6] = ACTIONS(3566), + [aux_sym__val_number_token4] = ACTIONS(3464), + [aux_sym__val_number_token5] = ACTIONS(3464), + [aux_sym__val_number_token6] = ACTIONS(3464), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3568), + [sym_val_date] = ACTIONS(3466), [anon_sym_DQUOTE] = ACTIONS(1262), [sym__str_single_quotes] = ACTIONS(1264), [sym__str_back_ticks] = ACTIONS(1264), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(1266), }, - [1169] = { - [sym_expr_unary] = STATE(4329), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_parenthesized] = STATE(4073), - [sym_val_range] = STATE(4329), - [sym__val_range] = STATE(7723), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(4329), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(4104), - [sym_val_variable] = STATE(4087), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3922), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(4117), - [sym__unquoted_with_expr] = STATE(4345), - [sym__unquoted_anonymous_prefix] = STATE(6846), - [sym_comment] = STATE(1169), - [anon_sym_LBRACK] = ACTIONS(3540), - [anon_sym_LPAREN] = ACTIONS(3542), - [anon_sym_DOLLAR] = ACTIONS(3544), - [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_DOT_DOT] = ACTIONS(3548), - [aux_sym_expr_unary_token1] = ACTIONS(3550), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3552), - [anon_sym_DOT_DOT_LT] = ACTIONS(3552), - [anon_sym_null] = ACTIONS(3554), - [anon_sym_true] = ACTIONS(3556), - [anon_sym_false] = ACTIONS(3556), - [aux_sym__val_number_decimal_token1] = ACTIONS(3558), - [aux_sym__val_number_decimal_token2] = ACTIONS(3560), - [aux_sym__val_number_decimal_token3] = ACTIONS(3562), - [aux_sym__val_number_decimal_token4] = ACTIONS(3564), - [aux_sym__val_number_token1] = ACTIONS(223), - [aux_sym__val_number_token2] = ACTIONS(223), - [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3566), - [aux_sym__val_number_token5] = ACTIONS(3566), - [aux_sym__val_number_token6] = ACTIONS(3566), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3568), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym__str_single_quotes] = ACTIONS(1264), - [sym__str_back_ticks] = ACTIONS(1264), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), + [1111] = { + [sym_expr_unary] = STATE(4323), + [sym__expr_unary_minus] = STATE(2338), + [sym_expr_parenthesized] = STATE(3938), + [sym_val_range] = STATE(4323), + [sym__val_range] = STATE(7269), + [sym__val_range_with_end] = STATE(6930), + [sym__value] = STATE(4323), + [sym_val_nothing] = STATE(2375), + [sym_val_bool] = STATE(4034), + [sym_val_variable] = STATE(3954), + [sym_val_number] = STATE(2375), + [sym__val_number_decimal] = STATE(3736), + [sym__val_number] = STATE(2350), + [sym_val_duration] = STATE(2375), + [sym_val_filesize] = STATE(2375), + [sym_val_binary] = STATE(2375), + [sym_val_string] = STATE(2375), + [sym__raw_str] = STATE(1532), + [sym__str_double_quotes] = STATE(1532), + [sym_val_interpolated] = STATE(2375), + [sym__inter_single_quotes] = STATE(2351), + [sym__inter_double_quotes] = STATE(2352), + [sym_val_list] = STATE(2375), + [sym_val_record] = STATE(2375), + [sym_val_table] = STATE(2375), + [sym_val_closure] = STATE(2375), + [sym_unquoted] = STATE(3993), + [sym__unquoted_with_expr] = STATE(4269), + [sym__unquoted_anonymous_prefix] = STATE(6430), + [sym_comment] = STATE(1111), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_DOLLAR] = ACTIONS(3470), + [anon_sym_DASH2] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_DOT_DOT] = ACTIONS(3472), + [aux_sym_expr_unary_token1] = ACTIONS(3474), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3476), + [anon_sym_DOT_DOT_LT] = ACTIONS(3476), + [anon_sym_null] = ACTIONS(3478), + [anon_sym_true] = ACTIONS(3480), + [anon_sym_false] = ACTIONS(3480), + [aux_sym__val_number_decimal_token1] = ACTIONS(3482), + [aux_sym__val_number_decimal_token2] = ACTIONS(3484), + [aux_sym__val_number_decimal_token3] = ACTIONS(3486), + [aux_sym__val_number_decimal_token4] = ACTIONS(3488), + [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(3490), + [aux_sym__val_number_token5] = ACTIONS(3490), + [aux_sym__val_number_token6] = ACTIONS(3490), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3492), + [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(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3494), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1266), + [sym_raw_string_begin] = ACTIONS(121), }, - [1170] = { - [sym_ctrl_do] = STATE(4937), - [sym_ctrl_if] = STATE(4937), - [sym_ctrl_match] = STATE(4937), - [sym_ctrl_try] = STATE(4937), - [sym__expression] = STATE(4937), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3844), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2977), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_comment] = STATE(1170), - [sym__newline] = ACTIONS(3408), - [anon_sym_SEMI] = ACTIONS(3408), - [anon_sym_PIPE] = ACTIONS(3408), - [anon_sym_err_GT_PIPE] = ACTIONS(3408), - [anon_sym_out_GT_PIPE] = ACTIONS(3408), - [anon_sym_e_GT_PIPE] = ACTIONS(3408), - [anon_sym_o_GT_PIPE] = ACTIONS(3408), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3408), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3408), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3408), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3408), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(1012), - [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_do] = ACTIONS(3410), - [anon_sym_if] = ACTIONS(3572), - [anon_sym_match] = ACTIONS(3414), - [anon_sym_LBRACE] = ACTIONS(181), - [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(3416), - [aux_sym_expr_unary_token1] = ACTIONS(201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(207), - [anon_sym_DOT_DOT_LT] = ACTIONS(207), - [anon_sym_null] = ACTIONS(3418), - [anon_sym_true] = ACTIONS(3420), - [anon_sym_false] = ACTIONS(3420), - [aux_sym__val_number_decimal_token1] = ACTIONS(3422), - [aux_sym__val_number_decimal_token2] = ACTIONS(3424), - [aux_sym__val_number_decimal_token3] = ACTIONS(3426), - [aux_sym__val_number_decimal_token4] = ACTIONS(3428), - [aux_sym__val_number_token1] = ACTIONS(223), - [aux_sym__val_number_token2] = ACTIONS(223), - [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(223), - [aux_sym__val_number_token5] = ACTIONS(223), - [aux_sym__val_number_token6] = ACTIONS(223), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(247), + [1112] = { + [sym_comment] = STATE(1112), + [ts_builtin_sym_end] = ACTIONS(1501), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_POUND] = ACTIONS(3), }, - [1171] = { - [sym_comment] = STATE(1171), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1540), - [anon_sym_SLASH_SLASH] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_bit_DASHshl] = ACTIONS(1540), - [anon_sym_bit_DASHshr] = ACTIONS(1540), - [anon_sym_EQ_TILDE] = ACTIONS(1540), - [anon_sym_BANG_TILDE] = ACTIONS(1540), - [anon_sym_bit_DASHand] = ACTIONS(1540), - [anon_sym_bit_DASHxor] = ACTIONS(1540), - [anon_sym_bit_DASHor] = ACTIONS(1540), - [anon_sym_and] = ACTIONS(1540), - [anon_sym_xor] = ACTIONS(1540), - [anon_sym_or] = ACTIONS(1540), - [anon_sym_in] = ACTIONS(1540), - [anon_sym_not_DASHin] = ACTIONS(1540), - [anon_sym_has] = ACTIONS(1540), - [anon_sym_not_DASHhas] = ACTIONS(1540), - [anon_sym_starts_DASHwith] = ACTIONS(1540), - [anon_sym_ends_DASHwith] = ACTIONS(1540), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1538), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1540), - [aux_sym_cmd_identifier_token41] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(1538), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_in2] = ACTIONS(1538), - [anon_sym_STAR2] = ACTIONS(1538), - [anon_sym_and2] = ACTIONS(1538), - [anon_sym_xor2] = ACTIONS(1538), - [anon_sym_or2] = ACTIONS(1538), - [anon_sym_not_DASHin2] = ACTIONS(1538), - [anon_sym_has2] = ACTIONS(1538), - [anon_sym_not_DASHhas2] = ACTIONS(1538), - [anon_sym_starts_DASHwith2] = ACTIONS(1538), - [anon_sym_ends_DASHwith2] = ACTIONS(1538), - [anon_sym_EQ_EQ2] = ACTIONS(1538), - [anon_sym_BANG_EQ2] = ACTIONS(1538), - [anon_sym_LT2] = ACTIONS(1538), - [anon_sym_LT_EQ2] = ACTIONS(1538), - [anon_sym_GT_EQ2] = ACTIONS(1538), - [anon_sym_EQ_TILDE2] = ACTIONS(1538), - [anon_sym_BANG_TILDE2] = ACTIONS(1538), - [anon_sym_STAR_STAR2] = ACTIONS(1538), - [anon_sym_PLUS_PLUS2] = ACTIONS(1538), - [anon_sym_SLASH2] = ACTIONS(1538), - [anon_sym_mod2] = ACTIONS(1538), - [anon_sym_SLASH_SLASH2] = ACTIONS(1538), - [anon_sym_PLUS2] = ACTIONS(1538), - [anon_sym_bit_DASHshl2] = ACTIONS(1538), - [anon_sym_bit_DASHshr2] = ACTIONS(1538), - [anon_sym_bit_DASHand2] = ACTIONS(1538), - [anon_sym_bit_DASHxor2] = ACTIONS(1538), - [anon_sym_bit_DASHor2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [aux_sym__immediate_decimal_token2] = ACTIONS(3574), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1540), + [1113] = { + [sym_comment] = STATE(1113), + [ts_builtin_sym_end] = ACTIONS(1628), + [anon_sym_STAR_STAR] = ACTIONS(2578), + [anon_sym_PLUS_PLUS] = ACTIONS(2578), + [anon_sym_STAR] = ACTIONS(2580), + [anon_sym_SLASH] = ACTIONS(2580), + [anon_sym_mod] = ACTIONS(2578), + [anon_sym_SLASH_SLASH] = ACTIONS(2578), + [anon_sym_PLUS] = ACTIONS(2580), + [anon_sym_DASH] = ACTIONS(2578), + [anon_sym_bit_DASHshl] = ACTIONS(2578), + [anon_sym_bit_DASHshr] = ACTIONS(2578), + [anon_sym_EQ_TILDE] = ACTIONS(2578), + [anon_sym_BANG_TILDE] = ACTIONS(2578), + [anon_sym_bit_DASHand] = ACTIONS(2578), + [anon_sym_bit_DASHxor] = ACTIONS(2578), + [anon_sym_bit_DASHor] = ACTIONS(2578), + [anon_sym_and] = ACTIONS(2578), + [anon_sym_xor] = ACTIONS(2578), + [anon_sym_or] = ACTIONS(2578), + [anon_sym_in] = ACTIONS(2578), + [anon_sym_not_DASHin] = ACTIONS(2578), + [anon_sym_has] = ACTIONS(2578), + [anon_sym_not_DASHhas] = ACTIONS(2578), + [anon_sym_starts_DASHwith] = ACTIONS(2578), + [anon_sym_ends_DASHwith] = ACTIONS(2578), + [anon_sym_EQ_EQ] = ACTIONS(2578), + [anon_sym_BANG_EQ] = ACTIONS(2578), + [anon_sym_LT] = ACTIONS(2580), + [anon_sym_LT_EQ] = ACTIONS(2578), + [anon_sym_GT] = ACTIONS(2580), + [anon_sym_GT_EQ] = ACTIONS(2578), + [aux_sym_cmd_identifier_token41] = ACTIONS(2582), + [sym__newline] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1616), + [anon_sym_err_GT_PIPE] = ACTIONS(1616), + [anon_sym_out_GT_PIPE] = ACTIONS(1616), + [anon_sym_e_GT_PIPE] = ACTIONS(1616), + [anon_sym_o_GT_PIPE] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1616), + [anon_sym_GT2] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_in2] = ACTIONS(1616), + [anon_sym_STAR2] = ACTIONS(1616), + [anon_sym_and2] = ACTIONS(1616), + [anon_sym_xor2] = ACTIONS(1616), + [anon_sym_or2] = ACTIONS(1616), + [anon_sym_not_DASHin2] = ACTIONS(1616), + [anon_sym_has2] = ACTIONS(1616), + [anon_sym_not_DASHhas2] = ACTIONS(1616), + [anon_sym_starts_DASHwith2] = ACTIONS(1616), + [anon_sym_ends_DASHwith2] = ACTIONS(1616), + [anon_sym_EQ_EQ2] = ACTIONS(1616), + [anon_sym_BANG_EQ2] = ACTIONS(1616), + [anon_sym_LT2] = ACTIONS(1616), + [anon_sym_LT_EQ2] = ACTIONS(1616), + [anon_sym_GT_EQ2] = ACTIONS(1616), + [anon_sym_EQ_TILDE2] = ACTIONS(1616), + [anon_sym_BANG_TILDE2] = ACTIONS(1616), + [anon_sym_STAR_STAR2] = ACTIONS(1616), + [anon_sym_PLUS_PLUS2] = ACTIONS(1616), + [anon_sym_SLASH2] = ACTIONS(1616), + [anon_sym_mod2] = ACTIONS(1616), + [anon_sym_SLASH_SLASH2] = ACTIONS(1616), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_bit_DASHshl2] = ACTIONS(1616), + [anon_sym_bit_DASHshr2] = ACTIONS(1616), + [anon_sym_bit_DASHand2] = ACTIONS(1616), + [anon_sym_bit_DASHxor2] = ACTIONS(1616), + [anon_sym_bit_DASHor2] = ACTIONS(1616), + [anon_sym_DOT_DOT2] = ACTIONS(2584), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2586), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2586), + [sym_filesize_unit] = ACTIONS(3514), + [sym_duration_unit] = ACTIONS(3516), [anon_sym_POUND] = ACTIONS(3), }, - [1172] = { - [sym_expr_unary] = STATE(4354), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_parenthesized] = STATE(4063), - [sym_val_range] = STATE(4354), - [sym__val_range] = STATE(7723), - [sym__val_range_with_end] = STATE(7488), - [sym__value] = STATE(4354), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(4104), - [sym_val_variable] = STATE(4087), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(3922), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(4120), - [sym__unquoted_with_expr] = STATE(4376), - [sym__unquoted_anonymous_prefix] = STATE(6846), - [sym_comment] = STATE(1172), - [anon_sym_LBRACK] = ACTIONS(3540), - [anon_sym_LPAREN] = ACTIONS(3542), - [anon_sym_DOLLAR] = ACTIONS(3544), + [1114] = { + [sym_expr_unary] = STATE(4190), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_parenthesized] = STATE(3861), + [sym_val_range] = STATE(4190), + [sym__val_range] = STATE(7094), + [sym__val_range_with_end] = STATE(6949), + [sym__value] = STATE(4190), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(3898), + [sym_val_variable] = STATE(3881), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(3720), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(3895), + [sym__unquoted_with_expr] = STATE(4099), + [sym__unquoted_anonymous_prefix] = STATE(6454), + [sym_comment] = STATE(1114), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3442), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_DOT_DOT] = ACTIONS(3548), - [aux_sym_expr_unary_token1] = ACTIONS(3550), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3552), - [anon_sym_DOT_DOT_LT] = ACTIONS(3552), - [anon_sym_null] = ACTIONS(3554), - [anon_sym_true] = ACTIONS(3556), - [anon_sym_false] = ACTIONS(3556), - [aux_sym__val_number_decimal_token1] = ACTIONS(3558), - [aux_sym__val_number_decimal_token2] = ACTIONS(3560), - [aux_sym__val_number_decimal_token3] = ACTIONS(3562), - [aux_sym__val_number_decimal_token4] = ACTIONS(3564), + [anon_sym_LBRACE] = ACTIONS(3444), + [anon_sym_DOT_DOT] = ACTIONS(3446), + [aux_sym_expr_unary_token1] = ACTIONS(3448), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3450), + [anon_sym_DOT_DOT_LT] = ACTIONS(3450), + [anon_sym_null] = ACTIONS(3452), + [anon_sym_true] = ACTIONS(3454), + [anon_sym_false] = ACTIONS(3454), + [aux_sym__val_number_decimal_token1] = ACTIONS(3456), + [aux_sym__val_number_decimal_token2] = ACTIONS(3458), + [aux_sym__val_number_decimal_token3] = ACTIONS(3460), + [aux_sym__val_number_decimal_token4] = ACTIONS(3462), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3566), - [aux_sym__val_number_token5] = ACTIONS(3566), - [aux_sym__val_number_token6] = ACTIONS(3566), + [aux_sym__val_number_token4] = ACTIONS(3464), + [aux_sym__val_number_token5] = ACTIONS(3464), + [aux_sym__val_number_token6] = ACTIONS(3464), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3568), + [sym_val_date] = ACTIONS(3466), [anon_sym_DQUOTE] = ACTIONS(1262), [sym__str_single_quotes] = ACTIONS(1264), [sym__str_back_ticks] = ACTIONS(1264), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(1266), }, - [1173] = { - [sym_comment] = STATE(1173), - [anon_sym_STAR_STAR] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_STAR] = ACTIONS(1715), - [anon_sym_SLASH] = ACTIONS(1715), - [anon_sym_mod] = ACTIONS(1717), - [anon_sym_SLASH_SLASH] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_bit_DASHshl] = ACTIONS(1717), - [anon_sym_bit_DASHshr] = ACTIONS(1717), - [anon_sym_EQ_TILDE] = ACTIONS(1717), - [anon_sym_BANG_TILDE] = ACTIONS(1717), - [anon_sym_bit_DASHand] = ACTIONS(1717), - [anon_sym_bit_DASHxor] = ACTIONS(1717), - [anon_sym_bit_DASHor] = ACTIONS(1717), - [anon_sym_and] = ACTIONS(1717), - [anon_sym_xor] = ACTIONS(1717), - [anon_sym_or] = ACTIONS(1717), - [anon_sym_in] = ACTIONS(1717), - [anon_sym_not_DASHin] = ACTIONS(1717), - [anon_sym_has] = ACTIONS(1717), - [anon_sym_not_DASHhas] = ACTIONS(1717), - [anon_sym_starts_DASHwith] = ACTIONS(1717), - [anon_sym_ends_DASHwith] = ACTIONS(1717), - [anon_sym_EQ_EQ] = ACTIONS(1717), - [anon_sym_BANG_EQ] = ACTIONS(1717), - [anon_sym_LT] = ACTIONS(1715), - [anon_sym_LT_EQ] = ACTIONS(1717), - [anon_sym_GT] = ACTIONS(1715), - [anon_sym_GT_EQ] = ACTIONS(1717), - [aux_sym_cmd_identifier_token41] = ACTIONS(1715), - [sym__newline] = ACTIONS(1715), - [anon_sym_SEMI] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_err_GT_PIPE] = ACTIONS(1715), - [anon_sym_out_GT_PIPE] = ACTIONS(1715), - [anon_sym_e_GT_PIPE] = ACTIONS(1715), - [anon_sym_o_GT_PIPE] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1715), - [anon_sym_GT2] = ACTIONS(1715), - [anon_sym_DASH2] = ACTIONS(1715), - [anon_sym_in2] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_STAR2] = ACTIONS(1715), - [anon_sym_and2] = ACTIONS(1715), - [anon_sym_xor2] = ACTIONS(1715), - [anon_sym_or2] = ACTIONS(1715), - [anon_sym_not_DASHin2] = ACTIONS(1715), - [anon_sym_has2] = ACTIONS(1715), - [anon_sym_not_DASHhas2] = ACTIONS(1715), - [anon_sym_starts_DASHwith2] = ACTIONS(1715), - [anon_sym_ends_DASHwith2] = ACTIONS(1715), - [anon_sym_EQ_EQ2] = ACTIONS(1715), - [anon_sym_BANG_EQ2] = ACTIONS(1715), - [anon_sym_LT2] = ACTIONS(1715), - [anon_sym_LT_EQ2] = ACTIONS(1715), - [anon_sym_GT_EQ2] = ACTIONS(1715), - [anon_sym_EQ_TILDE2] = ACTIONS(1715), - [anon_sym_BANG_TILDE2] = ACTIONS(1715), - [anon_sym_STAR_STAR2] = ACTIONS(1715), - [anon_sym_PLUS_PLUS2] = ACTIONS(1715), - [anon_sym_SLASH2] = ACTIONS(1715), - [anon_sym_mod2] = ACTIONS(1715), - [anon_sym_SLASH_SLASH2] = ACTIONS(1715), - [anon_sym_PLUS2] = ACTIONS(1715), - [anon_sym_bit_DASHshl2] = ACTIONS(1715), - [anon_sym_bit_DASHshr2] = ACTIONS(1715), - [anon_sym_bit_DASHand2] = ACTIONS(1715), - [anon_sym_bit_DASHxor2] = ACTIONS(1715), - [anon_sym_bit_DASHor2] = ACTIONS(1715), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [sym_filesize_unit] = ACTIONS(1715), - [sym_duration_unit] = ACTIONS(1717), + [1115] = { + [sym_comment] = STATE(1115), + [ts_builtin_sym_end] = ACTIONS(1493), + [anon_sym_STAR_STAR] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_mod] = ACTIONS(1493), + [anon_sym_SLASH_SLASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_bit_DASHshl] = ACTIONS(1493), + [anon_sym_bit_DASHshr] = ACTIONS(1493), + [anon_sym_EQ_TILDE] = ACTIONS(1493), + [anon_sym_BANG_TILDE] = ACTIONS(1493), + [anon_sym_bit_DASHand] = ACTIONS(1493), + [anon_sym_bit_DASHxor] = ACTIONS(1493), + [anon_sym_bit_DASHor] = ACTIONS(1493), + [anon_sym_and] = ACTIONS(1493), + [anon_sym_xor] = ACTIONS(1493), + [anon_sym_or] = ACTIONS(1493), + [anon_sym_in] = ACTIONS(1493), + [anon_sym_not_DASHin] = ACTIONS(1493), + [anon_sym_has] = ACTIONS(1493), + [anon_sym_not_DASHhas] = ACTIONS(1493), + [anon_sym_starts_DASHwith] = ACTIONS(1493), + [anon_sym_ends_DASHwith] = ACTIONS(1493), + [anon_sym_EQ_EQ] = ACTIONS(1493), + [anon_sym_BANG_EQ] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1493), + [aux_sym_cmd_identifier_token41] = ACTIONS(1491), + [sym__newline] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_err_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_GT_PIPE] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1491), + [anon_sym_GT2] = ACTIONS(1491), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_in2] = ACTIONS(1491), + [anon_sym_STAR2] = ACTIONS(1491), + [anon_sym_and2] = ACTIONS(1491), + [anon_sym_xor2] = ACTIONS(1491), + [anon_sym_or2] = ACTIONS(1491), + [anon_sym_not_DASHin2] = ACTIONS(1491), + [anon_sym_has2] = ACTIONS(1491), + [anon_sym_not_DASHhas2] = ACTIONS(1491), + [anon_sym_starts_DASHwith2] = ACTIONS(1491), + [anon_sym_ends_DASHwith2] = ACTIONS(1491), + [anon_sym_EQ_EQ2] = ACTIONS(1491), + [anon_sym_BANG_EQ2] = ACTIONS(1491), + [anon_sym_LT2] = ACTIONS(1491), + [anon_sym_LT_EQ2] = ACTIONS(1491), + [anon_sym_GT_EQ2] = ACTIONS(1491), + [anon_sym_EQ_TILDE2] = ACTIONS(1491), + [anon_sym_BANG_TILDE2] = ACTIONS(1491), + [anon_sym_STAR_STAR2] = ACTIONS(1491), + [anon_sym_PLUS_PLUS2] = ACTIONS(1491), + [anon_sym_SLASH2] = ACTIONS(1491), + [anon_sym_mod2] = ACTIONS(1491), + [anon_sym_SLASH_SLASH2] = ACTIONS(1491), + [anon_sym_PLUS2] = ACTIONS(1491), + [anon_sym_bit_DASHshl2] = ACTIONS(1491), + [anon_sym_bit_DASHshr2] = ACTIONS(1491), + [anon_sym_bit_DASHand2] = ACTIONS(1491), + [anon_sym_bit_DASHxor2] = ACTIONS(1491), + [anon_sym_bit_DASHor2] = ACTIONS(1491), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [sym_filesize_unit] = ACTIONS(1491), + [sym_duration_unit] = ACTIONS(1493), [anon_sym_POUND] = ACTIONS(3), }, - [1174] = { - [sym_comment] = STATE(1174), - [anon_sym_STAR_STAR] = ACTIONS(2572), - [anon_sym_PLUS_PLUS] = ACTIONS(2572), - [anon_sym_STAR] = ACTIONS(2574), - [anon_sym_SLASH] = ACTIONS(2574), - [anon_sym_mod] = ACTIONS(2572), - [anon_sym_SLASH_SLASH] = ACTIONS(2572), - [anon_sym_PLUS] = ACTIONS(2574), - [anon_sym_DASH] = ACTIONS(2572), - [anon_sym_bit_DASHshl] = ACTIONS(2572), - [anon_sym_bit_DASHshr] = ACTIONS(2572), - [anon_sym_EQ_TILDE] = ACTIONS(2572), - [anon_sym_BANG_TILDE] = ACTIONS(2572), - [anon_sym_bit_DASHand] = ACTIONS(2572), - [anon_sym_bit_DASHxor] = ACTIONS(2572), - [anon_sym_bit_DASHor] = ACTIONS(2572), - [anon_sym_and] = ACTIONS(2572), - [anon_sym_xor] = ACTIONS(2572), - [anon_sym_or] = ACTIONS(2572), - [anon_sym_in] = ACTIONS(2572), - [anon_sym_not_DASHin] = ACTIONS(2572), - [anon_sym_has] = ACTIONS(2572), - [anon_sym_not_DASHhas] = ACTIONS(2572), - [anon_sym_starts_DASHwith] = ACTIONS(2572), - [anon_sym_ends_DASHwith] = ACTIONS(2572), - [anon_sym_EQ_EQ] = ACTIONS(2572), - [anon_sym_BANG_EQ] = ACTIONS(2572), - [anon_sym_LT] = ACTIONS(2574), - [anon_sym_LT_EQ] = ACTIONS(2572), - [anon_sym_GT] = ACTIONS(2574), - [anon_sym_GT_EQ] = ACTIONS(2572), - [aux_sym_cmd_identifier_token41] = ACTIONS(2576), + [1116] = { + [sym_comment] = STATE(1116), + [anon_sym_STAR_STAR] = ACTIONS(1680), + [anon_sym_PLUS_PLUS] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_SLASH] = ACTIONS(1678), + [anon_sym_mod] = ACTIONS(1680), + [anon_sym_SLASH_SLASH] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1680), + [anon_sym_bit_DASHshl] = ACTIONS(1680), + [anon_sym_bit_DASHshr] = ACTIONS(1680), + [anon_sym_EQ_TILDE] = ACTIONS(1680), + [anon_sym_BANG_TILDE] = ACTIONS(1680), + [anon_sym_bit_DASHand] = ACTIONS(1680), + [anon_sym_bit_DASHxor] = ACTIONS(1680), + [anon_sym_bit_DASHor] = ACTIONS(1680), + [anon_sym_and] = ACTIONS(1680), + [anon_sym_xor] = ACTIONS(1680), + [anon_sym_or] = ACTIONS(1680), + [anon_sym_in] = ACTIONS(1680), + [anon_sym_not_DASHin] = ACTIONS(1680), + [anon_sym_has] = ACTIONS(1680), + [anon_sym_not_DASHhas] = ACTIONS(1680), + [anon_sym_starts_DASHwith] = ACTIONS(1680), + [anon_sym_ends_DASHwith] = ACTIONS(1680), + [anon_sym_EQ_EQ] = ACTIONS(1680), + [anon_sym_BANG_EQ] = ACTIONS(1680), + [anon_sym_LT] = ACTIONS(1678), + [anon_sym_LT_EQ] = ACTIONS(1680), + [anon_sym_GT] = ACTIONS(1678), + [anon_sym_GT_EQ] = ACTIONS(1680), + [aux_sym_cmd_identifier_token41] = ACTIONS(1678), + [sym__newline] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_PIPE] = ACTIONS(1678), + [anon_sym_err_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_GT_PIPE] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1678), + [anon_sym_RPAREN] = ACTIONS(1678), + [anon_sym_GT2] = ACTIONS(1678), + [anon_sym_DASH2] = ACTIONS(1678), + [anon_sym_in2] = ACTIONS(1678), + [anon_sym_STAR2] = ACTIONS(1678), + [anon_sym_and2] = ACTIONS(1678), + [anon_sym_xor2] = ACTIONS(1678), + [anon_sym_or2] = ACTIONS(1678), + [anon_sym_not_DASHin2] = ACTIONS(1678), + [anon_sym_has2] = ACTIONS(1678), + [anon_sym_not_DASHhas2] = ACTIONS(1678), + [anon_sym_starts_DASHwith2] = ACTIONS(1678), + [anon_sym_ends_DASHwith2] = ACTIONS(1678), + [anon_sym_EQ_EQ2] = ACTIONS(1678), + [anon_sym_BANG_EQ2] = ACTIONS(1678), + [anon_sym_LT2] = ACTIONS(1678), + [anon_sym_LT_EQ2] = ACTIONS(1678), + [anon_sym_GT_EQ2] = ACTIONS(1678), + [anon_sym_EQ_TILDE2] = ACTIONS(1678), + [anon_sym_BANG_TILDE2] = ACTIONS(1678), + [anon_sym_STAR_STAR2] = ACTIONS(1678), + [anon_sym_PLUS_PLUS2] = ACTIONS(1678), + [anon_sym_SLASH2] = ACTIONS(1678), + [anon_sym_mod2] = ACTIONS(1678), + [anon_sym_SLASH_SLASH2] = ACTIONS(1678), + [anon_sym_PLUS2] = ACTIONS(1678), + [anon_sym_bit_DASHshl2] = ACTIONS(1678), + [anon_sym_bit_DASHshr2] = ACTIONS(1678), + [anon_sym_bit_DASHand2] = ACTIONS(1678), + [anon_sym_bit_DASHxor2] = ACTIONS(1678), + [anon_sym_bit_DASHor2] = ACTIONS(1678), + [anon_sym_DOT_DOT2] = ACTIONS(1678), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1680), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1680), + [sym_filesize_unit] = ACTIONS(1678), + [sym_duration_unit] = ACTIONS(1680), + [anon_sym_POUND] = ACTIONS(3), + }, + [1117] = { + [sym_comment] = STATE(1117), + [ts_builtin_sym_end] = ACTIONS(1581), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1581), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_bit_DASHshl] = ACTIONS(1581), + [anon_sym_bit_DASHshr] = ACTIONS(1581), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1581), + [anon_sym_bit_DASHxor] = ACTIONS(1581), + [anon_sym_bit_DASHor] = ACTIONS(1581), + [anon_sym_and] = ACTIONS(1581), + [anon_sym_xor] = ACTIONS(1581), + [anon_sym_or] = ACTIONS(1581), + [anon_sym_in] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1581), + [anon_sym_has] = ACTIONS(1581), + [anon_sym_not_DASHhas] = ACTIONS(1581), + [anon_sym_starts_DASHwith] = ACTIONS(1581), + [anon_sym_ends_DASHwith] = ACTIONS(1581), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1581), + [aux_sym_cmd_identifier_token41] = ACTIONS(1579), [sym__newline] = ACTIONS(1579), [anon_sym_SEMI] = ACTIONS(1579), [anon_sym_PIPE] = ACTIONS(1579), @@ -193517,400 +186837,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1579), [anon_sym_bit_DASHxor2] = ACTIONS(1579), [anon_sym_bit_DASHor2] = ACTIONS(1579), - [anon_sym_DOT_DOT2] = ACTIONS(2546), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2548), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2548), - [sym_filesize_unit] = ACTIONS(3576), - [sym_duration_unit] = ACTIONS(3578), - [anon_sym_POUND] = ACTIONS(3), - }, - [1175] = { - [sym_comment] = STATE(1175), - [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1183), - [aux_sym_cmd_identifier_token1] = ACTIONS(3580), - [aux_sym_cmd_identifier_token2] = ACTIONS(3580), - [aux_sym_cmd_identifier_token3] = ACTIONS(3580), - [aux_sym_cmd_identifier_token4] = ACTIONS(3580), - [aux_sym_cmd_identifier_token5] = ACTIONS(3580), - [aux_sym_cmd_identifier_token6] = ACTIONS(3580), - [aux_sym_cmd_identifier_token7] = ACTIONS(3580), - [aux_sym_cmd_identifier_token8] = ACTIONS(3580), - [aux_sym_cmd_identifier_token9] = ACTIONS(3580), - [aux_sym_cmd_identifier_token10] = ACTIONS(3580), - [aux_sym_cmd_identifier_token11] = ACTIONS(3580), - [aux_sym_cmd_identifier_token12] = ACTIONS(3580), - [aux_sym_cmd_identifier_token13] = ACTIONS(3580), - [aux_sym_cmd_identifier_token14] = ACTIONS(3580), - [aux_sym_cmd_identifier_token15] = ACTIONS(3580), - [aux_sym_cmd_identifier_token16] = ACTIONS(3580), - [aux_sym_cmd_identifier_token17] = ACTIONS(3580), - [aux_sym_cmd_identifier_token18] = ACTIONS(3580), - [aux_sym_cmd_identifier_token19] = ACTIONS(3580), - [aux_sym_cmd_identifier_token20] = ACTIONS(3580), - [aux_sym_cmd_identifier_token21] = ACTIONS(3580), - [aux_sym_cmd_identifier_token22] = ACTIONS(3580), - [aux_sym_cmd_identifier_token23] = ACTIONS(3580), - [aux_sym_cmd_identifier_token24] = ACTIONS(3580), - [aux_sym_cmd_identifier_token25] = ACTIONS(3580), - [aux_sym_cmd_identifier_token26] = ACTIONS(3580), - [aux_sym_cmd_identifier_token27] = ACTIONS(3580), - [aux_sym_cmd_identifier_token28] = ACTIONS(3580), - [aux_sym_cmd_identifier_token29] = ACTIONS(3580), - [aux_sym_cmd_identifier_token30] = ACTIONS(3580), - [aux_sym_cmd_identifier_token31] = ACTIONS(3580), - [aux_sym_cmd_identifier_token32] = ACTIONS(3580), - [aux_sym_cmd_identifier_token33] = ACTIONS(3580), - [aux_sym_cmd_identifier_token34] = ACTIONS(3580), - [aux_sym_cmd_identifier_token35] = ACTIONS(3580), - [aux_sym_cmd_identifier_token36] = ACTIONS(3580), - [aux_sym_cmd_identifier_token37] = ACTIONS(3580), - [aux_sym_cmd_identifier_token38] = ACTIONS(3580), - [aux_sym_cmd_identifier_token39] = ACTIONS(3580), - [aux_sym_cmd_identifier_token40] = ACTIONS(3580), - [sym__newline] = ACTIONS(3582), - [sym__space] = ACTIONS(3584), - [anon_sym_LBRACK] = ACTIONS(3580), - [anon_sym_LPAREN] = ACTIONS(3580), - [anon_sym_DOLLAR] = ACTIONS(3580), - [anon_sym_DASH2] = ACTIONS(3580), - [anon_sym_LBRACE] = ACTIONS(3580), - [anon_sym_DOT_DOT] = ACTIONS(3580), - [aux_sym_expr_unary_token1] = ACTIONS(3580), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3580), - [anon_sym_DOT_DOT_LT] = ACTIONS(3580), - [anon_sym_null] = ACTIONS(3580), - [anon_sym_true] = ACTIONS(3580), - [anon_sym_false] = ACTIONS(3580), - [aux_sym__val_number_decimal_token1] = ACTIONS(3580), - [aux_sym__val_number_decimal_token2] = ACTIONS(3580), - [aux_sym__val_number_decimal_token3] = ACTIONS(3580), - [aux_sym__val_number_decimal_token4] = ACTIONS(3580), - [aux_sym__val_number_token1] = ACTIONS(3580), - [aux_sym__val_number_token2] = ACTIONS(3580), - [aux_sym__val_number_token3] = ACTIONS(3580), - [aux_sym__val_number_token4] = ACTIONS(3580), - [aux_sym__val_number_token5] = ACTIONS(3580), - [aux_sym__val_number_token6] = ACTIONS(3580), - [anon_sym_0b] = ACTIONS(3580), - [anon_sym_0o] = ACTIONS(3580), - [anon_sym_0x] = ACTIONS(3580), - [sym_val_date] = ACTIONS(3580), - [anon_sym_DQUOTE] = ACTIONS(3580), - [sym__str_single_quotes] = ACTIONS(3580), - [sym__str_back_ticks] = ACTIONS(3580), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3580), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3580), - [aux_sym_env_var_token1] = ACTIONS(3580), - [anon_sym_CARET] = ACTIONS(3580), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [sym_filesize_unit] = ACTIONS(1579), + [sym_duration_unit] = ACTIONS(1581), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3586), }, - [1176] = { - [sym_comment] = STATE(1176), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1540), - [anon_sym_SLASH_SLASH] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_bit_DASHshl] = ACTIONS(1540), - [anon_sym_bit_DASHshr] = ACTIONS(1540), - [anon_sym_EQ_TILDE] = ACTIONS(1540), - [anon_sym_BANG_TILDE] = ACTIONS(1540), - [anon_sym_bit_DASHand] = ACTIONS(1540), - [anon_sym_bit_DASHxor] = ACTIONS(1540), - [anon_sym_bit_DASHor] = ACTIONS(1540), - [anon_sym_and] = ACTIONS(1540), - [anon_sym_xor] = ACTIONS(1540), - [anon_sym_or] = ACTIONS(1540), - [anon_sym_in] = ACTIONS(1540), - [anon_sym_not_DASHin] = ACTIONS(1540), - [anon_sym_has] = ACTIONS(1540), - [anon_sym_not_DASHhas] = ACTIONS(1540), - [anon_sym_starts_DASHwith] = ACTIONS(1540), - [anon_sym_ends_DASHwith] = ACTIONS(1540), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1538), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1540), - [aux_sym_cmd_identifier_token41] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(1538), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_in2] = ACTIONS(1538), - [anon_sym_STAR2] = ACTIONS(1538), - [anon_sym_and2] = ACTIONS(1538), - [anon_sym_xor2] = ACTIONS(1538), - [anon_sym_or2] = ACTIONS(1538), - [anon_sym_not_DASHin2] = ACTIONS(1538), - [anon_sym_has2] = ACTIONS(1538), - [anon_sym_not_DASHhas2] = ACTIONS(1538), - [anon_sym_starts_DASHwith2] = ACTIONS(1538), - [anon_sym_ends_DASHwith2] = ACTIONS(1538), - [anon_sym_EQ_EQ2] = ACTIONS(1538), - [anon_sym_BANG_EQ2] = ACTIONS(1538), - [anon_sym_LT2] = ACTIONS(1538), - [anon_sym_LT_EQ2] = ACTIONS(1538), - [anon_sym_GT_EQ2] = ACTIONS(1538), - [anon_sym_EQ_TILDE2] = ACTIONS(1538), - [anon_sym_BANG_TILDE2] = ACTIONS(1538), - [anon_sym_STAR_STAR2] = ACTIONS(1538), - [anon_sym_PLUS_PLUS2] = ACTIONS(1538), - [anon_sym_SLASH2] = ACTIONS(1538), - [anon_sym_mod2] = ACTIONS(1538), - [anon_sym_SLASH_SLASH2] = ACTIONS(1538), - [anon_sym_PLUS2] = ACTIONS(1538), - [anon_sym_bit_DASHshl2] = ACTIONS(1538), - [anon_sym_bit_DASHshr2] = ACTIONS(1538), - [anon_sym_bit_DASHand2] = ACTIONS(1538), - [anon_sym_bit_DASHxor2] = ACTIONS(1538), - [anon_sym_bit_DASHor2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [aux_sym__immediate_decimal_token2] = ACTIONS(3588), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(3), - }, - [1177] = { - [sym_comment] = STATE(1177), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(3), - }, - [1178] = { - [sym_comment] = STATE(1178), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(3538), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(3), - }, - [1179] = { - [sym_ctrl_do] = STATE(4937), - [sym_ctrl_if] = STATE(4937), - [sym_ctrl_match] = STATE(4937), - [sym_ctrl_try] = STATE(4937), - [sym__expression] = STATE(4937), - [sym_expr_unary] = STATE(2095), - [sym__expr_unary_minus] = STATE(2104), - [sym_expr_binary] = STATE(2095), - [sym__expr_binary_expression] = STATE(3844), - [sym_expr_parenthesized] = STATE(1665), - [sym_val_range] = STATE(2095), - [sym__value] = STATE(2095), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(2082), - [sym_val_variable] = STATE(1668), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(2977), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_comment] = STATE(1179), - [sym__newline] = ACTIONS(3408), - [anon_sym_PIPE] = ACTIONS(3408), - [anon_sym_err_GT_PIPE] = ACTIONS(3408), - [anon_sym_out_GT_PIPE] = ACTIONS(3408), - [anon_sym_e_GT_PIPE] = ACTIONS(3408), - [anon_sym_o_GT_PIPE] = ACTIONS(3408), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3408), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3408), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3408), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3408), + [1118] = { + [sym_ctrl_do] = STATE(4563), + [sym_ctrl_if] = STATE(4563), + [sym_ctrl_match] = STATE(4563), + [sym_ctrl_try] = STATE(4563), + [sym__expression] = STATE(4563), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3669), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2848), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_comment] = STATE(1118), + [sym__newline] = ACTIONS(3320), + [anon_sym_SEMI] = ACTIONS(3320), + [anon_sym_PIPE] = ACTIONS(3320), + [anon_sym_err_GT_PIPE] = ACTIONS(3320), + [anon_sym_out_GT_PIPE] = ACTIONS(3320), + [anon_sym_e_GT_PIPE] = ACTIONS(3320), + [anon_sym_o_GT_PIPE] = ACTIONS(3320), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3320), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3320), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3320), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3320), [anon_sym_LBRACK] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_DOLLAR] = ACTIONS(1012), [anon_sym_DASH2] = ACTIONS(375), - [anon_sym_do] = ACTIONS(3410), - [anon_sym_if] = ACTIONS(3590), - [anon_sym_match] = ACTIONS(3414), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3518), + [anon_sym_match] = ACTIONS(3326), [anon_sym_LBRACE] = ACTIONS(181), [anon_sym_DOT_DOT] = ACTIONS(185), - [anon_sym_try] = ACTIONS(3416), + [anon_sym_try] = ACTIONS(3328), [aux_sym_expr_unary_token1] = ACTIONS(201), [anon_sym_DOT_DOT_EQ] = ACTIONS(207), [anon_sym_DOT_DOT_LT] = ACTIONS(207), - [anon_sym_null] = ACTIONS(3418), - [anon_sym_true] = ACTIONS(3420), - [anon_sym_false] = ACTIONS(3420), - [aux_sym__val_number_decimal_token1] = ACTIONS(3422), - [aux_sym__val_number_decimal_token2] = ACTIONS(3424), - [aux_sym__val_number_decimal_token3] = ACTIONS(3426), - [aux_sym__val_number_decimal_token4] = ACTIONS(3428), + [anon_sym_null] = ACTIONS(3330), + [anon_sym_true] = ACTIONS(3332), + [anon_sym_false] = ACTIONS(3332), + [aux_sym__val_number_decimal_token1] = ACTIONS(3334), + [aux_sym__val_number_decimal_token2] = ACTIONS(3336), + [aux_sym__val_number_decimal_token3] = ACTIONS(3338), + [aux_sym__val_number_decimal_token4] = ACTIONS(3340), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), @@ -193929,364 +186926,448 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1180] = { - [sym_comment] = STATE(1180), - [anon_sym_STAR_STAR] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_SLASH] = ACTIONS(1484), - [anon_sym_mod] = ACTIONS(1486), - [anon_sym_SLASH_SLASH] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_bit_DASHshl] = ACTIONS(1486), - [anon_sym_bit_DASHshr] = ACTIONS(1486), - [anon_sym_EQ_TILDE] = ACTIONS(1486), - [anon_sym_BANG_TILDE] = ACTIONS(1486), - [anon_sym_bit_DASHand] = ACTIONS(1486), - [anon_sym_bit_DASHxor] = ACTIONS(1486), - [anon_sym_bit_DASHor] = ACTIONS(1486), - [anon_sym_and] = ACTIONS(1486), - [anon_sym_xor] = ACTIONS(1486), - [anon_sym_or] = ACTIONS(1486), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_not_DASHin] = ACTIONS(1486), - [anon_sym_has] = ACTIONS(1486), - [anon_sym_not_DASHhas] = ACTIONS(1486), - [anon_sym_starts_DASHwith] = ACTIONS(1486), - [anon_sym_ends_DASHwith] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(1486), - [anon_sym_BANG_EQ] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1486), - [aux_sym_cmd_identifier_token41] = ACTIONS(1484), - [sym__newline] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_err_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_GT_PIPE] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1484), - [anon_sym_GT2] = ACTIONS(1484), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_in2] = ACTIONS(1484), - [anon_sym_STAR2] = ACTIONS(1484), - [anon_sym_and2] = ACTIONS(1484), - [anon_sym_xor2] = ACTIONS(1484), - [anon_sym_or2] = ACTIONS(1484), - [anon_sym_not_DASHin2] = ACTIONS(1484), - [anon_sym_has2] = ACTIONS(1484), - [anon_sym_not_DASHhas2] = ACTIONS(1484), - [anon_sym_starts_DASHwith2] = ACTIONS(1484), - [anon_sym_ends_DASHwith2] = ACTIONS(1484), - [anon_sym_EQ_EQ2] = ACTIONS(1484), - [anon_sym_BANG_EQ2] = ACTIONS(1484), - [anon_sym_LT2] = ACTIONS(1484), - [anon_sym_LT_EQ2] = ACTIONS(1484), - [anon_sym_GT_EQ2] = ACTIONS(1484), - [anon_sym_EQ_TILDE2] = ACTIONS(1484), - [anon_sym_BANG_TILDE2] = ACTIONS(1484), - [anon_sym_STAR_STAR2] = ACTIONS(1484), - [anon_sym_PLUS_PLUS2] = ACTIONS(1484), - [anon_sym_SLASH2] = ACTIONS(1484), - [anon_sym_mod2] = ACTIONS(1484), - [anon_sym_SLASH_SLASH2] = ACTIONS(1484), - [anon_sym_PLUS2] = ACTIONS(1484), - [anon_sym_bit_DASHshl2] = ACTIONS(1484), - [anon_sym_bit_DASHshr2] = ACTIONS(1484), - [anon_sym_bit_DASHand2] = ACTIONS(1484), - [anon_sym_bit_DASHxor2] = ACTIONS(1484), - [anon_sym_bit_DASHor2] = ACTIONS(1484), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [sym_filesize_unit] = ACTIONS(1484), - [sym_duration_unit] = ACTIONS(1486), + [1119] = { + [sym_comment] = STATE(1119), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), [anon_sym_POUND] = ACTIONS(3), }, - [1181] = { - [sym_comment] = STATE(1181), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1540), - [anon_sym_SLASH_SLASH] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_bit_DASHshl] = ACTIONS(1540), - [anon_sym_bit_DASHshr] = ACTIONS(1540), - [anon_sym_EQ_TILDE] = ACTIONS(1540), - [anon_sym_BANG_TILDE] = ACTIONS(1540), - [anon_sym_bit_DASHand] = ACTIONS(1540), - [anon_sym_bit_DASHxor] = ACTIONS(1540), - [anon_sym_bit_DASHor] = ACTIONS(1540), - [anon_sym_and] = ACTIONS(1540), - [anon_sym_xor] = ACTIONS(1540), - [anon_sym_or] = ACTIONS(1540), - [anon_sym_in] = ACTIONS(1540), - [anon_sym_not_DASHin] = ACTIONS(1540), - [anon_sym_has] = ACTIONS(1540), - [anon_sym_not_DASHhas] = ACTIONS(1540), - [anon_sym_starts_DASHwith] = ACTIONS(1540), - [anon_sym_ends_DASHwith] = ACTIONS(1540), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1538), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1540), - [aux_sym_cmd_identifier_token41] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(1538), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_in2] = ACTIONS(1538), - [anon_sym_STAR2] = ACTIONS(1538), - [anon_sym_and2] = ACTIONS(1538), - [anon_sym_xor2] = ACTIONS(1538), - [anon_sym_or2] = ACTIONS(1538), - [anon_sym_not_DASHin2] = ACTIONS(1538), - [anon_sym_has2] = ACTIONS(1538), - [anon_sym_not_DASHhas2] = ACTIONS(1538), - [anon_sym_starts_DASHwith2] = ACTIONS(1538), - [anon_sym_ends_DASHwith2] = ACTIONS(1538), - [anon_sym_EQ_EQ2] = ACTIONS(1538), - [anon_sym_BANG_EQ2] = ACTIONS(1538), - [anon_sym_LT2] = ACTIONS(1538), - [anon_sym_LT_EQ2] = ACTIONS(1538), - [anon_sym_GT_EQ2] = ACTIONS(1538), - [anon_sym_EQ_TILDE2] = ACTIONS(1538), - [anon_sym_BANG_TILDE2] = ACTIONS(1538), - [anon_sym_STAR_STAR2] = ACTIONS(1538), - [anon_sym_PLUS_PLUS2] = ACTIONS(1538), - [anon_sym_SLASH2] = ACTIONS(1538), - [anon_sym_mod2] = ACTIONS(1538), - [anon_sym_SLASH_SLASH2] = ACTIONS(1538), - [anon_sym_PLUS2] = ACTIONS(1538), - [anon_sym_bit_DASHshl2] = ACTIONS(1538), - [anon_sym_bit_DASHshr2] = ACTIONS(1538), - [anon_sym_bit_DASHand2] = ACTIONS(1538), - [anon_sym_bit_DASHxor2] = ACTIONS(1538), - [anon_sym_bit_DASHor2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1540), + [1120] = { + [sym_comment] = STATE(1120), + [ts_builtin_sym_end] = ACTIONS(1680), + [anon_sym_STAR_STAR] = ACTIONS(1680), + [anon_sym_PLUS_PLUS] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_SLASH] = ACTIONS(1678), + [anon_sym_mod] = ACTIONS(1680), + [anon_sym_SLASH_SLASH] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1680), + [anon_sym_bit_DASHshl] = ACTIONS(1680), + [anon_sym_bit_DASHshr] = ACTIONS(1680), + [anon_sym_EQ_TILDE] = ACTIONS(1680), + [anon_sym_BANG_TILDE] = ACTIONS(1680), + [anon_sym_bit_DASHand] = ACTIONS(1680), + [anon_sym_bit_DASHxor] = ACTIONS(1680), + [anon_sym_bit_DASHor] = ACTIONS(1680), + [anon_sym_and] = ACTIONS(1680), + [anon_sym_xor] = ACTIONS(1680), + [anon_sym_or] = ACTIONS(1680), + [anon_sym_in] = ACTIONS(1680), + [anon_sym_not_DASHin] = ACTIONS(1680), + [anon_sym_has] = ACTIONS(1680), + [anon_sym_not_DASHhas] = ACTIONS(1680), + [anon_sym_starts_DASHwith] = ACTIONS(1680), + [anon_sym_ends_DASHwith] = ACTIONS(1680), + [anon_sym_EQ_EQ] = ACTIONS(1680), + [anon_sym_BANG_EQ] = ACTIONS(1680), + [anon_sym_LT] = ACTIONS(1678), + [anon_sym_LT_EQ] = ACTIONS(1680), + [anon_sym_GT] = ACTIONS(1678), + [anon_sym_GT_EQ] = ACTIONS(1680), + [aux_sym_cmd_identifier_token41] = ACTIONS(1678), + [sym__newline] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_PIPE] = ACTIONS(1678), + [anon_sym_err_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_GT_PIPE] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1678), + [anon_sym_GT2] = ACTIONS(1678), + [anon_sym_DASH2] = ACTIONS(1678), + [anon_sym_in2] = ACTIONS(1678), + [anon_sym_STAR2] = ACTIONS(1678), + [anon_sym_and2] = ACTIONS(1678), + [anon_sym_xor2] = ACTIONS(1678), + [anon_sym_or2] = ACTIONS(1678), + [anon_sym_not_DASHin2] = ACTIONS(1678), + [anon_sym_has2] = ACTIONS(1678), + [anon_sym_not_DASHhas2] = ACTIONS(1678), + [anon_sym_starts_DASHwith2] = ACTIONS(1678), + [anon_sym_ends_DASHwith2] = ACTIONS(1678), + [anon_sym_EQ_EQ2] = ACTIONS(1678), + [anon_sym_BANG_EQ2] = ACTIONS(1678), + [anon_sym_LT2] = ACTIONS(1678), + [anon_sym_LT_EQ2] = ACTIONS(1678), + [anon_sym_GT_EQ2] = ACTIONS(1678), + [anon_sym_EQ_TILDE2] = ACTIONS(1678), + [anon_sym_BANG_TILDE2] = ACTIONS(1678), + [anon_sym_STAR_STAR2] = ACTIONS(1678), + [anon_sym_PLUS_PLUS2] = ACTIONS(1678), + [anon_sym_SLASH2] = ACTIONS(1678), + [anon_sym_mod2] = ACTIONS(1678), + [anon_sym_SLASH_SLASH2] = ACTIONS(1678), + [anon_sym_PLUS2] = ACTIONS(1678), + [anon_sym_bit_DASHshl2] = ACTIONS(1678), + [anon_sym_bit_DASHshr2] = ACTIONS(1678), + [anon_sym_bit_DASHand2] = ACTIONS(1678), + [anon_sym_bit_DASHxor2] = ACTIONS(1678), + [anon_sym_bit_DASHor2] = ACTIONS(1678), + [anon_sym_DOT_DOT2] = ACTIONS(1678), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1680), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1680), + [sym_filesize_unit] = ACTIONS(1678), + [sym_duration_unit] = ACTIONS(1680), [anon_sym_POUND] = ACTIONS(3), }, - [1182] = { - [sym_comment] = STATE(1182), - [anon_sym_STAR_STAR] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_STAR] = ACTIONS(1715), - [anon_sym_SLASH] = ACTIONS(1715), - [anon_sym_mod] = ACTIONS(1717), - [anon_sym_SLASH_SLASH] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_bit_DASHshl] = ACTIONS(1717), - [anon_sym_bit_DASHshr] = ACTIONS(1717), - [anon_sym_EQ_TILDE] = ACTIONS(1717), - [anon_sym_BANG_TILDE] = ACTIONS(1717), - [anon_sym_bit_DASHand] = ACTIONS(1717), - [anon_sym_bit_DASHxor] = ACTIONS(1717), - [anon_sym_bit_DASHor] = ACTIONS(1717), - [anon_sym_and] = ACTIONS(1717), - [anon_sym_xor] = ACTIONS(1717), - [anon_sym_or] = ACTIONS(1717), - [anon_sym_in] = ACTIONS(1717), - [anon_sym_not_DASHin] = ACTIONS(1717), - [anon_sym_has] = ACTIONS(1717), - [anon_sym_not_DASHhas] = ACTIONS(1717), - [anon_sym_starts_DASHwith] = ACTIONS(1717), - [anon_sym_ends_DASHwith] = ACTIONS(1717), - [anon_sym_EQ_EQ] = ACTIONS(1717), - [anon_sym_BANG_EQ] = ACTIONS(1717), - [anon_sym_LT] = ACTIONS(1715), - [anon_sym_LT_EQ] = ACTIONS(1717), - [anon_sym_GT] = ACTIONS(1715), - [anon_sym_GT_EQ] = ACTIONS(1717), - [aux_sym_cmd_identifier_token41] = ACTIONS(1715), - [sym__newline] = ACTIONS(1715), - [anon_sym_SEMI] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_err_GT_PIPE] = ACTIONS(1715), - [anon_sym_out_GT_PIPE] = ACTIONS(1715), - [anon_sym_e_GT_PIPE] = ACTIONS(1715), - [anon_sym_o_GT_PIPE] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1715), - [anon_sym_GT2] = ACTIONS(1715), - [anon_sym_DASH2] = ACTIONS(1715), - [anon_sym_in2] = ACTIONS(1715), - [anon_sym_STAR2] = ACTIONS(1715), - [anon_sym_and2] = ACTIONS(1715), - [anon_sym_xor2] = ACTIONS(1715), - [anon_sym_or2] = ACTIONS(1715), - [anon_sym_not_DASHin2] = ACTIONS(1715), - [anon_sym_has2] = ACTIONS(1715), - [anon_sym_not_DASHhas2] = ACTIONS(1715), - [anon_sym_starts_DASHwith2] = ACTIONS(1715), - [anon_sym_ends_DASHwith2] = ACTIONS(1715), - [anon_sym_EQ_EQ2] = ACTIONS(1715), - [anon_sym_BANG_EQ2] = ACTIONS(1715), - [anon_sym_LT2] = ACTIONS(1715), - [anon_sym_LT_EQ2] = ACTIONS(1715), - [anon_sym_GT_EQ2] = ACTIONS(1715), - [anon_sym_EQ_TILDE2] = ACTIONS(1715), - [anon_sym_BANG_TILDE2] = ACTIONS(1715), - [anon_sym_STAR_STAR2] = ACTIONS(1715), - [anon_sym_PLUS_PLUS2] = ACTIONS(1715), - [anon_sym_SLASH2] = ACTIONS(1715), - [anon_sym_mod2] = ACTIONS(1715), - [anon_sym_SLASH_SLASH2] = ACTIONS(1715), - [anon_sym_PLUS2] = ACTIONS(1715), - [anon_sym_bit_DASHshl2] = ACTIONS(1715), - [anon_sym_bit_DASHshr2] = ACTIONS(1715), - [anon_sym_bit_DASHand2] = ACTIONS(1715), - [anon_sym_bit_DASHxor2] = ACTIONS(1715), - [anon_sym_bit_DASHor2] = ACTIONS(1715), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [sym_filesize_unit] = ACTIONS(1715), - [sym_duration_unit] = ACTIONS(1717), + [1121] = { + [sym_comment] = STATE(1121), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), [anon_sym_POUND] = ACTIONS(3), }, - [1183] = { - [sym_comment] = STATE(1183), - [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1183), - [aux_sym_cmd_identifier_token1] = ACTIONS(3592), - [aux_sym_cmd_identifier_token2] = ACTIONS(3592), - [aux_sym_cmd_identifier_token3] = ACTIONS(3592), - [aux_sym_cmd_identifier_token4] = ACTIONS(3592), - [aux_sym_cmd_identifier_token5] = ACTIONS(3592), - [aux_sym_cmd_identifier_token6] = ACTIONS(3592), - [aux_sym_cmd_identifier_token7] = ACTIONS(3592), - [aux_sym_cmd_identifier_token8] = ACTIONS(3592), - [aux_sym_cmd_identifier_token9] = ACTIONS(3592), - [aux_sym_cmd_identifier_token10] = ACTIONS(3592), - [aux_sym_cmd_identifier_token11] = ACTIONS(3592), - [aux_sym_cmd_identifier_token12] = ACTIONS(3592), - [aux_sym_cmd_identifier_token13] = ACTIONS(3592), - [aux_sym_cmd_identifier_token14] = ACTIONS(3592), - [aux_sym_cmd_identifier_token15] = ACTIONS(3592), - [aux_sym_cmd_identifier_token16] = ACTIONS(3592), - [aux_sym_cmd_identifier_token17] = ACTIONS(3592), - [aux_sym_cmd_identifier_token18] = ACTIONS(3592), - [aux_sym_cmd_identifier_token19] = ACTIONS(3592), - [aux_sym_cmd_identifier_token20] = ACTIONS(3592), - [aux_sym_cmd_identifier_token21] = ACTIONS(3592), - [aux_sym_cmd_identifier_token22] = ACTIONS(3592), - [aux_sym_cmd_identifier_token23] = ACTIONS(3592), - [aux_sym_cmd_identifier_token24] = ACTIONS(3592), - [aux_sym_cmd_identifier_token25] = ACTIONS(3592), - [aux_sym_cmd_identifier_token26] = ACTIONS(3592), - [aux_sym_cmd_identifier_token27] = ACTIONS(3592), - [aux_sym_cmd_identifier_token28] = ACTIONS(3592), - [aux_sym_cmd_identifier_token29] = ACTIONS(3592), - [aux_sym_cmd_identifier_token30] = ACTIONS(3592), - [aux_sym_cmd_identifier_token31] = ACTIONS(3592), - [aux_sym_cmd_identifier_token32] = ACTIONS(3592), - [aux_sym_cmd_identifier_token33] = ACTIONS(3592), - [aux_sym_cmd_identifier_token34] = ACTIONS(3592), - [aux_sym_cmd_identifier_token35] = ACTIONS(3592), - [aux_sym_cmd_identifier_token36] = ACTIONS(3592), - [aux_sym_cmd_identifier_token37] = ACTIONS(3592), - [aux_sym_cmd_identifier_token38] = ACTIONS(3592), - [aux_sym_cmd_identifier_token39] = ACTIONS(3592), - [aux_sym_cmd_identifier_token40] = ACTIONS(3592), - [sym__newline] = ACTIONS(3594), - [sym__space] = ACTIONS(3597), - [anon_sym_LBRACK] = ACTIONS(3592), - [anon_sym_LPAREN] = ACTIONS(3592), - [anon_sym_DOLLAR] = ACTIONS(3592), - [anon_sym_DASH2] = ACTIONS(3592), - [anon_sym_LBRACE] = ACTIONS(3592), - [anon_sym_DOT_DOT] = ACTIONS(3592), - [aux_sym_expr_unary_token1] = ACTIONS(3592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3592), - [anon_sym_DOT_DOT_LT] = ACTIONS(3592), - [anon_sym_null] = ACTIONS(3592), - [anon_sym_true] = ACTIONS(3592), - [anon_sym_false] = ACTIONS(3592), - [aux_sym__val_number_decimal_token1] = ACTIONS(3592), - [aux_sym__val_number_decimal_token2] = ACTIONS(3592), - [aux_sym__val_number_decimal_token3] = ACTIONS(3592), - [aux_sym__val_number_decimal_token4] = ACTIONS(3592), - [aux_sym__val_number_token1] = ACTIONS(3592), - [aux_sym__val_number_token2] = ACTIONS(3592), - [aux_sym__val_number_token3] = ACTIONS(3592), - [aux_sym__val_number_token4] = ACTIONS(3592), - [aux_sym__val_number_token5] = ACTIONS(3592), - [aux_sym__val_number_token6] = ACTIONS(3592), - [anon_sym_0b] = ACTIONS(3592), - [anon_sym_0o] = ACTIONS(3592), - [anon_sym_0x] = ACTIONS(3592), - [sym_val_date] = ACTIONS(3592), - [anon_sym_DQUOTE] = ACTIONS(3592), - [sym__str_single_quotes] = ACTIONS(3592), - [sym__str_back_ticks] = ACTIONS(3592), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3592), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3592), - [aux_sym_env_var_token1] = ACTIONS(3592), - [anon_sym_CARET] = ACTIONS(3592), + [1122] = { + [sym_comment] = STATE(1122), + [anon_sym_STAR_STAR] = ACTIONS(1680), + [anon_sym_PLUS_PLUS] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_SLASH] = ACTIONS(1678), + [anon_sym_mod] = ACTIONS(1680), + [anon_sym_SLASH_SLASH] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1680), + [anon_sym_bit_DASHshl] = ACTIONS(1680), + [anon_sym_bit_DASHshr] = ACTIONS(1680), + [anon_sym_EQ_TILDE] = ACTIONS(1680), + [anon_sym_BANG_TILDE] = ACTIONS(1680), + [anon_sym_bit_DASHand] = ACTIONS(1680), + [anon_sym_bit_DASHxor] = ACTIONS(1680), + [anon_sym_bit_DASHor] = ACTIONS(1680), + [anon_sym_and] = ACTIONS(1680), + [anon_sym_xor] = ACTIONS(1680), + [anon_sym_or] = ACTIONS(1680), + [anon_sym_in] = ACTIONS(1680), + [anon_sym_not_DASHin] = ACTIONS(1680), + [anon_sym_has] = ACTIONS(1680), + [anon_sym_not_DASHhas] = ACTIONS(1680), + [anon_sym_starts_DASHwith] = ACTIONS(1680), + [anon_sym_ends_DASHwith] = ACTIONS(1680), + [anon_sym_EQ_EQ] = ACTIONS(1680), + [anon_sym_BANG_EQ] = ACTIONS(1680), + [anon_sym_LT] = ACTIONS(1678), + [anon_sym_LT_EQ] = ACTIONS(1680), + [anon_sym_GT] = ACTIONS(1678), + [anon_sym_GT_EQ] = ACTIONS(1680), + [aux_sym_cmd_identifier_token41] = ACTIONS(1678), + [sym__newline] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_PIPE] = ACTIONS(1678), + [anon_sym_err_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_GT_PIPE] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1678), + [anon_sym_GT2] = ACTIONS(1678), + [anon_sym_DASH2] = ACTIONS(1678), + [anon_sym_in2] = ACTIONS(1678), + [anon_sym_STAR2] = ACTIONS(1678), + [anon_sym_and2] = ACTIONS(1678), + [anon_sym_xor2] = ACTIONS(1678), + [anon_sym_or2] = ACTIONS(1678), + [anon_sym_not_DASHin2] = ACTIONS(1678), + [anon_sym_has2] = ACTIONS(1678), + [anon_sym_not_DASHhas2] = ACTIONS(1678), + [anon_sym_starts_DASHwith2] = ACTIONS(1678), + [anon_sym_ends_DASHwith2] = ACTIONS(1678), + [anon_sym_EQ_EQ2] = ACTIONS(1678), + [anon_sym_BANG_EQ2] = ACTIONS(1678), + [anon_sym_LT2] = ACTIONS(1678), + [anon_sym_LT_EQ2] = ACTIONS(1678), + [anon_sym_GT_EQ2] = ACTIONS(1678), + [anon_sym_EQ_TILDE2] = ACTIONS(1678), + [anon_sym_BANG_TILDE2] = ACTIONS(1678), + [anon_sym_STAR_STAR2] = ACTIONS(1678), + [anon_sym_PLUS_PLUS2] = ACTIONS(1678), + [anon_sym_SLASH2] = ACTIONS(1678), + [anon_sym_mod2] = ACTIONS(1678), + [anon_sym_SLASH_SLASH2] = ACTIONS(1678), + [anon_sym_PLUS2] = ACTIONS(1678), + [anon_sym_bit_DASHshl2] = ACTIONS(1678), + [anon_sym_bit_DASHshr2] = ACTIONS(1678), + [anon_sym_bit_DASHand2] = ACTIONS(1678), + [anon_sym_bit_DASHxor2] = ACTIONS(1678), + [anon_sym_bit_DASHor2] = ACTIONS(1678), + [anon_sym_DOT_DOT2] = ACTIONS(1678), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1680), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1680), + [sym_filesize_unit] = ACTIONS(1678), + [sym_duration_unit] = ACTIONS(1680), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3600), }, - [1184] = { - [sym_comment] = STATE(1184), - [anon_sym_STAR_STAR] = ACTIONS(2572), - [anon_sym_PLUS_PLUS] = ACTIONS(2572), - [anon_sym_STAR] = ACTIONS(2574), - [anon_sym_SLASH] = ACTIONS(2574), - [anon_sym_mod] = ACTIONS(2572), - [anon_sym_SLASH_SLASH] = ACTIONS(2572), - [anon_sym_PLUS] = ACTIONS(2574), - [anon_sym_DASH] = ACTIONS(2572), - [anon_sym_bit_DASHshl] = ACTIONS(2572), - [anon_sym_bit_DASHshr] = ACTIONS(2572), - [anon_sym_EQ_TILDE] = ACTIONS(2572), - [anon_sym_BANG_TILDE] = ACTIONS(2572), - [anon_sym_bit_DASHand] = ACTIONS(2572), - [anon_sym_bit_DASHxor] = ACTIONS(2572), - [anon_sym_bit_DASHor] = ACTIONS(2572), - [anon_sym_and] = ACTIONS(2572), - [anon_sym_xor] = ACTIONS(2572), - [anon_sym_or] = ACTIONS(2572), - [anon_sym_in] = ACTIONS(2572), - [anon_sym_not_DASHin] = ACTIONS(2572), - [anon_sym_has] = ACTIONS(2572), - [anon_sym_not_DASHhas] = ACTIONS(2572), - [anon_sym_starts_DASHwith] = ACTIONS(2572), - [anon_sym_ends_DASHwith] = ACTIONS(2572), - [anon_sym_EQ_EQ] = ACTIONS(2572), - [anon_sym_BANG_EQ] = ACTIONS(2572), - [anon_sym_LT] = ACTIONS(2574), - [anon_sym_LT_EQ] = ACTIONS(2572), - [anon_sym_GT] = ACTIONS(2574), - [anon_sym_GT_EQ] = ACTIONS(2572), - [aux_sym_cmd_identifier_token41] = ACTIONS(2576), + [1123] = { + [sym_comment] = STATE(1123), + [anon_sym_STAR_STAR] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_mod] = ACTIONS(1493), + [anon_sym_SLASH_SLASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_bit_DASHshl] = ACTIONS(1493), + [anon_sym_bit_DASHshr] = ACTIONS(1493), + [anon_sym_EQ_TILDE] = ACTIONS(1493), + [anon_sym_BANG_TILDE] = ACTIONS(1493), + [anon_sym_bit_DASHand] = ACTIONS(1493), + [anon_sym_bit_DASHxor] = ACTIONS(1493), + [anon_sym_bit_DASHor] = ACTIONS(1493), + [anon_sym_and] = ACTIONS(1493), + [anon_sym_xor] = ACTIONS(1493), + [anon_sym_or] = ACTIONS(1493), + [anon_sym_in] = ACTIONS(1493), + [anon_sym_not_DASHin] = ACTIONS(1493), + [anon_sym_has] = ACTIONS(1493), + [anon_sym_not_DASHhas] = ACTIONS(1493), + [anon_sym_starts_DASHwith] = ACTIONS(1493), + [anon_sym_ends_DASHwith] = ACTIONS(1493), + [anon_sym_EQ_EQ] = ACTIONS(1493), + [anon_sym_BANG_EQ] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1493), + [aux_sym_cmd_identifier_token41] = ACTIONS(1491), + [sym__newline] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_err_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_GT_PIPE] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1491), + [anon_sym_GT2] = ACTIONS(1491), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_in2] = ACTIONS(1491), + [anon_sym_STAR2] = ACTIONS(1491), + [anon_sym_and2] = ACTIONS(1491), + [anon_sym_xor2] = ACTIONS(1491), + [anon_sym_or2] = ACTIONS(1491), + [anon_sym_not_DASHin2] = ACTIONS(1491), + [anon_sym_has2] = ACTIONS(1491), + [anon_sym_not_DASHhas2] = ACTIONS(1491), + [anon_sym_starts_DASHwith2] = ACTIONS(1491), + [anon_sym_ends_DASHwith2] = ACTIONS(1491), + [anon_sym_EQ_EQ2] = ACTIONS(1491), + [anon_sym_BANG_EQ2] = ACTIONS(1491), + [anon_sym_LT2] = ACTIONS(1491), + [anon_sym_LT_EQ2] = ACTIONS(1491), + [anon_sym_GT_EQ2] = ACTIONS(1491), + [anon_sym_EQ_TILDE2] = ACTIONS(1491), + [anon_sym_BANG_TILDE2] = ACTIONS(1491), + [anon_sym_STAR_STAR2] = ACTIONS(1491), + [anon_sym_PLUS_PLUS2] = ACTIONS(1491), + [anon_sym_SLASH2] = ACTIONS(1491), + [anon_sym_mod2] = ACTIONS(1491), + [anon_sym_SLASH_SLASH2] = ACTIONS(1491), + [anon_sym_PLUS2] = ACTIONS(1491), + [anon_sym_bit_DASHshl2] = ACTIONS(1491), + [anon_sym_bit_DASHshr2] = ACTIONS(1491), + [anon_sym_bit_DASHand2] = ACTIONS(1491), + [anon_sym_bit_DASHxor2] = ACTIONS(1491), + [anon_sym_bit_DASHor2] = ACTIONS(1491), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [sym_filesize_unit] = ACTIONS(1491), + [sym_duration_unit] = ACTIONS(1493), + [anon_sym_POUND] = ACTIONS(3), + }, + [1124] = { + [sym_comment] = STATE(1124), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1581), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_bit_DASHshl] = ACTIONS(1581), + [anon_sym_bit_DASHshr] = ACTIONS(1581), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1581), + [anon_sym_bit_DASHxor] = ACTIONS(1581), + [anon_sym_bit_DASHor] = ACTIONS(1581), + [anon_sym_and] = ACTIONS(1581), + [anon_sym_xor] = ACTIONS(1581), + [anon_sym_or] = ACTIONS(1581), + [anon_sym_in] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1581), + [anon_sym_has] = ACTIONS(1581), + [anon_sym_not_DASHhas] = ACTIONS(1581), + [anon_sym_starts_DASHwith] = ACTIONS(1581), + [anon_sym_ends_DASHwith] = ACTIONS(1581), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1581), + [aux_sym_cmd_identifier_token41] = ACTIONS(1579), [sym__newline] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), [anon_sym_PIPE] = ACTIONS(1579), [anon_sym_err_GT_PIPE] = ACTIONS(1579), [anon_sym_out_GT_PIPE] = ACTIONS(1579), @@ -194326,818 +187407,823 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1579), [anon_sym_bit_DASHxor2] = ACTIONS(1579), [anon_sym_bit_DASHor2] = ACTIONS(1579), - [anon_sym_DOT_DOT2] = ACTIONS(2546), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2548), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2548), - [sym_filesize_unit] = ACTIONS(3602), - [sym_duration_unit] = ACTIONS(3604), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [sym_filesize_unit] = ACTIONS(1579), + [sym_duration_unit] = ACTIONS(1581), [anon_sym_POUND] = ACTIONS(3), }, - [1185] = { - [sym_match_arm] = STATE(7168), - [sym_default_arm] = STATE(7168), - [sym_match_pattern] = STATE(7567), - [sym__match_pattern] = STATE(6127), - [sym__match_pattern_expression] = STATE(7169), - [sym__match_pattern_value] = STATE(7170), - [sym__match_pattern_list] = STATE(7173), - [sym__match_pattern_record] = STATE(7174), - [sym_expr_parenthesized] = STATE(5946), - [sym_val_range] = STATE(7170), - [sym__val_range] = STATE(7723), - [sym_val_nothing] = STATE(7176), - [sym_val_bool] = STATE(6722), - [sym_val_variable] = STATE(5947), - [sym_val_number] = STATE(7176), - [sym__val_number_decimal] = STATE(5407), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(7176), - [sym_val_filesize] = STATE(7176), - [sym_val_binary] = STATE(7176), - [sym_val_string] = STATE(7176), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_table] = STATE(7176), - [sym_unquoted] = STATE(7181), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1185), - [aux_sym_shebang_repeat1] = STATE(1204), - [aux_sym_ctrl_match_repeat1] = STATE(1224), - [sym__newline] = ACTIONS(3606), - [anon_sym_LBRACK] = ACTIONS(3608), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym_RBRACE] = ACTIONS(3614), - [anon_sym__] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(3618), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), - [anon_sym_DOT_DOT_LT] = ACTIONS(3620), - [anon_sym_null] = ACTIONS(3622), - [anon_sym_true] = ACTIONS(3624), - [anon_sym_false] = ACTIONS(3624), - [aux_sym__val_number_decimal_token1] = ACTIONS(3626), - [aux_sym__val_number_decimal_token2] = ACTIONS(3628), - [aux_sym__val_number_decimal_token3] = ACTIONS(3630), - [aux_sym__val_number_decimal_token4] = ACTIONS(3632), + [1125] = { + [sym_ctrl_do] = STATE(4563), + [sym_ctrl_if] = STATE(4563), + [sym_ctrl_match] = STATE(4563), + [sym_ctrl_try] = STATE(4563), + [sym__expression] = STATE(4563), + [sym_expr_unary] = STATE(2017), + [sym__expr_unary_minus] = STATE(2018), + [sym_expr_binary] = STATE(2017), + [sym__expr_binary_expression] = STATE(3669), + [sym_expr_parenthesized] = STATE(1628), + [sym_val_range] = STATE(2017), + [sym__value] = STATE(2017), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(1992), + [sym_val_variable] = STATE(1585), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(2848), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_comment] = STATE(1125), + [sym__newline] = ACTIONS(3320), + [anon_sym_PIPE] = ACTIONS(3320), + [anon_sym_err_GT_PIPE] = ACTIONS(3320), + [anon_sym_out_GT_PIPE] = ACTIONS(3320), + [anon_sym_e_GT_PIPE] = ACTIONS(3320), + [anon_sym_o_GT_PIPE] = ACTIONS(3320), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3320), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3320), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3320), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3320), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(1012), + [anon_sym_DASH2] = ACTIONS(375), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3520), + [anon_sym_match] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(181), + [anon_sym_DOT_DOT] = ACTIONS(185), + [anon_sym_try] = ACTIONS(3328), + [aux_sym_expr_unary_token1] = ACTIONS(201), + [anon_sym_DOT_DOT_EQ] = ACTIONS(207), + [anon_sym_DOT_DOT_LT] = ACTIONS(207), + [anon_sym_null] = ACTIONS(3330), + [anon_sym_true] = ACTIONS(3332), + [anon_sym_false] = ACTIONS(3332), + [aux_sym__val_number_decimal_token1] = ACTIONS(3334), + [aux_sym__val_number_decimal_token2] = ACTIONS(3336), + [aux_sym__val_number_decimal_token3] = ACTIONS(3338), + [aux_sym__val_number_decimal_token4] = ACTIONS(3340), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3634), - [aux_sym__val_number_token5] = ACTIONS(3634), - [aux_sym__val_number_token6] = ACTIONS(3634), + [aux_sym__val_number_token4] = ACTIONS(223), + [aux_sym__val_number_token5] = ACTIONS(223), + [aux_sym__val_number_token6] = ACTIONS(223), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3636), + [sym_val_date] = ACTIONS(231), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1186] = { - [sym_comment] = STATE(1186), - [anon_sym_STAR_STAR] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_mod] = ACTIONS(1540), - [anon_sym_SLASH_SLASH] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_bit_DASHshl] = ACTIONS(1540), - [anon_sym_bit_DASHshr] = ACTIONS(1540), - [anon_sym_EQ_TILDE] = ACTIONS(1540), - [anon_sym_BANG_TILDE] = ACTIONS(1540), - [anon_sym_bit_DASHand] = ACTIONS(1540), - [anon_sym_bit_DASHxor] = ACTIONS(1540), - [anon_sym_bit_DASHor] = ACTIONS(1540), - [anon_sym_and] = ACTIONS(1540), - [anon_sym_xor] = ACTIONS(1540), - [anon_sym_or] = ACTIONS(1540), - [anon_sym_in] = ACTIONS(1540), - [anon_sym_not_DASHin] = ACTIONS(1540), - [anon_sym_has] = ACTIONS(1540), - [anon_sym_not_DASHhas] = ACTIONS(1540), - [anon_sym_starts_DASHwith] = ACTIONS(1540), - [anon_sym_ends_DASHwith] = ACTIONS(1540), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1538), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1540), - [aux_sym_cmd_identifier_token41] = ACTIONS(1538), - [sym__newline] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_err_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_GT_PIPE] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), - [anon_sym_GT2] = ACTIONS(1538), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_in2] = ACTIONS(1538), - [anon_sym_STAR2] = ACTIONS(1538), - [anon_sym_and2] = ACTIONS(1538), - [anon_sym_xor2] = ACTIONS(1538), - [anon_sym_or2] = ACTIONS(1538), - [anon_sym_not_DASHin2] = ACTIONS(1538), - [anon_sym_has2] = ACTIONS(1538), - [anon_sym_not_DASHhas2] = ACTIONS(1538), - [anon_sym_starts_DASHwith2] = ACTIONS(1538), - [anon_sym_ends_DASHwith2] = ACTIONS(1538), - [anon_sym_EQ_EQ2] = ACTIONS(1538), - [anon_sym_BANG_EQ2] = ACTIONS(1538), - [anon_sym_LT2] = ACTIONS(1538), - [anon_sym_LT_EQ2] = ACTIONS(1538), - [anon_sym_GT_EQ2] = ACTIONS(1538), - [anon_sym_EQ_TILDE2] = ACTIONS(1538), - [anon_sym_BANG_TILDE2] = ACTIONS(1538), - [anon_sym_STAR_STAR2] = ACTIONS(1538), - [anon_sym_PLUS_PLUS2] = ACTIONS(1538), - [anon_sym_SLASH2] = ACTIONS(1538), - [anon_sym_mod2] = ACTIONS(1538), - [anon_sym_SLASH_SLASH2] = ACTIONS(1538), - [anon_sym_PLUS2] = ACTIONS(1538), - [anon_sym_bit_DASHshl2] = ACTIONS(1538), - [anon_sym_bit_DASHshr2] = ACTIONS(1538), - [anon_sym_bit_DASHand2] = ACTIONS(1538), - [anon_sym_bit_DASHxor2] = ACTIONS(1538), - [anon_sym_bit_DASHor2] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1540), + [1126] = { + [sym_comment] = STATE(1126), + [anon_sym_STAR_STAR] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(2570), + [anon_sym_SLASH] = ACTIONS(2570), + [anon_sym_mod] = ACTIONS(2568), + [anon_sym_SLASH_SLASH] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_bit_DASHshl] = ACTIONS(2568), + [anon_sym_bit_DASHshr] = ACTIONS(2568), + [anon_sym_EQ_TILDE] = ACTIONS(2568), + [anon_sym_BANG_TILDE] = ACTIONS(2568), + [anon_sym_bit_DASHand] = ACTIONS(2568), + [anon_sym_bit_DASHxor] = ACTIONS(2568), + [anon_sym_bit_DASHor] = ACTIONS(2568), + [anon_sym_and] = ACTIONS(2568), + [anon_sym_xor] = ACTIONS(2568), + [anon_sym_or] = ACTIONS(2568), + [anon_sym_in] = ACTIONS(2568), + [anon_sym_not_DASHin] = ACTIONS(2568), + [anon_sym_has] = ACTIONS(2568), + [anon_sym_not_DASHhas] = ACTIONS(2568), + [anon_sym_starts_DASHwith] = ACTIONS(2568), + [anon_sym_ends_DASHwith] = ACTIONS(2568), + [anon_sym_EQ_EQ] = ACTIONS(2568), + [anon_sym_BANG_EQ] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_LT_EQ] = ACTIONS(2568), + [anon_sym_GT] = ACTIONS(2570), + [anon_sym_GT_EQ] = ACTIONS(2568), + [aux_sym_cmd_identifier_token41] = ACTIONS(2572), + [sym__newline] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1616), + [anon_sym_err_GT_PIPE] = ACTIONS(1616), + [anon_sym_out_GT_PIPE] = ACTIONS(1616), + [anon_sym_e_GT_PIPE] = ACTIONS(1616), + [anon_sym_o_GT_PIPE] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1616), + [anon_sym_GT2] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_in2] = ACTIONS(1616), + [anon_sym_STAR2] = ACTIONS(1616), + [anon_sym_and2] = ACTIONS(1616), + [anon_sym_xor2] = ACTIONS(1616), + [anon_sym_or2] = ACTIONS(1616), + [anon_sym_not_DASHin2] = ACTIONS(1616), + [anon_sym_has2] = ACTIONS(1616), + [anon_sym_not_DASHhas2] = ACTIONS(1616), + [anon_sym_starts_DASHwith2] = ACTIONS(1616), + [anon_sym_ends_DASHwith2] = ACTIONS(1616), + [anon_sym_EQ_EQ2] = ACTIONS(1616), + [anon_sym_BANG_EQ2] = ACTIONS(1616), + [anon_sym_LT2] = ACTIONS(1616), + [anon_sym_LT_EQ2] = ACTIONS(1616), + [anon_sym_GT_EQ2] = ACTIONS(1616), + [anon_sym_EQ_TILDE2] = ACTIONS(1616), + [anon_sym_BANG_TILDE2] = ACTIONS(1616), + [anon_sym_STAR_STAR2] = ACTIONS(1616), + [anon_sym_PLUS_PLUS2] = ACTIONS(1616), + [anon_sym_SLASH2] = ACTIONS(1616), + [anon_sym_mod2] = ACTIONS(1616), + [anon_sym_SLASH_SLASH2] = ACTIONS(1616), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_bit_DASHshl2] = ACTIONS(1616), + [anon_sym_bit_DASHshr2] = ACTIONS(1616), + [anon_sym_bit_DASHand2] = ACTIONS(1616), + [anon_sym_bit_DASHxor2] = ACTIONS(1616), + [anon_sym_bit_DASHor2] = ACTIONS(1616), + [anon_sym_DOT_DOT2] = ACTIONS(2548), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2550), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2550), + [sym_filesize_unit] = ACTIONS(3522), + [sym_duration_unit] = ACTIONS(3524), [anon_sym_POUND] = ACTIONS(3), }, - [1187] = { - [sym_comment] = STATE(1187), - [anon_sym_STAR_STAR] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_STAR] = ACTIONS(1715), - [anon_sym_SLASH] = ACTIONS(1715), - [anon_sym_mod] = ACTIONS(1717), - [anon_sym_SLASH_SLASH] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1715), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_bit_DASHshl] = ACTIONS(1717), - [anon_sym_bit_DASHshr] = ACTIONS(1717), - [anon_sym_EQ_TILDE] = ACTIONS(1717), - [anon_sym_BANG_TILDE] = ACTIONS(1717), - [anon_sym_bit_DASHand] = ACTIONS(1717), - [anon_sym_bit_DASHxor] = ACTIONS(1717), - [anon_sym_bit_DASHor] = ACTIONS(1717), - [anon_sym_and] = ACTIONS(1717), - [anon_sym_xor] = ACTIONS(1717), - [anon_sym_or] = ACTIONS(1717), - [anon_sym_in] = ACTIONS(1717), - [anon_sym_not_DASHin] = ACTIONS(1717), - [anon_sym_has] = ACTIONS(1717), - [anon_sym_not_DASHhas] = ACTIONS(1717), - [anon_sym_starts_DASHwith] = ACTIONS(1717), - [anon_sym_ends_DASHwith] = ACTIONS(1717), - [anon_sym_EQ_EQ] = ACTIONS(1717), - [anon_sym_BANG_EQ] = ACTIONS(1717), - [anon_sym_LT] = ACTIONS(1715), - [anon_sym_LT_EQ] = ACTIONS(1717), - [anon_sym_GT] = ACTIONS(1715), - [anon_sym_GT_EQ] = ACTIONS(1717), - [aux_sym_cmd_identifier_token41] = ACTIONS(1715), - [sym__newline] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_err_GT_PIPE] = ACTIONS(1715), - [anon_sym_out_GT_PIPE] = ACTIONS(1715), - [anon_sym_e_GT_PIPE] = ACTIONS(1715), - [anon_sym_o_GT_PIPE] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1715), - [anon_sym_GT2] = ACTIONS(1715), - [anon_sym_DASH2] = ACTIONS(1715), - [anon_sym_in2] = ACTIONS(1715), - [anon_sym_STAR2] = ACTIONS(1715), - [anon_sym_and2] = ACTIONS(1715), - [anon_sym_xor2] = ACTIONS(1715), - [anon_sym_or2] = ACTIONS(1715), - [anon_sym_not_DASHin2] = ACTIONS(1715), - [anon_sym_has2] = ACTIONS(1715), - [anon_sym_not_DASHhas2] = ACTIONS(1715), - [anon_sym_starts_DASHwith2] = ACTIONS(1715), - [anon_sym_ends_DASHwith2] = ACTIONS(1715), - [anon_sym_EQ_EQ2] = ACTIONS(1715), - [anon_sym_BANG_EQ2] = ACTIONS(1715), - [anon_sym_LT2] = ACTIONS(1715), - [anon_sym_LT_EQ2] = ACTIONS(1715), - [anon_sym_GT_EQ2] = ACTIONS(1715), - [anon_sym_EQ_TILDE2] = ACTIONS(1715), - [anon_sym_BANG_TILDE2] = ACTIONS(1715), - [anon_sym_STAR_STAR2] = ACTIONS(1715), - [anon_sym_PLUS_PLUS2] = ACTIONS(1715), - [anon_sym_SLASH2] = ACTIONS(1715), - [anon_sym_mod2] = ACTIONS(1715), - [anon_sym_SLASH_SLASH2] = ACTIONS(1715), - [anon_sym_PLUS2] = ACTIONS(1715), - [anon_sym_bit_DASHshl2] = ACTIONS(1715), - [anon_sym_bit_DASHshr2] = ACTIONS(1715), - [anon_sym_bit_DASHand2] = ACTIONS(1715), - [anon_sym_bit_DASHxor2] = ACTIONS(1715), - [anon_sym_bit_DASHor2] = ACTIONS(1715), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [sym_filesize_unit] = ACTIONS(1715), - [sym_duration_unit] = ACTIONS(1717), + [1127] = { + [sym_comment] = STATE(1127), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(3502), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), [anon_sym_POUND] = ACTIONS(3), }, - [1188] = { - [sym_comment] = STATE(1188), - [anon_sym_STAR_STAR] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_bit_DASHshl] = ACTIONS(1494), - [anon_sym_bit_DASHshr] = ACTIONS(1494), - [anon_sym_EQ_TILDE] = ACTIONS(1494), - [anon_sym_BANG_TILDE] = ACTIONS(1494), - [anon_sym_bit_DASHand] = ACTIONS(1494), - [anon_sym_bit_DASHxor] = ACTIONS(1494), - [anon_sym_bit_DASHor] = ACTIONS(1494), - [anon_sym_and] = ACTIONS(1494), - [anon_sym_xor] = ACTIONS(1494), - [anon_sym_or] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [anon_sym_not_DASHin] = ACTIONS(1494), - [anon_sym_has] = ACTIONS(1494), - [anon_sym_not_DASHhas] = ACTIONS(1494), - [anon_sym_starts_DASHwith] = ACTIONS(1494), - [anon_sym_ends_DASHwith] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1494), - [aux_sym_cmd_identifier_token41] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_in2] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), + [1128] = { + [sym_comment] = STATE(1128), + [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1130), + [aux_sym_cmd_identifier_token1] = ACTIONS(3526), + [aux_sym_cmd_identifier_token2] = ACTIONS(3526), + [aux_sym_cmd_identifier_token3] = ACTIONS(3526), + [aux_sym_cmd_identifier_token4] = ACTIONS(3526), + [aux_sym_cmd_identifier_token5] = ACTIONS(3526), + [aux_sym_cmd_identifier_token6] = ACTIONS(3526), + [aux_sym_cmd_identifier_token7] = ACTIONS(3526), + [aux_sym_cmd_identifier_token8] = ACTIONS(3526), + [aux_sym_cmd_identifier_token9] = ACTIONS(3526), + [aux_sym_cmd_identifier_token10] = ACTIONS(3526), + [aux_sym_cmd_identifier_token11] = ACTIONS(3526), + [aux_sym_cmd_identifier_token12] = ACTIONS(3526), + [aux_sym_cmd_identifier_token13] = ACTIONS(3526), + [aux_sym_cmd_identifier_token14] = ACTIONS(3526), + [aux_sym_cmd_identifier_token15] = ACTIONS(3526), + [aux_sym_cmd_identifier_token16] = ACTIONS(3526), + [aux_sym_cmd_identifier_token17] = ACTIONS(3526), + [aux_sym_cmd_identifier_token18] = ACTIONS(3526), + [aux_sym_cmd_identifier_token19] = ACTIONS(3526), + [aux_sym_cmd_identifier_token20] = ACTIONS(3526), + [aux_sym_cmd_identifier_token21] = ACTIONS(3526), + [aux_sym_cmd_identifier_token22] = ACTIONS(3526), + [aux_sym_cmd_identifier_token23] = ACTIONS(3526), + [aux_sym_cmd_identifier_token24] = ACTIONS(3526), + [aux_sym_cmd_identifier_token25] = ACTIONS(3526), + [aux_sym_cmd_identifier_token26] = ACTIONS(3526), + [aux_sym_cmd_identifier_token27] = ACTIONS(3526), + [aux_sym_cmd_identifier_token28] = ACTIONS(3526), + [aux_sym_cmd_identifier_token29] = ACTIONS(3526), + [aux_sym_cmd_identifier_token30] = ACTIONS(3526), + [aux_sym_cmd_identifier_token31] = ACTIONS(3526), + [aux_sym_cmd_identifier_token32] = ACTIONS(3526), + [aux_sym_cmd_identifier_token33] = ACTIONS(3526), + [aux_sym_cmd_identifier_token34] = ACTIONS(3526), + [aux_sym_cmd_identifier_token35] = ACTIONS(3526), + [aux_sym_cmd_identifier_token36] = ACTIONS(3526), + [aux_sym_cmd_identifier_token37] = ACTIONS(3526), + [aux_sym_cmd_identifier_token38] = ACTIONS(3526), + [aux_sym_cmd_identifier_token39] = ACTIONS(3526), + [aux_sym_cmd_identifier_token40] = ACTIONS(3526), + [sym__newline] = ACTIONS(3528), + [sym__space] = ACTIONS(3530), + [anon_sym_LBRACK] = ACTIONS(3526), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_DOLLAR] = ACTIONS(3526), + [anon_sym_DASH2] = ACTIONS(3526), + [anon_sym_LBRACE] = ACTIONS(3526), + [anon_sym_DOT_DOT] = ACTIONS(3526), + [aux_sym_expr_unary_token1] = ACTIONS(3526), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3526), + [anon_sym_DOT_DOT_LT] = ACTIONS(3526), + [anon_sym_null] = ACTIONS(3526), + [anon_sym_true] = ACTIONS(3526), + [anon_sym_false] = ACTIONS(3526), + [aux_sym__val_number_decimal_token1] = ACTIONS(3526), + [aux_sym__val_number_decimal_token2] = ACTIONS(3526), + [aux_sym__val_number_decimal_token3] = ACTIONS(3526), + [aux_sym__val_number_decimal_token4] = ACTIONS(3526), + [aux_sym__val_number_token1] = ACTIONS(3526), + [aux_sym__val_number_token2] = ACTIONS(3526), + [aux_sym__val_number_token3] = ACTIONS(3526), + [aux_sym__val_number_token4] = ACTIONS(3526), + [aux_sym__val_number_token5] = ACTIONS(3526), + [aux_sym__val_number_token6] = ACTIONS(3526), + [anon_sym_0b] = ACTIONS(3526), + [anon_sym_0o] = ACTIONS(3526), + [anon_sym_0x] = ACTIONS(3526), + [sym_val_date] = ACTIONS(3526), + [anon_sym_DQUOTE] = ACTIONS(3526), + [sym__str_single_quotes] = ACTIONS(3526), + [sym__str_back_ticks] = ACTIONS(3526), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3526), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3526), + [aux_sym_env_var_token1] = ACTIONS(3526), + [anon_sym_CARET] = ACTIONS(3526), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3532), }, - [1189] = { - [sym_comment] = STATE(1189), - [aux_sym_cmd_identifier_token1] = ACTIONS(2180), - [aux_sym_cmd_identifier_token2] = ACTIONS(2180), - [aux_sym_cmd_identifier_token3] = ACTIONS(2180), - [aux_sym_cmd_identifier_token4] = ACTIONS(2180), - [aux_sym_cmd_identifier_token5] = ACTIONS(2180), - [aux_sym_cmd_identifier_token6] = ACTIONS(2180), - [aux_sym_cmd_identifier_token7] = ACTIONS(2180), - [aux_sym_cmd_identifier_token8] = ACTIONS(2180), - [aux_sym_cmd_identifier_token9] = ACTIONS(2180), - [aux_sym_cmd_identifier_token10] = ACTIONS(2180), - [aux_sym_cmd_identifier_token11] = ACTIONS(2180), - [aux_sym_cmd_identifier_token12] = ACTIONS(2180), - [aux_sym_cmd_identifier_token13] = ACTIONS(2180), - [aux_sym_cmd_identifier_token14] = ACTIONS(2180), - [aux_sym_cmd_identifier_token15] = ACTIONS(2180), - [aux_sym_cmd_identifier_token16] = ACTIONS(2180), - [aux_sym_cmd_identifier_token17] = ACTIONS(2180), - [aux_sym_cmd_identifier_token18] = ACTIONS(2180), - [aux_sym_cmd_identifier_token19] = ACTIONS(2180), - [aux_sym_cmd_identifier_token20] = ACTIONS(2180), - [aux_sym_cmd_identifier_token21] = ACTIONS(2180), - [aux_sym_cmd_identifier_token22] = ACTIONS(2180), - [aux_sym_cmd_identifier_token23] = ACTIONS(2180), - [aux_sym_cmd_identifier_token24] = ACTIONS(2180), - [aux_sym_cmd_identifier_token25] = ACTIONS(2180), - [aux_sym_cmd_identifier_token26] = ACTIONS(2180), - [aux_sym_cmd_identifier_token27] = ACTIONS(2180), - [aux_sym_cmd_identifier_token28] = ACTIONS(2180), - [aux_sym_cmd_identifier_token29] = ACTIONS(2180), - [aux_sym_cmd_identifier_token30] = ACTIONS(2180), - [aux_sym_cmd_identifier_token31] = ACTIONS(2180), - [aux_sym_cmd_identifier_token32] = ACTIONS(2180), - [aux_sym_cmd_identifier_token33] = ACTIONS(2180), - [aux_sym_cmd_identifier_token34] = ACTIONS(2180), - [aux_sym_cmd_identifier_token35] = ACTIONS(2180), - [aux_sym_cmd_identifier_token36] = ACTIONS(2180), - [aux_sym_cmd_identifier_token37] = ACTIONS(2180), - [aux_sym_cmd_identifier_token38] = ACTIONS(2180), - [aux_sym_cmd_identifier_token39] = ACTIONS(2180), - [aux_sym_cmd_identifier_token40] = ACTIONS(2180), - [sym__newline] = ACTIONS(2180), - [sym__space] = ACTIONS(3638), - [anon_sym_LBRACK] = ACTIONS(2180), - [anon_sym_LPAREN] = ACTIONS(2180), - [anon_sym_DOLLAR] = ACTIONS(2180), - [anon_sym_DASH2] = ACTIONS(2180), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(2180), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2180), - [anon_sym_DOT_DOT_LT] = ACTIONS(2180), - [anon_sym_null] = ACTIONS(2180), - [anon_sym_true] = ACTIONS(2180), - [anon_sym_false] = ACTIONS(2180), - [aux_sym__val_number_decimal_token1] = ACTIONS(2180), - [aux_sym__val_number_decimal_token2] = ACTIONS(2180), - [aux_sym__val_number_decimal_token3] = ACTIONS(2180), - [aux_sym__val_number_decimal_token4] = ACTIONS(2180), - [aux_sym__val_number_token1] = ACTIONS(2180), - [aux_sym__val_number_token2] = ACTIONS(2180), - [aux_sym__val_number_token3] = ACTIONS(2180), - [aux_sym__val_number_token4] = ACTIONS(2180), - [aux_sym__val_number_token5] = ACTIONS(2180), - [aux_sym__val_number_token6] = ACTIONS(2180), - [anon_sym_0b] = ACTIONS(2180), - [anon_sym_0o] = ACTIONS(2180), - [anon_sym_0x] = ACTIONS(2180), - [sym_val_date] = ACTIONS(2180), - [anon_sym_DQUOTE] = ACTIONS(2180), - [sym__str_single_quotes] = ACTIONS(2180), - [sym__str_back_ticks] = ACTIONS(2180), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2180), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2180), - [aux_sym_env_var_token1] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), + [1129] = { + [sym_comment] = STATE(1129), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1581), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_bit_DASHshl] = ACTIONS(1581), + [anon_sym_bit_DASHshr] = ACTIONS(1581), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1581), + [anon_sym_bit_DASHxor] = ACTIONS(1581), + [anon_sym_bit_DASHor] = ACTIONS(1581), + [anon_sym_and] = ACTIONS(1581), + [anon_sym_xor] = ACTIONS(1581), + [anon_sym_or] = ACTIONS(1581), + [anon_sym_in] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1581), + [anon_sym_has] = ACTIONS(1581), + [anon_sym_not_DASHhas] = ACTIONS(1581), + [anon_sym_starts_DASHwith] = ACTIONS(1581), + [anon_sym_ends_DASHwith] = ACTIONS(1581), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1581), + [aux_sym_cmd_identifier_token41] = ACTIONS(1579), + [sym__newline] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_err_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_GT_PIPE] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), + [anon_sym_GT2] = ACTIONS(1579), + [anon_sym_DASH2] = ACTIONS(1579), + [anon_sym_in2] = ACTIONS(1579), + [anon_sym_STAR2] = ACTIONS(1579), + [anon_sym_and2] = ACTIONS(1579), + [anon_sym_xor2] = ACTIONS(1579), + [anon_sym_or2] = ACTIONS(1579), + [anon_sym_not_DASHin2] = ACTIONS(1579), + [anon_sym_has2] = ACTIONS(1579), + [anon_sym_not_DASHhas2] = ACTIONS(1579), + [anon_sym_starts_DASHwith2] = ACTIONS(1579), + [anon_sym_ends_DASHwith2] = ACTIONS(1579), + [anon_sym_EQ_EQ2] = ACTIONS(1579), + [anon_sym_BANG_EQ2] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ2] = ACTIONS(1579), + [anon_sym_GT_EQ2] = ACTIONS(1579), + [anon_sym_EQ_TILDE2] = ACTIONS(1579), + [anon_sym_BANG_TILDE2] = ACTIONS(1579), + [anon_sym_STAR_STAR2] = ACTIONS(1579), + [anon_sym_PLUS_PLUS2] = ACTIONS(1579), + [anon_sym_SLASH2] = ACTIONS(1579), + [anon_sym_mod2] = ACTIONS(1579), + [anon_sym_SLASH_SLASH2] = ACTIONS(1579), + [anon_sym_PLUS2] = ACTIONS(1579), + [anon_sym_bit_DASHshl2] = ACTIONS(1579), + [anon_sym_bit_DASHshr2] = ACTIONS(1579), + [anon_sym_bit_DASHand2] = ACTIONS(1579), + [anon_sym_bit_DASHxor2] = ACTIONS(1579), + [anon_sym_bit_DASHor2] = ACTIONS(1579), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [aux_sym__immediate_decimal_token2] = ACTIONS(3534), + [sym_filesize_unit] = ACTIONS(1579), + [sym_duration_unit] = ACTIONS(1581), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3638), }, - [1190] = { - [sym_env_var] = STATE(7534), - [sym_comment] = STATE(1190), - [aux_sym_pipe_element_repeat2] = STATE(1190), - [aux_sym_cmd_identifier_token1] = ACTIONS(3640), - [aux_sym_cmd_identifier_token2] = ACTIONS(3642), - [aux_sym_cmd_identifier_token3] = ACTIONS(3642), - [aux_sym_cmd_identifier_token4] = ACTIONS(3642), - [aux_sym_cmd_identifier_token5] = ACTIONS(3642), - [aux_sym_cmd_identifier_token6] = ACTIONS(3642), - [aux_sym_cmd_identifier_token7] = ACTIONS(3642), - [aux_sym_cmd_identifier_token8] = ACTIONS(3642), - [aux_sym_cmd_identifier_token9] = ACTIONS(3640), - [aux_sym_cmd_identifier_token10] = ACTIONS(3642), - [aux_sym_cmd_identifier_token11] = ACTIONS(3642), - [aux_sym_cmd_identifier_token12] = ACTIONS(3642), - [aux_sym_cmd_identifier_token13] = ACTIONS(3640), - [aux_sym_cmd_identifier_token14] = ACTIONS(3642), - [aux_sym_cmd_identifier_token15] = ACTIONS(3640), - [aux_sym_cmd_identifier_token16] = ACTIONS(3642), - [aux_sym_cmd_identifier_token17] = ACTIONS(3642), - [aux_sym_cmd_identifier_token18] = ACTIONS(3642), - [aux_sym_cmd_identifier_token19] = ACTIONS(3642), - [aux_sym_cmd_identifier_token20] = ACTIONS(3642), - [aux_sym_cmd_identifier_token21] = ACTIONS(3642), - [aux_sym_cmd_identifier_token22] = ACTIONS(3642), - [aux_sym_cmd_identifier_token23] = ACTIONS(3642), - [aux_sym_cmd_identifier_token24] = ACTIONS(3642), - [aux_sym_cmd_identifier_token25] = ACTIONS(3642), - [aux_sym_cmd_identifier_token26] = ACTIONS(3642), - [aux_sym_cmd_identifier_token27] = ACTIONS(3642), - [aux_sym_cmd_identifier_token28] = ACTIONS(3642), - [aux_sym_cmd_identifier_token29] = ACTIONS(3642), - [aux_sym_cmd_identifier_token30] = ACTIONS(3642), - [aux_sym_cmd_identifier_token31] = ACTIONS(3642), - [aux_sym_cmd_identifier_token32] = ACTIONS(3642), - [aux_sym_cmd_identifier_token33] = ACTIONS(3642), - [aux_sym_cmd_identifier_token34] = ACTIONS(3640), - [aux_sym_cmd_identifier_token35] = ACTIONS(3642), - [aux_sym_cmd_identifier_token36] = ACTIONS(3642), - [aux_sym_cmd_identifier_token37] = ACTIONS(3642), - [aux_sym_cmd_identifier_token38] = ACTIONS(3640), - [aux_sym_cmd_identifier_token39] = ACTIONS(3642), - [aux_sym_cmd_identifier_token40] = ACTIONS(3642), - [anon_sym_LBRACK] = ACTIONS(3642), - [anon_sym_LPAREN] = ACTIONS(3642), - [anon_sym_DOLLAR] = ACTIONS(3640), - [anon_sym_DASH2] = ACTIONS(3640), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_DOT_DOT] = ACTIONS(3640), - [aux_sym_expr_unary_token1] = ACTIONS(3642), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3642), - [anon_sym_DOT_DOT_LT] = ACTIONS(3642), - [anon_sym_null] = ACTIONS(3640), - [anon_sym_true] = ACTIONS(3640), - [anon_sym_false] = ACTIONS(3640), - [aux_sym__val_number_decimal_token1] = ACTIONS(3640), - [aux_sym__val_number_decimal_token2] = ACTIONS(3642), - [aux_sym__val_number_decimal_token3] = ACTIONS(3642), - [aux_sym__val_number_decimal_token4] = ACTIONS(3642), - [aux_sym__val_number_token1] = ACTIONS(3642), - [aux_sym__val_number_token2] = ACTIONS(3642), - [aux_sym__val_number_token3] = ACTIONS(3642), - [aux_sym__val_number_token4] = ACTIONS(3640), - [aux_sym__val_number_token5] = ACTIONS(3640), - [aux_sym__val_number_token6] = ACTIONS(3640), - [anon_sym_0b] = ACTIONS(3640), - [anon_sym_0o] = ACTIONS(3640), - [anon_sym_0x] = ACTIONS(3640), - [sym_val_date] = ACTIONS(3642), - [anon_sym_DQUOTE] = ACTIONS(3642), - [sym__str_single_quotes] = ACTIONS(3642), - [sym__str_back_ticks] = ACTIONS(3642), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3642), - [aux_sym_env_var_token1] = ACTIONS(3644), - [anon_sym_CARET] = ACTIONS(3642), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3642), + [1130] = { + [sym_comment] = STATE(1130), + [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1130), + [aux_sym_cmd_identifier_token1] = ACTIONS(3536), + [aux_sym_cmd_identifier_token2] = ACTIONS(3536), + [aux_sym_cmd_identifier_token3] = ACTIONS(3536), + [aux_sym_cmd_identifier_token4] = ACTIONS(3536), + [aux_sym_cmd_identifier_token5] = ACTIONS(3536), + [aux_sym_cmd_identifier_token6] = ACTIONS(3536), + [aux_sym_cmd_identifier_token7] = ACTIONS(3536), + [aux_sym_cmd_identifier_token8] = ACTIONS(3536), + [aux_sym_cmd_identifier_token9] = ACTIONS(3536), + [aux_sym_cmd_identifier_token10] = ACTIONS(3536), + [aux_sym_cmd_identifier_token11] = ACTIONS(3536), + [aux_sym_cmd_identifier_token12] = ACTIONS(3536), + [aux_sym_cmd_identifier_token13] = ACTIONS(3536), + [aux_sym_cmd_identifier_token14] = ACTIONS(3536), + [aux_sym_cmd_identifier_token15] = ACTIONS(3536), + [aux_sym_cmd_identifier_token16] = ACTIONS(3536), + [aux_sym_cmd_identifier_token17] = ACTIONS(3536), + [aux_sym_cmd_identifier_token18] = ACTIONS(3536), + [aux_sym_cmd_identifier_token19] = ACTIONS(3536), + [aux_sym_cmd_identifier_token20] = ACTIONS(3536), + [aux_sym_cmd_identifier_token21] = ACTIONS(3536), + [aux_sym_cmd_identifier_token22] = ACTIONS(3536), + [aux_sym_cmd_identifier_token23] = ACTIONS(3536), + [aux_sym_cmd_identifier_token24] = ACTIONS(3536), + [aux_sym_cmd_identifier_token25] = ACTIONS(3536), + [aux_sym_cmd_identifier_token26] = ACTIONS(3536), + [aux_sym_cmd_identifier_token27] = ACTIONS(3536), + [aux_sym_cmd_identifier_token28] = ACTIONS(3536), + [aux_sym_cmd_identifier_token29] = ACTIONS(3536), + [aux_sym_cmd_identifier_token30] = ACTIONS(3536), + [aux_sym_cmd_identifier_token31] = ACTIONS(3536), + [aux_sym_cmd_identifier_token32] = ACTIONS(3536), + [aux_sym_cmd_identifier_token33] = ACTIONS(3536), + [aux_sym_cmd_identifier_token34] = ACTIONS(3536), + [aux_sym_cmd_identifier_token35] = ACTIONS(3536), + [aux_sym_cmd_identifier_token36] = ACTIONS(3536), + [aux_sym_cmd_identifier_token37] = ACTIONS(3536), + [aux_sym_cmd_identifier_token38] = ACTIONS(3536), + [aux_sym_cmd_identifier_token39] = ACTIONS(3536), + [aux_sym_cmd_identifier_token40] = ACTIONS(3536), + [sym__newline] = ACTIONS(3538), + [sym__space] = ACTIONS(3541), + [anon_sym_LBRACK] = ACTIONS(3536), + [anon_sym_LPAREN] = ACTIONS(3536), + [anon_sym_DOLLAR] = ACTIONS(3536), + [anon_sym_DASH2] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym_DOT_DOT] = ACTIONS(3536), + [aux_sym_expr_unary_token1] = ACTIONS(3536), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3536), + [anon_sym_DOT_DOT_LT] = ACTIONS(3536), + [anon_sym_null] = ACTIONS(3536), + [anon_sym_true] = ACTIONS(3536), + [anon_sym_false] = ACTIONS(3536), + [aux_sym__val_number_decimal_token1] = ACTIONS(3536), + [aux_sym__val_number_decimal_token2] = ACTIONS(3536), + [aux_sym__val_number_decimal_token3] = ACTIONS(3536), + [aux_sym__val_number_decimal_token4] = ACTIONS(3536), + [aux_sym__val_number_token1] = ACTIONS(3536), + [aux_sym__val_number_token2] = ACTIONS(3536), + [aux_sym__val_number_token3] = ACTIONS(3536), + [aux_sym__val_number_token4] = ACTIONS(3536), + [aux_sym__val_number_token5] = ACTIONS(3536), + [aux_sym__val_number_token6] = ACTIONS(3536), + [anon_sym_0b] = ACTIONS(3536), + [anon_sym_0o] = ACTIONS(3536), + [anon_sym_0x] = ACTIONS(3536), + [sym_val_date] = ACTIONS(3536), + [anon_sym_DQUOTE] = ACTIONS(3536), + [sym__str_single_quotes] = ACTIONS(3536), + [sym__str_back_ticks] = ACTIONS(3536), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3536), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3536), + [aux_sym_env_var_token1] = ACTIONS(3536), + [anon_sym_CARET] = ACTIONS(3536), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3544), }, - [1191] = { - [sym_match_arm] = STATE(7186), - [sym_default_arm] = STATE(7186), - [sym_match_pattern] = STATE(7567), - [sym__match_pattern] = STATE(6127), - [sym__match_pattern_expression] = STATE(7169), - [sym__match_pattern_value] = STATE(7170), - [sym__match_pattern_list] = STATE(7173), - [sym__match_pattern_record] = STATE(7174), - [sym_expr_parenthesized] = STATE(5946), - [sym_val_range] = STATE(7170), - [sym__val_range] = STATE(7723), - [sym_val_nothing] = STATE(7176), - [sym_val_bool] = STATE(6722), - [sym_val_variable] = STATE(5947), - [sym_val_number] = STATE(7176), - [sym__val_number_decimal] = STATE(5407), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(7176), - [sym_val_filesize] = STATE(7176), - [sym_val_binary] = STATE(7176), - [sym_val_string] = STATE(7176), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_table] = STATE(7176), - [sym_unquoted] = STATE(7181), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1191), - [aux_sym_shebang_repeat1] = STATE(1207), - [aux_sym_ctrl_match_repeat1] = STATE(1218), - [sym__newline] = ACTIONS(3606), - [anon_sym_LBRACK] = ACTIONS(3608), + [1131] = { + [sym_match_arm] = STATE(6634), + [sym_default_arm] = STATE(6634), + [sym_match_pattern] = STATE(7019), + [sym__match_pattern] = STATE(5730), + [sym__match_pattern_expression] = STATE(6638), + [sym__match_pattern_value] = STATE(6639), + [sym__match_pattern_list] = STATE(6641), + [sym__match_pattern_record] = STATE(6644), + [sym_expr_parenthesized] = STATE(5503), + [sym_val_range] = STATE(6639), + [sym__val_range] = STATE(7094), + [sym_val_nothing] = STATE(6650), + [sym_val_bool] = STATE(5921), + [sym_val_variable] = STATE(5516), + [sym_val_number] = STATE(6650), + [sym__val_number_decimal] = STATE(5111), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(6650), + [sym_val_filesize] = STATE(6650), + [sym_val_binary] = STATE(6650), + [sym_val_string] = STATE(6650), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_table] = STATE(6650), + [sym_unquoted] = STATE(6681), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1131), + [aux_sym_shebang_repeat1] = STATE(1154), + [aux_sym_ctrl_match_repeat1] = STATE(1176), + [sym__newline] = ACTIONS(3546), + [anon_sym_LBRACK] = ACTIONS(3548), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym_RBRACE] = ACTIONS(3647), - [anon_sym__] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(3618), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), - [anon_sym_DOT_DOT_LT] = ACTIONS(3620), - [anon_sym_null] = ACTIONS(3622), - [anon_sym_true] = ACTIONS(3624), - [anon_sym_false] = ACTIONS(3624), - [aux_sym__val_number_decimal_token1] = ACTIONS(3626), - [aux_sym__val_number_decimal_token2] = ACTIONS(3628), - [aux_sym__val_number_decimal_token3] = ACTIONS(3630), - [aux_sym__val_number_decimal_token4] = ACTIONS(3632), + [anon_sym_DOLLAR] = ACTIONS(3550), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym_RBRACE] = ACTIONS(3554), + [anon_sym__] = ACTIONS(3556), + [anon_sym_DOT_DOT] = ACTIONS(3558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3560), + [anon_sym_DOT_DOT_LT] = ACTIONS(3560), + [anon_sym_null] = ACTIONS(3562), + [anon_sym_true] = ACTIONS(3564), + [anon_sym_false] = ACTIONS(3564), + [aux_sym__val_number_decimal_token1] = ACTIONS(3566), + [aux_sym__val_number_decimal_token2] = ACTIONS(3568), + [aux_sym__val_number_decimal_token3] = ACTIONS(3570), + [aux_sym__val_number_decimal_token4] = ACTIONS(3572), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3634), - [aux_sym__val_number_token5] = ACTIONS(3634), - [aux_sym__val_number_token6] = ACTIONS(3634), + [aux_sym__val_number_token4] = ACTIONS(3574), + [aux_sym__val_number_token5] = ACTIONS(3574), + [aux_sym__val_number_token6] = ACTIONS(3574), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3636), + [sym_val_date] = ACTIONS(3576), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1192] = { - [sym_expr_parenthesized] = STATE(4544), - [sym_val_range] = STATE(5023), - [sym__val_range] = STATE(7902), - [sym__val_range_with_end] = STATE(7411), - [sym__value] = STATE(5023), - [sym_val_nothing] = STATE(4332), - [sym_val_bool] = STATE(4671), - [sym_val_variable] = STATE(4495), - [sym_val_number] = STATE(4332), - [sym__val_number_decimal] = STATE(4042), - [sym__val_number] = STATE(4342), - [sym_val_duration] = STATE(4332), - [sym_val_filesize] = STATE(4332), - [sym_val_binary] = STATE(4332), - [sym_val_string] = STATE(4332), - [sym__raw_str] = STATE(4187), - [sym__str_double_quotes] = STATE(4187), - [sym_val_interpolated] = STATE(4332), - [sym__inter_single_quotes] = STATE(5108), - [sym__inter_double_quotes] = STATE(4992), - [sym_val_list] = STATE(4332), - [sym_val_record] = STATE(4332), - [sym_val_table] = STATE(4332), - [sym_val_closure] = STATE(4332), - [sym__unquoted_in_record] = STATE(4668), - [sym__unquoted_in_record_with_expr] = STATE(5023), - [sym__unquoted_anonymous_prefix] = STATE(7356), - [sym_comment] = STATE(1192), - [aux_sym_shebang_repeat1] = STATE(3044), - [sym__newline] = ACTIONS(3649), - [anon_sym_LBRACK] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3653), - [anon_sym_DOLLAR] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3657), - [anon_sym_DOT_DOT] = ACTIONS(3659), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3661), - [anon_sym_DOT_DOT_LT] = ACTIONS(3661), - [anon_sym_null] = ACTIONS(3663), - [anon_sym_true] = ACTIONS(3665), - [anon_sym_false] = ACTIONS(3665), - [aux_sym__val_number_decimal_token1] = ACTIONS(3667), - [aux_sym__val_number_decimal_token2] = ACTIONS(3669), - [aux_sym__val_number_decimal_token3] = ACTIONS(3671), - [aux_sym__val_number_decimal_token4] = ACTIONS(3673), - [aux_sym__val_number_token1] = ACTIONS(3675), - [aux_sym__val_number_token2] = ACTIONS(3675), - [aux_sym__val_number_token3] = ACTIONS(3675), - [aux_sym__val_number_token4] = ACTIONS(3677), - [aux_sym__val_number_token5] = ACTIONS(3677), - [aux_sym__val_number_token6] = ACTIONS(3677), - [anon_sym_0b] = ACTIONS(3679), - [anon_sym_0o] = ACTIONS(3681), - [anon_sym_0x] = ACTIONS(3681), - [sym_val_date] = ACTIONS(3683), - [anon_sym_DQUOTE] = ACTIONS(3685), - [sym__str_single_quotes] = ACTIONS(3687), - [sym__str_back_ticks] = ACTIONS(3687), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3689), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3691), - [anon_sym_err_GT] = ACTIONS(3693), - [anon_sym_out_GT] = ACTIONS(3693), - [anon_sym_e_GT] = ACTIONS(3693), - [anon_sym_o_GT] = ACTIONS(3693), - [anon_sym_err_PLUSout_GT] = ACTIONS(3693), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3693), - [anon_sym_o_PLUSe_GT] = ACTIONS(3693), - [anon_sym_e_PLUSo_GT] = ACTIONS(3693), - [anon_sym_err_GT_GT] = ACTIONS(3695), - [anon_sym_out_GT_GT] = ACTIONS(3695), - [anon_sym_e_GT_GT] = ACTIONS(3695), - [anon_sym_o_GT_GT] = ACTIONS(3695), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3695), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3695), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3695), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3695), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3697), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3699), - }, - [1193] = { - [sym_expr_parenthesized] = STATE(4526), - [sym_val_range] = STATE(5117), - [sym__val_range] = STATE(7902), - [sym__val_range_with_end] = STATE(7411), - [sym__value] = STATE(5117), - [sym_val_nothing] = STATE(4332), - [sym_val_bool] = STATE(4671), - [sym_val_variable] = STATE(4495), - [sym_val_number] = STATE(4332), - [sym__val_number_decimal] = STATE(4042), - [sym__val_number] = STATE(4342), - [sym_val_duration] = STATE(4332), - [sym_val_filesize] = STATE(4332), - [sym_val_binary] = STATE(4332), - [sym_val_string] = STATE(4332), - [sym__raw_str] = STATE(4187), - [sym__str_double_quotes] = STATE(4187), - [sym_val_interpolated] = STATE(4332), - [sym__inter_single_quotes] = STATE(5108), - [sym__inter_double_quotes] = STATE(4992), - [sym_val_list] = STATE(4332), - [sym_val_record] = STATE(4332), - [sym_val_table] = STATE(4332), - [sym_val_closure] = STATE(4332), - [sym__unquoted_in_record] = STATE(4585), - [sym__unquoted_in_record_with_expr] = STATE(5117), - [sym__unquoted_anonymous_prefix] = STATE(7356), - [sym_comment] = STATE(1193), - [aux_sym_shebang_repeat1] = STATE(3044), - [sym__newline] = ACTIONS(3649), - [anon_sym_LBRACK] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3653), - [anon_sym_DOLLAR] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3657), - [anon_sym_DOT_DOT] = ACTIONS(3659), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3661), - [anon_sym_DOT_DOT_LT] = ACTIONS(3661), - [anon_sym_null] = ACTIONS(3663), - [anon_sym_true] = ACTIONS(3665), - [anon_sym_false] = ACTIONS(3665), - [aux_sym__val_number_decimal_token1] = ACTIONS(3667), - [aux_sym__val_number_decimal_token2] = ACTIONS(3669), - [aux_sym__val_number_decimal_token3] = ACTIONS(3671), - [aux_sym__val_number_decimal_token4] = ACTIONS(3673), - [aux_sym__val_number_token1] = ACTIONS(3675), - [aux_sym__val_number_token2] = ACTIONS(3675), - [aux_sym__val_number_token3] = ACTIONS(3675), - [aux_sym__val_number_token4] = ACTIONS(3677), - [aux_sym__val_number_token5] = ACTIONS(3677), - [aux_sym__val_number_token6] = ACTIONS(3677), - [anon_sym_0b] = ACTIONS(3679), - [anon_sym_0o] = ACTIONS(3681), - [anon_sym_0x] = ACTIONS(3681), - [sym_val_date] = ACTIONS(3683), - [anon_sym_DQUOTE] = ACTIONS(3685), - [sym__str_single_quotes] = ACTIONS(3687), - [sym__str_back_ticks] = ACTIONS(3687), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3689), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3691), - [anon_sym_err_GT] = ACTIONS(3693), - [anon_sym_out_GT] = ACTIONS(3693), - [anon_sym_e_GT] = ACTIONS(3693), - [anon_sym_o_GT] = ACTIONS(3693), - [anon_sym_err_PLUSout_GT] = ACTIONS(3693), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3693), - [anon_sym_o_PLUSe_GT] = ACTIONS(3693), - [anon_sym_e_PLUSo_GT] = ACTIONS(3693), - [anon_sym_err_GT_GT] = ACTIONS(3695), - [anon_sym_out_GT_GT] = ACTIONS(3695), - [anon_sym_e_GT_GT] = ACTIONS(3695), - [anon_sym_o_GT_GT] = ACTIONS(3695), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3695), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3695), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3695), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3695), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3697), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3699), + [1132] = { + [sym_comment] = STATE(1132), + [aux_sym_cmd_identifier_token1] = ACTIONS(2060), + [aux_sym_cmd_identifier_token2] = ACTIONS(2060), + [aux_sym_cmd_identifier_token3] = ACTIONS(2060), + [aux_sym_cmd_identifier_token4] = ACTIONS(2060), + [aux_sym_cmd_identifier_token5] = ACTIONS(2060), + [aux_sym_cmd_identifier_token6] = ACTIONS(2060), + [aux_sym_cmd_identifier_token7] = ACTIONS(2060), + [aux_sym_cmd_identifier_token8] = ACTIONS(2060), + [aux_sym_cmd_identifier_token9] = ACTIONS(2060), + [aux_sym_cmd_identifier_token10] = ACTIONS(2060), + [aux_sym_cmd_identifier_token11] = ACTIONS(2060), + [aux_sym_cmd_identifier_token12] = ACTIONS(2060), + [aux_sym_cmd_identifier_token13] = ACTIONS(2060), + [aux_sym_cmd_identifier_token14] = ACTIONS(2060), + [aux_sym_cmd_identifier_token15] = ACTIONS(2060), + [aux_sym_cmd_identifier_token16] = ACTIONS(2060), + [aux_sym_cmd_identifier_token17] = ACTIONS(2060), + [aux_sym_cmd_identifier_token18] = ACTIONS(2060), + [aux_sym_cmd_identifier_token19] = ACTIONS(2060), + [aux_sym_cmd_identifier_token20] = ACTIONS(2060), + [aux_sym_cmd_identifier_token21] = ACTIONS(2060), + [aux_sym_cmd_identifier_token22] = ACTIONS(2060), + [aux_sym_cmd_identifier_token23] = ACTIONS(2060), + [aux_sym_cmd_identifier_token24] = ACTIONS(2060), + [aux_sym_cmd_identifier_token25] = ACTIONS(2060), + [aux_sym_cmd_identifier_token26] = ACTIONS(2060), + [aux_sym_cmd_identifier_token27] = ACTIONS(2060), + [aux_sym_cmd_identifier_token28] = ACTIONS(2060), + [aux_sym_cmd_identifier_token29] = ACTIONS(2060), + [aux_sym_cmd_identifier_token30] = ACTIONS(2060), + [aux_sym_cmd_identifier_token31] = ACTIONS(2060), + [aux_sym_cmd_identifier_token32] = ACTIONS(2060), + [aux_sym_cmd_identifier_token33] = ACTIONS(2060), + [aux_sym_cmd_identifier_token34] = ACTIONS(2060), + [aux_sym_cmd_identifier_token35] = ACTIONS(2060), + [aux_sym_cmd_identifier_token36] = ACTIONS(2060), + [aux_sym_cmd_identifier_token37] = ACTIONS(2060), + [aux_sym_cmd_identifier_token38] = ACTIONS(2060), + [aux_sym_cmd_identifier_token39] = ACTIONS(2060), + [aux_sym_cmd_identifier_token40] = ACTIONS(2060), + [sym__newline] = ACTIONS(2060), + [sym__space] = ACTIONS(3578), + [anon_sym_LBRACK] = ACTIONS(2060), + [anon_sym_LPAREN] = ACTIONS(2060), + [anon_sym_DOLLAR] = ACTIONS(2060), + [anon_sym_DASH2] = ACTIONS(2060), + [anon_sym_LBRACE] = ACTIONS(2060), + [anon_sym_DOT_DOT] = ACTIONS(2060), + [aux_sym_expr_unary_token1] = ACTIONS(2060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2060), + [anon_sym_DOT_DOT_LT] = ACTIONS(2060), + [anon_sym_null] = ACTIONS(2060), + [anon_sym_true] = ACTIONS(2060), + [anon_sym_false] = ACTIONS(2060), + [aux_sym__val_number_decimal_token1] = ACTIONS(2060), + [aux_sym__val_number_decimal_token2] = ACTIONS(2060), + [aux_sym__val_number_decimal_token3] = ACTIONS(2060), + [aux_sym__val_number_decimal_token4] = ACTIONS(2060), + [aux_sym__val_number_token1] = ACTIONS(2060), + [aux_sym__val_number_token2] = ACTIONS(2060), + [aux_sym__val_number_token3] = ACTIONS(2060), + [aux_sym__val_number_token4] = ACTIONS(2060), + [aux_sym__val_number_token5] = ACTIONS(2060), + [aux_sym__val_number_token6] = ACTIONS(2060), + [anon_sym_0b] = ACTIONS(2060), + [anon_sym_0o] = ACTIONS(2060), + [anon_sym_0x] = ACTIONS(2060), + [sym_val_date] = ACTIONS(2060), + [anon_sym_DQUOTE] = ACTIONS(2060), + [sym__str_single_quotes] = ACTIONS(2060), + [sym__str_back_ticks] = ACTIONS(2060), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2060), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2060), + [aux_sym_env_var_token1] = ACTIONS(2060), + [anon_sym_CARET] = ACTIONS(2060), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3578), }, - [1194] = { - [sym_match_arm] = STATE(7347), - [sym_default_arm] = STATE(7347), - [sym_match_pattern] = STATE(7567), - [sym__match_pattern] = STATE(6127), - [sym__match_pattern_expression] = STATE(7169), - [sym__match_pattern_value] = STATE(7170), - [sym__match_pattern_list] = STATE(7173), - [sym__match_pattern_record] = STATE(7174), - [sym_expr_parenthesized] = STATE(5946), - [sym_val_range] = STATE(7170), - [sym__val_range] = STATE(7723), - [sym_val_nothing] = STATE(7176), - [sym_val_bool] = STATE(6722), - [sym_val_variable] = STATE(5947), - [sym_val_number] = STATE(7176), - [sym__val_number_decimal] = STATE(5407), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(7176), - [sym_val_filesize] = STATE(7176), - [sym_val_binary] = STATE(7176), - [sym_val_string] = STATE(7176), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_table] = STATE(7176), - [sym_unquoted] = STATE(7181), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1194), - [aux_sym_shebang_repeat1] = STATE(1208), - [aux_sym_ctrl_match_repeat1] = STATE(1233), - [sym__newline] = ACTIONS(3606), - [anon_sym_LBRACK] = ACTIONS(3608), + [1133] = { + [sym_match_arm] = STATE(6690), + [sym_default_arm] = STATE(6690), + [sym_match_pattern] = STATE(7019), + [sym__match_pattern] = STATE(5730), + [sym__match_pattern_expression] = STATE(6638), + [sym__match_pattern_value] = STATE(6639), + [sym__match_pattern_list] = STATE(6641), + [sym__match_pattern_record] = STATE(6644), + [sym_expr_parenthesized] = STATE(5503), + [sym_val_range] = STATE(6639), + [sym__val_range] = STATE(7094), + [sym_val_nothing] = STATE(6650), + [sym_val_bool] = STATE(5921), + [sym_val_variable] = STATE(5516), + [sym_val_number] = STATE(6650), + [sym__val_number_decimal] = STATE(5111), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(6650), + [sym_val_filesize] = STATE(6650), + [sym_val_binary] = STATE(6650), + [sym_val_string] = STATE(6650), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_table] = STATE(6650), + [sym_unquoted] = STATE(6681), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1133), + [aux_sym_shebang_repeat1] = STATE(1150), + [aux_sym_ctrl_match_repeat1] = STATE(1183), + [sym__newline] = ACTIONS(3546), + [anon_sym_LBRACK] = ACTIONS(3548), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym_RBRACE] = ACTIONS(3701), - [anon_sym__] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(3618), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), - [anon_sym_DOT_DOT_LT] = ACTIONS(3620), - [anon_sym_null] = ACTIONS(3622), - [anon_sym_true] = ACTIONS(3624), - [anon_sym_false] = ACTIONS(3624), - [aux_sym__val_number_decimal_token1] = ACTIONS(3626), - [aux_sym__val_number_decimal_token2] = ACTIONS(3628), - [aux_sym__val_number_decimal_token3] = ACTIONS(3630), - [aux_sym__val_number_decimal_token4] = ACTIONS(3632), + [anon_sym_DOLLAR] = ACTIONS(3550), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym_RBRACE] = ACTIONS(3580), + [anon_sym__] = ACTIONS(3556), + [anon_sym_DOT_DOT] = ACTIONS(3558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3560), + [anon_sym_DOT_DOT_LT] = ACTIONS(3560), + [anon_sym_null] = ACTIONS(3562), + [anon_sym_true] = ACTIONS(3564), + [anon_sym_false] = ACTIONS(3564), + [aux_sym__val_number_decimal_token1] = ACTIONS(3566), + [aux_sym__val_number_decimal_token2] = ACTIONS(3568), + [aux_sym__val_number_decimal_token3] = ACTIONS(3570), + [aux_sym__val_number_decimal_token4] = ACTIONS(3572), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3634), - [aux_sym__val_number_token5] = ACTIONS(3634), - [aux_sym__val_number_token6] = ACTIONS(3634), + [aux_sym__val_number_token4] = ACTIONS(3574), + [aux_sym__val_number_token5] = ACTIONS(3574), + [aux_sym__val_number_token6] = ACTIONS(3574), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3636), + [sym_val_date] = ACTIONS(3576), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1195] = { - [sym_env_var] = STATE(6972), - [sym_comment] = STATE(1195), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1195), - [aux_sym_cmd_identifier_token1] = ACTIONS(3580), + [1134] = { + [sym_comment] = STATE(1134), + [anon_sym_STAR_STAR] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(2570), + [anon_sym_SLASH] = ACTIONS(2570), + [anon_sym_mod] = ACTIONS(2568), + [anon_sym_SLASH_SLASH] = ACTIONS(2568), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_bit_DASHshl] = ACTIONS(2568), + [anon_sym_bit_DASHshr] = ACTIONS(2568), + [anon_sym_EQ_TILDE] = ACTIONS(2568), + [anon_sym_BANG_TILDE] = ACTIONS(2568), + [anon_sym_bit_DASHand] = ACTIONS(2568), + [anon_sym_bit_DASHxor] = ACTIONS(2568), + [anon_sym_bit_DASHor] = ACTIONS(2568), + [anon_sym_and] = ACTIONS(2568), + [anon_sym_xor] = ACTIONS(2568), + [anon_sym_or] = ACTIONS(2568), + [anon_sym_in] = ACTIONS(2568), + [anon_sym_not_DASHin] = ACTIONS(2568), + [anon_sym_has] = ACTIONS(2568), + [anon_sym_not_DASHhas] = ACTIONS(2568), + [anon_sym_starts_DASHwith] = ACTIONS(2568), + [anon_sym_ends_DASHwith] = ACTIONS(2568), + [anon_sym_EQ_EQ] = ACTIONS(2568), + [anon_sym_BANG_EQ] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_LT_EQ] = ACTIONS(2568), + [anon_sym_GT] = ACTIONS(2570), + [anon_sym_GT_EQ] = ACTIONS(2568), + [aux_sym_cmd_identifier_token41] = ACTIONS(2572), + [sym__newline] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1616), + [anon_sym_err_GT_PIPE] = ACTIONS(1616), + [anon_sym_out_GT_PIPE] = ACTIONS(1616), + [anon_sym_e_GT_PIPE] = ACTIONS(1616), + [anon_sym_o_GT_PIPE] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1616), + [anon_sym_GT2] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_in2] = ACTIONS(1616), + [anon_sym_STAR2] = ACTIONS(1616), + [anon_sym_and2] = ACTIONS(1616), + [anon_sym_xor2] = ACTIONS(1616), + [anon_sym_or2] = ACTIONS(1616), + [anon_sym_not_DASHin2] = ACTIONS(1616), + [anon_sym_has2] = ACTIONS(1616), + [anon_sym_not_DASHhas2] = ACTIONS(1616), + [anon_sym_starts_DASHwith2] = ACTIONS(1616), + [anon_sym_ends_DASHwith2] = ACTIONS(1616), + [anon_sym_EQ_EQ2] = ACTIONS(1616), + [anon_sym_BANG_EQ2] = ACTIONS(1616), + [anon_sym_LT2] = ACTIONS(1616), + [anon_sym_LT_EQ2] = ACTIONS(1616), + [anon_sym_GT_EQ2] = ACTIONS(1616), + [anon_sym_EQ_TILDE2] = ACTIONS(1616), + [anon_sym_BANG_TILDE2] = ACTIONS(1616), + [anon_sym_STAR_STAR2] = ACTIONS(1616), + [anon_sym_PLUS_PLUS2] = ACTIONS(1616), + [anon_sym_SLASH2] = ACTIONS(1616), + [anon_sym_mod2] = ACTIONS(1616), + [anon_sym_SLASH_SLASH2] = ACTIONS(1616), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_bit_DASHshl2] = ACTIONS(1616), + [anon_sym_bit_DASHshr2] = ACTIONS(1616), + [anon_sym_bit_DASHand2] = ACTIONS(1616), + [anon_sym_bit_DASHxor2] = ACTIONS(1616), + [anon_sym_bit_DASHor2] = ACTIONS(1616), + [anon_sym_DOT_DOT2] = ACTIONS(2548), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2550), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2550), + [sym_filesize_unit] = ACTIONS(3582), + [sym_duration_unit] = ACTIONS(3584), + [anon_sym_POUND] = ACTIONS(3), + }, + [1135] = { + [sym_comment] = STATE(1135), + [aux_sym_pipe_element_repeat1] = STATE(1135), + [aux_sym_cmd_identifier_token1] = ACTIONS(3586), [aux_sym_cmd_identifier_token2] = ACTIONS(3586), [aux_sym_cmd_identifier_token3] = ACTIONS(3586), [aux_sym_cmd_identifier_token4] = ACTIONS(3586), @@ -195145,13 +188231,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token6] = ACTIONS(3586), [aux_sym_cmd_identifier_token7] = ACTIONS(3586), [aux_sym_cmd_identifier_token8] = ACTIONS(3586), - [aux_sym_cmd_identifier_token9] = ACTIONS(3580), + [aux_sym_cmd_identifier_token9] = ACTIONS(3586), [aux_sym_cmd_identifier_token10] = ACTIONS(3586), [aux_sym_cmd_identifier_token11] = ACTIONS(3586), [aux_sym_cmd_identifier_token12] = ACTIONS(3586), - [aux_sym_cmd_identifier_token13] = ACTIONS(3580), + [aux_sym_cmd_identifier_token13] = ACTIONS(3586), [aux_sym_cmd_identifier_token14] = ACTIONS(3586), - [aux_sym_cmd_identifier_token15] = ACTIONS(3580), + [aux_sym_cmd_identifier_token15] = ACTIONS(3586), [aux_sym_cmd_identifier_token16] = ACTIONS(3586), [aux_sym_cmd_identifier_token17] = ACTIONS(3586), [aux_sym_cmd_identifier_token18] = ACTIONS(3586), @@ -195170,2483 +188256,3123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(3586), [aux_sym_cmd_identifier_token32] = ACTIONS(3586), [aux_sym_cmd_identifier_token33] = ACTIONS(3586), - [aux_sym_cmd_identifier_token34] = ACTIONS(3580), + [aux_sym_cmd_identifier_token34] = ACTIONS(3586), [aux_sym_cmd_identifier_token35] = ACTIONS(3586), [aux_sym_cmd_identifier_token36] = ACTIONS(3586), [aux_sym_cmd_identifier_token37] = ACTIONS(3586), - [aux_sym_cmd_identifier_token38] = ACTIONS(3580), + [aux_sym_cmd_identifier_token38] = ACTIONS(3586), [aux_sym_cmd_identifier_token39] = ACTIONS(3586), [aux_sym_cmd_identifier_token40] = ACTIONS(3586), + [sym__space] = ACTIONS(3588), [anon_sym_LBRACK] = ACTIONS(3586), [anon_sym_LPAREN] = ACTIONS(3586), - [anon_sym_DOLLAR] = ACTIONS(3580), - [anon_sym_DASH2] = ACTIONS(3580), + [anon_sym_DOLLAR] = ACTIONS(3586), + [anon_sym_DASH2] = ACTIONS(3586), [anon_sym_LBRACE] = ACTIONS(3586), - [anon_sym_DOT_DOT] = ACTIONS(3580), + [anon_sym_DOT_DOT] = ACTIONS(3586), [aux_sym_expr_unary_token1] = ACTIONS(3586), [anon_sym_DOT_DOT_EQ] = ACTIONS(3586), [anon_sym_DOT_DOT_LT] = ACTIONS(3586), - [anon_sym_null] = ACTIONS(3580), - [anon_sym_true] = ACTIONS(3580), - [anon_sym_false] = ACTIONS(3580), - [aux_sym__val_number_decimal_token1] = ACTIONS(3580), + [anon_sym_null] = ACTIONS(3586), + [anon_sym_true] = ACTIONS(3586), + [anon_sym_false] = ACTIONS(3586), + [aux_sym__val_number_decimal_token1] = ACTIONS(3586), [aux_sym__val_number_decimal_token2] = ACTIONS(3586), [aux_sym__val_number_decimal_token3] = ACTIONS(3586), [aux_sym__val_number_decimal_token4] = ACTIONS(3586), [aux_sym__val_number_token1] = ACTIONS(3586), [aux_sym__val_number_token2] = ACTIONS(3586), [aux_sym__val_number_token3] = ACTIONS(3586), - [aux_sym__val_number_token4] = ACTIONS(3580), - [aux_sym__val_number_token5] = ACTIONS(3580), - [aux_sym__val_number_token6] = ACTIONS(3580), - [anon_sym_0b] = ACTIONS(3580), - [anon_sym_0o] = ACTIONS(3580), - [anon_sym_0x] = ACTIONS(3580), + [aux_sym__val_number_token4] = ACTIONS(3586), + [aux_sym__val_number_token5] = ACTIONS(3586), + [aux_sym__val_number_token6] = ACTIONS(3586), + [anon_sym_0b] = ACTIONS(3586), + [anon_sym_0o] = ACTIONS(3586), + [anon_sym_0x] = ACTIONS(3586), [sym_val_date] = ACTIONS(3586), [anon_sym_DQUOTE] = ACTIONS(3586), [sym__str_single_quotes] = ACTIONS(3586), [sym__str_back_ticks] = ACTIONS(3586), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3586), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3586), - [aux_sym_env_var_token1] = ACTIONS(3703), + [aux_sym_env_var_token1] = ACTIONS(3586), [anon_sym_CARET] = ACTIONS(3586), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3591), + }, + [1136] = { + [sym_match_arm] = STATE(6691), + [sym_default_arm] = STATE(6691), + [sym_match_pattern] = STATE(7019), + [sym__match_pattern] = STATE(5730), + [sym__match_pattern_expression] = STATE(6638), + [sym__match_pattern_value] = STATE(6639), + [sym__match_pattern_list] = STATE(6641), + [sym__match_pattern_record] = STATE(6644), + [sym_expr_parenthesized] = STATE(5503), + [sym_val_range] = STATE(6639), + [sym__val_range] = STATE(7094), + [sym_val_nothing] = STATE(6650), + [sym_val_bool] = STATE(5921), + [sym_val_variable] = STATE(5516), + [sym_val_number] = STATE(6650), + [sym__val_number_decimal] = STATE(5111), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(6650), + [sym_val_filesize] = STATE(6650), + [sym_val_binary] = STATE(6650), + [sym_val_string] = STATE(6650), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_table] = STATE(6650), + [sym_unquoted] = STATE(6681), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1136), + [aux_sym_shebang_repeat1] = STATE(1155), + [aux_sym_ctrl_match_repeat1] = STATE(1182), + [sym__newline] = ACTIONS(3546), + [anon_sym_LBRACK] = ACTIONS(3548), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(3550), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym_RBRACE] = ACTIONS(3593), + [anon_sym__] = ACTIONS(3556), + [anon_sym_DOT_DOT] = ACTIONS(3558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3560), + [anon_sym_DOT_DOT_LT] = ACTIONS(3560), + [anon_sym_null] = ACTIONS(3562), + [anon_sym_true] = ACTIONS(3564), + [anon_sym_false] = ACTIONS(3564), + [aux_sym__val_number_decimal_token1] = ACTIONS(3566), + [aux_sym__val_number_decimal_token2] = ACTIONS(3568), + [aux_sym__val_number_decimal_token3] = ACTIONS(3570), + [aux_sym__val_number_decimal_token4] = ACTIONS(3572), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3574), + [aux_sym__val_number_token5] = ACTIONS(3574), + [aux_sym__val_number_token6] = ACTIONS(3574), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3576), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3586), + [sym_raw_string_begin] = ACTIONS(247), }, - [1196] = { - [sym_match_arm] = STATE(7350), - [sym_default_arm] = STATE(7350), - [sym_match_pattern] = STATE(7567), - [sym__match_pattern] = STATE(6127), - [sym__match_pattern_expression] = STATE(7169), - [sym__match_pattern_value] = STATE(7170), - [sym__match_pattern_list] = STATE(7173), - [sym__match_pattern_record] = STATE(7174), - [sym_expr_parenthesized] = STATE(5946), - [sym_val_range] = STATE(7170), - [sym__val_range] = STATE(7723), - [sym_val_nothing] = STATE(7176), - [sym_val_bool] = STATE(6722), - [sym_val_variable] = STATE(5947), - [sym_val_number] = STATE(7176), - [sym__val_number_decimal] = STATE(5407), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(7176), - [sym_val_filesize] = STATE(7176), - [sym_val_binary] = STATE(7176), - [sym_val_string] = STATE(7176), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_table] = STATE(7176), - [sym_unquoted] = STATE(7181), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1196), - [aux_sym_shebang_repeat1] = STATE(1205), - [aux_sym_ctrl_match_repeat1] = STATE(1234), - [sym__newline] = ACTIONS(3606), - [anon_sym_LBRACK] = ACTIONS(3608), + [1137] = { + [sym_expr_parenthesized] = STATE(4310), + [sym_val_range] = STATE(4859), + [sym__val_range] = STATE(7120), + [sym__val_range_with_end] = STATE(6889), + [sym__value] = STATE(4859), + [sym_val_nothing] = STATE(4133), + [sym_val_bool] = STATE(4412), + [sym_val_variable] = STATE(4241), + [sym_val_number] = STATE(4133), + [sym__val_number_decimal] = STATE(3830), + [sym__val_number] = STATE(4134), + [sym_val_duration] = STATE(4133), + [sym_val_filesize] = STATE(4133), + [sym_val_binary] = STATE(4133), + [sym_val_string] = STATE(4133), + [sym__raw_str] = STATE(3983), + [sym__str_double_quotes] = STATE(3983), + [sym_val_interpolated] = STATE(4133), + [sym__inter_single_quotes] = STATE(4752), + [sym__inter_double_quotes] = STATE(4753), + [sym_val_list] = STATE(4133), + [sym_val_record] = STATE(4133), + [sym_val_table] = STATE(4133), + [sym_val_closure] = STATE(4133), + [sym__unquoted_in_record] = STATE(4428), + [sym__unquoted_in_record_with_expr] = STATE(4859), + [sym__unquoted_anonymous_prefix] = STATE(6692), + [sym_comment] = STATE(1137), + [aux_sym_shebang_repeat1] = STATE(2855), + [sym__newline] = ACTIONS(3595), + [anon_sym_LBRACK] = ACTIONS(3597), + [anon_sym_LPAREN] = ACTIONS(3599), + [anon_sym_DOLLAR] = ACTIONS(3601), + [anon_sym_LBRACE] = ACTIONS(3603), + [anon_sym_DOT_DOT] = ACTIONS(3605), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3607), + [anon_sym_DOT_DOT_LT] = ACTIONS(3607), + [anon_sym_null] = ACTIONS(3609), + [anon_sym_true] = ACTIONS(3611), + [anon_sym_false] = ACTIONS(3611), + [aux_sym__val_number_decimal_token1] = ACTIONS(3613), + [aux_sym__val_number_decimal_token2] = ACTIONS(3615), + [aux_sym__val_number_decimal_token3] = ACTIONS(3617), + [aux_sym__val_number_decimal_token4] = ACTIONS(3619), + [aux_sym__val_number_token1] = ACTIONS(3621), + [aux_sym__val_number_token2] = ACTIONS(3621), + [aux_sym__val_number_token3] = ACTIONS(3621), + [aux_sym__val_number_token4] = ACTIONS(3623), + [aux_sym__val_number_token5] = ACTIONS(3623), + [aux_sym__val_number_token6] = ACTIONS(3623), + [anon_sym_0b] = ACTIONS(3625), + [anon_sym_0o] = ACTIONS(3627), + [anon_sym_0x] = ACTIONS(3627), + [sym_val_date] = ACTIONS(3629), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym__str_single_quotes] = ACTIONS(3633), + [sym__str_back_ticks] = ACTIONS(3633), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3635), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3637), + [anon_sym_err_GT] = ACTIONS(3639), + [anon_sym_out_GT] = ACTIONS(3639), + [anon_sym_e_GT] = ACTIONS(3639), + [anon_sym_o_GT] = ACTIONS(3639), + [anon_sym_err_PLUSout_GT] = ACTIONS(3639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3639), + [anon_sym_o_PLUSe_GT] = ACTIONS(3639), + [anon_sym_e_PLUSo_GT] = ACTIONS(3639), + [anon_sym_err_GT_GT] = ACTIONS(3641), + [anon_sym_out_GT_GT] = ACTIONS(3641), + [anon_sym_e_GT_GT] = ACTIONS(3641), + [anon_sym_o_GT_GT] = ACTIONS(3641), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3641), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3641), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3641), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3641), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3643), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3645), + }, + [1138] = { + [sym_match_arm] = STATE(6762), + [sym_default_arm] = STATE(6762), + [sym_match_pattern] = STATE(7019), + [sym__match_pattern] = STATE(5730), + [sym__match_pattern_expression] = STATE(6638), + [sym__match_pattern_value] = STATE(6639), + [sym__match_pattern_list] = STATE(6641), + [sym__match_pattern_record] = STATE(6644), + [sym_expr_parenthesized] = STATE(5503), + [sym_val_range] = STATE(6639), + [sym__val_range] = STATE(7094), + [sym_val_nothing] = STATE(6650), + [sym_val_bool] = STATE(5921), + [sym_val_variable] = STATE(5516), + [sym_val_number] = STATE(6650), + [sym__val_number_decimal] = STATE(5111), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(6650), + [sym_val_filesize] = STATE(6650), + [sym_val_binary] = STATE(6650), + [sym_val_string] = STATE(6650), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_table] = STATE(6650), + [sym_unquoted] = STATE(6681), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1138), + [aux_sym_shebang_repeat1] = STATE(1152), + [aux_sym_ctrl_match_repeat1] = STATE(1178), + [sym__newline] = ACTIONS(3546), + [anon_sym_LBRACK] = ACTIONS(3548), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym_RBRACE] = ACTIONS(3706), - [anon_sym__] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(3618), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), - [anon_sym_DOT_DOT_LT] = ACTIONS(3620), - [anon_sym_null] = ACTIONS(3622), - [anon_sym_true] = ACTIONS(3624), - [anon_sym_false] = ACTIONS(3624), - [aux_sym__val_number_decimal_token1] = ACTIONS(3626), - [aux_sym__val_number_decimal_token2] = ACTIONS(3628), - [aux_sym__val_number_decimal_token3] = ACTIONS(3630), - [aux_sym__val_number_decimal_token4] = ACTIONS(3632), + [anon_sym_DOLLAR] = ACTIONS(3550), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym_RBRACE] = ACTIONS(3647), + [anon_sym__] = ACTIONS(3556), + [anon_sym_DOT_DOT] = ACTIONS(3558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3560), + [anon_sym_DOT_DOT_LT] = ACTIONS(3560), + [anon_sym_null] = ACTIONS(3562), + [anon_sym_true] = ACTIONS(3564), + [anon_sym_false] = ACTIONS(3564), + [aux_sym__val_number_decimal_token1] = ACTIONS(3566), + [aux_sym__val_number_decimal_token2] = ACTIONS(3568), + [aux_sym__val_number_decimal_token3] = ACTIONS(3570), + [aux_sym__val_number_decimal_token4] = ACTIONS(3572), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3634), - [aux_sym__val_number_token5] = ACTIONS(3634), - [aux_sym__val_number_token6] = ACTIONS(3634), + [aux_sym__val_number_token4] = ACTIONS(3574), + [aux_sym__val_number_token5] = ACTIONS(3574), + [aux_sym__val_number_token6] = ACTIONS(3574), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3636), + [sym_val_date] = ACTIONS(3576), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1197] = { - [sym_comment] = STATE(1197), - [aux_sym_pipe_element_repeat1] = STATE(1199), - [aux_sym_cmd_identifier_token1] = ACTIONS(3640), - [aux_sym_cmd_identifier_token2] = ACTIONS(3640), - [aux_sym_cmd_identifier_token3] = ACTIONS(3640), - [aux_sym_cmd_identifier_token4] = ACTIONS(3640), - [aux_sym_cmd_identifier_token5] = ACTIONS(3640), - [aux_sym_cmd_identifier_token6] = ACTIONS(3640), - [aux_sym_cmd_identifier_token7] = ACTIONS(3640), - [aux_sym_cmd_identifier_token8] = ACTIONS(3640), - [aux_sym_cmd_identifier_token9] = ACTIONS(3640), - [aux_sym_cmd_identifier_token10] = ACTIONS(3640), - [aux_sym_cmd_identifier_token11] = ACTIONS(3640), - [aux_sym_cmd_identifier_token12] = ACTIONS(3640), - [aux_sym_cmd_identifier_token13] = ACTIONS(3640), - [aux_sym_cmd_identifier_token14] = ACTIONS(3640), - [aux_sym_cmd_identifier_token15] = ACTIONS(3640), - [aux_sym_cmd_identifier_token16] = ACTIONS(3640), - [aux_sym_cmd_identifier_token17] = ACTIONS(3640), - [aux_sym_cmd_identifier_token18] = ACTIONS(3640), - [aux_sym_cmd_identifier_token19] = ACTIONS(3640), - [aux_sym_cmd_identifier_token20] = ACTIONS(3640), - [aux_sym_cmd_identifier_token21] = ACTIONS(3640), - [aux_sym_cmd_identifier_token22] = ACTIONS(3640), - [aux_sym_cmd_identifier_token23] = ACTIONS(3640), - [aux_sym_cmd_identifier_token24] = ACTIONS(3640), - [aux_sym_cmd_identifier_token25] = ACTIONS(3640), - [aux_sym_cmd_identifier_token26] = ACTIONS(3640), - [aux_sym_cmd_identifier_token27] = ACTIONS(3640), - [aux_sym_cmd_identifier_token28] = ACTIONS(3640), - [aux_sym_cmd_identifier_token29] = ACTIONS(3640), - [aux_sym_cmd_identifier_token30] = ACTIONS(3640), - [aux_sym_cmd_identifier_token31] = ACTIONS(3640), - [aux_sym_cmd_identifier_token32] = ACTIONS(3640), - [aux_sym_cmd_identifier_token33] = ACTIONS(3640), - [aux_sym_cmd_identifier_token34] = ACTIONS(3640), - [aux_sym_cmd_identifier_token35] = ACTIONS(3640), - [aux_sym_cmd_identifier_token36] = ACTIONS(3640), - [aux_sym_cmd_identifier_token37] = ACTIONS(3640), - [aux_sym_cmd_identifier_token38] = ACTIONS(3640), - [aux_sym_cmd_identifier_token39] = ACTIONS(3640), - [aux_sym_cmd_identifier_token40] = ACTIONS(3640), - [sym__space] = ACTIONS(3708), - [anon_sym_LBRACK] = ACTIONS(3640), - [anon_sym_LPAREN] = ACTIONS(3640), - [anon_sym_DOLLAR] = ACTIONS(3640), - [anon_sym_DASH2] = ACTIONS(3640), - [anon_sym_LBRACE] = ACTIONS(3640), - [anon_sym_DOT_DOT] = ACTIONS(3640), - [aux_sym_expr_unary_token1] = ACTIONS(3640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3640), - [anon_sym_DOT_DOT_LT] = ACTIONS(3640), - [anon_sym_null] = ACTIONS(3640), - [anon_sym_true] = ACTIONS(3640), - [anon_sym_false] = ACTIONS(3640), - [aux_sym__val_number_decimal_token1] = ACTIONS(3640), - [aux_sym__val_number_decimal_token2] = ACTIONS(3640), - [aux_sym__val_number_decimal_token3] = ACTIONS(3640), - [aux_sym__val_number_decimal_token4] = ACTIONS(3640), - [aux_sym__val_number_token1] = ACTIONS(3640), - [aux_sym__val_number_token2] = ACTIONS(3640), - [aux_sym__val_number_token3] = ACTIONS(3640), - [aux_sym__val_number_token4] = ACTIONS(3640), - [aux_sym__val_number_token5] = ACTIONS(3640), - [aux_sym__val_number_token6] = ACTIONS(3640), - [anon_sym_0b] = ACTIONS(3640), - [anon_sym_0o] = ACTIONS(3640), - [anon_sym_0x] = ACTIONS(3640), - [sym_val_date] = ACTIONS(3640), - [anon_sym_DQUOTE] = ACTIONS(3640), - [sym__str_single_quotes] = ACTIONS(3640), - [sym__str_back_ticks] = ACTIONS(3640), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3640), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3640), - [aux_sym_env_var_token1] = ACTIONS(3640), - [anon_sym_CARET] = ACTIONS(3640), + [1139] = { + [sym_expr_parenthesized] = STATE(4310), + [sym_val_range] = STATE(4859), + [sym__val_range] = STATE(7120), + [sym__val_range_with_end] = STATE(6889), + [sym__value] = STATE(4859), + [sym_val_nothing] = STATE(4133), + [sym_val_bool] = STATE(4412), + [sym_val_variable] = STATE(4241), + [sym_val_number] = STATE(4133), + [sym__val_number_decimal] = STATE(3830), + [sym__val_number] = STATE(4134), + [sym_val_duration] = STATE(4133), + [sym_val_filesize] = STATE(4133), + [sym_val_binary] = STATE(4133), + [sym_val_string] = STATE(4133), + [sym__raw_str] = STATE(3983), + [sym__str_double_quotes] = STATE(3983), + [sym_val_interpolated] = STATE(4133), + [sym__inter_single_quotes] = STATE(4752), + [sym__inter_double_quotes] = STATE(4753), + [sym_val_list] = STATE(4133), + [sym_val_record] = STATE(4133), + [sym_val_table] = STATE(4133), + [sym_val_closure] = STATE(4133), + [sym__unquoted_in_record] = STATE(4428), + [sym__unquoted_in_record_with_expr] = STATE(4859), + [sym__unquoted_anonymous_prefix] = STATE(6692), + [sym_comment] = STATE(1139), + [aux_sym_shebang_repeat1] = STATE(1141), + [sym__newline] = ACTIONS(3595), + [anon_sym_LBRACK] = ACTIONS(3597), + [anon_sym_LPAREN] = ACTIONS(3599), + [anon_sym_DOLLAR] = ACTIONS(3601), + [anon_sym_LBRACE] = ACTIONS(3603), + [anon_sym_DOT_DOT] = ACTIONS(3605), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3607), + [anon_sym_DOT_DOT_LT] = ACTIONS(3607), + [anon_sym_null] = ACTIONS(3609), + [anon_sym_true] = ACTIONS(3611), + [anon_sym_false] = ACTIONS(3611), + [aux_sym__val_number_decimal_token1] = ACTIONS(3613), + [aux_sym__val_number_decimal_token2] = ACTIONS(3615), + [aux_sym__val_number_decimal_token3] = ACTIONS(3617), + [aux_sym__val_number_decimal_token4] = ACTIONS(3619), + [aux_sym__val_number_token1] = ACTIONS(3621), + [aux_sym__val_number_token2] = ACTIONS(3621), + [aux_sym__val_number_token3] = ACTIONS(3621), + [aux_sym__val_number_token4] = ACTIONS(3623), + [aux_sym__val_number_token5] = ACTIONS(3623), + [aux_sym__val_number_token6] = ACTIONS(3623), + [anon_sym_0b] = ACTIONS(3625), + [anon_sym_0o] = ACTIONS(3627), + [anon_sym_0x] = ACTIONS(3627), + [sym_val_date] = ACTIONS(3629), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym__str_single_quotes] = ACTIONS(3633), + [sym__str_back_ticks] = ACTIONS(3633), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3635), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3637), + [anon_sym_err_GT] = ACTIONS(3639), + [anon_sym_out_GT] = ACTIONS(3639), + [anon_sym_e_GT] = ACTIONS(3639), + [anon_sym_o_GT] = ACTIONS(3639), + [anon_sym_err_PLUSout_GT] = ACTIONS(3639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3639), + [anon_sym_o_PLUSe_GT] = ACTIONS(3639), + [anon_sym_e_PLUSo_GT] = ACTIONS(3639), + [anon_sym_err_GT_GT] = ACTIONS(3641), + [anon_sym_out_GT_GT] = ACTIONS(3641), + [anon_sym_e_GT_GT] = ACTIONS(3641), + [anon_sym_o_GT_GT] = ACTIONS(3641), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3641), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3641), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3641), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3641), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3643), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3645), + }, + [1140] = { + [sym_comment] = STATE(1140), + [aux_sym_shebang_repeat1] = STATE(1140), + [aux_sym_cmd_identifier_token1] = ACTIONS(1272), + [aux_sym_cmd_identifier_token2] = ACTIONS(1274), + [aux_sym_cmd_identifier_token3] = ACTIONS(1274), + [aux_sym_cmd_identifier_token4] = ACTIONS(1274), + [aux_sym_cmd_identifier_token5] = ACTIONS(1274), + [aux_sym_cmd_identifier_token6] = ACTIONS(1274), + [aux_sym_cmd_identifier_token7] = ACTIONS(1274), + [aux_sym_cmd_identifier_token8] = ACTIONS(1274), + [aux_sym_cmd_identifier_token9] = ACTIONS(1272), + [aux_sym_cmd_identifier_token10] = ACTIONS(1274), + [aux_sym_cmd_identifier_token11] = ACTIONS(1274), + [aux_sym_cmd_identifier_token12] = ACTIONS(1274), + [aux_sym_cmd_identifier_token13] = ACTIONS(1272), + [aux_sym_cmd_identifier_token14] = ACTIONS(1274), + [aux_sym_cmd_identifier_token15] = ACTIONS(1272), + [aux_sym_cmd_identifier_token16] = ACTIONS(1274), + [aux_sym_cmd_identifier_token17] = ACTIONS(1274), + [aux_sym_cmd_identifier_token18] = ACTIONS(1274), + [aux_sym_cmd_identifier_token19] = ACTIONS(1274), + [aux_sym_cmd_identifier_token20] = ACTIONS(1274), + [aux_sym_cmd_identifier_token21] = ACTIONS(1274), + [aux_sym_cmd_identifier_token22] = ACTIONS(1274), + [aux_sym_cmd_identifier_token23] = ACTIONS(1274), + [aux_sym_cmd_identifier_token24] = ACTIONS(1274), + [aux_sym_cmd_identifier_token25] = ACTIONS(1274), + [aux_sym_cmd_identifier_token26] = ACTIONS(1274), + [aux_sym_cmd_identifier_token27] = ACTIONS(1274), + [aux_sym_cmd_identifier_token28] = ACTIONS(1274), + [aux_sym_cmd_identifier_token29] = ACTIONS(1274), + [aux_sym_cmd_identifier_token30] = ACTIONS(1274), + [aux_sym_cmd_identifier_token31] = ACTIONS(1274), + [aux_sym_cmd_identifier_token32] = ACTIONS(1274), + [aux_sym_cmd_identifier_token33] = ACTIONS(1274), + [aux_sym_cmd_identifier_token34] = ACTIONS(1272), + [aux_sym_cmd_identifier_token35] = ACTIONS(1274), + [aux_sym_cmd_identifier_token36] = ACTIONS(1274), + [aux_sym_cmd_identifier_token37] = ACTIONS(1274), + [aux_sym_cmd_identifier_token38] = ACTIONS(1272), + [aux_sym_cmd_identifier_token39] = ACTIONS(1274), + [aux_sym_cmd_identifier_token40] = ACTIONS(1274), + [sym__newline] = ACTIONS(3649), + [anon_sym_LBRACK] = ACTIONS(1274), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_DOLLAR] = ACTIONS(1272), + [anon_sym_DASH2] = ACTIONS(1272), + [anon_sym_if] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_DOT_DOT] = ACTIONS(1272), + [aux_sym_expr_unary_token1] = ACTIONS(1274), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1274), + [anon_sym_DOT_DOT_LT] = ACTIONS(1274), + [anon_sym_null] = ACTIONS(1272), + [anon_sym_true] = ACTIONS(1272), + [anon_sym_false] = ACTIONS(1272), + [aux_sym__val_number_decimal_token1] = ACTIONS(1272), + [aux_sym__val_number_decimal_token2] = ACTIONS(1274), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_token1] = ACTIONS(1274), + [aux_sym__val_number_token2] = ACTIONS(1274), + [aux_sym__val_number_token3] = ACTIONS(1274), + [aux_sym__val_number_token4] = ACTIONS(1272), + [aux_sym__val_number_token5] = ACTIONS(1272), + [aux_sym__val_number_token6] = ACTIONS(1272), + [anon_sym_0b] = ACTIONS(1272), + [anon_sym_0o] = ACTIONS(1272), + [anon_sym_0x] = ACTIONS(1272), + [sym_val_date] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1274), + [sym__str_single_quotes] = ACTIONS(1274), + [sym__str_back_ticks] = ACTIONS(1274), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1274), + [anon_sym_CARET] = ACTIONS(1274), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1274), + }, + [1141] = { + [sym_expr_parenthesized] = STATE(4266), + [sym_val_range] = STATE(4728), + [sym__val_range] = STATE(7120), + [sym__val_range_with_end] = STATE(6889), + [sym__value] = STATE(4728), + [sym_val_nothing] = STATE(4133), + [sym_val_bool] = STATE(4412), + [sym_val_variable] = STATE(4241), + [sym_val_number] = STATE(4133), + [sym__val_number_decimal] = STATE(3830), + [sym__val_number] = STATE(4134), + [sym_val_duration] = STATE(4133), + [sym_val_filesize] = STATE(4133), + [sym_val_binary] = STATE(4133), + [sym_val_string] = STATE(4133), + [sym__raw_str] = STATE(3983), + [sym__str_double_quotes] = STATE(3983), + [sym_val_interpolated] = STATE(4133), + [sym__inter_single_quotes] = STATE(4752), + [sym__inter_double_quotes] = STATE(4753), + [sym_val_list] = STATE(4133), + [sym_val_record] = STATE(4133), + [sym_val_table] = STATE(4133), + [sym_val_closure] = STATE(4133), + [sym__unquoted_in_record] = STATE(4447), + [sym__unquoted_in_record_with_expr] = STATE(4728), + [sym__unquoted_anonymous_prefix] = STATE(6692), + [sym_comment] = STATE(1141), + [aux_sym_shebang_repeat1] = STATE(2855), + [sym__newline] = ACTIONS(3595), + [anon_sym_LBRACK] = ACTIONS(3597), + [anon_sym_LPAREN] = ACTIONS(3599), + [anon_sym_DOLLAR] = ACTIONS(3601), + [anon_sym_LBRACE] = ACTIONS(3603), + [anon_sym_DOT_DOT] = ACTIONS(3605), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3607), + [anon_sym_DOT_DOT_LT] = ACTIONS(3607), + [anon_sym_null] = ACTIONS(3609), + [anon_sym_true] = ACTIONS(3611), + [anon_sym_false] = ACTIONS(3611), + [aux_sym__val_number_decimal_token1] = ACTIONS(3613), + [aux_sym__val_number_decimal_token2] = ACTIONS(3615), + [aux_sym__val_number_decimal_token3] = ACTIONS(3617), + [aux_sym__val_number_decimal_token4] = ACTIONS(3619), + [aux_sym__val_number_token1] = ACTIONS(3621), + [aux_sym__val_number_token2] = ACTIONS(3621), + [aux_sym__val_number_token3] = ACTIONS(3621), + [aux_sym__val_number_token4] = ACTIONS(3623), + [aux_sym__val_number_token5] = ACTIONS(3623), + [aux_sym__val_number_token6] = ACTIONS(3623), + [anon_sym_0b] = ACTIONS(3625), + [anon_sym_0o] = ACTIONS(3627), + [anon_sym_0x] = ACTIONS(3627), + [sym_val_date] = ACTIONS(3629), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym__str_single_quotes] = ACTIONS(3633), + [sym__str_back_ticks] = ACTIONS(3633), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3635), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3637), + [anon_sym_err_GT] = ACTIONS(3639), + [anon_sym_out_GT] = ACTIONS(3639), + [anon_sym_e_GT] = ACTIONS(3639), + [anon_sym_o_GT] = ACTIONS(3639), + [anon_sym_err_PLUSout_GT] = ACTIONS(3639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3639), + [anon_sym_o_PLUSe_GT] = ACTIONS(3639), + [anon_sym_e_PLUSo_GT] = ACTIONS(3639), + [anon_sym_err_GT_GT] = ACTIONS(3641), + [anon_sym_out_GT_GT] = ACTIONS(3641), + [anon_sym_e_GT_GT] = ACTIONS(3641), + [anon_sym_o_GT_GT] = ACTIONS(3641), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3641), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3641), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3641), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3641), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3643), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3645), + }, + [1142] = { + [sym_comment] = STATE(1142), + [anon_sym_STAR_STAR] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1491), + [anon_sym_mod] = ACTIONS(1493), + [anon_sym_SLASH_SLASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_bit_DASHshl] = ACTIONS(1493), + [anon_sym_bit_DASHshr] = ACTIONS(1493), + [anon_sym_EQ_TILDE] = ACTIONS(1493), + [anon_sym_BANG_TILDE] = ACTIONS(1493), + [anon_sym_bit_DASHand] = ACTIONS(1493), + [anon_sym_bit_DASHxor] = ACTIONS(1493), + [anon_sym_bit_DASHor] = ACTIONS(1493), + [anon_sym_and] = ACTIONS(1493), + [anon_sym_xor] = ACTIONS(1493), + [anon_sym_or] = ACTIONS(1493), + [anon_sym_in] = ACTIONS(1493), + [anon_sym_not_DASHin] = ACTIONS(1493), + [anon_sym_has] = ACTIONS(1493), + [anon_sym_not_DASHhas] = ACTIONS(1493), + [anon_sym_starts_DASHwith] = ACTIONS(1493), + [anon_sym_ends_DASHwith] = ACTIONS(1493), + [anon_sym_EQ_EQ] = ACTIONS(1493), + [anon_sym_BANG_EQ] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1491), + [anon_sym_LT_EQ] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1493), + [aux_sym_cmd_identifier_token41] = ACTIONS(1491), + [sym__newline] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1491), + [anon_sym_err_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_GT_PIPE] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1491), + [anon_sym_GT2] = ACTIONS(1491), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_in2] = ACTIONS(1491), + [anon_sym_STAR2] = ACTIONS(1491), + [anon_sym_and2] = ACTIONS(1491), + [anon_sym_xor2] = ACTIONS(1491), + [anon_sym_or2] = ACTIONS(1491), + [anon_sym_not_DASHin2] = ACTIONS(1491), + [anon_sym_has2] = ACTIONS(1491), + [anon_sym_not_DASHhas2] = ACTIONS(1491), + [anon_sym_starts_DASHwith2] = ACTIONS(1491), + [anon_sym_ends_DASHwith2] = ACTIONS(1491), + [anon_sym_EQ_EQ2] = ACTIONS(1491), + [anon_sym_BANG_EQ2] = ACTIONS(1491), + [anon_sym_LT2] = ACTIONS(1491), + [anon_sym_LT_EQ2] = ACTIONS(1491), + [anon_sym_GT_EQ2] = ACTIONS(1491), + [anon_sym_EQ_TILDE2] = ACTIONS(1491), + [anon_sym_BANG_TILDE2] = ACTIONS(1491), + [anon_sym_STAR_STAR2] = ACTIONS(1491), + [anon_sym_PLUS_PLUS2] = ACTIONS(1491), + [anon_sym_SLASH2] = ACTIONS(1491), + [anon_sym_mod2] = ACTIONS(1491), + [anon_sym_SLASH_SLASH2] = ACTIONS(1491), + [anon_sym_PLUS2] = ACTIONS(1491), + [anon_sym_bit_DASHshl2] = ACTIONS(1491), + [anon_sym_bit_DASHshr2] = ACTIONS(1491), + [anon_sym_bit_DASHand2] = ACTIONS(1491), + [anon_sym_bit_DASHxor2] = ACTIONS(1491), + [anon_sym_bit_DASHor2] = ACTIONS(1491), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [sym_filesize_unit] = ACTIONS(1491), + [sym_duration_unit] = ACTIONS(1493), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3642), }, - [1198] = { - [sym_comment] = STATE(1198), - [anon_sym_STAR_STAR] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_SLASH] = ACTIONS(1484), - [anon_sym_mod] = ACTIONS(1486), - [anon_sym_SLASH_SLASH] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_bit_DASHshl] = ACTIONS(1486), - [anon_sym_bit_DASHshr] = ACTIONS(1486), - [anon_sym_EQ_TILDE] = ACTIONS(1486), - [anon_sym_BANG_TILDE] = ACTIONS(1486), - [anon_sym_bit_DASHand] = ACTIONS(1486), - [anon_sym_bit_DASHxor] = ACTIONS(1486), - [anon_sym_bit_DASHor] = ACTIONS(1486), - [anon_sym_and] = ACTIONS(1486), - [anon_sym_xor] = ACTIONS(1486), - [anon_sym_or] = ACTIONS(1486), - [anon_sym_in] = ACTIONS(1486), - [anon_sym_not_DASHin] = ACTIONS(1486), - [anon_sym_has] = ACTIONS(1486), - [anon_sym_not_DASHhas] = ACTIONS(1486), - [anon_sym_starts_DASHwith] = ACTIONS(1486), - [anon_sym_ends_DASHwith] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(1486), - [anon_sym_BANG_EQ] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1486), - [aux_sym_cmd_identifier_token41] = ACTIONS(1484), - [sym__newline] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_err_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_GT_PIPE] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1484), - [anon_sym_GT2] = ACTIONS(1484), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_in2] = ACTIONS(1484), - [anon_sym_STAR2] = ACTIONS(1484), - [anon_sym_and2] = ACTIONS(1484), - [anon_sym_xor2] = ACTIONS(1484), - [anon_sym_or2] = ACTIONS(1484), - [anon_sym_not_DASHin2] = ACTIONS(1484), - [anon_sym_has2] = ACTIONS(1484), - [anon_sym_not_DASHhas2] = ACTIONS(1484), - [anon_sym_starts_DASHwith2] = ACTIONS(1484), - [anon_sym_ends_DASHwith2] = ACTIONS(1484), - [anon_sym_EQ_EQ2] = ACTIONS(1484), - [anon_sym_BANG_EQ2] = ACTIONS(1484), - [anon_sym_LT2] = ACTIONS(1484), - [anon_sym_LT_EQ2] = ACTIONS(1484), - [anon_sym_GT_EQ2] = ACTIONS(1484), - [anon_sym_EQ_TILDE2] = ACTIONS(1484), - [anon_sym_BANG_TILDE2] = ACTIONS(1484), - [anon_sym_STAR_STAR2] = ACTIONS(1484), - [anon_sym_PLUS_PLUS2] = ACTIONS(1484), - [anon_sym_SLASH2] = ACTIONS(1484), - [anon_sym_mod2] = ACTIONS(1484), - [anon_sym_SLASH_SLASH2] = ACTIONS(1484), - [anon_sym_PLUS2] = ACTIONS(1484), - [anon_sym_bit_DASHshl2] = ACTIONS(1484), - [anon_sym_bit_DASHshr2] = ACTIONS(1484), - [anon_sym_bit_DASHand2] = ACTIONS(1484), - [anon_sym_bit_DASHxor2] = ACTIONS(1484), - [anon_sym_bit_DASHor2] = ACTIONS(1484), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [sym_filesize_unit] = ACTIONS(1484), - [sym_duration_unit] = ACTIONS(1486), + [1143] = { + [sym_env_var] = STATE(6548), + [sym_comment] = STATE(1143), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1143), + [aux_sym_cmd_identifier_token1] = ACTIONS(3526), + [aux_sym_cmd_identifier_token2] = ACTIONS(3532), + [aux_sym_cmd_identifier_token3] = ACTIONS(3532), + [aux_sym_cmd_identifier_token4] = ACTIONS(3532), + [aux_sym_cmd_identifier_token5] = ACTIONS(3532), + [aux_sym_cmd_identifier_token6] = ACTIONS(3532), + [aux_sym_cmd_identifier_token7] = ACTIONS(3532), + [aux_sym_cmd_identifier_token8] = ACTIONS(3532), + [aux_sym_cmd_identifier_token9] = ACTIONS(3526), + [aux_sym_cmd_identifier_token10] = ACTIONS(3532), + [aux_sym_cmd_identifier_token11] = ACTIONS(3532), + [aux_sym_cmd_identifier_token12] = ACTIONS(3532), + [aux_sym_cmd_identifier_token13] = ACTIONS(3526), + [aux_sym_cmd_identifier_token14] = ACTIONS(3532), + [aux_sym_cmd_identifier_token15] = ACTIONS(3526), + [aux_sym_cmd_identifier_token16] = ACTIONS(3532), + [aux_sym_cmd_identifier_token17] = ACTIONS(3532), + [aux_sym_cmd_identifier_token18] = ACTIONS(3532), + [aux_sym_cmd_identifier_token19] = ACTIONS(3532), + [aux_sym_cmd_identifier_token20] = ACTIONS(3532), + [aux_sym_cmd_identifier_token21] = ACTIONS(3532), + [aux_sym_cmd_identifier_token22] = ACTIONS(3532), + [aux_sym_cmd_identifier_token23] = ACTIONS(3532), + [aux_sym_cmd_identifier_token24] = ACTIONS(3532), + [aux_sym_cmd_identifier_token25] = ACTIONS(3532), + [aux_sym_cmd_identifier_token26] = ACTIONS(3532), + [aux_sym_cmd_identifier_token27] = ACTIONS(3532), + [aux_sym_cmd_identifier_token28] = ACTIONS(3532), + [aux_sym_cmd_identifier_token29] = ACTIONS(3532), + [aux_sym_cmd_identifier_token30] = ACTIONS(3532), + [aux_sym_cmd_identifier_token31] = ACTIONS(3532), + [aux_sym_cmd_identifier_token32] = ACTIONS(3532), + [aux_sym_cmd_identifier_token33] = ACTIONS(3532), + [aux_sym_cmd_identifier_token34] = ACTIONS(3526), + [aux_sym_cmd_identifier_token35] = ACTIONS(3532), + [aux_sym_cmd_identifier_token36] = ACTIONS(3532), + [aux_sym_cmd_identifier_token37] = ACTIONS(3532), + [aux_sym_cmd_identifier_token38] = ACTIONS(3526), + [aux_sym_cmd_identifier_token39] = ACTIONS(3532), + [aux_sym_cmd_identifier_token40] = ACTIONS(3532), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_LPAREN] = ACTIONS(3532), + [anon_sym_DOLLAR] = ACTIONS(3526), + [anon_sym_DASH2] = ACTIONS(3526), + [anon_sym_LBRACE] = ACTIONS(3532), + [anon_sym_DOT_DOT] = ACTIONS(3526), + [aux_sym_expr_unary_token1] = ACTIONS(3532), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3532), + [anon_sym_DOT_DOT_LT] = ACTIONS(3532), + [anon_sym_null] = ACTIONS(3526), + [anon_sym_true] = ACTIONS(3526), + [anon_sym_false] = ACTIONS(3526), + [aux_sym__val_number_decimal_token1] = ACTIONS(3526), + [aux_sym__val_number_decimal_token2] = ACTIONS(3532), + [aux_sym__val_number_decimal_token3] = ACTIONS(3532), + [aux_sym__val_number_decimal_token4] = ACTIONS(3532), + [aux_sym__val_number_token1] = ACTIONS(3532), + [aux_sym__val_number_token2] = ACTIONS(3532), + [aux_sym__val_number_token3] = ACTIONS(3532), + [aux_sym__val_number_token4] = ACTIONS(3526), + [aux_sym__val_number_token5] = ACTIONS(3526), + [aux_sym__val_number_token6] = ACTIONS(3526), + [anon_sym_0b] = ACTIONS(3526), + [anon_sym_0o] = ACTIONS(3526), + [anon_sym_0x] = ACTIONS(3526), + [sym_val_date] = ACTIONS(3532), + [anon_sym_DQUOTE] = ACTIONS(3532), + [sym__str_single_quotes] = ACTIONS(3532), + [sym__str_back_ticks] = ACTIONS(3532), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3532), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3532), + [aux_sym_env_var_token1] = ACTIONS(3652), + [anon_sym_CARET] = ACTIONS(3532), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3532), + }, + [1144] = { + [sym_comment] = STATE(1144), + [anon_sym_STAR_STAR] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_mod] = ACTIONS(1581), + [anon_sym_SLASH_SLASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_bit_DASHshl] = ACTIONS(1581), + [anon_sym_bit_DASHshr] = ACTIONS(1581), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_BANG_TILDE] = ACTIONS(1581), + [anon_sym_bit_DASHand] = ACTIONS(1581), + [anon_sym_bit_DASHxor] = ACTIONS(1581), + [anon_sym_bit_DASHor] = ACTIONS(1581), + [anon_sym_and] = ACTIONS(1581), + [anon_sym_xor] = ACTIONS(1581), + [anon_sym_or] = ACTIONS(1581), + [anon_sym_in] = ACTIONS(1581), + [anon_sym_not_DASHin] = ACTIONS(1581), + [anon_sym_has] = ACTIONS(1581), + [anon_sym_not_DASHhas] = ACTIONS(1581), + [anon_sym_starts_DASHwith] = ACTIONS(1581), + [anon_sym_ends_DASHwith] = ACTIONS(1581), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_BANG_EQ] = ACTIONS(1581), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1581), + [aux_sym_cmd_identifier_token41] = ACTIONS(1579), + [sym__newline] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_err_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_GT_PIPE] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1579), + [anon_sym_GT2] = ACTIONS(1579), + [anon_sym_DASH2] = ACTIONS(1579), + [anon_sym_in2] = ACTIONS(1579), + [anon_sym_STAR2] = ACTIONS(1579), + [anon_sym_and2] = ACTIONS(1579), + [anon_sym_xor2] = ACTIONS(1579), + [anon_sym_or2] = ACTIONS(1579), + [anon_sym_not_DASHin2] = ACTIONS(1579), + [anon_sym_has2] = ACTIONS(1579), + [anon_sym_not_DASHhas2] = ACTIONS(1579), + [anon_sym_starts_DASHwith2] = ACTIONS(1579), + [anon_sym_ends_DASHwith2] = ACTIONS(1579), + [anon_sym_EQ_EQ2] = ACTIONS(1579), + [anon_sym_BANG_EQ2] = ACTIONS(1579), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ2] = ACTIONS(1579), + [anon_sym_GT_EQ2] = ACTIONS(1579), + [anon_sym_EQ_TILDE2] = ACTIONS(1579), + [anon_sym_BANG_TILDE2] = ACTIONS(1579), + [anon_sym_STAR_STAR2] = ACTIONS(1579), + [anon_sym_PLUS_PLUS2] = ACTIONS(1579), + [anon_sym_SLASH2] = ACTIONS(1579), + [anon_sym_mod2] = ACTIONS(1579), + [anon_sym_SLASH_SLASH2] = ACTIONS(1579), + [anon_sym_PLUS2] = ACTIONS(1579), + [anon_sym_bit_DASHshl2] = ACTIONS(1579), + [anon_sym_bit_DASHshr2] = ACTIONS(1579), + [anon_sym_bit_DASHand2] = ACTIONS(1579), + [anon_sym_bit_DASHxor2] = ACTIONS(1579), + [anon_sym_bit_DASHor2] = ACTIONS(1579), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [sym_filesize_unit] = ACTIONS(1579), + [sym_duration_unit] = ACTIONS(1581), [anon_sym_POUND] = ACTIONS(3), }, - [1199] = { - [sym_comment] = STATE(1199), - [aux_sym_pipe_element_repeat1] = STATE(1199), - [aux_sym_cmd_identifier_token1] = ACTIONS(3710), - [aux_sym_cmd_identifier_token2] = ACTIONS(3710), - [aux_sym_cmd_identifier_token3] = ACTIONS(3710), - [aux_sym_cmd_identifier_token4] = ACTIONS(3710), - [aux_sym_cmd_identifier_token5] = ACTIONS(3710), - [aux_sym_cmd_identifier_token6] = ACTIONS(3710), - [aux_sym_cmd_identifier_token7] = ACTIONS(3710), - [aux_sym_cmd_identifier_token8] = ACTIONS(3710), - [aux_sym_cmd_identifier_token9] = ACTIONS(3710), - [aux_sym_cmd_identifier_token10] = ACTIONS(3710), - [aux_sym_cmd_identifier_token11] = ACTIONS(3710), - [aux_sym_cmd_identifier_token12] = ACTIONS(3710), - [aux_sym_cmd_identifier_token13] = ACTIONS(3710), - [aux_sym_cmd_identifier_token14] = ACTIONS(3710), - [aux_sym_cmd_identifier_token15] = ACTIONS(3710), - [aux_sym_cmd_identifier_token16] = ACTIONS(3710), - [aux_sym_cmd_identifier_token17] = ACTIONS(3710), - [aux_sym_cmd_identifier_token18] = ACTIONS(3710), - [aux_sym_cmd_identifier_token19] = ACTIONS(3710), - [aux_sym_cmd_identifier_token20] = ACTIONS(3710), - [aux_sym_cmd_identifier_token21] = ACTIONS(3710), - [aux_sym_cmd_identifier_token22] = ACTIONS(3710), - [aux_sym_cmd_identifier_token23] = ACTIONS(3710), - [aux_sym_cmd_identifier_token24] = ACTIONS(3710), - [aux_sym_cmd_identifier_token25] = ACTIONS(3710), - [aux_sym_cmd_identifier_token26] = ACTIONS(3710), - [aux_sym_cmd_identifier_token27] = ACTIONS(3710), - [aux_sym_cmd_identifier_token28] = ACTIONS(3710), - [aux_sym_cmd_identifier_token29] = ACTIONS(3710), - [aux_sym_cmd_identifier_token30] = ACTIONS(3710), - [aux_sym_cmd_identifier_token31] = ACTIONS(3710), - [aux_sym_cmd_identifier_token32] = ACTIONS(3710), - [aux_sym_cmd_identifier_token33] = ACTIONS(3710), - [aux_sym_cmd_identifier_token34] = ACTIONS(3710), - [aux_sym_cmd_identifier_token35] = ACTIONS(3710), - [aux_sym_cmd_identifier_token36] = ACTIONS(3710), - [aux_sym_cmd_identifier_token37] = ACTIONS(3710), - [aux_sym_cmd_identifier_token38] = ACTIONS(3710), - [aux_sym_cmd_identifier_token39] = ACTIONS(3710), - [aux_sym_cmd_identifier_token40] = ACTIONS(3710), - [sym__space] = ACTIONS(3712), - [anon_sym_LBRACK] = ACTIONS(3710), - [anon_sym_LPAREN] = ACTIONS(3710), - [anon_sym_DOLLAR] = ACTIONS(3710), - [anon_sym_DASH2] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3710), - [anon_sym_DOT_DOT] = ACTIONS(3710), - [aux_sym_expr_unary_token1] = ACTIONS(3710), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3710), - [anon_sym_DOT_DOT_LT] = ACTIONS(3710), - [anon_sym_null] = ACTIONS(3710), - [anon_sym_true] = ACTIONS(3710), - [anon_sym_false] = ACTIONS(3710), - [aux_sym__val_number_decimal_token1] = ACTIONS(3710), - [aux_sym__val_number_decimal_token2] = ACTIONS(3710), - [aux_sym__val_number_decimal_token3] = ACTIONS(3710), - [aux_sym__val_number_decimal_token4] = ACTIONS(3710), - [aux_sym__val_number_token1] = ACTIONS(3710), - [aux_sym__val_number_token2] = ACTIONS(3710), - [aux_sym__val_number_token3] = ACTIONS(3710), - [aux_sym__val_number_token4] = ACTIONS(3710), - [aux_sym__val_number_token5] = ACTIONS(3710), - [aux_sym__val_number_token6] = ACTIONS(3710), - [anon_sym_0b] = ACTIONS(3710), - [anon_sym_0o] = ACTIONS(3710), - [anon_sym_0x] = ACTIONS(3710), - [sym_val_date] = ACTIONS(3710), - [anon_sym_DQUOTE] = ACTIONS(3710), - [sym__str_single_quotes] = ACTIONS(3710), - [sym__str_back_ticks] = ACTIONS(3710), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3710), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3710), - [aux_sym_env_var_token1] = ACTIONS(3710), - [anon_sym_CARET] = ACTIONS(3710), + [1145] = { + [sym_comment] = STATE(1145), + [anon_sym_STAR_STAR] = ACTIONS(1680), + [anon_sym_PLUS_PLUS] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_SLASH] = ACTIONS(1678), + [anon_sym_mod] = ACTIONS(1680), + [anon_sym_SLASH_SLASH] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1680), + [anon_sym_bit_DASHshl] = ACTIONS(1680), + [anon_sym_bit_DASHshr] = ACTIONS(1680), + [anon_sym_EQ_TILDE] = ACTIONS(1680), + [anon_sym_BANG_TILDE] = ACTIONS(1680), + [anon_sym_bit_DASHand] = ACTIONS(1680), + [anon_sym_bit_DASHxor] = ACTIONS(1680), + [anon_sym_bit_DASHor] = ACTIONS(1680), + [anon_sym_and] = ACTIONS(1680), + [anon_sym_xor] = ACTIONS(1680), + [anon_sym_or] = ACTIONS(1680), + [anon_sym_in] = ACTIONS(1680), + [anon_sym_not_DASHin] = ACTIONS(1680), + [anon_sym_has] = ACTIONS(1680), + [anon_sym_not_DASHhas] = ACTIONS(1680), + [anon_sym_starts_DASHwith] = ACTIONS(1680), + [anon_sym_ends_DASHwith] = ACTIONS(1680), + [anon_sym_EQ_EQ] = ACTIONS(1680), + [anon_sym_BANG_EQ] = ACTIONS(1680), + [anon_sym_LT] = ACTIONS(1678), + [anon_sym_LT_EQ] = ACTIONS(1680), + [anon_sym_GT] = ACTIONS(1678), + [anon_sym_GT_EQ] = ACTIONS(1680), + [aux_sym_cmd_identifier_token41] = ACTIONS(1678), + [sym__newline] = ACTIONS(1678), + [anon_sym_PIPE] = ACTIONS(1678), + [anon_sym_err_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_GT_PIPE] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1678), + [anon_sym_GT2] = ACTIONS(1678), + [anon_sym_DASH2] = ACTIONS(1678), + [anon_sym_in2] = ACTIONS(1678), + [anon_sym_STAR2] = ACTIONS(1678), + [anon_sym_and2] = ACTIONS(1678), + [anon_sym_xor2] = ACTIONS(1678), + [anon_sym_or2] = ACTIONS(1678), + [anon_sym_not_DASHin2] = ACTIONS(1678), + [anon_sym_has2] = ACTIONS(1678), + [anon_sym_not_DASHhas2] = ACTIONS(1678), + [anon_sym_starts_DASHwith2] = ACTIONS(1678), + [anon_sym_ends_DASHwith2] = ACTIONS(1678), + [anon_sym_EQ_EQ2] = ACTIONS(1678), + [anon_sym_BANG_EQ2] = ACTIONS(1678), + [anon_sym_LT2] = ACTIONS(1678), + [anon_sym_LT_EQ2] = ACTIONS(1678), + [anon_sym_GT_EQ2] = ACTIONS(1678), + [anon_sym_EQ_TILDE2] = ACTIONS(1678), + [anon_sym_BANG_TILDE2] = ACTIONS(1678), + [anon_sym_STAR_STAR2] = ACTIONS(1678), + [anon_sym_PLUS_PLUS2] = ACTIONS(1678), + [anon_sym_SLASH2] = ACTIONS(1678), + [anon_sym_mod2] = ACTIONS(1678), + [anon_sym_SLASH_SLASH2] = ACTIONS(1678), + [anon_sym_PLUS2] = ACTIONS(1678), + [anon_sym_bit_DASHshl2] = ACTIONS(1678), + [anon_sym_bit_DASHshr2] = ACTIONS(1678), + [anon_sym_bit_DASHand2] = ACTIONS(1678), + [anon_sym_bit_DASHxor2] = ACTIONS(1678), + [anon_sym_bit_DASHor2] = ACTIONS(1678), + [anon_sym_DOT_DOT2] = ACTIONS(1678), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1680), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1680), + [sym_filesize_unit] = ACTIONS(1678), + [sym_duration_unit] = ACTIONS(1680), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3715), }, - [1200] = { - [sym_expr_parenthesized] = STATE(4533), - [sym_val_range] = STATE(5144), - [sym__val_range] = STATE(7902), - [sym__val_range_with_end] = STATE(7411), - [sym__value] = STATE(5144), - [sym_val_nothing] = STATE(4332), - [sym_val_bool] = STATE(4671), - [sym_val_variable] = STATE(4495), - [sym_val_number] = STATE(4332), - [sym__val_number_decimal] = STATE(4042), - [sym__val_number] = STATE(4342), - [sym_val_duration] = STATE(4332), - [sym_val_filesize] = STATE(4332), - [sym_val_binary] = STATE(4332), - [sym_val_string] = STATE(4332), - [sym__raw_str] = STATE(4187), - [sym__str_double_quotes] = STATE(4187), - [sym_val_interpolated] = STATE(4332), - [sym__inter_single_quotes] = STATE(5108), - [sym__inter_double_quotes] = STATE(4992), - [sym_val_list] = STATE(4332), - [sym_val_record] = STATE(4332), - [sym_val_table] = STATE(4332), - [sym_val_closure] = STATE(4332), - [sym__unquoted_in_record] = STATE(4724), - [sym__unquoted_in_record_with_expr] = STATE(5144), - [sym__unquoted_anonymous_prefix] = STATE(7356), - [sym_comment] = STATE(1200), - [aux_sym_shebang_repeat1] = STATE(1192), - [sym__newline] = ACTIONS(3649), - [anon_sym_LBRACK] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3653), - [anon_sym_DOLLAR] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3657), - [anon_sym_DOT_DOT] = ACTIONS(3659), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3661), - [anon_sym_DOT_DOT_LT] = ACTIONS(3661), - [anon_sym_null] = ACTIONS(3663), - [anon_sym_true] = ACTIONS(3665), - [anon_sym_false] = ACTIONS(3665), - [aux_sym__val_number_decimal_token1] = ACTIONS(3667), - [aux_sym__val_number_decimal_token2] = ACTIONS(3669), - [aux_sym__val_number_decimal_token3] = ACTIONS(3671), - [aux_sym__val_number_decimal_token4] = ACTIONS(3673), - [aux_sym__val_number_token1] = ACTIONS(3675), - [aux_sym__val_number_token2] = ACTIONS(3675), - [aux_sym__val_number_token3] = ACTIONS(3675), - [aux_sym__val_number_token4] = ACTIONS(3677), - [aux_sym__val_number_token5] = ACTIONS(3677), - [aux_sym__val_number_token6] = ACTIONS(3677), - [anon_sym_0b] = ACTIONS(3679), - [anon_sym_0o] = ACTIONS(3681), - [anon_sym_0x] = ACTIONS(3681), - [sym_val_date] = ACTIONS(3683), - [anon_sym_DQUOTE] = ACTIONS(3685), - [sym__str_single_quotes] = ACTIONS(3687), - [sym__str_back_ticks] = ACTIONS(3687), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3689), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3691), - [anon_sym_err_GT] = ACTIONS(3693), - [anon_sym_out_GT] = ACTIONS(3693), - [anon_sym_e_GT] = ACTIONS(3693), - [anon_sym_o_GT] = ACTIONS(3693), - [anon_sym_err_PLUSout_GT] = ACTIONS(3693), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3693), - [anon_sym_o_PLUSe_GT] = ACTIONS(3693), - [anon_sym_e_PLUSo_GT] = ACTIONS(3693), - [anon_sym_err_GT_GT] = ACTIONS(3695), - [anon_sym_out_GT_GT] = ACTIONS(3695), - [anon_sym_e_GT_GT] = ACTIONS(3695), - [anon_sym_o_GT_GT] = ACTIONS(3695), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3695), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3695), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3695), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3695), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3697), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3699), + [1146] = { + [sym_comment] = STATE(1146), + [anon_sym_STAR_STAR] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1499), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_bit_DASHshl] = ACTIONS(1501), + [anon_sym_bit_DASHshr] = ACTIONS(1501), + [anon_sym_EQ_TILDE] = ACTIONS(1501), + [anon_sym_BANG_TILDE] = ACTIONS(1501), + [anon_sym_bit_DASHand] = ACTIONS(1501), + [anon_sym_bit_DASHxor] = ACTIONS(1501), + [anon_sym_bit_DASHor] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1501), + [anon_sym_xor] = ACTIONS(1501), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_not_DASHin] = ACTIONS(1501), + [anon_sym_has] = ACTIONS(1501), + [anon_sym_not_DASHhas] = ACTIONS(1501), + [anon_sym_starts_DASHwith] = ACTIONS(1501), + [anon_sym_ends_DASHwith] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1501), + [anon_sym_BANG_EQ] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1499), + [sym__newline] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_err_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_GT_PIPE] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1499), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_in2] = ACTIONS(1499), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1499), + [anon_sym_xor2] = ACTIONS(1499), + [anon_sym_or2] = ACTIONS(1499), + [anon_sym_not_DASHin2] = ACTIONS(1499), + [anon_sym_has2] = ACTIONS(1499), + [anon_sym_not_DASHhas2] = ACTIONS(1499), + [anon_sym_starts_DASHwith2] = ACTIONS(1499), + [anon_sym_ends_DASHwith2] = ACTIONS(1499), + [anon_sym_EQ_EQ2] = ACTIONS(1499), + [anon_sym_BANG_EQ2] = ACTIONS(1499), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1499), + [anon_sym_GT_EQ2] = ACTIONS(1499), + [anon_sym_EQ_TILDE2] = ACTIONS(1499), + [anon_sym_BANG_TILDE2] = ACTIONS(1499), + [anon_sym_STAR_STAR2] = ACTIONS(1499), + [anon_sym_PLUS_PLUS2] = ACTIONS(1499), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1499), + [anon_sym_SLASH_SLASH2] = ACTIONS(1499), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1499), + [anon_sym_bit_DASHshr2] = ACTIONS(1499), + [anon_sym_bit_DASHand2] = ACTIONS(1499), + [anon_sym_bit_DASHxor2] = ACTIONS(1499), + [anon_sym_bit_DASHor2] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_POUND] = ACTIONS(3), }, - [1201] = { - [sym_expr_parenthesized] = STATE(4544), - [sym_val_range] = STATE(5023), - [sym__val_range] = STATE(7902), - [sym__val_range_with_end] = STATE(7411), - [sym__value] = STATE(5023), - [sym_val_nothing] = STATE(4332), - [sym_val_bool] = STATE(4671), - [sym_val_variable] = STATE(4495), - [sym_val_number] = STATE(4332), - [sym__val_number_decimal] = STATE(4042), - [sym__val_number] = STATE(4342), - [sym_val_duration] = STATE(4332), - [sym_val_filesize] = STATE(4332), - [sym_val_binary] = STATE(4332), - [sym_val_string] = STATE(4332), - [sym__raw_str] = STATE(4187), - [sym__str_double_quotes] = STATE(4187), - [sym_val_interpolated] = STATE(4332), - [sym__inter_single_quotes] = STATE(5108), - [sym__inter_double_quotes] = STATE(4992), - [sym_val_list] = STATE(4332), - [sym_val_record] = STATE(4332), - [sym_val_table] = STATE(4332), - [sym_val_closure] = STATE(4332), - [sym__unquoted_in_record] = STATE(4668), - [sym__unquoted_in_record_with_expr] = STATE(5023), - [sym__unquoted_anonymous_prefix] = STATE(7356), - [sym_comment] = STATE(1201), - [aux_sym_shebang_repeat1] = STATE(1193), - [sym__newline] = ACTIONS(3649), - [anon_sym_LBRACK] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3653), + [1147] = { + [sym_expr_parenthesized] = STATE(4271), + [sym_val_range] = STATE(4804), + [sym__val_range] = STATE(7120), + [sym__val_range_with_end] = STATE(6889), + [sym__value] = STATE(4804), + [sym_val_nothing] = STATE(4133), + [sym_val_bool] = STATE(4412), + [sym_val_variable] = STATE(4241), + [sym_val_number] = STATE(4133), + [sym__val_number_decimal] = STATE(3830), + [sym__val_number] = STATE(4134), + [sym_val_duration] = STATE(4133), + [sym_val_filesize] = STATE(4133), + [sym_val_binary] = STATE(4133), + [sym_val_string] = STATE(4133), + [sym__raw_str] = STATE(3983), + [sym__str_double_quotes] = STATE(3983), + [sym_val_interpolated] = STATE(4133), + [sym__inter_single_quotes] = STATE(4752), + [sym__inter_double_quotes] = STATE(4753), + [sym_val_list] = STATE(4133), + [sym_val_record] = STATE(4133), + [sym_val_table] = STATE(4133), + [sym_val_closure] = STATE(4133), + [sym__unquoted_in_record] = STATE(4331), + [sym__unquoted_in_record_with_expr] = STATE(4804), + [sym__unquoted_anonymous_prefix] = STATE(6692), + [sym_comment] = STATE(1147), + [aux_sym_shebang_repeat1] = STATE(1137), + [sym__newline] = ACTIONS(3595), + [anon_sym_LBRACK] = ACTIONS(3597), + [anon_sym_LPAREN] = ACTIONS(3599), + [anon_sym_DOLLAR] = ACTIONS(3601), + [anon_sym_LBRACE] = ACTIONS(3603), + [anon_sym_DOT_DOT] = ACTIONS(3605), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3607), + [anon_sym_DOT_DOT_LT] = ACTIONS(3607), + [anon_sym_null] = ACTIONS(3609), + [anon_sym_true] = ACTIONS(3611), + [anon_sym_false] = ACTIONS(3611), + [aux_sym__val_number_decimal_token1] = ACTIONS(3613), + [aux_sym__val_number_decimal_token2] = ACTIONS(3615), + [aux_sym__val_number_decimal_token3] = ACTIONS(3617), + [aux_sym__val_number_decimal_token4] = ACTIONS(3619), + [aux_sym__val_number_token1] = ACTIONS(3621), + [aux_sym__val_number_token2] = ACTIONS(3621), + [aux_sym__val_number_token3] = ACTIONS(3621), + [aux_sym__val_number_token4] = ACTIONS(3623), + [aux_sym__val_number_token5] = ACTIONS(3623), + [aux_sym__val_number_token6] = ACTIONS(3623), + [anon_sym_0b] = ACTIONS(3625), + [anon_sym_0o] = ACTIONS(3627), + [anon_sym_0x] = ACTIONS(3627), + [sym_val_date] = ACTIONS(3629), + [anon_sym_DQUOTE] = ACTIONS(3631), + [sym__str_single_quotes] = ACTIONS(3633), + [sym__str_back_ticks] = ACTIONS(3633), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3635), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3637), + [anon_sym_err_GT] = ACTIONS(3639), + [anon_sym_out_GT] = ACTIONS(3639), + [anon_sym_e_GT] = ACTIONS(3639), + [anon_sym_o_GT] = ACTIONS(3639), + [anon_sym_err_PLUSout_GT] = ACTIONS(3639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3639), + [anon_sym_o_PLUSe_GT] = ACTIONS(3639), + [anon_sym_e_PLUSo_GT] = ACTIONS(3639), + [anon_sym_err_GT_GT] = ACTIONS(3641), + [anon_sym_out_GT_GT] = ACTIONS(3641), + [anon_sym_e_GT_GT] = ACTIONS(3641), + [anon_sym_o_GT_GT] = ACTIONS(3641), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3641), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3641), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3641), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3641), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3643), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3645), + }, + [1148] = { + [sym_env_var] = STATE(6844), + [sym_comment] = STATE(1148), + [aux_sym_pipe_element_repeat2] = STATE(1148), + [aux_sym_cmd_identifier_token1] = ACTIONS(3655), + [aux_sym_cmd_identifier_token2] = ACTIONS(3657), + [aux_sym_cmd_identifier_token3] = ACTIONS(3657), + [aux_sym_cmd_identifier_token4] = ACTIONS(3657), + [aux_sym_cmd_identifier_token5] = ACTIONS(3657), + [aux_sym_cmd_identifier_token6] = ACTIONS(3657), + [aux_sym_cmd_identifier_token7] = ACTIONS(3657), + [aux_sym_cmd_identifier_token8] = ACTIONS(3657), + [aux_sym_cmd_identifier_token9] = ACTIONS(3655), + [aux_sym_cmd_identifier_token10] = ACTIONS(3657), + [aux_sym_cmd_identifier_token11] = ACTIONS(3657), + [aux_sym_cmd_identifier_token12] = ACTIONS(3657), + [aux_sym_cmd_identifier_token13] = ACTIONS(3655), + [aux_sym_cmd_identifier_token14] = ACTIONS(3657), + [aux_sym_cmd_identifier_token15] = ACTIONS(3655), + [aux_sym_cmd_identifier_token16] = ACTIONS(3657), + [aux_sym_cmd_identifier_token17] = ACTIONS(3657), + [aux_sym_cmd_identifier_token18] = ACTIONS(3657), + [aux_sym_cmd_identifier_token19] = ACTIONS(3657), + [aux_sym_cmd_identifier_token20] = ACTIONS(3657), + [aux_sym_cmd_identifier_token21] = ACTIONS(3657), + [aux_sym_cmd_identifier_token22] = ACTIONS(3657), + [aux_sym_cmd_identifier_token23] = ACTIONS(3657), + [aux_sym_cmd_identifier_token24] = ACTIONS(3657), + [aux_sym_cmd_identifier_token25] = ACTIONS(3657), + [aux_sym_cmd_identifier_token26] = ACTIONS(3657), + [aux_sym_cmd_identifier_token27] = ACTIONS(3657), + [aux_sym_cmd_identifier_token28] = ACTIONS(3657), + [aux_sym_cmd_identifier_token29] = ACTIONS(3657), + [aux_sym_cmd_identifier_token30] = ACTIONS(3657), + [aux_sym_cmd_identifier_token31] = ACTIONS(3657), + [aux_sym_cmd_identifier_token32] = ACTIONS(3657), + [aux_sym_cmd_identifier_token33] = ACTIONS(3657), + [aux_sym_cmd_identifier_token34] = ACTIONS(3655), + [aux_sym_cmd_identifier_token35] = ACTIONS(3657), + [aux_sym_cmd_identifier_token36] = ACTIONS(3657), + [aux_sym_cmd_identifier_token37] = ACTIONS(3657), + [aux_sym_cmd_identifier_token38] = ACTIONS(3655), + [aux_sym_cmd_identifier_token39] = ACTIONS(3657), + [aux_sym_cmd_identifier_token40] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_LPAREN] = ACTIONS(3657), [anon_sym_DOLLAR] = ACTIONS(3655), + [anon_sym_DASH2] = ACTIONS(3655), [anon_sym_LBRACE] = ACTIONS(3657), - [anon_sym_DOT_DOT] = ACTIONS(3659), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3661), - [anon_sym_DOT_DOT_LT] = ACTIONS(3661), - [anon_sym_null] = ACTIONS(3663), - [anon_sym_true] = ACTIONS(3665), - [anon_sym_false] = ACTIONS(3665), - [aux_sym__val_number_decimal_token1] = ACTIONS(3667), - [aux_sym__val_number_decimal_token2] = ACTIONS(3669), - [aux_sym__val_number_decimal_token3] = ACTIONS(3671), - [aux_sym__val_number_decimal_token4] = ACTIONS(3673), - [aux_sym__val_number_token1] = ACTIONS(3675), - [aux_sym__val_number_token2] = ACTIONS(3675), - [aux_sym__val_number_token3] = ACTIONS(3675), - [aux_sym__val_number_token4] = ACTIONS(3677), - [aux_sym__val_number_token5] = ACTIONS(3677), - [aux_sym__val_number_token6] = ACTIONS(3677), - [anon_sym_0b] = ACTIONS(3679), - [anon_sym_0o] = ACTIONS(3681), - [anon_sym_0x] = ACTIONS(3681), - [sym_val_date] = ACTIONS(3683), - [anon_sym_DQUOTE] = ACTIONS(3685), - [sym__str_single_quotes] = ACTIONS(3687), - [sym__str_back_ticks] = ACTIONS(3687), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3689), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3691), - [anon_sym_err_GT] = ACTIONS(3693), - [anon_sym_out_GT] = ACTIONS(3693), - [anon_sym_e_GT] = ACTIONS(3693), - [anon_sym_o_GT] = ACTIONS(3693), - [anon_sym_err_PLUSout_GT] = ACTIONS(3693), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3693), - [anon_sym_o_PLUSe_GT] = ACTIONS(3693), - [anon_sym_e_PLUSo_GT] = ACTIONS(3693), - [anon_sym_err_GT_GT] = ACTIONS(3695), - [anon_sym_out_GT_GT] = ACTIONS(3695), - [anon_sym_e_GT_GT] = ACTIONS(3695), - [anon_sym_o_GT_GT] = ACTIONS(3695), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3695), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3695), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3695), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3695), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3697), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3699), - }, - [1202] = { - [sym_comment] = STATE(1202), - [aux_sym_shebang_repeat1] = STATE(1202), - [aux_sym_cmd_identifier_token1] = ACTIONS(1284), - [aux_sym_cmd_identifier_token2] = ACTIONS(1286), - [aux_sym_cmd_identifier_token3] = ACTIONS(1286), - [aux_sym_cmd_identifier_token4] = ACTIONS(1286), - [aux_sym_cmd_identifier_token5] = ACTIONS(1286), - [aux_sym_cmd_identifier_token6] = ACTIONS(1286), - [aux_sym_cmd_identifier_token7] = ACTIONS(1286), - [aux_sym_cmd_identifier_token8] = ACTIONS(1286), - [aux_sym_cmd_identifier_token9] = ACTIONS(1284), - [aux_sym_cmd_identifier_token10] = ACTIONS(1286), - [aux_sym_cmd_identifier_token11] = ACTIONS(1286), - [aux_sym_cmd_identifier_token12] = ACTIONS(1286), - [aux_sym_cmd_identifier_token13] = ACTIONS(1284), - [aux_sym_cmd_identifier_token14] = ACTIONS(1286), - [aux_sym_cmd_identifier_token15] = ACTIONS(1284), - [aux_sym_cmd_identifier_token16] = ACTIONS(1286), - [aux_sym_cmd_identifier_token17] = ACTIONS(1286), - [aux_sym_cmd_identifier_token18] = ACTIONS(1286), - [aux_sym_cmd_identifier_token19] = ACTIONS(1286), - [aux_sym_cmd_identifier_token20] = ACTIONS(1286), - [aux_sym_cmd_identifier_token21] = ACTIONS(1286), - [aux_sym_cmd_identifier_token22] = ACTIONS(1286), - [aux_sym_cmd_identifier_token23] = ACTIONS(1286), - [aux_sym_cmd_identifier_token24] = ACTIONS(1286), - [aux_sym_cmd_identifier_token25] = ACTIONS(1286), - [aux_sym_cmd_identifier_token26] = ACTIONS(1286), - [aux_sym_cmd_identifier_token27] = ACTIONS(1286), - [aux_sym_cmd_identifier_token28] = ACTIONS(1286), - [aux_sym_cmd_identifier_token29] = ACTIONS(1286), - [aux_sym_cmd_identifier_token30] = ACTIONS(1286), - [aux_sym_cmd_identifier_token31] = ACTIONS(1286), - [aux_sym_cmd_identifier_token32] = ACTIONS(1286), - [aux_sym_cmd_identifier_token33] = ACTIONS(1286), - [aux_sym_cmd_identifier_token34] = ACTIONS(1284), - [aux_sym_cmd_identifier_token35] = ACTIONS(1286), - [aux_sym_cmd_identifier_token36] = ACTIONS(1286), - [aux_sym_cmd_identifier_token37] = ACTIONS(1286), - [aux_sym_cmd_identifier_token38] = ACTIONS(1284), - [aux_sym_cmd_identifier_token39] = ACTIONS(1286), - [aux_sym_cmd_identifier_token40] = ACTIONS(1286), - [sym__newline] = ACTIONS(3717), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1284), - [anon_sym_DASH2] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_DOT_DOT] = ACTIONS(1284), - [aux_sym_expr_unary_token1] = ACTIONS(1286), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1286), - [anon_sym_DOT_DOT_LT] = ACTIONS(1286), - [anon_sym_null] = ACTIONS(1284), - [anon_sym_true] = ACTIONS(1284), - [anon_sym_false] = ACTIONS(1284), - [aux_sym__val_number_decimal_token1] = ACTIONS(1284), - [aux_sym__val_number_decimal_token2] = ACTIONS(1286), - [aux_sym__val_number_decimal_token3] = ACTIONS(1286), - [aux_sym__val_number_decimal_token4] = ACTIONS(1286), - [aux_sym__val_number_token1] = ACTIONS(1286), - [aux_sym__val_number_token2] = ACTIONS(1286), - [aux_sym__val_number_token3] = ACTIONS(1286), - [aux_sym__val_number_token4] = ACTIONS(1284), - [aux_sym__val_number_token5] = ACTIONS(1284), - [aux_sym__val_number_token6] = ACTIONS(1284), - [anon_sym_0b] = ACTIONS(1284), - [anon_sym_0o] = ACTIONS(1284), - [anon_sym_0x] = ACTIONS(1284), - [sym_val_date] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym__str_single_quotes] = ACTIONS(1286), - [sym__str_back_ticks] = ACTIONS(1286), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1286), - [anon_sym_CARET] = ACTIONS(1286), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1286), + [anon_sym_DOT_DOT] = ACTIONS(3655), + [aux_sym_expr_unary_token1] = ACTIONS(3657), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3657), + [anon_sym_DOT_DOT_LT] = ACTIONS(3657), + [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(3657), + [aux_sym__val_number_decimal_token3] = ACTIONS(3657), + [aux_sym__val_number_decimal_token4] = ACTIONS(3657), + [aux_sym__val_number_token1] = ACTIONS(3657), + [aux_sym__val_number_token2] = ACTIONS(3657), + [aux_sym__val_number_token3] = ACTIONS(3657), + [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(3657), + [anon_sym_DQUOTE] = ACTIONS(3657), + [sym__str_single_quotes] = ACTIONS(3657), + [sym__str_back_ticks] = ACTIONS(3657), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3657), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3657), + [aux_sym_env_var_token1] = ACTIONS(3659), + [anon_sym_CARET] = ACTIONS(3657), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3657), }, - [1203] = { - [sym_comment] = STATE(1203), - [aux_sym_cmd_identifier_token1] = ACTIONS(1280), - [aux_sym_cmd_identifier_token2] = ACTIONS(1278), - [aux_sym_cmd_identifier_token3] = ACTIONS(1278), - [aux_sym_cmd_identifier_token4] = ACTIONS(1278), - [aux_sym_cmd_identifier_token5] = ACTIONS(1278), - [aux_sym_cmd_identifier_token6] = ACTIONS(1278), - [aux_sym_cmd_identifier_token7] = ACTIONS(1278), - [aux_sym_cmd_identifier_token8] = ACTIONS(1278), - [aux_sym_cmd_identifier_token9] = ACTIONS(1280), - [aux_sym_cmd_identifier_token10] = ACTIONS(1278), - [aux_sym_cmd_identifier_token11] = ACTIONS(1278), - [aux_sym_cmd_identifier_token12] = ACTIONS(1278), - [aux_sym_cmd_identifier_token13] = ACTIONS(1280), - [aux_sym_cmd_identifier_token14] = ACTIONS(1278), - [aux_sym_cmd_identifier_token15] = ACTIONS(1280), - [aux_sym_cmd_identifier_token16] = ACTIONS(1278), - [aux_sym_cmd_identifier_token17] = ACTIONS(1278), - [aux_sym_cmd_identifier_token18] = ACTIONS(1278), - [aux_sym_cmd_identifier_token19] = ACTIONS(1278), - [aux_sym_cmd_identifier_token20] = ACTIONS(1278), - [aux_sym_cmd_identifier_token21] = ACTIONS(1278), - [aux_sym_cmd_identifier_token22] = ACTIONS(1278), - [aux_sym_cmd_identifier_token23] = ACTIONS(1278), - [aux_sym_cmd_identifier_token24] = ACTIONS(1278), - [aux_sym_cmd_identifier_token25] = ACTIONS(1278), - [aux_sym_cmd_identifier_token26] = ACTIONS(1278), - [aux_sym_cmd_identifier_token27] = ACTIONS(1278), - [aux_sym_cmd_identifier_token28] = ACTIONS(1278), - [aux_sym_cmd_identifier_token29] = ACTIONS(1278), - [aux_sym_cmd_identifier_token30] = ACTIONS(1278), - [aux_sym_cmd_identifier_token31] = ACTIONS(1278), - [aux_sym_cmd_identifier_token32] = ACTIONS(1278), - [aux_sym_cmd_identifier_token33] = ACTIONS(1278), - [aux_sym_cmd_identifier_token34] = ACTIONS(1280), - [aux_sym_cmd_identifier_token35] = ACTIONS(1278), - [aux_sym_cmd_identifier_token36] = ACTIONS(1278), - [aux_sym_cmd_identifier_token37] = ACTIONS(1278), - [aux_sym_cmd_identifier_token38] = ACTIONS(1280), - [aux_sym_cmd_identifier_token39] = ACTIONS(1278), - [aux_sym_cmd_identifier_token40] = ACTIONS(1278), - [sym__newline] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_DOLLAR] = ACTIONS(1280), - [anon_sym_DASH2] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [aux_sym_expr_unary_token1] = ACTIONS(1278), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1278), - [anon_sym_DOT_DOT_LT] = ACTIONS(1278), - [anon_sym_null] = ACTIONS(1280), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [aux_sym__val_number_decimal_token1] = ACTIONS(1280), - [aux_sym__val_number_decimal_token2] = ACTIONS(1278), - [aux_sym__val_number_decimal_token3] = ACTIONS(1278), - [aux_sym__val_number_decimal_token4] = ACTIONS(1278), - [aux_sym__val_number_token1] = ACTIONS(1278), - [aux_sym__val_number_token2] = ACTIONS(1278), - [aux_sym__val_number_token3] = ACTIONS(1278), - [aux_sym__val_number_token4] = ACTIONS(1280), - [aux_sym__val_number_token5] = ACTIONS(1280), - [aux_sym__val_number_token6] = ACTIONS(1280), - [anon_sym_0b] = ACTIONS(1280), - [anon_sym_0o] = ACTIONS(1280), - [anon_sym_0x] = ACTIONS(1280), - [sym_val_date] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym__str_single_quotes] = ACTIONS(1278), - [sym__str_back_ticks] = ACTIONS(1278), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1278), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1278), - [anon_sym_CARET] = ACTIONS(1278), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1278), + [1149] = { + [sym_comment] = STATE(1149), + [aux_sym_pipe_element_repeat1] = STATE(1135), + [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__space] = ACTIONS(3662), + [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), }, - [1204] = { - [sym_match_arm] = STATE(7172), - [sym_default_arm] = STATE(7172), - [sym_match_pattern] = STATE(7567), - [sym__match_pattern] = STATE(6127), - [sym__match_pattern_expression] = STATE(7169), - [sym__match_pattern_value] = STATE(7170), - [sym__match_pattern_list] = STATE(7173), - [sym__match_pattern_record] = STATE(7174), - [sym_expr_parenthesized] = STATE(5946), - [sym_val_range] = STATE(7170), - [sym__val_range] = STATE(7723), - [sym_val_nothing] = STATE(7176), - [sym_val_bool] = STATE(6722), - [sym_val_variable] = STATE(5947), - [sym_val_number] = STATE(7176), - [sym__val_number_decimal] = STATE(5407), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(7176), - [sym_val_filesize] = STATE(7176), - [sym_val_binary] = STATE(7176), - [sym_val_string] = STATE(7176), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_table] = STATE(7176), - [sym_unquoted] = STATE(7181), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1204), - [aux_sym_shebang_repeat1] = STATE(3089), - [aux_sym_ctrl_match_repeat1] = STATE(1220), - [sym__newline] = ACTIONS(3606), - [anon_sym_LBRACK] = ACTIONS(3608), + [1150] = { + [sym_match_arm] = STATE(6419), + [sym_default_arm] = STATE(6419), + [sym_match_pattern] = STATE(7019), + [sym__match_pattern] = STATE(5730), + [sym__match_pattern_expression] = STATE(6638), + [sym__match_pattern_value] = STATE(6639), + [sym__match_pattern_list] = STATE(6641), + [sym__match_pattern_record] = STATE(6644), + [sym_expr_parenthesized] = STATE(5503), + [sym_val_range] = STATE(6639), + [sym__val_range] = STATE(7094), + [sym_val_nothing] = STATE(6650), + [sym_val_bool] = STATE(5921), + [sym_val_variable] = STATE(5516), + [sym_val_number] = STATE(6650), + [sym__val_number_decimal] = STATE(5111), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(6650), + [sym_val_filesize] = STATE(6650), + [sym_val_binary] = STATE(6650), + [sym_val_string] = STATE(6650), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_table] = STATE(6650), + [sym_unquoted] = STATE(6681), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1150), + [aux_sym_shebang_repeat1] = STATE(2917), + [aux_sym_ctrl_match_repeat1] = STATE(1167), + [sym__newline] = ACTIONS(3546), + [anon_sym_LBRACK] = ACTIONS(3548), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym__] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(3618), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), - [anon_sym_DOT_DOT_LT] = ACTIONS(3620), - [anon_sym_null] = ACTIONS(3622), - [anon_sym_true] = ACTIONS(3624), - [anon_sym_false] = ACTIONS(3624), - [aux_sym__val_number_decimal_token1] = ACTIONS(3626), - [aux_sym__val_number_decimal_token2] = ACTIONS(3628), - [aux_sym__val_number_decimal_token3] = ACTIONS(3630), - [aux_sym__val_number_decimal_token4] = ACTIONS(3632), + [anon_sym_DOLLAR] = ACTIONS(3550), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym__] = ACTIONS(3556), + [anon_sym_DOT_DOT] = ACTIONS(3558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3560), + [anon_sym_DOT_DOT_LT] = ACTIONS(3560), + [anon_sym_null] = ACTIONS(3562), + [anon_sym_true] = ACTIONS(3564), + [anon_sym_false] = ACTIONS(3564), + [aux_sym__val_number_decimal_token1] = ACTIONS(3566), + [aux_sym__val_number_decimal_token2] = ACTIONS(3568), + [aux_sym__val_number_decimal_token3] = ACTIONS(3570), + [aux_sym__val_number_decimal_token4] = ACTIONS(3572), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3634), - [aux_sym__val_number_token5] = ACTIONS(3634), - [aux_sym__val_number_token6] = ACTIONS(3634), + [aux_sym__val_number_token4] = ACTIONS(3574), + [aux_sym__val_number_token5] = ACTIONS(3574), + [aux_sym__val_number_token6] = ACTIONS(3574), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3636), + [sym_val_date] = ACTIONS(3576), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1205] = { - [sym_match_arm] = STATE(7024), - [sym_default_arm] = STATE(7024), - [sym_match_pattern] = STATE(7567), - [sym__match_pattern] = STATE(6127), - [sym__match_pattern_expression] = STATE(7169), - [sym__match_pattern_value] = STATE(7170), - [sym__match_pattern_list] = STATE(7173), - [sym__match_pattern_record] = STATE(7174), - [sym_expr_parenthesized] = STATE(5946), - [sym_val_range] = STATE(7170), - [sym__val_range] = STATE(7723), - [sym_val_nothing] = STATE(7176), - [sym_val_bool] = STATE(6722), - [sym_val_variable] = STATE(5947), - [sym_val_number] = STATE(7176), - [sym__val_number_decimal] = STATE(5407), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(7176), - [sym_val_filesize] = STATE(7176), - [sym_val_binary] = STATE(7176), - [sym_val_string] = STATE(7176), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_table] = STATE(7176), - [sym_unquoted] = STATE(7181), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1205), - [aux_sym_shebang_repeat1] = STATE(3089), - [aux_sym_ctrl_match_repeat1] = STATE(1236), - [sym__newline] = ACTIONS(3606), - [anon_sym_LBRACK] = ACTIONS(3608), + [1151] = { + [sym_comment] = STATE(1151), + [aux_sym_cmd_identifier_token1] = ACTIONS(3664), + [aux_sym_cmd_identifier_token2] = ACTIONS(3664), + [aux_sym_cmd_identifier_token3] = ACTIONS(3664), + [aux_sym_cmd_identifier_token4] = ACTIONS(3664), + [aux_sym_cmd_identifier_token5] = ACTIONS(3664), + [aux_sym_cmd_identifier_token6] = ACTIONS(3664), + [aux_sym_cmd_identifier_token7] = ACTIONS(3664), + [aux_sym_cmd_identifier_token8] = ACTIONS(3664), + [aux_sym_cmd_identifier_token9] = ACTIONS(3664), + [aux_sym_cmd_identifier_token10] = ACTIONS(3664), + [aux_sym_cmd_identifier_token11] = ACTIONS(3664), + [aux_sym_cmd_identifier_token12] = ACTIONS(3664), + [aux_sym_cmd_identifier_token13] = ACTIONS(3664), + [aux_sym_cmd_identifier_token14] = ACTIONS(3664), + [aux_sym_cmd_identifier_token15] = ACTIONS(3664), + [aux_sym_cmd_identifier_token16] = ACTIONS(3664), + [aux_sym_cmd_identifier_token17] = ACTIONS(3664), + [aux_sym_cmd_identifier_token18] = ACTIONS(3664), + [aux_sym_cmd_identifier_token19] = ACTIONS(3664), + [aux_sym_cmd_identifier_token20] = ACTIONS(3664), + [aux_sym_cmd_identifier_token21] = ACTIONS(3664), + [aux_sym_cmd_identifier_token22] = ACTIONS(3664), + [aux_sym_cmd_identifier_token23] = ACTIONS(3664), + [aux_sym_cmd_identifier_token24] = ACTIONS(3664), + [aux_sym_cmd_identifier_token25] = ACTIONS(3664), + [aux_sym_cmd_identifier_token26] = ACTIONS(3664), + [aux_sym_cmd_identifier_token27] = ACTIONS(3664), + [aux_sym_cmd_identifier_token28] = ACTIONS(3664), + [aux_sym_cmd_identifier_token29] = ACTIONS(3664), + [aux_sym_cmd_identifier_token30] = ACTIONS(3664), + [aux_sym_cmd_identifier_token31] = ACTIONS(3664), + [aux_sym_cmd_identifier_token32] = ACTIONS(3664), + [aux_sym_cmd_identifier_token33] = ACTIONS(3664), + [aux_sym_cmd_identifier_token34] = ACTIONS(3664), + [aux_sym_cmd_identifier_token35] = ACTIONS(3664), + [aux_sym_cmd_identifier_token36] = ACTIONS(3664), + [aux_sym_cmd_identifier_token37] = ACTIONS(3664), + [aux_sym_cmd_identifier_token38] = ACTIONS(3664), + [aux_sym_cmd_identifier_token39] = ACTIONS(3664), + [aux_sym_cmd_identifier_token40] = ACTIONS(3664), + [sym__space] = ACTIONS(3666), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_DOLLAR] = ACTIONS(3664), + [anon_sym_DASH2] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3664), + [anon_sym_DOT_DOT] = ACTIONS(3664), + [aux_sym_expr_unary_token1] = ACTIONS(3664), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3664), + [anon_sym_DOT_DOT_LT] = ACTIONS(3664), + [anon_sym_null] = ACTIONS(3664), + [anon_sym_true] = ACTIONS(3664), + [anon_sym_false] = ACTIONS(3664), + [aux_sym__val_number_decimal_token1] = ACTIONS(3664), + [aux_sym__val_number_decimal_token2] = ACTIONS(3664), + [aux_sym__val_number_decimal_token3] = ACTIONS(3664), + [aux_sym__val_number_decimal_token4] = ACTIONS(3664), + [aux_sym__val_number_token1] = ACTIONS(3664), + [aux_sym__val_number_token2] = ACTIONS(3664), + [aux_sym__val_number_token3] = ACTIONS(3664), + [aux_sym__val_number_token4] = ACTIONS(3664), + [aux_sym__val_number_token5] = ACTIONS(3664), + [aux_sym__val_number_token6] = ACTIONS(3664), + [anon_sym_0b] = ACTIONS(3664), + [anon_sym_0o] = ACTIONS(3664), + [anon_sym_0x] = ACTIONS(3664), + [sym_val_date] = ACTIONS(3664), + [anon_sym_DQUOTE] = ACTIONS(3664), + [sym__str_single_quotes] = ACTIONS(3664), + [sym__str_back_ticks] = ACTIONS(3664), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3664), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3664), + [aux_sym_env_var_token1] = ACTIONS(3664), + [anon_sym_CARET] = ACTIONS(3664), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3666), + }, + [1152] = { + [sym_match_arm] = STATE(6380), + [sym_default_arm] = STATE(6380), + [sym_match_pattern] = STATE(7019), + [sym__match_pattern] = STATE(5730), + [sym__match_pattern_expression] = STATE(6638), + [sym__match_pattern_value] = STATE(6639), + [sym__match_pattern_list] = STATE(6641), + [sym__match_pattern_record] = STATE(6644), + [sym_expr_parenthesized] = STATE(5503), + [sym_val_range] = STATE(6639), + [sym__val_range] = STATE(7094), + [sym_val_nothing] = STATE(6650), + [sym_val_bool] = STATE(5921), + [sym_val_variable] = STATE(5516), + [sym_val_number] = STATE(6650), + [sym__val_number_decimal] = STATE(5111), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(6650), + [sym_val_filesize] = STATE(6650), + [sym_val_binary] = STATE(6650), + [sym_val_string] = STATE(6650), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_table] = STATE(6650), + [sym_unquoted] = STATE(6681), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1152), + [aux_sym_shebang_repeat1] = STATE(2917), + [aux_sym_ctrl_match_repeat1] = STATE(1172), + [sym__newline] = ACTIONS(3546), + [anon_sym_LBRACK] = ACTIONS(3548), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym__] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(3618), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), - [anon_sym_DOT_DOT_LT] = ACTIONS(3620), - [anon_sym_null] = ACTIONS(3622), - [anon_sym_true] = ACTIONS(3624), - [anon_sym_false] = ACTIONS(3624), - [aux_sym__val_number_decimal_token1] = ACTIONS(3626), - [aux_sym__val_number_decimal_token2] = ACTIONS(3628), - [aux_sym__val_number_decimal_token3] = ACTIONS(3630), - [aux_sym__val_number_decimal_token4] = ACTIONS(3632), + [anon_sym_DOLLAR] = ACTIONS(3550), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym__] = ACTIONS(3556), + [anon_sym_DOT_DOT] = ACTIONS(3558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3560), + [anon_sym_DOT_DOT_LT] = ACTIONS(3560), + [anon_sym_null] = ACTIONS(3562), + [anon_sym_true] = ACTIONS(3564), + [anon_sym_false] = ACTIONS(3564), + [aux_sym__val_number_decimal_token1] = ACTIONS(3566), + [aux_sym__val_number_decimal_token2] = ACTIONS(3568), + [aux_sym__val_number_decimal_token3] = ACTIONS(3570), + [aux_sym__val_number_decimal_token4] = ACTIONS(3572), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3634), - [aux_sym__val_number_token5] = ACTIONS(3634), - [aux_sym__val_number_token6] = ACTIONS(3634), + [aux_sym__val_number_token4] = ACTIONS(3574), + [aux_sym__val_number_token5] = ACTIONS(3574), + [aux_sym__val_number_token6] = ACTIONS(3574), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3636), + [sym_val_date] = ACTIONS(3576), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1206] = { - [sym_comment] = STATE(1206), - [aux_sym_cmd_identifier_token1] = ACTIONS(3720), - [aux_sym_cmd_identifier_token2] = ACTIONS(3720), - [aux_sym_cmd_identifier_token3] = ACTIONS(3720), - [aux_sym_cmd_identifier_token4] = ACTIONS(3720), - [aux_sym_cmd_identifier_token5] = ACTIONS(3720), - [aux_sym_cmd_identifier_token6] = ACTIONS(3720), - [aux_sym_cmd_identifier_token7] = ACTIONS(3720), - [aux_sym_cmd_identifier_token8] = ACTIONS(3720), - [aux_sym_cmd_identifier_token9] = ACTIONS(3720), - [aux_sym_cmd_identifier_token10] = ACTIONS(3720), - [aux_sym_cmd_identifier_token11] = ACTIONS(3720), - [aux_sym_cmd_identifier_token12] = ACTIONS(3720), - [aux_sym_cmd_identifier_token13] = ACTIONS(3720), - [aux_sym_cmd_identifier_token14] = ACTIONS(3720), - [aux_sym_cmd_identifier_token15] = ACTIONS(3720), - [aux_sym_cmd_identifier_token16] = ACTIONS(3720), - [aux_sym_cmd_identifier_token17] = ACTIONS(3720), - [aux_sym_cmd_identifier_token18] = ACTIONS(3720), - [aux_sym_cmd_identifier_token19] = ACTIONS(3720), - [aux_sym_cmd_identifier_token20] = ACTIONS(3720), - [aux_sym_cmd_identifier_token21] = ACTIONS(3720), - [aux_sym_cmd_identifier_token22] = ACTIONS(3720), - [aux_sym_cmd_identifier_token23] = ACTIONS(3720), - [aux_sym_cmd_identifier_token24] = ACTIONS(3720), - [aux_sym_cmd_identifier_token25] = ACTIONS(3720), - [aux_sym_cmd_identifier_token26] = ACTIONS(3720), - [aux_sym_cmd_identifier_token27] = ACTIONS(3720), - [aux_sym_cmd_identifier_token28] = ACTIONS(3720), - [aux_sym_cmd_identifier_token29] = ACTIONS(3720), - [aux_sym_cmd_identifier_token30] = ACTIONS(3720), - [aux_sym_cmd_identifier_token31] = ACTIONS(3720), - [aux_sym_cmd_identifier_token32] = ACTIONS(3720), - [aux_sym_cmd_identifier_token33] = ACTIONS(3720), - [aux_sym_cmd_identifier_token34] = ACTIONS(3720), - [aux_sym_cmd_identifier_token35] = ACTIONS(3720), - [aux_sym_cmd_identifier_token36] = ACTIONS(3720), - [aux_sym_cmd_identifier_token37] = ACTIONS(3720), - [aux_sym_cmd_identifier_token38] = ACTIONS(3720), - [aux_sym_cmd_identifier_token39] = ACTIONS(3720), - [aux_sym_cmd_identifier_token40] = ACTIONS(3720), - [sym__space] = ACTIONS(3722), - [anon_sym_LBRACK] = ACTIONS(3720), - [anon_sym_LPAREN] = ACTIONS(3720), - [anon_sym_DOLLAR] = ACTIONS(3720), - [anon_sym_DASH2] = ACTIONS(3720), - [anon_sym_LBRACE] = ACTIONS(3720), - [anon_sym_DOT_DOT] = ACTIONS(3720), - [aux_sym_expr_unary_token1] = ACTIONS(3720), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3720), - [anon_sym_DOT_DOT_LT] = ACTIONS(3720), - [anon_sym_null] = ACTIONS(3720), - [anon_sym_true] = ACTIONS(3720), - [anon_sym_false] = ACTIONS(3720), - [aux_sym__val_number_decimal_token1] = ACTIONS(3720), - [aux_sym__val_number_decimal_token2] = ACTIONS(3720), - [aux_sym__val_number_decimal_token3] = ACTIONS(3720), - [aux_sym__val_number_decimal_token4] = ACTIONS(3720), - [aux_sym__val_number_token1] = ACTIONS(3720), - [aux_sym__val_number_token2] = ACTIONS(3720), - [aux_sym__val_number_token3] = ACTIONS(3720), - [aux_sym__val_number_token4] = ACTIONS(3720), - [aux_sym__val_number_token5] = ACTIONS(3720), - [aux_sym__val_number_token6] = ACTIONS(3720), - [anon_sym_0b] = ACTIONS(3720), - [anon_sym_0o] = ACTIONS(3720), - [anon_sym_0x] = ACTIONS(3720), - [sym_val_date] = ACTIONS(3720), - [anon_sym_DQUOTE] = ACTIONS(3720), - [sym__str_single_quotes] = ACTIONS(3720), - [sym__str_back_ticks] = ACTIONS(3720), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3720), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3720), - [aux_sym_env_var_token1] = ACTIONS(3720), - [anon_sym_CARET] = ACTIONS(3720), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3722), + [1153] = { + [sym_comment] = STATE(1153), + [aux_sym_cmd_identifier_token1] = ACTIONS(1287), + [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(1285), + [aux_sym_cmd_identifier_token9] = ACTIONS(1287), + [aux_sym_cmd_identifier_token10] = ACTIONS(1285), + [aux_sym_cmd_identifier_token11] = ACTIONS(1285), + [aux_sym_cmd_identifier_token12] = ACTIONS(1285), + [aux_sym_cmd_identifier_token13] = ACTIONS(1287), + [aux_sym_cmd_identifier_token14] = ACTIONS(1285), + [aux_sym_cmd_identifier_token15] = ACTIONS(1287), + [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(1287), + [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(1287), + [aux_sym_cmd_identifier_token39] = ACTIONS(1285), + [aux_sym_cmd_identifier_token40] = ACTIONS(1285), + [sym__newline] = ACTIONS(1285), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1287), + [anon_sym_DASH2] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1287), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_DOT_DOT] = ACTIONS(1287), + [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(1287), + [anon_sym_true] = ACTIONS(1287), + [anon_sym_false] = ACTIONS(1287), + [aux_sym__val_number_decimal_token1] = ACTIONS(1287), + [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(1287), + [aux_sym__val_number_token5] = ACTIONS(1287), + [aux_sym__val_number_token6] = ACTIONS(1287), + [anon_sym_0b] = ACTIONS(1287), + [anon_sym_0o] = ACTIONS(1287), + [anon_sym_0x] = ACTIONS(1287), + [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), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1285), }, - [1207] = { - [sym_match_arm] = STATE(7178), - [sym_default_arm] = STATE(7178), - [sym_match_pattern] = STATE(7567), - [sym__match_pattern] = STATE(6127), - [sym__match_pattern_expression] = STATE(7169), - [sym__match_pattern_value] = STATE(7170), - [sym__match_pattern_list] = STATE(7173), - [sym__match_pattern_record] = STATE(7174), - [sym_expr_parenthesized] = STATE(5946), - [sym_val_range] = STATE(7170), - [sym__val_range] = STATE(7723), - [sym_val_nothing] = STATE(7176), - [sym_val_bool] = STATE(6722), - [sym_val_variable] = STATE(5947), - [sym_val_number] = STATE(7176), - [sym__val_number_decimal] = STATE(5407), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(7176), - [sym_val_filesize] = STATE(7176), - [sym_val_binary] = STATE(7176), - [sym_val_string] = STATE(7176), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_table] = STATE(7176), - [sym_unquoted] = STATE(7181), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1207), - [aux_sym_shebang_repeat1] = STATE(3089), - [aux_sym_ctrl_match_repeat1] = STATE(1221), - [sym__newline] = ACTIONS(3606), - [anon_sym_LBRACK] = ACTIONS(3608), + [1154] = { + [sym_match_arm] = STATE(6373), + [sym_default_arm] = STATE(6373), + [sym_match_pattern] = STATE(7019), + [sym__match_pattern] = STATE(5730), + [sym__match_pattern_expression] = STATE(6638), + [sym__match_pattern_value] = STATE(6639), + [sym__match_pattern_list] = STATE(6641), + [sym__match_pattern_record] = STATE(6644), + [sym_expr_parenthesized] = STATE(5503), + [sym_val_range] = STATE(6639), + [sym__val_range] = STATE(7094), + [sym_val_nothing] = STATE(6650), + [sym_val_bool] = STATE(5921), + [sym_val_variable] = STATE(5516), + [sym_val_number] = STATE(6650), + [sym__val_number_decimal] = STATE(5111), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(6650), + [sym_val_filesize] = STATE(6650), + [sym_val_binary] = STATE(6650), + [sym_val_string] = STATE(6650), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_table] = STATE(6650), + [sym_unquoted] = STATE(6681), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1154), + [aux_sym_shebang_repeat1] = STATE(2917), + [aux_sym_ctrl_match_repeat1] = STATE(1170), + [sym__newline] = ACTIONS(3546), + [anon_sym_LBRACK] = ACTIONS(3548), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym__] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(3618), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), - [anon_sym_DOT_DOT_LT] = ACTIONS(3620), - [anon_sym_null] = ACTIONS(3622), - [anon_sym_true] = ACTIONS(3624), - [anon_sym_false] = ACTIONS(3624), - [aux_sym__val_number_decimal_token1] = ACTIONS(3626), - [aux_sym__val_number_decimal_token2] = ACTIONS(3628), - [aux_sym__val_number_decimal_token3] = ACTIONS(3630), - [aux_sym__val_number_decimal_token4] = ACTIONS(3632), + [anon_sym_DOLLAR] = ACTIONS(3550), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym__] = ACTIONS(3556), + [anon_sym_DOT_DOT] = ACTIONS(3558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3560), + [anon_sym_DOT_DOT_LT] = ACTIONS(3560), + [anon_sym_null] = ACTIONS(3562), + [anon_sym_true] = ACTIONS(3564), + [anon_sym_false] = ACTIONS(3564), + [aux_sym__val_number_decimal_token1] = ACTIONS(3566), + [aux_sym__val_number_decimal_token2] = ACTIONS(3568), + [aux_sym__val_number_decimal_token3] = ACTIONS(3570), + [aux_sym__val_number_decimal_token4] = ACTIONS(3572), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3634), - [aux_sym__val_number_token5] = ACTIONS(3634), - [aux_sym__val_number_token6] = ACTIONS(3634), + [aux_sym__val_number_token4] = ACTIONS(3574), + [aux_sym__val_number_token5] = ACTIONS(3574), + [aux_sym__val_number_token6] = ACTIONS(3574), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3636), + [sym_val_date] = ACTIONS(3576), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1208] = { - [sym_match_arm] = STATE(7013), - [sym_default_arm] = STATE(7013), - [sym_match_pattern] = STATE(7567), - [sym__match_pattern] = STATE(6127), - [sym__match_pattern_expression] = STATE(7169), - [sym__match_pattern_value] = STATE(7170), - [sym__match_pattern_list] = STATE(7173), - [sym__match_pattern_record] = STATE(7174), - [sym_expr_parenthesized] = STATE(5946), - [sym_val_range] = STATE(7170), - [sym__val_range] = STATE(7723), - [sym_val_nothing] = STATE(7176), - [sym_val_bool] = STATE(6722), - [sym_val_variable] = STATE(5947), - [sym_val_number] = STATE(7176), - [sym__val_number_decimal] = STATE(5407), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(7176), - [sym_val_filesize] = STATE(7176), - [sym_val_binary] = STATE(7176), - [sym_val_string] = STATE(7176), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_table] = STATE(7176), - [sym_unquoted] = STATE(7181), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1208), - [aux_sym_shebang_repeat1] = STATE(3089), - [aux_sym_ctrl_match_repeat1] = STATE(1235), - [sym__newline] = ACTIONS(3606), - [anon_sym_LBRACK] = ACTIONS(3608), + [1155] = { + [sym_match_arm] = STATE(6464), + [sym_default_arm] = STATE(6464), + [sym_match_pattern] = STATE(7019), + [sym__match_pattern] = STATE(5730), + [sym__match_pattern_expression] = STATE(6638), + [sym__match_pattern_value] = STATE(6639), + [sym__match_pattern_list] = STATE(6641), + [sym__match_pattern_record] = STATE(6644), + [sym_expr_parenthesized] = STATE(5503), + [sym_val_range] = STATE(6639), + [sym__val_range] = STATE(7094), + [sym_val_nothing] = STATE(6650), + [sym_val_bool] = STATE(5921), + [sym_val_variable] = STATE(5516), + [sym_val_number] = STATE(6650), + [sym__val_number_decimal] = STATE(5111), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(6650), + [sym_val_filesize] = STATE(6650), + [sym_val_binary] = STATE(6650), + [sym_val_string] = STATE(6650), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_table] = STATE(6650), + [sym_unquoted] = STATE(6681), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1155), + [aux_sym_shebang_repeat1] = STATE(2917), + [aux_sym_ctrl_match_repeat1] = STATE(1184), + [sym__newline] = ACTIONS(3546), + [anon_sym_LBRACK] = ACTIONS(3548), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym__] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(3618), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), - [anon_sym_DOT_DOT_LT] = ACTIONS(3620), - [anon_sym_null] = ACTIONS(3622), - [anon_sym_true] = ACTIONS(3624), - [anon_sym_false] = ACTIONS(3624), - [aux_sym__val_number_decimal_token1] = ACTIONS(3626), - [aux_sym__val_number_decimal_token2] = ACTIONS(3628), - [aux_sym__val_number_decimal_token3] = ACTIONS(3630), - [aux_sym__val_number_decimal_token4] = ACTIONS(3632), + [anon_sym_DOLLAR] = ACTIONS(3550), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym__] = ACTIONS(3556), + [anon_sym_DOT_DOT] = ACTIONS(3558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3560), + [anon_sym_DOT_DOT_LT] = ACTIONS(3560), + [anon_sym_null] = ACTIONS(3562), + [anon_sym_true] = ACTIONS(3564), + [anon_sym_false] = ACTIONS(3564), + [aux_sym__val_number_decimal_token1] = ACTIONS(3566), + [aux_sym__val_number_decimal_token2] = ACTIONS(3568), + [aux_sym__val_number_decimal_token3] = ACTIONS(3570), + [aux_sym__val_number_decimal_token4] = ACTIONS(3572), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3634), - [aux_sym__val_number_token5] = ACTIONS(3634), - [aux_sym__val_number_token6] = ACTIONS(3634), + [aux_sym__val_number_token4] = ACTIONS(3574), + [aux_sym__val_number_token5] = ACTIONS(3574), + [aux_sym__val_number_token6] = ACTIONS(3574), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3636), + [sym_val_date] = ACTIONS(3576), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1209] = { - [sym_expr_parenthesized] = STATE(452), - [sym_val_range] = STATE(612), - [sym__val_range] = STATE(7850), - [sym__val_range_with_end] = STATE(7483), - [sym__value] = STATE(612), - [sym_val_nothing] = STATE(631), - [sym_val_bool] = STATE(542), - [sym_val_variable] = STATE(467), - [sym_val_number] = STATE(631), - [sym__val_number_decimal] = STATE(276), - [sym__val_number] = STATE(646), - [sym_val_duration] = STATE(631), - [sym_val_filesize] = STATE(631), - [sym_val_binary] = STATE(631), - [sym_val_string] = STATE(631), - [sym__raw_str] = STATE(605), - [sym__str_double_quotes] = STATE(605), - [sym_val_interpolated] = STATE(631), - [sym__inter_single_quotes] = STATE(669), - [sym__inter_double_quotes] = STATE(670), - [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(498), - [sym__unquoted_in_record_with_expr] = STATE(612), - [sym__unquoted_anonymous_prefix] = STATE(7063), - [sym_comment] = STATE(1209), - [anon_sym_LBRACK] = ACTIONS(3724), - [anon_sym_LPAREN] = ACTIONS(3726), + [1156] = { + [sym_expr_parenthesized] = STATE(472), + [sym_val_range] = STATE(642), + [sym__val_range] = STATE(7233), + [sym__val_range_with_end] = STATE(6946), + [sym__value] = STATE(642), + [sym_val_nothing] = STATE(612), + [sym_val_bool] = STATE(490), + [sym_val_variable] = STATE(451), + [sym_val_number] = STATE(612), + [sym__val_number_decimal] = STATE(289), + [sym__val_number] = STATE(633), + [sym_val_duration] = STATE(612), + [sym_val_filesize] = STATE(612), + [sym_val_binary] = STATE(612), + [sym_val_string] = STATE(612), + [sym__raw_str] = STATE(626), + [sym__str_double_quotes] = STATE(626), + [sym_val_interpolated] = STATE(612), + [sym__inter_single_quotes] = STATE(580), + [sym__inter_double_quotes] = STATE(581), + [sym_val_list] = STATE(612), + [sym_val_record] = STATE(612), + [sym_val_table] = STATE(612), + [sym_val_closure] = STATE(612), + [sym__unquoted_in_record] = STATE(528), + [sym__unquoted_in_record_with_expr] = STATE(642), + [sym__unquoted_anonymous_prefix] = STATE(6745), + [sym_comment] = STATE(1156), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_LPAREN] = ACTIONS(3670), [anon_sym_DOLLAR] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(3728), - [anon_sym_DOT_DOT] = ACTIONS(3730), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3732), - [anon_sym_DOT_DOT_LT] = ACTIONS(3732), - [anon_sym_null] = ACTIONS(3734), - [anon_sym_true] = ACTIONS(3736), - [anon_sym_false] = ACTIONS(3736), - [aux_sym__val_number_decimal_token1] = ACTIONS(3738), - [aux_sym__val_number_decimal_token2] = ACTIONS(3740), - [aux_sym__val_number_decimal_token3] = ACTIONS(3742), - [aux_sym__val_number_decimal_token4] = ACTIONS(3744), - [aux_sym__val_number_token1] = ACTIONS(3746), - [aux_sym__val_number_token2] = ACTIONS(3746), - [aux_sym__val_number_token3] = ACTIONS(3746), - [aux_sym__val_number_token4] = ACTIONS(3748), - [aux_sym__val_number_token5] = ACTIONS(3748), - [aux_sym__val_number_token6] = ACTIONS(3748), - [anon_sym_0b] = ACTIONS(3750), - [anon_sym_0o] = ACTIONS(3752), - [anon_sym_0x] = ACTIONS(3752), - [sym_val_date] = ACTIONS(3754), - [anon_sym_DQUOTE] = ACTIONS(3756), - [sym__str_single_quotes] = ACTIONS(3758), - [sym__str_back_ticks] = ACTIONS(3758), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3760), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3762), - [anon_sym_err_GT] = ACTIONS(3693), - [anon_sym_out_GT] = ACTIONS(3693), - [anon_sym_e_GT] = ACTIONS(3693), - [anon_sym_o_GT] = ACTIONS(3693), - [anon_sym_err_PLUSout_GT] = ACTIONS(3693), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3693), - [anon_sym_o_PLUSe_GT] = ACTIONS(3693), - [anon_sym_e_PLUSo_GT] = ACTIONS(3693), - [anon_sym_err_GT_GT] = ACTIONS(3695), - [anon_sym_out_GT_GT] = ACTIONS(3695), - [anon_sym_e_GT_GT] = ACTIONS(3695), - [anon_sym_o_GT_GT] = ACTIONS(3695), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3695), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3695), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3695), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3695), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3764), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3766), + [anon_sym_LBRACE] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3676), + [anon_sym_DOT_DOT_LT] = ACTIONS(3676), + [anon_sym_null] = ACTIONS(3678), + [anon_sym_true] = ACTIONS(3680), + [anon_sym_false] = ACTIONS(3680), + [aux_sym__val_number_decimal_token1] = ACTIONS(3682), + [aux_sym__val_number_decimal_token2] = ACTIONS(3684), + [aux_sym__val_number_decimal_token3] = ACTIONS(3686), + [aux_sym__val_number_decimal_token4] = ACTIONS(3688), + [aux_sym__val_number_token1] = ACTIONS(3690), + [aux_sym__val_number_token2] = ACTIONS(3690), + [aux_sym__val_number_token3] = ACTIONS(3690), + [aux_sym__val_number_token4] = ACTIONS(3692), + [aux_sym__val_number_token5] = ACTIONS(3692), + [aux_sym__val_number_token6] = ACTIONS(3692), + [anon_sym_0b] = ACTIONS(3694), + [anon_sym_0o] = ACTIONS(3696), + [anon_sym_0x] = ACTIONS(3696), + [sym_val_date] = ACTIONS(3698), + [anon_sym_DQUOTE] = ACTIONS(3700), + [sym__str_single_quotes] = ACTIONS(3702), + [sym__str_back_ticks] = ACTIONS(3702), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3704), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3706), + [anon_sym_err_GT] = ACTIONS(3639), + [anon_sym_out_GT] = ACTIONS(3639), + [anon_sym_e_GT] = ACTIONS(3639), + [anon_sym_o_GT] = ACTIONS(3639), + [anon_sym_err_PLUSout_GT] = ACTIONS(3639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3639), + [anon_sym_o_PLUSe_GT] = ACTIONS(3639), + [anon_sym_e_PLUSo_GT] = ACTIONS(3639), + [anon_sym_err_GT_GT] = ACTIONS(3641), + [anon_sym_out_GT_GT] = ACTIONS(3641), + [anon_sym_e_GT_GT] = ACTIONS(3641), + [anon_sym_o_GT_GT] = ACTIONS(3641), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3641), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3641), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3641), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3641), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3708), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3710), }, - [1210] = { - [sym_expr_parenthesized] = STATE(451), - [sym_val_range] = STATE(593), - [sym__val_range] = STATE(7850), - [sym__val_range_with_end] = STATE(7483), - [sym__value] = STATE(593), - [sym_val_nothing] = STATE(631), - [sym_val_bool] = STATE(542), - [sym_val_variable] = STATE(467), - [sym_val_number] = STATE(631), - [sym__val_number_decimal] = STATE(276), - [sym__val_number] = STATE(646), - [sym_val_duration] = STATE(631), - [sym_val_filesize] = STATE(631), - [sym_val_binary] = STATE(631), - [sym_val_string] = STATE(631), - [sym__raw_str] = STATE(605), - [sym__str_double_quotes] = STATE(605), - [sym_val_interpolated] = STATE(631), - [sym__inter_single_quotes] = STATE(669), - [sym__inter_double_quotes] = STATE(670), - [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(543), - [sym__unquoted_in_record_with_expr] = STATE(593), - [sym__unquoted_anonymous_prefix] = STATE(7063), - [sym_comment] = STATE(1210), - [anon_sym_LBRACK] = ACTIONS(3724), - [anon_sym_LPAREN] = ACTIONS(3726), + [1157] = { + [sym_expr_parenthesized] = STATE(474), + [sym_val_range] = STATE(646), + [sym__val_range] = STATE(7233), + [sym__val_range_with_end] = STATE(6946), + [sym__value] = STATE(646), + [sym_val_nothing] = STATE(612), + [sym_val_bool] = STATE(490), + [sym_val_variable] = STATE(451), + [sym_val_number] = STATE(612), + [sym__val_number_decimal] = STATE(289), + [sym__val_number] = STATE(633), + [sym_val_duration] = STATE(612), + [sym_val_filesize] = STATE(612), + [sym_val_binary] = STATE(612), + [sym_val_string] = STATE(612), + [sym__raw_str] = STATE(626), + [sym__str_double_quotes] = STATE(626), + [sym_val_interpolated] = STATE(612), + [sym__inter_single_quotes] = STATE(580), + [sym__inter_double_quotes] = STATE(581), + [sym_val_list] = STATE(612), + [sym_val_record] = STATE(612), + [sym_val_table] = STATE(612), + [sym_val_closure] = STATE(612), + [sym__unquoted_in_record] = STATE(514), + [sym__unquoted_in_record_with_expr] = STATE(646), + [sym__unquoted_anonymous_prefix] = STATE(6745), + [sym_comment] = STATE(1157), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_LPAREN] = ACTIONS(3670), [anon_sym_DOLLAR] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(3728), - [anon_sym_DOT_DOT] = ACTIONS(3730), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3732), - [anon_sym_DOT_DOT_LT] = ACTIONS(3732), - [anon_sym_null] = ACTIONS(3734), - [anon_sym_true] = ACTIONS(3736), - [anon_sym_false] = ACTIONS(3736), - [aux_sym__val_number_decimal_token1] = ACTIONS(3738), - [aux_sym__val_number_decimal_token2] = ACTIONS(3740), - [aux_sym__val_number_decimal_token3] = ACTIONS(3742), - [aux_sym__val_number_decimal_token4] = ACTIONS(3744), - [aux_sym__val_number_token1] = ACTIONS(3746), - [aux_sym__val_number_token2] = ACTIONS(3746), - [aux_sym__val_number_token3] = ACTIONS(3746), - [aux_sym__val_number_token4] = ACTIONS(3748), - [aux_sym__val_number_token5] = ACTIONS(3748), - [aux_sym__val_number_token6] = ACTIONS(3748), - [anon_sym_0b] = ACTIONS(3750), - [anon_sym_0o] = ACTIONS(3752), - [anon_sym_0x] = ACTIONS(3752), - [sym_val_date] = ACTIONS(3754), - [anon_sym_DQUOTE] = ACTIONS(3756), - [sym__str_single_quotes] = ACTIONS(3758), - [sym__str_back_ticks] = ACTIONS(3758), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3760), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3762), - [anon_sym_err_GT] = ACTIONS(3693), - [anon_sym_out_GT] = ACTIONS(3693), - [anon_sym_e_GT] = ACTIONS(3693), - [anon_sym_o_GT] = ACTIONS(3693), - [anon_sym_err_PLUSout_GT] = ACTIONS(3693), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3693), - [anon_sym_o_PLUSe_GT] = ACTIONS(3693), - [anon_sym_e_PLUSo_GT] = ACTIONS(3693), - [anon_sym_err_GT_GT] = ACTIONS(3695), - [anon_sym_out_GT_GT] = ACTIONS(3695), - [anon_sym_e_GT_GT] = ACTIONS(3695), - [anon_sym_o_GT_GT] = ACTIONS(3695), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3695), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3695), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3695), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3695), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3764), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3766), + [anon_sym_LBRACE] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3676), + [anon_sym_DOT_DOT_LT] = ACTIONS(3676), + [anon_sym_null] = ACTIONS(3678), + [anon_sym_true] = ACTIONS(3680), + [anon_sym_false] = ACTIONS(3680), + [aux_sym__val_number_decimal_token1] = ACTIONS(3682), + [aux_sym__val_number_decimal_token2] = ACTIONS(3684), + [aux_sym__val_number_decimal_token3] = ACTIONS(3686), + [aux_sym__val_number_decimal_token4] = ACTIONS(3688), + [aux_sym__val_number_token1] = ACTIONS(3690), + [aux_sym__val_number_token2] = ACTIONS(3690), + [aux_sym__val_number_token3] = ACTIONS(3690), + [aux_sym__val_number_token4] = ACTIONS(3692), + [aux_sym__val_number_token5] = ACTIONS(3692), + [aux_sym__val_number_token6] = ACTIONS(3692), + [anon_sym_0b] = ACTIONS(3694), + [anon_sym_0o] = ACTIONS(3696), + [anon_sym_0x] = ACTIONS(3696), + [sym_val_date] = ACTIONS(3698), + [anon_sym_DQUOTE] = ACTIONS(3700), + [sym__str_single_quotes] = ACTIONS(3702), + [sym__str_back_ticks] = ACTIONS(3702), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3704), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3706), + [anon_sym_err_GT] = ACTIONS(3639), + [anon_sym_out_GT] = ACTIONS(3639), + [anon_sym_e_GT] = ACTIONS(3639), + [anon_sym_o_GT] = ACTIONS(3639), + [anon_sym_err_PLUSout_GT] = ACTIONS(3639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3639), + [anon_sym_o_PLUSe_GT] = ACTIONS(3639), + [anon_sym_e_PLUSo_GT] = ACTIONS(3639), + [anon_sym_err_GT_GT] = ACTIONS(3641), + [anon_sym_out_GT_GT] = ACTIONS(3641), + [anon_sym_e_GT_GT] = ACTIONS(3641), + [anon_sym_o_GT_GT] = ACTIONS(3641), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3641), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3641), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3641), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3641), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3708), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3710), }, - [1211] = { + [1158] = { + [sym_expr_parenthesized] = STATE(521), + [sym_val_range] = STATE(701), + [sym__val_range] = STATE(7319), + [sym__val_range_with_end] = STATE(6932), + [sym__value] = STATE(701), + [sym_val_nothing] = STATE(670), + [sym_val_bool] = STATE(547), + [sym_val_variable] = STATE(496), + [sym_val_number] = STATE(670), + [sym__val_number_decimal] = STATE(337), + [sym__val_number] = STATE(679), + [sym_val_duration] = STATE(670), + [sym_val_filesize] = STATE(670), + [sym_val_binary] = STATE(670), + [sym_val_string] = STATE(670), + [sym__raw_str] = STATE(669), + [sym__str_double_quotes] = STATE(669), + [sym_val_interpolated] = STATE(670), + [sym__inter_single_quotes] = STATE(696), + [sym__inter_double_quotes] = STATE(697), + [sym_val_list] = STATE(670), + [sym_val_record] = STATE(670), + [sym_val_table] = STATE(670), + [sym_val_closure] = STATE(670), + [sym__unquoted_in_record] = STATE(554), + [sym__unquoted_in_record_with_expr] = STATE(701), + [sym__unquoted_anonymous_prefix] = STATE(6446), + [sym_comment] = STATE(1158), + [anon_sym_LBRACK] = ACTIONS(3712), + [anon_sym_LPAREN] = ACTIONS(3714), + [anon_sym_DOLLAR] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(3716), + [anon_sym_DOT_DOT] = ACTIONS(3718), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3720), + [anon_sym_DOT_DOT_LT] = ACTIONS(3720), + [anon_sym_null] = ACTIONS(3722), + [anon_sym_true] = ACTIONS(3724), + [anon_sym_false] = ACTIONS(3724), + [aux_sym__val_number_decimal_token1] = ACTIONS(3726), + [aux_sym__val_number_decimal_token2] = ACTIONS(3728), + [aux_sym__val_number_decimal_token3] = ACTIONS(3730), + [aux_sym__val_number_decimal_token4] = ACTIONS(3732), + [aux_sym__val_number_token1] = ACTIONS(3734), + [aux_sym__val_number_token2] = ACTIONS(3734), + [aux_sym__val_number_token3] = ACTIONS(3734), + [aux_sym__val_number_token4] = ACTIONS(3736), + [aux_sym__val_number_token5] = ACTIONS(3736), + [aux_sym__val_number_token6] = ACTIONS(3736), + [anon_sym_0b] = ACTIONS(3738), + [anon_sym_0o] = ACTIONS(3740), + [anon_sym_0x] = ACTIONS(3740), + [sym_val_date] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3744), + [sym__str_single_quotes] = ACTIONS(3746), + [sym__str_back_ticks] = ACTIONS(3746), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3748), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3750), + [anon_sym_err_GT] = ACTIONS(3639), + [anon_sym_out_GT] = ACTIONS(3639), + [anon_sym_e_GT] = ACTIONS(3639), + [anon_sym_o_GT] = ACTIONS(3639), + [anon_sym_err_PLUSout_GT] = ACTIONS(3639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3639), + [anon_sym_o_PLUSe_GT] = ACTIONS(3639), + [anon_sym_e_PLUSo_GT] = ACTIONS(3639), + [anon_sym_err_GT_GT] = ACTIONS(3641), + [anon_sym_out_GT_GT] = ACTIONS(3641), + [anon_sym_e_GT_GT] = ACTIONS(3641), + [anon_sym_o_GT_GT] = ACTIONS(3641), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3641), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3641), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3641), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3641), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3752), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3754), + }, + [1159] = { + [sym__match_pattern_expression] = STATE(3033), + [sym__match_pattern_value] = STATE(3028), + [sym__match_pattern_list] = STATE(3041), + [sym__match_pattern_rest] = STATE(7232), + [sym__match_pattern_record] = STATE(3043), + [sym_expr_parenthesized] = STATE(2771), + [sym_val_range] = STATE(3028), + [sym__val_range] = STATE(7219), + [sym_val_nothing] = STATE(3045), + [sym_val_bool] = STATE(2949), + [sym_val_variable] = STATE(2776), + [sym_val_number] = STATE(3045), + [sym__val_number_decimal] = STATE(2606), + [sym__val_number] = STATE(2982), + [sym_val_duration] = STATE(3045), + [sym_val_filesize] = STATE(3045), + [sym_val_binary] = STATE(3045), + [sym_val_string] = STATE(3045), + [sym__raw_str] = STATE(2988), + [sym__str_double_quotes] = STATE(2988), + [sym_val_list] = STATE(7301), + [sym__table_head] = STATE(5511), + [sym_val_table] = STATE(3045), + [sym__unquoted_in_list] = STATE(3033), + [sym__unquoted_anonymous_prefix] = STATE(7314), + [sym_comment] = STATE(1159), + [aux_sym_shebang_repeat1] = STATE(5958), + [aux_sym__match_pattern_list_repeat1] = STATE(1223), + [sym__newline] = ACTIONS(3756), + [anon_sym_LBRACK] = ACTIONS(3758), + [anon_sym_RBRACK] = ACTIONS(3760), + [anon_sym_LPAREN] = ACTIONS(3762), + [anon_sym_DOLLAR] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3766), + [anon_sym_DOT_DOT] = ACTIONS(3768), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3770), + [anon_sym_DOT_DOT_LT] = ACTIONS(3770), + [anon_sym_null] = ACTIONS(3772), + [anon_sym_true] = ACTIONS(3774), + [anon_sym_false] = ACTIONS(3774), + [aux_sym__val_number_decimal_token1] = ACTIONS(3776), + [aux_sym__val_number_decimal_token2] = ACTIONS(3778), + [aux_sym__val_number_decimal_token3] = ACTIONS(3780), + [aux_sym__val_number_decimal_token4] = ACTIONS(3782), + [aux_sym__val_number_token1] = ACTIONS(3784), + [aux_sym__val_number_token2] = ACTIONS(3784), + [aux_sym__val_number_token3] = ACTIONS(3784), + [aux_sym__val_number_token4] = ACTIONS(3786), + [aux_sym__val_number_token5] = ACTIONS(3786), + [aux_sym__val_number_token6] = ACTIONS(3786), + [anon_sym_0b] = ACTIONS(3788), + [anon_sym_0o] = ACTIONS(3790), + [anon_sym_0x] = ACTIONS(3790), + [sym_val_date] = ACTIONS(3792), + [anon_sym_DQUOTE] = ACTIONS(3794), + [sym__str_single_quotes] = ACTIONS(3796), + [sym__str_back_ticks] = ACTIONS(3796), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3798), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3800), + }, + [1160] = { [sym_expr_parenthesized] = STATE(524), - [sym_val_range] = STATE(738), - [sym__val_range] = STATE(7754), - [sym__val_range_with_end] = STATE(7458), - [sym__value] = STATE(738), - [sym_val_nothing] = STATE(681), - [sym_val_bool] = STATE(557), - [sym_val_variable] = STATE(526), - [sym_val_number] = STATE(681), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(702), - [sym_val_duration] = STATE(681), - [sym_val_filesize] = STATE(681), - [sym_val_binary] = STATE(681), - [sym_val_string] = STATE(681), - [sym__raw_str] = STATE(741), - [sym__str_double_quotes] = STATE(741), - [sym_val_interpolated] = STATE(681), - [sym__inter_single_quotes] = STATE(725), - [sym__inter_double_quotes] = STATE(726), - [sym_val_list] = STATE(681), - [sym_val_record] = STATE(681), - [sym_val_table] = STATE(681), - [sym_val_closure] = STATE(681), - [sym__unquoted_in_record] = STATE(552), - [sym__unquoted_in_record_with_expr] = STATE(738), - [sym__unquoted_anonymous_prefix] = STATE(6945), - [sym_comment] = STATE(1211), - [anon_sym_LBRACK] = ACTIONS(3768), - [anon_sym_LPAREN] = ACTIONS(3770), - [anon_sym_DOLLAR] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(3772), - [anon_sym_DOT_DOT] = ACTIONS(3774), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3776), - [anon_sym_DOT_DOT_LT] = ACTIONS(3776), - [anon_sym_null] = ACTIONS(3778), - [anon_sym_true] = ACTIONS(3780), - [anon_sym_false] = ACTIONS(3780), - [aux_sym__val_number_decimal_token1] = ACTIONS(3782), - [aux_sym__val_number_decimal_token2] = ACTIONS(3784), - [aux_sym__val_number_decimal_token3] = ACTIONS(3786), - [aux_sym__val_number_decimal_token4] = ACTIONS(3788), - [aux_sym__val_number_token1] = ACTIONS(3790), - [aux_sym__val_number_token2] = ACTIONS(3790), - [aux_sym__val_number_token3] = ACTIONS(3790), - [aux_sym__val_number_token4] = ACTIONS(3792), - [aux_sym__val_number_token5] = ACTIONS(3792), - [aux_sym__val_number_token6] = ACTIONS(3792), - [anon_sym_0b] = ACTIONS(3794), - [anon_sym_0o] = ACTIONS(3796), - [anon_sym_0x] = ACTIONS(3796), - [sym_val_date] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(3800), - [sym__str_single_quotes] = ACTIONS(3802), - [sym__str_back_ticks] = ACTIONS(3802), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3804), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3806), - [anon_sym_err_GT] = ACTIONS(3693), - [anon_sym_out_GT] = ACTIONS(3693), - [anon_sym_e_GT] = ACTIONS(3693), - [anon_sym_o_GT] = ACTIONS(3693), - [anon_sym_err_PLUSout_GT] = ACTIONS(3693), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3693), - [anon_sym_o_PLUSe_GT] = ACTIONS(3693), - [anon_sym_e_PLUSo_GT] = ACTIONS(3693), - [anon_sym_err_GT_GT] = ACTIONS(3695), - [anon_sym_out_GT_GT] = ACTIONS(3695), - [anon_sym_e_GT_GT] = ACTIONS(3695), - [anon_sym_o_GT_GT] = ACTIONS(3695), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3695), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3695), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3695), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3695), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3808), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3810), + [sym_val_range] = STATE(706), + [sym__val_range] = STATE(7319), + [sym__val_range_with_end] = STATE(6932), + [sym__value] = STATE(706), + [sym_val_nothing] = STATE(670), + [sym_val_bool] = STATE(547), + [sym_val_variable] = STATE(496), + [sym_val_number] = STATE(670), + [sym__val_number_decimal] = STATE(337), + [sym__val_number] = STATE(679), + [sym_val_duration] = STATE(670), + [sym_val_filesize] = STATE(670), + [sym_val_binary] = STATE(670), + [sym_val_string] = STATE(670), + [sym__raw_str] = STATE(669), + [sym__str_double_quotes] = STATE(669), + [sym_val_interpolated] = STATE(670), + [sym__inter_single_quotes] = STATE(696), + [sym__inter_double_quotes] = STATE(697), + [sym_val_list] = STATE(670), + [sym_val_record] = STATE(670), + [sym_val_table] = STATE(670), + [sym_val_closure] = STATE(670), + [sym__unquoted_in_record] = STATE(532), + [sym__unquoted_in_record_with_expr] = STATE(706), + [sym__unquoted_anonymous_prefix] = STATE(6446), + [sym_comment] = STATE(1160), + [anon_sym_LBRACK] = ACTIONS(3712), + [anon_sym_LPAREN] = ACTIONS(3714), + [anon_sym_DOLLAR] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(3716), + [anon_sym_DOT_DOT] = ACTIONS(3718), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3720), + [anon_sym_DOT_DOT_LT] = ACTIONS(3720), + [anon_sym_null] = ACTIONS(3722), + [anon_sym_true] = ACTIONS(3724), + [anon_sym_false] = ACTIONS(3724), + [aux_sym__val_number_decimal_token1] = ACTIONS(3726), + [aux_sym__val_number_decimal_token2] = ACTIONS(3728), + [aux_sym__val_number_decimal_token3] = ACTIONS(3730), + [aux_sym__val_number_decimal_token4] = ACTIONS(3732), + [aux_sym__val_number_token1] = ACTIONS(3734), + [aux_sym__val_number_token2] = ACTIONS(3734), + [aux_sym__val_number_token3] = ACTIONS(3734), + [aux_sym__val_number_token4] = ACTIONS(3736), + [aux_sym__val_number_token5] = ACTIONS(3736), + [aux_sym__val_number_token6] = ACTIONS(3736), + [anon_sym_0b] = ACTIONS(3738), + [anon_sym_0o] = ACTIONS(3740), + [anon_sym_0x] = ACTIONS(3740), + [sym_val_date] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3744), + [sym__str_single_quotes] = ACTIONS(3746), + [sym__str_back_ticks] = ACTIONS(3746), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3748), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3750), + [anon_sym_err_GT] = ACTIONS(3639), + [anon_sym_out_GT] = ACTIONS(3639), + [anon_sym_e_GT] = ACTIONS(3639), + [anon_sym_o_GT] = ACTIONS(3639), + [anon_sym_err_PLUSout_GT] = ACTIONS(3639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3639), + [anon_sym_o_PLUSe_GT] = ACTIONS(3639), + [anon_sym_e_PLUSo_GT] = ACTIONS(3639), + [anon_sym_err_GT_GT] = ACTIONS(3641), + [anon_sym_out_GT_GT] = ACTIONS(3641), + [anon_sym_e_GT_GT] = ACTIONS(3641), + [anon_sym_o_GT_GT] = ACTIONS(3641), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3641), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3641), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3641), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3641), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3752), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3754), }, - [1212] = { - [sym_expr_parenthesized] = STATE(6199), - [sym_val_range] = STATE(7529), - [sym__val_range] = STATE(7895), - [sym__val_range_with_end] = STATE(7531), - [sym__value] = STATE(7529), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6312), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5317), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7234), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_record] = STATE(6770), - [sym__unquoted_in_record_with_expr] = STATE(7529), - [sym__unquoted_anonymous_prefix] = STATE(7357), - [sym_comment] = STATE(1212), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3812), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3814), - [anon_sym_DOT_DOT_LT] = ACTIONS(3814), - [anon_sym_null] = ACTIONS(3816), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [aux_sym__val_number_decimal_token1] = ACTIONS(3820), - [aux_sym__val_number_decimal_token2] = ACTIONS(3822), - [aux_sym__val_number_decimal_token3] = ACTIONS(3824), - [aux_sym__val_number_decimal_token4] = ACTIONS(3826), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3828), - [aux_sym__val_number_token5] = ACTIONS(3828), - [aux_sym__val_number_token6] = ACTIONS(3828), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3830), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_err_GT] = ACTIONS(3693), - [anon_sym_out_GT] = ACTIONS(3693), - [anon_sym_e_GT] = ACTIONS(3693), - [anon_sym_o_GT] = ACTIONS(3693), - [anon_sym_err_PLUSout_GT] = ACTIONS(3693), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3693), - [anon_sym_o_PLUSe_GT] = ACTIONS(3693), - [anon_sym_e_PLUSo_GT] = ACTIONS(3693), - [anon_sym_err_GT_GT] = ACTIONS(3695), - [anon_sym_out_GT_GT] = ACTIONS(3695), - [anon_sym_e_GT_GT] = ACTIONS(3695), - [anon_sym_o_GT_GT] = ACTIONS(3695), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3695), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3695), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3695), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3695), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3832), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [1161] = { + [sym__match_pattern_expression] = STATE(3033), + [sym__match_pattern_value] = STATE(3028), + [sym__match_pattern_list] = STATE(3041), + [sym__match_pattern_rest] = STATE(7050), + [sym__match_pattern_record] = STATE(3043), + [sym_expr_parenthesized] = STATE(2771), + [sym_val_range] = STATE(3028), + [sym__val_range] = STATE(7219), + [sym_val_nothing] = STATE(3045), + [sym_val_bool] = STATE(2949), + [sym_val_variable] = STATE(2776), + [sym_val_number] = STATE(3045), + [sym__val_number_decimal] = STATE(2606), + [sym__val_number] = STATE(2982), + [sym_val_duration] = STATE(3045), + [sym_val_filesize] = STATE(3045), + [sym_val_binary] = STATE(3045), + [sym_val_string] = STATE(3045), + [sym__raw_str] = STATE(2988), + [sym__str_double_quotes] = STATE(2988), + [sym_val_list] = STATE(7301), + [sym__table_head] = STATE(5595), + [sym_val_table] = STATE(3045), + [sym__unquoted_in_list] = STATE(3033), + [sym__unquoted_anonymous_prefix] = STATE(7314), + [sym_comment] = STATE(1161), + [aux_sym_shebang_repeat1] = STATE(5958), + [aux_sym__match_pattern_list_repeat1] = STATE(1226), + [sym__newline] = ACTIONS(3756), + [anon_sym_LBRACK] = ACTIONS(3758), + [anon_sym_RBRACK] = ACTIONS(3802), + [anon_sym_LPAREN] = ACTIONS(3762), + [anon_sym_DOLLAR] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3766), + [anon_sym_DOT_DOT] = ACTIONS(3804), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3770), + [anon_sym_DOT_DOT_LT] = ACTIONS(3770), + [anon_sym_null] = ACTIONS(3772), + [anon_sym_true] = ACTIONS(3774), + [anon_sym_false] = ACTIONS(3774), + [aux_sym__val_number_decimal_token1] = ACTIONS(3776), + [aux_sym__val_number_decimal_token2] = ACTIONS(3778), + [aux_sym__val_number_decimal_token3] = ACTIONS(3780), + [aux_sym__val_number_decimal_token4] = ACTIONS(3782), + [aux_sym__val_number_token1] = ACTIONS(3784), + [aux_sym__val_number_token2] = ACTIONS(3784), + [aux_sym__val_number_token3] = ACTIONS(3784), + [aux_sym__val_number_token4] = ACTIONS(3786), + [aux_sym__val_number_token5] = ACTIONS(3786), + [aux_sym__val_number_token6] = ACTIONS(3786), + [anon_sym_0b] = ACTIONS(3788), + [anon_sym_0o] = ACTIONS(3790), + [anon_sym_0x] = ACTIONS(3790), + [sym_val_date] = ACTIONS(3792), + [anon_sym_DQUOTE] = ACTIONS(3794), + [sym__str_single_quotes] = ACTIONS(3796), + [sym__str_back_ticks] = ACTIONS(3796), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3798), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3800), }, - [1213] = { - [sym_expr_parenthesized] = STATE(5992), - [sym_val_range] = STATE(7504), - [sym__val_range] = STATE(7895), - [sym__val_range_with_end] = STATE(7531), - [sym__value] = STATE(7504), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6312), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5317), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7234), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_record] = STATE(6234), - [sym__unquoted_in_record_with_expr] = STATE(7504), - [sym__unquoted_anonymous_prefix] = STATE(7357), - [sym_comment] = STATE(1213), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3812), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3814), - [anon_sym_DOT_DOT_LT] = ACTIONS(3814), - [anon_sym_null] = ACTIONS(3816), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [aux_sym__val_number_decimal_token1] = ACTIONS(3820), - [aux_sym__val_number_decimal_token2] = ACTIONS(3822), - [aux_sym__val_number_decimal_token3] = ACTIONS(3824), - [aux_sym__val_number_decimal_token4] = ACTIONS(3826), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3828), - [aux_sym__val_number_token5] = ACTIONS(3828), - [aux_sym__val_number_token6] = ACTIONS(3828), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3830), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_err_GT] = ACTIONS(3693), - [anon_sym_out_GT] = ACTIONS(3693), - [anon_sym_e_GT] = ACTIONS(3693), - [anon_sym_o_GT] = ACTIONS(3693), - [anon_sym_err_PLUSout_GT] = ACTIONS(3693), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3693), - [anon_sym_o_PLUSe_GT] = ACTIONS(3693), - [anon_sym_e_PLUSo_GT] = ACTIONS(3693), - [anon_sym_err_GT_GT] = ACTIONS(3695), - [anon_sym_out_GT_GT] = ACTIONS(3695), - [anon_sym_e_GT_GT] = ACTIONS(3695), - [anon_sym_o_GT_GT] = ACTIONS(3695), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3695), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3695), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3695), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3695), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3832), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [1162] = { + [sym_expr_parenthesized] = STATE(5746), + [sym_val_range] = STATE(6973), + [sym__val_range] = STATE(7352), + [sym__val_range_with_end] = STATE(6975), + [sym__value] = STATE(6973), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6065), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4983), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6683), + [sym_val_record] = STATE(6683), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_record] = STATE(5959), + [sym__unquoted_in_record_with_expr] = STATE(6973), + [sym__unquoted_anonymous_prefix] = STATE(6794), + [sym_comment] = STATE(1162), + [anon_sym_LBRACK] = ACTIONS(3136), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3806), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3808), + [anon_sym_DOT_DOT_LT] = ACTIONS(3808), + [anon_sym_null] = ACTIONS(3810), + [anon_sym_true] = ACTIONS(3812), + [anon_sym_false] = ACTIONS(3812), + [aux_sym__val_number_decimal_token1] = ACTIONS(3814), + [aux_sym__val_number_decimal_token2] = ACTIONS(3816), + [aux_sym__val_number_decimal_token3] = ACTIONS(3818), + [aux_sym__val_number_decimal_token4] = ACTIONS(3820), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3822), + [aux_sym__val_number_token5] = ACTIONS(3822), + [aux_sym__val_number_token6] = ACTIONS(3822), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3824), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_err_GT] = ACTIONS(3639), + [anon_sym_out_GT] = ACTIONS(3639), + [anon_sym_e_GT] = ACTIONS(3639), + [anon_sym_o_GT] = ACTIONS(3639), + [anon_sym_err_PLUSout_GT] = ACTIONS(3639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3639), + [anon_sym_o_PLUSe_GT] = ACTIONS(3639), + [anon_sym_e_PLUSo_GT] = ACTIONS(3639), + [anon_sym_err_GT_GT] = ACTIONS(3641), + [anon_sym_out_GT_GT] = ACTIONS(3641), + [anon_sym_e_GT_GT] = ACTIONS(3641), + [anon_sym_o_GT_GT] = ACTIONS(3641), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3641), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3641), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3641), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3641), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3826), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), }, - [1214] = { - [sym_expr_parenthesized] = STATE(6180), - [sym_val_range] = STATE(7505), - [sym__val_range] = STATE(7895), - [sym__val_range_with_end] = STATE(7531), - [sym__value] = STATE(7505), - [sym_val_nothing] = STATE(7234), - [sym_val_bool] = STATE(6312), - [sym_val_variable] = STATE(5763), - [sym_val_number] = STATE(7234), - [sym__val_number_decimal] = STATE(5317), - [sym__val_number] = STATE(7100), - [sym_val_duration] = STATE(7234), - [sym_val_filesize] = STATE(7234), - [sym_val_binary] = STATE(7234), - [sym_val_string] = STATE(7234), - [sym__raw_str] = STATE(5281), - [sym__str_double_quotes] = STATE(5281), - [sym_val_interpolated] = STATE(7234), - [sym__inter_single_quotes] = STATE(7114), - [sym__inter_double_quotes] = STATE(7117), - [sym_val_list] = STATE(7234), - [sym_val_record] = STATE(7234), - [sym_val_table] = STATE(7234), - [sym_val_closure] = STATE(7234), - [sym__unquoted_in_record] = STATE(6758), - [sym__unquoted_in_record_with_expr] = STATE(7505), - [sym__unquoted_anonymous_prefix] = STATE(7357), - [sym_comment] = STATE(1214), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_LPAREN] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_DOT_DOT] = ACTIONS(3812), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3814), - [anon_sym_DOT_DOT_LT] = ACTIONS(3814), - [anon_sym_null] = ACTIONS(3816), - [anon_sym_true] = ACTIONS(3818), - [anon_sym_false] = ACTIONS(3818), - [aux_sym__val_number_decimal_token1] = ACTIONS(3820), - [aux_sym__val_number_decimal_token2] = ACTIONS(3822), - [aux_sym__val_number_decimal_token3] = ACTIONS(3824), - [aux_sym__val_number_decimal_token4] = ACTIONS(3826), - [aux_sym__val_number_token1] = ACTIONS(3142), - [aux_sym__val_number_token2] = ACTIONS(3142), - [aux_sym__val_number_token3] = ACTIONS(3142), - [aux_sym__val_number_token4] = ACTIONS(3828), - [aux_sym__val_number_token5] = ACTIONS(3828), - [aux_sym__val_number_token6] = ACTIONS(3828), - [anon_sym_0b] = ACTIONS(3146), - [anon_sym_0o] = ACTIONS(3148), - [anon_sym_0x] = ACTIONS(3148), - [sym_val_date] = ACTIONS(3830), - [anon_sym_DQUOTE] = ACTIONS(3152), - [sym__str_single_quotes] = ACTIONS(3154), - [sym__str_back_ticks] = ACTIONS(3154), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2642), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2644), - [anon_sym_err_GT] = ACTIONS(3693), - [anon_sym_out_GT] = ACTIONS(3693), - [anon_sym_e_GT] = ACTIONS(3693), - [anon_sym_o_GT] = ACTIONS(3693), - [anon_sym_err_PLUSout_GT] = ACTIONS(3693), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3693), - [anon_sym_o_PLUSe_GT] = ACTIONS(3693), - [anon_sym_e_PLUSo_GT] = ACTIONS(3693), - [anon_sym_err_GT_GT] = ACTIONS(3695), - [anon_sym_out_GT_GT] = ACTIONS(3695), - [anon_sym_e_GT_GT] = ACTIONS(3695), - [anon_sym_o_GT_GT] = ACTIONS(3695), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3695), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3695), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3695), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3695), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3832), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3158), + [1163] = { + [sym_expr_parenthesized] = STATE(432), + [sym_val_range] = STATE(613), + [sym__val_range] = STATE(7233), + [sym__val_range_with_end] = STATE(6946), + [sym__value] = STATE(613), + [sym_val_nothing] = STATE(612), + [sym_val_bool] = STATE(490), + [sym_val_variable] = STATE(451), + [sym_val_number] = STATE(612), + [sym__val_number_decimal] = STATE(289), + [sym__val_number] = STATE(633), + [sym_val_duration] = STATE(612), + [sym_val_filesize] = STATE(612), + [sym_val_binary] = STATE(612), + [sym_val_string] = STATE(612), + [sym__raw_str] = STATE(626), + [sym__str_double_quotes] = STATE(626), + [sym_val_interpolated] = STATE(612), + [sym__inter_single_quotes] = STATE(580), + [sym__inter_double_quotes] = STATE(581), + [sym_val_list] = STATE(612), + [sym_val_record] = STATE(612), + [sym_val_table] = STATE(612), + [sym_val_closure] = STATE(612), + [sym__unquoted_in_record] = STATE(491), + [sym__unquoted_in_record_with_expr] = STATE(613), + [sym__unquoted_anonymous_prefix] = STATE(6745), + [sym_comment] = STATE(1163), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_LPAREN] = ACTIONS(3670), + [anon_sym_DOLLAR] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(3672), + [anon_sym_DOT_DOT] = ACTIONS(3674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3676), + [anon_sym_DOT_DOT_LT] = ACTIONS(3676), + [anon_sym_null] = ACTIONS(3678), + [anon_sym_true] = ACTIONS(3680), + [anon_sym_false] = ACTIONS(3680), + [aux_sym__val_number_decimal_token1] = ACTIONS(3682), + [aux_sym__val_number_decimal_token2] = ACTIONS(3684), + [aux_sym__val_number_decimal_token3] = ACTIONS(3686), + [aux_sym__val_number_decimal_token4] = ACTIONS(3688), + [aux_sym__val_number_token1] = ACTIONS(3690), + [aux_sym__val_number_token2] = ACTIONS(3690), + [aux_sym__val_number_token3] = ACTIONS(3690), + [aux_sym__val_number_token4] = ACTIONS(3692), + [aux_sym__val_number_token5] = ACTIONS(3692), + [aux_sym__val_number_token6] = ACTIONS(3692), + [anon_sym_0b] = ACTIONS(3694), + [anon_sym_0o] = ACTIONS(3696), + [anon_sym_0x] = ACTIONS(3696), + [sym_val_date] = ACTIONS(3698), + [anon_sym_DQUOTE] = ACTIONS(3700), + [sym__str_single_quotes] = ACTIONS(3702), + [sym__str_back_ticks] = ACTIONS(3702), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3704), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3706), + [anon_sym_err_GT] = ACTIONS(3639), + [anon_sym_out_GT] = ACTIONS(3639), + [anon_sym_e_GT] = ACTIONS(3639), + [anon_sym_o_GT] = ACTIONS(3639), + [anon_sym_err_PLUSout_GT] = ACTIONS(3639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3639), + [anon_sym_o_PLUSe_GT] = ACTIONS(3639), + [anon_sym_e_PLUSo_GT] = ACTIONS(3639), + [anon_sym_err_GT_GT] = ACTIONS(3641), + [anon_sym_out_GT_GT] = ACTIONS(3641), + [anon_sym_e_GT_GT] = ACTIONS(3641), + [anon_sym_o_GT_GT] = ACTIONS(3641), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3641), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3641), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3641), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3641), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3708), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3710), }, - [1215] = { - [sym_expr_parenthesized] = STATE(539), - [sym_val_range] = STATE(682), - [sym__val_range] = STATE(7754), - [sym__val_range_with_end] = STATE(7458), - [sym__value] = STATE(682), - [sym_val_nothing] = STATE(681), - [sym_val_bool] = STATE(557), - [sym_val_variable] = STATE(526), - [sym_val_number] = STATE(681), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(702), - [sym_val_duration] = STATE(681), - [sym_val_filesize] = STATE(681), - [sym_val_binary] = STATE(681), - [sym_val_string] = STATE(681), - [sym__raw_str] = STATE(741), - [sym__str_double_quotes] = STATE(741), - [sym_val_interpolated] = STATE(681), - [sym__inter_single_quotes] = STATE(725), - [sym__inter_double_quotes] = STATE(726), - [sym_val_list] = STATE(681), - [sym_val_record] = STATE(681), - [sym_val_table] = STATE(681), - [sym_val_closure] = STATE(681), - [sym__unquoted_in_record] = STATE(574), - [sym__unquoted_in_record_with_expr] = STATE(682), - [sym__unquoted_anonymous_prefix] = STATE(6945), - [sym_comment] = STATE(1215), - [anon_sym_LBRACK] = ACTIONS(3768), - [anon_sym_LPAREN] = ACTIONS(3770), - [anon_sym_DOLLAR] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(3772), - [anon_sym_DOT_DOT] = ACTIONS(3774), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3776), - [anon_sym_DOT_DOT_LT] = ACTIONS(3776), - [anon_sym_null] = ACTIONS(3778), - [anon_sym_true] = ACTIONS(3780), - [anon_sym_false] = ACTIONS(3780), - [aux_sym__val_number_decimal_token1] = ACTIONS(3782), - [aux_sym__val_number_decimal_token2] = ACTIONS(3784), - [aux_sym__val_number_decimal_token3] = ACTIONS(3786), - [aux_sym__val_number_decimal_token4] = ACTIONS(3788), - [aux_sym__val_number_token1] = ACTIONS(3790), - [aux_sym__val_number_token2] = ACTIONS(3790), - [aux_sym__val_number_token3] = ACTIONS(3790), - [aux_sym__val_number_token4] = ACTIONS(3792), - [aux_sym__val_number_token5] = ACTIONS(3792), - [aux_sym__val_number_token6] = ACTIONS(3792), - [anon_sym_0b] = ACTIONS(3794), - [anon_sym_0o] = ACTIONS(3796), - [anon_sym_0x] = ACTIONS(3796), - [sym_val_date] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(3800), - [sym__str_single_quotes] = ACTIONS(3802), - [sym__str_back_ticks] = ACTIONS(3802), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3804), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3806), - [anon_sym_err_GT] = ACTIONS(3693), - [anon_sym_out_GT] = ACTIONS(3693), - [anon_sym_e_GT] = ACTIONS(3693), - [anon_sym_o_GT] = ACTIONS(3693), - [anon_sym_err_PLUSout_GT] = ACTIONS(3693), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3693), - [anon_sym_o_PLUSe_GT] = ACTIONS(3693), - [anon_sym_e_PLUSo_GT] = ACTIONS(3693), - [anon_sym_err_GT_GT] = ACTIONS(3695), - [anon_sym_out_GT_GT] = ACTIONS(3695), - [anon_sym_e_GT_GT] = ACTIONS(3695), - [anon_sym_o_GT_GT] = ACTIONS(3695), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3695), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3695), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3695), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3695), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3808), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3810), + [1164] = { + [sym_expr_parenthesized] = STATE(522), + [sym_val_range] = STATE(704), + [sym__val_range] = STATE(7319), + [sym__val_range_with_end] = STATE(6932), + [sym__value] = STATE(704), + [sym_val_nothing] = STATE(670), + [sym_val_bool] = STATE(547), + [sym_val_variable] = STATE(496), + [sym_val_number] = STATE(670), + [sym__val_number_decimal] = STATE(337), + [sym__val_number] = STATE(679), + [sym_val_duration] = STATE(670), + [sym_val_filesize] = STATE(670), + [sym_val_binary] = STATE(670), + [sym_val_string] = STATE(670), + [sym__raw_str] = STATE(669), + [sym__str_double_quotes] = STATE(669), + [sym_val_interpolated] = STATE(670), + [sym__inter_single_quotes] = STATE(696), + [sym__inter_double_quotes] = STATE(697), + [sym_val_list] = STATE(670), + [sym_val_record] = STATE(670), + [sym_val_table] = STATE(670), + [sym_val_closure] = STATE(670), + [sym__unquoted_in_record] = STATE(557), + [sym__unquoted_in_record_with_expr] = STATE(704), + [sym__unquoted_anonymous_prefix] = STATE(6446), + [sym_comment] = STATE(1164), + [anon_sym_LBRACK] = ACTIONS(3712), + [anon_sym_LPAREN] = ACTIONS(3714), + [anon_sym_DOLLAR] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(3716), + [anon_sym_DOT_DOT] = ACTIONS(3718), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3720), + [anon_sym_DOT_DOT_LT] = ACTIONS(3720), + [anon_sym_null] = ACTIONS(3722), + [anon_sym_true] = ACTIONS(3724), + [anon_sym_false] = ACTIONS(3724), + [aux_sym__val_number_decimal_token1] = ACTIONS(3726), + [aux_sym__val_number_decimal_token2] = ACTIONS(3728), + [aux_sym__val_number_decimal_token3] = ACTIONS(3730), + [aux_sym__val_number_decimal_token4] = ACTIONS(3732), + [aux_sym__val_number_token1] = ACTIONS(3734), + [aux_sym__val_number_token2] = ACTIONS(3734), + [aux_sym__val_number_token3] = ACTIONS(3734), + [aux_sym__val_number_token4] = ACTIONS(3736), + [aux_sym__val_number_token5] = ACTIONS(3736), + [aux_sym__val_number_token6] = ACTIONS(3736), + [anon_sym_0b] = ACTIONS(3738), + [anon_sym_0o] = ACTIONS(3740), + [anon_sym_0x] = ACTIONS(3740), + [sym_val_date] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3744), + [sym__str_single_quotes] = ACTIONS(3746), + [sym__str_back_ticks] = ACTIONS(3746), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3748), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3750), + [anon_sym_err_GT] = ACTIONS(3639), + [anon_sym_out_GT] = ACTIONS(3639), + [anon_sym_e_GT] = ACTIONS(3639), + [anon_sym_o_GT] = ACTIONS(3639), + [anon_sym_err_PLUSout_GT] = ACTIONS(3639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3639), + [anon_sym_o_PLUSe_GT] = ACTIONS(3639), + [anon_sym_e_PLUSo_GT] = ACTIONS(3639), + [anon_sym_err_GT_GT] = ACTIONS(3641), + [anon_sym_out_GT_GT] = ACTIONS(3641), + [anon_sym_e_GT_GT] = ACTIONS(3641), + [anon_sym_o_GT_GT] = ACTIONS(3641), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3641), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3641), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3641), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3641), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3752), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3754), }, - [1216] = { - [sym_expr_parenthesized] = STATE(505), - [sym_val_range] = STATE(692), - [sym__val_range] = STATE(7754), - [sym__val_range_with_end] = STATE(7458), - [sym__value] = STATE(692), - [sym_val_nothing] = STATE(681), - [sym_val_bool] = STATE(557), - [sym_val_variable] = STATE(526), - [sym_val_number] = STATE(681), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(702), - [sym_val_duration] = STATE(681), - [sym_val_filesize] = STATE(681), - [sym_val_binary] = STATE(681), - [sym_val_string] = STATE(681), - [sym__raw_str] = STATE(741), - [sym__str_double_quotes] = STATE(741), - [sym_val_interpolated] = STATE(681), - [sym__inter_single_quotes] = STATE(725), - [sym__inter_double_quotes] = STATE(726), - [sym_val_list] = STATE(681), - [sym_val_record] = STATE(681), - [sym_val_table] = STATE(681), - [sym_val_closure] = STATE(681), - [sym__unquoted_in_record] = STATE(578), - [sym__unquoted_in_record_with_expr] = STATE(692), - [sym__unquoted_anonymous_prefix] = STATE(6945), - [sym_comment] = STATE(1216), - [anon_sym_LBRACK] = ACTIONS(3768), - [anon_sym_LPAREN] = ACTIONS(3770), - [anon_sym_DOLLAR] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(3772), - [anon_sym_DOT_DOT] = ACTIONS(3774), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3776), - [anon_sym_DOT_DOT_LT] = ACTIONS(3776), - [anon_sym_null] = ACTIONS(3778), - [anon_sym_true] = ACTIONS(3780), - [anon_sym_false] = ACTIONS(3780), - [aux_sym__val_number_decimal_token1] = ACTIONS(3782), - [aux_sym__val_number_decimal_token2] = ACTIONS(3784), - [aux_sym__val_number_decimal_token3] = ACTIONS(3786), - [aux_sym__val_number_decimal_token4] = ACTIONS(3788), - [aux_sym__val_number_token1] = ACTIONS(3790), - [aux_sym__val_number_token2] = ACTIONS(3790), - [aux_sym__val_number_token3] = ACTIONS(3790), - [aux_sym__val_number_token4] = ACTIONS(3792), - [aux_sym__val_number_token5] = ACTIONS(3792), - [aux_sym__val_number_token6] = ACTIONS(3792), - [anon_sym_0b] = ACTIONS(3794), - [anon_sym_0o] = ACTIONS(3796), - [anon_sym_0x] = ACTIONS(3796), - [sym_val_date] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(3800), - [sym__str_single_quotes] = ACTIONS(3802), - [sym__str_back_ticks] = ACTIONS(3802), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3804), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3806), - [anon_sym_err_GT] = ACTIONS(3693), - [anon_sym_out_GT] = ACTIONS(3693), - [anon_sym_e_GT] = ACTIONS(3693), - [anon_sym_o_GT] = ACTIONS(3693), - [anon_sym_err_PLUSout_GT] = ACTIONS(3693), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3693), - [anon_sym_o_PLUSe_GT] = ACTIONS(3693), - [anon_sym_e_PLUSo_GT] = ACTIONS(3693), - [anon_sym_err_GT_GT] = ACTIONS(3695), - [anon_sym_out_GT_GT] = ACTIONS(3695), - [anon_sym_e_GT_GT] = ACTIONS(3695), - [anon_sym_o_GT_GT] = ACTIONS(3695), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3695), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3695), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3695), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3695), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3808), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3810), + [1165] = { + [sym_expr_parenthesized] = STATE(5765), + [sym_val_range] = STATE(6869), + [sym__val_range] = STATE(7352), + [sym__val_range_with_end] = STATE(6975), + [sym__value] = STATE(6869), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6065), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4983), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6683), + [sym_val_record] = STATE(6683), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_record] = STATE(6000), + [sym__unquoted_in_record_with_expr] = STATE(6869), + [sym__unquoted_anonymous_prefix] = STATE(6794), + [sym_comment] = STATE(1165), + [anon_sym_LBRACK] = ACTIONS(3136), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3806), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3808), + [anon_sym_DOT_DOT_LT] = ACTIONS(3808), + [anon_sym_null] = ACTIONS(3810), + [anon_sym_true] = ACTIONS(3812), + [anon_sym_false] = ACTIONS(3812), + [aux_sym__val_number_decimal_token1] = ACTIONS(3814), + [aux_sym__val_number_decimal_token2] = ACTIONS(3816), + [aux_sym__val_number_decimal_token3] = ACTIONS(3818), + [aux_sym__val_number_decimal_token4] = ACTIONS(3820), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3822), + [aux_sym__val_number_token5] = ACTIONS(3822), + [aux_sym__val_number_token6] = ACTIONS(3822), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3824), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_err_GT] = ACTIONS(3639), + [anon_sym_out_GT] = ACTIONS(3639), + [anon_sym_e_GT] = ACTIONS(3639), + [anon_sym_o_GT] = ACTIONS(3639), + [anon_sym_err_PLUSout_GT] = ACTIONS(3639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3639), + [anon_sym_o_PLUSe_GT] = ACTIONS(3639), + [anon_sym_e_PLUSo_GT] = ACTIONS(3639), + [anon_sym_err_GT_GT] = ACTIONS(3641), + [anon_sym_out_GT_GT] = ACTIONS(3641), + [anon_sym_e_GT_GT] = ACTIONS(3641), + [anon_sym_o_GT_GT] = ACTIONS(3641), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3641), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3641), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3641), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3641), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3826), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), }, - [1217] = { - [sym_expr_parenthesized] = STATE(453), - [sym_val_range] = STATE(632), - [sym__val_range] = STATE(7850), - [sym__val_range_with_end] = STATE(7483), - [sym__value] = STATE(632), - [sym_val_nothing] = STATE(631), - [sym_val_bool] = STATE(542), - [sym_val_variable] = STATE(467), - [sym_val_number] = STATE(631), - [sym__val_number_decimal] = STATE(276), - [sym__val_number] = STATE(646), - [sym_val_duration] = STATE(631), - [sym_val_filesize] = STATE(631), - [sym_val_binary] = STATE(631), - [sym_val_string] = STATE(631), - [sym__raw_str] = STATE(605), - [sym__str_double_quotes] = STATE(605), - [sym_val_interpolated] = STATE(631), - [sym__inter_single_quotes] = STATE(669), - [sym__inter_double_quotes] = STATE(670), - [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(504), - [sym__unquoted_in_record_with_expr] = STATE(632), - [sym__unquoted_anonymous_prefix] = STATE(7063), - [sym_comment] = STATE(1217), - [anon_sym_LBRACK] = ACTIONS(3724), - [anon_sym_LPAREN] = ACTIONS(3726), - [anon_sym_DOLLAR] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(3728), - [anon_sym_DOT_DOT] = ACTIONS(3730), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3732), - [anon_sym_DOT_DOT_LT] = ACTIONS(3732), - [anon_sym_null] = ACTIONS(3734), - [anon_sym_true] = ACTIONS(3736), - [anon_sym_false] = ACTIONS(3736), - [aux_sym__val_number_decimal_token1] = ACTIONS(3738), - [aux_sym__val_number_decimal_token2] = ACTIONS(3740), - [aux_sym__val_number_decimal_token3] = ACTIONS(3742), - [aux_sym__val_number_decimal_token4] = ACTIONS(3744), - [aux_sym__val_number_token1] = ACTIONS(3746), - [aux_sym__val_number_token2] = ACTIONS(3746), - [aux_sym__val_number_token3] = ACTIONS(3746), - [aux_sym__val_number_token4] = ACTIONS(3748), - [aux_sym__val_number_token5] = ACTIONS(3748), - [aux_sym__val_number_token6] = ACTIONS(3748), - [anon_sym_0b] = ACTIONS(3750), - [anon_sym_0o] = ACTIONS(3752), - [anon_sym_0x] = ACTIONS(3752), - [sym_val_date] = ACTIONS(3754), - [anon_sym_DQUOTE] = ACTIONS(3756), - [sym__str_single_quotes] = ACTIONS(3758), - [sym__str_back_ticks] = ACTIONS(3758), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3760), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3762), - [anon_sym_err_GT] = ACTIONS(3693), - [anon_sym_out_GT] = ACTIONS(3693), - [anon_sym_e_GT] = ACTIONS(3693), - [anon_sym_o_GT] = ACTIONS(3693), - [anon_sym_err_PLUSout_GT] = ACTIONS(3693), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3693), - [anon_sym_o_PLUSe_GT] = ACTIONS(3693), - [anon_sym_e_PLUSo_GT] = ACTIONS(3693), - [anon_sym_err_GT_GT] = ACTIONS(3695), - [anon_sym_out_GT_GT] = ACTIONS(3695), - [anon_sym_e_GT_GT] = ACTIONS(3695), - [anon_sym_o_GT_GT] = ACTIONS(3695), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3695), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3695), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3695), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3695), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3764), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3766), + [1166] = { + [sym_expr_parenthesized] = STATE(5816), + [sym_val_range] = STATE(6825), + [sym__val_range] = STATE(7352), + [sym__val_range_with_end] = STATE(6975), + [sym__value] = STATE(6825), + [sym_val_nothing] = STATE(6683), + [sym_val_bool] = STATE(6065), + [sym_val_variable] = STATE(5586), + [sym_val_number] = STATE(6683), + [sym__val_number_decimal] = STATE(4983), + [sym__val_number] = STATE(6752), + [sym_val_duration] = STATE(6683), + [sym_val_filesize] = STATE(6683), + [sym_val_binary] = STATE(6683), + [sym_val_string] = STATE(6683), + [sym__raw_str] = STATE(5052), + [sym__str_double_quotes] = STATE(5052), + [sym_val_interpolated] = STATE(6683), + [sym__inter_single_quotes] = STATE(6437), + [sym__inter_double_quotes] = STATE(6438), + [sym_val_list] = STATE(6683), + [sym_val_record] = STATE(6683), + [sym_val_table] = STATE(6683), + [sym_val_closure] = STATE(6683), + [sym__unquoted_in_record] = STATE(6148), + [sym__unquoted_in_record_with_expr] = STATE(6825), + [sym__unquoted_anonymous_prefix] = STATE(6794), + [sym_comment] = STATE(1166), + [anon_sym_LBRACK] = ACTIONS(3136), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_DOLLAR] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3806), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3808), + [anon_sym_DOT_DOT_LT] = ACTIONS(3808), + [anon_sym_null] = ACTIONS(3810), + [anon_sym_true] = ACTIONS(3812), + [anon_sym_false] = ACTIONS(3812), + [aux_sym__val_number_decimal_token1] = ACTIONS(3814), + [aux_sym__val_number_decimal_token2] = ACTIONS(3816), + [aux_sym__val_number_decimal_token3] = ACTIONS(3818), + [aux_sym__val_number_decimal_token4] = ACTIONS(3820), + [aux_sym__val_number_token1] = ACTIONS(3068), + [aux_sym__val_number_token2] = ACTIONS(3068), + [aux_sym__val_number_token3] = ACTIONS(3068), + [aux_sym__val_number_token4] = ACTIONS(3822), + [aux_sym__val_number_token5] = ACTIONS(3822), + [aux_sym__val_number_token6] = ACTIONS(3822), + [anon_sym_0b] = ACTIONS(3072), + [anon_sym_0o] = ACTIONS(3074), + [anon_sym_0x] = ACTIONS(3074), + [sym_val_date] = ACTIONS(3824), + [anon_sym_DQUOTE] = ACTIONS(3078), + [sym__str_single_quotes] = ACTIONS(3080), + [sym__str_back_ticks] = ACTIONS(3080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2526), + [anon_sym_err_GT] = ACTIONS(3639), + [anon_sym_out_GT] = ACTIONS(3639), + [anon_sym_e_GT] = ACTIONS(3639), + [anon_sym_o_GT] = ACTIONS(3639), + [anon_sym_err_PLUSout_GT] = ACTIONS(3639), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3639), + [anon_sym_o_PLUSe_GT] = ACTIONS(3639), + [anon_sym_e_PLUSo_GT] = ACTIONS(3639), + [anon_sym_err_GT_GT] = ACTIONS(3641), + [anon_sym_out_GT_GT] = ACTIONS(3641), + [anon_sym_e_GT_GT] = ACTIONS(3641), + [anon_sym_o_GT_GT] = ACTIONS(3641), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3641), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3641), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3641), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3641), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3826), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3084), }, - [1218] = { - [sym_match_arm] = STATE(7178), - [sym_default_arm] = STATE(7178), - [sym_match_pattern] = STATE(7567), - [sym__match_pattern] = STATE(6127), - [sym__match_pattern_expression] = STATE(7169), - [sym__match_pattern_value] = STATE(7170), - [sym__match_pattern_list] = STATE(7173), - [sym__match_pattern_record] = STATE(7174), - [sym_expr_parenthesized] = STATE(5946), - [sym_val_range] = STATE(7170), - [sym__val_range] = STATE(7723), - [sym_val_nothing] = STATE(7176), - [sym_val_bool] = STATE(6722), - [sym_val_variable] = STATE(5947), - [sym_val_number] = STATE(7176), - [sym__val_number_decimal] = STATE(5407), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(7176), - [sym_val_filesize] = STATE(7176), - [sym_val_binary] = STATE(7176), - [sym_val_string] = STATE(7176), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_table] = STATE(7176), - [sym_unquoted] = STATE(7181), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1218), - [aux_sym_ctrl_match_repeat1] = STATE(1225), - [anon_sym_LBRACK] = ACTIONS(3608), + [1167] = { + [sym_match_arm] = STATE(6417), + [sym_default_arm] = STATE(6417), + [sym_match_pattern] = STATE(7019), + [sym__match_pattern] = STATE(5730), + [sym__match_pattern_expression] = STATE(6638), + [sym__match_pattern_value] = STATE(6639), + [sym__match_pattern_list] = STATE(6641), + [sym__match_pattern_record] = STATE(6644), + [sym_expr_parenthesized] = STATE(5503), + [sym_val_range] = STATE(6639), + [sym__val_range] = STATE(7094), + [sym_val_nothing] = STATE(6650), + [sym_val_bool] = STATE(5921), + [sym_val_variable] = STATE(5516), + [sym_val_number] = STATE(6650), + [sym__val_number_decimal] = STATE(5111), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(6650), + [sym_val_filesize] = STATE(6650), + [sym_val_binary] = STATE(6650), + [sym_val_string] = STATE(6650), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_table] = STATE(6650), + [sym_unquoted] = STATE(6681), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1167), + [aux_sym_ctrl_match_repeat1] = STATE(1171), + [anon_sym_LBRACK] = ACTIONS(3548), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym__] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(3618), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), - [anon_sym_DOT_DOT_LT] = ACTIONS(3620), - [anon_sym_null] = ACTIONS(3622), - [anon_sym_true] = ACTIONS(3624), - [anon_sym_false] = ACTIONS(3624), - [aux_sym__val_number_decimal_token1] = ACTIONS(3626), - [aux_sym__val_number_decimal_token2] = ACTIONS(3628), - [aux_sym__val_number_decimal_token3] = ACTIONS(3630), - [aux_sym__val_number_decimal_token4] = ACTIONS(3632), + [anon_sym_DOLLAR] = ACTIONS(3550), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym__] = ACTIONS(3556), + [anon_sym_DOT_DOT] = ACTIONS(3558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3560), + [anon_sym_DOT_DOT_LT] = ACTIONS(3560), + [anon_sym_null] = ACTIONS(3562), + [anon_sym_true] = ACTIONS(3564), + [anon_sym_false] = ACTIONS(3564), + [aux_sym__val_number_decimal_token1] = ACTIONS(3566), + [aux_sym__val_number_decimal_token2] = ACTIONS(3568), + [aux_sym__val_number_decimal_token3] = ACTIONS(3570), + [aux_sym__val_number_decimal_token4] = ACTIONS(3572), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3634), - [aux_sym__val_number_token5] = ACTIONS(3634), - [aux_sym__val_number_token6] = ACTIONS(3634), + [aux_sym__val_number_token4] = ACTIONS(3574), + [aux_sym__val_number_token5] = ACTIONS(3574), + [aux_sym__val_number_token6] = ACTIONS(3574), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3636), + [sym_val_date] = ACTIONS(3576), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1219] = { - [sym_expr_parenthesized] = STATE(6700), - [sym_val_range] = STATE(7622), - [sym__val_range] = STATE(7723), - [sym__value] = STATE(7622), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(7490), - [sym_val_variable] = STATE(6711), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(5639), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(7625), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1219), - [anon_sym_LBRACK] = ACTIONS(3540), - [anon_sym_LPAREN] = ACTIONS(3542), - [anon_sym_DOLLAR] = ACTIONS(3544), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_DOT_DOT] = ACTIONS(3834), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3836), - [anon_sym_DOT_DOT_LT] = ACTIONS(3836), - [anon_sym_null] = ACTIONS(3838), - [anon_sym_true] = ACTIONS(3840), - [anon_sym_false] = ACTIONS(3840), - [aux_sym__val_number_decimal_token1] = ACTIONS(3842), - [aux_sym__val_number_decimal_token2] = ACTIONS(3844), - [aux_sym__val_number_decimal_token3] = ACTIONS(3846), - [aux_sym__val_number_decimal_token4] = ACTIONS(3848), - [aux_sym__val_number_token1] = ACTIONS(223), - [aux_sym__val_number_token2] = ACTIONS(223), - [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3850), - [aux_sym__val_number_token5] = ACTIONS(3850), - [aux_sym__val_number_token6] = ACTIONS(3850), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3852), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym__str_single_quotes] = ACTIONS(1264), - [sym__str_back_ticks] = ACTIONS(1264), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_COLON2] = ACTIONS(3440), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1266), + [1168] = { + [sym_comment] = STATE(1168), + [anon_sym_STAR_STAR] = ACTIONS(3096), + [anon_sym_PLUS_PLUS] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_mod] = ACTIONS(3096), + [anon_sym_SLASH_SLASH] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3098), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_bit_DASHshl] = ACTIONS(3096), + [anon_sym_bit_DASHshr] = ACTIONS(3096), + [anon_sym_EQ_TILDE] = ACTIONS(3096), + [anon_sym_BANG_TILDE] = ACTIONS(3096), + [anon_sym_bit_DASHand] = ACTIONS(3096), + [anon_sym_bit_DASHxor] = ACTIONS(3096), + [anon_sym_bit_DASHor] = ACTIONS(3096), + [anon_sym_and] = ACTIONS(3096), + [anon_sym_xor] = ACTIONS(3096), + [anon_sym_or] = ACTIONS(3096), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_not_DASHin] = ACTIONS(3096), + [anon_sym_has] = ACTIONS(3096), + [anon_sym_not_DASHhas] = ACTIONS(3096), + [anon_sym_starts_DASHwith] = ACTIONS(3096), + [anon_sym_ends_DASHwith] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3096), + [aux_sym_cmd_identifier_token41] = ACTIONS(3100), + [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_GT2] = ACTIONS(2128), + [anon_sym_DASH2] = ACTIONS(2128), + [anon_sym_in2] = ACTIONS(2128), + [anon_sym_RBRACE] = ACTIONS(2128), + [anon_sym_STAR2] = ACTIONS(2128), + [anon_sym_and2] = ACTIONS(2128), + [anon_sym_xor2] = ACTIONS(2128), + [anon_sym_or2] = ACTIONS(2128), + [anon_sym_not_DASHin2] = ACTIONS(2128), + [anon_sym_has2] = ACTIONS(2128), + [anon_sym_not_DASHhas2] = ACTIONS(2128), + [anon_sym_starts_DASHwith2] = ACTIONS(2128), + [anon_sym_ends_DASHwith2] = ACTIONS(2128), + [anon_sym_EQ_EQ2] = ACTIONS(2128), + [anon_sym_BANG_EQ2] = ACTIONS(2128), + [anon_sym_LT2] = ACTIONS(2128), + [anon_sym_LT_EQ2] = ACTIONS(2128), + [anon_sym_GT_EQ2] = ACTIONS(2128), + [anon_sym_EQ_TILDE2] = ACTIONS(2128), + [anon_sym_BANG_TILDE2] = ACTIONS(2128), + [anon_sym_STAR_STAR2] = ACTIONS(2128), + [anon_sym_PLUS_PLUS2] = ACTIONS(2128), + [anon_sym_SLASH2] = ACTIONS(2128), + [anon_sym_mod2] = ACTIONS(2128), + [anon_sym_SLASH_SLASH2] = ACTIONS(2128), + [anon_sym_PLUS2] = ACTIONS(2128), + [anon_sym_bit_DASHshl2] = ACTIONS(2128), + [anon_sym_bit_DASHshr2] = ACTIONS(2128), + [anon_sym_bit_DASHand2] = ACTIONS(2128), + [anon_sym_bit_DASHxor2] = ACTIONS(2128), + [anon_sym_bit_DASHor2] = ACTIONS(2128), + [anon_sym_POUND] = ACTIONS(3), }, - [1220] = { - [sym_match_arm] = STATE(6864), - [sym_default_arm] = STATE(6864), - [sym_match_pattern] = STATE(7567), - [sym__match_pattern] = STATE(6127), - [sym__match_pattern_expression] = STATE(7169), - [sym__match_pattern_value] = STATE(7170), - [sym__match_pattern_list] = STATE(7173), - [sym__match_pattern_record] = STATE(7174), - [sym_expr_parenthesized] = STATE(5946), - [sym_val_range] = STATE(7170), - [sym__val_range] = STATE(7723), - [sym_val_nothing] = STATE(7176), - [sym_val_bool] = STATE(6722), - [sym_val_variable] = STATE(5947), - [sym_val_number] = STATE(7176), - [sym__val_number_decimal] = STATE(5407), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(7176), - [sym_val_filesize] = STATE(7176), - [sym_val_binary] = STATE(7176), - [sym_val_string] = STATE(7176), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_table] = STATE(7176), - [sym_unquoted] = STATE(7181), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1220), - [aux_sym_ctrl_match_repeat1] = STATE(1225), - [anon_sym_LBRACK] = ACTIONS(3608), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym__] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(3618), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), - [anon_sym_DOT_DOT_LT] = ACTIONS(3620), - [anon_sym_null] = ACTIONS(3622), - [anon_sym_true] = ACTIONS(3624), - [anon_sym_false] = ACTIONS(3624), - [aux_sym__val_number_decimal_token1] = ACTIONS(3626), - [aux_sym__val_number_decimal_token2] = ACTIONS(3628), - [aux_sym__val_number_decimal_token3] = ACTIONS(3630), - [aux_sym__val_number_decimal_token4] = ACTIONS(3632), - [aux_sym__val_number_token1] = ACTIONS(223), - [aux_sym__val_number_token2] = ACTIONS(223), - [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3634), - [aux_sym__val_number_token5] = ACTIONS(3634), - [aux_sym__val_number_token6] = ACTIONS(3634), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(247), + [1169] = { + [sym_comment] = STATE(1169), + [anon_sym_STAR_STAR] = ACTIONS(3096), + [anon_sym_PLUS_PLUS] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_mod] = ACTIONS(3096), + [anon_sym_SLASH_SLASH] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3098), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_bit_DASHshl] = ACTIONS(3096), + [anon_sym_bit_DASHshr] = ACTIONS(3096), + [anon_sym_EQ_TILDE] = ACTIONS(3096), + [anon_sym_BANG_TILDE] = ACTIONS(3096), + [anon_sym_bit_DASHand] = ACTIONS(3096), + [anon_sym_bit_DASHxor] = ACTIONS(3096), + [anon_sym_bit_DASHor] = ACTIONS(3096), + [anon_sym_and] = ACTIONS(3096), + [anon_sym_xor] = ACTIONS(3096), + [anon_sym_or] = ACTIONS(3096), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_not_DASHin] = ACTIONS(3096), + [anon_sym_has] = ACTIONS(3096), + [anon_sym_not_DASHhas] = ACTIONS(3096), + [anon_sym_starts_DASHwith] = ACTIONS(3096), + [anon_sym_ends_DASHwith] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3096), + [aux_sym_cmd_identifier_token41] = ACTIONS(3100), + [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_RPAREN] = ACTIONS(2128), + [anon_sym_GT2] = ACTIONS(2128), + [anon_sym_DASH2] = ACTIONS(2128), + [anon_sym_in2] = ACTIONS(2128), + [anon_sym_STAR2] = ACTIONS(2128), + [anon_sym_and2] = ACTIONS(2128), + [anon_sym_xor2] = ACTIONS(2128), + [anon_sym_or2] = ACTIONS(2128), + [anon_sym_not_DASHin2] = ACTIONS(2128), + [anon_sym_has2] = ACTIONS(2128), + [anon_sym_not_DASHhas2] = ACTIONS(2128), + [anon_sym_starts_DASHwith2] = ACTIONS(2128), + [anon_sym_ends_DASHwith2] = ACTIONS(2128), + [anon_sym_EQ_EQ2] = ACTIONS(2128), + [anon_sym_BANG_EQ2] = ACTIONS(2128), + [anon_sym_LT2] = ACTIONS(2128), + [anon_sym_LT_EQ2] = ACTIONS(2128), + [anon_sym_GT_EQ2] = ACTIONS(2128), + [anon_sym_EQ_TILDE2] = ACTIONS(2128), + [anon_sym_BANG_TILDE2] = ACTIONS(2128), + [anon_sym_STAR_STAR2] = ACTIONS(2128), + [anon_sym_PLUS_PLUS2] = ACTIONS(2128), + [anon_sym_SLASH2] = ACTIONS(2128), + [anon_sym_mod2] = ACTIONS(2128), + [anon_sym_SLASH_SLASH2] = ACTIONS(2128), + [anon_sym_PLUS2] = ACTIONS(2128), + [anon_sym_bit_DASHshl2] = ACTIONS(2128), + [anon_sym_bit_DASHshr2] = ACTIONS(2128), + [anon_sym_bit_DASHand2] = ACTIONS(2128), + [anon_sym_bit_DASHxor2] = ACTIONS(2128), + [anon_sym_bit_DASHor2] = ACTIONS(2128), + [anon_sym_POUND] = ACTIONS(3), }, - [1221] = { - [sym_match_arm] = STATE(6893), - [sym_default_arm] = STATE(6893), - [sym_match_pattern] = STATE(7567), - [sym__match_pattern] = STATE(6127), - [sym__match_pattern_expression] = STATE(7169), - [sym__match_pattern_value] = STATE(7170), - [sym__match_pattern_list] = STATE(7173), - [sym__match_pattern_record] = STATE(7174), - [sym_expr_parenthesized] = STATE(5946), - [sym_val_range] = STATE(7170), - [sym__val_range] = STATE(7723), - [sym_val_nothing] = STATE(7176), - [sym_val_bool] = STATE(6722), - [sym_val_variable] = STATE(5947), - [sym_val_number] = STATE(7176), - [sym__val_number_decimal] = STATE(5407), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(7176), - [sym_val_filesize] = STATE(7176), - [sym_val_binary] = STATE(7176), - [sym_val_string] = STATE(7176), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_table] = STATE(7176), - [sym_unquoted] = STATE(7181), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1221), - [aux_sym_ctrl_match_repeat1] = STATE(1225), - [anon_sym_LBRACK] = ACTIONS(3608), + [1170] = { + [sym_match_arm] = STATE(6689), + [sym_default_arm] = STATE(6689), + [sym_match_pattern] = STATE(7019), + [sym__match_pattern] = STATE(5730), + [sym__match_pattern_expression] = STATE(6638), + [sym__match_pattern_value] = STATE(6639), + [sym__match_pattern_list] = STATE(6641), + [sym__match_pattern_record] = STATE(6644), + [sym_expr_parenthesized] = STATE(5503), + [sym_val_range] = STATE(6639), + [sym__val_range] = STATE(7094), + [sym_val_nothing] = STATE(6650), + [sym_val_bool] = STATE(5921), + [sym_val_variable] = STATE(5516), + [sym_val_number] = STATE(6650), + [sym__val_number_decimal] = STATE(5111), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(6650), + [sym_val_filesize] = STATE(6650), + [sym_val_binary] = STATE(6650), + [sym_val_string] = STATE(6650), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_table] = STATE(6650), + [sym_unquoted] = STATE(6681), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1170), + [aux_sym_ctrl_match_repeat1] = STATE(1171), + [anon_sym_LBRACK] = ACTIONS(3548), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym__] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(3618), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), - [anon_sym_DOT_DOT_LT] = ACTIONS(3620), - [anon_sym_null] = ACTIONS(3622), - [anon_sym_true] = ACTIONS(3624), - [anon_sym_false] = ACTIONS(3624), - [aux_sym__val_number_decimal_token1] = ACTIONS(3626), - [aux_sym__val_number_decimal_token2] = ACTIONS(3628), - [aux_sym__val_number_decimal_token3] = ACTIONS(3630), - [aux_sym__val_number_decimal_token4] = ACTIONS(3632), + [anon_sym_DOLLAR] = ACTIONS(3550), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym__] = ACTIONS(3556), + [anon_sym_DOT_DOT] = ACTIONS(3558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3560), + [anon_sym_DOT_DOT_LT] = ACTIONS(3560), + [anon_sym_null] = ACTIONS(3562), + [anon_sym_true] = ACTIONS(3564), + [anon_sym_false] = ACTIONS(3564), + [aux_sym__val_number_decimal_token1] = ACTIONS(3566), + [aux_sym__val_number_decimal_token2] = ACTIONS(3568), + [aux_sym__val_number_decimal_token3] = ACTIONS(3570), + [aux_sym__val_number_decimal_token4] = ACTIONS(3572), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3634), - [aux_sym__val_number_token5] = ACTIONS(3634), - [aux_sym__val_number_token6] = ACTIONS(3634), + [aux_sym__val_number_token4] = ACTIONS(3574), + [aux_sym__val_number_token5] = ACTIONS(3574), + [aux_sym__val_number_token6] = ACTIONS(3574), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3636), + [sym_val_date] = ACTIONS(3576), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1222] = { - [sym__match_pattern_expression] = STATE(3193), - [sym__match_pattern_value] = STATE(3202), - [sym__match_pattern_list] = STATE(3203), - [sym__match_pattern_rest] = STATE(7662), - [sym__match_pattern_record] = STATE(3204), - [sym_expr_parenthesized] = STATE(2928), - [sym_val_range] = STATE(3202), - [sym__val_range] = STATE(7751), - [sym_val_nothing] = STATE(3205), - [sym_val_bool] = STATE(3126), - [sym_val_variable] = STATE(2931), - [sym_val_number] = STATE(3205), - [sym__val_number_decimal] = STATE(2762), - [sym__val_number] = STATE(3217), - [sym_val_duration] = STATE(3205), - [sym_val_filesize] = STATE(3205), - [sym_val_binary] = STATE(3205), - [sym_val_string] = STATE(3205), - [sym__raw_str] = STATE(3208), - [sym__str_double_quotes] = STATE(3208), - [sym_val_list] = STATE(7848), - [sym_val_table] = STATE(3205), - [sym__unquoted_in_list] = STATE(3193), - [sym__unquoted_anonymous_prefix] = STATE(7549), - [sym_comment] = STATE(1222), - [aux_sym_shebang_repeat1] = STATE(6769), - [aux_sym__match_pattern_list_repeat1] = STATE(1270), - [sym__newline] = ACTIONS(3854), - [anon_sym_LBRACK] = ACTIONS(3856), - [anon_sym_RBRACK] = ACTIONS(3858), - [anon_sym_LPAREN] = ACTIONS(3860), - [anon_sym_DOLLAR] = ACTIONS(3862), - [anon_sym_LBRACE] = ACTIONS(3864), - [anon_sym_DOT_DOT] = ACTIONS(3866), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3868), - [anon_sym_DOT_DOT_LT] = ACTIONS(3868), - [anon_sym_null] = ACTIONS(3870), - [anon_sym_true] = ACTIONS(3872), - [anon_sym_false] = ACTIONS(3872), - [aux_sym__val_number_decimal_token1] = ACTIONS(3874), - [aux_sym__val_number_decimal_token2] = ACTIONS(3876), - [aux_sym__val_number_decimal_token3] = ACTIONS(3878), - [aux_sym__val_number_decimal_token4] = ACTIONS(3880), - [aux_sym__val_number_token1] = ACTIONS(3882), - [aux_sym__val_number_token2] = ACTIONS(3882), - [aux_sym__val_number_token3] = ACTIONS(3882), - [aux_sym__val_number_token4] = ACTIONS(3884), - [aux_sym__val_number_token5] = ACTIONS(3884), - [aux_sym__val_number_token6] = ACTIONS(3884), - [anon_sym_0b] = ACTIONS(3886), - [anon_sym_0o] = ACTIONS(3888), - [anon_sym_0x] = ACTIONS(3888), - [sym_val_date] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(3892), - [sym__str_single_quotes] = ACTIONS(3894), - [sym__str_back_ticks] = ACTIONS(3894), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3896), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3898), - }, - [1223] = { - [sym__match_pattern_expression] = STATE(3193), - [sym__match_pattern_value] = STATE(3202), - [sym__match_pattern_list] = STATE(3203), - [sym__match_pattern_rest] = STATE(7951), - [sym__match_pattern_record] = STATE(3204), - [sym_expr_parenthesized] = STATE(2928), - [sym_val_range] = STATE(3202), - [sym__val_range] = STATE(7751), - [sym_val_nothing] = STATE(3205), - [sym_val_bool] = STATE(3126), - [sym_val_variable] = STATE(2931), - [sym_val_number] = STATE(3205), - [sym__val_number_decimal] = STATE(2762), - [sym__val_number] = STATE(3217), - [sym_val_duration] = STATE(3205), - [sym_val_filesize] = STATE(3205), - [sym_val_binary] = STATE(3205), - [sym_val_string] = STATE(3205), - [sym__raw_str] = STATE(3208), - [sym__str_double_quotes] = STATE(3208), - [sym_val_list] = STATE(7548), - [sym_val_table] = STATE(3205), - [sym__unquoted_in_list] = STATE(3193), - [sym__unquoted_anonymous_prefix] = STATE(7549), - [sym_comment] = STATE(1223), - [aux_sym_shebang_repeat1] = STATE(6716), - [aux_sym__match_pattern_list_repeat1] = STATE(1280), - [sym__newline] = ACTIONS(3854), - [anon_sym_LBRACK] = ACTIONS(3856), - [anon_sym_RBRACK] = ACTIONS(3900), - [anon_sym_LPAREN] = ACTIONS(3860), - [anon_sym_DOLLAR] = ACTIONS(3862), - [anon_sym_LBRACE] = ACTIONS(3864), - [anon_sym_DOT_DOT] = ACTIONS(3902), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3868), - [anon_sym_DOT_DOT_LT] = ACTIONS(3868), - [anon_sym_null] = ACTIONS(3870), - [anon_sym_true] = ACTIONS(3872), - [anon_sym_false] = ACTIONS(3872), - [aux_sym__val_number_decimal_token1] = ACTIONS(3874), - [aux_sym__val_number_decimal_token2] = ACTIONS(3876), - [aux_sym__val_number_decimal_token3] = ACTIONS(3878), - [aux_sym__val_number_decimal_token4] = ACTIONS(3880), - [aux_sym__val_number_token1] = ACTIONS(3882), - [aux_sym__val_number_token2] = ACTIONS(3882), - [aux_sym__val_number_token3] = ACTIONS(3882), - [aux_sym__val_number_token4] = ACTIONS(3884), - [aux_sym__val_number_token5] = ACTIONS(3884), - [aux_sym__val_number_token6] = ACTIONS(3884), - [anon_sym_0b] = ACTIONS(3886), - [anon_sym_0o] = ACTIONS(3888), - [anon_sym_0x] = ACTIONS(3888), - [sym_val_date] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(3892), - [sym__str_single_quotes] = ACTIONS(3894), - [sym__str_back_ticks] = ACTIONS(3894), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3896), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3898), + [1171] = { + [sym_match_arm] = STATE(6908), + [sym_default_arm] = STATE(6908), + [sym_match_pattern] = STATE(7019), + [sym__match_pattern] = STATE(5730), + [sym__match_pattern_expression] = STATE(6638), + [sym__match_pattern_value] = STATE(6639), + [sym__match_pattern_list] = STATE(6641), + [sym__match_pattern_record] = STATE(6644), + [sym_expr_parenthesized] = STATE(5503), + [sym_val_range] = STATE(6639), + [sym__val_range] = STATE(7094), + [sym_val_nothing] = STATE(6650), + [sym_val_bool] = STATE(5921), + [sym_val_variable] = STATE(5516), + [sym_val_number] = STATE(6650), + [sym__val_number_decimal] = STATE(5111), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(6650), + [sym_val_filesize] = STATE(6650), + [sym_val_binary] = STATE(6650), + [sym_val_string] = STATE(6650), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_table] = STATE(6650), + [sym_unquoted] = STATE(6681), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1171), + [aux_sym_ctrl_match_repeat1] = STATE(1171), + [anon_sym_LBRACK] = ACTIONS(3828), + [anon_sym_LPAREN] = ACTIONS(3831), + [anon_sym_DOLLAR] = ACTIONS(3834), + [anon_sym_LBRACE] = ACTIONS(3837), + [anon_sym__] = ACTIONS(3840), + [anon_sym_DOT_DOT] = ACTIONS(3843), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3846), + [anon_sym_DOT_DOT_LT] = ACTIONS(3846), + [anon_sym_null] = ACTIONS(3849), + [anon_sym_true] = ACTIONS(3852), + [anon_sym_false] = ACTIONS(3852), + [aux_sym__val_number_decimal_token1] = ACTIONS(3855), + [aux_sym__val_number_decimal_token2] = ACTIONS(3858), + [aux_sym__val_number_decimal_token3] = ACTIONS(3861), + [aux_sym__val_number_decimal_token4] = ACTIONS(3864), + [aux_sym__val_number_token1] = ACTIONS(3867), + [aux_sym__val_number_token2] = ACTIONS(3867), + [aux_sym__val_number_token3] = ACTIONS(3867), + [aux_sym__val_number_token4] = ACTIONS(3870), + [aux_sym__val_number_token5] = ACTIONS(3870), + [aux_sym__val_number_token6] = ACTIONS(3870), + [anon_sym_0b] = ACTIONS(3873), + [anon_sym_0o] = ACTIONS(3876), + [anon_sym_0x] = ACTIONS(3876), + [sym_val_date] = ACTIONS(3879), + [anon_sym_DQUOTE] = ACTIONS(3882), + [sym__str_single_quotes] = ACTIONS(3885), + [sym__str_back_ticks] = ACTIONS(3885), + [anon_sym_err_GT] = ACTIONS(3888), + [anon_sym_out_GT] = ACTIONS(3888), + [anon_sym_e_GT] = ACTIONS(3888), + [anon_sym_o_GT] = ACTIONS(3888), + [anon_sym_err_PLUSout_GT] = ACTIONS(3888), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3888), + [anon_sym_o_PLUSe_GT] = ACTIONS(3888), + [anon_sym_e_PLUSo_GT] = ACTIONS(3888), + [anon_sym_err_GT_GT] = ACTIONS(3891), + [anon_sym_out_GT_GT] = ACTIONS(3891), + [anon_sym_e_GT_GT] = ACTIONS(3891), + [anon_sym_o_GT_GT] = ACTIONS(3891), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3891), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3891), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3891), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3891), + [aux_sym_unquoted_token1] = ACTIONS(3894), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3897), }, - [1224] = { - [sym_match_arm] = STATE(7172), - [sym_default_arm] = STATE(7172), - [sym_match_pattern] = STATE(7567), - [sym__match_pattern] = STATE(6127), - [sym__match_pattern_expression] = STATE(7169), - [sym__match_pattern_value] = STATE(7170), - [sym__match_pattern_list] = STATE(7173), - [sym__match_pattern_record] = STATE(7174), - [sym_expr_parenthesized] = STATE(5946), - [sym_val_range] = STATE(7170), - [sym__val_range] = STATE(7723), - [sym_val_nothing] = STATE(7176), - [sym_val_bool] = STATE(6722), - [sym_val_variable] = STATE(5947), - [sym_val_number] = STATE(7176), - [sym__val_number_decimal] = STATE(5407), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(7176), - [sym_val_filesize] = STATE(7176), - [sym_val_binary] = STATE(7176), - [sym_val_string] = STATE(7176), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_table] = STATE(7176), - [sym_unquoted] = STATE(7181), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1224), - [aux_sym_ctrl_match_repeat1] = STATE(1225), - [anon_sym_LBRACK] = ACTIONS(3608), + [1172] = { + [sym_match_arm] = STATE(6695), + [sym_default_arm] = STATE(6695), + [sym_match_pattern] = STATE(7019), + [sym__match_pattern] = STATE(5730), + [sym__match_pattern_expression] = STATE(6638), + [sym__match_pattern_value] = STATE(6639), + [sym__match_pattern_list] = STATE(6641), + [sym__match_pattern_record] = STATE(6644), + [sym_expr_parenthesized] = STATE(5503), + [sym_val_range] = STATE(6639), + [sym__val_range] = STATE(7094), + [sym_val_nothing] = STATE(6650), + [sym_val_bool] = STATE(5921), + [sym_val_variable] = STATE(5516), + [sym_val_number] = STATE(6650), + [sym__val_number_decimal] = STATE(5111), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(6650), + [sym_val_filesize] = STATE(6650), + [sym_val_binary] = STATE(6650), + [sym_val_string] = STATE(6650), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_table] = STATE(6650), + [sym_unquoted] = STATE(6681), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1172), + [aux_sym_ctrl_match_repeat1] = STATE(1171), + [anon_sym_LBRACK] = ACTIONS(3548), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym__] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(3618), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), - [anon_sym_DOT_DOT_LT] = ACTIONS(3620), - [anon_sym_null] = ACTIONS(3622), - [anon_sym_true] = ACTIONS(3624), - [anon_sym_false] = ACTIONS(3624), - [aux_sym__val_number_decimal_token1] = ACTIONS(3626), - [aux_sym__val_number_decimal_token2] = ACTIONS(3628), - [aux_sym__val_number_decimal_token3] = ACTIONS(3630), - [aux_sym__val_number_decimal_token4] = ACTIONS(3632), + [anon_sym_DOLLAR] = ACTIONS(3550), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym__] = ACTIONS(3556), + [anon_sym_DOT_DOT] = ACTIONS(3558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3560), + [anon_sym_DOT_DOT_LT] = ACTIONS(3560), + [anon_sym_null] = ACTIONS(3562), + [anon_sym_true] = ACTIONS(3564), + [anon_sym_false] = ACTIONS(3564), + [aux_sym__val_number_decimal_token1] = ACTIONS(3566), + [aux_sym__val_number_decimal_token2] = ACTIONS(3568), + [aux_sym__val_number_decimal_token3] = ACTIONS(3570), + [aux_sym__val_number_decimal_token4] = ACTIONS(3572), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3634), - [aux_sym__val_number_token5] = ACTIONS(3634), - [aux_sym__val_number_token6] = ACTIONS(3634), + [aux_sym__val_number_token4] = ACTIONS(3574), + [aux_sym__val_number_token5] = ACTIONS(3574), + [aux_sym__val_number_token6] = ACTIONS(3574), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3636), + [sym_val_date] = ACTIONS(3576), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1225] = { - [sym_match_arm] = STATE(7398), - [sym_default_arm] = STATE(7398), - [sym_match_pattern] = STATE(7567), - [sym__match_pattern] = STATE(6127), - [sym__match_pattern_expression] = STATE(7169), - [sym__match_pattern_value] = STATE(7170), - [sym__match_pattern_list] = STATE(7173), - [sym__match_pattern_record] = STATE(7174), - [sym_expr_parenthesized] = STATE(5946), - [sym_val_range] = STATE(7170), - [sym__val_range] = STATE(7723), - [sym_val_nothing] = STATE(7176), - [sym_val_bool] = STATE(6722), - [sym_val_variable] = STATE(5947), - [sym_val_number] = STATE(7176), - [sym__val_number_decimal] = STATE(5407), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(7176), - [sym_val_filesize] = STATE(7176), - [sym_val_binary] = STATE(7176), - [sym_val_string] = STATE(7176), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_table] = STATE(7176), - [sym_unquoted] = STATE(7181), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1225), - [aux_sym_ctrl_match_repeat1] = STATE(1225), - [anon_sym_LBRACK] = ACTIONS(3904), - [anon_sym_LPAREN] = ACTIONS(3907), - [anon_sym_DOLLAR] = ACTIONS(3910), - [anon_sym_LBRACE] = ACTIONS(3913), - [anon_sym__] = ACTIONS(3916), - [anon_sym_DOT_DOT] = ACTIONS(3919), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3922), - [anon_sym_DOT_DOT_LT] = ACTIONS(3922), - [anon_sym_null] = ACTIONS(3925), - [anon_sym_true] = ACTIONS(3928), - [anon_sym_false] = ACTIONS(3928), - [aux_sym__val_number_decimal_token1] = ACTIONS(3931), - [aux_sym__val_number_decimal_token2] = ACTIONS(3934), - [aux_sym__val_number_decimal_token3] = ACTIONS(3937), - [aux_sym__val_number_decimal_token4] = ACTIONS(3940), - [aux_sym__val_number_token1] = ACTIONS(3943), - [aux_sym__val_number_token2] = ACTIONS(3943), - [aux_sym__val_number_token3] = ACTIONS(3943), - [aux_sym__val_number_token4] = ACTIONS(3946), - [aux_sym__val_number_token5] = ACTIONS(3946), - [aux_sym__val_number_token6] = ACTIONS(3946), - [anon_sym_0b] = ACTIONS(3949), - [anon_sym_0o] = ACTIONS(3952), - [anon_sym_0x] = ACTIONS(3952), - [sym_val_date] = ACTIONS(3955), - [anon_sym_DQUOTE] = ACTIONS(3958), - [sym__str_single_quotes] = ACTIONS(3961), - [sym__str_back_ticks] = ACTIONS(3961), - [anon_sym_err_GT] = ACTIONS(3964), - [anon_sym_out_GT] = ACTIONS(3964), - [anon_sym_e_GT] = ACTIONS(3964), - [anon_sym_o_GT] = ACTIONS(3964), - [anon_sym_err_PLUSout_GT] = ACTIONS(3964), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3964), - [anon_sym_o_PLUSe_GT] = ACTIONS(3964), - [anon_sym_e_PLUSo_GT] = ACTIONS(3964), - [anon_sym_err_GT_GT] = ACTIONS(3967), - [anon_sym_out_GT_GT] = ACTIONS(3967), - [anon_sym_e_GT_GT] = ACTIONS(3967), - [anon_sym_o_GT_GT] = ACTIONS(3967), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3967), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3967), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3967), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3967), - [aux_sym_unquoted_token1] = ACTIONS(3970), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3973), + [1173] = { + [sym_comment] = STATE(1173), + [ts_builtin_sym_end] = ACTIONS(2130), + [anon_sym_STAR_STAR] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_mod] = ACTIONS(3116), + [anon_sym_SLASH_SLASH] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3116), + [anon_sym_bit_DASHshl] = ACTIONS(3116), + [anon_sym_bit_DASHshr] = ACTIONS(3116), + [anon_sym_EQ_TILDE] = ACTIONS(3116), + [anon_sym_BANG_TILDE] = ACTIONS(3116), + [anon_sym_bit_DASHand] = ACTIONS(3116), + [anon_sym_bit_DASHxor] = ACTIONS(3116), + [anon_sym_bit_DASHor] = ACTIONS(3116), + [anon_sym_and] = ACTIONS(3116), + [anon_sym_xor] = ACTIONS(3116), + [anon_sym_or] = ACTIONS(3116), + [anon_sym_in] = ACTIONS(3116), + [anon_sym_not_DASHin] = ACTIONS(3116), + [anon_sym_has] = ACTIONS(3116), + [anon_sym_not_DASHhas] = ACTIONS(3116), + [anon_sym_starts_DASHwith] = ACTIONS(3116), + [anon_sym_ends_DASHwith] = ACTIONS(3116), + [anon_sym_EQ_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_EQ] = ACTIONS(3116), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3116), + [aux_sym_cmd_identifier_token41] = ACTIONS(3120), + [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_GT2] = ACTIONS(2128), + [anon_sym_DASH2] = ACTIONS(2128), + [anon_sym_in2] = ACTIONS(2128), + [anon_sym_STAR2] = ACTIONS(2128), + [anon_sym_and2] = ACTIONS(2128), + [anon_sym_xor2] = ACTIONS(2128), + [anon_sym_or2] = ACTIONS(2128), + [anon_sym_not_DASHin2] = ACTIONS(2128), + [anon_sym_has2] = ACTIONS(2128), + [anon_sym_not_DASHhas2] = ACTIONS(2128), + [anon_sym_starts_DASHwith2] = ACTIONS(2128), + [anon_sym_ends_DASHwith2] = ACTIONS(2128), + [anon_sym_EQ_EQ2] = ACTIONS(2128), + [anon_sym_BANG_EQ2] = ACTIONS(2128), + [anon_sym_LT2] = ACTIONS(2128), + [anon_sym_LT_EQ2] = ACTIONS(2128), + [anon_sym_GT_EQ2] = ACTIONS(2128), + [anon_sym_EQ_TILDE2] = ACTIONS(2128), + [anon_sym_BANG_TILDE2] = ACTIONS(2128), + [anon_sym_STAR_STAR2] = ACTIONS(2128), + [anon_sym_PLUS_PLUS2] = ACTIONS(2128), + [anon_sym_SLASH2] = ACTIONS(2128), + [anon_sym_mod2] = ACTIONS(2128), + [anon_sym_SLASH_SLASH2] = ACTIONS(2128), + [anon_sym_PLUS2] = ACTIONS(2128), + [anon_sym_bit_DASHshl2] = ACTIONS(2128), + [anon_sym_bit_DASHshr2] = ACTIONS(2128), + [anon_sym_bit_DASHand2] = ACTIONS(2128), + [anon_sym_bit_DASHxor2] = ACTIONS(2128), + [anon_sym_bit_DASHor2] = ACTIONS(2128), + [anon_sym_POUND] = ACTIONS(3), }, - [1226] = { - [sym_comment] = STATE(1226), - [anon_sym_STAR_STAR] = ACTIONS(3110), - [anon_sym_PLUS_PLUS] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_mod] = ACTIONS(3110), - [anon_sym_SLASH_SLASH] = ACTIONS(3110), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3110), - [anon_sym_bit_DASHshl] = ACTIONS(3110), - [anon_sym_bit_DASHshr] = ACTIONS(3110), - [anon_sym_EQ_TILDE] = ACTIONS(3110), - [anon_sym_BANG_TILDE] = ACTIONS(3110), - [anon_sym_bit_DASHand] = ACTIONS(3110), - [anon_sym_bit_DASHxor] = ACTIONS(3110), - [anon_sym_bit_DASHor] = ACTIONS(3110), - [anon_sym_and] = ACTIONS(3110), - [anon_sym_xor] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3110), - [anon_sym_in] = ACTIONS(3110), - [anon_sym_not_DASHin] = ACTIONS(3110), - [anon_sym_has] = ACTIONS(3110), - [anon_sym_not_DASHhas] = ACTIONS(3110), - [anon_sym_starts_DASHwith] = ACTIONS(3110), - [anon_sym_ends_DASHwith] = ACTIONS(3110), - [anon_sym_EQ_EQ] = ACTIONS(3110), - [anon_sym_BANG_EQ] = ACTIONS(3110), - [anon_sym_LT] = ACTIONS(3112), - [anon_sym_LT_EQ] = ACTIONS(3110), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_GT_EQ] = ACTIONS(3110), - [aux_sym_cmd_identifier_token41] = ACTIONS(3114), - [sym__newline] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(2089), - [anon_sym_PIPE] = ACTIONS(2089), - [anon_sym_err_GT_PIPE] = ACTIONS(2089), - [anon_sym_out_GT_PIPE] = ACTIONS(2089), - [anon_sym_e_GT_PIPE] = ACTIONS(2089), - [anon_sym_o_GT_PIPE] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2089), - [anon_sym_GT2] = ACTIONS(2089), - [anon_sym_DASH2] = ACTIONS(2089), - [anon_sym_in2] = ACTIONS(2089), - [anon_sym_RBRACE] = ACTIONS(2089), - [anon_sym_STAR2] = ACTIONS(2089), - [anon_sym_and2] = ACTIONS(2089), - [anon_sym_xor2] = ACTIONS(2089), - [anon_sym_or2] = ACTIONS(2089), - [anon_sym_not_DASHin2] = ACTIONS(2089), - [anon_sym_has2] = ACTIONS(2089), - [anon_sym_not_DASHhas2] = ACTIONS(2089), - [anon_sym_starts_DASHwith2] = ACTIONS(2089), - [anon_sym_ends_DASHwith2] = ACTIONS(2089), - [anon_sym_EQ_EQ2] = ACTIONS(2089), - [anon_sym_BANG_EQ2] = ACTIONS(2089), - [anon_sym_LT2] = ACTIONS(2089), - [anon_sym_LT_EQ2] = ACTIONS(2089), - [anon_sym_GT_EQ2] = ACTIONS(2089), - [anon_sym_EQ_TILDE2] = ACTIONS(2089), - [anon_sym_BANG_TILDE2] = ACTIONS(2089), - [anon_sym_STAR_STAR2] = ACTIONS(2089), - [anon_sym_PLUS_PLUS2] = ACTIONS(2089), - [anon_sym_SLASH2] = ACTIONS(2089), - [anon_sym_mod2] = ACTIONS(2089), - [anon_sym_SLASH_SLASH2] = ACTIONS(2089), - [anon_sym_PLUS2] = ACTIONS(2089), - [anon_sym_bit_DASHshl2] = ACTIONS(2089), - [anon_sym_bit_DASHshr2] = ACTIONS(2089), - [anon_sym_bit_DASHand2] = ACTIONS(2089), - [anon_sym_bit_DASHxor2] = ACTIONS(2089), - [anon_sym_bit_DASHor2] = ACTIONS(2089), + [1174] = { + [sym_comment] = STATE(1174), + [anon_sym_STAR_STAR] = ACTIONS(3096), + [anon_sym_PLUS_PLUS] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_mod] = ACTIONS(3096), + [anon_sym_SLASH_SLASH] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3098), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_bit_DASHshl] = ACTIONS(3096), + [anon_sym_bit_DASHshr] = ACTIONS(3096), + [anon_sym_EQ_TILDE] = ACTIONS(3096), + [anon_sym_BANG_TILDE] = ACTIONS(3096), + [anon_sym_bit_DASHand] = ACTIONS(3096), + [anon_sym_bit_DASHxor] = ACTIONS(3096), + [anon_sym_bit_DASHor] = ACTIONS(3096), + [anon_sym_and] = ACTIONS(3096), + [anon_sym_xor] = ACTIONS(3096), + [anon_sym_or] = ACTIONS(3096), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_not_DASHin] = ACTIONS(3096), + [anon_sym_has] = ACTIONS(3096), + [anon_sym_not_DASHhas] = ACTIONS(3096), + [anon_sym_starts_DASHwith] = ACTIONS(3096), + [anon_sym_ends_DASHwith] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3096), + [aux_sym_cmd_identifier_token41] = ACTIONS(3100), + [sym__newline] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_err_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_GT_PIPE] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2068), + [anon_sym_GT2] = ACTIONS(2068), + [anon_sym_DASH2] = ACTIONS(2068), + [anon_sym_in2] = ACTIONS(2068), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_STAR2] = ACTIONS(2068), + [anon_sym_and2] = ACTIONS(2068), + [anon_sym_xor2] = ACTIONS(2068), + [anon_sym_or2] = ACTIONS(2068), + [anon_sym_not_DASHin2] = ACTIONS(2068), + [anon_sym_has2] = ACTIONS(2068), + [anon_sym_not_DASHhas2] = ACTIONS(2068), + [anon_sym_starts_DASHwith2] = ACTIONS(2068), + [anon_sym_ends_DASHwith2] = ACTIONS(2068), + [anon_sym_EQ_EQ2] = ACTIONS(2068), + [anon_sym_BANG_EQ2] = ACTIONS(2068), + [anon_sym_LT2] = ACTIONS(2068), + [anon_sym_LT_EQ2] = ACTIONS(2068), + [anon_sym_GT_EQ2] = ACTIONS(2068), + [anon_sym_EQ_TILDE2] = ACTIONS(2068), + [anon_sym_BANG_TILDE2] = ACTIONS(2068), + [anon_sym_STAR_STAR2] = ACTIONS(2068), + [anon_sym_PLUS_PLUS2] = ACTIONS(2068), + [anon_sym_SLASH2] = ACTIONS(2068), + [anon_sym_mod2] = ACTIONS(2068), + [anon_sym_SLASH_SLASH2] = ACTIONS(2068), + [anon_sym_PLUS2] = ACTIONS(2068), + [anon_sym_bit_DASHshl2] = ACTIONS(2068), + [anon_sym_bit_DASHshr2] = ACTIONS(2068), + [anon_sym_bit_DASHand2] = ACTIONS(2068), + [anon_sym_bit_DASHxor2] = ACTIONS(2068), + [anon_sym_bit_DASHor2] = ACTIONS(2068), [anon_sym_POUND] = ACTIONS(3), }, - [1227] = { - [sym_cell_path] = STATE(1352), - [sym_path] = STATE(1286), - [sym_comment] = STATE(1227), - [aux_sym_cell_path_repeat1] = STATE(1244), + [1175] = { + [sym_cell_path] = STATE(1312), + [sym_path] = STATE(1240), + [sym_comment] = STATE(1175), + [aux_sym_cell_path_repeat1] = STATE(1188), [anon_sym_EQ] = ACTIONS(925), [anon_sym_PLUS_EQ] = ACTIONS(927), [anon_sym_DASH_EQ] = ACTIONS(927), @@ -197700,7 +191426,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ2] = ACTIONS(927), [anon_sym_DOT_DOT_LT2] = ACTIONS(927), [anon_sym_COLON2] = ACTIONS(927), - [anon_sym_DOT2] = ACTIONS(3976), + [anon_sym_DOT2] = ACTIONS(3900), [anon_sym_err_GT] = ACTIONS(925), [anon_sym_out_GT] = ACTIONS(925), [anon_sym_e_GT] = ACTIONS(925), @@ -197719,857 +191445,856 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(927), [anon_sym_POUND] = ACTIONS(245), }, - [1228] = { - [sym_comment] = STATE(1228), - [ts_builtin_sym_end] = ACTIONS(2204), - [anon_sym_STAR_STAR] = ACTIONS(3098), - [anon_sym_PLUS_PLUS] = ACTIONS(3098), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_SLASH] = ACTIONS(3100), - [anon_sym_mod] = ACTIONS(3098), - [anon_sym_SLASH_SLASH] = ACTIONS(3098), - [anon_sym_PLUS] = ACTIONS(3100), - [anon_sym_DASH] = ACTIONS(3098), - [anon_sym_bit_DASHshl] = ACTIONS(3098), - [anon_sym_bit_DASHshr] = ACTIONS(3098), - [anon_sym_EQ_TILDE] = ACTIONS(3098), - [anon_sym_BANG_TILDE] = ACTIONS(3098), - [anon_sym_bit_DASHand] = ACTIONS(3098), - [anon_sym_bit_DASHxor] = ACTIONS(3098), - [anon_sym_bit_DASHor] = ACTIONS(3098), - [anon_sym_and] = ACTIONS(3098), - [anon_sym_xor] = ACTIONS(3098), - [anon_sym_or] = ACTIONS(3098), - [anon_sym_in] = ACTIONS(3098), - [anon_sym_not_DASHin] = ACTIONS(3098), - [anon_sym_has] = ACTIONS(3098), - [anon_sym_not_DASHhas] = ACTIONS(3098), - [anon_sym_starts_DASHwith] = ACTIONS(3098), - [anon_sym_ends_DASHwith] = ACTIONS(3098), - [anon_sym_EQ_EQ] = ACTIONS(3098), - [anon_sym_BANG_EQ] = ACTIONS(3098), - [anon_sym_LT] = ACTIONS(3100), - [anon_sym_LT_EQ] = ACTIONS(3098), - [anon_sym_GT] = ACTIONS(3100), - [anon_sym_GT_EQ] = ACTIONS(3098), - [aux_sym_cmd_identifier_token41] = ACTIONS(3102), - [sym__newline] = ACTIONS(2202), - [anon_sym_SEMI] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_err_GT_PIPE] = ACTIONS(2202), - [anon_sym_out_GT_PIPE] = ACTIONS(2202), - [anon_sym_e_GT_PIPE] = ACTIONS(2202), - [anon_sym_o_GT_PIPE] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2202), - [anon_sym_GT2] = ACTIONS(2202), - [anon_sym_DASH2] = ACTIONS(2202), - [anon_sym_in2] = ACTIONS(2202), - [anon_sym_STAR2] = ACTIONS(2202), - [anon_sym_and2] = ACTIONS(2202), - [anon_sym_xor2] = ACTIONS(2202), - [anon_sym_or2] = ACTIONS(2202), - [anon_sym_not_DASHin2] = ACTIONS(2202), - [anon_sym_has2] = ACTIONS(2202), - [anon_sym_not_DASHhas2] = ACTIONS(2202), - [anon_sym_starts_DASHwith2] = ACTIONS(2202), - [anon_sym_ends_DASHwith2] = ACTIONS(2202), - [anon_sym_EQ_EQ2] = ACTIONS(2202), - [anon_sym_BANG_EQ2] = ACTIONS(2202), - [anon_sym_LT2] = ACTIONS(2202), - [anon_sym_LT_EQ2] = ACTIONS(2202), - [anon_sym_GT_EQ2] = ACTIONS(2202), - [anon_sym_EQ_TILDE2] = ACTIONS(2202), - [anon_sym_BANG_TILDE2] = ACTIONS(2202), - [anon_sym_STAR_STAR2] = ACTIONS(2202), - [anon_sym_PLUS_PLUS2] = ACTIONS(2202), - [anon_sym_SLASH2] = ACTIONS(2202), - [anon_sym_mod2] = ACTIONS(2202), - [anon_sym_SLASH_SLASH2] = ACTIONS(2202), - [anon_sym_PLUS2] = ACTIONS(2202), - [anon_sym_bit_DASHshl2] = ACTIONS(2202), - [anon_sym_bit_DASHshr2] = ACTIONS(2202), - [anon_sym_bit_DASHand2] = ACTIONS(2202), - [anon_sym_bit_DASHxor2] = ACTIONS(2202), - [anon_sym_bit_DASHor2] = ACTIONS(2202), - [anon_sym_POUND] = ACTIONS(3), - }, - [1229] = { - [sym_comment] = STATE(1229), - [ts_builtin_sym_end] = ACTIONS(2093), - [anon_sym_STAR_STAR] = ACTIONS(3098), - [anon_sym_PLUS_PLUS] = ACTIONS(3098), - [anon_sym_STAR] = ACTIONS(3100), - [anon_sym_SLASH] = ACTIONS(3100), - [anon_sym_mod] = ACTIONS(3098), - [anon_sym_SLASH_SLASH] = ACTIONS(3098), - [anon_sym_PLUS] = ACTIONS(3100), - [anon_sym_DASH] = ACTIONS(3098), - [anon_sym_bit_DASHshl] = ACTIONS(3098), - [anon_sym_bit_DASHshr] = ACTIONS(3098), - [anon_sym_EQ_TILDE] = ACTIONS(3098), - [anon_sym_BANG_TILDE] = ACTIONS(3098), - [anon_sym_bit_DASHand] = ACTIONS(3098), - [anon_sym_bit_DASHxor] = ACTIONS(3098), - [anon_sym_bit_DASHor] = ACTIONS(3098), - [anon_sym_and] = ACTIONS(3098), - [anon_sym_xor] = ACTIONS(3098), - [anon_sym_or] = ACTIONS(3098), - [anon_sym_in] = ACTIONS(3098), - [anon_sym_not_DASHin] = ACTIONS(3098), - [anon_sym_has] = ACTIONS(3098), - [anon_sym_not_DASHhas] = ACTIONS(3098), - [anon_sym_starts_DASHwith] = ACTIONS(3098), - [anon_sym_ends_DASHwith] = ACTIONS(3098), - [anon_sym_EQ_EQ] = ACTIONS(3098), - [anon_sym_BANG_EQ] = ACTIONS(3098), - [anon_sym_LT] = ACTIONS(3100), - [anon_sym_LT_EQ] = ACTIONS(3098), - [anon_sym_GT] = ACTIONS(3100), - [anon_sym_GT_EQ] = ACTIONS(3098), - [aux_sym_cmd_identifier_token41] = ACTIONS(3102), - [sym__newline] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(2089), - [anon_sym_PIPE] = ACTIONS(2089), - [anon_sym_err_GT_PIPE] = ACTIONS(2089), - [anon_sym_out_GT_PIPE] = ACTIONS(2089), - [anon_sym_e_GT_PIPE] = ACTIONS(2089), - [anon_sym_o_GT_PIPE] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2089), - [anon_sym_GT2] = ACTIONS(2089), - [anon_sym_DASH2] = ACTIONS(2089), - [anon_sym_in2] = ACTIONS(2089), - [anon_sym_STAR2] = ACTIONS(2089), - [anon_sym_and2] = ACTIONS(2089), - [anon_sym_xor2] = ACTIONS(2089), - [anon_sym_or2] = ACTIONS(2089), - [anon_sym_not_DASHin2] = ACTIONS(2089), - [anon_sym_has2] = ACTIONS(2089), - [anon_sym_not_DASHhas2] = ACTIONS(2089), - [anon_sym_starts_DASHwith2] = ACTIONS(2089), - [anon_sym_ends_DASHwith2] = ACTIONS(2089), - [anon_sym_EQ_EQ2] = ACTIONS(2089), - [anon_sym_BANG_EQ2] = ACTIONS(2089), - [anon_sym_LT2] = ACTIONS(2089), - [anon_sym_LT_EQ2] = ACTIONS(2089), - [anon_sym_GT_EQ2] = ACTIONS(2089), - [anon_sym_EQ_TILDE2] = ACTIONS(2089), - [anon_sym_BANG_TILDE2] = ACTIONS(2089), - [anon_sym_STAR_STAR2] = ACTIONS(2089), - [anon_sym_PLUS_PLUS2] = ACTIONS(2089), - [anon_sym_SLASH2] = ACTIONS(2089), - [anon_sym_mod2] = ACTIONS(2089), - [anon_sym_SLASH_SLASH2] = ACTIONS(2089), - [anon_sym_PLUS2] = ACTIONS(2089), - [anon_sym_bit_DASHshl2] = ACTIONS(2089), - [anon_sym_bit_DASHshr2] = ACTIONS(2089), - [anon_sym_bit_DASHand2] = ACTIONS(2089), - [anon_sym_bit_DASHxor2] = ACTIONS(2089), - [anon_sym_bit_DASHor2] = ACTIONS(2089), - [anon_sym_POUND] = ACTIONS(3), + [1176] = { + [sym_match_arm] = STATE(6373), + [sym_default_arm] = STATE(6373), + [sym_match_pattern] = STATE(7019), + [sym__match_pattern] = STATE(5730), + [sym__match_pattern_expression] = STATE(6638), + [sym__match_pattern_value] = STATE(6639), + [sym__match_pattern_list] = STATE(6641), + [sym__match_pattern_record] = STATE(6644), + [sym_expr_parenthesized] = STATE(5503), + [sym_val_range] = STATE(6639), + [sym__val_range] = STATE(7094), + [sym_val_nothing] = STATE(6650), + [sym_val_bool] = STATE(5921), + [sym_val_variable] = STATE(5516), + [sym_val_number] = STATE(6650), + [sym__val_number_decimal] = STATE(5111), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(6650), + [sym_val_filesize] = STATE(6650), + [sym_val_binary] = STATE(6650), + [sym_val_string] = STATE(6650), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_table] = STATE(6650), + [sym_unquoted] = STATE(6681), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1176), + [aux_sym_ctrl_match_repeat1] = STATE(1171), + [anon_sym_LBRACK] = ACTIONS(3548), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(3550), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym__] = ACTIONS(3556), + [anon_sym_DOT_DOT] = ACTIONS(3558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3560), + [anon_sym_DOT_DOT_LT] = ACTIONS(3560), + [anon_sym_null] = ACTIONS(3562), + [anon_sym_true] = ACTIONS(3564), + [anon_sym_false] = ACTIONS(3564), + [aux_sym__val_number_decimal_token1] = ACTIONS(3566), + [aux_sym__val_number_decimal_token2] = ACTIONS(3568), + [aux_sym__val_number_decimal_token3] = ACTIONS(3570), + [aux_sym__val_number_decimal_token4] = ACTIONS(3572), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3574), + [aux_sym__val_number_token5] = ACTIONS(3574), + [aux_sym__val_number_token6] = ACTIONS(3574), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3576), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(247), }, - [1230] = { - [sym_comment] = STATE(1230), - [anon_sym_STAR_STAR] = ACTIONS(3110), - [anon_sym_PLUS_PLUS] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_mod] = ACTIONS(3110), - [anon_sym_SLASH_SLASH] = ACTIONS(3110), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3110), - [anon_sym_bit_DASHshl] = ACTIONS(3110), - [anon_sym_bit_DASHshr] = ACTIONS(3110), - [anon_sym_EQ_TILDE] = ACTIONS(3110), - [anon_sym_BANG_TILDE] = ACTIONS(3110), - [anon_sym_bit_DASHand] = ACTIONS(3110), - [anon_sym_bit_DASHxor] = ACTIONS(3110), - [anon_sym_bit_DASHor] = ACTIONS(3110), - [anon_sym_and] = ACTIONS(3110), - [anon_sym_xor] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3110), - [anon_sym_in] = ACTIONS(3110), - [anon_sym_not_DASHin] = ACTIONS(3110), - [anon_sym_has] = ACTIONS(3110), - [anon_sym_not_DASHhas] = ACTIONS(3110), - [anon_sym_starts_DASHwith] = ACTIONS(3110), - [anon_sym_ends_DASHwith] = ACTIONS(3110), - [anon_sym_EQ_EQ] = ACTIONS(3110), - [anon_sym_BANG_EQ] = ACTIONS(3110), - [anon_sym_LT] = ACTIONS(3112), - [anon_sym_LT_EQ] = ACTIONS(3110), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_GT_EQ] = ACTIONS(3110), - [aux_sym_cmd_identifier_token41] = ACTIONS(3114), - [sym__newline] = ACTIONS(2202), - [anon_sym_SEMI] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_err_GT_PIPE] = ACTIONS(2202), - [anon_sym_out_GT_PIPE] = ACTIONS(2202), - [anon_sym_e_GT_PIPE] = ACTIONS(2202), - [anon_sym_o_GT_PIPE] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2202), - [anon_sym_RPAREN] = ACTIONS(2202), - [anon_sym_GT2] = ACTIONS(2202), - [anon_sym_DASH2] = ACTIONS(2202), - [anon_sym_in2] = ACTIONS(2202), - [anon_sym_STAR2] = ACTIONS(2202), - [anon_sym_and2] = ACTIONS(2202), - [anon_sym_xor2] = ACTIONS(2202), - [anon_sym_or2] = ACTIONS(2202), - [anon_sym_not_DASHin2] = ACTIONS(2202), - [anon_sym_has2] = ACTIONS(2202), - [anon_sym_not_DASHhas2] = ACTIONS(2202), - [anon_sym_starts_DASHwith2] = ACTIONS(2202), - [anon_sym_ends_DASHwith2] = ACTIONS(2202), - [anon_sym_EQ_EQ2] = ACTIONS(2202), - [anon_sym_BANG_EQ2] = ACTIONS(2202), - [anon_sym_LT2] = ACTIONS(2202), - [anon_sym_LT_EQ2] = ACTIONS(2202), - [anon_sym_GT_EQ2] = ACTIONS(2202), - [anon_sym_EQ_TILDE2] = ACTIONS(2202), - [anon_sym_BANG_TILDE2] = ACTIONS(2202), - [anon_sym_STAR_STAR2] = ACTIONS(2202), - [anon_sym_PLUS_PLUS2] = ACTIONS(2202), - [anon_sym_SLASH2] = ACTIONS(2202), - [anon_sym_mod2] = ACTIONS(2202), - [anon_sym_SLASH_SLASH2] = ACTIONS(2202), - [anon_sym_PLUS2] = ACTIONS(2202), - [anon_sym_bit_DASHshl2] = ACTIONS(2202), - [anon_sym_bit_DASHshr2] = ACTIONS(2202), - [anon_sym_bit_DASHand2] = ACTIONS(2202), - [anon_sym_bit_DASHxor2] = ACTIONS(2202), - [anon_sym_bit_DASHor2] = ACTIONS(2202), + [1177] = { + [sym_comment] = STATE(1177), + [anon_sym_STAR_STAR] = ACTIONS(3096), + [anon_sym_PLUS_PLUS] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_mod] = ACTIONS(3096), + [anon_sym_SLASH_SLASH] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3098), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_bit_DASHshl] = ACTIONS(3096), + [anon_sym_bit_DASHshr] = ACTIONS(3096), + [anon_sym_EQ_TILDE] = ACTIONS(3096), + [anon_sym_BANG_TILDE] = ACTIONS(3096), + [anon_sym_bit_DASHand] = ACTIONS(3096), + [anon_sym_bit_DASHxor] = ACTIONS(3096), + [anon_sym_bit_DASHor] = ACTIONS(3096), + [anon_sym_and] = ACTIONS(3096), + [anon_sym_xor] = ACTIONS(3096), + [anon_sym_or] = ACTIONS(3096), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_not_DASHin] = ACTIONS(3096), + [anon_sym_has] = ACTIONS(3096), + [anon_sym_not_DASHhas] = ACTIONS(3096), + [anon_sym_starts_DASHwith] = ACTIONS(3096), + [anon_sym_ends_DASHwith] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3096), + [aux_sym_cmd_identifier_token41] = ACTIONS(3100), + [sym__newline] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_err_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_GT_PIPE] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2068), + [anon_sym_RPAREN] = ACTIONS(2068), + [anon_sym_GT2] = ACTIONS(2068), + [anon_sym_DASH2] = ACTIONS(2068), + [anon_sym_in2] = ACTIONS(2068), + [anon_sym_STAR2] = ACTIONS(2068), + [anon_sym_and2] = ACTIONS(2068), + [anon_sym_xor2] = ACTIONS(2068), + [anon_sym_or2] = ACTIONS(2068), + [anon_sym_not_DASHin2] = ACTIONS(2068), + [anon_sym_has2] = ACTIONS(2068), + [anon_sym_not_DASHhas2] = ACTIONS(2068), + [anon_sym_starts_DASHwith2] = ACTIONS(2068), + [anon_sym_ends_DASHwith2] = ACTIONS(2068), + [anon_sym_EQ_EQ2] = ACTIONS(2068), + [anon_sym_BANG_EQ2] = ACTIONS(2068), + [anon_sym_LT2] = ACTIONS(2068), + [anon_sym_LT_EQ2] = ACTIONS(2068), + [anon_sym_GT_EQ2] = ACTIONS(2068), + [anon_sym_EQ_TILDE2] = ACTIONS(2068), + [anon_sym_BANG_TILDE2] = ACTIONS(2068), + [anon_sym_STAR_STAR2] = ACTIONS(2068), + [anon_sym_PLUS_PLUS2] = ACTIONS(2068), + [anon_sym_SLASH2] = ACTIONS(2068), + [anon_sym_mod2] = ACTIONS(2068), + [anon_sym_SLASH_SLASH2] = ACTIONS(2068), + [anon_sym_PLUS2] = ACTIONS(2068), + [anon_sym_bit_DASHshl2] = ACTIONS(2068), + [anon_sym_bit_DASHshr2] = ACTIONS(2068), + [anon_sym_bit_DASHand2] = ACTIONS(2068), + [anon_sym_bit_DASHxor2] = ACTIONS(2068), + [anon_sym_bit_DASHor2] = ACTIONS(2068), [anon_sym_POUND] = ACTIONS(3), }, - [1231] = { - [sym_comment] = STATE(1231), - [anon_sym_STAR_STAR] = ACTIONS(3110), - [anon_sym_PLUS_PLUS] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_mod] = ACTIONS(3110), - [anon_sym_SLASH_SLASH] = ACTIONS(3110), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3110), - [anon_sym_bit_DASHshl] = ACTIONS(3110), - [anon_sym_bit_DASHshr] = ACTIONS(3110), - [anon_sym_EQ_TILDE] = ACTIONS(3110), - [anon_sym_BANG_TILDE] = ACTIONS(3110), - [anon_sym_bit_DASHand] = ACTIONS(3110), - [anon_sym_bit_DASHxor] = ACTIONS(3110), - [anon_sym_bit_DASHor] = ACTIONS(3110), - [anon_sym_and] = ACTIONS(3110), - [anon_sym_xor] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3110), - [anon_sym_in] = ACTIONS(3110), - [anon_sym_not_DASHin] = ACTIONS(3110), - [anon_sym_has] = ACTIONS(3110), - [anon_sym_not_DASHhas] = ACTIONS(3110), - [anon_sym_starts_DASHwith] = ACTIONS(3110), - [anon_sym_ends_DASHwith] = ACTIONS(3110), - [anon_sym_EQ_EQ] = ACTIONS(3110), - [anon_sym_BANG_EQ] = ACTIONS(3110), - [anon_sym_LT] = ACTIONS(3112), - [anon_sym_LT_EQ] = ACTIONS(3110), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_GT_EQ] = ACTIONS(3110), - [aux_sym_cmd_identifier_token41] = ACTIONS(3114), - [sym__newline] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(2089), - [anon_sym_PIPE] = ACTIONS(2089), - [anon_sym_err_GT_PIPE] = ACTIONS(2089), - [anon_sym_out_GT_PIPE] = ACTIONS(2089), - [anon_sym_e_GT_PIPE] = ACTIONS(2089), - [anon_sym_o_GT_PIPE] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2089), - [anon_sym_RPAREN] = ACTIONS(2089), - [anon_sym_GT2] = ACTIONS(2089), - [anon_sym_DASH2] = ACTIONS(2089), - [anon_sym_in2] = ACTIONS(2089), - [anon_sym_STAR2] = ACTIONS(2089), - [anon_sym_and2] = ACTIONS(2089), - [anon_sym_xor2] = ACTIONS(2089), - [anon_sym_or2] = ACTIONS(2089), - [anon_sym_not_DASHin2] = ACTIONS(2089), - [anon_sym_has2] = ACTIONS(2089), - [anon_sym_not_DASHhas2] = ACTIONS(2089), - [anon_sym_starts_DASHwith2] = ACTIONS(2089), - [anon_sym_ends_DASHwith2] = ACTIONS(2089), - [anon_sym_EQ_EQ2] = ACTIONS(2089), - [anon_sym_BANG_EQ2] = ACTIONS(2089), - [anon_sym_LT2] = ACTIONS(2089), - [anon_sym_LT_EQ2] = ACTIONS(2089), - [anon_sym_GT_EQ2] = ACTIONS(2089), - [anon_sym_EQ_TILDE2] = ACTIONS(2089), - [anon_sym_BANG_TILDE2] = ACTIONS(2089), - [anon_sym_STAR_STAR2] = ACTIONS(2089), - [anon_sym_PLUS_PLUS2] = ACTIONS(2089), - [anon_sym_SLASH2] = ACTIONS(2089), - [anon_sym_mod2] = ACTIONS(2089), - [anon_sym_SLASH_SLASH2] = ACTIONS(2089), - [anon_sym_PLUS2] = ACTIONS(2089), - [anon_sym_bit_DASHshl2] = ACTIONS(2089), - [anon_sym_bit_DASHshr2] = ACTIONS(2089), - [anon_sym_bit_DASHand2] = ACTIONS(2089), - [anon_sym_bit_DASHxor2] = ACTIONS(2089), - [anon_sym_bit_DASHor2] = ACTIONS(2089), - [anon_sym_POUND] = ACTIONS(3), + [1178] = { + [sym_match_arm] = STATE(6380), + [sym_default_arm] = STATE(6380), + [sym_match_pattern] = STATE(7019), + [sym__match_pattern] = STATE(5730), + [sym__match_pattern_expression] = STATE(6638), + [sym__match_pattern_value] = STATE(6639), + [sym__match_pattern_list] = STATE(6641), + [sym__match_pattern_record] = STATE(6644), + [sym_expr_parenthesized] = STATE(5503), + [sym_val_range] = STATE(6639), + [sym__val_range] = STATE(7094), + [sym_val_nothing] = STATE(6650), + [sym_val_bool] = STATE(5921), + [sym_val_variable] = STATE(5516), + [sym_val_number] = STATE(6650), + [sym__val_number_decimal] = STATE(5111), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(6650), + [sym_val_filesize] = STATE(6650), + [sym_val_binary] = STATE(6650), + [sym_val_string] = STATE(6650), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_table] = STATE(6650), + [sym_unquoted] = STATE(6681), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1178), + [aux_sym_ctrl_match_repeat1] = STATE(1171), + [anon_sym_LBRACK] = ACTIONS(3548), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(3550), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym__] = ACTIONS(3556), + [anon_sym_DOT_DOT] = ACTIONS(3558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3560), + [anon_sym_DOT_DOT_LT] = ACTIONS(3560), + [anon_sym_null] = ACTIONS(3562), + [anon_sym_true] = ACTIONS(3564), + [anon_sym_false] = ACTIONS(3564), + [aux_sym__val_number_decimal_token1] = ACTIONS(3566), + [aux_sym__val_number_decimal_token2] = ACTIONS(3568), + [aux_sym__val_number_decimal_token3] = ACTIONS(3570), + [aux_sym__val_number_decimal_token4] = ACTIONS(3572), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3574), + [aux_sym__val_number_token5] = ACTIONS(3574), + [aux_sym__val_number_token6] = ACTIONS(3574), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3576), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(247), }, - [1232] = { - [sym_expr_parenthesized] = STATE(6700), - [sym_val_range] = STATE(7622), - [sym__val_range] = STATE(7723), - [sym__value] = STATE(7622), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(7490), - [sym_val_variable] = STATE(6711), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(5639), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(7625), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1232), - [anon_sym_LBRACK] = ACTIONS(3540), - [anon_sym_LPAREN] = ACTIONS(3542), - [anon_sym_DOLLAR] = ACTIONS(3544), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_DOT_DOT] = ACTIONS(3834), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3836), - [anon_sym_DOT_DOT_LT] = ACTIONS(3836), - [anon_sym_null] = ACTIONS(3838), - [anon_sym_true] = ACTIONS(3840), - [anon_sym_false] = ACTIONS(3840), - [aux_sym__val_number_decimal_token1] = ACTIONS(3842), - [aux_sym__val_number_decimal_token2] = ACTIONS(3844), - [aux_sym__val_number_decimal_token3] = ACTIONS(3846), - [aux_sym__val_number_decimal_token4] = ACTIONS(3848), + [1179] = { + [sym_expr_parenthesized] = STATE(6227), + [sym_val_range] = STATE(7006), + [sym__val_range] = STATE(7094), + [sym__value] = STATE(7006), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(6849), + [sym_val_variable] = STATE(6329), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(5351), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(7007), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1179), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_LBRACE] = ACTIONS(3444), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3904), + [anon_sym_DOT_DOT_LT] = ACTIONS(3904), + [anon_sym_null] = ACTIONS(3906), + [anon_sym_true] = ACTIONS(3908), + [anon_sym_false] = ACTIONS(3908), + [aux_sym__val_number_decimal_token1] = ACTIONS(3910), + [aux_sym__val_number_decimal_token2] = ACTIONS(3912), + [aux_sym__val_number_decimal_token3] = ACTIONS(3914), + [aux_sym__val_number_decimal_token4] = ACTIONS(3916), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3850), - [aux_sym__val_number_token5] = ACTIONS(3850), - [aux_sym__val_number_token6] = ACTIONS(3850), + [aux_sym__val_number_token4] = ACTIONS(3918), + [aux_sym__val_number_token5] = ACTIONS(3918), + [aux_sym__val_number_token6] = ACTIONS(3918), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3852), + [sym_val_date] = ACTIONS(3920), [anon_sym_DQUOTE] = ACTIONS(1262), [sym__str_single_quotes] = ACTIONS(1264), [sym__str_back_ticks] = ACTIONS(1264), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_COLON2] = ACTIONS(3430), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), + [anon_sym_COLON2] = ACTIONS(3408), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(1266), }, - [1233] = { - [sym_match_arm] = STATE(7013), - [sym_default_arm] = STATE(7013), - [sym_match_pattern] = STATE(7567), - [sym__match_pattern] = STATE(6127), - [sym__match_pattern_expression] = STATE(7169), - [sym__match_pattern_value] = STATE(7170), - [sym__match_pattern_list] = STATE(7173), - [sym__match_pattern_record] = STATE(7174), - [sym_expr_parenthesized] = STATE(5946), - [sym_val_range] = STATE(7170), - [sym__val_range] = STATE(7723), - [sym_val_nothing] = STATE(7176), - [sym_val_bool] = STATE(6722), - [sym_val_variable] = STATE(5947), - [sym_val_number] = STATE(7176), - [sym__val_number_decimal] = STATE(5407), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(7176), - [sym_val_filesize] = STATE(7176), - [sym_val_binary] = STATE(7176), - [sym_val_string] = STATE(7176), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_table] = STATE(7176), - [sym_unquoted] = STATE(7181), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1233), - [aux_sym_ctrl_match_repeat1] = STATE(1225), - [anon_sym_LBRACK] = ACTIONS(3608), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym__] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(3618), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), - [anon_sym_DOT_DOT_LT] = ACTIONS(3620), - [anon_sym_null] = ACTIONS(3622), - [anon_sym_true] = ACTIONS(3624), - [anon_sym_false] = ACTIONS(3624), - [aux_sym__val_number_decimal_token1] = ACTIONS(3626), - [aux_sym__val_number_decimal_token2] = ACTIONS(3628), - [aux_sym__val_number_decimal_token3] = ACTIONS(3630), - [aux_sym__val_number_decimal_token4] = ACTIONS(3632), + [1180] = { + [sym_comment] = STATE(1180), + [ts_builtin_sym_end] = ACTIONS(2072), + [anon_sym_STAR_STAR] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_mod] = ACTIONS(3116), + [anon_sym_SLASH_SLASH] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3116), + [anon_sym_bit_DASHshl] = ACTIONS(3116), + [anon_sym_bit_DASHshr] = ACTIONS(3116), + [anon_sym_EQ_TILDE] = ACTIONS(3116), + [anon_sym_BANG_TILDE] = ACTIONS(3116), + [anon_sym_bit_DASHand] = ACTIONS(3116), + [anon_sym_bit_DASHxor] = ACTIONS(3116), + [anon_sym_bit_DASHor] = ACTIONS(3116), + [anon_sym_and] = ACTIONS(3116), + [anon_sym_xor] = ACTIONS(3116), + [anon_sym_or] = ACTIONS(3116), + [anon_sym_in] = ACTIONS(3116), + [anon_sym_not_DASHin] = ACTIONS(3116), + [anon_sym_has] = ACTIONS(3116), + [anon_sym_not_DASHhas] = ACTIONS(3116), + [anon_sym_starts_DASHwith] = ACTIONS(3116), + [anon_sym_ends_DASHwith] = ACTIONS(3116), + [anon_sym_EQ_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_EQ] = ACTIONS(3116), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3116), + [aux_sym_cmd_identifier_token41] = ACTIONS(3120), + [sym__newline] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_err_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_GT_PIPE] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2068), + [anon_sym_GT2] = ACTIONS(2068), + [anon_sym_DASH2] = ACTIONS(2068), + [anon_sym_in2] = ACTIONS(2068), + [anon_sym_STAR2] = ACTIONS(2068), + [anon_sym_and2] = ACTIONS(2068), + [anon_sym_xor2] = ACTIONS(2068), + [anon_sym_or2] = ACTIONS(2068), + [anon_sym_not_DASHin2] = ACTIONS(2068), + [anon_sym_has2] = ACTIONS(2068), + [anon_sym_not_DASHhas2] = ACTIONS(2068), + [anon_sym_starts_DASHwith2] = ACTIONS(2068), + [anon_sym_ends_DASHwith2] = ACTIONS(2068), + [anon_sym_EQ_EQ2] = ACTIONS(2068), + [anon_sym_BANG_EQ2] = ACTIONS(2068), + [anon_sym_LT2] = ACTIONS(2068), + [anon_sym_LT_EQ2] = ACTIONS(2068), + [anon_sym_GT_EQ2] = ACTIONS(2068), + [anon_sym_EQ_TILDE2] = ACTIONS(2068), + [anon_sym_BANG_TILDE2] = ACTIONS(2068), + [anon_sym_STAR_STAR2] = ACTIONS(2068), + [anon_sym_PLUS_PLUS2] = ACTIONS(2068), + [anon_sym_SLASH2] = ACTIONS(2068), + [anon_sym_mod2] = ACTIONS(2068), + [anon_sym_SLASH_SLASH2] = ACTIONS(2068), + [anon_sym_PLUS2] = ACTIONS(2068), + [anon_sym_bit_DASHshl2] = ACTIONS(2068), + [anon_sym_bit_DASHshr2] = ACTIONS(2068), + [anon_sym_bit_DASHand2] = ACTIONS(2068), + [anon_sym_bit_DASHxor2] = ACTIONS(2068), + [anon_sym_bit_DASHor2] = ACTIONS(2068), + [anon_sym_POUND] = ACTIONS(3), + }, + [1181] = { + [sym_expr_parenthesized] = STATE(6227), + [sym_val_range] = STATE(7006), + [sym__val_range] = STATE(7094), + [sym__value] = STATE(7006), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(6849), + [sym_val_variable] = STATE(6329), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(5351), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(7007), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1181), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_LBRACE] = ACTIONS(3444), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3904), + [anon_sym_DOT_DOT_LT] = ACTIONS(3904), + [anon_sym_null] = ACTIONS(3906), + [anon_sym_true] = ACTIONS(3908), + [anon_sym_false] = ACTIONS(3908), + [aux_sym__val_number_decimal_token1] = ACTIONS(3910), + [aux_sym__val_number_decimal_token2] = ACTIONS(3912), + [aux_sym__val_number_decimal_token3] = ACTIONS(3914), + [aux_sym__val_number_decimal_token4] = ACTIONS(3916), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3634), - [aux_sym__val_number_token5] = ACTIONS(3634), - [aux_sym__val_number_token6] = ACTIONS(3634), + [aux_sym__val_number_token4] = ACTIONS(3918), + [aux_sym__val_number_token5] = ACTIONS(3918), + [aux_sym__val_number_token6] = ACTIONS(3918), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), + [sym_val_date] = ACTIONS(3920), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym__str_single_quotes] = ACTIONS(1264), + [sym__str_back_ticks] = ACTIONS(1264), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_COLON2] = ACTIONS(3342), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1266), }, - [1234] = { - [sym_match_arm] = STATE(7024), - [sym_default_arm] = STATE(7024), - [sym_match_pattern] = STATE(7567), - [sym__match_pattern] = STATE(6127), - [sym__match_pattern_expression] = STATE(7169), - [sym__match_pattern_value] = STATE(7170), - [sym__match_pattern_list] = STATE(7173), - [sym__match_pattern_record] = STATE(7174), - [sym_expr_parenthesized] = STATE(5946), - [sym_val_range] = STATE(7170), - [sym__val_range] = STATE(7723), - [sym_val_nothing] = STATE(7176), - [sym_val_bool] = STATE(6722), - [sym_val_variable] = STATE(5947), - [sym_val_number] = STATE(7176), - [sym__val_number_decimal] = STATE(5407), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(7176), - [sym_val_filesize] = STATE(7176), - [sym_val_binary] = STATE(7176), - [sym_val_string] = STATE(7176), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_table] = STATE(7176), - [sym_unquoted] = STATE(7181), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1234), - [aux_sym_ctrl_match_repeat1] = STATE(1225), - [anon_sym_LBRACK] = ACTIONS(3608), + [1182] = { + [sym_match_arm] = STATE(6464), + [sym_default_arm] = STATE(6464), + [sym_match_pattern] = STATE(7019), + [sym__match_pattern] = STATE(5730), + [sym__match_pattern_expression] = STATE(6638), + [sym__match_pattern_value] = STATE(6639), + [sym__match_pattern_list] = STATE(6641), + [sym__match_pattern_record] = STATE(6644), + [sym_expr_parenthesized] = STATE(5503), + [sym_val_range] = STATE(6639), + [sym__val_range] = STATE(7094), + [sym_val_nothing] = STATE(6650), + [sym_val_bool] = STATE(5921), + [sym_val_variable] = STATE(5516), + [sym_val_number] = STATE(6650), + [sym__val_number_decimal] = STATE(5111), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(6650), + [sym_val_filesize] = STATE(6650), + [sym_val_binary] = STATE(6650), + [sym_val_string] = STATE(6650), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_table] = STATE(6650), + [sym_unquoted] = STATE(6681), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1182), + [aux_sym_ctrl_match_repeat1] = STATE(1171), + [anon_sym_LBRACK] = ACTIONS(3548), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym__] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(3618), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), - [anon_sym_DOT_DOT_LT] = ACTIONS(3620), - [anon_sym_null] = ACTIONS(3622), - [anon_sym_true] = ACTIONS(3624), - [anon_sym_false] = ACTIONS(3624), - [aux_sym__val_number_decimal_token1] = ACTIONS(3626), - [aux_sym__val_number_decimal_token2] = ACTIONS(3628), - [aux_sym__val_number_decimal_token3] = ACTIONS(3630), - [aux_sym__val_number_decimal_token4] = ACTIONS(3632), + [anon_sym_DOLLAR] = ACTIONS(3550), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym__] = ACTIONS(3556), + [anon_sym_DOT_DOT] = ACTIONS(3558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3560), + [anon_sym_DOT_DOT_LT] = ACTIONS(3560), + [anon_sym_null] = ACTIONS(3562), + [anon_sym_true] = ACTIONS(3564), + [anon_sym_false] = ACTIONS(3564), + [aux_sym__val_number_decimal_token1] = ACTIONS(3566), + [aux_sym__val_number_decimal_token2] = ACTIONS(3568), + [aux_sym__val_number_decimal_token3] = ACTIONS(3570), + [aux_sym__val_number_decimal_token4] = ACTIONS(3572), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3634), - [aux_sym__val_number_token5] = ACTIONS(3634), - [aux_sym__val_number_token6] = ACTIONS(3634), + [aux_sym__val_number_token4] = ACTIONS(3574), + [aux_sym__val_number_token5] = ACTIONS(3574), + [aux_sym__val_number_token6] = ACTIONS(3574), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3636), + [sym_val_date] = ACTIONS(3576), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1235] = { - [sym_match_arm] = STATE(6876), - [sym_default_arm] = STATE(6876), - [sym_match_pattern] = STATE(7567), - [sym__match_pattern] = STATE(6127), - [sym__match_pattern_expression] = STATE(7169), - [sym__match_pattern_value] = STATE(7170), - [sym__match_pattern_list] = STATE(7173), - [sym__match_pattern_record] = STATE(7174), - [sym_expr_parenthesized] = STATE(5946), - [sym_val_range] = STATE(7170), - [sym__val_range] = STATE(7723), - [sym_val_nothing] = STATE(7176), - [sym_val_bool] = STATE(6722), - [sym_val_variable] = STATE(5947), - [sym_val_number] = STATE(7176), - [sym__val_number_decimal] = STATE(5407), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(7176), - [sym_val_filesize] = STATE(7176), - [sym_val_binary] = STATE(7176), - [sym_val_string] = STATE(7176), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_table] = STATE(7176), - [sym_unquoted] = STATE(7181), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1235), - [aux_sym_ctrl_match_repeat1] = STATE(1225), - [anon_sym_LBRACK] = ACTIONS(3608), + [1183] = { + [sym_match_arm] = STATE(6419), + [sym_default_arm] = STATE(6419), + [sym_match_pattern] = STATE(7019), + [sym__match_pattern] = STATE(5730), + [sym__match_pattern_expression] = STATE(6638), + [sym__match_pattern_value] = STATE(6639), + [sym__match_pattern_list] = STATE(6641), + [sym__match_pattern_record] = STATE(6644), + [sym_expr_parenthesized] = STATE(5503), + [sym_val_range] = STATE(6639), + [sym__val_range] = STATE(7094), + [sym_val_nothing] = STATE(6650), + [sym_val_bool] = STATE(5921), + [sym_val_variable] = STATE(5516), + [sym_val_number] = STATE(6650), + [sym__val_number_decimal] = STATE(5111), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(6650), + [sym_val_filesize] = STATE(6650), + [sym_val_binary] = STATE(6650), + [sym_val_string] = STATE(6650), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_table] = STATE(6650), + [sym_unquoted] = STATE(6681), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1183), + [aux_sym_ctrl_match_repeat1] = STATE(1171), + [anon_sym_LBRACK] = ACTIONS(3548), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym__] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(3618), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), - [anon_sym_DOT_DOT_LT] = ACTIONS(3620), - [anon_sym_null] = ACTIONS(3622), - [anon_sym_true] = ACTIONS(3624), - [anon_sym_false] = ACTIONS(3624), - [aux_sym__val_number_decimal_token1] = ACTIONS(3626), - [aux_sym__val_number_decimal_token2] = ACTIONS(3628), - [aux_sym__val_number_decimal_token3] = ACTIONS(3630), - [aux_sym__val_number_decimal_token4] = ACTIONS(3632), + [anon_sym_DOLLAR] = ACTIONS(3550), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym__] = ACTIONS(3556), + [anon_sym_DOT_DOT] = ACTIONS(3558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3560), + [anon_sym_DOT_DOT_LT] = ACTIONS(3560), + [anon_sym_null] = ACTIONS(3562), + [anon_sym_true] = ACTIONS(3564), + [anon_sym_false] = ACTIONS(3564), + [aux_sym__val_number_decimal_token1] = ACTIONS(3566), + [aux_sym__val_number_decimal_token2] = ACTIONS(3568), + [aux_sym__val_number_decimal_token3] = ACTIONS(3570), + [aux_sym__val_number_decimal_token4] = ACTIONS(3572), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3634), - [aux_sym__val_number_token5] = ACTIONS(3634), - [aux_sym__val_number_token6] = ACTIONS(3634), + [aux_sym__val_number_token4] = ACTIONS(3574), + [aux_sym__val_number_token5] = ACTIONS(3574), + [aux_sym__val_number_token6] = ACTIONS(3574), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3636), + [sym_val_date] = ACTIONS(3576), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1236] = { - [sym_match_arm] = STATE(6897), - [sym_default_arm] = STATE(6897), - [sym_match_pattern] = STATE(7567), - [sym__match_pattern] = STATE(6127), - [sym__match_pattern_expression] = STATE(7169), - [sym__match_pattern_value] = STATE(7170), - [sym__match_pattern_list] = STATE(7173), - [sym__match_pattern_record] = STATE(7174), - [sym_expr_parenthesized] = STATE(5946), - [sym_val_range] = STATE(7170), - [sym__val_range] = STATE(7723), - [sym_val_nothing] = STATE(7176), - [sym_val_bool] = STATE(6722), - [sym_val_variable] = STATE(5947), - [sym_val_number] = STATE(7176), - [sym__val_number_decimal] = STATE(5407), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(7176), - [sym_val_filesize] = STATE(7176), - [sym_val_binary] = STATE(7176), - [sym_val_string] = STATE(7176), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_table] = STATE(7176), - [sym_unquoted] = STATE(7181), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1236), - [aux_sym_ctrl_match_repeat1] = STATE(1225), - [anon_sym_LBRACK] = ACTIONS(3608), + [1184] = { + [sym_match_arm] = STATE(6420), + [sym_default_arm] = STATE(6420), + [sym_match_pattern] = STATE(7019), + [sym__match_pattern] = STATE(5730), + [sym__match_pattern_expression] = STATE(6638), + [sym__match_pattern_value] = STATE(6639), + [sym__match_pattern_list] = STATE(6641), + [sym__match_pattern_record] = STATE(6644), + [sym_expr_parenthesized] = STATE(5503), + [sym_val_range] = STATE(6639), + [sym__val_range] = STATE(7094), + [sym_val_nothing] = STATE(6650), + [sym_val_bool] = STATE(5921), + [sym_val_variable] = STATE(5516), + [sym_val_number] = STATE(6650), + [sym__val_number_decimal] = STATE(5111), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(6650), + [sym_val_filesize] = STATE(6650), + [sym_val_binary] = STATE(6650), + [sym_val_string] = STATE(6650), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_table] = STATE(6650), + [sym_unquoted] = STATE(6681), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1184), + [aux_sym_ctrl_match_repeat1] = STATE(1171), + [anon_sym_LBRACK] = ACTIONS(3548), [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym__] = ACTIONS(3616), - [anon_sym_DOT_DOT] = ACTIONS(3618), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3620), - [anon_sym_DOT_DOT_LT] = ACTIONS(3620), - [anon_sym_null] = ACTIONS(3622), - [anon_sym_true] = ACTIONS(3624), - [anon_sym_false] = ACTIONS(3624), - [aux_sym__val_number_decimal_token1] = ACTIONS(3626), - [aux_sym__val_number_decimal_token2] = ACTIONS(3628), - [aux_sym__val_number_decimal_token3] = ACTIONS(3630), - [aux_sym__val_number_decimal_token4] = ACTIONS(3632), + [anon_sym_DOLLAR] = ACTIONS(3550), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym__] = ACTIONS(3556), + [anon_sym_DOT_DOT] = ACTIONS(3558), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3560), + [anon_sym_DOT_DOT_LT] = ACTIONS(3560), + [anon_sym_null] = ACTIONS(3562), + [anon_sym_true] = ACTIONS(3564), + [anon_sym_false] = ACTIONS(3564), + [aux_sym__val_number_decimal_token1] = ACTIONS(3566), + [aux_sym__val_number_decimal_token2] = ACTIONS(3568), + [aux_sym__val_number_decimal_token3] = ACTIONS(3570), + [aux_sym__val_number_decimal_token4] = ACTIONS(3572), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3634), - [aux_sym__val_number_token5] = ACTIONS(3634), - [aux_sym__val_number_token6] = ACTIONS(3634), + [aux_sym__val_number_token4] = ACTIONS(3574), + [aux_sym__val_number_token5] = ACTIONS(3574), + [aux_sym__val_number_token6] = ACTIONS(3574), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3636), + [sym_val_date] = ACTIONS(3576), [anon_sym_DQUOTE] = ACTIONS(233), [sym__str_single_quotes] = ACTIONS(235), [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(247), }, - [1237] = { - [sym_comment] = STATE(1237), - [anon_sym_STAR_STAR] = ACTIONS(3110), - [anon_sym_PLUS_PLUS] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_mod] = ACTIONS(3110), - [anon_sym_SLASH_SLASH] = ACTIONS(3110), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3110), - [anon_sym_bit_DASHshl] = ACTIONS(3110), - [anon_sym_bit_DASHshr] = ACTIONS(3110), - [anon_sym_EQ_TILDE] = ACTIONS(3110), - [anon_sym_BANG_TILDE] = ACTIONS(3110), - [anon_sym_bit_DASHand] = ACTIONS(3110), - [anon_sym_bit_DASHxor] = ACTIONS(3110), - [anon_sym_bit_DASHor] = ACTIONS(3110), - [anon_sym_and] = ACTIONS(3110), - [anon_sym_xor] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3110), - [anon_sym_in] = ACTIONS(3110), - [anon_sym_not_DASHin] = ACTIONS(3110), - [anon_sym_has] = ACTIONS(3110), - [anon_sym_not_DASHhas] = ACTIONS(3110), - [anon_sym_starts_DASHwith] = ACTIONS(3110), - [anon_sym_ends_DASHwith] = ACTIONS(3110), - [anon_sym_EQ_EQ] = ACTIONS(3110), - [anon_sym_BANG_EQ] = ACTIONS(3110), - [anon_sym_LT] = ACTIONS(3112), - [anon_sym_LT_EQ] = ACTIONS(3110), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_GT_EQ] = ACTIONS(3110), - [aux_sym_cmd_identifier_token41] = ACTIONS(3114), - [sym__newline] = ACTIONS(2202), - [anon_sym_SEMI] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_err_GT_PIPE] = ACTIONS(2202), - [anon_sym_out_GT_PIPE] = ACTIONS(2202), - [anon_sym_e_GT_PIPE] = ACTIONS(2202), - [anon_sym_o_GT_PIPE] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2202), - [anon_sym_GT2] = ACTIONS(2202), - [anon_sym_DASH2] = ACTIONS(2202), - [anon_sym_in2] = ACTIONS(2202), - [anon_sym_RBRACE] = ACTIONS(2202), - [anon_sym_STAR2] = ACTIONS(2202), - [anon_sym_and2] = ACTIONS(2202), - [anon_sym_xor2] = ACTIONS(2202), - [anon_sym_or2] = ACTIONS(2202), - [anon_sym_not_DASHin2] = ACTIONS(2202), - [anon_sym_has2] = ACTIONS(2202), - [anon_sym_not_DASHhas2] = ACTIONS(2202), - [anon_sym_starts_DASHwith2] = ACTIONS(2202), - [anon_sym_ends_DASHwith2] = ACTIONS(2202), - [anon_sym_EQ_EQ2] = ACTIONS(2202), - [anon_sym_BANG_EQ2] = ACTIONS(2202), - [anon_sym_LT2] = ACTIONS(2202), - [anon_sym_LT_EQ2] = ACTIONS(2202), - [anon_sym_GT_EQ2] = ACTIONS(2202), - [anon_sym_EQ_TILDE2] = ACTIONS(2202), - [anon_sym_BANG_TILDE2] = ACTIONS(2202), - [anon_sym_STAR_STAR2] = ACTIONS(2202), - [anon_sym_PLUS_PLUS2] = ACTIONS(2202), - [anon_sym_SLASH2] = ACTIONS(2202), - [anon_sym_mod2] = ACTIONS(2202), - [anon_sym_SLASH_SLASH2] = ACTIONS(2202), - [anon_sym_PLUS2] = ACTIONS(2202), - [anon_sym_bit_DASHshl2] = ACTIONS(2202), - [anon_sym_bit_DASHshr2] = ACTIONS(2202), - [anon_sym_bit_DASHand2] = ACTIONS(2202), - [anon_sym_bit_DASHxor2] = ACTIONS(2202), - [anon_sym_bit_DASHor2] = ACTIONS(2202), + [1185] = { + [sym_comment] = STATE(1185), + [anon_sym_STAR_STAR] = ACTIONS(3096), + [anon_sym_PLUS_PLUS] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_mod] = ACTIONS(3096), + [anon_sym_SLASH_SLASH] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3098), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_bit_DASHshl] = ACTIONS(3096), + [anon_sym_bit_DASHshr] = ACTIONS(3096), + [anon_sym_EQ_TILDE] = ACTIONS(3096), + [anon_sym_BANG_TILDE] = ACTIONS(3096), + [anon_sym_bit_DASHand] = ACTIONS(3096), + [anon_sym_bit_DASHxor] = ACTIONS(3096), + [anon_sym_bit_DASHor] = ACTIONS(3096), + [anon_sym_and] = ACTIONS(3096), + [anon_sym_xor] = ACTIONS(3096), + [anon_sym_or] = ACTIONS(3096), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_not_DASHin] = ACTIONS(3096), + [anon_sym_has] = ACTIONS(3096), + [anon_sym_not_DASHhas] = ACTIONS(3096), + [anon_sym_starts_DASHwith] = ACTIONS(3096), + [anon_sym_ends_DASHwith] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3096), + [aux_sym_cmd_identifier_token41] = ACTIONS(3100), + [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_GT2] = ACTIONS(2128), + [anon_sym_DASH2] = ACTIONS(2128), + [anon_sym_in2] = ACTIONS(2128), + [anon_sym_STAR2] = ACTIONS(2128), + [anon_sym_and2] = ACTIONS(2128), + [anon_sym_xor2] = ACTIONS(2128), + [anon_sym_or2] = ACTIONS(2128), + [anon_sym_not_DASHin2] = ACTIONS(2128), + [anon_sym_has2] = ACTIONS(2128), + [anon_sym_not_DASHhas2] = ACTIONS(2128), + [anon_sym_starts_DASHwith2] = ACTIONS(2128), + [anon_sym_ends_DASHwith2] = ACTIONS(2128), + [anon_sym_EQ_EQ2] = ACTIONS(2128), + [anon_sym_BANG_EQ2] = ACTIONS(2128), + [anon_sym_LT2] = ACTIONS(2128), + [anon_sym_LT_EQ2] = ACTIONS(2128), + [anon_sym_GT_EQ2] = ACTIONS(2128), + [anon_sym_EQ_TILDE2] = ACTIONS(2128), + [anon_sym_BANG_TILDE2] = ACTIONS(2128), + [anon_sym_STAR_STAR2] = ACTIONS(2128), + [anon_sym_PLUS_PLUS2] = ACTIONS(2128), + [anon_sym_SLASH2] = ACTIONS(2128), + [anon_sym_mod2] = ACTIONS(2128), + [anon_sym_SLASH_SLASH2] = ACTIONS(2128), + [anon_sym_PLUS2] = ACTIONS(2128), + [anon_sym_bit_DASHshl2] = ACTIONS(2128), + [anon_sym_bit_DASHshr2] = ACTIONS(2128), + [anon_sym_bit_DASHand2] = ACTIONS(2128), + [anon_sym_bit_DASHxor2] = ACTIONS(2128), + [anon_sym_bit_DASHor2] = ACTIONS(2128), [anon_sym_POUND] = ACTIONS(3), }, - [1238] = { - [sym_path] = STATE(1286), - [sym_comment] = STATE(1238), - [aux_sym_cell_path_repeat1] = STATE(1238), - [anon_sym_EQ] = ACTIONS(935), - [anon_sym_PLUS_EQ] = ACTIONS(937), - [anon_sym_DASH_EQ] = ACTIONS(937), - [anon_sym_STAR_EQ] = ACTIONS(937), - [anon_sym_SLASH_EQ] = ACTIONS(937), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(937), - [sym__newline] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(937), - [anon_sym_err_GT_PIPE] = ACTIONS(937), - [anon_sym_out_GT_PIPE] = ACTIONS(937), - [anon_sym_e_GT_PIPE] = ACTIONS(937), - [anon_sym_o_GT_PIPE] = ACTIONS(937), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), - [anon_sym_RPAREN] = ACTIONS(937), - [anon_sym_GT2] = ACTIONS(935), - [anon_sym_DASH2] = ACTIONS(935), - [anon_sym_in2] = ACTIONS(937), - [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_STAR2] = ACTIONS(935), - [anon_sym_and2] = ACTIONS(937), - [anon_sym_xor2] = ACTIONS(937), - [anon_sym_or2] = ACTIONS(937), - [anon_sym_not_DASHin2] = ACTIONS(937), - [anon_sym_has2] = ACTIONS(937), - [anon_sym_not_DASHhas2] = ACTIONS(937), - [anon_sym_starts_DASHwith2] = ACTIONS(937), - [anon_sym_ends_DASHwith2] = ACTIONS(937), - [anon_sym_EQ_EQ2] = ACTIONS(937), - [anon_sym_BANG_EQ2] = ACTIONS(937), - [anon_sym_LT2] = ACTIONS(935), - [anon_sym_LT_EQ2] = ACTIONS(937), - [anon_sym_GT_EQ2] = ACTIONS(937), - [anon_sym_EQ_TILDE2] = ACTIONS(937), - [anon_sym_BANG_TILDE2] = ACTIONS(937), - [anon_sym_STAR_STAR2] = ACTIONS(937), - [anon_sym_PLUS_PLUS2] = ACTIONS(935), - [anon_sym_SLASH2] = ACTIONS(935), - [anon_sym_mod2] = ACTIONS(937), - [anon_sym_SLASH_SLASH2] = ACTIONS(937), - [anon_sym_PLUS2] = ACTIONS(935), - [anon_sym_bit_DASHshl2] = ACTIONS(937), - [anon_sym_bit_DASHshr2] = ACTIONS(937), - [anon_sym_bit_DASHand2] = ACTIONS(937), - [anon_sym_bit_DASHxor2] = ACTIONS(937), - [anon_sym_bit_DASHor2] = ACTIONS(937), - [anon_sym_DOT_DOT2] = ACTIONS(935), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), - [anon_sym_DOT_DOT_LT2] = ACTIONS(937), - [anon_sym_COLON2] = ACTIONS(937), - [anon_sym_DOT2] = ACTIONS(3978), - [anon_sym_err_GT] = ACTIONS(935), - [anon_sym_out_GT] = ACTIONS(935), - [anon_sym_e_GT] = ACTIONS(935), - [anon_sym_o_GT] = ACTIONS(935), - [anon_sym_err_PLUSout_GT] = ACTIONS(935), - [anon_sym_out_PLUSerr_GT] = ACTIONS(935), - [anon_sym_o_PLUSe_GT] = ACTIONS(935), - [anon_sym_e_PLUSo_GT] = ACTIONS(935), - [anon_sym_err_GT_GT] = ACTIONS(937), - [anon_sym_out_GT_GT] = ACTIONS(937), - [anon_sym_e_GT_GT] = ACTIONS(937), - [anon_sym_o_GT_GT] = ACTIONS(937), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), - [anon_sym_POUND] = ACTIONS(245), + [1186] = { + [sym_comment] = STATE(1186), + [anon_sym_STAR_STAR] = ACTIONS(3096), + [anon_sym_PLUS_PLUS] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_mod] = ACTIONS(3096), + [anon_sym_SLASH_SLASH] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3098), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_bit_DASHshl] = ACTIONS(3096), + [anon_sym_bit_DASHshr] = ACTIONS(3096), + [anon_sym_EQ_TILDE] = ACTIONS(3096), + [anon_sym_BANG_TILDE] = ACTIONS(3096), + [anon_sym_bit_DASHand] = ACTIONS(3096), + [anon_sym_bit_DASHxor] = ACTIONS(3096), + [anon_sym_bit_DASHor] = ACTIONS(3096), + [anon_sym_and] = ACTIONS(3096), + [anon_sym_xor] = ACTIONS(3096), + [anon_sym_or] = ACTIONS(3096), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_not_DASHin] = ACTIONS(3096), + [anon_sym_has] = ACTIONS(3096), + [anon_sym_not_DASHhas] = ACTIONS(3096), + [anon_sym_starts_DASHwith] = ACTIONS(3096), + [anon_sym_ends_DASHwith] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3096), + [aux_sym_cmd_identifier_token41] = ACTIONS(3100), + [sym__newline] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_err_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_GT_PIPE] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2068), + [anon_sym_GT2] = ACTIONS(2068), + [anon_sym_DASH2] = ACTIONS(2068), + [anon_sym_in2] = ACTIONS(2068), + [anon_sym_STAR2] = ACTIONS(2068), + [anon_sym_and2] = ACTIONS(2068), + [anon_sym_xor2] = ACTIONS(2068), + [anon_sym_or2] = ACTIONS(2068), + [anon_sym_not_DASHin2] = ACTIONS(2068), + [anon_sym_has2] = ACTIONS(2068), + [anon_sym_not_DASHhas2] = ACTIONS(2068), + [anon_sym_starts_DASHwith2] = ACTIONS(2068), + [anon_sym_ends_DASHwith2] = ACTIONS(2068), + [anon_sym_EQ_EQ2] = ACTIONS(2068), + [anon_sym_BANG_EQ2] = ACTIONS(2068), + [anon_sym_LT2] = ACTIONS(2068), + [anon_sym_LT_EQ2] = ACTIONS(2068), + [anon_sym_GT_EQ2] = ACTIONS(2068), + [anon_sym_EQ_TILDE2] = ACTIONS(2068), + [anon_sym_BANG_TILDE2] = ACTIONS(2068), + [anon_sym_STAR_STAR2] = ACTIONS(2068), + [anon_sym_PLUS_PLUS2] = ACTIONS(2068), + [anon_sym_SLASH2] = ACTIONS(2068), + [anon_sym_mod2] = ACTIONS(2068), + [anon_sym_SLASH_SLASH2] = ACTIONS(2068), + [anon_sym_PLUS2] = ACTIONS(2068), + [anon_sym_bit_DASHshl2] = ACTIONS(2068), + [anon_sym_bit_DASHshr2] = ACTIONS(2068), + [anon_sym_bit_DASHand2] = ACTIONS(2068), + [anon_sym_bit_DASHxor2] = ACTIONS(2068), + [anon_sym_bit_DASHor2] = ACTIONS(2068), + [anon_sym_POUND] = ACTIONS(3), }, - [1239] = { - [sym__expr_parenthesized_immediate] = STATE(1577), - [sym__immediate_decimal] = STATE(1424), - [sym_val_variable] = STATE(1577), - [sym_comment] = STATE(1239), + [1187] = { + [sym__expr_parenthesized_immediate] = STATE(1464), + [sym__immediate_decimal] = STATE(1377), + [sym_val_variable] = STATE(1464), + [sym_comment] = STATE(1187), [sym__newline] = ACTIONS(1445), [anon_sym_SEMI] = ACTIONS(1445), [anon_sym_PIPE] = ACTIONS(1445), @@ -198584,20 +192309,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1445), [anon_sym_LPAREN] = ACTIONS(1431), [anon_sym_RPAREN] = ACTIONS(1445), - [anon_sym_DOLLAR] = ACTIONS(2686), + [anon_sym_DOLLAR] = ACTIONS(2633), [anon_sym_DASH_DASH] = ACTIONS(1445), [anon_sym_DASH2] = ACTIONS(1431), [anon_sym_LBRACE] = ACTIONS(1445), [anon_sym_RBRACE] = ACTIONS(1445), [anon_sym_DOT_DOT] = ACTIONS(1431), - [anon_sym_LPAREN2] = ACTIONS(3981), - [anon_sym_DOT] = ACTIONS(3983), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_DOT] = ACTIONS(3924), [anon_sym_DOT_DOT_EQ] = ACTIONS(1445), [anon_sym_DOT_DOT_LT] = ACTIONS(1445), - [aux_sym__immediate_decimal_token1] = ACTIONS(3985), - [aux_sym__immediate_decimal_token3] = ACTIONS(3987), - [aux_sym__immediate_decimal_token4] = ACTIONS(3989), - [aux_sym__immediate_decimal_token5] = ACTIONS(3991), + [aux_sym__immediate_decimal_token1] = ACTIONS(3926), + [aux_sym__immediate_decimal_token3] = ACTIONS(3928), + [aux_sym__immediate_decimal_token4] = ACTIONS(3930), + [aux_sym__immediate_decimal_token5] = ACTIONS(3932), [anon_sym_null] = ACTIONS(1445), [anon_sym_true] = ACTIONS(1445), [anon_sym_false] = ACTIONS(1445), @@ -198641,314 +192366,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(1445), }, - [1240] = { - [sym_comment] = STATE(1240), - [anon_sym_STAR_STAR] = ACTIONS(3110), - [anon_sym_PLUS_PLUS] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_mod] = ACTIONS(3110), - [anon_sym_SLASH_SLASH] = ACTIONS(3110), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3110), - [anon_sym_bit_DASHshl] = ACTIONS(3110), - [anon_sym_bit_DASHshr] = ACTIONS(3110), - [anon_sym_EQ_TILDE] = ACTIONS(3110), - [anon_sym_BANG_TILDE] = ACTIONS(3110), - [anon_sym_bit_DASHand] = ACTIONS(3110), - [anon_sym_bit_DASHxor] = ACTIONS(3110), - [anon_sym_bit_DASHor] = ACTIONS(3110), - [anon_sym_and] = ACTIONS(3110), - [anon_sym_xor] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3110), - [anon_sym_in] = ACTIONS(3110), - [anon_sym_not_DASHin] = ACTIONS(3110), - [anon_sym_has] = ACTIONS(3110), - [anon_sym_not_DASHhas] = ACTIONS(3110), - [anon_sym_starts_DASHwith] = ACTIONS(3110), - [anon_sym_ends_DASHwith] = ACTIONS(3110), - [anon_sym_EQ_EQ] = ACTIONS(3110), - [anon_sym_BANG_EQ] = ACTIONS(3110), - [anon_sym_LT] = ACTIONS(3112), - [anon_sym_LT_EQ] = ACTIONS(3110), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_GT_EQ] = ACTIONS(3110), - [aux_sym_cmd_identifier_token41] = ACTIONS(3114), - [sym__newline] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(2089), - [anon_sym_PIPE] = ACTIONS(2089), - [anon_sym_err_GT_PIPE] = ACTIONS(2089), - [anon_sym_out_GT_PIPE] = ACTIONS(2089), - [anon_sym_e_GT_PIPE] = ACTIONS(2089), - [anon_sym_o_GT_PIPE] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2089), - [anon_sym_GT2] = ACTIONS(2089), - [anon_sym_DASH2] = ACTIONS(2089), - [anon_sym_in2] = ACTIONS(2089), - [anon_sym_STAR2] = ACTIONS(2089), - [anon_sym_and2] = ACTIONS(2089), - [anon_sym_xor2] = ACTIONS(2089), - [anon_sym_or2] = ACTIONS(2089), - [anon_sym_not_DASHin2] = ACTIONS(2089), - [anon_sym_has2] = ACTIONS(2089), - [anon_sym_not_DASHhas2] = ACTIONS(2089), - [anon_sym_starts_DASHwith2] = ACTIONS(2089), - [anon_sym_ends_DASHwith2] = ACTIONS(2089), - [anon_sym_EQ_EQ2] = ACTIONS(2089), - [anon_sym_BANG_EQ2] = ACTIONS(2089), - [anon_sym_LT2] = ACTIONS(2089), - [anon_sym_LT_EQ2] = ACTIONS(2089), - [anon_sym_GT_EQ2] = ACTIONS(2089), - [anon_sym_EQ_TILDE2] = ACTIONS(2089), - [anon_sym_BANG_TILDE2] = ACTIONS(2089), - [anon_sym_STAR_STAR2] = ACTIONS(2089), - [anon_sym_PLUS_PLUS2] = ACTIONS(2089), - [anon_sym_SLASH2] = ACTIONS(2089), - [anon_sym_mod2] = ACTIONS(2089), - [anon_sym_SLASH_SLASH2] = ACTIONS(2089), - [anon_sym_PLUS2] = ACTIONS(2089), - [anon_sym_bit_DASHshl2] = ACTIONS(2089), - [anon_sym_bit_DASHshr2] = ACTIONS(2089), - [anon_sym_bit_DASHand2] = ACTIONS(2089), - [anon_sym_bit_DASHxor2] = ACTIONS(2089), - [anon_sym_bit_DASHor2] = ACTIONS(2089), - [anon_sym_POUND] = ACTIONS(3), - }, - [1241] = { - [sym_expr_parenthesized] = STATE(6380), - [sym_val_range] = STATE(7551), - [sym__val_range] = STATE(7723), - [sym__value] = STATE(7551), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(7490), - [sym_val_variable] = STATE(6711), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(5639), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(7631), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1241), - [anon_sym_LBRACK] = ACTIONS(3540), - [anon_sym_LPAREN] = ACTIONS(3542), - [anon_sym_DOLLAR] = ACTIONS(3544), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_DOT_DOT] = ACTIONS(3834), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3836), - [anon_sym_DOT_DOT_LT] = ACTIONS(3836), - [anon_sym_null] = ACTIONS(3838), - [anon_sym_true] = ACTIONS(3840), - [anon_sym_false] = ACTIONS(3840), - [aux_sym__val_number_decimal_token1] = ACTIONS(3842), - [aux_sym__val_number_decimal_token2] = ACTIONS(3844), - [aux_sym__val_number_decimal_token3] = ACTIONS(3846), - [aux_sym__val_number_decimal_token4] = ACTIONS(3848), - [aux_sym__val_number_token1] = ACTIONS(223), - [aux_sym__val_number_token2] = ACTIONS(223), - [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3850), - [aux_sym__val_number_token5] = ACTIONS(3850), - [aux_sym__val_number_token6] = ACTIONS(3850), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3852), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym__str_single_quotes] = ACTIONS(1264), - [sym__str_back_ticks] = ACTIONS(1264), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), + [1188] = { + [sym_path] = STATE(1240), + [sym_comment] = STATE(1188), + [aux_sym_cell_path_repeat1] = STATE(1190), + [anon_sym_EQ] = ACTIONS(938), + [anon_sym_PLUS_EQ] = ACTIONS(940), + [anon_sym_DASH_EQ] = ACTIONS(940), + [anon_sym_STAR_EQ] = ACTIONS(940), + [anon_sym_SLASH_EQ] = ACTIONS(940), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(940), + [sym__newline] = ACTIONS(940), + [anon_sym_SEMI] = ACTIONS(940), + [anon_sym_PIPE] = ACTIONS(940), + [anon_sym_err_GT_PIPE] = ACTIONS(940), + [anon_sym_out_GT_PIPE] = ACTIONS(940), + [anon_sym_e_GT_PIPE] = ACTIONS(940), + [anon_sym_o_GT_PIPE] = ACTIONS(940), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(940), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(940), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(940), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(940), + [anon_sym_RPAREN] = ACTIONS(940), + [anon_sym_GT2] = ACTIONS(938), + [anon_sym_DASH2] = ACTIONS(938), + [anon_sym_in2] = ACTIONS(940), + [anon_sym_RBRACE] = ACTIONS(940), + [anon_sym_STAR2] = ACTIONS(938), + [anon_sym_and2] = ACTIONS(940), + [anon_sym_xor2] = ACTIONS(940), + [anon_sym_or2] = ACTIONS(940), + [anon_sym_not_DASHin2] = ACTIONS(940), + [anon_sym_has2] = ACTIONS(940), + [anon_sym_not_DASHhas2] = ACTIONS(940), + [anon_sym_starts_DASHwith2] = ACTIONS(940), + [anon_sym_ends_DASHwith2] = ACTIONS(940), + [anon_sym_EQ_EQ2] = ACTIONS(940), + [anon_sym_BANG_EQ2] = ACTIONS(940), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ2] = ACTIONS(940), + [anon_sym_GT_EQ2] = ACTIONS(940), + [anon_sym_EQ_TILDE2] = ACTIONS(940), + [anon_sym_BANG_TILDE2] = ACTIONS(940), + [anon_sym_STAR_STAR2] = ACTIONS(940), + [anon_sym_PLUS_PLUS2] = ACTIONS(938), + [anon_sym_SLASH2] = ACTIONS(938), + [anon_sym_mod2] = ACTIONS(940), + [anon_sym_SLASH_SLASH2] = ACTIONS(940), + [anon_sym_PLUS2] = ACTIONS(938), + [anon_sym_bit_DASHshl2] = ACTIONS(940), + [anon_sym_bit_DASHshr2] = ACTIONS(940), + [anon_sym_bit_DASHand2] = ACTIONS(940), + [anon_sym_bit_DASHxor2] = ACTIONS(940), + [anon_sym_bit_DASHor2] = ACTIONS(940), + [anon_sym_DOT_DOT2] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(940), + [anon_sym_DOT_DOT_LT2] = ACTIONS(940), + [anon_sym_COLON2] = ACTIONS(940), + [anon_sym_DOT2] = ACTIONS(3900), + [anon_sym_err_GT] = ACTIONS(938), + [anon_sym_out_GT] = ACTIONS(938), + [anon_sym_e_GT] = ACTIONS(938), + [anon_sym_o_GT] = ACTIONS(938), + [anon_sym_err_PLUSout_GT] = ACTIONS(938), + [anon_sym_out_PLUSerr_GT] = ACTIONS(938), + [anon_sym_o_PLUSe_GT] = ACTIONS(938), + [anon_sym_e_PLUSo_GT] = ACTIONS(938), + [anon_sym_err_GT_GT] = ACTIONS(940), + [anon_sym_out_GT_GT] = ACTIONS(940), + [anon_sym_e_GT_GT] = ACTIONS(940), + [anon_sym_o_GT_GT] = ACTIONS(940), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(940), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(940), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(940), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(940), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1266), }, - [1242] = { - [sym_expr_parenthesized] = STATE(6700), - [sym_val_range] = STATE(7622), - [sym__val_range] = STATE(7723), - [sym__value] = STATE(7622), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(7490), - [sym_val_variable] = STATE(6711), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(5639), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(7625), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1242), - [anon_sym_LBRACK] = ACTIONS(3540), - [anon_sym_LPAREN] = ACTIONS(3542), - [anon_sym_DOLLAR] = ACTIONS(3544), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_DOT_DOT] = ACTIONS(3834), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3836), - [anon_sym_DOT_DOT_LT] = ACTIONS(3836), - [anon_sym_null] = ACTIONS(3838), - [anon_sym_true] = ACTIONS(3840), - [anon_sym_false] = ACTIONS(3840), - [aux_sym__val_number_decimal_token1] = ACTIONS(3842), - [aux_sym__val_number_decimal_token2] = ACTIONS(3844), - [aux_sym__val_number_decimal_token3] = ACTIONS(3846), - [aux_sym__val_number_decimal_token4] = ACTIONS(3848), + [1189] = { + [sym_expr_parenthesized] = STATE(6292), + [sym_val_range] = STATE(7082), + [sym__val_range] = STATE(7094), + [sym__value] = STATE(7082), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(6849), + [sym_val_variable] = STATE(6329), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(5351), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(7098), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1189), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_LBRACE] = ACTIONS(3444), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3904), + [anon_sym_DOT_DOT_LT] = ACTIONS(3904), + [anon_sym_null] = ACTIONS(3906), + [anon_sym_true] = ACTIONS(3908), + [anon_sym_false] = ACTIONS(3908), + [aux_sym__val_number_decimal_token1] = ACTIONS(3910), + [aux_sym__val_number_decimal_token2] = ACTIONS(3912), + [aux_sym__val_number_decimal_token3] = ACTIONS(3914), + [aux_sym__val_number_decimal_token4] = ACTIONS(3916), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3850), - [aux_sym__val_number_token5] = ACTIONS(3850), - [aux_sym__val_number_token6] = ACTIONS(3850), + [aux_sym__val_number_token4] = ACTIONS(3918), + [aux_sym__val_number_token5] = ACTIONS(3918), + [aux_sym__val_number_token6] = ACTIONS(3918), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3852), + [sym_val_date] = ACTIONS(3920), [anon_sym_DQUOTE] = ACTIONS(1262), [sym__str_single_quotes] = ACTIONS(1264), [sym__str_back_ticks] = ACTIONS(1264), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(1266), }, - [1243] = { - [sym_comment] = STATE(1243), - [anon_sym_STAR_STAR] = ACTIONS(3110), - [anon_sym_PLUS_PLUS] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_mod] = ACTIONS(3110), - [anon_sym_SLASH_SLASH] = ACTIONS(3110), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3110), - [anon_sym_bit_DASHshl] = ACTIONS(3110), - [anon_sym_bit_DASHshr] = ACTIONS(3110), - [anon_sym_EQ_TILDE] = ACTIONS(3110), - [anon_sym_BANG_TILDE] = ACTIONS(3110), - [anon_sym_bit_DASHand] = ACTIONS(3110), - [anon_sym_bit_DASHxor] = ACTIONS(3110), - [anon_sym_bit_DASHor] = ACTIONS(3110), - [anon_sym_and] = ACTIONS(3110), - [anon_sym_xor] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3110), - [anon_sym_in] = ACTIONS(3110), - [anon_sym_not_DASHin] = ACTIONS(3110), - [anon_sym_has] = ACTIONS(3110), - [anon_sym_not_DASHhas] = ACTIONS(3110), - [anon_sym_starts_DASHwith] = ACTIONS(3110), - [anon_sym_ends_DASHwith] = ACTIONS(3110), - [anon_sym_EQ_EQ] = ACTIONS(3110), - [anon_sym_BANG_EQ] = ACTIONS(3110), - [anon_sym_LT] = ACTIONS(3112), - [anon_sym_LT_EQ] = ACTIONS(3110), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_GT_EQ] = ACTIONS(3110), - [aux_sym_cmd_identifier_token41] = ACTIONS(3114), - [sym__newline] = ACTIONS(2202), - [anon_sym_SEMI] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_err_GT_PIPE] = ACTIONS(2202), - [anon_sym_out_GT_PIPE] = ACTIONS(2202), - [anon_sym_e_GT_PIPE] = ACTIONS(2202), - [anon_sym_o_GT_PIPE] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2202), - [anon_sym_GT2] = ACTIONS(2202), - [anon_sym_DASH2] = ACTIONS(2202), - [anon_sym_in2] = ACTIONS(2202), - [anon_sym_STAR2] = ACTIONS(2202), - [anon_sym_and2] = ACTIONS(2202), - [anon_sym_xor2] = ACTIONS(2202), - [anon_sym_or2] = ACTIONS(2202), - [anon_sym_not_DASHin2] = ACTIONS(2202), - [anon_sym_has2] = ACTIONS(2202), - [anon_sym_not_DASHhas2] = ACTIONS(2202), - [anon_sym_starts_DASHwith2] = ACTIONS(2202), - [anon_sym_ends_DASHwith2] = ACTIONS(2202), - [anon_sym_EQ_EQ2] = ACTIONS(2202), - [anon_sym_BANG_EQ2] = ACTIONS(2202), - [anon_sym_LT2] = ACTIONS(2202), - [anon_sym_LT_EQ2] = ACTIONS(2202), - [anon_sym_GT_EQ2] = ACTIONS(2202), - [anon_sym_EQ_TILDE2] = ACTIONS(2202), - [anon_sym_BANG_TILDE2] = ACTIONS(2202), - [anon_sym_STAR_STAR2] = ACTIONS(2202), - [anon_sym_PLUS_PLUS2] = ACTIONS(2202), - [anon_sym_SLASH2] = ACTIONS(2202), - [anon_sym_mod2] = ACTIONS(2202), - [anon_sym_SLASH_SLASH2] = ACTIONS(2202), - [anon_sym_PLUS2] = ACTIONS(2202), - [anon_sym_bit_DASHshl2] = ACTIONS(2202), - [anon_sym_bit_DASHshr2] = ACTIONS(2202), - [anon_sym_bit_DASHand2] = ACTIONS(2202), - [anon_sym_bit_DASHxor2] = ACTIONS(2202), - [anon_sym_bit_DASHor2] = ACTIONS(2202), - [anon_sym_POUND] = ACTIONS(3), - }, - [1244] = { - [sym_path] = STATE(1286), - [sym_comment] = STATE(1244), - [aux_sym_cell_path_repeat1] = STATE(1238), + [1190] = { + [sym_path] = STATE(1240), + [sym_comment] = STATE(1190), + [aux_sym_cell_path_repeat1] = STATE(1190), [anon_sym_EQ] = ACTIONS(931), [anon_sym_PLUS_EQ] = ACTIONS(933), [anon_sym_DASH_EQ] = ACTIONS(933), @@ -199002,7 +192575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ2] = ACTIONS(933), [anon_sym_DOT_DOT_LT2] = ACTIONS(933), [anon_sym_COLON2] = ACTIONS(933), - [anon_sym_DOT2] = ACTIONS(3976), + [anon_sym_DOT2] = ACTIONS(3934), [anon_sym_err_GT] = ACTIONS(931), [anon_sym_out_GT] = ACTIONS(931), [anon_sym_e_GT] = ACTIONS(931), @@ -199021,308 +192594,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(933), [anon_sym_POUND] = ACTIONS(245), }, - [1245] = { - [sym__expr_parenthesized_immediate] = STATE(1956), - [sym__immediate_decimal] = STATE(1652), - [sym_val_variable] = STATE(1956), - [sym_comment] = STATE(1245), - [sym__newline] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_err_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_GT_PIPE] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_LBRACK] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1466), - [anon_sym_RPAREN] = ACTIONS(1468), - [anon_sym_DOLLAR] = ACTIONS(3993), - [anon_sym_DASH_DASH] = ACTIONS(1468), - [anon_sym_DASH2] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_DOT_DOT] = ACTIONS(1466), - [anon_sym_LPAREN2] = ACTIONS(3995), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT] = ACTIONS(1468), - [aux_sym__immediate_decimal_token1] = ACTIONS(3997), - [aux_sym__immediate_decimal_token3] = ACTIONS(3999), - [aux_sym__immediate_decimal_token4] = ACTIONS(4001), - [aux_sym__immediate_decimal_token5] = ACTIONS(4003), - [anon_sym_null] = ACTIONS(1468), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [aux_sym__val_number_decimal_token1] = ACTIONS(1466), - [aux_sym__val_number_decimal_token2] = ACTIONS(1466), - [aux_sym__val_number_decimal_token3] = ACTIONS(1466), - [aux_sym__val_number_decimal_token4] = ACTIONS(1466), - [aux_sym__val_number_token1] = ACTIONS(1468), - [aux_sym__val_number_token2] = ACTIONS(1468), - [aux_sym__val_number_token3] = ACTIONS(1468), - [aux_sym__val_number_token4] = ACTIONS(1468), - [aux_sym__val_number_token5] = ACTIONS(1468), - [aux_sym__val_number_token6] = ACTIONS(1468), - [anon_sym_0b] = ACTIONS(1466), - [anon_sym_0o] = ACTIONS(1466), - [anon_sym_0x] = ACTIONS(1466), - [sym_val_date] = ACTIONS(1468), - [anon_sym_DQUOTE] = ACTIONS(1468), - [sym__str_single_quotes] = ACTIONS(1468), - [sym__str_back_ticks] = ACTIONS(1468), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1468), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1468), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1468), - [anon_sym_out_GT_GT] = ACTIONS(1468), - [anon_sym_e_GT_GT] = ACTIONS(1468), - [anon_sym_o_GT_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), - [aux_sym_unquoted_token1] = ACTIONS(1466), - [aux_sym_unquoted_token2] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1468), - }, - [1246] = { - [sym__expr_parenthesized_immediate] = STATE(1618), - [sym__immediate_decimal] = STATE(1506), - [sym_val_variable] = STATE(1618), - [sym_comment] = STATE(1246), - [ts_builtin_sym_end] = ACTIONS(1445), - [sym__newline] = ACTIONS(1445), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_PIPE] = ACTIONS(1445), - [anon_sym_err_GT_PIPE] = ACTIONS(1445), - [anon_sym_out_GT_PIPE] = ACTIONS(1445), - [anon_sym_e_GT_PIPE] = ACTIONS(1445), - [anon_sym_o_GT_PIPE] = ACTIONS(1445), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1445), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1445), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1445), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1445), - [anon_sym_LBRACK] = ACTIONS(1445), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_DOLLAR] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(1445), - [anon_sym_DASH2] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(1445), - [anon_sym_DOT_DOT] = ACTIONS(1431), - [anon_sym_LPAREN2] = ACTIONS(4005), - [anon_sym_DOT] = ACTIONS(4007), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1445), - [anon_sym_DOT_DOT_LT] = ACTIONS(1445), - [aux_sym__immediate_decimal_token1] = ACTIONS(4009), - [aux_sym__immediate_decimal_token3] = ACTIONS(4011), - [aux_sym__immediate_decimal_token4] = ACTIONS(4013), - [aux_sym__immediate_decimal_token5] = ACTIONS(4015), - [anon_sym_null] = ACTIONS(1445), - [anon_sym_true] = ACTIONS(1445), - [anon_sym_false] = ACTIONS(1445), - [aux_sym__val_number_decimal_token1] = ACTIONS(1431), - [aux_sym__val_number_decimal_token2] = ACTIONS(1431), - [aux_sym__val_number_decimal_token3] = ACTIONS(1431), - [aux_sym__val_number_decimal_token4] = ACTIONS(1431), - [aux_sym__val_number_token1] = ACTIONS(1445), - [aux_sym__val_number_token2] = ACTIONS(1445), - [aux_sym__val_number_token3] = ACTIONS(1445), - [aux_sym__val_number_token4] = ACTIONS(1445), - [aux_sym__val_number_token5] = ACTIONS(1445), - [aux_sym__val_number_token6] = ACTIONS(1445), - [anon_sym_0b] = ACTIONS(1431), - [anon_sym_0o] = ACTIONS(1431), - [anon_sym_0x] = ACTIONS(1431), - [sym_val_date] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1445), - [sym__str_single_quotes] = ACTIONS(1445), - [sym__str_back_ticks] = ACTIONS(1445), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1445), - [anon_sym_err_GT] = ACTIONS(1431), - [anon_sym_out_GT] = ACTIONS(1431), - [anon_sym_e_GT] = ACTIONS(1431), - [anon_sym_o_GT] = ACTIONS(1431), - [anon_sym_err_PLUSout_GT] = ACTIONS(1431), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1431), - [anon_sym_o_PLUSe_GT] = ACTIONS(1431), - [anon_sym_e_PLUSo_GT] = ACTIONS(1431), - [anon_sym_err_GT_GT] = ACTIONS(1445), - [anon_sym_out_GT_GT] = ACTIONS(1445), - [anon_sym_e_GT_GT] = ACTIONS(1445), - [anon_sym_o_GT_GT] = ACTIONS(1445), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1445), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1445), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1445), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1445), - [aux_sym_unquoted_token1] = ACTIONS(1431), - [aux_sym_unquoted_token2] = ACTIONS(1447), + [1191] = { + [sym_expr_parenthesized] = STATE(6227), + [sym_val_range] = STATE(7006), + [sym__val_range] = STATE(7094), + [sym__value] = STATE(7006), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(6849), + [sym_val_variable] = STATE(6329), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(5351), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(7007), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1191), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(3440), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_LBRACE] = ACTIONS(3444), + [anon_sym_DOT_DOT] = ACTIONS(3902), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3904), + [anon_sym_DOT_DOT_LT] = ACTIONS(3904), + [anon_sym_null] = ACTIONS(3906), + [anon_sym_true] = ACTIONS(3908), + [anon_sym_false] = ACTIONS(3908), + [aux_sym__val_number_decimal_token1] = ACTIONS(3910), + [aux_sym__val_number_decimal_token2] = ACTIONS(3912), + [aux_sym__val_number_decimal_token3] = ACTIONS(3914), + [aux_sym__val_number_decimal_token4] = ACTIONS(3916), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3918), + [aux_sym__val_number_token5] = ACTIONS(3918), + [aux_sym__val_number_token6] = ACTIONS(3918), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3920), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym__str_single_quotes] = ACTIONS(1264), + [sym__str_back_ticks] = ACTIONS(1264), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1445), - }, - [1247] = { - [sym_comment] = STATE(1247), - [anon_sym_STAR_STAR] = ACTIONS(3110), - [anon_sym_PLUS_PLUS] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_mod] = ACTIONS(3110), - [anon_sym_SLASH_SLASH] = ACTIONS(3110), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3110), - [anon_sym_bit_DASHshl] = ACTIONS(3110), - [anon_sym_bit_DASHshr] = ACTIONS(3110), - [anon_sym_EQ_TILDE] = ACTIONS(3110), - [anon_sym_BANG_TILDE] = ACTIONS(3110), - [anon_sym_bit_DASHand] = ACTIONS(3110), - [anon_sym_bit_DASHxor] = ACTIONS(3110), - [anon_sym_bit_DASHor] = ACTIONS(3110), - [anon_sym_and] = ACTIONS(3110), - [anon_sym_xor] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3110), - [anon_sym_in] = ACTIONS(3110), - [anon_sym_not_DASHin] = ACTIONS(3110), - [anon_sym_has] = ACTIONS(3110), - [anon_sym_not_DASHhas] = ACTIONS(3110), - [anon_sym_starts_DASHwith] = ACTIONS(3110), - [anon_sym_ends_DASHwith] = ACTIONS(3110), - [anon_sym_EQ_EQ] = ACTIONS(3110), - [anon_sym_BANG_EQ] = ACTIONS(3110), - [anon_sym_LT] = ACTIONS(3112), - [anon_sym_LT_EQ] = ACTIONS(3110), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_GT_EQ] = ACTIONS(3110), - [aux_sym_cmd_identifier_token41] = ACTIONS(3114), - [sym__newline] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_err_GT_PIPE] = ACTIONS(2202), - [anon_sym_out_GT_PIPE] = ACTIONS(2202), - [anon_sym_e_GT_PIPE] = ACTIONS(2202), - [anon_sym_o_GT_PIPE] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2202), - [anon_sym_GT2] = ACTIONS(2202), - [anon_sym_DASH2] = ACTIONS(2202), - [anon_sym_in2] = ACTIONS(2202), - [anon_sym_STAR2] = ACTIONS(2202), - [anon_sym_and2] = ACTIONS(2202), - [anon_sym_xor2] = ACTIONS(2202), - [anon_sym_or2] = ACTIONS(2202), - [anon_sym_not_DASHin2] = ACTIONS(2202), - [anon_sym_has2] = ACTIONS(2202), - [anon_sym_not_DASHhas2] = ACTIONS(2202), - [anon_sym_starts_DASHwith2] = ACTIONS(2202), - [anon_sym_ends_DASHwith2] = ACTIONS(2202), - [anon_sym_EQ_EQ2] = ACTIONS(2202), - [anon_sym_BANG_EQ2] = ACTIONS(2202), - [anon_sym_LT2] = ACTIONS(2202), - [anon_sym_LT_EQ2] = ACTIONS(2202), - [anon_sym_GT_EQ2] = ACTIONS(2202), - [anon_sym_EQ_TILDE2] = ACTIONS(2202), - [anon_sym_BANG_TILDE2] = ACTIONS(2202), - [anon_sym_STAR_STAR2] = ACTIONS(2202), - [anon_sym_PLUS_PLUS2] = ACTIONS(2202), - [anon_sym_SLASH2] = ACTIONS(2202), - [anon_sym_mod2] = ACTIONS(2202), - [anon_sym_SLASH_SLASH2] = ACTIONS(2202), - [anon_sym_PLUS2] = ACTIONS(2202), - [anon_sym_bit_DASHshl2] = ACTIONS(2202), - [anon_sym_bit_DASHshr2] = ACTIONS(2202), - [anon_sym_bit_DASHand2] = ACTIONS(2202), - [anon_sym_bit_DASHxor2] = ACTIONS(2202), - [anon_sym_bit_DASHor2] = ACTIONS(2202), - [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1266), }, - [1248] = { - [sym_comment] = STATE(1248), - [anon_sym_EQ] = ACTIONS(958), - [anon_sym_PLUS_EQ] = ACTIONS(960), - [anon_sym_DASH_EQ] = ACTIONS(960), - [anon_sym_STAR_EQ] = ACTIONS(960), - [anon_sym_SLASH_EQ] = ACTIONS(960), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(960), - [sym__newline] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_err_GT_PIPE] = ACTIONS(960), - [anon_sym_out_GT_PIPE] = ACTIONS(960), - [anon_sym_e_GT_PIPE] = ACTIONS(960), - [anon_sym_o_GT_PIPE] = ACTIONS(960), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_GT2] = ACTIONS(958), - [anon_sym_DASH2] = ACTIONS(958), - [anon_sym_in2] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_STAR2] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(960), - [anon_sym_and2] = ACTIONS(960), - [anon_sym_xor2] = ACTIONS(960), - [anon_sym_or2] = ACTIONS(960), - [anon_sym_not_DASHin2] = ACTIONS(960), - [anon_sym_has2] = ACTIONS(960), - [anon_sym_not_DASHhas2] = ACTIONS(960), - [anon_sym_starts_DASHwith2] = ACTIONS(960), - [anon_sym_ends_DASHwith2] = ACTIONS(960), - [anon_sym_EQ_EQ2] = ACTIONS(960), - [anon_sym_BANG_EQ2] = ACTIONS(960), - [anon_sym_LT2] = ACTIONS(958), - [anon_sym_LT_EQ2] = ACTIONS(960), - [anon_sym_GT_EQ2] = ACTIONS(960), - [anon_sym_EQ_TILDE2] = ACTIONS(960), - [anon_sym_BANG_TILDE2] = ACTIONS(960), - [anon_sym_STAR_STAR2] = ACTIONS(960), - [anon_sym_PLUS_PLUS2] = ACTIONS(958), - [anon_sym_SLASH2] = ACTIONS(958), - [anon_sym_mod2] = ACTIONS(960), - [anon_sym_SLASH_SLASH2] = ACTIONS(960), - [anon_sym_PLUS2] = ACTIONS(958), - [anon_sym_bit_DASHshl2] = ACTIONS(960), - [anon_sym_bit_DASHshr2] = ACTIONS(960), - [anon_sym_bit_DASHand2] = ACTIONS(960), - [anon_sym_bit_DASHxor2] = ACTIONS(960), - [anon_sym_bit_DASHor2] = ACTIONS(960), - [anon_sym_DOT_DOT2] = ACTIONS(958), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(960), - [anon_sym_DOT_DOT_LT2] = ACTIONS(960), - [anon_sym_COLON2] = ACTIONS(960), - [anon_sym_DOT2] = ACTIONS(958), - [anon_sym_err_GT] = ACTIONS(958), - [anon_sym_out_GT] = ACTIONS(958), - [anon_sym_e_GT] = ACTIONS(958), - [anon_sym_o_GT] = ACTIONS(958), - [anon_sym_err_PLUSout_GT] = ACTIONS(958), - [anon_sym_out_PLUSerr_GT] = ACTIONS(958), - [anon_sym_o_PLUSe_GT] = ACTIONS(958), - [anon_sym_e_PLUSo_GT] = ACTIONS(958), - [anon_sym_err_GT_GT] = ACTIONS(960), - [anon_sym_out_GT_GT] = ACTIONS(960), - [anon_sym_e_GT_GT] = ACTIONS(960), - [anon_sym_o_GT_GT] = ACTIONS(960), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(960), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(960), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(960), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), + [1192] = { + [sym_comment] = STATE(1192), + [anon_sym_EQ] = ACTIONS(950), + [anon_sym_PLUS_EQ] = ACTIONS(952), + [anon_sym_DASH_EQ] = ACTIONS(952), + [anon_sym_STAR_EQ] = ACTIONS(952), + [anon_sym_SLASH_EQ] = ACTIONS(952), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(952), + [sym__newline] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(952), + [anon_sym_PIPE] = ACTIONS(952), + [anon_sym_err_GT_PIPE] = ACTIONS(952), + [anon_sym_out_GT_PIPE] = ACTIONS(952), + [anon_sym_e_GT_PIPE] = ACTIONS(952), + [anon_sym_o_GT_PIPE] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(952), + [anon_sym_RPAREN] = ACTIONS(952), + [anon_sym_GT2] = ACTIONS(950), + [anon_sym_DASH2] = ACTIONS(950), + [anon_sym_in2] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_STAR2] = ACTIONS(950), + [anon_sym_QMARK2] = ACTIONS(952), + [anon_sym_and2] = ACTIONS(952), + [anon_sym_xor2] = ACTIONS(952), + [anon_sym_or2] = ACTIONS(952), + [anon_sym_not_DASHin2] = ACTIONS(952), + [anon_sym_has2] = ACTIONS(952), + [anon_sym_not_DASHhas2] = ACTIONS(952), + [anon_sym_starts_DASHwith2] = ACTIONS(952), + [anon_sym_ends_DASHwith2] = ACTIONS(952), + [anon_sym_EQ_EQ2] = ACTIONS(952), + [anon_sym_BANG_EQ2] = ACTIONS(952), + [anon_sym_LT2] = ACTIONS(950), + [anon_sym_LT_EQ2] = ACTIONS(952), + [anon_sym_GT_EQ2] = ACTIONS(952), + [anon_sym_EQ_TILDE2] = ACTIONS(952), + [anon_sym_BANG_TILDE2] = ACTIONS(952), + [anon_sym_STAR_STAR2] = ACTIONS(952), + [anon_sym_PLUS_PLUS2] = ACTIONS(950), + [anon_sym_SLASH2] = ACTIONS(950), + [anon_sym_mod2] = ACTIONS(952), + [anon_sym_SLASH_SLASH2] = ACTIONS(952), + [anon_sym_PLUS2] = ACTIONS(950), + [anon_sym_bit_DASHshl2] = ACTIONS(952), + [anon_sym_bit_DASHshr2] = ACTIONS(952), + [anon_sym_bit_DASHand2] = ACTIONS(952), + [anon_sym_bit_DASHxor2] = ACTIONS(952), + [anon_sym_bit_DASHor2] = ACTIONS(952), + [anon_sym_DOT_DOT2] = ACTIONS(950), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(952), + [anon_sym_DOT_DOT_LT2] = ACTIONS(952), + [anon_sym_COLON2] = ACTIONS(952), + [anon_sym_DOT2] = ACTIONS(950), + [anon_sym_err_GT] = ACTIONS(950), + [anon_sym_out_GT] = ACTIONS(950), + [anon_sym_e_GT] = ACTIONS(950), + [anon_sym_o_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT] = ACTIONS(950), + [anon_sym_err_GT_GT] = ACTIONS(952), + [anon_sym_out_GT_GT] = ACTIONS(952), + [anon_sym_e_GT_GT] = ACTIONS(952), + [anon_sym_o_GT_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(952), [anon_sym_POUND] = ACTIONS(245), }, - [1249] = { - [sym_comment] = STATE(1249), + [1193] = { + [sym_comment] = STATE(1193), [anon_sym_EQ] = ACTIONS(954), [anon_sym_PLUS_EQ] = ACTIONS(956), [anon_sym_DASH_EQ] = ACTIONS(956), @@ -199396,383 +192820,608 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(956), [anon_sym_POUND] = ACTIONS(245), }, - [1250] = { - [sym_comment] = STATE(1250), - [anon_sym_EQ] = ACTIONS(962), - [anon_sym_PLUS_EQ] = ACTIONS(964), - [anon_sym_DASH_EQ] = ACTIONS(964), - [anon_sym_STAR_EQ] = ACTIONS(964), - [anon_sym_SLASH_EQ] = ACTIONS(964), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(964), - [sym__newline] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(964), - [anon_sym_err_GT_PIPE] = ACTIONS(964), - [anon_sym_out_GT_PIPE] = ACTIONS(964), - [anon_sym_e_GT_PIPE] = ACTIONS(964), - [anon_sym_o_GT_PIPE] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), - [anon_sym_RPAREN] = ACTIONS(964), - [anon_sym_GT2] = ACTIONS(962), - [anon_sym_DASH2] = ACTIONS(962), - [anon_sym_in2] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_STAR2] = ACTIONS(962), - [anon_sym_QMARK2] = ACTIONS(964), - [anon_sym_and2] = ACTIONS(964), - [anon_sym_xor2] = ACTIONS(964), - [anon_sym_or2] = ACTIONS(964), - [anon_sym_not_DASHin2] = ACTIONS(964), - [anon_sym_has2] = ACTIONS(964), - [anon_sym_not_DASHhas2] = ACTIONS(964), - [anon_sym_starts_DASHwith2] = ACTIONS(964), - [anon_sym_ends_DASHwith2] = ACTIONS(964), - [anon_sym_EQ_EQ2] = ACTIONS(964), - [anon_sym_BANG_EQ2] = ACTIONS(964), - [anon_sym_LT2] = ACTIONS(962), - [anon_sym_LT_EQ2] = ACTIONS(964), - [anon_sym_GT_EQ2] = ACTIONS(964), - [anon_sym_EQ_TILDE2] = ACTIONS(964), - [anon_sym_BANG_TILDE2] = ACTIONS(964), - [anon_sym_STAR_STAR2] = ACTIONS(964), - [anon_sym_PLUS_PLUS2] = ACTIONS(962), - [anon_sym_SLASH2] = ACTIONS(962), - [anon_sym_mod2] = ACTIONS(964), - [anon_sym_SLASH_SLASH2] = ACTIONS(964), - [anon_sym_PLUS2] = ACTIONS(962), - [anon_sym_bit_DASHshl2] = ACTIONS(964), - [anon_sym_bit_DASHshr2] = ACTIONS(964), - [anon_sym_bit_DASHand2] = ACTIONS(964), - [anon_sym_bit_DASHxor2] = ACTIONS(964), - [anon_sym_bit_DASHor2] = ACTIONS(964), - [anon_sym_DOT_DOT2] = ACTIONS(962), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), - [anon_sym_DOT_DOT_LT2] = ACTIONS(964), - [anon_sym_COLON2] = ACTIONS(964), - [anon_sym_DOT2] = ACTIONS(962), - [anon_sym_err_GT] = ACTIONS(962), - [anon_sym_out_GT] = ACTIONS(962), - [anon_sym_e_GT] = ACTIONS(962), - [anon_sym_o_GT] = ACTIONS(962), - [anon_sym_err_PLUSout_GT] = ACTIONS(962), - [anon_sym_out_PLUSerr_GT] = ACTIONS(962), - [anon_sym_o_PLUSe_GT] = ACTIONS(962), - [anon_sym_e_PLUSo_GT] = ACTIONS(962), - [anon_sym_err_GT_GT] = ACTIONS(964), - [anon_sym_out_GT_GT] = ACTIONS(964), - [anon_sym_e_GT_GT] = ACTIONS(964), - [anon_sym_o_GT_GT] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), - [anon_sym_POUND] = ACTIONS(245), + [1194] = { + [sym__expr_parenthesized_immediate] = STATE(1462), + [sym__immediate_decimal] = STATE(1463), + [sym_val_variable] = STATE(1462), + [sym_comment] = STATE(1194), + [sym__newline] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1489), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_err_GT_PIPE] = ACTIONS(1489), + [anon_sym_out_GT_PIPE] = ACTIONS(1489), + [anon_sym_e_GT_PIPE] = ACTIONS(1489), + [anon_sym_o_GT_PIPE] = ACTIONS(1489), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1489), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1489), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1489), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_RPAREN] = ACTIONS(1489), + [anon_sym_DOLLAR] = ACTIONS(2633), + [anon_sym_DASH_DASH] = ACTIONS(1489), + [anon_sym_DASH2] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_RBRACE] = ACTIONS(1489), + [anon_sym_DOT_DOT] = ACTIONS(1479), + [anon_sym_LPAREN2] = ACTIONS(3922), + [anon_sym_DOT] = ACTIONS(3937), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1489), + [anon_sym_DOT_DOT_LT] = ACTIONS(1489), + [aux_sym__immediate_decimal_token1] = ACTIONS(3939), + [aux_sym__immediate_decimal_token3] = ACTIONS(3941), + [aux_sym__immediate_decimal_token4] = ACTIONS(3943), + [aux_sym__immediate_decimal_token5] = ACTIONS(3945), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [aux_sym__val_number_decimal_token1] = ACTIONS(1479), + [aux_sym__val_number_decimal_token2] = ACTIONS(1479), + [aux_sym__val_number_decimal_token3] = ACTIONS(1479), + [aux_sym__val_number_decimal_token4] = ACTIONS(1479), + [aux_sym__val_number_token1] = ACTIONS(1489), + [aux_sym__val_number_token2] = ACTIONS(1489), + [aux_sym__val_number_token3] = ACTIONS(1489), + [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(1479), + [anon_sym_0o] = ACTIONS(1479), + [anon_sym_0x] = ACTIONS(1479), + [sym_val_date] = ACTIONS(1489), + [anon_sym_DQUOTE] = ACTIONS(1489), + [sym__str_single_quotes] = ACTIONS(1489), + [sym__str_back_ticks] = ACTIONS(1489), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1489), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1489), + [anon_sym_err_GT] = ACTIONS(1479), + [anon_sym_out_GT] = ACTIONS(1479), + [anon_sym_e_GT] = ACTIONS(1479), + [anon_sym_o_GT] = ACTIONS(1479), + [anon_sym_err_PLUSout_GT] = ACTIONS(1479), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1479), + [anon_sym_o_PLUSe_GT] = ACTIONS(1479), + [anon_sym_e_PLUSo_GT] = ACTIONS(1479), + [anon_sym_err_GT_GT] = ACTIONS(1489), + [anon_sym_out_GT_GT] = ACTIONS(1489), + [anon_sym_e_GT_GT] = ACTIONS(1489), + [anon_sym_o_GT_GT] = ACTIONS(1489), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1489), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1489), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1489), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1489), + [aux_sym_unquoted_token1] = ACTIONS(1479), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1489), }, - [1251] = { - [sym_comment] = STATE(1251), - [anon_sym_EQ] = ACTIONS(966), - [anon_sym_PLUS_EQ] = ACTIONS(968), - [anon_sym_DASH_EQ] = ACTIONS(968), - [anon_sym_STAR_EQ] = ACTIONS(968), - [anon_sym_SLASH_EQ] = ACTIONS(968), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(966), - [anon_sym_DASH2] = ACTIONS(966), - [anon_sym_in2] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(968), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_has2] = ACTIONS(968), - [anon_sym_not_DASHhas2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(966), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(966), - [anon_sym_SLASH2] = ACTIONS(966), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(966), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_DOT_DOT2] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), - [anon_sym_DOT_DOT_LT2] = ACTIONS(968), - [anon_sym_COLON2] = ACTIONS(968), - [anon_sym_DOT2] = ACTIONS(966), - [anon_sym_err_GT] = ACTIONS(966), - [anon_sym_out_GT] = ACTIONS(966), - [anon_sym_e_GT] = ACTIONS(966), - [anon_sym_o_GT] = ACTIONS(966), - [anon_sym_err_PLUSout_GT] = ACTIONS(966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(966), - [anon_sym_o_PLUSe_GT] = ACTIONS(966), - [anon_sym_e_PLUSo_GT] = ACTIONS(966), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), + [1195] = { + [sym_comment] = STATE(1195), + [anon_sym_EQ] = ACTIONS(946), + [anon_sym_PLUS_EQ] = ACTIONS(948), + [anon_sym_DASH_EQ] = ACTIONS(948), + [anon_sym_STAR_EQ] = ACTIONS(948), + [anon_sym_SLASH_EQ] = ACTIONS(948), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(948), + [sym__newline] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_PIPE] = ACTIONS(948), + [anon_sym_err_GT_PIPE] = ACTIONS(948), + [anon_sym_out_GT_PIPE] = ACTIONS(948), + [anon_sym_e_GT_PIPE] = ACTIONS(948), + [anon_sym_o_GT_PIPE] = ACTIONS(948), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(948), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(948), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(948), + [anon_sym_GT2] = ACTIONS(946), + [anon_sym_DASH2] = ACTIONS(946), + [anon_sym_in2] = ACTIONS(948), + [anon_sym_RBRACE] = ACTIONS(948), + [anon_sym_STAR2] = ACTIONS(946), + [anon_sym_QMARK2] = ACTIONS(948), + [anon_sym_and2] = ACTIONS(948), + [anon_sym_xor2] = ACTIONS(948), + [anon_sym_or2] = ACTIONS(948), + [anon_sym_not_DASHin2] = ACTIONS(948), + [anon_sym_has2] = ACTIONS(948), + [anon_sym_not_DASHhas2] = ACTIONS(948), + [anon_sym_starts_DASHwith2] = ACTIONS(948), + [anon_sym_ends_DASHwith2] = ACTIONS(948), + [anon_sym_EQ_EQ2] = ACTIONS(948), + [anon_sym_BANG_EQ2] = ACTIONS(948), + [anon_sym_LT2] = ACTIONS(946), + [anon_sym_LT_EQ2] = ACTIONS(948), + [anon_sym_GT_EQ2] = ACTIONS(948), + [anon_sym_EQ_TILDE2] = ACTIONS(948), + [anon_sym_BANG_TILDE2] = ACTIONS(948), + [anon_sym_STAR_STAR2] = ACTIONS(948), + [anon_sym_PLUS_PLUS2] = ACTIONS(946), + [anon_sym_SLASH2] = ACTIONS(946), + [anon_sym_mod2] = ACTIONS(948), + [anon_sym_SLASH_SLASH2] = ACTIONS(948), + [anon_sym_PLUS2] = ACTIONS(946), + [anon_sym_bit_DASHshl2] = ACTIONS(948), + [anon_sym_bit_DASHshr2] = ACTIONS(948), + [anon_sym_bit_DASHand2] = ACTIONS(948), + [anon_sym_bit_DASHxor2] = ACTIONS(948), + [anon_sym_bit_DASHor2] = ACTIONS(948), + [anon_sym_DOT_DOT2] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(948), + [anon_sym_DOT_DOT_LT2] = ACTIONS(948), + [anon_sym_COLON2] = ACTIONS(948), + [anon_sym_DOT2] = ACTIONS(946), + [anon_sym_err_GT] = ACTIONS(946), + [anon_sym_out_GT] = ACTIONS(946), + [anon_sym_e_GT] = ACTIONS(946), + [anon_sym_o_GT] = ACTIONS(946), + [anon_sym_err_PLUSout_GT] = ACTIONS(946), + [anon_sym_out_PLUSerr_GT] = ACTIONS(946), + [anon_sym_o_PLUSe_GT] = ACTIONS(946), + [anon_sym_e_PLUSo_GT] = ACTIONS(946), + [anon_sym_err_GT_GT] = ACTIONS(948), + [anon_sym_out_GT_GT] = ACTIONS(948), + [anon_sym_e_GT_GT] = ACTIONS(948), + [anon_sym_o_GT_GT] = ACTIONS(948), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(948), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(948), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(948), [anon_sym_POUND] = ACTIONS(245), }, - [1252] = { - [sym_cell_path] = STATE(1452), - [sym_path] = STATE(1381), - [sym_comment] = STATE(1252), - [aux_sym_cell_path_repeat1] = STATE(1325), - [ts_builtin_sym_end] = ACTIONS(927), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_PLUS_EQ] = ACTIONS(927), - [anon_sym_DASH_EQ] = ACTIONS(927), - [anon_sym_STAR_EQ] = ACTIONS(927), - [anon_sym_SLASH_EQ] = ACTIONS(927), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(927), - [sym__newline] = ACTIONS(927), - [anon_sym_SEMI] = ACTIONS(927), - [anon_sym_PIPE] = ACTIONS(927), - [anon_sym_err_GT_PIPE] = ACTIONS(927), - [anon_sym_out_GT_PIPE] = ACTIONS(927), - [anon_sym_e_GT_PIPE] = ACTIONS(927), - [anon_sym_o_GT_PIPE] = ACTIONS(927), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(927), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(927), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(927), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(927), - [anon_sym_GT2] = ACTIONS(925), - [anon_sym_DASH2] = ACTIONS(925), - [anon_sym_in2] = ACTIONS(927), - [anon_sym_STAR2] = ACTIONS(925), - [anon_sym_and2] = ACTIONS(927), - [anon_sym_xor2] = ACTIONS(927), - [anon_sym_or2] = ACTIONS(927), - [anon_sym_not_DASHin2] = ACTIONS(927), - [anon_sym_has2] = ACTIONS(927), - [anon_sym_not_DASHhas2] = ACTIONS(927), - [anon_sym_starts_DASHwith2] = ACTIONS(927), - [anon_sym_ends_DASHwith2] = ACTIONS(927), - [anon_sym_EQ_EQ2] = ACTIONS(927), - [anon_sym_BANG_EQ2] = ACTIONS(927), - [anon_sym_LT2] = ACTIONS(925), - [anon_sym_LT_EQ2] = ACTIONS(927), - [anon_sym_GT_EQ2] = ACTIONS(927), - [anon_sym_EQ_TILDE2] = ACTIONS(927), - [anon_sym_BANG_TILDE2] = ACTIONS(927), - [anon_sym_STAR_STAR2] = ACTIONS(927), - [anon_sym_PLUS_PLUS2] = ACTIONS(925), - [anon_sym_SLASH2] = ACTIONS(925), - [anon_sym_mod2] = ACTIONS(927), - [anon_sym_SLASH_SLASH2] = ACTIONS(927), - [anon_sym_PLUS2] = ACTIONS(925), - [anon_sym_bit_DASHshl2] = ACTIONS(927), - [anon_sym_bit_DASHshr2] = ACTIONS(927), - [anon_sym_bit_DASHand2] = ACTIONS(927), - [anon_sym_bit_DASHxor2] = ACTIONS(927), - [anon_sym_bit_DASHor2] = ACTIONS(927), - [anon_sym_DOT_DOT2] = ACTIONS(925), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(927), - [anon_sym_DOT_DOT_LT2] = ACTIONS(927), - [anon_sym_DOT2] = ACTIONS(4017), - [anon_sym_err_GT] = ACTIONS(925), - [anon_sym_out_GT] = ACTIONS(925), - [anon_sym_e_GT] = ACTIONS(925), - [anon_sym_o_GT] = ACTIONS(925), - [anon_sym_err_PLUSout_GT] = ACTIONS(925), - [anon_sym_out_PLUSerr_GT] = ACTIONS(925), - [anon_sym_o_PLUSe_GT] = ACTIONS(925), - [anon_sym_e_PLUSo_GT] = ACTIONS(925), - [anon_sym_err_GT_GT] = ACTIONS(927), - [anon_sym_out_GT_GT] = ACTIONS(927), - [anon_sym_e_GT_GT] = ACTIONS(927), - [anon_sym_o_GT_GT] = ACTIONS(927), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(927), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(927), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(927), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(927), - [anon_sym_POUND] = ACTIONS(245), + [1196] = { + [sym_comment] = STATE(1196), + [anon_sym_STAR_STAR] = ACTIONS(3096), + [anon_sym_PLUS_PLUS] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_mod] = ACTIONS(3096), + [anon_sym_SLASH_SLASH] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3098), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_bit_DASHshl] = ACTIONS(3096), + [anon_sym_bit_DASHshr] = ACTIONS(3096), + [anon_sym_EQ_TILDE] = ACTIONS(3096), + [anon_sym_BANG_TILDE] = ACTIONS(3096), + [anon_sym_bit_DASHand] = ACTIONS(3096), + [anon_sym_bit_DASHxor] = ACTIONS(3096), + [anon_sym_bit_DASHor] = ACTIONS(3096), + [anon_sym_and] = ACTIONS(3096), + [anon_sym_xor] = ACTIONS(3096), + [anon_sym_or] = ACTIONS(3096), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_not_DASHin] = ACTIONS(3096), + [anon_sym_has] = ACTIONS(3096), + [anon_sym_not_DASHhas] = ACTIONS(3096), + [anon_sym_starts_DASHwith] = ACTIONS(3096), + [anon_sym_ends_DASHwith] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3096), + [aux_sym_cmd_identifier_token41] = ACTIONS(3100), + [sym__newline] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_err_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_GT_PIPE] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2068), + [anon_sym_GT2] = ACTIONS(2068), + [anon_sym_DASH2] = ACTIONS(2068), + [anon_sym_in2] = ACTIONS(2068), + [anon_sym_STAR2] = ACTIONS(2068), + [anon_sym_and2] = ACTIONS(2068), + [anon_sym_xor2] = ACTIONS(2068), + [anon_sym_or2] = ACTIONS(2068), + [anon_sym_not_DASHin2] = ACTIONS(2068), + [anon_sym_has2] = ACTIONS(2068), + [anon_sym_not_DASHhas2] = ACTIONS(2068), + [anon_sym_starts_DASHwith2] = ACTIONS(2068), + [anon_sym_ends_DASHwith2] = ACTIONS(2068), + [anon_sym_EQ_EQ2] = ACTIONS(2068), + [anon_sym_BANG_EQ2] = ACTIONS(2068), + [anon_sym_LT2] = ACTIONS(2068), + [anon_sym_LT_EQ2] = ACTIONS(2068), + [anon_sym_GT_EQ2] = ACTIONS(2068), + [anon_sym_EQ_TILDE2] = ACTIONS(2068), + [anon_sym_BANG_TILDE2] = ACTIONS(2068), + [anon_sym_STAR_STAR2] = ACTIONS(2068), + [anon_sym_PLUS_PLUS2] = ACTIONS(2068), + [anon_sym_SLASH2] = ACTIONS(2068), + [anon_sym_mod2] = ACTIONS(2068), + [anon_sym_SLASH_SLASH2] = ACTIONS(2068), + [anon_sym_PLUS2] = ACTIONS(2068), + [anon_sym_bit_DASHshl2] = ACTIONS(2068), + [anon_sym_bit_DASHshr2] = ACTIONS(2068), + [anon_sym_bit_DASHand2] = ACTIONS(2068), + [anon_sym_bit_DASHxor2] = ACTIONS(2068), + [anon_sym_bit_DASHor2] = ACTIONS(2068), + [anon_sym_POUND] = ACTIONS(3), }, - [1253] = { - [sym_comment] = STATE(1253), - [sym__newline] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1486), - [anon_sym_err_GT_PIPE] = ACTIONS(1486), - [anon_sym_out_GT_PIPE] = ACTIONS(1486), - [anon_sym_e_GT_PIPE] = ACTIONS(1486), - [anon_sym_o_GT_PIPE] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1484), - [anon_sym_RPAREN] = ACTIONS(1486), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_RBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1484), - [anon_sym_DOT_DOT_LT] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [aux_sym__immediate_decimal_token1] = ACTIONS(4019), - [aux_sym__immediate_decimal_token2] = ACTIONS(4021), - [anon_sym_null] = ACTIONS(1486), - [anon_sym_true] = ACTIONS(1486), - [anon_sym_false] = ACTIONS(1486), - [aux_sym__val_number_decimal_token1] = ACTIONS(1484), - [aux_sym__val_number_decimal_token2] = ACTIONS(1486), - [aux_sym__val_number_decimal_token3] = ACTIONS(1486), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), - [aux_sym__val_number_token1] = ACTIONS(1486), - [aux_sym__val_number_token2] = ACTIONS(1486), - [aux_sym__val_number_token3] = ACTIONS(1486), - [aux_sym__val_number_token4] = ACTIONS(1486), - [aux_sym__val_number_token5] = ACTIONS(1486), - [aux_sym__val_number_token6] = ACTIONS(1486), - [anon_sym_0b] = ACTIONS(1484), - [sym_filesize_unit] = ACTIONS(1486), - [sym_duration_unit] = ACTIONS(1486), - [anon_sym_0o] = ACTIONS(1484), - [anon_sym_0x] = ACTIONS(1484), - [sym_val_date] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym__str_single_quotes] = ACTIONS(1486), - [sym__str_back_ticks] = ACTIONS(1486), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1486), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1486), - [anon_sym_err_GT] = ACTIONS(1484), - [anon_sym_out_GT] = ACTIONS(1484), - [anon_sym_e_GT] = ACTIONS(1484), - [anon_sym_o_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT] = ACTIONS(1484), - [anon_sym_err_GT_GT] = ACTIONS(1486), - [anon_sym_out_GT_GT] = ACTIONS(1486), - [anon_sym_e_GT_GT] = ACTIONS(1486), - [anon_sym_o_GT_GT] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1486), - [aux_sym_unquoted_token1] = ACTIONS(1484), - [aux_sym_unquoted_token2] = ACTIONS(1484), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1486), + [1197] = { + [sym__expr_parenthesized_immediate] = STATE(1828), + [sym__immediate_decimal] = STATE(1535), + [sym_val_variable] = STATE(1828), + [sym_comment] = STATE(1197), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_DOLLAR] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_DASH2] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_LPAREN2] = ACTIONS(3949), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT] = ACTIONS(1475), + [aux_sym__immediate_decimal_token1] = ACTIONS(3951), + [aux_sym__immediate_decimal_token3] = ACTIONS(3953), + [aux_sym__immediate_decimal_token4] = ACTIONS(3955), + [aux_sym__immediate_decimal_token5] = ACTIONS(3957), + [anon_sym_null] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1473), + [aux_sym__val_number_decimal_token4] = ACTIONS(1473), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [aux_sym__val_number_token4] = ACTIONS(1475), + [aux_sym__val_number_token5] = ACTIONS(1475), + [aux_sym__val_number_token6] = ACTIONS(1475), + [anon_sym_0b] = ACTIONS(1473), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0x] = ACTIONS(1473), + [sym_val_date] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token1] = ACTIONS(1473), + [aux_sym_unquoted_token2] = ACTIONS(1477), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1475), }, - [1254] = { - [sym_comment] = STATE(1254), - [sym__newline] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_PIPE] = ACTIONS(1494), - [anon_sym_err_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_GT_PIPE] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_RBRACE] = ACTIONS(1494), - [anon_sym_DOT_DOT] = ACTIONS(1492), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1492), - [anon_sym_DOT_DOT_LT] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(4025), - [anon_sym_null] = ACTIONS(1494), - [anon_sym_true] = ACTIONS(1494), - [anon_sym_false] = ACTIONS(1494), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1494), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(1494), - [aux_sym__val_number_token2] = ACTIONS(1494), - [aux_sym__val_number_token3] = ACTIONS(1494), - [aux_sym__val_number_token4] = ACTIONS(1494), - [aux_sym__val_number_token5] = ACTIONS(1494), - [aux_sym__val_number_token6] = ACTIONS(1494), - [anon_sym_0b] = ACTIONS(1492), - [sym_filesize_unit] = ACTIONS(1494), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_0o] = ACTIONS(1492), - [anon_sym_0x] = ACTIONS(1492), - [sym_val_date] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym__str_single_quotes] = ACTIONS(1494), - [sym__str_back_ticks] = ACTIONS(1494), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1494), - [anon_sym_out_GT_GT] = ACTIONS(1494), - [anon_sym_e_GT_GT] = ACTIONS(1494), - [anon_sym_o_GT_GT] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1494), - [aux_sym_unquoted_token1] = ACTIONS(1492), - [aux_sym_unquoted_token2] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1494), + [1198] = { + [sym_comment] = STATE(1198), + [sym__newline] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_err_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_GT_PIPE] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_RPAREN] = ACTIONS(1493), + [anon_sym_DOLLAR] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_RBRACE] = ACTIONS(1493), + [anon_sym_DOT_DOT] = ACTIONS(1491), + [anon_sym_LPAREN2] = ACTIONS(1493), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1491), + [anon_sym_DOT_DOT_LT] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [aux_sym__immediate_decimal_token1] = ACTIONS(3959), + [aux_sym__immediate_decimal_token2] = ACTIONS(3961), + [anon_sym_null] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [aux_sym__val_number_decimal_token1] = ACTIONS(1491), + [aux_sym__val_number_decimal_token2] = ACTIONS(1493), + [aux_sym__val_number_decimal_token3] = ACTIONS(1493), + [aux_sym__val_number_decimal_token4] = ACTIONS(1493), + [aux_sym__val_number_token1] = ACTIONS(1493), + [aux_sym__val_number_token2] = ACTIONS(1493), + [aux_sym__val_number_token3] = ACTIONS(1493), + [aux_sym__val_number_token4] = ACTIONS(1493), + [aux_sym__val_number_token5] = ACTIONS(1493), + [aux_sym__val_number_token6] = ACTIONS(1493), + [anon_sym_0b] = ACTIONS(1491), + [sym_filesize_unit] = ACTIONS(1493), + [sym_duration_unit] = ACTIONS(1493), + [anon_sym_0o] = ACTIONS(1491), + [anon_sym_0x] = ACTIONS(1491), + [sym_val_date] = ACTIONS(1493), + [anon_sym_DQUOTE] = ACTIONS(1493), + [sym__str_single_quotes] = ACTIONS(1493), + [sym__str_back_ticks] = ACTIONS(1493), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1493), + [anon_sym_err_GT] = ACTIONS(1491), + [anon_sym_out_GT] = ACTIONS(1491), + [anon_sym_e_GT] = ACTIONS(1491), + [anon_sym_o_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT] = ACTIONS(1491), + [anon_sym_err_GT_GT] = ACTIONS(1493), + [anon_sym_out_GT_GT] = ACTIONS(1493), + [anon_sym_e_GT_GT] = ACTIONS(1493), + [anon_sym_o_GT_GT] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1493), + [aux_sym_unquoted_token1] = ACTIONS(1491), + [aux_sym_unquoted_token2] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1493), }, - [1255] = { - [sym_comment] = STATE(1255), + [1199] = { + [sym_comment] = STATE(1199), + [sym__newline] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_err_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_GT_PIPE] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(1501), + [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_LPAREN2] = ACTIONS(1501), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT] = ACTIONS(3963), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(3965), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [aux_sym__val_number_decimal_token1] = ACTIONS(1499), + [aux_sym__val_number_decimal_token2] = ACTIONS(1501), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1501), + [aux_sym__val_number_token1] = ACTIONS(1501), + [aux_sym__val_number_token2] = ACTIONS(1501), + [aux_sym__val_number_token3] = ACTIONS(1501), + [aux_sym__val_number_token4] = ACTIONS(1501), + [aux_sym__val_number_token5] = ACTIONS(1501), + [aux_sym__val_number_token6] = ACTIONS(1501), + [anon_sym_0b] = ACTIONS(1499), + [sym_filesize_unit] = ACTIONS(1501), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_0o] = ACTIONS(1499), + [anon_sym_0x] = ACTIONS(1499), + [sym_val_date] = ACTIONS(1501), + [anon_sym_DQUOTE] = ACTIONS(1501), + [sym__str_single_quotes] = ACTIONS(1501), + [sym__str_back_ticks] = ACTIONS(1501), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1501), + [anon_sym_out_GT_GT] = ACTIONS(1501), + [anon_sym_e_GT_GT] = ACTIONS(1501), + [anon_sym_o_GT_GT] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1501), + [aux_sym_unquoted_token1] = ACTIONS(1499), + [aux_sym_unquoted_token2] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1501), + }, + [1200] = { + [sym__expr_parenthesized_immediate] = STATE(1571), + [sym__immediate_decimal] = STATE(1434), + [sym_val_variable] = STATE(1571), + [sym_comment] = STATE(1200), + [ts_builtin_sym_end] = ACTIONS(1445), + [sym__newline] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1445), + [anon_sym_PIPE] = ACTIONS(1445), + [anon_sym_err_GT_PIPE] = ACTIONS(1445), + [anon_sym_out_GT_PIPE] = ACTIONS(1445), + [anon_sym_e_GT_PIPE] = ACTIONS(1445), + [anon_sym_o_GT_PIPE] = ACTIONS(1445), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1445), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1445), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1445), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1445), + [anon_sym_LBRACK] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_DOLLAR] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(1445), + [anon_sym_DASH2] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_DOT_DOT] = ACTIONS(1431), + [anon_sym_LPAREN2] = ACTIONS(3967), + [anon_sym_DOT] = ACTIONS(3969), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1445), + [anon_sym_DOT_DOT_LT] = ACTIONS(1445), + [aux_sym__immediate_decimal_token1] = ACTIONS(3971), + [aux_sym__immediate_decimal_token3] = ACTIONS(3973), + [aux_sym__immediate_decimal_token4] = ACTIONS(3975), + [aux_sym__immediate_decimal_token5] = ACTIONS(3977), + [anon_sym_null] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1445), + [anon_sym_false] = ACTIONS(1445), + [aux_sym__val_number_decimal_token1] = ACTIONS(1431), + [aux_sym__val_number_decimal_token2] = ACTIONS(1431), + [aux_sym__val_number_decimal_token3] = ACTIONS(1431), + [aux_sym__val_number_decimal_token4] = ACTIONS(1431), + [aux_sym__val_number_token1] = ACTIONS(1445), + [aux_sym__val_number_token2] = ACTIONS(1445), + [aux_sym__val_number_token3] = ACTIONS(1445), + [aux_sym__val_number_token4] = ACTIONS(1445), + [aux_sym__val_number_token5] = ACTIONS(1445), + [aux_sym__val_number_token6] = ACTIONS(1445), + [anon_sym_0b] = ACTIONS(1431), + [anon_sym_0o] = ACTIONS(1431), + [anon_sym_0x] = ACTIONS(1431), + [sym_val_date] = ACTIONS(1445), + [anon_sym_DQUOTE] = ACTIONS(1445), + [sym__str_single_quotes] = ACTIONS(1445), + [sym__str_back_ticks] = ACTIONS(1445), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1445), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1445), + [anon_sym_err_GT] = ACTIONS(1431), + [anon_sym_out_GT] = ACTIONS(1431), + [anon_sym_e_GT] = ACTIONS(1431), + [anon_sym_o_GT] = ACTIONS(1431), + [anon_sym_err_PLUSout_GT] = ACTIONS(1431), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1431), + [anon_sym_o_PLUSe_GT] = ACTIONS(1431), + [anon_sym_e_PLUSo_GT] = ACTIONS(1431), + [anon_sym_err_GT_GT] = ACTIONS(1445), + [anon_sym_out_GT_GT] = ACTIONS(1445), + [anon_sym_e_GT_GT] = ACTIONS(1445), + [anon_sym_o_GT_GT] = ACTIONS(1445), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1445), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1445), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1445), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1445), + [aux_sym_unquoted_token1] = ACTIONS(1431), + [aux_sym_unquoted_token2] = ACTIONS(1447), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1445), + }, + [1201] = { + [sym_comment] = STATE(1201), + [anon_sym_STAR_STAR] = ACTIONS(3096), + [anon_sym_PLUS_PLUS] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_SLASH] = ACTIONS(3098), + [anon_sym_mod] = ACTIONS(3096), + [anon_sym_SLASH_SLASH] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3098), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_bit_DASHshl] = ACTIONS(3096), + [anon_sym_bit_DASHshr] = ACTIONS(3096), + [anon_sym_EQ_TILDE] = ACTIONS(3096), + [anon_sym_BANG_TILDE] = ACTIONS(3096), + [anon_sym_bit_DASHand] = ACTIONS(3096), + [anon_sym_bit_DASHxor] = ACTIONS(3096), + [anon_sym_bit_DASHor] = ACTIONS(3096), + [anon_sym_and] = ACTIONS(3096), + [anon_sym_xor] = ACTIONS(3096), + [anon_sym_or] = ACTIONS(3096), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_not_DASHin] = ACTIONS(3096), + [anon_sym_has] = ACTIONS(3096), + [anon_sym_not_DASHhas] = ACTIONS(3096), + [anon_sym_starts_DASHwith] = ACTIONS(3096), + [anon_sym_ends_DASHwith] = ACTIONS(3096), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3096), + [anon_sym_GT] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3096), + [aux_sym_cmd_identifier_token41] = ACTIONS(3100), + [sym__newline] = 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_GT2] = ACTIONS(2128), + [anon_sym_DASH2] = ACTIONS(2128), + [anon_sym_in2] = ACTIONS(2128), + [anon_sym_STAR2] = ACTIONS(2128), + [anon_sym_and2] = ACTIONS(2128), + [anon_sym_xor2] = ACTIONS(2128), + [anon_sym_or2] = ACTIONS(2128), + [anon_sym_not_DASHin2] = ACTIONS(2128), + [anon_sym_has2] = ACTIONS(2128), + [anon_sym_not_DASHhas2] = ACTIONS(2128), + [anon_sym_starts_DASHwith2] = ACTIONS(2128), + [anon_sym_ends_DASHwith2] = ACTIONS(2128), + [anon_sym_EQ_EQ2] = ACTIONS(2128), + [anon_sym_BANG_EQ2] = ACTIONS(2128), + [anon_sym_LT2] = ACTIONS(2128), + [anon_sym_LT_EQ2] = ACTIONS(2128), + [anon_sym_GT_EQ2] = ACTIONS(2128), + [anon_sym_EQ_TILDE2] = ACTIONS(2128), + [anon_sym_BANG_TILDE2] = ACTIONS(2128), + [anon_sym_STAR_STAR2] = ACTIONS(2128), + [anon_sym_PLUS_PLUS2] = ACTIONS(2128), + [anon_sym_SLASH2] = ACTIONS(2128), + [anon_sym_mod2] = ACTIONS(2128), + [anon_sym_SLASH_SLASH2] = ACTIONS(2128), + [anon_sym_PLUS2] = ACTIONS(2128), + [anon_sym_bit_DASHshl2] = ACTIONS(2128), + [anon_sym_bit_DASHshr2] = ACTIONS(2128), + [anon_sym_bit_DASHand2] = ACTIONS(2128), + [anon_sym_bit_DASHxor2] = ACTIONS(2128), + [anon_sym_bit_DASHor2] = ACTIONS(2128), + [anon_sym_POUND] = ACTIONS(3), + }, + [1202] = { + [sym_comment] = STATE(1202), [anon_sym_EQ] = ACTIONS(942), [anon_sym_PLUS_EQ] = ACTIONS(944), [anon_sym_DASH_EQ] = ACTIONS(944), @@ -199796,7 +193445,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in2] = ACTIONS(944), [anon_sym_RBRACE] = ACTIONS(944), [anon_sym_STAR2] = ACTIONS(942), - [anon_sym_QMARK2] = ACTIONS(4027), + [anon_sym_QMARK2] = ACTIONS(944), [anon_sym_and2] = ACTIONS(944), [anon_sym_xor2] = ACTIONS(944), [anon_sym_or2] = ACTIONS(944), @@ -199846,164 +193495,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(944), [anon_sym_POUND] = ACTIONS(245), }, - [1256] = { - [sym_comment] = STATE(1256), - [anon_sym_STAR_STAR] = ACTIONS(3110), - [anon_sym_PLUS_PLUS] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3112), - [anon_sym_mod] = ACTIONS(3110), - [anon_sym_SLASH_SLASH] = ACTIONS(3110), - [anon_sym_PLUS] = ACTIONS(3112), - [anon_sym_DASH] = ACTIONS(3110), - [anon_sym_bit_DASHshl] = ACTIONS(3110), - [anon_sym_bit_DASHshr] = ACTIONS(3110), - [anon_sym_EQ_TILDE] = ACTIONS(3110), - [anon_sym_BANG_TILDE] = ACTIONS(3110), - [anon_sym_bit_DASHand] = ACTIONS(3110), - [anon_sym_bit_DASHxor] = ACTIONS(3110), - [anon_sym_bit_DASHor] = ACTIONS(3110), - [anon_sym_and] = ACTIONS(3110), - [anon_sym_xor] = ACTIONS(3110), - [anon_sym_or] = ACTIONS(3110), - [anon_sym_in] = ACTIONS(3110), - [anon_sym_not_DASHin] = ACTIONS(3110), - [anon_sym_has] = ACTIONS(3110), - [anon_sym_not_DASHhas] = ACTIONS(3110), - [anon_sym_starts_DASHwith] = ACTIONS(3110), - [anon_sym_ends_DASHwith] = ACTIONS(3110), - [anon_sym_EQ_EQ] = ACTIONS(3110), - [anon_sym_BANG_EQ] = ACTIONS(3110), - [anon_sym_LT] = ACTIONS(3112), - [anon_sym_LT_EQ] = ACTIONS(3110), - [anon_sym_GT] = ACTIONS(3112), - [anon_sym_GT_EQ] = ACTIONS(3110), - [aux_sym_cmd_identifier_token41] = ACTIONS(3114), - [sym__newline] = ACTIONS(2089), - [anon_sym_PIPE] = ACTIONS(2089), - [anon_sym_err_GT_PIPE] = ACTIONS(2089), - [anon_sym_out_GT_PIPE] = ACTIONS(2089), - [anon_sym_e_GT_PIPE] = ACTIONS(2089), - [anon_sym_o_GT_PIPE] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2089), - [anon_sym_GT2] = ACTIONS(2089), - [anon_sym_DASH2] = ACTIONS(2089), - [anon_sym_in2] = ACTIONS(2089), - [anon_sym_STAR2] = ACTIONS(2089), - [anon_sym_and2] = ACTIONS(2089), - [anon_sym_xor2] = ACTIONS(2089), - [anon_sym_or2] = ACTIONS(2089), - [anon_sym_not_DASHin2] = ACTIONS(2089), - [anon_sym_has2] = ACTIONS(2089), - [anon_sym_not_DASHhas2] = ACTIONS(2089), - [anon_sym_starts_DASHwith2] = ACTIONS(2089), - [anon_sym_ends_DASHwith2] = ACTIONS(2089), - [anon_sym_EQ_EQ2] = ACTIONS(2089), - [anon_sym_BANG_EQ2] = ACTIONS(2089), - [anon_sym_LT2] = ACTIONS(2089), - [anon_sym_LT_EQ2] = ACTIONS(2089), - [anon_sym_GT_EQ2] = ACTIONS(2089), - [anon_sym_EQ_TILDE2] = ACTIONS(2089), - [anon_sym_BANG_TILDE2] = ACTIONS(2089), - [anon_sym_STAR_STAR2] = ACTIONS(2089), - [anon_sym_PLUS_PLUS2] = ACTIONS(2089), - [anon_sym_SLASH2] = ACTIONS(2089), - [anon_sym_mod2] = ACTIONS(2089), - [anon_sym_SLASH_SLASH2] = ACTIONS(2089), - [anon_sym_PLUS2] = ACTIONS(2089), - [anon_sym_bit_DASHshl2] = ACTIONS(2089), - [anon_sym_bit_DASHshr2] = ACTIONS(2089), - [anon_sym_bit_DASHand2] = ACTIONS(2089), - [anon_sym_bit_DASHxor2] = ACTIONS(2089), - [anon_sym_bit_DASHor2] = ACTIONS(2089), - [anon_sym_POUND] = ACTIONS(3), - }, - [1257] = { - [sym_comment] = STATE(1257), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_PLUS_EQ] = ACTIONS(950), - [anon_sym_DASH_EQ] = ACTIONS(950), - [anon_sym_STAR_EQ] = ACTIONS(950), - [anon_sym_SLASH_EQ] = ACTIONS(950), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(950), - [sym__newline] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_PIPE] = ACTIONS(950), - [anon_sym_err_GT_PIPE] = ACTIONS(950), - [anon_sym_out_GT_PIPE] = ACTIONS(950), - [anon_sym_e_GT_PIPE] = ACTIONS(950), - [anon_sym_o_GT_PIPE] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), - [anon_sym_RPAREN] = ACTIONS(950), - [anon_sym_GT2] = ACTIONS(948), - [anon_sym_DASH2] = ACTIONS(948), - [anon_sym_in2] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_STAR2] = ACTIONS(948), - [anon_sym_QMARK2] = ACTIONS(4029), - [anon_sym_and2] = ACTIONS(950), - [anon_sym_xor2] = ACTIONS(950), - [anon_sym_or2] = ACTIONS(950), - [anon_sym_not_DASHin2] = ACTIONS(950), - [anon_sym_has2] = ACTIONS(950), - [anon_sym_not_DASHhas2] = ACTIONS(950), - [anon_sym_starts_DASHwith2] = ACTIONS(950), - [anon_sym_ends_DASHwith2] = ACTIONS(950), - [anon_sym_EQ_EQ2] = ACTIONS(950), - [anon_sym_BANG_EQ2] = ACTIONS(950), - [anon_sym_LT2] = ACTIONS(948), - [anon_sym_LT_EQ2] = ACTIONS(950), - [anon_sym_GT_EQ2] = ACTIONS(950), - [anon_sym_EQ_TILDE2] = ACTIONS(950), - [anon_sym_BANG_TILDE2] = ACTIONS(950), - [anon_sym_STAR_STAR2] = ACTIONS(950), - [anon_sym_PLUS_PLUS2] = ACTIONS(948), - [anon_sym_SLASH2] = ACTIONS(948), - [anon_sym_mod2] = ACTIONS(950), - [anon_sym_SLASH_SLASH2] = ACTIONS(950), - [anon_sym_PLUS2] = ACTIONS(948), - [anon_sym_bit_DASHshl2] = ACTIONS(950), - [anon_sym_bit_DASHshr2] = ACTIONS(950), - [anon_sym_bit_DASHand2] = ACTIONS(950), - [anon_sym_bit_DASHxor2] = ACTIONS(950), - [anon_sym_bit_DASHor2] = ACTIONS(950), - [anon_sym_DOT_DOT2] = ACTIONS(948), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), - [anon_sym_DOT_DOT_LT2] = ACTIONS(950), - [anon_sym_COLON2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(948), - [anon_sym_err_GT] = ACTIONS(948), - [anon_sym_out_GT] = ACTIONS(948), - [anon_sym_e_GT] = ACTIONS(948), - [anon_sym_o_GT] = ACTIONS(948), - [anon_sym_err_PLUSout_GT] = ACTIONS(948), - [anon_sym_out_PLUSerr_GT] = ACTIONS(948), - [anon_sym_o_PLUSe_GT] = ACTIONS(948), - [anon_sym_e_PLUSo_GT] = ACTIONS(948), - [anon_sym_err_GT_GT] = ACTIONS(950), - [anon_sym_out_GT_GT] = ACTIONS(950), - [anon_sym_e_GT_GT] = ACTIONS(950), - [anon_sym_o_GT_GT] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), + [1203] = { + [sym_cell_path] = STATE(1385), + [sym_path] = STATE(1321), + [sym_comment] = STATE(1203), + [aux_sym_cell_path_repeat1] = STATE(1213), + [ts_builtin_sym_end] = ACTIONS(927), + [anon_sym_EQ] = ACTIONS(925), + [anon_sym_PLUS_EQ] = ACTIONS(927), + [anon_sym_DASH_EQ] = ACTIONS(927), + [anon_sym_STAR_EQ] = ACTIONS(927), + [anon_sym_SLASH_EQ] = ACTIONS(927), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(927), + [sym__newline] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(927), + [anon_sym_err_GT_PIPE] = ACTIONS(927), + [anon_sym_out_GT_PIPE] = ACTIONS(927), + [anon_sym_e_GT_PIPE] = ACTIONS(927), + [anon_sym_o_GT_PIPE] = ACTIONS(927), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(927), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(927), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(927), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(927), + [anon_sym_GT2] = ACTIONS(925), + [anon_sym_DASH2] = ACTIONS(925), + [anon_sym_in2] = ACTIONS(927), + [anon_sym_STAR2] = ACTIONS(925), + [anon_sym_and2] = ACTIONS(927), + [anon_sym_xor2] = ACTIONS(927), + [anon_sym_or2] = ACTIONS(927), + [anon_sym_not_DASHin2] = ACTIONS(927), + [anon_sym_has2] = ACTIONS(927), + [anon_sym_not_DASHhas2] = ACTIONS(927), + [anon_sym_starts_DASHwith2] = ACTIONS(927), + [anon_sym_ends_DASHwith2] = ACTIONS(927), + [anon_sym_EQ_EQ2] = ACTIONS(927), + [anon_sym_BANG_EQ2] = ACTIONS(927), + [anon_sym_LT2] = ACTIONS(925), + [anon_sym_LT_EQ2] = ACTIONS(927), + [anon_sym_GT_EQ2] = ACTIONS(927), + [anon_sym_EQ_TILDE2] = ACTIONS(927), + [anon_sym_BANG_TILDE2] = ACTIONS(927), + [anon_sym_STAR_STAR2] = ACTIONS(927), + [anon_sym_PLUS_PLUS2] = ACTIONS(925), + [anon_sym_SLASH2] = ACTIONS(925), + [anon_sym_mod2] = ACTIONS(927), + [anon_sym_SLASH_SLASH2] = ACTIONS(927), + [anon_sym_PLUS2] = ACTIONS(925), + [anon_sym_bit_DASHshl2] = ACTIONS(927), + [anon_sym_bit_DASHshr2] = ACTIONS(927), + [anon_sym_bit_DASHand2] = ACTIONS(927), + [anon_sym_bit_DASHxor2] = ACTIONS(927), + [anon_sym_bit_DASHor2] = ACTIONS(927), + [anon_sym_DOT_DOT2] = ACTIONS(925), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(927), + [anon_sym_DOT_DOT_LT2] = ACTIONS(927), + [anon_sym_DOT2] = ACTIONS(3979), + [anon_sym_err_GT] = ACTIONS(925), + [anon_sym_out_GT] = ACTIONS(925), + [anon_sym_e_GT] = ACTIONS(925), + [anon_sym_o_GT] = ACTIONS(925), + [anon_sym_err_PLUSout_GT] = ACTIONS(925), + [anon_sym_out_PLUSerr_GT] = ACTIONS(925), + [anon_sym_o_PLUSe_GT] = ACTIONS(925), + [anon_sym_e_PLUSo_GT] = ACTIONS(925), + [anon_sym_err_GT_GT] = ACTIONS(927), + [anon_sym_out_GT_GT] = ACTIONS(927), + [anon_sym_e_GT_GT] = ACTIONS(927), + [anon_sym_o_GT_GT] = ACTIONS(927), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(927), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(927), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(927), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(927), [anon_sym_POUND] = ACTIONS(245), }, - [1258] = { - [sym__expr_parenthesized_immediate] = STATE(1938), - [sym__immediate_decimal] = STATE(1603), - [sym_val_variable] = STATE(1938), - [sym_comment] = STATE(1258), - [sym__newline] = ACTIONS(1445), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_PIPE] = ACTIONS(1445), + [1204] = { + [sym_comment] = STATE(1204), + [anon_sym_EQ] = ACTIONS(964), + [anon_sym_PLUS_EQ] = ACTIONS(966), + [anon_sym_DASH_EQ] = ACTIONS(966), + [anon_sym_STAR_EQ] = ACTIONS(966), + [anon_sym_SLASH_EQ] = ACTIONS(966), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(966), + [sym__newline] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_err_GT_PIPE] = ACTIONS(966), + [anon_sym_out_GT_PIPE] = ACTIONS(966), + [anon_sym_e_GT_PIPE] = ACTIONS(966), + [anon_sym_o_GT_PIPE] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(966), + [anon_sym_RPAREN] = ACTIONS(966), + [anon_sym_GT2] = ACTIONS(964), + [anon_sym_DASH2] = ACTIONS(964), + [anon_sym_in2] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_STAR2] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(3981), + [anon_sym_and2] = ACTIONS(966), + [anon_sym_xor2] = ACTIONS(966), + [anon_sym_or2] = ACTIONS(966), + [anon_sym_not_DASHin2] = ACTIONS(966), + [anon_sym_has2] = ACTIONS(966), + [anon_sym_not_DASHhas2] = ACTIONS(966), + [anon_sym_starts_DASHwith2] = ACTIONS(966), + [anon_sym_ends_DASHwith2] = ACTIONS(966), + [anon_sym_EQ_EQ2] = ACTIONS(966), + [anon_sym_BANG_EQ2] = ACTIONS(966), + [anon_sym_LT2] = ACTIONS(964), + [anon_sym_LT_EQ2] = ACTIONS(966), + [anon_sym_GT_EQ2] = ACTIONS(966), + [anon_sym_EQ_TILDE2] = ACTIONS(966), + [anon_sym_BANG_TILDE2] = ACTIONS(966), + [anon_sym_STAR_STAR2] = ACTIONS(966), + [anon_sym_PLUS_PLUS2] = ACTIONS(964), + [anon_sym_SLASH2] = ACTIONS(964), + [anon_sym_mod2] = ACTIONS(966), + [anon_sym_SLASH_SLASH2] = ACTIONS(966), + [anon_sym_PLUS2] = ACTIONS(964), + [anon_sym_bit_DASHshl2] = ACTIONS(966), + [anon_sym_bit_DASHshr2] = ACTIONS(966), + [anon_sym_bit_DASHand2] = ACTIONS(966), + [anon_sym_bit_DASHxor2] = ACTIONS(966), + [anon_sym_bit_DASHor2] = ACTIONS(966), + [anon_sym_DOT_DOT2] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(966), + [anon_sym_DOT_DOT_LT2] = ACTIONS(966), + [anon_sym_COLON2] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(964), + [anon_sym_err_GT] = ACTIONS(964), + [anon_sym_out_GT] = ACTIONS(964), + [anon_sym_e_GT] = ACTIONS(964), + [anon_sym_o_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT] = ACTIONS(964), + [anon_sym_err_GT_GT] = ACTIONS(966), + [anon_sym_out_GT_GT] = ACTIONS(966), + [anon_sym_e_GT_GT] = ACTIONS(966), + [anon_sym_o_GT_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(245), + }, + [1205] = { + [sym_comment] = STATE(1205), + [anon_sym_EQ] = ACTIONS(958), + [anon_sym_PLUS_EQ] = ACTIONS(960), + [anon_sym_DASH_EQ] = ACTIONS(960), + [anon_sym_STAR_EQ] = ACTIONS(960), + [anon_sym_SLASH_EQ] = ACTIONS(960), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(960), + [sym__newline] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_err_GT_PIPE] = ACTIONS(960), + [anon_sym_out_GT_PIPE] = ACTIONS(960), + [anon_sym_e_GT_PIPE] = ACTIONS(960), + [anon_sym_o_GT_PIPE] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), + [anon_sym_RPAREN] = ACTIONS(960), + [anon_sym_GT2] = ACTIONS(958), + [anon_sym_DASH2] = ACTIONS(958), + [anon_sym_in2] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_STAR2] = ACTIONS(958), + [anon_sym_QMARK2] = ACTIONS(3983), + [anon_sym_and2] = ACTIONS(960), + [anon_sym_xor2] = ACTIONS(960), + [anon_sym_or2] = ACTIONS(960), + [anon_sym_not_DASHin2] = ACTIONS(960), + [anon_sym_has2] = ACTIONS(960), + [anon_sym_not_DASHhas2] = ACTIONS(960), + [anon_sym_starts_DASHwith2] = ACTIONS(960), + [anon_sym_ends_DASHwith2] = ACTIONS(960), + [anon_sym_EQ_EQ2] = ACTIONS(960), + [anon_sym_BANG_EQ2] = ACTIONS(960), + [anon_sym_LT2] = ACTIONS(958), + [anon_sym_LT_EQ2] = ACTIONS(960), + [anon_sym_GT_EQ2] = ACTIONS(960), + [anon_sym_EQ_TILDE2] = ACTIONS(960), + [anon_sym_BANG_TILDE2] = ACTIONS(960), + [anon_sym_STAR_STAR2] = ACTIONS(960), + [anon_sym_PLUS_PLUS2] = ACTIONS(958), + [anon_sym_SLASH2] = ACTIONS(958), + [anon_sym_mod2] = ACTIONS(960), + [anon_sym_SLASH_SLASH2] = ACTIONS(960), + [anon_sym_PLUS2] = ACTIONS(958), + [anon_sym_bit_DASHshl2] = ACTIONS(960), + [anon_sym_bit_DASHshr2] = ACTIONS(960), + [anon_sym_bit_DASHand2] = ACTIONS(960), + [anon_sym_bit_DASHxor2] = ACTIONS(960), + [anon_sym_bit_DASHor2] = ACTIONS(960), + [anon_sym_DOT_DOT2] = ACTIONS(958), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(960), + [anon_sym_DOT_DOT_LT2] = ACTIONS(960), + [anon_sym_COLON2] = ACTIONS(960), + [anon_sym_DOT2] = ACTIONS(958), + [anon_sym_err_GT] = ACTIONS(958), + [anon_sym_out_GT] = ACTIONS(958), + [anon_sym_e_GT] = ACTIONS(958), + [anon_sym_o_GT] = ACTIONS(958), + [anon_sym_err_PLUSout_GT] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(958), + [anon_sym_o_PLUSe_GT] = ACTIONS(958), + [anon_sym_e_PLUSo_GT] = ACTIONS(958), + [anon_sym_err_GT_GT] = ACTIONS(960), + [anon_sym_out_GT_GT] = ACTIONS(960), + [anon_sym_e_GT_GT] = ACTIONS(960), + [anon_sym_o_GT_GT] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), + [anon_sym_POUND] = ACTIONS(245), + }, + [1206] = { + [sym__expr_parenthesized_immediate] = STATE(1797), + [sym__immediate_decimal] = STATE(1547), + [sym_val_variable] = STATE(1797), + [sym_comment] = STATE(1206), + [sym__newline] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1445), + [anon_sym_PIPE] = ACTIONS(1445), [anon_sym_err_GT_PIPE] = ACTIONS(1445), [anon_sym_out_GT_PIPE] = ACTIONS(1445), [anon_sym_e_GT_PIPE] = ACTIONS(1445), @@ -200015,19 +193739,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1445), [anon_sym_LPAREN] = ACTIONS(1431), [anon_sym_RPAREN] = ACTIONS(1445), - [anon_sym_DOLLAR] = ACTIONS(3993), + [anon_sym_DOLLAR] = ACTIONS(3947), [anon_sym_DASH_DASH] = ACTIONS(1445), [anon_sym_DASH2] = ACTIONS(1431), [anon_sym_LBRACE] = ACTIONS(1445), [anon_sym_RBRACE] = ACTIONS(1445), [anon_sym_DOT_DOT] = ACTIONS(1431), - [anon_sym_LPAREN2] = ACTIONS(3995), + [anon_sym_LPAREN2] = ACTIONS(3949), [anon_sym_DOT_DOT_EQ] = ACTIONS(1445), [anon_sym_DOT_DOT_LT] = ACTIONS(1445), - [aux_sym__immediate_decimal_token1] = ACTIONS(3997), - [aux_sym__immediate_decimal_token3] = ACTIONS(3999), - [aux_sym__immediate_decimal_token4] = ACTIONS(4001), - [aux_sym__immediate_decimal_token5] = ACTIONS(4003), + [aux_sym__immediate_decimal_token1] = ACTIONS(3951), + [aux_sym__immediate_decimal_token3] = ACTIONS(3953), + [aux_sym__immediate_decimal_token4] = ACTIONS(3955), + [aux_sym__immediate_decimal_token5] = ACTIONS(3957), [anon_sym_null] = ACTIONS(1445), [anon_sym_true] = ACTIONS(1445), [anon_sym_false] = ACTIONS(1445), @@ -200071,4304 +193795,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(1445), }, - [1259] = { - [sym__expr_parenthesized_immediate] = STATE(1575), - [sym__immediate_decimal] = STATE(1576), - [sym_val_variable] = STATE(1575), - [sym_comment] = STATE(1259), - [sym__newline] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1482), - [anon_sym_err_GT_PIPE] = ACTIONS(1482), - [anon_sym_out_GT_PIPE] = ACTIONS(1482), - [anon_sym_e_GT_PIPE] = ACTIONS(1482), - [anon_sym_o_GT_PIPE] = ACTIONS(1482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1482), - [anon_sym_LBRACK] = ACTIONS(1482), - [anon_sym_LPAREN] = ACTIONS(1472), - [anon_sym_RPAREN] = ACTIONS(1482), - [anon_sym_DOLLAR] = ACTIONS(2686), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_DASH2] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_RBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(3981), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1482), - [anon_sym_DOT_DOT_LT] = ACTIONS(1482), - [aux_sym__immediate_decimal_token1] = ACTIONS(4033), - [aux_sym__immediate_decimal_token3] = ACTIONS(4035), - [aux_sym__immediate_decimal_token4] = ACTIONS(4037), - [aux_sym__immediate_decimal_token5] = ACTIONS(4039), - [anon_sym_null] = ACTIONS(1482), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [aux_sym__val_number_decimal_token1] = ACTIONS(1472), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1482), - [aux_sym__val_number_token2] = ACTIONS(1482), - [aux_sym__val_number_token3] = ACTIONS(1482), - [aux_sym__val_number_token4] = ACTIONS(1482), - [aux_sym__val_number_token5] = ACTIONS(1482), - [aux_sym__val_number_token6] = ACTIONS(1482), - [anon_sym_0b] = ACTIONS(1472), - [anon_sym_0o] = ACTIONS(1472), - [anon_sym_0x] = ACTIONS(1472), - [sym_val_date] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym__str_single_quotes] = ACTIONS(1482), - [sym__str_back_ticks] = ACTIONS(1482), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1482), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1482), - [anon_sym_err_GT] = ACTIONS(1472), - [anon_sym_out_GT] = ACTIONS(1472), - [anon_sym_e_GT] = ACTIONS(1472), - [anon_sym_o_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT] = ACTIONS(1472), - [anon_sym_err_GT_GT] = ACTIONS(1482), - [anon_sym_out_GT_GT] = ACTIONS(1482), - [anon_sym_e_GT_GT] = ACTIONS(1482), - [anon_sym_o_GT_GT] = ACTIONS(1482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1482), - [aux_sym_unquoted_token1] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1482), - }, - [1260] = { - [sym__val_range] = STATE(7907), - [sym__value] = STATE(4767), - [sym_val_nothing] = STATE(4851), - [sym_val_bool] = STATE(4490), - [sym_val_variable] = STATE(4851), - [sym_val_number] = STATE(4851), - [sym__val_number_decimal] = STATE(4059), - [sym__val_number] = STATE(4856), - [sym_val_duration] = STATE(4851), - [sym_val_filesize] = STATE(4851), - [sym_val_binary] = STATE(4851), - [sym_val_string] = STATE(4851), - [sym__raw_str] = STATE(4093), - [sym__str_double_quotes] = STATE(4093), - [sym_val_interpolated] = STATE(4851), - [sym__inter_single_quotes] = STATE(4857), - [sym__inter_double_quotes] = STATE(4858), - [sym_val_list] = STATE(4851), - [sym_val_record] = STATE(4851), - [sym_val_table] = STATE(4851), - [sym_val_closure] = STATE(4851), - [sym_unquoted] = STATE(4768), - [sym__unquoted_anonymous_prefix] = STATE(7588), - [sym_comment] = STATE(1260), - [anon_sym_LBRACK] = ACTIONS(4041), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_DOLLAR] = ACTIONS(2228), - [anon_sym_LBRACE] = ACTIONS(4045), - [anon_sym_DOT_DOT] = ACTIONS(4047), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4049), - [anon_sym_DOT_DOT_LT] = ACTIONS(4049), - [anon_sym_null] = ACTIONS(4051), - [anon_sym_true] = ACTIONS(4053), - [anon_sym_false] = ACTIONS(4053), - [aux_sym__val_number_decimal_token1] = ACTIONS(2248), - [aux_sym__val_number_decimal_token2] = ACTIONS(4055), - [aux_sym__val_number_decimal_token3] = ACTIONS(4057), - [aux_sym__val_number_decimal_token4] = ACTIONS(4059), - [aux_sym__val_number_token1] = ACTIONS(4061), - [aux_sym__val_number_token2] = ACTIONS(4061), - [aux_sym__val_number_token3] = ACTIONS(4061), - [aux_sym__val_number_token4] = ACTIONS(4063), - [aux_sym__val_number_token5] = ACTIONS(4063), - [aux_sym__val_number_token6] = ACTIONS(4063), - [anon_sym_0b] = ACTIONS(2258), - [anon_sym_0o] = ACTIONS(2260), - [anon_sym_0x] = ACTIONS(2260), - [sym_val_date] = ACTIONS(4065), - [anon_sym_DQUOTE] = ACTIONS(4067), - [sym__str_single_quotes] = ACTIONS(4069), - [sym__str_back_ticks] = ACTIONS(4069), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4071), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4073), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(2276), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2278), - }, - [1261] = { - [sym__expr_parenthesized_immediate] = STATE(1711), - [sym__immediate_decimal] = STATE(1712), - [sym_val_variable] = STATE(1711), - [sym_comment] = STATE(1261), - [sym__newline] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1482), - [anon_sym_err_GT_PIPE] = ACTIONS(1482), - [anon_sym_out_GT_PIPE] = ACTIONS(1482), - [anon_sym_e_GT_PIPE] = ACTIONS(1482), - [anon_sym_o_GT_PIPE] = ACTIONS(1482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1482), - [anon_sym_RPAREN] = ACTIONS(1482), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_GT2] = ACTIONS(1472), - [anon_sym_DASH2] = ACTIONS(1472), - [anon_sym_in2] = ACTIONS(1482), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_RBRACE] = ACTIONS(1482), - [anon_sym_STAR2] = ACTIONS(1472), - [anon_sym_and2] = ACTIONS(1482), - [anon_sym_xor2] = ACTIONS(1482), - [anon_sym_or2] = ACTIONS(1482), - [anon_sym_not_DASHin2] = ACTIONS(1482), - [anon_sym_has2] = ACTIONS(1482), - [anon_sym_not_DASHhas2] = ACTIONS(1482), - [anon_sym_starts_DASHwith2] = ACTIONS(1482), - [anon_sym_ends_DASHwith2] = ACTIONS(1482), - [anon_sym_EQ_EQ2] = ACTIONS(1482), - [anon_sym_BANG_EQ2] = ACTIONS(1482), - [anon_sym_LT2] = ACTIONS(1472), - [anon_sym_LT_EQ2] = ACTIONS(1482), - [anon_sym_GT_EQ2] = ACTIONS(1482), - [anon_sym_EQ_TILDE2] = ACTIONS(1482), - [anon_sym_BANG_TILDE2] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(4075), - [anon_sym_STAR_STAR2] = ACTIONS(1482), - [anon_sym_PLUS_PLUS2] = ACTIONS(1482), - [anon_sym_SLASH2] = ACTIONS(1472), - [anon_sym_mod2] = ACTIONS(1482), - [anon_sym_SLASH_SLASH2] = ACTIONS(1482), - [anon_sym_PLUS2] = ACTIONS(1472), - [anon_sym_bit_DASHshl2] = ACTIONS(1482), - [anon_sym_bit_DASHshr2] = ACTIONS(1482), - [anon_sym_bit_DASHand2] = ACTIONS(1482), - [anon_sym_bit_DASHxor2] = ACTIONS(1482), - [anon_sym_bit_DASHor2] = ACTIONS(1482), - [anon_sym_DOT] = ACTIONS(4077), - [aux_sym__immediate_decimal_token1] = ACTIONS(4079), - [aux_sym__immediate_decimal_token3] = ACTIONS(4079), - [aux_sym__immediate_decimal_token4] = ACTIONS(4081), - [aux_sym__immediate_decimal_token5] = ACTIONS(4083), - [anon_sym_err_GT] = ACTIONS(1472), - [anon_sym_out_GT] = ACTIONS(1472), - [anon_sym_e_GT] = ACTIONS(1472), - [anon_sym_o_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT] = ACTIONS(1472), - [anon_sym_err_GT_GT] = ACTIONS(1482), - [anon_sym_out_GT_GT] = ACTIONS(1482), - [anon_sym_e_GT_GT] = ACTIONS(1482), - [anon_sym_o_GT_GT] = ACTIONS(1482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1482), - [anon_sym_POUND] = ACTIONS(245), - }, - [1262] = { - [sym__val_range] = STATE(7582), - [sym__value] = STATE(2987), - [sym_val_nothing] = STATE(2984), - [sym_val_bool] = STATE(2934), - [sym_val_variable] = STATE(2984), - [sym_val_number] = STATE(2984), - [sym__val_number_decimal] = STATE(2579), - [sym__val_number] = STATE(2975), - [sym_val_duration] = STATE(2984), - [sym_val_filesize] = STATE(2984), - [sym_val_binary] = STATE(2984), - [sym_val_string] = STATE(2984), - [sym__raw_str] = STATE(2978), - [sym__str_double_quotes] = STATE(2978), - [sym_val_interpolated] = STATE(2984), - [sym__inter_single_quotes] = STATE(2976), - [sym__inter_double_quotes] = STATE(2979), - [sym_val_list] = STATE(2984), - [sym_val_record] = STATE(2984), - [sym_val_table] = STATE(2984), - [sym_val_closure] = STATE(2984), - [sym_unquoted] = STATE(2966), - [sym__unquoted_anonymous_prefix] = STATE(7595), - [sym_comment] = STATE(1262), - [anon_sym_LBRACK] = ACTIONS(4085), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_DOLLAR] = ACTIONS(4089), - [anon_sym_LBRACE] = ACTIONS(4091), - [anon_sym_DOT_DOT] = ACTIONS(4093), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4095), - [anon_sym_DOT_DOT_LT] = ACTIONS(4095), - [anon_sym_null] = ACTIONS(4097), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [aux_sym__val_number_decimal_token1] = ACTIONS(4101), - [aux_sym__val_number_decimal_token2] = ACTIONS(4103), - [aux_sym__val_number_decimal_token3] = ACTIONS(4105), - [aux_sym__val_number_decimal_token4] = ACTIONS(4107), - [aux_sym__val_number_token1] = ACTIONS(4109), - [aux_sym__val_number_token2] = ACTIONS(4109), - [aux_sym__val_number_token3] = ACTIONS(4109), - [aux_sym__val_number_token4] = ACTIONS(4111), - [aux_sym__val_number_token5] = ACTIONS(4111), - [aux_sym__val_number_token6] = ACTIONS(4111), - [anon_sym_0b] = ACTIONS(4113), - [anon_sym_0o] = ACTIONS(4115), - [anon_sym_0x] = ACTIONS(4115), - [sym_val_date] = ACTIONS(4117), - [anon_sym_DQUOTE] = ACTIONS(4119), - [sym__str_single_quotes] = ACTIONS(4121), - [sym__str_back_ticks] = ACTIONS(4121), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4123), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4125), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(4127), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(4129), - }, - [1263] = { - [sym__val_range] = STATE(7723), - [sym__value] = STATE(5300), - [sym_val_nothing] = STATE(4332), - [sym_val_bool] = STATE(5787), - [sym_val_variable] = STATE(4332), - [sym_val_number] = STATE(4332), - [sym__val_number_decimal] = STATE(5315), - [sym__val_number] = STATE(4342), - [sym_val_duration] = STATE(4332), - [sym_val_filesize] = STATE(4332), - [sym_val_binary] = STATE(4332), - [sym_val_string] = STATE(4332), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(4332), - [sym__inter_single_quotes] = STATE(5242), - [sym__inter_double_quotes] = STATE(5247), - [sym_val_list] = STATE(4332), - [sym_val_record] = STATE(4332), - [sym_val_table] = STATE(4332), - [sym_val_closure] = STATE(4332), - [sym_unquoted] = STATE(5276), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1263), - [anon_sym_LBRACK] = ACTIONS(4131), - [anon_sym_LPAREN] = ACTIONS(4133), - [anon_sym_DOLLAR] = ACTIONS(4135), - [anon_sym_LBRACE] = ACTIONS(4137), - [anon_sym_DOT_DOT] = ACTIONS(4139), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4141), - [anon_sym_DOT_DOT_LT] = ACTIONS(4141), - [anon_sym_null] = ACTIONS(4143), - [anon_sym_true] = ACTIONS(4145), - [anon_sym_false] = ACTIONS(4145), - [aux_sym__val_number_decimal_token1] = ACTIONS(4147), - [aux_sym__val_number_decimal_token2] = ACTIONS(4149), - [aux_sym__val_number_decimal_token3] = ACTIONS(4151), - [aux_sym__val_number_decimal_token4] = ACTIONS(4153), - [aux_sym__val_number_token1] = ACTIONS(3675), - [aux_sym__val_number_token2] = ACTIONS(3675), - [aux_sym__val_number_token3] = ACTIONS(3675), - [aux_sym__val_number_token4] = ACTIONS(4155), - [aux_sym__val_number_token5] = ACTIONS(4155), - [aux_sym__val_number_token6] = ACTIONS(4155), - [anon_sym_0b] = ACTIONS(3679), - [anon_sym_0o] = ACTIONS(3681), - [anon_sym_0x] = ACTIONS(3681), - [sym_val_date] = ACTIONS(4157), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym__str_single_quotes] = ACTIONS(1264), - [sym__str_back_ticks] = ACTIONS(1264), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4159), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4161), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1266), + [1207] = { + [sym__val_range] = STATE(7140), + [sym__value] = STATE(1683), + [sym_val_nothing] = STATE(1680), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1680), + [sym_val_number] = STATE(1680), + [sym__val_number_decimal] = STATE(1339), + [sym__val_number] = STATE(1686), + [sym_val_duration] = STATE(1680), + [sym_val_filesize] = STATE(1680), + [sym_val_binary] = STATE(1680), + [sym_val_string] = STATE(1680), + [sym__raw_str] = STATE(1800), + [sym__str_double_quotes] = STATE(1800), + [sym_val_interpolated] = STATE(1680), + [sym__inter_single_quotes] = STATE(1858), + [sym__inter_double_quotes] = STATE(1859), + [sym_val_list] = STATE(1680), + [sym_val_record] = STATE(1680), + [sym_val_table] = STATE(1680), + [sym_val_closure] = STATE(1680), + [sym_unquoted] = STATE(1691), + [sym__unquoted_anonymous_prefix] = STATE(7096), + [sym_comment] = STATE(1207), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_LPAREN] = ACTIONS(3985), + [anon_sym_DOLLAR] = ACTIONS(3947), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_DOT_DOT] = ACTIONS(3987), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3989), + [anon_sym_DOT_DOT_LT] = ACTIONS(3989), + [anon_sym_null] = ACTIONS(3991), + [anon_sym_true] = ACTIONS(3993), + [anon_sym_false] = ACTIONS(3993), + [aux_sym__val_number_decimal_token1] = ACTIONS(3995), + [aux_sym__val_number_decimal_token2] = ACTIONS(3997), + [aux_sym__val_number_decimal_token3] = ACTIONS(3999), + [aux_sym__val_number_decimal_token4] = ACTIONS(4001), + [aux_sym__val_number_token1] = ACTIONS(2657), + [aux_sym__val_number_token2] = ACTIONS(2657), + [aux_sym__val_number_token3] = ACTIONS(2657), + [aux_sym__val_number_token4] = ACTIONS(4003), + [aux_sym__val_number_token5] = ACTIONS(4003), + [aux_sym__val_number_token6] = ACTIONS(4003), + [anon_sym_0b] = ACTIONS(2661), + [anon_sym_0o] = ACTIONS(2663), + [anon_sym_0x] = ACTIONS(2663), + [sym_val_date] = ACTIONS(4005), + [anon_sym_DQUOTE] = ACTIONS(2667), + [sym__str_single_quotes] = ACTIONS(2669), + [sym__str_back_ticks] = ACTIONS(2669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2673), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(4007), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2681), }, - [1264] = { - [sym__val_range] = STATE(7597), - [sym__value] = STATE(5325), - [sym_val_nothing] = STATE(4332), - [sym_val_bool] = STATE(5787), - [sym_val_variable] = STATE(4332), - [sym_val_number] = STATE(4332), - [sym__val_number_decimal] = STATE(5288), - [sym__val_number] = STATE(4342), - [sym_val_duration] = STATE(4332), - [sym_val_filesize] = STATE(4332), - [sym_val_binary] = STATE(4332), - [sym_val_string] = STATE(4332), - [sym__raw_str] = STATE(5633), - [sym__str_double_quotes] = STATE(5633), - [sym_val_interpolated] = STATE(4332), - [sym__inter_single_quotes] = STATE(5108), - [sym__inter_double_quotes] = STATE(4992), - [sym_val_list] = STATE(4332), - [sym_val_record] = STATE(4332), - [sym_val_table] = STATE(4332), - [sym_val_closure] = STATE(4332), - [sym_unquoted] = STATE(5303), - [sym__unquoted_anonymous_prefix] = STATE(7909), - [sym_comment] = STATE(1264), - [anon_sym_LBRACK] = ACTIONS(4163), - [anon_sym_LPAREN] = ACTIONS(4133), - [anon_sym_DOLLAR] = ACTIONS(4165), - [anon_sym_LBRACE] = ACTIONS(4167), - [anon_sym_DOT_DOT] = ACTIONS(4169), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4171), - [anon_sym_DOT_DOT_LT] = ACTIONS(4171), - [anon_sym_null] = ACTIONS(4143), - [anon_sym_true] = ACTIONS(4145), - [anon_sym_false] = ACTIONS(4145), - [aux_sym__val_number_decimal_token1] = ACTIONS(4173), - [aux_sym__val_number_decimal_token2] = ACTIONS(4175), - [aux_sym__val_number_decimal_token3] = ACTIONS(4177), - [aux_sym__val_number_decimal_token4] = ACTIONS(4179), - [aux_sym__val_number_token1] = ACTIONS(3675), - [aux_sym__val_number_token2] = ACTIONS(3675), - [aux_sym__val_number_token3] = ACTIONS(3675), - [aux_sym__val_number_token4] = ACTIONS(4181), - [aux_sym__val_number_token5] = ACTIONS(4181), - [aux_sym__val_number_token6] = ACTIONS(4181), - [anon_sym_0b] = ACTIONS(3679), - [anon_sym_0o] = ACTIONS(3681), - [anon_sym_0x] = ACTIONS(3681), - [sym_val_date] = ACTIONS(4157), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3689), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3691), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(4187), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(4189), + [1208] = { + [sym_comment] = STATE(1208), + [ts_builtin_sym_end] = ACTIONS(1493), + [sym__newline] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_err_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_GT_PIPE] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_DOLLAR] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_DOT_DOT] = ACTIONS(1491), + [anon_sym_LPAREN2] = ACTIONS(1493), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1491), + [anon_sym_DOT_DOT_LT] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [aux_sym__immediate_decimal_token1] = ACTIONS(4009), + [aux_sym__immediate_decimal_token2] = ACTIONS(4011), + [anon_sym_null] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [aux_sym__val_number_decimal_token1] = ACTIONS(1491), + [aux_sym__val_number_decimal_token2] = ACTIONS(1493), + [aux_sym__val_number_decimal_token3] = ACTIONS(1493), + [aux_sym__val_number_decimal_token4] = ACTIONS(1493), + [aux_sym__val_number_token1] = ACTIONS(1493), + [aux_sym__val_number_token2] = ACTIONS(1493), + [aux_sym__val_number_token3] = ACTIONS(1493), + [aux_sym__val_number_token4] = ACTIONS(1493), + [aux_sym__val_number_token5] = ACTIONS(1493), + [aux_sym__val_number_token6] = ACTIONS(1493), + [anon_sym_0b] = ACTIONS(1491), + [sym_filesize_unit] = ACTIONS(1493), + [sym_duration_unit] = ACTIONS(1493), + [anon_sym_0o] = ACTIONS(1491), + [anon_sym_0x] = ACTIONS(1491), + [sym_val_date] = ACTIONS(1493), + [anon_sym_DQUOTE] = ACTIONS(1493), + [sym__str_single_quotes] = ACTIONS(1493), + [sym__str_back_ticks] = ACTIONS(1493), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1493), + [anon_sym_err_GT] = ACTIONS(1491), + [anon_sym_out_GT] = ACTIONS(1491), + [anon_sym_e_GT] = ACTIONS(1491), + [anon_sym_o_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT] = ACTIONS(1491), + [anon_sym_err_GT_GT] = ACTIONS(1493), + [anon_sym_out_GT_GT] = ACTIONS(1493), + [anon_sym_e_GT_GT] = ACTIONS(1493), + [anon_sym_o_GT_GT] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1493), + [aux_sym_unquoted_token1] = ACTIONS(1491), + [aux_sym_unquoted_token2] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1493), }, - [1265] = { - [sym__val_range] = STATE(7723), - [sym__value] = STATE(5342), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(7490), - [sym_val_variable] = STATE(2082), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(5641), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(5214), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1265), - [anon_sym_LBRACK] = ACTIONS(3540), - [anon_sym_LPAREN] = ACTIONS(4191), - [anon_sym_DOLLAR] = ACTIONS(3544), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_DOT_DOT] = ACTIONS(4139), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4141), - [anon_sym_DOT_DOT_LT] = ACTIONS(4141), - [anon_sym_null] = ACTIONS(3838), - [anon_sym_true] = ACTIONS(3840), - [anon_sym_false] = ACTIONS(3840), - [aux_sym__val_number_decimal_token1] = ACTIONS(3842), - [aux_sym__val_number_decimal_token2] = ACTIONS(3844), - [aux_sym__val_number_decimal_token3] = ACTIONS(3846), - [aux_sym__val_number_decimal_token4] = ACTIONS(3848), - [aux_sym__val_number_token1] = ACTIONS(223), - [aux_sym__val_number_token2] = ACTIONS(223), - [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3850), - [aux_sym__val_number_token5] = ACTIONS(3850), - [aux_sym__val_number_token6] = ACTIONS(3850), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3852), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym__str_single_quotes] = ACTIONS(1264), - [sym__str_back_ticks] = ACTIONS(1264), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1266), + [1209] = { + [sym__expr_parenthesized_immediate] = STATE(1569), + [sym__immediate_decimal] = STATE(1570), + [sym_val_variable] = STATE(1569), + [sym_comment] = STATE(1209), + [ts_builtin_sym_end] = ACTIONS(1489), + [sym__newline] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1489), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_err_GT_PIPE] = ACTIONS(1489), + [anon_sym_out_GT_PIPE] = ACTIONS(1489), + [anon_sym_e_GT_PIPE] = ACTIONS(1489), + [anon_sym_o_GT_PIPE] = ACTIONS(1489), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1489), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1489), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1489), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_DOLLAR] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(1489), + [anon_sym_DASH2] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_DOT_DOT] = ACTIONS(1479), + [anon_sym_LPAREN2] = ACTIONS(3967), + [anon_sym_DOT] = ACTIONS(4013), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1489), + [anon_sym_DOT_DOT_LT] = ACTIONS(1489), + [aux_sym__immediate_decimal_token1] = ACTIONS(4015), + [aux_sym__immediate_decimal_token3] = ACTIONS(4017), + [aux_sym__immediate_decimal_token4] = ACTIONS(4019), + [aux_sym__immediate_decimal_token5] = ACTIONS(4021), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [aux_sym__val_number_decimal_token1] = ACTIONS(1479), + [aux_sym__val_number_decimal_token2] = ACTIONS(1479), + [aux_sym__val_number_decimal_token3] = ACTIONS(1479), + [aux_sym__val_number_decimal_token4] = ACTIONS(1479), + [aux_sym__val_number_token1] = ACTIONS(1489), + [aux_sym__val_number_token2] = ACTIONS(1489), + [aux_sym__val_number_token3] = ACTIONS(1489), + [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(1479), + [anon_sym_0o] = ACTIONS(1479), + [anon_sym_0x] = ACTIONS(1479), + [sym_val_date] = ACTIONS(1489), + [anon_sym_DQUOTE] = ACTIONS(1489), + [sym__str_single_quotes] = ACTIONS(1489), + [sym__str_back_ticks] = ACTIONS(1489), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1489), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1489), + [anon_sym_err_GT] = ACTIONS(1479), + [anon_sym_out_GT] = ACTIONS(1479), + [anon_sym_e_GT] = ACTIONS(1479), + [anon_sym_o_GT] = ACTIONS(1479), + [anon_sym_err_PLUSout_GT] = ACTIONS(1479), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1479), + [anon_sym_o_PLUSe_GT] = ACTIONS(1479), + [anon_sym_e_PLUSo_GT] = ACTIONS(1479), + [anon_sym_err_GT_GT] = ACTIONS(1489), + [anon_sym_out_GT_GT] = ACTIONS(1489), + [anon_sym_e_GT_GT] = ACTIONS(1489), + [anon_sym_o_GT_GT] = ACTIONS(1489), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1489), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1489), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1489), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1489), + [aux_sym_unquoted_token1] = ACTIONS(1479), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1489), }, - [1266] = { - [sym_comment] = STATE(1266), - [sym__newline] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_PIPE] = ACTIONS(1494), - [anon_sym_err_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_GT_PIPE] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_RBRACE] = ACTIONS(1494), - [anon_sym_DOT_DOT] = ACTIONS(1492), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1492), - [anon_sym_DOT_DOT_LT] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), + [1210] = { + [sym_comment] = STATE(1210), + [ts_builtin_sym_end] = ACTIONS(1501), + [sym__newline] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_err_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_GT_PIPE] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_DOLLAR] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_LPAREN2] = ACTIONS(1501), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT] = ACTIONS(4023), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), [aux_sym__immediate_decimal_token2] = ACTIONS(4025), - [anon_sym_null] = ACTIONS(1494), - [anon_sym_true] = ACTIONS(1494), - [anon_sym_false] = ACTIONS(1494), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1494), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(1494), - [aux_sym__val_number_token2] = ACTIONS(1494), - [aux_sym__val_number_token3] = ACTIONS(1494), - [aux_sym__val_number_token4] = ACTIONS(1494), - [aux_sym__val_number_token5] = ACTIONS(1494), - [aux_sym__val_number_token6] = ACTIONS(1494), - [anon_sym_0b] = ACTIONS(1492), - [sym_filesize_unit] = ACTIONS(1494), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_0o] = ACTIONS(1492), - [anon_sym_0x] = ACTIONS(1492), - [sym_val_date] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym__str_single_quotes] = ACTIONS(1494), - [sym__str_back_ticks] = ACTIONS(1494), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1494), - [anon_sym_out_GT_GT] = ACTIONS(1494), - [anon_sym_e_GT_GT] = ACTIONS(1494), - [anon_sym_o_GT_GT] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1494), - [aux_sym_unquoted_token1] = ACTIONS(1492), - [aux_sym_unquoted_token2] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1494), - }, - [1267] = { - [sym__val_range] = STATE(7723), - [sym__value] = STATE(5284), - [sym_val_nothing] = STATE(4332), - [sym_val_bool] = STATE(5787), - [sym_val_variable] = STATE(4332), - [sym_val_number] = STATE(4332), - [sym__val_number_decimal] = STATE(5315), - [sym__val_number] = STATE(4342), - [sym_val_duration] = STATE(4332), - [sym_val_filesize] = STATE(4332), - [sym_val_binary] = STATE(4332), - [sym_val_string] = STATE(4332), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(4332), - [sym__inter_single_quotes] = STATE(5242), - [sym__inter_double_quotes] = STATE(5247), - [sym_val_list] = STATE(4332), - [sym_val_record] = STATE(4332), - [sym_val_table] = STATE(4332), - [sym_val_closure] = STATE(4332), - [sym_unquoted] = STATE(5291), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1267), - [anon_sym_LBRACK] = ACTIONS(4131), - [anon_sym_LPAREN] = ACTIONS(4133), - [anon_sym_DOLLAR] = ACTIONS(4135), - [anon_sym_LBRACE] = ACTIONS(4137), - [anon_sym_DOT_DOT] = ACTIONS(4139), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4141), - [anon_sym_DOT_DOT_LT] = ACTIONS(4141), - [anon_sym_null] = ACTIONS(4143), - [anon_sym_true] = ACTIONS(4145), - [anon_sym_false] = ACTIONS(4145), - [aux_sym__val_number_decimal_token1] = ACTIONS(4147), - [aux_sym__val_number_decimal_token2] = ACTIONS(4149), - [aux_sym__val_number_decimal_token3] = ACTIONS(4151), - [aux_sym__val_number_decimal_token4] = ACTIONS(4153), - [aux_sym__val_number_token1] = ACTIONS(3675), - [aux_sym__val_number_token2] = ACTIONS(3675), - [aux_sym__val_number_token3] = ACTIONS(3675), - [aux_sym__val_number_token4] = ACTIONS(4155), - [aux_sym__val_number_token5] = ACTIONS(4155), - [aux_sym__val_number_token6] = ACTIONS(4155), - [anon_sym_0b] = ACTIONS(3679), - [anon_sym_0o] = ACTIONS(3681), - [anon_sym_0x] = ACTIONS(3681), - [sym_val_date] = ACTIONS(4157), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym__str_single_quotes] = ACTIONS(1264), - [sym__str_back_ticks] = ACTIONS(1264), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4159), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4161), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1266), - }, - [1268] = { - [sym__val_range] = STATE(7597), - [sym__value] = STATE(5342), - [sym_val_nothing] = STATE(4332), - [sym_val_bool] = STATE(5787), - [sym_val_variable] = STATE(4332), - [sym_val_number] = STATE(4332), - [sym__val_number_decimal] = STATE(5288), - [sym__val_number] = STATE(4342), - [sym_val_duration] = STATE(4332), - [sym_val_filesize] = STATE(4332), - [sym_val_binary] = STATE(4332), - [sym_val_string] = STATE(4332), - [sym__raw_str] = STATE(5633), - [sym__str_double_quotes] = STATE(5633), - [sym_val_interpolated] = STATE(4332), - [sym__inter_single_quotes] = STATE(5108), - [sym__inter_double_quotes] = STATE(4992), - [sym_val_list] = STATE(4332), - [sym_val_record] = STATE(4332), - [sym_val_table] = STATE(4332), - [sym_val_closure] = STATE(4332), - [sym_unquoted] = STATE(5214), - [sym__unquoted_anonymous_prefix] = STATE(7909), - [sym_comment] = STATE(1268), - [anon_sym_LBRACK] = ACTIONS(4163), - [anon_sym_LPAREN] = ACTIONS(4133), - [anon_sym_DOLLAR] = ACTIONS(4165), - [anon_sym_LBRACE] = ACTIONS(4167), - [anon_sym_DOT_DOT] = ACTIONS(4169), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4171), - [anon_sym_DOT_DOT_LT] = ACTIONS(4171), - [anon_sym_null] = ACTIONS(4143), - [anon_sym_true] = ACTIONS(4145), - [anon_sym_false] = ACTIONS(4145), - [aux_sym__val_number_decimal_token1] = ACTIONS(4173), - [aux_sym__val_number_decimal_token2] = ACTIONS(4175), - [aux_sym__val_number_decimal_token3] = ACTIONS(4177), - [aux_sym__val_number_decimal_token4] = ACTIONS(4179), - [aux_sym__val_number_token1] = ACTIONS(3675), - [aux_sym__val_number_token2] = ACTIONS(3675), - [aux_sym__val_number_token3] = ACTIONS(3675), - [aux_sym__val_number_token4] = ACTIONS(4181), - [aux_sym__val_number_token5] = ACTIONS(4181), - [aux_sym__val_number_token6] = ACTIONS(4181), - [anon_sym_0b] = ACTIONS(3679), - [anon_sym_0o] = ACTIONS(3681), - [anon_sym_0x] = ACTIONS(3681), - [sym_val_date] = ACTIONS(4157), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3689), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3691), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(4187), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(4189), - }, - [1269] = { - [sym_comment] = STATE(1269), - [sym__newline] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_PIPE] = ACTIONS(1494), - [anon_sym_err_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_GT_PIPE] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1494), - [anon_sym_RPAREN] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_RBRACE] = ACTIONS(1494), - [anon_sym_DOT_DOT] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT] = ACTIONS(4193), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1492), - [anon_sym_DOT_DOT_LT] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(4195), - [anon_sym_null] = ACTIONS(1494), - [anon_sym_true] = ACTIONS(1494), - [anon_sym_false] = ACTIONS(1494), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1494), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(1494), - [aux_sym__val_number_token2] = ACTIONS(1494), - [aux_sym__val_number_token3] = ACTIONS(1494), - [aux_sym__val_number_token4] = ACTIONS(1494), - [aux_sym__val_number_token5] = ACTIONS(1494), - [aux_sym__val_number_token6] = ACTIONS(1494), - [anon_sym_0b] = ACTIONS(1492), - [sym_filesize_unit] = ACTIONS(1494), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_0o] = ACTIONS(1492), - [anon_sym_0x] = ACTIONS(1492), - [sym_val_date] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym__str_single_quotes] = ACTIONS(1494), - [sym__str_back_ticks] = ACTIONS(1494), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1494), - [anon_sym_out_GT_GT] = ACTIONS(1494), - [anon_sym_e_GT_GT] = ACTIONS(1494), - [anon_sym_o_GT_GT] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1494), - [aux_sym_unquoted_token1] = ACTIONS(1492), - [aux_sym_unquoted_token2] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1494), - }, - [1270] = { - [sym__match_pattern_expression] = STATE(3193), - [sym__match_pattern_value] = STATE(3202), - [sym__match_pattern_list] = STATE(3203), - [sym__match_pattern_rest] = STATE(7670), - [sym__match_pattern_record] = STATE(3204), - [sym_expr_parenthesized] = STATE(2928), - [sym_val_range] = STATE(3202), - [sym__val_range] = STATE(7751), - [sym_val_nothing] = STATE(3205), - [sym_val_bool] = STATE(3126), - [sym_val_variable] = STATE(2931), - [sym_val_number] = STATE(3205), - [sym__val_number_decimal] = STATE(2762), - [sym__val_number] = STATE(3217), - [sym_val_duration] = STATE(3205), - [sym_val_filesize] = STATE(3205), - [sym_val_binary] = STATE(3205), - [sym_val_string] = STATE(3205), - [sym__raw_str] = STATE(3208), - [sym__str_double_quotes] = STATE(3208), - [sym_val_table] = STATE(3205), - [sym__unquoted_in_list] = STATE(3193), - [sym__unquoted_anonymous_prefix] = STATE(7549), - [sym_comment] = STATE(1270), - [aux_sym__match_pattern_list_repeat1] = STATE(1369), - [anon_sym_LBRACK] = ACTIONS(4197), - [anon_sym_RBRACK] = ACTIONS(4199), - [anon_sym_LPAREN] = ACTIONS(3860), - [anon_sym_DOLLAR] = ACTIONS(3862), - [anon_sym_LBRACE] = ACTIONS(3864), - [anon_sym_DOT_DOT] = ACTIONS(4201), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3868), - [anon_sym_DOT_DOT_LT] = ACTIONS(3868), - [anon_sym_null] = ACTIONS(3870), - [anon_sym_true] = ACTIONS(3872), - [anon_sym_false] = ACTIONS(3872), - [aux_sym__val_number_decimal_token1] = ACTIONS(3874), - [aux_sym__val_number_decimal_token2] = ACTIONS(3876), - [aux_sym__val_number_decimal_token3] = ACTIONS(3878), - [aux_sym__val_number_decimal_token4] = ACTIONS(3880), - [aux_sym__val_number_token1] = ACTIONS(3882), - [aux_sym__val_number_token2] = ACTIONS(3882), - [aux_sym__val_number_token3] = ACTIONS(3882), - [aux_sym__val_number_token4] = ACTIONS(3884), - [aux_sym__val_number_token5] = ACTIONS(3884), - [aux_sym__val_number_token6] = ACTIONS(3884), - [anon_sym_0b] = ACTIONS(3886), - [anon_sym_0o] = ACTIONS(3888), - [anon_sym_0x] = ACTIONS(3888), - [sym_val_date] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(3892), - [sym__str_single_quotes] = ACTIONS(3894), - [sym__str_back_ticks] = ACTIONS(3894), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3896), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3898), - }, - [1271] = { - [sym_cell_path] = STATE(1482), - [sym_path] = STATE(1450), - [sym_comment] = STATE(1271), - [aux_sym_cell_path_repeat1] = STATE(1340), - [sym__newline] = ACTIONS(1700), - [anon_sym_SEMI] = ACTIONS(1700), - [anon_sym_PIPE] = ACTIONS(1700), - [anon_sym_err_GT_PIPE] = ACTIONS(1700), - [anon_sym_out_GT_PIPE] = ACTIONS(1700), - [anon_sym_e_GT_PIPE] = ACTIONS(1700), - [anon_sym_o_GT_PIPE] = ACTIONS(1700), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1700), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1700), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1700), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1700), - [anon_sym_RPAREN] = ACTIONS(1700), - [anon_sym_GT2] = ACTIONS(1698), - [anon_sym_DASH2] = ACTIONS(1700), - [anon_sym_in2] = ACTIONS(1700), - [anon_sym_if] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1700), - [anon_sym_RBRACE] = ACTIONS(1700), - [anon_sym_EQ_GT] = ACTIONS(1700), - [anon_sym_STAR2] = ACTIONS(1698), - [anon_sym_and2] = ACTIONS(1700), - [anon_sym_xor2] = ACTIONS(1700), - [anon_sym_or2] = ACTIONS(1700), - [anon_sym_not_DASHin2] = ACTIONS(1700), - [anon_sym_has2] = ACTIONS(1700), - [anon_sym_not_DASHhas2] = ACTIONS(1700), - [anon_sym_starts_DASHwith2] = ACTIONS(1700), - [anon_sym_ends_DASHwith2] = ACTIONS(1700), - [anon_sym_EQ_EQ2] = ACTIONS(1700), - [anon_sym_BANG_EQ2] = ACTIONS(1700), - [anon_sym_LT2] = ACTIONS(1698), - [anon_sym_LT_EQ2] = ACTIONS(1700), - [anon_sym_GT_EQ2] = ACTIONS(1700), - [anon_sym_EQ_TILDE2] = ACTIONS(1700), - [anon_sym_BANG_TILDE2] = ACTIONS(1700), - [anon_sym_STAR_STAR2] = ACTIONS(1700), - [anon_sym_PLUS_PLUS2] = ACTIONS(1700), - [anon_sym_SLASH2] = ACTIONS(1698), - [anon_sym_mod2] = ACTIONS(1700), - [anon_sym_SLASH_SLASH2] = ACTIONS(1700), - [anon_sym_PLUS2] = ACTIONS(1698), - [anon_sym_bit_DASHshl2] = ACTIONS(1700), - [anon_sym_bit_DASHshr2] = ACTIONS(1700), - [anon_sym_bit_DASHand2] = ACTIONS(1700), - [anon_sym_bit_DASHxor2] = ACTIONS(1700), - [anon_sym_bit_DASHor2] = ACTIONS(1700), - [anon_sym_DOT_DOT2] = ACTIONS(1698), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1700), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1700), - [anon_sym_COLON2] = ACTIONS(1700), - [anon_sym_DOT2] = ACTIONS(4203), - [anon_sym_err_GT] = ACTIONS(1698), - [anon_sym_out_GT] = ACTIONS(1698), - [anon_sym_e_GT] = ACTIONS(1698), - [anon_sym_o_GT] = ACTIONS(1698), - [anon_sym_err_PLUSout_GT] = ACTIONS(1698), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1698), - [anon_sym_o_PLUSe_GT] = ACTIONS(1698), - [anon_sym_e_PLUSo_GT] = ACTIONS(1698), - [anon_sym_err_GT_GT] = ACTIONS(1700), - [anon_sym_out_GT_GT] = ACTIONS(1700), - [anon_sym_e_GT_GT] = ACTIONS(1700), - [anon_sym_o_GT_GT] = ACTIONS(1700), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1700), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1700), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1700), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1700), - [anon_sym_POUND] = ACTIONS(245), - }, - [1272] = { - [sym__val_range] = STATE(7582), - [sym__value] = STATE(3007), - [sym_val_nothing] = STATE(2984), - [sym_val_bool] = STATE(2934), - [sym_val_variable] = STATE(2984), - [sym_val_number] = STATE(2984), - [sym__val_number_decimal] = STATE(2579), - [sym__val_number] = STATE(2975), - [sym_val_duration] = STATE(2984), - [sym_val_filesize] = STATE(2984), - [sym_val_binary] = STATE(2984), - [sym_val_string] = STATE(2984), - [sym__raw_str] = STATE(2978), - [sym__str_double_quotes] = STATE(2978), - [sym_val_interpolated] = STATE(2984), - [sym__inter_single_quotes] = STATE(2976), - [sym__inter_double_quotes] = STATE(2979), - [sym_val_list] = STATE(2984), - [sym_val_record] = STATE(2984), - [sym_val_table] = STATE(2984), - [sym_val_closure] = STATE(2984), - [sym_unquoted] = STATE(3036), - [sym__unquoted_anonymous_prefix] = STATE(7595), - [sym_comment] = STATE(1272), - [anon_sym_LBRACK] = ACTIONS(4085), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym_DOLLAR] = ACTIONS(4089), - [anon_sym_LBRACE] = ACTIONS(4091), - [anon_sym_DOT_DOT] = ACTIONS(4093), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4095), - [anon_sym_DOT_DOT_LT] = ACTIONS(4095), - [anon_sym_null] = ACTIONS(4097), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [aux_sym__val_number_decimal_token1] = ACTIONS(4101), - [aux_sym__val_number_decimal_token2] = ACTIONS(4103), - [aux_sym__val_number_decimal_token3] = ACTIONS(4105), - [aux_sym__val_number_decimal_token4] = ACTIONS(4107), - [aux_sym__val_number_token1] = ACTIONS(4109), - [aux_sym__val_number_token2] = ACTIONS(4109), - [aux_sym__val_number_token3] = ACTIONS(4109), - [aux_sym__val_number_token4] = ACTIONS(4111), - [aux_sym__val_number_token5] = ACTIONS(4111), - [aux_sym__val_number_token6] = ACTIONS(4111), - [anon_sym_0b] = ACTIONS(4113), - [anon_sym_0o] = ACTIONS(4115), - [anon_sym_0x] = ACTIONS(4115), - [sym_val_date] = ACTIONS(4117), - [anon_sym_DQUOTE] = ACTIONS(4119), - [sym__str_single_quotes] = ACTIONS(4121), - [sym__str_back_ticks] = ACTIONS(4121), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4123), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4125), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(4127), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(4129), - }, - [1273] = { - [sym_cell_path] = STATE(1483), - [sym_path] = STATE(1450), - [sym_comment] = STATE(1273), - [aux_sym_cell_path_repeat1] = STATE(1340), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1713), - [anon_sym_in2] = ACTIONS(1713), - [anon_sym_if] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_EQ_GT] = ACTIONS(1713), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1713), - [anon_sym_xor2] = ACTIONS(1713), - [anon_sym_or2] = ACTIONS(1713), - [anon_sym_not_DASHin2] = ACTIONS(1713), - [anon_sym_has2] = ACTIONS(1713), - [anon_sym_not_DASHhas2] = ACTIONS(1713), - [anon_sym_starts_DASHwith2] = ACTIONS(1713), - [anon_sym_ends_DASHwith2] = ACTIONS(1713), - [anon_sym_EQ_EQ2] = ACTIONS(1713), - [anon_sym_BANG_EQ2] = ACTIONS(1713), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1713), - [anon_sym_GT_EQ2] = ACTIONS(1713), - [anon_sym_EQ_TILDE2] = ACTIONS(1713), - [anon_sym_BANG_TILDE2] = ACTIONS(1713), - [anon_sym_STAR_STAR2] = ACTIONS(1713), - [anon_sym_PLUS_PLUS2] = ACTIONS(1713), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1713), - [anon_sym_SLASH_SLASH2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1713), - [anon_sym_bit_DASHshr2] = ACTIONS(1713), - [anon_sym_bit_DASHand2] = ACTIONS(1713), - [anon_sym_bit_DASHxor2] = ACTIONS(1713), - [anon_sym_bit_DASHor2] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [anon_sym_COLON2] = ACTIONS(1713), - [anon_sym_DOT2] = ACTIONS(4203), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(245), - }, - [1274] = { - [sym_comment] = STATE(1274), - [sym__newline] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1540), - [anon_sym_err_GT_PIPE] = ACTIONS(1540), - [anon_sym_out_GT_PIPE] = ACTIONS(1540), - [anon_sym_e_GT_PIPE] = ACTIONS(1540), - [anon_sym_o_GT_PIPE] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_RPAREN] = ACTIONS(1540), - [anon_sym_DOLLAR] = ACTIONS(1538), - [anon_sym_DASH_DASH] = ACTIONS(1540), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_LBRACE] = ACTIONS(1540), - [anon_sym_RBRACE] = ACTIONS(1540), - [anon_sym_DOT_DOT] = ACTIONS(1538), - [anon_sym_LPAREN2] = ACTIONS(1540), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [aux_sym__immediate_decimal_token2] = ACTIONS(4205), - [anon_sym_null] = ACTIONS(1540), - [anon_sym_true] = ACTIONS(1540), - [anon_sym_false] = ACTIONS(1540), - [aux_sym__val_number_decimal_token1] = ACTIONS(1538), - [aux_sym__val_number_decimal_token2] = ACTIONS(1540), - [aux_sym__val_number_decimal_token3] = ACTIONS(1540), - [aux_sym__val_number_decimal_token4] = ACTIONS(1540), - [aux_sym__val_number_token1] = ACTIONS(1540), - [aux_sym__val_number_token2] = ACTIONS(1540), - [aux_sym__val_number_token3] = ACTIONS(1540), - [aux_sym__val_number_token4] = ACTIONS(1540), - [aux_sym__val_number_token5] = ACTIONS(1540), - [aux_sym__val_number_token6] = ACTIONS(1540), - [anon_sym_0b] = ACTIONS(1538), - [sym_filesize_unit] = ACTIONS(1540), - [sym_duration_unit] = ACTIONS(1540), - [anon_sym_0o] = ACTIONS(1538), - [anon_sym_0x] = ACTIONS(1538), - [sym_val_date] = ACTIONS(1540), - [anon_sym_DQUOTE] = ACTIONS(1540), - [sym__str_single_quotes] = ACTIONS(1540), - [sym__str_back_ticks] = ACTIONS(1540), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1540), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1540), - [anon_sym_err_GT] = ACTIONS(1538), - [anon_sym_out_GT] = ACTIONS(1538), - [anon_sym_e_GT] = ACTIONS(1538), - [anon_sym_o_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT] = ACTIONS(1538), - [anon_sym_err_GT_GT] = ACTIONS(1540), - [anon_sym_out_GT_GT] = ACTIONS(1540), - [anon_sym_e_GT_GT] = ACTIONS(1540), - [anon_sym_o_GT_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1540), - [aux_sym_unquoted_token1] = ACTIONS(1538), - [aux_sym_unquoted_token2] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1540), - }, - [1275] = { - [sym__val_range] = STATE(7597), - [sym__value] = STATE(5300), - [sym_val_nothing] = STATE(4332), - [sym_val_bool] = STATE(5787), - [sym_val_variable] = STATE(4332), - [sym_val_number] = STATE(4332), - [sym__val_number_decimal] = STATE(5288), - [sym__val_number] = STATE(4342), - [sym_val_duration] = STATE(4332), - [sym_val_filesize] = STATE(4332), - [sym_val_binary] = STATE(4332), - [sym_val_string] = STATE(4332), - [sym__raw_str] = STATE(5633), - [sym__str_double_quotes] = STATE(5633), - [sym_val_interpolated] = STATE(4332), - [sym__inter_single_quotes] = STATE(5108), - [sym__inter_double_quotes] = STATE(4992), - [sym_val_list] = STATE(4332), - [sym_val_record] = STATE(4332), - [sym_val_table] = STATE(4332), - [sym_val_closure] = STATE(4332), - [sym_unquoted] = STATE(5276), - [sym__unquoted_anonymous_prefix] = STATE(7909), - [sym_comment] = STATE(1275), - [anon_sym_LBRACK] = ACTIONS(4163), - [anon_sym_LPAREN] = ACTIONS(4133), - [anon_sym_DOLLAR] = ACTIONS(4165), - [anon_sym_LBRACE] = ACTIONS(4167), - [anon_sym_DOT_DOT] = ACTIONS(4169), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4171), - [anon_sym_DOT_DOT_LT] = ACTIONS(4171), - [anon_sym_null] = ACTIONS(4143), - [anon_sym_true] = ACTIONS(4145), - [anon_sym_false] = ACTIONS(4145), - [aux_sym__val_number_decimal_token1] = ACTIONS(4173), - [aux_sym__val_number_decimal_token2] = ACTIONS(4175), - [aux_sym__val_number_decimal_token3] = ACTIONS(4177), - [aux_sym__val_number_decimal_token4] = ACTIONS(4179), - [aux_sym__val_number_token1] = ACTIONS(3675), - [aux_sym__val_number_token2] = ACTIONS(3675), - [aux_sym__val_number_token3] = ACTIONS(3675), - [aux_sym__val_number_token4] = ACTIONS(4181), - [aux_sym__val_number_token5] = ACTIONS(4181), - [aux_sym__val_number_token6] = ACTIONS(4181), - [anon_sym_0b] = ACTIONS(3679), - [anon_sym_0o] = ACTIONS(3681), - [anon_sym_0x] = ACTIONS(3681), - [sym_val_date] = ACTIONS(4157), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3689), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3691), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(4187), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(4189), - }, - [1276] = { - [sym__val_range] = STATE(7859), - [sym__value] = STATE(2056), - [sym_val_nothing] = STATE(2003), - [sym_val_bool] = STATE(1927), - [sym_val_variable] = STATE(2003), - [sym_val_number] = STATE(2003), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(2005), - [sym_val_duration] = STATE(2003), - [sym_val_filesize] = STATE(2003), - [sym_val_binary] = STATE(2003), - [sym_val_string] = STATE(2003), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2003), - [sym__inter_single_quotes] = STATE(2112), - [sym__inter_double_quotes] = STATE(2113), - [sym_val_list] = STATE(2003), - [sym_val_record] = STATE(2003), - [sym_val_table] = STATE(2003), - [sym_val_closure] = STATE(2003), - [sym_unquoted] = STATE(2057), - [sym__unquoted_anonymous_prefix] = STATE(7790), - [sym_comment] = STATE(1276), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_LPAREN] = ACTIONS(4207), - [anon_sym_DOLLAR] = ACTIONS(4209), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DOT_DOT] = ACTIONS(4211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4213), - [anon_sym_DOT_DOT_LT] = ACTIONS(4213), - [anon_sym_null] = ACTIONS(4215), - [anon_sym_true] = ACTIONS(4217), - [anon_sym_false] = ACTIONS(4217), - [aux_sym__val_number_decimal_token1] = ACTIONS(4219), - [aux_sym__val_number_decimal_token2] = ACTIONS(4221), - [aux_sym__val_number_decimal_token3] = ACTIONS(4223), - [aux_sym__val_number_decimal_token4] = ACTIONS(4225), - [aux_sym__val_number_token1] = ACTIONS(2967), - [aux_sym__val_number_token2] = ACTIONS(2967), - [aux_sym__val_number_token3] = ACTIONS(2967), - [aux_sym__val_number_token4] = ACTIONS(4227), - [aux_sym__val_number_token5] = ACTIONS(4227), - [aux_sym__val_number_token6] = ACTIONS(4227), - [anon_sym_0b] = ACTIONS(2971), - [anon_sym_0o] = ACTIONS(2973), - [anon_sym_0x] = ACTIONS(2973), - [sym_val_date] = ACTIONS(4229), - [anon_sym_DQUOTE] = ACTIONS(2977), - [sym__str_single_quotes] = ACTIONS(2979), - [sym__str_back_ticks] = ACTIONS(2979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2981), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2983), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(4231), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2987), - }, - [1277] = { - [sym__val_range] = STATE(7723), - [sym__value] = STATE(5342), - [sym_val_nothing] = STATE(4332), - [sym_val_bool] = STATE(5787), - [sym_val_variable] = STATE(4332), - [sym_val_number] = STATE(4332), - [sym__val_number_decimal] = STATE(5315), - [sym__val_number] = STATE(4342), - [sym_val_duration] = STATE(4332), - [sym_val_filesize] = STATE(4332), - [sym_val_binary] = STATE(4332), - [sym_val_string] = STATE(4332), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(4332), - [sym__inter_single_quotes] = STATE(5242), - [sym__inter_double_quotes] = STATE(5247), - [sym_val_list] = STATE(4332), - [sym_val_record] = STATE(4332), - [sym_val_table] = STATE(4332), - [sym_val_closure] = STATE(4332), - [sym_unquoted] = STATE(5214), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1277), - [anon_sym_LBRACK] = ACTIONS(4131), - [anon_sym_LPAREN] = ACTIONS(4133), - [anon_sym_DOLLAR] = ACTIONS(4135), - [anon_sym_LBRACE] = ACTIONS(4137), - [anon_sym_DOT_DOT] = ACTIONS(4139), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4141), - [anon_sym_DOT_DOT_LT] = ACTIONS(4141), - [anon_sym_null] = ACTIONS(4143), - [anon_sym_true] = ACTIONS(4145), - [anon_sym_false] = ACTIONS(4145), - [aux_sym__val_number_decimal_token1] = ACTIONS(4147), - [aux_sym__val_number_decimal_token2] = ACTIONS(4149), - [aux_sym__val_number_decimal_token3] = ACTIONS(4151), - [aux_sym__val_number_decimal_token4] = ACTIONS(4153), - [aux_sym__val_number_token1] = ACTIONS(3675), - [aux_sym__val_number_token2] = ACTIONS(3675), - [aux_sym__val_number_token3] = ACTIONS(3675), - [aux_sym__val_number_token4] = ACTIONS(4155), - [aux_sym__val_number_token5] = ACTIONS(4155), - [aux_sym__val_number_token6] = ACTIONS(4155), - [anon_sym_0b] = ACTIONS(3679), - [anon_sym_0o] = ACTIONS(3681), - [anon_sym_0x] = ACTIONS(3681), - [sym_val_date] = ACTIONS(4157), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym__str_single_quotes] = ACTIONS(1264), - [sym__str_back_ticks] = ACTIONS(1264), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4159), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4161), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1266), - }, - [1278] = { - [sym__val_range] = STATE(7597), - [sym__value] = STATE(5284), - [sym_val_nothing] = STATE(4332), - [sym_val_bool] = STATE(5787), - [sym_val_variable] = STATE(4332), - [sym_val_number] = STATE(4332), - [sym__val_number_decimal] = STATE(5288), - [sym__val_number] = STATE(4342), - [sym_val_duration] = STATE(4332), - [sym_val_filesize] = STATE(4332), - [sym_val_binary] = STATE(4332), - [sym_val_string] = STATE(4332), - [sym__raw_str] = STATE(5633), - [sym__str_double_quotes] = STATE(5633), - [sym_val_interpolated] = STATE(4332), - [sym__inter_single_quotes] = STATE(5108), - [sym__inter_double_quotes] = STATE(4992), - [sym_val_list] = STATE(4332), - [sym_val_record] = STATE(4332), - [sym_val_table] = STATE(4332), - [sym_val_closure] = STATE(4332), - [sym_unquoted] = STATE(5291), - [sym__unquoted_anonymous_prefix] = STATE(7909), - [sym_comment] = STATE(1278), - [anon_sym_LBRACK] = ACTIONS(4163), - [anon_sym_LPAREN] = ACTIONS(4133), - [anon_sym_DOLLAR] = ACTIONS(4165), - [anon_sym_LBRACE] = ACTIONS(4167), - [anon_sym_DOT_DOT] = ACTIONS(4169), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4171), - [anon_sym_DOT_DOT_LT] = ACTIONS(4171), - [anon_sym_null] = ACTIONS(4143), - [anon_sym_true] = ACTIONS(4145), - [anon_sym_false] = ACTIONS(4145), - [aux_sym__val_number_decimal_token1] = ACTIONS(4173), - [aux_sym__val_number_decimal_token2] = ACTIONS(4175), - [aux_sym__val_number_decimal_token3] = ACTIONS(4177), - [aux_sym__val_number_decimal_token4] = ACTIONS(4179), - [aux_sym__val_number_token1] = ACTIONS(3675), - [aux_sym__val_number_token2] = ACTIONS(3675), - [aux_sym__val_number_token3] = ACTIONS(3675), - [aux_sym__val_number_token4] = ACTIONS(4181), - [aux_sym__val_number_token5] = ACTIONS(4181), - [aux_sym__val_number_token6] = ACTIONS(4181), - [anon_sym_0b] = ACTIONS(3679), - [anon_sym_0o] = ACTIONS(3681), - [anon_sym_0x] = ACTIONS(3681), - [sym_val_date] = ACTIONS(4157), - [anon_sym_DQUOTE] = ACTIONS(4183), - [sym__str_single_quotes] = ACTIONS(4185), - [sym__str_back_ticks] = ACTIONS(4185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3689), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3691), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(4187), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(4189), - }, - [1279] = { - [sym__val_range] = STATE(7859), - [sym__value] = STATE(2076), - [sym_val_nothing] = STATE(2003), - [sym_val_bool] = STATE(1927), - [sym_val_variable] = STATE(2003), - [sym_val_number] = STATE(2003), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(2005), - [sym_val_duration] = STATE(2003), - [sym_val_filesize] = STATE(2003), - [sym_val_binary] = STATE(2003), - [sym_val_string] = STATE(2003), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2003), - [sym__inter_single_quotes] = STATE(2112), - [sym__inter_double_quotes] = STATE(2113), - [sym_val_list] = STATE(2003), - [sym_val_record] = STATE(2003), - [sym_val_table] = STATE(2003), - [sym_val_closure] = STATE(2003), - [sym_unquoted] = STATE(2077), - [sym__unquoted_anonymous_prefix] = STATE(7790), - [sym_comment] = STATE(1279), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_LPAREN] = ACTIONS(4207), - [anon_sym_DOLLAR] = ACTIONS(4209), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DOT_DOT] = ACTIONS(4211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4213), - [anon_sym_DOT_DOT_LT] = ACTIONS(4213), - [anon_sym_null] = ACTIONS(4215), - [anon_sym_true] = ACTIONS(4217), - [anon_sym_false] = ACTIONS(4217), - [aux_sym__val_number_decimal_token1] = ACTIONS(4219), - [aux_sym__val_number_decimal_token2] = ACTIONS(4221), - [aux_sym__val_number_decimal_token3] = ACTIONS(4223), - [aux_sym__val_number_decimal_token4] = ACTIONS(4225), - [aux_sym__val_number_token1] = ACTIONS(2967), - [aux_sym__val_number_token2] = ACTIONS(2967), - [aux_sym__val_number_token3] = ACTIONS(2967), - [aux_sym__val_number_token4] = ACTIONS(4227), - [aux_sym__val_number_token5] = ACTIONS(4227), - [aux_sym__val_number_token6] = ACTIONS(4227), - [anon_sym_0b] = ACTIONS(2971), - [anon_sym_0o] = ACTIONS(2973), - [anon_sym_0x] = ACTIONS(2973), - [sym_val_date] = ACTIONS(4229), - [anon_sym_DQUOTE] = ACTIONS(2977), - [sym__str_single_quotes] = ACTIONS(2979), - [sym__str_back_ticks] = ACTIONS(2979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2981), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2983), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(4231), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2987), - }, - [1280] = { - [sym__match_pattern_expression] = STATE(3193), - [sym__match_pattern_value] = STATE(3202), - [sym__match_pattern_list] = STATE(3203), - [sym__match_pattern_rest] = STATE(7785), - [sym__match_pattern_record] = STATE(3204), - [sym_expr_parenthesized] = STATE(2928), - [sym_val_range] = STATE(3202), - [sym__val_range] = STATE(7751), - [sym_val_nothing] = STATE(3205), - [sym_val_bool] = STATE(3126), - [sym_val_variable] = STATE(2931), - [sym_val_number] = STATE(3205), - [sym__val_number_decimal] = STATE(2762), - [sym__val_number] = STATE(3217), - [sym_val_duration] = STATE(3205), - [sym_val_filesize] = STATE(3205), - [sym_val_binary] = STATE(3205), - [sym_val_string] = STATE(3205), - [sym__raw_str] = STATE(3208), - [sym__str_double_quotes] = STATE(3208), - [sym_val_table] = STATE(3205), - [sym__unquoted_in_list] = STATE(3193), - [sym__unquoted_anonymous_prefix] = STATE(7549), - [sym_comment] = STATE(1280), - [aux_sym__match_pattern_list_repeat1] = STATE(1369), - [anon_sym_LBRACK] = ACTIONS(4197), - [anon_sym_RBRACK] = ACTIONS(4233), - [anon_sym_LPAREN] = ACTIONS(3860), - [anon_sym_DOLLAR] = ACTIONS(3862), - [anon_sym_LBRACE] = ACTIONS(3864), - [anon_sym_DOT_DOT] = ACTIONS(4235), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3868), - [anon_sym_DOT_DOT_LT] = ACTIONS(3868), - [anon_sym_null] = ACTIONS(3870), - [anon_sym_true] = ACTIONS(3872), - [anon_sym_false] = ACTIONS(3872), - [aux_sym__val_number_decimal_token1] = ACTIONS(3874), - [aux_sym__val_number_decimal_token2] = ACTIONS(3876), - [aux_sym__val_number_decimal_token3] = ACTIONS(3878), - [aux_sym__val_number_decimal_token4] = ACTIONS(3880), - [aux_sym__val_number_token1] = ACTIONS(3882), - [aux_sym__val_number_token2] = ACTIONS(3882), - [aux_sym__val_number_token3] = ACTIONS(3882), - [aux_sym__val_number_token4] = ACTIONS(3884), - [aux_sym__val_number_token5] = ACTIONS(3884), - [aux_sym__val_number_token6] = ACTIONS(3884), - [anon_sym_0b] = ACTIONS(3886), - [anon_sym_0o] = ACTIONS(3888), - [anon_sym_0x] = ACTIONS(3888), - [sym_val_date] = ACTIONS(3890), - [anon_sym_DQUOTE] = ACTIONS(3892), - [sym__str_single_quotes] = ACTIONS(3894), - [sym__str_back_ticks] = ACTIONS(3894), - [anon_sym_err_GT] = ACTIONS(2648), - [anon_sym_out_GT] = ACTIONS(2648), - [anon_sym_e_GT] = ACTIONS(2648), - [anon_sym_o_GT] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT] = ACTIONS(2648), - [anon_sym_err_GT_GT] = ACTIONS(2650), - [anon_sym_out_GT_GT] = ACTIONS(2650), - [anon_sym_e_GT_GT] = ACTIONS(2650), - [anon_sym_o_GT_GT] = ACTIONS(2650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2650), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3896), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(3898), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [aux_sym__val_number_decimal_token1] = ACTIONS(1499), + [aux_sym__val_number_decimal_token2] = ACTIONS(1501), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1501), + [aux_sym__val_number_token1] = ACTIONS(1501), + [aux_sym__val_number_token2] = ACTIONS(1501), + [aux_sym__val_number_token3] = ACTIONS(1501), + [aux_sym__val_number_token4] = ACTIONS(1501), + [aux_sym__val_number_token5] = ACTIONS(1501), + [aux_sym__val_number_token6] = ACTIONS(1501), + [anon_sym_0b] = ACTIONS(1499), + [sym_filesize_unit] = ACTIONS(1501), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_0o] = ACTIONS(1499), + [anon_sym_0x] = ACTIONS(1499), + [sym_val_date] = ACTIONS(1501), + [anon_sym_DQUOTE] = ACTIONS(1501), + [sym__str_single_quotes] = ACTIONS(1501), + [sym__str_back_ticks] = ACTIONS(1501), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1501), + [anon_sym_out_GT_GT] = ACTIONS(1501), + [anon_sym_e_GT_GT] = ACTIONS(1501), + [anon_sym_o_GT_GT] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1501), + [aux_sym_unquoted_token1] = ACTIONS(1499), + [aux_sym_unquoted_token2] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1501), }, - [1281] = { - [sym__expr_parenthesized_immediate] = STATE(1610), + [1211] = { + [sym__expr_parenthesized_immediate] = STATE(1646), [sym__immediate_decimal] = STATE(1615), - [sym_val_variable] = STATE(1610), - [sym_comment] = STATE(1281), - [ts_builtin_sym_end] = ACTIONS(1482), - [sym__newline] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1482), - [anon_sym_err_GT_PIPE] = ACTIONS(1482), - [anon_sym_out_GT_PIPE] = ACTIONS(1482), - [anon_sym_e_GT_PIPE] = ACTIONS(1482), - [anon_sym_o_GT_PIPE] = ACTIONS(1482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1482), - [anon_sym_LBRACK] = ACTIONS(1482), - [anon_sym_LPAREN] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_DASH2] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(4005), - [anon_sym_DOT] = ACTIONS(4237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1482), - [anon_sym_DOT_DOT_LT] = ACTIONS(1482), - [aux_sym__immediate_decimal_token1] = ACTIONS(4239), - [aux_sym__immediate_decimal_token3] = ACTIONS(4241), - [aux_sym__immediate_decimal_token4] = ACTIONS(4243), - [aux_sym__immediate_decimal_token5] = ACTIONS(4245), - [anon_sym_null] = ACTIONS(1482), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [aux_sym__val_number_decimal_token1] = ACTIONS(1472), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1482), - [aux_sym__val_number_token2] = ACTIONS(1482), - [aux_sym__val_number_token3] = ACTIONS(1482), - [aux_sym__val_number_token4] = ACTIONS(1482), - [aux_sym__val_number_token5] = ACTIONS(1482), - [aux_sym__val_number_token6] = ACTIONS(1482), - [anon_sym_0b] = ACTIONS(1472), - [anon_sym_0o] = ACTIONS(1472), - [anon_sym_0x] = ACTIONS(1472), - [sym_val_date] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym__str_single_quotes] = ACTIONS(1482), - [sym__str_back_ticks] = ACTIONS(1482), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1482), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1482), - [anon_sym_err_GT] = ACTIONS(1472), - [anon_sym_out_GT] = ACTIONS(1472), - [anon_sym_e_GT] = ACTIONS(1472), - [anon_sym_o_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT] = ACTIONS(1472), - [anon_sym_err_GT_GT] = ACTIONS(1482), - [anon_sym_out_GT_GT] = ACTIONS(1482), - [anon_sym_e_GT_GT] = ACTIONS(1482), - [anon_sym_o_GT_GT] = ACTIONS(1482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1482), - [aux_sym_unquoted_token1] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1482), - }, - [1282] = { - [sym__val_range] = STATE(7859), - [sym__value] = STATE(2105), - [sym_val_nothing] = STATE(2003), - [sym_val_bool] = STATE(1927), - [sym_val_variable] = STATE(2003), - [sym_val_number] = STATE(2003), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(2005), - [sym_val_duration] = STATE(2003), - [sym_val_filesize] = STATE(2003), - [sym_val_binary] = STATE(2003), - [sym_val_string] = STATE(2003), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2003), - [sym__inter_single_quotes] = STATE(2112), - [sym__inter_double_quotes] = STATE(2113), - [sym_val_list] = STATE(2003), - [sym_val_record] = STATE(2003), - [sym_val_table] = STATE(2003), - [sym_val_closure] = STATE(2003), - [sym_unquoted] = STATE(2107), - [sym__unquoted_anonymous_prefix] = STATE(7790), - [sym_comment] = STATE(1282), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_LPAREN] = ACTIONS(4207), - [anon_sym_DOLLAR] = ACTIONS(4209), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DOT_DOT] = ACTIONS(4211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4213), - [anon_sym_DOT_DOT_LT] = ACTIONS(4213), - [anon_sym_null] = ACTIONS(4215), - [anon_sym_true] = ACTIONS(4217), - [anon_sym_false] = ACTIONS(4217), - [aux_sym__val_number_decimal_token1] = ACTIONS(4219), - [aux_sym__val_number_decimal_token2] = ACTIONS(4221), - [aux_sym__val_number_decimal_token3] = ACTIONS(4223), - [aux_sym__val_number_decimal_token4] = ACTIONS(4225), - [aux_sym__val_number_token1] = ACTIONS(2967), - [aux_sym__val_number_token2] = ACTIONS(2967), - [aux_sym__val_number_token3] = ACTIONS(2967), - [aux_sym__val_number_token4] = ACTIONS(4227), - [aux_sym__val_number_token5] = ACTIONS(4227), - [aux_sym__val_number_token6] = ACTIONS(4227), - [anon_sym_0b] = ACTIONS(2971), - [anon_sym_0o] = ACTIONS(2973), - [anon_sym_0x] = ACTIONS(2973), - [sym_val_date] = ACTIONS(4229), - [anon_sym_DQUOTE] = ACTIONS(2977), - [sym__str_single_quotes] = ACTIONS(2979), - [sym__str_back_ticks] = ACTIONS(2979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2981), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2983), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(4231), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2987), - }, - [1283] = { - [sym__val_range] = STATE(7612), - [sym__value] = STATE(3481), - [sym_val_nothing] = STATE(3497), - [sym_val_bool] = STATE(3411), - [sym_val_variable] = STATE(3497), - [sym_val_number] = STATE(3497), - [sym__val_number_decimal] = STATE(3139), - [sym__val_number] = STATE(3515), - [sym_val_duration] = STATE(3497), - [sym_val_filesize] = STATE(3497), - [sym_val_binary] = STATE(3497), - [sym_val_string] = STATE(3497), - [sym__raw_str] = STATE(3486), - [sym__str_double_quotes] = STATE(3486), - [sym_val_interpolated] = STATE(3497), - [sym__inter_single_quotes] = STATE(3508), - [sym__inter_double_quotes] = STATE(3517), - [sym_val_list] = STATE(3497), - [sym_val_record] = STATE(3497), - [sym_val_table] = STATE(3497), - [sym_val_closure] = STATE(3497), - [sym_unquoted] = STATE(3482), - [sym__unquoted_anonymous_prefix] = STATE(7571), - [sym_comment] = STATE(1283), - [anon_sym_LBRACK] = ACTIONS(4247), - [anon_sym_LPAREN] = ACTIONS(4249), - [anon_sym_DOLLAR] = ACTIONS(4251), - [anon_sym_LBRACE] = ACTIONS(4253), - [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(4271), - [aux_sym__val_number_token2] = ACTIONS(4271), - [aux_sym__val_number_token3] = ACTIONS(4271), - [aux_sym__val_number_token4] = ACTIONS(4273), - [aux_sym__val_number_token5] = ACTIONS(4273), - [aux_sym__val_number_token6] = ACTIONS(4273), - [anon_sym_0b] = ACTIONS(4275), - [anon_sym_0o] = ACTIONS(4277), - [anon_sym_0x] = ACTIONS(4277), - [sym_val_date] = ACTIONS(4279), - [anon_sym_DQUOTE] = ACTIONS(4281), - [sym__str_single_quotes] = ACTIONS(4283), - [sym__str_back_ticks] = ACTIONS(4283), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4285), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4287), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(4291), - }, - [1284] = { - [sym__val_range] = STATE(7859), - [sym__value] = STATE(2133), - [sym_val_nothing] = STATE(2003), - [sym_val_bool] = STATE(1927), - [sym_val_variable] = STATE(2003), - [sym_val_number] = STATE(2003), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(2005), - [sym_val_duration] = STATE(2003), - [sym_val_filesize] = STATE(2003), - [sym_val_binary] = STATE(2003), - [sym_val_string] = STATE(2003), - [sym__raw_str] = STATE(2135), - [sym__str_double_quotes] = STATE(2135), - [sym_val_interpolated] = STATE(2003), - [sym__inter_single_quotes] = STATE(2112), - [sym__inter_double_quotes] = STATE(2113), - [sym_val_list] = STATE(2003), - [sym_val_record] = STATE(2003), - [sym_val_table] = STATE(2003), - [sym_val_closure] = STATE(2003), - [sym_unquoted] = STATE(2134), - [sym__unquoted_anonymous_prefix] = STATE(7790), - [sym_comment] = STATE(1284), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_LPAREN] = ACTIONS(4207), - [anon_sym_DOLLAR] = ACTIONS(4209), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_DOT_DOT] = ACTIONS(4211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4213), - [anon_sym_DOT_DOT_LT] = ACTIONS(4213), - [anon_sym_null] = ACTIONS(4215), - [anon_sym_true] = ACTIONS(4217), - [anon_sym_false] = ACTIONS(4217), - [aux_sym__val_number_decimal_token1] = ACTIONS(4219), - [aux_sym__val_number_decimal_token2] = ACTIONS(4221), - [aux_sym__val_number_decimal_token3] = ACTIONS(4223), - [aux_sym__val_number_decimal_token4] = ACTIONS(4225), - [aux_sym__val_number_token1] = ACTIONS(2967), - [aux_sym__val_number_token2] = ACTIONS(2967), - [aux_sym__val_number_token3] = ACTIONS(2967), - [aux_sym__val_number_token4] = ACTIONS(4227), - [aux_sym__val_number_token5] = ACTIONS(4227), - [aux_sym__val_number_token6] = ACTIONS(4227), - [anon_sym_0b] = ACTIONS(2971), - [anon_sym_0o] = ACTIONS(2973), - [anon_sym_0x] = ACTIONS(2973), - [sym_val_date] = ACTIONS(4229), - [anon_sym_DQUOTE] = ACTIONS(2977), - [sym__str_single_quotes] = ACTIONS(2979), - [sym__str_back_ticks] = ACTIONS(2979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2981), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2983), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(4231), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2987), - }, - [1285] = { - [sym__val_range] = STATE(7612), - [sym__value] = STATE(3451), - [sym_val_nothing] = STATE(3497), - [sym_val_bool] = STATE(3411), - [sym_val_variable] = STATE(3497), - [sym_val_number] = STATE(3497), - [sym__val_number_decimal] = STATE(3139), - [sym__val_number] = STATE(3515), - [sym_val_duration] = STATE(3497), - [sym_val_filesize] = STATE(3497), - [sym_val_binary] = STATE(3497), - [sym_val_string] = STATE(3497), - [sym__raw_str] = STATE(3486), - [sym__str_double_quotes] = STATE(3486), - [sym_val_interpolated] = STATE(3497), - [sym__inter_single_quotes] = STATE(3508), - [sym__inter_double_quotes] = STATE(3517), - [sym_val_list] = STATE(3497), - [sym_val_record] = STATE(3497), - [sym_val_table] = STATE(3497), - [sym_val_closure] = STATE(3497), - [sym_unquoted] = STATE(3452), - [sym__unquoted_anonymous_prefix] = STATE(7571), - [sym_comment] = STATE(1285), - [anon_sym_LBRACK] = ACTIONS(4247), - [anon_sym_LPAREN] = ACTIONS(4249), - [anon_sym_DOLLAR] = ACTIONS(4251), - [anon_sym_LBRACE] = ACTIONS(4253), - [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(4271), - [aux_sym__val_number_token2] = ACTIONS(4271), - [aux_sym__val_number_token3] = ACTIONS(4271), - [aux_sym__val_number_token4] = ACTIONS(4273), - [aux_sym__val_number_token5] = ACTIONS(4273), - [aux_sym__val_number_token6] = ACTIONS(4273), - [anon_sym_0b] = ACTIONS(4275), - [anon_sym_0o] = ACTIONS(4277), - [anon_sym_0x] = ACTIONS(4277), - [sym_val_date] = ACTIONS(4279), - [anon_sym_DQUOTE] = ACTIONS(4281), - [sym__str_single_quotes] = ACTIONS(4283), - [sym__str_back_ticks] = ACTIONS(4283), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4285), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4287), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(4291), - }, - [1286] = { - [sym_comment] = STATE(1286), - [anon_sym_EQ] = ACTIONS(970), - [anon_sym_PLUS_EQ] = ACTIONS(972), - [anon_sym_DASH_EQ] = ACTIONS(972), - [anon_sym_STAR_EQ] = ACTIONS(972), - [anon_sym_SLASH_EQ] = ACTIONS(972), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(972), - [sym__newline] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_err_GT_PIPE] = ACTIONS(972), - [anon_sym_out_GT_PIPE] = ACTIONS(972), - [anon_sym_e_GT_PIPE] = ACTIONS(972), - [anon_sym_o_GT_PIPE] = ACTIONS(972), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(972), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(972), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(972), - [anon_sym_GT2] = ACTIONS(970), - [anon_sym_DASH2] = ACTIONS(970), - [anon_sym_in2] = ACTIONS(972), - [anon_sym_RBRACE] = ACTIONS(972), - [anon_sym_STAR2] = ACTIONS(970), - [anon_sym_and2] = ACTIONS(972), - [anon_sym_xor2] = ACTIONS(972), - [anon_sym_or2] = ACTIONS(972), - [anon_sym_not_DASHin2] = ACTIONS(972), - [anon_sym_has2] = ACTIONS(972), - [anon_sym_not_DASHhas2] = ACTIONS(972), - [anon_sym_starts_DASHwith2] = ACTIONS(972), - [anon_sym_ends_DASHwith2] = ACTIONS(972), - [anon_sym_EQ_EQ2] = ACTIONS(972), - [anon_sym_BANG_EQ2] = ACTIONS(972), - [anon_sym_LT2] = ACTIONS(970), - [anon_sym_LT_EQ2] = ACTIONS(972), - [anon_sym_GT_EQ2] = ACTIONS(972), - [anon_sym_EQ_TILDE2] = ACTIONS(972), - [anon_sym_BANG_TILDE2] = ACTIONS(972), - [anon_sym_STAR_STAR2] = ACTIONS(972), - [anon_sym_PLUS_PLUS2] = ACTIONS(970), - [anon_sym_SLASH2] = ACTIONS(970), - [anon_sym_mod2] = ACTIONS(972), - [anon_sym_SLASH_SLASH2] = ACTIONS(972), - [anon_sym_PLUS2] = ACTIONS(970), - [anon_sym_bit_DASHshl2] = ACTIONS(972), - [anon_sym_bit_DASHshr2] = ACTIONS(972), - [anon_sym_bit_DASHand2] = ACTIONS(972), - [anon_sym_bit_DASHxor2] = ACTIONS(972), - [anon_sym_bit_DASHor2] = ACTIONS(972), - [anon_sym_DOT_DOT2] = ACTIONS(970), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(972), - [anon_sym_DOT_DOT_LT2] = ACTIONS(972), - [anon_sym_COLON2] = ACTIONS(972), - [anon_sym_DOT2] = ACTIONS(970), - [anon_sym_err_GT] = ACTIONS(970), - [anon_sym_out_GT] = ACTIONS(970), - [anon_sym_e_GT] = ACTIONS(970), - [anon_sym_o_GT] = ACTIONS(970), - [anon_sym_err_PLUSout_GT] = ACTIONS(970), - [anon_sym_out_PLUSerr_GT] = ACTIONS(970), - [anon_sym_o_PLUSe_GT] = ACTIONS(970), - [anon_sym_e_PLUSo_GT] = ACTIONS(970), - [anon_sym_err_GT_GT] = ACTIONS(972), - [anon_sym_out_GT_GT] = ACTIONS(972), - [anon_sym_e_GT_GT] = ACTIONS(972), - [anon_sym_o_GT_GT] = ACTIONS(972), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(972), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(972), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(245), - }, - [1287] = { - [sym__expr_parenthesized_immediate] = STATE(2033), - [sym__immediate_decimal] = STATE(1702), - [sym_val_variable] = STATE(2033), - [sym_comment] = STATE(1287), - [ts_builtin_sym_end] = ACTIONS(1468), - [sym__newline] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_err_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_GT_PIPE] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_LBRACK] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1466), - [anon_sym_DOLLAR] = ACTIONS(4209), - [anon_sym_DASH_DASH] = ACTIONS(1468), - [anon_sym_DASH2] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_DOT_DOT] = ACTIONS(1466), - [anon_sym_LPAREN2] = ACTIONS(4293), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT] = ACTIONS(1468), - [aux_sym__immediate_decimal_token1] = ACTIONS(4295), - [aux_sym__immediate_decimal_token3] = ACTIONS(4297), - [aux_sym__immediate_decimal_token4] = ACTIONS(4299), - [aux_sym__immediate_decimal_token5] = ACTIONS(4301), - [anon_sym_null] = ACTIONS(1468), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [aux_sym__val_number_decimal_token1] = ACTIONS(1466), - [aux_sym__val_number_decimal_token2] = ACTIONS(1466), - [aux_sym__val_number_decimal_token3] = ACTIONS(1466), - [aux_sym__val_number_decimal_token4] = ACTIONS(1466), - [aux_sym__val_number_token1] = ACTIONS(1468), - [aux_sym__val_number_token2] = ACTIONS(1468), - [aux_sym__val_number_token3] = ACTIONS(1468), - [aux_sym__val_number_token4] = ACTIONS(1468), - [aux_sym__val_number_token5] = ACTIONS(1468), - [aux_sym__val_number_token6] = ACTIONS(1468), - [anon_sym_0b] = ACTIONS(1466), - [anon_sym_0o] = ACTIONS(1466), - [anon_sym_0x] = ACTIONS(1466), - [sym_val_date] = ACTIONS(1468), - [anon_sym_DQUOTE] = ACTIONS(1468), - [sym__str_single_quotes] = ACTIONS(1468), - [sym__str_back_ticks] = ACTIONS(1468), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1468), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1468), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1468), - [anon_sym_out_GT_GT] = ACTIONS(1468), - [anon_sym_e_GT_GT] = ACTIONS(1468), - [anon_sym_o_GT_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), - [aux_sym_unquoted_token1] = ACTIONS(1466), - [aux_sym_unquoted_token2] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1468), - }, - [1288] = { - [sym__val_range] = STATE(7612), - [sym__value] = STATE(3505), - [sym_val_nothing] = STATE(3497), - [sym_val_bool] = STATE(3411), - [sym_val_variable] = STATE(3497), - [sym_val_number] = STATE(3497), - [sym__val_number_decimal] = STATE(3139), - [sym__val_number] = STATE(3515), - [sym_val_duration] = STATE(3497), - [sym_val_filesize] = STATE(3497), - [sym_val_binary] = STATE(3497), - [sym_val_string] = STATE(3497), - [sym__raw_str] = STATE(3486), - [sym__str_double_quotes] = STATE(3486), - [sym_val_interpolated] = STATE(3497), - [sym__inter_single_quotes] = STATE(3508), - [sym__inter_double_quotes] = STATE(3517), - [sym_val_list] = STATE(3497), - [sym_val_record] = STATE(3497), - [sym_val_table] = STATE(3497), - [sym_val_closure] = STATE(3497), - [sym_unquoted] = STATE(3506), - [sym__unquoted_anonymous_prefix] = STATE(7571), - [sym_comment] = STATE(1288), - [anon_sym_LBRACK] = ACTIONS(4247), - [anon_sym_LPAREN] = ACTIONS(4249), - [anon_sym_DOLLAR] = ACTIONS(4251), - [anon_sym_LBRACE] = ACTIONS(4253), - [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(4271), - [aux_sym__val_number_token2] = ACTIONS(4271), - [aux_sym__val_number_token3] = ACTIONS(4271), - [aux_sym__val_number_token4] = ACTIONS(4273), - [aux_sym__val_number_token5] = ACTIONS(4273), - [aux_sym__val_number_token6] = ACTIONS(4273), - [anon_sym_0b] = ACTIONS(4275), - [anon_sym_0o] = ACTIONS(4277), - [anon_sym_0x] = ACTIONS(4277), - [sym_val_date] = ACTIONS(4279), - [anon_sym_DQUOTE] = ACTIONS(4281), - [sym__str_single_quotes] = ACTIONS(4283), - [sym__str_back_ticks] = ACTIONS(4283), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4285), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4287), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(4291), - }, - [1289] = { - [sym_comment] = STATE(1289), - [ts_builtin_sym_end] = ACTIONS(1494), - [sym__newline] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_PIPE] = ACTIONS(1494), - [anon_sym_err_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_GT_PIPE] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_DOLLAR] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_DOT_DOT] = ACTIONS(1492), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT] = ACTIONS(4303), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1492), - [anon_sym_DOT_DOT_LT] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(4305), - [anon_sym_null] = ACTIONS(1494), - [anon_sym_true] = ACTIONS(1494), - [anon_sym_false] = ACTIONS(1494), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1494), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(1494), - [aux_sym__val_number_token2] = ACTIONS(1494), - [aux_sym__val_number_token3] = ACTIONS(1494), - [aux_sym__val_number_token4] = ACTIONS(1494), - [aux_sym__val_number_token5] = ACTIONS(1494), - [aux_sym__val_number_token6] = ACTIONS(1494), - [anon_sym_0b] = ACTIONS(1492), - [sym_filesize_unit] = ACTIONS(1494), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_0o] = ACTIONS(1492), - [anon_sym_0x] = ACTIONS(1492), - [sym_val_date] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym__str_single_quotes] = ACTIONS(1494), - [sym__str_back_ticks] = ACTIONS(1494), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1494), - [anon_sym_out_GT_GT] = ACTIONS(1494), - [anon_sym_e_GT_GT] = ACTIONS(1494), - [anon_sym_o_GT_GT] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1494), - [aux_sym_unquoted_token1] = ACTIONS(1492), - [aux_sym_unquoted_token2] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1494), - }, - [1290] = { - [sym__val_range] = STATE(7612), - [sym__value] = STATE(3447), - [sym_val_nothing] = STATE(3497), - [sym_val_bool] = STATE(3411), - [sym_val_variable] = STATE(3497), - [sym_val_number] = STATE(3497), - [sym__val_number_decimal] = STATE(3139), - [sym__val_number] = STATE(3515), - [sym_val_duration] = STATE(3497), - [sym_val_filesize] = STATE(3497), - [sym_val_binary] = STATE(3497), - [sym_val_string] = STATE(3497), - [sym__raw_str] = STATE(3486), - [sym__str_double_quotes] = STATE(3486), - [sym_val_interpolated] = STATE(3497), - [sym__inter_single_quotes] = STATE(3508), - [sym__inter_double_quotes] = STATE(3517), - [sym_val_list] = STATE(3497), - [sym_val_record] = STATE(3497), - [sym_val_table] = STATE(3497), - [sym_val_closure] = STATE(3497), - [sym_unquoted] = STATE(3514), - [sym__unquoted_anonymous_prefix] = STATE(7571), - [sym_comment] = STATE(1290), - [anon_sym_LBRACK] = ACTIONS(4247), - [anon_sym_LPAREN] = ACTIONS(4249), - [anon_sym_DOLLAR] = ACTIONS(4251), - [anon_sym_LBRACE] = ACTIONS(4253), - [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(4271), - [aux_sym__val_number_token2] = ACTIONS(4271), - [aux_sym__val_number_token3] = ACTIONS(4271), - [aux_sym__val_number_token4] = ACTIONS(4273), - [aux_sym__val_number_token5] = ACTIONS(4273), - [aux_sym__val_number_token6] = ACTIONS(4273), - [anon_sym_0b] = ACTIONS(4275), - [anon_sym_0o] = ACTIONS(4277), - [anon_sym_0x] = ACTIONS(4277), - [sym_val_date] = ACTIONS(4279), - [anon_sym_DQUOTE] = ACTIONS(4281), - [sym__str_single_quotes] = ACTIONS(4283), - [sym__str_back_ticks] = ACTIONS(4283), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4285), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4287), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(4289), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(4291), - }, - [1291] = { - [sym__val_range] = STATE(7907), - [sym__value] = STATE(4799), - [sym_val_nothing] = STATE(4851), - [sym_val_bool] = STATE(4490), - [sym_val_variable] = STATE(4851), - [sym_val_number] = STATE(4851), - [sym__val_number_decimal] = STATE(4059), - [sym__val_number] = STATE(4856), - [sym_val_duration] = STATE(4851), - [sym_val_filesize] = STATE(4851), - [sym_val_binary] = STATE(4851), - [sym_val_string] = STATE(4851), - [sym__raw_str] = STATE(4093), - [sym__str_double_quotes] = STATE(4093), - [sym_val_interpolated] = STATE(4851), - [sym__inter_single_quotes] = STATE(4857), - [sym__inter_double_quotes] = STATE(4858), - [sym_val_list] = STATE(4851), - [sym_val_record] = STATE(4851), - [sym_val_table] = STATE(4851), - [sym_val_closure] = STATE(4851), - [sym_unquoted] = STATE(4800), - [sym__unquoted_anonymous_prefix] = STATE(7588), - [sym_comment] = STATE(1291), - [anon_sym_LBRACK] = ACTIONS(4041), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_DOLLAR] = ACTIONS(2228), - [anon_sym_LBRACE] = ACTIONS(4045), - [anon_sym_DOT_DOT] = ACTIONS(4047), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4049), - [anon_sym_DOT_DOT_LT] = ACTIONS(4049), - [anon_sym_null] = ACTIONS(4051), - [anon_sym_true] = ACTIONS(4053), - [anon_sym_false] = ACTIONS(4053), - [aux_sym__val_number_decimal_token1] = ACTIONS(2248), - [aux_sym__val_number_decimal_token2] = ACTIONS(4055), - [aux_sym__val_number_decimal_token3] = ACTIONS(4057), - [aux_sym__val_number_decimal_token4] = ACTIONS(4059), - [aux_sym__val_number_token1] = ACTIONS(4061), - [aux_sym__val_number_token2] = ACTIONS(4061), - [aux_sym__val_number_token3] = ACTIONS(4061), - [aux_sym__val_number_token4] = ACTIONS(4063), - [aux_sym__val_number_token5] = ACTIONS(4063), - [aux_sym__val_number_token6] = ACTIONS(4063), - [anon_sym_0b] = ACTIONS(2258), - [anon_sym_0o] = ACTIONS(2260), - [anon_sym_0x] = ACTIONS(2260), - [sym_val_date] = ACTIONS(4065), - [anon_sym_DQUOTE] = ACTIONS(4067), - [sym__str_single_quotes] = ACTIONS(4069), - [sym__str_back_ticks] = ACTIONS(4069), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4071), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4073), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(2276), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2278), - }, - [1292] = { - [sym__val_range] = STATE(7907), - [sym__value] = STATE(4885), - [sym_val_nothing] = STATE(4851), - [sym_val_bool] = STATE(4490), - [sym_val_variable] = STATE(4851), - [sym_val_number] = STATE(4851), - [sym__val_number_decimal] = STATE(4059), - [sym__val_number] = STATE(4856), - [sym_val_duration] = STATE(4851), - [sym_val_filesize] = STATE(4851), - [sym_val_binary] = STATE(4851), - [sym_val_string] = STATE(4851), - [sym__raw_str] = STATE(4093), - [sym__str_double_quotes] = STATE(4093), - [sym_val_interpolated] = STATE(4851), - [sym__inter_single_quotes] = STATE(4857), - [sym__inter_double_quotes] = STATE(4858), - [sym_val_list] = STATE(4851), - [sym_val_record] = STATE(4851), - [sym_val_table] = STATE(4851), - [sym_val_closure] = STATE(4851), - [sym_unquoted] = STATE(4886), - [sym__unquoted_anonymous_prefix] = STATE(7588), - [sym_comment] = STATE(1292), - [anon_sym_LBRACK] = ACTIONS(4041), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_DOLLAR] = ACTIONS(2228), - [anon_sym_LBRACE] = ACTIONS(4045), - [anon_sym_DOT_DOT] = ACTIONS(4047), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4049), - [anon_sym_DOT_DOT_LT] = ACTIONS(4049), - [anon_sym_null] = ACTIONS(4051), - [anon_sym_true] = ACTIONS(4053), - [anon_sym_false] = ACTIONS(4053), - [aux_sym__val_number_decimal_token1] = ACTIONS(2248), - [aux_sym__val_number_decimal_token2] = ACTIONS(4055), - [aux_sym__val_number_decimal_token3] = ACTIONS(4057), - [aux_sym__val_number_decimal_token4] = ACTIONS(4059), - [aux_sym__val_number_token1] = ACTIONS(4061), - [aux_sym__val_number_token2] = ACTIONS(4061), - [aux_sym__val_number_token3] = ACTIONS(4061), - [aux_sym__val_number_token4] = ACTIONS(4063), - [aux_sym__val_number_token5] = ACTIONS(4063), - [aux_sym__val_number_token6] = ACTIONS(4063), - [anon_sym_0b] = ACTIONS(2258), - [anon_sym_0o] = ACTIONS(2260), - [anon_sym_0x] = ACTIONS(2260), - [sym_val_date] = ACTIONS(4065), - [anon_sym_DQUOTE] = ACTIONS(4067), - [sym__str_single_quotes] = ACTIONS(4069), - [sym__str_back_ticks] = ACTIONS(4069), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4071), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4073), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(2276), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2278), - }, - [1293] = { - [sym__val_range] = STATE(7563), - [sym__value] = STATE(4680), - [sym_val_nothing] = STATE(4706), - [sym_val_bool] = STATE(6087), - [sym_val_variable] = STATE(4706), - [sym_val_number] = STATE(4706), - [sym__val_number_decimal] = STATE(5390), - [sym__val_number] = STATE(4709), - [sym_val_duration] = STATE(4706), - [sym_val_filesize] = STATE(4706), - [sym_val_binary] = STATE(4706), - [sym_val_string] = STATE(4706), - [sym__raw_str] = STATE(4077), - [sym__str_double_quotes] = STATE(4077), - [sym_val_interpolated] = STATE(4706), - [sym__inter_single_quotes] = STATE(4625), - [sym__inter_double_quotes] = STATE(4629), - [sym_val_list] = STATE(4706), - [sym_val_record] = STATE(4706), - [sym_val_table] = STATE(4706), - [sym_val_closure] = STATE(4706), - [sym_unquoted] = STATE(4681), - [sym__unquoted_anonymous_prefix] = STATE(7644), - [sym_comment] = STATE(1293), - [anon_sym_LBRACK] = ACTIONS(4307), - [anon_sym_LPAREN] = ACTIONS(4309), - [anon_sym_DOLLAR] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(4311), - [anon_sym_DOT_DOT] = ACTIONS(4313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4315), - [anon_sym_DOT_DOT_LT] = ACTIONS(4315), - [anon_sym_null] = ACTIONS(4317), - [anon_sym_true] = ACTIONS(4319), - [anon_sym_false] = ACTIONS(4319), - [aux_sym__val_number_decimal_token1] = ACTIONS(3088), - [aux_sym__val_number_decimal_token2] = ACTIONS(4321), - [aux_sym__val_number_decimal_token3] = ACTIONS(4323), - [aux_sym__val_number_decimal_token4] = ACTIONS(4325), - [aux_sym__val_number_token1] = ACTIONS(4327), - [aux_sym__val_number_token2] = ACTIONS(4327), - [aux_sym__val_number_token3] = ACTIONS(4327), - [aux_sym__val_number_token4] = ACTIONS(4329), - [aux_sym__val_number_token5] = ACTIONS(4329), - [aux_sym__val_number_token6] = ACTIONS(4329), - [anon_sym_0b] = ACTIONS(2164), - [anon_sym_0o] = ACTIONS(2166), - [anon_sym_0x] = ACTIONS(2166), - [sym_val_date] = ACTIONS(4331), - [anon_sym_DQUOTE] = ACTIONS(4333), - [sym__str_single_quotes] = ACTIONS(4335), - [sym__str_back_ticks] = ACTIONS(4335), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4337), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4339), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2186), - }, - [1294] = { - [sym__val_range] = STATE(7907), - [sym__value] = STATE(4896), - [sym_val_nothing] = STATE(4851), - [sym_val_bool] = STATE(4490), - [sym_val_variable] = STATE(4851), - [sym_val_number] = STATE(4851), - [sym__val_number_decimal] = STATE(4059), - [sym__val_number] = STATE(4856), - [sym_val_duration] = STATE(4851), - [sym_val_filesize] = STATE(4851), - [sym_val_binary] = STATE(4851), - [sym_val_string] = STATE(4851), - [sym__raw_str] = STATE(4093), - [sym__str_double_quotes] = STATE(4093), - [sym_val_interpolated] = STATE(4851), - [sym__inter_single_quotes] = STATE(4857), - [sym__inter_double_quotes] = STATE(4858), - [sym_val_list] = STATE(4851), - [sym_val_record] = STATE(4851), - [sym_val_table] = STATE(4851), - [sym_val_closure] = STATE(4851), - [sym_unquoted] = STATE(4897), - [sym__unquoted_anonymous_prefix] = STATE(7588), - [sym_comment] = STATE(1294), - [anon_sym_LBRACK] = ACTIONS(4041), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_DOLLAR] = ACTIONS(2228), - [anon_sym_LBRACE] = ACTIONS(4045), - [anon_sym_DOT_DOT] = ACTIONS(4047), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4049), - [anon_sym_DOT_DOT_LT] = ACTIONS(4049), - [anon_sym_null] = ACTIONS(4051), - [anon_sym_true] = ACTIONS(4053), - [anon_sym_false] = ACTIONS(4053), - [aux_sym__val_number_decimal_token1] = ACTIONS(2248), - [aux_sym__val_number_decimal_token2] = ACTIONS(4055), - [aux_sym__val_number_decimal_token3] = ACTIONS(4057), - [aux_sym__val_number_decimal_token4] = ACTIONS(4059), - [aux_sym__val_number_token1] = ACTIONS(4061), - [aux_sym__val_number_token2] = ACTIONS(4061), - [aux_sym__val_number_token3] = ACTIONS(4061), - [aux_sym__val_number_token4] = ACTIONS(4063), - [aux_sym__val_number_token5] = ACTIONS(4063), - [aux_sym__val_number_token6] = ACTIONS(4063), - [anon_sym_0b] = ACTIONS(2258), - [anon_sym_0o] = ACTIONS(2260), - [anon_sym_0x] = ACTIONS(2260), - [sym_val_date] = ACTIONS(4065), - [anon_sym_DQUOTE] = ACTIONS(4067), - [sym__str_single_quotes] = ACTIONS(4069), - [sym__str_back_ticks] = ACTIONS(4069), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4071), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4073), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(2276), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2278), - }, - [1295] = { - [sym__val_range] = STATE(7563), - [sym__value] = STATE(4688), - [sym_val_nothing] = STATE(4706), - [sym_val_bool] = STATE(6087), - [sym_val_variable] = STATE(4706), - [sym_val_number] = STATE(4706), - [sym__val_number_decimal] = STATE(5390), - [sym__val_number] = STATE(4709), - [sym_val_duration] = STATE(4706), - [sym_val_filesize] = STATE(4706), - [sym_val_binary] = STATE(4706), - [sym_val_string] = STATE(4706), - [sym__raw_str] = STATE(4077), - [sym__str_double_quotes] = STATE(4077), - [sym_val_interpolated] = STATE(4706), - [sym__inter_single_quotes] = STATE(4625), - [sym__inter_double_quotes] = STATE(4629), - [sym_val_list] = STATE(4706), - [sym_val_record] = STATE(4706), - [sym_val_table] = STATE(4706), - [sym_val_closure] = STATE(4706), - [sym_unquoted] = STATE(4689), - [sym__unquoted_anonymous_prefix] = STATE(7644), - [sym_comment] = STATE(1295), - [anon_sym_LBRACK] = ACTIONS(4307), - [anon_sym_LPAREN] = ACTIONS(4309), - [anon_sym_DOLLAR] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(4311), - [anon_sym_DOT_DOT] = ACTIONS(4313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4315), - [anon_sym_DOT_DOT_LT] = ACTIONS(4315), - [anon_sym_null] = ACTIONS(4317), - [anon_sym_true] = ACTIONS(4319), - [anon_sym_false] = ACTIONS(4319), - [aux_sym__val_number_decimal_token1] = ACTIONS(3088), - [aux_sym__val_number_decimal_token2] = ACTIONS(4321), - [aux_sym__val_number_decimal_token3] = ACTIONS(4323), - [aux_sym__val_number_decimal_token4] = ACTIONS(4325), - [aux_sym__val_number_token1] = ACTIONS(4327), - [aux_sym__val_number_token2] = ACTIONS(4327), - [aux_sym__val_number_token3] = ACTIONS(4327), - [aux_sym__val_number_token4] = ACTIONS(4329), - [aux_sym__val_number_token5] = ACTIONS(4329), - [aux_sym__val_number_token6] = ACTIONS(4329), - [anon_sym_0b] = ACTIONS(2164), - [anon_sym_0o] = ACTIONS(2166), - [anon_sym_0x] = ACTIONS(2166), - [sym_val_date] = ACTIONS(4331), - [anon_sym_DQUOTE] = ACTIONS(4333), - [sym__str_single_quotes] = ACTIONS(4335), - [sym__str_back_ticks] = ACTIONS(4335), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4337), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4339), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2186), - }, - [1296] = { - [sym_comment] = STATE(1296), - [sym__newline] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1486), - [anon_sym_err_GT_PIPE] = ACTIONS(1486), - [anon_sym_out_GT_PIPE] = ACTIONS(1486), - [anon_sym_e_GT_PIPE] = ACTIONS(1486), - [anon_sym_o_GT_PIPE] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1486), - [anon_sym_RPAREN] = ACTIONS(1486), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_RBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1484), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1484), - [anon_sym_DOT_DOT_LT] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [aux_sym__immediate_decimal_token1] = ACTIONS(4341), - [aux_sym__immediate_decimal_token2] = ACTIONS(4343), - [anon_sym_null] = ACTIONS(1486), - [anon_sym_true] = ACTIONS(1486), - [anon_sym_false] = ACTIONS(1486), - [aux_sym__val_number_decimal_token1] = ACTIONS(1484), - [aux_sym__val_number_decimal_token2] = ACTIONS(1486), - [aux_sym__val_number_decimal_token3] = ACTIONS(1486), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), - [aux_sym__val_number_token1] = ACTIONS(1486), - [aux_sym__val_number_token2] = ACTIONS(1486), - [aux_sym__val_number_token3] = ACTIONS(1486), - [aux_sym__val_number_token4] = ACTIONS(1486), - [aux_sym__val_number_token5] = ACTIONS(1486), - [aux_sym__val_number_token6] = ACTIONS(1486), - [anon_sym_0b] = ACTIONS(1484), - [sym_filesize_unit] = ACTIONS(1486), - [sym_duration_unit] = ACTIONS(1486), - [anon_sym_0o] = ACTIONS(1484), - [anon_sym_0x] = ACTIONS(1484), - [sym_val_date] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym__str_single_quotes] = ACTIONS(1486), - [sym__str_back_ticks] = ACTIONS(1486), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1486), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1486), - [anon_sym_err_GT] = ACTIONS(1484), - [anon_sym_out_GT] = ACTIONS(1484), - [anon_sym_e_GT] = ACTIONS(1484), - [anon_sym_o_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT] = ACTIONS(1484), - [anon_sym_err_GT_GT] = ACTIONS(1486), - [anon_sym_out_GT_GT] = ACTIONS(1486), - [anon_sym_e_GT_GT] = ACTIONS(1486), - [anon_sym_o_GT_GT] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1486), - [aux_sym_unquoted_token1] = ACTIONS(1484), - [aux_sym_unquoted_token2] = ACTIONS(1484), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1486), - }, - [1297] = { - [sym__val_range] = STATE(7563), - [sym__value] = STATE(4680), - [sym_val_nothing] = STATE(4706), - [sym_val_bool] = STATE(4357), - [sym_val_variable] = STATE(4706), - [sym_val_number] = STATE(4706), - [sym__val_number_decimal] = STATE(4021), - [sym__val_number] = STATE(4709), - [sym_val_duration] = STATE(4706), - [sym_val_filesize] = STATE(4706), - [sym_val_binary] = STATE(4706), - [sym_val_string] = STATE(4706), - [sym__raw_str] = STATE(4077), - [sym__str_double_quotes] = STATE(4077), - [sym_val_interpolated] = STATE(4706), - [sym__inter_single_quotes] = STATE(4625), - [sym__inter_double_quotes] = STATE(4629), - [sym_val_list] = STATE(4706), - [sym_val_record] = STATE(4706), - [sym_val_table] = STATE(4706), - [sym_val_closure] = STATE(4706), - [sym_unquoted] = STATE(4681), - [sym__unquoted_anonymous_prefix] = STATE(7644), - [sym_comment] = STATE(1297), - [anon_sym_LBRACK] = ACTIONS(4307), - [anon_sym_LPAREN] = ACTIONS(4309), - [anon_sym_DOLLAR] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(4311), - [anon_sym_DOT_DOT] = ACTIONS(4313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4315), - [anon_sym_DOT_DOT_LT] = ACTIONS(4315), - [anon_sym_null] = ACTIONS(4345), - [anon_sym_true] = ACTIONS(4347), - [anon_sym_false] = ACTIONS(4347), - [aux_sym__val_number_decimal_token1] = ACTIONS(2154), - [aux_sym__val_number_decimal_token2] = ACTIONS(4349), - [aux_sym__val_number_decimal_token3] = ACTIONS(4351), - [aux_sym__val_number_decimal_token4] = ACTIONS(4353), - [aux_sym__val_number_token1] = ACTIONS(4327), - [aux_sym__val_number_token2] = ACTIONS(4327), - [aux_sym__val_number_token3] = ACTIONS(4327), - [aux_sym__val_number_token4] = ACTIONS(4355), - [aux_sym__val_number_token5] = ACTIONS(4355), - [aux_sym__val_number_token6] = ACTIONS(4355), - [anon_sym_0b] = ACTIONS(2164), - [anon_sym_0o] = ACTIONS(2166), - [anon_sym_0x] = ACTIONS(2166), - [sym_val_date] = ACTIONS(4357), - [anon_sym_DQUOTE] = ACTIONS(4333), - [sym__str_single_quotes] = ACTIONS(4335), - [sym__str_back_ticks] = ACTIONS(4335), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4337), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4339), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2186), - }, - [1298] = { - [sym__val_range] = STATE(7563), - [sym__value] = STATE(4691), - [sym_val_nothing] = STATE(4706), - [sym_val_bool] = STATE(6087), - [sym_val_variable] = STATE(4706), - [sym_val_number] = STATE(4706), - [sym__val_number_decimal] = STATE(5390), - [sym__val_number] = STATE(4709), - [sym_val_duration] = STATE(4706), - [sym_val_filesize] = STATE(4706), - [sym_val_binary] = STATE(4706), - [sym_val_string] = STATE(4706), - [sym__raw_str] = STATE(4077), - [sym__str_double_quotes] = STATE(4077), - [sym_val_interpolated] = STATE(4706), - [sym__inter_single_quotes] = STATE(4625), - [sym__inter_double_quotes] = STATE(4629), - [sym_val_list] = STATE(4706), - [sym_val_record] = STATE(4706), - [sym_val_table] = STATE(4706), - [sym_val_closure] = STATE(4706), - [sym_unquoted] = STATE(4698), - [sym__unquoted_anonymous_prefix] = STATE(7644), - [sym_comment] = STATE(1298), - [anon_sym_LBRACK] = ACTIONS(4307), - [anon_sym_LPAREN] = ACTIONS(4309), - [anon_sym_DOLLAR] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(4311), - [anon_sym_DOT_DOT] = ACTIONS(4313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4315), - [anon_sym_DOT_DOT_LT] = ACTIONS(4315), - [anon_sym_null] = ACTIONS(4317), - [anon_sym_true] = ACTIONS(4319), - [anon_sym_false] = ACTIONS(4319), - [aux_sym__val_number_decimal_token1] = ACTIONS(3088), - [aux_sym__val_number_decimal_token2] = ACTIONS(4321), - [aux_sym__val_number_decimal_token3] = ACTIONS(4323), - [aux_sym__val_number_decimal_token4] = ACTIONS(4325), - [aux_sym__val_number_token1] = ACTIONS(4327), - [aux_sym__val_number_token2] = ACTIONS(4327), - [aux_sym__val_number_token3] = ACTIONS(4327), - [aux_sym__val_number_token4] = ACTIONS(4329), - [aux_sym__val_number_token5] = ACTIONS(4329), - [aux_sym__val_number_token6] = ACTIONS(4329), - [anon_sym_0b] = ACTIONS(2164), - [anon_sym_0o] = ACTIONS(2166), - [anon_sym_0x] = ACTIONS(2166), - [sym_val_date] = ACTIONS(4331), - [anon_sym_DQUOTE] = ACTIONS(4333), - [sym__str_single_quotes] = ACTIONS(4335), - [sym__str_back_ticks] = ACTIONS(4335), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4337), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4339), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2186), - }, - [1299] = { - [sym__val_range] = STATE(7563), - [sym__value] = STATE(4688), - [sym_val_nothing] = STATE(4706), - [sym_val_bool] = STATE(4357), - [sym_val_variable] = STATE(4706), - [sym_val_number] = STATE(4706), - [sym__val_number_decimal] = STATE(4021), - [sym__val_number] = STATE(4709), - [sym_val_duration] = STATE(4706), - [sym_val_filesize] = STATE(4706), - [sym_val_binary] = STATE(4706), - [sym_val_string] = STATE(4706), - [sym__raw_str] = STATE(4077), - [sym__str_double_quotes] = STATE(4077), - [sym_val_interpolated] = STATE(4706), - [sym__inter_single_quotes] = STATE(4625), - [sym__inter_double_quotes] = STATE(4629), - [sym_val_list] = STATE(4706), - [sym_val_record] = STATE(4706), - [sym_val_table] = STATE(4706), - [sym_val_closure] = STATE(4706), - [sym_unquoted] = STATE(4689), - [sym__unquoted_anonymous_prefix] = STATE(7644), - [sym_comment] = STATE(1299), - [anon_sym_LBRACK] = ACTIONS(4307), - [anon_sym_LPAREN] = ACTIONS(4309), - [anon_sym_DOLLAR] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(4311), - [anon_sym_DOT_DOT] = ACTIONS(4313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4315), - [anon_sym_DOT_DOT_LT] = ACTIONS(4315), - [anon_sym_null] = ACTIONS(4345), - [anon_sym_true] = ACTIONS(4347), - [anon_sym_false] = ACTIONS(4347), - [aux_sym__val_number_decimal_token1] = ACTIONS(2154), - [aux_sym__val_number_decimal_token2] = ACTIONS(4349), - [aux_sym__val_number_decimal_token3] = ACTIONS(4351), - [aux_sym__val_number_decimal_token4] = ACTIONS(4353), - [aux_sym__val_number_token1] = ACTIONS(4327), - [aux_sym__val_number_token2] = ACTIONS(4327), - [aux_sym__val_number_token3] = ACTIONS(4327), - [aux_sym__val_number_token4] = ACTIONS(4355), - [aux_sym__val_number_token5] = ACTIONS(4355), - [aux_sym__val_number_token6] = ACTIONS(4355), - [anon_sym_0b] = ACTIONS(2164), - [anon_sym_0o] = ACTIONS(2166), - [anon_sym_0x] = ACTIONS(2166), - [sym_val_date] = ACTIONS(4357), - [anon_sym_DQUOTE] = ACTIONS(4333), - [sym__str_single_quotes] = ACTIONS(4335), - [sym__str_back_ticks] = ACTIONS(4335), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4337), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4339), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2186), - }, - [1300] = { - [sym__val_range] = STATE(7563), - [sym__value] = STATE(4734), - [sym_val_nothing] = STATE(4706), - [sym_val_bool] = STATE(4357), - [sym_val_variable] = STATE(4706), - [sym_val_number] = STATE(4706), - [sym__val_number_decimal] = STATE(4021), - [sym__val_number] = STATE(4709), - [sym_val_duration] = STATE(4706), - [sym_val_filesize] = STATE(4706), - [sym_val_binary] = STATE(4706), - [sym_val_string] = STATE(4706), - [sym__raw_str] = STATE(4077), - [sym__str_double_quotes] = STATE(4077), - [sym_val_interpolated] = STATE(4706), - [sym__inter_single_quotes] = STATE(4625), - [sym__inter_double_quotes] = STATE(4629), - [sym_val_list] = STATE(4706), - [sym_val_record] = STATE(4706), - [sym_val_table] = STATE(4706), - [sym_val_closure] = STATE(4706), - [sym_unquoted] = STATE(4656), - [sym__unquoted_anonymous_prefix] = STATE(7644), - [sym_comment] = STATE(1300), - [anon_sym_LBRACK] = ACTIONS(4307), - [anon_sym_LPAREN] = ACTIONS(4309), - [anon_sym_DOLLAR] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(4311), - [anon_sym_DOT_DOT] = ACTIONS(4313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4315), - [anon_sym_DOT_DOT_LT] = ACTIONS(4315), - [anon_sym_null] = ACTIONS(4345), - [anon_sym_true] = ACTIONS(4347), - [anon_sym_false] = ACTIONS(4347), - [aux_sym__val_number_decimal_token1] = ACTIONS(2154), - [aux_sym__val_number_decimal_token2] = ACTIONS(4349), - [aux_sym__val_number_decimal_token3] = ACTIONS(4351), - [aux_sym__val_number_decimal_token4] = ACTIONS(4353), - [aux_sym__val_number_token1] = ACTIONS(4327), - [aux_sym__val_number_token2] = ACTIONS(4327), - [aux_sym__val_number_token3] = ACTIONS(4327), - [aux_sym__val_number_token4] = ACTIONS(4355), - [aux_sym__val_number_token5] = ACTIONS(4355), - [aux_sym__val_number_token6] = ACTIONS(4355), - [anon_sym_0b] = ACTIONS(2164), - [anon_sym_0o] = ACTIONS(2166), - [anon_sym_0x] = ACTIONS(2166), - [sym_val_date] = ACTIONS(4357), - [anon_sym_DQUOTE] = ACTIONS(4333), - [sym__str_single_quotes] = ACTIONS(4335), - [sym__str_back_ticks] = ACTIONS(4335), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4337), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4339), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2186), - }, - [1301] = { - [sym__val_range] = STATE(7678), - [sym__value] = STATE(1905), - [sym_val_nothing] = STATE(1840), - [sym_val_bool] = STATE(1744), - [sym_val_variable] = STATE(1840), - [sym_val_number] = STATE(1840), - [sym__val_number_decimal] = STATE(1408), - [sym__val_number] = STATE(1971), - [sym_val_duration] = STATE(1840), - [sym_val_filesize] = STATE(1840), - [sym_val_binary] = STATE(1840), - [sym_val_string] = STATE(1840), - [sym__raw_str] = STATE(1896), - [sym__str_double_quotes] = STATE(1896), - [sym_val_interpolated] = STATE(1840), - [sym__inter_single_quotes] = STATE(1846), - [sym__inter_double_quotes] = STATE(1864), - [sym_val_list] = STATE(1840), - [sym_val_record] = STATE(1840), - [sym_val_table] = STATE(1840), - [sym_val_closure] = STATE(1840), - [sym_unquoted] = STATE(1908), - [sym__unquoted_anonymous_prefix] = STATE(7823), - [sym_comment] = STATE(1301), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(4359), - [anon_sym_DOLLAR] = ACTIONS(3993), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_DOT_DOT] = ACTIONS(4361), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4363), - [anon_sym_DOT_DOT_LT] = ACTIONS(4363), - [anon_sym_null] = ACTIONS(4365), - [anon_sym_true] = ACTIONS(4367), - [anon_sym_false] = ACTIONS(4367), - [aux_sym__val_number_decimal_token1] = ACTIONS(4369), - [aux_sym__val_number_decimal_token2] = ACTIONS(4371), - [aux_sym__val_number_decimal_token3] = ACTIONS(4373), - [aux_sym__val_number_decimal_token4] = ACTIONS(4375), - [aux_sym__val_number_token1] = ACTIONS(2710), - [aux_sym__val_number_token2] = ACTIONS(2710), - [aux_sym__val_number_token3] = ACTIONS(2710), - [aux_sym__val_number_token4] = ACTIONS(4377), - [aux_sym__val_number_token5] = ACTIONS(4377), - [aux_sym__val_number_token6] = ACTIONS(4377), - [anon_sym_0b] = ACTIONS(2714), - [anon_sym_0o] = ACTIONS(2716), - [anon_sym_0x] = ACTIONS(2716), - [sym_val_date] = ACTIONS(4379), - [anon_sym_DQUOTE] = ACTIONS(2720), - [sym__str_single_quotes] = ACTIONS(2722), - [sym__str_back_ticks] = ACTIONS(2722), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2726), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(4381), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2734), - }, - [1302] = { - [sym__val_range] = STATE(7563), - [sym__value] = STATE(4691), - [sym_val_nothing] = STATE(4706), - [sym_val_bool] = STATE(4357), - [sym_val_variable] = STATE(4706), - [sym_val_number] = STATE(4706), - [sym__val_number_decimal] = STATE(4021), - [sym__val_number] = STATE(4709), - [sym_val_duration] = STATE(4706), - [sym_val_filesize] = STATE(4706), - [sym_val_binary] = STATE(4706), - [sym_val_string] = STATE(4706), - [sym__raw_str] = STATE(4077), - [sym__str_double_quotes] = STATE(4077), - [sym_val_interpolated] = STATE(4706), - [sym__inter_single_quotes] = STATE(4625), - [sym__inter_double_quotes] = STATE(4629), - [sym_val_list] = STATE(4706), - [sym_val_record] = STATE(4706), - [sym_val_table] = STATE(4706), - [sym_val_closure] = STATE(4706), - [sym_unquoted] = STATE(4698), - [sym__unquoted_anonymous_prefix] = STATE(7644), - [sym_comment] = STATE(1302), - [anon_sym_LBRACK] = ACTIONS(4307), - [anon_sym_LPAREN] = ACTIONS(4309), - [anon_sym_DOLLAR] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(4311), - [anon_sym_DOT_DOT] = ACTIONS(4313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4315), - [anon_sym_DOT_DOT_LT] = ACTIONS(4315), - [anon_sym_null] = ACTIONS(4345), - [anon_sym_true] = ACTIONS(4347), - [anon_sym_false] = ACTIONS(4347), - [aux_sym__val_number_decimal_token1] = ACTIONS(2154), - [aux_sym__val_number_decimal_token2] = ACTIONS(4349), - [aux_sym__val_number_decimal_token3] = ACTIONS(4351), - [aux_sym__val_number_decimal_token4] = ACTIONS(4353), - [aux_sym__val_number_token1] = ACTIONS(4327), - [aux_sym__val_number_token2] = ACTIONS(4327), - [aux_sym__val_number_token3] = ACTIONS(4327), - [aux_sym__val_number_token4] = ACTIONS(4355), - [aux_sym__val_number_token5] = ACTIONS(4355), - [aux_sym__val_number_token6] = ACTIONS(4355), - [anon_sym_0b] = ACTIONS(2164), - [anon_sym_0o] = ACTIONS(2166), - [anon_sym_0x] = ACTIONS(2166), - [sym_val_date] = ACTIONS(4357), - [anon_sym_DQUOTE] = ACTIONS(4333), - [sym__str_single_quotes] = ACTIONS(4335), - [sym__str_back_ticks] = ACTIONS(4335), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4337), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4339), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2186), - }, - [1303] = { - [sym__val_range] = STATE(7678), - [sym__value] = STATE(1911), - [sym_val_nothing] = STATE(1840), - [sym_val_bool] = STATE(1744), - [sym_val_variable] = STATE(1840), - [sym_val_number] = STATE(1840), - [sym__val_number_decimal] = STATE(1408), - [sym__val_number] = STATE(1971), - [sym_val_duration] = STATE(1840), - [sym_val_filesize] = STATE(1840), - [sym_val_binary] = STATE(1840), - [sym_val_string] = STATE(1840), - [sym__raw_str] = STATE(1896), - [sym__str_double_quotes] = STATE(1896), - [sym_val_interpolated] = STATE(1840), - [sym__inter_single_quotes] = STATE(1846), - [sym__inter_double_quotes] = STATE(1864), - [sym_val_list] = STATE(1840), - [sym_val_record] = STATE(1840), - [sym_val_table] = STATE(1840), - [sym_val_closure] = STATE(1840), - [sym_unquoted] = STATE(1915), - [sym__unquoted_anonymous_prefix] = STATE(7823), - [sym_comment] = STATE(1303), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(4359), - [anon_sym_DOLLAR] = ACTIONS(3993), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_DOT_DOT] = ACTIONS(4361), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4363), - [anon_sym_DOT_DOT_LT] = ACTIONS(4363), - [anon_sym_null] = ACTIONS(4365), - [anon_sym_true] = ACTIONS(4367), - [anon_sym_false] = ACTIONS(4367), - [aux_sym__val_number_decimal_token1] = ACTIONS(4369), - [aux_sym__val_number_decimal_token2] = ACTIONS(4371), - [aux_sym__val_number_decimal_token3] = ACTIONS(4373), - [aux_sym__val_number_decimal_token4] = ACTIONS(4375), - [aux_sym__val_number_token1] = ACTIONS(2710), - [aux_sym__val_number_token2] = ACTIONS(2710), - [aux_sym__val_number_token3] = ACTIONS(2710), - [aux_sym__val_number_token4] = ACTIONS(4377), - [aux_sym__val_number_token5] = ACTIONS(4377), - [aux_sym__val_number_token6] = ACTIONS(4377), - [anon_sym_0b] = ACTIONS(2714), - [anon_sym_0o] = ACTIONS(2716), - [anon_sym_0x] = ACTIONS(2716), - [sym_val_date] = ACTIONS(4379), - [anon_sym_DQUOTE] = ACTIONS(2720), - [sym__str_single_quotes] = ACTIONS(2722), - [sym__str_back_ticks] = ACTIONS(2722), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2726), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(4381), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2734), - }, - [1304] = { - [sym__expr_parenthesized_immediate] = STATE(1954), - [sym__immediate_decimal] = STATE(1955), - [sym_val_variable] = STATE(1954), - [sym_comment] = STATE(1304), - [sym__newline] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_err_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_GT_PIPE] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(1552), - [anon_sym_LPAREN] = ACTIONS(1544), - [anon_sym_RPAREN] = ACTIONS(1552), - [anon_sym_DOLLAR] = ACTIONS(3993), - [anon_sym_DASH_DASH] = ACTIONS(1552), - [anon_sym_DASH2] = ACTIONS(1544), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_RBRACE] = ACTIONS(1552), - [anon_sym_DOT_DOT] = ACTIONS(1544), - [anon_sym_LPAREN2] = ACTIONS(3995), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT] = ACTIONS(1552), - [aux_sym__immediate_decimal_token1] = ACTIONS(4383), - [aux_sym__immediate_decimal_token3] = ACTIONS(4385), - [aux_sym__immediate_decimal_token4] = ACTIONS(4387), - [aux_sym__immediate_decimal_token5] = ACTIONS(4389), - [anon_sym_null] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1552), - [anon_sym_false] = ACTIONS(1552), - [aux_sym__val_number_decimal_token1] = ACTIONS(1544), - [aux_sym__val_number_decimal_token2] = ACTIONS(1544), - [aux_sym__val_number_decimal_token3] = ACTIONS(1544), - [aux_sym__val_number_decimal_token4] = ACTIONS(1544), - [aux_sym__val_number_token1] = ACTIONS(1552), - [aux_sym__val_number_token2] = ACTIONS(1552), - [aux_sym__val_number_token3] = ACTIONS(1552), - [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(1544), - [anon_sym_0o] = ACTIONS(1544), - [anon_sym_0x] = ACTIONS(1544), - [sym_val_date] = ACTIONS(1552), - [anon_sym_DQUOTE] = ACTIONS(1552), - [sym__str_single_quotes] = ACTIONS(1552), - [sym__str_back_ticks] = ACTIONS(1552), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1552), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1544), - [anon_sym_out_GT] = ACTIONS(1544), - [anon_sym_e_GT] = ACTIONS(1544), - [anon_sym_o_GT] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT] = ACTIONS(1544), - [anon_sym_err_GT_GT] = ACTIONS(1552), - [anon_sym_out_GT_GT] = ACTIONS(1552), - [anon_sym_e_GT_GT] = ACTIONS(1552), - [anon_sym_o_GT_GT] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1552), - [aux_sym_unquoted_token1] = ACTIONS(1544), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1552), - }, - [1305] = { - [sym__val_range] = STATE(7678), - [sym__value] = STATE(1939), - [sym_val_nothing] = STATE(1840), - [sym_val_bool] = STATE(1744), - [sym_val_variable] = STATE(1840), - [sym_val_number] = STATE(1840), - [sym__val_number_decimal] = STATE(1408), - [sym__val_number] = STATE(1971), - [sym_val_duration] = STATE(1840), - [sym_val_filesize] = STATE(1840), - [sym_val_binary] = STATE(1840), - [sym_val_string] = STATE(1840), - [sym__raw_str] = STATE(1896), - [sym__str_double_quotes] = STATE(1896), - [sym_val_interpolated] = STATE(1840), - [sym__inter_single_quotes] = STATE(1846), - [sym__inter_double_quotes] = STATE(1864), - [sym_val_list] = STATE(1840), - [sym_val_record] = STATE(1840), - [sym_val_table] = STATE(1840), - [sym_val_closure] = STATE(1840), - [sym_unquoted] = STATE(1940), - [sym__unquoted_anonymous_prefix] = STATE(7823), - [sym_comment] = STATE(1305), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(4359), - [anon_sym_DOLLAR] = ACTIONS(3993), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_DOT_DOT] = ACTIONS(4361), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4363), - [anon_sym_DOT_DOT_LT] = ACTIONS(4363), - [anon_sym_null] = ACTIONS(4365), - [anon_sym_true] = ACTIONS(4367), - [anon_sym_false] = ACTIONS(4367), - [aux_sym__val_number_decimal_token1] = ACTIONS(4369), - [aux_sym__val_number_decimal_token2] = ACTIONS(4371), - [aux_sym__val_number_decimal_token3] = ACTIONS(4373), - [aux_sym__val_number_decimal_token4] = ACTIONS(4375), - [aux_sym__val_number_token1] = ACTIONS(2710), - [aux_sym__val_number_token2] = ACTIONS(2710), - [aux_sym__val_number_token3] = ACTIONS(2710), - [aux_sym__val_number_token4] = ACTIONS(4377), - [aux_sym__val_number_token5] = ACTIONS(4377), - [aux_sym__val_number_token6] = ACTIONS(4377), - [anon_sym_0b] = ACTIONS(2714), - [anon_sym_0o] = ACTIONS(2716), - [anon_sym_0x] = ACTIONS(2716), - [sym_val_date] = ACTIONS(4379), - [anon_sym_DQUOTE] = ACTIONS(2720), - [sym__str_single_quotes] = ACTIONS(2722), - [sym__str_back_ticks] = ACTIONS(2722), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2726), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(4381), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2734), - }, - [1306] = { - [sym__val_range] = STATE(7905), - [sym__value] = STATE(5937), - [sym_val_nothing] = STATE(5783), - [sym_val_bool] = STATE(5719), - [sym_val_variable] = STATE(5783), - [sym_val_number] = STATE(5783), - [sym__val_number_decimal] = STATE(5031), - [sym__val_number] = STATE(5840), - [sym_val_duration] = STATE(5783), - [sym_val_filesize] = STATE(5783), - [sym_val_binary] = STATE(5783), - [sym_val_string] = STATE(5783), - [sym__raw_str] = STATE(5417), - [sym__str_double_quotes] = STATE(5417), - [sym_val_interpolated] = STATE(5783), - [sym__inter_single_quotes] = STATE(5678), - [sym__inter_double_quotes] = STATE(5676), - [sym_val_list] = STATE(5783), - [sym_val_record] = STATE(5783), - [sym_val_table] = STATE(5783), - [sym_val_closure] = STATE(5783), - [sym_unquoted] = STATE(5938), - [sym__unquoted_anonymous_prefix] = STATE(7908), - [sym_comment] = STATE(1306), - [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3530), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(4433), - }, - [1307] = { - [sym__val_range] = STATE(7678), - [sym__value] = STATE(1946), - [sym_val_nothing] = STATE(1840), - [sym_val_bool] = STATE(1744), - [sym_val_variable] = STATE(1840), - [sym_val_number] = STATE(1840), - [sym__val_number_decimal] = STATE(1408), - [sym__val_number] = STATE(1971), - [sym_val_duration] = STATE(1840), - [sym_val_filesize] = STATE(1840), - [sym_val_binary] = STATE(1840), - [sym_val_string] = STATE(1840), - [sym__raw_str] = STATE(1896), - [sym__str_double_quotes] = STATE(1896), - [sym_val_interpolated] = STATE(1840), - [sym__inter_single_quotes] = STATE(1846), - [sym__inter_double_quotes] = STATE(1864), - [sym_val_list] = STATE(1840), - [sym_val_record] = STATE(1840), - [sym_val_table] = STATE(1840), - [sym_val_closure] = STATE(1840), - [sym_unquoted] = STATE(1947), - [sym__unquoted_anonymous_prefix] = STATE(7823), - [sym_comment] = STATE(1307), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(4359), - [anon_sym_DOLLAR] = ACTIONS(3993), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_DOT_DOT] = ACTIONS(4361), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4363), - [anon_sym_DOT_DOT_LT] = ACTIONS(4363), - [anon_sym_null] = ACTIONS(4365), - [anon_sym_true] = ACTIONS(4367), - [anon_sym_false] = ACTIONS(4367), - [aux_sym__val_number_decimal_token1] = ACTIONS(4369), - [aux_sym__val_number_decimal_token2] = ACTIONS(4371), - [aux_sym__val_number_decimal_token3] = ACTIONS(4373), - [aux_sym__val_number_decimal_token4] = ACTIONS(4375), - [aux_sym__val_number_token1] = ACTIONS(2710), - [aux_sym__val_number_token2] = ACTIONS(2710), - [aux_sym__val_number_token3] = ACTIONS(2710), - [aux_sym__val_number_token4] = ACTIONS(4377), - [aux_sym__val_number_token5] = ACTIONS(4377), - [aux_sym__val_number_token6] = ACTIONS(4377), - [anon_sym_0b] = ACTIONS(2714), - [anon_sym_0o] = ACTIONS(2716), - [anon_sym_0x] = ACTIONS(2716), - [sym_val_date] = ACTIONS(4379), - [anon_sym_DQUOTE] = ACTIONS(2720), - [sym__str_single_quotes] = ACTIONS(2722), - [sym__str_back_ticks] = ACTIONS(2722), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2726), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(4381), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2734), - }, - [1308] = { - [sym__val_range] = STATE(7905), - [sym__value] = STATE(5941), - [sym_val_nothing] = STATE(5783), - [sym_val_bool] = STATE(5719), - [sym_val_variable] = STATE(5783), - [sym_val_number] = STATE(5783), - [sym__val_number_decimal] = STATE(5031), - [sym__val_number] = STATE(5840), - [sym_val_duration] = STATE(5783), - [sym_val_filesize] = STATE(5783), - [sym_val_binary] = STATE(5783), - [sym_val_string] = STATE(5783), - [sym__raw_str] = STATE(5417), - [sym__str_double_quotes] = STATE(5417), - [sym_val_interpolated] = STATE(5783), - [sym__inter_single_quotes] = STATE(5678), - [sym__inter_double_quotes] = STATE(5676), - [sym_val_list] = STATE(5783), - [sym_val_record] = STATE(5783), - [sym_val_table] = STATE(5783), - [sym_val_closure] = STATE(5783), - [sym_unquoted] = STATE(5942), - [sym__unquoted_anonymous_prefix] = STATE(7908), - [sym_comment] = STATE(1308), - [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3530), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(4433), - }, - [1309] = { - [sym__val_range] = STATE(7905), - [sym__value] = STATE(5732), - [sym_val_nothing] = STATE(5783), - [sym_val_bool] = STATE(5719), - [sym_val_variable] = STATE(5783), - [sym_val_number] = STATE(5783), - [sym__val_number_decimal] = STATE(5031), - [sym__val_number] = STATE(5840), - [sym_val_duration] = STATE(5783), - [sym_val_filesize] = STATE(5783), - [sym_val_binary] = STATE(5783), - [sym_val_string] = STATE(5783), - [sym__raw_str] = STATE(5417), - [sym__str_double_quotes] = STATE(5417), - [sym_val_interpolated] = STATE(5783), - [sym__inter_single_quotes] = STATE(5678), - [sym__inter_double_quotes] = STATE(5676), - [sym_val_list] = STATE(5783), - [sym_val_record] = STATE(5783), - [sym_val_table] = STATE(5783), - [sym_val_closure] = STATE(5783), - [sym_unquoted] = STATE(5733), - [sym__unquoted_anonymous_prefix] = STATE(7908), - [sym_comment] = STATE(1309), - [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3530), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(4433), - }, - [1310] = { - [sym__val_range] = STATE(7723), - [sym__value] = STATE(5325), - [sym_val_nothing] = STATE(4332), - [sym_val_bool] = STATE(5531), - [sym_val_variable] = STATE(4332), - [sym_val_number] = STATE(4332), - [sym__val_number_decimal] = STATE(4933), - [sym__val_number] = STATE(4342), - [sym_val_duration] = STATE(4332), - [sym_val_filesize] = STATE(4332), - [sym_val_binary] = STATE(4332), - [sym_val_string] = STATE(4332), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(4332), - [sym__inter_single_quotes] = STATE(5242), - [sym__inter_double_quotes] = STATE(5247), - [sym_val_list] = STATE(4332), - [sym_val_record] = STATE(4332), - [sym_val_table] = STATE(4332), - [sym_val_closure] = STATE(4332), - [sym_unquoted] = STATE(5303), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1310), - [anon_sym_LBRACK] = ACTIONS(4131), - [anon_sym_LPAREN] = ACTIONS(4133), - [anon_sym_DOLLAR] = ACTIONS(4135), - [anon_sym_LBRACE] = ACTIONS(4137), - [anon_sym_DOT_DOT] = ACTIONS(4139), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4141), - [anon_sym_DOT_DOT_LT] = ACTIONS(4141), - [anon_sym_null] = ACTIONS(4435), - [anon_sym_true] = ACTIONS(4437), - [anon_sym_false] = ACTIONS(4437), - [aux_sym__val_number_decimal_token1] = ACTIONS(4439), - [aux_sym__val_number_decimal_token2] = ACTIONS(4441), - [aux_sym__val_number_decimal_token3] = ACTIONS(4443), - [aux_sym__val_number_decimal_token4] = ACTIONS(4445), - [aux_sym__val_number_token1] = ACTIONS(3675), - [aux_sym__val_number_token2] = ACTIONS(3675), - [aux_sym__val_number_token3] = ACTIONS(3675), - [aux_sym__val_number_token4] = ACTIONS(4447), - [aux_sym__val_number_token5] = ACTIONS(4447), - [aux_sym__val_number_token6] = ACTIONS(4447), - [anon_sym_0b] = ACTIONS(3679), - [anon_sym_0o] = ACTIONS(3681), - [anon_sym_0x] = ACTIONS(3681), - [sym_val_date] = ACTIONS(4449), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym__str_single_quotes] = ACTIONS(1264), - [sym__str_back_ticks] = ACTIONS(1264), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4159), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4161), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1266), - }, - [1311] = { - [sym__val_range] = STATE(7905), - [sym__value] = STATE(5735), - [sym_val_nothing] = STATE(5783), - [sym_val_bool] = STATE(5719), - [sym_val_variable] = STATE(5783), - [sym_val_number] = STATE(5783), - [sym__val_number_decimal] = STATE(5031), - [sym__val_number] = STATE(5840), - [sym_val_duration] = STATE(5783), - [sym_val_filesize] = STATE(5783), - [sym_val_binary] = STATE(5783), - [sym_val_string] = STATE(5783), - [sym__raw_str] = STATE(5417), - [sym__str_double_quotes] = STATE(5417), - [sym_val_interpolated] = STATE(5783), - [sym__inter_single_quotes] = STATE(5678), - [sym__inter_double_quotes] = STATE(5676), - [sym_val_list] = STATE(5783), - [sym_val_record] = STATE(5783), - [sym_val_table] = STATE(5783), - [sym_val_closure] = STATE(5783), - [sym_unquoted] = STATE(5736), - [sym__unquoted_anonymous_prefix] = STATE(7908), - [sym_comment] = STATE(1311), - [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(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3530), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(4433), - }, - [1312] = { - [sym__val_range] = STATE(7723), - [sym__value] = STATE(5342), - [sym_val_nothing] = STATE(4332), - [sym_val_bool] = STATE(5531), - [sym_val_variable] = STATE(4332), - [sym_val_number] = STATE(4332), - [sym__val_number_decimal] = STATE(4933), - [sym__val_number] = STATE(4342), - [sym_val_duration] = STATE(4332), - [sym_val_filesize] = STATE(4332), - [sym_val_binary] = STATE(4332), - [sym_val_string] = STATE(4332), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(4332), - [sym__inter_single_quotes] = STATE(5242), - [sym__inter_double_quotes] = STATE(5247), - [sym_val_list] = STATE(4332), - [sym_val_record] = STATE(4332), - [sym_val_table] = STATE(4332), - [sym_val_closure] = STATE(4332), - [sym_unquoted] = STATE(5214), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1312), - [anon_sym_LBRACK] = ACTIONS(4131), - [anon_sym_LPAREN] = ACTIONS(4133), - [anon_sym_DOLLAR] = ACTIONS(4135), - [anon_sym_LBRACE] = ACTIONS(4137), - [anon_sym_DOT_DOT] = ACTIONS(4139), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4141), - [anon_sym_DOT_DOT_LT] = ACTIONS(4141), - [anon_sym_null] = ACTIONS(4435), - [anon_sym_true] = ACTIONS(4437), - [anon_sym_false] = ACTIONS(4437), - [aux_sym__val_number_decimal_token1] = ACTIONS(4439), - [aux_sym__val_number_decimal_token2] = ACTIONS(4441), - [aux_sym__val_number_decimal_token3] = ACTIONS(4443), - [aux_sym__val_number_decimal_token4] = ACTIONS(4445), - [aux_sym__val_number_token1] = ACTIONS(3675), - [aux_sym__val_number_token2] = ACTIONS(3675), - [aux_sym__val_number_token3] = ACTIONS(3675), - [aux_sym__val_number_token4] = ACTIONS(4447), - [aux_sym__val_number_token5] = ACTIONS(4447), - [aux_sym__val_number_token6] = ACTIONS(4447), - [anon_sym_0b] = ACTIONS(3679), - [anon_sym_0o] = ACTIONS(3681), - [anon_sym_0x] = ACTIONS(3681), - [sym_val_date] = ACTIONS(4449), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym__str_single_quotes] = ACTIONS(1264), - [sym__str_back_ticks] = ACTIONS(1264), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4159), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4161), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1266), - }, - [1313] = { - [sym__val_range] = STATE(7723), - [sym__value] = STATE(5325), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(7490), - [sym_val_variable] = STATE(2082), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(5641), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(5303), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1313), - [anon_sym_LBRACK] = ACTIONS(3540), - [anon_sym_LPAREN] = ACTIONS(4191), - [anon_sym_DOLLAR] = ACTIONS(3544), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_DOT_DOT] = ACTIONS(4139), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4141), - [anon_sym_DOT_DOT_LT] = ACTIONS(4141), - [anon_sym_null] = ACTIONS(3838), - [anon_sym_true] = ACTIONS(3840), - [anon_sym_false] = ACTIONS(3840), - [aux_sym__val_number_decimal_token1] = ACTIONS(3842), - [aux_sym__val_number_decimal_token2] = ACTIONS(3844), - [aux_sym__val_number_decimal_token3] = ACTIONS(3846), - [aux_sym__val_number_decimal_token4] = ACTIONS(3848), - [aux_sym__val_number_token1] = ACTIONS(223), - [aux_sym__val_number_token2] = ACTIONS(223), - [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3850), - [aux_sym__val_number_token5] = ACTIONS(3850), - [aux_sym__val_number_token6] = ACTIONS(3850), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3852), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym__str_single_quotes] = ACTIONS(1264), - [sym__str_back_ticks] = ACTIONS(1264), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1266), - }, - [1314] = { - [sym_comment] = STATE(1314), - [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_and2] = ACTIONS(980), - [anon_sym_xor2] = ACTIONS(980), - [anon_sym_or2] = ACTIONS(980), - [anon_sym_not_DASHin2] = ACTIONS(980), - [anon_sym_has2] = ACTIONS(980), - [anon_sym_not_DASHhas2] = 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_DOT_EQ2] = ACTIONS(980), - [anon_sym_DOT_DOT_LT2] = ACTIONS(980), - [anon_sym_COLON2] = ACTIONS(980), - [anon_sym_DOT2] = ACTIONS(978), - [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(245), - }, - [1315] = { - [sym__val_range] = STATE(7723), - [sym__value] = STATE(5300), - [sym_val_nothing] = STATE(4332), - [sym_val_bool] = STATE(5531), - [sym_val_variable] = STATE(4332), - [sym_val_number] = STATE(4332), - [sym__val_number_decimal] = STATE(4933), - [sym__val_number] = STATE(4342), - [sym_val_duration] = STATE(4332), - [sym_val_filesize] = STATE(4332), - [sym_val_binary] = STATE(4332), - [sym_val_string] = STATE(4332), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(4332), - [sym__inter_single_quotes] = STATE(5242), - [sym__inter_double_quotes] = STATE(5247), - [sym_val_list] = STATE(4332), - [sym_val_record] = STATE(4332), - [sym_val_table] = STATE(4332), - [sym_val_closure] = STATE(4332), - [sym_unquoted] = STATE(5276), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1315), - [anon_sym_LBRACK] = ACTIONS(4131), - [anon_sym_LPAREN] = ACTIONS(4133), - [anon_sym_DOLLAR] = ACTIONS(4135), - [anon_sym_LBRACE] = ACTIONS(4137), - [anon_sym_DOT_DOT] = ACTIONS(4139), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4141), - [anon_sym_DOT_DOT_LT] = ACTIONS(4141), - [anon_sym_null] = ACTIONS(4435), - [anon_sym_true] = ACTIONS(4437), - [anon_sym_false] = ACTIONS(4437), - [aux_sym__val_number_decimal_token1] = ACTIONS(4439), - [aux_sym__val_number_decimal_token2] = ACTIONS(4441), - [aux_sym__val_number_decimal_token3] = ACTIONS(4443), - [aux_sym__val_number_decimal_token4] = ACTIONS(4445), - [aux_sym__val_number_token1] = ACTIONS(3675), - [aux_sym__val_number_token2] = ACTIONS(3675), - [aux_sym__val_number_token3] = ACTIONS(3675), - [aux_sym__val_number_token4] = ACTIONS(4447), - [aux_sym__val_number_token5] = ACTIONS(4447), - [aux_sym__val_number_token6] = ACTIONS(4447), - [anon_sym_0b] = ACTIONS(3679), - [anon_sym_0o] = ACTIONS(3681), - [anon_sym_0x] = ACTIONS(3681), - [sym_val_date] = ACTIONS(4449), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym__str_single_quotes] = ACTIONS(1264), - [sym__str_back_ticks] = ACTIONS(1264), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4159), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4161), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1266), - }, - [1316] = { - [sym__val_range] = STATE(7723), - [sym__value] = STATE(5284), - [sym_val_nothing] = STATE(4332), - [sym_val_bool] = STATE(5531), - [sym_val_variable] = STATE(4332), - [sym_val_number] = STATE(4332), - [sym__val_number_decimal] = STATE(4933), - [sym__val_number] = STATE(4342), - [sym_val_duration] = STATE(4332), - [sym_val_filesize] = STATE(4332), - [sym_val_binary] = STATE(4332), - [sym_val_string] = STATE(4332), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(4332), - [sym__inter_single_quotes] = STATE(5242), - [sym__inter_double_quotes] = STATE(5247), - [sym_val_list] = STATE(4332), - [sym_val_record] = STATE(4332), - [sym_val_table] = STATE(4332), - [sym_val_closure] = STATE(4332), - [sym_unquoted] = STATE(5291), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1316), - [anon_sym_LBRACK] = ACTIONS(4131), - [anon_sym_LPAREN] = ACTIONS(4133), - [anon_sym_DOLLAR] = ACTIONS(4135), - [anon_sym_LBRACE] = ACTIONS(4137), - [anon_sym_DOT_DOT] = ACTIONS(4139), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4141), - [anon_sym_DOT_DOT_LT] = ACTIONS(4141), - [anon_sym_null] = ACTIONS(4435), - [anon_sym_true] = ACTIONS(4437), - [anon_sym_false] = ACTIONS(4437), - [aux_sym__val_number_decimal_token1] = ACTIONS(4439), - [aux_sym__val_number_decimal_token2] = ACTIONS(4441), - [aux_sym__val_number_decimal_token3] = ACTIONS(4443), - [aux_sym__val_number_decimal_token4] = ACTIONS(4445), - [aux_sym__val_number_token1] = ACTIONS(3675), - [aux_sym__val_number_token2] = ACTIONS(3675), - [aux_sym__val_number_token3] = ACTIONS(3675), - [aux_sym__val_number_token4] = ACTIONS(4447), - [aux_sym__val_number_token5] = ACTIONS(4447), - [aux_sym__val_number_token6] = ACTIONS(4447), - [anon_sym_0b] = ACTIONS(3679), - [anon_sym_0o] = ACTIONS(3681), - [anon_sym_0x] = ACTIONS(3681), - [sym_val_date] = ACTIONS(4449), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym__str_single_quotes] = ACTIONS(1264), - [sym__str_back_ticks] = ACTIONS(1264), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4159), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4161), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1266), - }, - [1317] = { - [sym__expr_parenthesized_immediate] = STATE(1713), - [sym__immediate_decimal] = STATE(1623), - [sym_val_variable] = STATE(1713), - [sym_comment] = STATE(1317), + [sym_val_variable] = STATE(1646), + [sym_comment] = STATE(1211), [sym__newline] = ACTIONS(1445), [anon_sym_SEMI] = ACTIONS(1445), [anon_sym_PIPE] = ACTIONS(1445), @@ -204381,10 +194108,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1445), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1445), [anon_sym_RPAREN] = ACTIONS(1445), - [anon_sym_DOLLAR] = ACTIONS(3610), + [anon_sym_DOLLAR] = ACTIONS(3550), [anon_sym_GT2] = ACTIONS(1431), [anon_sym_DASH2] = ACTIONS(1431), [anon_sym_in2] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1445), [anon_sym_RBRACE] = ACTIONS(1445), [anon_sym_STAR2] = ACTIONS(1431), [anon_sym_and2] = ACTIONS(1445), @@ -204402,7 +194130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ2] = ACTIONS(1445), [anon_sym_EQ_TILDE2] = ACTIONS(1445), [anon_sym_BANG_TILDE2] = ACTIONS(1445), - [anon_sym_LPAREN2] = ACTIONS(4075), + [anon_sym_LPAREN2] = ACTIONS(4027), [anon_sym_STAR_STAR2] = ACTIONS(1445), [anon_sym_PLUS_PLUS2] = ACTIONS(1445), [anon_sym_SLASH2] = ACTIONS(1431), @@ -204414,11 +194142,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1445), [anon_sym_bit_DASHxor2] = ACTIONS(1445), [anon_sym_bit_DASHor2] = ACTIONS(1445), - [anon_sym_DOT] = ACTIONS(4451), - [aux_sym__immediate_decimal_token1] = ACTIONS(4079), - [aux_sym__immediate_decimal_token3] = ACTIONS(4079), - [aux_sym__immediate_decimal_token4] = ACTIONS(4081), - [aux_sym__immediate_decimal_token5] = ACTIONS(4083), + [anon_sym_DOT] = ACTIONS(4029), + [aux_sym__immediate_decimal_token1] = ACTIONS(4031), + [aux_sym__immediate_decimal_token3] = ACTIONS(4031), + [aux_sym__immediate_decimal_token4] = ACTIONS(4033), + [aux_sym__immediate_decimal_token5] = ACTIONS(4035), [anon_sym_err_GT] = ACTIONS(1431), [anon_sym_out_GT] = ACTIONS(1431), [anon_sym_e_GT] = ACTIONS(1431), @@ -204435,236 +194163,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1445), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1445), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1445), - [aux_sym_unquoted_token2] = ACTIONS(1447), - [anon_sym_POUND] = ACTIONS(245), - }, - [1318] = { - [sym_comment] = STATE(1318), - [anon_sym_EQ] = ACTIONS(974), - [anon_sym_PLUS_EQ] = ACTIONS(976), - [anon_sym_DASH_EQ] = ACTIONS(976), - [anon_sym_STAR_EQ] = ACTIONS(976), - [anon_sym_SLASH_EQ] = ACTIONS(976), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(976), - [sym__newline] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_err_GT_PIPE] = ACTIONS(976), - [anon_sym_out_GT_PIPE] = ACTIONS(976), - [anon_sym_e_GT_PIPE] = ACTIONS(976), - [anon_sym_o_GT_PIPE] = ACTIONS(976), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(976), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(976), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(976), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(976), - [anon_sym_RPAREN] = ACTIONS(976), - [anon_sym_GT2] = ACTIONS(974), - [anon_sym_DASH2] = ACTIONS(974), - [anon_sym_in2] = ACTIONS(976), - [anon_sym_RBRACE] = ACTIONS(976), - [anon_sym_STAR2] = ACTIONS(974), - [anon_sym_and2] = ACTIONS(976), - [anon_sym_xor2] = ACTIONS(976), - [anon_sym_or2] = ACTIONS(976), - [anon_sym_not_DASHin2] = ACTIONS(976), - [anon_sym_has2] = ACTIONS(976), - [anon_sym_not_DASHhas2] = ACTIONS(976), - [anon_sym_starts_DASHwith2] = ACTIONS(976), - [anon_sym_ends_DASHwith2] = ACTIONS(976), - [anon_sym_EQ_EQ2] = ACTIONS(976), - [anon_sym_BANG_EQ2] = ACTIONS(976), - [anon_sym_LT2] = ACTIONS(974), - [anon_sym_LT_EQ2] = ACTIONS(976), - [anon_sym_GT_EQ2] = ACTIONS(976), - [anon_sym_EQ_TILDE2] = ACTIONS(976), - [anon_sym_BANG_TILDE2] = ACTIONS(976), - [anon_sym_STAR_STAR2] = ACTIONS(976), - [anon_sym_PLUS_PLUS2] = ACTIONS(974), - [anon_sym_SLASH2] = ACTIONS(974), - [anon_sym_mod2] = ACTIONS(976), - [anon_sym_SLASH_SLASH2] = ACTIONS(976), - [anon_sym_PLUS2] = ACTIONS(974), - [anon_sym_bit_DASHshl2] = ACTIONS(976), - [anon_sym_bit_DASHshr2] = ACTIONS(976), - [anon_sym_bit_DASHand2] = ACTIONS(976), - [anon_sym_bit_DASHxor2] = ACTIONS(976), - [anon_sym_bit_DASHor2] = ACTIONS(976), - [anon_sym_DOT_DOT2] = ACTIONS(974), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(976), - [anon_sym_DOT_DOT_LT2] = ACTIONS(976), - [anon_sym_COLON2] = ACTIONS(976), - [anon_sym_DOT2] = ACTIONS(974), - [anon_sym_err_GT] = ACTIONS(974), - [anon_sym_out_GT] = ACTIONS(974), - [anon_sym_e_GT] = ACTIONS(974), - [anon_sym_o_GT] = ACTIONS(974), - [anon_sym_err_PLUSout_GT] = ACTIONS(974), - [anon_sym_out_PLUSerr_GT] = ACTIONS(974), - [anon_sym_o_PLUSe_GT] = ACTIONS(974), - [anon_sym_e_PLUSo_GT] = ACTIONS(974), - [anon_sym_err_GT_GT] = ACTIONS(976), - [anon_sym_out_GT_GT] = ACTIONS(976), - [anon_sym_e_GT_GT] = ACTIONS(976), - [anon_sym_o_GT_GT] = ACTIONS(976), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(976), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(976), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(976), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(976), [anon_sym_POUND] = ACTIONS(245), }, - [1319] = { - [sym_comment] = STATE(1319), - [ts_builtin_sym_end] = ACTIONS(1486), - [sym__newline] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1486), - [anon_sym_err_GT_PIPE] = ACTIONS(1486), - [anon_sym_out_GT_PIPE] = ACTIONS(1486), - [anon_sym_e_GT_PIPE] = ACTIONS(1486), - [anon_sym_o_GT_PIPE] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1484), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1484), - [anon_sym_DOT_DOT_LT] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [aux_sym__immediate_decimal_token1] = ACTIONS(4453), - [aux_sym__immediate_decimal_token2] = ACTIONS(4455), - [anon_sym_null] = ACTIONS(1486), - [anon_sym_true] = ACTIONS(1486), - [anon_sym_false] = ACTIONS(1486), - [aux_sym__val_number_decimal_token1] = ACTIONS(1484), - [aux_sym__val_number_decimal_token2] = ACTIONS(1486), - [aux_sym__val_number_decimal_token3] = ACTIONS(1486), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), - [aux_sym__val_number_token1] = ACTIONS(1486), - [aux_sym__val_number_token2] = ACTIONS(1486), - [aux_sym__val_number_token3] = ACTIONS(1486), - [aux_sym__val_number_token4] = ACTIONS(1486), - [aux_sym__val_number_token5] = ACTIONS(1486), - [aux_sym__val_number_token6] = ACTIONS(1486), - [anon_sym_0b] = ACTIONS(1484), - [sym_filesize_unit] = ACTIONS(1486), - [sym_duration_unit] = ACTIONS(1486), - [anon_sym_0o] = ACTIONS(1484), - [anon_sym_0x] = ACTIONS(1484), - [sym_val_date] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym__str_single_quotes] = ACTIONS(1486), - [sym__str_back_ticks] = ACTIONS(1486), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1486), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1486), - [anon_sym_err_GT] = ACTIONS(1484), - [anon_sym_out_GT] = ACTIONS(1484), - [anon_sym_e_GT] = ACTIONS(1484), - [anon_sym_o_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT] = ACTIONS(1484), - [anon_sym_err_GT_GT] = ACTIONS(1486), - [anon_sym_out_GT_GT] = ACTIONS(1486), - [anon_sym_e_GT_GT] = ACTIONS(1486), - [anon_sym_o_GT_GT] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1486), - [aux_sym_unquoted_token1] = ACTIONS(1484), - [aux_sym_unquoted_token2] = ACTIONS(1484), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1486), - }, - [1320] = { - [sym__val_range] = STATE(7723), - [sym__value] = STATE(5284), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(7490), - [sym_val_variable] = STATE(2082), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(5641), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(5291), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1320), - [anon_sym_LBRACK] = ACTIONS(3540), - [anon_sym_LPAREN] = ACTIONS(4191), - [anon_sym_DOLLAR] = ACTIONS(3544), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_DOT_DOT] = ACTIONS(4139), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4141), - [anon_sym_DOT_DOT_LT] = ACTIONS(4141), - [anon_sym_null] = ACTIONS(3838), - [anon_sym_true] = ACTIONS(3840), - [anon_sym_false] = ACTIONS(3840), - [aux_sym__val_number_decimal_token1] = ACTIONS(3842), - [aux_sym__val_number_decimal_token2] = ACTIONS(3844), - [aux_sym__val_number_decimal_token3] = ACTIONS(3846), - [aux_sym__val_number_decimal_token4] = ACTIONS(3848), + [1212] = { + [sym__val_range] = STATE(7094), + [sym__value] = STATE(5067), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(6849), + [sym_val_variable] = STATE(1992), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(5433), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(4945), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1212), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(4037), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_LBRACE] = ACTIONS(3444), + [anon_sym_DOT_DOT] = ACTIONS(4039), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4041), + [anon_sym_DOT_DOT_LT] = ACTIONS(4041), + [anon_sym_null] = ACTIONS(3906), + [anon_sym_true] = ACTIONS(3908), + [anon_sym_false] = ACTIONS(3908), + [aux_sym__val_number_decimal_token1] = ACTIONS(3910), + [aux_sym__val_number_decimal_token2] = ACTIONS(3912), + [aux_sym__val_number_decimal_token3] = ACTIONS(3914), + [aux_sym__val_number_decimal_token4] = ACTIONS(3916), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3850), - [aux_sym__val_number_token5] = ACTIONS(3850), - [aux_sym__val_number_token6] = ACTIONS(3850), + [aux_sym__val_number_token4] = ACTIONS(3918), + [aux_sym__val_number_token5] = ACTIONS(3918), + [aux_sym__val_number_token6] = ACTIONS(3918), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3852), + [sym_val_date] = ACTIONS(3920), [anon_sym_DQUOTE] = ACTIONS(1262), [sym__str_single_quotes] = ACTIONS(1264), [sym__str_back_ticks] = ACTIONS(1264), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(1266), }, - [1321] = { - [sym__expr_parenthesized_immediate] = STATE(1713), - [sym__immediate_decimal] = STATE(1688), - [sym_val_variable] = STATE(1713), - [sym_comment] = STATE(1321), + [1213] = { + [sym_path] = STATE(1321), + [sym_comment] = STATE(1213), + [aux_sym_cell_path_repeat1] = STATE(1217), + [ts_builtin_sym_end] = ACTIONS(940), + [anon_sym_EQ] = ACTIONS(938), + [anon_sym_PLUS_EQ] = ACTIONS(940), + [anon_sym_DASH_EQ] = ACTIONS(940), + [anon_sym_STAR_EQ] = ACTIONS(940), + [anon_sym_SLASH_EQ] = ACTIONS(940), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(940), + [sym__newline] = ACTIONS(940), + [anon_sym_SEMI] = ACTIONS(940), + [anon_sym_PIPE] = ACTIONS(940), + [anon_sym_err_GT_PIPE] = ACTIONS(940), + [anon_sym_out_GT_PIPE] = ACTIONS(940), + [anon_sym_e_GT_PIPE] = ACTIONS(940), + [anon_sym_o_GT_PIPE] = ACTIONS(940), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(940), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(940), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(940), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(940), + [anon_sym_GT2] = ACTIONS(938), + [anon_sym_DASH2] = ACTIONS(938), + [anon_sym_in2] = ACTIONS(940), + [anon_sym_STAR2] = ACTIONS(938), + [anon_sym_and2] = ACTIONS(940), + [anon_sym_xor2] = ACTIONS(940), + [anon_sym_or2] = ACTIONS(940), + [anon_sym_not_DASHin2] = ACTIONS(940), + [anon_sym_has2] = ACTIONS(940), + [anon_sym_not_DASHhas2] = ACTIONS(940), + [anon_sym_starts_DASHwith2] = ACTIONS(940), + [anon_sym_ends_DASHwith2] = ACTIONS(940), + [anon_sym_EQ_EQ2] = ACTIONS(940), + [anon_sym_BANG_EQ2] = ACTIONS(940), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ2] = ACTIONS(940), + [anon_sym_GT_EQ2] = ACTIONS(940), + [anon_sym_EQ_TILDE2] = ACTIONS(940), + [anon_sym_BANG_TILDE2] = ACTIONS(940), + [anon_sym_STAR_STAR2] = ACTIONS(940), + [anon_sym_PLUS_PLUS2] = ACTIONS(938), + [anon_sym_SLASH2] = ACTIONS(938), + [anon_sym_mod2] = ACTIONS(940), + [anon_sym_SLASH_SLASH2] = ACTIONS(940), + [anon_sym_PLUS2] = ACTIONS(938), + [anon_sym_bit_DASHshl2] = ACTIONS(940), + [anon_sym_bit_DASHshr2] = ACTIONS(940), + [anon_sym_bit_DASHand2] = ACTIONS(940), + [anon_sym_bit_DASHxor2] = ACTIONS(940), + [anon_sym_bit_DASHor2] = ACTIONS(940), + [anon_sym_DOT_DOT2] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(940), + [anon_sym_DOT_DOT_LT2] = ACTIONS(940), + [anon_sym_DOT2] = ACTIONS(3979), + [anon_sym_err_GT] = ACTIONS(938), + [anon_sym_out_GT] = ACTIONS(938), + [anon_sym_e_GT] = ACTIONS(938), + [anon_sym_o_GT] = ACTIONS(938), + [anon_sym_err_PLUSout_GT] = ACTIONS(938), + [anon_sym_out_PLUSerr_GT] = ACTIONS(938), + [anon_sym_o_PLUSe_GT] = ACTIONS(938), + [anon_sym_e_PLUSo_GT] = ACTIONS(938), + [anon_sym_err_GT_GT] = ACTIONS(940), + [anon_sym_out_GT_GT] = ACTIONS(940), + [anon_sym_e_GT_GT] = ACTIONS(940), + [anon_sym_o_GT_GT] = ACTIONS(940), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(940), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(940), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(940), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(940), + [anon_sym_POUND] = ACTIONS(245), + }, + [1214] = { + [sym__expr_parenthesized_immediate] = STATE(2007), + [sym__immediate_decimal] = STATE(1618), + [sym_val_variable] = STATE(2007), + [sym_comment] = STATE(1214), + [ts_builtin_sym_end] = ACTIONS(1445), [sym__newline] = ACTIONS(1445), [anon_sym_SEMI] = ACTIONS(1445), [anon_sym_PIPE] = ACTIONS(1445), @@ -204676,46 +194330,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1445), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1445), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1445), - [anon_sym_RPAREN] = ACTIONS(1445), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_GT2] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_DOLLAR] = ACTIONS(4043), + [anon_sym_DASH_DASH] = ACTIONS(1445), [anon_sym_DASH2] = ACTIONS(1431), - [anon_sym_in2] = ACTIONS(1445), [anon_sym_LBRACE] = ACTIONS(1445), - [anon_sym_RBRACE] = ACTIONS(1445), - [anon_sym_STAR2] = ACTIONS(1431), - [anon_sym_and2] = ACTIONS(1445), - [anon_sym_xor2] = ACTIONS(1445), - [anon_sym_or2] = ACTIONS(1445), - [anon_sym_not_DASHin2] = ACTIONS(1445), - [anon_sym_has2] = ACTIONS(1445), - [anon_sym_not_DASHhas2] = ACTIONS(1445), - [anon_sym_starts_DASHwith2] = ACTIONS(1445), - [anon_sym_ends_DASHwith2] = ACTIONS(1445), - [anon_sym_EQ_EQ2] = ACTIONS(1445), - [anon_sym_BANG_EQ2] = ACTIONS(1445), - [anon_sym_LT2] = ACTIONS(1431), - [anon_sym_LT_EQ2] = ACTIONS(1445), - [anon_sym_GT_EQ2] = ACTIONS(1445), - [anon_sym_EQ_TILDE2] = ACTIONS(1445), - [anon_sym_BANG_TILDE2] = ACTIONS(1445), - [anon_sym_LPAREN2] = ACTIONS(4075), - [anon_sym_STAR_STAR2] = ACTIONS(1445), - [anon_sym_PLUS_PLUS2] = ACTIONS(1445), - [anon_sym_SLASH2] = ACTIONS(1431), - [anon_sym_mod2] = ACTIONS(1445), - [anon_sym_SLASH_SLASH2] = ACTIONS(1445), - [anon_sym_PLUS2] = ACTIONS(1431), - [anon_sym_bit_DASHshl2] = ACTIONS(1445), - [anon_sym_bit_DASHshr2] = ACTIONS(1445), - [anon_sym_bit_DASHand2] = ACTIONS(1445), - [anon_sym_bit_DASHxor2] = ACTIONS(1445), - [anon_sym_bit_DASHor2] = ACTIONS(1445), - [anon_sym_DOT] = ACTIONS(4457), - [aux_sym__immediate_decimal_token1] = ACTIONS(4079), - [aux_sym__immediate_decimal_token3] = ACTIONS(4079), - [aux_sym__immediate_decimal_token4] = ACTIONS(4081), - [aux_sym__immediate_decimal_token5] = ACTIONS(4083), + [anon_sym_DOT_DOT] = ACTIONS(1431), + [anon_sym_LPAREN2] = ACTIONS(4045), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1445), + [anon_sym_DOT_DOT_LT] = ACTIONS(1445), + [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(1445), + [anon_sym_true] = ACTIONS(1445), + [anon_sym_false] = ACTIONS(1445), + [aux_sym__val_number_decimal_token1] = ACTIONS(1431), + [aux_sym__val_number_decimal_token2] = ACTIONS(1431), + [aux_sym__val_number_decimal_token3] = ACTIONS(1431), + [aux_sym__val_number_decimal_token4] = ACTIONS(1431), + [aux_sym__val_number_token1] = ACTIONS(1445), + [aux_sym__val_number_token2] = ACTIONS(1445), + [aux_sym__val_number_token3] = ACTIONS(1445), + [aux_sym__val_number_token4] = ACTIONS(1445), + [aux_sym__val_number_token5] = ACTIONS(1445), + [aux_sym__val_number_token6] = ACTIONS(1445), + [anon_sym_0b] = ACTIONS(1431), + [anon_sym_0o] = ACTIONS(1431), + [anon_sym_0x] = ACTIONS(1431), + [sym_val_date] = ACTIONS(1445), + [anon_sym_DQUOTE] = ACTIONS(1445), + [sym__str_single_quotes] = ACTIONS(1445), + [sym__str_back_ticks] = ACTIONS(1445), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1445), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1445), [anon_sym_err_GT] = ACTIONS(1431), [anon_sym_out_GT] = ACTIONS(1431), [anon_sym_e_GT] = ACTIONS(1431), @@ -204732,234 +194382,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1445), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1445), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1445), + [aux_sym_unquoted_token1] = ACTIONS(1431), + [aux_sym_unquoted_token2] = ACTIONS(1447), [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1445), }, - [1322] = { - [sym__val_range] = STATE(7723), - [sym__value] = STATE(5300), - [sym_val_nothing] = STATE(2082), - [sym_val_bool] = STATE(7490), - [sym_val_variable] = STATE(2082), - [sym_val_number] = STATE(2082), - [sym__val_number_decimal] = STATE(5641), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(2082), - [sym_val_filesize] = STATE(2082), - [sym_val_binary] = STATE(2082), - [sym_val_string] = STATE(2082), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(2082), - [sym__inter_single_quotes] = STATE(1848), - [sym__inter_double_quotes] = STATE(1849), - [sym_val_list] = STATE(2082), - [sym_val_record] = STATE(2082), - [sym_val_table] = STATE(2082), - [sym_val_closure] = STATE(2082), - [sym_unquoted] = STATE(5276), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1322), - [anon_sym_LBRACK] = ACTIONS(3540), - [anon_sym_LPAREN] = ACTIONS(4191), - [anon_sym_DOLLAR] = ACTIONS(3544), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_DOT_DOT] = ACTIONS(4139), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4141), - [anon_sym_DOT_DOT_LT] = ACTIONS(4141), - [anon_sym_null] = ACTIONS(3838), - [anon_sym_true] = ACTIONS(3840), - [anon_sym_false] = ACTIONS(3840), - [aux_sym__val_number_decimal_token1] = ACTIONS(3842), - [aux_sym__val_number_decimal_token2] = ACTIONS(3844), - [aux_sym__val_number_decimal_token3] = ACTIONS(3846), - [aux_sym__val_number_decimal_token4] = ACTIONS(3848), + [1215] = { + [sym__val_range] = STATE(7094), + [sym__value] = STATE(4967), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(6849), + [sym_val_variable] = STATE(1992), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(5433), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(4968), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1215), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(4037), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_LBRACE] = ACTIONS(3444), + [anon_sym_DOT_DOT] = ACTIONS(4039), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4041), + [anon_sym_DOT_DOT_LT] = ACTIONS(4041), + [anon_sym_null] = ACTIONS(3906), + [anon_sym_true] = ACTIONS(3908), + [anon_sym_false] = ACTIONS(3908), + [aux_sym__val_number_decimal_token1] = ACTIONS(3910), + [aux_sym__val_number_decimal_token2] = ACTIONS(3912), + [aux_sym__val_number_decimal_token3] = ACTIONS(3914), + [aux_sym__val_number_decimal_token4] = ACTIONS(3916), [aux_sym__val_number_token1] = ACTIONS(223), [aux_sym__val_number_token2] = ACTIONS(223), [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(3850), - [aux_sym__val_number_token5] = ACTIONS(3850), - [aux_sym__val_number_token6] = ACTIONS(3850), + [aux_sym__val_number_token4] = ACTIONS(3918), + [aux_sym__val_number_token5] = ACTIONS(3918), + [aux_sym__val_number_token6] = ACTIONS(3918), [anon_sym_0b] = ACTIONS(227), [anon_sym_0o] = ACTIONS(229), [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3852), + [sym_val_date] = ACTIONS(3920), [anon_sym_DQUOTE] = ACTIONS(1262), [sym__str_single_quotes] = ACTIONS(1264), [sym__str_back_ticks] = ACTIONS(1264), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(1266), }, - [1323] = { - [sym_path] = STATE(1381), - [sym_comment] = STATE(1323), - [aux_sym_cell_path_repeat1] = STATE(1323), - [ts_builtin_sym_end] = ACTIONS(937), - [anon_sym_EQ] = ACTIONS(935), - [anon_sym_PLUS_EQ] = ACTIONS(937), - [anon_sym_DASH_EQ] = ACTIONS(937), - [anon_sym_STAR_EQ] = ACTIONS(937), - [anon_sym_SLASH_EQ] = ACTIONS(937), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(937), - [sym__newline] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(937), - [anon_sym_err_GT_PIPE] = ACTIONS(937), - [anon_sym_out_GT_PIPE] = ACTIONS(937), - [anon_sym_e_GT_PIPE] = ACTIONS(937), - [anon_sym_o_GT_PIPE] = ACTIONS(937), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), - [anon_sym_GT2] = ACTIONS(935), - [anon_sym_DASH2] = ACTIONS(935), - [anon_sym_in2] = ACTIONS(937), - [anon_sym_STAR2] = ACTIONS(935), - [anon_sym_and2] = ACTIONS(937), - [anon_sym_xor2] = ACTIONS(937), - [anon_sym_or2] = ACTIONS(937), - [anon_sym_not_DASHin2] = ACTIONS(937), - [anon_sym_has2] = ACTIONS(937), - [anon_sym_not_DASHhas2] = ACTIONS(937), - [anon_sym_starts_DASHwith2] = ACTIONS(937), - [anon_sym_ends_DASHwith2] = ACTIONS(937), - [anon_sym_EQ_EQ2] = ACTIONS(937), - [anon_sym_BANG_EQ2] = ACTIONS(937), - [anon_sym_LT2] = ACTIONS(935), - [anon_sym_LT_EQ2] = ACTIONS(937), - [anon_sym_GT_EQ2] = ACTIONS(937), - [anon_sym_EQ_TILDE2] = ACTIONS(937), - [anon_sym_BANG_TILDE2] = ACTIONS(937), - [anon_sym_STAR_STAR2] = ACTIONS(937), - [anon_sym_PLUS_PLUS2] = ACTIONS(935), - [anon_sym_SLASH2] = ACTIONS(935), - [anon_sym_mod2] = ACTIONS(937), - [anon_sym_SLASH_SLASH2] = ACTIONS(937), - [anon_sym_PLUS2] = ACTIONS(935), - [anon_sym_bit_DASHshl2] = ACTIONS(937), - [anon_sym_bit_DASHshr2] = ACTIONS(937), - [anon_sym_bit_DASHand2] = ACTIONS(937), - [anon_sym_bit_DASHxor2] = ACTIONS(937), - [anon_sym_bit_DASHor2] = ACTIONS(937), - [anon_sym_DOT_DOT2] = ACTIONS(935), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), - [anon_sym_DOT_DOT_LT2] = ACTIONS(937), - [anon_sym_DOT2] = ACTIONS(4459), - [anon_sym_err_GT] = ACTIONS(935), - [anon_sym_out_GT] = ACTIONS(935), - [anon_sym_e_GT] = ACTIONS(935), - [anon_sym_o_GT] = ACTIONS(935), - [anon_sym_err_PLUSout_GT] = ACTIONS(935), - [anon_sym_out_PLUSerr_GT] = ACTIONS(935), - [anon_sym_o_PLUSe_GT] = ACTIONS(935), - [anon_sym_e_PLUSo_GT] = ACTIONS(935), - [anon_sym_err_GT_GT] = ACTIONS(937), - [anon_sym_out_GT_GT] = ACTIONS(937), - [anon_sym_e_GT_GT] = ACTIONS(937), - [anon_sym_o_GT_GT] = ACTIONS(937), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), + [1216] = { + [sym__val_range] = STATE(7094), + [sym__value] = STATE(4991), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(6849), + [sym_val_variable] = STATE(1992), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(5433), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(4992), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1216), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(4037), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_LBRACE] = ACTIONS(3444), + [anon_sym_DOT_DOT] = ACTIONS(4039), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4041), + [anon_sym_DOT_DOT_LT] = ACTIONS(4041), + [anon_sym_null] = ACTIONS(3906), + [anon_sym_true] = ACTIONS(3908), + [anon_sym_false] = ACTIONS(3908), + [aux_sym__val_number_decimal_token1] = ACTIONS(3910), + [aux_sym__val_number_decimal_token2] = ACTIONS(3912), + [aux_sym__val_number_decimal_token3] = ACTIONS(3914), + [aux_sym__val_number_decimal_token4] = ACTIONS(3916), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3918), + [aux_sym__val_number_token5] = ACTIONS(3918), + [aux_sym__val_number_token6] = ACTIONS(3918), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3920), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym__str_single_quotes] = ACTIONS(1264), + [sym__str_back_ticks] = ACTIONS(1264), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1266), }, - [1324] = { - [sym__expr_parenthesized_immediate] = STATE(1936), - [sym__immediate_decimal] = STATE(1937), - [sym_val_variable] = STATE(1936), - [sym_comment] = STATE(1324), - [sym__newline] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1482), - [anon_sym_err_GT_PIPE] = ACTIONS(1482), - [anon_sym_out_GT_PIPE] = ACTIONS(1482), - [anon_sym_e_GT_PIPE] = ACTIONS(1482), - [anon_sym_o_GT_PIPE] = ACTIONS(1482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1482), - [anon_sym_LBRACK] = ACTIONS(1482), - [anon_sym_LPAREN] = ACTIONS(1472), - [anon_sym_RPAREN] = ACTIONS(1482), - [anon_sym_DOLLAR] = ACTIONS(3993), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_DASH2] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_RBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(3995), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1482), - [anon_sym_DOT_DOT_LT] = ACTIONS(1482), - [aux_sym__immediate_decimal_token1] = ACTIONS(4383), - [aux_sym__immediate_decimal_token3] = ACTIONS(4385), - [aux_sym__immediate_decimal_token4] = ACTIONS(4387), - [aux_sym__immediate_decimal_token5] = ACTIONS(4389), - [anon_sym_null] = ACTIONS(1482), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [aux_sym__val_number_decimal_token1] = ACTIONS(1472), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1482), - [aux_sym__val_number_token2] = ACTIONS(1482), - [aux_sym__val_number_token3] = ACTIONS(1482), - [aux_sym__val_number_token4] = ACTIONS(1482), - [aux_sym__val_number_token5] = ACTIONS(1482), - [aux_sym__val_number_token6] = ACTIONS(1482), - [anon_sym_0b] = ACTIONS(1472), - [anon_sym_0o] = ACTIONS(1472), - [anon_sym_0x] = ACTIONS(1472), - [sym_val_date] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym__str_single_quotes] = ACTIONS(1482), - [sym__str_back_ticks] = ACTIONS(1482), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1482), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1482), - [anon_sym_err_GT] = ACTIONS(1472), - [anon_sym_out_GT] = ACTIONS(1472), - [anon_sym_e_GT] = ACTIONS(1472), - [anon_sym_o_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT] = ACTIONS(1472), - [anon_sym_err_GT_GT] = ACTIONS(1482), - [anon_sym_out_GT_GT] = ACTIONS(1482), - [anon_sym_e_GT_GT] = ACTIONS(1482), - [anon_sym_o_GT_GT] = ACTIONS(1482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1482), - [aux_sym_unquoted_token1] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1482), - }, - [1325] = { - [sym_path] = STATE(1381), - [sym_comment] = STATE(1325), - [aux_sym_cell_path_repeat1] = STATE(1323), + [1217] = { + [sym_path] = STATE(1321), + [sym_comment] = STATE(1217), + [aux_sym_cell_path_repeat1] = STATE(1217), [ts_builtin_sym_end] = ACTIONS(933), [anon_sym_EQ] = ACTIONS(931), [anon_sym_PLUS_EQ] = ACTIONS(933), @@ -205011,7 +194590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(931), [anon_sym_DOT_DOT_EQ2] = ACTIONS(933), [anon_sym_DOT_DOT_LT2] = ACTIONS(933), - [anon_sym_DOT2] = ACTIONS(4017), + [anon_sym_DOT2] = ACTIONS(4055), [anon_sym_err_GT] = ACTIONS(931), [anon_sym_out_GT] = ACTIONS(931), [anon_sym_e_GT] = ACTIONS(931), @@ -205030,160 +194609,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(933), [anon_sym_POUND] = ACTIONS(245), }, - [1326] = { - [sym__val_range] = STATE(7723), - [sym__value] = STATE(5325), - [sym_val_nothing] = STATE(4332), - [sym_val_bool] = STATE(5787), - [sym_val_variable] = STATE(4332), - [sym_val_number] = STATE(4332), - [sym__val_number_decimal] = STATE(5315), - [sym__val_number] = STATE(4342), - [sym_val_duration] = STATE(4332), - [sym_val_filesize] = STATE(4332), - [sym_val_binary] = STATE(4332), - [sym_val_string] = STATE(4332), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_val_interpolated] = STATE(4332), - [sym__inter_single_quotes] = STATE(5242), - [sym__inter_double_quotes] = STATE(5247), - [sym_val_list] = STATE(4332), - [sym_val_record] = STATE(4332), - [sym_val_table] = STATE(4332), - [sym_val_closure] = STATE(4332), - [sym_unquoted] = STATE(5303), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1326), - [anon_sym_LBRACK] = ACTIONS(4131), - [anon_sym_LPAREN] = ACTIONS(4133), - [anon_sym_DOLLAR] = ACTIONS(4135), - [anon_sym_LBRACE] = ACTIONS(4137), - [anon_sym_DOT_DOT] = ACTIONS(4139), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4141), - [anon_sym_DOT_DOT_LT] = ACTIONS(4141), - [anon_sym_null] = ACTIONS(4143), - [anon_sym_true] = ACTIONS(4145), - [anon_sym_false] = ACTIONS(4145), - [aux_sym__val_number_decimal_token1] = ACTIONS(4147), - [aux_sym__val_number_decimal_token2] = ACTIONS(4149), - [aux_sym__val_number_decimal_token3] = ACTIONS(4151), - [aux_sym__val_number_decimal_token4] = ACTIONS(4153), - [aux_sym__val_number_token1] = ACTIONS(3675), - [aux_sym__val_number_token2] = ACTIONS(3675), - [aux_sym__val_number_token3] = ACTIONS(3675), - [aux_sym__val_number_token4] = ACTIONS(4155), - [aux_sym__val_number_token5] = ACTIONS(4155), - [aux_sym__val_number_token6] = ACTIONS(4155), - [anon_sym_0b] = ACTIONS(3679), - [anon_sym_0o] = ACTIONS(3681), - [anon_sym_0x] = ACTIONS(3681), - [sym_val_date] = ACTIONS(4157), + [1218] = { + [sym__val_range] = STATE(7094), + [sym__value] = STATE(5067), + [sym_val_nothing] = STATE(4133), + [sym_val_bool] = STATE(5462), + [sym_val_variable] = STATE(4133), + [sym_val_number] = STATE(4133), + [sym__val_number_decimal] = STATE(5070), + [sym__val_number] = STATE(4134), + [sym_val_duration] = STATE(4133), + [sym_val_filesize] = STATE(4133), + [sym_val_binary] = STATE(4133), + [sym_val_string] = STATE(4133), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(4133), + [sym__inter_single_quotes] = STATE(5018), + [sym__inter_double_quotes] = STATE(5024), + [sym_val_list] = STATE(4133), + [sym_val_record] = STATE(4133), + [sym_val_table] = STATE(4133), + [sym_val_closure] = STATE(4133), + [sym_unquoted] = STATE(4945), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1218), + [anon_sym_LBRACK] = ACTIONS(4058), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_DOLLAR] = ACTIONS(4062), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_DOT_DOT] = ACTIONS(4039), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4041), + [anon_sym_DOT_DOT_LT] = ACTIONS(4041), + [anon_sym_null] = ACTIONS(4066), + [anon_sym_true] = ACTIONS(4068), + [anon_sym_false] = ACTIONS(4068), + [aux_sym__val_number_decimal_token1] = ACTIONS(4070), + [aux_sym__val_number_decimal_token2] = ACTIONS(4072), + [aux_sym__val_number_decimal_token3] = ACTIONS(4074), + [aux_sym__val_number_decimal_token4] = ACTIONS(4076), + [aux_sym__val_number_token1] = ACTIONS(3621), + [aux_sym__val_number_token2] = ACTIONS(3621), + [aux_sym__val_number_token3] = ACTIONS(3621), + [aux_sym__val_number_token4] = ACTIONS(4078), + [aux_sym__val_number_token5] = ACTIONS(4078), + [aux_sym__val_number_token6] = ACTIONS(4078), + [anon_sym_0b] = ACTIONS(3625), + [anon_sym_0o] = ACTIONS(3627), + [anon_sym_0x] = ACTIONS(3627), + [sym_val_date] = ACTIONS(4080), [anon_sym_DQUOTE] = ACTIONS(1262), [sym__str_single_quotes] = ACTIONS(1264), [sym__str_back_ticks] = ACTIONS(1264), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4159), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4161), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4084), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(1266), }, - [1327] = { - [sym__expr_parenthesized_immediate] = STATE(7524), - [sym_comment] = STATE(1327), - [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(1579), - [anon_sym_RPAREN] = ACTIONS(1591), - [anon_sym_DOLLAR] = ACTIONS(1579), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_DASH2] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1591), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1579), - [anon_sym_LPAREN2] = ACTIONS(4462), - [anon_sym_DOT_DOT2] = ACTIONS(4464), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1579), - [anon_sym_DOT_DOT_LT] = ACTIONS(1579), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4466), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4466), - [anon_sym_null] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [aux_sym__val_number_decimal_token1] = ACTIONS(1579), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [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(1579), - [sym_filesize_unit] = ACTIONS(4468), - [sym_duration_unit] = ACTIONS(4470), - [anon_sym_0o] = ACTIONS(1579), - [anon_sym_0x] = ACTIONS(1579), - [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(1579), - [anon_sym_out_GT] = ACTIONS(1579), - [anon_sym_e_GT] = ACTIONS(1579), - [anon_sym_o_GT] = ACTIONS(1579), - [anon_sym_err_PLUSout_GT] = ACTIONS(1579), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), - [anon_sym_o_PLUSe_GT] = ACTIONS(1579), - [anon_sym_e_PLUSo_GT] = ACTIONS(1579), - [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(1579), - [aux_sym_unquoted_token2] = ACTIONS(4472), + [1219] = { + [sym__val_range] = STATE(7179), + [sym__value] = STATE(4967), + [sym_val_nothing] = STATE(4133), + [sym_val_bool] = STATE(5462), + [sym_val_variable] = STATE(4133), + [sym_val_number] = STATE(4133), + [sym__val_number_decimal] = STATE(4970), + [sym__val_number] = STATE(4134), + [sym_val_duration] = STATE(4133), + [sym_val_filesize] = STATE(4133), + [sym_val_binary] = STATE(4133), + [sym_val_string] = STATE(4133), + [sym__raw_str] = STATE(5384), + [sym__str_double_quotes] = STATE(5384), + [sym_val_interpolated] = STATE(4133), + [sym__inter_single_quotes] = STATE(4752), + [sym__inter_double_quotes] = STATE(4753), + [sym_val_list] = STATE(4133), + [sym_val_record] = STATE(4133), + [sym_val_table] = STATE(4133), + [sym_val_closure] = STATE(4133), + [sym_unquoted] = STATE(4968), + [sym__unquoted_anonymous_prefix] = STATE(7202), + [sym_comment] = STATE(1219), + [anon_sym_LBRACK] = ACTIONS(4086), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_DOLLAR] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_DOT_DOT] = ACTIONS(4092), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4094), + [anon_sym_DOT_DOT_LT] = ACTIONS(4094), + [anon_sym_null] = ACTIONS(4066), + [anon_sym_true] = ACTIONS(4068), + [anon_sym_false] = ACTIONS(4068), + [aux_sym__val_number_decimal_token1] = ACTIONS(4096), + [aux_sym__val_number_decimal_token2] = ACTIONS(4098), + [aux_sym__val_number_decimal_token3] = ACTIONS(4100), + [aux_sym__val_number_decimal_token4] = ACTIONS(4102), + [aux_sym__val_number_token1] = ACTIONS(3621), + [aux_sym__val_number_token2] = ACTIONS(3621), + [aux_sym__val_number_token3] = ACTIONS(3621), + [aux_sym__val_number_token4] = ACTIONS(4104), + [aux_sym__val_number_token5] = ACTIONS(4104), + [aux_sym__val_number_token6] = ACTIONS(4104), + [anon_sym_0b] = ACTIONS(3625), + [anon_sym_0o] = ACTIONS(3627), + [anon_sym_0x] = ACTIONS(3627), + [sym_val_date] = ACTIONS(4080), + [anon_sym_DQUOTE] = ACTIONS(4106), + [sym__str_single_quotes] = ACTIONS(4108), + [sym__str_back_ticks] = ACTIONS(4108), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3635), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3637), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(4110), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4112), + }, + [1220] = { + [sym__val_range] = STATE(7094), + [sym__value] = STATE(4991), + [sym_val_nothing] = STATE(4133), + [sym_val_bool] = STATE(5462), + [sym_val_variable] = STATE(4133), + [sym_val_number] = STATE(4133), + [sym__val_number_decimal] = STATE(5070), + [sym__val_number] = STATE(4134), + [sym_val_duration] = STATE(4133), + [sym_val_filesize] = STATE(4133), + [sym_val_binary] = STATE(4133), + [sym_val_string] = STATE(4133), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(4133), + [sym__inter_single_quotes] = STATE(5018), + [sym__inter_double_quotes] = STATE(5024), + [sym_val_list] = STATE(4133), + [sym_val_record] = STATE(4133), + [sym_val_table] = STATE(4133), + [sym_val_closure] = STATE(4133), + [sym_unquoted] = STATE(4992), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1220), + [anon_sym_LBRACK] = ACTIONS(4058), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_DOLLAR] = ACTIONS(4062), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_DOT_DOT] = ACTIONS(4039), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4041), + [anon_sym_DOT_DOT_LT] = ACTIONS(4041), + [anon_sym_null] = ACTIONS(4066), + [anon_sym_true] = ACTIONS(4068), + [anon_sym_false] = ACTIONS(4068), + [aux_sym__val_number_decimal_token1] = ACTIONS(4070), + [aux_sym__val_number_decimal_token2] = ACTIONS(4072), + [aux_sym__val_number_decimal_token3] = ACTIONS(4074), + [aux_sym__val_number_decimal_token4] = ACTIONS(4076), + [aux_sym__val_number_token1] = ACTIONS(3621), + [aux_sym__val_number_token2] = ACTIONS(3621), + [aux_sym__val_number_token3] = ACTIONS(3621), + [aux_sym__val_number_token4] = ACTIONS(4078), + [aux_sym__val_number_token5] = ACTIONS(4078), + [aux_sym__val_number_token6] = ACTIONS(4078), + [anon_sym_0b] = ACTIONS(3625), + [anon_sym_0o] = ACTIONS(3627), + [anon_sym_0x] = ACTIONS(3627), + [sym_val_date] = ACTIONS(4080), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym__str_single_quotes] = ACTIONS(1264), + [sym__str_back_ticks] = ACTIONS(1264), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4084), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1591), + [sym_raw_string_begin] = ACTIONS(1266), }, - [1328] = { - [sym__expr_parenthesized_immediate] = STATE(2016), - [sym__immediate_decimal] = STATE(1695), - [sym_val_variable] = STATE(2016), - [sym_comment] = STATE(1328), - [ts_builtin_sym_end] = ACTIONS(1445), + [1221] = { + [sym__expr_parenthesized_immediate] = STATE(1646), + [sym__immediate_decimal] = STATE(1561), + [sym_val_variable] = STATE(1646), + [sym_comment] = STATE(1221), [sym__newline] = ACTIONS(1445), [anon_sym_SEMI] = ACTIONS(1445), [anon_sym_PIPE] = ACTIONS(1445), @@ -205195,42 +194847,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1445), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1445), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1445), - [anon_sym_LBRACK] = ACTIONS(1445), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_DOLLAR] = ACTIONS(4209), - [anon_sym_DASH_DASH] = ACTIONS(1445), + [anon_sym_RPAREN] = ACTIONS(1445), + [anon_sym_DOLLAR] = ACTIONS(3550), + [anon_sym_GT2] = ACTIONS(1431), [anon_sym_DASH2] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(1445), - [anon_sym_DOT_DOT] = ACTIONS(1431), - [anon_sym_LPAREN2] = ACTIONS(4293), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1445), - [anon_sym_DOT_DOT_LT] = ACTIONS(1445), - [aux_sym__immediate_decimal_token1] = ACTIONS(4295), - [aux_sym__immediate_decimal_token3] = ACTIONS(4297), - [aux_sym__immediate_decimal_token4] = ACTIONS(4299), - [aux_sym__immediate_decimal_token5] = ACTIONS(4301), - [anon_sym_null] = ACTIONS(1445), - [anon_sym_true] = ACTIONS(1445), - [anon_sym_false] = ACTIONS(1445), - [aux_sym__val_number_decimal_token1] = ACTIONS(1431), - [aux_sym__val_number_decimal_token2] = ACTIONS(1431), - [aux_sym__val_number_decimal_token3] = ACTIONS(1431), - [aux_sym__val_number_decimal_token4] = ACTIONS(1431), - [aux_sym__val_number_token1] = ACTIONS(1445), - [aux_sym__val_number_token2] = ACTIONS(1445), - [aux_sym__val_number_token3] = ACTIONS(1445), - [aux_sym__val_number_token4] = ACTIONS(1445), - [aux_sym__val_number_token5] = ACTIONS(1445), - [aux_sym__val_number_token6] = ACTIONS(1445), - [anon_sym_0b] = ACTIONS(1431), - [anon_sym_0o] = ACTIONS(1431), - [anon_sym_0x] = ACTIONS(1431), - [sym_val_date] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1445), - [sym__str_single_quotes] = ACTIONS(1445), - [sym__str_back_ticks] = ACTIONS(1445), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1445), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1445), + [anon_sym_in2] = ACTIONS(1445), + [anon_sym_RBRACE] = ACTIONS(1445), + [anon_sym_STAR2] = ACTIONS(1431), + [anon_sym_and2] = ACTIONS(1445), + [anon_sym_xor2] = ACTIONS(1445), + [anon_sym_or2] = ACTIONS(1445), + [anon_sym_not_DASHin2] = ACTIONS(1445), + [anon_sym_has2] = ACTIONS(1445), + [anon_sym_not_DASHhas2] = ACTIONS(1445), + [anon_sym_starts_DASHwith2] = ACTIONS(1445), + [anon_sym_ends_DASHwith2] = ACTIONS(1445), + [anon_sym_EQ_EQ2] = ACTIONS(1445), + [anon_sym_BANG_EQ2] = ACTIONS(1445), + [anon_sym_LT2] = ACTIONS(1431), + [anon_sym_LT_EQ2] = ACTIONS(1445), + [anon_sym_GT_EQ2] = ACTIONS(1445), + [anon_sym_EQ_TILDE2] = ACTIONS(1445), + [anon_sym_BANG_TILDE2] = ACTIONS(1445), + [anon_sym_LPAREN2] = ACTIONS(4027), + [anon_sym_STAR_STAR2] = ACTIONS(1445), + [anon_sym_PLUS_PLUS2] = ACTIONS(1445), + [anon_sym_SLASH2] = ACTIONS(1431), + [anon_sym_mod2] = ACTIONS(1445), + [anon_sym_SLASH_SLASH2] = ACTIONS(1445), + [anon_sym_PLUS2] = ACTIONS(1431), + [anon_sym_bit_DASHshl2] = ACTIONS(1445), + [anon_sym_bit_DASHshr2] = ACTIONS(1445), + [anon_sym_bit_DASHand2] = ACTIONS(1445), + [anon_sym_bit_DASHxor2] = ACTIONS(1445), + [anon_sym_bit_DASHor2] = ACTIONS(1445), + [anon_sym_DOT] = ACTIONS(4114), + [aux_sym__immediate_decimal_token1] = ACTIONS(4031), + [aux_sym__immediate_decimal_token3] = ACTIONS(4031), + [aux_sym__immediate_decimal_token4] = ACTIONS(4033), + [aux_sym__immediate_decimal_token5] = ACTIONS(4035), [anon_sym_err_GT] = ACTIONS(1431), [anon_sym_out_GT] = ACTIONS(1431), [anon_sym_e_GT] = ACTIONS(1431), @@ -205247,16 +194902,1198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1445), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1445), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1445), - [aux_sym_unquoted_token1] = ACTIONS(1431), [aux_sym_unquoted_token2] = ACTIONS(1447), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1445), }, - [1329] = { - [sym__expr_parenthesized_immediate] = STATE(1950), - [sym__immediate_decimal] = STATE(1951), - [sym_val_variable] = STATE(1950), - [sym_comment] = STATE(1329), + [1222] = { + [sym__val_range] = STATE(7105), + [sym__value] = STATE(2891), + [sym_val_nothing] = STATE(2860), + [sym_val_bool] = STATE(2745), + [sym_val_variable] = STATE(2860), + [sym_val_number] = STATE(2860), + [sym__val_number_decimal] = STATE(2463), + [sym__val_number] = STATE(2863), + [sym_val_duration] = STATE(2860), + [sym_val_filesize] = STATE(2860), + [sym_val_binary] = STATE(2860), + [sym_val_string] = STATE(2860), + [sym__raw_str] = STATE(2866), + [sym__str_double_quotes] = STATE(2866), + [sym_val_interpolated] = STATE(2860), + [sym__inter_single_quotes] = STATE(2822), + [sym__inter_double_quotes] = STATE(2854), + [sym_val_list] = STATE(2860), + [sym_val_record] = STATE(2860), + [sym_val_table] = STATE(2860), + [sym_val_closure] = STATE(2860), + [sym_unquoted] = STATE(2897), + [sym__unquoted_anonymous_prefix] = STATE(7128), + [sym_comment] = STATE(1222), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_DOLLAR] = ACTIONS(4120), + [anon_sym_LBRACE] = ACTIONS(4122), + [anon_sym_DOT_DOT] = ACTIONS(4124), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4126), + [anon_sym_DOT_DOT_LT] = ACTIONS(4126), + [anon_sym_null] = ACTIONS(4128), + [anon_sym_true] = ACTIONS(4130), + [anon_sym_false] = ACTIONS(4130), + [aux_sym__val_number_decimal_token1] = ACTIONS(4132), + [aux_sym__val_number_decimal_token2] = ACTIONS(4134), + [aux_sym__val_number_decimal_token3] = ACTIONS(4136), + [aux_sym__val_number_decimal_token4] = ACTIONS(4138), + [aux_sym__val_number_token1] = ACTIONS(4140), + [aux_sym__val_number_token2] = ACTIONS(4140), + [aux_sym__val_number_token3] = ACTIONS(4140), + [aux_sym__val_number_token4] = ACTIONS(4142), + [aux_sym__val_number_token5] = ACTIONS(4142), + [aux_sym__val_number_token6] = ACTIONS(4142), + [anon_sym_0b] = ACTIONS(4144), + [anon_sym_0o] = ACTIONS(4146), + [anon_sym_0x] = ACTIONS(4146), + [sym_val_date] = ACTIONS(4148), + [anon_sym_DQUOTE] = ACTIONS(4150), + [sym__str_single_quotes] = ACTIONS(4152), + [sym__str_back_ticks] = ACTIONS(4152), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4154), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4156), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(4158), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4160), + }, + [1223] = { + [sym__match_pattern_expression] = STATE(3033), + [sym__match_pattern_value] = STATE(3028), + [sym__match_pattern_list] = STATE(3041), + [sym__match_pattern_rest] = STATE(7157), + [sym__match_pattern_record] = STATE(3043), + [sym_expr_parenthesized] = STATE(2771), + [sym_val_range] = STATE(3028), + [sym__val_range] = STATE(7219), + [sym_val_nothing] = STATE(3045), + [sym_val_bool] = STATE(2949), + [sym_val_variable] = STATE(2776), + [sym_val_number] = STATE(3045), + [sym__val_number_decimal] = STATE(2606), + [sym__val_number] = STATE(2982), + [sym_val_duration] = STATE(3045), + [sym_val_filesize] = STATE(3045), + [sym_val_binary] = STATE(3045), + [sym_val_string] = STATE(3045), + [sym__raw_str] = STATE(2988), + [sym__str_double_quotes] = STATE(2988), + [sym_val_table] = STATE(3045), + [sym__unquoted_in_list] = STATE(3033), + [sym__unquoted_anonymous_prefix] = STATE(7314), + [sym_comment] = STATE(1223), + [aux_sym__match_pattern_list_repeat1] = STATE(1289), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_RBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(3762), + [anon_sym_DOLLAR] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3766), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3770), + [anon_sym_DOT_DOT_LT] = ACTIONS(3770), + [anon_sym_null] = ACTIONS(3772), + [anon_sym_true] = ACTIONS(3774), + [anon_sym_false] = ACTIONS(3774), + [aux_sym__val_number_decimal_token1] = ACTIONS(3776), + [aux_sym__val_number_decimal_token2] = ACTIONS(3778), + [aux_sym__val_number_decimal_token3] = ACTIONS(3780), + [aux_sym__val_number_decimal_token4] = ACTIONS(3782), + [aux_sym__val_number_token1] = ACTIONS(3784), + [aux_sym__val_number_token2] = ACTIONS(3784), + [aux_sym__val_number_token3] = ACTIONS(3784), + [aux_sym__val_number_token4] = ACTIONS(3786), + [aux_sym__val_number_token5] = ACTIONS(3786), + [aux_sym__val_number_token6] = ACTIONS(3786), + [anon_sym_0b] = ACTIONS(3788), + [anon_sym_0o] = ACTIONS(3790), + [anon_sym_0x] = ACTIONS(3790), + [sym_val_date] = ACTIONS(3792), + [anon_sym_DQUOTE] = ACTIONS(3794), + [sym__str_single_quotes] = ACTIONS(3796), + [sym__str_back_ticks] = ACTIONS(3796), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3798), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3800), + }, + [1224] = { + [sym__val_range] = STATE(7179), + [sym__value] = STATE(5060), + [sym_val_nothing] = STATE(4133), + [sym_val_bool] = STATE(5462), + [sym_val_variable] = STATE(4133), + [sym_val_number] = STATE(4133), + [sym__val_number_decimal] = STATE(4970), + [sym__val_number] = STATE(4134), + [sym_val_duration] = STATE(4133), + [sym_val_filesize] = STATE(4133), + [sym_val_binary] = STATE(4133), + [sym_val_string] = STATE(4133), + [sym__raw_str] = STATE(5384), + [sym__str_double_quotes] = STATE(5384), + [sym_val_interpolated] = STATE(4133), + [sym__inter_single_quotes] = STATE(4752), + [sym__inter_double_quotes] = STATE(4753), + [sym_val_list] = STATE(4133), + [sym_val_record] = STATE(4133), + [sym_val_table] = STATE(4133), + [sym_val_closure] = STATE(4133), + [sym_unquoted] = STATE(5061), + [sym__unquoted_anonymous_prefix] = STATE(7202), + [sym_comment] = STATE(1224), + [anon_sym_LBRACK] = ACTIONS(4086), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_DOLLAR] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_DOT_DOT] = ACTIONS(4092), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4094), + [anon_sym_DOT_DOT_LT] = ACTIONS(4094), + [anon_sym_null] = ACTIONS(4066), + [anon_sym_true] = ACTIONS(4068), + [anon_sym_false] = ACTIONS(4068), + [aux_sym__val_number_decimal_token1] = ACTIONS(4096), + [aux_sym__val_number_decimal_token2] = ACTIONS(4098), + [aux_sym__val_number_decimal_token3] = ACTIONS(4100), + [aux_sym__val_number_decimal_token4] = ACTIONS(4102), + [aux_sym__val_number_token1] = ACTIONS(3621), + [aux_sym__val_number_token2] = ACTIONS(3621), + [aux_sym__val_number_token3] = ACTIONS(3621), + [aux_sym__val_number_token4] = ACTIONS(4104), + [aux_sym__val_number_token5] = ACTIONS(4104), + [aux_sym__val_number_token6] = ACTIONS(4104), + [anon_sym_0b] = ACTIONS(3625), + [anon_sym_0o] = ACTIONS(3627), + [anon_sym_0x] = ACTIONS(3627), + [sym_val_date] = ACTIONS(4080), + [anon_sym_DQUOTE] = ACTIONS(4106), + [sym__str_single_quotes] = ACTIONS(4108), + [sym__str_back_ticks] = ACTIONS(4108), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3635), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3637), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(4110), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4112), + }, + [1225] = { + [sym__val_range] = STATE(7094), + [sym__value] = STATE(5060), + [sym_val_nothing] = STATE(1992), + [sym_val_bool] = STATE(6849), + [sym_val_variable] = STATE(1992), + [sym_val_number] = STATE(1992), + [sym__val_number_decimal] = STATE(5433), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(1992), + [sym_val_filesize] = STATE(1992), + [sym_val_binary] = STATE(1992), + [sym_val_string] = STATE(1992), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(1992), + [sym__inter_single_quotes] = STATE(1842), + [sym__inter_double_quotes] = STATE(1843), + [sym_val_list] = STATE(1992), + [sym_val_record] = STATE(1992), + [sym_val_table] = STATE(1992), + [sym_val_closure] = STATE(1992), + [sym_unquoted] = STATE(5061), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1225), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(4037), + [anon_sym_DOLLAR] = ACTIONS(3442), + [anon_sym_LBRACE] = ACTIONS(3444), + [anon_sym_DOT_DOT] = ACTIONS(4039), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4041), + [anon_sym_DOT_DOT_LT] = ACTIONS(4041), + [anon_sym_null] = ACTIONS(3906), + [anon_sym_true] = ACTIONS(3908), + [anon_sym_false] = ACTIONS(3908), + [aux_sym__val_number_decimal_token1] = ACTIONS(3910), + [aux_sym__val_number_decimal_token2] = ACTIONS(3912), + [aux_sym__val_number_decimal_token3] = ACTIONS(3914), + [aux_sym__val_number_decimal_token4] = ACTIONS(3916), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(3918), + [aux_sym__val_number_token5] = ACTIONS(3918), + [aux_sym__val_number_token6] = ACTIONS(3918), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(3920), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym__str_single_quotes] = ACTIONS(1264), + [sym__str_back_ticks] = ACTIONS(1264), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1266), + }, + [1226] = { + [sym__match_pattern_expression] = STATE(3033), + [sym__match_pattern_value] = STATE(3028), + [sym__match_pattern_list] = STATE(3041), + [sym__match_pattern_rest] = STATE(7189), + [sym__match_pattern_record] = STATE(3043), + [sym_expr_parenthesized] = STATE(2771), + [sym_val_range] = STATE(3028), + [sym__val_range] = STATE(7219), + [sym_val_nothing] = STATE(3045), + [sym_val_bool] = STATE(2949), + [sym_val_variable] = STATE(2776), + [sym_val_number] = STATE(3045), + [sym__val_number_decimal] = STATE(2606), + [sym__val_number] = STATE(2982), + [sym_val_duration] = STATE(3045), + [sym_val_filesize] = STATE(3045), + [sym_val_binary] = STATE(3045), + [sym_val_string] = STATE(3045), + [sym__raw_str] = STATE(2988), + [sym__str_double_quotes] = STATE(2988), + [sym_val_table] = STATE(3045), + [sym__unquoted_in_list] = STATE(3033), + [sym__unquoted_anonymous_prefix] = STATE(7314), + [sym_comment] = STATE(1226), + [aux_sym__match_pattern_list_repeat1] = STATE(1289), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_RBRACK] = ACTIONS(4168), + [anon_sym_LPAREN] = ACTIONS(3762), + [anon_sym_DOLLAR] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3766), + [anon_sym_DOT_DOT] = ACTIONS(4170), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3770), + [anon_sym_DOT_DOT_LT] = ACTIONS(3770), + [anon_sym_null] = ACTIONS(3772), + [anon_sym_true] = ACTIONS(3774), + [anon_sym_false] = ACTIONS(3774), + [aux_sym__val_number_decimal_token1] = ACTIONS(3776), + [aux_sym__val_number_decimal_token2] = ACTIONS(3778), + [aux_sym__val_number_decimal_token3] = ACTIONS(3780), + [aux_sym__val_number_decimal_token4] = ACTIONS(3782), + [aux_sym__val_number_token1] = ACTIONS(3784), + [aux_sym__val_number_token2] = ACTIONS(3784), + [aux_sym__val_number_token3] = ACTIONS(3784), + [aux_sym__val_number_token4] = ACTIONS(3786), + [aux_sym__val_number_token5] = ACTIONS(3786), + [aux_sym__val_number_token6] = ACTIONS(3786), + [anon_sym_0b] = ACTIONS(3788), + [anon_sym_0o] = ACTIONS(3790), + [anon_sym_0x] = ACTIONS(3790), + [sym_val_date] = ACTIONS(3792), + [anon_sym_DQUOTE] = ACTIONS(3794), + [sym__str_single_quotes] = ACTIONS(3796), + [sym__str_back_ticks] = ACTIONS(3796), + [anon_sym_err_GT] = ACTIONS(2530), + [anon_sym_out_GT] = ACTIONS(2530), + [anon_sym_e_GT] = ACTIONS(2530), + [anon_sym_o_GT] = ACTIONS(2530), + [anon_sym_err_PLUSout_GT] = ACTIONS(2530), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2530), + [anon_sym_o_PLUSe_GT] = ACTIONS(2530), + [anon_sym_e_PLUSo_GT] = ACTIONS(2530), + [anon_sym_err_GT_GT] = ACTIONS(2532), + [anon_sym_out_GT_GT] = ACTIONS(2532), + [anon_sym_e_GT_GT] = ACTIONS(2532), + [anon_sym_o_GT_GT] = ACTIONS(2532), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2532), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2532), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2532), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2532), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3798), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(3800), + }, + [1227] = { + [sym__expr_parenthesized_immediate] = STATE(1934), + [sym__immediate_decimal] = STATE(1629), + [sym_val_variable] = STATE(1934), + [sym_comment] = STATE(1227), + [ts_builtin_sym_end] = ACTIONS(1475), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_DOLLAR] = ACTIONS(4043), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_DASH2] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_LPAREN2] = ACTIONS(4045), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1475), + [anon_sym_DOT_DOT_LT] = ACTIONS(1475), + [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(1475), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [aux_sym__val_number_decimal_token1] = ACTIONS(1473), + [aux_sym__val_number_decimal_token2] = ACTIONS(1473), + [aux_sym__val_number_decimal_token3] = ACTIONS(1473), + [aux_sym__val_number_decimal_token4] = ACTIONS(1473), + [aux_sym__val_number_token1] = ACTIONS(1475), + [aux_sym__val_number_token2] = ACTIONS(1475), + [aux_sym__val_number_token3] = ACTIONS(1475), + [aux_sym__val_number_token4] = ACTIONS(1475), + [aux_sym__val_number_token5] = ACTIONS(1475), + [aux_sym__val_number_token6] = ACTIONS(1475), + [anon_sym_0b] = ACTIONS(1473), + [anon_sym_0o] = ACTIONS(1473), + [anon_sym_0x] = ACTIONS(1473), + [sym_val_date] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [sym__str_single_quotes] = ACTIONS(1475), + [sym__str_back_ticks] = ACTIONS(1475), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1475), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1475), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token1] = ACTIONS(1473), + [aux_sym_unquoted_token2] = ACTIONS(1477), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1475), + }, + [1228] = { + [sym_comment] = STATE(1228), + [sym__newline] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_err_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_GT_PIPE] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(1501), + [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_LPAREN2] = ACTIONS(1501), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(3965), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [aux_sym__val_number_decimal_token1] = ACTIONS(1499), + [aux_sym__val_number_decimal_token2] = ACTIONS(1501), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1501), + [aux_sym__val_number_token1] = ACTIONS(1501), + [aux_sym__val_number_token2] = ACTIONS(1501), + [aux_sym__val_number_token3] = ACTIONS(1501), + [aux_sym__val_number_token4] = ACTIONS(1501), + [aux_sym__val_number_token5] = ACTIONS(1501), + [aux_sym__val_number_token6] = ACTIONS(1501), + [anon_sym_0b] = ACTIONS(1499), + [sym_filesize_unit] = ACTIONS(1501), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_0o] = ACTIONS(1499), + [anon_sym_0x] = ACTIONS(1499), + [sym_val_date] = ACTIONS(1501), + [anon_sym_DQUOTE] = ACTIONS(1501), + [sym__str_single_quotes] = ACTIONS(1501), + [sym__str_back_ticks] = ACTIONS(1501), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1501), + [anon_sym_out_GT_GT] = ACTIONS(1501), + [anon_sym_e_GT_GT] = ACTIONS(1501), + [anon_sym_o_GT_GT] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1501), + [aux_sym_unquoted_token1] = ACTIONS(1499), + [aux_sym_unquoted_token2] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1501), + }, + [1229] = { + [sym__expr_parenthesized_immediate] = STATE(1644), + [sym__immediate_decimal] = STATE(1645), + [sym_val_variable] = STATE(1644), + [sym_comment] = STATE(1229), + [sym__newline] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1489), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_err_GT_PIPE] = ACTIONS(1489), + [anon_sym_out_GT_PIPE] = ACTIONS(1489), + [anon_sym_e_GT_PIPE] = ACTIONS(1489), + [anon_sym_o_GT_PIPE] = ACTIONS(1489), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1489), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1489), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1489), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1489), + [anon_sym_RPAREN] = ACTIONS(1489), + [anon_sym_DOLLAR] = ACTIONS(3550), + [anon_sym_GT2] = ACTIONS(1479), + [anon_sym_DASH2] = ACTIONS(1479), + [anon_sym_in2] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_RBRACE] = ACTIONS(1489), + [anon_sym_STAR2] = ACTIONS(1479), + [anon_sym_and2] = ACTIONS(1489), + [anon_sym_xor2] = ACTIONS(1489), + [anon_sym_or2] = ACTIONS(1489), + [anon_sym_not_DASHin2] = ACTIONS(1489), + [anon_sym_has2] = ACTIONS(1489), + [anon_sym_not_DASHhas2] = ACTIONS(1489), + [anon_sym_starts_DASHwith2] = ACTIONS(1489), + [anon_sym_ends_DASHwith2] = ACTIONS(1489), + [anon_sym_EQ_EQ2] = ACTIONS(1489), + [anon_sym_BANG_EQ2] = ACTIONS(1489), + [anon_sym_LT2] = ACTIONS(1479), + [anon_sym_LT_EQ2] = ACTIONS(1489), + [anon_sym_GT_EQ2] = ACTIONS(1489), + [anon_sym_EQ_TILDE2] = ACTIONS(1489), + [anon_sym_BANG_TILDE2] = ACTIONS(1489), + [anon_sym_LPAREN2] = ACTIONS(4027), + [anon_sym_STAR_STAR2] = ACTIONS(1489), + [anon_sym_PLUS_PLUS2] = ACTIONS(1489), + [anon_sym_SLASH2] = ACTIONS(1479), + [anon_sym_mod2] = ACTIONS(1489), + [anon_sym_SLASH_SLASH2] = ACTIONS(1489), + [anon_sym_PLUS2] = ACTIONS(1479), + [anon_sym_bit_DASHshl2] = ACTIONS(1489), + [anon_sym_bit_DASHshr2] = ACTIONS(1489), + [anon_sym_bit_DASHand2] = ACTIONS(1489), + [anon_sym_bit_DASHxor2] = ACTIONS(1489), + [anon_sym_bit_DASHor2] = ACTIONS(1489), + [anon_sym_DOT] = ACTIONS(4172), + [aux_sym__immediate_decimal_token1] = ACTIONS(4031), + [aux_sym__immediate_decimal_token3] = ACTIONS(4031), + [aux_sym__immediate_decimal_token4] = ACTIONS(4033), + [aux_sym__immediate_decimal_token5] = ACTIONS(4035), + [anon_sym_err_GT] = ACTIONS(1479), + [anon_sym_out_GT] = ACTIONS(1479), + [anon_sym_e_GT] = ACTIONS(1479), + [anon_sym_o_GT] = ACTIONS(1479), + [anon_sym_err_PLUSout_GT] = ACTIONS(1479), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1479), + [anon_sym_o_PLUSe_GT] = ACTIONS(1479), + [anon_sym_e_PLUSo_GT] = ACTIONS(1479), + [anon_sym_err_GT_GT] = ACTIONS(1489), + [anon_sym_out_GT_GT] = ACTIONS(1489), + [anon_sym_e_GT_GT] = ACTIONS(1489), + [anon_sym_o_GT_GT] = ACTIONS(1489), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1489), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1489), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1489), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1489), + [anon_sym_POUND] = ACTIONS(245), + }, + [1230] = { + [sym__val_range] = STATE(7179), + [sym__value] = STATE(5067), + [sym_val_nothing] = STATE(4133), + [sym_val_bool] = STATE(5462), + [sym_val_variable] = STATE(4133), + [sym_val_number] = STATE(4133), + [sym__val_number_decimal] = STATE(4970), + [sym__val_number] = STATE(4134), + [sym_val_duration] = STATE(4133), + [sym_val_filesize] = STATE(4133), + [sym_val_binary] = STATE(4133), + [sym_val_string] = STATE(4133), + [sym__raw_str] = STATE(5384), + [sym__str_double_quotes] = STATE(5384), + [sym_val_interpolated] = STATE(4133), + [sym__inter_single_quotes] = STATE(4752), + [sym__inter_double_quotes] = STATE(4753), + [sym_val_list] = STATE(4133), + [sym_val_record] = STATE(4133), + [sym_val_table] = STATE(4133), + [sym_val_closure] = STATE(4133), + [sym_unquoted] = STATE(4945), + [sym__unquoted_anonymous_prefix] = STATE(7202), + [sym_comment] = STATE(1230), + [anon_sym_LBRACK] = ACTIONS(4086), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_DOLLAR] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_DOT_DOT] = ACTIONS(4092), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4094), + [anon_sym_DOT_DOT_LT] = ACTIONS(4094), + [anon_sym_null] = ACTIONS(4066), + [anon_sym_true] = ACTIONS(4068), + [anon_sym_false] = ACTIONS(4068), + [aux_sym__val_number_decimal_token1] = ACTIONS(4096), + [aux_sym__val_number_decimal_token2] = ACTIONS(4098), + [aux_sym__val_number_decimal_token3] = ACTIONS(4100), + [aux_sym__val_number_decimal_token4] = ACTIONS(4102), + [aux_sym__val_number_token1] = ACTIONS(3621), + [aux_sym__val_number_token2] = ACTIONS(3621), + [aux_sym__val_number_token3] = ACTIONS(3621), + [aux_sym__val_number_token4] = ACTIONS(4104), + [aux_sym__val_number_token5] = ACTIONS(4104), + [aux_sym__val_number_token6] = ACTIONS(4104), + [anon_sym_0b] = ACTIONS(3625), + [anon_sym_0o] = ACTIONS(3627), + [anon_sym_0x] = ACTIONS(3627), + [sym_val_date] = ACTIONS(4080), + [anon_sym_DQUOTE] = ACTIONS(4106), + [sym__str_single_quotes] = ACTIONS(4108), + [sym__str_back_ticks] = ACTIONS(4108), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3635), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3637), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(4110), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4112), + }, + [1231] = { + [sym_comment] = STATE(1231), + [sym__newline] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1581), + [anon_sym_PIPE] = ACTIONS(1581), + [anon_sym_err_GT_PIPE] = ACTIONS(1581), + [anon_sym_out_GT_PIPE] = ACTIONS(1581), + [anon_sym_e_GT_PIPE] = ACTIONS(1581), + [anon_sym_o_GT_PIPE] = ACTIONS(1581), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1581), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1581), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1581), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1581), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1581), + [anon_sym_DASH2] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_DOT_DOT] = ACTIONS(1579), + [anon_sym_LPAREN2] = ACTIONS(1581), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1579), + [anon_sym_DOT_DOT_LT] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [aux_sym__immediate_decimal_token2] = ACTIONS(4174), + [anon_sym_null] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1581), + [anon_sym_false] = ACTIONS(1581), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [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_0b] = ACTIONS(1579), + [sym_filesize_unit] = ACTIONS(1581), + [sym_duration_unit] = ACTIONS(1581), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1581), + [sym__str_single_quotes] = ACTIONS(1581), + [sym__str_back_ticks] = ACTIONS(1581), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1581), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [anon_sym_err_GT_GT] = ACTIONS(1581), + [anon_sym_out_GT_GT] = ACTIONS(1581), + [anon_sym_e_GT_GT] = ACTIONS(1581), + [anon_sym_o_GT_GT] = ACTIONS(1581), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1581), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1581), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1581), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1581), + [aux_sym_unquoted_token1] = ACTIONS(1579), + [aux_sym_unquoted_token2] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1581), + }, + [1232] = { + [sym__val_range] = STATE(7254), + [sym__value] = STATE(1921), + [sym_val_nothing] = STATE(1981), + [sym_val_bool] = STATE(1730), + [sym_val_variable] = STATE(1981), + [sym_val_number] = STATE(1981), + [sym__val_number_decimal] = STATE(1384), + [sym__val_number] = STATE(1876), + [sym_val_duration] = STATE(1981), + [sym_val_filesize] = STATE(1981), + [sym_val_binary] = STATE(1981), + [sym_val_string] = STATE(1981), + [sym__raw_str] = STATE(1907), + [sym__str_double_quotes] = STATE(1907), + [sym_val_interpolated] = STATE(1981), + [sym__inter_single_quotes] = STATE(1974), + [sym__inter_double_quotes] = STATE(1975), + [sym_val_list] = STATE(1981), + [sym_val_record] = STATE(1981), + [sym_val_table] = STATE(1981), + [sym_val_closure] = STATE(1981), + [sym_unquoted] = STATE(1954), + [sym__unquoted_anonymous_prefix] = STATE(7035), + [sym_comment] = STATE(1232), + [anon_sym_LBRACK] = ACTIONS(2883), + [anon_sym_LPAREN] = ACTIONS(4176), + [anon_sym_DOLLAR] = ACTIONS(4043), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_DOT_DOT] = ACTIONS(4178), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4180), + [anon_sym_DOT_DOT_LT] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4182), + [anon_sym_true] = ACTIONS(4184), + [anon_sym_false] = ACTIONS(4184), + [aux_sym__val_number_decimal_token1] = ACTIONS(4186), + [aux_sym__val_number_decimal_token2] = ACTIONS(4188), + [aux_sym__val_number_decimal_token3] = ACTIONS(4190), + [aux_sym__val_number_decimal_token4] = ACTIONS(4192), + [aux_sym__val_number_token1] = ACTIONS(2911), + [aux_sym__val_number_token2] = ACTIONS(2911), + [aux_sym__val_number_token3] = ACTIONS(2911), + [aux_sym__val_number_token4] = ACTIONS(4194), + [aux_sym__val_number_token5] = ACTIONS(4194), + [aux_sym__val_number_token6] = ACTIONS(4194), + [anon_sym_0b] = ACTIONS(2915), + [anon_sym_0o] = ACTIONS(2917), + [anon_sym_0x] = ACTIONS(2917), + [sym_val_date] = ACTIONS(4196), + [anon_sym_DQUOTE] = ACTIONS(2921), + [sym__str_single_quotes] = ACTIONS(2923), + [sym__str_back_ticks] = ACTIONS(2923), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2925), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2927), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(4198), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2931), + }, + [1233] = { + [sym__val_range] = STATE(7179), + [sym__value] = STATE(4991), + [sym_val_nothing] = STATE(4133), + [sym_val_bool] = STATE(5462), + [sym_val_variable] = STATE(4133), + [sym_val_number] = STATE(4133), + [sym__val_number_decimal] = STATE(4970), + [sym__val_number] = STATE(4134), + [sym_val_duration] = STATE(4133), + [sym_val_filesize] = STATE(4133), + [sym_val_binary] = STATE(4133), + [sym_val_string] = STATE(4133), + [sym__raw_str] = STATE(5384), + [sym__str_double_quotes] = STATE(5384), + [sym_val_interpolated] = STATE(4133), + [sym__inter_single_quotes] = STATE(4752), + [sym__inter_double_quotes] = STATE(4753), + [sym_val_list] = STATE(4133), + [sym_val_record] = STATE(4133), + [sym_val_table] = STATE(4133), + [sym_val_closure] = STATE(4133), + [sym_unquoted] = STATE(4992), + [sym__unquoted_anonymous_prefix] = STATE(7202), + [sym_comment] = STATE(1233), + [anon_sym_LBRACK] = ACTIONS(4086), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_DOLLAR] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_DOT_DOT] = ACTIONS(4092), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4094), + [anon_sym_DOT_DOT_LT] = ACTIONS(4094), + [anon_sym_null] = ACTIONS(4066), + [anon_sym_true] = ACTIONS(4068), + [anon_sym_false] = ACTIONS(4068), + [aux_sym__val_number_decimal_token1] = ACTIONS(4096), + [aux_sym__val_number_decimal_token2] = ACTIONS(4098), + [aux_sym__val_number_decimal_token3] = ACTIONS(4100), + [aux_sym__val_number_decimal_token4] = ACTIONS(4102), + [aux_sym__val_number_token1] = ACTIONS(3621), + [aux_sym__val_number_token2] = ACTIONS(3621), + [aux_sym__val_number_token3] = ACTIONS(3621), + [aux_sym__val_number_token4] = ACTIONS(4104), + [aux_sym__val_number_token5] = ACTIONS(4104), + [aux_sym__val_number_token6] = ACTIONS(4104), + [anon_sym_0b] = ACTIONS(3625), + [anon_sym_0o] = ACTIONS(3627), + [anon_sym_0x] = ACTIONS(3627), + [sym_val_date] = ACTIONS(4080), + [anon_sym_DQUOTE] = ACTIONS(4106), + [sym__str_single_quotes] = ACTIONS(4108), + [sym__str_back_ticks] = ACTIONS(4108), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3635), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3637), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(4110), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4112), + }, + [1234] = { + [sym__expr_parenthesized_immediate] = STATE(1793), + [sym__immediate_decimal] = STATE(1794), + [sym_val_variable] = STATE(1793), + [sym_comment] = STATE(1234), + [sym__newline] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1489), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_err_GT_PIPE] = ACTIONS(1489), + [anon_sym_out_GT_PIPE] = ACTIONS(1489), + [anon_sym_e_GT_PIPE] = ACTIONS(1489), + [anon_sym_o_GT_PIPE] = ACTIONS(1489), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1489), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1489), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1489), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_RPAREN] = ACTIONS(1489), + [anon_sym_DOLLAR] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(1489), + [anon_sym_DASH2] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_RBRACE] = ACTIONS(1489), + [anon_sym_DOT_DOT] = ACTIONS(1479), + [anon_sym_LPAREN2] = ACTIONS(3949), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1489), + [anon_sym_DOT_DOT_LT] = ACTIONS(1489), + [aux_sym__immediate_decimal_token1] = ACTIONS(4200), + [aux_sym__immediate_decimal_token3] = ACTIONS(4202), + [aux_sym__immediate_decimal_token4] = ACTIONS(4204), + [aux_sym__immediate_decimal_token5] = ACTIONS(4206), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [aux_sym__val_number_decimal_token1] = ACTIONS(1479), + [aux_sym__val_number_decimal_token2] = ACTIONS(1479), + [aux_sym__val_number_decimal_token3] = ACTIONS(1479), + [aux_sym__val_number_decimal_token4] = ACTIONS(1479), + [aux_sym__val_number_token1] = ACTIONS(1489), + [aux_sym__val_number_token2] = ACTIONS(1489), + [aux_sym__val_number_token3] = ACTIONS(1489), + [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(1479), + [anon_sym_0o] = ACTIONS(1479), + [anon_sym_0x] = ACTIONS(1479), + [sym_val_date] = ACTIONS(1489), + [anon_sym_DQUOTE] = ACTIONS(1489), + [sym__str_single_quotes] = ACTIONS(1489), + [sym__str_back_ticks] = ACTIONS(1489), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1489), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1489), + [anon_sym_err_GT] = ACTIONS(1479), + [anon_sym_out_GT] = ACTIONS(1479), + [anon_sym_e_GT] = ACTIONS(1479), + [anon_sym_o_GT] = ACTIONS(1479), + [anon_sym_err_PLUSout_GT] = ACTIONS(1479), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1479), + [anon_sym_o_PLUSe_GT] = ACTIONS(1479), + [anon_sym_e_PLUSo_GT] = ACTIONS(1479), + [anon_sym_err_GT_GT] = ACTIONS(1489), + [anon_sym_out_GT_GT] = ACTIONS(1489), + [anon_sym_e_GT_GT] = ACTIONS(1489), + [anon_sym_o_GT_GT] = ACTIONS(1489), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1489), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1489), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1489), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1489), + [aux_sym_unquoted_token1] = ACTIONS(1479), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1489), + }, + [1235] = { + [sym__val_range] = STATE(7254), + [sym__value] = STATE(1987), + [sym_val_nothing] = STATE(1981), + [sym_val_bool] = STATE(1730), + [sym_val_variable] = STATE(1981), + [sym_val_number] = STATE(1981), + [sym__val_number_decimal] = STATE(1384), + [sym__val_number] = STATE(1876), + [sym_val_duration] = STATE(1981), + [sym_val_filesize] = STATE(1981), + [sym_val_binary] = STATE(1981), + [sym_val_string] = STATE(1981), + [sym__raw_str] = STATE(1907), + [sym__str_double_quotes] = STATE(1907), + [sym_val_interpolated] = STATE(1981), + [sym__inter_single_quotes] = STATE(1974), + [sym__inter_double_quotes] = STATE(1975), + [sym_val_list] = STATE(1981), + [sym_val_record] = STATE(1981), + [sym_val_table] = STATE(1981), + [sym_val_closure] = STATE(1981), + [sym_unquoted] = STATE(1988), + [sym__unquoted_anonymous_prefix] = STATE(7035), + [sym_comment] = STATE(1235), + [anon_sym_LBRACK] = ACTIONS(2883), + [anon_sym_LPAREN] = ACTIONS(4176), + [anon_sym_DOLLAR] = ACTIONS(4043), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_DOT_DOT] = ACTIONS(4178), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4180), + [anon_sym_DOT_DOT_LT] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4182), + [anon_sym_true] = ACTIONS(4184), + [anon_sym_false] = ACTIONS(4184), + [aux_sym__val_number_decimal_token1] = ACTIONS(4186), + [aux_sym__val_number_decimal_token2] = ACTIONS(4188), + [aux_sym__val_number_decimal_token3] = ACTIONS(4190), + [aux_sym__val_number_decimal_token4] = ACTIONS(4192), + [aux_sym__val_number_token1] = ACTIONS(2911), + [aux_sym__val_number_token2] = ACTIONS(2911), + [aux_sym__val_number_token3] = ACTIONS(2911), + [aux_sym__val_number_token4] = ACTIONS(4194), + [aux_sym__val_number_token5] = ACTIONS(4194), + [aux_sym__val_number_token6] = ACTIONS(4194), + [anon_sym_0b] = ACTIONS(2915), + [anon_sym_0o] = ACTIONS(2917), + [anon_sym_0x] = ACTIONS(2917), + [sym_val_date] = ACTIONS(4196), + [anon_sym_DQUOTE] = ACTIONS(2921), + [sym__str_single_quotes] = ACTIONS(2923), + [sym__str_back_ticks] = ACTIONS(2923), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2925), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2927), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(4198), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2931), + }, + [1236] = { + [sym__expr_parenthesized_immediate] = STATE(6831), + [sym_comment] = STATE(1236), + [sym__newline] = ACTIONS(1628), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1628), + [anon_sym_err_GT_PIPE] = ACTIONS(1628), + [anon_sym_out_GT_PIPE] = ACTIONS(1628), + [anon_sym_e_GT_PIPE] = ACTIONS(1628), + [anon_sym_o_GT_PIPE] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1616), + [anon_sym_RPAREN] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1616), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_DOT_DOT2] = ACTIONS(4210), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1616), + [anon_sym_DOT_DOT_LT] = ACTIONS(1616), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4212), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4212), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_true] = ACTIONS(1628), + [anon_sym_false] = ACTIONS(1628), + [aux_sym__val_number_decimal_token1] = ACTIONS(1616), + [aux_sym__val_number_decimal_token2] = ACTIONS(1628), + [aux_sym__val_number_decimal_token3] = ACTIONS(1628), + [aux_sym__val_number_decimal_token4] = ACTIONS(1628), + [aux_sym__val_number_token1] = ACTIONS(1628), + [aux_sym__val_number_token2] = ACTIONS(1628), + [aux_sym__val_number_token3] = ACTIONS(1628), + [aux_sym__val_number_token4] = ACTIONS(1628), + [aux_sym__val_number_token5] = ACTIONS(1628), + [aux_sym__val_number_token6] = ACTIONS(1628), + [anon_sym_0b] = ACTIONS(1616), + [sym_filesize_unit] = ACTIONS(4214), + [sym_duration_unit] = ACTIONS(4216), + [anon_sym_0o] = ACTIONS(1616), + [anon_sym_0x] = ACTIONS(1616), + [sym_val_date] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1628), + [sym__str_single_quotes] = ACTIONS(1628), + [sym__str_back_ticks] = ACTIONS(1628), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1628), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1628), + [anon_sym_err_GT] = ACTIONS(1616), + [anon_sym_out_GT] = ACTIONS(1616), + [anon_sym_e_GT] = ACTIONS(1616), + [anon_sym_o_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT] = ACTIONS(1616), + [anon_sym_err_GT_GT] = ACTIONS(1628), + [anon_sym_out_GT_GT] = ACTIONS(1628), + [anon_sym_e_GT_GT] = ACTIONS(1628), + [anon_sym_o_GT_GT] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1628), + [aux_sym_unquoted_token1] = ACTIONS(1616), + [aux_sym_unquoted_token2] = ACTIONS(4218), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1628), + }, + [1237] = { + [sym__expr_parenthesized_immediate] = STATE(1812), + [sym__immediate_decimal] = STATE(1813), + [sym_val_variable] = STATE(1812), + [sym_comment] = STATE(1237), + [sym__newline] = ACTIONS(1634), + [anon_sym_SEMI] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1634), + [anon_sym_err_GT_PIPE] = ACTIONS(1634), + [anon_sym_out_GT_PIPE] = ACTIONS(1634), + [anon_sym_e_GT_PIPE] = ACTIONS(1634), + [anon_sym_o_GT_PIPE] = ACTIONS(1634), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1634), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1634), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1634), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1634), + [anon_sym_LBRACK] = ACTIONS(1634), + [anon_sym_LPAREN] = ACTIONS(1632), + [anon_sym_RPAREN] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(1634), + [anon_sym_DASH2] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_RBRACE] = ACTIONS(1634), + [anon_sym_DOT_DOT] = ACTIONS(1632), + [anon_sym_LPAREN2] = ACTIONS(3949), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1634), + [anon_sym_DOT_DOT_LT] = ACTIONS(1634), + [aux_sym__immediate_decimal_token1] = ACTIONS(4200), + [aux_sym__immediate_decimal_token3] = ACTIONS(4202), + [aux_sym__immediate_decimal_token4] = ACTIONS(4204), + [aux_sym__immediate_decimal_token5] = ACTIONS(4206), + [anon_sym_null] = ACTIONS(1634), + [anon_sym_true] = ACTIONS(1634), + [anon_sym_false] = ACTIONS(1634), + [aux_sym__val_number_decimal_token1] = ACTIONS(1632), + [aux_sym__val_number_decimal_token2] = ACTIONS(1632), + [aux_sym__val_number_decimal_token3] = ACTIONS(1632), + [aux_sym__val_number_decimal_token4] = ACTIONS(1632), + [aux_sym__val_number_token1] = ACTIONS(1634), + [aux_sym__val_number_token2] = ACTIONS(1634), + [aux_sym__val_number_token3] = ACTIONS(1634), + [aux_sym__val_number_token4] = ACTIONS(1634), + [aux_sym__val_number_token5] = ACTIONS(1634), + [aux_sym__val_number_token6] = ACTIONS(1634), + [anon_sym_0b] = ACTIONS(1632), + [anon_sym_0o] = ACTIONS(1632), + [anon_sym_0x] = ACTIONS(1632), + [sym_val_date] = ACTIONS(1634), + [anon_sym_DQUOTE] = ACTIONS(1634), + [sym__str_single_quotes] = ACTIONS(1634), + [sym__str_back_ticks] = ACTIONS(1634), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1634), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1634), + [anon_sym_err_GT] = ACTIONS(1632), + [anon_sym_out_GT] = ACTIONS(1632), + [anon_sym_e_GT] = ACTIONS(1632), + [anon_sym_o_GT] = ACTIONS(1632), + [anon_sym_err_PLUSout_GT] = ACTIONS(1632), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1632), + [anon_sym_o_PLUSe_GT] = ACTIONS(1632), + [anon_sym_e_PLUSo_GT] = ACTIONS(1632), + [anon_sym_err_GT_GT] = ACTIONS(1634), + [anon_sym_out_GT_GT] = ACTIONS(1634), + [anon_sym_e_GT_GT] = ACTIONS(1634), + [anon_sym_o_GT_GT] = ACTIONS(1634), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1634), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1634), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1634), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1634), + [aux_sym_unquoted_token1] = ACTIONS(1632), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1634), + }, + [1238] = { + [sym__expr_parenthesized_immediate] = STATE(1814), + [sym__immediate_decimal] = STATE(1819), + [sym_val_variable] = STATE(1814), + [sym_comment] = STATE(1238), [sym__newline] = ACTIONS(1646), [anon_sym_SEMI] = ACTIONS(1646), [anon_sym_PIPE] = ACTIONS(1646), @@ -205271,19 +196108,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1646), [anon_sym_LPAREN] = ACTIONS(1644), [anon_sym_RPAREN] = ACTIONS(1646), - [anon_sym_DOLLAR] = ACTIONS(3993), + [anon_sym_DOLLAR] = ACTIONS(3947), [anon_sym_DASH_DASH] = ACTIONS(1646), [anon_sym_DASH2] = ACTIONS(1644), [anon_sym_LBRACE] = ACTIONS(1646), [anon_sym_RBRACE] = ACTIONS(1646), [anon_sym_DOT_DOT] = ACTIONS(1644), - [anon_sym_LPAREN2] = ACTIONS(3995), + [anon_sym_LPAREN2] = ACTIONS(3949), [anon_sym_DOT_DOT_EQ] = ACTIONS(1646), [anon_sym_DOT_DOT_LT] = ACTIONS(1646), - [aux_sym__immediate_decimal_token1] = ACTIONS(4383), - [aux_sym__immediate_decimal_token3] = ACTIONS(4385), - [aux_sym__immediate_decimal_token4] = ACTIONS(4387), - [aux_sym__immediate_decimal_token5] = ACTIONS(4389), + [aux_sym__immediate_decimal_token1] = ACTIONS(4200), + [aux_sym__immediate_decimal_token3] = ACTIONS(4202), + [aux_sym__immediate_decimal_token4] = ACTIONS(4204), + [aux_sym__immediate_decimal_token5] = ACTIONS(4206), [anon_sym_null] = ACTIONS(1646), [anon_sym_true] = ACTIONS(1646), [anon_sym_false] = ACTIONS(1646), @@ -205326,235 +196163,3047 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(1646), }, - [1330] = { - [sym__expr_parenthesized_immediate] = STATE(1952), - [sym__immediate_decimal] = STATE(1953), - [sym_val_variable] = STATE(1952), - [sym_comment] = STATE(1330), - [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(1575), - [anon_sym_RPAREN] = ACTIONS(1577), - [anon_sym_DOLLAR] = ACTIONS(3993), - [anon_sym_DASH_DASH] = ACTIONS(1577), - [anon_sym_DASH2] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1575), - [anon_sym_LPAREN2] = ACTIONS(3995), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1577), - [anon_sym_DOT_DOT_LT] = ACTIONS(1577), - [aux_sym__immediate_decimal_token1] = ACTIONS(4383), - [aux_sym__immediate_decimal_token3] = ACTIONS(4385), - [aux_sym__immediate_decimal_token4] = ACTIONS(4387), - [aux_sym__immediate_decimal_token5] = ACTIONS(4389), - [anon_sym_null] = ACTIONS(1577), - [anon_sym_true] = ACTIONS(1577), - [anon_sym_false] = ACTIONS(1577), - [aux_sym__val_number_decimal_token1] = ACTIONS(1575), - [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(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(1575), - [anon_sym_0o] = ACTIONS(1575), - [anon_sym_0x] = ACTIONS(1575), - [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(1575), - [anon_sym_out_GT] = ACTIONS(1575), - [anon_sym_e_GT] = ACTIONS(1575), - [anon_sym_o_GT] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT] = ACTIONS(1575), - [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(1575), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1577), - }, - [1331] = { - [sym__val_range] = STATE(7563), - [sym__value] = STATE(4734), - [sym_val_nothing] = STATE(4706), - [sym_val_bool] = STATE(6087), - [sym_val_variable] = STATE(4706), - [sym_val_number] = STATE(4706), - [sym__val_number_decimal] = STATE(5390), - [sym__val_number] = STATE(4709), - [sym_val_duration] = STATE(4706), - [sym_val_filesize] = STATE(4706), - [sym_val_binary] = STATE(4706), - [sym_val_string] = STATE(4706), - [sym__raw_str] = STATE(4077), - [sym__str_double_quotes] = STATE(4077), - [sym_val_interpolated] = STATE(4706), - [sym__inter_single_quotes] = STATE(4625), - [sym__inter_double_quotes] = STATE(4629), - [sym_val_list] = STATE(4706), - [sym_val_record] = STATE(4706), - [sym_val_table] = STATE(4706), - [sym_val_closure] = STATE(4706), - [sym_unquoted] = STATE(4656), - [sym__unquoted_anonymous_prefix] = STATE(7644), - [sym_comment] = STATE(1331), - [anon_sym_LBRACK] = ACTIONS(4307), - [anon_sym_LPAREN] = ACTIONS(4309), - [anon_sym_DOLLAR] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(4311), - [anon_sym_DOT_DOT] = ACTIONS(4313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4315), - [anon_sym_DOT_DOT_LT] = ACTIONS(4315), - [anon_sym_null] = ACTIONS(4317), - [anon_sym_true] = ACTIONS(4319), - [anon_sym_false] = ACTIONS(4319), - [aux_sym__val_number_decimal_token1] = ACTIONS(3088), - [aux_sym__val_number_decimal_token2] = ACTIONS(4321), - [aux_sym__val_number_decimal_token3] = ACTIONS(4323), - [aux_sym__val_number_decimal_token4] = ACTIONS(4325), - [aux_sym__val_number_token1] = ACTIONS(4327), - [aux_sym__val_number_token2] = ACTIONS(4327), - [aux_sym__val_number_token3] = ACTIONS(4327), - [aux_sym__val_number_token4] = ACTIONS(4329), - [aux_sym__val_number_token5] = ACTIONS(4329), - [aux_sym__val_number_token6] = ACTIONS(4329), - [anon_sym_0b] = ACTIONS(2164), - [anon_sym_0o] = ACTIONS(2166), - [anon_sym_0x] = ACTIONS(2166), - [sym_val_date] = ACTIONS(4331), - [anon_sym_DQUOTE] = ACTIONS(4333), - [sym__str_single_quotes] = ACTIONS(4335), - [sym__str_back_ticks] = ACTIONS(4335), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4337), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4339), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2186), + [1239] = { + [sym__expr_parenthesized_immediate] = STATE(1826), + [sym__immediate_decimal] = STATE(1827), + [sym_val_variable] = STATE(1826), + [sym_comment] = STATE(1239), + [sym__newline] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_err_GT_PIPE] = ACTIONS(1546), + [anon_sym_out_GT_PIPE] = ACTIONS(1546), + [anon_sym_e_GT_PIPE] = ACTIONS(1546), + [anon_sym_o_GT_PIPE] = ACTIONS(1546), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1546), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1546), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1546), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_RPAREN] = ACTIONS(1546), + [anon_sym_DOLLAR] = ACTIONS(3947), + [anon_sym_DASH_DASH] = ACTIONS(1546), + [anon_sym_DASH2] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_DOT_DOT] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(3949), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1546), + [anon_sym_DOT_DOT_LT] = ACTIONS(1546), + [aux_sym__immediate_decimal_token1] = ACTIONS(4200), + [aux_sym__immediate_decimal_token3] = ACTIONS(4202), + [aux_sym__immediate_decimal_token4] = ACTIONS(4204), + [aux_sym__immediate_decimal_token5] = ACTIONS(4206), + [anon_sym_null] = ACTIONS(1546), + [anon_sym_true] = ACTIONS(1546), + [anon_sym_false] = ACTIONS(1546), + [aux_sym__val_number_decimal_token1] = ACTIONS(1538), + [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(1546), + [aux_sym__val_number_token2] = ACTIONS(1546), + [aux_sym__val_number_token3] = ACTIONS(1546), + [aux_sym__val_number_token4] = ACTIONS(1546), + [aux_sym__val_number_token5] = ACTIONS(1546), + [aux_sym__val_number_token6] = ACTIONS(1546), + [anon_sym_0b] = ACTIONS(1538), + [anon_sym_0o] = ACTIONS(1538), + [anon_sym_0x] = ACTIONS(1538), + [sym_val_date] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [sym__str_single_quotes] = ACTIONS(1546), + [sym__str_back_ticks] = ACTIONS(1546), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1546), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1546), + [anon_sym_err_GT] = ACTIONS(1538), + [anon_sym_out_GT] = ACTIONS(1538), + [anon_sym_e_GT] = ACTIONS(1538), + [anon_sym_o_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT] = ACTIONS(1538), + [anon_sym_err_GT_GT] = ACTIONS(1546), + [anon_sym_out_GT_GT] = ACTIONS(1546), + [anon_sym_e_GT_GT] = ACTIONS(1546), + [anon_sym_o_GT_GT] = ACTIONS(1546), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1546), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1546), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1546), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1546), + [aux_sym_unquoted_token1] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1546), }, - [1332] = { - [sym__expr_parenthesized_immediate] = STATE(7414), - [sym_comment] = STATE(1332), - [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(1579), - [anon_sym_DOLLAR] = ACTIONS(1579), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_DASH2] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1579), - [anon_sym_LPAREN2] = ACTIONS(4462), - [anon_sym_DOT_DOT2] = ACTIONS(4474), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1579), - [anon_sym_DOT_DOT_LT] = ACTIONS(1579), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4476), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4476), - [anon_sym_null] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [aux_sym__val_number_decimal_token1] = ACTIONS(1579), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [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(1579), - [sym_filesize_unit] = ACTIONS(4478), - [sym_duration_unit] = ACTIONS(4480), - [anon_sym_0o] = ACTIONS(1579), - [anon_sym_0x] = ACTIONS(1579), - [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(1579), - [anon_sym_out_GT] = ACTIONS(1579), - [anon_sym_e_GT] = ACTIONS(1579), - [anon_sym_o_GT] = ACTIONS(1579), - [anon_sym_err_PLUSout_GT] = ACTIONS(1579), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), - [anon_sym_o_PLUSe_GT] = ACTIONS(1579), - [anon_sym_e_PLUSo_GT] = ACTIONS(1579), - [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(1579), - [aux_sym_unquoted_token2] = ACTIONS(4482), + [1240] = { + [sym_comment] = STATE(1240), + [anon_sym_EQ] = ACTIONS(970), + [anon_sym_PLUS_EQ] = ACTIONS(972), + [anon_sym_DASH_EQ] = ACTIONS(972), + [anon_sym_STAR_EQ] = ACTIONS(972), + [anon_sym_SLASH_EQ] = ACTIONS(972), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(972), + [sym__newline] = ACTIONS(972), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_err_GT_PIPE] = ACTIONS(972), + [anon_sym_out_GT_PIPE] = ACTIONS(972), + [anon_sym_e_GT_PIPE] = ACTIONS(972), + [anon_sym_o_GT_PIPE] = ACTIONS(972), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(972), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(972), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(972), + [anon_sym_RPAREN] = ACTIONS(972), + [anon_sym_GT2] = ACTIONS(970), + [anon_sym_DASH2] = ACTIONS(970), + [anon_sym_in2] = ACTIONS(972), + [anon_sym_RBRACE] = ACTIONS(972), + [anon_sym_STAR2] = ACTIONS(970), + [anon_sym_and2] = ACTIONS(972), + [anon_sym_xor2] = ACTIONS(972), + [anon_sym_or2] = ACTIONS(972), + [anon_sym_not_DASHin2] = ACTIONS(972), + [anon_sym_has2] = ACTIONS(972), + [anon_sym_not_DASHhas2] = ACTIONS(972), + [anon_sym_starts_DASHwith2] = ACTIONS(972), + [anon_sym_ends_DASHwith2] = ACTIONS(972), + [anon_sym_EQ_EQ2] = ACTIONS(972), + [anon_sym_BANG_EQ2] = ACTIONS(972), + [anon_sym_LT2] = ACTIONS(970), + [anon_sym_LT_EQ2] = ACTIONS(972), + [anon_sym_GT_EQ2] = ACTIONS(972), + [anon_sym_EQ_TILDE2] = ACTIONS(972), + [anon_sym_BANG_TILDE2] = ACTIONS(972), + [anon_sym_STAR_STAR2] = ACTIONS(972), + [anon_sym_PLUS_PLUS2] = ACTIONS(970), + [anon_sym_SLASH2] = ACTIONS(970), + [anon_sym_mod2] = ACTIONS(972), + [anon_sym_SLASH_SLASH2] = ACTIONS(972), + [anon_sym_PLUS2] = ACTIONS(970), + [anon_sym_bit_DASHshl2] = ACTIONS(972), + [anon_sym_bit_DASHshr2] = ACTIONS(972), + [anon_sym_bit_DASHand2] = ACTIONS(972), + [anon_sym_bit_DASHxor2] = ACTIONS(972), + [anon_sym_bit_DASHor2] = ACTIONS(972), + [anon_sym_DOT_DOT2] = ACTIONS(970), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(972), + [anon_sym_DOT_DOT_LT2] = ACTIONS(972), + [anon_sym_COLON2] = ACTIONS(972), + [anon_sym_DOT2] = ACTIONS(970), + [anon_sym_err_GT] = ACTIONS(970), + [anon_sym_out_GT] = ACTIONS(970), + [anon_sym_e_GT] = ACTIONS(970), + [anon_sym_o_GT] = ACTIONS(970), + [anon_sym_err_PLUSout_GT] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT] = ACTIONS(970), + [anon_sym_o_PLUSe_GT] = ACTIONS(970), + [anon_sym_e_PLUSo_GT] = ACTIONS(970), + [anon_sym_err_GT_GT] = ACTIONS(972), + [anon_sym_out_GT_GT] = ACTIONS(972), + [anon_sym_e_GT_GT] = ACTIONS(972), + [anon_sym_o_GT_GT] = ACTIONS(972), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(972), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(972), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(972), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1591), }, - [1333] = { - [sym_cell_path] = STATE(1545), - [sym_path] = STATE(1497), - [sym_comment] = STATE(1333), - [aux_sym_cell_path_repeat1] = STATE(1372), - [sym__newline] = ACTIONS(927), - [anon_sym_SEMI] = ACTIONS(927), - [anon_sym_PIPE] = ACTIONS(927), + [1241] = { + [sym_comment] = STATE(1241), + [anon_sym_EQ] = ACTIONS(974), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(976), + [sym__newline] = ACTIONS(976), + [anon_sym_SEMI] = ACTIONS(976), + [anon_sym_PIPE] = ACTIONS(976), + [anon_sym_err_GT_PIPE] = ACTIONS(976), + [anon_sym_out_GT_PIPE] = ACTIONS(976), + [anon_sym_e_GT_PIPE] = ACTIONS(976), + [anon_sym_o_GT_PIPE] = ACTIONS(976), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(976), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(976), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(976), + [anon_sym_RPAREN] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(974), + [anon_sym_DASH2] = ACTIONS(974), + [anon_sym_in2] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(976), + [anon_sym_STAR2] = ACTIONS(974), + [anon_sym_and2] = ACTIONS(976), + [anon_sym_xor2] = ACTIONS(976), + [anon_sym_or2] = ACTIONS(976), + [anon_sym_not_DASHin2] = ACTIONS(976), + [anon_sym_has2] = ACTIONS(976), + [anon_sym_not_DASHhas2] = ACTIONS(976), + [anon_sym_starts_DASHwith2] = ACTIONS(976), + [anon_sym_ends_DASHwith2] = ACTIONS(976), + [anon_sym_EQ_EQ2] = ACTIONS(976), + [anon_sym_BANG_EQ2] = ACTIONS(976), + [anon_sym_LT2] = ACTIONS(974), + [anon_sym_LT_EQ2] = ACTIONS(976), + [anon_sym_GT_EQ2] = ACTIONS(976), + [anon_sym_EQ_TILDE2] = ACTIONS(976), + [anon_sym_BANG_TILDE2] = ACTIONS(976), + [anon_sym_STAR_STAR2] = ACTIONS(976), + [anon_sym_PLUS_PLUS2] = ACTIONS(974), + [anon_sym_SLASH2] = ACTIONS(974), + [anon_sym_mod2] = ACTIONS(976), + [anon_sym_SLASH_SLASH2] = ACTIONS(976), + [anon_sym_PLUS2] = ACTIONS(974), + [anon_sym_bit_DASHshl2] = ACTIONS(976), + [anon_sym_bit_DASHshr2] = ACTIONS(976), + [anon_sym_bit_DASHand2] = ACTIONS(976), + [anon_sym_bit_DASHxor2] = ACTIONS(976), + [anon_sym_bit_DASHor2] = ACTIONS(976), + [anon_sym_DOT_DOT2] = ACTIONS(974), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(976), + [anon_sym_DOT_DOT_LT2] = ACTIONS(976), + [anon_sym_COLON2] = ACTIONS(976), + [anon_sym_DOT2] = ACTIONS(974), + [anon_sym_err_GT] = ACTIONS(974), + [anon_sym_out_GT] = ACTIONS(974), + [anon_sym_e_GT] = ACTIONS(974), + [anon_sym_o_GT] = ACTIONS(974), + [anon_sym_err_PLUSout_GT] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT] = ACTIONS(974), + [anon_sym_o_PLUSe_GT] = ACTIONS(974), + [anon_sym_e_PLUSo_GT] = ACTIONS(974), + [anon_sym_err_GT_GT] = ACTIONS(976), + [anon_sym_out_GT_GT] = ACTIONS(976), + [anon_sym_e_GT_GT] = ACTIONS(976), + [anon_sym_o_GT_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(976), + [anon_sym_POUND] = ACTIONS(245), + }, + [1242] = { + [sym_comment] = STATE(1242), + [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_and2] = ACTIONS(980), + [anon_sym_xor2] = ACTIONS(980), + [anon_sym_or2] = ACTIONS(980), + [anon_sym_not_DASHin2] = ACTIONS(980), + [anon_sym_has2] = ACTIONS(980), + [anon_sym_not_DASHhas2] = 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_DOT_EQ2] = ACTIONS(980), + [anon_sym_DOT_DOT_LT2] = ACTIONS(980), + [anon_sym_COLON2] = ACTIONS(980), + [anon_sym_DOT2] = ACTIONS(978), + [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(245), + }, + [1243] = { + [sym_cell_path] = STATE(1451), + [sym_path] = STATE(1374), + [sym_comment] = STATE(1243), + [aux_sym_cell_path_repeat1] = STATE(1284), + [sym__newline] = ACTIONS(1676), + [anon_sym_SEMI] = ACTIONS(1676), + [anon_sym_PIPE] = ACTIONS(1676), + [anon_sym_err_GT_PIPE] = ACTIONS(1676), + [anon_sym_out_GT_PIPE] = ACTIONS(1676), + [anon_sym_e_GT_PIPE] = ACTIONS(1676), + [anon_sym_o_GT_PIPE] = ACTIONS(1676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1676), + [anon_sym_RPAREN] = ACTIONS(1676), + [anon_sym_GT2] = ACTIONS(1674), + [anon_sym_DASH2] = ACTIONS(1676), + [anon_sym_in2] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1676), + [anon_sym_RBRACE] = ACTIONS(1676), + [anon_sym_EQ_GT] = ACTIONS(1676), + [anon_sym_STAR2] = ACTIONS(1674), + [anon_sym_and2] = ACTIONS(1676), + [anon_sym_xor2] = ACTIONS(1676), + [anon_sym_or2] = ACTIONS(1676), + [anon_sym_not_DASHin2] = ACTIONS(1676), + [anon_sym_has2] = ACTIONS(1676), + [anon_sym_not_DASHhas2] = ACTIONS(1676), + [anon_sym_starts_DASHwith2] = ACTIONS(1676), + [anon_sym_ends_DASHwith2] = ACTIONS(1676), + [anon_sym_EQ_EQ2] = ACTIONS(1676), + [anon_sym_BANG_EQ2] = ACTIONS(1676), + [anon_sym_LT2] = ACTIONS(1674), + [anon_sym_LT_EQ2] = ACTIONS(1676), + [anon_sym_GT_EQ2] = ACTIONS(1676), + [anon_sym_EQ_TILDE2] = ACTIONS(1676), + [anon_sym_BANG_TILDE2] = ACTIONS(1676), + [anon_sym_STAR_STAR2] = ACTIONS(1676), + [anon_sym_PLUS_PLUS2] = ACTIONS(1676), + [anon_sym_SLASH2] = ACTIONS(1674), + [anon_sym_mod2] = ACTIONS(1676), + [anon_sym_SLASH_SLASH2] = ACTIONS(1676), + [anon_sym_PLUS2] = ACTIONS(1674), + [anon_sym_bit_DASHshl2] = ACTIONS(1676), + [anon_sym_bit_DASHshr2] = ACTIONS(1676), + [anon_sym_bit_DASHand2] = ACTIONS(1676), + [anon_sym_bit_DASHxor2] = ACTIONS(1676), + [anon_sym_bit_DASHor2] = ACTIONS(1676), + [anon_sym_DOT_DOT2] = ACTIONS(1674), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1676), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1676), + [anon_sym_COLON2] = ACTIONS(1676), + [anon_sym_DOT2] = ACTIONS(4220), + [anon_sym_err_GT] = ACTIONS(1674), + [anon_sym_out_GT] = ACTIONS(1674), + [anon_sym_e_GT] = ACTIONS(1674), + [anon_sym_o_GT] = ACTIONS(1674), + [anon_sym_err_PLUSout_GT] = ACTIONS(1674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1674), + [anon_sym_o_PLUSe_GT] = ACTIONS(1674), + [anon_sym_e_PLUSo_GT] = ACTIONS(1674), + [anon_sym_err_GT_GT] = ACTIONS(1676), + [anon_sym_out_GT_GT] = ACTIONS(1676), + [anon_sym_e_GT_GT] = ACTIONS(1676), + [anon_sym_o_GT_GT] = ACTIONS(1676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1676), + [anon_sym_POUND] = ACTIONS(245), + }, + [1244] = { + [sym__val_range] = STATE(7254), + [sym__value] = STATE(1909), + [sym_val_nothing] = STATE(1981), + [sym_val_bool] = STATE(1730), + [sym_val_variable] = STATE(1981), + [sym_val_number] = STATE(1981), + [sym__val_number_decimal] = STATE(1384), + [sym__val_number] = STATE(1876), + [sym_val_duration] = STATE(1981), + [sym_val_filesize] = STATE(1981), + [sym_val_binary] = STATE(1981), + [sym_val_string] = STATE(1981), + [sym__raw_str] = STATE(1907), + [sym__str_double_quotes] = STATE(1907), + [sym_val_interpolated] = STATE(1981), + [sym__inter_single_quotes] = STATE(1974), + [sym__inter_double_quotes] = STATE(1975), + [sym_val_list] = STATE(1981), + [sym_val_record] = STATE(1981), + [sym_val_table] = STATE(1981), + [sym_val_closure] = STATE(1981), + [sym_unquoted] = STATE(1910), + [sym__unquoted_anonymous_prefix] = STATE(7035), + [sym_comment] = STATE(1244), + [anon_sym_LBRACK] = ACTIONS(2883), + [anon_sym_LPAREN] = ACTIONS(4176), + [anon_sym_DOLLAR] = ACTIONS(4043), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_DOT_DOT] = ACTIONS(4178), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4180), + [anon_sym_DOT_DOT_LT] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4182), + [anon_sym_true] = ACTIONS(4184), + [anon_sym_false] = ACTIONS(4184), + [aux_sym__val_number_decimal_token1] = ACTIONS(4186), + [aux_sym__val_number_decimal_token2] = ACTIONS(4188), + [aux_sym__val_number_decimal_token3] = ACTIONS(4190), + [aux_sym__val_number_decimal_token4] = ACTIONS(4192), + [aux_sym__val_number_token1] = ACTIONS(2911), + [aux_sym__val_number_token2] = ACTIONS(2911), + [aux_sym__val_number_token3] = ACTIONS(2911), + [aux_sym__val_number_token4] = ACTIONS(4194), + [aux_sym__val_number_token5] = ACTIONS(4194), + [aux_sym__val_number_token6] = ACTIONS(4194), + [anon_sym_0b] = ACTIONS(2915), + [anon_sym_0o] = ACTIONS(2917), + [anon_sym_0x] = ACTIONS(2917), + [sym_val_date] = ACTIONS(4196), + [anon_sym_DQUOTE] = ACTIONS(2921), + [sym__str_single_quotes] = ACTIONS(2923), + [sym__str_back_ticks] = ACTIONS(2923), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2925), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2927), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(4198), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2931), + }, + [1245] = { + [sym__val_range] = STATE(7346), + [sym__value] = STATE(3292), + [sym_val_nothing] = STATE(3265), + [sym_val_bool] = STATE(3256), + [sym_val_variable] = STATE(3265), + [sym_val_number] = STATE(3265), + [sym__val_number_decimal] = STATE(2946), + [sym__val_number] = STATE(3310), + [sym_val_duration] = STATE(3265), + [sym_val_filesize] = STATE(3265), + [sym_val_binary] = STATE(3265), + [sym_val_string] = STATE(3265), + [sym__raw_str] = STATE(3301), + [sym__str_double_quotes] = STATE(3301), + [sym_val_interpolated] = STATE(3265), + [sym__inter_single_quotes] = STATE(3263), + [sym__inter_double_quotes] = STATE(3264), + [sym_val_list] = STATE(3265), + [sym_val_record] = STATE(3265), + [sym_val_table] = STATE(3265), + [sym_val_closure] = STATE(3265), + [sym_unquoted] = STATE(3293), + [sym__unquoted_anonymous_prefix] = STATE(7361), + [sym_comment] = STATE(1245), + [anon_sym_LBRACK] = ACTIONS(4222), + [anon_sym_LPAREN] = ACTIONS(4224), + [anon_sym_DOLLAR] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4232), + [anon_sym_DOT_DOT_LT] = ACTIONS(4232), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_true] = ACTIONS(4236), + [anon_sym_false] = ACTIONS(4236), + [aux_sym__val_number_decimal_token1] = ACTIONS(4238), + [aux_sym__val_number_decimal_token2] = ACTIONS(4240), + [aux_sym__val_number_decimal_token3] = ACTIONS(4242), + [aux_sym__val_number_decimal_token4] = ACTIONS(4244), + [aux_sym__val_number_token1] = ACTIONS(4246), + [aux_sym__val_number_token2] = ACTIONS(4246), + [aux_sym__val_number_token3] = ACTIONS(4246), + [aux_sym__val_number_token4] = ACTIONS(4248), + [aux_sym__val_number_token5] = ACTIONS(4248), + [aux_sym__val_number_token6] = ACTIONS(4248), + [anon_sym_0b] = ACTIONS(4250), + [anon_sym_0o] = ACTIONS(4252), + [anon_sym_0x] = ACTIONS(4252), + [sym_val_date] = ACTIONS(4254), + [anon_sym_DQUOTE] = ACTIONS(4256), + [sym__str_single_quotes] = ACTIONS(4258), + [sym__str_back_ticks] = ACTIONS(4258), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4260), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4262), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(4264), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4266), + }, + [1246] = { + [sym__val_range] = STATE(7254), + [sym__value] = STATE(1945), + [sym_val_nothing] = STATE(1981), + [sym_val_bool] = STATE(1730), + [sym_val_variable] = STATE(1981), + [sym_val_number] = STATE(1981), + [sym__val_number_decimal] = STATE(1384), + [sym__val_number] = STATE(1876), + [sym_val_duration] = STATE(1981), + [sym_val_filesize] = STATE(1981), + [sym_val_binary] = STATE(1981), + [sym_val_string] = STATE(1981), + [sym__raw_str] = STATE(1907), + [sym__str_double_quotes] = STATE(1907), + [sym_val_interpolated] = STATE(1981), + [sym__inter_single_quotes] = STATE(1974), + [sym__inter_double_quotes] = STATE(1975), + [sym_val_list] = STATE(1981), + [sym_val_record] = STATE(1981), + [sym_val_table] = STATE(1981), + [sym_val_closure] = STATE(1981), + [sym_unquoted] = STATE(1946), + [sym__unquoted_anonymous_prefix] = STATE(7035), + [sym_comment] = STATE(1246), + [anon_sym_LBRACK] = ACTIONS(2883), + [anon_sym_LPAREN] = ACTIONS(4176), + [anon_sym_DOLLAR] = ACTIONS(4043), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_DOT_DOT] = ACTIONS(4178), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4180), + [anon_sym_DOT_DOT_LT] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4182), + [anon_sym_true] = ACTIONS(4184), + [anon_sym_false] = ACTIONS(4184), + [aux_sym__val_number_decimal_token1] = ACTIONS(4186), + [aux_sym__val_number_decimal_token2] = ACTIONS(4188), + [aux_sym__val_number_decimal_token3] = ACTIONS(4190), + [aux_sym__val_number_decimal_token4] = ACTIONS(4192), + [aux_sym__val_number_token1] = ACTIONS(2911), + [aux_sym__val_number_token2] = ACTIONS(2911), + [aux_sym__val_number_token3] = ACTIONS(2911), + [aux_sym__val_number_token4] = ACTIONS(4194), + [aux_sym__val_number_token5] = ACTIONS(4194), + [aux_sym__val_number_token6] = ACTIONS(4194), + [anon_sym_0b] = ACTIONS(2915), + [anon_sym_0o] = ACTIONS(2917), + [anon_sym_0x] = ACTIONS(2917), + [sym_val_date] = ACTIONS(4196), + [anon_sym_DQUOTE] = ACTIONS(2921), + [sym__str_single_quotes] = ACTIONS(2923), + [sym__str_back_ticks] = ACTIONS(2923), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2925), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2927), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(4198), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2931), + }, + [1247] = { + [sym__val_range] = STATE(7346), + [sym__value] = STATE(3268), + [sym_val_nothing] = STATE(3265), + [sym_val_bool] = STATE(3256), + [sym_val_variable] = STATE(3265), + [sym_val_number] = STATE(3265), + [sym__val_number_decimal] = STATE(2946), + [sym__val_number] = STATE(3310), + [sym_val_duration] = STATE(3265), + [sym_val_filesize] = STATE(3265), + [sym_val_binary] = STATE(3265), + [sym_val_string] = STATE(3265), + [sym__raw_str] = STATE(3301), + [sym__str_double_quotes] = STATE(3301), + [sym_val_interpolated] = STATE(3265), + [sym__inter_single_quotes] = STATE(3263), + [sym__inter_double_quotes] = STATE(3264), + [sym_val_list] = STATE(3265), + [sym_val_record] = STATE(3265), + [sym_val_table] = STATE(3265), + [sym_val_closure] = STATE(3265), + [sym_unquoted] = STATE(3269), + [sym__unquoted_anonymous_prefix] = STATE(7361), + [sym_comment] = STATE(1247), + [anon_sym_LBRACK] = ACTIONS(4222), + [anon_sym_LPAREN] = ACTIONS(4224), + [anon_sym_DOLLAR] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4232), + [anon_sym_DOT_DOT_LT] = ACTIONS(4232), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_true] = ACTIONS(4236), + [anon_sym_false] = ACTIONS(4236), + [aux_sym__val_number_decimal_token1] = ACTIONS(4238), + [aux_sym__val_number_decimal_token2] = ACTIONS(4240), + [aux_sym__val_number_decimal_token3] = ACTIONS(4242), + [aux_sym__val_number_decimal_token4] = ACTIONS(4244), + [aux_sym__val_number_token1] = ACTIONS(4246), + [aux_sym__val_number_token2] = ACTIONS(4246), + [aux_sym__val_number_token3] = ACTIONS(4246), + [aux_sym__val_number_token4] = ACTIONS(4248), + [aux_sym__val_number_token5] = ACTIONS(4248), + [aux_sym__val_number_token6] = ACTIONS(4248), + [anon_sym_0b] = ACTIONS(4250), + [anon_sym_0o] = ACTIONS(4252), + [anon_sym_0x] = ACTIONS(4252), + [sym_val_date] = ACTIONS(4254), + [anon_sym_DQUOTE] = ACTIONS(4256), + [sym__str_single_quotes] = ACTIONS(4258), + [sym__str_back_ticks] = ACTIONS(4258), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4260), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4262), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(4264), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4266), + }, + [1248] = { + [sym__val_range] = STATE(7094), + [sym__value] = STATE(4967), + [sym_val_nothing] = STATE(4133), + [sym_val_bool] = STATE(5462), + [sym_val_variable] = STATE(4133), + [sym_val_number] = STATE(4133), + [sym__val_number_decimal] = STATE(5070), + [sym__val_number] = STATE(4134), + [sym_val_duration] = STATE(4133), + [sym_val_filesize] = STATE(4133), + [sym_val_binary] = STATE(4133), + [sym_val_string] = STATE(4133), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(4133), + [sym__inter_single_quotes] = STATE(5018), + [sym__inter_double_quotes] = STATE(5024), + [sym_val_list] = STATE(4133), + [sym_val_record] = STATE(4133), + [sym_val_table] = STATE(4133), + [sym_val_closure] = STATE(4133), + [sym_unquoted] = STATE(4968), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1248), + [anon_sym_LBRACK] = ACTIONS(4058), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_DOLLAR] = ACTIONS(4062), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_DOT_DOT] = ACTIONS(4039), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4041), + [anon_sym_DOT_DOT_LT] = ACTIONS(4041), + [anon_sym_null] = ACTIONS(4066), + [anon_sym_true] = ACTIONS(4068), + [anon_sym_false] = ACTIONS(4068), + [aux_sym__val_number_decimal_token1] = ACTIONS(4070), + [aux_sym__val_number_decimal_token2] = ACTIONS(4072), + [aux_sym__val_number_decimal_token3] = ACTIONS(4074), + [aux_sym__val_number_decimal_token4] = ACTIONS(4076), + [aux_sym__val_number_token1] = ACTIONS(3621), + [aux_sym__val_number_token2] = ACTIONS(3621), + [aux_sym__val_number_token3] = ACTIONS(3621), + [aux_sym__val_number_token4] = ACTIONS(4078), + [aux_sym__val_number_token5] = ACTIONS(4078), + [aux_sym__val_number_token6] = ACTIONS(4078), + [anon_sym_0b] = ACTIONS(3625), + [anon_sym_0o] = ACTIONS(3627), + [anon_sym_0x] = ACTIONS(3627), + [sym_val_date] = ACTIONS(4080), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym__str_single_quotes] = ACTIONS(1264), + [sym__str_back_ticks] = ACTIONS(1264), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4084), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1266), + }, + [1249] = { + [sym__val_range] = STATE(7346), + [sym__value] = STATE(3266), + [sym_val_nothing] = STATE(3265), + [sym_val_bool] = STATE(3256), + [sym_val_variable] = STATE(3265), + [sym_val_number] = STATE(3265), + [sym__val_number_decimal] = STATE(2946), + [sym__val_number] = STATE(3310), + [sym_val_duration] = STATE(3265), + [sym_val_filesize] = STATE(3265), + [sym_val_binary] = STATE(3265), + [sym_val_string] = STATE(3265), + [sym__raw_str] = STATE(3301), + [sym__str_double_quotes] = STATE(3301), + [sym_val_interpolated] = STATE(3265), + [sym__inter_single_quotes] = STATE(3263), + [sym__inter_double_quotes] = STATE(3264), + [sym_val_list] = STATE(3265), + [sym_val_record] = STATE(3265), + [sym_val_table] = STATE(3265), + [sym_val_closure] = STATE(3265), + [sym_unquoted] = STATE(3284), + [sym__unquoted_anonymous_prefix] = STATE(7361), + [sym_comment] = STATE(1249), + [anon_sym_LBRACK] = ACTIONS(4222), + [anon_sym_LPAREN] = ACTIONS(4224), + [anon_sym_DOLLAR] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4232), + [anon_sym_DOT_DOT_LT] = ACTIONS(4232), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_true] = ACTIONS(4236), + [anon_sym_false] = ACTIONS(4236), + [aux_sym__val_number_decimal_token1] = ACTIONS(4238), + [aux_sym__val_number_decimal_token2] = ACTIONS(4240), + [aux_sym__val_number_decimal_token3] = ACTIONS(4242), + [aux_sym__val_number_decimal_token4] = ACTIONS(4244), + [aux_sym__val_number_token1] = ACTIONS(4246), + [aux_sym__val_number_token2] = ACTIONS(4246), + [aux_sym__val_number_token3] = ACTIONS(4246), + [aux_sym__val_number_token4] = ACTIONS(4248), + [aux_sym__val_number_token5] = ACTIONS(4248), + [aux_sym__val_number_token6] = ACTIONS(4248), + [anon_sym_0b] = ACTIONS(4250), + [anon_sym_0o] = ACTIONS(4252), + [anon_sym_0x] = ACTIONS(4252), + [sym_val_date] = ACTIONS(4254), + [anon_sym_DQUOTE] = ACTIONS(4256), + [sym__str_single_quotes] = ACTIONS(4258), + [sym__str_back_ticks] = ACTIONS(4258), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4260), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4262), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(4264), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4266), + }, + [1250] = { + [sym__val_range] = STATE(7148), + [sym__value] = STATE(4487), + [sym_val_nothing] = STATE(4496), + [sym_val_bool] = STATE(4243), + [sym_val_variable] = STATE(4496), + [sym_val_number] = STATE(4496), + [sym__val_number_decimal] = STATE(3873), + [sym__val_number] = STATE(4497), + [sym_val_duration] = STATE(4496), + [sym_val_filesize] = STATE(4496), + [sym_val_binary] = STATE(4496), + [sym_val_string] = STATE(4496), + [sym__raw_str] = STATE(3892), + [sym__str_double_quotes] = STATE(3892), + [sym_val_interpolated] = STATE(4496), + [sym__inter_single_quotes] = STATE(4498), + [sym__inter_double_quotes] = STATE(4499), + [sym_val_list] = STATE(4496), + [sym_val_record] = STATE(4496), + [sym_val_table] = STATE(4496), + [sym_val_closure] = STATE(4496), + [sym_unquoted] = STATE(4488), + [sym__unquoted_anonymous_prefix] = STATE(7109), + [sym_comment] = STATE(1250), + [anon_sym_LBRACK] = ACTIONS(4268), + [anon_sym_LPAREN] = ACTIONS(4270), + [anon_sym_DOLLAR] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(4272), + [anon_sym_DOT_DOT] = ACTIONS(4274), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4276), + [anon_sym_DOT_DOT_LT] = ACTIONS(4276), + [anon_sym_null] = ACTIONS(4278), + [anon_sym_true] = ACTIONS(4280), + [anon_sym_false] = ACTIONS(4280), + [aux_sym__val_number_decimal_token1] = ACTIONS(2198), + [aux_sym__val_number_decimal_token2] = ACTIONS(4282), + [aux_sym__val_number_decimal_token3] = ACTIONS(4284), + [aux_sym__val_number_decimal_token4] = ACTIONS(4286), + [aux_sym__val_number_token1] = ACTIONS(4288), + [aux_sym__val_number_token2] = ACTIONS(4288), + [aux_sym__val_number_token3] = ACTIONS(4288), + [aux_sym__val_number_token4] = ACTIONS(4290), + [aux_sym__val_number_token5] = ACTIONS(4290), + [aux_sym__val_number_token6] = ACTIONS(4290), + [anon_sym_0b] = ACTIONS(2208), + [anon_sym_0o] = ACTIONS(2210), + [anon_sym_0x] = ACTIONS(2210), + [sym_val_date] = ACTIONS(4292), + [anon_sym_DQUOTE] = ACTIONS(4294), + [sym__str_single_quotes] = ACTIONS(4296), + [sym__str_back_ticks] = ACTIONS(4296), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(2226), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2228), + }, + [1251] = { + [sym__val_range] = STATE(7346), + [sym__value] = STATE(3295), + [sym_val_nothing] = STATE(3265), + [sym_val_bool] = STATE(3256), + [sym_val_variable] = STATE(3265), + [sym_val_number] = STATE(3265), + [sym__val_number_decimal] = STATE(2946), + [sym__val_number] = STATE(3310), + [sym_val_duration] = STATE(3265), + [sym_val_filesize] = STATE(3265), + [sym_val_binary] = STATE(3265), + [sym_val_string] = STATE(3265), + [sym__raw_str] = STATE(3301), + [sym__str_double_quotes] = STATE(3301), + [sym_val_interpolated] = STATE(3265), + [sym__inter_single_quotes] = STATE(3263), + [sym__inter_double_quotes] = STATE(3264), + [sym_val_list] = STATE(3265), + [sym_val_record] = STATE(3265), + [sym_val_table] = STATE(3265), + [sym_val_closure] = STATE(3265), + [sym_unquoted] = STATE(3283), + [sym__unquoted_anonymous_prefix] = STATE(7361), + [sym_comment] = STATE(1251), + [anon_sym_LBRACK] = ACTIONS(4222), + [anon_sym_LPAREN] = ACTIONS(4224), + [anon_sym_DOLLAR] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(4228), + [anon_sym_DOT_DOT] = ACTIONS(4230), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4232), + [anon_sym_DOT_DOT_LT] = ACTIONS(4232), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_true] = ACTIONS(4236), + [anon_sym_false] = ACTIONS(4236), + [aux_sym__val_number_decimal_token1] = ACTIONS(4238), + [aux_sym__val_number_decimal_token2] = ACTIONS(4240), + [aux_sym__val_number_decimal_token3] = ACTIONS(4242), + [aux_sym__val_number_decimal_token4] = ACTIONS(4244), + [aux_sym__val_number_token1] = ACTIONS(4246), + [aux_sym__val_number_token2] = ACTIONS(4246), + [aux_sym__val_number_token3] = ACTIONS(4246), + [aux_sym__val_number_token4] = ACTIONS(4248), + [aux_sym__val_number_token5] = ACTIONS(4248), + [aux_sym__val_number_token6] = ACTIONS(4248), + [anon_sym_0b] = ACTIONS(4250), + [anon_sym_0o] = ACTIONS(4252), + [anon_sym_0x] = ACTIONS(4252), + [sym_val_date] = ACTIONS(4254), + [anon_sym_DQUOTE] = ACTIONS(4256), + [sym__str_single_quotes] = ACTIONS(4258), + [sym__str_back_ticks] = ACTIONS(4258), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4260), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4262), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(4264), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4266), + }, + [1252] = { + [sym__val_range] = STATE(7148), + [sym__value] = STATE(4491), + [sym_val_nothing] = STATE(4496), + [sym_val_bool] = STATE(4243), + [sym_val_variable] = STATE(4496), + [sym_val_number] = STATE(4496), + [sym__val_number_decimal] = STATE(3873), + [sym__val_number] = STATE(4497), + [sym_val_duration] = STATE(4496), + [sym_val_filesize] = STATE(4496), + [sym_val_binary] = STATE(4496), + [sym_val_string] = STATE(4496), + [sym__raw_str] = STATE(3892), + [sym__str_double_quotes] = STATE(3892), + [sym_val_interpolated] = STATE(4496), + [sym__inter_single_quotes] = STATE(4498), + [sym__inter_double_quotes] = STATE(4499), + [sym_val_list] = STATE(4496), + [sym_val_record] = STATE(4496), + [sym_val_table] = STATE(4496), + [sym_val_closure] = STATE(4496), + [sym_unquoted] = STATE(4492), + [sym__unquoted_anonymous_prefix] = STATE(7109), + [sym_comment] = STATE(1252), + [anon_sym_LBRACK] = ACTIONS(4268), + [anon_sym_LPAREN] = ACTIONS(4270), + [anon_sym_DOLLAR] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(4272), + [anon_sym_DOT_DOT] = ACTIONS(4274), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4276), + [anon_sym_DOT_DOT_LT] = ACTIONS(4276), + [anon_sym_null] = ACTIONS(4278), + [anon_sym_true] = ACTIONS(4280), + [anon_sym_false] = ACTIONS(4280), + [aux_sym__val_number_decimal_token1] = ACTIONS(2198), + [aux_sym__val_number_decimal_token2] = ACTIONS(4282), + [aux_sym__val_number_decimal_token3] = ACTIONS(4284), + [aux_sym__val_number_decimal_token4] = ACTIONS(4286), + [aux_sym__val_number_token1] = ACTIONS(4288), + [aux_sym__val_number_token2] = ACTIONS(4288), + [aux_sym__val_number_token3] = ACTIONS(4288), + [aux_sym__val_number_token4] = ACTIONS(4290), + [aux_sym__val_number_token5] = ACTIONS(4290), + [aux_sym__val_number_token6] = ACTIONS(4290), + [anon_sym_0b] = ACTIONS(2208), + [anon_sym_0o] = ACTIONS(2210), + [anon_sym_0x] = ACTIONS(2210), + [sym_val_date] = ACTIONS(4292), + [anon_sym_DQUOTE] = ACTIONS(4294), + [sym__str_single_quotes] = ACTIONS(4296), + [sym__str_back_ticks] = ACTIONS(4296), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(2226), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2228), + }, + [1253] = { + [sym__val_range] = STATE(7148), + [sym__value] = STATE(4513), + [sym_val_nothing] = STATE(4496), + [sym_val_bool] = STATE(4243), + [sym_val_variable] = STATE(4496), + [sym_val_number] = STATE(4496), + [sym__val_number_decimal] = STATE(3873), + [sym__val_number] = STATE(4497), + [sym_val_duration] = STATE(4496), + [sym_val_filesize] = STATE(4496), + [sym_val_binary] = STATE(4496), + [sym_val_string] = STATE(4496), + [sym__raw_str] = STATE(3892), + [sym__str_double_quotes] = STATE(3892), + [sym_val_interpolated] = STATE(4496), + [sym__inter_single_quotes] = STATE(4498), + [sym__inter_double_quotes] = STATE(4499), + [sym_val_list] = STATE(4496), + [sym_val_record] = STATE(4496), + [sym_val_table] = STATE(4496), + [sym_val_closure] = STATE(4496), + [sym_unquoted] = STATE(4514), + [sym__unquoted_anonymous_prefix] = STATE(7109), + [sym_comment] = STATE(1253), + [anon_sym_LBRACK] = ACTIONS(4268), + [anon_sym_LPAREN] = ACTIONS(4270), + [anon_sym_DOLLAR] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(4272), + [anon_sym_DOT_DOT] = ACTIONS(4274), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4276), + [anon_sym_DOT_DOT_LT] = ACTIONS(4276), + [anon_sym_null] = ACTIONS(4278), + [anon_sym_true] = ACTIONS(4280), + [anon_sym_false] = ACTIONS(4280), + [aux_sym__val_number_decimal_token1] = ACTIONS(2198), + [aux_sym__val_number_decimal_token2] = ACTIONS(4282), + [aux_sym__val_number_decimal_token3] = ACTIONS(4284), + [aux_sym__val_number_decimal_token4] = ACTIONS(4286), + [aux_sym__val_number_token1] = ACTIONS(4288), + [aux_sym__val_number_token2] = ACTIONS(4288), + [aux_sym__val_number_token3] = ACTIONS(4288), + [aux_sym__val_number_token4] = ACTIONS(4290), + [aux_sym__val_number_token5] = ACTIONS(4290), + [aux_sym__val_number_token6] = ACTIONS(4290), + [anon_sym_0b] = ACTIONS(2208), + [anon_sym_0o] = ACTIONS(2210), + [anon_sym_0x] = ACTIONS(2210), + [sym_val_date] = ACTIONS(4292), + [anon_sym_DQUOTE] = ACTIONS(4294), + [sym__str_single_quotes] = ACTIONS(4296), + [sym__str_back_ticks] = ACTIONS(4296), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(2226), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2228), + }, + [1254] = { + [sym__val_range] = STATE(7359), + [sym__value] = STATE(4432), + [sym_val_nothing] = STATE(4406), + [sym_val_bool] = STATE(5677), + [sym_val_variable] = STATE(4406), + [sym_val_number] = STATE(4406), + [sym__val_number_decimal] = STATE(5151), + [sym__val_number] = STATE(4446), + [sym_val_duration] = STATE(4406), + [sym_val_filesize] = STATE(4406), + [sym_val_binary] = STATE(4406), + [sym_val_string] = STATE(4406), + [sym__raw_str] = STATE(3849), + [sym__str_double_quotes] = STATE(3849), + [sym_val_interpolated] = STATE(4406), + [sym__inter_single_quotes] = STATE(4336), + [sym__inter_double_quotes] = STATE(4388), + [sym_val_list] = STATE(4406), + [sym_val_record] = STATE(4406), + [sym_val_table] = STATE(4406), + [sym_val_closure] = STATE(4406), + [sym_unquoted] = STATE(4460), + [sym__unquoted_anonymous_prefix] = STATE(7012), + [sym_comment] = STATE(1254), + [anon_sym_LBRACK] = ACTIONS(4302), + [anon_sym_LPAREN] = ACTIONS(4304), + [anon_sym_DOLLAR] = ACTIONS(2014), + [anon_sym_LBRACE] = ACTIONS(4306), + [anon_sym_DOT_DOT] = ACTIONS(4308), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4310), + [anon_sym_DOT_DOT_LT] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(4312), + [anon_sym_true] = ACTIONS(4314), + [anon_sym_false] = ACTIONS(4314), + [aux_sym__val_number_decimal_token1] = ACTIONS(3032), + [aux_sym__val_number_decimal_token2] = ACTIONS(4316), + [aux_sym__val_number_decimal_token3] = ACTIONS(4318), + [aux_sym__val_number_decimal_token4] = ACTIONS(4320), + [aux_sym__val_number_token1] = ACTIONS(4322), + [aux_sym__val_number_token2] = ACTIONS(4322), + [aux_sym__val_number_token3] = ACTIONS(4322), + [aux_sym__val_number_token4] = ACTIONS(4324), + [aux_sym__val_number_token5] = ACTIONS(4324), + [aux_sym__val_number_token6] = ACTIONS(4324), + [anon_sym_0b] = ACTIONS(2044), + [anon_sym_0o] = ACTIONS(2046), + [anon_sym_0x] = ACTIONS(2046), + [sym_val_date] = ACTIONS(4326), + [anon_sym_DQUOTE] = ACTIONS(4328), + [sym__str_single_quotes] = ACTIONS(4330), + [sym__str_back_ticks] = ACTIONS(4330), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4332), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4334), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(2064), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2066), + }, + [1255] = { + [sym__val_range] = STATE(7148), + [sym__value] = STATE(4521), + [sym_val_nothing] = STATE(4496), + [sym_val_bool] = STATE(4243), + [sym_val_variable] = STATE(4496), + [sym_val_number] = STATE(4496), + [sym__val_number_decimal] = STATE(3873), + [sym__val_number] = STATE(4497), + [sym_val_duration] = STATE(4496), + [sym_val_filesize] = STATE(4496), + [sym_val_binary] = STATE(4496), + [sym_val_string] = STATE(4496), + [sym__raw_str] = STATE(3892), + [sym__str_double_quotes] = STATE(3892), + [sym_val_interpolated] = STATE(4496), + [sym__inter_single_quotes] = STATE(4498), + [sym__inter_double_quotes] = STATE(4499), + [sym_val_list] = STATE(4496), + [sym_val_record] = STATE(4496), + [sym_val_table] = STATE(4496), + [sym_val_closure] = STATE(4496), + [sym_unquoted] = STATE(4522), + [sym__unquoted_anonymous_prefix] = STATE(7109), + [sym_comment] = STATE(1255), + [anon_sym_LBRACK] = ACTIONS(4268), + [anon_sym_LPAREN] = ACTIONS(4270), + [anon_sym_DOLLAR] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(4272), + [anon_sym_DOT_DOT] = ACTIONS(4274), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4276), + [anon_sym_DOT_DOT_LT] = ACTIONS(4276), + [anon_sym_null] = ACTIONS(4278), + [anon_sym_true] = ACTIONS(4280), + [anon_sym_false] = ACTIONS(4280), + [aux_sym__val_number_decimal_token1] = ACTIONS(2198), + [aux_sym__val_number_decimal_token2] = ACTIONS(4282), + [aux_sym__val_number_decimal_token3] = ACTIONS(4284), + [aux_sym__val_number_decimal_token4] = ACTIONS(4286), + [aux_sym__val_number_token1] = ACTIONS(4288), + [aux_sym__val_number_token2] = ACTIONS(4288), + [aux_sym__val_number_token3] = ACTIONS(4288), + [aux_sym__val_number_token4] = ACTIONS(4290), + [aux_sym__val_number_token5] = ACTIONS(4290), + [aux_sym__val_number_token6] = ACTIONS(4290), + [anon_sym_0b] = ACTIONS(2208), + [anon_sym_0o] = ACTIONS(2210), + [anon_sym_0x] = ACTIONS(2210), + [sym_val_date] = ACTIONS(4292), + [anon_sym_DQUOTE] = ACTIONS(4294), + [sym__str_single_quotes] = ACTIONS(4296), + [sym__str_back_ticks] = ACTIONS(4296), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4298), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4300), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(2226), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2228), + }, + [1256] = { + [sym__val_range] = STATE(7359), + [sym__value] = STATE(4448), + [sym_val_nothing] = STATE(4406), + [sym_val_bool] = STATE(5677), + [sym_val_variable] = STATE(4406), + [sym_val_number] = STATE(4406), + [sym__val_number_decimal] = STATE(5151), + [sym__val_number] = STATE(4446), + [sym_val_duration] = STATE(4406), + [sym_val_filesize] = STATE(4406), + [sym_val_binary] = STATE(4406), + [sym_val_string] = STATE(4406), + [sym__raw_str] = STATE(3849), + [sym__str_double_quotes] = STATE(3849), + [sym_val_interpolated] = STATE(4406), + [sym__inter_single_quotes] = STATE(4336), + [sym__inter_double_quotes] = STATE(4388), + [sym_val_list] = STATE(4406), + [sym_val_record] = STATE(4406), + [sym_val_table] = STATE(4406), + [sym_val_closure] = STATE(4406), + [sym_unquoted] = STATE(4450), + [sym__unquoted_anonymous_prefix] = STATE(7012), + [sym_comment] = STATE(1256), + [anon_sym_LBRACK] = ACTIONS(4302), + [anon_sym_LPAREN] = ACTIONS(4304), + [anon_sym_DOLLAR] = ACTIONS(2014), + [anon_sym_LBRACE] = ACTIONS(4306), + [anon_sym_DOT_DOT] = ACTIONS(4308), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4310), + [anon_sym_DOT_DOT_LT] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(4312), + [anon_sym_true] = ACTIONS(4314), + [anon_sym_false] = ACTIONS(4314), + [aux_sym__val_number_decimal_token1] = ACTIONS(3032), + [aux_sym__val_number_decimal_token2] = ACTIONS(4316), + [aux_sym__val_number_decimal_token3] = ACTIONS(4318), + [aux_sym__val_number_decimal_token4] = ACTIONS(4320), + [aux_sym__val_number_token1] = ACTIONS(4322), + [aux_sym__val_number_token2] = ACTIONS(4322), + [aux_sym__val_number_token3] = ACTIONS(4322), + [aux_sym__val_number_token4] = ACTIONS(4324), + [aux_sym__val_number_token5] = ACTIONS(4324), + [aux_sym__val_number_token6] = ACTIONS(4324), + [anon_sym_0b] = ACTIONS(2044), + [anon_sym_0o] = ACTIONS(2046), + [anon_sym_0x] = ACTIONS(2046), + [sym_val_date] = ACTIONS(4326), + [anon_sym_DQUOTE] = ACTIONS(4328), + [sym__str_single_quotes] = ACTIONS(4330), + [sym__str_back_ticks] = ACTIONS(4330), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4332), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4334), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(2064), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2066), + }, + [1257] = { + [sym__val_range] = STATE(7094), + [sym__value] = STATE(5060), + [sym_val_nothing] = STATE(4133), + [sym_val_bool] = STATE(5462), + [sym_val_variable] = STATE(4133), + [sym_val_number] = STATE(4133), + [sym__val_number_decimal] = STATE(5070), + [sym__val_number] = STATE(4134), + [sym_val_duration] = STATE(4133), + [sym_val_filesize] = STATE(4133), + [sym_val_binary] = STATE(4133), + [sym_val_string] = STATE(4133), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(4133), + [sym__inter_single_quotes] = STATE(5018), + [sym__inter_double_quotes] = STATE(5024), + [sym_val_list] = STATE(4133), + [sym_val_record] = STATE(4133), + [sym_val_table] = STATE(4133), + [sym_val_closure] = STATE(4133), + [sym_unquoted] = STATE(5061), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1257), + [anon_sym_LBRACK] = ACTIONS(4058), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_DOLLAR] = ACTIONS(4062), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_DOT_DOT] = ACTIONS(4039), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4041), + [anon_sym_DOT_DOT_LT] = ACTIONS(4041), + [anon_sym_null] = ACTIONS(4066), + [anon_sym_true] = ACTIONS(4068), + [anon_sym_false] = ACTIONS(4068), + [aux_sym__val_number_decimal_token1] = ACTIONS(4070), + [aux_sym__val_number_decimal_token2] = ACTIONS(4072), + [aux_sym__val_number_decimal_token3] = ACTIONS(4074), + [aux_sym__val_number_decimal_token4] = ACTIONS(4076), + [aux_sym__val_number_token1] = ACTIONS(3621), + [aux_sym__val_number_token2] = ACTIONS(3621), + [aux_sym__val_number_token3] = ACTIONS(3621), + [aux_sym__val_number_token4] = ACTIONS(4078), + [aux_sym__val_number_token5] = ACTIONS(4078), + [aux_sym__val_number_token6] = ACTIONS(4078), + [anon_sym_0b] = ACTIONS(3625), + [anon_sym_0o] = ACTIONS(3627), + [anon_sym_0x] = ACTIONS(3627), + [sym_val_date] = ACTIONS(4080), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym__str_single_quotes] = ACTIONS(1264), + [sym__str_back_ticks] = ACTIONS(1264), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4084), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1266), + }, + [1258] = { + [sym__val_range] = STATE(7359), + [sym__value] = STATE(4401), + [sym_val_nothing] = STATE(4406), + [sym_val_bool] = STATE(5677), + [sym_val_variable] = STATE(4406), + [sym_val_number] = STATE(4406), + [sym__val_number_decimal] = STATE(5151), + [sym__val_number] = STATE(4446), + [sym_val_duration] = STATE(4406), + [sym_val_filesize] = STATE(4406), + [sym_val_binary] = STATE(4406), + [sym_val_string] = STATE(4406), + [sym__raw_str] = STATE(3849), + [sym__str_double_quotes] = STATE(3849), + [sym_val_interpolated] = STATE(4406), + [sym__inter_single_quotes] = STATE(4336), + [sym__inter_double_quotes] = STATE(4388), + [sym_val_list] = STATE(4406), + [sym_val_record] = STATE(4406), + [sym_val_table] = STATE(4406), + [sym_val_closure] = STATE(4406), + [sym_unquoted] = STATE(4405), + [sym__unquoted_anonymous_prefix] = STATE(7012), + [sym_comment] = STATE(1258), + [anon_sym_LBRACK] = ACTIONS(4302), + [anon_sym_LPAREN] = ACTIONS(4304), + [anon_sym_DOLLAR] = ACTIONS(2014), + [anon_sym_LBRACE] = ACTIONS(4306), + [anon_sym_DOT_DOT] = ACTIONS(4308), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4310), + [anon_sym_DOT_DOT_LT] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(4312), + [anon_sym_true] = ACTIONS(4314), + [anon_sym_false] = ACTIONS(4314), + [aux_sym__val_number_decimal_token1] = ACTIONS(3032), + [aux_sym__val_number_decimal_token2] = ACTIONS(4316), + [aux_sym__val_number_decimal_token3] = ACTIONS(4318), + [aux_sym__val_number_decimal_token4] = ACTIONS(4320), + [aux_sym__val_number_token1] = ACTIONS(4322), + [aux_sym__val_number_token2] = ACTIONS(4322), + [aux_sym__val_number_token3] = ACTIONS(4322), + [aux_sym__val_number_token4] = ACTIONS(4324), + [aux_sym__val_number_token5] = ACTIONS(4324), + [aux_sym__val_number_token6] = ACTIONS(4324), + [anon_sym_0b] = ACTIONS(2044), + [anon_sym_0o] = ACTIONS(2046), + [anon_sym_0x] = ACTIONS(2046), + [sym_val_date] = ACTIONS(4326), + [anon_sym_DQUOTE] = ACTIONS(4328), + [sym__str_single_quotes] = ACTIONS(4330), + [sym__str_back_ticks] = ACTIONS(4330), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4332), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4334), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(2064), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2066), + }, + [1259] = { + [sym__val_range] = STATE(7359), + [sym__value] = STATE(4432), + [sym_val_nothing] = STATE(4406), + [sym_val_bool] = STATE(4136), + [sym_val_variable] = STATE(4406), + [sym_val_number] = STATE(4406), + [sym__val_number_decimal] = STATE(3816), + [sym__val_number] = STATE(4446), + [sym_val_duration] = STATE(4406), + [sym_val_filesize] = STATE(4406), + [sym_val_binary] = STATE(4406), + [sym_val_string] = STATE(4406), + [sym__raw_str] = STATE(3849), + [sym__str_double_quotes] = STATE(3849), + [sym_val_interpolated] = STATE(4406), + [sym__inter_single_quotes] = STATE(4336), + [sym__inter_double_quotes] = STATE(4388), + [sym_val_list] = STATE(4406), + [sym_val_record] = STATE(4406), + [sym_val_table] = STATE(4406), + [sym_val_closure] = STATE(4406), + [sym_unquoted] = STATE(4460), + [sym__unquoted_anonymous_prefix] = STATE(7012), + [sym_comment] = STATE(1259), + [anon_sym_LBRACK] = ACTIONS(4302), + [anon_sym_LPAREN] = ACTIONS(4304), + [anon_sym_DOLLAR] = ACTIONS(2014), + [anon_sym_LBRACE] = ACTIONS(4306), + [anon_sym_DOT_DOT] = ACTIONS(4308), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4310), + [anon_sym_DOT_DOT_LT] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(4336), + [anon_sym_true] = ACTIONS(4338), + [anon_sym_false] = ACTIONS(4338), + [aux_sym__val_number_decimal_token1] = ACTIONS(2034), + [aux_sym__val_number_decimal_token2] = ACTIONS(4340), + [aux_sym__val_number_decimal_token3] = ACTIONS(4342), + [aux_sym__val_number_decimal_token4] = ACTIONS(4344), + [aux_sym__val_number_token1] = ACTIONS(4322), + [aux_sym__val_number_token2] = ACTIONS(4322), + [aux_sym__val_number_token3] = ACTIONS(4322), + [aux_sym__val_number_token4] = ACTIONS(4346), + [aux_sym__val_number_token5] = ACTIONS(4346), + [aux_sym__val_number_token6] = ACTIONS(4346), + [anon_sym_0b] = ACTIONS(2044), + [anon_sym_0o] = ACTIONS(2046), + [anon_sym_0x] = ACTIONS(2046), + [sym_val_date] = ACTIONS(4348), + [anon_sym_DQUOTE] = ACTIONS(4328), + [sym__str_single_quotes] = ACTIONS(4330), + [sym__str_back_ticks] = ACTIONS(4330), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4332), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4334), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(2064), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2066), + }, + [1260] = { + [sym__val_range] = STATE(7359), + [sym__value] = STATE(4359), + [sym_val_nothing] = STATE(4406), + [sym_val_bool] = STATE(5677), + [sym_val_variable] = STATE(4406), + [sym_val_number] = STATE(4406), + [sym__val_number_decimal] = STATE(5151), + [sym__val_number] = STATE(4446), + [sym_val_duration] = STATE(4406), + [sym_val_filesize] = STATE(4406), + [sym_val_binary] = STATE(4406), + [sym_val_string] = STATE(4406), + [sym__raw_str] = STATE(3849), + [sym__str_double_quotes] = STATE(3849), + [sym_val_interpolated] = STATE(4406), + [sym__inter_single_quotes] = STATE(4336), + [sym__inter_double_quotes] = STATE(4388), + [sym_val_list] = STATE(4406), + [sym_val_record] = STATE(4406), + [sym_val_table] = STATE(4406), + [sym_val_closure] = STATE(4406), + [sym_unquoted] = STATE(4360), + [sym__unquoted_anonymous_prefix] = STATE(7012), + [sym_comment] = STATE(1260), + [anon_sym_LBRACK] = ACTIONS(4302), + [anon_sym_LPAREN] = ACTIONS(4304), + [anon_sym_DOLLAR] = ACTIONS(2014), + [anon_sym_LBRACE] = ACTIONS(4306), + [anon_sym_DOT_DOT] = ACTIONS(4308), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4310), + [anon_sym_DOT_DOT_LT] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(4312), + [anon_sym_true] = ACTIONS(4314), + [anon_sym_false] = ACTIONS(4314), + [aux_sym__val_number_decimal_token1] = ACTIONS(3032), + [aux_sym__val_number_decimal_token2] = ACTIONS(4316), + [aux_sym__val_number_decimal_token3] = ACTIONS(4318), + [aux_sym__val_number_decimal_token4] = ACTIONS(4320), + [aux_sym__val_number_token1] = ACTIONS(4322), + [aux_sym__val_number_token2] = ACTIONS(4322), + [aux_sym__val_number_token3] = ACTIONS(4322), + [aux_sym__val_number_token4] = ACTIONS(4324), + [aux_sym__val_number_token5] = ACTIONS(4324), + [aux_sym__val_number_token6] = ACTIONS(4324), + [anon_sym_0b] = ACTIONS(2044), + [anon_sym_0o] = ACTIONS(2046), + [anon_sym_0x] = ACTIONS(2046), + [sym_val_date] = ACTIONS(4326), + [anon_sym_DQUOTE] = ACTIONS(4328), + [sym__str_single_quotes] = ACTIONS(4330), + [sym__str_back_ticks] = ACTIONS(4330), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4332), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4334), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(2064), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2066), + }, + [1261] = { + [sym__val_range] = STATE(7359), + [sym__value] = STATE(4448), + [sym_val_nothing] = STATE(4406), + [sym_val_bool] = STATE(4136), + [sym_val_variable] = STATE(4406), + [sym_val_number] = STATE(4406), + [sym__val_number_decimal] = STATE(3816), + [sym__val_number] = STATE(4446), + [sym_val_duration] = STATE(4406), + [sym_val_filesize] = STATE(4406), + [sym_val_binary] = STATE(4406), + [sym_val_string] = STATE(4406), + [sym__raw_str] = STATE(3849), + [sym__str_double_quotes] = STATE(3849), + [sym_val_interpolated] = STATE(4406), + [sym__inter_single_quotes] = STATE(4336), + [sym__inter_double_quotes] = STATE(4388), + [sym_val_list] = STATE(4406), + [sym_val_record] = STATE(4406), + [sym_val_table] = STATE(4406), + [sym_val_closure] = STATE(4406), + [sym_unquoted] = STATE(4450), + [sym__unquoted_anonymous_prefix] = STATE(7012), + [sym_comment] = STATE(1261), + [anon_sym_LBRACK] = ACTIONS(4302), + [anon_sym_LPAREN] = ACTIONS(4304), + [anon_sym_DOLLAR] = ACTIONS(2014), + [anon_sym_LBRACE] = ACTIONS(4306), + [anon_sym_DOT_DOT] = ACTIONS(4308), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4310), + [anon_sym_DOT_DOT_LT] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(4336), + [anon_sym_true] = ACTIONS(4338), + [anon_sym_false] = ACTIONS(4338), + [aux_sym__val_number_decimal_token1] = ACTIONS(2034), + [aux_sym__val_number_decimal_token2] = ACTIONS(4340), + [aux_sym__val_number_decimal_token3] = ACTIONS(4342), + [aux_sym__val_number_decimal_token4] = ACTIONS(4344), + [aux_sym__val_number_token1] = ACTIONS(4322), + [aux_sym__val_number_token2] = ACTIONS(4322), + [aux_sym__val_number_token3] = ACTIONS(4322), + [aux_sym__val_number_token4] = ACTIONS(4346), + [aux_sym__val_number_token5] = ACTIONS(4346), + [aux_sym__val_number_token6] = ACTIONS(4346), + [anon_sym_0b] = ACTIONS(2044), + [anon_sym_0o] = ACTIONS(2046), + [anon_sym_0x] = ACTIONS(2046), + [sym_val_date] = ACTIONS(4348), + [anon_sym_DQUOTE] = ACTIONS(4328), + [sym__str_single_quotes] = ACTIONS(4330), + [sym__str_back_ticks] = ACTIONS(4330), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4332), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4334), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(2064), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2066), + }, + [1262] = { + [sym__val_range] = STATE(7359), + [sym__value] = STATE(4401), + [sym_val_nothing] = STATE(4406), + [sym_val_bool] = STATE(4136), + [sym_val_variable] = STATE(4406), + [sym_val_number] = STATE(4406), + [sym__val_number_decimal] = STATE(3816), + [sym__val_number] = STATE(4446), + [sym_val_duration] = STATE(4406), + [sym_val_filesize] = STATE(4406), + [sym_val_binary] = STATE(4406), + [sym_val_string] = STATE(4406), + [sym__raw_str] = STATE(3849), + [sym__str_double_quotes] = STATE(3849), + [sym_val_interpolated] = STATE(4406), + [sym__inter_single_quotes] = STATE(4336), + [sym__inter_double_quotes] = STATE(4388), + [sym_val_list] = STATE(4406), + [sym_val_record] = STATE(4406), + [sym_val_table] = STATE(4406), + [sym_val_closure] = STATE(4406), + [sym_unquoted] = STATE(4405), + [sym__unquoted_anonymous_prefix] = STATE(7012), + [sym_comment] = STATE(1262), + [anon_sym_LBRACK] = ACTIONS(4302), + [anon_sym_LPAREN] = ACTIONS(4304), + [anon_sym_DOLLAR] = ACTIONS(2014), + [anon_sym_LBRACE] = ACTIONS(4306), + [anon_sym_DOT_DOT] = ACTIONS(4308), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4310), + [anon_sym_DOT_DOT_LT] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(4336), + [anon_sym_true] = ACTIONS(4338), + [anon_sym_false] = ACTIONS(4338), + [aux_sym__val_number_decimal_token1] = ACTIONS(2034), + [aux_sym__val_number_decimal_token2] = ACTIONS(4340), + [aux_sym__val_number_decimal_token3] = ACTIONS(4342), + [aux_sym__val_number_decimal_token4] = ACTIONS(4344), + [aux_sym__val_number_token1] = ACTIONS(4322), + [aux_sym__val_number_token2] = ACTIONS(4322), + [aux_sym__val_number_token3] = ACTIONS(4322), + [aux_sym__val_number_token4] = ACTIONS(4346), + [aux_sym__val_number_token5] = ACTIONS(4346), + [aux_sym__val_number_token6] = ACTIONS(4346), + [anon_sym_0b] = ACTIONS(2044), + [anon_sym_0o] = ACTIONS(2046), + [anon_sym_0x] = ACTIONS(2046), + [sym_val_date] = ACTIONS(4348), + [anon_sym_DQUOTE] = ACTIONS(4328), + [sym__str_single_quotes] = ACTIONS(4330), + [sym__str_back_ticks] = ACTIONS(4330), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4332), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4334), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(2064), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2066), + }, + [1263] = { + [sym__val_range] = STATE(7140), + [sym__value] = STATE(1855), + [sym_val_nothing] = STATE(1680), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1680), + [sym_val_number] = STATE(1680), + [sym__val_number_decimal] = STATE(1339), + [sym__val_number] = STATE(1686), + [sym_val_duration] = STATE(1680), + [sym_val_filesize] = STATE(1680), + [sym_val_binary] = STATE(1680), + [sym_val_string] = STATE(1680), + [sym__raw_str] = STATE(1800), + [sym__str_double_quotes] = STATE(1800), + [sym_val_interpolated] = STATE(1680), + [sym__inter_single_quotes] = STATE(1858), + [sym__inter_double_quotes] = STATE(1859), + [sym_val_list] = STATE(1680), + [sym_val_record] = STATE(1680), + [sym_val_table] = STATE(1680), + [sym_val_closure] = STATE(1680), + [sym_unquoted] = STATE(1860), + [sym__unquoted_anonymous_prefix] = STATE(7096), + [sym_comment] = STATE(1263), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_LPAREN] = ACTIONS(3985), + [anon_sym_DOLLAR] = ACTIONS(3947), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_DOT_DOT] = ACTIONS(3987), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3989), + [anon_sym_DOT_DOT_LT] = ACTIONS(3989), + [anon_sym_null] = ACTIONS(3991), + [anon_sym_true] = ACTIONS(3993), + [anon_sym_false] = ACTIONS(3993), + [aux_sym__val_number_decimal_token1] = ACTIONS(3995), + [aux_sym__val_number_decimal_token2] = ACTIONS(3997), + [aux_sym__val_number_decimal_token3] = ACTIONS(3999), + [aux_sym__val_number_decimal_token4] = ACTIONS(4001), + [aux_sym__val_number_token1] = ACTIONS(2657), + [aux_sym__val_number_token2] = ACTIONS(2657), + [aux_sym__val_number_token3] = ACTIONS(2657), + [aux_sym__val_number_token4] = ACTIONS(4003), + [aux_sym__val_number_token5] = ACTIONS(4003), + [aux_sym__val_number_token6] = ACTIONS(4003), + [anon_sym_0b] = ACTIONS(2661), + [anon_sym_0o] = ACTIONS(2663), + [anon_sym_0x] = ACTIONS(2663), + [sym_val_date] = ACTIONS(4005), + [anon_sym_DQUOTE] = ACTIONS(2667), + [sym__str_single_quotes] = ACTIONS(2669), + [sym__str_back_ticks] = ACTIONS(2669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2673), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(4007), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2681), + }, + [1264] = { + [sym__val_range] = STATE(7359), + [sym__value] = STATE(4359), + [sym_val_nothing] = STATE(4406), + [sym_val_bool] = STATE(4136), + [sym_val_variable] = STATE(4406), + [sym_val_number] = STATE(4406), + [sym__val_number_decimal] = STATE(3816), + [sym__val_number] = STATE(4446), + [sym_val_duration] = STATE(4406), + [sym_val_filesize] = STATE(4406), + [sym_val_binary] = STATE(4406), + [sym_val_string] = STATE(4406), + [sym__raw_str] = STATE(3849), + [sym__str_double_quotes] = STATE(3849), + [sym_val_interpolated] = STATE(4406), + [sym__inter_single_quotes] = STATE(4336), + [sym__inter_double_quotes] = STATE(4388), + [sym_val_list] = STATE(4406), + [sym_val_record] = STATE(4406), + [sym_val_table] = STATE(4406), + [sym_val_closure] = STATE(4406), + [sym_unquoted] = STATE(4360), + [sym__unquoted_anonymous_prefix] = STATE(7012), + [sym_comment] = STATE(1264), + [anon_sym_LBRACK] = ACTIONS(4302), + [anon_sym_LPAREN] = ACTIONS(4304), + [anon_sym_DOLLAR] = ACTIONS(2014), + [anon_sym_LBRACE] = ACTIONS(4306), + [anon_sym_DOT_DOT] = ACTIONS(4308), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4310), + [anon_sym_DOT_DOT_LT] = ACTIONS(4310), + [anon_sym_null] = ACTIONS(4336), + [anon_sym_true] = ACTIONS(4338), + [anon_sym_false] = ACTIONS(4338), + [aux_sym__val_number_decimal_token1] = ACTIONS(2034), + [aux_sym__val_number_decimal_token2] = ACTIONS(4340), + [aux_sym__val_number_decimal_token3] = ACTIONS(4342), + [aux_sym__val_number_decimal_token4] = ACTIONS(4344), + [aux_sym__val_number_token1] = ACTIONS(4322), + [aux_sym__val_number_token2] = ACTIONS(4322), + [aux_sym__val_number_token3] = ACTIONS(4322), + [aux_sym__val_number_token4] = ACTIONS(4346), + [aux_sym__val_number_token5] = ACTIONS(4346), + [aux_sym__val_number_token6] = ACTIONS(4346), + [anon_sym_0b] = ACTIONS(2044), + [anon_sym_0o] = ACTIONS(2046), + [anon_sym_0x] = ACTIONS(2046), + [sym_val_date] = ACTIONS(4348), + [anon_sym_DQUOTE] = ACTIONS(4328), + [sym__str_single_quotes] = ACTIONS(4330), + [sym__str_back_ticks] = ACTIONS(4330), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4332), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4334), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(2064), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2066), + }, + [1265] = { + [sym__val_range] = STATE(7140), + [sym__value] = STATE(1798), + [sym_val_nothing] = STATE(1680), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1680), + [sym_val_number] = STATE(1680), + [sym__val_number_decimal] = STATE(1339), + [sym__val_number] = STATE(1686), + [sym_val_duration] = STATE(1680), + [sym_val_filesize] = STATE(1680), + [sym_val_binary] = STATE(1680), + [sym_val_string] = STATE(1680), + [sym__raw_str] = STATE(1800), + [sym__str_double_quotes] = STATE(1800), + [sym_val_interpolated] = STATE(1680), + [sym__inter_single_quotes] = STATE(1858), + [sym__inter_double_quotes] = STATE(1859), + [sym_val_list] = STATE(1680), + [sym_val_record] = STATE(1680), + [sym_val_table] = STATE(1680), + [sym_val_closure] = STATE(1680), + [sym_unquoted] = STATE(1799), + [sym__unquoted_anonymous_prefix] = STATE(7096), + [sym_comment] = STATE(1265), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_LPAREN] = ACTIONS(3985), + [anon_sym_DOLLAR] = ACTIONS(3947), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_DOT_DOT] = ACTIONS(3987), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3989), + [anon_sym_DOT_DOT_LT] = ACTIONS(3989), + [anon_sym_null] = ACTIONS(3991), + [anon_sym_true] = ACTIONS(3993), + [anon_sym_false] = ACTIONS(3993), + [aux_sym__val_number_decimal_token1] = ACTIONS(3995), + [aux_sym__val_number_decimal_token2] = ACTIONS(3997), + [aux_sym__val_number_decimal_token3] = ACTIONS(3999), + [aux_sym__val_number_decimal_token4] = ACTIONS(4001), + [aux_sym__val_number_token1] = ACTIONS(2657), + [aux_sym__val_number_token2] = ACTIONS(2657), + [aux_sym__val_number_token3] = ACTIONS(2657), + [aux_sym__val_number_token4] = ACTIONS(4003), + [aux_sym__val_number_token5] = ACTIONS(4003), + [aux_sym__val_number_token6] = ACTIONS(4003), + [anon_sym_0b] = ACTIONS(2661), + [anon_sym_0o] = ACTIONS(2663), + [anon_sym_0x] = ACTIONS(2663), + [sym_val_date] = ACTIONS(4005), + [anon_sym_DQUOTE] = ACTIONS(2667), + [sym__str_single_quotes] = ACTIONS(2669), + [sym__str_back_ticks] = ACTIONS(2669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2673), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(4007), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2681), + }, + [1266] = { + [sym__val_range] = STATE(7269), + [sym__value] = STATE(5478), + [sym_val_nothing] = STATE(5444), + [sym_val_bool] = STATE(5404), + [sym_val_variable] = STATE(5444), + [sym_val_number] = STATE(5444), + [sym__val_number_decimal] = STATE(4716), + [sym__val_number] = STATE(5484), + [sym_val_duration] = STATE(5444), + [sym_val_filesize] = STATE(5444), + [sym_val_binary] = STATE(5444), + [sym_val_string] = STATE(5444), + [sym__raw_str] = STATE(5097), + [sym__str_double_quotes] = STATE(5097), + [sym_val_interpolated] = STATE(5444), + [sym__inter_single_quotes] = STATE(5425), + [sym__inter_double_quotes] = STATE(5426), + [sym_val_list] = STATE(5444), + [sym_val_record] = STATE(5444), + [sym_val_table] = STATE(5444), + [sym_val_closure] = STATE(5444), + [sym_unquoted] = STATE(5479), + [sym__unquoted_anonymous_prefix] = STATE(7277), + [sym_comment] = STATE(1266), + [anon_sym_LBRACK] = ACTIONS(4350), + [anon_sym_LPAREN] = ACTIONS(4352), + [anon_sym_DOLLAR] = ACTIONS(4354), + [anon_sym_LBRACE] = ACTIONS(4356), + [anon_sym_DOT_DOT] = ACTIONS(4358), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4360), + [anon_sym_DOT_DOT_LT] = ACTIONS(4360), + [anon_sym_null] = ACTIONS(4362), + [anon_sym_true] = ACTIONS(4364), + [anon_sym_false] = ACTIONS(4364), + [aux_sym__val_number_decimal_token1] = ACTIONS(4366), + [aux_sym__val_number_decimal_token2] = ACTIONS(4368), + [aux_sym__val_number_decimal_token3] = ACTIONS(4370), + [aux_sym__val_number_decimal_token4] = ACTIONS(4372), + [aux_sym__val_number_token1] = ACTIONS(4374), + [aux_sym__val_number_token2] = ACTIONS(4374), + [aux_sym__val_number_token3] = ACTIONS(4374), + [aux_sym__val_number_token4] = ACTIONS(4376), + [aux_sym__val_number_token5] = ACTIONS(4376), + [aux_sym__val_number_token6] = ACTIONS(4376), + [anon_sym_0b] = ACTIONS(4378), + [anon_sym_0o] = ACTIONS(4380), + [anon_sym_0x] = ACTIONS(4380), + [sym_val_date] = ACTIONS(4382), + [anon_sym_DQUOTE] = ACTIONS(4384), + [sym__str_single_quotes] = ACTIONS(4386), + [sym__str_back_ticks] = ACTIONS(4386), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4388), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4390), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3494), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4392), + }, + [1267] = { + [sym__val_range] = STATE(7140), + [sym__value] = STATE(1808), + [sym_val_nothing] = STATE(1680), + [sym_val_bool] = STATE(1643), + [sym_val_variable] = STATE(1680), + [sym_val_number] = STATE(1680), + [sym__val_number_decimal] = STATE(1339), + [sym__val_number] = STATE(1686), + [sym_val_duration] = STATE(1680), + [sym_val_filesize] = STATE(1680), + [sym_val_binary] = STATE(1680), + [sym_val_string] = STATE(1680), + [sym__raw_str] = STATE(1800), + [sym__str_double_quotes] = STATE(1800), + [sym_val_interpolated] = STATE(1680), + [sym__inter_single_quotes] = STATE(1858), + [sym__inter_double_quotes] = STATE(1859), + [sym_val_list] = STATE(1680), + [sym_val_record] = STATE(1680), + [sym_val_table] = STATE(1680), + [sym_val_closure] = STATE(1680), + [sym_unquoted] = STATE(1809), + [sym__unquoted_anonymous_prefix] = STATE(7096), + [sym_comment] = STATE(1267), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_LPAREN] = ACTIONS(3985), + [anon_sym_DOLLAR] = ACTIONS(3947), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_DOT_DOT] = ACTIONS(3987), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3989), + [anon_sym_DOT_DOT_LT] = ACTIONS(3989), + [anon_sym_null] = ACTIONS(3991), + [anon_sym_true] = ACTIONS(3993), + [anon_sym_false] = ACTIONS(3993), + [aux_sym__val_number_decimal_token1] = ACTIONS(3995), + [aux_sym__val_number_decimal_token2] = ACTIONS(3997), + [aux_sym__val_number_decimal_token3] = ACTIONS(3999), + [aux_sym__val_number_decimal_token4] = ACTIONS(4001), + [aux_sym__val_number_token1] = ACTIONS(2657), + [aux_sym__val_number_token2] = ACTIONS(2657), + [aux_sym__val_number_token3] = ACTIONS(2657), + [aux_sym__val_number_token4] = ACTIONS(4003), + [aux_sym__val_number_token5] = ACTIONS(4003), + [aux_sym__val_number_token6] = ACTIONS(4003), + [anon_sym_0b] = ACTIONS(2661), + [anon_sym_0o] = ACTIONS(2663), + [anon_sym_0x] = ACTIONS(2663), + [sym_val_date] = ACTIONS(4005), + [anon_sym_DQUOTE] = ACTIONS(2667), + [sym__str_single_quotes] = ACTIONS(2669), + [sym__str_back_ticks] = ACTIONS(2669), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2671), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2673), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(4007), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2681), + }, + [1268] = { + [sym__val_range] = STATE(7269), + [sym__value] = STATE(5505), + [sym_val_nothing] = STATE(5444), + [sym_val_bool] = STATE(5404), + [sym_val_variable] = STATE(5444), + [sym_val_number] = STATE(5444), + [sym__val_number_decimal] = STATE(4716), + [sym__val_number] = STATE(5484), + [sym_val_duration] = STATE(5444), + [sym_val_filesize] = STATE(5444), + [sym_val_binary] = STATE(5444), + [sym_val_string] = STATE(5444), + [sym__raw_str] = STATE(5097), + [sym__str_double_quotes] = STATE(5097), + [sym_val_interpolated] = STATE(5444), + [sym__inter_single_quotes] = STATE(5425), + [sym__inter_double_quotes] = STATE(5426), + [sym_val_list] = STATE(5444), + [sym_val_record] = STATE(5444), + [sym_val_table] = STATE(5444), + [sym_val_closure] = STATE(5444), + [sym_unquoted] = STATE(5507), + [sym__unquoted_anonymous_prefix] = STATE(7277), + [sym_comment] = STATE(1268), + [anon_sym_LBRACK] = ACTIONS(4350), + [anon_sym_LPAREN] = ACTIONS(4352), + [anon_sym_DOLLAR] = ACTIONS(4354), + [anon_sym_LBRACE] = ACTIONS(4356), + [anon_sym_DOT_DOT] = ACTIONS(4358), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4360), + [anon_sym_DOT_DOT_LT] = ACTIONS(4360), + [anon_sym_null] = ACTIONS(4362), + [anon_sym_true] = ACTIONS(4364), + [anon_sym_false] = ACTIONS(4364), + [aux_sym__val_number_decimal_token1] = ACTIONS(4366), + [aux_sym__val_number_decimal_token2] = ACTIONS(4368), + [aux_sym__val_number_decimal_token3] = ACTIONS(4370), + [aux_sym__val_number_decimal_token4] = ACTIONS(4372), + [aux_sym__val_number_token1] = ACTIONS(4374), + [aux_sym__val_number_token2] = ACTIONS(4374), + [aux_sym__val_number_token3] = ACTIONS(4374), + [aux_sym__val_number_token4] = ACTIONS(4376), + [aux_sym__val_number_token5] = ACTIONS(4376), + [aux_sym__val_number_token6] = ACTIONS(4376), + [anon_sym_0b] = ACTIONS(4378), + [anon_sym_0o] = ACTIONS(4380), + [anon_sym_0x] = ACTIONS(4380), + [sym_val_date] = ACTIONS(4382), + [anon_sym_DQUOTE] = ACTIONS(4384), + [sym__str_single_quotes] = ACTIONS(4386), + [sym__str_back_ticks] = ACTIONS(4386), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4388), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4390), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3494), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4392), + }, + [1269] = { + [sym__val_range] = STATE(7269), + [sym__value] = STATE(5552), + [sym_val_nothing] = STATE(5444), + [sym_val_bool] = STATE(5404), + [sym_val_variable] = STATE(5444), + [sym_val_number] = STATE(5444), + [sym__val_number_decimal] = STATE(4716), + [sym__val_number] = STATE(5484), + [sym_val_duration] = STATE(5444), + [sym_val_filesize] = STATE(5444), + [sym_val_binary] = STATE(5444), + [sym_val_string] = STATE(5444), + [sym__raw_str] = STATE(5097), + [sym__str_double_quotes] = STATE(5097), + [sym_val_interpolated] = STATE(5444), + [sym__inter_single_quotes] = STATE(5425), + [sym__inter_double_quotes] = STATE(5426), + [sym_val_list] = STATE(5444), + [sym_val_record] = STATE(5444), + [sym_val_table] = STATE(5444), + [sym_val_closure] = STATE(5444), + [sym_unquoted] = STATE(5554), + [sym__unquoted_anonymous_prefix] = STATE(7277), + [sym_comment] = STATE(1269), + [anon_sym_LBRACK] = ACTIONS(4350), + [anon_sym_LPAREN] = ACTIONS(4352), + [anon_sym_DOLLAR] = ACTIONS(4354), + [anon_sym_LBRACE] = ACTIONS(4356), + [anon_sym_DOT_DOT] = ACTIONS(4358), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4360), + [anon_sym_DOT_DOT_LT] = ACTIONS(4360), + [anon_sym_null] = ACTIONS(4362), + [anon_sym_true] = ACTIONS(4364), + [anon_sym_false] = ACTIONS(4364), + [aux_sym__val_number_decimal_token1] = ACTIONS(4366), + [aux_sym__val_number_decimal_token2] = ACTIONS(4368), + [aux_sym__val_number_decimal_token3] = ACTIONS(4370), + [aux_sym__val_number_decimal_token4] = ACTIONS(4372), + [aux_sym__val_number_token1] = ACTIONS(4374), + [aux_sym__val_number_token2] = ACTIONS(4374), + [aux_sym__val_number_token3] = ACTIONS(4374), + [aux_sym__val_number_token4] = ACTIONS(4376), + [aux_sym__val_number_token5] = ACTIONS(4376), + [aux_sym__val_number_token6] = ACTIONS(4376), + [anon_sym_0b] = ACTIONS(4378), + [anon_sym_0o] = ACTIONS(4380), + [anon_sym_0x] = ACTIONS(4380), + [sym_val_date] = ACTIONS(4382), + [anon_sym_DQUOTE] = ACTIONS(4384), + [sym__str_single_quotes] = ACTIONS(4386), + [sym__str_back_ticks] = ACTIONS(4386), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4388), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4390), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3494), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4392), + }, + [1270] = { + [sym__val_range] = STATE(7094), + [sym__value] = STATE(4967), + [sym_val_nothing] = STATE(4133), + [sym_val_bool] = STATE(5271), + [sym_val_variable] = STATE(4133), + [sym_val_number] = STATE(4133), + [sym__val_number_decimal] = STATE(4624), + [sym__val_number] = STATE(4134), + [sym_val_duration] = STATE(4133), + [sym_val_filesize] = STATE(4133), + [sym_val_binary] = STATE(4133), + [sym_val_string] = STATE(4133), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(4133), + [sym__inter_single_quotes] = STATE(5018), + [sym__inter_double_quotes] = STATE(5024), + [sym_val_list] = STATE(4133), + [sym_val_record] = STATE(4133), + [sym_val_table] = STATE(4133), + [sym_val_closure] = STATE(4133), + [sym_unquoted] = STATE(4968), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1270), + [anon_sym_LBRACK] = ACTIONS(4058), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_DOLLAR] = ACTIONS(4062), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_DOT_DOT] = ACTIONS(4039), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4041), + [anon_sym_DOT_DOT_LT] = ACTIONS(4041), + [anon_sym_null] = ACTIONS(4394), + [anon_sym_true] = ACTIONS(4396), + [anon_sym_false] = ACTIONS(4396), + [aux_sym__val_number_decimal_token1] = ACTIONS(4398), + [aux_sym__val_number_decimal_token2] = ACTIONS(4400), + [aux_sym__val_number_decimal_token3] = ACTIONS(4402), + [aux_sym__val_number_decimal_token4] = ACTIONS(4404), + [aux_sym__val_number_token1] = ACTIONS(3621), + [aux_sym__val_number_token2] = ACTIONS(3621), + [aux_sym__val_number_token3] = ACTIONS(3621), + [aux_sym__val_number_token4] = ACTIONS(4406), + [aux_sym__val_number_token5] = ACTIONS(4406), + [aux_sym__val_number_token6] = ACTIONS(4406), + [anon_sym_0b] = ACTIONS(3625), + [anon_sym_0o] = ACTIONS(3627), + [anon_sym_0x] = ACTIONS(3627), + [sym_val_date] = ACTIONS(4408), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym__str_single_quotes] = ACTIONS(1264), + [sym__str_back_ticks] = ACTIONS(1264), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4084), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1266), + }, + [1271] = { + [sym__val_range] = STATE(7269), + [sym__value] = STATE(5588), + [sym_val_nothing] = STATE(5444), + [sym_val_bool] = STATE(5404), + [sym_val_variable] = STATE(5444), + [sym_val_number] = STATE(5444), + [sym__val_number_decimal] = STATE(4716), + [sym__val_number] = STATE(5484), + [sym_val_duration] = STATE(5444), + [sym_val_filesize] = STATE(5444), + [sym_val_binary] = STATE(5444), + [sym_val_string] = STATE(5444), + [sym__raw_str] = STATE(5097), + [sym__str_double_quotes] = STATE(5097), + [sym_val_interpolated] = STATE(5444), + [sym__inter_single_quotes] = STATE(5425), + [sym__inter_double_quotes] = STATE(5426), + [sym_val_list] = STATE(5444), + [sym_val_record] = STATE(5444), + [sym_val_table] = STATE(5444), + [sym_val_closure] = STATE(5444), + [sym_unquoted] = STATE(5589), + [sym__unquoted_anonymous_prefix] = STATE(7277), + [sym_comment] = STATE(1271), + [anon_sym_LBRACK] = ACTIONS(4350), + [anon_sym_LPAREN] = ACTIONS(4352), + [anon_sym_DOLLAR] = ACTIONS(4354), + [anon_sym_LBRACE] = ACTIONS(4356), + [anon_sym_DOT_DOT] = ACTIONS(4358), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4360), + [anon_sym_DOT_DOT_LT] = ACTIONS(4360), + [anon_sym_null] = ACTIONS(4362), + [anon_sym_true] = ACTIONS(4364), + [anon_sym_false] = ACTIONS(4364), + [aux_sym__val_number_decimal_token1] = ACTIONS(4366), + [aux_sym__val_number_decimal_token2] = ACTIONS(4368), + [aux_sym__val_number_decimal_token3] = ACTIONS(4370), + [aux_sym__val_number_decimal_token4] = ACTIONS(4372), + [aux_sym__val_number_token1] = ACTIONS(4374), + [aux_sym__val_number_token2] = ACTIONS(4374), + [aux_sym__val_number_token3] = ACTIONS(4374), + [aux_sym__val_number_token4] = ACTIONS(4376), + [aux_sym__val_number_token5] = ACTIONS(4376), + [aux_sym__val_number_token6] = ACTIONS(4376), + [anon_sym_0b] = ACTIONS(4378), + [anon_sym_0o] = ACTIONS(4380), + [anon_sym_0x] = ACTIONS(4380), + [sym_val_date] = ACTIONS(4382), + [anon_sym_DQUOTE] = ACTIONS(4384), + [sym__str_single_quotes] = ACTIONS(4386), + [sym__str_back_ticks] = ACTIONS(4386), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4388), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4390), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3494), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4392), + }, + [1272] = { + [sym__val_range] = STATE(7094), + [sym__value] = STATE(5060), + [sym_val_nothing] = STATE(4133), + [sym_val_bool] = STATE(5271), + [sym_val_variable] = STATE(4133), + [sym_val_number] = STATE(4133), + [sym__val_number_decimal] = STATE(4624), + [sym__val_number] = STATE(4134), + [sym_val_duration] = STATE(4133), + [sym_val_filesize] = STATE(4133), + [sym_val_binary] = STATE(4133), + [sym_val_string] = STATE(4133), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(4133), + [sym__inter_single_quotes] = STATE(5018), + [sym__inter_double_quotes] = STATE(5024), + [sym_val_list] = STATE(4133), + [sym_val_record] = STATE(4133), + [sym_val_table] = STATE(4133), + [sym_val_closure] = STATE(4133), + [sym_unquoted] = STATE(5061), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1272), + [anon_sym_LBRACK] = ACTIONS(4058), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_DOLLAR] = ACTIONS(4062), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_DOT_DOT] = ACTIONS(4039), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4041), + [anon_sym_DOT_DOT_LT] = ACTIONS(4041), + [anon_sym_null] = ACTIONS(4394), + [anon_sym_true] = ACTIONS(4396), + [anon_sym_false] = ACTIONS(4396), + [aux_sym__val_number_decimal_token1] = ACTIONS(4398), + [aux_sym__val_number_decimal_token2] = ACTIONS(4400), + [aux_sym__val_number_decimal_token3] = ACTIONS(4402), + [aux_sym__val_number_decimal_token4] = ACTIONS(4404), + [aux_sym__val_number_token1] = ACTIONS(3621), + [aux_sym__val_number_token2] = ACTIONS(3621), + [aux_sym__val_number_token3] = ACTIONS(3621), + [aux_sym__val_number_token4] = ACTIONS(4406), + [aux_sym__val_number_token5] = ACTIONS(4406), + [aux_sym__val_number_token6] = ACTIONS(4406), + [anon_sym_0b] = ACTIONS(3625), + [anon_sym_0o] = ACTIONS(3627), + [anon_sym_0x] = ACTIONS(3627), + [sym_val_date] = ACTIONS(4408), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym__str_single_quotes] = ACTIONS(1264), + [sym__str_back_ticks] = ACTIONS(1264), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4084), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1266), + }, + [1273] = { + [sym__val_range] = STATE(7094), + [sym__value] = STATE(5067), + [sym_val_nothing] = STATE(4133), + [sym_val_bool] = STATE(5271), + [sym_val_variable] = STATE(4133), + [sym_val_number] = STATE(4133), + [sym__val_number_decimal] = STATE(4624), + [sym__val_number] = STATE(4134), + [sym_val_duration] = STATE(4133), + [sym_val_filesize] = STATE(4133), + [sym_val_binary] = STATE(4133), + [sym_val_string] = STATE(4133), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(4133), + [sym__inter_single_quotes] = STATE(5018), + [sym__inter_double_quotes] = STATE(5024), + [sym_val_list] = STATE(4133), + [sym_val_record] = STATE(4133), + [sym_val_table] = STATE(4133), + [sym_val_closure] = STATE(4133), + [sym_unquoted] = STATE(4945), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1273), + [anon_sym_LBRACK] = ACTIONS(4058), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_DOLLAR] = ACTIONS(4062), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_DOT_DOT] = ACTIONS(4039), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4041), + [anon_sym_DOT_DOT_LT] = ACTIONS(4041), + [anon_sym_null] = ACTIONS(4394), + [anon_sym_true] = ACTIONS(4396), + [anon_sym_false] = ACTIONS(4396), + [aux_sym__val_number_decimal_token1] = ACTIONS(4398), + [aux_sym__val_number_decimal_token2] = ACTIONS(4400), + [aux_sym__val_number_decimal_token3] = ACTIONS(4402), + [aux_sym__val_number_decimal_token4] = ACTIONS(4404), + [aux_sym__val_number_token1] = ACTIONS(3621), + [aux_sym__val_number_token2] = ACTIONS(3621), + [aux_sym__val_number_token3] = ACTIONS(3621), + [aux_sym__val_number_token4] = ACTIONS(4406), + [aux_sym__val_number_token5] = ACTIONS(4406), + [aux_sym__val_number_token6] = ACTIONS(4406), + [anon_sym_0b] = ACTIONS(3625), + [anon_sym_0o] = ACTIONS(3627), + [anon_sym_0x] = ACTIONS(3627), + [sym_val_date] = ACTIONS(4408), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym__str_single_quotes] = ACTIONS(1264), + [sym__str_back_ticks] = ACTIONS(1264), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4084), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1266), + }, + [1274] = { + [sym__val_range] = STATE(7094), + [sym__value] = STATE(4991), + [sym_val_nothing] = STATE(4133), + [sym_val_bool] = STATE(5271), + [sym_val_variable] = STATE(4133), + [sym_val_number] = STATE(4133), + [sym__val_number_decimal] = STATE(4624), + [sym__val_number] = STATE(4134), + [sym_val_duration] = STATE(4133), + [sym_val_filesize] = STATE(4133), + [sym_val_binary] = STATE(4133), + [sym_val_string] = STATE(4133), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_val_interpolated] = STATE(4133), + [sym__inter_single_quotes] = STATE(5018), + [sym__inter_double_quotes] = STATE(5024), + [sym_val_list] = STATE(4133), + [sym_val_record] = STATE(4133), + [sym_val_table] = STATE(4133), + [sym_val_closure] = STATE(4133), + [sym_unquoted] = STATE(4992), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1274), + [anon_sym_LBRACK] = ACTIONS(4058), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym_DOLLAR] = ACTIONS(4062), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_DOT_DOT] = ACTIONS(4039), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4041), + [anon_sym_DOT_DOT_LT] = ACTIONS(4041), + [anon_sym_null] = ACTIONS(4394), + [anon_sym_true] = ACTIONS(4396), + [anon_sym_false] = ACTIONS(4396), + [aux_sym__val_number_decimal_token1] = ACTIONS(4398), + [aux_sym__val_number_decimal_token2] = ACTIONS(4400), + [aux_sym__val_number_decimal_token3] = ACTIONS(4402), + [aux_sym__val_number_decimal_token4] = ACTIONS(4404), + [aux_sym__val_number_token1] = ACTIONS(3621), + [aux_sym__val_number_token2] = ACTIONS(3621), + [aux_sym__val_number_token3] = ACTIONS(3621), + [aux_sym__val_number_token4] = ACTIONS(4406), + [aux_sym__val_number_token5] = ACTIONS(4406), + [aux_sym__val_number_token6] = ACTIONS(4406), + [anon_sym_0b] = ACTIONS(3625), + [anon_sym_0o] = ACTIONS(3627), + [anon_sym_0x] = ACTIONS(3627), + [sym_val_date] = ACTIONS(4408), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym__str_single_quotes] = ACTIONS(1264), + [sym__str_back_ticks] = ACTIONS(1264), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4082), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4084), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1266), + }, + [1275] = { + [sym_cell_path] = STATE(1448), + [sym_path] = STATE(1374), + [sym_comment] = STATE(1275), + [aux_sym_cell_path_repeat1] = STATE(1284), + [sym__newline] = ACTIONS(1670), + [anon_sym_SEMI] = ACTIONS(1670), + [anon_sym_PIPE] = ACTIONS(1670), + [anon_sym_err_GT_PIPE] = ACTIONS(1670), + [anon_sym_out_GT_PIPE] = ACTIONS(1670), + [anon_sym_e_GT_PIPE] = ACTIONS(1670), + [anon_sym_o_GT_PIPE] = ACTIONS(1670), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1670), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1670), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1670), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1670), + [anon_sym_RPAREN] = ACTIONS(1670), + [anon_sym_GT2] = ACTIONS(1668), + [anon_sym_DASH2] = ACTIONS(1670), + [anon_sym_in2] = ACTIONS(1670), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_LBRACE] = ACTIONS(1670), + [anon_sym_RBRACE] = ACTIONS(1670), + [anon_sym_EQ_GT] = ACTIONS(1670), + [anon_sym_STAR2] = ACTIONS(1668), + [anon_sym_and2] = ACTIONS(1670), + [anon_sym_xor2] = ACTIONS(1670), + [anon_sym_or2] = ACTIONS(1670), + [anon_sym_not_DASHin2] = ACTIONS(1670), + [anon_sym_has2] = ACTIONS(1670), + [anon_sym_not_DASHhas2] = ACTIONS(1670), + [anon_sym_starts_DASHwith2] = ACTIONS(1670), + [anon_sym_ends_DASHwith2] = ACTIONS(1670), + [anon_sym_EQ_EQ2] = ACTIONS(1670), + [anon_sym_BANG_EQ2] = ACTIONS(1670), + [anon_sym_LT2] = ACTIONS(1668), + [anon_sym_LT_EQ2] = ACTIONS(1670), + [anon_sym_GT_EQ2] = ACTIONS(1670), + [anon_sym_EQ_TILDE2] = ACTIONS(1670), + [anon_sym_BANG_TILDE2] = ACTIONS(1670), + [anon_sym_STAR_STAR2] = ACTIONS(1670), + [anon_sym_PLUS_PLUS2] = ACTIONS(1670), + [anon_sym_SLASH2] = ACTIONS(1668), + [anon_sym_mod2] = ACTIONS(1670), + [anon_sym_SLASH_SLASH2] = ACTIONS(1670), + [anon_sym_PLUS2] = ACTIONS(1668), + [anon_sym_bit_DASHshl2] = ACTIONS(1670), + [anon_sym_bit_DASHshr2] = ACTIONS(1670), + [anon_sym_bit_DASHand2] = ACTIONS(1670), + [anon_sym_bit_DASHxor2] = ACTIONS(1670), + [anon_sym_bit_DASHor2] = ACTIONS(1670), + [anon_sym_DOT_DOT2] = ACTIONS(1668), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1670), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1670), + [anon_sym_COLON2] = ACTIONS(1670), + [anon_sym_DOT2] = ACTIONS(4220), + [anon_sym_err_GT] = ACTIONS(1668), + [anon_sym_out_GT] = ACTIONS(1668), + [anon_sym_e_GT] = ACTIONS(1668), + [anon_sym_o_GT] = ACTIONS(1668), + [anon_sym_err_PLUSout_GT] = ACTIONS(1668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1668), + [anon_sym_o_PLUSe_GT] = ACTIONS(1668), + [anon_sym_e_PLUSo_GT] = ACTIONS(1668), + [anon_sym_err_GT_GT] = ACTIONS(1670), + [anon_sym_out_GT_GT] = ACTIONS(1670), + [anon_sym_e_GT_GT] = ACTIONS(1670), + [anon_sym_o_GT_GT] = ACTIONS(1670), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1670), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1670), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1670), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1670), + [anon_sym_POUND] = ACTIONS(245), + }, + [1276] = { + [sym_comment] = STATE(1276), + [sym__newline] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_err_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_GT_PIPE] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1493), + [anon_sym_RPAREN] = ACTIONS(1493), + [anon_sym_DOLLAR] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_RBRACE] = ACTIONS(1493), + [anon_sym_DOT_DOT] = ACTIONS(1491), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1491), + [anon_sym_DOT_DOT_LT] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [aux_sym__immediate_decimal_token1] = ACTIONS(4410), + [aux_sym__immediate_decimal_token2] = ACTIONS(4412), + [anon_sym_null] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [aux_sym__val_number_decimal_token1] = ACTIONS(1491), + [aux_sym__val_number_decimal_token2] = ACTIONS(1493), + [aux_sym__val_number_decimal_token3] = ACTIONS(1493), + [aux_sym__val_number_decimal_token4] = ACTIONS(1493), + [aux_sym__val_number_token1] = ACTIONS(1493), + [aux_sym__val_number_token2] = ACTIONS(1493), + [aux_sym__val_number_token3] = ACTIONS(1493), + [aux_sym__val_number_token4] = ACTIONS(1493), + [aux_sym__val_number_token5] = ACTIONS(1493), + [aux_sym__val_number_token6] = ACTIONS(1493), + [anon_sym_0b] = ACTIONS(1491), + [sym_filesize_unit] = ACTIONS(1493), + [sym_duration_unit] = ACTIONS(1493), + [anon_sym_0o] = ACTIONS(1491), + [anon_sym_0x] = ACTIONS(1491), + [sym_val_date] = ACTIONS(1493), + [anon_sym_DQUOTE] = ACTIONS(1493), + [sym__str_single_quotes] = ACTIONS(1493), + [sym__str_back_ticks] = ACTIONS(1493), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1493), + [anon_sym_err_GT] = ACTIONS(1491), + [anon_sym_out_GT] = ACTIONS(1491), + [anon_sym_e_GT] = ACTIONS(1491), + [anon_sym_o_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT] = ACTIONS(1491), + [anon_sym_err_GT_GT] = ACTIONS(1493), + [anon_sym_out_GT_GT] = ACTIONS(1493), + [anon_sym_e_GT_GT] = ACTIONS(1493), + [anon_sym_o_GT_GT] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1493), + [aux_sym_unquoted_token1] = ACTIONS(1491), + [aux_sym_unquoted_token2] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1493), + }, + [1277] = { + [sym_comment] = STATE(1277), + [sym__newline] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_err_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_GT_PIPE] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_RPAREN] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(1501), + [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT] = ACTIONS(4414), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(4416), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [aux_sym__val_number_decimal_token1] = ACTIONS(1499), + [aux_sym__val_number_decimal_token2] = ACTIONS(1501), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1501), + [aux_sym__val_number_token1] = ACTIONS(1501), + [aux_sym__val_number_token2] = ACTIONS(1501), + [aux_sym__val_number_token3] = ACTIONS(1501), + [aux_sym__val_number_token4] = ACTIONS(1501), + [aux_sym__val_number_token5] = ACTIONS(1501), + [aux_sym__val_number_token6] = ACTIONS(1501), + [anon_sym_0b] = ACTIONS(1499), + [sym_filesize_unit] = ACTIONS(1501), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_0o] = ACTIONS(1499), + [anon_sym_0x] = ACTIONS(1499), + [sym_val_date] = ACTIONS(1501), + [anon_sym_DQUOTE] = ACTIONS(1501), + [sym__str_single_quotes] = ACTIONS(1501), + [sym__str_back_ticks] = ACTIONS(1501), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1501), + [anon_sym_out_GT_GT] = ACTIONS(1501), + [anon_sym_e_GT_GT] = ACTIONS(1501), + [anon_sym_o_GT_GT] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1501), + [aux_sym_unquoted_token1] = ACTIONS(1499), + [aux_sym_unquoted_token2] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1501), + }, + [1278] = { + [sym__val_range] = STATE(7105), + [sym__value] = STATE(2841), + [sym_val_nothing] = STATE(2860), + [sym_val_bool] = STATE(2745), + [sym_val_variable] = STATE(2860), + [sym_val_number] = STATE(2860), + [sym__val_number_decimal] = STATE(2463), + [sym__val_number] = STATE(2863), + [sym_val_duration] = STATE(2860), + [sym_val_filesize] = STATE(2860), + [sym_val_binary] = STATE(2860), + [sym_val_string] = STATE(2860), + [sym__raw_str] = STATE(2866), + [sym__str_double_quotes] = STATE(2866), + [sym_val_interpolated] = STATE(2860), + [sym__inter_single_quotes] = STATE(2822), + [sym__inter_double_quotes] = STATE(2854), + [sym_val_list] = STATE(2860), + [sym_val_record] = STATE(2860), + [sym_val_table] = STATE(2860), + [sym_val_closure] = STATE(2860), + [sym_unquoted] = STATE(2874), + [sym__unquoted_anonymous_prefix] = STATE(7128), + [sym_comment] = STATE(1278), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_DOLLAR] = ACTIONS(4120), + [anon_sym_LBRACE] = ACTIONS(4122), + [anon_sym_DOT_DOT] = ACTIONS(4124), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4126), + [anon_sym_DOT_DOT_LT] = ACTIONS(4126), + [anon_sym_null] = ACTIONS(4128), + [anon_sym_true] = ACTIONS(4130), + [anon_sym_false] = ACTIONS(4130), + [aux_sym__val_number_decimal_token1] = ACTIONS(4132), + [aux_sym__val_number_decimal_token2] = ACTIONS(4134), + [aux_sym__val_number_decimal_token3] = ACTIONS(4136), + [aux_sym__val_number_decimal_token4] = ACTIONS(4138), + [aux_sym__val_number_token1] = ACTIONS(4140), + [aux_sym__val_number_token2] = ACTIONS(4140), + [aux_sym__val_number_token3] = ACTIONS(4140), + [aux_sym__val_number_token4] = ACTIONS(4142), + [aux_sym__val_number_token5] = ACTIONS(4142), + [aux_sym__val_number_token6] = ACTIONS(4142), + [anon_sym_0b] = ACTIONS(4144), + [anon_sym_0o] = ACTIONS(4146), + [anon_sym_0x] = ACTIONS(4146), + [sym_val_date] = ACTIONS(4148), + [anon_sym_DQUOTE] = ACTIONS(4150), + [sym__str_single_quotes] = ACTIONS(4152), + [sym__str_back_ticks] = ACTIONS(4152), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4154), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4156), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(4158), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4160), + }, + [1279] = { + [sym_comment] = STATE(1279), + [ts_builtin_sym_end] = ACTIONS(1501), + [sym__newline] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_err_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_GT_PIPE] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT] = ACTIONS(4418), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(4420), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [aux_sym__val_number_decimal_token1] = ACTIONS(1499), + [aux_sym__val_number_decimal_token2] = ACTIONS(1501), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1501), + [aux_sym__val_number_token1] = ACTIONS(1501), + [aux_sym__val_number_token2] = ACTIONS(1501), + [aux_sym__val_number_token3] = ACTIONS(1501), + [aux_sym__val_number_token4] = ACTIONS(1501), + [aux_sym__val_number_token5] = ACTIONS(1501), + [aux_sym__val_number_token6] = ACTIONS(1501), + [anon_sym_0b] = ACTIONS(1499), + [sym_filesize_unit] = ACTIONS(1501), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_0o] = ACTIONS(1499), + [anon_sym_0x] = ACTIONS(1499), + [sym_val_date] = ACTIONS(1501), + [anon_sym_DQUOTE] = ACTIONS(1501), + [sym__str_single_quotes] = ACTIONS(1501), + [sym__str_back_ticks] = ACTIONS(1501), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1501), + [anon_sym_out_GT_GT] = ACTIONS(1501), + [anon_sym_e_GT_GT] = ACTIONS(1501), + [anon_sym_o_GT_GT] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1501), + [aux_sym_unquoted_token1] = ACTIONS(1499), + [aux_sym_unquoted_token2] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1501), + }, + [1280] = { + [sym_cell_path] = STATE(1473), + [sym_path] = STATE(1431), + [sym_comment] = STATE(1280), + [aux_sym_cell_path_repeat1] = STATE(1330), + [sym__newline] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(927), [anon_sym_err_GT_PIPE] = ACTIONS(927), [anon_sym_out_GT_PIPE] = ACTIONS(927), [anon_sym_e_GT_PIPE] = ACTIONS(927), @@ -205599,7 +199248,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(927), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(927), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(927), - [anon_sym_DOT2] = ACTIONS(4484), + [anon_sym_DOT2] = ACTIONS(4422), [anon_sym_err_GT] = ACTIONS(925), [anon_sym_out_GT] = ACTIONS(925), [anon_sym_e_GT] = ACTIONS(925), @@ -205620,373 +199269,1395 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(927), }, - [1334] = { - [sym_comment] = STATE(1334), - [sym__newline] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_PIPE] = ACTIONS(1494), - [anon_sym_err_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_GT_PIPE] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_RBRACE] = ACTIONS(1494), - [anon_sym_DOT_DOT] = ACTIONS(1492), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1492), - [anon_sym_DOT_DOT_LT] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [anon_sym_null] = ACTIONS(1494), - [anon_sym_true] = ACTIONS(1494), - [anon_sym_false] = ACTIONS(1494), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1494), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(1494), - [aux_sym__val_number_token2] = ACTIONS(1494), - [aux_sym__val_number_token3] = ACTIONS(1494), - [aux_sym__val_number_token4] = ACTIONS(1494), - [aux_sym__val_number_token5] = ACTIONS(1494), - [aux_sym__val_number_token6] = ACTIONS(1494), - [anon_sym_0b] = ACTIONS(1492), - [sym_filesize_unit] = ACTIONS(1494), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_0o] = ACTIONS(1492), - [anon_sym_0x] = ACTIONS(1492), - [sym_val_date] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym__str_single_quotes] = ACTIONS(1494), - [sym__str_back_ticks] = ACTIONS(1494), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1494), - [anon_sym_out_GT_GT] = ACTIONS(1494), - [anon_sym_e_GT_GT] = ACTIONS(1494), - [anon_sym_o_GT_GT] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1494), - [aux_sym_unquoted_token1] = ACTIONS(1492), - [aux_sym_unquoted_token2] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1494), + [1281] = { + [sym__expr_parenthesized_immediate] = STATE(1823), + [sym__immediate_decimal] = STATE(1990), + [sym_val_variable] = STATE(1823), + [sym_comment] = STATE(1281), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_DOLLAR] = ACTIONS(3550), + [anon_sym_GT2] = ACTIONS(1473), + [anon_sym_DASH2] = ACTIONS(1473), + [anon_sym_in2] = ACTIONS(1475), + [anon_sym_LBRACE] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_STAR2] = ACTIONS(1473), + [anon_sym_and2] = ACTIONS(1475), + [anon_sym_xor2] = ACTIONS(1475), + [anon_sym_or2] = ACTIONS(1475), + [anon_sym_not_DASHin2] = ACTIONS(1475), + [anon_sym_has2] = ACTIONS(1475), + [anon_sym_not_DASHhas2] = ACTIONS(1475), + [anon_sym_starts_DASHwith2] = ACTIONS(1475), + [anon_sym_ends_DASHwith2] = ACTIONS(1475), + [anon_sym_EQ_EQ2] = ACTIONS(1475), + [anon_sym_BANG_EQ2] = ACTIONS(1475), + [anon_sym_LT2] = ACTIONS(1473), + [anon_sym_LT_EQ2] = ACTIONS(1475), + [anon_sym_GT_EQ2] = ACTIONS(1475), + [anon_sym_EQ_TILDE2] = ACTIONS(1475), + [anon_sym_BANG_TILDE2] = ACTIONS(1475), + [anon_sym_LPAREN2] = ACTIONS(4027), + [anon_sym_STAR_STAR2] = ACTIONS(1475), + [anon_sym_PLUS_PLUS2] = ACTIONS(1475), + [anon_sym_SLASH2] = ACTIONS(1473), + [anon_sym_mod2] = ACTIONS(1475), + [anon_sym_SLASH_SLASH2] = ACTIONS(1475), + [anon_sym_PLUS2] = ACTIONS(1473), + [anon_sym_bit_DASHshl2] = ACTIONS(1475), + [anon_sym_bit_DASHshr2] = ACTIONS(1475), + [anon_sym_bit_DASHand2] = ACTIONS(1475), + [anon_sym_bit_DASHxor2] = ACTIONS(1475), + [anon_sym_bit_DASHor2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token1] = ACTIONS(4424), + [aux_sym__immediate_decimal_token3] = ACTIONS(4424), + [aux_sym__immediate_decimal_token4] = ACTIONS(4033), + [aux_sym__immediate_decimal_token5] = ACTIONS(4035), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(245), }, - [1335] = { - [sym_cell_path] = STATE(1583), - [sym_path] = STATE(1497), - [sym_comment] = STATE(1335), - [aux_sym_cell_path_repeat1] = STATE(1372), - [sym__newline] = ACTIONS(1700), - [anon_sym_SEMI] = ACTIONS(1700), - [anon_sym_PIPE] = ACTIONS(1700), - [anon_sym_err_GT_PIPE] = ACTIONS(1700), - [anon_sym_out_GT_PIPE] = ACTIONS(1700), - [anon_sym_e_GT_PIPE] = ACTIONS(1700), - [anon_sym_o_GT_PIPE] = ACTIONS(1700), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1700), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1700), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1700), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1700), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_RPAREN] = ACTIONS(1700), - [anon_sym_DOLLAR] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1700), - [anon_sym_DASH2] = ACTIONS(1698), - [anon_sym_LBRACE] = ACTIONS(1700), - [anon_sym_RBRACE] = ACTIONS(1700), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_DOT_DOT2] = ACTIONS(1698), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1698), - [anon_sym_DOT_DOT_LT] = ACTIONS(1698), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1700), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1700), - [anon_sym_null] = ACTIONS(1700), - [anon_sym_true] = ACTIONS(1700), - [anon_sym_false] = ACTIONS(1700), - [aux_sym__val_number_decimal_token1] = ACTIONS(1698), - [aux_sym__val_number_decimal_token2] = ACTIONS(1700), - [aux_sym__val_number_decimal_token3] = ACTIONS(1700), - [aux_sym__val_number_decimal_token4] = ACTIONS(1700), - [aux_sym__val_number_token1] = ACTIONS(1700), - [aux_sym__val_number_token2] = ACTIONS(1700), - [aux_sym__val_number_token3] = ACTIONS(1700), - [aux_sym__val_number_token4] = ACTIONS(1700), - [aux_sym__val_number_token5] = ACTIONS(1700), - [aux_sym__val_number_token6] = ACTIONS(1700), - [anon_sym_0b] = ACTIONS(1698), - [anon_sym_0o] = ACTIONS(1698), - [anon_sym_0x] = ACTIONS(1698), - [sym_val_date] = ACTIONS(1700), - [anon_sym_DQUOTE] = ACTIONS(1700), - [sym__str_single_quotes] = ACTIONS(1700), - [sym__str_back_ticks] = ACTIONS(1700), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1700), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1700), - [anon_sym_DOT2] = ACTIONS(4484), - [anon_sym_err_GT] = ACTIONS(1698), - [anon_sym_out_GT] = ACTIONS(1698), - [anon_sym_e_GT] = ACTIONS(1698), - [anon_sym_o_GT] = ACTIONS(1698), - [anon_sym_err_PLUSout_GT] = ACTIONS(1698), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1698), - [anon_sym_o_PLUSe_GT] = ACTIONS(1698), - [anon_sym_e_PLUSo_GT] = ACTIONS(1698), - [anon_sym_err_GT_GT] = ACTIONS(1700), - [anon_sym_out_GT_GT] = ACTIONS(1700), - [anon_sym_e_GT_GT] = ACTIONS(1700), - [anon_sym_o_GT_GT] = ACTIONS(1700), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1700), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1700), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1700), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1700), - [aux_sym_unquoted_token1] = ACTIONS(1698), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1700), + [1282] = { + [sym_comment] = STATE(1282), + [sym__newline] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_err_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_GT_PIPE] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(1501), + [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_LPAREN2] = ACTIONS(1501), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [aux_sym__val_number_decimal_token1] = ACTIONS(1499), + [aux_sym__val_number_decimal_token2] = ACTIONS(1501), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1501), + [aux_sym__val_number_token1] = ACTIONS(1501), + [aux_sym__val_number_token2] = ACTIONS(1501), + [aux_sym__val_number_token3] = ACTIONS(1501), + [aux_sym__val_number_token4] = ACTIONS(1501), + [aux_sym__val_number_token5] = ACTIONS(1501), + [aux_sym__val_number_token6] = ACTIONS(1501), + [anon_sym_0b] = ACTIONS(1499), + [sym_filesize_unit] = ACTIONS(1501), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_0o] = ACTIONS(1499), + [anon_sym_0x] = ACTIONS(1499), + [sym_val_date] = ACTIONS(1501), + [anon_sym_DQUOTE] = ACTIONS(1501), + [sym__str_single_quotes] = ACTIONS(1501), + [sym__str_back_ticks] = ACTIONS(1501), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1501), + [anon_sym_out_GT_GT] = ACTIONS(1501), + [anon_sym_e_GT_GT] = ACTIONS(1501), + [anon_sym_o_GT_GT] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1501), + [aux_sym_unquoted_token1] = ACTIONS(1499), + [aux_sym_unquoted_token2] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1501), }, - [1336] = { - [sym_cell_path] = STATE(1596), - [sym_path] = STATE(1497), - [sym_comment] = STATE(1336), - [aux_sym_cell_path_repeat1] = STATE(1372), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), - [anon_sym_DOT_DOT_LT] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [anon_sym_null] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1713), - [aux_sym__val_number_token5] = ACTIONS(1713), - [aux_sym__val_number_token6] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_DOT2] = ACTIONS(4484), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1713), + [1283] = { + [sym__expr_parenthesized_immediate] = STATE(1770), + [sym__immediate_decimal] = STATE(1771), + [sym_val_variable] = STATE(1770), + [sym_comment] = STATE(1283), + [sym__newline] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1489), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_err_GT_PIPE] = ACTIONS(1489), + [anon_sym_out_GT_PIPE] = ACTIONS(1489), + [anon_sym_e_GT_PIPE] = ACTIONS(1489), + [anon_sym_o_GT_PIPE] = ACTIONS(1489), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1489), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1489), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1489), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1489), + [anon_sym_RPAREN] = ACTIONS(1489), + [anon_sym_DOLLAR] = ACTIONS(3550), + [anon_sym_GT2] = ACTIONS(1479), + [anon_sym_DASH2] = ACTIONS(1479), + [anon_sym_in2] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_RBRACE] = ACTIONS(1489), + [anon_sym_STAR2] = ACTIONS(1479), + [anon_sym_and2] = ACTIONS(1489), + [anon_sym_xor2] = ACTIONS(1489), + [anon_sym_or2] = ACTIONS(1489), + [anon_sym_not_DASHin2] = ACTIONS(1489), + [anon_sym_has2] = ACTIONS(1489), + [anon_sym_not_DASHhas2] = ACTIONS(1489), + [anon_sym_starts_DASHwith2] = ACTIONS(1489), + [anon_sym_ends_DASHwith2] = ACTIONS(1489), + [anon_sym_EQ_EQ2] = ACTIONS(1489), + [anon_sym_BANG_EQ2] = ACTIONS(1489), + [anon_sym_LT2] = ACTIONS(1479), + [anon_sym_LT_EQ2] = ACTIONS(1489), + [anon_sym_GT_EQ2] = ACTIONS(1489), + [anon_sym_EQ_TILDE2] = ACTIONS(1489), + [anon_sym_BANG_TILDE2] = ACTIONS(1489), + [anon_sym_LPAREN2] = ACTIONS(4027), + [anon_sym_STAR_STAR2] = ACTIONS(1489), + [anon_sym_PLUS_PLUS2] = ACTIONS(1489), + [anon_sym_SLASH2] = ACTIONS(1479), + [anon_sym_mod2] = ACTIONS(1489), + [anon_sym_SLASH_SLASH2] = ACTIONS(1489), + [anon_sym_PLUS2] = ACTIONS(1479), + [anon_sym_bit_DASHshl2] = ACTIONS(1489), + [anon_sym_bit_DASHshr2] = ACTIONS(1489), + [anon_sym_bit_DASHand2] = ACTIONS(1489), + [anon_sym_bit_DASHxor2] = ACTIONS(1489), + [anon_sym_bit_DASHor2] = ACTIONS(1489), + [aux_sym__immediate_decimal_token1] = ACTIONS(4424), + [aux_sym__immediate_decimal_token3] = ACTIONS(4424), + [aux_sym__immediate_decimal_token4] = ACTIONS(4033), + [aux_sym__immediate_decimal_token5] = ACTIONS(4035), + [anon_sym_err_GT] = ACTIONS(1479), + [anon_sym_out_GT] = ACTIONS(1479), + [anon_sym_e_GT] = ACTIONS(1479), + [anon_sym_o_GT] = ACTIONS(1479), + [anon_sym_err_PLUSout_GT] = ACTIONS(1479), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1479), + [anon_sym_o_PLUSe_GT] = ACTIONS(1479), + [anon_sym_e_PLUSo_GT] = ACTIONS(1479), + [anon_sym_err_GT_GT] = ACTIONS(1489), + [anon_sym_out_GT_GT] = ACTIONS(1489), + [anon_sym_e_GT_GT] = ACTIONS(1489), + [anon_sym_o_GT_GT] = ACTIONS(1489), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1489), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1489), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1489), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1489), + [anon_sym_POUND] = ACTIONS(245), }, - [1337] = { - [sym_comment] = STATE(1337), - [sym__newline] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1486), - [anon_sym_err_GT_PIPE] = ACTIONS(1486), - [anon_sym_out_GT_PIPE] = ACTIONS(1486), - [anon_sym_e_GT_PIPE] = ACTIONS(1486), - [anon_sym_o_GT_PIPE] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1484), - [anon_sym_RPAREN] = ACTIONS(1486), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_RBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1484), - [anon_sym_DOT_DOT_LT] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [anon_sym_null] = ACTIONS(1486), - [anon_sym_true] = ACTIONS(1486), - [anon_sym_false] = ACTIONS(1486), - [aux_sym__val_number_decimal_token1] = ACTIONS(1484), - [aux_sym__val_number_decimal_token2] = ACTIONS(1486), - [aux_sym__val_number_decimal_token3] = ACTIONS(1486), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), - [aux_sym__val_number_token1] = ACTIONS(1486), - [aux_sym__val_number_token2] = ACTIONS(1486), - [aux_sym__val_number_token3] = ACTIONS(1486), - [aux_sym__val_number_token4] = ACTIONS(1486), - [aux_sym__val_number_token5] = ACTIONS(1486), - [aux_sym__val_number_token6] = ACTIONS(1486), - [anon_sym_0b] = ACTIONS(1484), - [sym_filesize_unit] = ACTIONS(1486), - [sym_duration_unit] = ACTIONS(1486), - [anon_sym_0o] = ACTIONS(1484), - [anon_sym_0x] = ACTIONS(1484), - [sym_val_date] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym__str_single_quotes] = ACTIONS(1486), - [sym__str_back_ticks] = ACTIONS(1486), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1486), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1486), - [anon_sym_err_GT] = ACTIONS(1484), - [anon_sym_out_GT] = ACTIONS(1484), - [anon_sym_e_GT] = ACTIONS(1484), - [anon_sym_o_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT] = ACTIONS(1484), - [anon_sym_err_GT_GT] = ACTIONS(1486), - [anon_sym_out_GT_GT] = ACTIONS(1486), - [anon_sym_e_GT_GT] = ACTIONS(1486), - [anon_sym_o_GT_GT] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1486), - [aux_sym_unquoted_token1] = ACTIONS(1484), - [aux_sym_unquoted_token2] = ACTIONS(1484), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1486), + [1284] = { + [sym_path] = STATE(1374), + [sym_comment] = STATE(1284), + [aux_sym_cell_path_repeat1] = STATE(1318), + [sym__newline] = ACTIONS(940), + [anon_sym_SEMI] = ACTIONS(940), + [anon_sym_PIPE] = ACTIONS(940), + [anon_sym_err_GT_PIPE] = ACTIONS(940), + [anon_sym_out_GT_PIPE] = ACTIONS(940), + [anon_sym_e_GT_PIPE] = ACTIONS(940), + [anon_sym_o_GT_PIPE] = ACTIONS(940), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(940), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(940), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(940), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(940), + [anon_sym_RPAREN] = ACTIONS(940), + [anon_sym_GT2] = ACTIONS(938), + [anon_sym_DASH2] = ACTIONS(940), + [anon_sym_in2] = ACTIONS(940), + [anon_sym_if] = ACTIONS(940), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_RBRACE] = ACTIONS(940), + [anon_sym_EQ_GT] = ACTIONS(940), + [anon_sym_STAR2] = ACTIONS(938), + [anon_sym_and2] = ACTIONS(940), + [anon_sym_xor2] = ACTIONS(940), + [anon_sym_or2] = ACTIONS(940), + [anon_sym_not_DASHin2] = ACTIONS(940), + [anon_sym_has2] = ACTIONS(940), + [anon_sym_not_DASHhas2] = ACTIONS(940), + [anon_sym_starts_DASHwith2] = ACTIONS(940), + [anon_sym_ends_DASHwith2] = ACTIONS(940), + [anon_sym_EQ_EQ2] = ACTIONS(940), + [anon_sym_BANG_EQ2] = ACTIONS(940), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ2] = ACTIONS(940), + [anon_sym_GT_EQ2] = ACTIONS(940), + [anon_sym_EQ_TILDE2] = ACTIONS(940), + [anon_sym_BANG_TILDE2] = ACTIONS(940), + [anon_sym_STAR_STAR2] = ACTIONS(940), + [anon_sym_PLUS_PLUS2] = ACTIONS(940), + [anon_sym_SLASH2] = ACTIONS(938), + [anon_sym_mod2] = ACTIONS(940), + [anon_sym_SLASH_SLASH2] = ACTIONS(940), + [anon_sym_PLUS2] = ACTIONS(938), + [anon_sym_bit_DASHshl2] = ACTIONS(940), + [anon_sym_bit_DASHshr2] = ACTIONS(940), + [anon_sym_bit_DASHand2] = ACTIONS(940), + [anon_sym_bit_DASHxor2] = ACTIONS(940), + [anon_sym_bit_DASHor2] = ACTIONS(940), + [anon_sym_DOT_DOT2] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(940), + [anon_sym_DOT_DOT_LT2] = ACTIONS(940), + [anon_sym_COLON2] = ACTIONS(940), + [anon_sym_DOT2] = ACTIONS(4220), + [anon_sym_err_GT] = ACTIONS(938), + [anon_sym_out_GT] = ACTIONS(938), + [anon_sym_e_GT] = ACTIONS(938), + [anon_sym_o_GT] = ACTIONS(938), + [anon_sym_err_PLUSout_GT] = ACTIONS(938), + [anon_sym_out_PLUSerr_GT] = ACTIONS(938), + [anon_sym_o_PLUSe_GT] = ACTIONS(938), + [anon_sym_e_PLUSo_GT] = ACTIONS(938), + [anon_sym_err_GT_GT] = ACTIONS(940), + [anon_sym_out_GT_GT] = ACTIONS(940), + [anon_sym_e_GT_GT] = ACTIONS(940), + [anon_sym_o_GT_GT] = ACTIONS(940), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(940), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(940), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(940), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(940), + [anon_sym_POUND] = ACTIONS(245), }, - [1338] = { - [sym__expr_parenthesized_immediate] = STATE(1801), - [sym__immediate_decimal] = STATE(1802), - [sym_val_variable] = STATE(1801), - [sym_comment] = STATE(1338), - [sym__newline] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1482), - [anon_sym_err_GT_PIPE] = ACTIONS(1482), - [anon_sym_out_GT_PIPE] = ACTIONS(1482), - [anon_sym_e_GT_PIPE] = ACTIONS(1482), - [anon_sym_o_GT_PIPE] = ACTIONS(1482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1482), - [anon_sym_RPAREN] = ACTIONS(1482), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_GT2] = ACTIONS(1472), - [anon_sym_DASH2] = ACTIONS(1472), - [anon_sym_in2] = ACTIONS(1482), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_RBRACE] = ACTIONS(1482), - [anon_sym_STAR2] = ACTIONS(1472), - [anon_sym_and2] = ACTIONS(1482), - [anon_sym_xor2] = ACTIONS(1482), - [anon_sym_or2] = ACTIONS(1482), - [anon_sym_not_DASHin2] = ACTIONS(1482), - [anon_sym_has2] = ACTIONS(1482), - [anon_sym_not_DASHhas2] = ACTIONS(1482), - [anon_sym_starts_DASHwith2] = ACTIONS(1482), - [anon_sym_ends_DASHwith2] = ACTIONS(1482), - [anon_sym_EQ_EQ2] = ACTIONS(1482), - [anon_sym_BANG_EQ2] = ACTIONS(1482), - [anon_sym_LT2] = ACTIONS(1472), - [anon_sym_LT_EQ2] = ACTIONS(1482), - [anon_sym_GT_EQ2] = ACTIONS(1482), - [anon_sym_EQ_TILDE2] = ACTIONS(1482), - [anon_sym_BANG_TILDE2] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(4075), - [anon_sym_STAR_STAR2] = ACTIONS(1482), - [anon_sym_PLUS_PLUS2] = ACTIONS(1482), - [anon_sym_SLASH2] = ACTIONS(1472), - [anon_sym_mod2] = ACTIONS(1482), - [anon_sym_SLASH_SLASH2] = ACTIONS(1482), - [anon_sym_PLUS2] = ACTIONS(1472), - [anon_sym_bit_DASHshl2] = ACTIONS(1482), - [anon_sym_bit_DASHshr2] = ACTIONS(1482), - [anon_sym_bit_DASHand2] = ACTIONS(1482), - [anon_sym_bit_DASHxor2] = ACTIONS(1482), - [anon_sym_bit_DASHor2] = ACTIONS(1482), - [aux_sym__immediate_decimal_token1] = ACTIONS(4486), - [aux_sym__immediate_decimal_token3] = ACTIONS(4486), - [aux_sym__immediate_decimal_token4] = ACTIONS(4081), - [aux_sym__immediate_decimal_token5] = ACTIONS(4083), - [anon_sym_err_GT] = ACTIONS(1472), - [anon_sym_out_GT] = ACTIONS(1472), - [anon_sym_e_GT] = ACTIONS(1472), - [anon_sym_o_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT] = ACTIONS(1472), - [anon_sym_err_GT_GT] = ACTIONS(1482), - [anon_sym_out_GT_GT] = ACTIONS(1482), - [anon_sym_e_GT_GT] = ACTIONS(1482), - [anon_sym_o_GT_GT] = ACTIONS(1482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1482), + [1285] = { + [sym_comment] = STATE(1285), + [sym__newline] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_err_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_GT_PIPE] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_RPAREN] = ACTIONS(1493), + [anon_sym_DOLLAR] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_RBRACE] = ACTIONS(1493), + [anon_sym_DOT_DOT] = ACTIONS(1491), + [anon_sym_LPAREN2] = ACTIONS(1493), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1491), + [anon_sym_DOT_DOT_LT] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [aux_sym__val_number_decimal_token1] = ACTIONS(1491), + [aux_sym__val_number_decimal_token2] = ACTIONS(1493), + [aux_sym__val_number_decimal_token3] = ACTIONS(1493), + [aux_sym__val_number_decimal_token4] = ACTIONS(1493), + [aux_sym__val_number_token1] = ACTIONS(1493), + [aux_sym__val_number_token2] = ACTIONS(1493), + [aux_sym__val_number_token3] = ACTIONS(1493), + [aux_sym__val_number_token4] = ACTIONS(1493), + [aux_sym__val_number_token5] = ACTIONS(1493), + [aux_sym__val_number_token6] = ACTIONS(1493), + [anon_sym_0b] = ACTIONS(1491), + [sym_filesize_unit] = ACTIONS(1493), + [sym_duration_unit] = ACTIONS(1493), + [anon_sym_0o] = ACTIONS(1491), + [anon_sym_0x] = ACTIONS(1491), + [sym_val_date] = ACTIONS(1493), + [anon_sym_DQUOTE] = ACTIONS(1493), + [sym__str_single_quotes] = ACTIONS(1493), + [sym__str_back_ticks] = ACTIONS(1493), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1493), + [anon_sym_err_GT] = ACTIONS(1491), + [anon_sym_out_GT] = ACTIONS(1491), + [anon_sym_e_GT] = ACTIONS(1491), + [anon_sym_o_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT] = ACTIONS(1491), + [anon_sym_err_GT_GT] = ACTIONS(1493), + [anon_sym_out_GT_GT] = ACTIONS(1493), + [anon_sym_e_GT_GT] = ACTIONS(1493), + [anon_sym_o_GT_GT] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1493), + [aux_sym_unquoted_token1] = ACTIONS(1491), + [aux_sym_unquoted_token2] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1493), + }, + [1286] = { + [sym_comment] = STATE(1286), + [sym__newline] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1581), + [anon_sym_PIPE] = ACTIONS(1581), + [anon_sym_err_GT_PIPE] = ACTIONS(1581), + [anon_sym_out_GT_PIPE] = ACTIONS(1581), + [anon_sym_e_GT_PIPE] = ACTIONS(1581), + [anon_sym_o_GT_PIPE] = ACTIONS(1581), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1581), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1581), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1581), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1581), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1581), + [anon_sym_DASH2] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_DOT_DOT] = ACTIONS(1579), + [anon_sym_LPAREN2] = ACTIONS(1581), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1579), + [anon_sym_DOT_DOT_LT] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [anon_sym_null] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1581), + [anon_sym_false] = ACTIONS(1581), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [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_0b] = ACTIONS(1579), + [sym_filesize_unit] = ACTIONS(1581), + [sym_duration_unit] = ACTIONS(1581), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1581), + [sym__str_single_quotes] = ACTIONS(1581), + [sym__str_back_ticks] = ACTIONS(1581), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1581), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [anon_sym_err_GT_GT] = ACTIONS(1581), + [anon_sym_out_GT_GT] = ACTIONS(1581), + [anon_sym_e_GT_GT] = ACTIONS(1581), + [anon_sym_o_GT_GT] = ACTIONS(1581), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1581), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1581), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1581), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1581), + [aux_sym_unquoted_token1] = ACTIONS(1579), + [aux_sym_unquoted_token2] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1581), }, - [1339] = { - [sym_comment] = STATE(1339), + [1287] = { + [sym_comment] = STATE(1287), + [sym__newline] = ACTIONS(1680), + [anon_sym_SEMI] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1680), + [anon_sym_err_GT_PIPE] = ACTIONS(1680), + [anon_sym_out_GT_PIPE] = ACTIONS(1680), + [anon_sym_e_GT_PIPE] = ACTIONS(1680), + [anon_sym_o_GT_PIPE] = ACTIONS(1680), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1680), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1680), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1680), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(1680), + [anon_sym_LPAREN] = ACTIONS(1678), + [anon_sym_RPAREN] = ACTIONS(1680), + [anon_sym_DOLLAR] = ACTIONS(1678), + [anon_sym_DASH_DASH] = ACTIONS(1680), + [anon_sym_DASH2] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(1680), + [anon_sym_DOT_DOT] = ACTIONS(1678), + [anon_sym_LPAREN2] = ACTIONS(1680), + [anon_sym_DOT_DOT2] = ACTIONS(1678), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1678), + [anon_sym_DOT_DOT_LT] = ACTIONS(1678), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1680), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1680), + [anon_sym_null] = ACTIONS(1680), + [anon_sym_true] = ACTIONS(1680), + [anon_sym_false] = ACTIONS(1680), + [aux_sym__val_number_decimal_token1] = ACTIONS(1678), + [aux_sym__val_number_decimal_token2] = ACTIONS(1680), + [aux_sym__val_number_decimal_token3] = ACTIONS(1680), + [aux_sym__val_number_decimal_token4] = ACTIONS(1680), + [aux_sym__val_number_token1] = ACTIONS(1680), + [aux_sym__val_number_token2] = ACTIONS(1680), + [aux_sym__val_number_token3] = ACTIONS(1680), + [aux_sym__val_number_token4] = ACTIONS(1680), + [aux_sym__val_number_token5] = ACTIONS(1680), + [aux_sym__val_number_token6] = ACTIONS(1680), + [anon_sym_0b] = ACTIONS(1678), + [sym_filesize_unit] = ACTIONS(1680), + [sym_duration_unit] = ACTIONS(1680), + [anon_sym_0o] = ACTIONS(1678), + [anon_sym_0x] = ACTIONS(1678), + [sym_val_date] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1680), + [sym__str_single_quotes] = ACTIONS(1680), + [sym__str_back_ticks] = ACTIONS(1680), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1680), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1680), + [anon_sym_err_GT] = ACTIONS(1678), + [anon_sym_out_GT] = ACTIONS(1678), + [anon_sym_e_GT] = ACTIONS(1678), + [anon_sym_o_GT] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT] = ACTIONS(1678), + [anon_sym_err_GT_GT] = ACTIONS(1680), + [anon_sym_out_GT_GT] = ACTIONS(1680), + [anon_sym_e_GT_GT] = ACTIONS(1680), + [anon_sym_o_GT_GT] = ACTIONS(1680), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1680), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1680), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1680), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1680), + [aux_sym_unquoted_token1] = ACTIONS(1678), + [aux_sym_unquoted_token2] = ACTIONS(1678), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1680), + }, + [1288] = { + [sym__expr_parenthesized_immediate] = STATE(1773), + [sym__immediate_decimal] = STATE(1888), + [sym_val_variable] = STATE(1773), + [sym_comment] = STATE(1288), + [sym__newline] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1445), + [anon_sym_PIPE] = ACTIONS(1445), + [anon_sym_err_GT_PIPE] = ACTIONS(1445), + [anon_sym_out_GT_PIPE] = ACTIONS(1445), + [anon_sym_e_GT_PIPE] = ACTIONS(1445), + [anon_sym_o_GT_PIPE] = ACTIONS(1445), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1445), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1445), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1445), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1445), + [anon_sym_RPAREN] = ACTIONS(1445), + [anon_sym_DOLLAR] = ACTIONS(3550), + [anon_sym_GT2] = ACTIONS(1431), + [anon_sym_DASH2] = ACTIONS(1431), + [anon_sym_in2] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_RBRACE] = ACTIONS(1445), + [anon_sym_STAR2] = ACTIONS(1431), + [anon_sym_and2] = ACTIONS(1445), + [anon_sym_xor2] = ACTIONS(1445), + [anon_sym_or2] = ACTIONS(1445), + [anon_sym_not_DASHin2] = ACTIONS(1445), + [anon_sym_has2] = ACTIONS(1445), + [anon_sym_not_DASHhas2] = ACTIONS(1445), + [anon_sym_starts_DASHwith2] = ACTIONS(1445), + [anon_sym_ends_DASHwith2] = ACTIONS(1445), + [anon_sym_EQ_EQ2] = ACTIONS(1445), + [anon_sym_BANG_EQ2] = ACTIONS(1445), + [anon_sym_LT2] = ACTIONS(1431), + [anon_sym_LT_EQ2] = ACTIONS(1445), + [anon_sym_GT_EQ2] = ACTIONS(1445), + [anon_sym_EQ_TILDE2] = ACTIONS(1445), + [anon_sym_BANG_TILDE2] = ACTIONS(1445), + [anon_sym_LPAREN2] = ACTIONS(4027), + [anon_sym_STAR_STAR2] = ACTIONS(1445), + [anon_sym_PLUS_PLUS2] = ACTIONS(1445), + [anon_sym_SLASH2] = ACTIONS(1431), + [anon_sym_mod2] = ACTIONS(1445), + [anon_sym_SLASH_SLASH2] = ACTIONS(1445), + [anon_sym_PLUS2] = ACTIONS(1431), + [anon_sym_bit_DASHshl2] = ACTIONS(1445), + [anon_sym_bit_DASHshr2] = ACTIONS(1445), + [anon_sym_bit_DASHand2] = ACTIONS(1445), + [anon_sym_bit_DASHxor2] = ACTIONS(1445), + [anon_sym_bit_DASHor2] = ACTIONS(1445), + [aux_sym__immediate_decimal_token1] = ACTIONS(4424), + [aux_sym__immediate_decimal_token3] = ACTIONS(4424), + [aux_sym__immediate_decimal_token4] = ACTIONS(4033), + [aux_sym__immediate_decimal_token5] = ACTIONS(4035), + [anon_sym_err_GT] = ACTIONS(1431), + [anon_sym_out_GT] = ACTIONS(1431), + [anon_sym_e_GT] = ACTIONS(1431), + [anon_sym_o_GT] = ACTIONS(1431), + [anon_sym_err_PLUSout_GT] = ACTIONS(1431), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1431), + [anon_sym_o_PLUSe_GT] = ACTIONS(1431), + [anon_sym_e_PLUSo_GT] = ACTIONS(1431), + [anon_sym_err_GT_GT] = ACTIONS(1445), + [anon_sym_out_GT_GT] = ACTIONS(1445), + [anon_sym_e_GT_GT] = ACTIONS(1445), + [anon_sym_o_GT_GT] = ACTIONS(1445), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1445), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1445), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1445), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1445), + [anon_sym_POUND] = ACTIONS(245), + }, + [1289] = { + [sym__match_pattern_expression] = STATE(3033), + [sym__match_pattern_value] = STATE(3028), + [sym__match_pattern_list] = STATE(3041), + [sym__match_pattern_record] = STATE(3043), + [sym_expr_parenthesized] = STATE(2771), + [sym_val_range] = STATE(3028), + [sym__val_range] = STATE(7219), + [sym_val_nothing] = STATE(3045), + [sym_val_bool] = STATE(2949), + [sym_val_variable] = STATE(2776), + [sym_val_number] = STATE(3045), + [sym__val_number_decimal] = STATE(2606), + [sym__val_number] = STATE(2982), + [sym_val_duration] = STATE(3045), + [sym_val_filesize] = STATE(3045), + [sym_val_binary] = STATE(3045), + [sym_val_string] = STATE(3045), + [sym__raw_str] = STATE(2988), + [sym__str_double_quotes] = STATE(2988), + [sym_val_table] = STATE(3045), + [sym__unquoted_in_list] = STATE(3033), + [sym__unquoted_anonymous_prefix] = STATE(7314), + [sym_comment] = STATE(1289), + [aux_sym__match_pattern_list_repeat1] = STATE(1289), + [anon_sym_LBRACK] = ACTIONS(4426), + [anon_sym_RBRACK] = ACTIONS(4429), + [anon_sym_LPAREN] = ACTIONS(4431), + [anon_sym_DOLLAR] = ACTIONS(4434), + [anon_sym_LBRACE] = ACTIONS(4437), + [anon_sym_DOT_DOT] = ACTIONS(4440), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4443), + [anon_sym_DOT_DOT_LT] = ACTIONS(4443), + [anon_sym_null] = ACTIONS(4446), + [anon_sym_true] = ACTIONS(4449), + [anon_sym_false] = ACTIONS(4449), + [aux_sym__val_number_decimal_token1] = ACTIONS(4452), + [aux_sym__val_number_decimal_token2] = ACTIONS(4455), + [aux_sym__val_number_decimal_token3] = ACTIONS(4458), + [aux_sym__val_number_decimal_token4] = ACTIONS(4461), + [aux_sym__val_number_token1] = ACTIONS(4464), + [aux_sym__val_number_token2] = ACTIONS(4464), + [aux_sym__val_number_token3] = ACTIONS(4464), + [aux_sym__val_number_token4] = ACTIONS(4467), + [aux_sym__val_number_token5] = ACTIONS(4467), + [aux_sym__val_number_token6] = ACTIONS(4467), + [anon_sym_0b] = ACTIONS(4470), + [anon_sym_0o] = ACTIONS(4473), + [anon_sym_0x] = ACTIONS(4473), + [sym_val_date] = ACTIONS(4476), + [anon_sym_DQUOTE] = ACTIONS(4479), + [sym__str_single_quotes] = ACTIONS(4482), + [sym__str_back_ticks] = ACTIONS(4482), + [anon_sym_err_GT] = ACTIONS(4485), + [anon_sym_out_GT] = ACTIONS(4485), + [anon_sym_e_GT] = ACTIONS(4485), + [anon_sym_o_GT] = ACTIONS(4485), + [anon_sym_err_PLUSout_GT] = ACTIONS(4485), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4485), + [anon_sym_o_PLUSe_GT] = ACTIONS(4485), + [anon_sym_e_PLUSo_GT] = ACTIONS(4485), + [anon_sym_err_GT_GT] = ACTIONS(4488), + [anon_sym_out_GT_GT] = ACTIONS(4488), + [anon_sym_e_GT_GT] = ACTIONS(4488), + [anon_sym_o_GT_GT] = ACTIONS(4488), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4488), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4488), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4488), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4488), + [aux_sym__unquoted_in_list_token1] = ACTIONS(4491), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4494), + }, + [1290] = { + [sym_comment] = STATE(1290), + [ts_builtin_sym_end] = ACTIONS(1493), + [sym__newline] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_err_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_GT_PIPE] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1493), + [anon_sym_DOLLAR] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_DOT_DOT] = ACTIONS(1491), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1491), + [anon_sym_DOT_DOT_LT] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [aux_sym__immediate_decimal_token1] = ACTIONS(4497), + [aux_sym__immediate_decimal_token2] = ACTIONS(4499), + [anon_sym_null] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [aux_sym__val_number_decimal_token1] = ACTIONS(1491), + [aux_sym__val_number_decimal_token2] = ACTIONS(1493), + [aux_sym__val_number_decimal_token3] = ACTIONS(1493), + [aux_sym__val_number_decimal_token4] = ACTIONS(1493), + [aux_sym__val_number_token1] = ACTIONS(1493), + [aux_sym__val_number_token2] = ACTIONS(1493), + [aux_sym__val_number_token3] = ACTIONS(1493), + [aux_sym__val_number_token4] = ACTIONS(1493), + [aux_sym__val_number_token5] = ACTIONS(1493), + [aux_sym__val_number_token6] = ACTIONS(1493), + [anon_sym_0b] = ACTIONS(1491), + [sym_filesize_unit] = ACTIONS(1493), + [sym_duration_unit] = ACTIONS(1493), + [anon_sym_0o] = ACTIONS(1491), + [anon_sym_0x] = ACTIONS(1491), + [sym_val_date] = ACTIONS(1493), + [anon_sym_DQUOTE] = ACTIONS(1493), + [sym__str_single_quotes] = ACTIONS(1493), + [sym__str_back_ticks] = ACTIONS(1493), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1493), + [anon_sym_err_GT] = ACTIONS(1491), + [anon_sym_out_GT] = ACTIONS(1491), + [anon_sym_e_GT] = ACTIONS(1491), + [anon_sym_o_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT] = ACTIONS(1491), + [anon_sym_err_GT_GT] = ACTIONS(1493), + [anon_sym_out_GT_GT] = ACTIONS(1493), + [anon_sym_e_GT_GT] = ACTIONS(1493), + [anon_sym_o_GT_GT] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1493), + [aux_sym_unquoted_token1] = ACTIONS(1491), + [aux_sym_unquoted_token2] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1493), + }, + [1291] = { + [sym__expr_parenthesized_immediate] = STATE(2001), + [sym__immediate_decimal] = STATE(1908), + [sym_val_variable] = STATE(2001), + [sym_comment] = STATE(1291), + [ts_builtin_sym_end] = ACTIONS(1634), + [sym__newline] = ACTIONS(1634), + [anon_sym_SEMI] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1634), + [anon_sym_err_GT_PIPE] = ACTIONS(1634), + [anon_sym_out_GT_PIPE] = ACTIONS(1634), + [anon_sym_e_GT_PIPE] = ACTIONS(1634), + [anon_sym_o_GT_PIPE] = ACTIONS(1634), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1634), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1634), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1634), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1634), + [anon_sym_LBRACK] = ACTIONS(1634), + [anon_sym_LPAREN] = ACTIONS(1632), + [anon_sym_DOLLAR] = ACTIONS(4043), + [anon_sym_DASH_DASH] = ACTIONS(1634), + [anon_sym_DASH2] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_DOT_DOT] = ACTIONS(1632), + [anon_sym_LPAREN2] = ACTIONS(4045), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1634), + [anon_sym_DOT_DOT_LT] = ACTIONS(1634), + [aux_sym__immediate_decimal_token1] = ACTIONS(4501), + [aux_sym__immediate_decimal_token3] = ACTIONS(4503), + [aux_sym__immediate_decimal_token4] = ACTIONS(4505), + [aux_sym__immediate_decimal_token5] = ACTIONS(4507), + [anon_sym_null] = ACTIONS(1634), + [anon_sym_true] = ACTIONS(1634), + [anon_sym_false] = ACTIONS(1634), + [aux_sym__val_number_decimal_token1] = ACTIONS(1632), + [aux_sym__val_number_decimal_token2] = ACTIONS(1632), + [aux_sym__val_number_decimal_token3] = ACTIONS(1632), + [aux_sym__val_number_decimal_token4] = ACTIONS(1632), + [aux_sym__val_number_token1] = ACTIONS(1634), + [aux_sym__val_number_token2] = ACTIONS(1634), + [aux_sym__val_number_token3] = ACTIONS(1634), + [aux_sym__val_number_token4] = ACTIONS(1634), + [aux_sym__val_number_token5] = ACTIONS(1634), + [aux_sym__val_number_token6] = ACTIONS(1634), + [anon_sym_0b] = ACTIONS(1632), + [anon_sym_0o] = ACTIONS(1632), + [anon_sym_0x] = ACTIONS(1632), + [sym_val_date] = ACTIONS(1634), + [anon_sym_DQUOTE] = ACTIONS(1634), + [sym__str_single_quotes] = ACTIONS(1634), + [sym__str_back_ticks] = ACTIONS(1634), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1634), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1634), + [anon_sym_err_GT] = ACTIONS(1632), + [anon_sym_out_GT] = ACTIONS(1632), + [anon_sym_e_GT] = ACTIONS(1632), + [anon_sym_o_GT] = ACTIONS(1632), + [anon_sym_err_PLUSout_GT] = ACTIONS(1632), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1632), + [anon_sym_o_PLUSe_GT] = ACTIONS(1632), + [anon_sym_e_PLUSo_GT] = ACTIONS(1632), + [anon_sym_err_GT_GT] = ACTIONS(1634), + [anon_sym_out_GT_GT] = ACTIONS(1634), + [anon_sym_e_GT_GT] = ACTIONS(1634), + [anon_sym_o_GT_GT] = ACTIONS(1634), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1634), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1634), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1634), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1634), + [aux_sym_unquoted_token1] = ACTIONS(1632), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1634), + }, + [1292] = { + [sym_comment] = STATE(1292), + [sym__newline] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_err_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_GT_PIPE] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_RPAREN] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1688), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_LPAREN2] = ACTIONS(1688), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1686), + [anon_sym_DOT_DOT_LT] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [aux_sym__immediate_decimal_token1] = ACTIONS(4509), + [aux_sym__immediate_decimal_token2] = ACTIONS(4511), + [anon_sym_null] = ACTIONS(1688), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1688), + [aux_sym__val_number_decimal_token3] = ACTIONS(1688), + [aux_sym__val_number_decimal_token4] = ACTIONS(1688), + [aux_sym__val_number_token1] = ACTIONS(1688), + [aux_sym__val_number_token2] = ACTIONS(1688), + [aux_sym__val_number_token3] = ACTIONS(1688), + [aux_sym__val_number_token4] = ACTIONS(1688), + [aux_sym__val_number_token5] = ACTIONS(1688), + [aux_sym__val_number_token6] = ACTIONS(1688), + [anon_sym_0b] = ACTIONS(1686), + [anon_sym_0o] = ACTIONS(1686), + [anon_sym_0x] = ACTIONS(1686), + [sym_val_date] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [sym__str_single_quotes] = ACTIONS(1688), + [sym__str_back_ticks] = ACTIONS(1688), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1688), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1688), + [anon_sym_err_GT] = ACTIONS(1686), + [anon_sym_out_GT] = ACTIONS(1686), + [anon_sym_e_GT] = ACTIONS(1686), + [anon_sym_o_GT] = ACTIONS(1686), + [anon_sym_err_PLUSout_GT] = ACTIONS(1686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1686), + [anon_sym_o_PLUSe_GT] = ACTIONS(1686), + [anon_sym_e_PLUSo_GT] = ACTIONS(1686), + [anon_sym_err_GT_GT] = ACTIONS(1688), + [anon_sym_out_GT_GT] = ACTIONS(1688), + [anon_sym_e_GT_GT] = ACTIONS(1688), + [anon_sym_o_GT_GT] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1688), + [aux_sym_unquoted_token1] = ACTIONS(1686), + [aux_sym_unquoted_token2] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1688), + }, + [1293] = { + [sym__expr_parenthesized_immediate] = STATE(6857), + [sym_comment] = STATE(1293), + [ts_builtin_sym_end] = ACTIONS(1628), + [sym__newline] = ACTIONS(1628), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1628), + [anon_sym_err_GT_PIPE] = ACTIONS(1628), + [anon_sym_out_GT_PIPE] = ACTIONS(1628), + [anon_sym_e_GT_PIPE] = ACTIONS(1628), + [anon_sym_o_GT_PIPE] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1616), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1616), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_DOT_DOT2] = ACTIONS(4513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1616), + [anon_sym_DOT_DOT_LT] = ACTIONS(1616), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4515), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4515), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_true] = ACTIONS(1628), + [anon_sym_false] = ACTIONS(1628), + [aux_sym__val_number_decimal_token1] = ACTIONS(1616), + [aux_sym__val_number_decimal_token2] = ACTIONS(1628), + [aux_sym__val_number_decimal_token3] = ACTIONS(1628), + [aux_sym__val_number_decimal_token4] = ACTIONS(1628), + [aux_sym__val_number_token1] = ACTIONS(1628), + [aux_sym__val_number_token2] = ACTIONS(1628), + [aux_sym__val_number_token3] = ACTIONS(1628), + [aux_sym__val_number_token4] = ACTIONS(1628), + [aux_sym__val_number_token5] = ACTIONS(1628), + [aux_sym__val_number_token6] = ACTIONS(1628), + [anon_sym_0b] = ACTIONS(1616), + [sym_filesize_unit] = ACTIONS(4517), + [sym_duration_unit] = ACTIONS(4519), + [anon_sym_0o] = ACTIONS(1616), + [anon_sym_0x] = ACTIONS(1616), + [sym_val_date] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1628), + [sym__str_single_quotes] = ACTIONS(1628), + [sym__str_back_ticks] = ACTIONS(1628), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1628), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1628), + [anon_sym_err_GT] = ACTIONS(1616), + [anon_sym_out_GT] = ACTIONS(1616), + [anon_sym_e_GT] = ACTIONS(1616), + [anon_sym_o_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT] = ACTIONS(1616), + [anon_sym_err_GT_GT] = ACTIONS(1628), + [anon_sym_out_GT_GT] = ACTIONS(1628), + [anon_sym_e_GT_GT] = ACTIONS(1628), + [anon_sym_o_GT_GT] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1628), + [aux_sym_unquoted_token1] = ACTIONS(1616), + [aux_sym_unquoted_token2] = ACTIONS(4521), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1628), + }, + [1294] = { + [sym_comment] = STATE(1294), + [ts_builtin_sym_end] = ACTIONS(1501), + [sym__newline] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_err_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_GT_PIPE] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_DOLLAR] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_LPAREN2] = ACTIONS(1501), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(4025), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [aux_sym__val_number_decimal_token1] = ACTIONS(1499), + [aux_sym__val_number_decimal_token2] = ACTIONS(1501), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1501), + [aux_sym__val_number_token1] = ACTIONS(1501), + [aux_sym__val_number_token2] = ACTIONS(1501), + [aux_sym__val_number_token3] = ACTIONS(1501), + [aux_sym__val_number_token4] = ACTIONS(1501), + [aux_sym__val_number_token5] = ACTIONS(1501), + [aux_sym__val_number_token6] = ACTIONS(1501), + [anon_sym_0b] = ACTIONS(1499), + [sym_filesize_unit] = ACTIONS(1501), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_0o] = ACTIONS(1499), + [anon_sym_0x] = ACTIONS(1499), + [sym_val_date] = ACTIONS(1501), + [anon_sym_DQUOTE] = ACTIONS(1501), + [sym__str_single_quotes] = ACTIONS(1501), + [sym__str_back_ticks] = ACTIONS(1501), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1501), + [anon_sym_out_GT_GT] = ACTIONS(1501), + [anon_sym_e_GT_GT] = ACTIONS(1501), + [anon_sym_o_GT_GT] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1501), + [aux_sym_unquoted_token1] = ACTIONS(1499), + [aux_sym_unquoted_token2] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1501), + }, + [1295] = { + [sym__expr_parenthesized_immediate] = STATE(1905), + [sym__immediate_decimal] = STATE(1667), + [sym_val_variable] = STATE(1905), + [sym_comment] = STATE(1295), + [ts_builtin_sym_end] = ACTIONS(1445), + [sym__newline] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1445), + [anon_sym_PIPE] = ACTIONS(1445), + [anon_sym_err_GT_PIPE] = ACTIONS(1445), + [anon_sym_out_GT_PIPE] = ACTIONS(1445), + [anon_sym_e_GT_PIPE] = ACTIONS(1445), + [anon_sym_o_GT_PIPE] = ACTIONS(1445), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1445), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1445), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1445), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1445), + [anon_sym_DOLLAR] = ACTIONS(4523), + [anon_sym_GT2] = ACTIONS(1431), + [anon_sym_DASH2] = ACTIONS(1431), + [anon_sym_in2] = ACTIONS(1445), + [anon_sym_STAR2] = ACTIONS(1431), + [anon_sym_and2] = ACTIONS(1445), + [anon_sym_xor2] = ACTIONS(1445), + [anon_sym_or2] = ACTIONS(1445), + [anon_sym_not_DASHin2] = ACTIONS(1445), + [anon_sym_has2] = ACTIONS(1445), + [anon_sym_not_DASHhas2] = ACTIONS(1445), + [anon_sym_starts_DASHwith2] = ACTIONS(1445), + [anon_sym_ends_DASHwith2] = ACTIONS(1445), + [anon_sym_EQ_EQ2] = ACTIONS(1445), + [anon_sym_BANG_EQ2] = ACTIONS(1445), + [anon_sym_LT2] = ACTIONS(1431), + [anon_sym_LT_EQ2] = ACTIONS(1445), + [anon_sym_GT_EQ2] = ACTIONS(1445), + [anon_sym_EQ_TILDE2] = ACTIONS(1445), + [anon_sym_BANG_TILDE2] = ACTIONS(1445), + [anon_sym_LPAREN2] = ACTIONS(4525), + [anon_sym_STAR_STAR2] = ACTIONS(1445), + [anon_sym_PLUS_PLUS2] = ACTIONS(1445), + [anon_sym_SLASH2] = ACTIONS(1431), + [anon_sym_mod2] = ACTIONS(1445), + [anon_sym_SLASH_SLASH2] = ACTIONS(1445), + [anon_sym_PLUS2] = ACTIONS(1431), + [anon_sym_bit_DASHshl2] = ACTIONS(1445), + [anon_sym_bit_DASHshr2] = ACTIONS(1445), + [anon_sym_bit_DASHand2] = ACTIONS(1445), + [anon_sym_bit_DASHxor2] = ACTIONS(1445), + [anon_sym_bit_DASHor2] = ACTIONS(1445), + [anon_sym_DOT] = ACTIONS(4527), + [aux_sym__immediate_decimal_token1] = ACTIONS(4529), + [aux_sym__immediate_decimal_token3] = ACTIONS(4529), + [aux_sym__immediate_decimal_token4] = ACTIONS(4531), + [aux_sym__immediate_decimal_token5] = ACTIONS(4533), + [anon_sym_err_GT] = ACTIONS(1431), + [anon_sym_out_GT] = ACTIONS(1431), + [anon_sym_e_GT] = ACTIONS(1431), + [anon_sym_o_GT] = ACTIONS(1431), + [anon_sym_err_PLUSout_GT] = ACTIONS(1431), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1431), + [anon_sym_o_PLUSe_GT] = ACTIONS(1431), + [anon_sym_e_PLUSo_GT] = ACTIONS(1431), + [anon_sym_err_GT_GT] = ACTIONS(1445), + [anon_sym_out_GT_GT] = ACTIONS(1445), + [anon_sym_e_GT_GT] = ACTIONS(1445), + [anon_sym_o_GT_GT] = ACTIONS(1445), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1445), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1445), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1445), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1445), + [aux_sym_unquoted_token2] = ACTIONS(1447), + [anon_sym_POUND] = ACTIONS(245), + }, + [1296] = { + [sym_cell_path] = STATE(1491), + [sym_path] = STATE(1431), + [sym_comment] = STATE(1296), + [aux_sym_cell_path_repeat1] = STATE(1330), + [sym__newline] = ACTIONS(1676), + [anon_sym_SEMI] = ACTIONS(1676), + [anon_sym_PIPE] = ACTIONS(1676), + [anon_sym_err_GT_PIPE] = ACTIONS(1676), + [anon_sym_out_GT_PIPE] = ACTIONS(1676), + [anon_sym_e_GT_PIPE] = ACTIONS(1676), + [anon_sym_o_GT_PIPE] = ACTIONS(1676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1676), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1676), + [anon_sym_RPAREN] = ACTIONS(1676), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_DASH_DASH] = ACTIONS(1676), + [anon_sym_DASH2] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(1676), + [anon_sym_RBRACE] = ACTIONS(1676), + [anon_sym_DOT_DOT] = ACTIONS(1674), + [anon_sym_DOT_DOT2] = ACTIONS(1674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1674), + [anon_sym_DOT_DOT_LT] = ACTIONS(1674), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1676), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1676), + [anon_sym_null] = ACTIONS(1676), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1676), + [aux_sym__val_number_decimal_token1] = ACTIONS(1674), + [aux_sym__val_number_decimal_token2] = ACTIONS(1676), + [aux_sym__val_number_decimal_token3] = ACTIONS(1676), + [aux_sym__val_number_decimal_token4] = ACTIONS(1676), + [aux_sym__val_number_token1] = ACTIONS(1676), + [aux_sym__val_number_token2] = ACTIONS(1676), + [aux_sym__val_number_token3] = ACTIONS(1676), + [aux_sym__val_number_token4] = ACTIONS(1676), + [aux_sym__val_number_token5] = ACTIONS(1676), + [aux_sym__val_number_token6] = ACTIONS(1676), + [anon_sym_0b] = ACTIONS(1674), + [anon_sym_0o] = ACTIONS(1674), + [anon_sym_0x] = ACTIONS(1674), + [sym_val_date] = ACTIONS(1676), + [anon_sym_DQUOTE] = ACTIONS(1676), + [sym__str_single_quotes] = ACTIONS(1676), + [sym__str_back_ticks] = ACTIONS(1676), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1676), + [anon_sym_DOT2] = ACTIONS(4422), + [anon_sym_err_GT] = ACTIONS(1674), + [anon_sym_out_GT] = ACTIONS(1674), + [anon_sym_e_GT] = ACTIONS(1674), + [anon_sym_o_GT] = ACTIONS(1674), + [anon_sym_err_PLUSout_GT] = ACTIONS(1674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1674), + [anon_sym_o_PLUSe_GT] = ACTIONS(1674), + [anon_sym_e_PLUSo_GT] = ACTIONS(1674), + [anon_sym_err_GT_GT] = ACTIONS(1676), + [anon_sym_out_GT_GT] = ACTIONS(1676), + [anon_sym_e_GT_GT] = ACTIONS(1676), + [anon_sym_o_GT_GT] = ACTIONS(1676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1676), + [aux_sym_unquoted_token1] = ACTIONS(1674), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1676), + }, + [1297] = { + [sym__expr_parenthesized_immediate] = STATE(1961), + [sym__immediate_decimal] = STATE(1925), + [sym_val_variable] = STATE(1961), + [sym_comment] = STATE(1297), + [ts_builtin_sym_end] = ACTIONS(1646), + [sym__newline] = ACTIONS(1646), + [anon_sym_SEMI] = ACTIONS(1646), + [anon_sym_PIPE] = ACTIONS(1646), + [anon_sym_err_GT_PIPE] = ACTIONS(1646), + [anon_sym_out_GT_PIPE] = ACTIONS(1646), + [anon_sym_e_GT_PIPE] = ACTIONS(1646), + [anon_sym_o_GT_PIPE] = ACTIONS(1646), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1646), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1646), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1646), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1646), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(1644), + [anon_sym_DOLLAR] = ACTIONS(4043), + [anon_sym_DASH_DASH] = ACTIONS(1646), + [anon_sym_DASH2] = ACTIONS(1644), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_DOT_DOT] = ACTIONS(1644), + [anon_sym_LPAREN2] = ACTIONS(4045), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1646), + [anon_sym_DOT_DOT_LT] = ACTIONS(1646), + [aux_sym__immediate_decimal_token1] = ACTIONS(4501), + [aux_sym__immediate_decimal_token3] = ACTIONS(4503), + [aux_sym__immediate_decimal_token4] = ACTIONS(4505), + [aux_sym__immediate_decimal_token5] = ACTIONS(4507), + [anon_sym_null] = ACTIONS(1646), + [anon_sym_true] = ACTIONS(1646), + [anon_sym_false] = ACTIONS(1646), + [aux_sym__val_number_decimal_token1] = ACTIONS(1644), + [aux_sym__val_number_decimal_token2] = ACTIONS(1644), + [aux_sym__val_number_decimal_token3] = ACTIONS(1644), + [aux_sym__val_number_decimal_token4] = ACTIONS(1644), + [aux_sym__val_number_token1] = ACTIONS(1646), + [aux_sym__val_number_token2] = ACTIONS(1646), + [aux_sym__val_number_token3] = ACTIONS(1646), + [aux_sym__val_number_token4] = ACTIONS(1646), + [aux_sym__val_number_token5] = ACTIONS(1646), + [aux_sym__val_number_token6] = ACTIONS(1646), + [anon_sym_0b] = ACTIONS(1644), + [anon_sym_0o] = ACTIONS(1644), + [anon_sym_0x] = ACTIONS(1644), + [sym_val_date] = ACTIONS(1646), + [anon_sym_DQUOTE] = ACTIONS(1646), + [sym__str_single_quotes] = ACTIONS(1646), + [sym__str_back_ticks] = ACTIONS(1646), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1646), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1646), + [anon_sym_err_GT] = ACTIONS(1644), + [anon_sym_out_GT] = ACTIONS(1644), + [anon_sym_e_GT] = ACTIONS(1644), + [anon_sym_o_GT] = ACTIONS(1644), + [anon_sym_err_PLUSout_GT] = ACTIONS(1644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1644), + [anon_sym_o_PLUSe_GT] = ACTIONS(1644), + [anon_sym_e_PLUSo_GT] = ACTIONS(1644), + [anon_sym_err_GT_GT] = ACTIONS(1646), + [anon_sym_out_GT_GT] = ACTIONS(1646), + [anon_sym_e_GT_GT] = ACTIONS(1646), + [anon_sym_o_GT_GT] = ACTIONS(1646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1646), + [aux_sym_unquoted_token1] = ACTIONS(1644), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1646), + }, + [1298] = { + [sym__expr_parenthesized_immediate] = STATE(1932), + [sym__immediate_decimal] = STATE(1899), + [sym_val_variable] = STATE(1932), + [sym_comment] = STATE(1298), + [ts_builtin_sym_end] = ACTIONS(1546), + [sym__newline] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_err_GT_PIPE] = ACTIONS(1546), + [anon_sym_out_GT_PIPE] = ACTIONS(1546), + [anon_sym_e_GT_PIPE] = ACTIONS(1546), + [anon_sym_o_GT_PIPE] = ACTIONS(1546), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1546), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1546), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1546), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_DOLLAR] = ACTIONS(4043), + [anon_sym_DASH_DASH] = ACTIONS(1546), + [anon_sym_DASH2] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_DOT_DOT] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(4045), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1546), + [anon_sym_DOT_DOT_LT] = ACTIONS(1546), + [aux_sym__immediate_decimal_token1] = ACTIONS(4501), + [aux_sym__immediate_decimal_token3] = ACTIONS(4503), + [aux_sym__immediate_decimal_token4] = ACTIONS(4505), + [aux_sym__immediate_decimal_token5] = ACTIONS(4507), + [anon_sym_null] = ACTIONS(1546), + [anon_sym_true] = ACTIONS(1546), + [anon_sym_false] = ACTIONS(1546), + [aux_sym__val_number_decimal_token1] = ACTIONS(1538), + [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(1546), + [aux_sym__val_number_token2] = ACTIONS(1546), + [aux_sym__val_number_token3] = ACTIONS(1546), + [aux_sym__val_number_token4] = ACTIONS(1546), + [aux_sym__val_number_token5] = ACTIONS(1546), + [aux_sym__val_number_token6] = ACTIONS(1546), + [anon_sym_0b] = ACTIONS(1538), + [anon_sym_0o] = ACTIONS(1538), + [anon_sym_0x] = ACTIONS(1538), + [sym_val_date] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [sym__str_single_quotes] = ACTIONS(1546), + [sym__str_back_ticks] = ACTIONS(1546), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1546), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1546), + [anon_sym_err_GT] = ACTIONS(1538), + [anon_sym_out_GT] = ACTIONS(1538), + [anon_sym_e_GT] = ACTIONS(1538), + [anon_sym_o_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT] = ACTIONS(1538), + [anon_sym_err_GT_GT] = ACTIONS(1546), + [anon_sym_out_GT_GT] = ACTIONS(1546), + [anon_sym_e_GT_GT] = ACTIONS(1546), + [anon_sym_o_GT_GT] = ACTIONS(1546), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1546), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1546), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1546), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1546), + [aux_sym_unquoted_token1] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1546), + }, + [1299] = { + [sym_comment] = STATE(1299), + [ts_builtin_sym_end] = ACTIONS(966), + [anon_sym_EQ] = ACTIONS(964), + [anon_sym_PLUS_EQ] = ACTIONS(966), + [anon_sym_DASH_EQ] = ACTIONS(966), + [anon_sym_STAR_EQ] = ACTIONS(966), + [anon_sym_SLASH_EQ] = ACTIONS(966), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(966), + [sym__newline] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_err_GT_PIPE] = ACTIONS(966), + [anon_sym_out_GT_PIPE] = ACTIONS(966), + [anon_sym_e_GT_PIPE] = ACTIONS(966), + [anon_sym_o_GT_PIPE] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(966), + [anon_sym_GT2] = ACTIONS(964), + [anon_sym_DASH2] = ACTIONS(964), + [anon_sym_in2] = ACTIONS(966), + [anon_sym_STAR2] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(4535), + [anon_sym_and2] = ACTIONS(966), + [anon_sym_xor2] = ACTIONS(966), + [anon_sym_or2] = ACTIONS(966), + [anon_sym_not_DASHin2] = ACTIONS(966), + [anon_sym_has2] = ACTIONS(966), + [anon_sym_not_DASHhas2] = ACTIONS(966), + [anon_sym_starts_DASHwith2] = ACTIONS(966), + [anon_sym_ends_DASHwith2] = ACTIONS(966), + [anon_sym_EQ_EQ2] = ACTIONS(966), + [anon_sym_BANG_EQ2] = ACTIONS(966), + [anon_sym_LT2] = ACTIONS(964), + [anon_sym_LT_EQ2] = ACTIONS(966), + [anon_sym_GT_EQ2] = ACTIONS(966), + [anon_sym_EQ_TILDE2] = ACTIONS(966), + [anon_sym_BANG_TILDE2] = ACTIONS(966), + [anon_sym_STAR_STAR2] = ACTIONS(966), + [anon_sym_PLUS_PLUS2] = ACTIONS(964), + [anon_sym_SLASH2] = ACTIONS(964), + [anon_sym_mod2] = ACTIONS(966), + [anon_sym_SLASH_SLASH2] = ACTIONS(966), + [anon_sym_PLUS2] = ACTIONS(964), + [anon_sym_bit_DASHshl2] = ACTIONS(966), + [anon_sym_bit_DASHshr2] = ACTIONS(966), + [anon_sym_bit_DASHand2] = ACTIONS(966), + [anon_sym_bit_DASHxor2] = ACTIONS(966), + [anon_sym_bit_DASHor2] = ACTIONS(966), + [anon_sym_DOT_DOT2] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(966), + [anon_sym_DOT_DOT_LT2] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(964), + [anon_sym_err_GT] = ACTIONS(964), + [anon_sym_out_GT] = ACTIONS(964), + [anon_sym_e_GT] = ACTIONS(964), + [anon_sym_o_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT] = ACTIONS(964), + [anon_sym_err_GT_GT] = ACTIONS(966), + [anon_sym_out_GT_GT] = ACTIONS(966), + [anon_sym_e_GT_GT] = ACTIONS(966), + [anon_sym_o_GT_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(245), + }, + [1300] = { + [sym_comment] = STATE(1300), [ts_builtin_sym_end] = ACTIONS(960), [anon_sym_EQ] = ACTIONS(958), [anon_sym_PLUS_EQ] = ACTIONS(960), @@ -206009,7 +200680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(958), [anon_sym_in2] = ACTIONS(960), [anon_sym_STAR2] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(960), + [anon_sym_QMARK2] = ACTIONS(4537), [anon_sym_and2] = ACTIONS(960), [anon_sym_xor2] = ACTIONS(960), [anon_sym_or2] = ACTIONS(960), @@ -206058,230 +200729,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), [anon_sym_POUND] = ACTIONS(245), }, - [1340] = { - [sym_path] = STATE(1450), - [sym_comment] = STATE(1340), - [aux_sym_cell_path_repeat1] = STATE(1341), - [sym__newline] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_err_GT_PIPE] = ACTIONS(933), - [anon_sym_out_GT_PIPE] = ACTIONS(933), - [anon_sym_e_GT_PIPE] = ACTIONS(933), - [anon_sym_o_GT_PIPE] = ACTIONS(933), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(933), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(933), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(933), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(933), - [anon_sym_RPAREN] = ACTIONS(933), - [anon_sym_GT2] = ACTIONS(931), - [anon_sym_DASH2] = ACTIONS(933), - [anon_sym_in2] = ACTIONS(933), - [anon_sym_if] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_RBRACE] = ACTIONS(933), - [anon_sym_EQ_GT] = ACTIONS(933), - [anon_sym_STAR2] = ACTIONS(931), - [anon_sym_and2] = ACTIONS(933), - [anon_sym_xor2] = ACTIONS(933), - [anon_sym_or2] = ACTIONS(933), - [anon_sym_not_DASHin2] = ACTIONS(933), - [anon_sym_has2] = ACTIONS(933), - [anon_sym_not_DASHhas2] = ACTIONS(933), - [anon_sym_starts_DASHwith2] = ACTIONS(933), - [anon_sym_ends_DASHwith2] = ACTIONS(933), - [anon_sym_EQ_EQ2] = ACTIONS(933), - [anon_sym_BANG_EQ2] = ACTIONS(933), - [anon_sym_LT2] = ACTIONS(931), - [anon_sym_LT_EQ2] = ACTIONS(933), - [anon_sym_GT_EQ2] = ACTIONS(933), - [anon_sym_EQ_TILDE2] = ACTIONS(933), - [anon_sym_BANG_TILDE2] = ACTIONS(933), - [anon_sym_STAR_STAR2] = ACTIONS(933), - [anon_sym_PLUS_PLUS2] = ACTIONS(933), - [anon_sym_SLASH2] = ACTIONS(931), - [anon_sym_mod2] = ACTIONS(933), - [anon_sym_SLASH_SLASH2] = ACTIONS(933), - [anon_sym_PLUS2] = ACTIONS(931), - [anon_sym_bit_DASHshl2] = ACTIONS(933), - [anon_sym_bit_DASHshr2] = ACTIONS(933), - [anon_sym_bit_DASHand2] = ACTIONS(933), - [anon_sym_bit_DASHxor2] = ACTIONS(933), - [anon_sym_bit_DASHor2] = ACTIONS(933), - [anon_sym_DOT_DOT2] = ACTIONS(931), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(933), - [anon_sym_DOT_DOT_LT2] = ACTIONS(933), - [anon_sym_COLON2] = ACTIONS(933), - [anon_sym_DOT2] = ACTIONS(4203), - [anon_sym_err_GT] = ACTIONS(931), - [anon_sym_out_GT] = ACTIONS(931), - [anon_sym_e_GT] = ACTIONS(931), - [anon_sym_o_GT] = ACTIONS(931), - [anon_sym_err_PLUSout_GT] = ACTIONS(931), - [anon_sym_out_PLUSerr_GT] = ACTIONS(931), - [anon_sym_o_PLUSe_GT] = ACTIONS(931), - [anon_sym_e_PLUSo_GT] = ACTIONS(931), - [anon_sym_err_GT_GT] = ACTIONS(933), - [anon_sym_out_GT_GT] = ACTIONS(933), - [anon_sym_e_GT_GT] = ACTIONS(933), - [anon_sym_o_GT_GT] = ACTIONS(933), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(933), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(933), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(933), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(933), + [1301] = { + [sym_cell_path] = STATE(1481), + [sym_path] = STATE(1374), + [sym_comment] = STATE(1301), + [aux_sym_cell_path_repeat1] = STATE(1284), + [sym__newline] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(927), + [anon_sym_err_GT_PIPE] = ACTIONS(927), + [anon_sym_out_GT_PIPE] = ACTIONS(927), + [anon_sym_e_GT_PIPE] = ACTIONS(927), + [anon_sym_o_GT_PIPE] = ACTIONS(927), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(927), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(927), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(927), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(927), + [anon_sym_RPAREN] = ACTIONS(927), + [anon_sym_GT2] = ACTIONS(925), + [anon_sym_DASH2] = ACTIONS(927), + [anon_sym_in2] = ACTIONS(927), + [anon_sym_if] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_EQ_GT] = ACTIONS(927), + [anon_sym_STAR2] = ACTIONS(925), + [anon_sym_and2] = ACTIONS(927), + [anon_sym_xor2] = ACTIONS(927), + [anon_sym_or2] = ACTIONS(927), + [anon_sym_not_DASHin2] = ACTIONS(927), + [anon_sym_has2] = ACTIONS(927), + [anon_sym_not_DASHhas2] = ACTIONS(927), + [anon_sym_starts_DASHwith2] = ACTIONS(927), + [anon_sym_ends_DASHwith2] = ACTIONS(927), + [anon_sym_EQ_EQ2] = ACTIONS(927), + [anon_sym_BANG_EQ2] = ACTIONS(927), + [anon_sym_LT2] = ACTIONS(925), + [anon_sym_LT_EQ2] = ACTIONS(927), + [anon_sym_GT_EQ2] = ACTIONS(927), + [anon_sym_EQ_TILDE2] = ACTIONS(927), + [anon_sym_BANG_TILDE2] = ACTIONS(927), + [anon_sym_STAR_STAR2] = ACTIONS(927), + [anon_sym_PLUS_PLUS2] = ACTIONS(927), + [anon_sym_SLASH2] = ACTIONS(925), + [anon_sym_mod2] = ACTIONS(927), + [anon_sym_SLASH_SLASH2] = ACTIONS(927), + [anon_sym_PLUS2] = ACTIONS(925), + [anon_sym_bit_DASHshl2] = ACTIONS(927), + [anon_sym_bit_DASHshr2] = ACTIONS(927), + [anon_sym_bit_DASHand2] = ACTIONS(927), + [anon_sym_bit_DASHxor2] = ACTIONS(927), + [anon_sym_bit_DASHor2] = ACTIONS(927), + [anon_sym_DOT_DOT2] = ACTIONS(925), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(927), + [anon_sym_DOT_DOT_LT2] = ACTIONS(927), + [anon_sym_DOT2] = ACTIONS(4220), + [anon_sym_err_GT] = ACTIONS(925), + [anon_sym_out_GT] = ACTIONS(925), + [anon_sym_e_GT] = ACTIONS(925), + [anon_sym_o_GT] = ACTIONS(925), + [anon_sym_err_PLUSout_GT] = ACTIONS(925), + [anon_sym_out_PLUSerr_GT] = ACTIONS(925), + [anon_sym_o_PLUSe_GT] = ACTIONS(925), + [anon_sym_e_PLUSo_GT] = ACTIONS(925), + [anon_sym_err_GT_GT] = ACTIONS(927), + [anon_sym_out_GT_GT] = ACTIONS(927), + [anon_sym_e_GT_GT] = ACTIONS(927), + [anon_sym_o_GT_GT] = ACTIONS(927), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(927), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(927), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(927), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(927), [anon_sym_POUND] = ACTIONS(245), }, - [1341] = { - [sym_path] = STATE(1450), - [sym_comment] = STATE(1341), - [aux_sym_cell_path_repeat1] = STATE(1341), - [sym__newline] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(937), - [anon_sym_err_GT_PIPE] = ACTIONS(937), - [anon_sym_out_GT_PIPE] = ACTIONS(937), - [anon_sym_e_GT_PIPE] = ACTIONS(937), - [anon_sym_o_GT_PIPE] = ACTIONS(937), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), - [anon_sym_RPAREN] = ACTIONS(937), - [anon_sym_GT2] = ACTIONS(935), - [anon_sym_DASH2] = ACTIONS(937), - [anon_sym_in2] = ACTIONS(937), - [anon_sym_if] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_EQ_GT] = ACTIONS(937), - [anon_sym_STAR2] = ACTIONS(935), - [anon_sym_and2] = ACTIONS(937), - [anon_sym_xor2] = ACTIONS(937), - [anon_sym_or2] = ACTIONS(937), - [anon_sym_not_DASHin2] = ACTIONS(937), - [anon_sym_has2] = ACTIONS(937), - [anon_sym_not_DASHhas2] = ACTIONS(937), - [anon_sym_starts_DASHwith2] = ACTIONS(937), - [anon_sym_ends_DASHwith2] = ACTIONS(937), - [anon_sym_EQ_EQ2] = ACTIONS(937), - [anon_sym_BANG_EQ2] = ACTIONS(937), - [anon_sym_LT2] = ACTIONS(935), - [anon_sym_LT_EQ2] = ACTIONS(937), - [anon_sym_GT_EQ2] = ACTIONS(937), - [anon_sym_EQ_TILDE2] = ACTIONS(937), - [anon_sym_BANG_TILDE2] = ACTIONS(937), - [anon_sym_STAR_STAR2] = ACTIONS(937), - [anon_sym_PLUS_PLUS2] = ACTIONS(937), - [anon_sym_SLASH2] = ACTIONS(935), - [anon_sym_mod2] = ACTIONS(937), - [anon_sym_SLASH_SLASH2] = ACTIONS(937), - [anon_sym_PLUS2] = ACTIONS(935), - [anon_sym_bit_DASHshl2] = ACTIONS(937), - [anon_sym_bit_DASHshr2] = ACTIONS(937), - [anon_sym_bit_DASHand2] = ACTIONS(937), - [anon_sym_bit_DASHxor2] = ACTIONS(937), - [anon_sym_bit_DASHor2] = ACTIONS(937), - [anon_sym_DOT_DOT2] = ACTIONS(935), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), - [anon_sym_DOT_DOT_LT2] = ACTIONS(937), - [anon_sym_COLON2] = ACTIONS(937), - [anon_sym_DOT2] = ACTIONS(4488), - [anon_sym_err_GT] = ACTIONS(935), - [anon_sym_out_GT] = ACTIONS(935), - [anon_sym_e_GT] = ACTIONS(935), - [anon_sym_o_GT] = ACTIONS(935), - [anon_sym_err_PLUSout_GT] = ACTIONS(935), - [anon_sym_out_PLUSerr_GT] = ACTIONS(935), - [anon_sym_o_PLUSe_GT] = ACTIONS(935), - [anon_sym_e_PLUSo_GT] = ACTIONS(935), - [anon_sym_err_GT_GT] = ACTIONS(937), - [anon_sym_out_GT_GT] = ACTIONS(937), - [anon_sym_e_GT_GT] = ACTIONS(937), - [anon_sym_o_GT_GT] = ACTIONS(937), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), - [anon_sym_POUND] = ACTIONS(245), + [1302] = { + [sym_comment] = STATE(1302), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(4539), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1701), + [anon_sym_DOT_DOT_LT] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4541), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), }, - [1342] = { - [sym_comment] = STATE(1342), - [sym__newline] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1540), - [anon_sym_err_GT_PIPE] = ACTIONS(1540), - [anon_sym_out_GT_PIPE] = ACTIONS(1540), - [anon_sym_e_GT_PIPE] = ACTIONS(1540), - [anon_sym_o_GT_PIPE] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_RPAREN] = ACTIONS(1540), - [anon_sym_DOLLAR] = ACTIONS(1538), - [anon_sym_DASH_DASH] = ACTIONS(1540), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_LBRACE] = ACTIONS(1540), - [anon_sym_RBRACE] = ACTIONS(1540), - [anon_sym_DOT_DOT] = ACTIONS(1538), - [anon_sym_LPAREN2] = ACTIONS(1540), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [anon_sym_null] = ACTIONS(1540), - [anon_sym_true] = ACTIONS(1540), - [anon_sym_false] = ACTIONS(1540), - [aux_sym__val_number_decimal_token1] = ACTIONS(1538), - [aux_sym__val_number_decimal_token2] = ACTIONS(1540), - [aux_sym__val_number_decimal_token3] = ACTIONS(1540), - [aux_sym__val_number_decimal_token4] = ACTIONS(1540), - [aux_sym__val_number_token1] = ACTIONS(1540), - [aux_sym__val_number_token2] = ACTIONS(1540), - [aux_sym__val_number_token3] = ACTIONS(1540), - [aux_sym__val_number_token4] = ACTIONS(1540), - [aux_sym__val_number_token5] = ACTIONS(1540), - [aux_sym__val_number_token6] = ACTIONS(1540), - [anon_sym_0b] = ACTIONS(1538), - [sym_filesize_unit] = ACTIONS(1540), - [sym_duration_unit] = ACTIONS(1540), - [anon_sym_0o] = ACTIONS(1538), - [anon_sym_0x] = ACTIONS(1538), - [sym_val_date] = ACTIONS(1540), - [anon_sym_DQUOTE] = ACTIONS(1540), - [sym__str_single_quotes] = ACTIONS(1540), - [sym__str_back_ticks] = ACTIONS(1540), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1540), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1540), - [anon_sym_err_GT] = ACTIONS(1538), - [anon_sym_out_GT] = ACTIONS(1538), - [anon_sym_e_GT] = ACTIONS(1538), - [anon_sym_o_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT] = ACTIONS(1538), - [anon_sym_err_GT_GT] = ACTIONS(1540), - [anon_sym_out_GT_GT] = ACTIONS(1540), - [anon_sym_e_GT_GT] = ACTIONS(1540), - [anon_sym_o_GT_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1540), - [aux_sym_unquoted_token1] = ACTIONS(1538), - [aux_sym_unquoted_token2] = ACTIONS(1538), + [1303] = { + [sym__expr_parenthesized_immediate] = STATE(1815), + [sym__immediate_decimal] = STATE(1816), + [sym_val_variable] = STATE(1815), + [sym_comment] = STATE(1303), + [sym__newline] = ACTIONS(1634), + [anon_sym_SEMI] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1634), + [anon_sym_err_GT_PIPE] = ACTIONS(1634), + [anon_sym_out_GT_PIPE] = ACTIONS(1634), + [anon_sym_e_GT_PIPE] = ACTIONS(1634), + [anon_sym_o_GT_PIPE] = ACTIONS(1634), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1634), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1634), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1634), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(3550), + [anon_sym_GT2] = ACTIONS(1632), + [anon_sym_DASH2] = ACTIONS(1632), + [anon_sym_in2] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_RBRACE] = ACTIONS(1634), + [anon_sym_STAR2] = ACTIONS(1632), + [anon_sym_and2] = ACTIONS(1634), + [anon_sym_xor2] = ACTIONS(1634), + [anon_sym_or2] = ACTIONS(1634), + [anon_sym_not_DASHin2] = ACTIONS(1634), + [anon_sym_has2] = ACTIONS(1634), + [anon_sym_not_DASHhas2] = ACTIONS(1634), + [anon_sym_starts_DASHwith2] = ACTIONS(1634), + [anon_sym_ends_DASHwith2] = ACTIONS(1634), + [anon_sym_EQ_EQ2] = ACTIONS(1634), + [anon_sym_BANG_EQ2] = ACTIONS(1634), + [anon_sym_LT2] = ACTIONS(1632), + [anon_sym_LT_EQ2] = ACTIONS(1634), + [anon_sym_GT_EQ2] = ACTIONS(1634), + [anon_sym_EQ_TILDE2] = ACTIONS(1634), + [anon_sym_BANG_TILDE2] = ACTIONS(1634), + [anon_sym_LPAREN2] = ACTIONS(4027), + [anon_sym_STAR_STAR2] = ACTIONS(1634), + [anon_sym_PLUS_PLUS2] = ACTIONS(1634), + [anon_sym_SLASH2] = ACTIONS(1632), + [anon_sym_mod2] = ACTIONS(1634), + [anon_sym_SLASH_SLASH2] = ACTIONS(1634), + [anon_sym_PLUS2] = ACTIONS(1632), + [anon_sym_bit_DASHshl2] = ACTIONS(1634), + [anon_sym_bit_DASHshr2] = ACTIONS(1634), + [anon_sym_bit_DASHand2] = ACTIONS(1634), + [anon_sym_bit_DASHxor2] = ACTIONS(1634), + [anon_sym_bit_DASHor2] = ACTIONS(1634), + [aux_sym__immediate_decimal_token1] = ACTIONS(4424), + [aux_sym__immediate_decimal_token3] = ACTIONS(4424), + [aux_sym__immediate_decimal_token4] = ACTIONS(4033), + [aux_sym__immediate_decimal_token5] = ACTIONS(4035), + [anon_sym_err_GT] = ACTIONS(1632), + [anon_sym_out_GT] = ACTIONS(1632), + [anon_sym_e_GT] = ACTIONS(1632), + [anon_sym_o_GT] = ACTIONS(1632), + [anon_sym_err_PLUSout_GT] = ACTIONS(1632), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1632), + [anon_sym_o_PLUSe_GT] = ACTIONS(1632), + [anon_sym_e_PLUSo_GT] = ACTIONS(1632), + [anon_sym_err_GT_GT] = ACTIONS(1634), + [anon_sym_out_GT_GT] = ACTIONS(1634), + [anon_sym_e_GT_GT] = ACTIONS(1634), + [anon_sym_o_GT_GT] = ACTIONS(1634), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1634), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1634), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1634), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1634), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1540), }, - [1343] = { - [sym__expr_parenthesized_immediate] = STATE(1818), - [sym__immediate_decimal] = STATE(1819), - [sym_val_variable] = STATE(1818), - [sym_comment] = STATE(1343), + [1304] = { + [sym__expr_parenthesized_immediate] = STATE(1817), + [sym__immediate_decimal] = STATE(1818), + [sym_val_variable] = STATE(1817), + [sym_comment] = STATE(1304), [sym__newline] = ACTIONS(1646), [anon_sym_SEMI] = ACTIONS(1646), [anon_sym_PIPE] = ACTIONS(1646), @@ -206294,7 +200965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1646), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1646), [anon_sym_RPAREN] = ACTIONS(1646), - [anon_sym_DOLLAR] = ACTIONS(3610), + [anon_sym_DOLLAR] = ACTIONS(3550), [anon_sym_GT2] = ACTIONS(1644), [anon_sym_DASH2] = ACTIONS(1644), [anon_sym_in2] = ACTIONS(1646), @@ -206316,7 +200987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ2] = ACTIONS(1646), [anon_sym_EQ_TILDE2] = ACTIONS(1646), [anon_sym_BANG_TILDE2] = ACTIONS(1646), - [anon_sym_LPAREN2] = ACTIONS(4075), + [anon_sym_LPAREN2] = ACTIONS(4027), [anon_sym_STAR_STAR2] = ACTIONS(1646), [anon_sym_PLUS_PLUS2] = ACTIONS(1646), [anon_sym_SLASH2] = ACTIONS(1644), @@ -206328,10 +200999,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1646), [anon_sym_bit_DASHxor2] = ACTIONS(1646), [anon_sym_bit_DASHor2] = ACTIONS(1646), - [aux_sym__immediate_decimal_token1] = ACTIONS(4486), - [aux_sym__immediate_decimal_token3] = ACTIONS(4486), - [aux_sym__immediate_decimal_token4] = ACTIONS(4081), - [aux_sym__immediate_decimal_token5] = ACTIONS(4083), + [aux_sym__immediate_decimal_token1] = ACTIONS(4424), + [aux_sym__immediate_decimal_token3] = ACTIONS(4424), + [aux_sym__immediate_decimal_token4] = ACTIONS(4033), + [aux_sym__immediate_decimal_token5] = ACTIONS(4035), [anon_sym_err_GT] = ACTIONS(1644), [anon_sym_out_GT] = ACTIONS(1644), [anon_sym_e_GT] = ACTIONS(1644), @@ -206350,446 +201021,300 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1646), [anon_sym_POUND] = ACTIONS(245), }, - [1344] = { - [sym__expr_parenthesized_immediate] = STATE(1820), - [sym__immediate_decimal] = STATE(1821), - [sym_val_variable] = STATE(1820), - [sym_comment] = STATE(1344), - [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_RPAREN] = ACTIONS(1577), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_GT2] = ACTIONS(1575), - [anon_sym_DASH2] = ACTIONS(1575), - [anon_sym_in2] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), - [anon_sym_STAR2] = ACTIONS(1575), - [anon_sym_and2] = ACTIONS(1577), - [anon_sym_xor2] = ACTIONS(1577), - [anon_sym_or2] = ACTIONS(1577), - [anon_sym_not_DASHin2] = ACTIONS(1577), - [anon_sym_has2] = ACTIONS(1577), - [anon_sym_not_DASHhas2] = ACTIONS(1577), - [anon_sym_starts_DASHwith2] = ACTIONS(1577), - [anon_sym_ends_DASHwith2] = ACTIONS(1577), - [anon_sym_EQ_EQ2] = ACTIONS(1577), - [anon_sym_BANG_EQ2] = ACTIONS(1577), - [anon_sym_LT2] = ACTIONS(1575), - [anon_sym_LT_EQ2] = ACTIONS(1577), - [anon_sym_GT_EQ2] = ACTIONS(1577), - [anon_sym_EQ_TILDE2] = ACTIONS(1577), - [anon_sym_BANG_TILDE2] = ACTIONS(1577), - [anon_sym_LPAREN2] = ACTIONS(4075), - [anon_sym_STAR_STAR2] = ACTIONS(1577), - [anon_sym_PLUS_PLUS2] = ACTIONS(1577), - [anon_sym_SLASH2] = ACTIONS(1575), - [anon_sym_mod2] = ACTIONS(1577), - [anon_sym_SLASH_SLASH2] = ACTIONS(1577), - [anon_sym_PLUS2] = ACTIONS(1575), - [anon_sym_bit_DASHshl2] = ACTIONS(1577), - [anon_sym_bit_DASHshr2] = ACTIONS(1577), - [anon_sym_bit_DASHand2] = ACTIONS(1577), - [anon_sym_bit_DASHxor2] = ACTIONS(1577), - [anon_sym_bit_DASHor2] = ACTIONS(1577), - [aux_sym__immediate_decimal_token1] = ACTIONS(4486), - [aux_sym__immediate_decimal_token3] = ACTIONS(4486), - [aux_sym__immediate_decimal_token4] = ACTIONS(4081), - [aux_sym__immediate_decimal_token5] = ACTIONS(4083), - [anon_sym_err_GT] = ACTIONS(1575), - [anon_sym_out_GT] = ACTIONS(1575), - [anon_sym_e_GT] = ACTIONS(1575), - [anon_sym_o_GT] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT] = ACTIONS(1575), - [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), + [1305] = { + [sym__expr_parenthesized_immediate] = STATE(1821), + [sym__immediate_decimal] = STATE(1822), + [sym_val_variable] = STATE(1821), + [sym_comment] = STATE(1305), + [sym__newline] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_err_GT_PIPE] = ACTIONS(1546), + [anon_sym_out_GT_PIPE] = ACTIONS(1546), + [anon_sym_e_GT_PIPE] = ACTIONS(1546), + [anon_sym_o_GT_PIPE] = ACTIONS(1546), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1546), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1546), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1546), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1546), + [anon_sym_RPAREN] = ACTIONS(1546), + [anon_sym_DOLLAR] = ACTIONS(3550), + [anon_sym_GT2] = ACTIONS(1538), + [anon_sym_DASH2] = ACTIONS(1538), + [anon_sym_in2] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_STAR2] = ACTIONS(1538), + [anon_sym_and2] = ACTIONS(1546), + [anon_sym_xor2] = ACTIONS(1546), + [anon_sym_or2] = ACTIONS(1546), + [anon_sym_not_DASHin2] = ACTIONS(1546), + [anon_sym_has2] = ACTIONS(1546), + [anon_sym_not_DASHhas2] = ACTIONS(1546), + [anon_sym_starts_DASHwith2] = ACTIONS(1546), + [anon_sym_ends_DASHwith2] = ACTIONS(1546), + [anon_sym_EQ_EQ2] = ACTIONS(1546), + [anon_sym_BANG_EQ2] = ACTIONS(1546), + [anon_sym_LT2] = ACTIONS(1538), + [anon_sym_LT_EQ2] = ACTIONS(1546), + [anon_sym_GT_EQ2] = ACTIONS(1546), + [anon_sym_EQ_TILDE2] = ACTIONS(1546), + [anon_sym_BANG_TILDE2] = ACTIONS(1546), + [anon_sym_LPAREN2] = ACTIONS(4027), + [anon_sym_STAR_STAR2] = ACTIONS(1546), + [anon_sym_PLUS_PLUS2] = ACTIONS(1546), + [anon_sym_SLASH2] = ACTIONS(1538), + [anon_sym_mod2] = ACTIONS(1546), + [anon_sym_SLASH_SLASH2] = ACTIONS(1546), + [anon_sym_PLUS2] = ACTIONS(1538), + [anon_sym_bit_DASHshl2] = ACTIONS(1546), + [anon_sym_bit_DASHshr2] = ACTIONS(1546), + [anon_sym_bit_DASHand2] = ACTIONS(1546), + [anon_sym_bit_DASHxor2] = ACTIONS(1546), + [anon_sym_bit_DASHor2] = ACTIONS(1546), + [aux_sym__immediate_decimal_token1] = ACTIONS(4424), + [aux_sym__immediate_decimal_token3] = ACTIONS(4424), + [aux_sym__immediate_decimal_token4] = ACTIONS(4033), + [aux_sym__immediate_decimal_token5] = ACTIONS(4035), + [anon_sym_err_GT] = ACTIONS(1538), + [anon_sym_out_GT] = ACTIONS(1538), + [anon_sym_e_GT] = ACTIONS(1538), + [anon_sym_o_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT] = ACTIONS(1538), + [anon_sym_err_GT_GT] = ACTIONS(1546), + [anon_sym_out_GT_GT] = ACTIONS(1546), + [anon_sym_e_GT_GT] = ACTIONS(1546), + [anon_sym_o_GT_GT] = ACTIONS(1546), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1546), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1546), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1546), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1546), [anon_sym_POUND] = ACTIONS(245), }, - [1345] = { - [sym__expr_parenthesized_immediate] = STATE(1822), - [sym__immediate_decimal] = STATE(1823), - [sym_val_variable] = STATE(1822), - [sym_comment] = STATE(1345), - [sym__newline] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_err_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_GT_PIPE] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1552), - [anon_sym_RPAREN] = ACTIONS(1552), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_GT2] = ACTIONS(1544), - [anon_sym_DASH2] = ACTIONS(1544), - [anon_sym_in2] = ACTIONS(1552), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_RBRACE] = ACTIONS(1552), - [anon_sym_STAR2] = ACTIONS(1544), - [anon_sym_and2] = ACTIONS(1552), - [anon_sym_xor2] = ACTIONS(1552), - [anon_sym_or2] = ACTIONS(1552), - [anon_sym_not_DASHin2] = ACTIONS(1552), - [anon_sym_has2] = ACTIONS(1552), - [anon_sym_not_DASHhas2] = ACTIONS(1552), - [anon_sym_starts_DASHwith2] = ACTIONS(1552), - [anon_sym_ends_DASHwith2] = ACTIONS(1552), - [anon_sym_EQ_EQ2] = ACTIONS(1552), - [anon_sym_BANG_EQ2] = ACTIONS(1552), - [anon_sym_LT2] = ACTIONS(1544), - [anon_sym_LT_EQ2] = ACTIONS(1552), - [anon_sym_GT_EQ2] = ACTIONS(1552), - [anon_sym_EQ_TILDE2] = ACTIONS(1552), - [anon_sym_BANG_TILDE2] = ACTIONS(1552), - [anon_sym_LPAREN2] = ACTIONS(4075), - [anon_sym_STAR_STAR2] = ACTIONS(1552), - [anon_sym_PLUS_PLUS2] = ACTIONS(1552), - [anon_sym_SLASH2] = ACTIONS(1544), - [anon_sym_mod2] = ACTIONS(1552), - [anon_sym_SLASH_SLASH2] = ACTIONS(1552), - [anon_sym_PLUS2] = ACTIONS(1544), - [anon_sym_bit_DASHshl2] = ACTIONS(1552), - [anon_sym_bit_DASHshr2] = ACTIONS(1552), - [anon_sym_bit_DASHand2] = ACTIONS(1552), - [anon_sym_bit_DASHxor2] = ACTIONS(1552), - [anon_sym_bit_DASHor2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token1] = ACTIONS(4486), - [aux_sym__immediate_decimal_token3] = ACTIONS(4486), - [aux_sym__immediate_decimal_token4] = ACTIONS(4081), - [aux_sym__immediate_decimal_token5] = ACTIONS(4083), - [anon_sym_err_GT] = ACTIONS(1544), - [anon_sym_out_GT] = ACTIONS(1544), - [anon_sym_e_GT] = ACTIONS(1544), - [anon_sym_o_GT] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT] = ACTIONS(1544), - [anon_sym_err_GT_GT] = ACTIONS(1552), - [anon_sym_out_GT_GT] = ACTIONS(1552), - [anon_sym_e_GT_GT] = ACTIONS(1552), - [anon_sym_o_GT_GT] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1552), + [1306] = { + [sym_comment] = STATE(1306), + [ts_builtin_sym_end] = ACTIONS(952), + [anon_sym_EQ] = ACTIONS(950), + [anon_sym_PLUS_EQ] = ACTIONS(952), + [anon_sym_DASH_EQ] = ACTIONS(952), + [anon_sym_STAR_EQ] = ACTIONS(952), + [anon_sym_SLASH_EQ] = ACTIONS(952), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(952), + [sym__newline] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(952), + [anon_sym_PIPE] = ACTIONS(952), + [anon_sym_err_GT_PIPE] = ACTIONS(952), + [anon_sym_out_GT_PIPE] = ACTIONS(952), + [anon_sym_e_GT_PIPE] = ACTIONS(952), + [anon_sym_o_GT_PIPE] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(952), + [anon_sym_GT2] = ACTIONS(950), + [anon_sym_DASH2] = ACTIONS(950), + [anon_sym_in2] = ACTIONS(952), + [anon_sym_STAR2] = ACTIONS(950), + [anon_sym_QMARK2] = ACTIONS(952), + [anon_sym_and2] = ACTIONS(952), + [anon_sym_xor2] = ACTIONS(952), + [anon_sym_or2] = ACTIONS(952), + [anon_sym_not_DASHin2] = ACTIONS(952), + [anon_sym_has2] = ACTIONS(952), + [anon_sym_not_DASHhas2] = ACTIONS(952), + [anon_sym_starts_DASHwith2] = ACTIONS(952), + [anon_sym_ends_DASHwith2] = ACTIONS(952), + [anon_sym_EQ_EQ2] = ACTIONS(952), + [anon_sym_BANG_EQ2] = ACTIONS(952), + [anon_sym_LT2] = ACTIONS(950), + [anon_sym_LT_EQ2] = ACTIONS(952), + [anon_sym_GT_EQ2] = ACTIONS(952), + [anon_sym_EQ_TILDE2] = ACTIONS(952), + [anon_sym_BANG_TILDE2] = ACTIONS(952), + [anon_sym_STAR_STAR2] = ACTIONS(952), + [anon_sym_PLUS_PLUS2] = ACTIONS(950), + [anon_sym_SLASH2] = ACTIONS(950), + [anon_sym_mod2] = ACTIONS(952), + [anon_sym_SLASH_SLASH2] = ACTIONS(952), + [anon_sym_PLUS2] = ACTIONS(950), + [anon_sym_bit_DASHshl2] = ACTIONS(952), + [anon_sym_bit_DASHshr2] = ACTIONS(952), + [anon_sym_bit_DASHand2] = ACTIONS(952), + [anon_sym_bit_DASHxor2] = ACTIONS(952), + [anon_sym_bit_DASHor2] = ACTIONS(952), + [anon_sym_DOT_DOT2] = ACTIONS(950), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(952), + [anon_sym_DOT_DOT_LT2] = ACTIONS(952), + [anon_sym_DOT2] = ACTIONS(950), + [anon_sym_err_GT] = ACTIONS(950), + [anon_sym_out_GT] = ACTIONS(950), + [anon_sym_e_GT] = ACTIONS(950), + [anon_sym_o_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT] = ACTIONS(950), + [anon_sym_err_GT_GT] = ACTIONS(952), + [anon_sym_out_GT_GT] = ACTIONS(952), + [anon_sym_e_GT_GT] = ACTIONS(952), + [anon_sym_o_GT_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(952), [anon_sym_POUND] = ACTIONS(245), }, - [1346] = { - [sym_comment] = STATE(1346), - [sym__newline] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_err_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_GT_PIPE] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_RPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DASH2] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), - [anon_sym_DOT_DOT_LT] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [aux_sym__val_number_token4] = ACTIONS(1717), - [aux_sym__val_number_token5] = ACTIONS(1717), - [aux_sym__val_number_token6] = ACTIONS(1717), - [anon_sym_0b] = ACTIONS(1715), - [sym_filesize_unit] = ACTIONS(1717), - [sym_duration_unit] = ACTIONS(1717), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1717), - [anon_sym_out_GT_GT] = ACTIONS(1717), - [anon_sym_e_GT_GT] = ACTIONS(1717), - [anon_sym_o_GT_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), - [aux_sym_unquoted_token1] = ACTIONS(1715), - [aux_sym_unquoted_token2] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1717), - }, - [1347] = { - [sym_comment] = STATE(1347), - [ts_builtin_sym_end] = ACTIONS(1486), - [sym__newline] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1486), - [anon_sym_err_GT_PIPE] = ACTIONS(1486), - [anon_sym_out_GT_PIPE] = ACTIONS(1486), - [anon_sym_e_GT_PIPE] = ACTIONS(1486), - [anon_sym_o_GT_PIPE] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1486), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1484), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1484), - [anon_sym_DOT_DOT_LT] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [aux_sym__immediate_decimal_token1] = ACTIONS(4491), - [aux_sym__immediate_decimal_token2] = ACTIONS(4493), - [anon_sym_null] = ACTIONS(1486), - [anon_sym_true] = ACTIONS(1486), - [anon_sym_false] = ACTIONS(1486), - [aux_sym__val_number_decimal_token1] = ACTIONS(1484), - [aux_sym__val_number_decimal_token2] = ACTIONS(1486), - [aux_sym__val_number_decimal_token3] = ACTIONS(1486), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), - [aux_sym__val_number_token1] = ACTIONS(1486), - [aux_sym__val_number_token2] = ACTIONS(1486), - [aux_sym__val_number_token3] = ACTIONS(1486), - [aux_sym__val_number_token4] = ACTIONS(1486), - [aux_sym__val_number_token5] = ACTIONS(1486), - [aux_sym__val_number_token6] = ACTIONS(1486), - [anon_sym_0b] = ACTIONS(1484), - [sym_filesize_unit] = ACTIONS(1486), - [sym_duration_unit] = ACTIONS(1486), - [anon_sym_0o] = ACTIONS(1484), - [anon_sym_0x] = ACTIONS(1484), - [sym_val_date] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym__str_single_quotes] = ACTIONS(1486), - [sym__str_back_ticks] = ACTIONS(1486), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1486), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1486), - [anon_sym_err_GT] = ACTIONS(1484), - [anon_sym_out_GT] = ACTIONS(1484), - [anon_sym_e_GT] = ACTIONS(1484), - [anon_sym_o_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT] = ACTIONS(1484), - [anon_sym_err_GT_GT] = ACTIONS(1486), - [anon_sym_out_GT_GT] = ACTIONS(1486), - [anon_sym_e_GT_GT] = ACTIONS(1486), - [anon_sym_o_GT_GT] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1486), - [aux_sym_unquoted_token1] = ACTIONS(1484), - [aux_sym_unquoted_token2] = ACTIONS(1484), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1486), - }, - [1348] = { - [sym_comment] = STATE(1348), - [sym__newline] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_err_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_GT_PIPE] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_RPAREN] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DASH2] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1648), - [anon_sym_DOT_DOT_LT] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [aux_sym__immediate_decimal_token1] = ACTIONS(4495), - [aux_sym__immediate_decimal_token2] = ACTIONS(4497), - [anon_sym_null] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [aux_sym__val_number_token4] = ACTIONS(1650), - [aux_sym__val_number_token5] = ACTIONS(1650), - [aux_sym__val_number_token6] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1648), - [anon_sym_0o] = ACTIONS(1648), - [anon_sym_0x] = ACTIONS(1648), - [sym_val_date] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_err_GT] = ACTIONS(1648), - [anon_sym_out_GT] = ACTIONS(1648), - [anon_sym_e_GT] = ACTIONS(1648), - [anon_sym_o_GT] = ACTIONS(1648), - [anon_sym_err_PLUSout_GT] = ACTIONS(1648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), - [anon_sym_o_PLUSe_GT] = ACTIONS(1648), - [anon_sym_e_PLUSo_GT] = ACTIONS(1648), - [anon_sym_err_GT_GT] = ACTIONS(1650), - [anon_sym_out_GT_GT] = ACTIONS(1650), - [anon_sym_e_GT_GT] = ACTIONS(1650), - [anon_sym_o_GT_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), - [aux_sym_unquoted_token1] = ACTIONS(1648), - [aux_sym_unquoted_token2] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1650), + [1307] = { + [sym_comment] = STATE(1307), + [ts_builtin_sym_end] = ACTIONS(1581), + [sym__newline] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1581), + [anon_sym_PIPE] = ACTIONS(1581), + [anon_sym_err_GT_PIPE] = ACTIONS(1581), + [anon_sym_out_GT_PIPE] = ACTIONS(1581), + [anon_sym_e_GT_PIPE] = ACTIONS(1581), + [anon_sym_o_GT_PIPE] = ACTIONS(1581), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1581), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1581), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1581), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1581), + [anon_sym_DASH2] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_DOT_DOT] = ACTIONS(1579), + [anon_sym_LPAREN2] = ACTIONS(1581), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1579), + [anon_sym_DOT_DOT_LT] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [aux_sym__immediate_decimal_token2] = ACTIONS(4543), + [anon_sym_null] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1581), + [anon_sym_false] = ACTIONS(1581), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [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_0b] = ACTIONS(1579), + [sym_filesize_unit] = ACTIONS(1581), + [sym_duration_unit] = ACTIONS(1581), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1581), + [sym__str_single_quotes] = ACTIONS(1581), + [sym__str_back_ticks] = ACTIONS(1581), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1581), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [anon_sym_err_GT_GT] = ACTIONS(1581), + [anon_sym_out_GT_GT] = ACTIONS(1581), + [anon_sym_e_GT_GT] = ACTIONS(1581), + [anon_sym_o_GT_GT] = ACTIONS(1581), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1581), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1581), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1581), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1581), + [aux_sym_unquoted_token1] = ACTIONS(1579), + [aux_sym_unquoted_token2] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1581), }, - [1349] = { - [sym__expr_parenthesized_immediate] = STATE(2074), - [sym__immediate_decimal] = STATE(1720), - [sym_val_variable] = STATE(2074), - [sym_comment] = STATE(1349), - [ts_builtin_sym_end] = ACTIONS(1445), - [sym__newline] = ACTIONS(1445), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_PIPE] = ACTIONS(1445), - [anon_sym_err_GT_PIPE] = ACTIONS(1445), - [anon_sym_out_GT_PIPE] = ACTIONS(1445), - [anon_sym_e_GT_PIPE] = ACTIONS(1445), - [anon_sym_o_GT_PIPE] = ACTIONS(1445), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1445), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1445), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1445), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1445), - [anon_sym_DOLLAR] = ACTIONS(4499), - [anon_sym_GT2] = ACTIONS(1431), - [anon_sym_DASH2] = ACTIONS(1431), - [anon_sym_in2] = ACTIONS(1445), - [anon_sym_STAR2] = ACTIONS(1431), - [anon_sym_and2] = ACTIONS(1445), - [anon_sym_xor2] = ACTIONS(1445), - [anon_sym_or2] = ACTIONS(1445), - [anon_sym_not_DASHin2] = ACTIONS(1445), - [anon_sym_has2] = ACTIONS(1445), - [anon_sym_not_DASHhas2] = ACTIONS(1445), - [anon_sym_starts_DASHwith2] = ACTIONS(1445), - [anon_sym_ends_DASHwith2] = ACTIONS(1445), - [anon_sym_EQ_EQ2] = ACTIONS(1445), - [anon_sym_BANG_EQ2] = ACTIONS(1445), - [anon_sym_LT2] = ACTIONS(1431), - [anon_sym_LT_EQ2] = ACTIONS(1445), - [anon_sym_GT_EQ2] = ACTIONS(1445), - [anon_sym_EQ_TILDE2] = ACTIONS(1445), - [anon_sym_BANG_TILDE2] = ACTIONS(1445), - [anon_sym_LPAREN2] = ACTIONS(4501), - [anon_sym_STAR_STAR2] = ACTIONS(1445), - [anon_sym_PLUS_PLUS2] = ACTIONS(1445), - [anon_sym_SLASH2] = ACTIONS(1431), - [anon_sym_mod2] = ACTIONS(1445), - [anon_sym_SLASH_SLASH2] = ACTIONS(1445), - [anon_sym_PLUS2] = ACTIONS(1431), - [anon_sym_bit_DASHshl2] = ACTIONS(1445), - [anon_sym_bit_DASHshr2] = ACTIONS(1445), - [anon_sym_bit_DASHand2] = ACTIONS(1445), - [anon_sym_bit_DASHxor2] = ACTIONS(1445), - [anon_sym_bit_DASHor2] = ACTIONS(1445), - [anon_sym_DOT] = ACTIONS(4503), - [aux_sym__immediate_decimal_token1] = ACTIONS(4505), - [aux_sym__immediate_decimal_token3] = ACTIONS(4505), - [aux_sym__immediate_decimal_token4] = ACTIONS(4507), - [aux_sym__immediate_decimal_token5] = ACTIONS(4509), - [anon_sym_err_GT] = ACTIONS(1431), - [anon_sym_out_GT] = ACTIONS(1431), - [anon_sym_e_GT] = ACTIONS(1431), - [anon_sym_o_GT] = ACTIONS(1431), - [anon_sym_err_PLUSout_GT] = ACTIONS(1431), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1431), - [anon_sym_o_PLUSe_GT] = ACTIONS(1431), - [anon_sym_e_PLUSo_GT] = ACTIONS(1431), - [anon_sym_err_GT_GT] = ACTIONS(1445), - [anon_sym_out_GT_GT] = ACTIONS(1445), - [anon_sym_e_GT_GT] = ACTIONS(1445), - [anon_sym_o_GT_GT] = ACTIONS(1445), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1445), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1445), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1445), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1445), - [aux_sym_unquoted_token2] = ACTIONS(1447), + [1308] = { + [sym_comment] = STATE(1308), + [ts_builtin_sym_end] = ACTIONS(944), + [anon_sym_EQ] = ACTIONS(942), + [anon_sym_PLUS_EQ] = ACTIONS(944), + [anon_sym_DASH_EQ] = ACTIONS(944), + [anon_sym_STAR_EQ] = ACTIONS(944), + [anon_sym_SLASH_EQ] = ACTIONS(944), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(944), + [sym__newline] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(944), + [anon_sym_err_GT_PIPE] = ACTIONS(944), + [anon_sym_out_GT_PIPE] = ACTIONS(944), + [anon_sym_e_GT_PIPE] = ACTIONS(944), + [anon_sym_o_GT_PIPE] = ACTIONS(944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(944), + [anon_sym_GT2] = ACTIONS(942), + [anon_sym_DASH2] = ACTIONS(942), + [anon_sym_in2] = ACTIONS(944), + [anon_sym_STAR2] = ACTIONS(942), + [anon_sym_QMARK2] = ACTIONS(944), + [anon_sym_and2] = ACTIONS(944), + [anon_sym_xor2] = ACTIONS(944), + [anon_sym_or2] = ACTIONS(944), + [anon_sym_not_DASHin2] = ACTIONS(944), + [anon_sym_has2] = ACTIONS(944), + [anon_sym_not_DASHhas2] = ACTIONS(944), + [anon_sym_starts_DASHwith2] = ACTIONS(944), + [anon_sym_ends_DASHwith2] = ACTIONS(944), + [anon_sym_EQ_EQ2] = ACTIONS(944), + [anon_sym_BANG_EQ2] = ACTIONS(944), + [anon_sym_LT2] = ACTIONS(942), + [anon_sym_LT_EQ2] = ACTIONS(944), + [anon_sym_GT_EQ2] = ACTIONS(944), + [anon_sym_EQ_TILDE2] = ACTIONS(944), + [anon_sym_BANG_TILDE2] = ACTIONS(944), + [anon_sym_STAR_STAR2] = ACTIONS(944), + [anon_sym_PLUS_PLUS2] = ACTIONS(942), + [anon_sym_SLASH2] = ACTIONS(942), + [anon_sym_mod2] = ACTIONS(944), + [anon_sym_SLASH_SLASH2] = ACTIONS(944), + [anon_sym_PLUS2] = ACTIONS(942), + [anon_sym_bit_DASHshl2] = ACTIONS(944), + [anon_sym_bit_DASHshr2] = ACTIONS(944), + [anon_sym_bit_DASHand2] = ACTIONS(944), + [anon_sym_bit_DASHxor2] = ACTIONS(944), + [anon_sym_bit_DASHor2] = ACTIONS(944), + [anon_sym_DOT_DOT2] = ACTIONS(942), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(944), + [anon_sym_DOT_DOT_LT2] = ACTIONS(944), + [anon_sym_DOT2] = ACTIONS(942), + [anon_sym_err_GT] = ACTIONS(942), + [anon_sym_out_GT] = ACTIONS(942), + [anon_sym_e_GT] = ACTIONS(942), + [anon_sym_o_GT] = ACTIONS(942), + [anon_sym_err_PLUSout_GT] = ACTIONS(942), + [anon_sym_out_PLUSerr_GT] = ACTIONS(942), + [anon_sym_o_PLUSe_GT] = ACTIONS(942), + [anon_sym_e_PLUSo_GT] = ACTIONS(942), + [anon_sym_err_GT_GT] = ACTIONS(944), + [anon_sym_out_GT_GT] = ACTIONS(944), + [anon_sym_e_GT_GT] = ACTIONS(944), + [anon_sym_o_GT_GT] = ACTIONS(944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(944), [anon_sym_POUND] = ACTIONS(245), }, - [1350] = { - [sym_comment] = STATE(1350), + [1309] = { + [sym_comment] = STATE(1309), [ts_builtin_sym_end] = ACTIONS(956), [anon_sym_EQ] = ACTIONS(954), [anon_sym_PLUS_EQ] = ACTIONS(956), @@ -206861,81 +201386,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(956), [anon_sym_POUND] = ACTIONS(245), }, - [1351] = { - [sym__expr_parenthesized_immediate] = STATE(2014), - [sym__immediate_decimal] = STATE(2015), - [sym_val_variable] = STATE(2014), - [sym_comment] = STATE(1351), - [ts_builtin_sym_end] = ACTIONS(1482), - [sym__newline] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1482), - [anon_sym_err_GT_PIPE] = ACTIONS(1482), - [anon_sym_out_GT_PIPE] = ACTIONS(1482), - [anon_sym_e_GT_PIPE] = ACTIONS(1482), - [anon_sym_o_GT_PIPE] = ACTIONS(1482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1482), - [anon_sym_LBRACK] = ACTIONS(1482), - [anon_sym_LPAREN] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(4209), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_DASH2] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(4293), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1482), - [anon_sym_DOT_DOT_LT] = ACTIONS(1482), - [aux_sym__immediate_decimal_token1] = ACTIONS(4511), - [aux_sym__immediate_decimal_token3] = ACTIONS(4513), - [aux_sym__immediate_decimal_token4] = ACTIONS(4515), - [aux_sym__immediate_decimal_token5] = ACTIONS(4517), - [anon_sym_null] = ACTIONS(1482), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [aux_sym__val_number_decimal_token1] = ACTIONS(1472), - [aux_sym__val_number_decimal_token2] = ACTIONS(1472), - [aux_sym__val_number_decimal_token3] = ACTIONS(1472), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(1482), - [aux_sym__val_number_token2] = ACTIONS(1482), - [aux_sym__val_number_token3] = ACTIONS(1482), - [aux_sym__val_number_token4] = ACTIONS(1482), - [aux_sym__val_number_token5] = ACTIONS(1482), - [aux_sym__val_number_token6] = ACTIONS(1482), - [anon_sym_0b] = ACTIONS(1472), - [anon_sym_0o] = ACTIONS(1472), - [anon_sym_0x] = ACTIONS(1472), - [sym_val_date] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym__str_single_quotes] = ACTIONS(1482), - [sym__str_back_ticks] = ACTIONS(1482), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1482), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1482), - [anon_sym_err_GT] = ACTIONS(1472), - [anon_sym_out_GT] = ACTIONS(1472), - [anon_sym_e_GT] = ACTIONS(1472), - [anon_sym_o_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT] = ACTIONS(1472), - [anon_sym_err_GT_GT] = ACTIONS(1482), - [anon_sym_out_GT_GT] = ACTIONS(1482), - [anon_sym_e_GT_GT] = ACTIONS(1482), - [anon_sym_o_GT_GT] = ACTIONS(1482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1482), - [aux_sym_unquoted_token1] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1482), + [1310] = { + [sym__expr_parenthesized_immediate] = STATE(2005), + [sym__immediate_decimal] = STATE(2006), + [sym_val_variable] = STATE(2005), + [sym_comment] = STATE(1310), + [ts_builtin_sym_end] = ACTIONS(1489), + [sym__newline] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1489), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_err_GT_PIPE] = ACTIONS(1489), + [anon_sym_out_GT_PIPE] = ACTIONS(1489), + [anon_sym_e_GT_PIPE] = ACTIONS(1489), + [anon_sym_o_GT_PIPE] = ACTIONS(1489), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1489), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1489), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1489), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1489), + [anon_sym_LBRACK] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_DOLLAR] = ACTIONS(4043), + [anon_sym_DASH_DASH] = ACTIONS(1489), + [anon_sym_DASH2] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_DOT_DOT] = ACTIONS(1479), + [anon_sym_LPAREN2] = ACTIONS(4045), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1489), + [anon_sym_DOT_DOT_LT] = ACTIONS(1489), + [aux_sym__immediate_decimal_token1] = ACTIONS(4501), + [aux_sym__immediate_decimal_token3] = ACTIONS(4503), + [aux_sym__immediate_decimal_token4] = ACTIONS(4505), + [aux_sym__immediate_decimal_token5] = ACTIONS(4507), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [aux_sym__val_number_decimal_token1] = ACTIONS(1479), + [aux_sym__val_number_decimal_token2] = ACTIONS(1479), + [aux_sym__val_number_decimal_token3] = ACTIONS(1479), + [aux_sym__val_number_decimal_token4] = ACTIONS(1479), + [aux_sym__val_number_token1] = ACTIONS(1489), + [aux_sym__val_number_token2] = ACTIONS(1489), + [aux_sym__val_number_token3] = ACTIONS(1489), + [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(1479), + [anon_sym_0o] = ACTIONS(1479), + [anon_sym_0x] = ACTIONS(1479), + [sym_val_date] = ACTIONS(1489), + [anon_sym_DQUOTE] = ACTIONS(1489), + [sym__str_single_quotes] = ACTIONS(1489), + [sym__str_back_ticks] = ACTIONS(1489), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1489), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1489), + [anon_sym_err_GT] = ACTIONS(1479), + [anon_sym_out_GT] = ACTIONS(1479), + [anon_sym_e_GT] = ACTIONS(1479), + [anon_sym_o_GT] = ACTIONS(1479), + [anon_sym_err_PLUSout_GT] = ACTIONS(1479), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1479), + [anon_sym_o_PLUSe_GT] = ACTIONS(1479), + [anon_sym_e_PLUSo_GT] = ACTIONS(1479), + [anon_sym_err_GT_GT] = ACTIONS(1489), + [anon_sym_out_GT_GT] = ACTIONS(1489), + [anon_sym_e_GT_GT] = ACTIONS(1489), + [anon_sym_o_GT_GT] = ACTIONS(1489), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1489), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1489), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1489), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1489), + [aux_sym_unquoted_token1] = ACTIONS(1479), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1489), }, - [1352] = { - [sym_comment] = STATE(1352), + [1311] = { + [sym_comment] = STATE(1311), + [ts_builtin_sym_end] = ACTIONS(948), + [anon_sym_EQ] = ACTIONS(946), + [anon_sym_PLUS_EQ] = ACTIONS(948), + [anon_sym_DASH_EQ] = ACTIONS(948), + [anon_sym_STAR_EQ] = ACTIONS(948), + [anon_sym_SLASH_EQ] = ACTIONS(948), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(948), + [sym__newline] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_PIPE] = ACTIONS(948), + [anon_sym_err_GT_PIPE] = ACTIONS(948), + [anon_sym_out_GT_PIPE] = ACTIONS(948), + [anon_sym_e_GT_PIPE] = ACTIONS(948), + [anon_sym_o_GT_PIPE] = ACTIONS(948), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(948), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(948), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(948), + [anon_sym_GT2] = ACTIONS(946), + [anon_sym_DASH2] = ACTIONS(946), + [anon_sym_in2] = ACTIONS(948), + [anon_sym_STAR2] = ACTIONS(946), + [anon_sym_QMARK2] = ACTIONS(948), + [anon_sym_and2] = ACTIONS(948), + [anon_sym_xor2] = ACTIONS(948), + [anon_sym_or2] = ACTIONS(948), + [anon_sym_not_DASHin2] = ACTIONS(948), + [anon_sym_has2] = ACTIONS(948), + [anon_sym_not_DASHhas2] = ACTIONS(948), + [anon_sym_starts_DASHwith2] = ACTIONS(948), + [anon_sym_ends_DASHwith2] = ACTIONS(948), + [anon_sym_EQ_EQ2] = ACTIONS(948), + [anon_sym_BANG_EQ2] = ACTIONS(948), + [anon_sym_LT2] = ACTIONS(946), + [anon_sym_LT_EQ2] = ACTIONS(948), + [anon_sym_GT_EQ2] = ACTIONS(948), + [anon_sym_EQ_TILDE2] = ACTIONS(948), + [anon_sym_BANG_TILDE2] = ACTIONS(948), + [anon_sym_STAR_STAR2] = ACTIONS(948), + [anon_sym_PLUS_PLUS2] = ACTIONS(946), + [anon_sym_SLASH2] = ACTIONS(946), + [anon_sym_mod2] = ACTIONS(948), + [anon_sym_SLASH_SLASH2] = ACTIONS(948), + [anon_sym_PLUS2] = ACTIONS(946), + [anon_sym_bit_DASHshl2] = ACTIONS(948), + [anon_sym_bit_DASHshr2] = ACTIONS(948), + [anon_sym_bit_DASHand2] = ACTIONS(948), + [anon_sym_bit_DASHxor2] = ACTIONS(948), + [anon_sym_bit_DASHor2] = ACTIONS(948), + [anon_sym_DOT_DOT2] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(948), + [anon_sym_DOT_DOT_LT2] = ACTIONS(948), + [anon_sym_DOT2] = ACTIONS(946), + [anon_sym_err_GT] = ACTIONS(946), + [anon_sym_out_GT] = ACTIONS(946), + [anon_sym_e_GT] = ACTIONS(946), + [anon_sym_o_GT] = ACTIONS(946), + [anon_sym_err_PLUSout_GT] = ACTIONS(946), + [anon_sym_out_PLUSerr_GT] = ACTIONS(946), + [anon_sym_o_PLUSe_GT] = ACTIONS(946), + [anon_sym_e_PLUSo_GT] = ACTIONS(946), + [anon_sym_err_GT_GT] = ACTIONS(948), + [anon_sym_out_GT_GT] = ACTIONS(948), + [anon_sym_e_GT_GT] = ACTIONS(948), + [anon_sym_o_GT_GT] = ACTIONS(948), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(948), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(948), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(948), + [anon_sym_POUND] = ACTIONS(245), + }, + [1312] = { + [sym_comment] = STATE(1312), [anon_sym_EQ] = ACTIONS(982), [anon_sym_PLUS_EQ] = ACTIONS(984), [anon_sym_DASH_EQ] = ACTIONS(984), @@ -207007,887 +201605,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), [anon_sym_POUND] = ACTIONS(245), }, - [1353] = { - [sym__expr_parenthesized_immediate] = STATE(2027), - [sym__immediate_decimal] = STATE(2028), - [sym_val_variable] = STATE(2027), - [sym_comment] = STATE(1353), - [ts_builtin_sym_end] = ACTIONS(1646), - [sym__newline] = ACTIONS(1646), - [anon_sym_SEMI] = ACTIONS(1646), - [anon_sym_PIPE] = ACTIONS(1646), - [anon_sym_err_GT_PIPE] = ACTIONS(1646), - [anon_sym_out_GT_PIPE] = ACTIONS(1646), - [anon_sym_e_GT_PIPE] = ACTIONS(1646), - [anon_sym_o_GT_PIPE] = ACTIONS(1646), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1646), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1646), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1646), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1646), - [anon_sym_LBRACK] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(1644), - [anon_sym_DOLLAR] = ACTIONS(4209), - [anon_sym_DASH_DASH] = ACTIONS(1646), - [anon_sym_DASH2] = ACTIONS(1644), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DOT_DOT] = ACTIONS(1644), - [anon_sym_LPAREN2] = ACTIONS(4293), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1646), - [anon_sym_DOT_DOT_LT] = ACTIONS(1646), - [aux_sym__immediate_decimal_token1] = ACTIONS(4511), - [aux_sym__immediate_decimal_token3] = ACTIONS(4513), - [aux_sym__immediate_decimal_token4] = ACTIONS(4515), - [aux_sym__immediate_decimal_token5] = ACTIONS(4517), - [anon_sym_null] = ACTIONS(1646), - [anon_sym_true] = ACTIONS(1646), - [anon_sym_false] = ACTIONS(1646), - [aux_sym__val_number_decimal_token1] = ACTIONS(1644), - [aux_sym__val_number_decimal_token2] = ACTIONS(1644), - [aux_sym__val_number_decimal_token3] = ACTIONS(1644), - [aux_sym__val_number_decimal_token4] = ACTIONS(1644), - [aux_sym__val_number_token1] = ACTIONS(1646), - [aux_sym__val_number_token2] = ACTIONS(1646), - [aux_sym__val_number_token3] = ACTIONS(1646), - [aux_sym__val_number_token4] = ACTIONS(1646), - [aux_sym__val_number_token5] = ACTIONS(1646), - [aux_sym__val_number_token6] = ACTIONS(1646), - [anon_sym_0b] = ACTIONS(1644), - [anon_sym_0o] = ACTIONS(1644), - [anon_sym_0x] = ACTIONS(1644), - [sym_val_date] = ACTIONS(1646), - [anon_sym_DQUOTE] = ACTIONS(1646), - [sym__str_single_quotes] = ACTIONS(1646), - [sym__str_back_ticks] = ACTIONS(1646), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1646), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1646), - [anon_sym_err_GT] = ACTIONS(1644), - [anon_sym_out_GT] = ACTIONS(1644), - [anon_sym_e_GT] = ACTIONS(1644), - [anon_sym_o_GT] = ACTIONS(1644), - [anon_sym_err_PLUSout_GT] = ACTIONS(1644), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1644), - [anon_sym_o_PLUSe_GT] = ACTIONS(1644), - [anon_sym_e_PLUSo_GT] = ACTIONS(1644), - [anon_sym_err_GT_GT] = ACTIONS(1646), - [anon_sym_out_GT_GT] = ACTIONS(1646), - [anon_sym_e_GT_GT] = ACTIONS(1646), - [anon_sym_o_GT_GT] = ACTIONS(1646), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1646), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1646), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1646), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1646), - [aux_sym_unquoted_token1] = ACTIONS(1644), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1646), - }, - [1354] = { - [sym__expr_parenthesized_immediate] = STATE(2029), - [sym__immediate_decimal] = STATE(2030), - [sym_val_variable] = STATE(2029), - [sym_comment] = STATE(1354), - [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(1575), - [anon_sym_DOLLAR] = ACTIONS(4209), - [anon_sym_DASH_DASH] = ACTIONS(1577), - [anon_sym_DASH2] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1575), - [anon_sym_LPAREN2] = ACTIONS(4293), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1577), - [anon_sym_DOT_DOT_LT] = ACTIONS(1577), - [aux_sym__immediate_decimal_token1] = ACTIONS(4511), - [aux_sym__immediate_decimal_token3] = ACTIONS(4513), - [aux_sym__immediate_decimal_token4] = ACTIONS(4515), - [aux_sym__immediate_decimal_token5] = ACTIONS(4517), - [anon_sym_null] = ACTIONS(1577), - [anon_sym_true] = ACTIONS(1577), - [anon_sym_false] = ACTIONS(1577), - [aux_sym__val_number_decimal_token1] = ACTIONS(1575), - [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(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(1575), - [anon_sym_0o] = ACTIONS(1575), - [anon_sym_0x] = ACTIONS(1575), - [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(1575), - [anon_sym_out_GT] = ACTIONS(1575), - [anon_sym_e_GT] = ACTIONS(1575), - [anon_sym_o_GT] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT] = ACTIONS(1575), - [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(1575), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1577), - }, - [1355] = { - [sym__expr_parenthesized_immediate] = STATE(2031), - [sym__immediate_decimal] = STATE(2032), - [sym_val_variable] = STATE(2031), - [sym_comment] = STATE(1355), - [ts_builtin_sym_end] = ACTIONS(1552), - [sym__newline] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_err_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_GT_PIPE] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(1552), - [anon_sym_LPAREN] = ACTIONS(1544), - [anon_sym_DOLLAR] = ACTIONS(4209), - [anon_sym_DASH_DASH] = ACTIONS(1552), - [anon_sym_DASH2] = ACTIONS(1544), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_DOT_DOT] = ACTIONS(1544), - [anon_sym_LPAREN2] = ACTIONS(4293), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1552), - [anon_sym_DOT_DOT_LT] = ACTIONS(1552), - [aux_sym__immediate_decimal_token1] = ACTIONS(4511), - [aux_sym__immediate_decimal_token3] = ACTIONS(4513), - [aux_sym__immediate_decimal_token4] = ACTIONS(4515), - [aux_sym__immediate_decimal_token5] = ACTIONS(4517), - [anon_sym_null] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1552), - [anon_sym_false] = ACTIONS(1552), - [aux_sym__val_number_decimal_token1] = ACTIONS(1544), - [aux_sym__val_number_decimal_token2] = ACTIONS(1544), - [aux_sym__val_number_decimal_token3] = ACTIONS(1544), - [aux_sym__val_number_decimal_token4] = ACTIONS(1544), - [aux_sym__val_number_token1] = ACTIONS(1552), - [aux_sym__val_number_token2] = ACTIONS(1552), - [aux_sym__val_number_token3] = ACTIONS(1552), - [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(1544), - [anon_sym_0o] = ACTIONS(1544), - [anon_sym_0x] = ACTIONS(1544), - [sym_val_date] = ACTIONS(1552), - [anon_sym_DQUOTE] = ACTIONS(1552), - [sym__str_single_quotes] = ACTIONS(1552), - [sym__str_back_ticks] = ACTIONS(1552), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1552), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1544), - [anon_sym_out_GT] = ACTIONS(1544), - [anon_sym_e_GT] = ACTIONS(1544), - [anon_sym_o_GT] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT] = ACTIONS(1544), - [anon_sym_err_GT_GT] = ACTIONS(1552), - [anon_sym_out_GT_GT] = ACTIONS(1552), - [anon_sym_e_GT_GT] = ACTIONS(1552), - [anon_sym_o_GT_GT] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1552), - [aux_sym_unquoted_token1] = ACTIONS(1544), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1552), - }, - [1356] = { - [sym_cell_path] = STATE(1557), - [sym_path] = STATE(1450), - [sym_comment] = STATE(1356), - [aux_sym_cell_path_repeat1] = STATE(1340), - [sym__newline] = ACTIONS(927), - [anon_sym_SEMI] = ACTIONS(927), - [anon_sym_PIPE] = ACTIONS(927), - [anon_sym_err_GT_PIPE] = ACTIONS(927), - [anon_sym_out_GT_PIPE] = ACTIONS(927), - [anon_sym_e_GT_PIPE] = ACTIONS(927), - [anon_sym_o_GT_PIPE] = ACTIONS(927), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(927), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(927), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(927), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(927), - [anon_sym_RPAREN] = ACTIONS(927), - [anon_sym_GT2] = ACTIONS(925), - [anon_sym_DASH2] = ACTIONS(927), - [anon_sym_in2] = ACTIONS(927), - [anon_sym_if] = ACTIONS(927), - [anon_sym_LBRACE] = ACTIONS(927), - [anon_sym_RBRACE] = ACTIONS(927), - [anon_sym_EQ_GT] = ACTIONS(927), - [anon_sym_STAR2] = ACTIONS(925), - [anon_sym_and2] = ACTIONS(927), - [anon_sym_xor2] = ACTIONS(927), - [anon_sym_or2] = ACTIONS(927), - [anon_sym_not_DASHin2] = ACTIONS(927), - [anon_sym_has2] = ACTIONS(927), - [anon_sym_not_DASHhas2] = ACTIONS(927), - [anon_sym_starts_DASHwith2] = ACTIONS(927), - [anon_sym_ends_DASHwith2] = ACTIONS(927), - [anon_sym_EQ_EQ2] = ACTIONS(927), - [anon_sym_BANG_EQ2] = ACTIONS(927), - [anon_sym_LT2] = ACTIONS(925), - [anon_sym_LT_EQ2] = ACTIONS(927), - [anon_sym_GT_EQ2] = ACTIONS(927), - [anon_sym_EQ_TILDE2] = ACTIONS(927), - [anon_sym_BANG_TILDE2] = ACTIONS(927), - [anon_sym_STAR_STAR2] = ACTIONS(927), - [anon_sym_PLUS_PLUS2] = ACTIONS(927), - [anon_sym_SLASH2] = ACTIONS(925), - [anon_sym_mod2] = ACTIONS(927), - [anon_sym_SLASH_SLASH2] = ACTIONS(927), - [anon_sym_PLUS2] = ACTIONS(925), - [anon_sym_bit_DASHshl2] = ACTIONS(927), - [anon_sym_bit_DASHshr2] = ACTIONS(927), - [anon_sym_bit_DASHand2] = ACTIONS(927), - [anon_sym_bit_DASHxor2] = ACTIONS(927), - [anon_sym_bit_DASHor2] = ACTIONS(927), - [anon_sym_DOT_DOT2] = ACTIONS(925), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(927), - [anon_sym_DOT_DOT_LT2] = ACTIONS(927), - [anon_sym_DOT2] = ACTIONS(4203), - [anon_sym_err_GT] = ACTIONS(925), - [anon_sym_out_GT] = ACTIONS(925), - [anon_sym_e_GT] = ACTIONS(925), - [anon_sym_o_GT] = ACTIONS(925), - [anon_sym_err_PLUSout_GT] = ACTIONS(925), - [anon_sym_out_PLUSerr_GT] = ACTIONS(925), - [anon_sym_o_PLUSe_GT] = ACTIONS(925), - [anon_sym_e_PLUSo_GT] = ACTIONS(925), - [anon_sym_err_GT_GT] = ACTIONS(927), - [anon_sym_out_GT_GT] = ACTIONS(927), - [anon_sym_e_GT_GT] = ACTIONS(927), - [anon_sym_o_GT_GT] = ACTIONS(927), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(927), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(927), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(927), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(927), - [anon_sym_POUND] = ACTIONS(245), - }, - [1357] = { - [sym_comment] = STATE(1357), - [ts_builtin_sym_end] = ACTIONS(964), - [anon_sym_EQ] = ACTIONS(962), - [anon_sym_PLUS_EQ] = ACTIONS(964), - [anon_sym_DASH_EQ] = ACTIONS(964), - [anon_sym_STAR_EQ] = ACTIONS(964), - [anon_sym_SLASH_EQ] = ACTIONS(964), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(964), - [sym__newline] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(964), - [anon_sym_err_GT_PIPE] = ACTIONS(964), - [anon_sym_out_GT_PIPE] = ACTIONS(964), - [anon_sym_e_GT_PIPE] = ACTIONS(964), - [anon_sym_o_GT_PIPE] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), - [anon_sym_GT2] = ACTIONS(962), - [anon_sym_DASH2] = ACTIONS(962), - [anon_sym_in2] = ACTIONS(964), - [anon_sym_STAR2] = ACTIONS(962), - [anon_sym_QMARK2] = ACTIONS(964), - [anon_sym_and2] = ACTIONS(964), - [anon_sym_xor2] = ACTIONS(964), - [anon_sym_or2] = ACTIONS(964), - [anon_sym_not_DASHin2] = ACTIONS(964), - [anon_sym_has2] = ACTIONS(964), - [anon_sym_not_DASHhas2] = ACTIONS(964), - [anon_sym_starts_DASHwith2] = ACTIONS(964), - [anon_sym_ends_DASHwith2] = ACTIONS(964), - [anon_sym_EQ_EQ2] = ACTIONS(964), - [anon_sym_BANG_EQ2] = ACTIONS(964), - [anon_sym_LT2] = ACTIONS(962), - [anon_sym_LT_EQ2] = ACTIONS(964), - [anon_sym_GT_EQ2] = ACTIONS(964), - [anon_sym_EQ_TILDE2] = ACTIONS(964), - [anon_sym_BANG_TILDE2] = ACTIONS(964), - [anon_sym_STAR_STAR2] = ACTIONS(964), - [anon_sym_PLUS_PLUS2] = ACTIONS(962), - [anon_sym_SLASH2] = ACTIONS(962), - [anon_sym_mod2] = ACTIONS(964), - [anon_sym_SLASH_SLASH2] = ACTIONS(964), - [anon_sym_PLUS2] = ACTIONS(962), - [anon_sym_bit_DASHshl2] = ACTIONS(964), - [anon_sym_bit_DASHshr2] = ACTIONS(964), - [anon_sym_bit_DASHand2] = ACTIONS(964), - [anon_sym_bit_DASHxor2] = ACTIONS(964), - [anon_sym_bit_DASHor2] = ACTIONS(964), - [anon_sym_DOT_DOT2] = ACTIONS(962), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), - [anon_sym_DOT_DOT_LT2] = ACTIONS(964), - [anon_sym_DOT2] = ACTIONS(962), - [anon_sym_err_GT] = ACTIONS(962), - [anon_sym_out_GT] = ACTIONS(962), - [anon_sym_e_GT] = ACTIONS(962), - [anon_sym_o_GT] = ACTIONS(962), - [anon_sym_err_PLUSout_GT] = ACTIONS(962), - [anon_sym_out_PLUSerr_GT] = ACTIONS(962), - [anon_sym_o_PLUSe_GT] = ACTIONS(962), - [anon_sym_e_PLUSo_GT] = ACTIONS(962), - [anon_sym_err_GT_GT] = ACTIONS(964), - [anon_sym_out_GT_GT] = ACTIONS(964), - [anon_sym_e_GT_GT] = ACTIONS(964), - [anon_sym_o_GT_GT] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), - [anon_sym_POUND] = ACTIONS(245), - }, - [1358] = { - [sym_comment] = STATE(1358), - [ts_builtin_sym_end] = ACTIONS(968), - [anon_sym_EQ] = ACTIONS(966), - [anon_sym_PLUS_EQ] = ACTIONS(968), - [anon_sym_DASH_EQ] = ACTIONS(968), - [anon_sym_STAR_EQ] = ACTIONS(968), - [anon_sym_SLASH_EQ] = ACTIONS(968), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(966), - [anon_sym_DASH2] = ACTIONS(966), - [anon_sym_in2] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(968), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_has2] = ACTIONS(968), - [anon_sym_not_DASHhas2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(966), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(966), - [anon_sym_SLASH2] = ACTIONS(966), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(966), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_DOT_DOT2] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), - [anon_sym_DOT_DOT_LT2] = ACTIONS(968), - [anon_sym_DOT2] = ACTIONS(966), - [anon_sym_err_GT] = ACTIONS(966), - [anon_sym_out_GT] = ACTIONS(966), - [anon_sym_e_GT] = ACTIONS(966), - [anon_sym_o_GT] = ACTIONS(966), - [anon_sym_err_PLUSout_GT] = ACTIONS(966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(966), - [anon_sym_o_PLUSe_GT] = ACTIONS(966), - [anon_sym_e_PLUSo_GT] = ACTIONS(966), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(245), - }, - [1359] = { - [sym_comment] = STATE(1359), - [ts_builtin_sym_end] = ACTIONS(1494), - [sym__newline] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_PIPE] = ACTIONS(1494), - [anon_sym_err_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_GT_PIPE] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_DOLLAR] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_DOT_DOT] = ACTIONS(1492), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1492), - [anon_sym_DOT_DOT_LT] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(4305), - [anon_sym_null] = ACTIONS(1494), - [anon_sym_true] = ACTIONS(1494), - [anon_sym_false] = ACTIONS(1494), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1494), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(1494), - [aux_sym__val_number_token2] = ACTIONS(1494), - [aux_sym__val_number_token3] = ACTIONS(1494), - [aux_sym__val_number_token4] = ACTIONS(1494), - [aux_sym__val_number_token5] = ACTIONS(1494), - [aux_sym__val_number_token6] = ACTIONS(1494), - [anon_sym_0b] = ACTIONS(1492), - [sym_filesize_unit] = ACTIONS(1494), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_0o] = ACTIONS(1492), - [anon_sym_0x] = ACTIONS(1492), - [sym_val_date] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym__str_single_quotes] = ACTIONS(1494), - [sym__str_back_ticks] = ACTIONS(1494), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1494), - [anon_sym_out_GT_GT] = ACTIONS(1494), - [anon_sym_e_GT_GT] = ACTIONS(1494), - [anon_sym_o_GT_GT] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1494), - [aux_sym_unquoted_token1] = ACTIONS(1492), - [aux_sym_unquoted_token2] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1494), - }, - [1360] = { - [sym_comment] = STATE(1360), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_DOT_DOT] = ACTIONS(1666), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_DOT_DOT2] = ACTIONS(1666), - [anon_sym_DOT] = ACTIONS(4519), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1666), - [anon_sym_DOT_DOT_LT] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [aux_sym__immediate_decimal_token2] = ACTIONS(4521), - [anon_sym_null] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1668), - [aux_sym__val_number_token5] = ACTIONS(1668), - [aux_sym__val_number_token6] = ACTIONS(1668), - [anon_sym_0b] = ACTIONS(1666), - [anon_sym_0o] = ACTIONS(1666), - [anon_sym_0x] = ACTIONS(1666), - [sym_val_date] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_err_GT] = ACTIONS(1666), - [anon_sym_out_GT] = ACTIONS(1666), - [anon_sym_e_GT] = ACTIONS(1666), - [anon_sym_o_GT] = ACTIONS(1666), - [anon_sym_err_PLUSout_GT] = ACTIONS(1666), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), - [anon_sym_o_PLUSe_GT] = ACTIONS(1666), - [anon_sym_e_PLUSo_GT] = ACTIONS(1666), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [aux_sym_unquoted_token1] = ACTIONS(1666), - [aux_sym_unquoted_token2] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), - }, - [1361] = { - [sym__expr_parenthesized_immediate] = STATE(1804), - [sym__immediate_decimal] = STATE(2000), - [sym_val_variable] = STATE(1804), - [sym_comment] = STATE(1361), - [sym__newline] = ACTIONS(1445), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_PIPE] = ACTIONS(1445), - [anon_sym_err_GT_PIPE] = ACTIONS(1445), - [anon_sym_out_GT_PIPE] = ACTIONS(1445), - [anon_sym_e_GT_PIPE] = ACTIONS(1445), - [anon_sym_o_GT_PIPE] = ACTIONS(1445), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1445), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1445), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1445), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1445), - [anon_sym_RPAREN] = ACTIONS(1445), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_GT2] = ACTIONS(1431), - [anon_sym_DASH2] = ACTIONS(1431), - [anon_sym_in2] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1445), - [anon_sym_RBRACE] = ACTIONS(1445), - [anon_sym_STAR2] = ACTIONS(1431), - [anon_sym_and2] = ACTIONS(1445), - [anon_sym_xor2] = ACTIONS(1445), - [anon_sym_or2] = ACTIONS(1445), - [anon_sym_not_DASHin2] = ACTIONS(1445), - [anon_sym_has2] = ACTIONS(1445), - [anon_sym_not_DASHhas2] = ACTIONS(1445), - [anon_sym_starts_DASHwith2] = ACTIONS(1445), - [anon_sym_ends_DASHwith2] = ACTIONS(1445), - [anon_sym_EQ_EQ2] = ACTIONS(1445), - [anon_sym_BANG_EQ2] = ACTIONS(1445), - [anon_sym_LT2] = ACTIONS(1431), - [anon_sym_LT_EQ2] = ACTIONS(1445), - [anon_sym_GT_EQ2] = ACTIONS(1445), - [anon_sym_EQ_TILDE2] = ACTIONS(1445), - [anon_sym_BANG_TILDE2] = ACTIONS(1445), - [anon_sym_LPAREN2] = ACTIONS(4075), - [anon_sym_STAR_STAR2] = ACTIONS(1445), - [anon_sym_PLUS_PLUS2] = ACTIONS(1445), - [anon_sym_SLASH2] = ACTIONS(1431), - [anon_sym_mod2] = ACTIONS(1445), - [anon_sym_SLASH_SLASH2] = ACTIONS(1445), - [anon_sym_PLUS2] = ACTIONS(1431), - [anon_sym_bit_DASHshl2] = ACTIONS(1445), - [anon_sym_bit_DASHshr2] = ACTIONS(1445), - [anon_sym_bit_DASHand2] = ACTIONS(1445), - [anon_sym_bit_DASHxor2] = ACTIONS(1445), - [anon_sym_bit_DASHor2] = ACTIONS(1445), - [aux_sym__immediate_decimal_token1] = ACTIONS(4486), - [aux_sym__immediate_decimal_token3] = ACTIONS(4486), - [aux_sym__immediate_decimal_token4] = ACTIONS(4081), - [aux_sym__immediate_decimal_token5] = ACTIONS(4083), - [anon_sym_err_GT] = ACTIONS(1431), - [anon_sym_out_GT] = ACTIONS(1431), - [anon_sym_e_GT] = ACTIONS(1431), - [anon_sym_o_GT] = ACTIONS(1431), - [anon_sym_err_PLUSout_GT] = ACTIONS(1431), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1431), - [anon_sym_o_PLUSe_GT] = ACTIONS(1431), - [anon_sym_e_PLUSo_GT] = ACTIONS(1431), - [anon_sym_err_GT_GT] = ACTIONS(1445), - [anon_sym_out_GT_GT] = ACTIONS(1445), - [anon_sym_e_GT_GT] = ACTIONS(1445), - [anon_sym_o_GT_GT] = ACTIONS(1445), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1445), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1445), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1445), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1445), - [anon_sym_POUND] = ACTIONS(245), - }, - [1362] = { - [sym_comment] = STATE(1362), - [ts_builtin_sym_end] = ACTIONS(1540), - [sym__newline] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1540), - [anon_sym_err_GT_PIPE] = ACTIONS(1540), - [anon_sym_out_GT_PIPE] = ACTIONS(1540), - [anon_sym_e_GT_PIPE] = ACTIONS(1540), - [anon_sym_o_GT_PIPE] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_DOLLAR] = ACTIONS(1538), - [anon_sym_DASH_DASH] = ACTIONS(1540), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_LBRACE] = ACTIONS(1540), - [anon_sym_DOT_DOT] = ACTIONS(1538), - [anon_sym_LPAREN2] = ACTIONS(1540), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [aux_sym__immediate_decimal_token2] = ACTIONS(4523), - [anon_sym_null] = ACTIONS(1540), - [anon_sym_true] = ACTIONS(1540), - [anon_sym_false] = ACTIONS(1540), - [aux_sym__val_number_decimal_token1] = ACTIONS(1538), - [aux_sym__val_number_decimal_token2] = ACTIONS(1540), - [aux_sym__val_number_decimal_token3] = ACTIONS(1540), - [aux_sym__val_number_decimal_token4] = ACTIONS(1540), - [aux_sym__val_number_token1] = ACTIONS(1540), - [aux_sym__val_number_token2] = ACTIONS(1540), - [aux_sym__val_number_token3] = ACTIONS(1540), - [aux_sym__val_number_token4] = ACTIONS(1540), - [aux_sym__val_number_token5] = ACTIONS(1540), - [aux_sym__val_number_token6] = ACTIONS(1540), - [anon_sym_0b] = ACTIONS(1538), - [sym_filesize_unit] = ACTIONS(1540), - [sym_duration_unit] = ACTIONS(1540), - [anon_sym_0o] = ACTIONS(1538), - [anon_sym_0x] = ACTIONS(1538), - [sym_val_date] = ACTIONS(1540), - [anon_sym_DQUOTE] = ACTIONS(1540), - [sym__str_single_quotes] = ACTIONS(1540), - [sym__str_back_ticks] = ACTIONS(1540), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1540), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1540), - [anon_sym_err_GT] = ACTIONS(1538), - [anon_sym_out_GT] = ACTIONS(1538), - [anon_sym_e_GT] = ACTIONS(1538), - [anon_sym_o_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT] = ACTIONS(1538), - [anon_sym_err_GT_GT] = ACTIONS(1540), - [anon_sym_out_GT_GT] = ACTIONS(1540), - [anon_sym_e_GT_GT] = ACTIONS(1540), - [anon_sym_o_GT_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1540), - [aux_sym_unquoted_token1] = ACTIONS(1538), - [aux_sym_unquoted_token2] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1540), - }, - [1363] = { - [sym_comment] = STATE(1363), - [sym__newline] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_PIPE] = ACTIONS(1494), - [anon_sym_err_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_GT_PIPE] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1494), - [anon_sym_RPAREN] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_RBRACE] = ACTIONS(1494), - [anon_sym_DOT_DOT] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1492), - [anon_sym_DOT_DOT_LT] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(4195), - [anon_sym_null] = ACTIONS(1494), - [anon_sym_true] = ACTIONS(1494), - [anon_sym_false] = ACTIONS(1494), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1494), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(1494), - [aux_sym__val_number_token2] = ACTIONS(1494), - [aux_sym__val_number_token3] = ACTIONS(1494), - [aux_sym__val_number_token4] = ACTIONS(1494), - [aux_sym__val_number_token5] = ACTIONS(1494), - [aux_sym__val_number_token6] = ACTIONS(1494), - [anon_sym_0b] = ACTIONS(1492), - [sym_filesize_unit] = ACTIONS(1494), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_0o] = ACTIONS(1492), - [anon_sym_0x] = ACTIONS(1492), - [sym_val_date] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym__str_single_quotes] = ACTIONS(1494), - [sym__str_back_ticks] = ACTIONS(1494), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1494), - [anon_sym_out_GT_GT] = ACTIONS(1494), - [anon_sym_e_GT_GT] = ACTIONS(1494), - [anon_sym_o_GT_GT] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1494), - [aux_sym_unquoted_token1] = ACTIONS(1492), - [aux_sym_unquoted_token2] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1494), - }, - [1364] = { - [sym_comment] = STATE(1364), - [sym__newline] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1540), - [anon_sym_err_GT_PIPE] = ACTIONS(1540), - [anon_sym_out_GT_PIPE] = ACTIONS(1540), - [anon_sym_e_GT_PIPE] = ACTIONS(1540), - [anon_sym_o_GT_PIPE] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_RPAREN] = ACTIONS(1540), - [anon_sym_DOLLAR] = ACTIONS(1538), - [anon_sym_DASH_DASH] = ACTIONS(1540), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_LBRACE] = ACTIONS(1540), - [anon_sym_RBRACE] = ACTIONS(1540), - [anon_sym_DOT_DOT] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [aux_sym__immediate_decimal_token2] = ACTIONS(4525), - [anon_sym_null] = ACTIONS(1540), - [anon_sym_true] = ACTIONS(1540), - [anon_sym_false] = ACTIONS(1540), - [aux_sym__val_number_decimal_token1] = ACTIONS(1538), - [aux_sym__val_number_decimal_token2] = ACTIONS(1540), - [aux_sym__val_number_decimal_token3] = ACTIONS(1540), - [aux_sym__val_number_decimal_token4] = ACTIONS(1540), - [aux_sym__val_number_token1] = ACTIONS(1540), - [aux_sym__val_number_token2] = ACTIONS(1540), - [aux_sym__val_number_token3] = ACTIONS(1540), - [aux_sym__val_number_token4] = ACTIONS(1540), - [aux_sym__val_number_token5] = ACTIONS(1540), - [aux_sym__val_number_token6] = ACTIONS(1540), - [anon_sym_0b] = ACTIONS(1538), - [sym_filesize_unit] = ACTIONS(1540), - [sym_duration_unit] = ACTIONS(1540), - [anon_sym_0o] = ACTIONS(1538), - [anon_sym_0x] = ACTIONS(1538), - [sym_val_date] = ACTIONS(1540), - [anon_sym_DQUOTE] = ACTIONS(1540), - [sym__str_single_quotes] = ACTIONS(1540), - [sym__str_back_ticks] = ACTIONS(1540), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1540), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1540), - [anon_sym_err_GT] = ACTIONS(1538), - [anon_sym_out_GT] = ACTIONS(1538), - [anon_sym_e_GT] = ACTIONS(1538), - [anon_sym_o_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT] = ACTIONS(1538), - [anon_sym_err_GT_GT] = ACTIONS(1540), - [anon_sym_out_GT_GT] = ACTIONS(1540), - [anon_sym_e_GT_GT] = ACTIONS(1540), - [anon_sym_o_GT_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1540), - [aux_sym_unquoted_token1] = ACTIONS(1538), - [aux_sym_unquoted_token2] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1540), - }, - [1365] = { - [sym__expr_parenthesized_immediate] = STATE(1804), - [sym__immediate_decimal] = STATE(2103), - [sym_val_variable] = STATE(1804), - [sym_comment] = STATE(1365), + [1313] = { + [sym__expr_parenthesized_immediate] = STATE(1773), + [sym__immediate_decimal] = STATE(1941), + [sym_val_variable] = STATE(1773), + [sym_comment] = STATE(1313), [sym__newline] = ACTIONS(1445), [anon_sym_SEMI] = ACTIONS(1445), [anon_sym_PIPE] = ACTIONS(1445), @@ -207900,7 +201622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1445), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1445), [anon_sym_RPAREN] = ACTIONS(1445), - [anon_sym_DOLLAR] = ACTIONS(3610), + [anon_sym_DOLLAR] = ACTIONS(3550), [anon_sym_GT2] = ACTIONS(1431), [anon_sym_DASH2] = ACTIONS(1431), [anon_sym_in2] = ACTIONS(1445), @@ -207921,7 +201643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ2] = ACTIONS(1445), [anon_sym_EQ_TILDE2] = ACTIONS(1445), [anon_sym_BANG_TILDE2] = ACTIONS(1445), - [anon_sym_LPAREN2] = ACTIONS(4075), + [anon_sym_LPAREN2] = ACTIONS(4027), [anon_sym_STAR_STAR2] = ACTIONS(1445), [anon_sym_PLUS_PLUS2] = ACTIONS(1445), [anon_sym_SLASH2] = ACTIONS(1431), @@ -207933,10 +201655,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1445), [anon_sym_bit_DASHxor2] = ACTIONS(1445), [anon_sym_bit_DASHor2] = ACTIONS(1445), - [aux_sym__immediate_decimal_token1] = ACTIONS(4527), - [aux_sym__immediate_decimal_token3] = ACTIONS(4527), - [aux_sym__immediate_decimal_token4] = ACTIONS(4529), - [aux_sym__immediate_decimal_token5] = ACTIONS(4531), + [aux_sym__immediate_decimal_token1] = ACTIONS(4545), + [aux_sym__immediate_decimal_token3] = ACTIONS(4545), + [aux_sym__immediate_decimal_token4] = ACTIONS(4547), + [aux_sym__immediate_decimal_token5] = ACTIONS(4549), [anon_sym_err_GT] = ACTIONS(1431), [anon_sym_out_GT] = ACTIONS(1431), [anon_sym_e_GT] = ACTIONS(1431), @@ -207956,448 +201678,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token2] = ACTIONS(1447), [anon_sym_POUND] = ACTIONS(245), }, - [1366] = { - [sym_comment] = STATE(1366), - [ts_builtin_sym_end] = ACTIONS(944), - [anon_sym_EQ] = ACTIONS(942), - [anon_sym_PLUS_EQ] = ACTIONS(944), - [anon_sym_DASH_EQ] = ACTIONS(944), - [anon_sym_STAR_EQ] = ACTIONS(944), - [anon_sym_SLASH_EQ] = ACTIONS(944), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(944), - [sym__newline] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(944), - [anon_sym_err_GT_PIPE] = ACTIONS(944), - [anon_sym_out_GT_PIPE] = ACTIONS(944), - [anon_sym_e_GT_PIPE] = ACTIONS(944), - [anon_sym_o_GT_PIPE] = ACTIONS(944), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(944), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(944), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(944), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(944), - [anon_sym_GT2] = ACTIONS(942), - [anon_sym_DASH2] = ACTIONS(942), - [anon_sym_in2] = ACTIONS(944), - [anon_sym_STAR2] = ACTIONS(942), - [anon_sym_QMARK2] = ACTIONS(4533), - [anon_sym_and2] = ACTIONS(944), - [anon_sym_xor2] = ACTIONS(944), - [anon_sym_or2] = ACTIONS(944), - [anon_sym_not_DASHin2] = ACTIONS(944), - [anon_sym_has2] = ACTIONS(944), - [anon_sym_not_DASHhas2] = ACTIONS(944), - [anon_sym_starts_DASHwith2] = ACTIONS(944), - [anon_sym_ends_DASHwith2] = ACTIONS(944), - [anon_sym_EQ_EQ2] = ACTIONS(944), - [anon_sym_BANG_EQ2] = ACTIONS(944), - [anon_sym_LT2] = ACTIONS(942), - [anon_sym_LT_EQ2] = ACTIONS(944), - [anon_sym_GT_EQ2] = ACTIONS(944), - [anon_sym_EQ_TILDE2] = ACTIONS(944), - [anon_sym_BANG_TILDE2] = ACTIONS(944), - [anon_sym_STAR_STAR2] = ACTIONS(944), - [anon_sym_PLUS_PLUS2] = ACTIONS(942), - [anon_sym_SLASH2] = ACTIONS(942), - [anon_sym_mod2] = ACTIONS(944), - [anon_sym_SLASH_SLASH2] = ACTIONS(944), - [anon_sym_PLUS2] = ACTIONS(942), - [anon_sym_bit_DASHshl2] = ACTIONS(944), - [anon_sym_bit_DASHshr2] = ACTIONS(944), - [anon_sym_bit_DASHand2] = ACTIONS(944), - [anon_sym_bit_DASHxor2] = ACTIONS(944), - [anon_sym_bit_DASHor2] = ACTIONS(944), - [anon_sym_DOT_DOT2] = ACTIONS(942), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(944), - [anon_sym_DOT_DOT_LT2] = ACTIONS(944), - [anon_sym_DOT2] = ACTIONS(942), - [anon_sym_err_GT] = ACTIONS(942), - [anon_sym_out_GT] = ACTIONS(942), - [anon_sym_e_GT] = ACTIONS(942), - [anon_sym_o_GT] = ACTIONS(942), - [anon_sym_err_PLUSout_GT] = ACTIONS(942), - [anon_sym_out_PLUSerr_GT] = ACTIONS(942), - [anon_sym_o_PLUSe_GT] = ACTIONS(942), - [anon_sym_e_PLUSo_GT] = ACTIONS(942), - [anon_sym_err_GT_GT] = ACTIONS(944), - [anon_sym_out_GT_GT] = ACTIONS(944), - [anon_sym_e_GT_GT] = ACTIONS(944), - [anon_sym_o_GT_GT] = ACTIONS(944), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(944), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(944), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(944), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(944), - [anon_sym_POUND] = ACTIONS(245), + [1314] = { + [sym_cell_path] = STATE(1487), + [sym_path] = STATE(1431), + [sym_comment] = STATE(1314), + [aux_sym_cell_path_repeat1] = STATE(1330), + [sym__newline] = ACTIONS(1670), + [anon_sym_SEMI] = ACTIONS(1670), + [anon_sym_PIPE] = ACTIONS(1670), + [anon_sym_err_GT_PIPE] = ACTIONS(1670), + [anon_sym_out_GT_PIPE] = ACTIONS(1670), + [anon_sym_e_GT_PIPE] = ACTIONS(1670), + [anon_sym_o_GT_PIPE] = ACTIONS(1670), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1670), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1670), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1670), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_RPAREN] = ACTIONS(1670), + [anon_sym_DOLLAR] = ACTIONS(1668), + [anon_sym_DASH_DASH] = ACTIONS(1670), + [anon_sym_DASH2] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(1670), + [anon_sym_RBRACE] = ACTIONS(1670), + [anon_sym_DOT_DOT] = ACTIONS(1668), + [anon_sym_DOT_DOT2] = ACTIONS(1668), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1668), + [anon_sym_DOT_DOT_LT] = ACTIONS(1668), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1670), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1670), + [anon_sym_null] = ACTIONS(1670), + [anon_sym_true] = ACTIONS(1670), + [anon_sym_false] = ACTIONS(1670), + [aux_sym__val_number_decimal_token1] = ACTIONS(1668), + [aux_sym__val_number_decimal_token2] = ACTIONS(1670), + [aux_sym__val_number_decimal_token3] = ACTIONS(1670), + [aux_sym__val_number_decimal_token4] = ACTIONS(1670), + [aux_sym__val_number_token1] = ACTIONS(1670), + [aux_sym__val_number_token2] = ACTIONS(1670), + [aux_sym__val_number_token3] = ACTIONS(1670), + [aux_sym__val_number_token4] = ACTIONS(1670), + [aux_sym__val_number_token5] = ACTIONS(1670), + [aux_sym__val_number_token6] = ACTIONS(1670), + [anon_sym_0b] = ACTIONS(1668), + [anon_sym_0o] = ACTIONS(1668), + [anon_sym_0x] = ACTIONS(1668), + [sym_val_date] = ACTIONS(1670), + [anon_sym_DQUOTE] = ACTIONS(1670), + [sym__str_single_quotes] = ACTIONS(1670), + [sym__str_back_ticks] = ACTIONS(1670), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1670), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1670), + [anon_sym_DOT2] = ACTIONS(4422), + [anon_sym_err_GT] = ACTIONS(1668), + [anon_sym_out_GT] = ACTIONS(1668), + [anon_sym_e_GT] = ACTIONS(1668), + [anon_sym_o_GT] = ACTIONS(1668), + [anon_sym_err_PLUSout_GT] = ACTIONS(1668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1668), + [anon_sym_o_PLUSe_GT] = ACTIONS(1668), + [anon_sym_e_PLUSo_GT] = ACTIONS(1668), + [anon_sym_err_GT_GT] = ACTIONS(1670), + [anon_sym_out_GT_GT] = ACTIONS(1670), + [anon_sym_e_GT_GT] = ACTIONS(1670), + [anon_sym_o_GT_GT] = ACTIONS(1670), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1670), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1670), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1670), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1670), + [aux_sym_unquoted_token1] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1670), }, - [1367] = { - [sym_comment] = STATE(1367), - [ts_builtin_sym_end] = ACTIONS(950), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_PLUS_EQ] = ACTIONS(950), - [anon_sym_DASH_EQ] = ACTIONS(950), - [anon_sym_STAR_EQ] = ACTIONS(950), - [anon_sym_SLASH_EQ] = ACTIONS(950), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(950), - [sym__newline] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_PIPE] = ACTIONS(950), - [anon_sym_err_GT_PIPE] = ACTIONS(950), - [anon_sym_out_GT_PIPE] = ACTIONS(950), - [anon_sym_e_GT_PIPE] = ACTIONS(950), - [anon_sym_o_GT_PIPE] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), - [anon_sym_GT2] = ACTIONS(948), - [anon_sym_DASH2] = ACTIONS(948), - [anon_sym_in2] = ACTIONS(950), - [anon_sym_STAR2] = ACTIONS(948), - [anon_sym_QMARK2] = ACTIONS(4535), - [anon_sym_and2] = ACTIONS(950), - [anon_sym_xor2] = ACTIONS(950), - [anon_sym_or2] = ACTIONS(950), - [anon_sym_not_DASHin2] = ACTIONS(950), - [anon_sym_has2] = ACTIONS(950), - [anon_sym_not_DASHhas2] = ACTIONS(950), - [anon_sym_starts_DASHwith2] = ACTIONS(950), - [anon_sym_ends_DASHwith2] = ACTIONS(950), - [anon_sym_EQ_EQ2] = ACTIONS(950), - [anon_sym_BANG_EQ2] = ACTIONS(950), - [anon_sym_LT2] = ACTIONS(948), - [anon_sym_LT_EQ2] = ACTIONS(950), - [anon_sym_GT_EQ2] = ACTIONS(950), - [anon_sym_EQ_TILDE2] = ACTIONS(950), - [anon_sym_BANG_TILDE2] = ACTIONS(950), - [anon_sym_STAR_STAR2] = ACTIONS(950), - [anon_sym_PLUS_PLUS2] = ACTIONS(948), - [anon_sym_SLASH2] = ACTIONS(948), - [anon_sym_mod2] = ACTIONS(950), - [anon_sym_SLASH_SLASH2] = ACTIONS(950), - [anon_sym_PLUS2] = ACTIONS(948), - [anon_sym_bit_DASHshl2] = ACTIONS(950), - [anon_sym_bit_DASHshr2] = ACTIONS(950), - [anon_sym_bit_DASHand2] = ACTIONS(950), - [anon_sym_bit_DASHxor2] = ACTIONS(950), - [anon_sym_bit_DASHor2] = ACTIONS(950), - [anon_sym_DOT_DOT2] = ACTIONS(948), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), - [anon_sym_DOT_DOT_LT2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(948), - [anon_sym_err_GT] = ACTIONS(948), - [anon_sym_out_GT] = ACTIONS(948), - [anon_sym_e_GT] = ACTIONS(948), - [anon_sym_o_GT] = ACTIONS(948), - [anon_sym_err_PLUSout_GT] = ACTIONS(948), - [anon_sym_out_PLUSerr_GT] = ACTIONS(948), - [anon_sym_o_PLUSe_GT] = ACTIONS(948), - [anon_sym_e_PLUSo_GT] = ACTIONS(948), - [anon_sym_err_GT_GT] = ACTIONS(950), - [anon_sym_out_GT_GT] = ACTIONS(950), - [anon_sym_e_GT_GT] = ACTIONS(950), - [anon_sym_o_GT_GT] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), - [anon_sym_POUND] = ACTIONS(245), + [1315] = { + [sym_comment] = STATE(1315), + [sym__newline] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_err_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_GT_PIPE] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_RPAREN] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(1501), + [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(4416), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [aux_sym__val_number_decimal_token1] = ACTIONS(1499), + [aux_sym__val_number_decimal_token2] = ACTIONS(1501), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1501), + [aux_sym__val_number_token1] = ACTIONS(1501), + [aux_sym__val_number_token2] = ACTIONS(1501), + [aux_sym__val_number_token3] = ACTIONS(1501), + [aux_sym__val_number_token4] = ACTIONS(1501), + [aux_sym__val_number_token5] = ACTIONS(1501), + [aux_sym__val_number_token6] = ACTIONS(1501), + [anon_sym_0b] = ACTIONS(1499), + [sym_filesize_unit] = ACTIONS(1501), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_0o] = ACTIONS(1499), + [anon_sym_0x] = ACTIONS(1499), + [sym_val_date] = ACTIONS(1501), + [anon_sym_DQUOTE] = ACTIONS(1501), + [sym__str_single_quotes] = ACTIONS(1501), + [sym__str_back_ticks] = ACTIONS(1501), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1501), + [anon_sym_out_GT_GT] = ACTIONS(1501), + [anon_sym_e_GT_GT] = ACTIONS(1501), + [anon_sym_o_GT_GT] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1501), + [aux_sym_unquoted_token1] = ACTIONS(1499), + [aux_sym_unquoted_token2] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1501), }, - [1368] = { - [sym__expr_parenthesized_immediate] = STATE(1824), - [sym__immediate_decimal] = STATE(2111), - [sym_val_variable] = STATE(1824), - [sym_comment] = STATE(1368), - [sym__newline] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_err_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_GT_PIPE] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_RPAREN] = ACTIONS(1468), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1466), - [anon_sym_in2] = ACTIONS(1468), - [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1468), - [anon_sym_xor2] = ACTIONS(1468), - [anon_sym_or2] = ACTIONS(1468), - [anon_sym_not_DASHin2] = ACTIONS(1468), - [anon_sym_has2] = ACTIONS(1468), - [anon_sym_not_DASHhas2] = ACTIONS(1468), - [anon_sym_starts_DASHwith2] = ACTIONS(1468), - [anon_sym_ends_DASHwith2] = ACTIONS(1468), - [anon_sym_EQ_EQ2] = ACTIONS(1468), - [anon_sym_BANG_EQ2] = ACTIONS(1468), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1468), - [anon_sym_GT_EQ2] = ACTIONS(1468), - [anon_sym_EQ_TILDE2] = ACTIONS(1468), - [anon_sym_BANG_TILDE2] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(4075), - [anon_sym_STAR_STAR2] = ACTIONS(1468), - [anon_sym_PLUS_PLUS2] = ACTIONS(1468), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1468), - [anon_sym_SLASH_SLASH2] = ACTIONS(1468), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1468), - [anon_sym_bit_DASHshr2] = ACTIONS(1468), - [anon_sym_bit_DASHand2] = ACTIONS(1468), - [anon_sym_bit_DASHxor2] = ACTIONS(1468), - [anon_sym_bit_DASHor2] = ACTIONS(1468), - [aux_sym__immediate_decimal_token1] = ACTIONS(4527), - [aux_sym__immediate_decimal_token3] = ACTIONS(4527), - [aux_sym__immediate_decimal_token4] = ACTIONS(4529), - [aux_sym__immediate_decimal_token5] = ACTIONS(4531), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1468), - [anon_sym_out_GT_GT] = ACTIONS(1468), - [anon_sym_e_GT_GT] = ACTIONS(1468), - [anon_sym_o_GT_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), - [aux_sym_unquoted_token2] = ACTIONS(1470), + [1316] = { + [sym__expr_parenthesized_immediate] = STATE(1823), + [sym__immediate_decimal] = STATE(1968), + [sym_val_variable] = STATE(1823), + [sym_comment] = STATE(1316), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_DOLLAR] = ACTIONS(3550), + [anon_sym_GT2] = ACTIONS(1473), + [anon_sym_DASH2] = ACTIONS(1473), + [anon_sym_in2] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_STAR2] = ACTIONS(1473), + [anon_sym_and2] = ACTIONS(1475), + [anon_sym_xor2] = ACTIONS(1475), + [anon_sym_or2] = ACTIONS(1475), + [anon_sym_not_DASHin2] = ACTIONS(1475), + [anon_sym_has2] = ACTIONS(1475), + [anon_sym_not_DASHhas2] = ACTIONS(1475), + [anon_sym_starts_DASHwith2] = ACTIONS(1475), + [anon_sym_ends_DASHwith2] = ACTIONS(1475), + [anon_sym_EQ_EQ2] = ACTIONS(1475), + [anon_sym_BANG_EQ2] = ACTIONS(1475), + [anon_sym_LT2] = ACTIONS(1473), + [anon_sym_LT_EQ2] = ACTIONS(1475), + [anon_sym_GT_EQ2] = ACTIONS(1475), + [anon_sym_EQ_TILDE2] = ACTIONS(1475), + [anon_sym_BANG_TILDE2] = ACTIONS(1475), + [anon_sym_LPAREN2] = ACTIONS(4027), + [anon_sym_STAR_STAR2] = ACTIONS(1475), + [anon_sym_PLUS_PLUS2] = ACTIONS(1475), + [anon_sym_SLASH2] = ACTIONS(1473), + [anon_sym_mod2] = ACTIONS(1475), + [anon_sym_SLASH_SLASH2] = ACTIONS(1475), + [anon_sym_PLUS2] = ACTIONS(1473), + [anon_sym_bit_DASHshl2] = ACTIONS(1475), + [anon_sym_bit_DASHshr2] = ACTIONS(1475), + [anon_sym_bit_DASHand2] = ACTIONS(1475), + [anon_sym_bit_DASHxor2] = ACTIONS(1475), + [anon_sym_bit_DASHor2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token1] = ACTIONS(4545), + [aux_sym__immediate_decimal_token3] = ACTIONS(4545), + [aux_sym__immediate_decimal_token4] = ACTIONS(4547), + [aux_sym__immediate_decimal_token5] = ACTIONS(4549), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token2] = ACTIONS(1477), [anon_sym_POUND] = ACTIONS(245), }, - [1369] = { - [sym__match_pattern_expression] = STATE(3193), - [sym__match_pattern_value] = STATE(3202), - [sym__match_pattern_list] = STATE(3203), - [sym__match_pattern_record] = STATE(3204), - [sym_expr_parenthesized] = STATE(2928), - [sym_val_range] = STATE(3202), - [sym__val_range] = STATE(7751), - [sym_val_nothing] = STATE(3205), - [sym_val_bool] = STATE(3126), - [sym_val_variable] = STATE(2931), - [sym_val_number] = STATE(3205), - [sym__val_number_decimal] = STATE(2762), - [sym__val_number] = STATE(3217), - [sym_val_duration] = STATE(3205), - [sym_val_filesize] = STATE(3205), - [sym_val_binary] = STATE(3205), - [sym_val_string] = STATE(3205), - [sym__raw_str] = STATE(3208), - [sym__str_double_quotes] = STATE(3208), - [sym_val_table] = STATE(3205), - [sym__unquoted_in_list] = STATE(3193), - [sym__unquoted_anonymous_prefix] = STATE(7549), - [sym_comment] = STATE(1369), - [aux_sym__match_pattern_list_repeat1] = STATE(1369), - [anon_sym_LBRACK] = ACTIONS(4537), - [anon_sym_RBRACK] = ACTIONS(4540), - [anon_sym_LPAREN] = ACTIONS(4542), - [anon_sym_DOLLAR] = ACTIONS(4545), - [anon_sym_LBRACE] = ACTIONS(4548), - [anon_sym_DOT_DOT] = ACTIONS(4551), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4554), - [anon_sym_DOT_DOT_LT] = ACTIONS(4554), - [anon_sym_null] = ACTIONS(4557), - [anon_sym_true] = ACTIONS(4560), - [anon_sym_false] = ACTIONS(4560), - [aux_sym__val_number_decimal_token1] = ACTIONS(4563), - [aux_sym__val_number_decimal_token2] = ACTIONS(4566), - [aux_sym__val_number_decimal_token3] = ACTIONS(4569), - [aux_sym__val_number_decimal_token4] = ACTIONS(4572), - [aux_sym__val_number_token1] = ACTIONS(4575), - [aux_sym__val_number_token2] = ACTIONS(4575), - [aux_sym__val_number_token3] = ACTIONS(4575), - [aux_sym__val_number_token4] = ACTIONS(4578), - [aux_sym__val_number_token5] = ACTIONS(4578), - [aux_sym__val_number_token6] = ACTIONS(4578), - [anon_sym_0b] = ACTIONS(4581), - [anon_sym_0o] = ACTIONS(4584), - [anon_sym_0x] = ACTIONS(4584), - [sym_val_date] = ACTIONS(4587), - [anon_sym_DQUOTE] = ACTIONS(4590), - [sym__str_single_quotes] = ACTIONS(4593), - [sym__str_back_ticks] = ACTIONS(4593), - [anon_sym_err_GT] = ACTIONS(4596), - [anon_sym_out_GT] = ACTIONS(4596), - [anon_sym_e_GT] = ACTIONS(4596), - [anon_sym_o_GT] = ACTIONS(4596), - [anon_sym_err_PLUSout_GT] = ACTIONS(4596), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4596), - [anon_sym_o_PLUSe_GT] = ACTIONS(4596), - [anon_sym_e_PLUSo_GT] = ACTIONS(4596), - [anon_sym_err_GT_GT] = ACTIONS(4599), - [anon_sym_out_GT_GT] = ACTIONS(4599), - [anon_sym_e_GT_GT] = ACTIONS(4599), - [anon_sym_o_GT_GT] = ACTIONS(4599), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4599), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4599), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4599), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4599), - [aux_sym__unquoted_in_list_token1] = ACTIONS(4602), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(4605), - }, - [1370] = { - [sym__expr_parenthesized_immediate] = STATE(1824), - [sym__immediate_decimal] = STATE(2080), - [sym_val_variable] = STATE(1824), - [sym_comment] = STATE(1370), - [sym__newline] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_err_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_GT_PIPE] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_RPAREN] = ACTIONS(1468), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1466), - [anon_sym_in2] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1468), - [anon_sym_xor2] = ACTIONS(1468), - [anon_sym_or2] = ACTIONS(1468), - [anon_sym_not_DASHin2] = ACTIONS(1468), - [anon_sym_has2] = ACTIONS(1468), - [anon_sym_not_DASHhas2] = ACTIONS(1468), - [anon_sym_starts_DASHwith2] = ACTIONS(1468), - [anon_sym_ends_DASHwith2] = ACTIONS(1468), - [anon_sym_EQ_EQ2] = ACTIONS(1468), - [anon_sym_BANG_EQ2] = ACTIONS(1468), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1468), - [anon_sym_GT_EQ2] = ACTIONS(1468), - [anon_sym_EQ_TILDE2] = ACTIONS(1468), - [anon_sym_BANG_TILDE2] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(4075), - [anon_sym_STAR_STAR2] = ACTIONS(1468), - [anon_sym_PLUS_PLUS2] = ACTIONS(1468), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1468), - [anon_sym_SLASH_SLASH2] = ACTIONS(1468), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1468), - [anon_sym_bit_DASHshr2] = ACTIONS(1468), - [anon_sym_bit_DASHand2] = ACTIONS(1468), - [anon_sym_bit_DASHxor2] = ACTIONS(1468), - [anon_sym_bit_DASHor2] = ACTIONS(1468), - [aux_sym__immediate_decimal_token1] = ACTIONS(4486), - [aux_sym__immediate_decimal_token3] = ACTIONS(4486), - [aux_sym__immediate_decimal_token4] = ACTIONS(4081), - [aux_sym__immediate_decimal_token5] = ACTIONS(4083), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1468), - [anon_sym_out_GT_GT] = ACTIONS(1468), - [anon_sym_e_GT_GT] = ACTIONS(1468), - [anon_sym_o_GT_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), + [1317] = { + [sym_comment] = STATE(1317), + [sym__newline] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1581), + [anon_sym_PIPE] = ACTIONS(1581), + [anon_sym_err_GT_PIPE] = ACTIONS(1581), + [anon_sym_out_GT_PIPE] = ACTIONS(1581), + [anon_sym_e_GT_PIPE] = ACTIONS(1581), + [anon_sym_o_GT_PIPE] = ACTIONS(1581), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1581), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1581), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1581), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_RPAREN] = ACTIONS(1581), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1581), + [anon_sym_DASH2] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_DOT_DOT] = ACTIONS(1579), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1579), + [anon_sym_DOT_DOT_LT] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [aux_sym__immediate_decimal_token2] = ACTIONS(4551), + [anon_sym_null] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1581), + [anon_sym_false] = ACTIONS(1581), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [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_0b] = ACTIONS(1579), + [sym_filesize_unit] = ACTIONS(1581), + [sym_duration_unit] = ACTIONS(1581), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1581), + [sym__str_single_quotes] = ACTIONS(1581), + [sym__str_back_ticks] = ACTIONS(1581), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1581), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [anon_sym_err_GT_GT] = ACTIONS(1581), + [anon_sym_out_GT_GT] = ACTIONS(1581), + [anon_sym_e_GT_GT] = ACTIONS(1581), + [anon_sym_o_GT_GT] = ACTIONS(1581), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1581), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1581), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1581), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1581), + [aux_sym_unquoted_token1] = ACTIONS(1579), + [aux_sym_unquoted_token2] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1581), }, - [1371] = { - [sym_comment] = STATE(1371), - [ts_builtin_sym_end] = ACTIONS(1494), - [sym__newline] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_PIPE] = ACTIONS(1494), - [anon_sym_err_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_GT_PIPE] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_DOT_DOT] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT] = ACTIONS(4608), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1492), - [anon_sym_DOT_DOT_LT] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(4610), - [anon_sym_null] = ACTIONS(1494), - [anon_sym_true] = ACTIONS(1494), - [anon_sym_false] = ACTIONS(1494), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1494), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(1494), - [aux_sym__val_number_token2] = ACTIONS(1494), - [aux_sym__val_number_token3] = ACTIONS(1494), - [aux_sym__val_number_token4] = ACTIONS(1494), - [aux_sym__val_number_token5] = ACTIONS(1494), - [aux_sym__val_number_token6] = ACTIONS(1494), - [anon_sym_0b] = ACTIONS(1492), - [sym_filesize_unit] = ACTIONS(1494), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_0o] = ACTIONS(1492), - [anon_sym_0x] = ACTIONS(1492), - [sym_val_date] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym__str_single_quotes] = ACTIONS(1494), - [sym__str_back_ticks] = ACTIONS(1494), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1494), - [anon_sym_out_GT_GT] = ACTIONS(1494), - [anon_sym_e_GT_GT] = ACTIONS(1494), - [anon_sym_o_GT_GT] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1494), - [aux_sym_unquoted_token1] = ACTIONS(1492), - [aux_sym_unquoted_token2] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1494), - }, - [1372] = { - [sym_path] = STATE(1497), - [sym_comment] = STATE(1372), - [aux_sym_cell_path_repeat1] = STATE(1373), + [1318] = { + [sym_path] = STATE(1374), + [sym_comment] = STATE(1318), + [aux_sym_cell_path_repeat1] = STATE(1318), [sym__newline] = ACTIONS(933), [anon_sym_SEMI] = ACTIONS(933), [anon_sym_PIPE] = ACTIONS(933), @@ -208409,43 +201985,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(933), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(933), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(933), [anon_sym_RPAREN] = ACTIONS(933), - [anon_sym_DOLLAR] = ACTIONS(931), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DASH2] = ACTIONS(931), + [anon_sym_GT2] = ACTIONS(931), + [anon_sym_DASH2] = ACTIONS(933), + [anon_sym_in2] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), [anon_sym_LBRACE] = ACTIONS(933), [anon_sym_RBRACE] = ACTIONS(933), - [anon_sym_DOT_DOT] = ACTIONS(931), + [anon_sym_EQ_GT] = ACTIONS(933), + [anon_sym_STAR2] = ACTIONS(931), + [anon_sym_and2] = ACTIONS(933), + [anon_sym_xor2] = ACTIONS(933), + [anon_sym_or2] = ACTIONS(933), + [anon_sym_not_DASHin2] = ACTIONS(933), + [anon_sym_has2] = ACTIONS(933), + [anon_sym_not_DASHhas2] = ACTIONS(933), + [anon_sym_starts_DASHwith2] = ACTIONS(933), + [anon_sym_ends_DASHwith2] = ACTIONS(933), + [anon_sym_EQ_EQ2] = ACTIONS(933), + [anon_sym_BANG_EQ2] = ACTIONS(933), + [anon_sym_LT2] = ACTIONS(931), + [anon_sym_LT_EQ2] = ACTIONS(933), + [anon_sym_GT_EQ2] = ACTIONS(933), + [anon_sym_EQ_TILDE2] = ACTIONS(933), + [anon_sym_BANG_TILDE2] = ACTIONS(933), + [anon_sym_STAR_STAR2] = ACTIONS(933), + [anon_sym_PLUS_PLUS2] = ACTIONS(933), + [anon_sym_SLASH2] = ACTIONS(931), + [anon_sym_mod2] = ACTIONS(933), + [anon_sym_SLASH_SLASH2] = ACTIONS(933), + [anon_sym_PLUS2] = ACTIONS(931), + [anon_sym_bit_DASHshl2] = ACTIONS(933), + [anon_sym_bit_DASHshr2] = ACTIONS(933), + [anon_sym_bit_DASHand2] = ACTIONS(933), + [anon_sym_bit_DASHxor2] = ACTIONS(933), + [anon_sym_bit_DASHor2] = ACTIONS(933), [anon_sym_DOT_DOT2] = ACTIONS(931), - [anon_sym_DOT_DOT_EQ] = ACTIONS(931), - [anon_sym_DOT_DOT_LT] = ACTIONS(931), [anon_sym_DOT_DOT_EQ2] = ACTIONS(933), [anon_sym_DOT_DOT_LT2] = ACTIONS(933), - [anon_sym_null] = ACTIONS(933), - [anon_sym_true] = ACTIONS(933), - [anon_sym_false] = ACTIONS(933), - [aux_sym__val_number_decimal_token1] = ACTIONS(931), - [aux_sym__val_number_decimal_token2] = ACTIONS(933), - [aux_sym__val_number_decimal_token3] = ACTIONS(933), - [aux_sym__val_number_decimal_token4] = ACTIONS(933), - [aux_sym__val_number_token1] = ACTIONS(933), - [aux_sym__val_number_token2] = ACTIONS(933), - [aux_sym__val_number_token3] = ACTIONS(933), - [aux_sym__val_number_token4] = ACTIONS(933), - [aux_sym__val_number_token5] = ACTIONS(933), - [aux_sym__val_number_token6] = ACTIONS(933), - [anon_sym_0b] = ACTIONS(931), - [anon_sym_0o] = ACTIONS(931), - [anon_sym_0x] = ACTIONS(931), - [sym_val_date] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym__str_single_quotes] = ACTIONS(933), - [sym__str_back_ticks] = ACTIONS(933), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(933), - [anon_sym_DOT2] = ACTIONS(4484), + [anon_sym_COLON2] = ACTIONS(933), + [anon_sym_DOT2] = ACTIONS(4553), [anon_sym_err_GT] = ACTIONS(931), [anon_sym_out_GT] = ACTIONS(931), [anon_sym_e_GT] = ACTIONS(931), @@ -208462,588 +202041,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(933), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(933), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(933), - [aux_sym_unquoted_token1] = ACTIONS(931), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(933), - }, - [1373] = { - [sym_path] = STATE(1497), - [sym_comment] = STATE(1373), - [aux_sym_cell_path_repeat1] = STATE(1373), - [sym__newline] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(937), - [anon_sym_err_GT_PIPE] = ACTIONS(937), - [anon_sym_out_GT_PIPE] = ACTIONS(937), - [anon_sym_e_GT_PIPE] = ACTIONS(937), - [anon_sym_o_GT_PIPE] = ACTIONS(937), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_RPAREN] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(935), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_DASH2] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_DOT_DOT] = ACTIONS(935), - [anon_sym_DOT_DOT2] = ACTIONS(935), - [anon_sym_DOT_DOT_EQ] = ACTIONS(935), - [anon_sym_DOT_DOT_LT] = ACTIONS(935), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), - [anon_sym_DOT_DOT_LT2] = ACTIONS(937), - [anon_sym_null] = ACTIONS(937), - [anon_sym_true] = ACTIONS(937), - [anon_sym_false] = ACTIONS(937), - [aux_sym__val_number_decimal_token1] = ACTIONS(935), - [aux_sym__val_number_decimal_token2] = ACTIONS(937), - [aux_sym__val_number_decimal_token3] = ACTIONS(937), - [aux_sym__val_number_decimal_token4] = ACTIONS(937), - [aux_sym__val_number_token1] = ACTIONS(937), - [aux_sym__val_number_token2] = ACTIONS(937), - [aux_sym__val_number_token3] = ACTIONS(937), - [aux_sym__val_number_token4] = ACTIONS(937), - [aux_sym__val_number_token5] = ACTIONS(937), - [aux_sym__val_number_token6] = ACTIONS(937), - [anon_sym_0b] = ACTIONS(935), - [anon_sym_0o] = ACTIONS(935), - [anon_sym_0x] = ACTIONS(935), - [sym_val_date] = ACTIONS(937), - [anon_sym_DQUOTE] = ACTIONS(937), - [sym__str_single_quotes] = ACTIONS(937), - [sym__str_back_ticks] = ACTIONS(937), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(937), - [anon_sym_DOT2] = ACTIONS(4612), - [anon_sym_err_GT] = ACTIONS(935), - [anon_sym_out_GT] = ACTIONS(935), - [anon_sym_e_GT] = ACTIONS(935), - [anon_sym_o_GT] = ACTIONS(935), - [anon_sym_err_PLUSout_GT] = ACTIONS(935), - [anon_sym_out_PLUSerr_GT] = ACTIONS(935), - [anon_sym_o_PLUSe_GT] = ACTIONS(935), - [anon_sym_e_PLUSo_GT] = ACTIONS(935), - [anon_sym_err_GT_GT] = ACTIONS(937), - [anon_sym_out_GT_GT] = ACTIONS(937), - [anon_sym_e_GT_GT] = ACTIONS(937), - [anon_sym_o_GT_GT] = ACTIONS(937), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), - [aux_sym_unquoted_token1] = ACTIONS(935), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(937), - }, - [1374] = { - [sym__expr_parenthesized_immediate] = STATE(2493), - [sym__immediate_decimal] = STATE(2260), - [sym_val_variable] = STATE(2493), - [sym_comment] = STATE(1374), - [ts_builtin_sym_end] = ACTIONS(1445), - [sym__newline] = ACTIONS(1445), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_PIPE] = ACTIONS(1445), - [anon_sym_err_GT_PIPE] = ACTIONS(1445), - [anon_sym_out_GT_PIPE] = ACTIONS(1445), - [anon_sym_e_GT_PIPE] = ACTIONS(1445), - [anon_sym_o_GT_PIPE] = ACTIONS(1445), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1445), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1445), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1445), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1445), - [anon_sym_DOLLAR] = ACTIONS(4499), - [anon_sym_GT2] = ACTIONS(1431), - [anon_sym_DASH2] = ACTIONS(1431), - [anon_sym_in2] = ACTIONS(1445), - [anon_sym_STAR2] = ACTIONS(1431), - [anon_sym_and2] = ACTIONS(1445), - [anon_sym_xor2] = ACTIONS(1445), - [anon_sym_or2] = ACTIONS(1445), - [anon_sym_not_DASHin2] = ACTIONS(1445), - [anon_sym_has2] = ACTIONS(1445), - [anon_sym_not_DASHhas2] = ACTIONS(1445), - [anon_sym_starts_DASHwith2] = ACTIONS(1445), - [anon_sym_ends_DASHwith2] = ACTIONS(1445), - [anon_sym_EQ_EQ2] = ACTIONS(1445), - [anon_sym_BANG_EQ2] = ACTIONS(1445), - [anon_sym_LT2] = ACTIONS(1431), - [anon_sym_LT_EQ2] = ACTIONS(1445), - [anon_sym_GT_EQ2] = ACTIONS(1445), - [anon_sym_EQ_TILDE2] = ACTIONS(1445), - [anon_sym_BANG_TILDE2] = ACTIONS(1445), - [anon_sym_LPAREN2] = ACTIONS(4501), - [anon_sym_STAR_STAR2] = ACTIONS(1445), - [anon_sym_PLUS_PLUS2] = ACTIONS(1445), - [anon_sym_SLASH2] = ACTIONS(1431), - [anon_sym_mod2] = ACTIONS(1445), - [anon_sym_SLASH_SLASH2] = ACTIONS(1445), - [anon_sym_PLUS2] = ACTIONS(1431), - [anon_sym_bit_DASHshl2] = ACTIONS(1445), - [anon_sym_bit_DASHshr2] = ACTIONS(1445), - [anon_sym_bit_DASHand2] = ACTIONS(1445), - [anon_sym_bit_DASHxor2] = ACTIONS(1445), - [anon_sym_bit_DASHor2] = ACTIONS(1445), - [aux_sym__immediate_decimal_token1] = ACTIONS(4615), - [aux_sym__immediate_decimal_token3] = ACTIONS(4615), - [aux_sym__immediate_decimal_token4] = ACTIONS(4617), - [aux_sym__immediate_decimal_token5] = ACTIONS(4619), - [anon_sym_err_GT] = ACTIONS(1431), - [anon_sym_out_GT] = ACTIONS(1431), - [anon_sym_e_GT] = ACTIONS(1431), - [anon_sym_o_GT] = ACTIONS(1431), - [anon_sym_err_PLUSout_GT] = ACTIONS(1431), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1431), - [anon_sym_o_PLUSe_GT] = ACTIONS(1431), - [anon_sym_e_PLUSo_GT] = ACTIONS(1431), - [anon_sym_err_GT_GT] = ACTIONS(1445), - [anon_sym_out_GT_GT] = ACTIONS(1445), - [anon_sym_e_GT_GT] = ACTIONS(1445), - [anon_sym_o_GT_GT] = ACTIONS(1445), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1445), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1445), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1445), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1445), - [aux_sym_unquoted_token2] = ACTIONS(1447), - [anon_sym_POUND] = ACTIONS(245), - }, - [1375] = { - [sym_comment] = STATE(1375), - [ts_builtin_sym_end] = ACTIONS(1540), - [sym__newline] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1540), - [anon_sym_err_GT_PIPE] = ACTIONS(1540), - [anon_sym_out_GT_PIPE] = ACTIONS(1540), - [anon_sym_e_GT_PIPE] = ACTIONS(1540), - [anon_sym_o_GT_PIPE] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_DOLLAR] = ACTIONS(1538), - [anon_sym_DASH_DASH] = ACTIONS(1540), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_LBRACE] = ACTIONS(1540), - [anon_sym_DOT_DOT] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [aux_sym__immediate_decimal_token2] = ACTIONS(4621), - [anon_sym_null] = ACTIONS(1540), - [anon_sym_true] = ACTIONS(1540), - [anon_sym_false] = ACTIONS(1540), - [aux_sym__val_number_decimal_token1] = ACTIONS(1538), - [aux_sym__val_number_decimal_token2] = ACTIONS(1540), - [aux_sym__val_number_decimal_token3] = ACTIONS(1540), - [aux_sym__val_number_decimal_token4] = ACTIONS(1540), - [aux_sym__val_number_token1] = ACTIONS(1540), - [aux_sym__val_number_token2] = ACTIONS(1540), - [aux_sym__val_number_token3] = ACTIONS(1540), - [aux_sym__val_number_token4] = ACTIONS(1540), - [aux_sym__val_number_token5] = ACTIONS(1540), - [aux_sym__val_number_token6] = ACTIONS(1540), - [anon_sym_0b] = ACTIONS(1538), - [sym_filesize_unit] = ACTIONS(1540), - [sym_duration_unit] = ACTIONS(1540), - [anon_sym_0o] = ACTIONS(1538), - [anon_sym_0x] = ACTIONS(1538), - [sym_val_date] = ACTIONS(1540), - [anon_sym_DQUOTE] = ACTIONS(1540), - [sym__str_single_quotes] = ACTIONS(1540), - [sym__str_back_ticks] = ACTIONS(1540), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1540), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1540), - [anon_sym_err_GT] = ACTIONS(1538), - [anon_sym_out_GT] = ACTIONS(1538), - [anon_sym_e_GT] = ACTIONS(1538), - [anon_sym_o_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT] = ACTIONS(1538), - [anon_sym_err_GT_GT] = ACTIONS(1540), - [anon_sym_out_GT_GT] = ACTIONS(1540), - [anon_sym_e_GT_GT] = ACTIONS(1540), - [anon_sym_o_GT_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1540), - [aux_sym_unquoted_token1] = ACTIONS(1538), - [aux_sym_unquoted_token2] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1540), - }, - [1376] = { - [sym_comment] = STATE(1376), - [sym__newline] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_PIPE] = ACTIONS(1494), - [anon_sym_err_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_GT_PIPE] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1494), - [anon_sym_RPAREN] = ACTIONS(1494), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1494), - [anon_sym_in2] = ACTIONS(1494), - [anon_sym_RBRACE] = ACTIONS(1494), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1494), - [anon_sym_xor2] = ACTIONS(1494), - [anon_sym_or2] = ACTIONS(1494), - [anon_sym_not_DASHin2] = ACTIONS(1494), - [anon_sym_has2] = ACTIONS(1494), - [anon_sym_not_DASHhas2] = ACTIONS(1494), - [anon_sym_starts_DASHwith2] = ACTIONS(1494), - [anon_sym_ends_DASHwith2] = ACTIONS(1494), - [anon_sym_EQ_EQ2] = ACTIONS(1494), - [anon_sym_BANG_EQ2] = ACTIONS(1494), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1494), - [anon_sym_GT_EQ2] = ACTIONS(1494), - [anon_sym_EQ_TILDE2] = ACTIONS(1494), - [anon_sym_BANG_TILDE2] = ACTIONS(1494), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_STAR_STAR2] = ACTIONS(1494), - [anon_sym_PLUS_PLUS2] = ACTIONS(1494), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1494), - [anon_sym_SLASH_SLASH2] = ACTIONS(1494), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1494), - [anon_sym_bit_DASHshr2] = ACTIONS(1494), - [anon_sym_bit_DASHand2] = ACTIONS(1494), - [anon_sym_bit_DASHxor2] = ACTIONS(1494), - [anon_sym_bit_DASHor2] = ACTIONS(1494), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT] = ACTIONS(4623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(4625), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1494), - [anon_sym_out_GT_GT] = ACTIONS(1494), - [anon_sym_e_GT_GT] = ACTIONS(1494), - [anon_sym_o_GT_GT] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1494), - [aux_sym_unquoted_token2] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(245), - }, - [1377] = { - [sym__match_pattern] = STATE(7380), - [sym__match_pattern_expression] = STATE(7169), - [sym__match_pattern_value] = STATE(7170), - [sym__match_pattern_list] = STATE(7173), - [sym__match_pattern_record] = STATE(7174), - [sym_expr_parenthesized] = STATE(5946), - [sym_val_range] = STATE(7170), - [sym__val_range] = STATE(7723), - [sym_val_nothing] = STATE(7176), - [sym_val_bool] = STATE(7362), - [sym_val_variable] = STATE(5947), - [sym_val_number] = STATE(7176), - [sym__val_number_decimal] = STATE(5610), - [sym__val_number] = STATE(1591), - [sym_val_duration] = STATE(7176), - [sym_val_filesize] = STATE(7176), - [sym_val_binary] = STATE(7176), - [sym_val_string] = STATE(7176), - [sym__raw_str] = STATE(1383), - [sym__str_double_quotes] = STATE(1383), - [sym_val_table] = STATE(7176), - [sym_unquoted] = STATE(7181), - [sym__unquoted_anonymous_prefix] = STATE(7727), - [sym_comment] = STATE(1377), - [anon_sym_LBRACK] = ACTIONS(3608), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_DOLLAR] = ACTIONS(3610), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym_DOT_DOT] = ACTIONS(4627), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4629), - [anon_sym_DOT_DOT_LT] = ACTIONS(4629), - [anon_sym_null] = ACTIONS(4631), - [anon_sym_true] = ACTIONS(4633), - [anon_sym_false] = ACTIONS(4633), - [aux_sym__val_number_decimal_token1] = ACTIONS(4635), - [aux_sym__val_number_decimal_token2] = ACTIONS(4637), - [aux_sym__val_number_decimal_token3] = ACTIONS(4639), - [aux_sym__val_number_decimal_token4] = ACTIONS(4641), - [aux_sym__val_number_token1] = ACTIONS(223), - [aux_sym__val_number_token2] = ACTIONS(223), - [aux_sym__val_number_token3] = ACTIONS(223), - [aux_sym__val_number_token4] = ACTIONS(4643), - [aux_sym__val_number_token5] = ACTIONS(4643), - [aux_sym__val_number_token6] = ACTIONS(4643), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(4645), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_err_GT] = ACTIONS(2728), - [anon_sym_out_GT] = ACTIONS(2728), - [anon_sym_e_GT] = ACTIONS(2728), - [anon_sym_o_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT] = ACTIONS(2728), - [anon_sym_err_GT_GT] = ACTIONS(2730), - [anon_sym_out_GT_GT] = ACTIONS(2730), - [anon_sym_e_GT_GT] = ACTIONS(2730), - [anon_sym_o_GT_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2730), - [aux_sym_unquoted_token1] = ACTIONS(3570), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(247), }, - [1378] = { - [sym__expr_parenthesized_immediate] = STATE(2503), - [sym__immediate_decimal] = STATE(2223), - [sym_val_variable] = STATE(2503), - [sym_comment] = STATE(1378), - [ts_builtin_sym_end] = ACTIONS(1468), - [sym__newline] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_err_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_GT_PIPE] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_DOLLAR] = ACTIONS(4499), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1466), - [anon_sym_in2] = ACTIONS(1468), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1468), - [anon_sym_xor2] = ACTIONS(1468), - [anon_sym_or2] = ACTIONS(1468), - [anon_sym_not_DASHin2] = ACTIONS(1468), - [anon_sym_has2] = ACTIONS(1468), - [anon_sym_not_DASHhas2] = ACTIONS(1468), - [anon_sym_starts_DASHwith2] = ACTIONS(1468), - [anon_sym_ends_DASHwith2] = ACTIONS(1468), - [anon_sym_EQ_EQ2] = ACTIONS(1468), - [anon_sym_BANG_EQ2] = ACTIONS(1468), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1468), - [anon_sym_GT_EQ2] = ACTIONS(1468), - [anon_sym_EQ_TILDE2] = ACTIONS(1468), - [anon_sym_BANG_TILDE2] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(4501), - [anon_sym_STAR_STAR2] = ACTIONS(1468), - [anon_sym_PLUS_PLUS2] = ACTIONS(1468), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1468), - [anon_sym_SLASH_SLASH2] = ACTIONS(1468), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1468), - [anon_sym_bit_DASHshr2] = ACTIONS(1468), - [anon_sym_bit_DASHand2] = ACTIONS(1468), - [anon_sym_bit_DASHxor2] = ACTIONS(1468), - [anon_sym_bit_DASHor2] = ACTIONS(1468), - [aux_sym__immediate_decimal_token1] = ACTIONS(4615), - [aux_sym__immediate_decimal_token3] = ACTIONS(4615), - [aux_sym__immediate_decimal_token4] = ACTIONS(4617), - [aux_sym__immediate_decimal_token5] = ACTIONS(4619), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1468), - [anon_sym_out_GT_GT] = ACTIONS(1468), - [anon_sym_e_GT_GT] = ACTIONS(1468), - [anon_sym_o_GT_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), - [aux_sym_unquoted_token2] = ACTIONS(1470), + [1319] = { + [sym_comment] = STATE(1319), + [sym__newline] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_err_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_GT_PIPE] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1493), + [anon_sym_RPAREN] = ACTIONS(1493), + [anon_sym_GT2] = ACTIONS(1491), + [anon_sym_DASH2] = ACTIONS(1493), + [anon_sym_in2] = ACTIONS(1493), + [anon_sym_RBRACE] = ACTIONS(1493), + [anon_sym_STAR2] = ACTIONS(1491), + [anon_sym_and2] = ACTIONS(1493), + [anon_sym_xor2] = ACTIONS(1493), + [anon_sym_or2] = ACTIONS(1493), + [anon_sym_not_DASHin2] = ACTIONS(1493), + [anon_sym_has2] = ACTIONS(1493), + [anon_sym_not_DASHhas2] = ACTIONS(1493), + [anon_sym_starts_DASHwith2] = ACTIONS(1493), + [anon_sym_ends_DASHwith2] = ACTIONS(1493), + [anon_sym_EQ_EQ2] = ACTIONS(1493), + [anon_sym_BANG_EQ2] = ACTIONS(1493), + [anon_sym_LT2] = ACTIONS(1491), + [anon_sym_LT_EQ2] = ACTIONS(1493), + [anon_sym_GT_EQ2] = ACTIONS(1493), + [anon_sym_EQ_TILDE2] = ACTIONS(1493), + [anon_sym_BANG_TILDE2] = ACTIONS(1493), + [anon_sym_LPAREN2] = ACTIONS(1493), + [anon_sym_STAR_STAR2] = ACTIONS(1493), + [anon_sym_PLUS_PLUS2] = ACTIONS(1493), + [anon_sym_SLASH2] = ACTIONS(1491), + [anon_sym_mod2] = ACTIONS(1493), + [anon_sym_SLASH_SLASH2] = ACTIONS(1493), + [anon_sym_PLUS2] = ACTIONS(1491), + [anon_sym_bit_DASHshl2] = ACTIONS(1493), + [anon_sym_bit_DASHshr2] = ACTIONS(1493), + [anon_sym_bit_DASHand2] = ACTIONS(1493), + [anon_sym_bit_DASHxor2] = ACTIONS(1493), + [anon_sym_bit_DASHor2] = ACTIONS(1493), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [aux_sym__immediate_decimal_token1] = ACTIONS(4556), + [aux_sym__immediate_decimal_token2] = ACTIONS(4558), + [sym_filesize_unit] = ACTIONS(1491), + [sym_duration_unit] = ACTIONS(1493), + [anon_sym_err_GT] = ACTIONS(1491), + [anon_sym_out_GT] = ACTIONS(1491), + [anon_sym_e_GT] = ACTIONS(1491), + [anon_sym_o_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT] = ACTIONS(1491), + [anon_sym_err_GT_GT] = ACTIONS(1493), + [anon_sym_out_GT_GT] = ACTIONS(1493), + [anon_sym_e_GT_GT] = ACTIONS(1493), + [anon_sym_o_GT_GT] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1493), + [aux_sym_unquoted_token2] = ACTIONS(1491), [anon_sym_POUND] = ACTIONS(245), }, - [1379] = { - [sym_comment] = STATE(1379), - [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(1719), - [anon_sym_RPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_DASH_DASH] = ACTIONS(1721), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1719), - [anon_sym_LPAREN2] = ACTIONS(1721), - [anon_sym_DOT_DOT2] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1719), - [anon_sym_DOT_DOT_LT] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1721), - [aux_sym__immediate_decimal_token2] = ACTIONS(4647), - [anon_sym_null] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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(1719), - [anon_sym_0o] = ACTIONS(1719), - [anon_sym_0x] = ACTIONS(1719), - [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(1719), - [anon_sym_out_GT] = ACTIONS(1719), - [anon_sym_e_GT] = ACTIONS(1719), - [anon_sym_o_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT] = ACTIONS(1719), - [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(1719), - [aux_sym_unquoted_token2] = ACTIONS(1719), + [1320] = { + [sym_comment] = STATE(1320), + [ts_builtin_sym_end] = ACTIONS(976), + [anon_sym_EQ] = ACTIONS(974), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(976), + [sym__newline] = ACTIONS(976), + [anon_sym_SEMI] = ACTIONS(976), + [anon_sym_PIPE] = ACTIONS(976), + [anon_sym_err_GT_PIPE] = ACTIONS(976), + [anon_sym_out_GT_PIPE] = ACTIONS(976), + [anon_sym_e_GT_PIPE] = ACTIONS(976), + [anon_sym_o_GT_PIPE] = ACTIONS(976), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(976), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(976), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(974), + [anon_sym_DASH2] = ACTIONS(974), + [anon_sym_in2] = ACTIONS(976), + [anon_sym_STAR2] = ACTIONS(974), + [anon_sym_and2] = ACTIONS(976), + [anon_sym_xor2] = ACTIONS(976), + [anon_sym_or2] = ACTIONS(976), + [anon_sym_not_DASHin2] = ACTIONS(976), + [anon_sym_has2] = ACTIONS(976), + [anon_sym_not_DASHhas2] = ACTIONS(976), + [anon_sym_starts_DASHwith2] = ACTIONS(976), + [anon_sym_ends_DASHwith2] = ACTIONS(976), + [anon_sym_EQ_EQ2] = ACTIONS(976), + [anon_sym_BANG_EQ2] = ACTIONS(976), + [anon_sym_LT2] = ACTIONS(974), + [anon_sym_LT_EQ2] = ACTIONS(976), + [anon_sym_GT_EQ2] = ACTIONS(976), + [anon_sym_EQ_TILDE2] = ACTIONS(976), + [anon_sym_BANG_TILDE2] = ACTIONS(976), + [anon_sym_STAR_STAR2] = ACTIONS(976), + [anon_sym_PLUS_PLUS2] = ACTIONS(974), + [anon_sym_SLASH2] = ACTIONS(974), + [anon_sym_mod2] = ACTIONS(976), + [anon_sym_SLASH_SLASH2] = ACTIONS(976), + [anon_sym_PLUS2] = ACTIONS(974), + [anon_sym_bit_DASHshl2] = ACTIONS(976), + [anon_sym_bit_DASHshr2] = ACTIONS(976), + [anon_sym_bit_DASHand2] = ACTIONS(976), + [anon_sym_bit_DASHxor2] = ACTIONS(976), + [anon_sym_bit_DASHor2] = ACTIONS(976), + [anon_sym_DOT_DOT2] = ACTIONS(974), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(976), + [anon_sym_DOT_DOT_LT2] = ACTIONS(976), + [anon_sym_DOT2] = ACTIONS(974), + [anon_sym_err_GT] = ACTIONS(974), + [anon_sym_out_GT] = ACTIONS(974), + [anon_sym_e_GT] = ACTIONS(974), + [anon_sym_o_GT] = ACTIONS(974), + [anon_sym_err_PLUSout_GT] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT] = ACTIONS(974), + [anon_sym_o_PLUSe_GT] = ACTIONS(974), + [anon_sym_e_PLUSo_GT] = ACTIONS(974), + [anon_sym_err_GT_GT] = ACTIONS(976), + [anon_sym_out_GT_GT] = ACTIONS(976), + [anon_sym_e_GT_GT] = ACTIONS(976), + [anon_sym_o_GT_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(976), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1721), - }, - [1380] = { - [sym_comment] = STATE(1380), - [ts_builtin_sym_end] = ACTIONS(1668), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_DOT_DOT] = ACTIONS(1666), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_DOT_DOT2] = ACTIONS(1666), - [anon_sym_DOT] = ACTIONS(4649), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1666), - [anon_sym_DOT_DOT_LT] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [aux_sym__immediate_decimal_token2] = ACTIONS(4651), - [anon_sym_null] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1668), - [aux_sym__val_number_token5] = ACTIONS(1668), - [aux_sym__val_number_token6] = ACTIONS(1668), - [anon_sym_0b] = ACTIONS(1666), - [anon_sym_0o] = ACTIONS(1666), - [anon_sym_0x] = ACTIONS(1666), - [sym_val_date] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_err_GT] = ACTIONS(1666), - [anon_sym_out_GT] = ACTIONS(1666), - [anon_sym_e_GT] = ACTIONS(1666), - [anon_sym_o_GT] = ACTIONS(1666), - [anon_sym_err_PLUSout_GT] = ACTIONS(1666), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), - [anon_sym_o_PLUSe_GT] = ACTIONS(1666), - [anon_sym_e_PLUSo_GT] = ACTIONS(1666), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [aux_sym_unquoted_token1] = ACTIONS(1666), - [aux_sym_unquoted_token2] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), }, - [1381] = { - [sym_comment] = STATE(1381), + [1321] = { + [sym_comment] = STATE(1321), [ts_builtin_sym_end] = ACTIONS(972), [anon_sym_EQ] = ACTIONS(970), [anon_sym_PLUS_EQ] = ACTIONS(972), @@ -209114,80 +202259,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(972), [anon_sym_POUND] = ACTIONS(245), }, - [1382] = { - [sym_cell_path] = STATE(1654), - [sym_path] = STATE(1582), - [sym_comment] = STATE(1382), - [aux_sym_cell_path_repeat1] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), - [anon_sym_DOT_DOT_LT] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [anon_sym_null] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1713), - [aux_sym__val_number_token5] = ACTIONS(1713), - [aux_sym__val_number_token6] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_DOT2] = ACTIONS(4653), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1713), + [1322] = { + [sym_comment] = STATE(1322), + [ts_builtin_sym_end] = ACTIONS(1493), + [sym__newline] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_err_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_GT_PIPE] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_DOLLAR] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_DOT_DOT] = ACTIONS(1491), + [anon_sym_LPAREN2] = ACTIONS(1493), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1491), + [anon_sym_DOT_DOT_LT] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [aux_sym__val_number_decimal_token1] = ACTIONS(1491), + [aux_sym__val_number_decimal_token2] = ACTIONS(1493), + [aux_sym__val_number_decimal_token3] = ACTIONS(1493), + [aux_sym__val_number_decimal_token4] = ACTIONS(1493), + [aux_sym__val_number_token1] = ACTIONS(1493), + [aux_sym__val_number_token2] = ACTIONS(1493), + [aux_sym__val_number_token3] = ACTIONS(1493), + [aux_sym__val_number_token4] = ACTIONS(1493), + [aux_sym__val_number_token5] = ACTIONS(1493), + [aux_sym__val_number_token6] = ACTIONS(1493), + [anon_sym_0b] = ACTIONS(1491), + [sym_filesize_unit] = ACTIONS(1493), + [sym_duration_unit] = ACTIONS(1493), + [anon_sym_0o] = ACTIONS(1491), + [anon_sym_0x] = ACTIONS(1491), + [sym_val_date] = ACTIONS(1493), + [anon_sym_DQUOTE] = ACTIONS(1493), + [sym__str_single_quotes] = ACTIONS(1493), + [sym__str_back_ticks] = ACTIONS(1493), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1493), + [anon_sym_err_GT] = ACTIONS(1491), + [anon_sym_out_GT] = ACTIONS(1491), + [anon_sym_e_GT] = ACTIONS(1491), + [anon_sym_o_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT] = ACTIONS(1491), + [anon_sym_err_GT_GT] = ACTIONS(1493), + [anon_sym_out_GT_GT] = ACTIONS(1493), + [anon_sym_e_GT_GT] = ACTIONS(1493), + [anon_sym_o_GT_GT] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1493), + [aux_sym_unquoted_token1] = ACTIONS(1491), + [aux_sym_unquoted_token2] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1493), }, - [1383] = { - [sym_comment] = STATE(1383), + [1323] = { + [sym_comment] = STATE(1323), + [sym__newline] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_err_GT_PIPE] = ACTIONS(966), + [anon_sym_out_GT_PIPE] = ACTIONS(966), + [anon_sym_e_GT_PIPE] = ACTIONS(966), + [anon_sym_o_GT_PIPE] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(966), + [anon_sym_RPAREN] = ACTIONS(966), + [anon_sym_GT2] = ACTIONS(964), + [anon_sym_DASH2] = ACTIONS(966), + [anon_sym_in2] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_EQ_GT] = ACTIONS(966), + [anon_sym_STAR2] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(4560), + [anon_sym_and2] = ACTIONS(966), + [anon_sym_xor2] = ACTIONS(966), + [anon_sym_or2] = ACTIONS(966), + [anon_sym_not_DASHin2] = ACTIONS(966), + [anon_sym_has2] = ACTIONS(966), + [anon_sym_not_DASHhas2] = ACTIONS(966), + [anon_sym_starts_DASHwith2] = ACTIONS(966), + [anon_sym_ends_DASHwith2] = ACTIONS(966), + [anon_sym_EQ_EQ2] = ACTIONS(966), + [anon_sym_BANG_EQ2] = ACTIONS(966), + [anon_sym_LT2] = ACTIONS(964), + [anon_sym_LT_EQ2] = ACTIONS(966), + [anon_sym_GT_EQ2] = ACTIONS(966), + [anon_sym_EQ_TILDE2] = ACTIONS(966), + [anon_sym_BANG_TILDE2] = ACTIONS(966), + [anon_sym_STAR_STAR2] = ACTIONS(966), + [anon_sym_PLUS_PLUS2] = ACTIONS(966), + [anon_sym_SLASH2] = ACTIONS(964), + [anon_sym_mod2] = ACTIONS(966), + [anon_sym_SLASH_SLASH2] = ACTIONS(966), + [anon_sym_PLUS2] = ACTIONS(964), + [anon_sym_bit_DASHshl2] = ACTIONS(966), + [anon_sym_bit_DASHshr2] = ACTIONS(966), + [anon_sym_bit_DASHand2] = ACTIONS(966), + [anon_sym_bit_DASHxor2] = ACTIONS(966), + [anon_sym_bit_DASHor2] = ACTIONS(966), + [anon_sym_DOT_DOT2] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(966), + [anon_sym_DOT_DOT_LT2] = ACTIONS(966), + [anon_sym_COLON2] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(964), + [anon_sym_err_GT] = ACTIONS(964), + [anon_sym_out_GT] = ACTIONS(964), + [anon_sym_e_GT] = ACTIONS(964), + [anon_sym_o_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT] = ACTIONS(964), + [anon_sym_err_GT_GT] = ACTIONS(966), + [anon_sym_out_GT_GT] = ACTIONS(966), + [anon_sym_e_GT_GT] = ACTIONS(966), + [anon_sym_o_GT_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(245), + }, + [1324] = { + [sym_comment] = STATE(1324), [sym__newline] = ACTIONS(960), [anon_sym_SEMI] = ACTIONS(960), [anon_sym_PIPE] = ACTIONS(960), @@ -209208,7 +202425,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(960), [anon_sym_EQ_GT] = ACTIONS(960), [anon_sym_STAR2] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(960), + [anon_sym_QMARK2] = ACTIONS(4562), [anon_sym_and2] = ACTIONS(960), [anon_sym_xor2] = ACTIONS(960), [anon_sym_or2] = ACTIONS(960), @@ -209258,296 +202475,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), [anon_sym_POUND] = ACTIONS(245), }, - [1384] = { - [sym_comment] = STATE(1384), - [ts_builtin_sym_end] = ACTIONS(1540), - [sym__newline] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1540), - [anon_sym_err_GT_PIPE] = ACTIONS(1540), - [anon_sym_out_GT_PIPE] = ACTIONS(1540), - [anon_sym_e_GT_PIPE] = ACTIONS(1540), - [anon_sym_o_GT_PIPE] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_DOLLAR] = ACTIONS(1538), - [anon_sym_DASH_DASH] = ACTIONS(1540), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_LBRACE] = ACTIONS(1540), - [anon_sym_DOT_DOT] = ACTIONS(1538), - [anon_sym_LPAREN2] = ACTIONS(1540), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [anon_sym_null] = ACTIONS(1540), - [anon_sym_true] = ACTIONS(1540), - [anon_sym_false] = ACTIONS(1540), - [aux_sym__val_number_decimal_token1] = ACTIONS(1538), - [aux_sym__val_number_decimal_token2] = ACTIONS(1540), - [aux_sym__val_number_decimal_token3] = ACTIONS(1540), - [aux_sym__val_number_decimal_token4] = ACTIONS(1540), - [aux_sym__val_number_token1] = ACTIONS(1540), - [aux_sym__val_number_token2] = ACTIONS(1540), - [aux_sym__val_number_token3] = ACTIONS(1540), - [aux_sym__val_number_token4] = ACTIONS(1540), - [aux_sym__val_number_token5] = ACTIONS(1540), - [aux_sym__val_number_token6] = ACTIONS(1540), - [anon_sym_0b] = ACTIONS(1538), - [sym_filesize_unit] = ACTIONS(1540), - [sym_duration_unit] = ACTIONS(1540), - [anon_sym_0o] = ACTIONS(1538), - [anon_sym_0x] = ACTIONS(1538), - [sym_val_date] = ACTIONS(1540), - [anon_sym_DQUOTE] = ACTIONS(1540), - [sym__str_single_quotes] = ACTIONS(1540), - [sym__str_back_ticks] = ACTIONS(1540), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1540), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1540), - [anon_sym_err_GT] = ACTIONS(1538), - [anon_sym_out_GT] = ACTIONS(1538), - [anon_sym_e_GT] = ACTIONS(1538), - [anon_sym_o_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT] = ACTIONS(1538), - [anon_sym_err_GT_GT] = ACTIONS(1540), - [anon_sym_out_GT_GT] = ACTIONS(1540), - [anon_sym_e_GT_GT] = ACTIONS(1540), - [anon_sym_o_GT_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1540), - [aux_sym_unquoted_token1] = ACTIONS(1538), - [aux_sym_unquoted_token2] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1540), - }, - [1385] = { - [sym__expr_parenthesized_immediate] = STATE(2064), - [sym__immediate_decimal] = STATE(2072), - [sym_val_variable] = STATE(2064), - [sym_comment] = STATE(1385), - [ts_builtin_sym_end] = ACTIONS(1482), - [sym__newline] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1482), - [anon_sym_err_GT_PIPE] = ACTIONS(1482), - [anon_sym_out_GT_PIPE] = ACTIONS(1482), - [anon_sym_e_GT_PIPE] = ACTIONS(1482), - [anon_sym_o_GT_PIPE] = ACTIONS(1482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1482), - [anon_sym_DOLLAR] = ACTIONS(4499), - [anon_sym_GT2] = ACTIONS(1472), - [anon_sym_DASH2] = ACTIONS(1472), - [anon_sym_in2] = ACTIONS(1482), - [anon_sym_STAR2] = ACTIONS(1472), - [anon_sym_and2] = ACTIONS(1482), - [anon_sym_xor2] = ACTIONS(1482), - [anon_sym_or2] = ACTIONS(1482), - [anon_sym_not_DASHin2] = ACTIONS(1482), - [anon_sym_has2] = ACTIONS(1482), - [anon_sym_not_DASHhas2] = ACTIONS(1482), - [anon_sym_starts_DASHwith2] = ACTIONS(1482), - [anon_sym_ends_DASHwith2] = ACTIONS(1482), - [anon_sym_EQ_EQ2] = ACTIONS(1482), - [anon_sym_BANG_EQ2] = ACTIONS(1482), - [anon_sym_LT2] = ACTIONS(1472), - [anon_sym_LT_EQ2] = ACTIONS(1482), - [anon_sym_GT_EQ2] = ACTIONS(1482), - [anon_sym_EQ_TILDE2] = ACTIONS(1482), - [anon_sym_BANG_TILDE2] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(4501), - [anon_sym_STAR_STAR2] = ACTIONS(1482), - [anon_sym_PLUS_PLUS2] = ACTIONS(1482), - [anon_sym_SLASH2] = ACTIONS(1472), - [anon_sym_mod2] = ACTIONS(1482), - [anon_sym_SLASH_SLASH2] = ACTIONS(1482), - [anon_sym_PLUS2] = ACTIONS(1472), - [anon_sym_bit_DASHshl2] = ACTIONS(1482), - [anon_sym_bit_DASHshr2] = ACTIONS(1482), - [anon_sym_bit_DASHand2] = ACTIONS(1482), - [anon_sym_bit_DASHxor2] = ACTIONS(1482), - [anon_sym_bit_DASHor2] = ACTIONS(1482), - [anon_sym_DOT] = ACTIONS(4655), - [aux_sym__immediate_decimal_token1] = ACTIONS(4505), - [aux_sym__immediate_decimal_token3] = ACTIONS(4505), - [aux_sym__immediate_decimal_token4] = ACTIONS(4507), - [aux_sym__immediate_decimal_token5] = ACTIONS(4509), - [anon_sym_err_GT] = ACTIONS(1472), - [anon_sym_out_GT] = ACTIONS(1472), - [anon_sym_e_GT] = ACTIONS(1472), - [anon_sym_o_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT] = ACTIONS(1472), - [anon_sym_err_GT_GT] = ACTIONS(1482), - [anon_sym_out_GT_GT] = ACTIONS(1482), - [anon_sym_e_GT_GT] = ACTIONS(1482), - [anon_sym_o_GT_GT] = ACTIONS(1482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1482), - [anon_sym_POUND] = ACTIONS(245), - }, - [1386] = { - [sym_comment] = STATE(1386), - [sym__newline] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_PIPE] = ACTIONS(1494), - [anon_sym_err_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_GT_PIPE] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1494), - [anon_sym_RPAREN] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_RBRACE] = ACTIONS(1494), - [anon_sym_DOT_DOT] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1492), - [anon_sym_DOT_DOT_LT] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [anon_sym_null] = ACTIONS(1494), - [anon_sym_true] = ACTIONS(1494), - [anon_sym_false] = ACTIONS(1494), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1494), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(1494), - [aux_sym__val_number_token2] = ACTIONS(1494), - [aux_sym__val_number_token3] = ACTIONS(1494), - [aux_sym__val_number_token4] = ACTIONS(1494), - [aux_sym__val_number_token5] = ACTIONS(1494), - [aux_sym__val_number_token6] = ACTIONS(1494), - [anon_sym_0b] = ACTIONS(1492), - [sym_filesize_unit] = ACTIONS(1494), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_0o] = ACTIONS(1492), - [anon_sym_0x] = ACTIONS(1492), - [sym_val_date] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym__str_single_quotes] = ACTIONS(1494), - [sym__str_back_ticks] = ACTIONS(1494), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1494), - [anon_sym_out_GT_GT] = ACTIONS(1494), - [anon_sym_e_GT_GT] = ACTIONS(1494), - [anon_sym_o_GT_GT] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1494), - [aux_sym_unquoted_token1] = ACTIONS(1492), - [aux_sym_unquoted_token2] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1494), - }, - [1387] = { - [sym_comment] = STATE(1387), - [ts_builtin_sym_end] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(974), - [anon_sym_PLUS_EQ] = ACTIONS(976), - [anon_sym_DASH_EQ] = ACTIONS(976), - [anon_sym_STAR_EQ] = ACTIONS(976), - [anon_sym_SLASH_EQ] = ACTIONS(976), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(976), - [sym__newline] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_err_GT_PIPE] = ACTIONS(976), - [anon_sym_out_GT_PIPE] = ACTIONS(976), - [anon_sym_e_GT_PIPE] = ACTIONS(976), - [anon_sym_o_GT_PIPE] = ACTIONS(976), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(976), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(976), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(976), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(976), - [anon_sym_GT2] = ACTIONS(974), - [anon_sym_DASH2] = ACTIONS(974), - [anon_sym_in2] = ACTIONS(976), - [anon_sym_STAR2] = ACTIONS(974), - [anon_sym_and2] = ACTIONS(976), - [anon_sym_xor2] = ACTIONS(976), - [anon_sym_or2] = ACTIONS(976), - [anon_sym_not_DASHin2] = ACTIONS(976), - [anon_sym_has2] = ACTIONS(976), - [anon_sym_not_DASHhas2] = ACTIONS(976), - [anon_sym_starts_DASHwith2] = ACTIONS(976), - [anon_sym_ends_DASHwith2] = ACTIONS(976), - [anon_sym_EQ_EQ2] = ACTIONS(976), - [anon_sym_BANG_EQ2] = ACTIONS(976), - [anon_sym_LT2] = ACTIONS(974), - [anon_sym_LT_EQ2] = ACTIONS(976), - [anon_sym_GT_EQ2] = ACTIONS(976), - [anon_sym_EQ_TILDE2] = ACTIONS(976), - [anon_sym_BANG_TILDE2] = ACTIONS(976), - [anon_sym_STAR_STAR2] = ACTIONS(976), - [anon_sym_PLUS_PLUS2] = ACTIONS(974), - [anon_sym_SLASH2] = ACTIONS(974), - [anon_sym_mod2] = ACTIONS(976), - [anon_sym_SLASH_SLASH2] = ACTIONS(976), - [anon_sym_PLUS2] = ACTIONS(974), - [anon_sym_bit_DASHshl2] = ACTIONS(976), - [anon_sym_bit_DASHshr2] = ACTIONS(976), - [anon_sym_bit_DASHand2] = ACTIONS(976), - [anon_sym_bit_DASHxor2] = ACTIONS(976), - [anon_sym_bit_DASHor2] = ACTIONS(976), - [anon_sym_DOT_DOT2] = ACTIONS(974), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(976), - [anon_sym_DOT_DOT_LT2] = ACTIONS(976), - [anon_sym_DOT2] = ACTIONS(974), - [anon_sym_err_GT] = ACTIONS(974), - [anon_sym_out_GT] = ACTIONS(974), - [anon_sym_e_GT] = ACTIONS(974), - [anon_sym_o_GT] = ACTIONS(974), - [anon_sym_err_PLUSout_GT] = ACTIONS(974), - [anon_sym_out_PLUSerr_GT] = ACTIONS(974), - [anon_sym_o_PLUSe_GT] = ACTIONS(974), - [anon_sym_e_PLUSo_GT] = ACTIONS(974), - [anon_sym_err_GT_GT] = ACTIONS(976), - [anon_sym_out_GT_GT] = ACTIONS(976), - [anon_sym_e_GT_GT] = ACTIONS(976), - [anon_sym_o_GT_GT] = ACTIONS(976), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(976), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(976), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(976), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(245), - }, - [1388] = { - [sym_comment] = STATE(1388), + [1325] = { + [sym_comment] = STATE(1325), [ts_builtin_sym_end] = ACTIONS(980), [anon_sym_EQ] = ACTIONS(978), [anon_sym_PLUS_EQ] = ACTIONS(980), @@ -209618,587 +202547,587 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(980), [anon_sym_POUND] = ACTIONS(245), }, - [1389] = { - [sym_comment] = STATE(1389), - [sym__newline] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1486), - [anon_sym_err_GT_PIPE] = ACTIONS(1486), - [anon_sym_out_GT_PIPE] = ACTIONS(1486), - [anon_sym_e_GT_PIPE] = ACTIONS(1486), - [anon_sym_o_GT_PIPE] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1486), - [anon_sym_RPAREN] = ACTIONS(1486), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_RBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1484), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1484), - [anon_sym_DOT_DOT_LT] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [anon_sym_null] = ACTIONS(1486), - [anon_sym_true] = ACTIONS(1486), - [anon_sym_false] = ACTIONS(1486), - [aux_sym__val_number_decimal_token1] = ACTIONS(1484), - [aux_sym__val_number_decimal_token2] = ACTIONS(1486), - [aux_sym__val_number_decimal_token3] = ACTIONS(1486), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), - [aux_sym__val_number_token1] = ACTIONS(1486), - [aux_sym__val_number_token2] = ACTIONS(1486), - [aux_sym__val_number_token3] = ACTIONS(1486), - [aux_sym__val_number_token4] = ACTIONS(1486), - [aux_sym__val_number_token5] = ACTIONS(1486), - [aux_sym__val_number_token6] = ACTIONS(1486), - [anon_sym_0b] = ACTIONS(1484), - [sym_filesize_unit] = ACTIONS(1486), - [sym_duration_unit] = ACTIONS(1486), - [anon_sym_0o] = ACTIONS(1484), - [anon_sym_0x] = ACTIONS(1484), - [sym_val_date] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym__str_single_quotes] = ACTIONS(1486), - [sym__str_back_ticks] = ACTIONS(1486), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1486), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1486), - [anon_sym_err_GT] = ACTIONS(1484), - [anon_sym_out_GT] = ACTIONS(1484), - [anon_sym_e_GT] = ACTIONS(1484), - [anon_sym_o_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT] = ACTIONS(1484), - [anon_sym_err_GT_GT] = ACTIONS(1486), - [anon_sym_out_GT_GT] = ACTIONS(1486), - [anon_sym_e_GT_GT] = ACTIONS(1486), - [anon_sym_o_GT_GT] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1486), - [aux_sym_unquoted_token1] = ACTIONS(1484), - [aux_sym_unquoted_token2] = ACTIONS(1484), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1486), + [1326] = { + [sym_comment] = STATE(1326), + [ts_builtin_sym_end] = ACTIONS(1501), + [sym__newline] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_err_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_GT_PIPE] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_DOLLAR] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_LPAREN2] = ACTIONS(1501), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [aux_sym__val_number_decimal_token1] = ACTIONS(1499), + [aux_sym__val_number_decimal_token2] = ACTIONS(1501), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1501), + [aux_sym__val_number_token1] = ACTIONS(1501), + [aux_sym__val_number_token2] = ACTIONS(1501), + [aux_sym__val_number_token3] = ACTIONS(1501), + [aux_sym__val_number_token4] = ACTIONS(1501), + [aux_sym__val_number_token5] = ACTIONS(1501), + [aux_sym__val_number_token6] = ACTIONS(1501), + [anon_sym_0b] = ACTIONS(1499), + [sym_filesize_unit] = ACTIONS(1501), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_0o] = ACTIONS(1499), + [anon_sym_0x] = ACTIONS(1499), + [sym_val_date] = ACTIONS(1501), + [anon_sym_DQUOTE] = ACTIONS(1501), + [sym__str_single_quotes] = ACTIONS(1501), + [sym__str_back_ticks] = ACTIONS(1501), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1501), + [anon_sym_out_GT_GT] = ACTIONS(1501), + [anon_sym_e_GT_GT] = ACTIONS(1501), + [anon_sym_o_GT_GT] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1501), + [aux_sym_unquoted_token1] = ACTIONS(1499), + [aux_sym_unquoted_token2] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1501), }, - [1390] = { - [sym_comment] = STATE(1390), - [sym__newline] = ACTIONS(956), - [anon_sym_SEMI] = ACTIONS(956), - [anon_sym_PIPE] = ACTIONS(956), - [anon_sym_err_GT_PIPE] = ACTIONS(956), - [anon_sym_out_GT_PIPE] = ACTIONS(956), - [anon_sym_e_GT_PIPE] = ACTIONS(956), - [anon_sym_o_GT_PIPE] = ACTIONS(956), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(956), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(956), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(956), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(956), - [anon_sym_RPAREN] = ACTIONS(956), - [anon_sym_GT2] = ACTIONS(954), - [anon_sym_DASH2] = ACTIONS(956), - [anon_sym_in2] = ACTIONS(956), - [anon_sym_if] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(956), - [anon_sym_RBRACE] = ACTIONS(956), - [anon_sym_EQ_GT] = ACTIONS(956), - [anon_sym_STAR2] = ACTIONS(954), - [anon_sym_QMARK2] = ACTIONS(956), - [anon_sym_and2] = ACTIONS(956), - [anon_sym_xor2] = ACTIONS(956), - [anon_sym_or2] = ACTIONS(956), - [anon_sym_not_DASHin2] = ACTIONS(956), - [anon_sym_has2] = ACTIONS(956), - [anon_sym_not_DASHhas2] = ACTIONS(956), - [anon_sym_starts_DASHwith2] = ACTIONS(956), - [anon_sym_ends_DASHwith2] = ACTIONS(956), - [anon_sym_EQ_EQ2] = ACTIONS(956), - [anon_sym_BANG_EQ2] = ACTIONS(956), - [anon_sym_LT2] = ACTIONS(954), - [anon_sym_LT_EQ2] = ACTIONS(956), - [anon_sym_GT_EQ2] = ACTIONS(956), - [anon_sym_EQ_TILDE2] = ACTIONS(956), - [anon_sym_BANG_TILDE2] = ACTIONS(956), - [anon_sym_STAR_STAR2] = ACTIONS(956), - [anon_sym_PLUS_PLUS2] = ACTIONS(956), - [anon_sym_SLASH2] = ACTIONS(954), - [anon_sym_mod2] = ACTIONS(956), - [anon_sym_SLASH_SLASH2] = ACTIONS(956), - [anon_sym_PLUS2] = ACTIONS(954), - [anon_sym_bit_DASHshl2] = ACTIONS(956), - [anon_sym_bit_DASHshr2] = ACTIONS(956), - [anon_sym_bit_DASHand2] = ACTIONS(956), - [anon_sym_bit_DASHxor2] = ACTIONS(956), - [anon_sym_bit_DASHor2] = ACTIONS(956), - [anon_sym_DOT_DOT2] = ACTIONS(954), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(956), - [anon_sym_DOT_DOT_LT2] = ACTIONS(956), - [anon_sym_COLON2] = ACTIONS(956), - [anon_sym_DOT2] = ACTIONS(954), - [anon_sym_err_GT] = ACTIONS(954), - [anon_sym_out_GT] = ACTIONS(954), - [anon_sym_e_GT] = ACTIONS(954), - [anon_sym_o_GT] = ACTIONS(954), - [anon_sym_err_PLUSout_GT] = ACTIONS(954), - [anon_sym_out_PLUSerr_GT] = ACTIONS(954), - [anon_sym_o_PLUSe_GT] = ACTIONS(954), - [anon_sym_e_PLUSo_GT] = ACTIONS(954), - [anon_sym_err_GT_GT] = ACTIONS(956), - [anon_sym_out_GT_GT] = ACTIONS(956), - [anon_sym_e_GT_GT] = ACTIONS(956), - [anon_sym_o_GT_GT] = ACTIONS(956), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(956), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(956), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(956), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(956), - [anon_sym_POUND] = ACTIONS(245), + [1327] = { + [sym_comment] = STATE(1327), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(4564), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1701), + [anon_sym_DOT_DOT_LT] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4566), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), }, - [1391] = { - [sym_comment] = STATE(1391), - [sym__newline] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1540), - [anon_sym_err_GT_PIPE] = ACTIONS(1540), - [anon_sym_out_GT_PIPE] = ACTIONS(1540), - [anon_sym_e_GT_PIPE] = ACTIONS(1540), - [anon_sym_o_GT_PIPE] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_RPAREN] = ACTIONS(1540), - [anon_sym_DOLLAR] = ACTIONS(1538), - [anon_sym_DASH_DASH] = ACTIONS(1540), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_LBRACE] = ACTIONS(1540), - [anon_sym_RBRACE] = ACTIONS(1540), - [anon_sym_DOT_DOT] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [anon_sym_null] = ACTIONS(1540), - [anon_sym_true] = ACTIONS(1540), - [anon_sym_false] = ACTIONS(1540), - [aux_sym__val_number_decimal_token1] = ACTIONS(1538), - [aux_sym__val_number_decimal_token2] = ACTIONS(1540), - [aux_sym__val_number_decimal_token3] = ACTIONS(1540), - [aux_sym__val_number_decimal_token4] = ACTIONS(1540), - [aux_sym__val_number_token1] = ACTIONS(1540), - [aux_sym__val_number_token2] = ACTIONS(1540), - [aux_sym__val_number_token3] = ACTIONS(1540), - [aux_sym__val_number_token4] = ACTIONS(1540), - [aux_sym__val_number_token5] = ACTIONS(1540), - [aux_sym__val_number_token6] = ACTIONS(1540), - [anon_sym_0b] = ACTIONS(1538), - [sym_filesize_unit] = ACTIONS(1540), - [sym_duration_unit] = ACTIONS(1540), - [anon_sym_0o] = ACTIONS(1538), - [anon_sym_0x] = ACTIONS(1538), - [sym_val_date] = ACTIONS(1540), - [anon_sym_DQUOTE] = ACTIONS(1540), - [sym__str_single_quotes] = ACTIONS(1540), - [sym__str_back_ticks] = ACTIONS(1540), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1540), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1540), - [anon_sym_err_GT] = ACTIONS(1538), - [anon_sym_out_GT] = ACTIONS(1538), - [anon_sym_e_GT] = ACTIONS(1538), - [anon_sym_o_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT] = ACTIONS(1538), - [anon_sym_err_GT_GT] = ACTIONS(1540), - [anon_sym_out_GT_GT] = ACTIONS(1540), - [anon_sym_e_GT_GT] = ACTIONS(1540), - [anon_sym_o_GT_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1540), - [aux_sym_unquoted_token1] = ACTIONS(1538), - [aux_sym_unquoted_token2] = ACTIONS(1538), + [1328] = { + [sym_cell_path] = STATE(1546), + [sym_path] = STATE(1504), + [sym_comment] = STATE(1328), + [aux_sym_cell_path_repeat1] = STATE(1367), + [ts_builtin_sym_end] = ACTIONS(1670), + [sym__newline] = ACTIONS(1670), + [anon_sym_SEMI] = ACTIONS(1670), + [anon_sym_PIPE] = ACTIONS(1670), + [anon_sym_err_GT_PIPE] = ACTIONS(1670), + [anon_sym_out_GT_PIPE] = ACTIONS(1670), + [anon_sym_e_GT_PIPE] = ACTIONS(1670), + [anon_sym_o_GT_PIPE] = ACTIONS(1670), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1670), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1670), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1670), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_DOLLAR] = ACTIONS(1668), + [anon_sym_DASH_DASH] = ACTIONS(1670), + [anon_sym_DASH2] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(1670), + [anon_sym_DOT_DOT] = ACTIONS(1668), + [anon_sym_DOT_DOT2] = ACTIONS(1668), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1668), + [anon_sym_DOT_DOT_LT] = ACTIONS(1668), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1670), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1670), + [anon_sym_null] = ACTIONS(1670), + [anon_sym_true] = ACTIONS(1670), + [anon_sym_false] = ACTIONS(1670), + [aux_sym__val_number_decimal_token1] = ACTIONS(1668), + [aux_sym__val_number_decimal_token2] = ACTIONS(1670), + [aux_sym__val_number_decimal_token3] = ACTIONS(1670), + [aux_sym__val_number_decimal_token4] = ACTIONS(1670), + [aux_sym__val_number_token1] = ACTIONS(1670), + [aux_sym__val_number_token2] = ACTIONS(1670), + [aux_sym__val_number_token3] = ACTIONS(1670), + [aux_sym__val_number_token4] = ACTIONS(1670), + [aux_sym__val_number_token5] = ACTIONS(1670), + [aux_sym__val_number_token6] = ACTIONS(1670), + [anon_sym_0b] = ACTIONS(1668), + [anon_sym_0o] = ACTIONS(1668), + [anon_sym_0x] = ACTIONS(1668), + [sym_val_date] = ACTIONS(1670), + [anon_sym_DQUOTE] = ACTIONS(1670), + [sym__str_single_quotes] = ACTIONS(1670), + [sym__str_back_ticks] = ACTIONS(1670), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1670), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1670), + [anon_sym_DOT2] = ACTIONS(4568), + [anon_sym_err_GT] = ACTIONS(1668), + [anon_sym_out_GT] = ACTIONS(1668), + [anon_sym_e_GT] = ACTIONS(1668), + [anon_sym_o_GT] = ACTIONS(1668), + [anon_sym_err_PLUSout_GT] = ACTIONS(1668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1668), + [anon_sym_o_PLUSe_GT] = ACTIONS(1668), + [anon_sym_e_PLUSo_GT] = ACTIONS(1668), + [anon_sym_err_GT_GT] = ACTIONS(1670), + [anon_sym_out_GT_GT] = ACTIONS(1670), + [anon_sym_e_GT_GT] = ACTIONS(1670), + [anon_sym_o_GT_GT] = ACTIONS(1670), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1670), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1670), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1670), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1670), + [aux_sym_unquoted_token1] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1670), + }, + [1329] = { + [sym_comment] = STATE(1329), + [sym__newline] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(944), + [anon_sym_err_GT_PIPE] = ACTIONS(944), + [anon_sym_out_GT_PIPE] = ACTIONS(944), + [anon_sym_e_GT_PIPE] = ACTIONS(944), + [anon_sym_o_GT_PIPE] = ACTIONS(944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(944), + [anon_sym_RPAREN] = ACTIONS(944), + [anon_sym_GT2] = ACTIONS(942), + [anon_sym_DASH2] = ACTIONS(944), + [anon_sym_in2] = ACTIONS(944), + [anon_sym_if] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(944), + [anon_sym_EQ_GT] = ACTIONS(944), + [anon_sym_STAR2] = ACTIONS(942), + [anon_sym_QMARK2] = ACTIONS(944), + [anon_sym_and2] = ACTIONS(944), + [anon_sym_xor2] = ACTIONS(944), + [anon_sym_or2] = ACTIONS(944), + [anon_sym_not_DASHin2] = ACTIONS(944), + [anon_sym_has2] = ACTIONS(944), + [anon_sym_not_DASHhas2] = ACTIONS(944), + [anon_sym_starts_DASHwith2] = ACTIONS(944), + [anon_sym_ends_DASHwith2] = ACTIONS(944), + [anon_sym_EQ_EQ2] = ACTIONS(944), + [anon_sym_BANG_EQ2] = ACTIONS(944), + [anon_sym_LT2] = ACTIONS(942), + [anon_sym_LT_EQ2] = ACTIONS(944), + [anon_sym_GT_EQ2] = ACTIONS(944), + [anon_sym_EQ_TILDE2] = ACTIONS(944), + [anon_sym_BANG_TILDE2] = ACTIONS(944), + [anon_sym_STAR_STAR2] = ACTIONS(944), + [anon_sym_PLUS_PLUS2] = ACTIONS(944), + [anon_sym_SLASH2] = ACTIONS(942), + [anon_sym_mod2] = ACTIONS(944), + [anon_sym_SLASH_SLASH2] = ACTIONS(944), + [anon_sym_PLUS2] = ACTIONS(942), + [anon_sym_bit_DASHshl2] = ACTIONS(944), + [anon_sym_bit_DASHshr2] = ACTIONS(944), + [anon_sym_bit_DASHand2] = ACTIONS(944), + [anon_sym_bit_DASHxor2] = ACTIONS(944), + [anon_sym_bit_DASHor2] = ACTIONS(944), + [anon_sym_DOT_DOT2] = ACTIONS(942), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(944), + [anon_sym_DOT_DOT_LT2] = ACTIONS(944), + [anon_sym_COLON2] = ACTIONS(944), + [anon_sym_DOT2] = ACTIONS(942), + [anon_sym_err_GT] = ACTIONS(942), + [anon_sym_out_GT] = ACTIONS(942), + [anon_sym_e_GT] = ACTIONS(942), + [anon_sym_o_GT] = ACTIONS(942), + [anon_sym_err_PLUSout_GT] = ACTIONS(942), + [anon_sym_out_PLUSerr_GT] = ACTIONS(942), + [anon_sym_o_PLUSe_GT] = ACTIONS(942), + [anon_sym_e_PLUSo_GT] = ACTIONS(942), + [anon_sym_err_GT_GT] = ACTIONS(944), + [anon_sym_out_GT_GT] = ACTIONS(944), + [anon_sym_e_GT_GT] = ACTIONS(944), + [anon_sym_o_GT_GT] = ACTIONS(944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(944), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1540), }, - [1392] = { - [sym_comment] = STATE(1392), - [sym__newline] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_err_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_GT_PIPE] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_RPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DASH2] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), - [anon_sym_DOT_DOT_LT] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [aux_sym__val_number_token4] = ACTIONS(1717), - [aux_sym__val_number_token5] = ACTIONS(1717), - [aux_sym__val_number_token6] = ACTIONS(1717), - [anon_sym_0b] = ACTIONS(1715), - [sym_filesize_unit] = ACTIONS(1717), - [sym_duration_unit] = ACTIONS(1717), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1717), - [anon_sym_out_GT_GT] = ACTIONS(1717), - [anon_sym_e_GT_GT] = ACTIONS(1717), - [anon_sym_o_GT_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), - [aux_sym_unquoted_token1] = ACTIONS(1715), - [aux_sym_unquoted_token2] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1717), + [1330] = { + [sym_path] = STATE(1431), + [sym_comment] = STATE(1330), + [aux_sym_cell_path_repeat1] = STATE(1332), + [sym__newline] = ACTIONS(940), + [anon_sym_SEMI] = ACTIONS(940), + [anon_sym_PIPE] = ACTIONS(940), + [anon_sym_err_GT_PIPE] = ACTIONS(940), + [anon_sym_out_GT_PIPE] = ACTIONS(940), + [anon_sym_e_GT_PIPE] = ACTIONS(940), + [anon_sym_o_GT_PIPE] = ACTIONS(940), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(940), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(940), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(940), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(940), + [anon_sym_LBRACK] = ACTIONS(940), + [anon_sym_LPAREN] = ACTIONS(940), + [anon_sym_RPAREN] = ACTIONS(940), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(940), + [anon_sym_DASH2] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_RBRACE] = ACTIONS(940), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_DOT_DOT2] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(940), + [anon_sym_DOT_DOT_LT2] = ACTIONS(940), + [anon_sym_null] = ACTIONS(940), + [anon_sym_true] = ACTIONS(940), + [anon_sym_false] = ACTIONS(940), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(940), + [aux_sym__val_number_decimal_token3] = ACTIONS(940), + [aux_sym__val_number_decimal_token4] = ACTIONS(940), + [aux_sym__val_number_token1] = ACTIONS(940), + [aux_sym__val_number_token2] = ACTIONS(940), + [aux_sym__val_number_token3] = ACTIONS(940), + [aux_sym__val_number_token4] = ACTIONS(940), + [aux_sym__val_number_token5] = ACTIONS(940), + [aux_sym__val_number_token6] = ACTIONS(940), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(940), + [anon_sym_DQUOTE] = ACTIONS(940), + [sym__str_single_quotes] = ACTIONS(940), + [sym__str_back_ticks] = ACTIONS(940), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(940), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(940), + [anon_sym_DOT2] = ACTIONS(4422), + [anon_sym_err_GT] = ACTIONS(938), + [anon_sym_out_GT] = ACTIONS(938), + [anon_sym_e_GT] = ACTIONS(938), + [anon_sym_o_GT] = ACTIONS(938), + [anon_sym_err_PLUSout_GT] = ACTIONS(938), + [anon_sym_out_PLUSerr_GT] = ACTIONS(938), + [anon_sym_o_PLUSe_GT] = ACTIONS(938), + [anon_sym_e_PLUSo_GT] = ACTIONS(938), + [anon_sym_err_GT_GT] = ACTIONS(940), + [anon_sym_out_GT_GT] = ACTIONS(940), + [anon_sym_e_GT_GT] = ACTIONS(940), + [anon_sym_o_GT_GT] = ACTIONS(940), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(940), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(940), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(940), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(940), + [aux_sym_unquoted_token1] = ACTIONS(938), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(940), }, - [1393] = { - [sym_comment] = STATE(1393), - [ts_builtin_sym_end] = ACTIONS(1717), - [sym__newline] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_err_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_GT_PIPE] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DASH2] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), - [anon_sym_DOT_DOT_LT] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [aux_sym__val_number_token4] = ACTIONS(1717), - [aux_sym__val_number_token5] = ACTIONS(1717), - [aux_sym__val_number_token6] = ACTIONS(1717), - [anon_sym_0b] = ACTIONS(1715), - [sym_filesize_unit] = ACTIONS(1717), - [sym_duration_unit] = ACTIONS(1717), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1717), - [anon_sym_out_GT_GT] = ACTIONS(1717), - [anon_sym_e_GT_GT] = ACTIONS(1717), - [anon_sym_o_GT_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), - [aux_sym_unquoted_token1] = ACTIONS(1715), - [aux_sym_unquoted_token2] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1717), + [1331] = { + [sym__expr_parenthesized_immediate] = STATE(2353), + [sym__immediate_decimal] = STATE(2056), + [sym_val_variable] = STATE(2353), + [sym_comment] = STATE(1331), + [ts_builtin_sym_end] = ACTIONS(1475), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_DOLLAR] = ACTIONS(4523), + [anon_sym_GT2] = ACTIONS(1473), + [anon_sym_DASH2] = ACTIONS(1473), + [anon_sym_in2] = ACTIONS(1475), + [anon_sym_STAR2] = ACTIONS(1473), + [anon_sym_and2] = ACTIONS(1475), + [anon_sym_xor2] = ACTIONS(1475), + [anon_sym_or2] = ACTIONS(1475), + [anon_sym_not_DASHin2] = ACTIONS(1475), + [anon_sym_has2] = ACTIONS(1475), + [anon_sym_not_DASHhas2] = ACTIONS(1475), + [anon_sym_starts_DASHwith2] = ACTIONS(1475), + [anon_sym_ends_DASHwith2] = ACTIONS(1475), + [anon_sym_EQ_EQ2] = ACTIONS(1475), + [anon_sym_BANG_EQ2] = ACTIONS(1475), + [anon_sym_LT2] = ACTIONS(1473), + [anon_sym_LT_EQ2] = ACTIONS(1475), + [anon_sym_GT_EQ2] = ACTIONS(1475), + [anon_sym_EQ_TILDE2] = ACTIONS(1475), + [anon_sym_BANG_TILDE2] = ACTIONS(1475), + [anon_sym_LPAREN2] = ACTIONS(4525), + [anon_sym_STAR_STAR2] = ACTIONS(1475), + [anon_sym_PLUS_PLUS2] = ACTIONS(1475), + [anon_sym_SLASH2] = ACTIONS(1473), + [anon_sym_mod2] = ACTIONS(1475), + [anon_sym_SLASH_SLASH2] = ACTIONS(1475), + [anon_sym_PLUS2] = ACTIONS(1473), + [anon_sym_bit_DASHshl2] = ACTIONS(1475), + [anon_sym_bit_DASHshr2] = ACTIONS(1475), + [anon_sym_bit_DASHand2] = ACTIONS(1475), + [anon_sym_bit_DASHxor2] = ACTIONS(1475), + [anon_sym_bit_DASHor2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token1] = ACTIONS(4570), + [aux_sym__immediate_decimal_token3] = ACTIONS(4570), + [aux_sym__immediate_decimal_token4] = ACTIONS(4572), + [aux_sym__immediate_decimal_token5] = ACTIONS(4574), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [aux_sym_unquoted_token2] = ACTIONS(1477), + [anon_sym_POUND] = ACTIONS(245), }, - [1394] = { - [sym_comment] = STATE(1394), - [anon_sym_EQ] = ACTIONS(988), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(990), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(994), - [anon_sym_err_GT_PIPE] = ACTIONS(994), - [anon_sym_out_GT_PIPE] = ACTIONS(994), - [anon_sym_e_GT_PIPE] = ACTIONS(994), - [anon_sym_o_GT_PIPE] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), - [anon_sym_GT2] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(994), - [anon_sym_STAR2] = ACTIONS(998), - [anon_sym_and2] = ACTIONS(994), - [anon_sym_xor2] = ACTIONS(994), - [anon_sym_or2] = ACTIONS(994), - [anon_sym_not_DASHin2] = ACTIONS(994), - [anon_sym_has2] = ACTIONS(994), - [anon_sym_not_DASHhas2] = ACTIONS(994), - [anon_sym_starts_DASHwith2] = ACTIONS(994), - [anon_sym_ends_DASHwith2] = ACTIONS(994), - [anon_sym_EQ_EQ2] = ACTIONS(994), - [anon_sym_BANG_EQ2] = ACTIONS(994), - [anon_sym_LT2] = ACTIONS(998), - [anon_sym_LT_EQ2] = ACTIONS(994), - [anon_sym_GT_EQ2] = ACTIONS(994), - [anon_sym_EQ_TILDE2] = ACTIONS(994), - [anon_sym_BANG_TILDE2] = ACTIONS(994), - [anon_sym_STAR_STAR2] = ACTIONS(994), - [anon_sym_PLUS_PLUS2] = ACTIONS(998), - [anon_sym_SLASH2] = ACTIONS(998), - [anon_sym_mod2] = ACTIONS(994), - [anon_sym_SLASH_SLASH2] = ACTIONS(994), - [anon_sym_PLUS2] = ACTIONS(998), - [anon_sym_bit_DASHshl2] = ACTIONS(994), - [anon_sym_bit_DASHshr2] = ACTIONS(994), - [anon_sym_bit_DASHand2] = ACTIONS(994), - [anon_sym_bit_DASHxor2] = ACTIONS(994), - [anon_sym_bit_DASHor2] = ACTIONS(994), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [anon_sym_COLON2] = ACTIONS(4657), - [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(994), - [anon_sym_out_GT_GT] = ACTIONS(994), - [anon_sym_e_GT_GT] = ACTIONS(994), - [anon_sym_o_GT_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), - [anon_sym_POUND] = ACTIONS(245), - }, - [1395] = { - [sym__expr_parenthesized_immediate] = STATE(2074), - [sym__immediate_decimal] = STATE(2083), - [sym_val_variable] = STATE(2074), - [sym_comment] = STATE(1395), - [ts_builtin_sym_end] = ACTIONS(1445), - [sym__newline] = ACTIONS(1445), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_PIPE] = ACTIONS(1445), - [anon_sym_err_GT_PIPE] = ACTIONS(1445), - [anon_sym_out_GT_PIPE] = ACTIONS(1445), - [anon_sym_e_GT_PIPE] = ACTIONS(1445), - [anon_sym_o_GT_PIPE] = ACTIONS(1445), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1445), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1445), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1445), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1445), - [anon_sym_DOLLAR] = ACTIONS(4499), - [anon_sym_GT2] = ACTIONS(1431), - [anon_sym_DASH2] = ACTIONS(1431), - [anon_sym_in2] = ACTIONS(1445), - [anon_sym_STAR2] = ACTIONS(1431), - [anon_sym_and2] = ACTIONS(1445), - [anon_sym_xor2] = ACTIONS(1445), - [anon_sym_or2] = ACTIONS(1445), - [anon_sym_not_DASHin2] = ACTIONS(1445), - [anon_sym_has2] = ACTIONS(1445), - [anon_sym_not_DASHhas2] = ACTIONS(1445), - [anon_sym_starts_DASHwith2] = ACTIONS(1445), - [anon_sym_ends_DASHwith2] = ACTIONS(1445), - [anon_sym_EQ_EQ2] = ACTIONS(1445), - [anon_sym_BANG_EQ2] = ACTIONS(1445), - [anon_sym_LT2] = ACTIONS(1431), - [anon_sym_LT_EQ2] = ACTIONS(1445), - [anon_sym_GT_EQ2] = ACTIONS(1445), - [anon_sym_EQ_TILDE2] = ACTIONS(1445), - [anon_sym_BANG_TILDE2] = ACTIONS(1445), - [anon_sym_LPAREN2] = ACTIONS(4501), - [anon_sym_STAR_STAR2] = ACTIONS(1445), - [anon_sym_PLUS_PLUS2] = ACTIONS(1445), - [anon_sym_SLASH2] = ACTIONS(1431), - [anon_sym_mod2] = ACTIONS(1445), - [anon_sym_SLASH_SLASH2] = ACTIONS(1445), - [anon_sym_PLUS2] = ACTIONS(1431), - [anon_sym_bit_DASHshl2] = ACTIONS(1445), - [anon_sym_bit_DASHshr2] = ACTIONS(1445), - [anon_sym_bit_DASHand2] = ACTIONS(1445), - [anon_sym_bit_DASHxor2] = ACTIONS(1445), - [anon_sym_bit_DASHor2] = ACTIONS(1445), - [anon_sym_DOT] = ACTIONS(4659), - [aux_sym__immediate_decimal_token1] = ACTIONS(4505), - [aux_sym__immediate_decimal_token3] = ACTIONS(4505), - [aux_sym__immediate_decimal_token4] = ACTIONS(4507), - [aux_sym__immediate_decimal_token5] = ACTIONS(4509), - [anon_sym_err_GT] = ACTIONS(1431), - [anon_sym_out_GT] = ACTIONS(1431), - [anon_sym_e_GT] = ACTIONS(1431), - [anon_sym_o_GT] = ACTIONS(1431), - [anon_sym_err_PLUSout_GT] = ACTIONS(1431), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1431), - [anon_sym_o_PLUSe_GT] = ACTIONS(1431), - [anon_sym_e_PLUSo_GT] = ACTIONS(1431), - [anon_sym_err_GT_GT] = ACTIONS(1445), - [anon_sym_out_GT_GT] = ACTIONS(1445), - [anon_sym_e_GT_GT] = ACTIONS(1445), - [anon_sym_o_GT_GT] = ACTIONS(1445), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1445), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1445), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1445), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1445), + [1332] = { + [sym_path] = STATE(1431), + [sym_comment] = STATE(1332), + [aux_sym_cell_path_repeat1] = STATE(1332), + [sym__newline] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_PIPE] = ACTIONS(933), + [anon_sym_err_GT_PIPE] = ACTIONS(933), + [anon_sym_out_GT_PIPE] = ACTIONS(933), + [anon_sym_e_GT_PIPE] = ACTIONS(933), + [anon_sym_o_GT_PIPE] = ACTIONS(933), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(933), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(933), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(933), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_DASH2] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(933), + [anon_sym_DOT_DOT] = ACTIONS(931), + [anon_sym_DOT_DOT2] = ACTIONS(931), + [anon_sym_DOT_DOT_EQ] = ACTIONS(931), + [anon_sym_DOT_DOT_LT] = ACTIONS(931), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(933), + [anon_sym_DOT_DOT_LT2] = ACTIONS(933), + [anon_sym_null] = ACTIONS(933), + [anon_sym_true] = ACTIONS(933), + [anon_sym_false] = ACTIONS(933), + [aux_sym__val_number_decimal_token1] = ACTIONS(931), + [aux_sym__val_number_decimal_token2] = ACTIONS(933), + [aux_sym__val_number_decimal_token3] = ACTIONS(933), + [aux_sym__val_number_decimal_token4] = ACTIONS(933), + [aux_sym__val_number_token1] = ACTIONS(933), + [aux_sym__val_number_token2] = ACTIONS(933), + [aux_sym__val_number_token3] = ACTIONS(933), + [aux_sym__val_number_token4] = ACTIONS(933), + [aux_sym__val_number_token5] = ACTIONS(933), + [aux_sym__val_number_token6] = ACTIONS(933), + [anon_sym_0b] = ACTIONS(931), + [anon_sym_0o] = ACTIONS(931), + [anon_sym_0x] = ACTIONS(931), + [sym_val_date] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym__str_single_quotes] = ACTIONS(933), + [sym__str_back_ticks] = ACTIONS(933), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(933), + [anon_sym_DOT2] = ACTIONS(4576), + [anon_sym_err_GT] = ACTIONS(931), + [anon_sym_out_GT] = ACTIONS(931), + [anon_sym_e_GT] = ACTIONS(931), + [anon_sym_o_GT] = ACTIONS(931), + [anon_sym_err_PLUSout_GT] = ACTIONS(931), + [anon_sym_out_PLUSerr_GT] = ACTIONS(931), + [anon_sym_o_PLUSe_GT] = ACTIONS(931), + [anon_sym_e_PLUSo_GT] = ACTIONS(931), + [anon_sym_err_GT_GT] = ACTIONS(933), + [anon_sym_out_GT_GT] = ACTIONS(933), + [anon_sym_e_GT_GT] = ACTIONS(933), + [anon_sym_o_GT_GT] = ACTIONS(933), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(933), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(933), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(933), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(933), + [aux_sym_unquoted_token1] = ACTIONS(931), [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(933), }, - [1396] = { - [sym_comment] = STATE(1396), - [ts_builtin_sym_end] = ACTIONS(1486), - [sym__newline] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1486), - [anon_sym_err_GT_PIPE] = ACTIONS(1486), - [anon_sym_out_GT_PIPE] = ACTIONS(1486), - [anon_sym_e_GT_PIPE] = ACTIONS(1486), - [anon_sym_o_GT_PIPE] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1484), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1484), - [anon_sym_DOT_DOT_LT] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [anon_sym_null] = ACTIONS(1486), - [anon_sym_true] = ACTIONS(1486), - [anon_sym_false] = ACTIONS(1486), - [aux_sym__val_number_decimal_token1] = ACTIONS(1484), - [aux_sym__val_number_decimal_token2] = ACTIONS(1486), - [aux_sym__val_number_decimal_token3] = ACTIONS(1486), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), - [aux_sym__val_number_token1] = ACTIONS(1486), - [aux_sym__val_number_token2] = ACTIONS(1486), - [aux_sym__val_number_token3] = ACTIONS(1486), - [aux_sym__val_number_token4] = ACTIONS(1486), - [aux_sym__val_number_token5] = ACTIONS(1486), - [aux_sym__val_number_token6] = ACTIONS(1486), - [anon_sym_0b] = ACTIONS(1484), - [sym_filesize_unit] = ACTIONS(1486), - [sym_duration_unit] = ACTIONS(1486), - [anon_sym_0o] = ACTIONS(1484), - [anon_sym_0x] = ACTIONS(1484), - [sym_val_date] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym__str_single_quotes] = ACTIONS(1486), - [sym__str_back_ticks] = ACTIONS(1486), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1486), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1486), - [anon_sym_err_GT] = ACTIONS(1484), - [anon_sym_out_GT] = ACTIONS(1484), - [anon_sym_e_GT] = ACTIONS(1484), - [anon_sym_o_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT] = ACTIONS(1484), - [anon_sym_err_GT_GT] = ACTIONS(1486), - [anon_sym_out_GT_GT] = ACTIONS(1486), - [anon_sym_e_GT_GT] = ACTIONS(1486), - [anon_sym_o_GT_GT] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1486), - [aux_sym_unquoted_token1] = ACTIONS(1484), - [aux_sym_unquoted_token2] = ACTIONS(1484), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1486), + [1333] = { + [sym_comment] = STATE(1333), + [ts_builtin_sym_end] = ACTIONS(1501), + [sym__newline] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_err_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_GT_PIPE] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(4420), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [aux_sym__val_number_decimal_token1] = ACTIONS(1499), + [aux_sym__val_number_decimal_token2] = ACTIONS(1501), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1501), + [aux_sym__val_number_token1] = ACTIONS(1501), + [aux_sym__val_number_token2] = ACTIONS(1501), + [aux_sym__val_number_token3] = ACTIONS(1501), + [aux_sym__val_number_token4] = ACTIONS(1501), + [aux_sym__val_number_token5] = ACTIONS(1501), + [aux_sym__val_number_token6] = ACTIONS(1501), + [anon_sym_0b] = ACTIONS(1499), + [sym_filesize_unit] = ACTIONS(1501), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_0o] = ACTIONS(1499), + [anon_sym_0x] = ACTIONS(1499), + [sym_val_date] = ACTIONS(1501), + [anon_sym_DQUOTE] = ACTIONS(1501), + [sym__str_single_quotes] = ACTIONS(1501), + [sym__str_back_ticks] = ACTIONS(1501), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1501), + [anon_sym_out_GT_GT] = ACTIONS(1501), + [anon_sym_e_GT_GT] = ACTIONS(1501), + [anon_sym_o_GT_GT] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1501), + [aux_sym_unquoted_token1] = ACTIONS(1499), + [aux_sym_unquoted_token2] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1501), }, - [1397] = { - [sym_cell_path] = STATE(1632), - [sym_path] = STATE(1582), - [sym_comment] = STATE(1397), - [aux_sym_cell_path_repeat1] = STATE(1437), + [1334] = { + [sym_cell_path] = STATE(1524), + [sym_path] = STATE(1504), + [sym_comment] = STATE(1334), + [aux_sym_cell_path_repeat1] = STATE(1367), [ts_builtin_sym_end] = ACTIONS(927), [sym__newline] = ACTIONS(927), [anon_sym_SEMI] = ACTIONS(927), @@ -210245,7 +203174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(927), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(927), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(927), - [anon_sym_DOT2] = ACTIONS(4653), + [anon_sym_DOT2] = ACTIONS(4568), [anon_sym_err_GT] = ACTIONS(925), [anon_sym_out_GT] = ACTIONS(925), [anon_sym_e_GT] = ACTIONS(925), @@ -210266,777 +203195,1137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(927), }, - [1398] = { - [sym_comment] = STATE(1398), - [ts_builtin_sym_end] = ACTIONS(1650), - [sym__newline] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_err_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_GT_PIPE] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DASH2] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1648), - [anon_sym_DOT_DOT_LT] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [aux_sym__immediate_decimal_token1] = ACTIONS(4661), - [aux_sym__immediate_decimal_token2] = ACTIONS(4663), - [anon_sym_null] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [aux_sym__val_number_token4] = ACTIONS(1650), - [aux_sym__val_number_token5] = ACTIONS(1650), - [aux_sym__val_number_token6] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1648), - [anon_sym_0o] = ACTIONS(1648), - [anon_sym_0x] = ACTIONS(1648), - [sym_val_date] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_err_GT] = ACTIONS(1648), - [anon_sym_out_GT] = ACTIONS(1648), - [anon_sym_e_GT] = ACTIONS(1648), - [anon_sym_o_GT] = ACTIONS(1648), - [anon_sym_err_PLUSout_GT] = ACTIONS(1648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), - [anon_sym_o_PLUSe_GT] = ACTIONS(1648), - [anon_sym_e_PLUSo_GT] = ACTIONS(1648), - [anon_sym_err_GT_GT] = ACTIONS(1650), - [anon_sym_out_GT_GT] = ACTIONS(1650), - [anon_sym_e_GT_GT] = ACTIONS(1650), - [anon_sym_o_GT_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), - [aux_sym_unquoted_token1] = ACTIONS(1648), - [aux_sym_unquoted_token2] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1650), + [1335] = { + [sym_comment] = STATE(1335), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1760), + [anon_sym_DOT_DOT_LT] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(4579), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1762), + [aux_sym__val_number_token5] = ACTIONS(1762), + [aux_sym__val_number_token6] = ACTIONS(1762), + [anon_sym_0b] = ACTIONS(1760), + [anon_sym_0o] = ACTIONS(1760), + [anon_sym_0x] = ACTIONS(1760), + [sym_val_date] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token1] = ACTIONS(1760), + [aux_sym_unquoted_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1762), }, - [1399] = { - [sym_comment] = STATE(1399), - [sym__newline] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(964), - [anon_sym_err_GT_PIPE] = ACTIONS(964), - [anon_sym_out_GT_PIPE] = ACTIONS(964), - [anon_sym_e_GT_PIPE] = ACTIONS(964), - [anon_sym_o_GT_PIPE] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), - [anon_sym_RPAREN] = ACTIONS(964), - [anon_sym_GT2] = ACTIONS(962), - [anon_sym_DASH2] = ACTIONS(964), - [anon_sym_in2] = ACTIONS(964), - [anon_sym_if] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_EQ_GT] = ACTIONS(964), - [anon_sym_STAR2] = ACTIONS(962), - [anon_sym_QMARK2] = ACTIONS(964), - [anon_sym_and2] = ACTIONS(964), - [anon_sym_xor2] = ACTIONS(964), - [anon_sym_or2] = ACTIONS(964), - [anon_sym_not_DASHin2] = ACTIONS(964), - [anon_sym_has2] = ACTIONS(964), - [anon_sym_not_DASHhas2] = ACTIONS(964), - [anon_sym_starts_DASHwith2] = ACTIONS(964), - [anon_sym_ends_DASHwith2] = ACTIONS(964), - [anon_sym_EQ_EQ2] = ACTIONS(964), - [anon_sym_BANG_EQ2] = ACTIONS(964), - [anon_sym_LT2] = ACTIONS(962), - [anon_sym_LT_EQ2] = ACTIONS(964), - [anon_sym_GT_EQ2] = ACTIONS(964), - [anon_sym_EQ_TILDE2] = ACTIONS(964), - [anon_sym_BANG_TILDE2] = ACTIONS(964), - [anon_sym_STAR_STAR2] = ACTIONS(964), - [anon_sym_PLUS_PLUS2] = ACTIONS(964), - [anon_sym_SLASH2] = ACTIONS(962), - [anon_sym_mod2] = ACTIONS(964), - [anon_sym_SLASH_SLASH2] = ACTIONS(964), - [anon_sym_PLUS2] = ACTIONS(962), - [anon_sym_bit_DASHshl2] = ACTIONS(964), - [anon_sym_bit_DASHshr2] = ACTIONS(964), - [anon_sym_bit_DASHand2] = ACTIONS(964), - [anon_sym_bit_DASHxor2] = ACTIONS(964), - [anon_sym_bit_DASHor2] = ACTIONS(964), - [anon_sym_DOT_DOT2] = ACTIONS(962), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), - [anon_sym_DOT_DOT_LT2] = ACTIONS(964), - [anon_sym_COLON2] = ACTIONS(964), - [anon_sym_DOT2] = ACTIONS(962), - [anon_sym_err_GT] = ACTIONS(962), - [anon_sym_out_GT] = ACTIONS(962), - [anon_sym_e_GT] = ACTIONS(962), - [anon_sym_o_GT] = ACTIONS(962), - [anon_sym_err_PLUSout_GT] = ACTIONS(962), - [anon_sym_out_PLUSerr_GT] = ACTIONS(962), - [anon_sym_o_PLUSe_GT] = ACTIONS(962), - [anon_sym_e_PLUSo_GT] = ACTIONS(962), - [anon_sym_err_GT_GT] = ACTIONS(964), - [anon_sym_out_GT_GT] = ACTIONS(964), - [anon_sym_e_GT_GT] = ACTIONS(964), - [anon_sym_o_GT_GT] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), + [1336] = { + [sym_cell_path] = STATE(1534), + [sym_path] = STATE(1504), + [sym_comment] = STATE(1336), + [aux_sym_cell_path_repeat1] = STATE(1367), + [ts_builtin_sym_end] = ACTIONS(1676), + [sym__newline] = ACTIONS(1676), + [anon_sym_SEMI] = ACTIONS(1676), + [anon_sym_PIPE] = ACTIONS(1676), + [anon_sym_err_GT_PIPE] = ACTIONS(1676), + [anon_sym_out_GT_PIPE] = ACTIONS(1676), + [anon_sym_e_GT_PIPE] = ACTIONS(1676), + [anon_sym_o_GT_PIPE] = ACTIONS(1676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1676), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1676), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_DASH_DASH] = ACTIONS(1676), + [anon_sym_DASH2] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(1676), + [anon_sym_DOT_DOT] = ACTIONS(1674), + [anon_sym_DOT_DOT2] = ACTIONS(1674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1674), + [anon_sym_DOT_DOT_LT] = ACTIONS(1674), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1676), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1676), + [anon_sym_null] = ACTIONS(1676), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1676), + [aux_sym__val_number_decimal_token1] = ACTIONS(1674), + [aux_sym__val_number_decimal_token2] = ACTIONS(1676), + [aux_sym__val_number_decimal_token3] = ACTIONS(1676), + [aux_sym__val_number_decimal_token4] = ACTIONS(1676), + [aux_sym__val_number_token1] = ACTIONS(1676), + [aux_sym__val_number_token2] = ACTIONS(1676), + [aux_sym__val_number_token3] = ACTIONS(1676), + [aux_sym__val_number_token4] = ACTIONS(1676), + [aux_sym__val_number_token5] = ACTIONS(1676), + [aux_sym__val_number_token6] = ACTIONS(1676), + [anon_sym_0b] = ACTIONS(1674), + [anon_sym_0o] = ACTIONS(1674), + [anon_sym_0x] = ACTIONS(1674), + [sym_val_date] = ACTIONS(1676), + [anon_sym_DQUOTE] = ACTIONS(1676), + [sym__str_single_quotes] = ACTIONS(1676), + [sym__str_back_ticks] = ACTIONS(1676), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1676), + [anon_sym_DOT2] = ACTIONS(4568), + [anon_sym_err_GT] = ACTIONS(1674), + [anon_sym_out_GT] = ACTIONS(1674), + [anon_sym_e_GT] = ACTIONS(1674), + [anon_sym_o_GT] = ACTIONS(1674), + [anon_sym_err_PLUSout_GT] = ACTIONS(1674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1674), + [anon_sym_o_PLUSe_GT] = ACTIONS(1674), + [anon_sym_e_PLUSo_GT] = ACTIONS(1674), + [anon_sym_err_GT_GT] = ACTIONS(1676), + [anon_sym_out_GT_GT] = ACTIONS(1676), + [anon_sym_e_GT_GT] = ACTIONS(1676), + [anon_sym_o_GT_GT] = ACTIONS(1676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1676), + [aux_sym_unquoted_token1] = ACTIONS(1674), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1676), + }, + [1337] = { + [sym_comment] = STATE(1337), + [sym__newline] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_PIPE] = ACTIONS(956), + [anon_sym_err_GT_PIPE] = ACTIONS(956), + [anon_sym_out_GT_PIPE] = ACTIONS(956), + [anon_sym_e_GT_PIPE] = ACTIONS(956), + [anon_sym_o_GT_PIPE] = ACTIONS(956), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(956), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(956), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(956), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(956), + [anon_sym_RPAREN] = ACTIONS(956), + [anon_sym_GT2] = ACTIONS(954), + [anon_sym_DASH2] = ACTIONS(956), + [anon_sym_in2] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(956), + [anon_sym_EQ_GT] = ACTIONS(956), + [anon_sym_STAR2] = ACTIONS(954), + [anon_sym_QMARK2] = ACTIONS(956), + [anon_sym_and2] = ACTIONS(956), + [anon_sym_xor2] = ACTIONS(956), + [anon_sym_or2] = ACTIONS(956), + [anon_sym_not_DASHin2] = ACTIONS(956), + [anon_sym_has2] = ACTIONS(956), + [anon_sym_not_DASHhas2] = ACTIONS(956), + [anon_sym_starts_DASHwith2] = ACTIONS(956), + [anon_sym_ends_DASHwith2] = ACTIONS(956), + [anon_sym_EQ_EQ2] = ACTIONS(956), + [anon_sym_BANG_EQ2] = ACTIONS(956), + [anon_sym_LT2] = ACTIONS(954), + [anon_sym_LT_EQ2] = ACTIONS(956), + [anon_sym_GT_EQ2] = ACTIONS(956), + [anon_sym_EQ_TILDE2] = ACTIONS(956), + [anon_sym_BANG_TILDE2] = ACTIONS(956), + [anon_sym_STAR_STAR2] = ACTIONS(956), + [anon_sym_PLUS_PLUS2] = ACTIONS(956), + [anon_sym_SLASH2] = ACTIONS(954), + [anon_sym_mod2] = ACTIONS(956), + [anon_sym_SLASH_SLASH2] = ACTIONS(956), + [anon_sym_PLUS2] = ACTIONS(954), + [anon_sym_bit_DASHshl2] = ACTIONS(956), + [anon_sym_bit_DASHshr2] = ACTIONS(956), + [anon_sym_bit_DASHand2] = ACTIONS(956), + [anon_sym_bit_DASHxor2] = ACTIONS(956), + [anon_sym_bit_DASHor2] = ACTIONS(956), + [anon_sym_DOT_DOT2] = ACTIONS(954), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(956), + [anon_sym_DOT_DOT_LT2] = ACTIONS(956), + [anon_sym_COLON2] = ACTIONS(956), + [anon_sym_DOT2] = ACTIONS(954), + [anon_sym_err_GT] = ACTIONS(954), + [anon_sym_out_GT] = ACTIONS(954), + [anon_sym_e_GT] = ACTIONS(954), + [anon_sym_o_GT] = ACTIONS(954), + [anon_sym_err_PLUSout_GT] = ACTIONS(954), + [anon_sym_out_PLUSerr_GT] = ACTIONS(954), + [anon_sym_o_PLUSe_GT] = ACTIONS(954), + [anon_sym_e_PLUSo_GT] = ACTIONS(954), + [anon_sym_err_GT_GT] = ACTIONS(956), + [anon_sym_out_GT_GT] = ACTIONS(956), + [anon_sym_e_GT_GT] = ACTIONS(956), + [anon_sym_o_GT_GT] = ACTIONS(956), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(956), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(956), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(956), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(956), [anon_sym_POUND] = ACTIONS(245), }, - [1400] = { - [sym_comment] = STATE(1400), - [ts_builtin_sym_end] = ACTIONS(1494), - [sym__newline] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_PIPE] = ACTIONS(1494), - [anon_sym_err_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_GT_PIPE] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_DOT_DOT] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1492), - [anon_sym_DOT_DOT_LT] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(4610), - [anon_sym_null] = ACTIONS(1494), - [anon_sym_true] = ACTIONS(1494), - [anon_sym_false] = ACTIONS(1494), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1494), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(1494), - [aux_sym__val_number_token2] = ACTIONS(1494), - [aux_sym__val_number_token3] = ACTIONS(1494), - [aux_sym__val_number_token4] = ACTIONS(1494), - [aux_sym__val_number_token5] = ACTIONS(1494), - [aux_sym__val_number_token6] = ACTIONS(1494), - [anon_sym_0b] = ACTIONS(1492), - [sym_filesize_unit] = ACTIONS(1494), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_0o] = ACTIONS(1492), - [anon_sym_0x] = ACTIONS(1492), - [sym_val_date] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym__str_single_quotes] = ACTIONS(1494), - [sym__str_back_ticks] = ACTIONS(1494), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1494), - [anon_sym_out_GT_GT] = ACTIONS(1494), - [anon_sym_e_GT_GT] = ACTIONS(1494), - [anon_sym_o_GT_GT] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1494), - [aux_sym_unquoted_token1] = ACTIONS(1492), - [aux_sym_unquoted_token2] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1494), + [1338] = { + [sym_comment] = STATE(1338), + [ts_builtin_sym_end] = ACTIONS(1581), + [sym__newline] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1581), + [anon_sym_PIPE] = ACTIONS(1581), + [anon_sym_err_GT_PIPE] = ACTIONS(1581), + [anon_sym_out_GT_PIPE] = ACTIONS(1581), + [anon_sym_e_GT_PIPE] = ACTIONS(1581), + [anon_sym_o_GT_PIPE] = ACTIONS(1581), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1581), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1581), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1581), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1581), + [anon_sym_DASH2] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_DOT_DOT] = ACTIONS(1579), + [anon_sym_LPAREN2] = ACTIONS(1581), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1579), + [anon_sym_DOT_DOT_LT] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [anon_sym_null] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1581), + [anon_sym_false] = ACTIONS(1581), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [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_0b] = ACTIONS(1579), + [sym_filesize_unit] = ACTIONS(1581), + [sym_duration_unit] = ACTIONS(1581), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1581), + [sym__str_single_quotes] = ACTIONS(1581), + [sym__str_back_ticks] = ACTIONS(1581), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1581), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [anon_sym_err_GT_GT] = ACTIONS(1581), + [anon_sym_out_GT_GT] = ACTIONS(1581), + [anon_sym_e_GT_GT] = ACTIONS(1581), + [anon_sym_o_GT_GT] = ACTIONS(1581), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1581), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1581), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1581), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1581), + [aux_sym_unquoted_token1] = ACTIONS(1579), + [aux_sym_unquoted_token2] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1581), }, - [1401] = { - [sym_comment] = STATE(1401), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(966), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_in2] = ACTIONS(968), - [anon_sym_if] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_EQ_GT] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(968), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_has2] = ACTIONS(968), - [anon_sym_not_DASHhas2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(966), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(966), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(966), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_DOT_DOT2] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), - [anon_sym_DOT_DOT_LT2] = ACTIONS(968), - [anon_sym_COLON2] = ACTIONS(968), - [anon_sym_DOT2] = ACTIONS(966), - [anon_sym_err_GT] = ACTIONS(966), - [anon_sym_out_GT] = ACTIONS(966), - [anon_sym_e_GT] = ACTIONS(966), - [anon_sym_o_GT] = ACTIONS(966), - [anon_sym_err_PLUSout_GT] = ACTIONS(966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(966), - [anon_sym_o_PLUSe_GT] = ACTIONS(966), - [anon_sym_e_PLUSo_GT] = ACTIONS(966), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), + [1339] = { + [sym_comment] = STATE(1339), + [sym__newline] = ACTIONS(1628), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1628), + [anon_sym_err_GT_PIPE] = ACTIONS(1628), + [anon_sym_out_GT_PIPE] = ACTIONS(1628), + [anon_sym_e_GT_PIPE] = ACTIONS(1628), + [anon_sym_o_GT_PIPE] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_RPAREN] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1616), + [anon_sym_DOT_DOT2] = ACTIONS(4581), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1616), + [anon_sym_DOT_DOT_LT] = ACTIONS(1616), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4583), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4583), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_true] = ACTIONS(1628), + [anon_sym_false] = ACTIONS(1628), + [aux_sym__val_number_decimal_token1] = ACTIONS(1616), + [aux_sym__val_number_decimal_token2] = ACTIONS(1628), + [aux_sym__val_number_decimal_token3] = ACTIONS(1628), + [aux_sym__val_number_decimal_token4] = ACTIONS(1628), + [aux_sym__val_number_token1] = ACTIONS(1628), + [aux_sym__val_number_token2] = ACTIONS(1628), + [aux_sym__val_number_token3] = ACTIONS(1628), + [aux_sym__val_number_token4] = ACTIONS(1628), + [aux_sym__val_number_token5] = ACTIONS(1628), + [aux_sym__val_number_token6] = ACTIONS(1628), + [anon_sym_0b] = ACTIONS(1616), + [sym_filesize_unit] = ACTIONS(4585), + [sym_duration_unit] = ACTIONS(4587), + [anon_sym_0o] = ACTIONS(1616), + [anon_sym_0x] = ACTIONS(1616), + [sym_val_date] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1628), + [sym__str_single_quotes] = ACTIONS(1628), + [sym__str_back_ticks] = ACTIONS(1628), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1628), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1628), + [anon_sym_err_GT] = ACTIONS(1616), + [anon_sym_out_GT] = ACTIONS(1616), + [anon_sym_e_GT] = ACTIONS(1616), + [anon_sym_o_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT] = ACTIONS(1616), + [anon_sym_err_GT_GT] = ACTIONS(1628), + [anon_sym_out_GT_GT] = ACTIONS(1628), + [anon_sym_e_GT_GT] = ACTIONS(1628), + [anon_sym_o_GT_GT] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1628), + [aux_sym_unquoted_token1] = ACTIONS(1616), + [aux_sym_unquoted_token2] = ACTIONS(4589), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1628), + }, + [1340] = { + [sym_comment] = STATE(1340), + [sym__newline] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(952), + [anon_sym_PIPE] = ACTIONS(952), + [anon_sym_err_GT_PIPE] = ACTIONS(952), + [anon_sym_out_GT_PIPE] = ACTIONS(952), + [anon_sym_e_GT_PIPE] = ACTIONS(952), + [anon_sym_o_GT_PIPE] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(952), + [anon_sym_RPAREN] = ACTIONS(952), + [anon_sym_GT2] = ACTIONS(950), + [anon_sym_DASH2] = ACTIONS(952), + [anon_sym_in2] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_EQ_GT] = ACTIONS(952), + [anon_sym_STAR2] = ACTIONS(950), + [anon_sym_QMARK2] = ACTIONS(952), + [anon_sym_and2] = ACTIONS(952), + [anon_sym_xor2] = ACTIONS(952), + [anon_sym_or2] = ACTIONS(952), + [anon_sym_not_DASHin2] = ACTIONS(952), + [anon_sym_has2] = ACTIONS(952), + [anon_sym_not_DASHhas2] = ACTIONS(952), + [anon_sym_starts_DASHwith2] = ACTIONS(952), + [anon_sym_ends_DASHwith2] = ACTIONS(952), + [anon_sym_EQ_EQ2] = ACTIONS(952), + [anon_sym_BANG_EQ2] = ACTIONS(952), + [anon_sym_LT2] = ACTIONS(950), + [anon_sym_LT_EQ2] = ACTIONS(952), + [anon_sym_GT_EQ2] = ACTIONS(952), + [anon_sym_EQ_TILDE2] = ACTIONS(952), + [anon_sym_BANG_TILDE2] = ACTIONS(952), + [anon_sym_STAR_STAR2] = ACTIONS(952), + [anon_sym_PLUS_PLUS2] = ACTIONS(952), + [anon_sym_SLASH2] = ACTIONS(950), + [anon_sym_mod2] = ACTIONS(952), + [anon_sym_SLASH_SLASH2] = ACTIONS(952), + [anon_sym_PLUS2] = ACTIONS(950), + [anon_sym_bit_DASHshl2] = ACTIONS(952), + [anon_sym_bit_DASHshr2] = ACTIONS(952), + [anon_sym_bit_DASHand2] = ACTIONS(952), + [anon_sym_bit_DASHxor2] = ACTIONS(952), + [anon_sym_bit_DASHor2] = ACTIONS(952), + [anon_sym_DOT_DOT2] = ACTIONS(950), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(952), + [anon_sym_DOT_DOT_LT2] = ACTIONS(952), + [anon_sym_COLON2] = ACTIONS(952), + [anon_sym_DOT2] = ACTIONS(950), + [anon_sym_err_GT] = ACTIONS(950), + [anon_sym_out_GT] = ACTIONS(950), + [anon_sym_e_GT] = ACTIONS(950), + [anon_sym_o_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT] = ACTIONS(950), + [anon_sym_err_GT_GT] = ACTIONS(952), + [anon_sym_out_GT_GT] = ACTIONS(952), + [anon_sym_e_GT_GT] = ACTIONS(952), + [anon_sym_o_GT_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(952), [anon_sym_POUND] = ACTIONS(245), }, - [1402] = { - [sym_comment] = STATE(1402), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_DOT_DOT] = ACTIONS(1666), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_DOT_DOT2] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1666), - [anon_sym_DOT_DOT_LT] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [aux_sym__immediate_decimal_token2] = ACTIONS(4521), - [anon_sym_null] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1668), - [aux_sym__val_number_token5] = ACTIONS(1668), - [aux_sym__val_number_token6] = ACTIONS(1668), - [anon_sym_0b] = ACTIONS(1666), - [anon_sym_0o] = ACTIONS(1666), - [anon_sym_0x] = ACTIONS(1666), - [sym_val_date] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_err_GT] = ACTIONS(1666), - [anon_sym_out_GT] = ACTIONS(1666), - [anon_sym_e_GT] = ACTIONS(1666), - [anon_sym_o_GT] = ACTIONS(1666), - [anon_sym_err_PLUSout_GT] = ACTIONS(1666), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), - [anon_sym_o_PLUSe_GT] = ACTIONS(1666), - [anon_sym_e_PLUSo_GT] = ACTIONS(1666), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [aux_sym_unquoted_token1] = ACTIONS(1666), - [aux_sym_unquoted_token2] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), + [1341] = { + [sym_comment] = STATE(1341), + [ts_builtin_sym_end] = ACTIONS(1688), + [sym__newline] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_err_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_GT_PIPE] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1688), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_LPAREN2] = ACTIONS(1688), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1686), + [anon_sym_DOT_DOT_LT] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [aux_sym__immediate_decimal_token1] = ACTIONS(4591), + [aux_sym__immediate_decimal_token2] = ACTIONS(4593), + [anon_sym_null] = ACTIONS(1688), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1688), + [aux_sym__val_number_decimal_token3] = ACTIONS(1688), + [aux_sym__val_number_decimal_token4] = ACTIONS(1688), + [aux_sym__val_number_token1] = ACTIONS(1688), + [aux_sym__val_number_token2] = ACTIONS(1688), + [aux_sym__val_number_token3] = ACTIONS(1688), + [aux_sym__val_number_token4] = ACTIONS(1688), + [aux_sym__val_number_token5] = ACTIONS(1688), + [aux_sym__val_number_token6] = ACTIONS(1688), + [anon_sym_0b] = ACTIONS(1686), + [anon_sym_0o] = ACTIONS(1686), + [anon_sym_0x] = ACTIONS(1686), + [sym_val_date] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [sym__str_single_quotes] = ACTIONS(1688), + [sym__str_back_ticks] = ACTIONS(1688), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1688), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1688), + [anon_sym_err_GT] = ACTIONS(1686), + [anon_sym_out_GT] = ACTIONS(1686), + [anon_sym_e_GT] = ACTIONS(1686), + [anon_sym_o_GT] = ACTIONS(1686), + [anon_sym_err_PLUSout_GT] = ACTIONS(1686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1686), + [anon_sym_o_PLUSe_GT] = ACTIONS(1686), + [anon_sym_e_PLUSo_GT] = ACTIONS(1686), + [anon_sym_err_GT_GT] = ACTIONS(1688), + [anon_sym_out_GT_GT] = ACTIONS(1688), + [anon_sym_e_GT_GT] = ACTIONS(1688), + [anon_sym_o_GT_GT] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1688), + [aux_sym_unquoted_token1] = ACTIONS(1686), + [aux_sym_unquoted_token2] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1688), }, - [1403] = { - [sym_comment] = STATE(1403), - [sym__newline] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1486), - [anon_sym_err_GT_PIPE] = ACTIONS(1486), - [anon_sym_out_GT_PIPE] = ACTIONS(1486), - [anon_sym_e_GT_PIPE] = ACTIONS(1486), - [anon_sym_o_GT_PIPE] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1486), - [anon_sym_RPAREN] = ACTIONS(1486), - [anon_sym_GT2] = ACTIONS(1484), - [anon_sym_DASH2] = ACTIONS(1486), - [anon_sym_in2] = ACTIONS(1486), - [anon_sym_RBRACE] = ACTIONS(1486), - [anon_sym_STAR2] = ACTIONS(1484), - [anon_sym_and2] = ACTIONS(1486), - [anon_sym_xor2] = ACTIONS(1486), - [anon_sym_or2] = ACTIONS(1486), - [anon_sym_not_DASHin2] = ACTIONS(1486), - [anon_sym_has2] = ACTIONS(1486), - [anon_sym_not_DASHhas2] = ACTIONS(1486), - [anon_sym_starts_DASHwith2] = ACTIONS(1486), - [anon_sym_ends_DASHwith2] = ACTIONS(1486), - [anon_sym_EQ_EQ2] = ACTIONS(1486), - [anon_sym_BANG_EQ2] = ACTIONS(1486), - [anon_sym_LT2] = ACTIONS(1484), - [anon_sym_LT_EQ2] = ACTIONS(1486), - [anon_sym_GT_EQ2] = ACTIONS(1486), - [anon_sym_EQ_TILDE2] = ACTIONS(1486), - [anon_sym_BANG_TILDE2] = ACTIONS(1486), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_STAR_STAR2] = ACTIONS(1486), - [anon_sym_PLUS_PLUS2] = ACTIONS(1486), - [anon_sym_SLASH2] = ACTIONS(1484), - [anon_sym_mod2] = ACTIONS(1486), - [anon_sym_SLASH_SLASH2] = ACTIONS(1486), - [anon_sym_PLUS2] = ACTIONS(1484), - [anon_sym_bit_DASHshl2] = ACTIONS(1486), - [anon_sym_bit_DASHshr2] = ACTIONS(1486), - [anon_sym_bit_DASHand2] = ACTIONS(1486), - [anon_sym_bit_DASHxor2] = ACTIONS(1486), - [anon_sym_bit_DASHor2] = ACTIONS(1486), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [aux_sym__immediate_decimal_token1] = ACTIONS(4665), - [aux_sym__immediate_decimal_token2] = ACTIONS(4667), - [sym_filesize_unit] = ACTIONS(1484), - [sym_duration_unit] = ACTIONS(1486), - [anon_sym_err_GT] = ACTIONS(1484), - [anon_sym_out_GT] = ACTIONS(1484), - [anon_sym_e_GT] = ACTIONS(1484), - [anon_sym_o_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT] = ACTIONS(1484), - [anon_sym_err_GT_GT] = ACTIONS(1486), - [anon_sym_out_GT_GT] = ACTIONS(1486), - [anon_sym_e_GT_GT] = ACTIONS(1486), - [anon_sym_o_GT_GT] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1486), - [aux_sym_unquoted_token2] = ACTIONS(1484), + [1342] = { + [sym_comment] = STATE(1342), + [ts_builtin_sym_end] = ACTIONS(1680), + [sym__newline] = ACTIONS(1680), + [anon_sym_SEMI] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1680), + [anon_sym_err_GT_PIPE] = ACTIONS(1680), + [anon_sym_out_GT_PIPE] = ACTIONS(1680), + [anon_sym_e_GT_PIPE] = ACTIONS(1680), + [anon_sym_o_GT_PIPE] = ACTIONS(1680), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1680), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1680), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1680), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(1680), + [anon_sym_LPAREN] = ACTIONS(1678), + [anon_sym_DOLLAR] = ACTIONS(1678), + [anon_sym_DASH_DASH] = ACTIONS(1680), + [anon_sym_DASH2] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DOT_DOT] = ACTIONS(1678), + [anon_sym_LPAREN2] = ACTIONS(1680), + [anon_sym_DOT_DOT2] = ACTIONS(1678), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1678), + [anon_sym_DOT_DOT_LT] = ACTIONS(1678), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1680), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1680), + [anon_sym_null] = ACTIONS(1680), + [anon_sym_true] = ACTIONS(1680), + [anon_sym_false] = ACTIONS(1680), + [aux_sym__val_number_decimal_token1] = ACTIONS(1678), + [aux_sym__val_number_decimal_token2] = ACTIONS(1680), + [aux_sym__val_number_decimal_token3] = ACTIONS(1680), + [aux_sym__val_number_decimal_token4] = ACTIONS(1680), + [aux_sym__val_number_token1] = ACTIONS(1680), + [aux_sym__val_number_token2] = ACTIONS(1680), + [aux_sym__val_number_token3] = ACTIONS(1680), + [aux_sym__val_number_token4] = ACTIONS(1680), + [aux_sym__val_number_token5] = ACTIONS(1680), + [aux_sym__val_number_token6] = ACTIONS(1680), + [anon_sym_0b] = ACTIONS(1678), + [sym_filesize_unit] = ACTIONS(1680), + [sym_duration_unit] = ACTIONS(1680), + [anon_sym_0o] = ACTIONS(1678), + [anon_sym_0x] = ACTIONS(1678), + [sym_val_date] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1680), + [sym__str_single_quotes] = ACTIONS(1680), + [sym__str_back_ticks] = ACTIONS(1680), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1680), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1680), + [anon_sym_err_GT] = ACTIONS(1678), + [anon_sym_out_GT] = ACTIONS(1678), + [anon_sym_e_GT] = ACTIONS(1678), + [anon_sym_o_GT] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT] = ACTIONS(1678), + [anon_sym_err_GT_GT] = ACTIONS(1680), + [anon_sym_out_GT_GT] = ACTIONS(1680), + [anon_sym_e_GT_GT] = ACTIONS(1680), + [anon_sym_o_GT_GT] = ACTIONS(1680), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1680), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1680), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1680), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1680), + [aux_sym_unquoted_token1] = ACTIONS(1678), + [aux_sym_unquoted_token2] = ACTIONS(1678), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1680), + }, + [1343] = { + [sym__match_pattern] = STATE(6873), + [sym__match_pattern_expression] = STATE(6638), + [sym__match_pattern_value] = STATE(6639), + [sym__match_pattern_list] = STATE(6641), + [sym__match_pattern_record] = STATE(6644), + [sym_expr_parenthesized] = STATE(5503), + [sym_val_range] = STATE(6639), + [sym__val_range] = STATE(7094), + [sym_val_nothing] = STATE(6650), + [sym_val_bool] = STATE(6765), + [sym_val_variable] = STATE(5516), + [sym_val_number] = STATE(6650), + [sym__val_number_decimal] = STATE(5312), + [sym__val_number] = STATE(1499), + [sym_val_duration] = STATE(6650), + [sym_val_filesize] = STATE(6650), + [sym_val_binary] = STATE(6650), + [sym_val_string] = STATE(6650), + [sym__raw_str] = STATE(1340), + [sym__str_double_quotes] = STATE(1340), + [sym_val_table] = STATE(6650), + [sym_unquoted] = STATE(6681), + [sym__unquoted_anonymous_prefix] = STATE(7123), + [sym_comment] = STATE(1343), + [anon_sym_LBRACK] = ACTIONS(3548), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(3550), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym_DOT_DOT] = ACTIONS(4595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4597), + [anon_sym_DOT_DOT_LT] = ACTIONS(4597), + [anon_sym_null] = ACTIONS(4599), + [anon_sym_true] = ACTIONS(4601), + [anon_sym_false] = ACTIONS(4601), + [aux_sym__val_number_decimal_token1] = ACTIONS(4603), + [aux_sym__val_number_decimal_token2] = ACTIONS(4605), + [aux_sym__val_number_decimal_token3] = ACTIONS(4607), + [aux_sym__val_number_decimal_token4] = ACTIONS(4609), + [aux_sym__val_number_token1] = ACTIONS(223), + [aux_sym__val_number_token2] = ACTIONS(223), + [aux_sym__val_number_token3] = ACTIONS(223), + [aux_sym__val_number_token4] = ACTIONS(4611), + [aux_sym__val_number_token5] = ACTIONS(4611), + [aux_sym__val_number_token6] = ACTIONS(4611), + [anon_sym_0b] = ACTIONS(227), + [anon_sym_0o] = ACTIONS(229), + [anon_sym_0x] = ACTIONS(229), + [sym_val_date] = ACTIONS(4613), + [anon_sym_DQUOTE] = ACTIONS(233), + [sym__str_single_quotes] = ACTIONS(235), + [sym__str_back_ticks] = ACTIONS(235), + [anon_sym_err_GT] = ACTIONS(2675), + [anon_sym_out_GT] = ACTIONS(2675), + [anon_sym_e_GT] = ACTIONS(2675), + [anon_sym_o_GT] = ACTIONS(2675), + [anon_sym_err_PLUSout_GT] = ACTIONS(2675), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2675), + [anon_sym_o_PLUSe_GT] = ACTIONS(2675), + [anon_sym_e_PLUSo_GT] = ACTIONS(2675), + [anon_sym_err_GT_GT] = ACTIONS(2677), + [anon_sym_out_GT_GT] = ACTIONS(2677), + [anon_sym_e_GT_GT] = ACTIONS(2677), + [anon_sym_o_GT_GT] = ACTIONS(2677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2677), + [aux_sym_unquoted_token1] = ACTIONS(3468), [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(247), }, - [1404] = { - [sym_comment] = STATE(1404), - [sym__newline] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(944), - [anon_sym_err_GT_PIPE] = ACTIONS(944), - [anon_sym_out_GT_PIPE] = ACTIONS(944), - [anon_sym_e_GT_PIPE] = ACTIONS(944), - [anon_sym_o_GT_PIPE] = ACTIONS(944), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(944), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(944), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(944), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(944), - [anon_sym_RPAREN] = ACTIONS(944), - [anon_sym_GT2] = ACTIONS(942), - [anon_sym_DASH2] = ACTIONS(944), - [anon_sym_in2] = ACTIONS(944), - [anon_sym_if] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(944), - [anon_sym_RBRACE] = ACTIONS(944), - [anon_sym_EQ_GT] = ACTIONS(944), - [anon_sym_STAR2] = ACTIONS(942), - [anon_sym_QMARK2] = ACTIONS(4669), - [anon_sym_and2] = ACTIONS(944), - [anon_sym_xor2] = ACTIONS(944), - [anon_sym_or2] = ACTIONS(944), - [anon_sym_not_DASHin2] = ACTIONS(944), - [anon_sym_has2] = ACTIONS(944), - [anon_sym_not_DASHhas2] = ACTIONS(944), - [anon_sym_starts_DASHwith2] = ACTIONS(944), - [anon_sym_ends_DASHwith2] = ACTIONS(944), - [anon_sym_EQ_EQ2] = ACTIONS(944), - [anon_sym_BANG_EQ2] = ACTIONS(944), - [anon_sym_LT2] = ACTIONS(942), - [anon_sym_LT_EQ2] = ACTIONS(944), - [anon_sym_GT_EQ2] = ACTIONS(944), - [anon_sym_EQ_TILDE2] = ACTIONS(944), - [anon_sym_BANG_TILDE2] = ACTIONS(944), - [anon_sym_STAR_STAR2] = ACTIONS(944), - [anon_sym_PLUS_PLUS2] = ACTIONS(944), - [anon_sym_SLASH2] = ACTIONS(942), - [anon_sym_mod2] = ACTIONS(944), - [anon_sym_SLASH_SLASH2] = ACTIONS(944), - [anon_sym_PLUS2] = ACTIONS(942), - [anon_sym_bit_DASHshl2] = ACTIONS(944), - [anon_sym_bit_DASHshr2] = ACTIONS(944), - [anon_sym_bit_DASHand2] = ACTIONS(944), - [anon_sym_bit_DASHxor2] = ACTIONS(944), - [anon_sym_bit_DASHor2] = ACTIONS(944), - [anon_sym_DOT_DOT2] = ACTIONS(942), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(944), - [anon_sym_DOT_DOT_LT2] = ACTIONS(944), - [anon_sym_COLON2] = ACTIONS(944), - [anon_sym_DOT2] = ACTIONS(942), - [anon_sym_err_GT] = ACTIONS(942), - [anon_sym_out_GT] = ACTIONS(942), - [anon_sym_e_GT] = ACTIONS(942), - [anon_sym_o_GT] = ACTIONS(942), - [anon_sym_err_PLUSout_GT] = ACTIONS(942), - [anon_sym_out_PLUSerr_GT] = ACTIONS(942), - [anon_sym_o_PLUSe_GT] = ACTIONS(942), - [anon_sym_e_PLUSo_GT] = ACTIONS(942), - [anon_sym_err_GT_GT] = ACTIONS(944), - [anon_sym_out_GT_GT] = ACTIONS(944), - [anon_sym_e_GT_GT] = ACTIONS(944), - [anon_sym_o_GT_GT] = ACTIONS(944), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(944), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(944), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(944), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(944), + [1344] = { + [sym_comment] = STATE(1344), + [sym__newline] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_PIPE] = ACTIONS(948), + [anon_sym_err_GT_PIPE] = ACTIONS(948), + [anon_sym_out_GT_PIPE] = ACTIONS(948), + [anon_sym_e_GT_PIPE] = ACTIONS(948), + [anon_sym_o_GT_PIPE] = ACTIONS(948), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(948), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(948), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(948), + [anon_sym_GT2] = ACTIONS(946), + [anon_sym_DASH2] = ACTIONS(948), + [anon_sym_in2] = ACTIONS(948), + [anon_sym_if] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(948), + [anon_sym_RBRACE] = ACTIONS(948), + [anon_sym_EQ_GT] = ACTIONS(948), + [anon_sym_STAR2] = ACTIONS(946), + [anon_sym_QMARK2] = ACTIONS(948), + [anon_sym_and2] = ACTIONS(948), + [anon_sym_xor2] = ACTIONS(948), + [anon_sym_or2] = ACTIONS(948), + [anon_sym_not_DASHin2] = ACTIONS(948), + [anon_sym_has2] = ACTIONS(948), + [anon_sym_not_DASHhas2] = ACTIONS(948), + [anon_sym_starts_DASHwith2] = ACTIONS(948), + [anon_sym_ends_DASHwith2] = ACTIONS(948), + [anon_sym_EQ_EQ2] = ACTIONS(948), + [anon_sym_BANG_EQ2] = ACTIONS(948), + [anon_sym_LT2] = ACTIONS(946), + [anon_sym_LT_EQ2] = ACTIONS(948), + [anon_sym_GT_EQ2] = ACTIONS(948), + [anon_sym_EQ_TILDE2] = ACTIONS(948), + [anon_sym_BANG_TILDE2] = ACTIONS(948), + [anon_sym_STAR_STAR2] = ACTIONS(948), + [anon_sym_PLUS_PLUS2] = ACTIONS(948), + [anon_sym_SLASH2] = ACTIONS(946), + [anon_sym_mod2] = ACTIONS(948), + [anon_sym_SLASH_SLASH2] = ACTIONS(948), + [anon_sym_PLUS2] = ACTIONS(946), + [anon_sym_bit_DASHshl2] = ACTIONS(948), + [anon_sym_bit_DASHshr2] = ACTIONS(948), + [anon_sym_bit_DASHand2] = ACTIONS(948), + [anon_sym_bit_DASHxor2] = ACTIONS(948), + [anon_sym_bit_DASHor2] = ACTIONS(948), + [anon_sym_DOT_DOT2] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(948), + [anon_sym_DOT_DOT_LT2] = ACTIONS(948), + [anon_sym_COLON2] = ACTIONS(948), + [anon_sym_DOT2] = ACTIONS(946), + [anon_sym_err_GT] = ACTIONS(946), + [anon_sym_out_GT] = ACTIONS(946), + [anon_sym_e_GT] = ACTIONS(946), + [anon_sym_o_GT] = ACTIONS(946), + [anon_sym_err_PLUSout_GT] = ACTIONS(946), + [anon_sym_out_PLUSerr_GT] = ACTIONS(946), + [anon_sym_o_PLUSe_GT] = ACTIONS(946), + [anon_sym_e_PLUSo_GT] = ACTIONS(946), + [anon_sym_err_GT_GT] = ACTIONS(948), + [anon_sym_out_GT_GT] = ACTIONS(948), + [anon_sym_e_GT_GT] = ACTIONS(948), + [anon_sym_o_GT_GT] = ACTIONS(948), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(948), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(948), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(948), [anon_sym_POUND] = ACTIONS(245), }, - [1405] = { - [sym_comment] = STATE(1405), - [sym__newline] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_PIPE] = ACTIONS(950), - [anon_sym_err_GT_PIPE] = ACTIONS(950), - [anon_sym_out_GT_PIPE] = ACTIONS(950), - [anon_sym_e_GT_PIPE] = ACTIONS(950), - [anon_sym_o_GT_PIPE] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), - [anon_sym_RPAREN] = ACTIONS(950), - [anon_sym_GT2] = ACTIONS(948), - [anon_sym_DASH2] = ACTIONS(950), - [anon_sym_in2] = ACTIONS(950), - [anon_sym_if] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_EQ_GT] = ACTIONS(950), - [anon_sym_STAR2] = ACTIONS(948), - [anon_sym_QMARK2] = ACTIONS(4671), - [anon_sym_and2] = ACTIONS(950), - [anon_sym_xor2] = ACTIONS(950), - [anon_sym_or2] = ACTIONS(950), - [anon_sym_not_DASHin2] = ACTIONS(950), - [anon_sym_has2] = ACTIONS(950), - [anon_sym_not_DASHhas2] = ACTIONS(950), - [anon_sym_starts_DASHwith2] = ACTIONS(950), - [anon_sym_ends_DASHwith2] = ACTIONS(950), - [anon_sym_EQ_EQ2] = ACTIONS(950), - [anon_sym_BANG_EQ2] = ACTIONS(950), - [anon_sym_LT2] = ACTIONS(948), - [anon_sym_LT_EQ2] = ACTIONS(950), - [anon_sym_GT_EQ2] = ACTIONS(950), - [anon_sym_EQ_TILDE2] = ACTIONS(950), - [anon_sym_BANG_TILDE2] = ACTIONS(950), - [anon_sym_STAR_STAR2] = ACTIONS(950), - [anon_sym_PLUS_PLUS2] = ACTIONS(950), - [anon_sym_SLASH2] = ACTIONS(948), - [anon_sym_mod2] = ACTIONS(950), - [anon_sym_SLASH_SLASH2] = ACTIONS(950), - [anon_sym_PLUS2] = ACTIONS(948), - [anon_sym_bit_DASHshl2] = ACTIONS(950), - [anon_sym_bit_DASHshr2] = ACTIONS(950), - [anon_sym_bit_DASHand2] = ACTIONS(950), - [anon_sym_bit_DASHxor2] = ACTIONS(950), - [anon_sym_bit_DASHor2] = ACTIONS(950), - [anon_sym_DOT_DOT2] = ACTIONS(948), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), - [anon_sym_DOT_DOT_LT2] = ACTIONS(950), - [anon_sym_COLON2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(948), - [anon_sym_err_GT] = ACTIONS(948), - [anon_sym_out_GT] = ACTIONS(948), - [anon_sym_e_GT] = ACTIONS(948), - [anon_sym_o_GT] = ACTIONS(948), - [anon_sym_err_PLUSout_GT] = ACTIONS(948), - [anon_sym_out_PLUSerr_GT] = ACTIONS(948), - [anon_sym_o_PLUSe_GT] = ACTIONS(948), - [anon_sym_e_PLUSo_GT] = ACTIONS(948), - [anon_sym_err_GT_GT] = ACTIONS(950), - [anon_sym_out_GT_GT] = ACTIONS(950), - [anon_sym_e_GT_GT] = ACTIONS(950), - [anon_sym_o_GT_GT] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), + [1345] = { + [sym__expr_parenthesized_immediate] = STATE(1905), + [sym__immediate_decimal] = STATE(1914), + [sym_val_variable] = STATE(1905), + [sym_comment] = STATE(1345), + [ts_builtin_sym_end] = ACTIONS(1445), + [sym__newline] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1445), + [anon_sym_PIPE] = ACTIONS(1445), + [anon_sym_err_GT_PIPE] = ACTIONS(1445), + [anon_sym_out_GT_PIPE] = ACTIONS(1445), + [anon_sym_e_GT_PIPE] = ACTIONS(1445), + [anon_sym_o_GT_PIPE] = ACTIONS(1445), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1445), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1445), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1445), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1445), + [anon_sym_DOLLAR] = ACTIONS(4523), + [anon_sym_GT2] = ACTIONS(1431), + [anon_sym_DASH2] = ACTIONS(1431), + [anon_sym_in2] = ACTIONS(1445), + [anon_sym_STAR2] = ACTIONS(1431), + [anon_sym_and2] = ACTIONS(1445), + [anon_sym_xor2] = ACTIONS(1445), + [anon_sym_or2] = ACTIONS(1445), + [anon_sym_not_DASHin2] = ACTIONS(1445), + [anon_sym_has2] = ACTIONS(1445), + [anon_sym_not_DASHhas2] = ACTIONS(1445), + [anon_sym_starts_DASHwith2] = ACTIONS(1445), + [anon_sym_ends_DASHwith2] = ACTIONS(1445), + [anon_sym_EQ_EQ2] = ACTIONS(1445), + [anon_sym_BANG_EQ2] = ACTIONS(1445), + [anon_sym_LT2] = ACTIONS(1431), + [anon_sym_LT_EQ2] = ACTIONS(1445), + [anon_sym_GT_EQ2] = ACTIONS(1445), + [anon_sym_EQ_TILDE2] = ACTIONS(1445), + [anon_sym_BANG_TILDE2] = ACTIONS(1445), + [anon_sym_LPAREN2] = ACTIONS(4525), + [anon_sym_STAR_STAR2] = ACTIONS(1445), + [anon_sym_PLUS_PLUS2] = ACTIONS(1445), + [anon_sym_SLASH2] = ACTIONS(1431), + [anon_sym_mod2] = ACTIONS(1445), + [anon_sym_SLASH_SLASH2] = ACTIONS(1445), + [anon_sym_PLUS2] = ACTIONS(1431), + [anon_sym_bit_DASHshl2] = ACTIONS(1445), + [anon_sym_bit_DASHshr2] = ACTIONS(1445), + [anon_sym_bit_DASHand2] = ACTIONS(1445), + [anon_sym_bit_DASHxor2] = ACTIONS(1445), + [anon_sym_bit_DASHor2] = ACTIONS(1445), + [anon_sym_DOT] = ACTIONS(4615), + [aux_sym__immediate_decimal_token1] = ACTIONS(4529), + [aux_sym__immediate_decimal_token3] = ACTIONS(4529), + [aux_sym__immediate_decimal_token4] = ACTIONS(4531), + [aux_sym__immediate_decimal_token5] = ACTIONS(4533), + [anon_sym_err_GT] = ACTIONS(1431), + [anon_sym_out_GT] = ACTIONS(1431), + [anon_sym_e_GT] = ACTIONS(1431), + [anon_sym_o_GT] = ACTIONS(1431), + [anon_sym_err_PLUSout_GT] = ACTIONS(1431), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1431), + [anon_sym_o_PLUSe_GT] = ACTIONS(1431), + [anon_sym_e_PLUSo_GT] = ACTIONS(1431), + [anon_sym_err_GT_GT] = ACTIONS(1445), + [anon_sym_out_GT_GT] = ACTIONS(1445), + [anon_sym_e_GT_GT] = ACTIONS(1445), + [anon_sym_o_GT_GT] = ACTIONS(1445), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1445), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1445), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1445), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1445), [anon_sym_POUND] = ACTIONS(245), }, - [1406] = { - [sym_cell_path] = STATE(1648), - [sym_path] = STATE(1582), - [sym_comment] = STATE(1406), - [aux_sym_cell_path_repeat1] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(1700), - [sym__newline] = ACTIONS(1700), - [anon_sym_SEMI] = ACTIONS(1700), - [anon_sym_PIPE] = ACTIONS(1700), - [anon_sym_err_GT_PIPE] = ACTIONS(1700), - [anon_sym_out_GT_PIPE] = ACTIONS(1700), - [anon_sym_e_GT_PIPE] = ACTIONS(1700), - [anon_sym_o_GT_PIPE] = ACTIONS(1700), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1700), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1700), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1700), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1700), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_DOLLAR] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1700), - [anon_sym_DASH2] = ACTIONS(1698), - [anon_sym_LBRACE] = ACTIONS(1700), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_DOT_DOT2] = ACTIONS(1698), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1698), - [anon_sym_DOT_DOT_LT] = ACTIONS(1698), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1700), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1700), - [anon_sym_null] = ACTIONS(1700), - [anon_sym_true] = ACTIONS(1700), - [anon_sym_false] = ACTIONS(1700), - [aux_sym__val_number_decimal_token1] = ACTIONS(1698), - [aux_sym__val_number_decimal_token2] = ACTIONS(1700), - [aux_sym__val_number_decimal_token3] = ACTIONS(1700), - [aux_sym__val_number_decimal_token4] = ACTIONS(1700), - [aux_sym__val_number_token1] = ACTIONS(1700), - [aux_sym__val_number_token2] = ACTIONS(1700), - [aux_sym__val_number_token3] = ACTIONS(1700), - [aux_sym__val_number_token4] = ACTIONS(1700), - [aux_sym__val_number_token5] = ACTIONS(1700), - [aux_sym__val_number_token6] = ACTIONS(1700), - [anon_sym_0b] = ACTIONS(1698), - [anon_sym_0o] = ACTIONS(1698), - [anon_sym_0x] = ACTIONS(1698), - [sym_val_date] = ACTIONS(1700), - [anon_sym_DQUOTE] = ACTIONS(1700), - [sym__str_single_quotes] = ACTIONS(1700), - [sym__str_back_ticks] = ACTIONS(1700), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1700), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1700), - [anon_sym_DOT2] = ACTIONS(4653), - [anon_sym_err_GT] = ACTIONS(1698), - [anon_sym_out_GT] = ACTIONS(1698), - [anon_sym_e_GT] = ACTIONS(1698), - [anon_sym_o_GT] = ACTIONS(1698), - [anon_sym_err_PLUSout_GT] = ACTIONS(1698), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1698), - [anon_sym_o_PLUSe_GT] = ACTIONS(1698), - [anon_sym_e_PLUSo_GT] = ACTIONS(1698), - [anon_sym_err_GT_GT] = ACTIONS(1700), - [anon_sym_out_GT_GT] = ACTIONS(1700), - [anon_sym_e_GT_GT] = ACTIONS(1700), - [anon_sym_o_GT_GT] = ACTIONS(1700), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1700), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1700), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1700), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1700), - [aux_sym_unquoted_token1] = ACTIONS(1698), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1700), + [1346] = { + [sym_comment] = STATE(1346), + [sym__newline] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_err_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_GT_PIPE] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_RPAREN] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(1501), + [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [aux_sym__val_number_decimal_token1] = ACTIONS(1499), + [aux_sym__val_number_decimal_token2] = ACTIONS(1501), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1501), + [aux_sym__val_number_token1] = ACTIONS(1501), + [aux_sym__val_number_token2] = ACTIONS(1501), + [aux_sym__val_number_token3] = ACTIONS(1501), + [aux_sym__val_number_token4] = ACTIONS(1501), + [aux_sym__val_number_token5] = ACTIONS(1501), + [aux_sym__val_number_token6] = ACTIONS(1501), + [anon_sym_0b] = ACTIONS(1499), + [sym_filesize_unit] = ACTIONS(1501), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_0o] = ACTIONS(1499), + [anon_sym_0x] = ACTIONS(1499), + [sym_val_date] = ACTIONS(1501), + [anon_sym_DQUOTE] = ACTIONS(1501), + [sym__str_single_quotes] = ACTIONS(1501), + [sym__str_back_ticks] = ACTIONS(1501), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1501), + [anon_sym_out_GT_GT] = ACTIONS(1501), + [anon_sym_e_GT_GT] = ACTIONS(1501), + [anon_sym_o_GT_GT] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1501), + [aux_sym_unquoted_token1] = ACTIONS(1499), + [aux_sym_unquoted_token2] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1501), }, - [1407] = { - [sym_comment] = STATE(1407), - [ts_builtin_sym_end] = ACTIONS(1494), - [sym__newline] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_PIPE] = ACTIONS(1494), - [anon_sym_err_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_GT_PIPE] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_DOLLAR] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_DOT_DOT] = ACTIONS(1492), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1492), - [anon_sym_DOT_DOT_LT] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [anon_sym_null] = ACTIONS(1494), - [anon_sym_true] = ACTIONS(1494), - [anon_sym_false] = ACTIONS(1494), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1494), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(1494), - [aux_sym__val_number_token2] = ACTIONS(1494), - [aux_sym__val_number_token3] = ACTIONS(1494), - [aux_sym__val_number_token4] = ACTIONS(1494), - [aux_sym__val_number_token5] = ACTIONS(1494), - [aux_sym__val_number_token6] = ACTIONS(1494), - [anon_sym_0b] = ACTIONS(1492), - [sym_filesize_unit] = ACTIONS(1494), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_0o] = ACTIONS(1492), - [anon_sym_0x] = ACTIONS(1492), - [sym_val_date] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym__str_single_quotes] = ACTIONS(1494), - [sym__str_back_ticks] = ACTIONS(1494), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1494), - [anon_sym_out_GT_GT] = ACTIONS(1494), - [anon_sym_e_GT_GT] = ACTIONS(1494), - [anon_sym_o_GT_GT] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1494), - [aux_sym_unquoted_token1] = ACTIONS(1492), - [aux_sym_unquoted_token2] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1494), + [1347] = { + [sym__expr_parenthesized_immediate] = STATE(1882), + [sym__immediate_decimal] = STATE(1883), + [sym_val_variable] = STATE(1882), + [sym_comment] = STATE(1347), + [ts_builtin_sym_end] = ACTIONS(1489), + [sym__newline] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1489), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_err_GT_PIPE] = ACTIONS(1489), + [anon_sym_out_GT_PIPE] = ACTIONS(1489), + [anon_sym_e_GT_PIPE] = ACTIONS(1489), + [anon_sym_o_GT_PIPE] = ACTIONS(1489), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1489), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1489), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1489), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1489), + [anon_sym_DOLLAR] = ACTIONS(4523), + [anon_sym_GT2] = ACTIONS(1479), + [anon_sym_DASH2] = ACTIONS(1479), + [anon_sym_in2] = ACTIONS(1489), + [anon_sym_STAR2] = ACTIONS(1479), + [anon_sym_and2] = ACTIONS(1489), + [anon_sym_xor2] = ACTIONS(1489), + [anon_sym_or2] = ACTIONS(1489), + [anon_sym_not_DASHin2] = ACTIONS(1489), + [anon_sym_has2] = ACTIONS(1489), + [anon_sym_not_DASHhas2] = ACTIONS(1489), + [anon_sym_starts_DASHwith2] = ACTIONS(1489), + [anon_sym_ends_DASHwith2] = ACTIONS(1489), + [anon_sym_EQ_EQ2] = ACTIONS(1489), + [anon_sym_BANG_EQ2] = ACTIONS(1489), + [anon_sym_LT2] = ACTIONS(1479), + [anon_sym_LT_EQ2] = ACTIONS(1489), + [anon_sym_GT_EQ2] = ACTIONS(1489), + [anon_sym_EQ_TILDE2] = ACTIONS(1489), + [anon_sym_BANG_TILDE2] = ACTIONS(1489), + [anon_sym_LPAREN2] = ACTIONS(4525), + [anon_sym_STAR_STAR2] = ACTIONS(1489), + [anon_sym_PLUS_PLUS2] = ACTIONS(1489), + [anon_sym_SLASH2] = ACTIONS(1479), + [anon_sym_mod2] = ACTIONS(1489), + [anon_sym_SLASH_SLASH2] = ACTIONS(1489), + [anon_sym_PLUS2] = ACTIONS(1479), + [anon_sym_bit_DASHshl2] = ACTIONS(1489), + [anon_sym_bit_DASHshr2] = ACTIONS(1489), + [anon_sym_bit_DASHand2] = ACTIONS(1489), + [anon_sym_bit_DASHxor2] = ACTIONS(1489), + [anon_sym_bit_DASHor2] = ACTIONS(1489), + [anon_sym_DOT] = ACTIONS(4617), + [aux_sym__immediate_decimal_token1] = ACTIONS(4529), + [aux_sym__immediate_decimal_token3] = ACTIONS(4529), + [aux_sym__immediate_decimal_token4] = ACTIONS(4531), + [aux_sym__immediate_decimal_token5] = ACTIONS(4533), + [anon_sym_err_GT] = ACTIONS(1479), + [anon_sym_out_GT] = ACTIONS(1479), + [anon_sym_e_GT] = ACTIONS(1479), + [anon_sym_o_GT] = ACTIONS(1479), + [anon_sym_err_PLUSout_GT] = ACTIONS(1479), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1479), + [anon_sym_o_PLUSe_GT] = ACTIONS(1479), + [anon_sym_e_PLUSo_GT] = ACTIONS(1479), + [anon_sym_err_GT_GT] = ACTIONS(1489), + [anon_sym_out_GT_GT] = ACTIONS(1489), + [anon_sym_e_GT_GT] = ACTIONS(1489), + [anon_sym_o_GT_GT] = ACTIONS(1489), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1489), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1489), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1489), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1489), + [anon_sym_POUND] = ACTIONS(245), }, - [1408] = { - [sym_comment] = STATE(1408), - [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(1591), - [anon_sym_RPAREN] = ACTIONS(1591), + [1348] = { + [sym_comment] = STATE(1348), + [sym__newline] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_err_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_GT_PIPE] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1501), + [anon_sym_RPAREN] = ACTIONS(1501), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1501), + [anon_sym_in2] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(1501), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1501), + [anon_sym_xor2] = ACTIONS(1501), + [anon_sym_or2] = ACTIONS(1501), + [anon_sym_not_DASHin2] = ACTIONS(1501), + [anon_sym_has2] = ACTIONS(1501), + [anon_sym_not_DASHhas2] = ACTIONS(1501), + [anon_sym_starts_DASHwith2] = ACTIONS(1501), + [anon_sym_ends_DASHwith2] = ACTIONS(1501), + [anon_sym_EQ_EQ2] = ACTIONS(1501), + [anon_sym_BANG_EQ2] = ACTIONS(1501), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1501), + [anon_sym_GT_EQ2] = ACTIONS(1501), + [anon_sym_EQ_TILDE2] = ACTIONS(1501), + [anon_sym_BANG_TILDE2] = ACTIONS(1501), + [anon_sym_LPAREN2] = ACTIONS(1501), + [anon_sym_STAR_STAR2] = ACTIONS(1501), + [anon_sym_PLUS_PLUS2] = ACTIONS(1501), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1501), + [anon_sym_SLASH_SLASH2] = ACTIONS(1501), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1501), + [anon_sym_bit_DASHshr2] = ACTIONS(1501), + [anon_sym_bit_DASHand2] = ACTIONS(1501), + [anon_sym_bit_DASHxor2] = ACTIONS(1501), + [anon_sym_bit_DASHor2] = ACTIONS(1501), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT] = ACTIONS(4619), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(4621), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1501), + [anon_sym_out_GT_GT] = ACTIONS(1501), + [anon_sym_e_GT_GT] = ACTIONS(1501), + [anon_sym_o_GT_GT] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1501), + [aux_sym_unquoted_token2] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(245), + }, + [1349] = { + [sym_comment] = STATE(1349), + [sym__newline] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_err_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_GT_PIPE] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1493), + [anon_sym_RPAREN] = ACTIONS(1493), + [anon_sym_DOLLAR] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_RBRACE] = ACTIONS(1493), + [anon_sym_DOT_DOT] = ACTIONS(1491), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1491), + [anon_sym_DOT_DOT_LT] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [aux_sym__val_number_decimal_token1] = ACTIONS(1491), + [aux_sym__val_number_decimal_token2] = ACTIONS(1493), + [aux_sym__val_number_decimal_token3] = ACTIONS(1493), + [aux_sym__val_number_decimal_token4] = ACTIONS(1493), + [aux_sym__val_number_token1] = ACTIONS(1493), + [aux_sym__val_number_token2] = ACTIONS(1493), + [aux_sym__val_number_token3] = ACTIONS(1493), + [aux_sym__val_number_token4] = ACTIONS(1493), + [aux_sym__val_number_token5] = ACTIONS(1493), + [aux_sym__val_number_token6] = ACTIONS(1493), + [anon_sym_0b] = ACTIONS(1491), + [sym_filesize_unit] = ACTIONS(1493), + [sym_duration_unit] = ACTIONS(1493), + [anon_sym_0o] = ACTIONS(1491), + [anon_sym_0x] = ACTIONS(1491), + [sym_val_date] = ACTIONS(1493), + [anon_sym_DQUOTE] = ACTIONS(1493), + [sym__str_single_quotes] = ACTIONS(1493), + [sym__str_back_ticks] = ACTIONS(1493), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1493), + [anon_sym_err_GT] = ACTIONS(1491), + [anon_sym_out_GT] = ACTIONS(1491), + [anon_sym_e_GT] = ACTIONS(1491), + [anon_sym_o_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT] = ACTIONS(1491), + [anon_sym_err_GT_GT] = ACTIONS(1493), + [anon_sym_out_GT_GT] = ACTIONS(1493), + [anon_sym_e_GT_GT] = ACTIONS(1493), + [anon_sym_o_GT_GT] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1493), + [aux_sym_unquoted_token1] = ACTIONS(1491), + [aux_sym_unquoted_token2] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1493), + }, + [1350] = { + [sym_comment] = STATE(1350), + [ts_builtin_sym_end] = ACTIONS(1581), + [sym__newline] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1581), + [anon_sym_PIPE] = ACTIONS(1581), + [anon_sym_err_GT_PIPE] = ACTIONS(1581), + [anon_sym_out_GT_PIPE] = ACTIONS(1581), + [anon_sym_e_GT_PIPE] = ACTIONS(1581), + [anon_sym_o_GT_PIPE] = ACTIONS(1581), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1581), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1581), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1581), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1581), [anon_sym_DOLLAR] = ACTIONS(1579), - [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1581), [anon_sym_DASH2] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1591), - [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_LBRACE] = ACTIONS(1581), [anon_sym_DOT_DOT] = ACTIONS(1579), - [anon_sym_DOT_DOT2] = ACTIONS(4673), + [anon_sym_DOT_DOT2] = ACTIONS(1579), [anon_sym_DOT_DOT_EQ] = ACTIONS(1579), [anon_sym_DOT_DOT_LT] = ACTIONS(1579), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4675), - [anon_sym_null] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [aux_sym__immediate_decimal_token2] = ACTIONS(4623), + [anon_sym_null] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1581), + [anon_sym_false] = ACTIONS(1581), [aux_sym__val_number_decimal_token1] = ACTIONS(1579), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [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), + [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_0b] = ACTIONS(1579), - [sym_filesize_unit] = ACTIONS(4677), - [sym_duration_unit] = ACTIONS(4679), + [sym_filesize_unit] = ACTIONS(1581), + [sym_duration_unit] = ACTIONS(1581), [anon_sym_0o] = ACTIONS(1579), [anon_sym_0x] = ACTIONS(1579), - [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), + [sym_val_date] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1581), + [sym__str_single_quotes] = ACTIONS(1581), + [sym__str_back_ticks] = ACTIONS(1581), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1581), [anon_sym_err_GT] = ACTIONS(1579), [anon_sym_out_GT] = ACTIONS(1579), [anon_sym_e_GT] = ACTIONS(1579), @@ -211045,495 +204334,429 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), [anon_sym_o_PLUSe_GT] = ACTIONS(1579), [anon_sym_e_PLUSo_GT] = ACTIONS(1579), - [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), + [anon_sym_err_GT_GT] = ACTIONS(1581), + [anon_sym_out_GT_GT] = ACTIONS(1581), + [anon_sym_e_GT_GT] = ACTIONS(1581), + [anon_sym_o_GT_GT] = ACTIONS(1581), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1581), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1581), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1581), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1581), [aux_sym_unquoted_token1] = ACTIONS(1579), - [aux_sym_unquoted_token2] = ACTIONS(4681), + [aux_sym_unquoted_token2] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1591), + [sym_raw_string_begin] = ACTIONS(1581), }, - [1409] = { - [sym_comment] = STATE(1409), - [sym__newline] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1540), - [anon_sym_err_GT_PIPE] = ACTIONS(1540), - [anon_sym_out_GT_PIPE] = ACTIONS(1540), - [anon_sym_e_GT_PIPE] = ACTIONS(1540), - [anon_sym_o_GT_PIPE] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1540), - [anon_sym_RPAREN] = ACTIONS(1540), - [anon_sym_GT2] = ACTIONS(1538), - [anon_sym_DASH2] = ACTIONS(1540), - [anon_sym_in2] = ACTIONS(1540), - [anon_sym_RBRACE] = ACTIONS(1540), - [anon_sym_STAR2] = ACTIONS(1538), - [anon_sym_and2] = ACTIONS(1540), - [anon_sym_xor2] = ACTIONS(1540), - [anon_sym_or2] = ACTIONS(1540), - [anon_sym_not_DASHin2] = ACTIONS(1540), - [anon_sym_has2] = ACTIONS(1540), - [anon_sym_not_DASHhas2] = ACTIONS(1540), - [anon_sym_starts_DASHwith2] = ACTIONS(1540), - [anon_sym_ends_DASHwith2] = ACTIONS(1540), - [anon_sym_EQ_EQ2] = ACTIONS(1540), - [anon_sym_BANG_EQ2] = ACTIONS(1540), - [anon_sym_LT2] = ACTIONS(1538), - [anon_sym_LT_EQ2] = ACTIONS(1540), - [anon_sym_GT_EQ2] = ACTIONS(1540), - [anon_sym_EQ_TILDE2] = ACTIONS(1540), - [anon_sym_BANG_TILDE2] = ACTIONS(1540), - [anon_sym_LPAREN2] = ACTIONS(1540), - [anon_sym_STAR_STAR2] = ACTIONS(1540), - [anon_sym_PLUS_PLUS2] = ACTIONS(1540), - [anon_sym_SLASH2] = ACTIONS(1538), - [anon_sym_mod2] = ACTIONS(1540), - [anon_sym_SLASH_SLASH2] = ACTIONS(1540), - [anon_sym_PLUS2] = ACTIONS(1538), - [anon_sym_bit_DASHshl2] = ACTIONS(1540), - [anon_sym_bit_DASHshr2] = ACTIONS(1540), - [anon_sym_bit_DASHand2] = ACTIONS(1540), - [anon_sym_bit_DASHxor2] = ACTIONS(1540), - [anon_sym_bit_DASHor2] = ACTIONS(1540), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [aux_sym__immediate_decimal_token2] = ACTIONS(4683), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1540), - [anon_sym_err_GT] = ACTIONS(1538), - [anon_sym_out_GT] = ACTIONS(1538), - [anon_sym_e_GT] = ACTIONS(1538), - [anon_sym_o_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT] = ACTIONS(1538), - [anon_sym_err_GT_GT] = ACTIONS(1540), - [anon_sym_out_GT_GT] = ACTIONS(1540), - [anon_sym_e_GT_GT] = ACTIONS(1540), - [anon_sym_o_GT_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1540), - [aux_sym_unquoted_token2] = ACTIONS(1538), + [1351] = { + [sym_comment] = STATE(1351), + [sym__newline] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1581), + [anon_sym_PIPE] = ACTIONS(1581), + [anon_sym_err_GT_PIPE] = ACTIONS(1581), + [anon_sym_out_GT_PIPE] = ACTIONS(1581), + [anon_sym_e_GT_PIPE] = ACTIONS(1581), + [anon_sym_o_GT_PIPE] = ACTIONS(1581), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1581), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1581), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1581), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_RPAREN] = ACTIONS(1581), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1581), + [anon_sym_DASH2] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_DOT_DOT] = ACTIONS(1579), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1579), + [anon_sym_DOT_DOT_LT] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [anon_sym_null] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1581), + [anon_sym_false] = ACTIONS(1581), + [aux_sym__val_number_decimal_token1] = ACTIONS(1579), + [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_0b] = ACTIONS(1579), + [sym_filesize_unit] = ACTIONS(1581), + [sym_duration_unit] = ACTIONS(1581), + [anon_sym_0o] = ACTIONS(1579), + [anon_sym_0x] = ACTIONS(1579), + [sym_val_date] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1581), + [sym__str_single_quotes] = ACTIONS(1581), + [sym__str_back_ticks] = ACTIONS(1581), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1581), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [anon_sym_err_GT_GT] = ACTIONS(1581), + [anon_sym_out_GT_GT] = ACTIONS(1581), + [anon_sym_e_GT_GT] = ACTIONS(1581), + [anon_sym_o_GT_GT] = ACTIONS(1581), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1581), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1581), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1581), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1581), + [aux_sym_unquoted_token1] = ACTIONS(1579), + [aux_sym_unquoted_token2] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1581), }, - [1410] = { - [sym_comment] = STATE(1410), - [sym__newline] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_err_GT_PIPE] = ACTIONS(1792), - [anon_sym_out_GT_PIPE] = ACTIONS(1792), - [anon_sym_e_GT_PIPE] = ACTIONS(1792), - [anon_sym_o_GT_PIPE] = ACTIONS(1792), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1792), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1792), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1792), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_DASH2] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_DOT_DOT2] = ACTIONS(1790), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1790), - [anon_sym_DOT_DOT_LT] = ACTIONS(1790), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1792), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1792), - [anon_sym_false] = ACTIONS(1792), - [aux_sym__val_number_decimal_token1] = ACTIONS(1790), - [aux_sym__val_number_decimal_token2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1792), - [aux_sym__val_number_decimal_token4] = ACTIONS(1792), - [aux_sym__val_number_token1] = ACTIONS(1792), - [aux_sym__val_number_token2] = ACTIONS(1792), - [aux_sym__val_number_token3] = ACTIONS(1792), - [aux_sym__val_number_token4] = ACTIONS(1792), - [aux_sym__val_number_token5] = ACTIONS(1792), - [aux_sym__val_number_token6] = ACTIONS(1792), - [anon_sym_0b] = ACTIONS(1790), - [anon_sym_0o] = ACTIONS(1790), - [anon_sym_0x] = ACTIONS(1790), - [sym_val_date] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym__str_single_quotes] = ACTIONS(1792), - [sym__str_back_ticks] = ACTIONS(1792), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1792), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1792), - [anon_sym_err_GT] = ACTIONS(1790), - [anon_sym_out_GT] = ACTIONS(1790), - [anon_sym_e_GT] = ACTIONS(1790), - [anon_sym_o_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT] = ACTIONS(1790), - [anon_sym_err_GT_GT] = ACTIONS(1792), - [anon_sym_out_GT_GT] = ACTIONS(1792), - [anon_sym_e_GT_GT] = ACTIONS(1792), - [anon_sym_o_GT_GT] = ACTIONS(1792), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1792), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1792), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1792), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1792), - [aux_sym_unquoted_token1] = ACTIONS(1790), - [aux_sym_unquoted_token2] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [1411] = { - [sym_comment] = STATE(1411), - [ts_builtin_sym_end] = ACTIONS(1486), - [sym__newline] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1486), - [anon_sym_err_GT_PIPE] = ACTIONS(1486), - [anon_sym_out_GT_PIPE] = ACTIONS(1486), - [anon_sym_e_GT_PIPE] = ACTIONS(1486), - [anon_sym_o_GT_PIPE] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1486), - [anon_sym_DOLLAR] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DASH2] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1484), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1484), - [anon_sym_DOT_DOT_LT] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [anon_sym_null] = ACTIONS(1486), - [anon_sym_true] = ACTIONS(1486), - [anon_sym_false] = ACTIONS(1486), - [aux_sym__val_number_decimal_token1] = ACTIONS(1484), - [aux_sym__val_number_decimal_token2] = ACTIONS(1486), - [aux_sym__val_number_decimal_token3] = ACTIONS(1486), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), - [aux_sym__val_number_token1] = ACTIONS(1486), - [aux_sym__val_number_token2] = ACTIONS(1486), - [aux_sym__val_number_token3] = ACTIONS(1486), - [aux_sym__val_number_token4] = ACTIONS(1486), - [aux_sym__val_number_token5] = ACTIONS(1486), - [aux_sym__val_number_token6] = ACTIONS(1486), - [anon_sym_0b] = ACTIONS(1484), - [sym_filesize_unit] = ACTIONS(1486), - [sym_duration_unit] = ACTIONS(1486), - [anon_sym_0o] = ACTIONS(1484), - [anon_sym_0x] = ACTIONS(1484), - [sym_val_date] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym__str_single_quotes] = ACTIONS(1486), - [sym__str_back_ticks] = ACTIONS(1486), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1486), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1486), - [anon_sym_err_GT] = ACTIONS(1484), - [anon_sym_out_GT] = ACTIONS(1484), - [anon_sym_e_GT] = ACTIONS(1484), - [anon_sym_o_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT] = ACTIONS(1484), - [anon_sym_err_GT_GT] = ACTIONS(1486), - [anon_sym_out_GT_GT] = ACTIONS(1486), - [anon_sym_e_GT_GT] = ACTIONS(1486), - [anon_sym_o_GT_GT] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1486), - [aux_sym_unquoted_token1] = ACTIONS(1484), - [aux_sym_unquoted_token2] = ACTIONS(1484), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1486), + [1352] = { + [sym_comment] = STATE(1352), + [sym__newline] = ACTIONS(1680), + [anon_sym_SEMI] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1680), + [anon_sym_err_GT_PIPE] = ACTIONS(1680), + [anon_sym_out_GT_PIPE] = ACTIONS(1680), + [anon_sym_e_GT_PIPE] = ACTIONS(1680), + [anon_sym_o_GT_PIPE] = ACTIONS(1680), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1680), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1680), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1680), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(1680), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_RPAREN] = ACTIONS(1680), + [anon_sym_DOLLAR] = ACTIONS(1678), + [anon_sym_DASH_DASH] = ACTIONS(1680), + [anon_sym_DASH2] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(1680), + [anon_sym_DOT_DOT] = ACTIONS(1678), + [anon_sym_DOT_DOT2] = ACTIONS(1678), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1678), + [anon_sym_DOT_DOT_LT] = ACTIONS(1678), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1680), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1680), + [anon_sym_null] = ACTIONS(1680), + [anon_sym_true] = ACTIONS(1680), + [anon_sym_false] = ACTIONS(1680), + [aux_sym__val_number_decimal_token1] = ACTIONS(1678), + [aux_sym__val_number_decimal_token2] = ACTIONS(1680), + [aux_sym__val_number_decimal_token3] = ACTIONS(1680), + [aux_sym__val_number_decimal_token4] = ACTIONS(1680), + [aux_sym__val_number_token1] = ACTIONS(1680), + [aux_sym__val_number_token2] = ACTIONS(1680), + [aux_sym__val_number_token3] = ACTIONS(1680), + [aux_sym__val_number_token4] = ACTIONS(1680), + [aux_sym__val_number_token5] = ACTIONS(1680), + [aux_sym__val_number_token6] = ACTIONS(1680), + [anon_sym_0b] = ACTIONS(1678), + [sym_filesize_unit] = ACTIONS(1680), + [sym_duration_unit] = ACTIONS(1680), + [anon_sym_0o] = ACTIONS(1678), + [anon_sym_0x] = ACTIONS(1678), + [sym_val_date] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1680), + [sym__str_single_quotes] = ACTIONS(1680), + [sym__str_back_ticks] = ACTIONS(1680), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1680), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1680), + [anon_sym_err_GT] = ACTIONS(1678), + [anon_sym_out_GT] = ACTIONS(1678), + [anon_sym_e_GT] = ACTIONS(1678), + [anon_sym_o_GT] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT] = ACTIONS(1678), + [anon_sym_err_GT_GT] = ACTIONS(1680), + [anon_sym_out_GT_GT] = ACTIONS(1680), + [anon_sym_e_GT_GT] = ACTIONS(1680), + [anon_sym_o_GT_GT] = ACTIONS(1680), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1680), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1680), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1680), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1680), + [aux_sym_unquoted_token1] = ACTIONS(1678), + [aux_sym_unquoted_token2] = ACTIONS(1678), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1680), }, - [1412] = { - [sym__expr_parenthesized_immediate] = STATE(2498), - [sym__immediate_decimal] = STATE(2499), - [sym_val_variable] = STATE(2498), - [sym_comment] = STATE(1412), - [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_DOLLAR] = ACTIONS(4499), - [anon_sym_GT2] = ACTIONS(1575), - [anon_sym_DASH2] = ACTIONS(1575), - [anon_sym_in2] = ACTIONS(1577), - [anon_sym_STAR2] = ACTIONS(1575), - [anon_sym_and2] = ACTIONS(1577), - [anon_sym_xor2] = ACTIONS(1577), - [anon_sym_or2] = ACTIONS(1577), - [anon_sym_not_DASHin2] = ACTIONS(1577), - [anon_sym_has2] = ACTIONS(1577), - [anon_sym_not_DASHhas2] = ACTIONS(1577), - [anon_sym_starts_DASHwith2] = ACTIONS(1577), - [anon_sym_ends_DASHwith2] = ACTIONS(1577), - [anon_sym_EQ_EQ2] = ACTIONS(1577), - [anon_sym_BANG_EQ2] = ACTIONS(1577), - [anon_sym_LT2] = ACTIONS(1575), - [anon_sym_LT_EQ2] = ACTIONS(1577), - [anon_sym_GT_EQ2] = ACTIONS(1577), - [anon_sym_EQ_TILDE2] = ACTIONS(1577), - [anon_sym_BANG_TILDE2] = ACTIONS(1577), - [anon_sym_LPAREN2] = ACTIONS(4501), - [anon_sym_STAR_STAR2] = ACTIONS(1577), - [anon_sym_PLUS_PLUS2] = ACTIONS(1577), - [anon_sym_SLASH2] = ACTIONS(1575), - [anon_sym_mod2] = ACTIONS(1577), - [anon_sym_SLASH_SLASH2] = ACTIONS(1577), - [anon_sym_PLUS2] = ACTIONS(1575), - [anon_sym_bit_DASHshl2] = ACTIONS(1577), - [anon_sym_bit_DASHshr2] = ACTIONS(1577), - [anon_sym_bit_DASHand2] = ACTIONS(1577), - [anon_sym_bit_DASHxor2] = ACTIONS(1577), - [anon_sym_bit_DASHor2] = ACTIONS(1577), - [aux_sym__immediate_decimal_token1] = ACTIONS(4685), - [aux_sym__immediate_decimal_token3] = ACTIONS(4685), - [aux_sym__immediate_decimal_token4] = ACTIONS(4507), - [aux_sym__immediate_decimal_token5] = ACTIONS(4509), - [anon_sym_err_GT] = ACTIONS(1575), - [anon_sym_out_GT] = ACTIONS(1575), - [anon_sym_e_GT] = ACTIONS(1575), - [anon_sym_o_GT] = ACTIONS(1575), - [anon_sym_err_PLUSout_GT] = ACTIONS(1575), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1575), - [anon_sym_o_PLUSe_GT] = ACTIONS(1575), - [anon_sym_e_PLUSo_GT] = ACTIONS(1575), - [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), + [1353] = { + [sym__expr_parenthesized_immediate] = STATE(2355), + [sym__immediate_decimal] = STATE(2157), + [sym_val_variable] = STATE(2355), + [sym_comment] = STATE(1353), + [ts_builtin_sym_end] = ACTIONS(1445), + [sym__newline] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1445), + [anon_sym_PIPE] = ACTIONS(1445), + [anon_sym_err_GT_PIPE] = ACTIONS(1445), + [anon_sym_out_GT_PIPE] = ACTIONS(1445), + [anon_sym_e_GT_PIPE] = ACTIONS(1445), + [anon_sym_o_GT_PIPE] = ACTIONS(1445), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1445), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1445), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1445), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1445), + [anon_sym_DOLLAR] = ACTIONS(4523), + [anon_sym_GT2] = ACTIONS(1431), + [anon_sym_DASH2] = ACTIONS(1431), + [anon_sym_in2] = ACTIONS(1445), + [anon_sym_STAR2] = ACTIONS(1431), + [anon_sym_and2] = ACTIONS(1445), + [anon_sym_xor2] = ACTIONS(1445), + [anon_sym_or2] = ACTIONS(1445), + [anon_sym_not_DASHin2] = ACTIONS(1445), + [anon_sym_has2] = ACTIONS(1445), + [anon_sym_not_DASHhas2] = ACTIONS(1445), + [anon_sym_starts_DASHwith2] = ACTIONS(1445), + [anon_sym_ends_DASHwith2] = ACTIONS(1445), + [anon_sym_EQ_EQ2] = ACTIONS(1445), + [anon_sym_BANG_EQ2] = ACTIONS(1445), + [anon_sym_LT2] = ACTIONS(1431), + [anon_sym_LT_EQ2] = ACTIONS(1445), + [anon_sym_GT_EQ2] = ACTIONS(1445), + [anon_sym_EQ_TILDE2] = ACTIONS(1445), + [anon_sym_BANG_TILDE2] = ACTIONS(1445), + [anon_sym_LPAREN2] = ACTIONS(4525), + [anon_sym_STAR_STAR2] = ACTIONS(1445), + [anon_sym_PLUS_PLUS2] = ACTIONS(1445), + [anon_sym_SLASH2] = ACTIONS(1431), + [anon_sym_mod2] = ACTIONS(1445), + [anon_sym_SLASH_SLASH2] = ACTIONS(1445), + [anon_sym_PLUS2] = ACTIONS(1431), + [anon_sym_bit_DASHshl2] = ACTIONS(1445), + [anon_sym_bit_DASHshr2] = ACTIONS(1445), + [anon_sym_bit_DASHand2] = ACTIONS(1445), + [anon_sym_bit_DASHxor2] = ACTIONS(1445), + [anon_sym_bit_DASHor2] = ACTIONS(1445), + [aux_sym__immediate_decimal_token1] = ACTIONS(4570), + [aux_sym__immediate_decimal_token3] = ACTIONS(4570), + [aux_sym__immediate_decimal_token4] = ACTIONS(4572), + [aux_sym__immediate_decimal_token5] = ACTIONS(4574), + [anon_sym_err_GT] = ACTIONS(1431), + [anon_sym_out_GT] = ACTIONS(1431), + [anon_sym_e_GT] = ACTIONS(1431), + [anon_sym_o_GT] = ACTIONS(1431), + [anon_sym_err_PLUSout_GT] = ACTIONS(1431), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1431), + [anon_sym_o_PLUSe_GT] = ACTIONS(1431), + [anon_sym_e_PLUSo_GT] = ACTIONS(1431), + [anon_sym_err_GT_GT] = ACTIONS(1445), + [anon_sym_out_GT_GT] = ACTIONS(1445), + [anon_sym_e_GT_GT] = ACTIONS(1445), + [anon_sym_o_GT_GT] = ACTIONS(1445), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1445), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1445), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1445), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1445), + [aux_sym_unquoted_token2] = ACTIONS(1447), [anon_sym_POUND] = ACTIONS(245), }, - [1413] = { - [sym__expr_parenthesized_immediate] = STATE(2500), - [sym__immediate_decimal] = STATE(2501), - [sym_val_variable] = STATE(2500), - [sym_comment] = STATE(1413), - [ts_builtin_sym_end] = ACTIONS(1552), - [sym__newline] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_err_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_GT_PIPE] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1552), - [anon_sym_DOLLAR] = ACTIONS(4499), - [anon_sym_GT2] = ACTIONS(1544), - [anon_sym_DASH2] = ACTIONS(1544), - [anon_sym_in2] = ACTIONS(1552), - [anon_sym_STAR2] = ACTIONS(1544), - [anon_sym_and2] = ACTIONS(1552), - [anon_sym_xor2] = ACTIONS(1552), - [anon_sym_or2] = ACTIONS(1552), - [anon_sym_not_DASHin2] = ACTIONS(1552), - [anon_sym_has2] = ACTIONS(1552), - [anon_sym_not_DASHhas2] = ACTIONS(1552), - [anon_sym_starts_DASHwith2] = ACTIONS(1552), - [anon_sym_ends_DASHwith2] = ACTIONS(1552), - [anon_sym_EQ_EQ2] = ACTIONS(1552), - [anon_sym_BANG_EQ2] = ACTIONS(1552), - [anon_sym_LT2] = ACTIONS(1544), - [anon_sym_LT_EQ2] = ACTIONS(1552), - [anon_sym_GT_EQ2] = ACTIONS(1552), - [anon_sym_EQ_TILDE2] = ACTIONS(1552), - [anon_sym_BANG_TILDE2] = ACTIONS(1552), - [anon_sym_LPAREN2] = ACTIONS(4501), - [anon_sym_STAR_STAR2] = ACTIONS(1552), - [anon_sym_PLUS_PLUS2] = ACTIONS(1552), - [anon_sym_SLASH2] = ACTIONS(1544), - [anon_sym_mod2] = ACTIONS(1552), - [anon_sym_SLASH_SLASH2] = ACTIONS(1552), - [anon_sym_PLUS2] = ACTIONS(1544), - [anon_sym_bit_DASHshl2] = ACTIONS(1552), - [anon_sym_bit_DASHshr2] = ACTIONS(1552), - [anon_sym_bit_DASHand2] = ACTIONS(1552), - [anon_sym_bit_DASHxor2] = ACTIONS(1552), - [anon_sym_bit_DASHor2] = ACTIONS(1552), - [aux_sym__immediate_decimal_token1] = ACTIONS(4685), - [aux_sym__immediate_decimal_token3] = ACTIONS(4685), - [aux_sym__immediate_decimal_token4] = ACTIONS(4507), - [aux_sym__immediate_decimal_token5] = ACTIONS(4509), - [anon_sym_err_GT] = ACTIONS(1544), - [anon_sym_out_GT] = ACTIONS(1544), - [anon_sym_e_GT] = ACTIONS(1544), - [anon_sym_o_GT] = ACTIONS(1544), - [anon_sym_err_PLUSout_GT] = ACTIONS(1544), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1544), - [anon_sym_o_PLUSe_GT] = ACTIONS(1544), - [anon_sym_e_PLUSo_GT] = ACTIONS(1544), - [anon_sym_err_GT_GT] = ACTIONS(1552), - [anon_sym_out_GT_GT] = ACTIONS(1552), - [anon_sym_e_GT_GT] = ACTIONS(1552), - [anon_sym_o_GT_GT] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1552), + [1354] = { + [sym_comment] = STATE(1354), + [anon_sym_EQ] = ACTIONS(988), + [anon_sym_PLUS_EQ] = ACTIONS(990), + [anon_sym_DASH_EQ] = ACTIONS(990), + [anon_sym_STAR_EQ] = ACTIONS(990), + [anon_sym_SLASH_EQ] = ACTIONS(990), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(990), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(998), + [anon_sym_in2] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(998), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(998), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(998), + [anon_sym_SLASH2] = ACTIONS(998), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(998), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), + [anon_sym_DOT_DOT2] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), + [anon_sym_COLON2] = ACTIONS(4625), + [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(994), + [anon_sym_out_GT_GT] = ACTIONS(994), + [anon_sym_e_GT_GT] = ACTIONS(994), + [anon_sym_o_GT_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(245), }, - [1414] = { - [sym_comment] = STATE(1414), - [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(980), - [anon_sym_in2] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_EQ_GT] = ACTIONS(980), - [anon_sym_STAR2] = ACTIONS(978), - [anon_sym_and2] = ACTIONS(980), - [anon_sym_xor2] = ACTIONS(980), - [anon_sym_or2] = ACTIONS(980), - [anon_sym_not_DASHin2] = ACTIONS(980), - [anon_sym_has2] = ACTIONS(980), - [anon_sym_not_DASHhas2] = 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_EQ2] = ACTIONS(980), - [anon_sym_DOT_DOT_LT2] = ACTIONS(980), - [anon_sym_COLON2] = ACTIONS(980), - [anon_sym_DOT2] = ACTIONS(978), - [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(245), + [1355] = { + [sym_comment] = STATE(1355), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1701), + [anon_sym_DOT_DOT_LT] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4541), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), }, - [1415] = { - [sym_comment] = STATE(1415), - [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(1591), + [1356] = { + [sym_comment] = STATE(1356), + [ts_builtin_sym_end] = ACTIONS(1581), + [sym__newline] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1581), + [anon_sym_PIPE] = ACTIONS(1581), + [anon_sym_err_GT_PIPE] = ACTIONS(1581), + [anon_sym_out_GT_PIPE] = ACTIONS(1581), + [anon_sym_e_GT_PIPE] = ACTIONS(1581), + [anon_sym_o_GT_PIPE] = ACTIONS(1581), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1581), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1581), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1581), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1581), [anon_sym_DOLLAR] = ACTIONS(1579), - [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1581), [anon_sym_DASH2] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1591), + [anon_sym_LBRACE] = ACTIONS(1581), [anon_sym_DOT_DOT] = ACTIONS(1579), - [anon_sym_DOT_DOT2] = ACTIONS(4673), + [anon_sym_DOT_DOT2] = ACTIONS(1579), [anon_sym_DOT_DOT_EQ] = ACTIONS(1579), [anon_sym_DOT_DOT_LT] = ACTIONS(1579), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4675), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4675), - [anon_sym_null] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [anon_sym_null] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1581), + [anon_sym_false] = ACTIONS(1581), [aux_sym__val_number_decimal_token1] = ACTIONS(1579), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [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), + [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_0b] = ACTIONS(1579), - [sym_filesize_unit] = ACTIONS(4687), - [sym_duration_unit] = ACTIONS(4689), + [sym_filesize_unit] = ACTIONS(1581), + [sym_duration_unit] = ACTIONS(1581), [anon_sym_0o] = ACTIONS(1579), [anon_sym_0x] = ACTIONS(1579), - [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), + [sym_val_date] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(1581), + [sym__str_single_quotes] = ACTIONS(1581), + [sym__str_back_ticks] = ACTIONS(1581), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1581), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1581), [anon_sym_err_GT] = ACTIONS(1579), [anon_sym_out_GT] = ACTIONS(1579), [anon_sym_e_GT] = ACTIONS(1579), @@ -211542,518 +204765,518 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), [anon_sym_o_PLUSe_GT] = ACTIONS(1579), [anon_sym_e_PLUSo_GT] = ACTIONS(1579), - [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), + [anon_sym_err_GT_GT] = ACTIONS(1581), + [anon_sym_out_GT_GT] = ACTIONS(1581), + [anon_sym_e_GT_GT] = ACTIONS(1581), + [anon_sym_o_GT_GT] = ACTIONS(1581), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1581), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1581), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1581), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1581), [aux_sym_unquoted_token1] = ACTIONS(1579), - [aux_sym_unquoted_token2] = ACTIONS(4691), + [aux_sym_unquoted_token2] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1591), + [sym_raw_string_begin] = ACTIONS(1581), }, - [1416] = { - [sym_comment] = STATE(1416), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_GT2] = ACTIONS(1666), - [anon_sym_DASH2] = ACTIONS(1668), - [anon_sym_in2] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_STAR2] = ACTIONS(1666), - [anon_sym_and2] = ACTIONS(1668), - [anon_sym_xor2] = ACTIONS(1668), - [anon_sym_or2] = ACTIONS(1668), - [anon_sym_not_DASHin2] = ACTIONS(1668), - [anon_sym_has2] = ACTIONS(1668), - [anon_sym_not_DASHhas2] = ACTIONS(1668), - [anon_sym_starts_DASHwith2] = ACTIONS(1668), - [anon_sym_ends_DASHwith2] = ACTIONS(1668), - [anon_sym_EQ_EQ2] = ACTIONS(1668), - [anon_sym_BANG_EQ2] = ACTIONS(1668), - [anon_sym_LT2] = ACTIONS(1666), - [anon_sym_LT_EQ2] = ACTIONS(1668), - [anon_sym_GT_EQ2] = ACTIONS(1668), - [anon_sym_EQ_TILDE2] = ACTIONS(1668), - [anon_sym_BANG_TILDE2] = ACTIONS(1668), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_STAR_STAR2] = ACTIONS(1668), - [anon_sym_PLUS_PLUS2] = ACTIONS(1668), - [anon_sym_SLASH2] = ACTIONS(1666), - [anon_sym_mod2] = ACTIONS(1668), - [anon_sym_SLASH_SLASH2] = ACTIONS(1668), - [anon_sym_PLUS2] = ACTIONS(1666), - [anon_sym_bit_DASHshl2] = ACTIONS(1668), - [anon_sym_bit_DASHshr2] = ACTIONS(1668), - [anon_sym_bit_DASHand2] = ACTIONS(1668), - [anon_sym_bit_DASHxor2] = ACTIONS(1668), - [anon_sym_bit_DASHor2] = ACTIONS(1668), - [anon_sym_DOT_DOT2] = ACTIONS(1666), - [anon_sym_DOT] = ACTIONS(4693), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [aux_sym__immediate_decimal_token2] = ACTIONS(4695), - [anon_sym_err_GT] = ACTIONS(1666), - [anon_sym_out_GT] = ACTIONS(1666), - [anon_sym_e_GT] = ACTIONS(1666), - [anon_sym_o_GT] = ACTIONS(1666), - [anon_sym_err_PLUSout_GT] = ACTIONS(1666), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), - [anon_sym_o_PLUSe_GT] = ACTIONS(1666), - [anon_sym_e_PLUSo_GT] = ACTIONS(1666), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [aux_sym_unquoted_token2] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), + [1357] = { + [sym_comment] = STATE(1357), + [ts_builtin_sym_end] = ACTIONS(1501), + [sym__newline] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_err_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_GT_PIPE] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1501), + [anon_sym_DOLLAR] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1501), + [anon_sym_DASH2] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [aux_sym__val_number_decimal_token1] = ACTIONS(1499), + [aux_sym__val_number_decimal_token2] = ACTIONS(1501), + [aux_sym__val_number_decimal_token3] = ACTIONS(1501), + [aux_sym__val_number_decimal_token4] = ACTIONS(1501), + [aux_sym__val_number_token1] = ACTIONS(1501), + [aux_sym__val_number_token2] = ACTIONS(1501), + [aux_sym__val_number_token3] = ACTIONS(1501), + [aux_sym__val_number_token4] = ACTIONS(1501), + [aux_sym__val_number_token5] = ACTIONS(1501), + [aux_sym__val_number_token6] = ACTIONS(1501), + [anon_sym_0b] = ACTIONS(1499), + [sym_filesize_unit] = ACTIONS(1501), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_0o] = ACTIONS(1499), + [anon_sym_0x] = ACTIONS(1499), + [sym_val_date] = ACTIONS(1501), + [anon_sym_DQUOTE] = ACTIONS(1501), + [sym__str_single_quotes] = ACTIONS(1501), + [sym__str_back_ticks] = ACTIONS(1501), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1501), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1501), + [anon_sym_out_GT_GT] = ACTIONS(1501), + [anon_sym_e_GT_GT] = ACTIONS(1501), + [anon_sym_o_GT_GT] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1501), + [aux_sym_unquoted_token1] = ACTIONS(1499), + [aux_sym_unquoted_token2] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1501), }, - [1417] = { - [sym_comment] = STATE(1417), - [sym__newline] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_err_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_GT_PIPE] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_RPAREN] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DASH2] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1648), - [anon_sym_DOT_DOT_LT] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [aux_sym__val_number_token4] = ACTIONS(1650), - [aux_sym__val_number_token5] = ACTIONS(1650), - [aux_sym__val_number_token6] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1648), - [anon_sym_0o] = ACTIONS(1648), - [anon_sym_0x] = ACTIONS(1648), - [sym_val_date] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_err_GT] = ACTIONS(1648), - [anon_sym_out_GT] = ACTIONS(1648), - [anon_sym_e_GT] = ACTIONS(1648), - [anon_sym_o_GT] = ACTIONS(1648), - [anon_sym_err_PLUSout_GT] = ACTIONS(1648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), - [anon_sym_o_PLUSe_GT] = ACTIONS(1648), - [anon_sym_e_PLUSo_GT] = ACTIONS(1648), - [anon_sym_err_GT_GT] = ACTIONS(1650), - [anon_sym_out_GT_GT] = ACTIONS(1650), - [anon_sym_e_GT_GT] = ACTIONS(1650), - [anon_sym_o_GT_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), - [aux_sym_unquoted_token1] = ACTIONS(1648), - [aux_sym_unquoted_token2] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1650), + [1358] = { + [sym_comment] = STATE(1358), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1760), + [anon_sym_DOT_DOT_LT] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1762), + [aux_sym__val_number_token5] = ACTIONS(1762), + [aux_sym__val_number_token6] = ACTIONS(1762), + [anon_sym_0b] = ACTIONS(1760), + [anon_sym_0o] = ACTIONS(1760), + [anon_sym_0x] = ACTIONS(1760), + [sym_val_date] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token1] = ACTIONS(1760), + [aux_sym_unquoted_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1762), }, - [1418] = { - [sym_comment] = STATE(1418), - [sym__newline] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_err_GT_PIPE] = ACTIONS(976), - [anon_sym_out_GT_PIPE] = ACTIONS(976), - [anon_sym_e_GT_PIPE] = ACTIONS(976), - [anon_sym_o_GT_PIPE] = ACTIONS(976), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(976), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(976), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(976), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(976), - [anon_sym_RPAREN] = ACTIONS(976), - [anon_sym_GT2] = ACTIONS(974), - [anon_sym_DASH2] = ACTIONS(976), - [anon_sym_in2] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(976), - [anon_sym_RBRACE] = ACTIONS(976), - [anon_sym_EQ_GT] = ACTIONS(976), - [anon_sym_STAR2] = ACTIONS(974), - [anon_sym_and2] = ACTIONS(976), - [anon_sym_xor2] = ACTIONS(976), - [anon_sym_or2] = ACTIONS(976), - [anon_sym_not_DASHin2] = ACTIONS(976), - [anon_sym_has2] = ACTIONS(976), - [anon_sym_not_DASHhas2] = ACTIONS(976), - [anon_sym_starts_DASHwith2] = ACTIONS(976), - [anon_sym_ends_DASHwith2] = ACTIONS(976), - [anon_sym_EQ_EQ2] = ACTIONS(976), - [anon_sym_BANG_EQ2] = ACTIONS(976), - [anon_sym_LT2] = ACTIONS(974), - [anon_sym_LT_EQ2] = ACTIONS(976), - [anon_sym_GT_EQ2] = ACTIONS(976), - [anon_sym_EQ_TILDE2] = ACTIONS(976), - [anon_sym_BANG_TILDE2] = ACTIONS(976), - [anon_sym_STAR_STAR2] = ACTIONS(976), - [anon_sym_PLUS_PLUS2] = ACTIONS(976), - [anon_sym_SLASH2] = ACTIONS(974), - [anon_sym_mod2] = ACTIONS(976), - [anon_sym_SLASH_SLASH2] = ACTIONS(976), - [anon_sym_PLUS2] = ACTIONS(974), - [anon_sym_bit_DASHshl2] = ACTIONS(976), - [anon_sym_bit_DASHshr2] = ACTIONS(976), - [anon_sym_bit_DASHand2] = ACTIONS(976), - [anon_sym_bit_DASHxor2] = ACTIONS(976), - [anon_sym_bit_DASHor2] = ACTIONS(976), - [anon_sym_DOT_DOT2] = ACTIONS(974), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(976), - [anon_sym_DOT_DOT_LT2] = ACTIONS(976), - [anon_sym_COLON2] = ACTIONS(976), - [anon_sym_DOT2] = ACTIONS(974), - [anon_sym_err_GT] = ACTIONS(974), - [anon_sym_out_GT] = ACTIONS(974), - [anon_sym_e_GT] = ACTIONS(974), - [anon_sym_o_GT] = ACTIONS(974), - [anon_sym_err_PLUSout_GT] = ACTIONS(974), - [anon_sym_out_PLUSerr_GT] = ACTIONS(974), - [anon_sym_o_PLUSe_GT] = ACTIONS(974), - [anon_sym_e_PLUSo_GT] = ACTIONS(974), - [anon_sym_err_GT_GT] = ACTIONS(976), - [anon_sym_out_GT_GT] = ACTIONS(976), - [anon_sym_e_GT_GT] = ACTIONS(976), - [anon_sym_o_GT_GT] = ACTIONS(976), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(976), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(976), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(976), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(245), + [1359] = { + [sym_comment] = STATE(1359), + [sym__newline] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(952), + [anon_sym_PIPE] = ACTIONS(952), + [anon_sym_err_GT_PIPE] = ACTIONS(952), + [anon_sym_out_GT_PIPE] = ACTIONS(952), + [anon_sym_e_GT_PIPE] = ACTIONS(952), + [anon_sym_o_GT_PIPE] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(952), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_RPAREN] = ACTIONS(952), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_DASH2] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_DOT_DOT] = ACTIONS(950), + [anon_sym_QMARK2] = ACTIONS(952), + [anon_sym_DOT_DOT2] = ACTIONS(950), + [anon_sym_DOT_DOT_EQ] = ACTIONS(950), + [anon_sym_DOT_DOT_LT] = ACTIONS(950), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(952), + [anon_sym_DOT_DOT_LT2] = ACTIONS(952), + [anon_sym_null] = ACTIONS(952), + [anon_sym_true] = ACTIONS(952), + [anon_sym_false] = ACTIONS(952), + [aux_sym__val_number_decimal_token1] = ACTIONS(950), + [aux_sym__val_number_decimal_token2] = ACTIONS(952), + [aux_sym__val_number_decimal_token3] = ACTIONS(952), + [aux_sym__val_number_decimal_token4] = ACTIONS(952), + [aux_sym__val_number_token1] = ACTIONS(952), + [aux_sym__val_number_token2] = ACTIONS(952), + [aux_sym__val_number_token3] = ACTIONS(952), + [aux_sym__val_number_token4] = ACTIONS(952), + [aux_sym__val_number_token5] = ACTIONS(952), + [aux_sym__val_number_token6] = ACTIONS(952), + [anon_sym_0b] = ACTIONS(950), + [anon_sym_0o] = ACTIONS(950), + [anon_sym_0x] = ACTIONS(950), + [sym_val_date] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(952), + [sym__str_single_quotes] = ACTIONS(952), + [sym__str_back_ticks] = ACTIONS(952), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(952), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(952), + [anon_sym_DOT2] = ACTIONS(950), + [anon_sym_err_GT] = ACTIONS(950), + [anon_sym_out_GT] = ACTIONS(950), + [anon_sym_e_GT] = ACTIONS(950), + [anon_sym_o_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT] = ACTIONS(950), + [anon_sym_err_GT_GT] = ACTIONS(952), + [anon_sym_out_GT_GT] = ACTIONS(952), + [anon_sym_e_GT_GT] = ACTIONS(952), + [anon_sym_o_GT_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(952), + [aux_sym_unquoted_token1] = ACTIONS(950), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(952), }, - [1419] = { - [sym_comment] = STATE(1419), - [sym__newline] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_PIPE] = ACTIONS(950), - [anon_sym_err_GT_PIPE] = ACTIONS(950), - [anon_sym_out_GT_PIPE] = ACTIONS(950), - [anon_sym_e_GT_PIPE] = ACTIONS(950), - [anon_sym_o_GT_PIPE] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), - [anon_sym_LBRACK] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_RPAREN] = ACTIONS(950), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_DASH2] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_DOT_DOT] = ACTIONS(948), - [anon_sym_QMARK2] = ACTIONS(4697), - [anon_sym_DOT_DOT2] = ACTIONS(948), - [anon_sym_DOT_DOT_EQ] = ACTIONS(948), - [anon_sym_DOT_DOT_LT] = ACTIONS(948), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), - [anon_sym_DOT_DOT_LT2] = ACTIONS(950), - [anon_sym_null] = ACTIONS(950), - [anon_sym_true] = ACTIONS(950), - [anon_sym_false] = ACTIONS(950), - [aux_sym__val_number_decimal_token1] = ACTIONS(948), - [aux_sym__val_number_decimal_token2] = ACTIONS(950), - [aux_sym__val_number_decimal_token3] = ACTIONS(950), - [aux_sym__val_number_decimal_token4] = ACTIONS(950), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [aux_sym__val_number_token4] = ACTIONS(950), - [aux_sym__val_number_token5] = ACTIONS(950), - [aux_sym__val_number_token6] = ACTIONS(950), - [anon_sym_0b] = ACTIONS(948), - [anon_sym_0o] = ACTIONS(948), - [anon_sym_0x] = ACTIONS(948), - [sym_val_date] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(948), - [anon_sym_err_GT] = ACTIONS(948), - [anon_sym_out_GT] = ACTIONS(948), - [anon_sym_e_GT] = ACTIONS(948), - [anon_sym_o_GT] = ACTIONS(948), - [anon_sym_err_PLUSout_GT] = ACTIONS(948), - [anon_sym_out_PLUSerr_GT] = ACTIONS(948), - [anon_sym_o_PLUSe_GT] = ACTIONS(948), - [anon_sym_e_PLUSo_GT] = ACTIONS(948), - [anon_sym_err_GT_GT] = ACTIONS(950), - [anon_sym_out_GT_GT] = ACTIONS(950), - [anon_sym_e_GT_GT] = ACTIONS(950), - [anon_sym_o_GT_GT] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), - [aux_sym_unquoted_token1] = ACTIONS(948), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(950), + [1360] = { + [sym_comment] = STATE(1360), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1701), + [anon_sym_DOT_DOT_LT] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), }, - [1420] = { - [sym_comment] = STATE(1420), - [ts_builtin_sym_end] = ACTIONS(1540), - [sym__newline] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1540), - [anon_sym_err_GT_PIPE] = ACTIONS(1540), - [anon_sym_out_GT_PIPE] = ACTIONS(1540), - [anon_sym_e_GT_PIPE] = ACTIONS(1540), - [anon_sym_o_GT_PIPE] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_DOLLAR] = ACTIONS(1538), - [anon_sym_DASH_DASH] = ACTIONS(1540), - [anon_sym_DASH2] = ACTIONS(1538), - [anon_sym_LBRACE] = ACTIONS(1540), - [anon_sym_DOT_DOT] = ACTIONS(1538), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1538), - [anon_sym_DOT_DOT_LT] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [anon_sym_null] = ACTIONS(1540), - [anon_sym_true] = ACTIONS(1540), - [anon_sym_false] = ACTIONS(1540), - [aux_sym__val_number_decimal_token1] = ACTIONS(1538), - [aux_sym__val_number_decimal_token2] = ACTIONS(1540), - [aux_sym__val_number_decimal_token3] = ACTIONS(1540), - [aux_sym__val_number_decimal_token4] = ACTIONS(1540), - [aux_sym__val_number_token1] = ACTIONS(1540), - [aux_sym__val_number_token2] = ACTIONS(1540), - [aux_sym__val_number_token3] = ACTIONS(1540), - [aux_sym__val_number_token4] = ACTIONS(1540), - [aux_sym__val_number_token5] = ACTIONS(1540), - [aux_sym__val_number_token6] = ACTIONS(1540), - [anon_sym_0b] = ACTIONS(1538), - [sym_filesize_unit] = ACTIONS(1540), - [sym_duration_unit] = ACTIONS(1540), - [anon_sym_0o] = ACTIONS(1538), - [anon_sym_0x] = ACTIONS(1538), - [sym_val_date] = ACTIONS(1540), - [anon_sym_DQUOTE] = ACTIONS(1540), - [sym__str_single_quotes] = ACTIONS(1540), - [sym__str_back_ticks] = ACTIONS(1540), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1540), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1540), - [anon_sym_err_GT] = ACTIONS(1538), - [anon_sym_out_GT] = ACTIONS(1538), - [anon_sym_e_GT] = ACTIONS(1538), - [anon_sym_o_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT] = ACTIONS(1538), - [anon_sym_err_GT_GT] = ACTIONS(1540), - [anon_sym_out_GT_GT] = ACTIONS(1540), - [anon_sym_e_GT_GT] = ACTIONS(1540), - [anon_sym_o_GT_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1540), - [aux_sym_unquoted_token1] = ACTIONS(1538), - [aux_sym_unquoted_token2] = ACTIONS(1538), + [1361] = { + [sym_comment] = STATE(1361), + [sym__newline] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(944), + [anon_sym_err_GT_PIPE] = ACTIONS(944), + [anon_sym_out_GT_PIPE] = ACTIONS(944), + [anon_sym_e_GT_PIPE] = ACTIONS(944), + [anon_sym_o_GT_PIPE] = ACTIONS(944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(944), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_RPAREN] = ACTIONS(944), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_DASH_DASH] = ACTIONS(944), + [anon_sym_DASH2] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(944), + [anon_sym_DOT_DOT] = ACTIONS(942), + [anon_sym_QMARK2] = ACTIONS(944), + [anon_sym_DOT_DOT2] = ACTIONS(942), + [anon_sym_DOT_DOT_EQ] = ACTIONS(942), + [anon_sym_DOT_DOT_LT] = ACTIONS(942), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(944), + [anon_sym_DOT_DOT_LT2] = ACTIONS(944), + [anon_sym_null] = ACTIONS(944), + [anon_sym_true] = ACTIONS(944), + [anon_sym_false] = ACTIONS(944), + [aux_sym__val_number_decimal_token1] = ACTIONS(942), + [aux_sym__val_number_decimal_token2] = ACTIONS(944), + [aux_sym__val_number_decimal_token3] = ACTIONS(944), + [aux_sym__val_number_decimal_token4] = ACTIONS(944), + [aux_sym__val_number_token1] = ACTIONS(944), + [aux_sym__val_number_token2] = ACTIONS(944), + [aux_sym__val_number_token3] = ACTIONS(944), + [aux_sym__val_number_token4] = ACTIONS(944), + [aux_sym__val_number_token5] = ACTIONS(944), + [aux_sym__val_number_token6] = ACTIONS(944), + [anon_sym_0b] = ACTIONS(942), + [anon_sym_0o] = ACTIONS(942), + [anon_sym_0x] = ACTIONS(942), + [sym_val_date] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(944), + [sym__str_single_quotes] = ACTIONS(944), + [sym__str_back_ticks] = ACTIONS(944), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(944), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(944), + [anon_sym_DOT2] = ACTIONS(942), + [anon_sym_err_GT] = ACTIONS(942), + [anon_sym_out_GT] = ACTIONS(942), + [anon_sym_e_GT] = ACTIONS(942), + [anon_sym_o_GT] = ACTIONS(942), + [anon_sym_err_PLUSout_GT] = ACTIONS(942), + [anon_sym_out_PLUSerr_GT] = ACTIONS(942), + [anon_sym_o_PLUSe_GT] = ACTIONS(942), + [anon_sym_e_PLUSo_GT] = ACTIONS(942), + [anon_sym_err_GT_GT] = ACTIONS(944), + [anon_sym_out_GT_GT] = ACTIONS(944), + [anon_sym_e_GT_GT] = ACTIONS(944), + [anon_sym_o_GT_GT] = ACTIONS(944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(944), + [aux_sym_unquoted_token1] = ACTIONS(942), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1540), + [sym_raw_string_begin] = ACTIONS(944), }, - [1421] = { - [sym_comment] = STATE(1421), - [sym__newline] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_err_GT_PIPE] = ACTIONS(960), - [anon_sym_out_GT_PIPE] = ACTIONS(960), - [anon_sym_e_GT_PIPE] = ACTIONS(960), - [anon_sym_o_GT_PIPE] = ACTIONS(960), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_DOLLAR] = ACTIONS(958), - [anon_sym_DASH_DASH] = ACTIONS(960), - [anon_sym_DASH2] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_DOT_DOT] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(960), - [anon_sym_DOT_DOT2] = ACTIONS(958), - [anon_sym_DOT_DOT_EQ] = ACTIONS(958), - [anon_sym_DOT_DOT_LT] = ACTIONS(958), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(960), - [anon_sym_DOT_DOT_LT2] = ACTIONS(960), - [anon_sym_null] = ACTIONS(960), - [anon_sym_true] = ACTIONS(960), - [anon_sym_false] = ACTIONS(960), - [aux_sym__val_number_decimal_token1] = ACTIONS(958), - [aux_sym__val_number_decimal_token2] = ACTIONS(960), - [aux_sym__val_number_decimal_token3] = ACTIONS(960), - [aux_sym__val_number_decimal_token4] = ACTIONS(960), - [aux_sym__val_number_token1] = ACTIONS(960), - [aux_sym__val_number_token2] = ACTIONS(960), - [aux_sym__val_number_token3] = ACTIONS(960), - [aux_sym__val_number_token4] = ACTIONS(960), - [aux_sym__val_number_token5] = ACTIONS(960), - [aux_sym__val_number_token6] = ACTIONS(960), - [anon_sym_0b] = ACTIONS(958), - [anon_sym_0o] = ACTIONS(958), - [anon_sym_0x] = ACTIONS(958), - [sym_val_date] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(960), - [sym__str_single_quotes] = ACTIONS(960), - [sym__str_back_ticks] = ACTIONS(960), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(960), - [anon_sym_DOT2] = ACTIONS(958), - [anon_sym_err_GT] = ACTIONS(958), - [anon_sym_out_GT] = ACTIONS(958), - [anon_sym_e_GT] = ACTIONS(958), - [anon_sym_o_GT] = ACTIONS(958), - [anon_sym_err_PLUSout_GT] = ACTIONS(958), - [anon_sym_out_PLUSerr_GT] = ACTIONS(958), - [anon_sym_o_PLUSe_GT] = ACTIONS(958), - [anon_sym_e_PLUSo_GT] = ACTIONS(958), - [anon_sym_err_GT_GT] = ACTIONS(960), - [anon_sym_out_GT_GT] = ACTIONS(960), - [anon_sym_e_GT_GT] = ACTIONS(960), - [anon_sym_o_GT_GT] = ACTIONS(960), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(960), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(960), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(960), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), - [aux_sym_unquoted_token1] = ACTIONS(958), + [1362] = { + [sym_comment] = STATE(1362), + [sym__newline] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1581), + [anon_sym_PIPE] = ACTIONS(1581), + [anon_sym_err_GT_PIPE] = ACTIONS(1581), + [anon_sym_out_GT_PIPE] = ACTIONS(1581), + [anon_sym_e_GT_PIPE] = ACTIONS(1581), + [anon_sym_o_GT_PIPE] = ACTIONS(1581), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1581), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1581), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1581), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1581), + [anon_sym_RPAREN] = ACTIONS(1581), + [anon_sym_GT2] = ACTIONS(1579), + [anon_sym_DASH2] = ACTIONS(1581), + [anon_sym_in2] = ACTIONS(1581), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_STAR2] = ACTIONS(1579), + [anon_sym_and2] = ACTIONS(1581), + [anon_sym_xor2] = ACTIONS(1581), + [anon_sym_or2] = ACTIONS(1581), + [anon_sym_not_DASHin2] = ACTIONS(1581), + [anon_sym_has2] = ACTIONS(1581), + [anon_sym_not_DASHhas2] = ACTIONS(1581), + [anon_sym_starts_DASHwith2] = ACTIONS(1581), + [anon_sym_ends_DASHwith2] = ACTIONS(1581), + [anon_sym_EQ_EQ2] = ACTIONS(1581), + [anon_sym_BANG_EQ2] = ACTIONS(1581), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ2] = ACTIONS(1581), + [anon_sym_GT_EQ2] = ACTIONS(1581), + [anon_sym_EQ_TILDE2] = ACTIONS(1581), + [anon_sym_BANG_TILDE2] = ACTIONS(1581), + [anon_sym_LPAREN2] = ACTIONS(1581), + [anon_sym_STAR_STAR2] = ACTIONS(1581), + [anon_sym_PLUS_PLUS2] = ACTIONS(1581), + [anon_sym_SLASH2] = ACTIONS(1579), + [anon_sym_mod2] = ACTIONS(1581), + [anon_sym_SLASH_SLASH2] = ACTIONS(1581), + [anon_sym_PLUS2] = ACTIONS(1579), + [anon_sym_bit_DASHshl2] = ACTIONS(1581), + [anon_sym_bit_DASHshr2] = ACTIONS(1581), + [anon_sym_bit_DASHand2] = ACTIONS(1581), + [anon_sym_bit_DASHxor2] = ACTIONS(1581), + [anon_sym_bit_DASHor2] = ACTIONS(1581), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [aux_sym__immediate_decimal_token2] = ACTIONS(4627), + [sym_filesize_unit] = ACTIONS(1579), + [sym_duration_unit] = ACTIONS(1581), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [anon_sym_err_GT_GT] = ACTIONS(1581), + [anon_sym_out_GT_GT] = ACTIONS(1581), + [anon_sym_e_GT_GT] = ACTIONS(1581), + [anon_sym_o_GT_GT] = ACTIONS(1581), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1581), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1581), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1581), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1581), + [aux_sym_unquoted_token2] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(960), }, - [1422] = { - [sym_comment] = STATE(1422), - [ts_builtin_sym_end] = ACTIONS(1668), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_DOT_DOT] = ACTIONS(1666), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_DOT_DOT2] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1666), - [anon_sym_DOT_DOT_LT] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [aux_sym__immediate_decimal_token2] = ACTIONS(4651), - [anon_sym_null] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1668), - [aux_sym__val_number_token5] = ACTIONS(1668), - [aux_sym__val_number_token6] = ACTIONS(1668), - [anon_sym_0b] = ACTIONS(1666), - [anon_sym_0o] = ACTIONS(1666), - [anon_sym_0x] = ACTIONS(1666), - [sym_val_date] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_err_GT] = ACTIONS(1666), - [anon_sym_out_GT] = ACTIONS(1666), - [anon_sym_e_GT] = ACTIONS(1666), - [anon_sym_o_GT] = ACTIONS(1666), - [anon_sym_err_PLUSout_GT] = ACTIONS(1666), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), - [anon_sym_o_PLUSe_GT] = ACTIONS(1666), - [anon_sym_e_PLUSo_GT] = ACTIONS(1666), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [aux_sym_unquoted_token1] = ACTIONS(1666), - [aux_sym_unquoted_token2] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), + [1363] = { + [sym_comment] = STATE(1363), + [ts_builtin_sym_end] = ACTIONS(1493), + [sym__newline] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_err_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_GT_PIPE] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1493), + [anon_sym_LBRACK] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1493), + [anon_sym_DOLLAR] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_DASH2] = ACTIONS(1491), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_DOT_DOT] = ACTIONS(1491), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1491), + [anon_sym_DOT_DOT_LT] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [aux_sym__val_number_decimal_token1] = ACTIONS(1491), + [aux_sym__val_number_decimal_token2] = ACTIONS(1493), + [aux_sym__val_number_decimal_token3] = ACTIONS(1493), + [aux_sym__val_number_decimal_token4] = ACTIONS(1493), + [aux_sym__val_number_token1] = ACTIONS(1493), + [aux_sym__val_number_token2] = ACTIONS(1493), + [aux_sym__val_number_token3] = ACTIONS(1493), + [aux_sym__val_number_token4] = ACTIONS(1493), + [aux_sym__val_number_token5] = ACTIONS(1493), + [aux_sym__val_number_token6] = ACTIONS(1493), + [anon_sym_0b] = ACTIONS(1491), + [sym_filesize_unit] = ACTIONS(1493), + [sym_duration_unit] = ACTIONS(1493), + [anon_sym_0o] = ACTIONS(1491), + [anon_sym_0x] = ACTIONS(1491), + [sym_val_date] = ACTIONS(1493), + [anon_sym_DQUOTE] = ACTIONS(1493), + [sym__str_single_quotes] = ACTIONS(1493), + [sym__str_back_ticks] = ACTIONS(1493), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1493), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1493), + [anon_sym_err_GT] = ACTIONS(1491), + [anon_sym_out_GT] = ACTIONS(1491), + [anon_sym_e_GT] = ACTIONS(1491), + [anon_sym_o_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT] = ACTIONS(1491), + [anon_sym_err_GT_GT] = ACTIONS(1493), + [anon_sym_out_GT_GT] = ACTIONS(1493), + [anon_sym_e_GT_GT] = ACTIONS(1493), + [anon_sym_o_GT_GT] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1493), + [aux_sym_unquoted_token1] = ACTIONS(1491), + [aux_sym_unquoted_token2] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1493), }, - [1423] = { - [sym_comment] = STATE(1423), + [1364] = { + [sym_comment] = STATE(1364), [sym__newline] = ACTIONS(956), [anon_sym_SEMI] = ACTIONS(956), [anon_sym_PIPE] = ACTIONS(956), @@ -212123,933 +205346,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(956), }, - [1424] = { - [sym_comment] = STATE(1424), - [sym__newline] = ACTIONS(1786), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1786), - [anon_sym_err_GT_PIPE] = ACTIONS(1786), - [anon_sym_out_GT_PIPE] = ACTIONS(1786), - [anon_sym_e_GT_PIPE] = ACTIONS(1786), - [anon_sym_o_GT_PIPE] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1786), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_DOLLAR] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_DASH2] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_DOT_DOT] = ACTIONS(1778), - [anon_sym_LPAREN2] = ACTIONS(1780), - [anon_sym_DOT_DOT2] = ACTIONS(4699), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1778), - [anon_sym_DOT_DOT_LT] = ACTIONS(1778), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4701), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4701), - [anon_sym_null] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1786), - [anon_sym_false] = ACTIONS(1786), - [aux_sym__val_number_decimal_token1] = ACTIONS(1778), - [aux_sym__val_number_decimal_token2] = ACTIONS(1786), - [aux_sym__val_number_decimal_token3] = ACTIONS(1786), - [aux_sym__val_number_decimal_token4] = ACTIONS(1786), - [aux_sym__val_number_token1] = ACTIONS(1786), - [aux_sym__val_number_token2] = ACTIONS(1786), - [aux_sym__val_number_token3] = ACTIONS(1786), - [aux_sym__val_number_token4] = ACTIONS(1786), - [aux_sym__val_number_token5] = ACTIONS(1786), - [aux_sym__val_number_token6] = ACTIONS(1786), - [anon_sym_0b] = ACTIONS(1778), - [anon_sym_0o] = ACTIONS(1778), - [anon_sym_0x] = ACTIONS(1778), - [sym_val_date] = ACTIONS(1786), - [anon_sym_DQUOTE] = ACTIONS(1786), - [sym__str_single_quotes] = ACTIONS(1786), - [sym__str_back_ticks] = ACTIONS(1786), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1786), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1786), - [anon_sym_err_GT] = ACTIONS(1778), - [anon_sym_out_GT] = ACTIONS(1778), - [anon_sym_e_GT] = ACTIONS(1778), - [anon_sym_o_GT] = ACTIONS(1778), - [anon_sym_err_PLUSout_GT] = ACTIONS(1778), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1778), - [anon_sym_o_PLUSe_GT] = ACTIONS(1778), - [anon_sym_e_PLUSo_GT] = ACTIONS(1778), - [anon_sym_err_GT_GT] = ACTIONS(1786), - [anon_sym_out_GT_GT] = ACTIONS(1786), - [anon_sym_e_GT_GT] = ACTIONS(1786), - [anon_sym_o_GT_GT] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1786), - [aux_sym_unquoted_token1] = ACTIONS(1778), - [aux_sym_unquoted_token2] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1786), - }, - [1425] = { - [sym_comment] = STATE(1425), - [sym__newline] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(964), - [anon_sym_err_GT_PIPE] = ACTIONS(964), - [anon_sym_out_GT_PIPE] = ACTIONS(964), - [anon_sym_e_GT_PIPE] = ACTIONS(964), - [anon_sym_o_GT_PIPE] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), - [anon_sym_LBRACK] = ACTIONS(964), - [anon_sym_LPAREN] = ACTIONS(964), - [anon_sym_RPAREN] = ACTIONS(964), - [anon_sym_DOLLAR] = ACTIONS(962), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_DASH2] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_DOT_DOT] = ACTIONS(962), - [anon_sym_QMARK2] = ACTIONS(964), - [anon_sym_DOT_DOT2] = ACTIONS(962), - [anon_sym_DOT_DOT_EQ] = ACTIONS(962), - [anon_sym_DOT_DOT_LT] = ACTIONS(962), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), - [anon_sym_DOT_DOT_LT2] = ACTIONS(964), - [anon_sym_null] = ACTIONS(964), - [anon_sym_true] = ACTIONS(964), - [anon_sym_false] = ACTIONS(964), - [aux_sym__val_number_decimal_token1] = ACTIONS(962), - [aux_sym__val_number_decimal_token2] = ACTIONS(964), - [aux_sym__val_number_decimal_token3] = ACTIONS(964), - [aux_sym__val_number_decimal_token4] = ACTIONS(964), - [aux_sym__val_number_token1] = ACTIONS(964), - [aux_sym__val_number_token2] = ACTIONS(964), - [aux_sym__val_number_token3] = ACTIONS(964), - [aux_sym__val_number_token4] = ACTIONS(964), - [aux_sym__val_number_token5] = ACTIONS(964), - [aux_sym__val_number_token6] = ACTIONS(964), - [anon_sym_0b] = ACTIONS(962), - [anon_sym_0o] = ACTIONS(962), - [anon_sym_0x] = ACTIONS(962), - [sym_val_date] = ACTIONS(964), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym__str_single_quotes] = ACTIONS(964), - [sym__str_back_ticks] = ACTIONS(964), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(964), - [anon_sym_DOT2] = ACTIONS(962), - [anon_sym_err_GT] = ACTIONS(962), - [anon_sym_out_GT] = ACTIONS(962), - [anon_sym_e_GT] = ACTIONS(962), - [anon_sym_o_GT] = ACTIONS(962), - [anon_sym_err_PLUSout_GT] = ACTIONS(962), - [anon_sym_out_PLUSerr_GT] = ACTIONS(962), - [anon_sym_o_PLUSe_GT] = ACTIONS(962), - [anon_sym_e_PLUSo_GT] = ACTIONS(962), - [anon_sym_err_GT_GT] = ACTIONS(964), - [anon_sym_out_GT_GT] = ACTIONS(964), - [anon_sym_e_GT_GT] = ACTIONS(964), - [anon_sym_o_GT_GT] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), - [aux_sym_unquoted_token1] = ACTIONS(962), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(964), - }, - [1426] = { - [sym__expr_parenthesized_immediate] = STATE(2490), - [sym__immediate_decimal] = STATE(2491), - [sym_val_variable] = STATE(2490), - [sym_comment] = STATE(1426), - [ts_builtin_sym_end] = ACTIONS(1482), - [sym__newline] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1482), - [anon_sym_err_GT_PIPE] = ACTIONS(1482), - [anon_sym_out_GT_PIPE] = ACTIONS(1482), - [anon_sym_e_GT_PIPE] = ACTIONS(1482), - [anon_sym_o_GT_PIPE] = ACTIONS(1482), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1482), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1482), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1482), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1482), - [anon_sym_DOLLAR] = ACTIONS(4499), - [anon_sym_GT2] = ACTIONS(1472), - [anon_sym_DASH2] = ACTIONS(1472), - [anon_sym_in2] = ACTIONS(1482), - [anon_sym_STAR2] = ACTIONS(1472), - [anon_sym_and2] = ACTIONS(1482), - [anon_sym_xor2] = ACTIONS(1482), - [anon_sym_or2] = ACTIONS(1482), - [anon_sym_not_DASHin2] = ACTIONS(1482), - [anon_sym_has2] = ACTIONS(1482), - [anon_sym_not_DASHhas2] = ACTIONS(1482), - [anon_sym_starts_DASHwith2] = ACTIONS(1482), - [anon_sym_ends_DASHwith2] = ACTIONS(1482), - [anon_sym_EQ_EQ2] = ACTIONS(1482), - [anon_sym_BANG_EQ2] = ACTIONS(1482), - [anon_sym_LT2] = ACTIONS(1472), - [anon_sym_LT_EQ2] = ACTIONS(1482), - [anon_sym_GT_EQ2] = ACTIONS(1482), - [anon_sym_EQ_TILDE2] = ACTIONS(1482), - [anon_sym_BANG_TILDE2] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(4501), - [anon_sym_STAR_STAR2] = ACTIONS(1482), - [anon_sym_PLUS_PLUS2] = ACTIONS(1482), - [anon_sym_SLASH2] = ACTIONS(1472), - [anon_sym_mod2] = ACTIONS(1482), - [anon_sym_SLASH_SLASH2] = ACTIONS(1482), - [anon_sym_PLUS2] = ACTIONS(1472), - [anon_sym_bit_DASHshl2] = ACTIONS(1482), - [anon_sym_bit_DASHshr2] = ACTIONS(1482), - [anon_sym_bit_DASHand2] = ACTIONS(1482), - [anon_sym_bit_DASHxor2] = ACTIONS(1482), - [anon_sym_bit_DASHor2] = ACTIONS(1482), - [aux_sym__immediate_decimal_token1] = ACTIONS(4685), - [aux_sym__immediate_decimal_token3] = ACTIONS(4685), - [aux_sym__immediate_decimal_token4] = ACTIONS(4507), - [aux_sym__immediate_decimal_token5] = ACTIONS(4509), - [anon_sym_err_GT] = ACTIONS(1472), - [anon_sym_out_GT] = ACTIONS(1472), - [anon_sym_e_GT] = ACTIONS(1472), - [anon_sym_o_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT] = ACTIONS(1472), - [anon_sym_err_GT_GT] = ACTIONS(1482), - [anon_sym_out_GT_GT] = ACTIONS(1482), - [anon_sym_e_GT_GT] = ACTIONS(1482), - [anon_sym_o_GT_GT] = ACTIONS(1482), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1482), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1482), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1482), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1482), - [anon_sym_POUND] = ACTIONS(245), - }, - [1427] = { - [sym_comment] = STATE(1427), - [ts_builtin_sym_end] = ACTIONS(1494), - [sym__newline] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_PIPE] = ACTIONS(1494), - [anon_sym_err_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_GT_PIPE] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_DOT_DOT] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1492), - [anon_sym_DOT_DOT_LT] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [anon_sym_null] = ACTIONS(1494), - [anon_sym_true] = ACTIONS(1494), - [anon_sym_false] = ACTIONS(1494), - [aux_sym__val_number_decimal_token1] = ACTIONS(1492), - [aux_sym__val_number_decimal_token2] = ACTIONS(1494), - [aux_sym__val_number_decimal_token3] = ACTIONS(1494), - [aux_sym__val_number_decimal_token4] = ACTIONS(1494), - [aux_sym__val_number_token1] = ACTIONS(1494), - [aux_sym__val_number_token2] = ACTIONS(1494), - [aux_sym__val_number_token3] = ACTIONS(1494), - [aux_sym__val_number_token4] = ACTIONS(1494), - [aux_sym__val_number_token5] = ACTIONS(1494), - [aux_sym__val_number_token6] = ACTIONS(1494), - [anon_sym_0b] = ACTIONS(1492), - [sym_filesize_unit] = ACTIONS(1494), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_0o] = ACTIONS(1492), - [anon_sym_0x] = ACTIONS(1492), - [sym_val_date] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym__str_single_quotes] = ACTIONS(1494), - [sym__str_back_ticks] = ACTIONS(1494), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1494), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1494), - [anon_sym_out_GT_GT] = ACTIONS(1494), - [anon_sym_e_GT_GT] = ACTIONS(1494), - [anon_sym_o_GT_GT] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1494), - [aux_sym_unquoted_token1] = ACTIONS(1492), - [aux_sym_unquoted_token2] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1494), - }, - [1428] = { - [sym_comment] = STATE(1428), - [sym__newline] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_err_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_GT_PIPE] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_RPAREN] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DASH2] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1648), - [anon_sym_DOT_DOT_LT] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [aux_sym__immediate_decimal_token1] = ACTIONS(4703), - [aux_sym__immediate_decimal_token2] = ACTIONS(4705), - [anon_sym_null] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [aux_sym__val_number_token4] = ACTIONS(1650), - [aux_sym__val_number_token5] = ACTIONS(1650), - [aux_sym__val_number_token6] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1648), - [anon_sym_0o] = ACTIONS(1648), - [anon_sym_0x] = ACTIONS(1648), - [sym_val_date] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_err_GT] = ACTIONS(1648), - [anon_sym_out_GT] = ACTIONS(1648), - [anon_sym_e_GT] = ACTIONS(1648), - [anon_sym_o_GT] = ACTIONS(1648), - [anon_sym_err_PLUSout_GT] = ACTIONS(1648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), - [anon_sym_o_PLUSe_GT] = ACTIONS(1648), - [anon_sym_e_PLUSo_GT] = ACTIONS(1648), - [anon_sym_err_GT_GT] = ACTIONS(1650), - [anon_sym_out_GT_GT] = ACTIONS(1650), - [anon_sym_e_GT_GT] = ACTIONS(1650), - [anon_sym_o_GT_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), - [aux_sym_unquoted_token1] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1650), - }, - [1429] = { - [sym__expr_parenthesized_immediate] = STATE(2496), - [sym__immediate_decimal] = STATE(2497), - [sym_val_variable] = STATE(2496), - [sym_comment] = STATE(1429), - [ts_builtin_sym_end] = ACTIONS(1646), - [sym__newline] = ACTIONS(1646), - [anon_sym_SEMI] = ACTIONS(1646), - [anon_sym_PIPE] = ACTIONS(1646), - [anon_sym_err_GT_PIPE] = ACTIONS(1646), - [anon_sym_out_GT_PIPE] = ACTIONS(1646), - [anon_sym_e_GT_PIPE] = ACTIONS(1646), - [anon_sym_o_GT_PIPE] = ACTIONS(1646), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1646), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1646), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1646), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1646), - [anon_sym_DOLLAR] = ACTIONS(4499), - [anon_sym_GT2] = ACTIONS(1644), - [anon_sym_DASH2] = ACTIONS(1644), - [anon_sym_in2] = ACTIONS(1646), - [anon_sym_STAR2] = ACTIONS(1644), - [anon_sym_and2] = ACTIONS(1646), - [anon_sym_xor2] = ACTIONS(1646), - [anon_sym_or2] = ACTIONS(1646), - [anon_sym_not_DASHin2] = ACTIONS(1646), - [anon_sym_has2] = ACTIONS(1646), - [anon_sym_not_DASHhas2] = ACTIONS(1646), - [anon_sym_starts_DASHwith2] = ACTIONS(1646), - [anon_sym_ends_DASHwith2] = ACTIONS(1646), - [anon_sym_EQ_EQ2] = ACTIONS(1646), - [anon_sym_BANG_EQ2] = ACTIONS(1646), - [anon_sym_LT2] = ACTIONS(1644), - [anon_sym_LT_EQ2] = ACTIONS(1646), - [anon_sym_GT_EQ2] = ACTIONS(1646), - [anon_sym_EQ_TILDE2] = ACTIONS(1646), - [anon_sym_BANG_TILDE2] = ACTIONS(1646), - [anon_sym_LPAREN2] = ACTIONS(4501), - [anon_sym_STAR_STAR2] = ACTIONS(1646), - [anon_sym_PLUS_PLUS2] = ACTIONS(1646), - [anon_sym_SLASH2] = ACTIONS(1644), - [anon_sym_mod2] = ACTIONS(1646), - [anon_sym_SLASH_SLASH2] = ACTIONS(1646), - [anon_sym_PLUS2] = ACTIONS(1644), - [anon_sym_bit_DASHshl2] = ACTIONS(1646), - [anon_sym_bit_DASHshr2] = ACTIONS(1646), - [anon_sym_bit_DASHand2] = ACTIONS(1646), - [anon_sym_bit_DASHxor2] = ACTIONS(1646), - [anon_sym_bit_DASHor2] = ACTIONS(1646), - [aux_sym__immediate_decimal_token1] = ACTIONS(4685), - [aux_sym__immediate_decimal_token3] = ACTIONS(4685), - [aux_sym__immediate_decimal_token4] = ACTIONS(4507), - [aux_sym__immediate_decimal_token5] = ACTIONS(4509), - [anon_sym_err_GT] = ACTIONS(1644), - [anon_sym_out_GT] = ACTIONS(1644), - [anon_sym_e_GT] = ACTIONS(1644), - [anon_sym_o_GT] = ACTIONS(1644), - [anon_sym_err_PLUSout_GT] = ACTIONS(1644), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1644), - [anon_sym_o_PLUSe_GT] = ACTIONS(1644), - [anon_sym_e_PLUSo_GT] = ACTIONS(1644), - [anon_sym_err_GT_GT] = ACTIONS(1646), - [anon_sym_out_GT_GT] = ACTIONS(1646), - [anon_sym_e_GT_GT] = ACTIONS(1646), - [anon_sym_o_GT_GT] = ACTIONS(1646), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1646), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1646), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1646), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1646), - [anon_sym_POUND] = ACTIONS(245), - }, - [1430] = { - [sym_comment] = STATE(1430), - [anon_sym_EQ] = ACTIONS(988), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(990), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(994), - [anon_sym_err_GT_PIPE] = ACTIONS(994), - [anon_sym_out_GT_PIPE] = ACTIONS(994), - [anon_sym_e_GT_PIPE] = ACTIONS(994), - [anon_sym_o_GT_PIPE] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), - [anon_sym_GT2] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(994), - [anon_sym_STAR2] = ACTIONS(998), - [anon_sym_and2] = ACTIONS(994), - [anon_sym_xor2] = ACTIONS(994), - [anon_sym_or2] = ACTIONS(994), - [anon_sym_not_DASHin2] = ACTIONS(994), - [anon_sym_has2] = ACTIONS(994), - [anon_sym_not_DASHhas2] = ACTIONS(994), - [anon_sym_starts_DASHwith2] = ACTIONS(994), - [anon_sym_ends_DASHwith2] = ACTIONS(994), - [anon_sym_EQ_EQ2] = ACTIONS(994), - [anon_sym_BANG_EQ2] = ACTIONS(994), - [anon_sym_LT2] = ACTIONS(998), - [anon_sym_LT_EQ2] = ACTIONS(994), - [anon_sym_GT_EQ2] = ACTIONS(994), - [anon_sym_EQ_TILDE2] = ACTIONS(994), - [anon_sym_BANG_TILDE2] = ACTIONS(994), - [anon_sym_STAR_STAR2] = ACTIONS(994), - [anon_sym_PLUS_PLUS2] = ACTIONS(998), - [anon_sym_SLASH2] = ACTIONS(998), - [anon_sym_mod2] = ACTIONS(994), - [anon_sym_SLASH_SLASH2] = ACTIONS(994), - [anon_sym_PLUS2] = ACTIONS(998), - [anon_sym_bit_DASHshl2] = ACTIONS(994), - [anon_sym_bit_DASHshr2] = ACTIONS(994), - [anon_sym_bit_DASHand2] = ACTIONS(994), - [anon_sym_bit_DASHxor2] = ACTIONS(994), - [anon_sym_bit_DASHor2] = ACTIONS(994), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [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(994), - [anon_sym_out_GT_GT] = ACTIONS(994), - [anon_sym_e_GT_GT] = ACTIONS(994), - [anon_sym_o_GT_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), - [anon_sym_POUND] = ACTIONS(245), - }, - [1431] = { - [sym_comment] = STATE(1431), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_DOLLAR] = ACTIONS(966), - [anon_sym_DASH_DASH] = ACTIONS(968), - [anon_sym_DASH2] = ACTIONS(966), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_DOT_DOT] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(968), - [anon_sym_DOT_DOT2] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ] = ACTIONS(966), - [anon_sym_DOT_DOT_LT] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), - [anon_sym_DOT_DOT_LT2] = ACTIONS(968), - [anon_sym_null] = ACTIONS(968), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = ACTIONS(968), - [aux_sym__val_number_decimal_token1] = ACTIONS(966), - [aux_sym__val_number_decimal_token2] = ACTIONS(968), - [aux_sym__val_number_decimal_token3] = ACTIONS(968), - [aux_sym__val_number_decimal_token4] = ACTIONS(968), - [aux_sym__val_number_token1] = ACTIONS(968), - [aux_sym__val_number_token2] = ACTIONS(968), - [aux_sym__val_number_token3] = ACTIONS(968), - [aux_sym__val_number_token4] = ACTIONS(968), - [aux_sym__val_number_token5] = ACTIONS(968), - [aux_sym__val_number_token6] = ACTIONS(968), - [anon_sym_0b] = ACTIONS(966), - [anon_sym_0o] = ACTIONS(966), - [anon_sym_0x] = ACTIONS(966), - [sym_val_date] = ACTIONS(968), - [anon_sym_DQUOTE] = ACTIONS(968), - [sym__str_single_quotes] = ACTIONS(968), - [sym__str_back_ticks] = ACTIONS(968), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(968), - [anon_sym_DOT2] = ACTIONS(966), - [anon_sym_err_GT] = ACTIONS(966), - [anon_sym_out_GT] = ACTIONS(966), - [anon_sym_e_GT] = ACTIONS(966), - [anon_sym_o_GT] = ACTIONS(966), - [anon_sym_err_PLUSout_GT] = ACTIONS(966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(966), - [anon_sym_o_PLUSe_GT] = ACTIONS(966), - [anon_sym_e_PLUSo_GT] = ACTIONS(966), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [aux_sym_unquoted_token1] = ACTIONS(966), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(968), - }, - [1432] = { - [sym__expr_parenthesized_immediate] = STATE(7446), - [sym_comment] = STATE(1432), - [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_RPAREN] = ACTIONS(1591), - [anon_sym_GT2] = ACTIONS(1579), - [anon_sym_DASH2] = ACTIONS(1591), - [anon_sym_in2] = ACTIONS(1591), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_STAR2] = ACTIONS(1579), - [anon_sym_and2] = ACTIONS(1591), - [anon_sym_xor2] = ACTIONS(1591), - [anon_sym_or2] = ACTIONS(1591), - [anon_sym_not_DASHin2] = ACTIONS(1591), - [anon_sym_has2] = ACTIONS(1591), - [anon_sym_not_DASHhas2] = ACTIONS(1591), - [anon_sym_starts_DASHwith2] = ACTIONS(1591), - [anon_sym_ends_DASHwith2] = ACTIONS(1591), - [anon_sym_EQ_EQ2] = ACTIONS(1591), - [anon_sym_BANG_EQ2] = ACTIONS(1591), - [anon_sym_LT2] = ACTIONS(1579), - [anon_sym_LT_EQ2] = ACTIONS(1591), - [anon_sym_GT_EQ2] = ACTIONS(1591), - [anon_sym_EQ_TILDE2] = ACTIONS(1591), - [anon_sym_BANG_TILDE2] = ACTIONS(1591), - [anon_sym_LPAREN2] = ACTIONS(4462), - [anon_sym_STAR_STAR2] = ACTIONS(1591), - [anon_sym_PLUS_PLUS2] = ACTIONS(1591), - [anon_sym_SLASH2] = ACTIONS(1579), - [anon_sym_mod2] = ACTIONS(1591), - [anon_sym_SLASH_SLASH2] = ACTIONS(1591), - [anon_sym_PLUS2] = ACTIONS(1579), - [anon_sym_bit_DASHshl2] = ACTIONS(1591), - [anon_sym_bit_DASHshr2] = ACTIONS(1591), - [anon_sym_bit_DASHand2] = ACTIONS(1591), - [anon_sym_bit_DASHxor2] = ACTIONS(1591), - [anon_sym_bit_DASHor2] = ACTIONS(1591), - [anon_sym_DOT_DOT2] = ACTIONS(4707), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4709), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4709), - [sym_filesize_unit] = ACTIONS(4711), - [sym_duration_unit] = ACTIONS(4713), - [anon_sym_err_GT] = ACTIONS(1579), - [anon_sym_out_GT] = ACTIONS(1579), - [anon_sym_e_GT] = ACTIONS(1579), - [anon_sym_o_GT] = ACTIONS(1579), - [anon_sym_err_PLUSout_GT] = ACTIONS(1579), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), - [anon_sym_o_PLUSe_GT] = ACTIONS(1579), - [anon_sym_e_PLUSo_GT] = ACTIONS(1579), - [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_token2] = ACTIONS(4715), - [anon_sym_POUND] = ACTIONS(245), - }, - [1433] = { - [sym_comment] = STATE(1433), - [sym__newline] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_err_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_GT_PIPE] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), - [anon_sym_RPAREN] = ACTIONS(1650), - [anon_sym_GT2] = ACTIONS(1648), - [anon_sym_DASH2] = ACTIONS(1650), - [anon_sym_in2] = ACTIONS(1650), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_STAR2] = ACTIONS(1648), - [anon_sym_and2] = ACTIONS(1650), - [anon_sym_xor2] = ACTIONS(1650), - [anon_sym_or2] = ACTIONS(1650), - [anon_sym_not_DASHin2] = ACTIONS(1650), - [anon_sym_has2] = ACTIONS(1650), - [anon_sym_not_DASHhas2] = ACTIONS(1650), - [anon_sym_starts_DASHwith2] = ACTIONS(1650), - [anon_sym_ends_DASHwith2] = ACTIONS(1650), - [anon_sym_EQ_EQ2] = ACTIONS(1650), - [anon_sym_BANG_EQ2] = ACTIONS(1650), - [anon_sym_LT2] = ACTIONS(1648), - [anon_sym_LT_EQ2] = ACTIONS(1650), - [anon_sym_GT_EQ2] = ACTIONS(1650), - [anon_sym_EQ_TILDE2] = ACTIONS(1650), - [anon_sym_BANG_TILDE2] = ACTIONS(1650), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_STAR_STAR2] = ACTIONS(1650), - [anon_sym_PLUS_PLUS2] = ACTIONS(1650), - [anon_sym_SLASH2] = ACTIONS(1648), - [anon_sym_mod2] = ACTIONS(1650), - [anon_sym_SLASH_SLASH2] = ACTIONS(1650), - [anon_sym_PLUS2] = ACTIONS(1648), - [anon_sym_bit_DASHshl2] = ACTIONS(1650), - [anon_sym_bit_DASHshr2] = ACTIONS(1650), - [anon_sym_bit_DASHand2] = ACTIONS(1650), - [anon_sym_bit_DASHxor2] = ACTIONS(1650), - [anon_sym_bit_DASHor2] = ACTIONS(1650), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [aux_sym__immediate_decimal_token1] = ACTIONS(4717), - [aux_sym__immediate_decimal_token2] = ACTIONS(4719), - [anon_sym_err_GT] = ACTIONS(1648), - [anon_sym_out_GT] = ACTIONS(1648), - [anon_sym_e_GT] = ACTIONS(1648), - [anon_sym_o_GT] = ACTIONS(1648), - [anon_sym_err_PLUSout_GT] = ACTIONS(1648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), - [anon_sym_o_PLUSe_GT] = ACTIONS(1648), - [anon_sym_e_PLUSo_GT] = ACTIONS(1648), - [anon_sym_err_GT_GT] = ACTIONS(1650), - [anon_sym_out_GT_GT] = ACTIONS(1650), - [anon_sym_e_GT_GT] = ACTIONS(1650), - [anon_sym_o_GT_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), - [aux_sym_unquoted_token2] = ACTIONS(1648), + [1365] = { + [sym_comment] = STATE(1365), + [sym__newline] = ACTIONS(1813), + [anon_sym_SEMI] = ACTIONS(1813), + [anon_sym_PIPE] = ACTIONS(1813), + [anon_sym_err_GT_PIPE] = ACTIONS(1813), + [anon_sym_out_GT_PIPE] = ACTIONS(1813), + [anon_sym_e_GT_PIPE] = ACTIONS(1813), + [anon_sym_o_GT_PIPE] = ACTIONS(1813), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1813), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1813), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1813), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_LPAREN] = ACTIONS(1805), + [anon_sym_RPAREN] = ACTIONS(1813), + [anon_sym_DOLLAR] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1813), + [anon_sym_DASH2] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1813), + [anon_sym_RBRACE] = ACTIONS(1813), + [anon_sym_DOT_DOT] = ACTIONS(1805), + [anon_sym_LPAREN2] = ACTIONS(1807), + [anon_sym_DOT_DOT2] = ACTIONS(4629), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1805), + [anon_sym_DOT_DOT_LT] = ACTIONS(1805), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4631), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4631), + [anon_sym_null] = ACTIONS(1813), + [anon_sym_true] = ACTIONS(1813), + [anon_sym_false] = ACTIONS(1813), + [aux_sym__val_number_decimal_token1] = ACTIONS(1805), + [aux_sym__val_number_decimal_token2] = ACTIONS(1813), + [aux_sym__val_number_decimal_token3] = ACTIONS(1813), + [aux_sym__val_number_decimal_token4] = ACTIONS(1813), + [aux_sym__val_number_token1] = ACTIONS(1813), + [aux_sym__val_number_token2] = ACTIONS(1813), + [aux_sym__val_number_token3] = ACTIONS(1813), + [aux_sym__val_number_token4] = ACTIONS(1813), + [aux_sym__val_number_token5] = ACTIONS(1813), + [aux_sym__val_number_token6] = ACTIONS(1813), + [anon_sym_0b] = ACTIONS(1805), + [anon_sym_0o] = ACTIONS(1805), + [anon_sym_0x] = ACTIONS(1805), + [sym_val_date] = ACTIONS(1813), + [anon_sym_DQUOTE] = ACTIONS(1813), + [sym__str_single_quotes] = ACTIONS(1813), + [sym__str_back_ticks] = ACTIONS(1813), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1813), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1813), + [anon_sym_err_GT] = ACTIONS(1805), + [anon_sym_out_GT] = ACTIONS(1805), + [anon_sym_e_GT] = ACTIONS(1805), + [anon_sym_o_GT] = ACTIONS(1805), + [anon_sym_err_PLUSout_GT] = ACTIONS(1805), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1805), + [anon_sym_o_PLUSe_GT] = ACTIONS(1805), + [anon_sym_e_PLUSo_GT] = ACTIONS(1805), + [anon_sym_err_GT_GT] = ACTIONS(1813), + [anon_sym_out_GT_GT] = ACTIONS(1813), + [anon_sym_e_GT_GT] = ACTIONS(1813), + [anon_sym_o_GT_GT] = ACTIONS(1813), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1813), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1813), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1813), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1813), + [aux_sym_unquoted_token1] = ACTIONS(1805), + [aux_sym_unquoted_token2] = ACTIONS(1447), [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1813), }, - [1434] = { - [sym_comment] = STATE(1434), - [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(1719), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_DASH_DASH] = ACTIONS(1721), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1719), - [anon_sym_LPAREN2] = ACTIONS(1721), - [anon_sym_DOT_DOT2] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1719), - [anon_sym_DOT_DOT_LT] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1721), - [aux_sym__immediate_decimal_token2] = ACTIONS(4721), - [anon_sym_null] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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(1719), - [anon_sym_0o] = ACTIONS(1719), - [anon_sym_0x] = ACTIONS(1719), - [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(1719), - [anon_sym_out_GT] = ACTIONS(1719), - [anon_sym_e_GT] = ACTIONS(1719), - [anon_sym_o_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT] = ACTIONS(1719), - [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(1719), - [aux_sym_unquoted_token2] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1721), + [1366] = { + [sym_comment] = STATE(1366), + [sym__newline] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_PIPE] = ACTIONS(948), + [anon_sym_err_GT_PIPE] = ACTIONS(948), + [anon_sym_out_GT_PIPE] = ACTIONS(948), + [anon_sym_e_GT_PIPE] = ACTIONS(948), + [anon_sym_o_GT_PIPE] = ACTIONS(948), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(948), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(948), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(948), + [anon_sym_LPAREN] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(948), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_DASH_DASH] = ACTIONS(948), + [anon_sym_DASH2] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(948), + [anon_sym_RBRACE] = ACTIONS(948), + [anon_sym_DOT_DOT] = ACTIONS(946), + [anon_sym_QMARK2] = ACTIONS(948), + [anon_sym_DOT_DOT2] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ] = ACTIONS(946), + [anon_sym_DOT_DOT_LT] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(948), + [anon_sym_DOT_DOT_LT2] = ACTIONS(948), + [anon_sym_null] = ACTIONS(948), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [aux_sym__val_number_decimal_token1] = ACTIONS(946), + [aux_sym__val_number_decimal_token2] = ACTIONS(948), + [aux_sym__val_number_decimal_token3] = ACTIONS(948), + [aux_sym__val_number_decimal_token4] = ACTIONS(948), + [aux_sym__val_number_token1] = ACTIONS(948), + [aux_sym__val_number_token2] = ACTIONS(948), + [aux_sym__val_number_token3] = ACTIONS(948), + [aux_sym__val_number_token4] = ACTIONS(948), + [aux_sym__val_number_token5] = ACTIONS(948), + [aux_sym__val_number_token6] = ACTIONS(948), + [anon_sym_0b] = ACTIONS(946), + [anon_sym_0o] = ACTIONS(946), + [anon_sym_0x] = ACTIONS(946), + [sym_val_date] = ACTIONS(948), + [anon_sym_DQUOTE] = ACTIONS(948), + [sym__str_single_quotes] = ACTIONS(948), + [sym__str_back_ticks] = ACTIONS(948), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(948), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(948), + [anon_sym_DOT2] = ACTIONS(946), + [anon_sym_err_GT] = ACTIONS(946), + [anon_sym_out_GT] = ACTIONS(946), + [anon_sym_e_GT] = ACTIONS(946), + [anon_sym_o_GT] = ACTIONS(946), + [anon_sym_err_PLUSout_GT] = ACTIONS(946), + [anon_sym_out_PLUSerr_GT] = ACTIONS(946), + [anon_sym_o_PLUSe_GT] = ACTIONS(946), + [anon_sym_e_PLUSo_GT] = ACTIONS(946), + [anon_sym_err_GT_GT] = ACTIONS(948), + [anon_sym_out_GT_GT] = ACTIONS(948), + [anon_sym_e_GT_GT] = ACTIONS(948), + [anon_sym_o_GT_GT] = ACTIONS(948), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(948), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(948), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(948), + [aux_sym_unquoted_token1] = ACTIONS(946), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(948), }, - [1435] = { - [sym__expr_parenthesized_immediate] = STATE(2503), - [sym__immediate_decimal] = STATE(2504), - [sym_val_variable] = STATE(2503), - [sym_comment] = STATE(1435), - [ts_builtin_sym_end] = ACTIONS(1468), - [sym__newline] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_err_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_GT_PIPE] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_DOLLAR] = ACTIONS(4499), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1466), - [anon_sym_in2] = ACTIONS(1468), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1468), - [anon_sym_xor2] = ACTIONS(1468), - [anon_sym_or2] = ACTIONS(1468), - [anon_sym_not_DASHin2] = ACTIONS(1468), - [anon_sym_has2] = ACTIONS(1468), - [anon_sym_not_DASHhas2] = ACTIONS(1468), - [anon_sym_starts_DASHwith2] = ACTIONS(1468), - [anon_sym_ends_DASHwith2] = ACTIONS(1468), - [anon_sym_EQ_EQ2] = ACTIONS(1468), - [anon_sym_BANG_EQ2] = ACTIONS(1468), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1468), - [anon_sym_GT_EQ2] = ACTIONS(1468), - [anon_sym_EQ_TILDE2] = ACTIONS(1468), - [anon_sym_BANG_TILDE2] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(4501), - [anon_sym_STAR_STAR2] = ACTIONS(1468), - [anon_sym_PLUS_PLUS2] = ACTIONS(1468), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1468), - [anon_sym_SLASH_SLASH2] = ACTIONS(1468), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1468), - [anon_sym_bit_DASHshr2] = ACTIONS(1468), - [anon_sym_bit_DASHand2] = ACTIONS(1468), - [anon_sym_bit_DASHxor2] = ACTIONS(1468), - [anon_sym_bit_DASHor2] = ACTIONS(1468), - [aux_sym__immediate_decimal_token1] = ACTIONS(4685), - [aux_sym__immediate_decimal_token3] = ACTIONS(4685), - [aux_sym__immediate_decimal_token4] = ACTIONS(4507), - [aux_sym__immediate_decimal_token5] = ACTIONS(4509), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1468), - [anon_sym_out_GT_GT] = ACTIONS(1468), - [anon_sym_e_GT_GT] = ACTIONS(1468), - [anon_sym_o_GT_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), - [anon_sym_POUND] = ACTIONS(245), + [1367] = { + [sym_path] = STATE(1504), + [sym_comment] = STATE(1367), + [aux_sym_cell_path_repeat1] = STATE(1369), + [ts_builtin_sym_end] = ACTIONS(940), + [sym__newline] = ACTIONS(940), + [anon_sym_SEMI] = ACTIONS(940), + [anon_sym_PIPE] = ACTIONS(940), + [anon_sym_err_GT_PIPE] = ACTIONS(940), + [anon_sym_out_GT_PIPE] = ACTIONS(940), + [anon_sym_e_GT_PIPE] = ACTIONS(940), + [anon_sym_o_GT_PIPE] = ACTIONS(940), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(940), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(940), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(940), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(940), + [anon_sym_LBRACK] = ACTIONS(940), + [anon_sym_LPAREN] = ACTIONS(940), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(940), + [anon_sym_DASH2] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_DOT_DOT2] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(938), + [anon_sym_DOT_DOT_LT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(940), + [anon_sym_DOT_DOT_LT2] = ACTIONS(940), + [anon_sym_null] = ACTIONS(940), + [anon_sym_true] = ACTIONS(940), + [anon_sym_false] = ACTIONS(940), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(940), + [aux_sym__val_number_decimal_token3] = ACTIONS(940), + [aux_sym__val_number_decimal_token4] = ACTIONS(940), + [aux_sym__val_number_token1] = ACTIONS(940), + [aux_sym__val_number_token2] = ACTIONS(940), + [aux_sym__val_number_token3] = ACTIONS(940), + [aux_sym__val_number_token4] = ACTIONS(940), + [aux_sym__val_number_token5] = ACTIONS(940), + [aux_sym__val_number_token6] = ACTIONS(940), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(940), + [anon_sym_DQUOTE] = ACTIONS(940), + [sym__str_single_quotes] = ACTIONS(940), + [sym__str_back_ticks] = ACTIONS(940), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(940), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(940), + [anon_sym_DOT2] = ACTIONS(4568), + [anon_sym_err_GT] = ACTIONS(938), + [anon_sym_out_GT] = ACTIONS(938), + [anon_sym_e_GT] = ACTIONS(938), + [anon_sym_o_GT] = ACTIONS(938), + [anon_sym_err_PLUSout_GT] = ACTIONS(938), + [anon_sym_out_PLUSerr_GT] = ACTIONS(938), + [anon_sym_o_PLUSe_GT] = ACTIONS(938), + [anon_sym_e_PLUSo_GT] = ACTIONS(938), + [anon_sym_err_GT_GT] = ACTIONS(940), + [anon_sym_out_GT_GT] = ACTIONS(940), + [anon_sym_e_GT_GT] = ACTIONS(940), + [anon_sym_o_GT_GT] = ACTIONS(940), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(940), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(940), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(940), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(940), + [aux_sym_unquoted_token1] = ACTIONS(938), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(940), }, - [1436] = { - [sym_comment] = STATE(1436), - [anon_sym_EQ] = ACTIONS(4723), - [anon_sym_PLUS_EQ] = ACTIONS(4725), - [anon_sym_DASH_EQ] = ACTIONS(4725), - [anon_sym_STAR_EQ] = ACTIONS(4725), - [anon_sym_SLASH_EQ] = ACTIONS(4725), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4725), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(994), - [anon_sym_err_GT_PIPE] = ACTIONS(994), - [anon_sym_out_GT_PIPE] = ACTIONS(994), - [anon_sym_e_GT_PIPE] = ACTIONS(994), - [anon_sym_o_GT_PIPE] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), - [anon_sym_RPAREN] = ACTIONS(994), - [anon_sym_GT2] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(994), - [anon_sym_STAR2] = ACTIONS(998), - [anon_sym_and2] = ACTIONS(994), - [anon_sym_xor2] = ACTIONS(994), - [anon_sym_or2] = ACTIONS(994), - [anon_sym_not_DASHin2] = ACTIONS(994), - [anon_sym_has2] = ACTIONS(994), - [anon_sym_not_DASHhas2] = ACTIONS(994), - [anon_sym_starts_DASHwith2] = ACTIONS(994), - [anon_sym_ends_DASHwith2] = ACTIONS(994), - [anon_sym_EQ_EQ2] = ACTIONS(994), - [anon_sym_BANG_EQ2] = ACTIONS(994), - [anon_sym_LT2] = ACTIONS(998), - [anon_sym_LT_EQ2] = ACTIONS(994), - [anon_sym_GT_EQ2] = ACTIONS(994), - [anon_sym_EQ_TILDE2] = ACTIONS(994), - [anon_sym_BANG_TILDE2] = ACTIONS(994), - [anon_sym_STAR_STAR2] = ACTIONS(994), - [anon_sym_PLUS_PLUS2] = ACTIONS(998), - [anon_sym_SLASH2] = ACTIONS(998), - [anon_sym_mod2] = ACTIONS(994), - [anon_sym_SLASH_SLASH2] = ACTIONS(994), - [anon_sym_PLUS2] = ACTIONS(998), - [anon_sym_bit_DASHshl2] = ACTIONS(994), - [anon_sym_bit_DASHshr2] = ACTIONS(994), - [anon_sym_bit_DASHand2] = ACTIONS(994), - [anon_sym_bit_DASHxor2] = ACTIONS(994), - [anon_sym_bit_DASHor2] = ACTIONS(994), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [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(994), - [anon_sym_out_GT_GT] = ACTIONS(994), - [anon_sym_e_GT_GT] = ACTIONS(994), - [anon_sym_o_GT_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), - [anon_sym_POUND] = ACTIONS(245), + [1368] = { + [sym_comment] = STATE(1368), + [sym__newline] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_err_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_GT_PIPE] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1688), + [anon_sym_RPAREN] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1688), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1686), + [anon_sym_DOT_DOT_LT] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [aux_sym__immediate_decimal_token1] = ACTIONS(4633), + [aux_sym__immediate_decimal_token2] = ACTIONS(4635), + [anon_sym_null] = ACTIONS(1688), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1688), + [aux_sym__val_number_decimal_token3] = ACTIONS(1688), + [aux_sym__val_number_decimal_token4] = ACTIONS(1688), + [aux_sym__val_number_token1] = ACTIONS(1688), + [aux_sym__val_number_token2] = ACTIONS(1688), + [aux_sym__val_number_token3] = ACTIONS(1688), + [aux_sym__val_number_token4] = ACTIONS(1688), + [aux_sym__val_number_token5] = ACTIONS(1688), + [aux_sym__val_number_token6] = ACTIONS(1688), + [anon_sym_0b] = ACTIONS(1686), + [anon_sym_0o] = ACTIONS(1686), + [anon_sym_0x] = ACTIONS(1686), + [sym_val_date] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [sym__str_single_quotes] = ACTIONS(1688), + [sym__str_back_ticks] = ACTIONS(1688), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1688), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1688), + [anon_sym_err_GT] = ACTIONS(1686), + [anon_sym_out_GT] = ACTIONS(1686), + [anon_sym_e_GT] = ACTIONS(1686), + [anon_sym_o_GT] = ACTIONS(1686), + [anon_sym_err_PLUSout_GT] = ACTIONS(1686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1686), + [anon_sym_o_PLUSe_GT] = ACTIONS(1686), + [anon_sym_e_PLUSo_GT] = ACTIONS(1686), + [anon_sym_err_GT_GT] = ACTIONS(1688), + [anon_sym_out_GT_GT] = ACTIONS(1688), + [anon_sym_e_GT_GT] = ACTIONS(1688), + [anon_sym_o_GT_GT] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1688), + [aux_sym_unquoted_token1] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1688), }, - [1437] = { - [sym_path] = STATE(1582), - [sym_comment] = STATE(1437), - [aux_sym_cell_path_repeat1] = STATE(1440), + [1369] = { + [sym_path] = STATE(1504), + [sym_comment] = STATE(1369), + [aux_sym_cell_path_repeat1] = STATE(1369), [ts_builtin_sym_end] = ACTIONS(933), [sym__newline] = ACTIONS(933), [anon_sym_SEMI] = ACTIONS(933), @@ -213096,7 +205680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(933), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(933), - [anon_sym_DOT2] = ACTIONS(4653), + [anon_sym_DOT2] = ACTIONS(4637), [anon_sym_err_GT] = ACTIONS(931), [anon_sym_out_GT] = ACTIONS(931), [anon_sym_e_GT] = ACTIONS(931), @@ -213117,227 +205701,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(933), }, - [1438] = { - [sym_comment] = STATE(1438), - [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(1719), - [anon_sym_RPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_DASH_DASH] = ACTIONS(1721), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1719), - [anon_sym_LPAREN2] = ACTIONS(1721), - [anon_sym_DOT_DOT2] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1719), - [anon_sym_DOT_DOT_LT] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1721), - [anon_sym_null] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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(1719), - [anon_sym_0o] = ACTIONS(1719), - [anon_sym_0x] = ACTIONS(1719), - [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(1719), - [anon_sym_out_GT] = ACTIONS(1719), - [anon_sym_e_GT] = ACTIONS(1719), - [anon_sym_o_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT] = ACTIONS(1719), - [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(1719), - [aux_sym_unquoted_token2] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1721), - }, - [1439] = { - [sym_comment] = STATE(1439), - [sym__newline] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_PIPE] = ACTIONS(1494), - [anon_sym_err_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_GT_PIPE] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1494), - [anon_sym_RPAREN] = ACTIONS(1494), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1494), - [anon_sym_in2] = ACTIONS(1494), - [anon_sym_RBRACE] = ACTIONS(1494), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1494), - [anon_sym_xor2] = ACTIONS(1494), - [anon_sym_or2] = ACTIONS(1494), - [anon_sym_not_DASHin2] = ACTIONS(1494), - [anon_sym_has2] = ACTIONS(1494), - [anon_sym_not_DASHhas2] = ACTIONS(1494), - [anon_sym_starts_DASHwith2] = ACTIONS(1494), - [anon_sym_ends_DASHwith2] = ACTIONS(1494), - [anon_sym_EQ_EQ2] = ACTIONS(1494), - [anon_sym_BANG_EQ2] = ACTIONS(1494), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1494), - [anon_sym_GT_EQ2] = ACTIONS(1494), - [anon_sym_EQ_TILDE2] = ACTIONS(1494), - [anon_sym_BANG_TILDE2] = ACTIONS(1494), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_STAR_STAR2] = ACTIONS(1494), - [anon_sym_PLUS_PLUS2] = ACTIONS(1494), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1494), - [anon_sym_SLASH_SLASH2] = ACTIONS(1494), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1494), - [anon_sym_bit_DASHshr2] = ACTIONS(1494), - [anon_sym_bit_DASHand2] = ACTIONS(1494), - [anon_sym_bit_DASHxor2] = ACTIONS(1494), - [anon_sym_bit_DASHor2] = ACTIONS(1494), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(4625), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1494), - [anon_sym_out_GT_GT] = ACTIONS(1494), - [anon_sym_e_GT_GT] = ACTIONS(1494), - [anon_sym_o_GT_GT] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1494), - [aux_sym_unquoted_token2] = ACTIONS(1492), + [1370] = { + [sym_comment] = STATE(1370), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_GT2] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1703), + [anon_sym_in2] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_STAR2] = ACTIONS(1701), + [anon_sym_and2] = ACTIONS(1703), + [anon_sym_xor2] = ACTIONS(1703), + [anon_sym_or2] = ACTIONS(1703), + [anon_sym_not_DASHin2] = ACTIONS(1703), + [anon_sym_has2] = ACTIONS(1703), + [anon_sym_not_DASHhas2] = ACTIONS(1703), + [anon_sym_starts_DASHwith2] = ACTIONS(1703), + [anon_sym_ends_DASHwith2] = ACTIONS(1703), + [anon_sym_EQ_EQ2] = ACTIONS(1703), + [anon_sym_BANG_EQ2] = ACTIONS(1703), + [anon_sym_LT2] = ACTIONS(1701), + [anon_sym_LT_EQ2] = ACTIONS(1703), + [anon_sym_GT_EQ2] = ACTIONS(1703), + [anon_sym_EQ_TILDE2] = ACTIONS(1703), + [anon_sym_BANG_TILDE2] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_STAR_STAR2] = ACTIONS(1703), + [anon_sym_PLUS_PLUS2] = ACTIONS(1703), + [anon_sym_SLASH2] = ACTIONS(1701), + [anon_sym_mod2] = ACTIONS(1703), + [anon_sym_SLASH_SLASH2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_bit_DASHshl2] = ACTIONS(1703), + [anon_sym_bit_DASHshr2] = ACTIONS(1703), + [anon_sym_bit_DASHand2] = ACTIONS(1703), + [anon_sym_bit_DASHxor2] = ACTIONS(1703), + [anon_sym_bit_DASHor2] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(4640), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4642), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token2] = ACTIONS(1701), [anon_sym_POUND] = ACTIONS(245), }, - [1440] = { - [sym_path] = STATE(1582), - [sym_comment] = STATE(1440), - [aux_sym_cell_path_repeat1] = STATE(1440), - [ts_builtin_sym_end] = ACTIONS(937), - [sym__newline] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(937), - [anon_sym_err_GT_PIPE] = ACTIONS(937), - [anon_sym_out_GT_PIPE] = ACTIONS(937), - [anon_sym_e_GT_PIPE] = ACTIONS(937), - [anon_sym_o_GT_PIPE] = ACTIONS(937), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(935), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_DASH2] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_DOT_DOT] = ACTIONS(935), - [anon_sym_DOT_DOT2] = ACTIONS(935), - [anon_sym_DOT_DOT_EQ] = ACTIONS(935), - [anon_sym_DOT_DOT_LT] = ACTIONS(935), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), - [anon_sym_DOT_DOT_LT2] = ACTIONS(937), - [anon_sym_null] = ACTIONS(937), - [anon_sym_true] = ACTIONS(937), - [anon_sym_false] = ACTIONS(937), - [aux_sym__val_number_decimal_token1] = ACTIONS(935), - [aux_sym__val_number_decimal_token2] = ACTIONS(937), - [aux_sym__val_number_decimal_token3] = ACTIONS(937), - [aux_sym__val_number_decimal_token4] = ACTIONS(937), - [aux_sym__val_number_token1] = ACTIONS(937), - [aux_sym__val_number_token2] = ACTIONS(937), - [aux_sym__val_number_token3] = ACTIONS(937), - [aux_sym__val_number_token4] = ACTIONS(937), - [aux_sym__val_number_token5] = ACTIONS(937), - [aux_sym__val_number_token6] = ACTIONS(937), - [anon_sym_0b] = ACTIONS(935), - [anon_sym_0o] = ACTIONS(935), - [anon_sym_0x] = ACTIONS(935), - [sym_val_date] = ACTIONS(937), - [anon_sym_DQUOTE] = ACTIONS(937), - [sym__str_single_quotes] = ACTIONS(937), - [sym__str_back_ticks] = ACTIONS(937), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(937), - [anon_sym_DOT2] = ACTIONS(4727), - [anon_sym_err_GT] = ACTIONS(935), - [anon_sym_out_GT] = ACTIONS(935), - [anon_sym_e_GT] = ACTIONS(935), - [anon_sym_o_GT] = ACTIONS(935), - [anon_sym_err_PLUSout_GT] = ACTIONS(935), - [anon_sym_out_PLUSerr_GT] = ACTIONS(935), - [anon_sym_o_PLUSe_GT] = ACTIONS(935), - [anon_sym_e_PLUSo_GT] = ACTIONS(935), - [anon_sym_err_GT_GT] = ACTIONS(937), - [anon_sym_out_GT_GT] = ACTIONS(937), - [anon_sym_e_GT_GT] = ACTIONS(937), - [anon_sym_o_GT_GT] = ACTIONS(937), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), - [aux_sym_unquoted_token1] = ACTIONS(935), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(937), + [1371] = { + [sym_comment] = STATE(1371), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1701), + [anon_sym_DOT_DOT_LT] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4566), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), }, - [1441] = { - [sym_comment] = STATE(1441), - [anon_sym_EQ] = ACTIONS(4730), - [anon_sym_PLUS_EQ] = ACTIONS(4732), - [anon_sym_DASH_EQ] = ACTIONS(4732), - [anon_sym_STAR_EQ] = ACTIONS(4732), - [anon_sym_SLASH_EQ] = ACTIONS(4732), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4732), + [1372] = { + [sym_comment] = STATE(1372), + [ts_builtin_sym_end] = ACTIONS(994), + [anon_sym_EQ] = ACTIONS(4644), + [anon_sym_PLUS_EQ] = ACTIONS(4646), + [anon_sym_DASH_EQ] = ACTIONS(4646), + [anon_sym_STAR_EQ] = ACTIONS(4646), + [anon_sym_SLASH_EQ] = ACTIONS(4646), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4646), [sym__newline] = ACTIONS(994), [anon_sym_SEMI] = ACTIONS(994), [anon_sym_PIPE] = ACTIONS(994), @@ -213349,7 +205863,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), - [anon_sym_RPAREN] = ACTIONS(994), [anon_sym_GT2] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(998), [anon_sym_in2] = ACTIONS(994), @@ -213380,9 +205893,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(994), [anon_sym_bit_DASHxor2] = ACTIONS(994), [anon_sym_bit_DASHor2] = ACTIONS(994), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), + [anon_sym_DOT_DOT2] = ACTIONS(4648), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4650), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4650), [anon_sym_err_GT] = ACTIONS(998), [anon_sym_out_GT] = ACTIONS(998), [anon_sym_e_GT] = ACTIONS(998), @@ -213401,299 +205914,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(245), }, - [1442] = { - [sym_comment] = STATE(1442), - [ts_builtin_sym_end] = ACTIONS(1494), - [sym__newline] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_PIPE] = ACTIONS(1494), - [anon_sym_err_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_GT_PIPE] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1494), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1494), - [anon_sym_in2] = ACTIONS(1494), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1494), - [anon_sym_xor2] = ACTIONS(1494), - [anon_sym_or2] = ACTIONS(1494), - [anon_sym_not_DASHin2] = ACTIONS(1494), - [anon_sym_has2] = ACTIONS(1494), - [anon_sym_not_DASHhas2] = ACTIONS(1494), - [anon_sym_starts_DASHwith2] = ACTIONS(1494), - [anon_sym_ends_DASHwith2] = ACTIONS(1494), - [anon_sym_EQ_EQ2] = ACTIONS(1494), - [anon_sym_BANG_EQ2] = ACTIONS(1494), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1494), - [anon_sym_GT_EQ2] = ACTIONS(1494), - [anon_sym_EQ_TILDE2] = ACTIONS(1494), - [anon_sym_BANG_TILDE2] = ACTIONS(1494), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_STAR_STAR2] = ACTIONS(1494), - [anon_sym_PLUS_PLUS2] = ACTIONS(1494), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1494), - [anon_sym_SLASH_SLASH2] = ACTIONS(1494), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1494), - [anon_sym_bit_DASHshr2] = ACTIONS(1494), - [anon_sym_bit_DASHand2] = ACTIONS(1494), - [anon_sym_bit_DASHxor2] = ACTIONS(1494), - [anon_sym_bit_DASHor2] = ACTIONS(1494), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT] = ACTIONS(4734), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(4736), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1494), - [anon_sym_out_GT_GT] = ACTIONS(1494), - [anon_sym_e_GT_GT] = ACTIONS(1494), - [anon_sym_o_GT_GT] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1494), - [aux_sym_unquoted_token2] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(245), - }, - [1443] = { - [sym_comment] = STATE(1443), - [ts_builtin_sym_end] = ACTIONS(1486), - [sym__newline] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1486), - [anon_sym_err_GT_PIPE] = ACTIONS(1486), - [anon_sym_out_GT_PIPE] = ACTIONS(1486), - [anon_sym_e_GT_PIPE] = ACTIONS(1486), - [anon_sym_o_GT_PIPE] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1486), - [anon_sym_GT2] = ACTIONS(1484), - [anon_sym_DASH2] = ACTIONS(1486), - [anon_sym_in2] = ACTIONS(1486), - [anon_sym_STAR2] = ACTIONS(1484), - [anon_sym_and2] = ACTIONS(1486), - [anon_sym_xor2] = ACTIONS(1486), - [anon_sym_or2] = ACTIONS(1486), - [anon_sym_not_DASHin2] = ACTIONS(1486), - [anon_sym_has2] = ACTIONS(1486), - [anon_sym_not_DASHhas2] = ACTIONS(1486), - [anon_sym_starts_DASHwith2] = ACTIONS(1486), - [anon_sym_ends_DASHwith2] = ACTIONS(1486), - [anon_sym_EQ_EQ2] = ACTIONS(1486), - [anon_sym_BANG_EQ2] = ACTIONS(1486), - [anon_sym_LT2] = ACTIONS(1484), - [anon_sym_LT_EQ2] = ACTIONS(1486), - [anon_sym_GT_EQ2] = ACTIONS(1486), - [anon_sym_EQ_TILDE2] = ACTIONS(1486), - [anon_sym_BANG_TILDE2] = ACTIONS(1486), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_STAR_STAR2] = ACTIONS(1486), - [anon_sym_PLUS_PLUS2] = ACTIONS(1486), - [anon_sym_SLASH2] = ACTIONS(1484), - [anon_sym_mod2] = ACTIONS(1486), - [anon_sym_SLASH_SLASH2] = ACTIONS(1486), - [anon_sym_PLUS2] = ACTIONS(1484), - [anon_sym_bit_DASHshl2] = ACTIONS(1486), - [anon_sym_bit_DASHshr2] = ACTIONS(1486), - [anon_sym_bit_DASHand2] = ACTIONS(1486), - [anon_sym_bit_DASHxor2] = ACTIONS(1486), - [anon_sym_bit_DASHor2] = ACTIONS(1486), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [aux_sym__immediate_decimal_token1] = ACTIONS(4738), - [aux_sym__immediate_decimal_token2] = ACTIONS(4740), - [sym_filesize_unit] = ACTIONS(1484), - [sym_duration_unit] = ACTIONS(1486), - [anon_sym_err_GT] = ACTIONS(1484), - [anon_sym_out_GT] = ACTIONS(1484), - [anon_sym_e_GT] = ACTIONS(1484), - [anon_sym_o_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT] = ACTIONS(1484), - [anon_sym_err_GT_GT] = ACTIONS(1486), - [anon_sym_out_GT_GT] = ACTIONS(1486), - [anon_sym_e_GT_GT] = ACTIONS(1486), - [anon_sym_o_GT_GT] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1486), - [aux_sym_unquoted_token2] = ACTIONS(1484), - [anon_sym_POUND] = ACTIONS(245), - }, - [1444] = { - [sym_comment] = STATE(1444), - [ts_builtin_sym_end] = ACTIONS(1717), - [sym__newline] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_err_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_GT_PIPE] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [anon_sym_DASH2] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), - [anon_sym_DOT_DOT_LT] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [anon_sym_null] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [aux_sym__val_number_decimal_token1] = ACTIONS(1715), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [aux_sym__val_number_token4] = ACTIONS(1717), - [aux_sym__val_number_token5] = ACTIONS(1717), - [aux_sym__val_number_token6] = ACTIONS(1717), - [anon_sym_0b] = ACTIONS(1715), - [sym_filesize_unit] = ACTIONS(1717), - [sym_duration_unit] = ACTIONS(1717), - [anon_sym_0o] = ACTIONS(1715), - [anon_sym_0x] = ACTIONS(1715), - [sym_val_date] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1717), - [anon_sym_out_GT_GT] = ACTIONS(1717), - [anon_sym_e_GT_GT] = ACTIONS(1717), - [anon_sym_o_GT_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), - [aux_sym_unquoted_token1] = ACTIONS(1715), - [aux_sym_unquoted_token2] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1717), - }, - [1445] = { - [sym_comment] = STATE(1445), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_DOT_DOT] = ACTIONS(1666), - [anon_sym_DOT_DOT2] = ACTIONS(1666), - [anon_sym_DOT] = ACTIONS(4742), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1666), - [anon_sym_DOT_DOT_LT] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [aux_sym__immediate_decimal_token2] = ACTIONS(4744), - [anon_sym_null] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1668), - [aux_sym__val_number_token5] = ACTIONS(1668), - [aux_sym__val_number_token6] = ACTIONS(1668), - [anon_sym_0b] = ACTIONS(1666), - [anon_sym_0o] = ACTIONS(1666), - [anon_sym_0x] = ACTIONS(1666), - [sym_val_date] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_err_GT] = ACTIONS(1666), - [anon_sym_out_GT] = ACTIONS(1666), - [anon_sym_e_GT] = ACTIONS(1666), - [anon_sym_o_GT] = ACTIONS(1666), - [anon_sym_err_PLUSout_GT] = ACTIONS(1666), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), - [anon_sym_o_PLUSe_GT] = ACTIONS(1666), - [anon_sym_e_PLUSo_GT] = ACTIONS(1666), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [aux_sym_unquoted_token1] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), - }, - [1446] = { - [sym_comment] = STATE(1446), - [ts_builtin_sym_end] = ACTIONS(994), - [anon_sym_EQ] = ACTIONS(4746), - [anon_sym_PLUS_EQ] = ACTIONS(4748), - [anon_sym_DASH_EQ] = ACTIONS(4748), - [anon_sym_STAR_EQ] = ACTIONS(4748), - [anon_sym_SLASH_EQ] = ACTIONS(4748), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4748), + [1373] = { + [sym_comment] = STATE(1373), + [anon_sym_EQ] = ACTIONS(988), + [anon_sym_PLUS_EQ] = ACTIONS(990), + [anon_sym_DASH_EQ] = ACTIONS(990), + [anon_sym_STAR_EQ] = ACTIONS(990), + [anon_sym_SLASH_EQ] = ACTIONS(990), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(990), [sym__newline] = ACTIONS(994), [anon_sym_SEMI] = ACTIONS(994), [anon_sym_PIPE] = ACTIONS(994), @@ -213708,6 +205936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT2] = ACTIONS(998), [anon_sym_DASH2] = ACTIONS(998), [anon_sym_in2] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), [anon_sym_STAR2] = ACTIONS(998), [anon_sym_and2] = ACTIONS(994), [anon_sym_xor2] = ACTIONS(994), @@ -213735,9 +205964,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(994), [anon_sym_bit_DASHxor2] = ACTIONS(994), [anon_sym_bit_DASHor2] = ACTIONS(994), - [anon_sym_DOT_DOT2] = ACTIONS(4750), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4752), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4752), + [anon_sym_DOT_DOT2] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), [anon_sym_err_GT] = ACTIONS(998), [anon_sym_out_GT] = ACTIONS(998), [anon_sym_e_GT] = ACTIONS(998), @@ -213756,221 +205985,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(245), }, - [1447] = { - [sym__expr_parenthesized_immediate] = STATE(2493), - [sym__immediate_decimal] = STATE(2494), - [sym_val_variable] = STATE(2493), - [sym_comment] = STATE(1447), - [ts_builtin_sym_end] = ACTIONS(1445), - [sym__newline] = ACTIONS(1445), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_PIPE] = ACTIONS(1445), - [anon_sym_err_GT_PIPE] = ACTIONS(1445), - [anon_sym_out_GT_PIPE] = ACTIONS(1445), - [anon_sym_e_GT_PIPE] = ACTIONS(1445), - [anon_sym_o_GT_PIPE] = ACTIONS(1445), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1445), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1445), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1445), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1445), - [anon_sym_DOLLAR] = ACTIONS(4499), - [anon_sym_GT2] = ACTIONS(1431), - [anon_sym_DASH2] = ACTIONS(1431), - [anon_sym_in2] = ACTIONS(1445), - [anon_sym_STAR2] = ACTIONS(1431), - [anon_sym_and2] = ACTIONS(1445), - [anon_sym_xor2] = ACTIONS(1445), - [anon_sym_or2] = ACTIONS(1445), - [anon_sym_not_DASHin2] = ACTIONS(1445), - [anon_sym_has2] = ACTIONS(1445), - [anon_sym_not_DASHhas2] = ACTIONS(1445), - [anon_sym_starts_DASHwith2] = ACTIONS(1445), - [anon_sym_ends_DASHwith2] = ACTIONS(1445), - [anon_sym_EQ_EQ2] = ACTIONS(1445), - [anon_sym_BANG_EQ2] = ACTIONS(1445), - [anon_sym_LT2] = ACTIONS(1431), - [anon_sym_LT_EQ2] = ACTIONS(1445), - [anon_sym_GT_EQ2] = ACTIONS(1445), - [anon_sym_EQ_TILDE2] = ACTIONS(1445), - [anon_sym_BANG_TILDE2] = ACTIONS(1445), - [anon_sym_LPAREN2] = ACTIONS(4501), - [anon_sym_STAR_STAR2] = ACTIONS(1445), - [anon_sym_PLUS_PLUS2] = ACTIONS(1445), - [anon_sym_SLASH2] = ACTIONS(1431), - [anon_sym_mod2] = ACTIONS(1445), - [anon_sym_SLASH_SLASH2] = ACTIONS(1445), - [anon_sym_PLUS2] = ACTIONS(1431), - [anon_sym_bit_DASHshl2] = ACTIONS(1445), - [anon_sym_bit_DASHshr2] = ACTIONS(1445), - [anon_sym_bit_DASHand2] = ACTIONS(1445), - [anon_sym_bit_DASHxor2] = ACTIONS(1445), - [anon_sym_bit_DASHor2] = ACTIONS(1445), - [aux_sym__immediate_decimal_token1] = ACTIONS(4685), - [aux_sym__immediate_decimal_token3] = ACTIONS(4685), - [aux_sym__immediate_decimal_token4] = ACTIONS(4507), - [aux_sym__immediate_decimal_token5] = ACTIONS(4509), - [anon_sym_err_GT] = ACTIONS(1431), - [anon_sym_out_GT] = ACTIONS(1431), - [anon_sym_e_GT] = ACTIONS(1431), - [anon_sym_o_GT] = ACTIONS(1431), - [anon_sym_err_PLUSout_GT] = ACTIONS(1431), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1431), - [anon_sym_o_PLUSe_GT] = ACTIONS(1431), - [anon_sym_e_PLUSo_GT] = ACTIONS(1431), - [anon_sym_err_GT_GT] = ACTIONS(1445), - [anon_sym_out_GT_GT] = ACTIONS(1445), - [anon_sym_e_GT_GT] = ACTIONS(1445), - [anon_sym_o_GT_GT] = ACTIONS(1445), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1445), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1445), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1445), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1445), - [anon_sym_POUND] = ACTIONS(245), - }, - [1448] = { - [sym_comment] = STATE(1448), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_DOT_DOT] = ACTIONS(1666), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_DOT_DOT2] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1666), - [anon_sym_DOT_DOT_LT] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [anon_sym_null] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1668), - [aux_sym__val_number_token5] = ACTIONS(1668), - [aux_sym__val_number_token6] = ACTIONS(1668), - [anon_sym_0b] = ACTIONS(1666), - [anon_sym_0o] = ACTIONS(1666), - [anon_sym_0x] = ACTIONS(1666), - [sym_val_date] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_err_GT] = ACTIONS(1666), - [anon_sym_out_GT] = ACTIONS(1666), - [anon_sym_e_GT] = ACTIONS(1666), - [anon_sym_o_GT] = ACTIONS(1666), - [anon_sym_err_PLUSout_GT] = ACTIONS(1666), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), - [anon_sym_o_PLUSe_GT] = ACTIONS(1666), - [anon_sym_e_PLUSo_GT] = ACTIONS(1666), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [aux_sym_unquoted_token1] = ACTIONS(1666), - [aux_sym_unquoted_token2] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), - }, - [1449] = { - [sym_comment] = STATE(1449), - [sym__newline] = ACTIONS(1819), - [anon_sym_SEMI] = ACTIONS(1819), - [anon_sym_PIPE] = ACTIONS(1819), - [anon_sym_err_GT_PIPE] = ACTIONS(1819), - [anon_sym_out_GT_PIPE] = ACTIONS(1819), - [anon_sym_e_GT_PIPE] = ACTIONS(1819), - [anon_sym_o_GT_PIPE] = ACTIONS(1819), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1819), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1819), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1819), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1819), - [anon_sym_LBRACK] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1811), - [anon_sym_RPAREN] = ACTIONS(1819), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_DASH_DASH] = ACTIONS(1819), - [anon_sym_DASH2] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1819), - [anon_sym_RBRACE] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1811), - [anon_sym_LPAREN2] = ACTIONS(1813), - [anon_sym_DOT_DOT2] = ACTIONS(4754), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1811), - [anon_sym_DOT_DOT_LT] = ACTIONS(1811), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4756), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4756), - [anon_sym_null] = ACTIONS(1819), - [anon_sym_true] = ACTIONS(1819), - [anon_sym_false] = ACTIONS(1819), - [aux_sym__val_number_decimal_token1] = ACTIONS(1811), - [aux_sym__val_number_decimal_token2] = ACTIONS(1819), - [aux_sym__val_number_decimal_token3] = ACTIONS(1819), - [aux_sym__val_number_decimal_token4] = ACTIONS(1819), - [aux_sym__val_number_token1] = ACTIONS(1819), - [aux_sym__val_number_token2] = ACTIONS(1819), - [aux_sym__val_number_token3] = ACTIONS(1819), - [aux_sym__val_number_token4] = ACTIONS(1819), - [aux_sym__val_number_token5] = ACTIONS(1819), - [aux_sym__val_number_token6] = ACTIONS(1819), - [anon_sym_0b] = ACTIONS(1811), - [anon_sym_0o] = ACTIONS(1811), - [anon_sym_0x] = ACTIONS(1811), - [sym_val_date] = ACTIONS(1819), - [anon_sym_DQUOTE] = ACTIONS(1819), - [sym__str_single_quotes] = ACTIONS(1819), - [sym__str_back_ticks] = ACTIONS(1819), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1819), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1819), - [anon_sym_err_GT] = ACTIONS(1811), - [anon_sym_out_GT] = ACTIONS(1811), - [anon_sym_e_GT] = ACTIONS(1811), - [anon_sym_o_GT] = ACTIONS(1811), - [anon_sym_err_PLUSout_GT] = ACTIONS(1811), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1811), - [anon_sym_o_PLUSe_GT] = ACTIONS(1811), - [anon_sym_e_PLUSo_GT] = ACTIONS(1811), - [anon_sym_err_GT_GT] = ACTIONS(1819), - [anon_sym_out_GT_GT] = ACTIONS(1819), - [anon_sym_e_GT_GT] = ACTIONS(1819), - [anon_sym_o_GT_GT] = ACTIONS(1819), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1819), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1819), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1819), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1819), - [aux_sym_unquoted_token1] = ACTIONS(1811), - [aux_sym_unquoted_token2] = ACTIONS(1447), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1819), - }, - [1450] = { - [sym_comment] = STATE(1450), + [1374] = { + [sym_comment] = STATE(1374), [sym__newline] = ACTIONS(972), [anon_sym_SEMI] = ACTIONS(972), [anon_sym_PIPE] = ACTIONS(972), @@ -214040,79 +206056,718 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(972), [anon_sym_POUND] = ACTIONS(245), }, - [1451] = { - [sym_comment] = STATE(1451), - [sym__newline] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(944), - [anon_sym_err_GT_PIPE] = ACTIONS(944), - [anon_sym_out_GT_PIPE] = ACTIONS(944), - [anon_sym_e_GT_PIPE] = ACTIONS(944), - [anon_sym_o_GT_PIPE] = ACTIONS(944), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(944), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(944), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(944), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(944), - [anon_sym_RPAREN] = ACTIONS(944), - [anon_sym_DOLLAR] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(944), - [anon_sym_DASH2] = ACTIONS(942), - [anon_sym_LBRACE] = ACTIONS(944), - [anon_sym_RBRACE] = ACTIONS(944), - [anon_sym_DOT_DOT] = ACTIONS(942), - [anon_sym_QMARK2] = ACTIONS(4758), - [anon_sym_DOT_DOT2] = ACTIONS(942), - [anon_sym_DOT_DOT_EQ] = ACTIONS(942), - [anon_sym_DOT_DOT_LT] = ACTIONS(942), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(944), - [anon_sym_DOT_DOT_LT2] = ACTIONS(944), - [anon_sym_null] = ACTIONS(944), - [anon_sym_true] = ACTIONS(944), - [anon_sym_false] = ACTIONS(944), - [aux_sym__val_number_decimal_token1] = ACTIONS(942), - [aux_sym__val_number_decimal_token2] = ACTIONS(944), - [aux_sym__val_number_decimal_token3] = ACTIONS(944), - [aux_sym__val_number_decimal_token4] = ACTIONS(944), - [aux_sym__val_number_token1] = ACTIONS(944), - [aux_sym__val_number_token2] = ACTIONS(944), - [aux_sym__val_number_token3] = ACTIONS(944), - [aux_sym__val_number_token4] = ACTIONS(944), - [aux_sym__val_number_token5] = ACTIONS(944), - [aux_sym__val_number_token6] = ACTIONS(944), - [anon_sym_0b] = ACTIONS(942), - [anon_sym_0o] = ACTIONS(942), - [anon_sym_0x] = ACTIONS(942), - [sym_val_date] = ACTIONS(944), - [anon_sym_DQUOTE] = ACTIONS(944), - [sym__str_single_quotes] = ACTIONS(944), - [sym__str_back_ticks] = ACTIONS(944), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(944), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(944), - [anon_sym_DOT2] = ACTIONS(942), - [anon_sym_err_GT] = ACTIONS(942), - [anon_sym_out_GT] = ACTIONS(942), - [anon_sym_e_GT] = ACTIONS(942), - [anon_sym_o_GT] = ACTIONS(942), - [anon_sym_err_PLUSout_GT] = ACTIONS(942), - [anon_sym_out_PLUSerr_GT] = ACTIONS(942), - [anon_sym_o_PLUSe_GT] = ACTIONS(942), - [anon_sym_e_PLUSo_GT] = ACTIONS(942), - [anon_sym_err_GT_GT] = ACTIONS(944), - [anon_sym_out_GT_GT] = ACTIONS(944), - [anon_sym_e_GT_GT] = ACTIONS(944), - [anon_sym_o_GT_GT] = ACTIONS(944), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(944), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(944), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(944), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(944), - [aux_sym_unquoted_token1] = ACTIONS(942), + [1375] = { + [sym_comment] = STATE(1375), + [sym__newline] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_err_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_GT_PIPE] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1688), + [anon_sym_RPAREN] = ACTIONS(1688), + [anon_sym_GT2] = ACTIONS(1686), + [anon_sym_DASH2] = ACTIONS(1688), + [anon_sym_in2] = ACTIONS(1688), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_STAR2] = ACTIONS(1686), + [anon_sym_and2] = ACTIONS(1688), + [anon_sym_xor2] = ACTIONS(1688), + [anon_sym_or2] = ACTIONS(1688), + [anon_sym_not_DASHin2] = ACTIONS(1688), + [anon_sym_has2] = ACTIONS(1688), + [anon_sym_not_DASHhas2] = ACTIONS(1688), + [anon_sym_starts_DASHwith2] = ACTIONS(1688), + [anon_sym_ends_DASHwith2] = ACTIONS(1688), + [anon_sym_EQ_EQ2] = ACTIONS(1688), + [anon_sym_BANG_EQ2] = ACTIONS(1688), + [anon_sym_LT2] = ACTIONS(1686), + [anon_sym_LT_EQ2] = ACTIONS(1688), + [anon_sym_GT_EQ2] = ACTIONS(1688), + [anon_sym_EQ_TILDE2] = ACTIONS(1688), + [anon_sym_BANG_TILDE2] = ACTIONS(1688), + [anon_sym_LPAREN2] = ACTIONS(1688), + [anon_sym_STAR_STAR2] = ACTIONS(1688), + [anon_sym_PLUS_PLUS2] = ACTIONS(1688), + [anon_sym_SLASH2] = ACTIONS(1686), + [anon_sym_mod2] = ACTIONS(1688), + [anon_sym_SLASH_SLASH2] = ACTIONS(1688), + [anon_sym_PLUS2] = ACTIONS(1686), + [anon_sym_bit_DASHshl2] = ACTIONS(1688), + [anon_sym_bit_DASHshr2] = ACTIONS(1688), + [anon_sym_bit_DASHand2] = ACTIONS(1688), + [anon_sym_bit_DASHxor2] = ACTIONS(1688), + [anon_sym_bit_DASHor2] = ACTIONS(1688), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [aux_sym__immediate_decimal_token1] = ACTIONS(4652), + [aux_sym__immediate_decimal_token2] = ACTIONS(4654), + [anon_sym_err_GT] = ACTIONS(1686), + [anon_sym_out_GT] = ACTIONS(1686), + [anon_sym_e_GT] = ACTIONS(1686), + [anon_sym_o_GT] = ACTIONS(1686), + [anon_sym_err_PLUSout_GT] = ACTIONS(1686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1686), + [anon_sym_o_PLUSe_GT] = ACTIONS(1686), + [anon_sym_e_PLUSo_GT] = ACTIONS(1686), + [anon_sym_err_GT_GT] = ACTIONS(1688), + [anon_sym_out_GT_GT] = ACTIONS(1688), + [anon_sym_e_GT_GT] = ACTIONS(1688), + [anon_sym_o_GT_GT] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1688), + [aux_sym_unquoted_token2] = ACTIONS(1686), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(944), }, - [1452] = { - [sym_comment] = STATE(1452), + [1376] = { + [sym__expr_parenthesized_immediate] = STATE(2353), + [sym__immediate_decimal] = STATE(2303), + [sym_val_variable] = STATE(2353), + [sym_comment] = STATE(1376), + [ts_builtin_sym_end] = ACTIONS(1475), + [sym__newline] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_err_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_GT_PIPE] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1475), + [anon_sym_DOLLAR] = ACTIONS(4523), + [anon_sym_GT2] = ACTIONS(1473), + [anon_sym_DASH2] = ACTIONS(1473), + [anon_sym_in2] = ACTIONS(1475), + [anon_sym_STAR2] = ACTIONS(1473), + [anon_sym_and2] = ACTIONS(1475), + [anon_sym_xor2] = ACTIONS(1475), + [anon_sym_or2] = ACTIONS(1475), + [anon_sym_not_DASHin2] = ACTIONS(1475), + [anon_sym_has2] = ACTIONS(1475), + [anon_sym_not_DASHhas2] = ACTIONS(1475), + [anon_sym_starts_DASHwith2] = ACTIONS(1475), + [anon_sym_ends_DASHwith2] = ACTIONS(1475), + [anon_sym_EQ_EQ2] = ACTIONS(1475), + [anon_sym_BANG_EQ2] = ACTIONS(1475), + [anon_sym_LT2] = ACTIONS(1473), + [anon_sym_LT_EQ2] = ACTIONS(1475), + [anon_sym_GT_EQ2] = ACTIONS(1475), + [anon_sym_EQ_TILDE2] = ACTIONS(1475), + [anon_sym_BANG_TILDE2] = ACTIONS(1475), + [anon_sym_LPAREN2] = ACTIONS(4525), + [anon_sym_STAR_STAR2] = ACTIONS(1475), + [anon_sym_PLUS_PLUS2] = ACTIONS(1475), + [anon_sym_SLASH2] = ACTIONS(1473), + [anon_sym_mod2] = ACTIONS(1475), + [anon_sym_SLASH_SLASH2] = ACTIONS(1475), + [anon_sym_PLUS2] = ACTIONS(1473), + [anon_sym_bit_DASHshl2] = ACTIONS(1475), + [anon_sym_bit_DASHshr2] = ACTIONS(1475), + [anon_sym_bit_DASHand2] = ACTIONS(1475), + [anon_sym_bit_DASHxor2] = ACTIONS(1475), + [anon_sym_bit_DASHor2] = ACTIONS(1475), + [aux_sym__immediate_decimal_token1] = ACTIONS(4656), + [aux_sym__immediate_decimal_token3] = ACTIONS(4656), + [aux_sym__immediate_decimal_token4] = ACTIONS(4531), + [aux_sym__immediate_decimal_token5] = ACTIONS(4533), + [anon_sym_err_GT] = ACTIONS(1473), + [anon_sym_out_GT] = ACTIONS(1473), + [anon_sym_e_GT] = ACTIONS(1473), + [anon_sym_o_GT] = ACTIONS(1473), + [anon_sym_err_PLUSout_GT] = ACTIONS(1473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1473), + [anon_sym_o_PLUSe_GT] = ACTIONS(1473), + [anon_sym_e_PLUSo_GT] = ACTIONS(1473), + [anon_sym_err_GT_GT] = ACTIONS(1475), + [anon_sym_out_GT_GT] = ACTIONS(1475), + [anon_sym_e_GT_GT] = ACTIONS(1475), + [anon_sym_o_GT_GT] = ACTIONS(1475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(245), + }, + [1377] = { + [sym_comment] = STATE(1377), + [sym__newline] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_err_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_GT_PIPE] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1790), + [anon_sym_DOLLAR] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1790), + [anon_sym_DASH2] = ACTIONS(1782), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_LPAREN2] = ACTIONS(1784), + [anon_sym_DOT_DOT2] = ACTIONS(4658), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1782), + [anon_sym_DOT_DOT_LT] = ACTIONS(1782), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4660), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4660), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [aux_sym__val_number_decimal_token1] = ACTIONS(1782), + [aux_sym__val_number_decimal_token2] = ACTIONS(1790), + [aux_sym__val_number_decimal_token3] = ACTIONS(1790), + [aux_sym__val_number_decimal_token4] = ACTIONS(1790), + [aux_sym__val_number_token1] = ACTIONS(1790), + [aux_sym__val_number_token2] = ACTIONS(1790), + [aux_sym__val_number_token3] = ACTIONS(1790), + [aux_sym__val_number_token4] = ACTIONS(1790), + [aux_sym__val_number_token5] = ACTIONS(1790), + [aux_sym__val_number_token6] = ACTIONS(1790), + [anon_sym_0b] = ACTIONS(1782), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0x] = ACTIONS(1782), + [sym_val_date] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [sym__str_single_quotes] = ACTIONS(1790), + [sym__str_back_ticks] = ACTIONS(1790), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1790), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1790), + [anon_sym_err_GT] = ACTIONS(1782), + [anon_sym_out_GT] = ACTIONS(1782), + [anon_sym_e_GT] = ACTIONS(1782), + [anon_sym_o_GT] = ACTIONS(1782), + [anon_sym_err_PLUSout_GT] = ACTIONS(1782), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1782), + [anon_sym_o_PLUSe_GT] = ACTIONS(1782), + [anon_sym_e_PLUSo_GT] = ACTIONS(1782), + [anon_sym_err_GT_GT] = ACTIONS(1790), + [anon_sym_out_GT_GT] = ACTIONS(1790), + [anon_sym_e_GT_GT] = ACTIONS(1790), + [anon_sym_o_GT_GT] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), + [aux_sym_unquoted_token1] = ACTIONS(1782), + [aux_sym_unquoted_token2] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1790), + }, + [1378] = { + [sym_comment] = STATE(1378), + [sym__newline] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_err_GT_PIPE] = ACTIONS(960), + [anon_sym_out_GT_PIPE] = ACTIONS(960), + [anon_sym_e_GT_PIPE] = ACTIONS(960), + [anon_sym_o_GT_PIPE] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_RPAREN] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(958), + [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_DASH2] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_DOT_DOT] = ACTIONS(958), + [anon_sym_QMARK2] = ACTIONS(4662), + [anon_sym_DOT_DOT2] = ACTIONS(958), + [anon_sym_DOT_DOT_EQ] = ACTIONS(958), + [anon_sym_DOT_DOT_LT] = ACTIONS(958), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(960), + [anon_sym_DOT_DOT_LT2] = ACTIONS(960), + [anon_sym_null] = ACTIONS(960), + [anon_sym_true] = ACTIONS(960), + [anon_sym_false] = ACTIONS(960), + [aux_sym__val_number_decimal_token1] = ACTIONS(958), + [aux_sym__val_number_decimal_token2] = ACTIONS(960), + [aux_sym__val_number_decimal_token3] = ACTIONS(960), + [aux_sym__val_number_decimal_token4] = ACTIONS(960), + [aux_sym__val_number_token1] = ACTIONS(960), + [aux_sym__val_number_token2] = ACTIONS(960), + [aux_sym__val_number_token3] = ACTIONS(960), + [aux_sym__val_number_token4] = ACTIONS(960), + [aux_sym__val_number_token5] = ACTIONS(960), + [aux_sym__val_number_token6] = ACTIONS(960), + [anon_sym_0b] = ACTIONS(958), + [anon_sym_0o] = ACTIONS(958), + [anon_sym_0x] = ACTIONS(958), + [sym_val_date] = ACTIONS(960), + [anon_sym_DQUOTE] = ACTIONS(960), + [sym__str_single_quotes] = ACTIONS(960), + [sym__str_back_ticks] = ACTIONS(960), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(960), + [anon_sym_DOT2] = ACTIONS(958), + [anon_sym_err_GT] = ACTIONS(958), + [anon_sym_out_GT] = ACTIONS(958), + [anon_sym_e_GT] = ACTIONS(958), + [anon_sym_o_GT] = ACTIONS(958), + [anon_sym_err_PLUSout_GT] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(958), + [anon_sym_o_PLUSe_GT] = ACTIONS(958), + [anon_sym_e_PLUSo_GT] = ACTIONS(958), + [anon_sym_err_GT_GT] = ACTIONS(960), + [anon_sym_out_GT_GT] = ACTIONS(960), + [anon_sym_e_GT_GT] = ACTIONS(960), + [anon_sym_o_GT_GT] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), + [aux_sym_unquoted_token1] = ACTIONS(958), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(960), + }, + [1379] = { + [sym__expr_parenthesized_immediate] = STATE(6814), + [sym_comment] = STATE(1379), + [sym__newline] = ACTIONS(1628), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1628), + [anon_sym_err_GT_PIPE] = ACTIONS(1628), + [anon_sym_out_GT_PIPE] = ACTIONS(1628), + [anon_sym_e_GT_PIPE] = ACTIONS(1628), + [anon_sym_o_GT_PIPE] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1628), + [anon_sym_RPAREN] = ACTIONS(1628), + [anon_sym_GT2] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1628), + [anon_sym_in2] = ACTIONS(1628), + [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_STAR2] = ACTIONS(1616), + [anon_sym_and2] = ACTIONS(1628), + [anon_sym_xor2] = ACTIONS(1628), + [anon_sym_or2] = ACTIONS(1628), + [anon_sym_not_DASHin2] = ACTIONS(1628), + [anon_sym_has2] = ACTIONS(1628), + [anon_sym_not_DASHhas2] = ACTIONS(1628), + [anon_sym_starts_DASHwith2] = ACTIONS(1628), + [anon_sym_ends_DASHwith2] = ACTIONS(1628), + [anon_sym_EQ_EQ2] = ACTIONS(1628), + [anon_sym_BANG_EQ2] = ACTIONS(1628), + [anon_sym_LT2] = ACTIONS(1616), + [anon_sym_LT_EQ2] = ACTIONS(1628), + [anon_sym_GT_EQ2] = ACTIONS(1628), + [anon_sym_EQ_TILDE2] = ACTIONS(1628), + [anon_sym_BANG_TILDE2] = ACTIONS(1628), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_STAR_STAR2] = ACTIONS(1628), + [anon_sym_PLUS_PLUS2] = ACTIONS(1628), + [anon_sym_SLASH2] = ACTIONS(1616), + [anon_sym_mod2] = ACTIONS(1628), + [anon_sym_SLASH_SLASH2] = ACTIONS(1628), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_bit_DASHshl2] = ACTIONS(1628), + [anon_sym_bit_DASHshr2] = ACTIONS(1628), + [anon_sym_bit_DASHand2] = ACTIONS(1628), + [anon_sym_bit_DASHxor2] = ACTIONS(1628), + [anon_sym_bit_DASHor2] = ACTIONS(1628), + [anon_sym_DOT_DOT2] = ACTIONS(4664), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4666), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4666), + [sym_filesize_unit] = ACTIONS(4668), + [sym_duration_unit] = ACTIONS(4670), + [anon_sym_err_GT] = ACTIONS(1616), + [anon_sym_out_GT] = ACTIONS(1616), + [anon_sym_e_GT] = ACTIONS(1616), + [anon_sym_o_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT] = ACTIONS(1616), + [anon_sym_err_GT_GT] = ACTIONS(1628), + [anon_sym_out_GT_GT] = ACTIONS(1628), + [anon_sym_e_GT_GT] = ACTIONS(1628), + [anon_sym_o_GT_GT] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1628), + [aux_sym_unquoted_token2] = ACTIONS(4672), + [anon_sym_POUND] = ACTIONS(245), + }, + [1380] = { + [sym__expr_parenthesized_immediate] = STATE(2355), + [sym__immediate_decimal] = STATE(2360), + [sym_val_variable] = STATE(2355), + [sym_comment] = STATE(1380), + [ts_builtin_sym_end] = ACTIONS(1445), + [sym__newline] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1445), + [anon_sym_PIPE] = ACTIONS(1445), + [anon_sym_err_GT_PIPE] = ACTIONS(1445), + [anon_sym_out_GT_PIPE] = ACTIONS(1445), + [anon_sym_e_GT_PIPE] = ACTIONS(1445), + [anon_sym_o_GT_PIPE] = ACTIONS(1445), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1445), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1445), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1445), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1445), + [anon_sym_DOLLAR] = ACTIONS(4523), + [anon_sym_GT2] = ACTIONS(1431), + [anon_sym_DASH2] = ACTIONS(1431), + [anon_sym_in2] = ACTIONS(1445), + [anon_sym_STAR2] = ACTIONS(1431), + [anon_sym_and2] = ACTIONS(1445), + [anon_sym_xor2] = ACTIONS(1445), + [anon_sym_or2] = ACTIONS(1445), + [anon_sym_not_DASHin2] = ACTIONS(1445), + [anon_sym_has2] = ACTIONS(1445), + [anon_sym_not_DASHhas2] = ACTIONS(1445), + [anon_sym_starts_DASHwith2] = ACTIONS(1445), + [anon_sym_ends_DASHwith2] = ACTIONS(1445), + [anon_sym_EQ_EQ2] = ACTIONS(1445), + [anon_sym_BANG_EQ2] = ACTIONS(1445), + [anon_sym_LT2] = ACTIONS(1431), + [anon_sym_LT_EQ2] = ACTIONS(1445), + [anon_sym_GT_EQ2] = ACTIONS(1445), + [anon_sym_EQ_TILDE2] = ACTIONS(1445), + [anon_sym_BANG_TILDE2] = ACTIONS(1445), + [anon_sym_LPAREN2] = ACTIONS(4525), + [anon_sym_STAR_STAR2] = ACTIONS(1445), + [anon_sym_PLUS_PLUS2] = ACTIONS(1445), + [anon_sym_SLASH2] = ACTIONS(1431), + [anon_sym_mod2] = ACTIONS(1445), + [anon_sym_SLASH_SLASH2] = ACTIONS(1445), + [anon_sym_PLUS2] = ACTIONS(1431), + [anon_sym_bit_DASHshl2] = ACTIONS(1445), + [anon_sym_bit_DASHshr2] = ACTIONS(1445), + [anon_sym_bit_DASHand2] = ACTIONS(1445), + [anon_sym_bit_DASHxor2] = ACTIONS(1445), + [anon_sym_bit_DASHor2] = ACTIONS(1445), + [aux_sym__immediate_decimal_token1] = ACTIONS(4656), + [aux_sym__immediate_decimal_token3] = ACTIONS(4656), + [aux_sym__immediate_decimal_token4] = ACTIONS(4531), + [aux_sym__immediate_decimal_token5] = ACTIONS(4533), + [anon_sym_err_GT] = ACTIONS(1431), + [anon_sym_out_GT] = ACTIONS(1431), + [anon_sym_e_GT] = ACTIONS(1431), + [anon_sym_o_GT] = ACTIONS(1431), + [anon_sym_err_PLUSout_GT] = ACTIONS(1431), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1431), + [anon_sym_o_PLUSe_GT] = ACTIONS(1431), + [anon_sym_e_PLUSo_GT] = ACTIONS(1431), + [anon_sym_err_GT_GT] = ACTIONS(1445), + [anon_sym_out_GT_GT] = ACTIONS(1445), + [anon_sym_e_GT_GT] = ACTIONS(1445), + [anon_sym_o_GT_GT] = ACTIONS(1445), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1445), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1445), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1445), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1445), + [anon_sym_POUND] = ACTIONS(245), + }, + [1381] = { + [sym__expr_parenthesized_immediate] = STATE(2383), + [sym__immediate_decimal] = STATE(2385), + [sym_val_variable] = STATE(2383), + [sym_comment] = STATE(1381), + [ts_builtin_sym_end] = ACTIONS(1634), + [sym__newline] = ACTIONS(1634), + [anon_sym_SEMI] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1634), + [anon_sym_err_GT_PIPE] = ACTIONS(1634), + [anon_sym_out_GT_PIPE] = ACTIONS(1634), + [anon_sym_e_GT_PIPE] = ACTIONS(1634), + [anon_sym_o_GT_PIPE] = ACTIONS(1634), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1634), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1634), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1634), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(4523), + [anon_sym_GT2] = ACTIONS(1632), + [anon_sym_DASH2] = ACTIONS(1632), + [anon_sym_in2] = ACTIONS(1634), + [anon_sym_STAR2] = ACTIONS(1632), + [anon_sym_and2] = ACTIONS(1634), + [anon_sym_xor2] = ACTIONS(1634), + [anon_sym_or2] = ACTIONS(1634), + [anon_sym_not_DASHin2] = ACTIONS(1634), + [anon_sym_has2] = ACTIONS(1634), + [anon_sym_not_DASHhas2] = ACTIONS(1634), + [anon_sym_starts_DASHwith2] = ACTIONS(1634), + [anon_sym_ends_DASHwith2] = ACTIONS(1634), + [anon_sym_EQ_EQ2] = ACTIONS(1634), + [anon_sym_BANG_EQ2] = ACTIONS(1634), + [anon_sym_LT2] = ACTIONS(1632), + [anon_sym_LT_EQ2] = ACTIONS(1634), + [anon_sym_GT_EQ2] = ACTIONS(1634), + [anon_sym_EQ_TILDE2] = ACTIONS(1634), + [anon_sym_BANG_TILDE2] = ACTIONS(1634), + [anon_sym_LPAREN2] = ACTIONS(4525), + [anon_sym_STAR_STAR2] = ACTIONS(1634), + [anon_sym_PLUS_PLUS2] = ACTIONS(1634), + [anon_sym_SLASH2] = ACTIONS(1632), + [anon_sym_mod2] = ACTIONS(1634), + [anon_sym_SLASH_SLASH2] = ACTIONS(1634), + [anon_sym_PLUS2] = ACTIONS(1632), + [anon_sym_bit_DASHshl2] = ACTIONS(1634), + [anon_sym_bit_DASHshr2] = ACTIONS(1634), + [anon_sym_bit_DASHand2] = ACTIONS(1634), + [anon_sym_bit_DASHxor2] = ACTIONS(1634), + [anon_sym_bit_DASHor2] = ACTIONS(1634), + [aux_sym__immediate_decimal_token1] = ACTIONS(4656), + [aux_sym__immediate_decimal_token3] = ACTIONS(4656), + [aux_sym__immediate_decimal_token4] = ACTIONS(4531), + [aux_sym__immediate_decimal_token5] = ACTIONS(4533), + [anon_sym_err_GT] = ACTIONS(1632), + [anon_sym_out_GT] = ACTIONS(1632), + [anon_sym_e_GT] = ACTIONS(1632), + [anon_sym_o_GT] = ACTIONS(1632), + [anon_sym_err_PLUSout_GT] = ACTIONS(1632), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1632), + [anon_sym_o_PLUSe_GT] = ACTIONS(1632), + [anon_sym_e_PLUSo_GT] = ACTIONS(1632), + [anon_sym_err_GT_GT] = ACTIONS(1634), + [anon_sym_out_GT_GT] = ACTIONS(1634), + [anon_sym_e_GT_GT] = ACTIONS(1634), + [anon_sym_o_GT_GT] = ACTIONS(1634), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1634), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1634), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1634), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1634), + [anon_sym_POUND] = ACTIONS(245), + }, + [1382] = { + [sym__expr_parenthesized_immediate] = STATE(2386), + [sym__immediate_decimal] = STATE(2388), + [sym_val_variable] = STATE(2386), + [sym_comment] = STATE(1382), + [ts_builtin_sym_end] = ACTIONS(1646), + [sym__newline] = ACTIONS(1646), + [anon_sym_SEMI] = ACTIONS(1646), + [anon_sym_PIPE] = ACTIONS(1646), + [anon_sym_err_GT_PIPE] = ACTIONS(1646), + [anon_sym_out_GT_PIPE] = ACTIONS(1646), + [anon_sym_e_GT_PIPE] = ACTIONS(1646), + [anon_sym_o_GT_PIPE] = ACTIONS(1646), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1646), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1646), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1646), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1646), + [anon_sym_DOLLAR] = ACTIONS(4523), + [anon_sym_GT2] = ACTIONS(1644), + [anon_sym_DASH2] = ACTIONS(1644), + [anon_sym_in2] = ACTIONS(1646), + [anon_sym_STAR2] = ACTIONS(1644), + [anon_sym_and2] = ACTIONS(1646), + [anon_sym_xor2] = ACTIONS(1646), + [anon_sym_or2] = ACTIONS(1646), + [anon_sym_not_DASHin2] = ACTIONS(1646), + [anon_sym_has2] = ACTIONS(1646), + [anon_sym_not_DASHhas2] = ACTIONS(1646), + [anon_sym_starts_DASHwith2] = ACTIONS(1646), + [anon_sym_ends_DASHwith2] = ACTIONS(1646), + [anon_sym_EQ_EQ2] = ACTIONS(1646), + [anon_sym_BANG_EQ2] = ACTIONS(1646), + [anon_sym_LT2] = ACTIONS(1644), + [anon_sym_LT_EQ2] = ACTIONS(1646), + [anon_sym_GT_EQ2] = ACTIONS(1646), + [anon_sym_EQ_TILDE2] = ACTIONS(1646), + [anon_sym_BANG_TILDE2] = ACTIONS(1646), + [anon_sym_LPAREN2] = ACTIONS(4525), + [anon_sym_STAR_STAR2] = ACTIONS(1646), + [anon_sym_PLUS_PLUS2] = ACTIONS(1646), + [anon_sym_SLASH2] = ACTIONS(1644), + [anon_sym_mod2] = ACTIONS(1646), + [anon_sym_SLASH_SLASH2] = ACTIONS(1646), + [anon_sym_PLUS2] = ACTIONS(1644), + [anon_sym_bit_DASHshl2] = ACTIONS(1646), + [anon_sym_bit_DASHshr2] = ACTIONS(1646), + [anon_sym_bit_DASHand2] = ACTIONS(1646), + [anon_sym_bit_DASHxor2] = ACTIONS(1646), + [anon_sym_bit_DASHor2] = ACTIONS(1646), + [aux_sym__immediate_decimal_token1] = ACTIONS(4656), + [aux_sym__immediate_decimal_token3] = ACTIONS(4656), + [aux_sym__immediate_decimal_token4] = ACTIONS(4531), + [aux_sym__immediate_decimal_token5] = ACTIONS(4533), + [anon_sym_err_GT] = ACTIONS(1644), + [anon_sym_out_GT] = ACTIONS(1644), + [anon_sym_e_GT] = ACTIONS(1644), + [anon_sym_o_GT] = ACTIONS(1644), + [anon_sym_err_PLUSout_GT] = ACTIONS(1644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1644), + [anon_sym_o_PLUSe_GT] = ACTIONS(1644), + [anon_sym_e_PLUSo_GT] = ACTIONS(1644), + [anon_sym_err_GT_GT] = ACTIONS(1646), + [anon_sym_out_GT_GT] = ACTIONS(1646), + [anon_sym_e_GT_GT] = ACTIONS(1646), + [anon_sym_o_GT_GT] = ACTIONS(1646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1646), + [anon_sym_POUND] = ACTIONS(245), + }, + [1383] = { + [sym_comment] = STATE(1383), + [sym__newline] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(1799), + [anon_sym_PIPE] = ACTIONS(1799), + [anon_sym_err_GT_PIPE] = ACTIONS(1799), + [anon_sym_out_GT_PIPE] = ACTIONS(1799), + [anon_sym_e_GT_PIPE] = ACTIONS(1799), + [anon_sym_o_GT_PIPE] = ACTIONS(1799), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1799), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1799), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1799), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1799), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1797), + [anon_sym_RPAREN] = ACTIONS(1799), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_DASH2] = ACTIONS(1797), + [anon_sym_LBRACE] = ACTIONS(1799), + [anon_sym_RBRACE] = ACTIONS(1799), + [anon_sym_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(1799), + [anon_sym_DOT_DOT2] = ACTIONS(1797), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1797), + [anon_sym_DOT_DOT_LT] = ACTIONS(1797), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1799), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1799), + [anon_sym_null] = ACTIONS(1799), + [anon_sym_true] = ACTIONS(1799), + [anon_sym_false] = ACTIONS(1799), + [aux_sym__val_number_decimal_token1] = ACTIONS(1797), + [aux_sym__val_number_decimal_token2] = ACTIONS(1799), + [aux_sym__val_number_decimal_token3] = ACTIONS(1799), + [aux_sym__val_number_decimal_token4] = ACTIONS(1799), + [aux_sym__val_number_token1] = ACTIONS(1799), + [aux_sym__val_number_token2] = ACTIONS(1799), + [aux_sym__val_number_token3] = ACTIONS(1799), + [aux_sym__val_number_token4] = ACTIONS(1799), + [aux_sym__val_number_token5] = ACTIONS(1799), + [aux_sym__val_number_token6] = ACTIONS(1799), + [anon_sym_0b] = ACTIONS(1797), + [anon_sym_0o] = ACTIONS(1797), + [anon_sym_0x] = ACTIONS(1797), + [sym_val_date] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1799), + [sym__str_single_quotes] = ACTIONS(1799), + [sym__str_back_ticks] = ACTIONS(1799), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1799), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1799), + [anon_sym_err_GT] = ACTIONS(1797), + [anon_sym_out_GT] = ACTIONS(1797), + [anon_sym_e_GT] = ACTIONS(1797), + [anon_sym_o_GT] = ACTIONS(1797), + [anon_sym_err_PLUSout_GT] = ACTIONS(1797), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1797), + [anon_sym_o_PLUSe_GT] = ACTIONS(1797), + [anon_sym_e_PLUSo_GT] = ACTIONS(1797), + [anon_sym_err_GT_GT] = ACTIONS(1799), + [anon_sym_out_GT_GT] = ACTIONS(1799), + [anon_sym_e_GT_GT] = ACTIONS(1799), + [anon_sym_o_GT_GT] = ACTIONS(1799), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1799), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1799), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1799), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1799), + [aux_sym_unquoted_token1] = ACTIONS(1797), + [aux_sym_unquoted_token2] = ACTIONS(1797), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1799), + }, + [1384] = { + [sym_comment] = STATE(1384), + [ts_builtin_sym_end] = ACTIONS(1628), + [sym__newline] = ACTIONS(1628), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1628), + [anon_sym_err_GT_PIPE] = ACTIONS(1628), + [anon_sym_out_GT_PIPE] = ACTIONS(1628), + [anon_sym_e_GT_PIPE] = ACTIONS(1628), + [anon_sym_o_GT_PIPE] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1616), + [anon_sym_DOT_DOT2] = ACTIONS(4581), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1616), + [anon_sym_DOT_DOT_LT] = ACTIONS(1616), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4583), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4583), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_true] = ACTIONS(1628), + [anon_sym_false] = ACTIONS(1628), + [aux_sym__val_number_decimal_token1] = ACTIONS(1616), + [aux_sym__val_number_decimal_token2] = ACTIONS(1628), + [aux_sym__val_number_decimal_token3] = ACTIONS(1628), + [aux_sym__val_number_decimal_token4] = ACTIONS(1628), + [aux_sym__val_number_token1] = ACTIONS(1628), + [aux_sym__val_number_token2] = ACTIONS(1628), + [aux_sym__val_number_token3] = ACTIONS(1628), + [aux_sym__val_number_token4] = ACTIONS(1628), + [aux_sym__val_number_token5] = ACTIONS(1628), + [aux_sym__val_number_token6] = ACTIONS(1628), + [anon_sym_0b] = ACTIONS(1616), + [sym_filesize_unit] = ACTIONS(4674), + [sym_duration_unit] = ACTIONS(4676), + [anon_sym_0o] = ACTIONS(1616), + [anon_sym_0x] = ACTIONS(1616), + [sym_val_date] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1628), + [sym__str_single_quotes] = ACTIONS(1628), + [sym__str_back_ticks] = ACTIONS(1628), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1628), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1628), + [anon_sym_err_GT] = ACTIONS(1616), + [anon_sym_out_GT] = ACTIONS(1616), + [anon_sym_e_GT] = ACTIONS(1616), + [anon_sym_o_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT] = ACTIONS(1616), + [anon_sym_err_GT_GT] = ACTIONS(1628), + [anon_sym_out_GT_GT] = ACTIONS(1628), + [anon_sym_e_GT_GT] = ACTIONS(1628), + [anon_sym_o_GT_GT] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1628), + [aux_sym_unquoted_token1] = ACTIONS(1616), + [aux_sym_unquoted_token2] = ACTIONS(4678), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1628), + }, + [1385] = { + [sym_comment] = STATE(1385), [ts_builtin_sym_end] = ACTIONS(984), [anon_sym_EQ] = ACTIONS(982), [anon_sym_PLUS_EQ] = ACTIONS(984), @@ -214182,711 +206837,1565 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), [anon_sym_POUND] = ACTIONS(245), }, - [1453] = { - [sym_comment] = STATE(1453), - [ts_builtin_sym_end] = ACTIONS(1668), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_DOT_DOT] = ACTIONS(1666), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_DOT_DOT2] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1666), - [anon_sym_DOT_DOT_LT] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [anon_sym_null] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1668), - [aux_sym__val_number_token5] = ACTIONS(1668), - [aux_sym__val_number_token6] = ACTIONS(1668), - [anon_sym_0b] = ACTIONS(1666), - [anon_sym_0o] = ACTIONS(1666), - [anon_sym_0x] = ACTIONS(1666), - [sym_val_date] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_err_GT] = ACTIONS(1666), - [anon_sym_out_GT] = ACTIONS(1666), - [anon_sym_e_GT] = ACTIONS(1666), - [anon_sym_o_GT] = ACTIONS(1666), - [anon_sym_err_PLUSout_GT] = ACTIONS(1666), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), - [anon_sym_o_PLUSe_GT] = ACTIONS(1666), - [anon_sym_e_PLUSo_GT] = ACTIONS(1666), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [aux_sym_unquoted_token1] = ACTIONS(1666), - [aux_sym_unquoted_token2] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), - }, - [1454] = { - [sym__expr_parenthesized_immediate] = STATE(7374), - [sym_comment] = STATE(1454), - [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_GT2] = ACTIONS(1579), - [anon_sym_DASH2] = ACTIONS(1591), - [anon_sym_in2] = ACTIONS(1591), - [anon_sym_STAR2] = ACTIONS(1579), - [anon_sym_and2] = ACTIONS(1591), - [anon_sym_xor2] = ACTIONS(1591), - [anon_sym_or2] = ACTIONS(1591), - [anon_sym_not_DASHin2] = ACTIONS(1591), - [anon_sym_has2] = ACTIONS(1591), - [anon_sym_not_DASHhas2] = ACTIONS(1591), - [anon_sym_starts_DASHwith2] = ACTIONS(1591), - [anon_sym_ends_DASHwith2] = ACTIONS(1591), - [anon_sym_EQ_EQ2] = ACTIONS(1591), - [anon_sym_BANG_EQ2] = ACTIONS(1591), - [anon_sym_LT2] = ACTIONS(1579), - [anon_sym_LT_EQ2] = ACTIONS(1591), - [anon_sym_GT_EQ2] = ACTIONS(1591), - [anon_sym_EQ_TILDE2] = ACTIONS(1591), - [anon_sym_BANG_TILDE2] = ACTIONS(1591), - [anon_sym_LPAREN2] = ACTIONS(4462), - [anon_sym_STAR_STAR2] = ACTIONS(1591), - [anon_sym_PLUS_PLUS2] = ACTIONS(1591), - [anon_sym_SLASH2] = ACTIONS(1579), - [anon_sym_mod2] = ACTIONS(1591), - [anon_sym_SLASH_SLASH2] = ACTIONS(1591), - [anon_sym_PLUS2] = ACTIONS(1579), - [anon_sym_bit_DASHshl2] = ACTIONS(1591), - [anon_sym_bit_DASHshr2] = ACTIONS(1591), - [anon_sym_bit_DASHand2] = ACTIONS(1591), - [anon_sym_bit_DASHxor2] = ACTIONS(1591), - [anon_sym_bit_DASHor2] = ACTIONS(1591), - [anon_sym_DOT_DOT2] = ACTIONS(4760), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4762), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4762), - [sym_filesize_unit] = ACTIONS(4764), - [sym_duration_unit] = ACTIONS(4766), - [anon_sym_err_GT] = ACTIONS(1579), - [anon_sym_out_GT] = ACTIONS(1579), - [anon_sym_e_GT] = ACTIONS(1579), - [anon_sym_o_GT] = ACTIONS(1579), - [anon_sym_err_PLUSout_GT] = ACTIONS(1579), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), - [anon_sym_o_PLUSe_GT] = ACTIONS(1579), - [anon_sym_e_PLUSo_GT] = ACTIONS(1579), - [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_token2] = ACTIONS(4768), + [1386] = { + [sym__expr_parenthesized_immediate] = STATE(2347), + [sym__immediate_decimal] = STATE(2348), + [sym_val_variable] = STATE(2347), + [sym_comment] = STATE(1386), + [ts_builtin_sym_end] = ACTIONS(1489), + [sym__newline] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1489), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_err_GT_PIPE] = ACTIONS(1489), + [anon_sym_out_GT_PIPE] = ACTIONS(1489), + [anon_sym_e_GT_PIPE] = ACTIONS(1489), + [anon_sym_o_GT_PIPE] = ACTIONS(1489), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1489), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1489), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1489), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1489), + [anon_sym_DOLLAR] = ACTIONS(4523), + [anon_sym_GT2] = ACTIONS(1479), + [anon_sym_DASH2] = ACTIONS(1479), + [anon_sym_in2] = ACTIONS(1489), + [anon_sym_STAR2] = ACTIONS(1479), + [anon_sym_and2] = ACTIONS(1489), + [anon_sym_xor2] = ACTIONS(1489), + [anon_sym_or2] = ACTIONS(1489), + [anon_sym_not_DASHin2] = ACTIONS(1489), + [anon_sym_has2] = ACTIONS(1489), + [anon_sym_not_DASHhas2] = ACTIONS(1489), + [anon_sym_starts_DASHwith2] = ACTIONS(1489), + [anon_sym_ends_DASHwith2] = ACTIONS(1489), + [anon_sym_EQ_EQ2] = ACTIONS(1489), + [anon_sym_BANG_EQ2] = ACTIONS(1489), + [anon_sym_LT2] = ACTIONS(1479), + [anon_sym_LT_EQ2] = ACTIONS(1489), + [anon_sym_GT_EQ2] = ACTIONS(1489), + [anon_sym_EQ_TILDE2] = ACTIONS(1489), + [anon_sym_BANG_TILDE2] = ACTIONS(1489), + [anon_sym_LPAREN2] = ACTIONS(4525), + [anon_sym_STAR_STAR2] = ACTIONS(1489), + [anon_sym_PLUS_PLUS2] = ACTIONS(1489), + [anon_sym_SLASH2] = ACTIONS(1479), + [anon_sym_mod2] = ACTIONS(1489), + [anon_sym_SLASH_SLASH2] = ACTIONS(1489), + [anon_sym_PLUS2] = ACTIONS(1479), + [anon_sym_bit_DASHshl2] = ACTIONS(1489), + [anon_sym_bit_DASHshr2] = ACTIONS(1489), + [anon_sym_bit_DASHand2] = ACTIONS(1489), + [anon_sym_bit_DASHxor2] = ACTIONS(1489), + [anon_sym_bit_DASHor2] = ACTIONS(1489), + [aux_sym__immediate_decimal_token1] = ACTIONS(4656), + [aux_sym__immediate_decimal_token3] = ACTIONS(4656), + [aux_sym__immediate_decimal_token4] = ACTIONS(4531), + [aux_sym__immediate_decimal_token5] = ACTIONS(4533), + [anon_sym_err_GT] = ACTIONS(1479), + [anon_sym_out_GT] = ACTIONS(1479), + [anon_sym_e_GT] = ACTIONS(1479), + [anon_sym_o_GT] = ACTIONS(1479), + [anon_sym_err_PLUSout_GT] = ACTIONS(1479), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1479), + [anon_sym_o_PLUSe_GT] = ACTIONS(1479), + [anon_sym_e_PLUSo_GT] = ACTIONS(1479), + [anon_sym_err_GT_GT] = ACTIONS(1489), + [anon_sym_out_GT_GT] = ACTIONS(1489), + [anon_sym_e_GT_GT] = ACTIONS(1489), + [anon_sym_o_GT_GT] = ACTIONS(1489), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1489), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1489), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1489), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1489), [anon_sym_POUND] = ACTIONS(245), }, - [1455] = { - [sym_cell_path] = STATE(1949), - [sym_path] = STATE(1692), - [sym_comment] = STATE(1455), - [aux_sym_cell_path_repeat1] = STATE(1564), - [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_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_DOT2] = ACTIONS(4770), - [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(245), - [sym_raw_string_begin] = ACTIONS(1893), + [1387] = { + [sym_comment] = STATE(1387), + [ts_builtin_sym_end] = ACTIONS(1762), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1760), + [anon_sym_DOT_DOT_LT] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(4680), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1762), + [aux_sym__val_number_token5] = ACTIONS(1762), + [aux_sym__val_number_token6] = ACTIONS(1762), + [anon_sym_0b] = ACTIONS(1760), + [anon_sym_0o] = ACTIONS(1760), + [anon_sym_0x] = ACTIONS(1760), + [sym_val_date] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token1] = ACTIONS(1760), + [aux_sym_unquoted_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1762), }, - [1456] = { - [sym_cell_path] = STATE(1972), - [sym_path] = STATE(1692), - [sym_comment] = STATE(1456), - [aux_sym_cell_path_repeat1] = STATE(1564), - [sym__newline] = ACTIONS(1925), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_err_GT_PIPE] = ACTIONS(1925), - [anon_sym_out_GT_PIPE] = ACTIONS(1925), - [anon_sym_e_GT_PIPE] = ACTIONS(1925), - [anon_sym_o_GT_PIPE] = ACTIONS(1925), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1925), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1925), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1925), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1925), - [anon_sym_LBRACK] = ACTIONS(1925), - [anon_sym_LPAREN] = ACTIONS(1925), - [anon_sym_RPAREN] = ACTIONS(1925), - [anon_sym_DOLLAR] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1925), - [anon_sym_DASH2] = ACTIONS(1923), - [anon_sym_LBRACE] = ACTIONS(1925), - [anon_sym_RBRACE] = ACTIONS(1925), - [anon_sym_DOT_DOT] = ACTIONS(1923), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1925), - [anon_sym_DOT_DOT_LT] = ACTIONS(1925), - [anon_sym_null] = ACTIONS(1925), - [anon_sym_true] = ACTIONS(1925), - [anon_sym_false] = ACTIONS(1925), - [aux_sym__val_number_decimal_token1] = ACTIONS(1923), - [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_0b] = ACTIONS(1923), - [anon_sym_0o] = ACTIONS(1923), - [anon_sym_0x] = ACTIONS(1923), - [sym_val_date] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1925), - [sym__str_single_quotes] = ACTIONS(1925), - [sym__str_back_ticks] = ACTIONS(1925), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1925), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1925), - [anon_sym_DOT2] = ACTIONS(4770), - [anon_sym_err_GT] = ACTIONS(1923), - [anon_sym_out_GT] = ACTIONS(1923), - [anon_sym_e_GT] = ACTIONS(1923), - [anon_sym_o_GT] = ACTIONS(1923), - [anon_sym_err_PLUSout_GT] = ACTIONS(1923), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1923), - [anon_sym_o_PLUSe_GT] = ACTIONS(1923), - [anon_sym_e_PLUSo_GT] = ACTIONS(1923), - [anon_sym_err_GT_GT] = ACTIONS(1925), - [anon_sym_out_GT_GT] = ACTIONS(1925), - [anon_sym_e_GT_GT] = ACTIONS(1925), - [anon_sym_o_GT_GT] = ACTIONS(1925), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1925), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1925), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1925), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1925), - [aux_sym_unquoted_token1] = ACTIONS(1923), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1925), + [1388] = { + [sym_comment] = STATE(1388), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(4682), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1701), + [anon_sym_DOT_DOT_LT] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4684), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), }, - [1457] = { - [sym_cell_path] = STATE(1812), - [sym_path] = STATE(1450), - [sym_comment] = STATE(1457), - [aux_sym_cell_path_repeat1] = STATE(1340), - [sym__newline] = ACTIONS(1831), - [anon_sym_SEMI] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_err_GT_PIPE] = ACTIONS(1831), - [anon_sym_out_GT_PIPE] = ACTIONS(1831), - [anon_sym_e_GT_PIPE] = ACTIONS(1831), - [anon_sym_o_GT_PIPE] = ACTIONS(1831), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1831), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1831), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1831), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1831), - [anon_sym_RPAREN] = ACTIONS(1831), - [anon_sym_GT2] = ACTIONS(1829), - [anon_sym_DASH2] = ACTIONS(1831), - [anon_sym_in2] = ACTIONS(1831), - [anon_sym_if] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_RBRACE] = ACTIONS(1831), - [anon_sym_EQ_GT] = ACTIONS(1831), - [anon_sym_STAR2] = ACTIONS(1829), - [anon_sym_and2] = ACTIONS(1831), - [anon_sym_xor2] = ACTIONS(1831), - [anon_sym_or2] = ACTIONS(1831), - [anon_sym_not_DASHin2] = ACTIONS(1831), - [anon_sym_has2] = ACTIONS(1831), - [anon_sym_not_DASHhas2] = ACTIONS(1831), - [anon_sym_starts_DASHwith2] = ACTIONS(1831), - [anon_sym_ends_DASHwith2] = ACTIONS(1831), - [anon_sym_EQ_EQ2] = ACTIONS(1831), - [anon_sym_BANG_EQ2] = ACTIONS(1831), - [anon_sym_LT2] = ACTIONS(1829), - [anon_sym_LT_EQ2] = ACTIONS(1831), - [anon_sym_GT_EQ2] = ACTIONS(1831), - [anon_sym_EQ_TILDE2] = ACTIONS(1831), - [anon_sym_BANG_TILDE2] = ACTIONS(1831), - [anon_sym_STAR_STAR2] = ACTIONS(1831), - [anon_sym_PLUS_PLUS2] = ACTIONS(1831), - [anon_sym_SLASH2] = ACTIONS(1829), - [anon_sym_mod2] = ACTIONS(1831), - [anon_sym_SLASH_SLASH2] = ACTIONS(1831), - [anon_sym_PLUS2] = ACTIONS(1829), - [anon_sym_bit_DASHshl2] = ACTIONS(1831), - [anon_sym_bit_DASHshr2] = ACTIONS(1831), - [anon_sym_bit_DASHand2] = ACTIONS(1831), - [anon_sym_bit_DASHxor2] = ACTIONS(1831), - [anon_sym_bit_DASHor2] = ACTIONS(1831), - [anon_sym_DOT2] = ACTIONS(4772), - [anon_sym_err_GT] = ACTIONS(1829), - [anon_sym_out_GT] = ACTIONS(1829), - [anon_sym_e_GT] = ACTIONS(1829), - [anon_sym_o_GT] = ACTIONS(1829), - [anon_sym_err_PLUSout_GT] = ACTIONS(1829), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1829), - [anon_sym_o_PLUSe_GT] = ACTIONS(1829), - [anon_sym_e_PLUSo_GT] = ACTIONS(1829), - [anon_sym_err_GT_GT] = ACTIONS(1831), - [anon_sym_out_GT_GT] = ACTIONS(1831), - [anon_sym_e_GT_GT] = ACTIONS(1831), - [anon_sym_o_GT_GT] = ACTIONS(1831), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1831), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1831), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1831), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1831), - [anon_sym_POUND] = ACTIONS(245), + [1389] = { + [sym_comment] = STATE(1389), + [sym__newline] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_err_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_GT_PIPE] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_RPAREN] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1688), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_LPAREN2] = ACTIONS(1688), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1686), + [anon_sym_DOT_DOT_LT] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [anon_sym_null] = ACTIONS(1688), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1688), + [aux_sym__val_number_decimal_token3] = ACTIONS(1688), + [aux_sym__val_number_decimal_token4] = ACTIONS(1688), + [aux_sym__val_number_token1] = ACTIONS(1688), + [aux_sym__val_number_token2] = ACTIONS(1688), + [aux_sym__val_number_token3] = ACTIONS(1688), + [aux_sym__val_number_token4] = ACTIONS(1688), + [aux_sym__val_number_token5] = ACTIONS(1688), + [aux_sym__val_number_token6] = ACTIONS(1688), + [anon_sym_0b] = ACTIONS(1686), + [anon_sym_0o] = ACTIONS(1686), + [anon_sym_0x] = ACTIONS(1686), + [sym_val_date] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [sym__str_single_quotes] = ACTIONS(1688), + [sym__str_back_ticks] = ACTIONS(1688), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1688), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1688), + [anon_sym_err_GT] = ACTIONS(1686), + [anon_sym_out_GT] = ACTIONS(1686), + [anon_sym_e_GT] = ACTIONS(1686), + [anon_sym_o_GT] = ACTIONS(1686), + [anon_sym_err_PLUSout_GT] = ACTIONS(1686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1686), + [anon_sym_o_PLUSe_GT] = ACTIONS(1686), + [anon_sym_e_PLUSo_GT] = ACTIONS(1686), + [anon_sym_err_GT_GT] = ACTIONS(1688), + [anon_sym_out_GT_GT] = ACTIONS(1688), + [anon_sym_e_GT_GT] = ACTIONS(1688), + [anon_sym_o_GT_GT] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1688), + [aux_sym_unquoted_token1] = ACTIONS(1686), + [aux_sym_unquoted_token2] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1688), }, - [1458] = { - [sym_cell_path] = STATE(1773), - [sym_path] = STATE(1692), - [sym_comment] = STATE(1458), - [aux_sym_cell_path_repeat1] = STATE(1564), - [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_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_DOT2] = ACTIONS(4770), - [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(245), - [sym_raw_string_begin] = ACTIONS(1933), + [1390] = { + [sym__expr_parenthesized_immediate] = STATE(2389), + [sym__immediate_decimal] = STATE(2390), + [sym_val_variable] = STATE(2389), + [sym_comment] = STATE(1390), + [ts_builtin_sym_end] = ACTIONS(1546), + [sym__newline] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_err_GT_PIPE] = ACTIONS(1546), + [anon_sym_out_GT_PIPE] = ACTIONS(1546), + [anon_sym_e_GT_PIPE] = ACTIONS(1546), + [anon_sym_o_GT_PIPE] = ACTIONS(1546), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1546), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1546), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1546), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1546), + [anon_sym_DOLLAR] = ACTIONS(4523), + [anon_sym_GT2] = ACTIONS(1538), + [anon_sym_DASH2] = ACTIONS(1538), + [anon_sym_in2] = ACTIONS(1546), + [anon_sym_STAR2] = ACTIONS(1538), + [anon_sym_and2] = ACTIONS(1546), + [anon_sym_xor2] = ACTIONS(1546), + [anon_sym_or2] = ACTIONS(1546), + [anon_sym_not_DASHin2] = ACTIONS(1546), + [anon_sym_has2] = ACTIONS(1546), + [anon_sym_not_DASHhas2] = ACTIONS(1546), + [anon_sym_starts_DASHwith2] = ACTIONS(1546), + [anon_sym_ends_DASHwith2] = ACTIONS(1546), + [anon_sym_EQ_EQ2] = ACTIONS(1546), + [anon_sym_BANG_EQ2] = ACTIONS(1546), + [anon_sym_LT2] = ACTIONS(1538), + [anon_sym_LT_EQ2] = ACTIONS(1546), + [anon_sym_GT_EQ2] = ACTIONS(1546), + [anon_sym_EQ_TILDE2] = ACTIONS(1546), + [anon_sym_BANG_TILDE2] = ACTIONS(1546), + [anon_sym_LPAREN2] = ACTIONS(4525), + [anon_sym_STAR_STAR2] = ACTIONS(1546), + [anon_sym_PLUS_PLUS2] = ACTIONS(1546), + [anon_sym_SLASH2] = ACTIONS(1538), + [anon_sym_mod2] = ACTIONS(1546), + [anon_sym_SLASH_SLASH2] = ACTIONS(1546), + [anon_sym_PLUS2] = ACTIONS(1538), + [anon_sym_bit_DASHshl2] = ACTIONS(1546), + [anon_sym_bit_DASHshr2] = ACTIONS(1546), + [anon_sym_bit_DASHand2] = ACTIONS(1546), + [anon_sym_bit_DASHxor2] = ACTIONS(1546), + [anon_sym_bit_DASHor2] = ACTIONS(1546), + [aux_sym__immediate_decimal_token1] = ACTIONS(4656), + [aux_sym__immediate_decimal_token3] = ACTIONS(4656), + [aux_sym__immediate_decimal_token4] = ACTIONS(4531), + [aux_sym__immediate_decimal_token5] = ACTIONS(4533), + [anon_sym_err_GT] = ACTIONS(1538), + [anon_sym_out_GT] = ACTIONS(1538), + [anon_sym_e_GT] = ACTIONS(1538), + [anon_sym_o_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT] = ACTIONS(1538), + [anon_sym_err_GT_GT] = ACTIONS(1546), + [anon_sym_out_GT_GT] = ACTIONS(1546), + [anon_sym_e_GT_GT] = ACTIONS(1546), + [anon_sym_o_GT_GT] = ACTIONS(1546), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1546), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1546), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1546), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(245), }, - [1459] = { - [sym_cell_path] = STATE(1784), - [sym_path] = STATE(1692), - [sym_comment] = STATE(1459), - [aux_sym_cell_path_repeat1] = STATE(1564), - [sym__newline] = ACTIONS(1937), - [anon_sym_SEMI] = ACTIONS(1937), - [anon_sym_PIPE] = ACTIONS(1937), - [anon_sym_err_GT_PIPE] = ACTIONS(1937), - [anon_sym_out_GT_PIPE] = ACTIONS(1937), - [anon_sym_e_GT_PIPE] = ACTIONS(1937), - [anon_sym_o_GT_PIPE] = ACTIONS(1937), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1937), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1937), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1937), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(1937), - [anon_sym_LPAREN] = ACTIONS(1937), - [anon_sym_RPAREN] = ACTIONS(1937), - [anon_sym_DOLLAR] = ACTIONS(1935), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_DASH2] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1937), - [anon_sym_RBRACE] = ACTIONS(1937), - [anon_sym_DOT_DOT] = ACTIONS(1935), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1937), - [anon_sym_DOT_DOT_LT] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1937), - [aux_sym__val_number_decimal_token4] = ACTIONS(1937), - [aux_sym__val_number_token1] = ACTIONS(1937), - [aux_sym__val_number_token2] = ACTIONS(1937), - [aux_sym__val_number_token3] = ACTIONS(1937), - [aux_sym__val_number_token4] = ACTIONS(1937), - [aux_sym__val_number_token5] = ACTIONS(1937), - [aux_sym__val_number_token6] = ACTIONS(1937), - [anon_sym_0b] = ACTIONS(1935), - [anon_sym_0o] = ACTIONS(1935), - [anon_sym_0x] = ACTIONS(1935), - [sym_val_date] = ACTIONS(1937), - [anon_sym_DQUOTE] = ACTIONS(1937), - [sym__str_single_quotes] = ACTIONS(1937), - [sym__str_back_ticks] = ACTIONS(1937), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1937), - [anon_sym_DOT2] = ACTIONS(4770), - [anon_sym_err_GT] = ACTIONS(1935), - [anon_sym_out_GT] = ACTIONS(1935), - [anon_sym_e_GT] = ACTIONS(1935), - [anon_sym_o_GT] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT] = ACTIONS(1935), - [anon_sym_err_GT_GT] = ACTIONS(1937), - [anon_sym_out_GT_GT] = ACTIONS(1937), - [anon_sym_e_GT_GT] = ACTIONS(1937), - [anon_sym_o_GT_GT] = ACTIONS(1937), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1937), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1937), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1937), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1937), - [aux_sym_unquoted_token1] = ACTIONS(1935), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1937), + [1391] = { + [sym_comment] = STATE(1391), + [anon_sym_EQ] = ACTIONS(4686), + [anon_sym_PLUS_EQ] = ACTIONS(4688), + [anon_sym_DASH_EQ] = ACTIONS(4688), + [anon_sym_STAR_EQ] = ACTIONS(4688), + [anon_sym_SLASH_EQ] = ACTIONS(4688), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4688), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(998), + [anon_sym_in2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(998), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(998), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(998), + [anon_sym_SLASH2] = ACTIONS(998), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(998), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), + [anon_sym_DOT_DOT2] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), + [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(994), + [anon_sym_out_GT_GT] = ACTIONS(994), + [anon_sym_e_GT_GT] = ACTIONS(994), + [anon_sym_o_GT_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(245), }, - [1460] = { - [sym_cell_path] = STATE(1902), - [sym_path] = STATE(1692), - [sym_comment] = STATE(1460), - [aux_sym_cell_path_repeat1] = STATE(1564), - [sym__newline] = ACTIONS(1943), - [anon_sym_SEMI] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_err_GT_PIPE] = ACTIONS(1943), - [anon_sym_out_GT_PIPE] = ACTIONS(1943), - [anon_sym_e_GT_PIPE] = ACTIONS(1943), - [anon_sym_o_GT_PIPE] = ACTIONS(1943), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1943), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1943), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1943), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1943), - [anon_sym_LBRACK] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1943), - [anon_sym_RPAREN] = ACTIONS(1943), - [anon_sym_DOLLAR] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1943), - [anon_sym_DASH2] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1943), - [anon_sym_RBRACE] = ACTIONS(1943), - [anon_sym_DOT_DOT] = ACTIONS(1941), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1943), - [anon_sym_DOT_DOT_LT] = ACTIONS(1943), - [anon_sym_null] = ACTIONS(1943), - [anon_sym_true] = ACTIONS(1943), - [anon_sym_false] = ACTIONS(1943), - [aux_sym__val_number_decimal_token1] = ACTIONS(1941), - [aux_sym__val_number_decimal_token2] = ACTIONS(1943), - [aux_sym__val_number_decimal_token3] = ACTIONS(1943), - [aux_sym__val_number_decimal_token4] = ACTIONS(1943), - [aux_sym__val_number_token1] = ACTIONS(1943), - [aux_sym__val_number_token2] = ACTIONS(1943), - [aux_sym__val_number_token3] = ACTIONS(1943), - [aux_sym__val_number_token4] = ACTIONS(1943), - [aux_sym__val_number_token5] = ACTIONS(1943), - [aux_sym__val_number_token6] = ACTIONS(1943), - [anon_sym_0b] = ACTIONS(1941), - [anon_sym_0o] = ACTIONS(1941), - [anon_sym_0x] = ACTIONS(1941), - [sym_val_date] = ACTIONS(1943), - [anon_sym_DQUOTE] = ACTIONS(1943), - [sym__str_single_quotes] = ACTIONS(1943), - [sym__str_back_ticks] = ACTIONS(1943), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1943), - [anon_sym_DOT2] = ACTIONS(4770), - [anon_sym_err_GT] = ACTIONS(1941), - [anon_sym_out_GT] = ACTIONS(1941), - [anon_sym_e_GT] = ACTIONS(1941), - [anon_sym_o_GT] = ACTIONS(1941), - [anon_sym_err_PLUSout_GT] = ACTIONS(1941), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1941), - [anon_sym_o_PLUSe_GT] = ACTIONS(1941), - [anon_sym_e_PLUSo_GT] = ACTIONS(1941), - [anon_sym_err_GT_GT] = ACTIONS(1943), - [anon_sym_out_GT_GT] = ACTIONS(1943), - [anon_sym_e_GT_GT] = ACTIONS(1943), - [anon_sym_o_GT_GT] = ACTIONS(1943), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1943), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1943), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1943), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1943), - [aux_sym_unquoted_token1] = ACTIONS(1941), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1943), + [1392] = { + [sym_comment] = STATE(1392), + [sym__newline] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_err_GT_PIPE] = ACTIONS(966), + [anon_sym_out_GT_PIPE] = ACTIONS(966), + [anon_sym_e_GT_PIPE] = ACTIONS(966), + [anon_sym_o_GT_PIPE] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_RPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_DASH2] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_DOT_DOT] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(4690), + [anon_sym_DOT_DOT2] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ] = ACTIONS(964), + [anon_sym_DOT_DOT_LT] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(966), + [anon_sym_DOT_DOT_LT2] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(964), + [aux_sym__val_number_decimal_token2] = ACTIONS(966), + [aux_sym__val_number_decimal_token3] = ACTIONS(966), + [aux_sym__val_number_decimal_token4] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_0b] = ACTIONS(964), + [anon_sym_0o] = ACTIONS(964), + [anon_sym_0x] = ACTIONS(964), + [sym_val_date] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(964), + [anon_sym_err_GT] = ACTIONS(964), + [anon_sym_out_GT] = ACTIONS(964), + [anon_sym_e_GT] = ACTIONS(964), + [anon_sym_o_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT] = ACTIONS(964), + [anon_sym_err_GT_GT] = ACTIONS(966), + [anon_sym_out_GT_GT] = ACTIONS(966), + [anon_sym_e_GT_GT] = ACTIONS(966), + [anon_sym_o_GT_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(966), + [aux_sym_unquoted_token1] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(966), }, - [1461] = { - [sym_comment] = STATE(1461), - [ts_builtin_sym_end] = ACTIONS(944), - [sym__newline] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(944), - [anon_sym_err_GT_PIPE] = ACTIONS(944), - [anon_sym_out_GT_PIPE] = ACTIONS(944), - [anon_sym_e_GT_PIPE] = ACTIONS(944), - [anon_sym_o_GT_PIPE] = ACTIONS(944), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(944), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(944), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(944), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(944), - [anon_sym_DOLLAR] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(944), - [anon_sym_DASH2] = ACTIONS(942), - [anon_sym_LBRACE] = ACTIONS(944), - [anon_sym_DOT_DOT] = ACTIONS(942), - [anon_sym_QMARK2] = ACTIONS(4774), - [anon_sym_DOT_DOT2] = ACTIONS(942), - [anon_sym_DOT_DOT_EQ] = ACTIONS(942), - [anon_sym_DOT_DOT_LT] = ACTIONS(942), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(944), - [anon_sym_DOT_DOT_LT2] = ACTIONS(944), - [anon_sym_null] = ACTIONS(944), - [anon_sym_true] = ACTIONS(944), - [anon_sym_false] = ACTIONS(944), - [aux_sym__val_number_decimal_token1] = ACTIONS(942), - [aux_sym__val_number_decimal_token2] = ACTIONS(944), - [aux_sym__val_number_decimal_token3] = ACTIONS(944), - [aux_sym__val_number_decimal_token4] = ACTIONS(944), - [aux_sym__val_number_token1] = ACTIONS(944), - [aux_sym__val_number_token2] = ACTIONS(944), - [aux_sym__val_number_token3] = ACTIONS(944), - [aux_sym__val_number_token4] = ACTIONS(944), - [aux_sym__val_number_token5] = ACTIONS(944), - [aux_sym__val_number_token6] = ACTIONS(944), - [anon_sym_0b] = ACTIONS(942), - [anon_sym_0o] = ACTIONS(942), - [anon_sym_0x] = ACTIONS(942), - [sym_val_date] = ACTIONS(944), - [anon_sym_DQUOTE] = ACTIONS(944), - [sym__str_single_quotes] = ACTIONS(944), - [sym__str_back_ticks] = ACTIONS(944), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(944), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(944), - [anon_sym_DOT2] = ACTIONS(942), - [anon_sym_err_GT] = ACTIONS(942), - [anon_sym_out_GT] = ACTIONS(942), - [anon_sym_e_GT] = ACTIONS(942), - [anon_sym_o_GT] = ACTIONS(942), - [anon_sym_err_PLUSout_GT] = ACTIONS(942), - [anon_sym_out_PLUSerr_GT] = ACTIONS(942), - [anon_sym_o_PLUSe_GT] = ACTIONS(942), - [anon_sym_e_PLUSo_GT] = ACTIONS(942), - [anon_sym_err_GT_GT] = ACTIONS(944), - [anon_sym_out_GT_GT] = ACTIONS(944), - [anon_sym_e_GT_GT] = ACTIONS(944), - [anon_sym_o_GT_GT] = ACTIONS(944), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(944), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(944), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(944), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(944), - [aux_sym_unquoted_token1] = ACTIONS(942), + [1393] = { + [sym_comment] = STATE(1393), + [ts_builtin_sym_end] = ACTIONS(1493), + [sym__newline] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_err_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_GT_PIPE] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1493), + [anon_sym_GT2] = ACTIONS(1491), + [anon_sym_DASH2] = ACTIONS(1493), + [anon_sym_in2] = ACTIONS(1493), + [anon_sym_STAR2] = ACTIONS(1491), + [anon_sym_and2] = ACTIONS(1493), + [anon_sym_xor2] = ACTIONS(1493), + [anon_sym_or2] = ACTIONS(1493), + [anon_sym_not_DASHin2] = ACTIONS(1493), + [anon_sym_has2] = ACTIONS(1493), + [anon_sym_not_DASHhas2] = ACTIONS(1493), + [anon_sym_starts_DASHwith2] = ACTIONS(1493), + [anon_sym_ends_DASHwith2] = ACTIONS(1493), + [anon_sym_EQ_EQ2] = ACTIONS(1493), + [anon_sym_BANG_EQ2] = ACTIONS(1493), + [anon_sym_LT2] = ACTIONS(1491), + [anon_sym_LT_EQ2] = ACTIONS(1493), + [anon_sym_GT_EQ2] = ACTIONS(1493), + [anon_sym_EQ_TILDE2] = ACTIONS(1493), + [anon_sym_BANG_TILDE2] = ACTIONS(1493), + [anon_sym_LPAREN2] = ACTIONS(1493), + [anon_sym_STAR_STAR2] = ACTIONS(1493), + [anon_sym_PLUS_PLUS2] = ACTIONS(1493), + [anon_sym_SLASH2] = ACTIONS(1491), + [anon_sym_mod2] = ACTIONS(1493), + [anon_sym_SLASH_SLASH2] = ACTIONS(1493), + [anon_sym_PLUS2] = ACTIONS(1491), + [anon_sym_bit_DASHshl2] = ACTIONS(1493), + [anon_sym_bit_DASHshr2] = ACTIONS(1493), + [anon_sym_bit_DASHand2] = ACTIONS(1493), + [anon_sym_bit_DASHxor2] = ACTIONS(1493), + [anon_sym_bit_DASHor2] = ACTIONS(1493), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [aux_sym__immediate_decimal_token1] = ACTIONS(4692), + [aux_sym__immediate_decimal_token2] = ACTIONS(4694), + [sym_filesize_unit] = ACTIONS(1491), + [sym_duration_unit] = ACTIONS(1493), + [anon_sym_err_GT] = ACTIONS(1491), + [anon_sym_out_GT] = ACTIONS(1491), + [anon_sym_e_GT] = ACTIONS(1491), + [anon_sym_o_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT] = ACTIONS(1491), + [anon_sym_err_GT_GT] = ACTIONS(1493), + [anon_sym_out_GT_GT] = ACTIONS(1493), + [anon_sym_e_GT_GT] = ACTIONS(1493), + [anon_sym_o_GT_GT] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1493), + [aux_sym_unquoted_token2] = ACTIONS(1491), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(944), }, - [1462] = { - [sym_comment] = STATE(1462), - [ts_builtin_sym_end] = ACTIONS(950), - [sym__newline] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_PIPE] = ACTIONS(950), - [anon_sym_err_GT_PIPE] = ACTIONS(950), - [anon_sym_out_GT_PIPE] = ACTIONS(950), - [anon_sym_e_GT_PIPE] = ACTIONS(950), - [anon_sym_o_GT_PIPE] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), - [anon_sym_LBRACK] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_DASH2] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_DOT_DOT] = ACTIONS(948), - [anon_sym_QMARK2] = ACTIONS(4776), - [anon_sym_DOT_DOT2] = ACTIONS(948), - [anon_sym_DOT_DOT_EQ] = ACTIONS(948), - [anon_sym_DOT_DOT_LT] = ACTIONS(948), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), - [anon_sym_DOT_DOT_LT2] = ACTIONS(950), - [anon_sym_null] = ACTIONS(950), - [anon_sym_true] = ACTIONS(950), - [anon_sym_false] = ACTIONS(950), - [aux_sym__val_number_decimal_token1] = ACTIONS(948), - [aux_sym__val_number_decimal_token2] = ACTIONS(950), - [aux_sym__val_number_decimal_token3] = ACTIONS(950), - [aux_sym__val_number_decimal_token4] = ACTIONS(950), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [aux_sym__val_number_token4] = ACTIONS(950), - [aux_sym__val_number_token5] = ACTIONS(950), - [aux_sym__val_number_token6] = ACTIONS(950), - [anon_sym_0b] = ACTIONS(948), - [anon_sym_0o] = ACTIONS(948), - [anon_sym_0x] = ACTIONS(948), - [sym_val_date] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(948), - [anon_sym_err_GT] = ACTIONS(948), - [anon_sym_out_GT] = ACTIONS(948), - [anon_sym_e_GT] = ACTIONS(948), - [anon_sym_o_GT] = ACTIONS(948), - [anon_sym_err_PLUSout_GT] = ACTIONS(948), - [anon_sym_out_PLUSerr_GT] = ACTIONS(948), - [anon_sym_o_PLUSe_GT] = ACTIONS(948), - [anon_sym_e_PLUSo_GT] = ACTIONS(948), - [anon_sym_err_GT_GT] = ACTIONS(950), - [anon_sym_out_GT_GT] = ACTIONS(950), - [anon_sym_e_GT_GT] = ACTIONS(950), - [anon_sym_o_GT_GT] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), - [aux_sym_unquoted_token1] = ACTIONS(948), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(950), + [1394] = { + [sym_comment] = STATE(1394), + [ts_builtin_sym_end] = ACTIONS(1501), + [sym__newline] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_err_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_GT_PIPE] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1501), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1501), + [anon_sym_in2] = ACTIONS(1501), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1501), + [anon_sym_xor2] = ACTIONS(1501), + [anon_sym_or2] = ACTIONS(1501), + [anon_sym_not_DASHin2] = ACTIONS(1501), + [anon_sym_has2] = ACTIONS(1501), + [anon_sym_not_DASHhas2] = ACTIONS(1501), + [anon_sym_starts_DASHwith2] = ACTIONS(1501), + [anon_sym_ends_DASHwith2] = ACTIONS(1501), + [anon_sym_EQ_EQ2] = ACTIONS(1501), + [anon_sym_BANG_EQ2] = ACTIONS(1501), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1501), + [anon_sym_GT_EQ2] = ACTIONS(1501), + [anon_sym_EQ_TILDE2] = ACTIONS(1501), + [anon_sym_BANG_TILDE2] = ACTIONS(1501), + [anon_sym_LPAREN2] = ACTIONS(1501), + [anon_sym_STAR_STAR2] = ACTIONS(1501), + [anon_sym_PLUS_PLUS2] = ACTIONS(1501), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1501), + [anon_sym_SLASH_SLASH2] = ACTIONS(1501), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1501), + [anon_sym_bit_DASHshr2] = ACTIONS(1501), + [anon_sym_bit_DASHand2] = ACTIONS(1501), + [anon_sym_bit_DASHxor2] = ACTIONS(1501), + [anon_sym_bit_DASHor2] = ACTIONS(1501), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT] = ACTIONS(4696), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(4698), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1501), + [anon_sym_out_GT_GT] = ACTIONS(1501), + [anon_sym_e_GT_GT] = ACTIONS(1501), + [anon_sym_o_GT_GT] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1501), + [aux_sym_unquoted_token2] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(245), }, - [1463] = { - [sym_cell_path] = STATE(1759), - [sym_path] = STATE(1692), - [sym_comment] = STATE(1463), - [aux_sym_cell_path_repeat1] = STATE(1564), + [1395] = { + [sym_comment] = STATE(1395), + [anon_sym_EQ] = ACTIONS(4700), + [anon_sym_PLUS_EQ] = ACTIONS(4702), + [anon_sym_DASH_EQ] = ACTIONS(4702), + [anon_sym_STAR_EQ] = ACTIONS(4702), + [anon_sym_SLASH_EQ] = ACTIONS(4702), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4702), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(998), + [anon_sym_in2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(998), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(998), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(998), + [anon_sym_SLASH2] = ACTIONS(998), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(998), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), + [anon_sym_DOT_DOT2] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), + [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(994), + [anon_sym_out_GT_GT] = ACTIONS(994), + [anon_sym_e_GT_GT] = ACTIONS(994), + [anon_sym_o_GT_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(245), + }, + [1396] = { + [sym_comment] = STATE(1396), + [sym__newline] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_err_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_GT_PIPE] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1501), + [anon_sym_RPAREN] = ACTIONS(1501), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1501), + [anon_sym_in2] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(1501), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1501), + [anon_sym_xor2] = ACTIONS(1501), + [anon_sym_or2] = ACTIONS(1501), + [anon_sym_not_DASHin2] = ACTIONS(1501), + [anon_sym_has2] = ACTIONS(1501), + [anon_sym_not_DASHhas2] = ACTIONS(1501), + [anon_sym_starts_DASHwith2] = ACTIONS(1501), + [anon_sym_ends_DASHwith2] = ACTIONS(1501), + [anon_sym_EQ_EQ2] = ACTIONS(1501), + [anon_sym_BANG_EQ2] = ACTIONS(1501), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1501), + [anon_sym_GT_EQ2] = ACTIONS(1501), + [anon_sym_EQ_TILDE2] = ACTIONS(1501), + [anon_sym_BANG_TILDE2] = ACTIONS(1501), + [anon_sym_LPAREN2] = ACTIONS(1501), + [anon_sym_STAR_STAR2] = ACTIONS(1501), + [anon_sym_PLUS_PLUS2] = ACTIONS(1501), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1501), + [anon_sym_SLASH_SLASH2] = ACTIONS(1501), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1501), + [anon_sym_bit_DASHshr2] = ACTIONS(1501), + [anon_sym_bit_DASHand2] = ACTIONS(1501), + [anon_sym_bit_DASHxor2] = ACTIONS(1501), + [anon_sym_bit_DASHor2] = ACTIONS(1501), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(4621), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1501), + [anon_sym_out_GT_GT] = ACTIONS(1501), + [anon_sym_e_GT_GT] = ACTIONS(1501), + [anon_sym_o_GT_GT] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1501), + [aux_sym_unquoted_token2] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(245), + }, + [1397] = { + [sym_comment] = STATE(1397), + [sym__newline] = ACTIONS(976), + [anon_sym_SEMI] = ACTIONS(976), + [anon_sym_PIPE] = ACTIONS(976), + [anon_sym_err_GT_PIPE] = ACTIONS(976), + [anon_sym_out_GT_PIPE] = ACTIONS(976), + [anon_sym_e_GT_PIPE] = ACTIONS(976), + [anon_sym_o_GT_PIPE] = ACTIONS(976), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(976), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(976), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(976), + [anon_sym_RPAREN] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(974), + [anon_sym_DASH2] = ACTIONS(976), + [anon_sym_in2] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(976), + [anon_sym_EQ_GT] = ACTIONS(976), + [anon_sym_STAR2] = ACTIONS(974), + [anon_sym_and2] = ACTIONS(976), + [anon_sym_xor2] = ACTIONS(976), + [anon_sym_or2] = ACTIONS(976), + [anon_sym_not_DASHin2] = ACTIONS(976), + [anon_sym_has2] = ACTIONS(976), + [anon_sym_not_DASHhas2] = ACTIONS(976), + [anon_sym_starts_DASHwith2] = ACTIONS(976), + [anon_sym_ends_DASHwith2] = ACTIONS(976), + [anon_sym_EQ_EQ2] = ACTIONS(976), + [anon_sym_BANG_EQ2] = ACTIONS(976), + [anon_sym_LT2] = ACTIONS(974), + [anon_sym_LT_EQ2] = ACTIONS(976), + [anon_sym_GT_EQ2] = ACTIONS(976), + [anon_sym_EQ_TILDE2] = ACTIONS(976), + [anon_sym_BANG_TILDE2] = ACTIONS(976), + [anon_sym_STAR_STAR2] = ACTIONS(976), + [anon_sym_PLUS_PLUS2] = ACTIONS(976), + [anon_sym_SLASH2] = ACTIONS(974), + [anon_sym_mod2] = ACTIONS(976), + [anon_sym_SLASH_SLASH2] = ACTIONS(976), + [anon_sym_PLUS2] = ACTIONS(974), + [anon_sym_bit_DASHshl2] = ACTIONS(976), + [anon_sym_bit_DASHshr2] = ACTIONS(976), + [anon_sym_bit_DASHand2] = ACTIONS(976), + [anon_sym_bit_DASHxor2] = ACTIONS(976), + [anon_sym_bit_DASHor2] = ACTIONS(976), + [anon_sym_DOT_DOT2] = ACTIONS(974), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(976), + [anon_sym_DOT_DOT_LT2] = ACTIONS(976), + [anon_sym_COLON2] = ACTIONS(976), + [anon_sym_DOT2] = ACTIONS(974), + [anon_sym_err_GT] = ACTIONS(974), + [anon_sym_out_GT] = ACTIONS(974), + [anon_sym_e_GT] = ACTIONS(974), + [anon_sym_o_GT] = ACTIONS(974), + [anon_sym_err_PLUSout_GT] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT] = ACTIONS(974), + [anon_sym_o_PLUSe_GT] = ACTIONS(974), + [anon_sym_e_PLUSo_GT] = ACTIONS(974), + [anon_sym_err_GT_GT] = ACTIONS(976), + [anon_sym_out_GT_GT] = ACTIONS(976), + [anon_sym_e_GT_GT] = ACTIONS(976), + [anon_sym_o_GT_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(976), + [anon_sym_POUND] = ACTIONS(245), + }, + [1398] = { + [sym_comment] = STATE(1398), + [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(980), + [anon_sym_in2] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_EQ_GT] = ACTIONS(980), + [anon_sym_STAR2] = ACTIONS(978), + [anon_sym_and2] = ACTIONS(980), + [anon_sym_xor2] = ACTIONS(980), + [anon_sym_or2] = ACTIONS(980), + [anon_sym_not_DASHin2] = ACTIONS(980), + [anon_sym_has2] = ACTIONS(980), + [anon_sym_not_DASHhas2] = 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_EQ2] = ACTIONS(980), + [anon_sym_DOT_DOT_LT2] = ACTIONS(980), + [anon_sym_COLON2] = ACTIONS(980), + [anon_sym_DOT2] = ACTIONS(978), + [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(245), + }, + [1399] = { + [sym_comment] = STATE(1399), + [ts_builtin_sym_end] = ACTIONS(1680), + [sym__newline] = ACTIONS(1680), + [anon_sym_SEMI] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1680), + [anon_sym_err_GT_PIPE] = ACTIONS(1680), + [anon_sym_out_GT_PIPE] = ACTIONS(1680), + [anon_sym_e_GT_PIPE] = ACTIONS(1680), + [anon_sym_o_GT_PIPE] = ACTIONS(1680), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1680), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1680), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1680), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(1680), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_DOLLAR] = ACTIONS(1678), + [anon_sym_DASH_DASH] = ACTIONS(1680), + [anon_sym_DASH2] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_DOT_DOT] = ACTIONS(1678), + [anon_sym_DOT_DOT2] = ACTIONS(1678), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1678), + [anon_sym_DOT_DOT_LT] = ACTIONS(1678), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1680), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1680), + [anon_sym_null] = ACTIONS(1680), + [anon_sym_true] = ACTIONS(1680), + [anon_sym_false] = ACTIONS(1680), + [aux_sym__val_number_decimal_token1] = ACTIONS(1678), + [aux_sym__val_number_decimal_token2] = ACTIONS(1680), + [aux_sym__val_number_decimal_token3] = ACTIONS(1680), + [aux_sym__val_number_decimal_token4] = ACTIONS(1680), + [aux_sym__val_number_token1] = ACTIONS(1680), + [aux_sym__val_number_token2] = ACTIONS(1680), + [aux_sym__val_number_token3] = ACTIONS(1680), + [aux_sym__val_number_token4] = ACTIONS(1680), + [aux_sym__val_number_token5] = ACTIONS(1680), + [aux_sym__val_number_token6] = ACTIONS(1680), + [anon_sym_0b] = ACTIONS(1678), + [sym_filesize_unit] = ACTIONS(1680), + [sym_duration_unit] = ACTIONS(1680), + [anon_sym_0o] = ACTIONS(1678), + [anon_sym_0x] = ACTIONS(1678), + [sym_val_date] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1680), + [sym__str_single_quotes] = ACTIONS(1680), + [sym__str_back_ticks] = ACTIONS(1680), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1680), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1680), + [anon_sym_err_GT] = ACTIONS(1678), + [anon_sym_out_GT] = ACTIONS(1678), + [anon_sym_e_GT] = ACTIONS(1678), + [anon_sym_o_GT] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT] = ACTIONS(1678), + [anon_sym_err_GT_GT] = ACTIONS(1680), + [anon_sym_out_GT_GT] = ACTIONS(1680), + [anon_sym_e_GT_GT] = ACTIONS(1680), + [anon_sym_o_GT_GT] = ACTIONS(1680), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1680), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1680), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1680), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1680), + [aux_sym_unquoted_token1] = ACTIONS(1678), + [aux_sym_unquoted_token2] = ACTIONS(1678), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1680), + }, + [1400] = { + [sym_comment] = STATE(1400), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(4704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1701), + [anon_sym_DOT_DOT_LT] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4706), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [1401] = { + [sym_comment] = STATE(1401), + [ts_builtin_sym_end] = ACTIONS(956), + [sym__newline] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_PIPE] = ACTIONS(956), + [anon_sym_err_GT_PIPE] = ACTIONS(956), + [anon_sym_out_GT_PIPE] = ACTIONS(956), + [anon_sym_e_GT_PIPE] = ACTIONS(956), + [anon_sym_o_GT_PIPE] = ACTIONS(956), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(956), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(956), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(956), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(956), + [anon_sym_DOLLAR] = ACTIONS(954), + [anon_sym_DASH_DASH] = ACTIONS(956), + [anon_sym_DASH2] = ACTIONS(954), + [anon_sym_LBRACE] = ACTIONS(956), + [anon_sym_DOT_DOT] = ACTIONS(954), + [anon_sym_QMARK2] = ACTIONS(956), + [anon_sym_DOT_DOT2] = ACTIONS(954), + [anon_sym_DOT_DOT_EQ] = ACTIONS(954), + [anon_sym_DOT_DOT_LT] = ACTIONS(954), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(956), + [anon_sym_DOT_DOT_LT2] = ACTIONS(956), + [anon_sym_null] = ACTIONS(956), + [anon_sym_true] = ACTIONS(956), + [anon_sym_false] = ACTIONS(956), + [aux_sym__val_number_decimal_token1] = ACTIONS(954), + [aux_sym__val_number_decimal_token2] = ACTIONS(956), + [aux_sym__val_number_decimal_token3] = ACTIONS(956), + [aux_sym__val_number_decimal_token4] = ACTIONS(956), + [aux_sym__val_number_token1] = ACTIONS(956), + [aux_sym__val_number_token2] = ACTIONS(956), + [aux_sym__val_number_token3] = ACTIONS(956), + [aux_sym__val_number_token4] = ACTIONS(956), + [aux_sym__val_number_token5] = ACTIONS(956), + [aux_sym__val_number_token6] = ACTIONS(956), + [anon_sym_0b] = ACTIONS(954), + [anon_sym_0o] = ACTIONS(954), + [anon_sym_0x] = ACTIONS(954), + [sym_val_date] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(956), + [sym__str_single_quotes] = ACTIONS(956), + [sym__str_back_ticks] = ACTIONS(956), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(956), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(956), + [anon_sym_DOT2] = ACTIONS(954), + [anon_sym_err_GT] = ACTIONS(954), + [anon_sym_out_GT] = ACTIONS(954), + [anon_sym_e_GT] = ACTIONS(954), + [anon_sym_o_GT] = ACTIONS(954), + [anon_sym_err_PLUSout_GT] = ACTIONS(954), + [anon_sym_out_PLUSerr_GT] = ACTIONS(954), + [anon_sym_o_PLUSe_GT] = ACTIONS(954), + [anon_sym_e_PLUSo_GT] = ACTIONS(954), + [anon_sym_err_GT_GT] = ACTIONS(956), + [anon_sym_out_GT_GT] = ACTIONS(956), + [anon_sym_e_GT_GT] = ACTIONS(956), + [anon_sym_o_GT_GT] = ACTIONS(956), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(956), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(956), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(956), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(956), + [aux_sym_unquoted_token1] = ACTIONS(954), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(956), + }, + [1402] = { + [sym_comment] = STATE(1402), + [sym__newline] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1581), + [anon_sym_PIPE] = ACTIONS(1581), + [anon_sym_err_GT_PIPE] = ACTIONS(1581), + [anon_sym_out_GT_PIPE] = ACTIONS(1581), + [anon_sym_e_GT_PIPE] = ACTIONS(1581), + [anon_sym_o_GT_PIPE] = ACTIONS(1581), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1581), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1581), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1581), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1581), + [anon_sym_RPAREN] = ACTIONS(1581), + [anon_sym_GT2] = ACTIONS(1579), + [anon_sym_DASH2] = ACTIONS(1581), + [anon_sym_in2] = ACTIONS(1581), + [anon_sym_RBRACE] = ACTIONS(1581), + [anon_sym_STAR2] = ACTIONS(1579), + [anon_sym_and2] = ACTIONS(1581), + [anon_sym_xor2] = ACTIONS(1581), + [anon_sym_or2] = ACTIONS(1581), + [anon_sym_not_DASHin2] = ACTIONS(1581), + [anon_sym_has2] = ACTIONS(1581), + [anon_sym_not_DASHhas2] = ACTIONS(1581), + [anon_sym_starts_DASHwith2] = ACTIONS(1581), + [anon_sym_ends_DASHwith2] = ACTIONS(1581), + [anon_sym_EQ_EQ2] = ACTIONS(1581), + [anon_sym_BANG_EQ2] = ACTIONS(1581), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ2] = ACTIONS(1581), + [anon_sym_GT_EQ2] = ACTIONS(1581), + [anon_sym_EQ_TILDE2] = ACTIONS(1581), + [anon_sym_BANG_TILDE2] = ACTIONS(1581), + [anon_sym_LPAREN2] = ACTIONS(1581), + [anon_sym_STAR_STAR2] = ACTIONS(1581), + [anon_sym_PLUS_PLUS2] = ACTIONS(1581), + [anon_sym_SLASH2] = ACTIONS(1579), + [anon_sym_mod2] = ACTIONS(1581), + [anon_sym_SLASH_SLASH2] = ACTIONS(1581), + [anon_sym_PLUS2] = ACTIONS(1579), + [anon_sym_bit_DASHshl2] = ACTIONS(1581), + [anon_sym_bit_DASHshr2] = ACTIONS(1581), + [anon_sym_bit_DASHand2] = ACTIONS(1581), + [anon_sym_bit_DASHxor2] = ACTIONS(1581), + [anon_sym_bit_DASHor2] = ACTIONS(1581), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [sym_filesize_unit] = ACTIONS(1579), + [sym_duration_unit] = ACTIONS(1581), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [anon_sym_err_GT_GT] = ACTIONS(1581), + [anon_sym_out_GT_GT] = ACTIONS(1581), + [anon_sym_e_GT_GT] = ACTIONS(1581), + [anon_sym_o_GT_GT] = ACTIONS(1581), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1581), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1581), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1581), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1581), + [aux_sym_unquoted_token2] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(245), + }, + [1403] = { + [sym_comment] = STATE(1403), + [sym__newline] = ACTIONS(1680), + [anon_sym_SEMI] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1680), + [anon_sym_err_GT_PIPE] = ACTIONS(1680), + [anon_sym_out_GT_PIPE] = ACTIONS(1680), + [anon_sym_e_GT_PIPE] = ACTIONS(1680), + [anon_sym_o_GT_PIPE] = ACTIONS(1680), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1680), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1680), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1680), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1680), + [anon_sym_RPAREN] = ACTIONS(1680), + [anon_sym_GT2] = ACTIONS(1678), + [anon_sym_DASH2] = ACTIONS(1680), + [anon_sym_in2] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(1680), + [anon_sym_STAR2] = ACTIONS(1678), + [anon_sym_and2] = ACTIONS(1680), + [anon_sym_xor2] = ACTIONS(1680), + [anon_sym_or2] = ACTIONS(1680), + [anon_sym_not_DASHin2] = ACTIONS(1680), + [anon_sym_has2] = ACTIONS(1680), + [anon_sym_not_DASHhas2] = ACTIONS(1680), + [anon_sym_starts_DASHwith2] = ACTIONS(1680), + [anon_sym_ends_DASHwith2] = ACTIONS(1680), + [anon_sym_EQ_EQ2] = ACTIONS(1680), + [anon_sym_BANG_EQ2] = ACTIONS(1680), + [anon_sym_LT2] = ACTIONS(1678), + [anon_sym_LT_EQ2] = ACTIONS(1680), + [anon_sym_GT_EQ2] = ACTIONS(1680), + [anon_sym_EQ_TILDE2] = ACTIONS(1680), + [anon_sym_BANG_TILDE2] = ACTIONS(1680), + [anon_sym_LPAREN2] = ACTIONS(1680), + [anon_sym_STAR_STAR2] = ACTIONS(1680), + [anon_sym_PLUS_PLUS2] = ACTIONS(1680), + [anon_sym_SLASH2] = ACTIONS(1678), + [anon_sym_mod2] = ACTIONS(1680), + [anon_sym_SLASH_SLASH2] = ACTIONS(1680), + [anon_sym_PLUS2] = ACTIONS(1678), + [anon_sym_bit_DASHshl2] = ACTIONS(1680), + [anon_sym_bit_DASHshr2] = ACTIONS(1680), + [anon_sym_bit_DASHand2] = ACTIONS(1680), + [anon_sym_bit_DASHxor2] = ACTIONS(1680), + [anon_sym_bit_DASHor2] = ACTIONS(1680), + [anon_sym_DOT_DOT2] = ACTIONS(1678), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1680), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1680), + [sym_filesize_unit] = ACTIONS(1678), + [sym_duration_unit] = ACTIONS(1680), + [anon_sym_err_GT] = ACTIONS(1678), + [anon_sym_out_GT] = ACTIONS(1678), + [anon_sym_e_GT] = ACTIONS(1678), + [anon_sym_o_GT] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT] = ACTIONS(1678), + [anon_sym_err_GT_GT] = ACTIONS(1680), + [anon_sym_out_GT_GT] = ACTIONS(1680), + [anon_sym_e_GT_GT] = ACTIONS(1680), + [anon_sym_o_GT_GT] = ACTIONS(1680), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1680), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1680), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1680), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1680), + [aux_sym_unquoted_token2] = ACTIONS(1678), + [anon_sym_POUND] = ACTIONS(245), + }, + [1404] = { + [sym_comment] = STATE(1404), + [ts_builtin_sym_end] = ACTIONS(948), + [sym__newline] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_PIPE] = ACTIONS(948), + [anon_sym_err_GT_PIPE] = ACTIONS(948), + [anon_sym_out_GT_PIPE] = ACTIONS(948), + [anon_sym_e_GT_PIPE] = ACTIONS(948), + [anon_sym_o_GT_PIPE] = ACTIONS(948), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(948), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(948), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(948), + [anon_sym_LPAREN] = ACTIONS(948), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_DASH_DASH] = ACTIONS(948), + [anon_sym_DASH2] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(948), + [anon_sym_DOT_DOT] = ACTIONS(946), + [anon_sym_QMARK2] = ACTIONS(948), + [anon_sym_DOT_DOT2] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ] = ACTIONS(946), + [anon_sym_DOT_DOT_LT] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(948), + [anon_sym_DOT_DOT_LT2] = ACTIONS(948), + [anon_sym_null] = ACTIONS(948), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [aux_sym__val_number_decimal_token1] = ACTIONS(946), + [aux_sym__val_number_decimal_token2] = ACTIONS(948), + [aux_sym__val_number_decimal_token3] = ACTIONS(948), + [aux_sym__val_number_decimal_token4] = ACTIONS(948), + [aux_sym__val_number_token1] = ACTIONS(948), + [aux_sym__val_number_token2] = ACTIONS(948), + [aux_sym__val_number_token3] = ACTIONS(948), + [aux_sym__val_number_token4] = ACTIONS(948), + [aux_sym__val_number_token5] = ACTIONS(948), + [aux_sym__val_number_token6] = ACTIONS(948), + [anon_sym_0b] = ACTIONS(946), + [anon_sym_0o] = ACTIONS(946), + [anon_sym_0x] = ACTIONS(946), + [sym_val_date] = ACTIONS(948), + [anon_sym_DQUOTE] = ACTIONS(948), + [sym__str_single_quotes] = ACTIONS(948), + [sym__str_back_ticks] = ACTIONS(948), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(948), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(948), + [anon_sym_DOT2] = ACTIONS(946), + [anon_sym_err_GT] = ACTIONS(946), + [anon_sym_out_GT] = ACTIONS(946), + [anon_sym_e_GT] = ACTIONS(946), + [anon_sym_o_GT] = ACTIONS(946), + [anon_sym_err_PLUSout_GT] = ACTIONS(946), + [anon_sym_out_PLUSerr_GT] = ACTIONS(946), + [anon_sym_o_PLUSe_GT] = ACTIONS(946), + [anon_sym_e_PLUSo_GT] = ACTIONS(946), + [anon_sym_err_GT_GT] = ACTIONS(948), + [anon_sym_out_GT_GT] = ACTIONS(948), + [anon_sym_e_GT_GT] = ACTIONS(948), + [anon_sym_o_GT_GT] = ACTIONS(948), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(948), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(948), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(948), + [aux_sym_unquoted_token1] = ACTIONS(946), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(948), + }, + [1405] = { + [sym_comment] = STATE(1405), + [ts_builtin_sym_end] = ACTIONS(966), + [sym__newline] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_err_GT_PIPE] = ACTIONS(966), + [anon_sym_out_GT_PIPE] = ACTIONS(966), + [anon_sym_e_GT_PIPE] = ACTIONS(966), + [anon_sym_o_GT_PIPE] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_DASH2] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_DOT_DOT] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(4708), + [anon_sym_DOT_DOT2] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ] = ACTIONS(964), + [anon_sym_DOT_DOT_LT] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(966), + [anon_sym_DOT_DOT_LT2] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(964), + [aux_sym__val_number_decimal_token2] = ACTIONS(966), + [aux_sym__val_number_decimal_token3] = ACTIONS(966), + [aux_sym__val_number_decimal_token4] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_0b] = ACTIONS(964), + [anon_sym_0o] = ACTIONS(964), + [anon_sym_0x] = ACTIONS(964), + [sym_val_date] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(964), + [anon_sym_err_GT] = ACTIONS(964), + [anon_sym_out_GT] = ACTIONS(964), + [anon_sym_e_GT] = ACTIONS(964), + [anon_sym_o_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT] = ACTIONS(964), + [anon_sym_err_GT_GT] = ACTIONS(966), + [anon_sym_out_GT_GT] = ACTIONS(966), + [anon_sym_e_GT_GT] = ACTIONS(966), + [anon_sym_o_GT_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(966), + [aux_sym_unquoted_token1] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(966), + }, + [1406] = { + [sym_comment] = STATE(1406), + [ts_builtin_sym_end] = ACTIONS(960), + [sym__newline] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_err_GT_PIPE] = ACTIONS(960), + [anon_sym_out_GT_PIPE] = ACTIONS(960), + [anon_sym_e_GT_PIPE] = ACTIONS(960), + [anon_sym_o_GT_PIPE] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(958), + [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_DASH2] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_DOT_DOT] = ACTIONS(958), + [anon_sym_QMARK2] = ACTIONS(4710), + [anon_sym_DOT_DOT2] = ACTIONS(958), + [anon_sym_DOT_DOT_EQ] = ACTIONS(958), + [anon_sym_DOT_DOT_LT] = ACTIONS(958), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(960), + [anon_sym_DOT_DOT_LT2] = ACTIONS(960), + [anon_sym_null] = ACTIONS(960), + [anon_sym_true] = ACTIONS(960), + [anon_sym_false] = ACTIONS(960), + [aux_sym__val_number_decimal_token1] = ACTIONS(958), + [aux_sym__val_number_decimal_token2] = ACTIONS(960), + [aux_sym__val_number_decimal_token3] = ACTIONS(960), + [aux_sym__val_number_decimal_token4] = ACTIONS(960), + [aux_sym__val_number_token1] = ACTIONS(960), + [aux_sym__val_number_token2] = ACTIONS(960), + [aux_sym__val_number_token3] = ACTIONS(960), + [aux_sym__val_number_token4] = ACTIONS(960), + [aux_sym__val_number_token5] = ACTIONS(960), + [aux_sym__val_number_token6] = ACTIONS(960), + [anon_sym_0b] = ACTIONS(958), + [anon_sym_0o] = ACTIONS(958), + [anon_sym_0x] = ACTIONS(958), + [sym_val_date] = ACTIONS(960), + [anon_sym_DQUOTE] = ACTIONS(960), + [sym__str_single_quotes] = ACTIONS(960), + [sym__str_back_ticks] = ACTIONS(960), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(960), + [anon_sym_DOT2] = ACTIONS(958), + [anon_sym_err_GT] = ACTIONS(958), + [anon_sym_out_GT] = ACTIONS(958), + [anon_sym_e_GT] = ACTIONS(958), + [anon_sym_o_GT] = ACTIONS(958), + [anon_sym_err_PLUSout_GT] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(958), + [anon_sym_o_PLUSe_GT] = ACTIONS(958), + [anon_sym_e_PLUSo_GT] = ACTIONS(958), + [anon_sym_err_GT_GT] = ACTIONS(960), + [anon_sym_out_GT_GT] = ACTIONS(960), + [anon_sym_e_GT_GT] = ACTIONS(960), + [anon_sym_o_GT_GT] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), + [aux_sym_unquoted_token1] = ACTIONS(958), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(960), + }, + [1407] = { + [sym_comment] = STATE(1407), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1760), + [anon_sym_DOT_DOT_LT] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(4712), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1762), + [aux_sym__val_number_token5] = ACTIONS(1762), + [aux_sym__val_number_token6] = ACTIONS(1762), + [anon_sym_0b] = ACTIONS(1760), + [anon_sym_0o] = ACTIONS(1760), + [anon_sym_0x] = ACTIONS(1760), + [sym_val_date] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token1] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1762), + }, + [1408] = { + [sym_cell_path] = STATE(1690), + [sym_path] = STATE(1592), + [sym_comment] = STATE(1408), + [aux_sym_cell_path_repeat1] = STATE(1479), [sym__newline] = ACTIONS(927), [anon_sym_SEMI] = ACTIONS(927), [anon_sym_PIPE] = ACTIONS(927), @@ -214931,7 +208440,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(927), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(927), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(927), - [anon_sym_DOT2] = ACTIONS(4770), + [anon_sym_DOT2] = ACTIONS(4714), [anon_sym_err_GT] = ACTIONS(925), [anon_sym_out_GT] = ACTIONS(925), [anon_sym_e_GT] = ACTIONS(925), @@ -214952,501 +208461,1061 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(927), }, - [1464] = { - [sym_cell_path] = STATE(1825), - [sym_path] = STATE(1450), - [sym_comment] = STATE(1464), - [aux_sym_cell_path_repeat1] = STATE(1340), - [sym__newline] = ACTIONS(1837), - [anon_sym_SEMI] = ACTIONS(1837), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_err_GT_PIPE] = ACTIONS(1837), - [anon_sym_out_GT_PIPE] = ACTIONS(1837), - [anon_sym_e_GT_PIPE] = ACTIONS(1837), - [anon_sym_o_GT_PIPE] = ACTIONS(1837), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1837), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1837), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1837), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_GT2] = ACTIONS(1835), - [anon_sym_DASH2] = ACTIONS(1837), - [anon_sym_in2] = ACTIONS(1837), - [anon_sym_if] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [anon_sym_RBRACE] = ACTIONS(1837), - [anon_sym_EQ_GT] = ACTIONS(1837), - [anon_sym_STAR2] = ACTIONS(1835), - [anon_sym_and2] = ACTIONS(1837), - [anon_sym_xor2] = ACTIONS(1837), - [anon_sym_or2] = ACTIONS(1837), - [anon_sym_not_DASHin2] = ACTIONS(1837), - [anon_sym_has2] = ACTIONS(1837), - [anon_sym_not_DASHhas2] = ACTIONS(1837), - [anon_sym_starts_DASHwith2] = ACTIONS(1837), - [anon_sym_ends_DASHwith2] = ACTIONS(1837), - [anon_sym_EQ_EQ2] = ACTIONS(1837), - [anon_sym_BANG_EQ2] = ACTIONS(1837), - [anon_sym_LT2] = ACTIONS(1835), - [anon_sym_LT_EQ2] = ACTIONS(1837), - [anon_sym_GT_EQ2] = ACTIONS(1837), - [anon_sym_EQ_TILDE2] = ACTIONS(1837), - [anon_sym_BANG_TILDE2] = ACTIONS(1837), - [anon_sym_STAR_STAR2] = ACTIONS(1837), - [anon_sym_PLUS_PLUS2] = ACTIONS(1837), - [anon_sym_SLASH2] = ACTIONS(1835), - [anon_sym_mod2] = ACTIONS(1837), - [anon_sym_SLASH_SLASH2] = ACTIONS(1837), - [anon_sym_PLUS2] = ACTIONS(1835), - [anon_sym_bit_DASHshl2] = ACTIONS(1837), - [anon_sym_bit_DASHshr2] = ACTIONS(1837), - [anon_sym_bit_DASHand2] = ACTIONS(1837), - [anon_sym_bit_DASHxor2] = ACTIONS(1837), - [anon_sym_bit_DASHor2] = ACTIONS(1837), - [anon_sym_DOT2] = ACTIONS(4772), - [anon_sym_err_GT] = ACTIONS(1835), - [anon_sym_out_GT] = ACTIONS(1835), - [anon_sym_e_GT] = ACTIONS(1835), - [anon_sym_o_GT] = ACTIONS(1835), - [anon_sym_err_PLUSout_GT] = ACTIONS(1835), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1835), - [anon_sym_o_PLUSe_GT] = ACTIONS(1835), - [anon_sym_e_PLUSo_GT] = ACTIONS(1835), - [anon_sym_err_GT_GT] = ACTIONS(1837), - [anon_sym_out_GT_GT] = ACTIONS(1837), - [anon_sym_e_GT_GT] = ACTIONS(1837), - [anon_sym_o_GT_GT] = ACTIONS(1837), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1837), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1837), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1837), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1837), + [1409] = { + [sym_cell_path] = STATE(1764), + [sym_path] = STATE(1592), + [sym_comment] = STATE(1409), + [aux_sym_cell_path_repeat1] = STATE(1479), + [sym__newline] = ACTIONS(1831), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_PIPE] = ACTIONS(1831), + [anon_sym_err_GT_PIPE] = ACTIONS(1831), + [anon_sym_out_GT_PIPE] = ACTIONS(1831), + [anon_sym_e_GT_PIPE] = ACTIONS(1831), + [anon_sym_o_GT_PIPE] = ACTIONS(1831), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1831), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1831), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1831), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_RPAREN] = ACTIONS(1831), + [anon_sym_DOLLAR] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1831), + [anon_sym_DASH2] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1831), + [anon_sym_DOT_DOT] = ACTIONS(1829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1831), + [anon_sym_DOT_DOT_LT] = ACTIONS(1831), + [anon_sym_null] = ACTIONS(1831), + [anon_sym_true] = ACTIONS(1831), + [anon_sym_false] = ACTIONS(1831), + [aux_sym__val_number_decimal_token1] = ACTIONS(1829), + [aux_sym__val_number_decimal_token2] = ACTIONS(1831), + [aux_sym__val_number_decimal_token3] = ACTIONS(1831), + [aux_sym__val_number_decimal_token4] = ACTIONS(1831), + [aux_sym__val_number_token1] = ACTIONS(1831), + [aux_sym__val_number_token2] = ACTIONS(1831), + [aux_sym__val_number_token3] = ACTIONS(1831), + [aux_sym__val_number_token4] = ACTIONS(1831), + [aux_sym__val_number_token5] = ACTIONS(1831), + [aux_sym__val_number_token6] = ACTIONS(1831), + [anon_sym_0b] = ACTIONS(1829), + [anon_sym_0o] = ACTIONS(1829), + [anon_sym_0x] = ACTIONS(1829), + [sym_val_date] = ACTIONS(1831), + [anon_sym_DQUOTE] = ACTIONS(1831), + [sym__str_single_quotes] = ACTIONS(1831), + [sym__str_back_ticks] = ACTIONS(1831), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1831), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1831), + [anon_sym_DOT2] = ACTIONS(4714), + [anon_sym_err_GT] = ACTIONS(1829), + [anon_sym_out_GT] = ACTIONS(1829), + [anon_sym_e_GT] = ACTIONS(1829), + [anon_sym_o_GT] = ACTIONS(1829), + [anon_sym_err_PLUSout_GT] = ACTIONS(1829), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1829), + [anon_sym_o_PLUSe_GT] = ACTIONS(1829), + [anon_sym_e_PLUSo_GT] = ACTIONS(1829), + [anon_sym_err_GT_GT] = ACTIONS(1831), + [anon_sym_out_GT_GT] = ACTIONS(1831), + [anon_sym_e_GT_GT] = ACTIONS(1831), + [anon_sym_o_GT_GT] = ACTIONS(1831), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1831), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1831), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1831), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1831), + [aux_sym_unquoted_token1] = ACTIONS(1829), [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1831), }, - [1465] = { - [sym_cell_path] = STATE(1826), - [sym_path] = STATE(1450), - [sym_comment] = STATE(1465), - [aux_sym_cell_path_repeat1] = STATE(1340), - [sym__newline] = ACTIONS(1849), - [anon_sym_SEMI] = ACTIONS(1849), - [anon_sym_PIPE] = ACTIONS(1849), - [anon_sym_err_GT_PIPE] = ACTIONS(1849), - [anon_sym_out_GT_PIPE] = ACTIONS(1849), - [anon_sym_e_GT_PIPE] = ACTIONS(1849), - [anon_sym_o_GT_PIPE] = ACTIONS(1849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1849), - [anon_sym_RPAREN] = ACTIONS(1849), - [anon_sym_GT2] = ACTIONS(1847), - [anon_sym_DASH2] = ACTIONS(1849), - [anon_sym_in2] = ACTIONS(1849), - [anon_sym_if] = ACTIONS(1849), - [anon_sym_LBRACE] = ACTIONS(1849), - [anon_sym_RBRACE] = ACTIONS(1849), - [anon_sym_EQ_GT] = ACTIONS(1849), - [anon_sym_STAR2] = ACTIONS(1847), - [anon_sym_and2] = ACTIONS(1849), - [anon_sym_xor2] = ACTIONS(1849), - [anon_sym_or2] = ACTIONS(1849), - [anon_sym_not_DASHin2] = ACTIONS(1849), - [anon_sym_has2] = ACTIONS(1849), - [anon_sym_not_DASHhas2] = ACTIONS(1849), - [anon_sym_starts_DASHwith2] = ACTIONS(1849), - [anon_sym_ends_DASHwith2] = ACTIONS(1849), - [anon_sym_EQ_EQ2] = ACTIONS(1849), - [anon_sym_BANG_EQ2] = ACTIONS(1849), - [anon_sym_LT2] = ACTIONS(1847), - [anon_sym_LT_EQ2] = ACTIONS(1849), - [anon_sym_GT_EQ2] = ACTIONS(1849), - [anon_sym_EQ_TILDE2] = ACTIONS(1849), - [anon_sym_BANG_TILDE2] = ACTIONS(1849), - [anon_sym_STAR_STAR2] = ACTIONS(1849), - [anon_sym_PLUS_PLUS2] = ACTIONS(1849), - [anon_sym_SLASH2] = ACTIONS(1847), - [anon_sym_mod2] = ACTIONS(1849), - [anon_sym_SLASH_SLASH2] = ACTIONS(1849), - [anon_sym_PLUS2] = ACTIONS(1847), - [anon_sym_bit_DASHshl2] = ACTIONS(1849), - [anon_sym_bit_DASHshr2] = ACTIONS(1849), - [anon_sym_bit_DASHand2] = ACTIONS(1849), - [anon_sym_bit_DASHxor2] = ACTIONS(1849), - [anon_sym_bit_DASHor2] = ACTIONS(1849), - [anon_sym_DOT2] = ACTIONS(4772), - [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(1849), - [anon_sym_out_GT_GT] = ACTIONS(1849), - [anon_sym_e_GT_GT] = ACTIONS(1849), - [anon_sym_o_GT_GT] = ACTIONS(1849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1849), + [1410] = { + [sym_cell_path] = STATE(1831), + [sym_path] = STATE(1592), + [sym_comment] = STATE(1410), + [aux_sym_cell_path_repeat1] = STATE(1479), + [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_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_DOT2] = ACTIONS(4714), + [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(245), + [sym_raw_string_begin] = ACTIONS(1885), }, - [1466] = { - [sym_cell_path] = STATE(1828), - [sym_path] = STATE(1450), - [sym_comment] = STATE(1466), - [aux_sym_cell_path_repeat1] = STATE(1340), - [sym__newline] = ACTIONS(1853), - [anon_sym_SEMI] = ACTIONS(1853), - [anon_sym_PIPE] = ACTIONS(1853), - [anon_sym_err_GT_PIPE] = ACTIONS(1853), - [anon_sym_out_GT_PIPE] = ACTIONS(1853), - [anon_sym_e_GT_PIPE] = ACTIONS(1853), - [anon_sym_o_GT_PIPE] = ACTIONS(1853), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1853), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1853), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1853), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1853), - [anon_sym_RPAREN] = ACTIONS(1853), - [anon_sym_GT2] = ACTIONS(1851), - [anon_sym_DASH2] = ACTIONS(1853), - [anon_sym_in2] = ACTIONS(1853), - [anon_sym_if] = ACTIONS(1853), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_RBRACE] = ACTIONS(1853), - [anon_sym_EQ_GT] = ACTIONS(1853), - [anon_sym_STAR2] = ACTIONS(1851), - [anon_sym_and2] = ACTIONS(1853), - [anon_sym_xor2] = ACTIONS(1853), - [anon_sym_or2] = ACTIONS(1853), - [anon_sym_not_DASHin2] = ACTIONS(1853), - [anon_sym_has2] = ACTIONS(1853), - [anon_sym_not_DASHhas2] = ACTIONS(1853), - [anon_sym_starts_DASHwith2] = ACTIONS(1853), - [anon_sym_ends_DASHwith2] = ACTIONS(1853), - [anon_sym_EQ_EQ2] = ACTIONS(1853), - [anon_sym_BANG_EQ2] = ACTIONS(1853), - [anon_sym_LT2] = ACTIONS(1851), - [anon_sym_LT_EQ2] = ACTIONS(1853), - [anon_sym_GT_EQ2] = ACTIONS(1853), - [anon_sym_EQ_TILDE2] = ACTIONS(1853), - [anon_sym_BANG_TILDE2] = ACTIONS(1853), - [anon_sym_STAR_STAR2] = ACTIONS(1853), - [anon_sym_PLUS_PLUS2] = ACTIONS(1853), - [anon_sym_SLASH2] = ACTIONS(1851), - [anon_sym_mod2] = ACTIONS(1853), - [anon_sym_SLASH_SLASH2] = ACTIONS(1853), - [anon_sym_PLUS2] = ACTIONS(1851), - [anon_sym_bit_DASHshl2] = ACTIONS(1853), - [anon_sym_bit_DASHshr2] = ACTIONS(1853), - [anon_sym_bit_DASHand2] = ACTIONS(1853), - [anon_sym_bit_DASHxor2] = ACTIONS(1853), - [anon_sym_bit_DASHor2] = ACTIONS(1853), - [anon_sym_DOT2] = ACTIONS(4772), - [anon_sym_err_GT] = ACTIONS(1851), - [anon_sym_out_GT] = ACTIONS(1851), - [anon_sym_e_GT] = ACTIONS(1851), - [anon_sym_o_GT] = ACTIONS(1851), - [anon_sym_err_PLUSout_GT] = ACTIONS(1851), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1851), - [anon_sym_o_PLUSe_GT] = ACTIONS(1851), - [anon_sym_e_PLUSo_GT] = ACTIONS(1851), - [anon_sym_err_GT_GT] = ACTIONS(1853), - [anon_sym_out_GT_GT] = ACTIONS(1853), - [anon_sym_e_GT_GT] = ACTIONS(1853), - [anon_sym_o_GT_GT] = ACTIONS(1853), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1853), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1853), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1853), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1853), + [1411] = { + [sym_comment] = STATE(1411), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1701), + [anon_sym_DOT_DOT_LT] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [1412] = { + [sym_comment] = STATE(1412), + [ts_builtin_sym_end] = ACTIONS(1581), + [sym__newline] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1581), + [anon_sym_PIPE] = ACTIONS(1581), + [anon_sym_err_GT_PIPE] = ACTIONS(1581), + [anon_sym_out_GT_PIPE] = ACTIONS(1581), + [anon_sym_e_GT_PIPE] = ACTIONS(1581), + [anon_sym_o_GT_PIPE] = ACTIONS(1581), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1581), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1581), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1581), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1581), + [anon_sym_GT2] = ACTIONS(1579), + [anon_sym_DASH2] = ACTIONS(1581), + [anon_sym_in2] = ACTIONS(1581), + [anon_sym_STAR2] = ACTIONS(1579), + [anon_sym_and2] = ACTIONS(1581), + [anon_sym_xor2] = ACTIONS(1581), + [anon_sym_or2] = ACTIONS(1581), + [anon_sym_not_DASHin2] = ACTIONS(1581), + [anon_sym_has2] = ACTIONS(1581), + [anon_sym_not_DASHhas2] = ACTIONS(1581), + [anon_sym_starts_DASHwith2] = ACTIONS(1581), + [anon_sym_ends_DASHwith2] = ACTIONS(1581), + [anon_sym_EQ_EQ2] = ACTIONS(1581), + [anon_sym_BANG_EQ2] = ACTIONS(1581), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ2] = ACTIONS(1581), + [anon_sym_GT_EQ2] = ACTIONS(1581), + [anon_sym_EQ_TILDE2] = ACTIONS(1581), + [anon_sym_BANG_TILDE2] = ACTIONS(1581), + [anon_sym_LPAREN2] = ACTIONS(1581), + [anon_sym_STAR_STAR2] = ACTIONS(1581), + [anon_sym_PLUS_PLUS2] = ACTIONS(1581), + [anon_sym_SLASH2] = ACTIONS(1579), + [anon_sym_mod2] = ACTIONS(1581), + [anon_sym_SLASH_SLASH2] = ACTIONS(1581), + [anon_sym_PLUS2] = ACTIONS(1579), + [anon_sym_bit_DASHshl2] = ACTIONS(1581), + [anon_sym_bit_DASHshr2] = ACTIONS(1581), + [anon_sym_bit_DASHand2] = ACTIONS(1581), + [anon_sym_bit_DASHxor2] = ACTIONS(1581), + [anon_sym_bit_DASHor2] = ACTIONS(1581), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [aux_sym__immediate_decimal_token2] = ACTIONS(4716), + [sym_filesize_unit] = ACTIONS(1579), + [sym_duration_unit] = ACTIONS(1581), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [anon_sym_err_GT_GT] = ACTIONS(1581), + [anon_sym_out_GT_GT] = ACTIONS(1581), + [anon_sym_e_GT_GT] = ACTIONS(1581), + [anon_sym_o_GT_GT] = ACTIONS(1581), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1581), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1581), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1581), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1581), + [aux_sym_unquoted_token2] = ACTIONS(1579), [anon_sym_POUND] = ACTIONS(245), }, - [1467] = { - [sym_cell_path] = STATE(1829), - [sym_path] = STATE(1450), - [sym_comment] = STATE(1467), - [aux_sym_cell_path_repeat1] = STATE(1340), - [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_if] = 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_has2] = ACTIONS(1861), - [anon_sym_not_DASHhas2] = 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_DOT2] = ACTIONS(4772), - [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), + [1413] = { + [sym_comment] = STATE(1413), + [sym__newline] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_err_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_GT_PIPE] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_RPAREN] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1688), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_LPAREN2] = ACTIONS(1688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT] = ACTIONS(1688), + [aux_sym__immediate_decimal_token1] = ACTIONS(4718), + [aux_sym__immediate_decimal_token2] = ACTIONS(4720), + [anon_sym_null] = ACTIONS(1688), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1688), + [aux_sym__val_number_decimal_token3] = ACTIONS(1688), + [aux_sym__val_number_decimal_token4] = ACTIONS(1688), + [aux_sym__val_number_token1] = ACTIONS(1688), + [aux_sym__val_number_token2] = ACTIONS(1688), + [aux_sym__val_number_token3] = ACTIONS(1688), + [aux_sym__val_number_token4] = ACTIONS(1688), + [aux_sym__val_number_token5] = ACTIONS(1688), + [aux_sym__val_number_token6] = ACTIONS(1688), + [anon_sym_0b] = ACTIONS(1686), + [anon_sym_0o] = ACTIONS(1686), + [anon_sym_0x] = ACTIONS(1686), + [sym_val_date] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [sym__str_single_quotes] = ACTIONS(1688), + [sym__str_back_ticks] = ACTIONS(1688), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1688), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1688), + [anon_sym_err_GT] = ACTIONS(1686), + [anon_sym_out_GT] = ACTIONS(1686), + [anon_sym_e_GT] = ACTIONS(1686), + [anon_sym_o_GT] = ACTIONS(1686), + [anon_sym_err_PLUSout_GT] = ACTIONS(1686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1686), + [anon_sym_o_PLUSe_GT] = ACTIONS(1686), + [anon_sym_e_PLUSo_GT] = ACTIONS(1686), + [anon_sym_err_GT_GT] = ACTIONS(1688), + [anon_sym_out_GT_GT] = ACTIONS(1688), + [anon_sym_e_GT_GT] = ACTIONS(1688), + [anon_sym_o_GT_GT] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1688), + [aux_sym_unquoted_token1] = ACTIONS(1686), + [aux_sym_unquoted_token2] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1688), + }, + [1414] = { + [sym_cell_path] = STATE(1775), + [sym_path] = STATE(1374), + [sym_comment] = STATE(1414), + [aux_sym_cell_path_repeat1] = STATE(1284), + [sym__newline] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1895), + [anon_sym_err_GT_PIPE] = ACTIONS(1895), + [anon_sym_out_GT_PIPE] = ACTIONS(1895), + [anon_sym_e_GT_PIPE] = ACTIONS(1895), + [anon_sym_o_GT_PIPE] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1895), + [anon_sym_RPAREN] = ACTIONS(1895), + [anon_sym_GT2] = ACTIONS(1893), + [anon_sym_DASH2] = ACTIONS(1895), + [anon_sym_in2] = ACTIONS(1895), + [anon_sym_if] = ACTIONS(1895), + [anon_sym_LBRACE] = ACTIONS(1895), + [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_EQ_GT] = ACTIONS(1895), + [anon_sym_STAR2] = ACTIONS(1893), + [anon_sym_and2] = ACTIONS(1895), + [anon_sym_xor2] = ACTIONS(1895), + [anon_sym_or2] = ACTIONS(1895), + [anon_sym_not_DASHin2] = ACTIONS(1895), + [anon_sym_has2] = ACTIONS(1895), + [anon_sym_not_DASHhas2] = ACTIONS(1895), + [anon_sym_starts_DASHwith2] = ACTIONS(1895), + [anon_sym_ends_DASHwith2] = ACTIONS(1895), + [anon_sym_EQ_EQ2] = ACTIONS(1895), + [anon_sym_BANG_EQ2] = ACTIONS(1895), + [anon_sym_LT2] = ACTIONS(1893), + [anon_sym_LT_EQ2] = ACTIONS(1895), + [anon_sym_GT_EQ2] = ACTIONS(1895), + [anon_sym_EQ_TILDE2] = ACTIONS(1895), + [anon_sym_BANG_TILDE2] = ACTIONS(1895), + [anon_sym_STAR_STAR2] = ACTIONS(1895), + [anon_sym_PLUS_PLUS2] = ACTIONS(1895), + [anon_sym_SLASH2] = ACTIONS(1893), + [anon_sym_mod2] = ACTIONS(1895), + [anon_sym_SLASH_SLASH2] = ACTIONS(1895), + [anon_sym_PLUS2] = ACTIONS(1893), + [anon_sym_bit_DASHshl2] = ACTIONS(1895), + [anon_sym_bit_DASHshr2] = ACTIONS(1895), + [anon_sym_bit_DASHand2] = ACTIONS(1895), + [anon_sym_bit_DASHxor2] = ACTIONS(1895), + [anon_sym_bit_DASHor2] = ACTIONS(1895), + [anon_sym_DOT2] = ACTIONS(4722), + [anon_sym_err_GT] = ACTIONS(1893), + [anon_sym_out_GT] = ACTIONS(1893), + [anon_sym_e_GT] = ACTIONS(1893), + [anon_sym_o_GT] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT] = ACTIONS(1893), + [anon_sym_err_GT_GT] = ACTIONS(1895), + [anon_sym_out_GT_GT] = ACTIONS(1895), + [anon_sym_e_GT_GT] = ACTIONS(1895), + [anon_sym_o_GT_GT] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1895), [anon_sym_POUND] = ACTIONS(245), }, - [1468] = { - [sym_cell_path] = STATE(1831), - [sym_path] = STATE(1450), - [sym_comment] = STATE(1468), - [aux_sym_cell_path_repeat1] = STATE(1340), - [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_if] = 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_has2] = ACTIONS(1865), - [anon_sym_not_DASHhas2] = 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_DOT2] = ACTIONS(4772), - [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), + [1415] = { + [sym__expr_parenthesized_immediate] = STATE(6963), + [sym_comment] = STATE(1415), + [ts_builtin_sym_end] = ACTIONS(1628), + [sym__newline] = ACTIONS(1628), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1628), + [anon_sym_err_GT_PIPE] = ACTIONS(1628), + [anon_sym_out_GT_PIPE] = ACTIONS(1628), + [anon_sym_e_GT_PIPE] = ACTIONS(1628), + [anon_sym_o_GT_PIPE] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1628), + [anon_sym_GT2] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1628), + [anon_sym_in2] = ACTIONS(1628), + [anon_sym_STAR2] = ACTIONS(1616), + [anon_sym_and2] = ACTIONS(1628), + [anon_sym_xor2] = ACTIONS(1628), + [anon_sym_or2] = ACTIONS(1628), + [anon_sym_not_DASHin2] = ACTIONS(1628), + [anon_sym_has2] = ACTIONS(1628), + [anon_sym_not_DASHhas2] = ACTIONS(1628), + [anon_sym_starts_DASHwith2] = ACTIONS(1628), + [anon_sym_ends_DASHwith2] = ACTIONS(1628), + [anon_sym_EQ_EQ2] = ACTIONS(1628), + [anon_sym_BANG_EQ2] = ACTIONS(1628), + [anon_sym_LT2] = ACTIONS(1616), + [anon_sym_LT_EQ2] = ACTIONS(1628), + [anon_sym_GT_EQ2] = ACTIONS(1628), + [anon_sym_EQ_TILDE2] = ACTIONS(1628), + [anon_sym_BANG_TILDE2] = ACTIONS(1628), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_STAR_STAR2] = ACTIONS(1628), + [anon_sym_PLUS_PLUS2] = ACTIONS(1628), + [anon_sym_SLASH2] = ACTIONS(1616), + [anon_sym_mod2] = ACTIONS(1628), + [anon_sym_SLASH_SLASH2] = ACTIONS(1628), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_bit_DASHshl2] = ACTIONS(1628), + [anon_sym_bit_DASHshr2] = ACTIONS(1628), + [anon_sym_bit_DASHand2] = ACTIONS(1628), + [anon_sym_bit_DASHxor2] = ACTIONS(1628), + [anon_sym_bit_DASHor2] = ACTIONS(1628), + [anon_sym_DOT_DOT2] = ACTIONS(4724), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4726), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4726), + [sym_filesize_unit] = ACTIONS(4728), + [sym_duration_unit] = ACTIONS(4730), + [anon_sym_err_GT] = ACTIONS(1616), + [anon_sym_out_GT] = ACTIONS(1616), + [anon_sym_e_GT] = ACTIONS(1616), + [anon_sym_o_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT] = ACTIONS(1616), + [anon_sym_err_GT_GT] = ACTIONS(1628), + [anon_sym_out_GT_GT] = ACTIONS(1628), + [anon_sym_e_GT_GT] = ACTIONS(1628), + [anon_sym_o_GT_GT] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1628), + [aux_sym_unquoted_token2] = ACTIONS(4732), [anon_sym_POUND] = ACTIONS(245), }, - [1469] = { - [sym_cell_path] = STATE(1832), - [sym_path] = STATE(1450), - [sym_comment] = STATE(1469), - [aux_sym_cell_path_repeat1] = STATE(1340), - [sym__newline] = ACTIONS(1877), - [anon_sym_SEMI] = ACTIONS(1877), - [anon_sym_PIPE] = ACTIONS(1877), - [anon_sym_err_GT_PIPE] = ACTIONS(1877), - [anon_sym_out_GT_PIPE] = ACTIONS(1877), - [anon_sym_e_GT_PIPE] = ACTIONS(1877), - [anon_sym_o_GT_PIPE] = ACTIONS(1877), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1877), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1877), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1877), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1877), - [anon_sym_RPAREN] = ACTIONS(1877), - [anon_sym_GT2] = ACTIONS(1875), - [anon_sym_DASH2] = ACTIONS(1877), - [anon_sym_in2] = ACTIONS(1877), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_LBRACE] = ACTIONS(1877), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym_EQ_GT] = ACTIONS(1877), - [anon_sym_STAR2] = ACTIONS(1875), - [anon_sym_and2] = ACTIONS(1877), - [anon_sym_xor2] = ACTIONS(1877), - [anon_sym_or2] = ACTIONS(1877), - [anon_sym_not_DASHin2] = ACTIONS(1877), - [anon_sym_has2] = ACTIONS(1877), - [anon_sym_not_DASHhas2] = ACTIONS(1877), - [anon_sym_starts_DASHwith2] = ACTIONS(1877), - [anon_sym_ends_DASHwith2] = ACTIONS(1877), - [anon_sym_EQ_EQ2] = ACTIONS(1877), - [anon_sym_BANG_EQ2] = ACTIONS(1877), - [anon_sym_LT2] = ACTIONS(1875), - [anon_sym_LT_EQ2] = ACTIONS(1877), - [anon_sym_GT_EQ2] = ACTIONS(1877), - [anon_sym_EQ_TILDE2] = ACTIONS(1877), - [anon_sym_BANG_TILDE2] = ACTIONS(1877), - [anon_sym_STAR_STAR2] = ACTIONS(1877), - [anon_sym_PLUS_PLUS2] = ACTIONS(1877), - [anon_sym_SLASH2] = ACTIONS(1875), - [anon_sym_mod2] = ACTIONS(1877), - [anon_sym_SLASH_SLASH2] = ACTIONS(1877), - [anon_sym_PLUS2] = ACTIONS(1875), - [anon_sym_bit_DASHshl2] = ACTIONS(1877), - [anon_sym_bit_DASHshr2] = ACTIONS(1877), - [anon_sym_bit_DASHand2] = ACTIONS(1877), - [anon_sym_bit_DASHxor2] = ACTIONS(1877), - [anon_sym_bit_DASHor2] = ACTIONS(1877), - [anon_sym_DOT2] = ACTIONS(4772), - [anon_sym_err_GT] = ACTIONS(1875), - [anon_sym_out_GT] = ACTIONS(1875), - [anon_sym_e_GT] = ACTIONS(1875), - [anon_sym_o_GT] = ACTIONS(1875), - [anon_sym_err_PLUSout_GT] = ACTIONS(1875), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1875), - [anon_sym_o_PLUSe_GT] = ACTIONS(1875), - [anon_sym_e_PLUSo_GT] = ACTIONS(1875), - [anon_sym_err_GT_GT] = ACTIONS(1877), - [anon_sym_out_GT_GT] = ACTIONS(1877), - [anon_sym_e_GT_GT] = ACTIONS(1877), - [anon_sym_o_GT_GT] = ACTIONS(1877), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1877), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1877), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1877), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1877), + [1416] = { + [sym_cell_path] = STATE(1807), + [sym_path] = STATE(1374), + [sym_comment] = STATE(1416), + [aux_sym_cell_path_repeat1] = STATE(1284), + [sym__newline] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1825), + [anon_sym_PIPE] = ACTIONS(1825), + [anon_sym_err_GT_PIPE] = ACTIONS(1825), + [anon_sym_out_GT_PIPE] = ACTIONS(1825), + [anon_sym_e_GT_PIPE] = ACTIONS(1825), + [anon_sym_o_GT_PIPE] = ACTIONS(1825), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1825), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1825), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1825), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1825), + [anon_sym_RPAREN] = ACTIONS(1825), + [anon_sym_GT2] = ACTIONS(1823), + [anon_sym_DASH2] = ACTIONS(1825), + [anon_sym_in2] = ACTIONS(1825), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1825), + [anon_sym_RBRACE] = ACTIONS(1825), + [anon_sym_EQ_GT] = ACTIONS(1825), + [anon_sym_STAR2] = ACTIONS(1823), + [anon_sym_and2] = ACTIONS(1825), + [anon_sym_xor2] = ACTIONS(1825), + [anon_sym_or2] = ACTIONS(1825), + [anon_sym_not_DASHin2] = ACTIONS(1825), + [anon_sym_has2] = ACTIONS(1825), + [anon_sym_not_DASHhas2] = ACTIONS(1825), + [anon_sym_starts_DASHwith2] = ACTIONS(1825), + [anon_sym_ends_DASHwith2] = ACTIONS(1825), + [anon_sym_EQ_EQ2] = ACTIONS(1825), + [anon_sym_BANG_EQ2] = ACTIONS(1825), + [anon_sym_LT2] = ACTIONS(1823), + [anon_sym_LT_EQ2] = ACTIONS(1825), + [anon_sym_GT_EQ2] = ACTIONS(1825), + [anon_sym_EQ_TILDE2] = ACTIONS(1825), + [anon_sym_BANG_TILDE2] = ACTIONS(1825), + [anon_sym_STAR_STAR2] = ACTIONS(1825), + [anon_sym_PLUS_PLUS2] = ACTIONS(1825), + [anon_sym_SLASH2] = ACTIONS(1823), + [anon_sym_mod2] = ACTIONS(1825), + [anon_sym_SLASH_SLASH2] = ACTIONS(1825), + [anon_sym_PLUS2] = ACTIONS(1823), + [anon_sym_bit_DASHshl2] = ACTIONS(1825), + [anon_sym_bit_DASHshr2] = ACTIONS(1825), + [anon_sym_bit_DASHand2] = ACTIONS(1825), + [anon_sym_bit_DASHxor2] = ACTIONS(1825), + [anon_sym_bit_DASHor2] = ACTIONS(1825), + [anon_sym_DOT2] = ACTIONS(4722), + [anon_sym_err_GT] = ACTIONS(1823), + [anon_sym_out_GT] = ACTIONS(1823), + [anon_sym_e_GT] = ACTIONS(1823), + [anon_sym_o_GT] = ACTIONS(1823), + [anon_sym_err_PLUSout_GT] = ACTIONS(1823), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1823), + [anon_sym_o_PLUSe_GT] = ACTIONS(1823), + [anon_sym_e_PLUSo_GT] = ACTIONS(1823), + [anon_sym_err_GT_GT] = ACTIONS(1825), + [anon_sym_out_GT_GT] = ACTIONS(1825), + [anon_sym_e_GT_GT] = ACTIONS(1825), + [anon_sym_o_GT_GT] = ACTIONS(1825), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1825), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1825), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1825), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1825), [anon_sym_POUND] = ACTIONS(245), }, - [1470] = { - [sym_comment] = STATE(1470), - [sym__newline] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_err_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_GT_PIPE] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_RPAREN] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DASH2] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT] = ACTIONS(1650), - [aux_sym__immediate_decimal_token1] = ACTIONS(4778), - [aux_sym__immediate_decimal_token2] = ACTIONS(4780), - [anon_sym_null] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [aux_sym__val_number_token4] = ACTIONS(1650), - [aux_sym__val_number_token5] = ACTIONS(1650), - [aux_sym__val_number_token6] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1648), - [anon_sym_0o] = ACTIONS(1648), - [anon_sym_0x] = ACTIONS(1648), - [sym_val_date] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_err_GT] = ACTIONS(1648), - [anon_sym_out_GT] = ACTIONS(1648), - [anon_sym_e_GT] = ACTIONS(1648), - [anon_sym_o_GT] = ACTIONS(1648), - [anon_sym_err_PLUSout_GT] = ACTIONS(1648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), - [anon_sym_o_PLUSe_GT] = ACTIONS(1648), - [anon_sym_e_PLUSo_GT] = ACTIONS(1648), - [anon_sym_err_GT_GT] = ACTIONS(1650), - [anon_sym_out_GT_GT] = ACTIONS(1650), - [anon_sym_e_GT_GT] = ACTIONS(1650), - [anon_sym_o_GT_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), - [aux_sym_unquoted_token1] = ACTIONS(1648), - [aux_sym_unquoted_token2] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1650), + [1417] = { + [sym_cell_path] = STATE(1762), + [sym_path] = STATE(1592), + [sym_comment] = STATE(1417), + [aux_sym_cell_path_repeat1] = STATE(1479), + [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_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_DOT2] = ACTIONS(4714), + [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(245), + [sym_raw_string_begin] = ACTIONS(1873), }, - [1471] = { - [sym_cell_path] = STATE(1834), - [sym_path] = STATE(1450), - [sym_comment] = STATE(1471), - [aux_sym_cell_path_repeat1] = STATE(1340), + [1418] = { + [sym_comment] = STATE(1418), + [ts_builtin_sym_end] = ACTIONS(1813), + [sym__newline] = ACTIONS(1813), + [anon_sym_SEMI] = ACTIONS(1813), + [anon_sym_PIPE] = ACTIONS(1813), + [anon_sym_err_GT_PIPE] = ACTIONS(1813), + [anon_sym_out_GT_PIPE] = ACTIONS(1813), + [anon_sym_e_GT_PIPE] = ACTIONS(1813), + [anon_sym_o_GT_PIPE] = ACTIONS(1813), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1813), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1813), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1813), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_LPAREN] = ACTIONS(1805), + [anon_sym_DOLLAR] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1813), + [anon_sym_DASH2] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1813), + [anon_sym_DOT_DOT] = ACTIONS(1805), + [anon_sym_LPAREN2] = ACTIONS(1807), + [anon_sym_DOT_DOT2] = ACTIONS(4734), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1805), + [anon_sym_DOT_DOT_LT] = ACTIONS(1805), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4736), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4736), + [anon_sym_null] = ACTIONS(1813), + [anon_sym_true] = ACTIONS(1813), + [anon_sym_false] = ACTIONS(1813), + [aux_sym__val_number_decimal_token1] = ACTIONS(1805), + [aux_sym__val_number_decimal_token2] = ACTIONS(1813), + [aux_sym__val_number_decimal_token3] = ACTIONS(1813), + [aux_sym__val_number_decimal_token4] = ACTIONS(1813), + [aux_sym__val_number_token1] = ACTIONS(1813), + [aux_sym__val_number_token2] = ACTIONS(1813), + [aux_sym__val_number_token3] = ACTIONS(1813), + [aux_sym__val_number_token4] = ACTIONS(1813), + [aux_sym__val_number_token5] = ACTIONS(1813), + [aux_sym__val_number_token6] = ACTIONS(1813), + [anon_sym_0b] = ACTIONS(1805), + [anon_sym_0o] = ACTIONS(1805), + [anon_sym_0x] = ACTIONS(1805), + [sym_val_date] = ACTIONS(1813), + [anon_sym_DQUOTE] = ACTIONS(1813), + [sym__str_single_quotes] = ACTIONS(1813), + [sym__str_back_ticks] = ACTIONS(1813), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1813), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1813), + [anon_sym_err_GT] = ACTIONS(1805), + [anon_sym_out_GT] = ACTIONS(1805), + [anon_sym_e_GT] = ACTIONS(1805), + [anon_sym_o_GT] = ACTIONS(1805), + [anon_sym_err_PLUSout_GT] = ACTIONS(1805), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1805), + [anon_sym_o_PLUSe_GT] = ACTIONS(1805), + [anon_sym_e_PLUSo_GT] = ACTIONS(1805), + [anon_sym_err_GT_GT] = ACTIONS(1813), + [anon_sym_out_GT_GT] = ACTIONS(1813), + [anon_sym_e_GT_GT] = ACTIONS(1813), + [anon_sym_o_GT_GT] = ACTIONS(1813), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1813), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1813), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1813), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1813), + [aux_sym_unquoted_token1] = ACTIONS(1805), + [aux_sym_unquoted_token2] = ACTIONS(1447), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1813), + }, + [1419] = { + [sym_comment] = STATE(1419), + [ts_builtin_sym_end] = ACTIONS(1688), + [sym__newline] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_err_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_GT_PIPE] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1688), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_LPAREN2] = ACTIONS(1688), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1686), + [anon_sym_DOT_DOT_LT] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [anon_sym_null] = ACTIONS(1688), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1688), + [aux_sym__val_number_decimal_token3] = ACTIONS(1688), + [aux_sym__val_number_decimal_token4] = ACTIONS(1688), + [aux_sym__val_number_token1] = ACTIONS(1688), + [aux_sym__val_number_token2] = ACTIONS(1688), + [aux_sym__val_number_token3] = ACTIONS(1688), + [aux_sym__val_number_token4] = ACTIONS(1688), + [aux_sym__val_number_token5] = ACTIONS(1688), + [aux_sym__val_number_token6] = ACTIONS(1688), + [anon_sym_0b] = ACTIONS(1686), + [anon_sym_0o] = ACTIONS(1686), + [anon_sym_0x] = ACTIONS(1686), + [sym_val_date] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [sym__str_single_quotes] = ACTIONS(1688), + [sym__str_back_ticks] = ACTIONS(1688), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1688), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1688), + [anon_sym_err_GT] = ACTIONS(1686), + [anon_sym_out_GT] = ACTIONS(1686), + [anon_sym_e_GT] = ACTIONS(1686), + [anon_sym_o_GT] = ACTIONS(1686), + [anon_sym_err_PLUSout_GT] = ACTIONS(1686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1686), + [anon_sym_o_PLUSe_GT] = ACTIONS(1686), + [anon_sym_e_PLUSo_GT] = ACTIONS(1686), + [anon_sym_err_GT_GT] = ACTIONS(1688), + [anon_sym_out_GT_GT] = ACTIONS(1688), + [anon_sym_e_GT_GT] = ACTIONS(1688), + [anon_sym_o_GT_GT] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1688), + [aux_sym_unquoted_token1] = ACTIONS(1686), + [aux_sym_unquoted_token2] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1688), + }, + [1420] = { + [sym_cell_path] = STATE(1708), + [sym_path] = STATE(1592), + [sym_comment] = STATE(1420), + [aux_sym_cell_path_repeat1] = STATE(1479), + [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_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_DOT2] = ACTIONS(4714), + [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(245), + [sym_raw_string_begin] = ACTIONS(1917), + }, + [1421] = { + [sym_comment] = STATE(1421), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_DOT] = ACTIONS(4738), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4740), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [1422] = { + [sym_comment] = STATE(1422), + [ts_builtin_sym_end] = ACTIONS(1762), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1760), + [anon_sym_DOT_DOT_LT] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1762), + [aux_sym__val_number_token5] = ACTIONS(1762), + [aux_sym__val_number_token6] = ACTIONS(1762), + [anon_sym_0b] = ACTIONS(1760), + [anon_sym_0o] = ACTIONS(1760), + [anon_sym_0x] = ACTIONS(1760), + [sym_val_date] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token1] = ACTIONS(1760), + [aux_sym_unquoted_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1762), + }, + [1423] = { + [sym_cell_path] = STATE(1824), + [sym_path] = STATE(1374), + [sym_comment] = STATE(1423), + [aux_sym_cell_path_repeat1] = STATE(1284), + [sym__newline] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1835), + [anon_sym_err_GT_PIPE] = ACTIONS(1835), + [anon_sym_out_GT_PIPE] = ACTIONS(1835), + [anon_sym_e_GT_PIPE] = ACTIONS(1835), + [anon_sym_o_GT_PIPE] = ACTIONS(1835), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1835), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1835), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1835), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1835), + [anon_sym_RPAREN] = ACTIONS(1835), + [anon_sym_GT2] = ACTIONS(1833), + [anon_sym_DASH2] = ACTIONS(1835), + [anon_sym_in2] = ACTIONS(1835), + [anon_sym_if] = ACTIONS(1835), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(1835), + [anon_sym_EQ_GT] = ACTIONS(1835), + [anon_sym_STAR2] = ACTIONS(1833), + [anon_sym_and2] = ACTIONS(1835), + [anon_sym_xor2] = ACTIONS(1835), + [anon_sym_or2] = ACTIONS(1835), + [anon_sym_not_DASHin2] = ACTIONS(1835), + [anon_sym_has2] = ACTIONS(1835), + [anon_sym_not_DASHhas2] = ACTIONS(1835), + [anon_sym_starts_DASHwith2] = ACTIONS(1835), + [anon_sym_ends_DASHwith2] = ACTIONS(1835), + [anon_sym_EQ_EQ2] = ACTIONS(1835), + [anon_sym_BANG_EQ2] = ACTIONS(1835), + [anon_sym_LT2] = ACTIONS(1833), + [anon_sym_LT_EQ2] = ACTIONS(1835), + [anon_sym_GT_EQ2] = ACTIONS(1835), + [anon_sym_EQ_TILDE2] = ACTIONS(1835), + [anon_sym_BANG_TILDE2] = ACTIONS(1835), + [anon_sym_STAR_STAR2] = ACTIONS(1835), + [anon_sym_PLUS_PLUS2] = ACTIONS(1835), + [anon_sym_SLASH2] = ACTIONS(1833), + [anon_sym_mod2] = ACTIONS(1835), + [anon_sym_SLASH_SLASH2] = ACTIONS(1835), + [anon_sym_PLUS2] = ACTIONS(1833), + [anon_sym_bit_DASHshl2] = ACTIONS(1835), + [anon_sym_bit_DASHshr2] = ACTIONS(1835), + [anon_sym_bit_DASHand2] = ACTIONS(1835), + [anon_sym_bit_DASHxor2] = ACTIONS(1835), + [anon_sym_bit_DASHor2] = ACTIONS(1835), + [anon_sym_DOT2] = ACTIONS(4722), + [anon_sym_err_GT] = ACTIONS(1833), + [anon_sym_out_GT] = ACTIONS(1833), + [anon_sym_e_GT] = ACTIONS(1833), + [anon_sym_o_GT] = ACTIONS(1833), + [anon_sym_err_PLUSout_GT] = ACTIONS(1833), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1833), + [anon_sym_o_PLUSe_GT] = ACTIONS(1833), + [anon_sym_e_PLUSo_GT] = ACTIONS(1833), + [anon_sym_err_GT_GT] = ACTIONS(1835), + [anon_sym_out_GT_GT] = ACTIONS(1835), + [anon_sym_e_GT_GT] = ACTIONS(1835), + [anon_sym_o_GT_GT] = ACTIONS(1835), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1835), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1835), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1835), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1835), + [anon_sym_POUND] = ACTIONS(245), + }, + [1424] = { + [sym_cell_path] = STATE(1825), + [sym_path] = STATE(1374), + [sym_comment] = STATE(1424), + [aux_sym_cell_path_repeat1] = STATE(1284), [sym__newline] = ACTIONS(1881), [anon_sym_SEMI] = ACTIONS(1881), [anon_sym_PIPE] = ACTIONS(1881), @@ -215493,7 +209562,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1881), [anon_sym_bit_DASHxor2] = ACTIONS(1881), [anon_sym_bit_DASHor2] = ACTIONS(1881), - [anon_sym_DOT2] = ACTIONS(4772), + [anon_sym_DOT2] = ACTIONS(4722), [anon_sym_err_GT] = ACTIONS(1879), [anon_sym_out_GT] = ACTIONS(1879), [anon_sym_e_GT] = ACTIONS(1879), @@ -215512,1758 +209581,428 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1881), [anon_sym_POUND] = ACTIONS(245), }, - [1472] = { - [sym_cell_path] = STATE(1835), - [sym_path] = STATE(1450), - [sym_comment] = STATE(1472), - [aux_sym_cell_path_repeat1] = STATE(1340), - [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_has2] = ACTIONS(1897), - [anon_sym_not_DASHhas2] = 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_DOT2] = ACTIONS(4772), - [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), + [1425] = { + [sym_cell_path] = STATE(1829), + [sym_path] = STATE(1374), + [sym_comment] = STATE(1425), + [aux_sym_cell_path_repeat1] = STATE(1284), + [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(1849), + [anon_sym_DASH2] = ACTIONS(1851), + [anon_sym_in2] = ACTIONS(1851), + [anon_sym_if] = ACTIONS(1851), + [anon_sym_LBRACE] = ACTIONS(1851), + [anon_sym_RBRACE] = ACTIONS(1851), + [anon_sym_EQ_GT] = ACTIONS(1851), + [anon_sym_STAR2] = ACTIONS(1849), + [anon_sym_and2] = ACTIONS(1851), + [anon_sym_xor2] = ACTIONS(1851), + [anon_sym_or2] = ACTIONS(1851), + [anon_sym_not_DASHin2] = ACTIONS(1851), + [anon_sym_has2] = ACTIONS(1851), + [anon_sym_not_DASHhas2] = 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(1849), + [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(1849), + [anon_sym_mod2] = ACTIONS(1851), + [anon_sym_SLASH_SLASH2] = ACTIONS(1851), + [anon_sym_PLUS2] = ACTIONS(1849), + [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_DOT2] = ACTIONS(4722), + [anon_sym_err_GT] = ACTIONS(1849), + [anon_sym_out_GT] = ACTIONS(1849), + [anon_sym_e_GT] = ACTIONS(1849), + [anon_sym_o_GT] = ACTIONS(1849), + [anon_sym_err_PLUSout_GT] = ACTIONS(1849), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1849), + [anon_sym_o_PLUSe_GT] = ACTIONS(1849), + [anon_sym_e_PLUSo_GT] = ACTIONS(1849), + [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(245), }, - [1473] = { - [sym_cell_path] = STATE(1836), - [sym_path] = STATE(1450), - [sym_comment] = STATE(1473), - [aux_sym_cell_path_repeat1] = STATE(1340), - [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_has2] = ACTIONS(1915), - [anon_sym_not_DASHhas2] = 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_DOT2] = ACTIONS(4772), - [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), + [1426] = { + [sym_comment] = STATE(1426), + [ts_builtin_sym_end] = ACTIONS(1799), + [sym__newline] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(1799), + [anon_sym_PIPE] = ACTIONS(1799), + [anon_sym_err_GT_PIPE] = ACTIONS(1799), + [anon_sym_out_GT_PIPE] = ACTIONS(1799), + [anon_sym_e_GT_PIPE] = ACTIONS(1799), + [anon_sym_o_GT_PIPE] = ACTIONS(1799), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1799), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1799), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1799), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1799), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1797), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_DASH2] = ACTIONS(1797), + [anon_sym_LBRACE] = ACTIONS(1799), + [anon_sym_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(1799), + [anon_sym_DOT_DOT2] = ACTIONS(1797), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1797), + [anon_sym_DOT_DOT_LT] = ACTIONS(1797), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1799), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1799), + [anon_sym_null] = ACTIONS(1799), + [anon_sym_true] = ACTIONS(1799), + [anon_sym_false] = ACTIONS(1799), + [aux_sym__val_number_decimal_token1] = ACTIONS(1797), + [aux_sym__val_number_decimal_token2] = ACTIONS(1799), + [aux_sym__val_number_decimal_token3] = ACTIONS(1799), + [aux_sym__val_number_decimal_token4] = ACTIONS(1799), + [aux_sym__val_number_token1] = ACTIONS(1799), + [aux_sym__val_number_token2] = ACTIONS(1799), + [aux_sym__val_number_token3] = ACTIONS(1799), + [aux_sym__val_number_token4] = ACTIONS(1799), + [aux_sym__val_number_token5] = ACTIONS(1799), + [aux_sym__val_number_token6] = ACTIONS(1799), + [anon_sym_0b] = ACTIONS(1797), + [anon_sym_0o] = ACTIONS(1797), + [anon_sym_0x] = ACTIONS(1797), + [sym_val_date] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1799), + [sym__str_single_quotes] = ACTIONS(1799), + [sym__str_back_ticks] = ACTIONS(1799), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1799), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1799), + [anon_sym_err_GT] = ACTIONS(1797), + [anon_sym_out_GT] = ACTIONS(1797), + [anon_sym_e_GT] = ACTIONS(1797), + [anon_sym_o_GT] = ACTIONS(1797), + [anon_sym_err_PLUSout_GT] = ACTIONS(1797), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1797), + [anon_sym_o_PLUSe_GT] = ACTIONS(1797), + [anon_sym_e_PLUSo_GT] = ACTIONS(1797), + [anon_sym_err_GT_GT] = ACTIONS(1799), + [anon_sym_out_GT_GT] = ACTIONS(1799), + [anon_sym_e_GT_GT] = ACTIONS(1799), + [anon_sym_o_GT_GT] = ACTIONS(1799), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1799), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1799), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1799), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1799), + [aux_sym_unquoted_token1] = ACTIONS(1797), + [aux_sym_unquoted_token2] = ACTIONS(1797), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1799), + }, + [1427] = { + [sym_comment] = STATE(1427), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1762), + [anon_sym_in2] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1762), + [anon_sym_xor2] = ACTIONS(1762), + [anon_sym_or2] = ACTIONS(1762), + [anon_sym_not_DASHin2] = ACTIONS(1762), + [anon_sym_has2] = ACTIONS(1762), + [anon_sym_not_DASHhas2] = ACTIONS(1762), + [anon_sym_starts_DASHwith2] = ACTIONS(1762), + [anon_sym_ends_DASHwith2] = ACTIONS(1762), + [anon_sym_EQ_EQ2] = ACTIONS(1762), + [anon_sym_BANG_EQ2] = ACTIONS(1762), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1762), + [anon_sym_GT_EQ2] = ACTIONS(1762), + [anon_sym_EQ_TILDE2] = ACTIONS(1762), + [anon_sym_BANG_TILDE2] = ACTIONS(1762), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_STAR_STAR2] = ACTIONS(1762), + [anon_sym_PLUS_PLUS2] = ACTIONS(1762), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1762), + [anon_sym_SLASH_SLASH2] = ACTIONS(1762), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1762), + [anon_sym_bit_DASHshr2] = ACTIONS(1762), + [anon_sym_bit_DASHand2] = ACTIONS(1762), + [anon_sym_bit_DASHxor2] = ACTIONS(1762), + [anon_sym_bit_DASHor2] = ACTIONS(1762), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(4742), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token2] = ACTIONS(1760), [anon_sym_POUND] = ACTIONS(245), }, - [1474] = { - [sym_cell_path] = STATE(1837), - [sym_path] = STATE(1450), - [sym_comment] = STATE(1474), - [aux_sym_cell_path_repeat1] = STATE(1340), - [sym__newline] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_PIPE] = ACTIONS(1947), - [anon_sym_err_GT_PIPE] = ACTIONS(1947), - [anon_sym_out_GT_PIPE] = ACTIONS(1947), - [anon_sym_e_GT_PIPE] = ACTIONS(1947), - [anon_sym_o_GT_PIPE] = ACTIONS(1947), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1947), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1947), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1947), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1947), - [anon_sym_RPAREN] = ACTIONS(1947), - [anon_sym_GT2] = ACTIONS(1945), - [anon_sym_DASH2] = ACTIONS(1947), - [anon_sym_in2] = ACTIONS(1947), - [anon_sym_if] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_EQ_GT] = ACTIONS(1947), - [anon_sym_STAR2] = ACTIONS(1945), - [anon_sym_and2] = ACTIONS(1947), - [anon_sym_xor2] = ACTIONS(1947), - [anon_sym_or2] = ACTIONS(1947), - [anon_sym_not_DASHin2] = ACTIONS(1947), - [anon_sym_has2] = ACTIONS(1947), - [anon_sym_not_DASHhas2] = ACTIONS(1947), - [anon_sym_starts_DASHwith2] = ACTIONS(1947), - [anon_sym_ends_DASHwith2] = ACTIONS(1947), - [anon_sym_EQ_EQ2] = ACTIONS(1947), - [anon_sym_BANG_EQ2] = ACTIONS(1947), - [anon_sym_LT2] = ACTIONS(1945), - [anon_sym_LT_EQ2] = ACTIONS(1947), - [anon_sym_GT_EQ2] = ACTIONS(1947), - [anon_sym_EQ_TILDE2] = ACTIONS(1947), - [anon_sym_BANG_TILDE2] = ACTIONS(1947), - [anon_sym_STAR_STAR2] = ACTIONS(1947), - [anon_sym_PLUS_PLUS2] = ACTIONS(1947), - [anon_sym_SLASH2] = ACTIONS(1945), - [anon_sym_mod2] = ACTIONS(1947), - [anon_sym_SLASH_SLASH2] = ACTIONS(1947), - [anon_sym_PLUS2] = ACTIONS(1945), - [anon_sym_bit_DASHshl2] = ACTIONS(1947), - [anon_sym_bit_DASHshr2] = ACTIONS(1947), - [anon_sym_bit_DASHand2] = ACTIONS(1947), - [anon_sym_bit_DASHxor2] = ACTIONS(1947), - [anon_sym_bit_DASHor2] = ACTIONS(1947), - [anon_sym_DOT2] = ACTIONS(4772), - [anon_sym_err_GT] = ACTIONS(1945), - [anon_sym_out_GT] = ACTIONS(1945), - [anon_sym_e_GT] = ACTIONS(1945), - [anon_sym_o_GT] = ACTIONS(1945), - [anon_sym_err_PLUSout_GT] = ACTIONS(1945), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1945), - [anon_sym_o_PLUSe_GT] = ACTIONS(1945), - [anon_sym_e_PLUSo_GT] = ACTIONS(1945), - [anon_sym_err_GT_GT] = ACTIONS(1947), - [anon_sym_out_GT_GT] = ACTIONS(1947), - [anon_sym_e_GT_GT] = ACTIONS(1947), - [anon_sym_o_GT_GT] = ACTIONS(1947), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1947), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1947), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1947), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1947), - [anon_sym_POUND] = ACTIONS(245), - }, - [1475] = { - [sym_cell_path] = STATE(1838), - [sym_path] = STATE(1450), - [sym_comment] = STATE(1475), - [aux_sym_cell_path_repeat1] = STATE(1340), - [sym__newline] = ACTIONS(1845), - [anon_sym_SEMI] = ACTIONS(1845), - [anon_sym_PIPE] = ACTIONS(1845), - [anon_sym_err_GT_PIPE] = ACTIONS(1845), - [anon_sym_out_GT_PIPE] = ACTIONS(1845), - [anon_sym_e_GT_PIPE] = ACTIONS(1845), - [anon_sym_o_GT_PIPE] = ACTIONS(1845), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1845), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1845), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1845), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1845), - [anon_sym_RPAREN] = ACTIONS(1845), - [anon_sym_GT2] = ACTIONS(1843), - [anon_sym_DASH2] = ACTIONS(1845), - [anon_sym_in2] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1845), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_RBRACE] = ACTIONS(1845), - [anon_sym_EQ_GT] = ACTIONS(1845), - [anon_sym_STAR2] = ACTIONS(1843), - [anon_sym_and2] = ACTIONS(1845), - [anon_sym_xor2] = ACTIONS(1845), - [anon_sym_or2] = ACTIONS(1845), - [anon_sym_not_DASHin2] = ACTIONS(1845), - [anon_sym_has2] = ACTIONS(1845), - [anon_sym_not_DASHhas2] = ACTIONS(1845), - [anon_sym_starts_DASHwith2] = ACTIONS(1845), - [anon_sym_ends_DASHwith2] = ACTIONS(1845), - [anon_sym_EQ_EQ2] = ACTIONS(1845), - [anon_sym_BANG_EQ2] = ACTIONS(1845), - [anon_sym_LT2] = ACTIONS(1843), - [anon_sym_LT_EQ2] = ACTIONS(1845), - [anon_sym_GT_EQ2] = ACTIONS(1845), - [anon_sym_EQ_TILDE2] = ACTIONS(1845), - [anon_sym_BANG_TILDE2] = ACTIONS(1845), - [anon_sym_STAR_STAR2] = ACTIONS(1845), - [anon_sym_PLUS_PLUS2] = ACTIONS(1845), - [anon_sym_SLASH2] = ACTIONS(1843), - [anon_sym_mod2] = ACTIONS(1845), - [anon_sym_SLASH_SLASH2] = ACTIONS(1845), - [anon_sym_PLUS2] = ACTIONS(1843), - [anon_sym_bit_DASHshl2] = ACTIONS(1845), - [anon_sym_bit_DASHshr2] = ACTIONS(1845), - [anon_sym_bit_DASHand2] = ACTIONS(1845), - [anon_sym_bit_DASHxor2] = ACTIONS(1845), - [anon_sym_bit_DASHor2] = ACTIONS(1845), - [anon_sym_DOT2] = ACTIONS(4772), - [anon_sym_err_GT] = ACTIONS(1843), - [anon_sym_out_GT] = ACTIONS(1843), - [anon_sym_e_GT] = ACTIONS(1843), - [anon_sym_o_GT] = ACTIONS(1843), - [anon_sym_err_PLUSout_GT] = ACTIONS(1843), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1843), - [anon_sym_o_PLUSe_GT] = ACTIONS(1843), - [anon_sym_e_PLUSo_GT] = ACTIONS(1843), - [anon_sym_err_GT_GT] = ACTIONS(1845), - [anon_sym_out_GT_GT] = ACTIONS(1845), - [anon_sym_e_GT_GT] = ACTIONS(1845), - [anon_sym_o_GT_GT] = ACTIONS(1845), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1845), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1845), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1845), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1845), - [anon_sym_POUND] = ACTIONS(245), - }, - [1476] = { - [sym_cell_path] = STATE(1749), - [sym_path] = STATE(1450), - [sym_comment] = STATE(1476), - [aux_sym_cell_path_repeat1] = STATE(1340), - [sym__newline] = ACTIONS(1857), - [anon_sym_SEMI] = ACTIONS(1857), - [anon_sym_PIPE] = ACTIONS(1857), - [anon_sym_err_GT_PIPE] = ACTIONS(1857), - [anon_sym_out_GT_PIPE] = ACTIONS(1857), - [anon_sym_e_GT_PIPE] = ACTIONS(1857), - [anon_sym_o_GT_PIPE] = ACTIONS(1857), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1857), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1857), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1857), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1857), - [anon_sym_RPAREN] = ACTIONS(1857), - [anon_sym_GT2] = ACTIONS(1855), - [anon_sym_DASH2] = ACTIONS(1857), - [anon_sym_in2] = ACTIONS(1857), - [anon_sym_if] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1857), - [anon_sym_RBRACE] = ACTIONS(1857), - [anon_sym_EQ_GT] = ACTIONS(1857), - [anon_sym_STAR2] = ACTIONS(1855), - [anon_sym_and2] = ACTIONS(1857), - [anon_sym_xor2] = ACTIONS(1857), - [anon_sym_or2] = ACTIONS(1857), - [anon_sym_not_DASHin2] = ACTIONS(1857), - [anon_sym_has2] = ACTIONS(1857), - [anon_sym_not_DASHhas2] = ACTIONS(1857), - [anon_sym_starts_DASHwith2] = ACTIONS(1857), - [anon_sym_ends_DASHwith2] = ACTIONS(1857), - [anon_sym_EQ_EQ2] = ACTIONS(1857), - [anon_sym_BANG_EQ2] = ACTIONS(1857), - [anon_sym_LT2] = ACTIONS(1855), - [anon_sym_LT_EQ2] = ACTIONS(1857), - [anon_sym_GT_EQ2] = ACTIONS(1857), - [anon_sym_EQ_TILDE2] = ACTIONS(1857), - [anon_sym_BANG_TILDE2] = ACTIONS(1857), - [anon_sym_STAR_STAR2] = ACTIONS(1857), - [anon_sym_PLUS_PLUS2] = ACTIONS(1857), - [anon_sym_SLASH2] = ACTIONS(1855), - [anon_sym_mod2] = ACTIONS(1857), - [anon_sym_SLASH_SLASH2] = ACTIONS(1857), - [anon_sym_PLUS2] = ACTIONS(1855), - [anon_sym_bit_DASHshl2] = ACTIONS(1857), - [anon_sym_bit_DASHshr2] = ACTIONS(1857), - [anon_sym_bit_DASHand2] = ACTIONS(1857), - [anon_sym_bit_DASHxor2] = ACTIONS(1857), - [anon_sym_bit_DASHor2] = ACTIONS(1857), - [anon_sym_DOT2] = ACTIONS(4772), - [anon_sym_err_GT] = ACTIONS(1855), - [anon_sym_out_GT] = ACTIONS(1855), - [anon_sym_e_GT] = ACTIONS(1855), - [anon_sym_o_GT] = ACTIONS(1855), - [anon_sym_err_PLUSout_GT] = ACTIONS(1855), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1855), - [anon_sym_o_PLUSe_GT] = ACTIONS(1855), - [anon_sym_e_PLUSo_GT] = ACTIONS(1855), - [anon_sym_err_GT_GT] = ACTIONS(1857), - [anon_sym_out_GT_GT] = ACTIONS(1857), - [anon_sym_e_GT_GT] = ACTIONS(1857), - [anon_sym_o_GT_GT] = ACTIONS(1857), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1857), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1857), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1857), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1857), - [anon_sym_POUND] = ACTIONS(245), - }, - [1477] = { - [sym_cell_path] = STATE(1841), - [sym_path] = STATE(1450), - [sym_comment] = STATE(1477), - [aux_sym_cell_path_repeat1] = STATE(1340), - [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_has2] = ACTIONS(1885), - [anon_sym_not_DASHhas2] = 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_DOT2] = ACTIONS(4772), - [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(245), - }, - [1478] = { - [sym_cell_path] = STATE(1842), - [sym_path] = STATE(1450), - [sym_comment] = STATE(1478), - [aux_sym_cell_path_repeat1] = STATE(1340), - [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_has2] = ACTIONS(1893), - [anon_sym_not_DASHhas2] = 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_DOT2] = ACTIONS(4772), - [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(245), - }, - [1479] = { - [sym_cell_path] = STATE(1843), - [sym_path] = STATE(1450), - [sym_comment] = STATE(1479), - [aux_sym_cell_path_repeat1] = STATE(1340), - [sym__newline] = ACTIONS(1925), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_err_GT_PIPE] = ACTIONS(1925), - [anon_sym_out_GT_PIPE] = ACTIONS(1925), - [anon_sym_e_GT_PIPE] = ACTIONS(1925), - [anon_sym_o_GT_PIPE] = ACTIONS(1925), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1925), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1925), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1925), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1925), - [anon_sym_RPAREN] = ACTIONS(1925), - [anon_sym_GT2] = ACTIONS(1923), - [anon_sym_DASH2] = ACTIONS(1925), - [anon_sym_in2] = ACTIONS(1925), - [anon_sym_if] = ACTIONS(1925), - [anon_sym_LBRACE] = ACTIONS(1925), - [anon_sym_RBRACE] = ACTIONS(1925), - [anon_sym_EQ_GT] = ACTIONS(1925), - [anon_sym_STAR2] = ACTIONS(1923), - [anon_sym_and2] = ACTIONS(1925), - [anon_sym_xor2] = ACTIONS(1925), - [anon_sym_or2] = ACTIONS(1925), - [anon_sym_not_DASHin2] = ACTIONS(1925), - [anon_sym_has2] = ACTIONS(1925), - [anon_sym_not_DASHhas2] = ACTIONS(1925), - [anon_sym_starts_DASHwith2] = ACTIONS(1925), - [anon_sym_ends_DASHwith2] = ACTIONS(1925), - [anon_sym_EQ_EQ2] = ACTIONS(1925), - [anon_sym_BANG_EQ2] = ACTIONS(1925), - [anon_sym_LT2] = ACTIONS(1923), - [anon_sym_LT_EQ2] = ACTIONS(1925), - [anon_sym_GT_EQ2] = ACTIONS(1925), - [anon_sym_EQ_TILDE2] = ACTIONS(1925), - [anon_sym_BANG_TILDE2] = ACTIONS(1925), - [anon_sym_STAR_STAR2] = ACTIONS(1925), - [anon_sym_PLUS_PLUS2] = ACTIONS(1925), - [anon_sym_SLASH2] = ACTIONS(1923), - [anon_sym_mod2] = ACTIONS(1925), - [anon_sym_SLASH_SLASH2] = ACTIONS(1925), - [anon_sym_PLUS2] = ACTIONS(1923), - [anon_sym_bit_DASHshl2] = ACTIONS(1925), - [anon_sym_bit_DASHshr2] = ACTIONS(1925), - [anon_sym_bit_DASHand2] = ACTIONS(1925), - [anon_sym_bit_DASHxor2] = ACTIONS(1925), - [anon_sym_bit_DASHor2] = ACTIONS(1925), - [anon_sym_DOT2] = ACTIONS(4772), - [anon_sym_err_GT] = ACTIONS(1923), - [anon_sym_out_GT] = ACTIONS(1923), - [anon_sym_e_GT] = ACTIONS(1923), - [anon_sym_o_GT] = ACTIONS(1923), - [anon_sym_err_PLUSout_GT] = ACTIONS(1923), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1923), - [anon_sym_o_PLUSe_GT] = ACTIONS(1923), - [anon_sym_e_PLUSo_GT] = ACTIONS(1923), - [anon_sym_err_GT_GT] = ACTIONS(1925), - [anon_sym_out_GT_GT] = ACTIONS(1925), - [anon_sym_e_GT_GT] = ACTIONS(1925), - [anon_sym_o_GT_GT] = ACTIONS(1925), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1925), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1925), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1925), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1925), - [anon_sym_POUND] = ACTIONS(245), - }, - [1480] = { - [sym_cell_path] = STATE(1844), - [sym_path] = STATE(1450), - [sym_comment] = STATE(1480), - [aux_sym_cell_path_repeat1] = STATE(1340), - [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_has2] = ACTIONS(1933), - [anon_sym_not_DASHhas2] = 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_DOT2] = ACTIONS(4772), - [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(245), - }, - [1481] = { - [sym_cell_path] = STATE(1845), - [sym_path] = STATE(1450), - [sym_comment] = STATE(1481), - [aux_sym_cell_path_repeat1] = STATE(1340), - [sym__newline] = ACTIONS(1937), - [anon_sym_SEMI] = ACTIONS(1937), - [anon_sym_PIPE] = ACTIONS(1937), - [anon_sym_err_GT_PIPE] = ACTIONS(1937), - [anon_sym_out_GT_PIPE] = ACTIONS(1937), - [anon_sym_e_GT_PIPE] = ACTIONS(1937), - [anon_sym_o_GT_PIPE] = ACTIONS(1937), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1937), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1937), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1937), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1937), - [anon_sym_RPAREN] = ACTIONS(1937), - [anon_sym_GT2] = ACTIONS(1935), - [anon_sym_DASH2] = ACTIONS(1937), - [anon_sym_in2] = ACTIONS(1937), - [anon_sym_if] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1937), - [anon_sym_RBRACE] = ACTIONS(1937), - [anon_sym_EQ_GT] = ACTIONS(1937), - [anon_sym_STAR2] = ACTIONS(1935), - [anon_sym_and2] = ACTIONS(1937), - [anon_sym_xor2] = ACTIONS(1937), - [anon_sym_or2] = ACTIONS(1937), - [anon_sym_not_DASHin2] = ACTIONS(1937), - [anon_sym_has2] = ACTIONS(1937), - [anon_sym_not_DASHhas2] = ACTIONS(1937), - [anon_sym_starts_DASHwith2] = ACTIONS(1937), - [anon_sym_ends_DASHwith2] = ACTIONS(1937), - [anon_sym_EQ_EQ2] = ACTIONS(1937), - [anon_sym_BANG_EQ2] = ACTIONS(1937), - [anon_sym_LT2] = ACTIONS(1935), - [anon_sym_LT_EQ2] = ACTIONS(1937), - [anon_sym_GT_EQ2] = ACTIONS(1937), - [anon_sym_EQ_TILDE2] = ACTIONS(1937), - [anon_sym_BANG_TILDE2] = ACTIONS(1937), - [anon_sym_STAR_STAR2] = ACTIONS(1937), - [anon_sym_PLUS_PLUS2] = ACTIONS(1937), - [anon_sym_SLASH2] = ACTIONS(1935), - [anon_sym_mod2] = ACTIONS(1937), - [anon_sym_SLASH_SLASH2] = ACTIONS(1937), - [anon_sym_PLUS2] = ACTIONS(1935), - [anon_sym_bit_DASHshl2] = ACTIONS(1937), - [anon_sym_bit_DASHshr2] = ACTIONS(1937), - [anon_sym_bit_DASHand2] = ACTIONS(1937), - [anon_sym_bit_DASHxor2] = ACTIONS(1937), - [anon_sym_bit_DASHor2] = ACTIONS(1937), - [anon_sym_DOT2] = ACTIONS(4772), - [anon_sym_err_GT] = ACTIONS(1935), - [anon_sym_out_GT] = ACTIONS(1935), - [anon_sym_e_GT] = ACTIONS(1935), - [anon_sym_o_GT] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT] = ACTIONS(1935), - [anon_sym_err_GT_GT] = ACTIONS(1937), - [anon_sym_out_GT_GT] = ACTIONS(1937), - [anon_sym_e_GT_GT] = ACTIONS(1937), - [anon_sym_o_GT_GT] = ACTIONS(1937), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1937), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1937), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1937), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1937), - [anon_sym_POUND] = ACTIONS(245), - }, - [1482] = { - [sym_comment] = STATE(1482), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1713), - [anon_sym_in2] = ACTIONS(1713), - [anon_sym_if] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_EQ_GT] = ACTIONS(1713), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1713), - [anon_sym_xor2] = ACTIONS(1713), - [anon_sym_or2] = ACTIONS(1713), - [anon_sym_not_DASHin2] = ACTIONS(1713), - [anon_sym_has2] = ACTIONS(1713), - [anon_sym_not_DASHhas2] = ACTIONS(1713), - [anon_sym_starts_DASHwith2] = ACTIONS(1713), - [anon_sym_ends_DASHwith2] = ACTIONS(1713), - [anon_sym_EQ_EQ2] = ACTIONS(1713), - [anon_sym_BANG_EQ2] = ACTIONS(1713), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1713), - [anon_sym_GT_EQ2] = ACTIONS(1713), - [anon_sym_EQ_TILDE2] = ACTIONS(1713), - [anon_sym_BANG_TILDE2] = ACTIONS(1713), - [anon_sym_STAR_STAR2] = ACTIONS(1713), - [anon_sym_PLUS_PLUS2] = ACTIONS(1713), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1713), - [anon_sym_SLASH_SLASH2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1713), - [anon_sym_bit_DASHshr2] = ACTIONS(1713), - [anon_sym_bit_DASHand2] = ACTIONS(1713), - [anon_sym_bit_DASHxor2] = ACTIONS(1713), - [anon_sym_bit_DASHor2] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [anon_sym_COLON2] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(245), - }, - [1483] = { - [sym_comment] = STATE(1483), - [sym__newline] = ACTIONS(2003), - [anon_sym_SEMI] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2003), - [anon_sym_err_GT_PIPE] = ACTIONS(2003), - [anon_sym_out_GT_PIPE] = ACTIONS(2003), - [anon_sym_e_GT_PIPE] = ACTIONS(2003), - [anon_sym_o_GT_PIPE] = ACTIONS(2003), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2003), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2003), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2003), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2003), - [anon_sym_RPAREN] = ACTIONS(2003), - [anon_sym_GT2] = ACTIONS(2001), - [anon_sym_DASH2] = ACTIONS(2003), - [anon_sym_in2] = ACTIONS(2003), - [anon_sym_if] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_RBRACE] = ACTIONS(2003), - [anon_sym_EQ_GT] = ACTIONS(2003), - [anon_sym_STAR2] = ACTIONS(2001), - [anon_sym_and2] = ACTIONS(2003), - [anon_sym_xor2] = ACTIONS(2003), - [anon_sym_or2] = ACTIONS(2003), - [anon_sym_not_DASHin2] = ACTIONS(2003), - [anon_sym_has2] = ACTIONS(2003), - [anon_sym_not_DASHhas2] = ACTIONS(2003), - [anon_sym_starts_DASHwith2] = ACTIONS(2003), - [anon_sym_ends_DASHwith2] = ACTIONS(2003), - [anon_sym_EQ_EQ2] = ACTIONS(2003), - [anon_sym_BANG_EQ2] = ACTIONS(2003), - [anon_sym_LT2] = ACTIONS(2001), - [anon_sym_LT_EQ2] = ACTIONS(2003), - [anon_sym_GT_EQ2] = ACTIONS(2003), - [anon_sym_EQ_TILDE2] = ACTIONS(2003), - [anon_sym_BANG_TILDE2] = ACTIONS(2003), - [anon_sym_STAR_STAR2] = ACTIONS(2003), - [anon_sym_PLUS_PLUS2] = ACTIONS(2003), - [anon_sym_SLASH2] = ACTIONS(2001), - [anon_sym_mod2] = ACTIONS(2003), - [anon_sym_SLASH_SLASH2] = ACTIONS(2003), - [anon_sym_PLUS2] = ACTIONS(2001), - [anon_sym_bit_DASHshl2] = ACTIONS(2003), - [anon_sym_bit_DASHshr2] = ACTIONS(2003), - [anon_sym_bit_DASHand2] = ACTIONS(2003), - [anon_sym_bit_DASHxor2] = ACTIONS(2003), - [anon_sym_bit_DASHor2] = ACTIONS(2003), - [anon_sym_DOT_DOT2] = ACTIONS(2001), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2003), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2003), - [anon_sym_COLON2] = ACTIONS(2003), - [anon_sym_err_GT] = ACTIONS(2001), - [anon_sym_out_GT] = ACTIONS(2001), - [anon_sym_e_GT] = ACTIONS(2001), - [anon_sym_o_GT] = ACTIONS(2001), - [anon_sym_err_PLUSout_GT] = ACTIONS(2001), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2001), - [anon_sym_o_PLUSe_GT] = ACTIONS(2001), - [anon_sym_e_PLUSo_GT] = ACTIONS(2001), - [anon_sym_err_GT_GT] = ACTIONS(2003), - [anon_sym_out_GT_GT] = ACTIONS(2003), - [anon_sym_e_GT_GT] = ACTIONS(2003), - [anon_sym_o_GT_GT] = ACTIONS(2003), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2003), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2003), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2003), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2003), - [anon_sym_POUND] = ACTIONS(245), - }, - [1484] = { - [sym_cell_path] = STATE(1757), - [sym_path] = STATE(1692), - [sym_comment] = STATE(1484), - [aux_sym_cell_path_repeat1] = STATE(1564), - [sym__newline] = ACTIONS(1961), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_err_GT_PIPE] = ACTIONS(1961), - [anon_sym_out_GT_PIPE] = ACTIONS(1961), - [anon_sym_e_GT_PIPE] = ACTIONS(1961), - [anon_sym_o_GT_PIPE] = ACTIONS(1961), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1961), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1961), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1961), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(1961), - [anon_sym_DOLLAR] = ACTIONS(1959), - [anon_sym_DASH_DASH] = ACTIONS(1961), - [anon_sym_DASH2] = ACTIONS(1959), - [anon_sym_LBRACE] = ACTIONS(1961), - [anon_sym_RBRACE] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1961), - [anon_sym_DOT_DOT_LT] = ACTIONS(1961), - [anon_sym_null] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1961), - [anon_sym_false] = ACTIONS(1961), - [aux_sym__val_number_decimal_token1] = ACTIONS(1959), - [aux_sym__val_number_decimal_token2] = ACTIONS(1961), - [aux_sym__val_number_decimal_token3] = ACTIONS(1961), - [aux_sym__val_number_decimal_token4] = ACTIONS(1961), - [aux_sym__val_number_token1] = ACTIONS(1961), - [aux_sym__val_number_token2] = ACTIONS(1961), - [aux_sym__val_number_token3] = ACTIONS(1961), - [aux_sym__val_number_token4] = ACTIONS(1961), - [aux_sym__val_number_token5] = ACTIONS(1961), - [aux_sym__val_number_token6] = ACTIONS(1961), - [anon_sym_0b] = ACTIONS(1959), - [anon_sym_0o] = ACTIONS(1959), - [anon_sym_0x] = ACTIONS(1959), - [sym_val_date] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [sym__str_single_quotes] = ACTIONS(1961), - [sym__str_back_ticks] = ACTIONS(1961), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1961), - [anon_sym_DOT2] = ACTIONS(4770), - [anon_sym_err_GT] = ACTIONS(1959), - [anon_sym_out_GT] = ACTIONS(1959), - [anon_sym_e_GT] = ACTIONS(1959), - [anon_sym_o_GT] = ACTIONS(1959), - [anon_sym_err_PLUSout_GT] = ACTIONS(1959), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1959), - [anon_sym_o_PLUSe_GT] = ACTIONS(1959), - [anon_sym_e_PLUSo_GT] = ACTIONS(1959), - [anon_sym_err_GT_GT] = ACTIONS(1961), - [anon_sym_out_GT_GT] = ACTIONS(1961), - [anon_sym_e_GT_GT] = ACTIONS(1961), - [anon_sym_o_GT_GT] = ACTIONS(1961), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1961), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1961), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1961), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1961), - [aux_sym_unquoted_token1] = ACTIONS(1959), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1961), - }, - [1485] = { - [sym_cell_path] = STATE(1768), - [sym_path] = STATE(1692), - [sym_comment] = STATE(1485), - [aux_sym_cell_path_repeat1] = STATE(1564), - [sym__newline] = ACTIONS(1831), - [anon_sym_SEMI] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_err_GT_PIPE] = ACTIONS(1831), - [anon_sym_out_GT_PIPE] = ACTIONS(1831), - [anon_sym_e_GT_PIPE] = ACTIONS(1831), - [anon_sym_o_GT_PIPE] = ACTIONS(1831), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1831), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1831), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1831), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1831), - [anon_sym_RPAREN] = ACTIONS(1831), - [anon_sym_DOLLAR] = ACTIONS(1829), - [anon_sym_DASH_DASH] = ACTIONS(1831), - [anon_sym_DASH2] = ACTIONS(1829), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_RBRACE] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1829), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1831), - [anon_sym_DOT_DOT_LT] = ACTIONS(1831), - [anon_sym_null] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [aux_sym__val_number_decimal_token1] = ACTIONS(1829), - [aux_sym__val_number_decimal_token2] = ACTIONS(1831), - [aux_sym__val_number_decimal_token3] = ACTIONS(1831), - [aux_sym__val_number_decimal_token4] = ACTIONS(1831), - [aux_sym__val_number_token1] = ACTIONS(1831), - [aux_sym__val_number_token2] = ACTIONS(1831), - [aux_sym__val_number_token3] = ACTIONS(1831), - [aux_sym__val_number_token4] = ACTIONS(1831), - [aux_sym__val_number_token5] = ACTIONS(1831), - [aux_sym__val_number_token6] = ACTIONS(1831), - [anon_sym_0b] = ACTIONS(1829), - [anon_sym_0o] = ACTIONS(1829), - [anon_sym_0x] = ACTIONS(1829), - [sym_val_date] = ACTIONS(1831), - [anon_sym_DQUOTE] = ACTIONS(1831), - [sym__str_single_quotes] = ACTIONS(1831), - [sym__str_back_ticks] = ACTIONS(1831), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1831), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1831), - [anon_sym_DOT2] = ACTIONS(4770), - [anon_sym_err_GT] = ACTIONS(1829), - [anon_sym_out_GT] = ACTIONS(1829), - [anon_sym_e_GT] = ACTIONS(1829), - [anon_sym_o_GT] = ACTIONS(1829), - [anon_sym_err_PLUSout_GT] = ACTIONS(1829), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1829), - [anon_sym_o_PLUSe_GT] = ACTIONS(1829), - [anon_sym_e_PLUSo_GT] = ACTIONS(1829), - [anon_sym_err_GT_GT] = ACTIONS(1831), - [anon_sym_out_GT_GT] = ACTIONS(1831), - [anon_sym_e_GT_GT] = ACTIONS(1831), - [anon_sym_o_GT_GT] = ACTIONS(1831), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1831), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1831), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1831), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1831), - [aux_sym_unquoted_token1] = ACTIONS(1829), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1831), - }, - [1486] = { - [sym_cell_path] = STATE(1770), - [sym_path] = STATE(1692), - [sym_comment] = STATE(1486), - [aux_sym_cell_path_repeat1] = STATE(1564), - [sym__newline] = ACTIONS(1837), - [anon_sym_SEMI] = ACTIONS(1837), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_err_GT_PIPE] = ACTIONS(1837), - [anon_sym_out_GT_PIPE] = ACTIONS(1837), - [anon_sym_e_GT_PIPE] = ACTIONS(1837), - [anon_sym_o_GT_PIPE] = ACTIONS(1837), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1837), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1837), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1837), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1837), - [anon_sym_DASH2] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1837), - [anon_sym_RBRACE] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1835), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1837), - [anon_sym_DOT_DOT_LT] = ACTIONS(1837), - [anon_sym_null] = ACTIONS(1837), - [anon_sym_true] = ACTIONS(1837), - [anon_sym_false] = ACTIONS(1837), - [aux_sym__val_number_decimal_token1] = ACTIONS(1835), - [aux_sym__val_number_decimal_token2] = ACTIONS(1837), - [aux_sym__val_number_decimal_token3] = ACTIONS(1837), - [aux_sym__val_number_decimal_token4] = ACTIONS(1837), - [aux_sym__val_number_token1] = ACTIONS(1837), - [aux_sym__val_number_token2] = ACTIONS(1837), - [aux_sym__val_number_token3] = ACTIONS(1837), - [aux_sym__val_number_token4] = ACTIONS(1837), - [aux_sym__val_number_token5] = ACTIONS(1837), - [aux_sym__val_number_token6] = ACTIONS(1837), - [anon_sym_0b] = ACTIONS(1835), - [anon_sym_0o] = ACTIONS(1835), - [anon_sym_0x] = ACTIONS(1835), - [sym_val_date] = ACTIONS(1837), - [anon_sym_DQUOTE] = ACTIONS(1837), - [sym__str_single_quotes] = ACTIONS(1837), - [sym__str_back_ticks] = ACTIONS(1837), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1837), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1837), - [anon_sym_DOT2] = ACTIONS(4770), - [anon_sym_err_GT] = ACTIONS(1835), - [anon_sym_out_GT] = ACTIONS(1835), - [anon_sym_e_GT] = ACTIONS(1835), - [anon_sym_o_GT] = ACTIONS(1835), - [anon_sym_err_PLUSout_GT] = ACTIONS(1835), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1835), - [anon_sym_o_PLUSe_GT] = ACTIONS(1835), - [anon_sym_e_PLUSo_GT] = ACTIONS(1835), - [anon_sym_err_GT_GT] = ACTIONS(1837), - [anon_sym_out_GT_GT] = ACTIONS(1837), - [anon_sym_e_GT_GT] = ACTIONS(1837), - [anon_sym_o_GT_GT] = ACTIONS(1837), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1837), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1837), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1837), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1837), - [aux_sym_unquoted_token1] = ACTIONS(1835), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1837), - }, - [1487] = { - [sym_cell_path] = STATE(1791), - [sym_path] = STATE(1692), - [sym_comment] = STATE(1487), - [aux_sym_cell_path_repeat1] = STATE(1564), - [sym__newline] = ACTIONS(1849), - [anon_sym_SEMI] = ACTIONS(1849), - [anon_sym_PIPE] = ACTIONS(1849), - [anon_sym_err_GT_PIPE] = ACTIONS(1849), - [anon_sym_out_GT_PIPE] = ACTIONS(1849), - [anon_sym_e_GT_PIPE] = ACTIONS(1849), - [anon_sym_o_GT_PIPE] = ACTIONS(1849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1849), - [anon_sym_RPAREN] = ACTIONS(1849), - [anon_sym_DOLLAR] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_DASH2] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1849), - [anon_sym_RBRACE] = ACTIONS(1849), - [anon_sym_DOT_DOT] = ACTIONS(1847), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1849), - [anon_sym_DOT_DOT_LT] = ACTIONS(1849), - [anon_sym_null] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1849), - [anon_sym_false] = ACTIONS(1849), - [aux_sym__val_number_decimal_token1] = ACTIONS(1847), - [aux_sym__val_number_decimal_token2] = ACTIONS(1849), - [aux_sym__val_number_decimal_token3] = ACTIONS(1849), - [aux_sym__val_number_decimal_token4] = ACTIONS(1849), - [aux_sym__val_number_token1] = ACTIONS(1849), - [aux_sym__val_number_token2] = ACTIONS(1849), - [aux_sym__val_number_token3] = ACTIONS(1849), - [aux_sym__val_number_token4] = ACTIONS(1849), - [aux_sym__val_number_token5] = ACTIONS(1849), - [aux_sym__val_number_token6] = ACTIONS(1849), - [anon_sym_0b] = ACTIONS(1847), - [anon_sym_0o] = ACTIONS(1847), - [anon_sym_0x] = ACTIONS(1847), - [sym_val_date] = ACTIONS(1849), - [anon_sym_DQUOTE] = ACTIONS(1849), - [sym__str_single_quotes] = ACTIONS(1849), - [sym__str_back_ticks] = ACTIONS(1849), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1849), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1849), - [anon_sym_DOT2] = ACTIONS(4770), - [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(1849), - [anon_sym_out_GT_GT] = ACTIONS(1849), - [anon_sym_e_GT_GT] = ACTIONS(1849), - [anon_sym_o_GT_GT] = ACTIONS(1849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1849), - [aux_sym_unquoted_token1] = ACTIONS(1847), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1849), - }, - [1488] = { - [sym_comment] = STATE(1488), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_DOT_DOT] = ACTIONS(1666), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_DOT] = ACTIONS(4782), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT] = ACTIONS(1668), - [aux_sym__immediate_decimal_token2] = ACTIONS(4784), - [anon_sym_null] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1668), - [aux_sym__val_number_token5] = ACTIONS(1668), - [aux_sym__val_number_token6] = ACTIONS(1668), - [anon_sym_0b] = ACTIONS(1666), - [anon_sym_0o] = ACTIONS(1666), - [anon_sym_0x] = ACTIONS(1666), - [sym_val_date] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_err_GT] = ACTIONS(1666), - [anon_sym_out_GT] = ACTIONS(1666), - [anon_sym_e_GT] = ACTIONS(1666), - [anon_sym_o_GT] = ACTIONS(1666), - [anon_sym_err_PLUSout_GT] = ACTIONS(1666), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), - [anon_sym_o_PLUSe_GT] = ACTIONS(1666), - [anon_sym_e_PLUSo_GT] = ACTIONS(1666), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [aux_sym_unquoted_token1] = ACTIONS(1666), - [aux_sym_unquoted_token2] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), - }, - [1489] = { - [sym_comment] = STATE(1489), - [ts_builtin_sym_end] = ACTIONS(1819), - [sym__newline] = ACTIONS(1819), - [anon_sym_SEMI] = ACTIONS(1819), - [anon_sym_PIPE] = ACTIONS(1819), - [anon_sym_err_GT_PIPE] = ACTIONS(1819), - [anon_sym_out_GT_PIPE] = ACTIONS(1819), - [anon_sym_e_GT_PIPE] = ACTIONS(1819), - [anon_sym_o_GT_PIPE] = ACTIONS(1819), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1819), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1819), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1819), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1819), - [anon_sym_LBRACK] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1811), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_DASH_DASH] = ACTIONS(1819), - [anon_sym_DASH2] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1811), - [anon_sym_LPAREN2] = ACTIONS(1813), - [anon_sym_DOT_DOT2] = ACTIONS(4786), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1811), - [anon_sym_DOT_DOT_LT] = ACTIONS(1811), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4788), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4788), - [anon_sym_null] = ACTIONS(1819), - [anon_sym_true] = ACTIONS(1819), - [anon_sym_false] = ACTIONS(1819), - [aux_sym__val_number_decimal_token1] = ACTIONS(1811), - [aux_sym__val_number_decimal_token2] = ACTIONS(1819), - [aux_sym__val_number_decimal_token3] = ACTIONS(1819), - [aux_sym__val_number_decimal_token4] = ACTIONS(1819), - [aux_sym__val_number_token1] = ACTIONS(1819), - [aux_sym__val_number_token2] = ACTIONS(1819), - [aux_sym__val_number_token3] = ACTIONS(1819), - [aux_sym__val_number_token4] = ACTIONS(1819), - [aux_sym__val_number_token5] = ACTIONS(1819), - [aux_sym__val_number_token6] = ACTIONS(1819), - [anon_sym_0b] = ACTIONS(1811), - [anon_sym_0o] = ACTIONS(1811), - [anon_sym_0x] = ACTIONS(1811), - [sym_val_date] = ACTIONS(1819), - [anon_sym_DQUOTE] = ACTIONS(1819), - [sym__str_single_quotes] = ACTIONS(1819), - [sym__str_back_ticks] = ACTIONS(1819), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1819), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1819), - [anon_sym_err_GT] = ACTIONS(1811), - [anon_sym_out_GT] = ACTIONS(1811), - [anon_sym_e_GT] = ACTIONS(1811), - [anon_sym_o_GT] = ACTIONS(1811), - [anon_sym_err_PLUSout_GT] = ACTIONS(1811), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1811), - [anon_sym_o_PLUSe_GT] = ACTIONS(1811), - [anon_sym_e_PLUSo_GT] = ACTIONS(1811), - [anon_sym_err_GT_GT] = ACTIONS(1819), - [anon_sym_out_GT_GT] = ACTIONS(1819), - [anon_sym_e_GT_GT] = ACTIONS(1819), - [anon_sym_o_GT_GT] = ACTIONS(1819), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1819), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1819), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1819), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1819), - [aux_sym_unquoted_token1] = ACTIONS(1811), - [aux_sym_unquoted_token2] = ACTIONS(1447), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1819), - }, - [1490] = { - [sym_cell_path] = STATE(1793), - [sym_path] = STATE(1692), - [sym_comment] = STATE(1490), - [aux_sym_cell_path_repeat1] = STATE(1564), - [sym__newline] = ACTIONS(1853), - [anon_sym_SEMI] = ACTIONS(1853), - [anon_sym_PIPE] = ACTIONS(1853), - [anon_sym_err_GT_PIPE] = ACTIONS(1853), - [anon_sym_out_GT_PIPE] = ACTIONS(1853), - [anon_sym_e_GT_PIPE] = ACTIONS(1853), - [anon_sym_o_GT_PIPE] = ACTIONS(1853), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1853), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1853), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1853), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1853), - [anon_sym_LBRACK] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(1853), - [anon_sym_RPAREN] = ACTIONS(1853), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_DASH2] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_RBRACE] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1851), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1853), - [anon_sym_DOT_DOT_LT] = ACTIONS(1853), - [anon_sym_null] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1853), - [anon_sym_false] = ACTIONS(1853), - [aux_sym__val_number_decimal_token1] = ACTIONS(1851), - [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_0b] = ACTIONS(1851), - [anon_sym_0o] = ACTIONS(1851), - [anon_sym_0x] = ACTIONS(1851), - [sym_val_date] = ACTIONS(1853), - [anon_sym_DQUOTE] = ACTIONS(1853), - [sym__str_single_quotes] = ACTIONS(1853), - [sym__str_back_ticks] = ACTIONS(1853), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1853), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1853), - [anon_sym_DOT2] = ACTIONS(4770), - [anon_sym_err_GT] = ACTIONS(1851), - [anon_sym_out_GT] = ACTIONS(1851), - [anon_sym_e_GT] = ACTIONS(1851), - [anon_sym_o_GT] = ACTIONS(1851), - [anon_sym_err_PLUSout_GT] = ACTIONS(1851), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1851), - [anon_sym_o_PLUSe_GT] = ACTIONS(1851), - [anon_sym_e_PLUSo_GT] = ACTIONS(1851), - [anon_sym_err_GT_GT] = ACTIONS(1853), - [anon_sym_out_GT_GT] = ACTIONS(1853), - [anon_sym_e_GT_GT] = ACTIONS(1853), - [anon_sym_o_GT_GT] = ACTIONS(1853), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1853), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1853), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1853), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1853), - [aux_sym_unquoted_token1] = ACTIONS(1851), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1853), - }, - [1491] = { - [sym_cell_path] = STATE(1796), - [sym_path] = STATE(1692), - [sym_comment] = STATE(1491), - [aux_sym_cell_path_repeat1] = STATE(1564), - [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_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_DOT2] = ACTIONS(4770), - [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(245), - [sym_raw_string_begin] = ACTIONS(1861), - }, - [1492] = { - [sym_cell_path] = STATE(1882), - [sym_path] = STATE(1692), - [sym_comment] = STATE(1492), - [aux_sym_cell_path_repeat1] = STATE(1564), - [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_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_DOT2] = ACTIONS(4770), - [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), + [1428] = { + [sym_comment] = STATE(1428), + [ts_builtin_sym_end] = ACTIONS(944), + [sym__newline] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(944), + [anon_sym_err_GT_PIPE] = ACTIONS(944), + [anon_sym_out_GT_PIPE] = ACTIONS(944), + [anon_sym_e_GT_PIPE] = ACTIONS(944), + [anon_sym_o_GT_PIPE] = ACTIONS(944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(944), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_DASH_DASH] = ACTIONS(944), + [anon_sym_DASH2] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_DOT_DOT] = ACTIONS(942), + [anon_sym_QMARK2] = ACTIONS(944), + [anon_sym_DOT_DOT2] = ACTIONS(942), + [anon_sym_DOT_DOT_EQ] = ACTIONS(942), + [anon_sym_DOT_DOT_LT] = ACTIONS(942), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(944), + [anon_sym_DOT_DOT_LT2] = ACTIONS(944), + [anon_sym_null] = ACTIONS(944), + [anon_sym_true] = ACTIONS(944), + [anon_sym_false] = ACTIONS(944), + [aux_sym__val_number_decimal_token1] = ACTIONS(942), + [aux_sym__val_number_decimal_token2] = ACTIONS(944), + [aux_sym__val_number_decimal_token3] = ACTIONS(944), + [aux_sym__val_number_decimal_token4] = ACTIONS(944), + [aux_sym__val_number_token1] = ACTIONS(944), + [aux_sym__val_number_token2] = ACTIONS(944), + [aux_sym__val_number_token3] = ACTIONS(944), + [aux_sym__val_number_token4] = ACTIONS(944), + [aux_sym__val_number_token5] = ACTIONS(944), + [aux_sym__val_number_token6] = ACTIONS(944), + [anon_sym_0b] = ACTIONS(942), + [anon_sym_0o] = ACTIONS(942), + [anon_sym_0x] = ACTIONS(942), + [sym_val_date] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(944), + [sym__str_single_quotes] = ACTIONS(944), + [sym__str_back_ticks] = ACTIONS(944), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(944), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(944), + [anon_sym_DOT2] = ACTIONS(942), + [anon_sym_err_GT] = ACTIONS(942), + [anon_sym_out_GT] = ACTIONS(942), + [anon_sym_e_GT] = ACTIONS(942), + [anon_sym_o_GT] = ACTIONS(942), + [anon_sym_err_PLUSout_GT] = ACTIONS(942), + [anon_sym_out_PLUSerr_GT] = ACTIONS(942), + [anon_sym_o_PLUSe_GT] = ACTIONS(942), + [anon_sym_e_PLUSo_GT] = ACTIONS(942), + [anon_sym_err_GT_GT] = ACTIONS(944), + [anon_sym_out_GT_GT] = ACTIONS(944), + [anon_sym_e_GT_GT] = ACTIONS(944), + [anon_sym_o_GT_GT] = ACTIONS(944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(944), + [aux_sym_unquoted_token1] = ACTIONS(942), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1865), - }, - [1493] = { - [sym_comment] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(1668), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_DOT_DOT] = ACTIONS(1666), - [anon_sym_DOT_DOT2] = ACTIONS(1666), - [anon_sym_DOT] = ACTIONS(4790), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1666), - [anon_sym_DOT_DOT_LT] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [aux_sym__immediate_decimal_token2] = ACTIONS(4792), - [anon_sym_null] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1668), - [aux_sym__val_number_token5] = ACTIONS(1668), - [aux_sym__val_number_token6] = ACTIONS(1668), - [anon_sym_0b] = ACTIONS(1666), - [anon_sym_0o] = ACTIONS(1666), - [anon_sym_0x] = ACTIONS(1666), - [sym_val_date] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_err_GT] = ACTIONS(1666), - [anon_sym_out_GT] = ACTIONS(1666), - [anon_sym_e_GT] = ACTIONS(1666), - [anon_sym_o_GT] = ACTIONS(1666), - [anon_sym_err_PLUSout_GT] = ACTIONS(1666), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), - [anon_sym_o_PLUSe_GT] = ACTIONS(1666), - [anon_sym_e_PLUSo_GT] = ACTIONS(1666), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [aux_sym_unquoted_token1] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), + [sym_raw_string_begin] = ACTIONS(944), }, - [1494] = { - [sym_cell_path] = STATE(1913), - [sym_path] = STATE(1692), - [sym_comment] = STATE(1494), - [aux_sym_cell_path_repeat1] = STATE(1564), - [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_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_DOT2] = ACTIONS(4770), - [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), + [1429] = { + [sym_cell_path] = STATE(1736), + [sym_path] = STATE(1592), + [sym_comment] = STATE(1429), + [aux_sym_cell_path_repeat1] = STATE(1479), + [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_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_DOT2] = ACTIONS(4714), + [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(245), - [sym_raw_string_begin] = ACTIONS(1881), + [sym_raw_string_begin] = ACTIONS(1869), }, - [1495] = { - [sym_comment] = STATE(1495), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_GT2] = ACTIONS(1666), - [anon_sym_DASH2] = ACTIONS(1668), - [anon_sym_in2] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_STAR2] = ACTIONS(1666), - [anon_sym_and2] = ACTIONS(1668), - [anon_sym_xor2] = ACTIONS(1668), - [anon_sym_or2] = ACTIONS(1668), - [anon_sym_not_DASHin2] = ACTIONS(1668), - [anon_sym_has2] = ACTIONS(1668), - [anon_sym_not_DASHhas2] = ACTIONS(1668), - [anon_sym_starts_DASHwith2] = ACTIONS(1668), - [anon_sym_ends_DASHwith2] = ACTIONS(1668), - [anon_sym_EQ_EQ2] = ACTIONS(1668), - [anon_sym_BANG_EQ2] = ACTIONS(1668), - [anon_sym_LT2] = ACTIONS(1666), - [anon_sym_LT_EQ2] = ACTIONS(1668), - [anon_sym_GT_EQ2] = ACTIONS(1668), - [anon_sym_EQ_TILDE2] = ACTIONS(1668), - [anon_sym_BANG_TILDE2] = ACTIONS(1668), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_STAR_STAR2] = ACTIONS(1668), - [anon_sym_PLUS_PLUS2] = ACTIONS(1668), - [anon_sym_SLASH2] = ACTIONS(1666), - [anon_sym_mod2] = ACTIONS(1668), - [anon_sym_SLASH_SLASH2] = ACTIONS(1668), - [anon_sym_PLUS2] = ACTIONS(1666), - [anon_sym_bit_DASHshl2] = ACTIONS(1668), - [anon_sym_bit_DASHshr2] = ACTIONS(1668), - [anon_sym_bit_DASHand2] = ACTIONS(1668), - [anon_sym_bit_DASHxor2] = ACTIONS(1668), - [anon_sym_bit_DASHor2] = ACTIONS(1668), - [anon_sym_DOT_DOT2] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [aux_sym__immediate_decimal_token2] = ACTIONS(4695), - [anon_sym_err_GT] = ACTIONS(1666), - [anon_sym_out_GT] = ACTIONS(1666), - [anon_sym_e_GT] = ACTIONS(1666), - [anon_sym_o_GT] = ACTIONS(1666), - [anon_sym_err_PLUSout_GT] = ACTIONS(1666), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), - [anon_sym_o_PLUSe_GT] = ACTIONS(1666), - [anon_sym_e_PLUSo_GT] = ACTIONS(1666), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [aux_sym_unquoted_token2] = ACTIONS(1666), + [1430] = { + [sym_comment] = STATE(1430), + [ts_builtin_sym_end] = ACTIONS(1501), + [sym__newline] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_err_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_GT_PIPE] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1501), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1501), + [anon_sym_in2] = ACTIONS(1501), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1501), + [anon_sym_xor2] = ACTIONS(1501), + [anon_sym_or2] = ACTIONS(1501), + [anon_sym_not_DASHin2] = ACTIONS(1501), + [anon_sym_has2] = ACTIONS(1501), + [anon_sym_not_DASHhas2] = ACTIONS(1501), + [anon_sym_starts_DASHwith2] = ACTIONS(1501), + [anon_sym_ends_DASHwith2] = ACTIONS(1501), + [anon_sym_EQ_EQ2] = ACTIONS(1501), + [anon_sym_BANG_EQ2] = ACTIONS(1501), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1501), + [anon_sym_GT_EQ2] = ACTIONS(1501), + [anon_sym_EQ_TILDE2] = ACTIONS(1501), + [anon_sym_BANG_TILDE2] = ACTIONS(1501), + [anon_sym_LPAREN2] = ACTIONS(1501), + [anon_sym_STAR_STAR2] = ACTIONS(1501), + [anon_sym_PLUS_PLUS2] = ACTIONS(1501), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1501), + [anon_sym_SLASH_SLASH2] = ACTIONS(1501), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1501), + [anon_sym_bit_DASHshr2] = ACTIONS(1501), + [anon_sym_bit_DASHand2] = ACTIONS(1501), + [anon_sym_bit_DASHxor2] = ACTIONS(1501), + [anon_sym_bit_DASHor2] = ACTIONS(1501), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [aux_sym__immediate_decimal_token2] = ACTIONS(4698), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1501), + [anon_sym_out_GT_GT] = ACTIONS(1501), + [anon_sym_e_GT_GT] = ACTIONS(1501), + [anon_sym_o_GT_GT] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1501), + [aux_sym_unquoted_token2] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(245), }, - [1496] = { - [sym_cell_path] = STATE(1924), - [sym_path] = STATE(1692), - [sym_comment] = STATE(1496), - [aux_sym_cell_path_repeat1] = STATE(1564), - [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_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_DOT2] = ACTIONS(4770), - [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(245), - [sym_raw_string_begin] = ACTIONS(1897), - }, - [1497] = { - [sym_comment] = STATE(1497), + [1431] = { + [sym_comment] = STATE(1431), [sym__newline] = ACTIONS(972), [anon_sym_SEMI] = ACTIONS(972), [anon_sym_PIPE] = ACTIONS(972), @@ -217332,428 +210071,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(972), }, - [1498] = { - [sym_cell_path] = STATE(1926), - [sym_path] = STATE(1692), - [sym_comment] = STATE(1498), - [aux_sym_cell_path_repeat1] = STATE(1564), - [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_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_DOT2] = ACTIONS(4770), - [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(245), - [sym_raw_string_begin] = ACTIONS(1915), - }, - [1499] = { - [sym_comment] = STATE(1499), - [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(1719), - [anon_sym_DASH2] = ACTIONS(1721), - [anon_sym_in2] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_STAR2] = ACTIONS(1719), - [anon_sym_and2] = ACTIONS(1721), - [anon_sym_xor2] = ACTIONS(1721), - [anon_sym_or2] = ACTIONS(1721), - [anon_sym_not_DASHin2] = ACTIONS(1721), - [anon_sym_has2] = ACTIONS(1721), - [anon_sym_not_DASHhas2] = 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(1719), - [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(1721), - [anon_sym_STAR_STAR2] = ACTIONS(1721), - [anon_sym_PLUS_PLUS2] = ACTIONS(1721), - [anon_sym_SLASH2] = ACTIONS(1719), - [anon_sym_mod2] = ACTIONS(1721), - [anon_sym_SLASH_SLASH2] = ACTIONS(1721), - [anon_sym_PLUS2] = ACTIONS(1719), - [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(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1721), - [aux_sym__immediate_decimal_token2] = ACTIONS(4794), - [anon_sym_err_GT] = ACTIONS(1719), - [anon_sym_out_GT] = ACTIONS(1719), - [anon_sym_e_GT] = ACTIONS(1719), - [anon_sym_o_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT] = ACTIONS(1719), - [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(1719), - [anon_sym_POUND] = ACTIONS(245), - }, - [1500] = { - [sym_comment] = STATE(1500), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_DOT_DOT] = ACTIONS(1666), - [anon_sym_DOT_DOT2] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1666), - [anon_sym_DOT_DOT_LT] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [aux_sym__immediate_decimal_token2] = ACTIONS(4744), - [anon_sym_null] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1668), - [aux_sym__val_number_token5] = ACTIONS(1668), - [aux_sym__val_number_token6] = ACTIONS(1668), - [anon_sym_0b] = ACTIONS(1666), - [anon_sym_0o] = ACTIONS(1666), - [anon_sym_0x] = ACTIONS(1666), - [sym_val_date] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_err_GT] = ACTIONS(1666), - [anon_sym_out_GT] = ACTIONS(1666), - [anon_sym_e_GT] = ACTIONS(1666), - [anon_sym_o_GT] = ACTIONS(1666), - [anon_sym_err_PLUSout_GT] = ACTIONS(1666), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), - [anon_sym_o_PLUSe_GT] = ACTIONS(1666), - [anon_sym_e_PLUSo_GT] = ACTIONS(1666), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [aux_sym_unquoted_token1] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), - }, - [1501] = { - [sym_cell_path] = STATE(1928), - [sym_path] = STATE(1692), - [sym_comment] = STATE(1501), - [aux_sym_cell_path_repeat1] = STATE(1564), - [sym__newline] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_PIPE] = ACTIONS(1947), - [anon_sym_err_GT_PIPE] = ACTIONS(1947), - [anon_sym_out_GT_PIPE] = ACTIONS(1947), - [anon_sym_e_GT_PIPE] = ACTIONS(1947), - [anon_sym_o_GT_PIPE] = ACTIONS(1947), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1947), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1947), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1947), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1947), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_RPAREN] = ACTIONS(1947), - [anon_sym_DOLLAR] = ACTIONS(1945), - [anon_sym_DASH_DASH] = ACTIONS(1947), - [anon_sym_DASH2] = ACTIONS(1945), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1945), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1947), - [anon_sym_DOT_DOT_LT] = ACTIONS(1947), - [anon_sym_null] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1947), - [anon_sym_false] = ACTIONS(1947), - [aux_sym__val_number_decimal_token1] = ACTIONS(1945), - [aux_sym__val_number_decimal_token2] = ACTIONS(1947), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(1947), - [aux_sym__val_number_token2] = ACTIONS(1947), - [aux_sym__val_number_token3] = ACTIONS(1947), - [aux_sym__val_number_token4] = ACTIONS(1947), - [aux_sym__val_number_token5] = ACTIONS(1947), - [aux_sym__val_number_token6] = ACTIONS(1947), - [anon_sym_0b] = ACTIONS(1945), - [anon_sym_0o] = ACTIONS(1945), - [anon_sym_0x] = ACTIONS(1945), - [sym_val_date] = ACTIONS(1947), - [anon_sym_DQUOTE] = ACTIONS(1947), - [sym__str_single_quotes] = ACTIONS(1947), - [sym__str_back_ticks] = ACTIONS(1947), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1947), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1947), - [anon_sym_DOT2] = ACTIONS(4770), - [anon_sym_err_GT] = ACTIONS(1945), - [anon_sym_out_GT] = ACTIONS(1945), - [anon_sym_e_GT] = ACTIONS(1945), - [anon_sym_o_GT] = ACTIONS(1945), - [anon_sym_err_PLUSout_GT] = ACTIONS(1945), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1945), - [anon_sym_o_PLUSe_GT] = ACTIONS(1945), - [anon_sym_e_PLUSo_GT] = ACTIONS(1945), - [anon_sym_err_GT_GT] = ACTIONS(1947), - [anon_sym_out_GT_GT] = ACTIONS(1947), - [anon_sym_e_GT_GT] = ACTIONS(1947), - [anon_sym_o_GT_GT] = ACTIONS(1947), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1947), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1947), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1947), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1947), - [aux_sym_unquoted_token1] = ACTIONS(1945), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1947), + [1432] = { + [sym_cell_path] = STATE(1811), + [sym_path] = STATE(1592), + [sym_comment] = STATE(1432), + [aux_sym_cell_path_repeat1] = STATE(1479), + [sym__newline] = ACTIONS(1847), + [anon_sym_SEMI] = ACTIONS(1847), + [anon_sym_PIPE] = ACTIONS(1847), + [anon_sym_err_GT_PIPE] = ACTIONS(1847), + [anon_sym_out_GT_PIPE] = ACTIONS(1847), + [anon_sym_e_GT_PIPE] = ACTIONS(1847), + [anon_sym_o_GT_PIPE] = ACTIONS(1847), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1847), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1847), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1847), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1847), + [anon_sym_RPAREN] = ACTIONS(1847), + [anon_sym_DOLLAR] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [anon_sym_DASH2] = ACTIONS(1845), + [anon_sym_LBRACE] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1847), + [anon_sym_DOT_DOT] = ACTIONS(1845), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1847), + [anon_sym_DOT_DOT_LT] = ACTIONS(1847), + [anon_sym_null] = ACTIONS(1847), + [anon_sym_true] = ACTIONS(1847), + [anon_sym_false] = ACTIONS(1847), + [aux_sym__val_number_decimal_token1] = ACTIONS(1845), + [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_0b] = ACTIONS(1845), + [anon_sym_0o] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1845), + [sym_val_date] = ACTIONS(1847), + [anon_sym_DQUOTE] = ACTIONS(1847), + [sym__str_single_quotes] = ACTIONS(1847), + [sym__str_back_ticks] = ACTIONS(1847), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1847), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1847), + [anon_sym_DOT2] = ACTIONS(4714), + [anon_sym_err_GT] = ACTIONS(1845), + [anon_sym_out_GT] = ACTIONS(1845), + [anon_sym_e_GT] = ACTIONS(1845), + [anon_sym_o_GT] = ACTIONS(1845), + [anon_sym_err_PLUSout_GT] = ACTIONS(1845), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1845), + [anon_sym_o_PLUSe_GT] = ACTIONS(1845), + [anon_sym_e_PLUSo_GT] = ACTIONS(1845), + [anon_sym_err_GT_GT] = ACTIONS(1847), + [anon_sym_out_GT_GT] = ACTIONS(1847), + [anon_sym_e_GT_GT] = ACTIONS(1847), + [anon_sym_o_GT_GT] = ACTIONS(1847), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1847), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1847), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1847), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1847), + [aux_sym_unquoted_token1] = ACTIONS(1845), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1847), }, - [1502] = { - [sym_comment] = STATE(1502), - [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(1719), - [anon_sym_DASH_DASH] = ACTIONS(1721), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1719), - [anon_sym_DOT_DOT2] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1719), - [anon_sym_DOT_DOT_LT] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1721), - [aux_sym__immediate_decimal_token2] = ACTIONS(4796), - [anon_sym_null] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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(1719), - [anon_sym_0o] = ACTIONS(1719), - [anon_sym_0x] = ACTIONS(1719), - [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(1719), - [anon_sym_out_GT] = ACTIONS(1719), - [anon_sym_e_GT] = ACTIONS(1719), - [anon_sym_o_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT] = ACTIONS(1719), - [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(1719), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1721), + [1433] = { + [sym_comment] = STATE(1433), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1701), + [anon_sym_DOT_DOT_LT] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4684), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), }, - [1503] = { - [sym_comment] = STATE(1503), - [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_DOT_DOT2] = 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_DOT2] = ACTIONS(978), - [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(245), - [sym_raw_string_begin] = ACTIONS(980), + [1434] = { + [sym_comment] = STATE(1434), + [ts_builtin_sym_end] = ACTIONS(1790), + [sym__newline] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_err_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_GT_PIPE] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_DOLLAR] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1790), + [anon_sym_DASH2] = ACTIONS(1782), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_LPAREN2] = ACTIONS(1784), + [anon_sym_DOT_DOT2] = ACTIONS(4744), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1782), + [anon_sym_DOT_DOT_LT] = ACTIONS(1782), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4746), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4746), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [aux_sym__val_number_decimal_token1] = ACTIONS(1782), + [aux_sym__val_number_decimal_token2] = ACTIONS(1790), + [aux_sym__val_number_decimal_token3] = ACTIONS(1790), + [aux_sym__val_number_decimal_token4] = ACTIONS(1790), + [aux_sym__val_number_token1] = ACTIONS(1790), + [aux_sym__val_number_token2] = ACTIONS(1790), + [aux_sym__val_number_token3] = ACTIONS(1790), + [aux_sym__val_number_token4] = ACTIONS(1790), + [aux_sym__val_number_token5] = ACTIONS(1790), + [aux_sym__val_number_token6] = ACTIONS(1790), + [anon_sym_0b] = ACTIONS(1782), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0x] = ACTIONS(1782), + [sym_val_date] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [sym__str_single_quotes] = ACTIONS(1790), + [sym__str_back_ticks] = ACTIONS(1790), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1790), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1790), + [anon_sym_err_GT] = ACTIONS(1782), + [anon_sym_out_GT] = ACTIONS(1782), + [anon_sym_e_GT] = ACTIONS(1782), + [anon_sym_o_GT] = ACTIONS(1782), + [anon_sym_err_PLUSout_GT] = ACTIONS(1782), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1782), + [anon_sym_o_PLUSe_GT] = ACTIONS(1782), + [anon_sym_e_PLUSo_GT] = ACTIONS(1782), + [anon_sym_err_GT_GT] = ACTIONS(1790), + [anon_sym_out_GT_GT] = ACTIONS(1790), + [anon_sym_e_GT_GT] = ACTIONS(1790), + [anon_sym_o_GT_GT] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), + [aux_sym_unquoted_token1] = ACTIONS(1782), + [aux_sym_unquoted_token2] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1790), }, - [1504] = { - [sym_comment] = STATE(1504), + [1435] = { + [sym_comment] = STATE(1435), [sym__newline] = ACTIONS(976), [anon_sym_SEMI] = ACTIONS(976), [anon_sym_PIPE] = ACTIONS(976), @@ -217822,784 +210351,434 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(976), }, - [1505] = { - [sym_cell_path] = STATE(1969), - [sym_path] = STATE(1692), - [sym_comment] = STATE(1505), - [aux_sym_cell_path_repeat1] = STATE(1564), - [sym__newline] = ACTIONS(1845), - [anon_sym_SEMI] = ACTIONS(1845), - [anon_sym_PIPE] = ACTIONS(1845), - [anon_sym_err_GT_PIPE] = ACTIONS(1845), - [anon_sym_out_GT_PIPE] = ACTIONS(1845), - [anon_sym_e_GT_PIPE] = ACTIONS(1845), - [anon_sym_o_GT_PIPE] = ACTIONS(1845), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1845), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1845), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1845), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_RPAREN] = ACTIONS(1845), - [anon_sym_DOLLAR] = ACTIONS(1843), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [anon_sym_DASH2] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_RBRACE] = ACTIONS(1845), - [anon_sym_DOT_DOT] = ACTIONS(1843), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1845), - [anon_sym_DOT_DOT_LT] = ACTIONS(1845), - [anon_sym_null] = ACTIONS(1845), - [anon_sym_true] = ACTIONS(1845), - [anon_sym_false] = ACTIONS(1845), - [aux_sym__val_number_decimal_token1] = ACTIONS(1843), - [aux_sym__val_number_decimal_token2] = ACTIONS(1845), - [aux_sym__val_number_decimal_token3] = ACTIONS(1845), - [aux_sym__val_number_decimal_token4] = ACTIONS(1845), - [aux_sym__val_number_token1] = ACTIONS(1845), - [aux_sym__val_number_token2] = ACTIONS(1845), - [aux_sym__val_number_token3] = ACTIONS(1845), - [aux_sym__val_number_token4] = ACTIONS(1845), - [aux_sym__val_number_token5] = ACTIONS(1845), - [aux_sym__val_number_token6] = ACTIONS(1845), - [anon_sym_0b] = ACTIONS(1843), - [anon_sym_0o] = ACTIONS(1843), - [anon_sym_0x] = ACTIONS(1843), - [sym_val_date] = ACTIONS(1845), - [anon_sym_DQUOTE] = ACTIONS(1845), - [sym__str_single_quotes] = ACTIONS(1845), - [sym__str_back_ticks] = ACTIONS(1845), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1845), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1845), - [anon_sym_DOT2] = ACTIONS(4770), - [anon_sym_err_GT] = ACTIONS(1843), - [anon_sym_out_GT] = ACTIONS(1843), - [anon_sym_e_GT] = ACTIONS(1843), - [anon_sym_o_GT] = ACTIONS(1843), - [anon_sym_err_PLUSout_GT] = ACTIONS(1843), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1843), - [anon_sym_o_PLUSe_GT] = ACTIONS(1843), - [anon_sym_e_PLUSo_GT] = ACTIONS(1843), - [anon_sym_err_GT_GT] = ACTIONS(1845), - [anon_sym_out_GT_GT] = ACTIONS(1845), - [anon_sym_e_GT_GT] = ACTIONS(1845), - [anon_sym_o_GT_GT] = ACTIONS(1845), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1845), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1845), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1845), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1845), - [aux_sym_unquoted_token1] = ACTIONS(1843), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1845), - }, - [1506] = { - [sym_comment] = STATE(1506), - [ts_builtin_sym_end] = ACTIONS(1786), - [sym__newline] = ACTIONS(1786), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1786), - [anon_sym_err_GT_PIPE] = ACTIONS(1786), - [anon_sym_out_GT_PIPE] = ACTIONS(1786), - [anon_sym_e_GT_PIPE] = ACTIONS(1786), - [anon_sym_o_GT_PIPE] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1786), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_DOLLAR] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_DASH2] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_DOT_DOT] = ACTIONS(1778), - [anon_sym_LPAREN2] = ACTIONS(1780), - [anon_sym_DOT_DOT2] = ACTIONS(4798), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1778), - [anon_sym_DOT_DOT_LT] = ACTIONS(1778), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4800), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4800), - [anon_sym_null] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1786), - [anon_sym_false] = ACTIONS(1786), - [aux_sym__val_number_decimal_token1] = ACTIONS(1778), - [aux_sym__val_number_decimal_token2] = ACTIONS(1786), - [aux_sym__val_number_decimal_token3] = ACTIONS(1786), - [aux_sym__val_number_decimal_token4] = ACTIONS(1786), - [aux_sym__val_number_token1] = ACTIONS(1786), - [aux_sym__val_number_token2] = ACTIONS(1786), - [aux_sym__val_number_token3] = ACTIONS(1786), - [aux_sym__val_number_token4] = ACTIONS(1786), - [aux_sym__val_number_token5] = ACTIONS(1786), - [aux_sym__val_number_token6] = ACTIONS(1786), - [anon_sym_0b] = ACTIONS(1778), - [anon_sym_0o] = ACTIONS(1778), - [anon_sym_0x] = ACTIONS(1778), - [sym_val_date] = ACTIONS(1786), - [anon_sym_DQUOTE] = ACTIONS(1786), - [sym__str_single_quotes] = ACTIONS(1786), - [sym__str_back_ticks] = ACTIONS(1786), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1786), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1786), - [anon_sym_err_GT] = ACTIONS(1778), - [anon_sym_out_GT] = ACTIONS(1778), - [anon_sym_e_GT] = ACTIONS(1778), - [anon_sym_o_GT] = ACTIONS(1778), - [anon_sym_err_PLUSout_GT] = ACTIONS(1778), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1778), - [anon_sym_o_PLUSe_GT] = ACTIONS(1778), - [anon_sym_e_PLUSo_GT] = ACTIONS(1778), - [anon_sym_err_GT_GT] = ACTIONS(1786), - [anon_sym_out_GT_GT] = ACTIONS(1786), - [anon_sym_e_GT_GT] = ACTIONS(1786), - [anon_sym_o_GT_GT] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1786), - [aux_sym_unquoted_token1] = ACTIONS(1778), - [aux_sym_unquoted_token2] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1786), - }, - [1507] = { - [sym_comment] = STATE(1507), - [sym__newline] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_PIPE] = ACTIONS(1494), - [anon_sym_err_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_GT_PIPE] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1494), - [anon_sym_RPAREN] = ACTIONS(1494), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1494), - [anon_sym_in2] = ACTIONS(1494), - [anon_sym_RBRACE] = ACTIONS(1494), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1494), - [anon_sym_xor2] = ACTIONS(1494), - [anon_sym_or2] = ACTIONS(1494), - [anon_sym_not_DASHin2] = ACTIONS(1494), - [anon_sym_has2] = ACTIONS(1494), - [anon_sym_not_DASHhas2] = ACTIONS(1494), - [anon_sym_starts_DASHwith2] = ACTIONS(1494), - [anon_sym_ends_DASHwith2] = ACTIONS(1494), - [anon_sym_EQ_EQ2] = ACTIONS(1494), - [anon_sym_BANG_EQ2] = ACTIONS(1494), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1494), - [anon_sym_GT_EQ2] = ACTIONS(1494), - [anon_sym_EQ_TILDE2] = ACTIONS(1494), - [anon_sym_BANG_TILDE2] = ACTIONS(1494), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_STAR_STAR2] = ACTIONS(1494), - [anon_sym_PLUS_PLUS2] = ACTIONS(1494), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1494), - [anon_sym_SLASH_SLASH2] = ACTIONS(1494), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1494), - [anon_sym_bit_DASHshr2] = ACTIONS(1494), - [anon_sym_bit_DASHand2] = ACTIONS(1494), - [anon_sym_bit_DASHxor2] = ACTIONS(1494), - [anon_sym_bit_DASHor2] = ACTIONS(1494), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1494), - [anon_sym_out_GT_GT] = ACTIONS(1494), - [anon_sym_e_GT_GT] = ACTIONS(1494), - [anon_sym_o_GT_GT] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1494), - [aux_sym_unquoted_token2] = ACTIONS(1492), + [1436] = { + [sym_cell_path] = STATE(1834), + [sym_path] = STATE(1374), + [sym_comment] = STATE(1436), + [aux_sym_cell_path_repeat1] = STATE(1284), + [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_if] = 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_has2] = ACTIONS(1865), + [anon_sym_not_DASHhas2] = 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_DOT2] = ACTIONS(4722), + [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(245), }, - [1508] = { - [sym_comment] = STATE(1508), - [ts_builtin_sym_end] = ACTIONS(1650), - [sym__newline] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_err_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_GT_PIPE] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DASH2] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1648), - [anon_sym_DOT_DOT_LT] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [aux_sym__immediate_decimal_token1] = ACTIONS(4802), - [aux_sym__immediate_decimal_token2] = ACTIONS(4804), - [anon_sym_null] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [aux_sym__val_number_token4] = ACTIONS(1650), - [aux_sym__val_number_token5] = ACTIONS(1650), - [aux_sym__val_number_token6] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1648), - [anon_sym_0o] = ACTIONS(1648), - [anon_sym_0x] = ACTIONS(1648), - [sym_val_date] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_err_GT] = ACTIONS(1648), - [anon_sym_out_GT] = ACTIONS(1648), - [anon_sym_e_GT] = ACTIONS(1648), - [anon_sym_o_GT] = ACTIONS(1648), - [anon_sym_err_PLUSout_GT] = ACTIONS(1648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), - [anon_sym_o_PLUSe_GT] = ACTIONS(1648), - [anon_sym_e_PLUSo_GT] = ACTIONS(1648), - [anon_sym_err_GT_GT] = ACTIONS(1650), - [anon_sym_out_GT_GT] = ACTIONS(1650), - [anon_sym_e_GT_GT] = ACTIONS(1650), - [anon_sym_o_GT_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), - [aux_sym_unquoted_token1] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1650), - }, - [1509] = { - [sym_comment] = STATE(1509), - [sym__newline] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1486), - [anon_sym_err_GT_PIPE] = ACTIONS(1486), - [anon_sym_out_GT_PIPE] = ACTIONS(1486), - [anon_sym_e_GT_PIPE] = ACTIONS(1486), - [anon_sym_o_GT_PIPE] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1486), - [anon_sym_RPAREN] = ACTIONS(1486), - [anon_sym_GT2] = ACTIONS(1484), - [anon_sym_DASH2] = ACTIONS(1486), - [anon_sym_in2] = ACTIONS(1486), - [anon_sym_RBRACE] = ACTIONS(1486), - [anon_sym_STAR2] = ACTIONS(1484), - [anon_sym_and2] = ACTIONS(1486), - [anon_sym_xor2] = ACTIONS(1486), - [anon_sym_or2] = ACTIONS(1486), - [anon_sym_not_DASHin2] = ACTIONS(1486), - [anon_sym_has2] = ACTIONS(1486), - [anon_sym_not_DASHhas2] = ACTIONS(1486), - [anon_sym_starts_DASHwith2] = ACTIONS(1486), - [anon_sym_ends_DASHwith2] = ACTIONS(1486), - [anon_sym_EQ_EQ2] = ACTIONS(1486), - [anon_sym_BANG_EQ2] = ACTIONS(1486), - [anon_sym_LT2] = ACTIONS(1484), - [anon_sym_LT_EQ2] = ACTIONS(1486), - [anon_sym_GT_EQ2] = ACTIONS(1486), - [anon_sym_EQ_TILDE2] = ACTIONS(1486), - [anon_sym_BANG_TILDE2] = ACTIONS(1486), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_STAR_STAR2] = ACTIONS(1486), - [anon_sym_PLUS_PLUS2] = ACTIONS(1486), - [anon_sym_SLASH2] = ACTIONS(1484), - [anon_sym_mod2] = ACTIONS(1486), - [anon_sym_SLASH_SLASH2] = ACTIONS(1486), - [anon_sym_PLUS2] = ACTIONS(1484), - [anon_sym_bit_DASHshl2] = ACTIONS(1486), - [anon_sym_bit_DASHshr2] = ACTIONS(1486), - [anon_sym_bit_DASHand2] = ACTIONS(1486), - [anon_sym_bit_DASHxor2] = ACTIONS(1486), - [anon_sym_bit_DASHor2] = ACTIONS(1486), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [sym_filesize_unit] = ACTIONS(1484), - [sym_duration_unit] = ACTIONS(1486), - [anon_sym_err_GT] = ACTIONS(1484), - [anon_sym_out_GT] = ACTIONS(1484), - [anon_sym_e_GT] = ACTIONS(1484), - [anon_sym_o_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT] = ACTIONS(1484), - [anon_sym_err_GT_GT] = ACTIONS(1486), - [anon_sym_out_GT_GT] = ACTIONS(1486), - [anon_sym_e_GT_GT] = ACTIONS(1486), - [anon_sym_o_GT_GT] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1486), - [aux_sym_unquoted_token2] = ACTIONS(1484), + [1437] = { + [sym_cell_path] = STATE(1835), + [sym_path] = STATE(1374), + [sym_comment] = STATE(1437), + [aux_sym_cell_path_repeat1] = STATE(1284), + [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_has2] = ACTIONS(1909), + [anon_sym_not_DASHhas2] = 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_DOT2] = ACTIONS(4722), + [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(245), }, - [1510] = { - [sym_comment] = STATE(1510), - [sym__newline] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1540), - [anon_sym_err_GT_PIPE] = ACTIONS(1540), - [anon_sym_out_GT_PIPE] = ACTIONS(1540), - [anon_sym_e_GT_PIPE] = ACTIONS(1540), - [anon_sym_o_GT_PIPE] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1540), - [anon_sym_RPAREN] = ACTIONS(1540), - [anon_sym_GT2] = ACTIONS(1538), - [anon_sym_DASH2] = ACTIONS(1540), - [anon_sym_in2] = ACTIONS(1540), - [anon_sym_RBRACE] = ACTIONS(1540), - [anon_sym_STAR2] = ACTIONS(1538), - [anon_sym_and2] = ACTIONS(1540), - [anon_sym_xor2] = ACTIONS(1540), - [anon_sym_or2] = ACTIONS(1540), - [anon_sym_not_DASHin2] = ACTIONS(1540), - [anon_sym_has2] = ACTIONS(1540), - [anon_sym_not_DASHhas2] = ACTIONS(1540), - [anon_sym_starts_DASHwith2] = ACTIONS(1540), - [anon_sym_ends_DASHwith2] = ACTIONS(1540), - [anon_sym_EQ_EQ2] = ACTIONS(1540), - [anon_sym_BANG_EQ2] = ACTIONS(1540), - [anon_sym_LT2] = ACTIONS(1538), - [anon_sym_LT_EQ2] = ACTIONS(1540), - [anon_sym_GT_EQ2] = ACTIONS(1540), - [anon_sym_EQ_TILDE2] = ACTIONS(1540), - [anon_sym_BANG_TILDE2] = ACTIONS(1540), - [anon_sym_LPAREN2] = ACTIONS(1540), - [anon_sym_STAR_STAR2] = ACTIONS(1540), - [anon_sym_PLUS_PLUS2] = ACTIONS(1540), - [anon_sym_SLASH2] = ACTIONS(1538), - [anon_sym_mod2] = ACTIONS(1540), - [anon_sym_SLASH_SLASH2] = ACTIONS(1540), - [anon_sym_PLUS2] = ACTIONS(1538), - [anon_sym_bit_DASHshl2] = ACTIONS(1540), - [anon_sym_bit_DASHshr2] = ACTIONS(1540), - [anon_sym_bit_DASHand2] = ACTIONS(1540), - [anon_sym_bit_DASHxor2] = ACTIONS(1540), - [anon_sym_bit_DASHor2] = ACTIONS(1540), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1540), - [anon_sym_err_GT] = ACTIONS(1538), - [anon_sym_out_GT] = ACTIONS(1538), - [anon_sym_e_GT] = ACTIONS(1538), - [anon_sym_o_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT] = ACTIONS(1538), - [anon_sym_err_GT_GT] = ACTIONS(1540), - [anon_sym_out_GT_GT] = ACTIONS(1540), - [anon_sym_e_GT_GT] = ACTIONS(1540), - [anon_sym_o_GT_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1540), - [aux_sym_unquoted_token2] = ACTIONS(1538), + [1438] = { + [sym_cell_path] = STATE(1837), + [sym_path] = STATE(1374), + [sym_comment] = STATE(1438), + [aux_sym_cell_path_repeat1] = STATE(1284), + [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_has2] = ACTIONS(1873), + [anon_sym_not_DASHhas2] = 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_DOT2] = ACTIONS(4722), + [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(245), }, - [1511] = { - [sym_comment] = STATE(1511), - [sym__newline] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_err_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_GT_PIPE] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), - [anon_sym_RPAREN] = ACTIONS(1717), - [anon_sym_GT2] = ACTIONS(1715), - [anon_sym_DASH2] = ACTIONS(1717), - [anon_sym_in2] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_STAR2] = ACTIONS(1715), - [anon_sym_and2] = ACTIONS(1717), - [anon_sym_xor2] = ACTIONS(1717), - [anon_sym_or2] = ACTIONS(1717), - [anon_sym_not_DASHin2] = ACTIONS(1717), - [anon_sym_has2] = ACTIONS(1717), - [anon_sym_not_DASHhas2] = ACTIONS(1717), - [anon_sym_starts_DASHwith2] = ACTIONS(1717), - [anon_sym_ends_DASHwith2] = ACTIONS(1717), - [anon_sym_EQ_EQ2] = ACTIONS(1717), - [anon_sym_BANG_EQ2] = ACTIONS(1717), - [anon_sym_LT2] = ACTIONS(1715), - [anon_sym_LT_EQ2] = ACTIONS(1717), - [anon_sym_GT_EQ2] = ACTIONS(1717), - [anon_sym_EQ_TILDE2] = ACTIONS(1717), - [anon_sym_BANG_TILDE2] = ACTIONS(1717), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_STAR_STAR2] = ACTIONS(1717), - [anon_sym_PLUS_PLUS2] = ACTIONS(1717), - [anon_sym_SLASH2] = ACTIONS(1715), - [anon_sym_mod2] = ACTIONS(1717), - [anon_sym_SLASH_SLASH2] = ACTIONS(1717), - [anon_sym_PLUS2] = ACTIONS(1715), - [anon_sym_bit_DASHshl2] = ACTIONS(1717), - [anon_sym_bit_DASHshr2] = ACTIONS(1717), - [anon_sym_bit_DASHand2] = ACTIONS(1717), - [anon_sym_bit_DASHxor2] = ACTIONS(1717), - [anon_sym_bit_DASHor2] = ACTIONS(1717), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [sym_filesize_unit] = ACTIONS(1715), - [sym_duration_unit] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1717), - [anon_sym_out_GT_GT] = ACTIONS(1717), - [anon_sym_e_GT_GT] = ACTIONS(1717), - [anon_sym_o_GT_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), - [aux_sym_unquoted_token2] = ACTIONS(1715), + [1439] = { + [sym_comment] = STATE(1439), + [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_DOT_DOT2] = 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_DOT2] = ACTIONS(978), + [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(245), + [sym_raw_string_begin] = ACTIONS(980), }, - [1512] = { - [sym_cell_path] = STATE(1923), - [sym_path] = STATE(1692), - [sym_comment] = STATE(1512), - [aux_sym_cell_path_repeat1] = STATE(1564), - [sym__newline] = ACTIONS(1841), - [anon_sym_SEMI] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_err_GT_PIPE] = ACTIONS(1841), - [anon_sym_out_GT_PIPE] = ACTIONS(1841), - [anon_sym_e_GT_PIPE] = ACTIONS(1841), - [anon_sym_o_GT_PIPE] = ACTIONS(1841), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1841), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1841), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1841), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_RPAREN] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1839), - [anon_sym_DASH_DASH] = ACTIONS(1841), - [anon_sym_DASH2] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1841), - [anon_sym_RBRACE] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1839), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1841), - [anon_sym_DOT_DOT_LT] = ACTIONS(1841), - [anon_sym_null] = ACTIONS(1841), - [anon_sym_true] = ACTIONS(1841), - [anon_sym_false] = ACTIONS(1841), - [aux_sym__val_number_decimal_token1] = ACTIONS(1839), - [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_0b] = ACTIONS(1839), - [anon_sym_0o] = ACTIONS(1839), - [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(1841), - [sym__str_single_quotes] = ACTIONS(1841), - [sym__str_back_ticks] = ACTIONS(1841), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1841), - [anon_sym_DOT2] = ACTIONS(4770), - [anon_sym_err_GT] = ACTIONS(1839), - [anon_sym_out_GT] = ACTIONS(1839), - [anon_sym_e_GT] = ACTIONS(1839), - [anon_sym_o_GT] = ACTIONS(1839), - [anon_sym_err_PLUSout_GT] = ACTIONS(1839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1839), - [anon_sym_o_PLUSe_GT] = ACTIONS(1839), - [anon_sym_e_PLUSo_GT] = ACTIONS(1839), - [anon_sym_err_GT_GT] = ACTIONS(1841), - [anon_sym_out_GT_GT] = ACTIONS(1841), - [anon_sym_e_GT_GT] = ACTIONS(1841), - [anon_sym_o_GT_GT] = ACTIONS(1841), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1841), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1841), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1841), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1841), - [aux_sym_unquoted_token1] = ACTIONS(1839), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1841), - }, - [1513] = { - [sym_cell_path] = STATE(1918), - [sym_path] = STATE(1692), - [sym_comment] = STATE(1513), - [aux_sym_cell_path_repeat1] = STATE(1564), - [sym__newline] = ACTIONS(1857), - [anon_sym_SEMI] = ACTIONS(1857), - [anon_sym_PIPE] = ACTIONS(1857), - [anon_sym_err_GT_PIPE] = ACTIONS(1857), - [anon_sym_out_GT_PIPE] = ACTIONS(1857), - [anon_sym_e_GT_PIPE] = ACTIONS(1857), - [anon_sym_o_GT_PIPE] = ACTIONS(1857), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1857), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1857), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1857), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1857), - [anon_sym_LBRACK] = ACTIONS(1857), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_RPAREN] = ACTIONS(1857), - [anon_sym_DOLLAR] = ACTIONS(1855), - [anon_sym_DASH_DASH] = ACTIONS(1857), - [anon_sym_DASH2] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1857), - [anon_sym_RBRACE] = ACTIONS(1857), - [anon_sym_DOT_DOT] = ACTIONS(1855), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1857), - [anon_sym_DOT_DOT_LT] = ACTIONS(1857), - [anon_sym_null] = ACTIONS(1857), - [anon_sym_true] = ACTIONS(1857), - [anon_sym_false] = ACTIONS(1857), - [aux_sym__val_number_decimal_token1] = ACTIONS(1855), - [aux_sym__val_number_decimal_token2] = ACTIONS(1857), - [aux_sym__val_number_decimal_token3] = ACTIONS(1857), - [aux_sym__val_number_decimal_token4] = ACTIONS(1857), - [aux_sym__val_number_token1] = ACTIONS(1857), - [aux_sym__val_number_token2] = ACTIONS(1857), - [aux_sym__val_number_token3] = ACTIONS(1857), - [aux_sym__val_number_token4] = ACTIONS(1857), - [aux_sym__val_number_token5] = ACTIONS(1857), - [aux_sym__val_number_token6] = ACTIONS(1857), - [anon_sym_0b] = ACTIONS(1855), - [anon_sym_0o] = ACTIONS(1855), - [anon_sym_0x] = ACTIONS(1855), - [sym_val_date] = ACTIONS(1857), - [anon_sym_DQUOTE] = ACTIONS(1857), - [sym__str_single_quotes] = ACTIONS(1857), - [sym__str_back_ticks] = ACTIONS(1857), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1857), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1857), - [anon_sym_DOT2] = ACTIONS(4770), - [anon_sym_err_GT] = ACTIONS(1855), - [anon_sym_out_GT] = ACTIONS(1855), - [anon_sym_e_GT] = ACTIONS(1855), - [anon_sym_o_GT] = ACTIONS(1855), - [anon_sym_err_PLUSout_GT] = ACTIONS(1855), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1855), - [anon_sym_o_PLUSe_GT] = ACTIONS(1855), - [anon_sym_e_PLUSo_GT] = ACTIONS(1855), - [anon_sym_err_GT_GT] = ACTIONS(1857), - [anon_sym_out_GT_GT] = ACTIONS(1857), - [anon_sym_e_GT_GT] = ACTIONS(1857), - [anon_sym_o_GT_GT] = ACTIONS(1857), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1857), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1857), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1857), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1857), - [aux_sym_unquoted_token1] = ACTIONS(1855), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1857), + [1440] = { + [sym_comment] = STATE(1440), + [ts_builtin_sym_end] = ACTIONS(1688), + [sym__newline] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_err_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_GT_PIPE] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1688), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1686), + [anon_sym_DOT_DOT_LT] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [aux_sym__immediate_decimal_token1] = ACTIONS(4748), + [aux_sym__immediate_decimal_token2] = ACTIONS(4750), + [anon_sym_null] = ACTIONS(1688), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1688), + [aux_sym__val_number_decimal_token3] = ACTIONS(1688), + [aux_sym__val_number_decimal_token4] = ACTIONS(1688), + [aux_sym__val_number_token1] = ACTIONS(1688), + [aux_sym__val_number_token2] = ACTIONS(1688), + [aux_sym__val_number_token3] = ACTIONS(1688), + [aux_sym__val_number_token4] = ACTIONS(1688), + [aux_sym__val_number_token5] = ACTIONS(1688), + [aux_sym__val_number_token6] = ACTIONS(1688), + [anon_sym_0b] = ACTIONS(1686), + [anon_sym_0o] = ACTIONS(1686), + [anon_sym_0x] = ACTIONS(1686), + [sym_val_date] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [sym__str_single_quotes] = ACTIONS(1688), + [sym__str_back_ticks] = ACTIONS(1688), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1688), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1688), + [anon_sym_err_GT] = ACTIONS(1686), + [anon_sym_out_GT] = ACTIONS(1686), + [anon_sym_e_GT] = ACTIONS(1686), + [anon_sym_o_GT] = ACTIONS(1686), + [anon_sym_err_PLUSout_GT] = ACTIONS(1686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1686), + [anon_sym_o_PLUSe_GT] = ACTIONS(1686), + [anon_sym_e_PLUSo_GT] = ACTIONS(1686), + [anon_sym_err_GT_GT] = ACTIONS(1688), + [anon_sym_out_GT_GT] = ACTIONS(1688), + [anon_sym_e_GT_GT] = ACTIONS(1688), + [anon_sym_o_GT_GT] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1688), + [aux_sym_unquoted_token1] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1688), }, - [1514] = { - [sym_comment] = STATE(1514), - [ts_builtin_sym_end] = ACTIONS(960), - [sym__newline] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_err_GT_PIPE] = ACTIONS(960), - [anon_sym_out_GT_PIPE] = ACTIONS(960), - [anon_sym_e_GT_PIPE] = ACTIONS(960), - [anon_sym_o_GT_PIPE] = ACTIONS(960), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_DOLLAR] = ACTIONS(958), - [anon_sym_DASH_DASH] = ACTIONS(960), - [anon_sym_DASH2] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_DOT_DOT] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(960), - [anon_sym_DOT_DOT2] = ACTIONS(958), - [anon_sym_DOT_DOT_EQ] = ACTIONS(958), - [anon_sym_DOT_DOT_LT] = ACTIONS(958), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(960), - [anon_sym_DOT_DOT_LT2] = ACTIONS(960), - [anon_sym_null] = ACTIONS(960), - [anon_sym_true] = ACTIONS(960), - [anon_sym_false] = ACTIONS(960), - [aux_sym__val_number_decimal_token1] = ACTIONS(958), - [aux_sym__val_number_decimal_token2] = ACTIONS(960), - [aux_sym__val_number_decimal_token3] = ACTIONS(960), - [aux_sym__val_number_decimal_token4] = ACTIONS(960), - [aux_sym__val_number_token1] = ACTIONS(960), - [aux_sym__val_number_token2] = ACTIONS(960), - [aux_sym__val_number_token3] = ACTIONS(960), - [aux_sym__val_number_token4] = ACTIONS(960), - [aux_sym__val_number_token5] = ACTIONS(960), - [aux_sym__val_number_token6] = ACTIONS(960), - [anon_sym_0b] = ACTIONS(958), - [anon_sym_0o] = ACTIONS(958), - [anon_sym_0x] = ACTIONS(958), - [sym_val_date] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(960), - [sym__str_single_quotes] = ACTIONS(960), - [sym__str_back_ticks] = ACTIONS(960), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(960), - [anon_sym_DOT2] = ACTIONS(958), - [anon_sym_err_GT] = ACTIONS(958), - [anon_sym_out_GT] = ACTIONS(958), - [anon_sym_e_GT] = ACTIONS(958), - [anon_sym_o_GT] = ACTIONS(958), - [anon_sym_err_PLUSout_GT] = ACTIONS(958), - [anon_sym_out_PLUSerr_GT] = ACTIONS(958), - [anon_sym_o_PLUSe_GT] = ACTIONS(958), - [anon_sym_e_PLUSo_GT] = ACTIONS(958), - [anon_sym_err_GT_GT] = ACTIONS(960), - [anon_sym_out_GT_GT] = ACTIONS(960), - [anon_sym_e_GT_GT] = ACTIONS(960), - [anon_sym_o_GT_GT] = ACTIONS(960), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(960), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(960), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(960), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), - [aux_sym_unquoted_token1] = ACTIONS(958), + [1441] = { + [sym_cell_path] = STATE(1839), + [sym_path] = STATE(1374), + [sym_comment] = STATE(1441), + [aux_sym_cell_path_repeat1] = STATE(1284), + [sym__newline] = ACTIONS(1831), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_PIPE] = ACTIONS(1831), + [anon_sym_err_GT_PIPE] = ACTIONS(1831), + [anon_sym_out_GT_PIPE] = ACTIONS(1831), + [anon_sym_e_GT_PIPE] = ACTIONS(1831), + [anon_sym_o_GT_PIPE] = ACTIONS(1831), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1831), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1831), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1831), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1831), + [anon_sym_RPAREN] = ACTIONS(1831), + [anon_sym_GT2] = ACTIONS(1829), + [anon_sym_DASH2] = ACTIONS(1831), + [anon_sym_in2] = ACTIONS(1831), + [anon_sym_if] = ACTIONS(1831), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1831), + [anon_sym_EQ_GT] = ACTIONS(1831), + [anon_sym_STAR2] = ACTIONS(1829), + [anon_sym_and2] = ACTIONS(1831), + [anon_sym_xor2] = ACTIONS(1831), + [anon_sym_or2] = ACTIONS(1831), + [anon_sym_not_DASHin2] = ACTIONS(1831), + [anon_sym_has2] = ACTIONS(1831), + [anon_sym_not_DASHhas2] = ACTIONS(1831), + [anon_sym_starts_DASHwith2] = ACTIONS(1831), + [anon_sym_ends_DASHwith2] = ACTIONS(1831), + [anon_sym_EQ_EQ2] = ACTIONS(1831), + [anon_sym_BANG_EQ2] = ACTIONS(1831), + [anon_sym_LT2] = ACTIONS(1829), + [anon_sym_LT_EQ2] = ACTIONS(1831), + [anon_sym_GT_EQ2] = ACTIONS(1831), + [anon_sym_EQ_TILDE2] = ACTIONS(1831), + [anon_sym_BANG_TILDE2] = ACTIONS(1831), + [anon_sym_STAR_STAR2] = ACTIONS(1831), + [anon_sym_PLUS_PLUS2] = ACTIONS(1831), + [anon_sym_SLASH2] = ACTIONS(1829), + [anon_sym_mod2] = ACTIONS(1831), + [anon_sym_SLASH_SLASH2] = ACTIONS(1831), + [anon_sym_PLUS2] = ACTIONS(1829), + [anon_sym_bit_DASHshl2] = ACTIONS(1831), + [anon_sym_bit_DASHshr2] = ACTIONS(1831), + [anon_sym_bit_DASHand2] = ACTIONS(1831), + [anon_sym_bit_DASHxor2] = ACTIONS(1831), + [anon_sym_bit_DASHor2] = ACTIONS(1831), + [anon_sym_DOT2] = ACTIONS(4722), + [anon_sym_err_GT] = ACTIONS(1829), + [anon_sym_out_GT] = ACTIONS(1829), + [anon_sym_e_GT] = ACTIONS(1829), + [anon_sym_o_GT] = ACTIONS(1829), + [anon_sym_err_PLUSout_GT] = ACTIONS(1829), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1829), + [anon_sym_o_PLUSe_GT] = ACTIONS(1829), + [anon_sym_e_PLUSo_GT] = ACTIONS(1829), + [anon_sym_err_GT_GT] = ACTIONS(1831), + [anon_sym_out_GT_GT] = ACTIONS(1831), + [anon_sym_e_GT_GT] = ACTIONS(1831), + [anon_sym_o_GT_GT] = ACTIONS(1831), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1831), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1831), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1831), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1831), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(960), - }, - [1515] = { - [sym_comment] = STATE(1515), - [ts_builtin_sym_end] = ACTIONS(1650), - [sym__newline] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_err_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_GT_PIPE] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DASH2] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1648), - [anon_sym_DOT_DOT_LT] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [aux_sym__val_number_token4] = ACTIONS(1650), - [aux_sym__val_number_token5] = ACTIONS(1650), - [aux_sym__val_number_token6] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1648), - [anon_sym_0o] = ACTIONS(1648), - [anon_sym_0x] = ACTIONS(1648), - [sym_val_date] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_err_GT] = ACTIONS(1648), - [anon_sym_out_GT] = ACTIONS(1648), - [anon_sym_e_GT] = ACTIONS(1648), - [anon_sym_o_GT] = ACTIONS(1648), - [anon_sym_err_PLUSout_GT] = ACTIONS(1648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), - [anon_sym_o_PLUSe_GT] = ACTIONS(1648), - [anon_sym_e_PLUSo_GT] = ACTIONS(1648), - [anon_sym_err_GT_GT] = ACTIONS(1650), - [anon_sym_out_GT_GT] = ACTIONS(1650), - [anon_sym_e_GT_GT] = ACTIONS(1650), - [anon_sym_o_GT_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), - [aux_sym_unquoted_token1] = ACTIONS(1648), - [aux_sym_unquoted_token2] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1650), }, - [1516] = { - [sym_comment] = STATE(1516), - [anon_sym_EQ] = ACTIONS(4806), - [anon_sym_PLUS_EQ] = ACTIONS(4808), - [anon_sym_DASH_EQ] = ACTIONS(4808), - [anon_sym_STAR_EQ] = ACTIONS(4808), - [anon_sym_SLASH_EQ] = ACTIONS(4808), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4808), + [1442] = { + [sym_comment] = STATE(1442), + [anon_sym_EQ] = ACTIONS(4752), + [anon_sym_PLUS_EQ] = ACTIONS(4754), + [anon_sym_DASH_EQ] = ACTIONS(4754), + [anon_sym_STAR_EQ] = ACTIONS(4754), + [anon_sym_SLASH_EQ] = ACTIONS(4754), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4754), [sym__newline] = ACTIONS(994), [anon_sym_SEMI] = ACTIONS(994), [anon_sym_PIPE] = ACTIONS(994), @@ -218662,504 +210841,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(245), }, - [1517] = { - [sym_comment] = STATE(1517), - [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(1719), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_DASH_DASH] = ACTIONS(1721), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1719), - [anon_sym_LPAREN2] = ACTIONS(1721), - [anon_sym_DOT_DOT2] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1719), - [anon_sym_DOT_DOT_LT] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1721), - [anon_sym_null] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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(1719), - [anon_sym_0o] = ACTIONS(1719), - [anon_sym_0x] = ACTIONS(1719), - [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(1719), - [anon_sym_out_GT] = ACTIONS(1719), - [anon_sym_e_GT] = ACTIONS(1719), - [anon_sym_o_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT] = ACTIONS(1719), - [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(1719), - [aux_sym_unquoted_token2] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1721), - }, - [1518] = { - [sym_cell_path] = STATE(1968), - [sym_path] = STATE(1692), - [sym_comment] = STATE(1518), - [aux_sym_cell_path_repeat1] = STATE(1564), - [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_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_DOT2] = ACTIONS(4770), - [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(245), - [sym_raw_string_begin] = ACTIONS(1929), + [1443] = { + [sym_cell_path] = STATE(1742), + [sym_path] = STATE(1592), + [sym_comment] = STATE(1443), + [aux_sym_cell_path_repeat1] = STATE(1479), + [sym__newline] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1825), + [anon_sym_PIPE] = ACTIONS(1825), + [anon_sym_err_GT_PIPE] = ACTIONS(1825), + [anon_sym_out_GT_PIPE] = ACTIONS(1825), + [anon_sym_e_GT_PIPE] = ACTIONS(1825), + [anon_sym_o_GT_PIPE] = ACTIONS(1825), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1825), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1825), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1825), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1825), + [anon_sym_LBRACK] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(1825), + [anon_sym_RPAREN] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1823), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_DASH2] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1825), + [anon_sym_RBRACE] = ACTIONS(1825), + [anon_sym_DOT_DOT] = ACTIONS(1823), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1825), + [anon_sym_DOT_DOT_LT] = ACTIONS(1825), + [anon_sym_null] = ACTIONS(1825), + [anon_sym_true] = ACTIONS(1825), + [anon_sym_false] = ACTIONS(1825), + [aux_sym__val_number_decimal_token1] = ACTIONS(1823), + [aux_sym__val_number_decimal_token2] = ACTIONS(1825), + [aux_sym__val_number_decimal_token3] = ACTIONS(1825), + [aux_sym__val_number_decimal_token4] = ACTIONS(1825), + [aux_sym__val_number_token1] = ACTIONS(1825), + [aux_sym__val_number_token2] = ACTIONS(1825), + [aux_sym__val_number_token3] = ACTIONS(1825), + [aux_sym__val_number_token4] = ACTIONS(1825), + [aux_sym__val_number_token5] = ACTIONS(1825), + [aux_sym__val_number_token6] = ACTIONS(1825), + [anon_sym_0b] = ACTIONS(1823), + [anon_sym_0o] = ACTIONS(1823), + [anon_sym_0x] = ACTIONS(1823), + [sym_val_date] = ACTIONS(1825), + [anon_sym_DQUOTE] = ACTIONS(1825), + [sym__str_single_quotes] = ACTIONS(1825), + [sym__str_back_ticks] = ACTIONS(1825), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1825), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1825), + [anon_sym_DOT2] = ACTIONS(4714), + [anon_sym_err_GT] = ACTIONS(1823), + [anon_sym_out_GT] = ACTIONS(1823), + [anon_sym_e_GT] = ACTIONS(1823), + [anon_sym_o_GT] = ACTIONS(1823), + [anon_sym_err_PLUSout_GT] = ACTIONS(1823), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1823), + [anon_sym_o_PLUSe_GT] = ACTIONS(1823), + [anon_sym_e_PLUSo_GT] = ACTIONS(1823), + [anon_sym_err_GT_GT] = ACTIONS(1825), + [anon_sym_out_GT_GT] = ACTIONS(1825), + [anon_sym_e_GT_GT] = ACTIONS(1825), + [anon_sym_o_GT_GT] = ACTIONS(1825), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1825), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1825), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1825), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1825), + [aux_sym_unquoted_token1] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1825), }, - [1519] = { - [sym_comment] = STATE(1519), - [ts_builtin_sym_end] = ACTIONS(956), - [sym__newline] = ACTIONS(956), - [anon_sym_SEMI] = ACTIONS(956), - [anon_sym_PIPE] = ACTIONS(956), - [anon_sym_err_GT_PIPE] = ACTIONS(956), - [anon_sym_out_GT_PIPE] = ACTIONS(956), - [anon_sym_e_GT_PIPE] = ACTIONS(956), - [anon_sym_o_GT_PIPE] = ACTIONS(956), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(956), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(956), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(956), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(956), - [anon_sym_LBRACK] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(956), - [anon_sym_DOLLAR] = ACTIONS(954), - [anon_sym_DASH_DASH] = ACTIONS(956), - [anon_sym_DASH2] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(956), - [anon_sym_DOT_DOT] = ACTIONS(954), - [anon_sym_QMARK2] = ACTIONS(956), - [anon_sym_DOT_DOT2] = ACTIONS(954), - [anon_sym_DOT_DOT_EQ] = ACTIONS(954), - [anon_sym_DOT_DOT_LT] = ACTIONS(954), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(956), - [anon_sym_DOT_DOT_LT2] = ACTIONS(956), - [anon_sym_null] = ACTIONS(956), - [anon_sym_true] = ACTIONS(956), - [anon_sym_false] = ACTIONS(956), - [aux_sym__val_number_decimal_token1] = ACTIONS(954), - [aux_sym__val_number_decimal_token2] = ACTIONS(956), - [aux_sym__val_number_decimal_token3] = ACTIONS(956), - [aux_sym__val_number_decimal_token4] = ACTIONS(956), - [aux_sym__val_number_token1] = ACTIONS(956), - [aux_sym__val_number_token2] = ACTIONS(956), - [aux_sym__val_number_token3] = ACTIONS(956), - [aux_sym__val_number_token4] = ACTIONS(956), - [aux_sym__val_number_token5] = ACTIONS(956), - [aux_sym__val_number_token6] = ACTIONS(956), - [anon_sym_0b] = ACTIONS(954), - [anon_sym_0o] = ACTIONS(954), - [anon_sym_0x] = ACTIONS(954), - [sym_val_date] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(956), - [sym__str_single_quotes] = ACTIONS(956), - [sym__str_back_ticks] = ACTIONS(956), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(956), - [anon_sym_DOT2] = ACTIONS(954), - [anon_sym_err_GT] = ACTIONS(954), - [anon_sym_out_GT] = ACTIONS(954), - [anon_sym_e_GT] = ACTIONS(954), - [anon_sym_o_GT] = ACTIONS(954), - [anon_sym_err_PLUSout_GT] = ACTIONS(954), - [anon_sym_out_PLUSerr_GT] = ACTIONS(954), - [anon_sym_o_PLUSe_GT] = ACTIONS(954), - [anon_sym_e_PLUSo_GT] = ACTIONS(954), - [anon_sym_err_GT_GT] = ACTIONS(956), - [anon_sym_out_GT_GT] = ACTIONS(956), - [anon_sym_e_GT_GT] = ACTIONS(956), - [anon_sym_o_GT_GT] = ACTIONS(956), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(956), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(956), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(956), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(956), - [aux_sym_unquoted_token1] = ACTIONS(954), + [1444] = { + [sym_comment] = STATE(1444), + [sym__newline] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_err_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_GT_PIPE] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1501), + [anon_sym_RPAREN] = ACTIONS(1501), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1501), + [anon_sym_in2] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(1501), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1501), + [anon_sym_xor2] = ACTIONS(1501), + [anon_sym_or2] = ACTIONS(1501), + [anon_sym_not_DASHin2] = ACTIONS(1501), + [anon_sym_has2] = ACTIONS(1501), + [anon_sym_not_DASHhas2] = ACTIONS(1501), + [anon_sym_starts_DASHwith2] = ACTIONS(1501), + [anon_sym_ends_DASHwith2] = ACTIONS(1501), + [anon_sym_EQ_EQ2] = ACTIONS(1501), + [anon_sym_BANG_EQ2] = ACTIONS(1501), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1501), + [anon_sym_GT_EQ2] = ACTIONS(1501), + [anon_sym_EQ_TILDE2] = ACTIONS(1501), + [anon_sym_BANG_TILDE2] = ACTIONS(1501), + [anon_sym_LPAREN2] = ACTIONS(1501), + [anon_sym_STAR_STAR2] = ACTIONS(1501), + [anon_sym_PLUS_PLUS2] = ACTIONS(1501), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1501), + [anon_sym_SLASH_SLASH2] = ACTIONS(1501), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1501), + [anon_sym_bit_DASHshr2] = ACTIONS(1501), + [anon_sym_bit_DASHand2] = ACTIONS(1501), + [anon_sym_bit_DASHxor2] = ACTIONS(1501), + [anon_sym_bit_DASHor2] = ACTIONS(1501), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1501), + [anon_sym_out_GT_GT] = ACTIONS(1501), + [anon_sym_e_GT_GT] = ACTIONS(1501), + [anon_sym_o_GT_GT] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1501), + [aux_sym_unquoted_token2] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(956), }, - [1520] = { - [sym_comment] = STATE(1520), - [ts_builtin_sym_end] = ACTIONS(964), - [sym__newline] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(964), - [anon_sym_err_GT_PIPE] = ACTIONS(964), - [anon_sym_out_GT_PIPE] = ACTIONS(964), - [anon_sym_e_GT_PIPE] = ACTIONS(964), - [anon_sym_o_GT_PIPE] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), - [anon_sym_LBRACK] = ACTIONS(964), - [anon_sym_LPAREN] = ACTIONS(964), - [anon_sym_DOLLAR] = ACTIONS(962), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_DASH2] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_DOT_DOT] = ACTIONS(962), - [anon_sym_QMARK2] = ACTIONS(964), - [anon_sym_DOT_DOT2] = ACTIONS(962), - [anon_sym_DOT_DOT_EQ] = ACTIONS(962), - [anon_sym_DOT_DOT_LT] = ACTIONS(962), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), - [anon_sym_DOT_DOT_LT2] = ACTIONS(964), - [anon_sym_null] = ACTIONS(964), - [anon_sym_true] = ACTIONS(964), - [anon_sym_false] = ACTIONS(964), - [aux_sym__val_number_decimal_token1] = ACTIONS(962), - [aux_sym__val_number_decimal_token2] = ACTIONS(964), - [aux_sym__val_number_decimal_token3] = ACTIONS(964), - [aux_sym__val_number_decimal_token4] = ACTIONS(964), - [aux_sym__val_number_token1] = ACTIONS(964), - [aux_sym__val_number_token2] = ACTIONS(964), - [aux_sym__val_number_token3] = ACTIONS(964), - [aux_sym__val_number_token4] = ACTIONS(964), - [aux_sym__val_number_token5] = ACTIONS(964), - [aux_sym__val_number_token6] = ACTIONS(964), - [anon_sym_0b] = ACTIONS(962), - [anon_sym_0o] = ACTIONS(962), - [anon_sym_0x] = ACTIONS(962), - [sym_val_date] = ACTIONS(964), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym__str_single_quotes] = ACTIONS(964), - [sym__str_back_ticks] = ACTIONS(964), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(964), - [anon_sym_DOT2] = ACTIONS(962), - [anon_sym_err_GT] = ACTIONS(962), - [anon_sym_out_GT] = ACTIONS(962), - [anon_sym_e_GT] = ACTIONS(962), - [anon_sym_o_GT] = ACTIONS(962), - [anon_sym_err_PLUSout_GT] = ACTIONS(962), - [anon_sym_out_PLUSerr_GT] = ACTIONS(962), - [anon_sym_o_PLUSe_GT] = ACTIONS(962), - [anon_sym_e_PLUSo_GT] = ACTIONS(962), - [anon_sym_err_GT_GT] = ACTIONS(964), - [anon_sym_out_GT_GT] = ACTIONS(964), - [anon_sym_e_GT_GT] = ACTIONS(964), - [anon_sym_o_GT_GT] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), - [aux_sym_unquoted_token1] = ACTIONS(962), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(964), + [1445] = { + [sym_cell_path] = STATE(1761), + [sym_path] = STATE(1592), + [sym_comment] = STATE(1445), + [aux_sym_cell_path_repeat1] = STATE(1479), + [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_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_DOT2] = ACTIONS(4714), + [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(245), + [sym_raw_string_begin] = ACTIONS(1909), }, - [1521] = { - [sym_cell_path] = STATE(1914), - [sym_path] = STATE(1692), - [sym_comment] = STATE(1521), - [aux_sym_cell_path_repeat1] = STATE(1564), - [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_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_DOT2] = ACTIONS(4770), - [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), + [1446] = { + [sym_comment] = STATE(1446), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_GT2] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1703), + [anon_sym_in2] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_STAR2] = ACTIONS(1701), + [anon_sym_and2] = ACTIONS(1703), + [anon_sym_xor2] = ACTIONS(1703), + [anon_sym_or2] = ACTIONS(1703), + [anon_sym_not_DASHin2] = ACTIONS(1703), + [anon_sym_has2] = ACTIONS(1703), + [anon_sym_not_DASHhas2] = ACTIONS(1703), + [anon_sym_starts_DASHwith2] = ACTIONS(1703), + [anon_sym_ends_DASHwith2] = ACTIONS(1703), + [anon_sym_EQ_EQ2] = ACTIONS(1703), + [anon_sym_BANG_EQ2] = ACTIONS(1703), + [anon_sym_LT2] = ACTIONS(1701), + [anon_sym_LT_EQ2] = ACTIONS(1703), + [anon_sym_GT_EQ2] = ACTIONS(1703), + [anon_sym_EQ_TILDE2] = ACTIONS(1703), + [anon_sym_BANG_TILDE2] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_STAR_STAR2] = ACTIONS(1703), + [anon_sym_PLUS_PLUS2] = ACTIONS(1703), + [anon_sym_SLASH2] = ACTIONS(1701), + [anon_sym_mod2] = ACTIONS(1703), + [anon_sym_SLASH_SLASH2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_bit_DASHshl2] = ACTIONS(1703), + [anon_sym_bit_DASHshr2] = ACTIONS(1703), + [anon_sym_bit_DASHand2] = ACTIONS(1703), + [anon_sym_bit_DASHxor2] = ACTIONS(1703), + [anon_sym_bit_DASHor2] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4642), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token2] = ACTIONS(1701), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1885), - }, - [1522] = { - [sym_comment] = STATE(1522), - [ts_builtin_sym_end] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_DOLLAR] = ACTIONS(966), - [anon_sym_DASH_DASH] = ACTIONS(968), - [anon_sym_DASH2] = ACTIONS(966), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_DOT_DOT] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(968), - [anon_sym_DOT_DOT2] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ] = ACTIONS(966), - [anon_sym_DOT_DOT_LT] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), - [anon_sym_DOT_DOT_LT2] = ACTIONS(968), - [anon_sym_null] = ACTIONS(968), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = ACTIONS(968), - [aux_sym__val_number_decimal_token1] = ACTIONS(966), - [aux_sym__val_number_decimal_token2] = ACTIONS(968), - [aux_sym__val_number_decimal_token3] = ACTIONS(968), - [aux_sym__val_number_decimal_token4] = ACTIONS(968), - [aux_sym__val_number_token1] = ACTIONS(968), - [aux_sym__val_number_token2] = ACTIONS(968), - [aux_sym__val_number_token3] = ACTIONS(968), - [aux_sym__val_number_token4] = ACTIONS(968), - [aux_sym__val_number_token5] = ACTIONS(968), - [aux_sym__val_number_token6] = ACTIONS(968), - [anon_sym_0b] = ACTIONS(966), - [anon_sym_0o] = ACTIONS(966), - [anon_sym_0x] = ACTIONS(966), - [sym_val_date] = ACTIONS(968), - [anon_sym_DQUOTE] = ACTIONS(968), - [sym__str_single_quotes] = ACTIONS(968), - [sym__str_back_ticks] = ACTIONS(968), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(968), - [anon_sym_DOT2] = ACTIONS(966), - [anon_sym_err_GT] = ACTIONS(966), - [anon_sym_out_GT] = ACTIONS(966), - [anon_sym_e_GT] = ACTIONS(966), - [anon_sym_o_GT] = ACTIONS(966), - [anon_sym_err_PLUSout_GT] = ACTIONS(966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(966), - [anon_sym_o_PLUSe_GT] = ACTIONS(966), - [anon_sym_e_PLUSo_GT] = ACTIONS(966), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [aux_sym_unquoted_token1] = ACTIONS(966), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(968), - }, - [1523] = { - [sym_comment] = STATE(1523), - [ts_builtin_sym_end] = ACTIONS(1792), - [sym__newline] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_err_GT_PIPE] = ACTIONS(1792), - [anon_sym_out_GT_PIPE] = ACTIONS(1792), - [anon_sym_e_GT_PIPE] = ACTIONS(1792), - [anon_sym_o_GT_PIPE] = ACTIONS(1792), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1792), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1792), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1792), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_DASH2] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_DOT_DOT2] = ACTIONS(1790), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1790), - [anon_sym_DOT_DOT_LT] = ACTIONS(1790), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1792), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1792), - [anon_sym_false] = ACTIONS(1792), - [aux_sym__val_number_decimal_token1] = ACTIONS(1790), - [aux_sym__val_number_decimal_token2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1792), - [aux_sym__val_number_decimal_token4] = ACTIONS(1792), - [aux_sym__val_number_token1] = ACTIONS(1792), - [aux_sym__val_number_token2] = ACTIONS(1792), - [aux_sym__val_number_token3] = ACTIONS(1792), - [aux_sym__val_number_token4] = ACTIONS(1792), - [aux_sym__val_number_token5] = ACTIONS(1792), - [aux_sym__val_number_token6] = ACTIONS(1792), - [anon_sym_0b] = ACTIONS(1790), - [anon_sym_0o] = ACTIONS(1790), - [anon_sym_0x] = ACTIONS(1790), - [sym_val_date] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym__str_single_quotes] = ACTIONS(1792), - [sym__str_back_ticks] = ACTIONS(1792), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1792), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1792), - [anon_sym_err_GT] = ACTIONS(1790), - [anon_sym_out_GT] = ACTIONS(1790), - [anon_sym_e_GT] = ACTIONS(1790), - [anon_sym_o_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT] = ACTIONS(1790), - [anon_sym_err_GT_GT] = ACTIONS(1792), - [anon_sym_out_GT_GT] = ACTIONS(1792), - [anon_sym_e_GT_GT] = ACTIONS(1792), - [anon_sym_o_GT_GT] = ACTIONS(1792), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1792), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1792), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1792), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1792), - [aux_sym_unquoted_token1] = ACTIONS(1790), - [aux_sym_unquoted_token2] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1792), }, - [1524] = { - [sym_comment] = STATE(1524), - [anon_sym_EQ] = ACTIONS(4810), - [anon_sym_PLUS_EQ] = ACTIONS(4812), - [anon_sym_DASH_EQ] = ACTIONS(4812), - [anon_sym_STAR_EQ] = ACTIONS(4812), - [anon_sym_SLASH_EQ] = ACTIONS(4812), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4812), + [1447] = { + [sym_comment] = STATE(1447), + [anon_sym_EQ] = ACTIONS(4756), + [anon_sym_PLUS_EQ] = ACTIONS(4758), + [anon_sym_DASH_EQ] = ACTIONS(4758), + [anon_sym_STAR_EQ] = ACTIONS(4758), + [anon_sym_SLASH_EQ] = ACTIONS(4758), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4758), [sym__newline] = ACTIONS(994), [anon_sym_SEMI] = ACTIONS(994), [anon_sym_PIPE] = ACTIONS(994), @@ -219222,428 +211191,641 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(245), }, - [1525] = { - [sym_comment] = STATE(1525), - [ts_builtin_sym_end] = ACTIONS(1494), - [sym__newline] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_PIPE] = ACTIONS(1494), - [anon_sym_err_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_GT_PIPE] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1494), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1494), - [anon_sym_in2] = ACTIONS(1494), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1494), - [anon_sym_xor2] = ACTIONS(1494), - [anon_sym_or2] = ACTIONS(1494), - [anon_sym_not_DASHin2] = ACTIONS(1494), - [anon_sym_has2] = ACTIONS(1494), - [anon_sym_not_DASHhas2] = ACTIONS(1494), - [anon_sym_starts_DASHwith2] = ACTIONS(1494), - [anon_sym_ends_DASHwith2] = ACTIONS(1494), - [anon_sym_EQ_EQ2] = ACTIONS(1494), - [anon_sym_BANG_EQ2] = ACTIONS(1494), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1494), - [anon_sym_GT_EQ2] = ACTIONS(1494), - [anon_sym_EQ_TILDE2] = ACTIONS(1494), - [anon_sym_BANG_TILDE2] = ACTIONS(1494), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_STAR_STAR2] = ACTIONS(1494), - [anon_sym_PLUS_PLUS2] = ACTIONS(1494), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1494), - [anon_sym_SLASH_SLASH2] = ACTIONS(1494), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1494), - [anon_sym_bit_DASHshr2] = ACTIONS(1494), - [anon_sym_bit_DASHand2] = ACTIONS(1494), - [anon_sym_bit_DASHxor2] = ACTIONS(1494), - [anon_sym_bit_DASHor2] = ACTIONS(1494), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [aux_sym__immediate_decimal_token2] = ACTIONS(4736), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1494), - [anon_sym_out_GT_GT] = ACTIONS(1494), - [anon_sym_e_GT_GT] = ACTIONS(1494), - [anon_sym_o_GT_GT] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1494), - [aux_sym_unquoted_token2] = ACTIONS(1492), + [1448] = { + [sym_comment] = STATE(1448), + [sym__newline] = ACTIONS(1676), + [anon_sym_SEMI] = ACTIONS(1676), + [anon_sym_PIPE] = ACTIONS(1676), + [anon_sym_err_GT_PIPE] = ACTIONS(1676), + [anon_sym_out_GT_PIPE] = ACTIONS(1676), + [anon_sym_e_GT_PIPE] = ACTIONS(1676), + [anon_sym_o_GT_PIPE] = ACTIONS(1676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1676), + [anon_sym_RPAREN] = ACTIONS(1676), + [anon_sym_GT2] = ACTIONS(1674), + [anon_sym_DASH2] = ACTIONS(1676), + [anon_sym_in2] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1676), + [anon_sym_RBRACE] = ACTIONS(1676), + [anon_sym_EQ_GT] = ACTIONS(1676), + [anon_sym_STAR2] = ACTIONS(1674), + [anon_sym_and2] = ACTIONS(1676), + [anon_sym_xor2] = ACTIONS(1676), + [anon_sym_or2] = ACTIONS(1676), + [anon_sym_not_DASHin2] = ACTIONS(1676), + [anon_sym_has2] = ACTIONS(1676), + [anon_sym_not_DASHhas2] = ACTIONS(1676), + [anon_sym_starts_DASHwith2] = ACTIONS(1676), + [anon_sym_ends_DASHwith2] = ACTIONS(1676), + [anon_sym_EQ_EQ2] = ACTIONS(1676), + [anon_sym_BANG_EQ2] = ACTIONS(1676), + [anon_sym_LT2] = ACTIONS(1674), + [anon_sym_LT_EQ2] = ACTIONS(1676), + [anon_sym_GT_EQ2] = ACTIONS(1676), + [anon_sym_EQ_TILDE2] = ACTIONS(1676), + [anon_sym_BANG_TILDE2] = ACTIONS(1676), + [anon_sym_STAR_STAR2] = ACTIONS(1676), + [anon_sym_PLUS_PLUS2] = ACTIONS(1676), + [anon_sym_SLASH2] = ACTIONS(1674), + [anon_sym_mod2] = ACTIONS(1676), + [anon_sym_SLASH_SLASH2] = ACTIONS(1676), + [anon_sym_PLUS2] = ACTIONS(1674), + [anon_sym_bit_DASHshl2] = ACTIONS(1676), + [anon_sym_bit_DASHshr2] = ACTIONS(1676), + [anon_sym_bit_DASHand2] = ACTIONS(1676), + [anon_sym_bit_DASHxor2] = ACTIONS(1676), + [anon_sym_bit_DASHor2] = ACTIONS(1676), + [anon_sym_DOT_DOT2] = ACTIONS(1674), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1676), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1676), + [anon_sym_COLON2] = ACTIONS(1676), + [anon_sym_err_GT] = ACTIONS(1674), + [anon_sym_out_GT] = ACTIONS(1674), + [anon_sym_e_GT] = ACTIONS(1674), + [anon_sym_o_GT] = ACTIONS(1674), + [anon_sym_err_PLUSout_GT] = ACTIONS(1674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1674), + [anon_sym_o_PLUSe_GT] = ACTIONS(1674), + [anon_sym_e_PLUSo_GT] = ACTIONS(1674), + [anon_sym_err_GT_GT] = ACTIONS(1676), + [anon_sym_out_GT_GT] = ACTIONS(1676), + [anon_sym_e_GT_GT] = ACTIONS(1676), + [anon_sym_o_GT_GT] = ACTIONS(1676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1676), [anon_sym_POUND] = ACTIONS(245), }, - [1526] = { - [sym_comment] = STATE(1526), - [ts_builtin_sym_end] = ACTIONS(1540), - [sym__newline] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1540), - [anon_sym_err_GT_PIPE] = ACTIONS(1540), - [anon_sym_out_GT_PIPE] = ACTIONS(1540), - [anon_sym_e_GT_PIPE] = ACTIONS(1540), - [anon_sym_o_GT_PIPE] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1540), - [anon_sym_GT2] = ACTIONS(1538), - [anon_sym_DASH2] = ACTIONS(1540), - [anon_sym_in2] = ACTIONS(1540), - [anon_sym_STAR2] = ACTIONS(1538), - [anon_sym_and2] = ACTIONS(1540), - [anon_sym_xor2] = ACTIONS(1540), - [anon_sym_or2] = ACTIONS(1540), - [anon_sym_not_DASHin2] = ACTIONS(1540), - [anon_sym_has2] = ACTIONS(1540), - [anon_sym_not_DASHhas2] = ACTIONS(1540), - [anon_sym_starts_DASHwith2] = ACTIONS(1540), - [anon_sym_ends_DASHwith2] = ACTIONS(1540), - [anon_sym_EQ_EQ2] = ACTIONS(1540), - [anon_sym_BANG_EQ2] = ACTIONS(1540), - [anon_sym_LT2] = ACTIONS(1538), - [anon_sym_LT_EQ2] = ACTIONS(1540), - [anon_sym_GT_EQ2] = ACTIONS(1540), - [anon_sym_EQ_TILDE2] = ACTIONS(1540), - [anon_sym_BANG_TILDE2] = ACTIONS(1540), - [anon_sym_LPAREN2] = ACTIONS(1540), - [anon_sym_STAR_STAR2] = ACTIONS(1540), - [anon_sym_PLUS_PLUS2] = ACTIONS(1540), - [anon_sym_SLASH2] = ACTIONS(1538), - [anon_sym_mod2] = ACTIONS(1540), - [anon_sym_SLASH_SLASH2] = ACTIONS(1540), - [anon_sym_PLUS2] = ACTIONS(1538), - [anon_sym_bit_DASHshl2] = ACTIONS(1540), - [anon_sym_bit_DASHshr2] = ACTIONS(1540), - [anon_sym_bit_DASHand2] = ACTIONS(1540), - [anon_sym_bit_DASHxor2] = ACTIONS(1540), - [anon_sym_bit_DASHor2] = ACTIONS(1540), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [aux_sym__immediate_decimal_token2] = ACTIONS(4814), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1540), - [anon_sym_err_GT] = ACTIONS(1538), - [anon_sym_out_GT] = ACTIONS(1538), - [anon_sym_e_GT] = ACTIONS(1538), - [anon_sym_o_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT] = ACTIONS(1538), - [anon_sym_err_GT_GT] = ACTIONS(1540), - [anon_sym_out_GT_GT] = ACTIONS(1540), - [anon_sym_e_GT_GT] = ACTIONS(1540), - [anon_sym_o_GT_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1540), - [aux_sym_unquoted_token2] = ACTIONS(1538), + [1449] = { + [sym_comment] = STATE(1449), + [sym__newline] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_err_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_GT_PIPE] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1493), + [anon_sym_RPAREN] = ACTIONS(1493), + [anon_sym_GT2] = ACTIONS(1491), + [anon_sym_DASH2] = ACTIONS(1493), + [anon_sym_in2] = ACTIONS(1493), + [anon_sym_RBRACE] = ACTIONS(1493), + [anon_sym_STAR2] = ACTIONS(1491), + [anon_sym_and2] = ACTIONS(1493), + [anon_sym_xor2] = ACTIONS(1493), + [anon_sym_or2] = ACTIONS(1493), + [anon_sym_not_DASHin2] = ACTIONS(1493), + [anon_sym_has2] = ACTIONS(1493), + [anon_sym_not_DASHhas2] = ACTIONS(1493), + [anon_sym_starts_DASHwith2] = ACTIONS(1493), + [anon_sym_ends_DASHwith2] = ACTIONS(1493), + [anon_sym_EQ_EQ2] = ACTIONS(1493), + [anon_sym_BANG_EQ2] = ACTIONS(1493), + [anon_sym_LT2] = ACTIONS(1491), + [anon_sym_LT_EQ2] = ACTIONS(1493), + [anon_sym_GT_EQ2] = ACTIONS(1493), + [anon_sym_EQ_TILDE2] = ACTIONS(1493), + [anon_sym_BANG_TILDE2] = ACTIONS(1493), + [anon_sym_LPAREN2] = ACTIONS(1493), + [anon_sym_STAR_STAR2] = ACTIONS(1493), + [anon_sym_PLUS_PLUS2] = ACTIONS(1493), + [anon_sym_SLASH2] = ACTIONS(1491), + [anon_sym_mod2] = ACTIONS(1493), + [anon_sym_SLASH_SLASH2] = ACTIONS(1493), + [anon_sym_PLUS2] = ACTIONS(1491), + [anon_sym_bit_DASHshl2] = ACTIONS(1493), + [anon_sym_bit_DASHshr2] = ACTIONS(1493), + [anon_sym_bit_DASHand2] = ACTIONS(1493), + [anon_sym_bit_DASHxor2] = ACTIONS(1493), + [anon_sym_bit_DASHor2] = ACTIONS(1493), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [sym_filesize_unit] = ACTIONS(1491), + [sym_duration_unit] = ACTIONS(1493), + [anon_sym_err_GT] = ACTIONS(1491), + [anon_sym_out_GT] = ACTIONS(1491), + [anon_sym_e_GT] = ACTIONS(1491), + [anon_sym_o_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT] = ACTIONS(1491), + [anon_sym_err_GT_GT] = ACTIONS(1493), + [anon_sym_out_GT_GT] = ACTIONS(1493), + [anon_sym_e_GT_GT] = ACTIONS(1493), + [anon_sym_o_GT_GT] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1493), + [aux_sym_unquoted_token2] = ACTIONS(1491), [anon_sym_POUND] = ACTIONS(245), }, - [1527] = { - [sym_cell_path] = STATE(1890), - [sym_path] = STATE(1692), - [sym_comment] = STATE(1527), - [aux_sym_cell_path_repeat1] = STATE(1564), - [sym__newline] = ACTIONS(1877), - [anon_sym_SEMI] = ACTIONS(1877), - [anon_sym_PIPE] = ACTIONS(1877), - [anon_sym_err_GT_PIPE] = ACTIONS(1877), - [anon_sym_out_GT_PIPE] = ACTIONS(1877), - [anon_sym_e_GT_PIPE] = ACTIONS(1877), - [anon_sym_o_GT_PIPE] = ACTIONS(1877), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1877), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1877), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1877), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1877), - [anon_sym_LBRACK] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_RPAREN] = ACTIONS(1877), - [anon_sym_DOLLAR] = ACTIONS(1875), - [anon_sym_DASH_DASH] = ACTIONS(1877), - [anon_sym_DASH2] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1877), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1877), - [anon_sym_DOT_DOT_LT] = ACTIONS(1877), - [anon_sym_null] = ACTIONS(1877), - [anon_sym_true] = ACTIONS(1877), - [anon_sym_false] = ACTIONS(1877), - [aux_sym__val_number_decimal_token1] = ACTIONS(1875), - [aux_sym__val_number_decimal_token2] = ACTIONS(1877), - [aux_sym__val_number_decimal_token3] = ACTIONS(1877), - [aux_sym__val_number_decimal_token4] = ACTIONS(1877), - [aux_sym__val_number_token1] = ACTIONS(1877), - [aux_sym__val_number_token2] = ACTIONS(1877), - [aux_sym__val_number_token3] = ACTIONS(1877), - [aux_sym__val_number_token4] = ACTIONS(1877), - [aux_sym__val_number_token5] = ACTIONS(1877), - [aux_sym__val_number_token6] = ACTIONS(1877), - [anon_sym_0b] = ACTIONS(1875), - [anon_sym_0o] = ACTIONS(1875), - [anon_sym_0x] = ACTIONS(1875), - [sym_val_date] = ACTIONS(1877), - [anon_sym_DQUOTE] = ACTIONS(1877), - [sym__str_single_quotes] = ACTIONS(1877), - [sym__str_back_ticks] = ACTIONS(1877), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1877), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1877), - [anon_sym_DOT2] = ACTIONS(4770), - [anon_sym_err_GT] = ACTIONS(1875), - [anon_sym_out_GT] = ACTIONS(1875), - [anon_sym_e_GT] = ACTIONS(1875), - [anon_sym_o_GT] = ACTIONS(1875), - [anon_sym_err_PLUSout_GT] = ACTIONS(1875), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1875), - [anon_sym_o_PLUSe_GT] = ACTIONS(1875), - [anon_sym_e_PLUSo_GT] = ACTIONS(1875), - [anon_sym_err_GT_GT] = ACTIONS(1877), - [anon_sym_out_GT_GT] = ACTIONS(1877), - [anon_sym_e_GT_GT] = ACTIONS(1877), - [anon_sym_o_GT_GT] = ACTIONS(1877), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1877), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1877), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1877), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1877), - [aux_sym_unquoted_token1] = ACTIONS(1875), + [1450] = { + [sym_cell_path] = STATE(1755), + [sym_path] = STATE(1592), + [sym_comment] = STATE(1450), + [aux_sym_cell_path_repeat1] = STATE(1479), + [sym__newline] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1835), + [anon_sym_err_GT_PIPE] = ACTIONS(1835), + [anon_sym_out_GT_PIPE] = ACTIONS(1835), + [anon_sym_e_GT_PIPE] = ACTIONS(1835), + [anon_sym_o_GT_PIPE] = ACTIONS(1835), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1835), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1835), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1835), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1835), + [anon_sym_RPAREN] = ACTIONS(1835), + [anon_sym_DOLLAR] = ACTIONS(1833), + [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_DASH2] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1833), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1835), + [anon_sym_DOT_DOT_LT] = ACTIONS(1835), + [anon_sym_null] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(1835), + [anon_sym_false] = ACTIONS(1835), + [aux_sym__val_number_decimal_token1] = ACTIONS(1833), + [aux_sym__val_number_decimal_token2] = ACTIONS(1835), + [aux_sym__val_number_decimal_token3] = ACTIONS(1835), + [aux_sym__val_number_decimal_token4] = ACTIONS(1835), + [aux_sym__val_number_token1] = ACTIONS(1835), + [aux_sym__val_number_token2] = ACTIONS(1835), + [aux_sym__val_number_token3] = ACTIONS(1835), + [aux_sym__val_number_token4] = ACTIONS(1835), + [aux_sym__val_number_token5] = ACTIONS(1835), + [aux_sym__val_number_token6] = ACTIONS(1835), + [anon_sym_0b] = ACTIONS(1833), + [anon_sym_0o] = ACTIONS(1833), + [anon_sym_0x] = ACTIONS(1833), + [sym_val_date] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(1835), + [sym__str_single_quotes] = ACTIONS(1835), + [sym__str_back_ticks] = ACTIONS(1835), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1835), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1835), + [anon_sym_DOT2] = ACTIONS(4714), + [anon_sym_err_GT] = ACTIONS(1833), + [anon_sym_out_GT] = ACTIONS(1833), + [anon_sym_e_GT] = ACTIONS(1833), + [anon_sym_o_GT] = ACTIONS(1833), + [anon_sym_err_PLUSout_GT] = ACTIONS(1833), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1833), + [anon_sym_o_PLUSe_GT] = ACTIONS(1833), + [anon_sym_e_PLUSo_GT] = ACTIONS(1833), + [anon_sym_err_GT_GT] = ACTIONS(1835), + [anon_sym_out_GT_GT] = ACTIONS(1835), + [anon_sym_e_GT_GT] = ACTIONS(1835), + [anon_sym_o_GT_GT] = ACTIONS(1835), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1835), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1835), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1835), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1835), + [aux_sym_unquoted_token1] = ACTIONS(1833), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1835), + }, + [1451] = { + [sym_comment] = STATE(1451), + [sym__newline] = ACTIONS(1947), + [anon_sym_SEMI] = ACTIONS(1947), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_err_GT_PIPE] = ACTIONS(1947), + [anon_sym_out_GT_PIPE] = ACTIONS(1947), + [anon_sym_e_GT_PIPE] = ACTIONS(1947), + [anon_sym_o_GT_PIPE] = ACTIONS(1947), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1947), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1947), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1947), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1947), + [anon_sym_RPAREN] = ACTIONS(1947), + [anon_sym_GT2] = ACTIONS(1945), + [anon_sym_DASH2] = ACTIONS(1947), + [anon_sym_in2] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_RBRACE] = ACTIONS(1947), + [anon_sym_EQ_GT] = ACTIONS(1947), + [anon_sym_STAR2] = ACTIONS(1945), + [anon_sym_and2] = ACTIONS(1947), + [anon_sym_xor2] = ACTIONS(1947), + [anon_sym_or2] = ACTIONS(1947), + [anon_sym_not_DASHin2] = ACTIONS(1947), + [anon_sym_has2] = ACTIONS(1947), + [anon_sym_not_DASHhas2] = ACTIONS(1947), + [anon_sym_starts_DASHwith2] = ACTIONS(1947), + [anon_sym_ends_DASHwith2] = ACTIONS(1947), + [anon_sym_EQ_EQ2] = ACTIONS(1947), + [anon_sym_BANG_EQ2] = ACTIONS(1947), + [anon_sym_LT2] = ACTIONS(1945), + [anon_sym_LT_EQ2] = ACTIONS(1947), + [anon_sym_GT_EQ2] = ACTIONS(1947), + [anon_sym_EQ_TILDE2] = ACTIONS(1947), + [anon_sym_BANG_TILDE2] = ACTIONS(1947), + [anon_sym_STAR_STAR2] = ACTIONS(1947), + [anon_sym_PLUS_PLUS2] = ACTIONS(1947), + [anon_sym_SLASH2] = ACTIONS(1945), + [anon_sym_mod2] = ACTIONS(1947), + [anon_sym_SLASH_SLASH2] = ACTIONS(1947), + [anon_sym_PLUS2] = ACTIONS(1945), + [anon_sym_bit_DASHshl2] = ACTIONS(1947), + [anon_sym_bit_DASHshr2] = ACTIONS(1947), + [anon_sym_bit_DASHand2] = ACTIONS(1947), + [anon_sym_bit_DASHxor2] = ACTIONS(1947), + [anon_sym_bit_DASHor2] = ACTIONS(1947), + [anon_sym_DOT_DOT2] = ACTIONS(1945), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1947), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1947), + [anon_sym_COLON2] = ACTIONS(1947), + [anon_sym_err_GT] = ACTIONS(1945), + [anon_sym_out_GT] = ACTIONS(1945), + [anon_sym_e_GT] = ACTIONS(1945), + [anon_sym_o_GT] = ACTIONS(1945), + [anon_sym_err_PLUSout_GT] = ACTIONS(1945), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1945), + [anon_sym_o_PLUSe_GT] = ACTIONS(1945), + [anon_sym_e_PLUSo_GT] = ACTIONS(1945), + [anon_sym_err_GT_GT] = ACTIONS(1947), + [anon_sym_out_GT_GT] = ACTIONS(1947), + [anon_sym_e_GT_GT] = ACTIONS(1947), + [anon_sym_o_GT_GT] = ACTIONS(1947), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1947), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1947), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1947), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1947), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1877), }, - [1528] = { - [sym_cell_path] = STATE(2099), - [sym_path] = STATE(1450), - [sym_comment] = STATE(1528), - [aux_sym_cell_path_repeat1] = STATE(1340), - [sym__newline] = ACTIONS(1943), - [anon_sym_SEMI] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_err_GT_PIPE] = ACTIONS(1943), - [anon_sym_out_GT_PIPE] = ACTIONS(1943), - [anon_sym_e_GT_PIPE] = ACTIONS(1943), - [anon_sym_o_GT_PIPE] = ACTIONS(1943), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1943), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1943), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1943), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1943), - [anon_sym_RPAREN] = ACTIONS(1943), - [anon_sym_GT2] = ACTIONS(1941), - [anon_sym_DASH2] = ACTIONS(1943), - [anon_sym_in2] = ACTIONS(1943), - [anon_sym_LBRACE] = ACTIONS(1943), - [anon_sym_RBRACE] = ACTIONS(1943), - [anon_sym_EQ_GT] = ACTIONS(1943), - [anon_sym_STAR2] = ACTIONS(1941), - [anon_sym_and2] = ACTIONS(1943), - [anon_sym_xor2] = ACTIONS(1943), - [anon_sym_or2] = ACTIONS(1943), - [anon_sym_not_DASHin2] = ACTIONS(1943), - [anon_sym_has2] = ACTIONS(1943), - [anon_sym_not_DASHhas2] = ACTIONS(1943), - [anon_sym_starts_DASHwith2] = ACTIONS(1943), - [anon_sym_ends_DASHwith2] = ACTIONS(1943), - [anon_sym_EQ_EQ2] = ACTIONS(1943), - [anon_sym_BANG_EQ2] = ACTIONS(1943), - [anon_sym_LT2] = ACTIONS(1941), - [anon_sym_LT_EQ2] = ACTIONS(1943), - [anon_sym_GT_EQ2] = ACTIONS(1943), - [anon_sym_EQ_TILDE2] = ACTIONS(1943), - [anon_sym_BANG_TILDE2] = ACTIONS(1943), - [anon_sym_STAR_STAR2] = ACTIONS(1943), - [anon_sym_PLUS_PLUS2] = ACTIONS(1943), - [anon_sym_SLASH2] = ACTIONS(1941), - [anon_sym_mod2] = ACTIONS(1943), - [anon_sym_SLASH_SLASH2] = ACTIONS(1943), - [anon_sym_PLUS2] = ACTIONS(1941), - [anon_sym_bit_DASHshl2] = ACTIONS(1943), - [anon_sym_bit_DASHshr2] = ACTIONS(1943), - [anon_sym_bit_DASHand2] = ACTIONS(1943), - [anon_sym_bit_DASHxor2] = ACTIONS(1943), - [anon_sym_bit_DASHor2] = ACTIONS(1943), - [anon_sym_DOT2] = ACTIONS(4772), - [anon_sym_err_GT] = ACTIONS(1941), - [anon_sym_out_GT] = ACTIONS(1941), - [anon_sym_e_GT] = ACTIONS(1941), - [anon_sym_o_GT] = ACTIONS(1941), - [anon_sym_err_PLUSout_GT] = ACTIONS(1941), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1941), - [anon_sym_o_PLUSe_GT] = ACTIONS(1941), - [anon_sym_e_PLUSo_GT] = ACTIONS(1941), - [anon_sym_err_GT_GT] = ACTIONS(1943), - [anon_sym_out_GT_GT] = ACTIONS(1943), - [anon_sym_e_GT_GT] = ACTIONS(1943), - [anon_sym_o_GT_GT] = ACTIONS(1943), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1943), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1943), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1943), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1943), + [1452] = { + [sym_cell_path] = STATE(1756), + [sym_path] = STATE(1592), + [sym_comment] = STATE(1452), + [aux_sym_cell_path_repeat1] = STATE(1479), + [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_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_DOT2] = ACTIONS(4714), + [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(245), + [sym_raw_string_begin] = ACTIONS(1881), }, - [1529] = { - [sym_cell_path] = STATE(2018), - [sym_path] = STATE(1964), - [sym_comment] = STATE(1529), - [aux_sym_cell_path_repeat1] = STATE(1620), - [ts_builtin_sym_end] = ACTIONS(1961), - [sym__newline] = ACTIONS(1961), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_err_GT_PIPE] = ACTIONS(1961), - [anon_sym_out_GT_PIPE] = ACTIONS(1961), - [anon_sym_e_GT_PIPE] = ACTIONS(1961), - [anon_sym_o_GT_PIPE] = ACTIONS(1961), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1961), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1961), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1961), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_DOLLAR] = ACTIONS(1959), - [anon_sym_DASH_DASH] = ACTIONS(1961), - [anon_sym_DASH2] = ACTIONS(1959), - [anon_sym_LBRACE] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1961), - [anon_sym_DOT_DOT_LT] = ACTIONS(1961), - [anon_sym_null] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1961), - [anon_sym_false] = ACTIONS(1961), - [aux_sym__val_number_decimal_token1] = ACTIONS(1959), - [aux_sym__val_number_decimal_token2] = ACTIONS(1961), - [aux_sym__val_number_decimal_token3] = ACTIONS(1961), - [aux_sym__val_number_decimal_token4] = ACTIONS(1961), - [aux_sym__val_number_token1] = ACTIONS(1961), - [aux_sym__val_number_token2] = ACTIONS(1961), - [aux_sym__val_number_token3] = ACTIONS(1961), - [aux_sym__val_number_token4] = ACTIONS(1961), - [aux_sym__val_number_token5] = ACTIONS(1961), - [aux_sym__val_number_token6] = ACTIONS(1961), - [anon_sym_0b] = ACTIONS(1959), - [anon_sym_0o] = ACTIONS(1959), - [anon_sym_0x] = ACTIONS(1959), - [sym_val_date] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [sym__str_single_quotes] = ACTIONS(1961), - [sym__str_back_ticks] = ACTIONS(1961), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1961), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(1959), - [anon_sym_out_GT] = ACTIONS(1959), - [anon_sym_e_GT] = ACTIONS(1959), - [anon_sym_o_GT] = ACTIONS(1959), - [anon_sym_err_PLUSout_GT] = ACTIONS(1959), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1959), - [anon_sym_o_PLUSe_GT] = ACTIONS(1959), - [anon_sym_e_PLUSo_GT] = ACTIONS(1959), - [anon_sym_err_GT_GT] = ACTIONS(1961), - [anon_sym_out_GT_GT] = ACTIONS(1961), - [anon_sym_e_GT_GT] = ACTIONS(1961), - [anon_sym_o_GT_GT] = ACTIONS(1961), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1961), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1961), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1961), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1961), - [aux_sym_unquoted_token1] = ACTIONS(1959), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1961), + [1453] = { + [sym_comment] = STATE(1453), + [ts_builtin_sym_end] = ACTIONS(952), + [sym__newline] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(952), + [anon_sym_PIPE] = ACTIONS(952), + [anon_sym_err_GT_PIPE] = ACTIONS(952), + [anon_sym_out_GT_PIPE] = ACTIONS(952), + [anon_sym_e_GT_PIPE] = ACTIONS(952), + [anon_sym_o_GT_PIPE] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(952), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_DASH2] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_DOT_DOT] = ACTIONS(950), + [anon_sym_QMARK2] = ACTIONS(952), + [anon_sym_DOT_DOT2] = ACTIONS(950), + [anon_sym_DOT_DOT_EQ] = ACTIONS(950), + [anon_sym_DOT_DOT_LT] = ACTIONS(950), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(952), + [anon_sym_DOT_DOT_LT2] = ACTIONS(952), + [anon_sym_null] = ACTIONS(952), + [anon_sym_true] = ACTIONS(952), + [anon_sym_false] = ACTIONS(952), + [aux_sym__val_number_decimal_token1] = ACTIONS(950), + [aux_sym__val_number_decimal_token2] = ACTIONS(952), + [aux_sym__val_number_decimal_token3] = ACTIONS(952), + [aux_sym__val_number_decimal_token4] = ACTIONS(952), + [aux_sym__val_number_token1] = ACTIONS(952), + [aux_sym__val_number_token2] = ACTIONS(952), + [aux_sym__val_number_token3] = ACTIONS(952), + [aux_sym__val_number_token4] = ACTIONS(952), + [aux_sym__val_number_token5] = ACTIONS(952), + [aux_sym__val_number_token6] = ACTIONS(952), + [anon_sym_0b] = ACTIONS(950), + [anon_sym_0o] = ACTIONS(950), + [anon_sym_0x] = ACTIONS(950), + [sym_val_date] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(952), + [sym__str_single_quotes] = ACTIONS(952), + [sym__str_back_ticks] = ACTIONS(952), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(952), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(952), + [anon_sym_DOT2] = ACTIONS(950), + [anon_sym_err_GT] = ACTIONS(950), + [anon_sym_out_GT] = ACTIONS(950), + [anon_sym_e_GT] = ACTIONS(950), + [anon_sym_o_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT] = ACTIONS(950), + [anon_sym_err_GT_GT] = ACTIONS(952), + [anon_sym_out_GT_GT] = ACTIONS(952), + [anon_sym_e_GT_GT] = ACTIONS(952), + [anon_sym_o_GT_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(952), + [aux_sym_unquoted_token1] = ACTIONS(950), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(952), }, - [1530] = { - [sym_path] = STATE(1692), - [sym_comment] = STATE(1530), - [aux_sym_cell_path_repeat1] = STATE(1530), - [sym__newline] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(937), - [anon_sym_err_GT_PIPE] = ACTIONS(937), - [anon_sym_out_GT_PIPE] = ACTIONS(937), - [anon_sym_e_GT_PIPE] = ACTIONS(937), - [anon_sym_o_GT_PIPE] = ACTIONS(937), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_RPAREN] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(935), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_DASH2] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_DOT_DOT] = ACTIONS(935), - [anon_sym_DOT_DOT_EQ] = ACTIONS(937), - [anon_sym_DOT_DOT_LT] = ACTIONS(937), - [anon_sym_null] = ACTIONS(937), - [anon_sym_true] = ACTIONS(937), - [anon_sym_false] = ACTIONS(937), - [aux_sym__val_number_decimal_token1] = ACTIONS(935), - [aux_sym__val_number_decimal_token2] = ACTIONS(937), - [aux_sym__val_number_decimal_token3] = ACTIONS(937), - [aux_sym__val_number_decimal_token4] = ACTIONS(937), - [aux_sym__val_number_token1] = ACTIONS(937), - [aux_sym__val_number_token2] = ACTIONS(937), - [aux_sym__val_number_token3] = ACTIONS(937), - [aux_sym__val_number_token4] = ACTIONS(937), - [aux_sym__val_number_token5] = ACTIONS(937), - [aux_sym__val_number_token6] = ACTIONS(937), - [anon_sym_0b] = ACTIONS(935), - [anon_sym_0o] = ACTIONS(935), - [anon_sym_0x] = ACTIONS(935), - [sym_val_date] = ACTIONS(937), - [anon_sym_DQUOTE] = ACTIONS(937), - [sym__str_single_quotes] = ACTIONS(937), - [sym__str_back_ticks] = ACTIONS(937), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(937), - [anon_sym_DOT2] = ACTIONS(4818), - [anon_sym_err_GT] = ACTIONS(935), - [anon_sym_out_GT] = ACTIONS(935), - [anon_sym_e_GT] = ACTIONS(935), - [anon_sym_o_GT] = ACTIONS(935), - [anon_sym_err_PLUSout_GT] = ACTIONS(935), - [anon_sym_out_PLUSerr_GT] = ACTIONS(935), - [anon_sym_o_PLUSe_GT] = ACTIONS(935), - [anon_sym_e_PLUSo_GT] = ACTIONS(935), - [anon_sym_err_GT_GT] = ACTIONS(937), - [anon_sym_out_GT_GT] = ACTIONS(937), - [anon_sym_e_GT_GT] = ACTIONS(937), - [anon_sym_o_GT_GT] = ACTIONS(937), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), - [aux_sym_unquoted_token1] = ACTIONS(935), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(937), + [1454] = { + [sym_cell_path] = STATE(1759), + [sym_path] = STATE(1592), + [sym_comment] = STATE(1454), + [aux_sym_cell_path_repeat1] = STATE(1479), + [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(1849), + [anon_sym_DASH_DASH] = ACTIONS(1851), + [anon_sym_DASH2] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1851), + [anon_sym_RBRACE] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1849), + [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(1849), + [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(1849), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0x] = ACTIONS(1849), + [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_DOT2] = ACTIONS(4714), + [anon_sym_err_GT] = ACTIONS(1849), + [anon_sym_out_GT] = ACTIONS(1849), + [anon_sym_e_GT] = ACTIONS(1849), + [anon_sym_o_GT] = ACTIONS(1849), + [anon_sym_err_PLUSout_GT] = ACTIONS(1849), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1849), + [anon_sym_o_PLUSe_GT] = ACTIONS(1849), + [anon_sym_e_PLUSo_GT] = ACTIONS(1849), + [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(1849), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1851), }, - [1531] = { - [sym_cell_path] = STATE(2024), - [sym_path] = STATE(1964), - [sym_comment] = STATE(1531), - [aux_sym_cell_path_repeat1] = STATE(1620), + [1455] = { + [sym_cell_path] = STATE(1760), + [sym_path] = STATE(1592), + [sym_comment] = STATE(1455), + [aux_sym_cell_path_repeat1] = STATE(1479), + [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_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_DOT2] = ACTIONS(4714), + [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(245), + [sym_raw_string_begin] = ACTIONS(1865), + }, + [1456] = { + [sym_cell_path] = STATE(1731), + [sym_path] = STATE(1592), + [sym_comment] = STATE(1456), + [aux_sym_cell_path_repeat1] = STATE(1479), + [sym__newline] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1895), + [anon_sym_err_GT_PIPE] = ACTIONS(1895), + [anon_sym_out_GT_PIPE] = ACTIONS(1895), + [anon_sym_e_GT_PIPE] = ACTIONS(1895), + [anon_sym_o_GT_PIPE] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1895), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_RPAREN] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_DASH_DASH] = ACTIONS(1895), + [anon_sym_DASH2] = ACTIONS(1893), + [anon_sym_LBRACE] = ACTIONS(1895), + [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1895), + [anon_sym_DOT_DOT_LT] = ACTIONS(1895), + [anon_sym_null] = ACTIONS(1895), + [anon_sym_true] = ACTIONS(1895), + [anon_sym_false] = ACTIONS(1895), + [aux_sym__val_number_decimal_token1] = ACTIONS(1893), + [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_0b] = ACTIONS(1893), + [anon_sym_0o] = ACTIONS(1893), + [anon_sym_0x] = ACTIONS(1893), + [sym_val_date] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(1895), + [sym__str_single_quotes] = ACTIONS(1895), + [sym__str_back_ticks] = ACTIONS(1895), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1895), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1895), + [anon_sym_DOT2] = ACTIONS(4714), + [anon_sym_err_GT] = ACTIONS(1893), + [anon_sym_out_GT] = ACTIONS(1893), + [anon_sym_e_GT] = ACTIONS(1893), + [anon_sym_o_GT] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT] = ACTIONS(1893), + [anon_sym_err_GT_GT] = ACTIONS(1895), + [anon_sym_out_GT_GT] = ACTIONS(1895), + [anon_sym_e_GT_GT] = ACTIONS(1895), + [anon_sym_o_GT_GT] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1895), + [aux_sym_unquoted_token1] = ACTIONS(1893), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1895), + }, + [1457] = { + [sym_cell_path] = STATE(1924), + [sym_path] = STATE(1723), + [sym_comment] = STATE(1457), + [aux_sym_cell_path_repeat1] = STATE(1578), [ts_builtin_sym_end] = ACTIONS(1831), [sym__newline] = ACTIONS(1831), [anon_sym_SEMI] = ACTIONS(1831), @@ -219687,7 +211869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1831), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1831), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1831), - [anon_sym_DOT2] = ACTIONS(4816), + [anon_sym_DOT2] = ACTIONS(4760), [anon_sym_err_GT] = ACTIONS(1829), [anon_sym_out_GT] = ACTIONS(1829), [anon_sym_e_GT] = ACTIONS(1829), @@ -219708,905 +211890,1043 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(1831), }, - [1532] = { - [sym_comment] = STATE(1532), - [ts_builtin_sym_end] = ACTIONS(1650), - [sym__newline] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_err_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_GT_PIPE] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), - [anon_sym_GT2] = ACTIONS(1648), - [anon_sym_DASH2] = ACTIONS(1650), - [anon_sym_in2] = ACTIONS(1650), - [anon_sym_STAR2] = ACTIONS(1648), - [anon_sym_and2] = ACTIONS(1650), - [anon_sym_xor2] = ACTIONS(1650), - [anon_sym_or2] = ACTIONS(1650), - [anon_sym_not_DASHin2] = ACTIONS(1650), - [anon_sym_has2] = ACTIONS(1650), - [anon_sym_not_DASHhas2] = ACTIONS(1650), - [anon_sym_starts_DASHwith2] = ACTIONS(1650), - [anon_sym_ends_DASHwith2] = ACTIONS(1650), - [anon_sym_EQ_EQ2] = ACTIONS(1650), - [anon_sym_BANG_EQ2] = ACTIONS(1650), - [anon_sym_LT2] = ACTIONS(1648), - [anon_sym_LT_EQ2] = ACTIONS(1650), - [anon_sym_GT_EQ2] = ACTIONS(1650), - [anon_sym_EQ_TILDE2] = ACTIONS(1650), - [anon_sym_BANG_TILDE2] = ACTIONS(1650), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_STAR_STAR2] = ACTIONS(1650), - [anon_sym_PLUS_PLUS2] = ACTIONS(1650), - [anon_sym_SLASH2] = ACTIONS(1648), - [anon_sym_mod2] = ACTIONS(1650), - [anon_sym_SLASH_SLASH2] = ACTIONS(1650), - [anon_sym_PLUS2] = ACTIONS(1648), - [anon_sym_bit_DASHshl2] = ACTIONS(1650), - [anon_sym_bit_DASHshr2] = ACTIONS(1650), - [anon_sym_bit_DASHand2] = ACTIONS(1650), - [anon_sym_bit_DASHxor2] = ACTIONS(1650), - [anon_sym_bit_DASHor2] = ACTIONS(1650), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [aux_sym__immediate_decimal_token1] = ACTIONS(4821), - [aux_sym__immediate_decimal_token2] = ACTIONS(4823), - [anon_sym_err_GT] = ACTIONS(1648), - [anon_sym_out_GT] = ACTIONS(1648), - [anon_sym_e_GT] = ACTIONS(1648), - [anon_sym_o_GT] = ACTIONS(1648), - [anon_sym_err_PLUSout_GT] = ACTIONS(1648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), - [anon_sym_o_PLUSe_GT] = ACTIONS(1648), - [anon_sym_e_PLUSo_GT] = ACTIONS(1648), - [anon_sym_err_GT_GT] = ACTIONS(1650), - [anon_sym_out_GT_GT] = ACTIONS(1650), - [anon_sym_e_GT_GT] = ACTIONS(1650), - [anon_sym_o_GT_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), - [aux_sym_unquoted_token2] = ACTIONS(1648), + [1458] = { + [sym_cell_path] = STATE(1919), + [sym_path] = STATE(1723), + [sym_comment] = STATE(1458), + [aux_sym_cell_path_repeat1] = STATE(1578), + [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_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_DOT2] = ACTIONS(4760), + [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(245), + [sym_raw_string_begin] = ACTIONS(1873), }, - [1533] = { - [sym_cell_path] = STATE(2034), - [sym_path] = STATE(1964), - [sym_comment] = STATE(1533), - [aux_sym_cell_path_repeat1] = STATE(1620), - [ts_builtin_sym_end] = ACTIONS(1837), - [sym__newline] = ACTIONS(1837), - [anon_sym_SEMI] = ACTIONS(1837), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_err_GT_PIPE] = ACTIONS(1837), - [anon_sym_out_GT_PIPE] = ACTIONS(1837), - [anon_sym_e_GT_PIPE] = ACTIONS(1837), - [anon_sym_o_GT_PIPE] = ACTIONS(1837), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1837), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1837), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1837), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_DOLLAR] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1837), - [anon_sym_DASH2] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1837), - [anon_sym_DOT_DOT] = ACTIONS(1835), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1837), - [anon_sym_DOT_DOT_LT] = ACTIONS(1837), - [anon_sym_null] = ACTIONS(1837), - [anon_sym_true] = ACTIONS(1837), - [anon_sym_false] = ACTIONS(1837), - [aux_sym__val_number_decimal_token1] = ACTIONS(1835), - [aux_sym__val_number_decimal_token2] = ACTIONS(1837), - [aux_sym__val_number_decimal_token3] = ACTIONS(1837), - [aux_sym__val_number_decimal_token4] = ACTIONS(1837), - [aux_sym__val_number_token1] = ACTIONS(1837), - [aux_sym__val_number_token2] = ACTIONS(1837), - [aux_sym__val_number_token3] = ACTIONS(1837), - [aux_sym__val_number_token4] = ACTIONS(1837), - [aux_sym__val_number_token5] = ACTIONS(1837), - [aux_sym__val_number_token6] = ACTIONS(1837), - [anon_sym_0b] = ACTIONS(1835), - [anon_sym_0o] = ACTIONS(1835), - [anon_sym_0x] = ACTIONS(1835), - [sym_val_date] = ACTIONS(1837), - [anon_sym_DQUOTE] = ACTIONS(1837), - [sym__str_single_quotes] = ACTIONS(1837), - [sym__str_back_ticks] = ACTIONS(1837), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1837), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1837), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(1835), - [anon_sym_out_GT] = ACTIONS(1835), - [anon_sym_e_GT] = ACTIONS(1835), - [anon_sym_o_GT] = ACTIONS(1835), - [anon_sym_err_PLUSout_GT] = ACTIONS(1835), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1835), - [anon_sym_o_PLUSe_GT] = ACTIONS(1835), - [anon_sym_e_PLUSo_GT] = ACTIONS(1835), - [anon_sym_err_GT_GT] = ACTIONS(1837), - [anon_sym_out_GT_GT] = ACTIONS(1837), - [anon_sym_e_GT_GT] = ACTIONS(1837), - [anon_sym_o_GT_GT] = ACTIONS(1837), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1837), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1837), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1837), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1837), - [aux_sym_unquoted_token1] = ACTIONS(1835), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1837), + [1459] = { + [sym_cell_path] = STATE(1915), + [sym_path] = STATE(1723), + [sym_comment] = STATE(1459), + [aux_sym_cell_path_repeat1] = STATE(1578), + [ts_builtin_sym_end] = ACTIONS(927), + [sym__newline] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(927), + [anon_sym_err_GT_PIPE] = ACTIONS(927), + [anon_sym_out_GT_PIPE] = ACTIONS(927), + [anon_sym_e_GT_PIPE] = ACTIONS(927), + [anon_sym_o_GT_PIPE] = ACTIONS(927), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(927), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(927), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(927), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(927), + [anon_sym_LBRACK] = ACTIONS(927), + [anon_sym_LPAREN] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(927), + [anon_sym_DASH2] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(925), + [anon_sym_DOT_DOT_EQ] = ACTIONS(927), + [anon_sym_DOT_DOT_LT] = ACTIONS(927), + [anon_sym_null] = ACTIONS(927), + [anon_sym_true] = ACTIONS(927), + [anon_sym_false] = ACTIONS(927), + [aux_sym__val_number_decimal_token1] = ACTIONS(925), + [aux_sym__val_number_decimal_token2] = ACTIONS(927), + [aux_sym__val_number_decimal_token3] = ACTIONS(927), + [aux_sym__val_number_decimal_token4] = ACTIONS(927), + [aux_sym__val_number_token1] = ACTIONS(927), + [aux_sym__val_number_token2] = ACTIONS(927), + [aux_sym__val_number_token3] = ACTIONS(927), + [aux_sym__val_number_token4] = ACTIONS(927), + [aux_sym__val_number_token5] = ACTIONS(927), + [aux_sym__val_number_token6] = ACTIONS(927), + [anon_sym_0b] = ACTIONS(925), + [anon_sym_0o] = ACTIONS(925), + [anon_sym_0x] = ACTIONS(925), + [sym_val_date] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(927), + [sym__str_single_quotes] = ACTIONS(927), + [sym__str_back_ticks] = ACTIONS(927), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(927), + [anon_sym_DOT2] = ACTIONS(4760), + [anon_sym_err_GT] = ACTIONS(925), + [anon_sym_out_GT] = ACTIONS(925), + [anon_sym_e_GT] = ACTIONS(925), + [anon_sym_o_GT] = ACTIONS(925), + [anon_sym_err_PLUSout_GT] = ACTIONS(925), + [anon_sym_out_PLUSerr_GT] = ACTIONS(925), + [anon_sym_o_PLUSe_GT] = ACTIONS(925), + [anon_sym_e_PLUSo_GT] = ACTIONS(925), + [anon_sym_err_GT_GT] = ACTIONS(927), + [anon_sym_out_GT_GT] = ACTIONS(927), + [anon_sym_e_GT_GT] = ACTIONS(927), + [anon_sym_o_GT_GT] = ACTIONS(927), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(927), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(927), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(927), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(927), + [aux_sym_unquoted_token1] = ACTIONS(925), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(927), }, - [1534] = { - [sym_cell_path] = STATE(2035), - [sym_path] = STATE(1964), - [sym_comment] = STATE(1534), - [aux_sym_cell_path_repeat1] = STATE(1620), - [ts_builtin_sym_end] = ACTIONS(1849), - [sym__newline] = ACTIONS(1849), - [anon_sym_SEMI] = ACTIONS(1849), - [anon_sym_PIPE] = ACTIONS(1849), - [anon_sym_err_GT_PIPE] = ACTIONS(1849), - [anon_sym_out_GT_PIPE] = ACTIONS(1849), - [anon_sym_e_GT_PIPE] = ACTIONS(1849), - [anon_sym_o_GT_PIPE] = ACTIONS(1849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1849), - [anon_sym_DOLLAR] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1849), - [anon_sym_DASH2] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1849), - [anon_sym_DOT_DOT] = ACTIONS(1847), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1849), - [anon_sym_DOT_DOT_LT] = ACTIONS(1849), - [anon_sym_null] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1849), - [anon_sym_false] = ACTIONS(1849), - [aux_sym__val_number_decimal_token1] = ACTIONS(1847), - [aux_sym__val_number_decimal_token2] = ACTIONS(1849), - [aux_sym__val_number_decimal_token3] = ACTIONS(1849), - [aux_sym__val_number_decimal_token4] = ACTIONS(1849), - [aux_sym__val_number_token1] = ACTIONS(1849), - [aux_sym__val_number_token2] = ACTIONS(1849), - [aux_sym__val_number_token3] = ACTIONS(1849), - [aux_sym__val_number_token4] = ACTIONS(1849), - [aux_sym__val_number_token5] = ACTIONS(1849), - [aux_sym__val_number_token6] = ACTIONS(1849), - [anon_sym_0b] = ACTIONS(1847), - [anon_sym_0o] = ACTIONS(1847), - [anon_sym_0x] = ACTIONS(1847), - [sym_val_date] = ACTIONS(1849), - [anon_sym_DQUOTE] = ACTIONS(1849), - [sym__str_single_quotes] = ACTIONS(1849), - [sym__str_back_ticks] = ACTIONS(1849), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1849), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1849), - [anon_sym_DOT2] = ACTIONS(4816), - [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(1849), - [anon_sym_out_GT_GT] = ACTIONS(1849), - [anon_sym_e_GT_GT] = ACTIONS(1849), - [anon_sym_o_GT_GT] = ACTIONS(1849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1849), - [aux_sym_unquoted_token1] = ACTIONS(1847), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1849), + [1460] = { + [sym_cell_path] = STATE(1970), + [sym_path] = STATE(1723), + [sym_comment] = STATE(1460), + [aux_sym_cell_path_repeat1] = STATE(1578), + [ts_builtin_sym_end] = ACTIONS(1825), + [sym__newline] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1825), + [anon_sym_PIPE] = ACTIONS(1825), + [anon_sym_err_GT_PIPE] = ACTIONS(1825), + [anon_sym_out_GT_PIPE] = ACTIONS(1825), + [anon_sym_e_GT_PIPE] = ACTIONS(1825), + [anon_sym_o_GT_PIPE] = ACTIONS(1825), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1825), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1825), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1825), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1825), + [anon_sym_LBRACK] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1823), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_DASH2] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1825), + [anon_sym_DOT_DOT] = ACTIONS(1823), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1825), + [anon_sym_DOT_DOT_LT] = ACTIONS(1825), + [anon_sym_null] = ACTIONS(1825), + [anon_sym_true] = ACTIONS(1825), + [anon_sym_false] = ACTIONS(1825), + [aux_sym__val_number_decimal_token1] = ACTIONS(1823), + [aux_sym__val_number_decimal_token2] = ACTIONS(1825), + [aux_sym__val_number_decimal_token3] = ACTIONS(1825), + [aux_sym__val_number_decimal_token4] = ACTIONS(1825), + [aux_sym__val_number_token1] = ACTIONS(1825), + [aux_sym__val_number_token2] = ACTIONS(1825), + [aux_sym__val_number_token3] = ACTIONS(1825), + [aux_sym__val_number_token4] = ACTIONS(1825), + [aux_sym__val_number_token5] = ACTIONS(1825), + [aux_sym__val_number_token6] = ACTIONS(1825), + [anon_sym_0b] = ACTIONS(1823), + [anon_sym_0o] = ACTIONS(1823), + [anon_sym_0x] = ACTIONS(1823), + [sym_val_date] = ACTIONS(1825), + [anon_sym_DQUOTE] = ACTIONS(1825), + [sym__str_single_quotes] = ACTIONS(1825), + [sym__str_back_ticks] = ACTIONS(1825), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1825), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1825), + [anon_sym_DOT2] = ACTIONS(4760), + [anon_sym_err_GT] = ACTIONS(1823), + [anon_sym_out_GT] = ACTIONS(1823), + [anon_sym_e_GT] = ACTIONS(1823), + [anon_sym_o_GT] = ACTIONS(1823), + [anon_sym_err_PLUSout_GT] = ACTIONS(1823), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1823), + [anon_sym_o_PLUSe_GT] = ACTIONS(1823), + [anon_sym_e_PLUSo_GT] = ACTIONS(1823), + [anon_sym_err_GT_GT] = ACTIONS(1825), + [anon_sym_out_GT_GT] = ACTIONS(1825), + [anon_sym_e_GT_GT] = ACTIONS(1825), + [anon_sym_o_GT_GT] = ACTIONS(1825), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1825), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1825), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1825), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1825), + [aux_sym_unquoted_token1] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1825), }, - [1535] = { - [sym_cell_path] = STATE(2036), - [sym_path] = STATE(1964), - [sym_comment] = STATE(1535), - [aux_sym_cell_path_repeat1] = STATE(1620), - [ts_builtin_sym_end] = ACTIONS(1853), - [sym__newline] = ACTIONS(1853), - [anon_sym_SEMI] = ACTIONS(1853), - [anon_sym_PIPE] = ACTIONS(1853), - [anon_sym_err_GT_PIPE] = ACTIONS(1853), - [anon_sym_out_GT_PIPE] = ACTIONS(1853), - [anon_sym_e_GT_PIPE] = ACTIONS(1853), - [anon_sym_o_GT_PIPE] = ACTIONS(1853), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1853), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1853), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1853), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1853), - [anon_sym_LBRACK] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(1853), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1853), - [anon_sym_DASH2] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1851), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1853), - [anon_sym_DOT_DOT_LT] = ACTIONS(1853), - [anon_sym_null] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1853), - [anon_sym_false] = ACTIONS(1853), - [aux_sym__val_number_decimal_token1] = ACTIONS(1851), - [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_0b] = ACTIONS(1851), - [anon_sym_0o] = ACTIONS(1851), - [anon_sym_0x] = ACTIONS(1851), - [sym_val_date] = ACTIONS(1853), - [anon_sym_DQUOTE] = ACTIONS(1853), - [sym__str_single_quotes] = ACTIONS(1853), - [sym__str_back_ticks] = ACTIONS(1853), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1853), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1853), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(1851), - [anon_sym_out_GT] = ACTIONS(1851), - [anon_sym_e_GT] = ACTIONS(1851), - [anon_sym_o_GT] = ACTIONS(1851), - [anon_sym_err_PLUSout_GT] = ACTIONS(1851), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1851), - [anon_sym_o_PLUSe_GT] = ACTIONS(1851), - [anon_sym_e_PLUSo_GT] = ACTIONS(1851), - [anon_sym_err_GT_GT] = ACTIONS(1853), - [anon_sym_out_GT_GT] = ACTIONS(1853), - [anon_sym_e_GT_GT] = ACTIONS(1853), - [anon_sym_o_GT_GT] = ACTIONS(1853), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1853), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1853), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1853), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1853), - [aux_sym_unquoted_token1] = ACTIONS(1851), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1853), + [1461] = { + [sym_cell_path] = STATE(1933), + [sym_path] = STATE(1723), + [sym_comment] = STATE(1461), + [aux_sym_cell_path_repeat1] = STATE(1578), + [ts_builtin_sym_end] = ACTIONS(1847), + [sym__newline] = ACTIONS(1847), + [anon_sym_SEMI] = ACTIONS(1847), + [anon_sym_PIPE] = ACTIONS(1847), + [anon_sym_err_GT_PIPE] = ACTIONS(1847), + [anon_sym_out_GT_PIPE] = ACTIONS(1847), + [anon_sym_e_GT_PIPE] = ACTIONS(1847), + [anon_sym_o_GT_PIPE] = ACTIONS(1847), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1847), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1847), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1847), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1847), + [anon_sym_DOLLAR] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [anon_sym_DASH2] = ACTIONS(1845), + [anon_sym_LBRACE] = ACTIONS(1847), + [anon_sym_DOT_DOT] = ACTIONS(1845), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1847), + [anon_sym_DOT_DOT_LT] = ACTIONS(1847), + [anon_sym_null] = ACTIONS(1847), + [anon_sym_true] = ACTIONS(1847), + [anon_sym_false] = ACTIONS(1847), + [aux_sym__val_number_decimal_token1] = ACTIONS(1845), + [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_0b] = ACTIONS(1845), + [anon_sym_0o] = ACTIONS(1845), + [anon_sym_0x] = ACTIONS(1845), + [sym_val_date] = ACTIONS(1847), + [anon_sym_DQUOTE] = ACTIONS(1847), + [sym__str_single_quotes] = ACTIONS(1847), + [sym__str_back_ticks] = ACTIONS(1847), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1847), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1847), + [anon_sym_DOT2] = ACTIONS(4760), + [anon_sym_err_GT] = ACTIONS(1845), + [anon_sym_out_GT] = ACTIONS(1845), + [anon_sym_e_GT] = ACTIONS(1845), + [anon_sym_o_GT] = ACTIONS(1845), + [anon_sym_err_PLUSout_GT] = ACTIONS(1845), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1845), + [anon_sym_o_PLUSe_GT] = ACTIONS(1845), + [anon_sym_e_PLUSo_GT] = ACTIONS(1845), + [anon_sym_err_GT_GT] = ACTIONS(1847), + [anon_sym_out_GT_GT] = ACTIONS(1847), + [anon_sym_e_GT_GT] = ACTIONS(1847), + [anon_sym_o_GT_GT] = ACTIONS(1847), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1847), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1847), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1847), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1847), + [aux_sym_unquoted_token1] = ACTIONS(1845), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1847), }, - [1536] = { - [sym_cell_path] = STATE(2037), - [sym_path] = STATE(1964), - [sym_comment] = STATE(1536), - [aux_sym_cell_path_repeat1] = STATE(1620), - [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_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_DOT2] = ACTIONS(4816), - [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(245), - [sym_raw_string_begin] = ACTIONS(1861), + [1462] = { + [sym_comment] = STATE(1462), + [sym__newline] = ACTIONS(1955), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_err_GT_PIPE] = ACTIONS(1955), + [anon_sym_out_GT_PIPE] = ACTIONS(1955), + [anon_sym_e_GT_PIPE] = ACTIONS(1955), + [anon_sym_o_GT_PIPE] = ACTIONS(1955), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1955), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1955), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1955), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1955), + [anon_sym_RPAREN] = ACTIONS(1955), + [anon_sym_DOLLAR] = ACTIONS(1949), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_DASH2] = ACTIONS(1949), + [anon_sym_LBRACE] = ACTIONS(1955), + [anon_sym_RBRACE] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(1949), + [anon_sym_DOT_DOT2] = ACTIONS(4762), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1949), + [anon_sym_DOT_DOT_LT] = ACTIONS(1949), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4764), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4764), + [anon_sym_null] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1955), + [anon_sym_false] = ACTIONS(1955), + [aux_sym__val_number_decimal_token1] = ACTIONS(1949), + [aux_sym__val_number_decimal_token2] = ACTIONS(1955), + [aux_sym__val_number_decimal_token3] = ACTIONS(1955), + [aux_sym__val_number_decimal_token4] = ACTIONS(1955), + [aux_sym__val_number_token1] = ACTIONS(1955), + [aux_sym__val_number_token2] = ACTIONS(1955), + [aux_sym__val_number_token3] = ACTIONS(1955), + [aux_sym__val_number_token4] = ACTIONS(1955), + [aux_sym__val_number_token5] = ACTIONS(1955), + [aux_sym__val_number_token6] = ACTIONS(1955), + [anon_sym_0b] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1949), + [anon_sym_0x] = ACTIONS(1949), + [sym_val_date] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(1955), + [sym__str_single_quotes] = ACTIONS(1955), + [sym__str_back_ticks] = ACTIONS(1955), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1955), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1955), + [anon_sym_err_GT] = ACTIONS(1949), + [anon_sym_out_GT] = ACTIONS(1949), + [anon_sym_e_GT] = ACTIONS(1949), + [anon_sym_o_GT] = ACTIONS(1949), + [anon_sym_err_PLUSout_GT] = ACTIONS(1949), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1949), + [anon_sym_o_PLUSe_GT] = ACTIONS(1949), + [anon_sym_e_PLUSo_GT] = ACTIONS(1949), + [anon_sym_err_GT_GT] = ACTIONS(1955), + [anon_sym_out_GT_GT] = ACTIONS(1955), + [anon_sym_e_GT_GT] = ACTIONS(1955), + [anon_sym_o_GT_GT] = ACTIONS(1955), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1955), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1955), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1955), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1955), + [aux_sym_unquoted_token1] = ACTIONS(1949), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1955), }, - [1537] = { - [sym_cell_path] = STATE(2038), - [sym_path] = STATE(1964), - [sym_comment] = STATE(1537), - [aux_sym_cell_path_repeat1] = STATE(1620), - [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_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_DOT2] = ACTIONS(4816), - [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(245), - [sym_raw_string_begin] = ACTIONS(1865), + [1463] = { + [sym_comment] = STATE(1463), + [sym__newline] = ACTIONS(1963), + [anon_sym_SEMI] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(1963), + [anon_sym_err_GT_PIPE] = ACTIONS(1963), + [anon_sym_out_GT_PIPE] = ACTIONS(1963), + [anon_sym_e_GT_PIPE] = ACTIONS(1963), + [anon_sym_o_GT_PIPE] = ACTIONS(1963), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1963), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1963), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1963), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1963), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_LPAREN] = ACTIONS(1963), + [anon_sym_RPAREN] = ACTIONS(1963), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [anon_sym_DASH2] = ACTIONS(1957), + [anon_sym_LBRACE] = ACTIONS(1963), + [anon_sym_RBRACE] = ACTIONS(1963), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT2] = ACTIONS(4766), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1957), + [anon_sym_DOT_DOT_LT] = ACTIONS(1957), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4768), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4768), + [anon_sym_null] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1963), + [anon_sym_false] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1957), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1963), + [aux_sym__val_number_decimal_token4] = ACTIONS(1963), + [aux_sym__val_number_token1] = ACTIONS(1963), + [aux_sym__val_number_token2] = ACTIONS(1963), + [aux_sym__val_number_token3] = ACTIONS(1963), + [aux_sym__val_number_token4] = ACTIONS(1963), + [aux_sym__val_number_token5] = ACTIONS(1963), + [aux_sym__val_number_token6] = ACTIONS(1963), + [anon_sym_0b] = ACTIONS(1957), + [anon_sym_0o] = ACTIONS(1957), + [anon_sym_0x] = ACTIONS(1957), + [sym_val_date] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1963), + [sym__str_single_quotes] = ACTIONS(1963), + [sym__str_back_ticks] = ACTIONS(1963), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1963), + [anon_sym_err_GT] = ACTIONS(1957), + [anon_sym_out_GT] = ACTIONS(1957), + [anon_sym_e_GT] = ACTIONS(1957), + [anon_sym_o_GT] = ACTIONS(1957), + [anon_sym_err_PLUSout_GT] = ACTIONS(1957), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1957), + [anon_sym_o_PLUSe_GT] = ACTIONS(1957), + [anon_sym_e_PLUSo_GT] = ACTIONS(1957), + [anon_sym_err_GT_GT] = ACTIONS(1963), + [anon_sym_out_GT_GT] = ACTIONS(1963), + [anon_sym_e_GT_GT] = ACTIONS(1963), + [anon_sym_o_GT_GT] = ACTIONS(1963), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1963), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1963), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1963), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1963), + [aux_sym_unquoted_token1] = ACTIONS(1957), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1963), }, - [1538] = { - [sym_cell_path] = STATE(2039), - [sym_path] = STATE(1964), - [sym_comment] = STATE(1538), - [aux_sym_cell_path_repeat1] = STATE(1620), - [ts_builtin_sym_end] = ACTIONS(1877), - [sym__newline] = ACTIONS(1877), - [anon_sym_SEMI] = ACTIONS(1877), - [anon_sym_PIPE] = ACTIONS(1877), - [anon_sym_err_GT_PIPE] = ACTIONS(1877), - [anon_sym_out_GT_PIPE] = ACTIONS(1877), - [anon_sym_e_GT_PIPE] = ACTIONS(1877), - [anon_sym_o_GT_PIPE] = ACTIONS(1877), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1877), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1877), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1877), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1877), - [anon_sym_LBRACK] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_DOLLAR] = ACTIONS(1875), - [anon_sym_DASH_DASH] = ACTIONS(1877), - [anon_sym_DASH2] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1875), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1877), - [anon_sym_DOT_DOT_LT] = ACTIONS(1877), - [anon_sym_null] = ACTIONS(1877), - [anon_sym_true] = ACTIONS(1877), - [anon_sym_false] = ACTIONS(1877), - [aux_sym__val_number_decimal_token1] = ACTIONS(1875), - [aux_sym__val_number_decimal_token2] = ACTIONS(1877), - [aux_sym__val_number_decimal_token3] = ACTIONS(1877), - [aux_sym__val_number_decimal_token4] = ACTIONS(1877), - [aux_sym__val_number_token1] = ACTIONS(1877), - [aux_sym__val_number_token2] = ACTIONS(1877), - [aux_sym__val_number_token3] = ACTIONS(1877), - [aux_sym__val_number_token4] = ACTIONS(1877), - [aux_sym__val_number_token5] = ACTIONS(1877), - [aux_sym__val_number_token6] = ACTIONS(1877), - [anon_sym_0b] = ACTIONS(1875), - [anon_sym_0o] = ACTIONS(1875), - [anon_sym_0x] = ACTIONS(1875), - [sym_val_date] = ACTIONS(1877), - [anon_sym_DQUOTE] = ACTIONS(1877), - [sym__str_single_quotes] = ACTIONS(1877), - [sym__str_back_ticks] = ACTIONS(1877), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1877), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1877), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(1875), - [anon_sym_out_GT] = ACTIONS(1875), - [anon_sym_e_GT] = ACTIONS(1875), - [anon_sym_o_GT] = ACTIONS(1875), - [anon_sym_err_PLUSout_GT] = ACTIONS(1875), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1875), - [anon_sym_o_PLUSe_GT] = ACTIONS(1875), - [anon_sym_e_PLUSo_GT] = ACTIONS(1875), - [anon_sym_err_GT_GT] = ACTIONS(1877), - [anon_sym_out_GT_GT] = ACTIONS(1877), - [anon_sym_e_GT_GT] = ACTIONS(1877), - [anon_sym_o_GT_GT] = ACTIONS(1877), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1877), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1877), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1877), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1877), - [aux_sym_unquoted_token1] = ACTIONS(1875), + [1464] = { + [sym_comment] = STATE(1464), + [sym__newline] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_PIPE] = ACTIONS(1971), + [anon_sym_err_GT_PIPE] = ACTIONS(1971), + [anon_sym_out_GT_PIPE] = ACTIONS(1971), + [anon_sym_e_GT_PIPE] = ACTIONS(1971), + [anon_sym_o_GT_PIPE] = ACTIONS(1971), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1971), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1971), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1971), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1971), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_LPAREN] = ACTIONS(1971), + [anon_sym_RPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(1965), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_DASH2] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1971), + [anon_sym_RBRACE] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1965), + [anon_sym_DOT_DOT2] = ACTIONS(4770), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1965), + [anon_sym_DOT_DOT_LT] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4772), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4772), + [anon_sym_null] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1971), + [aux_sym__val_number_decimal_token3] = ACTIONS(1971), + [aux_sym__val_number_decimal_token4] = ACTIONS(1971), + [aux_sym__val_number_token1] = ACTIONS(1971), + [aux_sym__val_number_token2] = ACTIONS(1971), + [aux_sym__val_number_token3] = ACTIONS(1971), + [aux_sym__val_number_token4] = ACTIONS(1971), + [aux_sym__val_number_token5] = ACTIONS(1971), + [aux_sym__val_number_token6] = ACTIONS(1971), + [anon_sym_0b] = ACTIONS(1965), + [anon_sym_0o] = ACTIONS(1965), + [anon_sym_0x] = ACTIONS(1965), + [sym_val_date] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [sym__str_single_quotes] = ACTIONS(1971), + [sym__str_back_ticks] = ACTIONS(1971), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1971), + [anon_sym_err_GT] = ACTIONS(1965), + [anon_sym_out_GT] = ACTIONS(1965), + [anon_sym_e_GT] = ACTIONS(1965), + [anon_sym_o_GT] = ACTIONS(1965), + [anon_sym_err_PLUSout_GT] = ACTIONS(1965), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1965), + [anon_sym_o_PLUSe_GT] = ACTIONS(1965), + [anon_sym_e_PLUSo_GT] = ACTIONS(1965), + [anon_sym_err_GT_GT] = ACTIONS(1971), + [anon_sym_out_GT_GT] = ACTIONS(1971), + [anon_sym_e_GT_GT] = ACTIONS(1971), + [anon_sym_o_GT_GT] = ACTIONS(1971), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1971), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1971), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1971), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1971), + [aux_sym_unquoted_token1] = ACTIONS(1965), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1971), + }, + [1465] = { + [sym_comment] = STATE(1465), + [ts_builtin_sym_end] = ACTIONS(1688), + [sym__newline] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_err_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_GT_PIPE] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1688), + [anon_sym_GT2] = ACTIONS(1686), + [anon_sym_DASH2] = ACTIONS(1688), + [anon_sym_in2] = ACTIONS(1688), + [anon_sym_STAR2] = ACTIONS(1686), + [anon_sym_and2] = ACTIONS(1688), + [anon_sym_xor2] = ACTIONS(1688), + [anon_sym_or2] = ACTIONS(1688), + [anon_sym_not_DASHin2] = ACTIONS(1688), + [anon_sym_has2] = ACTIONS(1688), + [anon_sym_not_DASHhas2] = ACTIONS(1688), + [anon_sym_starts_DASHwith2] = ACTIONS(1688), + [anon_sym_ends_DASHwith2] = ACTIONS(1688), + [anon_sym_EQ_EQ2] = ACTIONS(1688), + [anon_sym_BANG_EQ2] = ACTIONS(1688), + [anon_sym_LT2] = ACTIONS(1686), + [anon_sym_LT_EQ2] = ACTIONS(1688), + [anon_sym_GT_EQ2] = ACTIONS(1688), + [anon_sym_EQ_TILDE2] = ACTIONS(1688), + [anon_sym_BANG_TILDE2] = ACTIONS(1688), + [anon_sym_LPAREN2] = ACTIONS(1688), + [anon_sym_STAR_STAR2] = ACTIONS(1688), + [anon_sym_PLUS_PLUS2] = ACTIONS(1688), + [anon_sym_SLASH2] = ACTIONS(1686), + [anon_sym_mod2] = ACTIONS(1688), + [anon_sym_SLASH_SLASH2] = ACTIONS(1688), + [anon_sym_PLUS2] = ACTIONS(1686), + [anon_sym_bit_DASHshl2] = ACTIONS(1688), + [anon_sym_bit_DASHshr2] = ACTIONS(1688), + [anon_sym_bit_DASHand2] = ACTIONS(1688), + [anon_sym_bit_DASHxor2] = ACTIONS(1688), + [anon_sym_bit_DASHor2] = ACTIONS(1688), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [aux_sym__immediate_decimal_token1] = ACTIONS(4774), + [aux_sym__immediate_decimal_token2] = ACTIONS(4776), + [anon_sym_err_GT] = ACTIONS(1686), + [anon_sym_out_GT] = ACTIONS(1686), + [anon_sym_e_GT] = ACTIONS(1686), + [anon_sym_o_GT] = ACTIONS(1686), + [anon_sym_err_PLUSout_GT] = ACTIONS(1686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1686), + [anon_sym_o_PLUSe_GT] = ACTIONS(1686), + [anon_sym_e_PLUSo_GT] = ACTIONS(1686), + [anon_sym_err_GT_GT] = ACTIONS(1688), + [anon_sym_out_GT_GT] = ACTIONS(1688), + [anon_sym_e_GT_GT] = ACTIONS(1688), + [anon_sym_o_GT_GT] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1688), + [aux_sym_unquoted_token2] = ACTIONS(1686), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1877), }, - [1539] = { - [sym_cell_path] = STATE(2040), - [sym_path] = STATE(1964), - [sym_comment] = STATE(1539), - [aux_sym_cell_path_repeat1] = STATE(1620), - [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_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_DOT2] = ACTIONS(4816), - [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), + [1466] = { + [sym_comment] = STATE(1466), + [sym__newline] = ACTIONS(1979), + [anon_sym_SEMI] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_err_GT_PIPE] = ACTIONS(1979), + [anon_sym_out_GT_PIPE] = ACTIONS(1979), + [anon_sym_e_GT_PIPE] = ACTIONS(1979), + [anon_sym_o_GT_PIPE] = ACTIONS(1979), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1979), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1979), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1979), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1979), + [anon_sym_LBRACK] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1979), + [anon_sym_RPAREN] = ACTIONS(1979), + [anon_sym_DOLLAR] = ACTIONS(1973), + [anon_sym_DASH_DASH] = ACTIONS(1979), + [anon_sym_DASH2] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_RBRACE] = ACTIONS(1979), + [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT2] = ACTIONS(4778), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1973), + [anon_sym_DOT_DOT_LT] = ACTIONS(1973), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4780), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4780), + [anon_sym_null] = ACTIONS(1979), + [anon_sym_true] = ACTIONS(1979), + [anon_sym_false] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1973), + [aux_sym__val_number_decimal_token2] = ACTIONS(1979), + [aux_sym__val_number_decimal_token3] = ACTIONS(1979), + [aux_sym__val_number_decimal_token4] = ACTIONS(1979), + [aux_sym__val_number_token1] = ACTIONS(1979), + [aux_sym__val_number_token2] = ACTIONS(1979), + [aux_sym__val_number_token3] = ACTIONS(1979), + [aux_sym__val_number_token4] = ACTIONS(1979), + [aux_sym__val_number_token5] = ACTIONS(1979), + [aux_sym__val_number_token6] = ACTIONS(1979), + [anon_sym_0b] = ACTIONS(1973), + [anon_sym_0o] = ACTIONS(1973), + [anon_sym_0x] = ACTIONS(1973), + [sym_val_date] = ACTIONS(1979), + [anon_sym_DQUOTE] = ACTIONS(1979), + [sym__str_single_quotes] = ACTIONS(1979), + [sym__str_back_ticks] = ACTIONS(1979), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1979), + [anon_sym_err_GT] = ACTIONS(1973), + [anon_sym_out_GT] = ACTIONS(1973), + [anon_sym_e_GT] = ACTIONS(1973), + [anon_sym_o_GT] = ACTIONS(1973), + [anon_sym_err_PLUSout_GT] = ACTIONS(1973), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1973), + [anon_sym_o_PLUSe_GT] = ACTIONS(1973), + [anon_sym_e_PLUSo_GT] = ACTIONS(1973), + [anon_sym_err_GT_GT] = ACTIONS(1979), + [anon_sym_out_GT_GT] = ACTIONS(1979), + [anon_sym_e_GT_GT] = ACTIONS(1979), + [anon_sym_o_GT_GT] = ACTIONS(1979), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1979), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1979), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1979), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1979), + [aux_sym_unquoted_token1] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1979), + }, + [1467] = { + [sym_comment] = STATE(1467), + [ts_builtin_sym_end] = ACTIONS(1493), + [sym__newline] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_err_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_GT_PIPE] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1493), + [anon_sym_GT2] = ACTIONS(1491), + [anon_sym_DASH2] = ACTIONS(1493), + [anon_sym_in2] = ACTIONS(1493), + [anon_sym_STAR2] = ACTIONS(1491), + [anon_sym_and2] = ACTIONS(1493), + [anon_sym_xor2] = ACTIONS(1493), + [anon_sym_or2] = ACTIONS(1493), + [anon_sym_not_DASHin2] = ACTIONS(1493), + [anon_sym_has2] = ACTIONS(1493), + [anon_sym_not_DASHhas2] = ACTIONS(1493), + [anon_sym_starts_DASHwith2] = ACTIONS(1493), + [anon_sym_ends_DASHwith2] = ACTIONS(1493), + [anon_sym_EQ_EQ2] = ACTIONS(1493), + [anon_sym_BANG_EQ2] = ACTIONS(1493), + [anon_sym_LT2] = ACTIONS(1491), + [anon_sym_LT_EQ2] = ACTIONS(1493), + [anon_sym_GT_EQ2] = ACTIONS(1493), + [anon_sym_EQ_TILDE2] = ACTIONS(1493), + [anon_sym_BANG_TILDE2] = ACTIONS(1493), + [anon_sym_LPAREN2] = ACTIONS(1493), + [anon_sym_STAR_STAR2] = ACTIONS(1493), + [anon_sym_PLUS_PLUS2] = ACTIONS(1493), + [anon_sym_SLASH2] = ACTIONS(1491), + [anon_sym_mod2] = ACTIONS(1493), + [anon_sym_SLASH_SLASH2] = ACTIONS(1493), + [anon_sym_PLUS2] = ACTIONS(1491), + [anon_sym_bit_DASHshl2] = ACTIONS(1493), + [anon_sym_bit_DASHshr2] = ACTIONS(1493), + [anon_sym_bit_DASHand2] = ACTIONS(1493), + [anon_sym_bit_DASHxor2] = ACTIONS(1493), + [anon_sym_bit_DASHor2] = ACTIONS(1493), + [anon_sym_DOT_DOT2] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1493), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1493), + [sym_filesize_unit] = ACTIONS(1491), + [sym_duration_unit] = ACTIONS(1493), + [anon_sym_err_GT] = ACTIONS(1491), + [anon_sym_out_GT] = ACTIONS(1491), + [anon_sym_e_GT] = ACTIONS(1491), + [anon_sym_o_GT] = ACTIONS(1491), + [anon_sym_err_PLUSout_GT] = ACTIONS(1491), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1491), + [anon_sym_o_PLUSe_GT] = ACTIONS(1491), + [anon_sym_e_PLUSo_GT] = ACTIONS(1491), + [anon_sym_err_GT_GT] = ACTIONS(1493), + [anon_sym_out_GT_GT] = ACTIONS(1493), + [anon_sym_e_GT_GT] = ACTIONS(1493), + [anon_sym_o_GT_GT] = ACTIONS(1493), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1493), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1493), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1493), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1493), + [aux_sym_unquoted_token2] = ACTIONS(1491), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1881), }, - [1540] = { - [sym_cell_path] = STATE(2041), - [sym_path] = STATE(1964), - [sym_comment] = STATE(1540), - [aux_sym_cell_path_repeat1] = STATE(1620), - [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_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_DOT2] = ACTIONS(4816), - [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(245), - [sym_raw_string_begin] = ACTIONS(1897), + [1468] = { + [sym_comment] = STATE(1468), + [ts_builtin_sym_end] = ACTIONS(1688), + [sym__newline] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_err_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_GT_PIPE] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1688), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_LPAREN2] = ACTIONS(1688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT] = ACTIONS(1688), + [aux_sym__immediate_decimal_token1] = ACTIONS(4782), + [aux_sym__immediate_decimal_token2] = ACTIONS(4784), + [anon_sym_null] = ACTIONS(1688), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1688), + [aux_sym__val_number_decimal_token3] = ACTIONS(1688), + [aux_sym__val_number_decimal_token4] = ACTIONS(1688), + [aux_sym__val_number_token1] = ACTIONS(1688), + [aux_sym__val_number_token2] = ACTIONS(1688), + [aux_sym__val_number_token3] = ACTIONS(1688), + [aux_sym__val_number_token4] = ACTIONS(1688), + [aux_sym__val_number_token5] = ACTIONS(1688), + [aux_sym__val_number_token6] = ACTIONS(1688), + [anon_sym_0b] = ACTIONS(1686), + [anon_sym_0o] = ACTIONS(1686), + [anon_sym_0x] = ACTIONS(1686), + [sym_val_date] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [sym__str_single_quotes] = ACTIONS(1688), + [sym__str_back_ticks] = ACTIONS(1688), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1688), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1688), + [anon_sym_err_GT] = ACTIONS(1686), + [anon_sym_out_GT] = ACTIONS(1686), + [anon_sym_e_GT] = ACTIONS(1686), + [anon_sym_o_GT] = ACTIONS(1686), + [anon_sym_err_PLUSout_GT] = ACTIONS(1686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1686), + [anon_sym_o_PLUSe_GT] = ACTIONS(1686), + [anon_sym_e_PLUSo_GT] = ACTIONS(1686), + [anon_sym_err_GT_GT] = ACTIONS(1688), + [anon_sym_out_GT_GT] = ACTIONS(1688), + [anon_sym_e_GT_GT] = ACTIONS(1688), + [anon_sym_o_GT_GT] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1688), + [aux_sym_unquoted_token1] = ACTIONS(1686), + [aux_sym_unquoted_token2] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1688), }, - [1541] = { - [sym_cell_path] = STATE(2042), - [sym_path] = STATE(1964), - [sym_comment] = STATE(1541), - [aux_sym_cell_path_repeat1] = STATE(1620), - [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_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_DOT2] = ACTIONS(4816), - [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(245), - [sym_raw_string_begin] = ACTIONS(1915), + [1469] = { + [sym_comment] = STATE(1469), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4740), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), }, - [1542] = { - [sym_cell_path] = STATE(2043), - [sym_path] = STATE(1964), - [sym_comment] = STATE(1542), - [aux_sym_cell_path_repeat1] = STATE(1620), - [ts_builtin_sym_end] = ACTIONS(1947), - [sym__newline] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_PIPE] = ACTIONS(1947), - [anon_sym_err_GT_PIPE] = ACTIONS(1947), - [anon_sym_out_GT_PIPE] = ACTIONS(1947), - [anon_sym_e_GT_PIPE] = ACTIONS(1947), - [anon_sym_o_GT_PIPE] = ACTIONS(1947), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1947), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1947), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1947), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1947), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_DOLLAR] = ACTIONS(1945), - [anon_sym_DASH_DASH] = ACTIONS(1947), - [anon_sym_DASH2] = ACTIONS(1945), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1945), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1947), - [anon_sym_DOT_DOT_LT] = ACTIONS(1947), - [anon_sym_null] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1947), - [anon_sym_false] = ACTIONS(1947), - [aux_sym__val_number_decimal_token1] = ACTIONS(1945), - [aux_sym__val_number_decimal_token2] = ACTIONS(1947), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(1947), - [aux_sym__val_number_token2] = ACTIONS(1947), - [aux_sym__val_number_token3] = ACTIONS(1947), - [aux_sym__val_number_token4] = ACTIONS(1947), - [aux_sym__val_number_token5] = ACTIONS(1947), - [aux_sym__val_number_token6] = ACTIONS(1947), - [anon_sym_0b] = ACTIONS(1945), - [anon_sym_0o] = ACTIONS(1945), - [anon_sym_0x] = ACTIONS(1945), - [sym_val_date] = ACTIONS(1947), - [anon_sym_DQUOTE] = ACTIONS(1947), - [sym__str_single_quotes] = ACTIONS(1947), - [sym__str_back_ticks] = ACTIONS(1947), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1947), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1947), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(1945), - [anon_sym_out_GT] = ACTIONS(1945), - [anon_sym_e_GT] = ACTIONS(1945), - [anon_sym_o_GT] = ACTIONS(1945), - [anon_sym_err_PLUSout_GT] = ACTIONS(1945), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1945), - [anon_sym_o_PLUSe_GT] = ACTIONS(1945), - [anon_sym_e_PLUSo_GT] = ACTIONS(1945), - [anon_sym_err_GT_GT] = ACTIONS(1947), - [anon_sym_out_GT_GT] = ACTIONS(1947), - [anon_sym_e_GT_GT] = ACTIONS(1947), - [anon_sym_o_GT_GT] = ACTIONS(1947), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1947), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1947), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1947), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1947), - [aux_sym_unquoted_token1] = ACTIONS(1945), + [1470] = { + [sym_comment] = STATE(1470), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_DOT_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT2] = ACTIONS(4786), + [anon_sym_DOT_DOT_EQ] = ACTIONS(998), + [anon_sym_DOT_DOT_LT] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4788), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4788), + [anon_sym_null] = ACTIONS(994), + [anon_sym_true] = ACTIONS(994), + [anon_sym_false] = ACTIONS(994), + [aux_sym__val_number_decimal_token1] = ACTIONS(998), + [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_0b] = ACTIONS(998), + [anon_sym_0o] = ACTIONS(998), + [anon_sym_0x] = ACTIONS(998), + [sym_val_date] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym__str_single_quotes] = ACTIONS(994), + [sym__str_back_ticks] = ACTIONS(994), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(994), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(994), + [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(994), + [anon_sym_out_GT_GT] = ACTIONS(994), + [anon_sym_e_GT_GT] = ACTIONS(994), + [anon_sym_o_GT_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), + [aux_sym_unquoted_token1] = ACTIONS(998), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1947), + [sym_raw_string_begin] = ACTIONS(994), }, - [1543] = { - [sym_comment] = STATE(1543), - [sym__newline] = ACTIONS(1969), - [anon_sym_SEMI] = ACTIONS(1969), - [anon_sym_PIPE] = ACTIONS(1969), - [anon_sym_err_GT_PIPE] = ACTIONS(1969), - [anon_sym_out_GT_PIPE] = ACTIONS(1969), - [anon_sym_e_GT_PIPE] = ACTIONS(1969), - [anon_sym_o_GT_PIPE] = ACTIONS(1969), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1969), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1969), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1969), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1969), - [anon_sym_LPAREN] = ACTIONS(1969), - [anon_sym_RPAREN] = ACTIONS(1969), - [anon_sym_DOLLAR] = ACTIONS(1967), - [anon_sym_DASH_DASH] = ACTIONS(1969), - [anon_sym_DASH2] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1969), - [anon_sym_RBRACE] = ACTIONS(1969), - [anon_sym_DOT_DOT] = ACTIONS(1967), - [anon_sym_DOT_DOT2] = ACTIONS(1967), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1967), - [anon_sym_DOT_DOT_LT] = ACTIONS(1967), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1969), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1969), - [anon_sym_null] = ACTIONS(1969), - [anon_sym_true] = ACTIONS(1969), - [anon_sym_false] = ACTIONS(1969), - [aux_sym__val_number_decimal_token1] = ACTIONS(1967), - [aux_sym__val_number_decimal_token2] = ACTIONS(1969), - [aux_sym__val_number_decimal_token3] = ACTIONS(1969), - [aux_sym__val_number_decimal_token4] = ACTIONS(1969), - [aux_sym__val_number_token1] = ACTIONS(1969), - [aux_sym__val_number_token2] = ACTIONS(1969), - [aux_sym__val_number_token3] = ACTIONS(1969), - [aux_sym__val_number_token4] = ACTIONS(1969), - [aux_sym__val_number_token5] = ACTIONS(1969), - [aux_sym__val_number_token6] = ACTIONS(1969), - [anon_sym_0b] = ACTIONS(1967), - [anon_sym_0o] = ACTIONS(1967), - [anon_sym_0x] = ACTIONS(1967), - [sym_val_date] = ACTIONS(1969), - [anon_sym_DQUOTE] = ACTIONS(1969), - [sym__str_single_quotes] = ACTIONS(1969), - [sym__str_back_ticks] = ACTIONS(1969), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1969), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1969), - [anon_sym_err_GT] = ACTIONS(1967), - [anon_sym_out_GT] = ACTIONS(1967), - [anon_sym_e_GT] = ACTIONS(1967), - [anon_sym_o_GT] = ACTIONS(1967), - [anon_sym_err_PLUSout_GT] = ACTIONS(1967), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1967), - [anon_sym_o_PLUSe_GT] = ACTIONS(1967), - [anon_sym_e_PLUSo_GT] = ACTIONS(1967), - [anon_sym_err_GT_GT] = ACTIONS(1969), - [anon_sym_out_GT_GT] = ACTIONS(1969), - [anon_sym_e_GT_GT] = ACTIONS(1969), - [anon_sym_o_GT_GT] = ACTIONS(1969), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1969), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1969), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1969), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1969), - [aux_sym_unquoted_token1] = ACTIONS(1967), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1969), + [1471] = { + [sym_comment] = STATE(1471), + [sym__newline] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_err_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_GT_PIPE] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1688), + [anon_sym_RPAREN] = ACTIONS(1688), + [anon_sym_GT2] = ACTIONS(1686), + [anon_sym_DASH2] = ACTIONS(1688), + [anon_sym_in2] = ACTIONS(1688), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_STAR2] = ACTIONS(1686), + [anon_sym_and2] = ACTIONS(1688), + [anon_sym_xor2] = ACTIONS(1688), + [anon_sym_or2] = ACTIONS(1688), + [anon_sym_not_DASHin2] = ACTIONS(1688), + [anon_sym_has2] = ACTIONS(1688), + [anon_sym_not_DASHhas2] = ACTIONS(1688), + [anon_sym_starts_DASHwith2] = ACTIONS(1688), + [anon_sym_ends_DASHwith2] = ACTIONS(1688), + [anon_sym_EQ_EQ2] = ACTIONS(1688), + [anon_sym_BANG_EQ2] = ACTIONS(1688), + [anon_sym_LT2] = ACTIONS(1686), + [anon_sym_LT_EQ2] = ACTIONS(1688), + [anon_sym_GT_EQ2] = ACTIONS(1688), + [anon_sym_EQ_TILDE2] = ACTIONS(1688), + [anon_sym_BANG_TILDE2] = ACTIONS(1688), + [anon_sym_LPAREN2] = ACTIONS(1688), + [anon_sym_STAR_STAR2] = ACTIONS(1688), + [anon_sym_PLUS_PLUS2] = ACTIONS(1688), + [anon_sym_SLASH2] = ACTIONS(1686), + [anon_sym_mod2] = ACTIONS(1688), + [anon_sym_SLASH_SLASH2] = ACTIONS(1688), + [anon_sym_PLUS2] = ACTIONS(1686), + [anon_sym_bit_DASHshl2] = ACTIONS(1688), + [anon_sym_bit_DASHshr2] = ACTIONS(1688), + [anon_sym_bit_DASHand2] = ACTIONS(1688), + [anon_sym_bit_DASHxor2] = ACTIONS(1688), + [anon_sym_bit_DASHor2] = ACTIONS(1688), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [anon_sym_err_GT] = ACTIONS(1686), + [anon_sym_out_GT] = ACTIONS(1686), + [anon_sym_e_GT] = ACTIONS(1686), + [anon_sym_o_GT] = ACTIONS(1686), + [anon_sym_err_PLUSout_GT] = ACTIONS(1686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1686), + [anon_sym_o_PLUSe_GT] = ACTIONS(1686), + [anon_sym_e_PLUSo_GT] = ACTIONS(1686), + [anon_sym_err_GT_GT] = ACTIONS(1688), + [anon_sym_out_GT_GT] = ACTIONS(1688), + [anon_sym_e_GT_GT] = ACTIONS(1688), + [anon_sym_o_GT_GT] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1688), + [aux_sym_unquoted_token2] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(245), }, - [1544] = { - [sym_cell_path] = STATE(2044), - [sym_path] = STATE(1964), - [sym_comment] = STATE(1544), - [aux_sym_cell_path_repeat1] = STATE(1620), - [ts_builtin_sym_end] = ACTIONS(1845), - [sym__newline] = ACTIONS(1845), - [anon_sym_SEMI] = ACTIONS(1845), - [anon_sym_PIPE] = ACTIONS(1845), - [anon_sym_err_GT_PIPE] = ACTIONS(1845), - [anon_sym_out_GT_PIPE] = ACTIONS(1845), - [anon_sym_e_GT_PIPE] = ACTIONS(1845), - [anon_sym_o_GT_PIPE] = ACTIONS(1845), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1845), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1845), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1845), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_DOLLAR] = ACTIONS(1843), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [anon_sym_DASH2] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_DOT_DOT] = ACTIONS(1843), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1845), - [anon_sym_DOT_DOT_LT] = ACTIONS(1845), - [anon_sym_null] = ACTIONS(1845), - [anon_sym_true] = ACTIONS(1845), - [anon_sym_false] = ACTIONS(1845), - [aux_sym__val_number_decimal_token1] = ACTIONS(1843), - [aux_sym__val_number_decimal_token2] = ACTIONS(1845), - [aux_sym__val_number_decimal_token3] = ACTIONS(1845), - [aux_sym__val_number_decimal_token4] = ACTIONS(1845), - [aux_sym__val_number_token1] = ACTIONS(1845), - [aux_sym__val_number_token2] = ACTIONS(1845), - [aux_sym__val_number_token3] = ACTIONS(1845), - [aux_sym__val_number_token4] = ACTIONS(1845), - [aux_sym__val_number_token5] = ACTIONS(1845), - [aux_sym__val_number_token6] = ACTIONS(1845), - [anon_sym_0b] = ACTIONS(1843), - [anon_sym_0o] = ACTIONS(1843), - [anon_sym_0x] = ACTIONS(1843), - [sym_val_date] = ACTIONS(1845), - [anon_sym_DQUOTE] = ACTIONS(1845), - [sym__str_single_quotes] = ACTIONS(1845), - [sym__str_back_ticks] = ACTIONS(1845), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1845), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1845), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(1843), - [anon_sym_out_GT] = ACTIONS(1843), - [anon_sym_e_GT] = ACTIONS(1843), - [anon_sym_o_GT] = ACTIONS(1843), - [anon_sym_err_PLUSout_GT] = ACTIONS(1843), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1843), - [anon_sym_o_PLUSe_GT] = ACTIONS(1843), - [anon_sym_e_PLUSo_GT] = ACTIONS(1843), - [anon_sym_err_GT_GT] = ACTIONS(1845), - [anon_sym_out_GT_GT] = ACTIONS(1845), - [anon_sym_e_GT_GT] = ACTIONS(1845), - [anon_sym_o_GT_GT] = ACTIONS(1845), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1845), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1845), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1845), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1845), - [aux_sym_unquoted_token1] = ACTIONS(1843), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1845), + [1472] = { + [sym_comment] = STATE(1472), + [ts_builtin_sym_end] = ACTIONS(1581), + [sym__newline] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1581), + [anon_sym_PIPE] = ACTIONS(1581), + [anon_sym_err_GT_PIPE] = ACTIONS(1581), + [anon_sym_out_GT_PIPE] = ACTIONS(1581), + [anon_sym_e_GT_PIPE] = ACTIONS(1581), + [anon_sym_o_GT_PIPE] = ACTIONS(1581), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1581), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1581), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1581), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1581), + [anon_sym_GT2] = ACTIONS(1579), + [anon_sym_DASH2] = ACTIONS(1581), + [anon_sym_in2] = ACTIONS(1581), + [anon_sym_STAR2] = ACTIONS(1579), + [anon_sym_and2] = ACTIONS(1581), + [anon_sym_xor2] = ACTIONS(1581), + [anon_sym_or2] = ACTIONS(1581), + [anon_sym_not_DASHin2] = ACTIONS(1581), + [anon_sym_has2] = ACTIONS(1581), + [anon_sym_not_DASHhas2] = ACTIONS(1581), + [anon_sym_starts_DASHwith2] = ACTIONS(1581), + [anon_sym_ends_DASHwith2] = ACTIONS(1581), + [anon_sym_EQ_EQ2] = ACTIONS(1581), + [anon_sym_BANG_EQ2] = ACTIONS(1581), + [anon_sym_LT2] = ACTIONS(1579), + [anon_sym_LT_EQ2] = ACTIONS(1581), + [anon_sym_GT_EQ2] = ACTIONS(1581), + [anon_sym_EQ_TILDE2] = ACTIONS(1581), + [anon_sym_BANG_TILDE2] = ACTIONS(1581), + [anon_sym_LPAREN2] = ACTIONS(1581), + [anon_sym_STAR_STAR2] = ACTIONS(1581), + [anon_sym_PLUS_PLUS2] = ACTIONS(1581), + [anon_sym_SLASH2] = ACTIONS(1579), + [anon_sym_mod2] = ACTIONS(1581), + [anon_sym_SLASH_SLASH2] = ACTIONS(1581), + [anon_sym_PLUS2] = ACTIONS(1579), + [anon_sym_bit_DASHshl2] = ACTIONS(1581), + [anon_sym_bit_DASHshr2] = ACTIONS(1581), + [anon_sym_bit_DASHand2] = ACTIONS(1581), + [anon_sym_bit_DASHxor2] = ACTIONS(1581), + [anon_sym_bit_DASHor2] = ACTIONS(1581), + [anon_sym_DOT_DOT2] = ACTIONS(1579), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1581), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1581), + [sym_filesize_unit] = ACTIONS(1579), + [sym_duration_unit] = ACTIONS(1581), + [anon_sym_err_GT] = ACTIONS(1579), + [anon_sym_out_GT] = ACTIONS(1579), + [anon_sym_e_GT] = ACTIONS(1579), + [anon_sym_o_GT] = ACTIONS(1579), + [anon_sym_err_PLUSout_GT] = ACTIONS(1579), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), + [anon_sym_o_PLUSe_GT] = ACTIONS(1579), + [anon_sym_e_PLUSo_GT] = ACTIONS(1579), + [anon_sym_err_GT_GT] = ACTIONS(1581), + [anon_sym_out_GT_GT] = ACTIONS(1581), + [anon_sym_e_GT_GT] = ACTIONS(1581), + [anon_sym_o_GT_GT] = ACTIONS(1581), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1581), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1581), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1581), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1581), + [aux_sym_unquoted_token2] = ACTIONS(1579), + [anon_sym_POUND] = ACTIONS(245), }, - [1545] = { - [sym_comment] = STATE(1545), + [1473] = { + [sym_comment] = STATE(1473), [sym__newline] = ACTIONS(984), [anon_sym_SEMI] = ACTIONS(984), [anon_sym_PIPE] = ACTIONS(984), @@ -220674,150 +212994,563 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(984), }, - [1546] = { - [sym_comment] = STATE(1546), - [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_DOT_DOT2] = 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_DOT2] = ACTIONS(978), - [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), + [1474] = { + [sym_comment] = STATE(1474), + [sym__newline] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_err_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_GT_PIPE] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1688), + [anon_sym_RPAREN] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1688), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1686), + [anon_sym_DOT_DOT_LT] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [anon_sym_null] = ACTIONS(1688), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1688), + [aux_sym__val_number_decimal_token3] = ACTIONS(1688), + [aux_sym__val_number_decimal_token4] = ACTIONS(1688), + [aux_sym__val_number_token1] = ACTIONS(1688), + [aux_sym__val_number_token2] = ACTIONS(1688), + [aux_sym__val_number_token3] = ACTIONS(1688), + [aux_sym__val_number_token4] = ACTIONS(1688), + [aux_sym__val_number_token5] = ACTIONS(1688), + [aux_sym__val_number_token6] = ACTIONS(1688), + [anon_sym_0b] = ACTIONS(1686), + [anon_sym_0o] = ACTIONS(1686), + [anon_sym_0x] = ACTIONS(1686), + [sym_val_date] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [sym__str_single_quotes] = ACTIONS(1688), + [sym__str_back_ticks] = ACTIONS(1688), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1688), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1688), + [anon_sym_err_GT] = ACTIONS(1686), + [anon_sym_out_GT] = ACTIONS(1686), + [anon_sym_e_GT] = ACTIONS(1686), + [anon_sym_o_GT] = ACTIONS(1686), + [anon_sym_err_PLUSout_GT] = ACTIONS(1686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1686), + [anon_sym_o_PLUSe_GT] = ACTIONS(1686), + [anon_sym_e_PLUSo_GT] = ACTIONS(1686), + [anon_sym_err_GT_GT] = ACTIONS(1688), + [anon_sym_out_GT_GT] = ACTIONS(1688), + [anon_sym_e_GT_GT] = ACTIONS(1688), + [anon_sym_o_GT_GT] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1688), + [aux_sym_unquoted_token1] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1688), + }, + [1475] = { + [sym_comment] = STATE(1475), + [ts_builtin_sym_end] = ACTIONS(1501), + [sym__newline] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_err_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_GT_PIPE] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1501), + [anon_sym_GT2] = ACTIONS(1499), + [anon_sym_DASH2] = ACTIONS(1501), + [anon_sym_in2] = ACTIONS(1501), + [anon_sym_STAR2] = ACTIONS(1499), + [anon_sym_and2] = ACTIONS(1501), + [anon_sym_xor2] = ACTIONS(1501), + [anon_sym_or2] = ACTIONS(1501), + [anon_sym_not_DASHin2] = ACTIONS(1501), + [anon_sym_has2] = ACTIONS(1501), + [anon_sym_not_DASHhas2] = ACTIONS(1501), + [anon_sym_starts_DASHwith2] = ACTIONS(1501), + [anon_sym_ends_DASHwith2] = ACTIONS(1501), + [anon_sym_EQ_EQ2] = ACTIONS(1501), + [anon_sym_BANG_EQ2] = ACTIONS(1501), + [anon_sym_LT2] = ACTIONS(1499), + [anon_sym_LT_EQ2] = ACTIONS(1501), + [anon_sym_GT_EQ2] = ACTIONS(1501), + [anon_sym_EQ_TILDE2] = ACTIONS(1501), + [anon_sym_BANG_TILDE2] = ACTIONS(1501), + [anon_sym_LPAREN2] = ACTIONS(1501), + [anon_sym_STAR_STAR2] = ACTIONS(1501), + [anon_sym_PLUS_PLUS2] = ACTIONS(1501), + [anon_sym_SLASH2] = ACTIONS(1499), + [anon_sym_mod2] = ACTIONS(1501), + [anon_sym_SLASH_SLASH2] = ACTIONS(1501), + [anon_sym_PLUS2] = ACTIONS(1499), + [anon_sym_bit_DASHshl2] = ACTIONS(1501), + [anon_sym_bit_DASHshr2] = ACTIONS(1501), + [anon_sym_bit_DASHand2] = ACTIONS(1501), + [anon_sym_bit_DASHxor2] = ACTIONS(1501), + [anon_sym_bit_DASHor2] = ACTIONS(1501), + [anon_sym_DOT_DOT2] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1501), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1501), + [sym_filesize_unit] = ACTIONS(1499), + [sym_duration_unit] = ACTIONS(1501), + [anon_sym_err_GT] = ACTIONS(1499), + [anon_sym_out_GT] = ACTIONS(1499), + [anon_sym_e_GT] = ACTIONS(1499), + [anon_sym_o_GT] = ACTIONS(1499), + [anon_sym_err_PLUSout_GT] = ACTIONS(1499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1499), + [anon_sym_o_PLUSe_GT] = ACTIONS(1499), + [anon_sym_e_PLUSo_GT] = ACTIONS(1499), + [anon_sym_err_GT_GT] = ACTIONS(1501), + [anon_sym_out_GT_GT] = ACTIONS(1501), + [anon_sym_e_GT_GT] = ACTIONS(1501), + [anon_sym_o_GT_GT] = ACTIONS(1501), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1501), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1501), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1501), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1501), + [aux_sym_unquoted_token2] = ACTIONS(1499), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(980), }, - [1547] = { - [sym_cell_path] = STATE(2045), - [sym_path] = STATE(1964), - [sym_comment] = STATE(1547), - [aux_sym_cell_path_repeat1] = STATE(1620), - [ts_builtin_sym_end] = ACTIONS(1857), - [sym__newline] = ACTIONS(1857), - [anon_sym_SEMI] = ACTIONS(1857), - [anon_sym_PIPE] = ACTIONS(1857), - [anon_sym_err_GT_PIPE] = ACTIONS(1857), - [anon_sym_out_GT_PIPE] = ACTIONS(1857), - [anon_sym_e_GT_PIPE] = ACTIONS(1857), - [anon_sym_o_GT_PIPE] = ACTIONS(1857), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1857), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1857), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1857), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1857), - [anon_sym_LBRACK] = ACTIONS(1857), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_DOLLAR] = ACTIONS(1855), - [anon_sym_DASH_DASH] = ACTIONS(1857), - [anon_sym_DASH2] = ACTIONS(1855), - [anon_sym_LBRACE] = ACTIONS(1857), - [anon_sym_DOT_DOT] = ACTIONS(1855), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1857), - [anon_sym_DOT_DOT_LT] = ACTIONS(1857), - [anon_sym_null] = ACTIONS(1857), - [anon_sym_true] = ACTIONS(1857), - [anon_sym_false] = ACTIONS(1857), - [aux_sym__val_number_decimal_token1] = ACTIONS(1855), - [aux_sym__val_number_decimal_token2] = ACTIONS(1857), - [aux_sym__val_number_decimal_token3] = ACTIONS(1857), - [aux_sym__val_number_decimal_token4] = ACTIONS(1857), - [aux_sym__val_number_token1] = ACTIONS(1857), - [aux_sym__val_number_token2] = ACTIONS(1857), - [aux_sym__val_number_token3] = ACTIONS(1857), - [aux_sym__val_number_token4] = ACTIONS(1857), - [aux_sym__val_number_token5] = ACTIONS(1857), - [aux_sym__val_number_token6] = ACTIONS(1857), - [anon_sym_0b] = ACTIONS(1855), - [anon_sym_0o] = ACTIONS(1855), - [anon_sym_0x] = ACTIONS(1855), - [sym_val_date] = ACTIONS(1857), - [anon_sym_DQUOTE] = ACTIONS(1857), - [sym__str_single_quotes] = ACTIONS(1857), - [sym__str_back_ticks] = ACTIONS(1857), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1857), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1857), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(1855), - [anon_sym_out_GT] = ACTIONS(1855), - [anon_sym_e_GT] = ACTIONS(1855), - [anon_sym_o_GT] = ACTIONS(1855), - [anon_sym_err_PLUSout_GT] = ACTIONS(1855), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1855), - [anon_sym_o_PLUSe_GT] = ACTIONS(1855), - [anon_sym_e_PLUSo_GT] = ACTIONS(1855), - [anon_sym_err_GT_GT] = ACTIONS(1857), - [anon_sym_out_GT_GT] = ACTIONS(1857), - [anon_sym_e_GT_GT] = ACTIONS(1857), - [anon_sym_o_GT_GT] = ACTIONS(1857), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1857), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1857), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1857), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1857), - [aux_sym_unquoted_token1] = ACTIONS(1855), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1857), + [1476] = { + [sym_comment] = STATE(1476), + [ts_builtin_sym_end] = ACTIONS(1680), + [sym__newline] = ACTIONS(1680), + [anon_sym_SEMI] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1680), + [anon_sym_err_GT_PIPE] = ACTIONS(1680), + [anon_sym_out_GT_PIPE] = ACTIONS(1680), + [anon_sym_e_GT_PIPE] = ACTIONS(1680), + [anon_sym_o_GT_PIPE] = ACTIONS(1680), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1680), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1680), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1680), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1680), + [anon_sym_GT2] = ACTIONS(1678), + [anon_sym_DASH2] = ACTIONS(1680), + [anon_sym_in2] = ACTIONS(1680), + [anon_sym_STAR2] = ACTIONS(1678), + [anon_sym_and2] = ACTIONS(1680), + [anon_sym_xor2] = ACTIONS(1680), + [anon_sym_or2] = ACTIONS(1680), + [anon_sym_not_DASHin2] = ACTIONS(1680), + [anon_sym_has2] = ACTIONS(1680), + [anon_sym_not_DASHhas2] = ACTIONS(1680), + [anon_sym_starts_DASHwith2] = ACTIONS(1680), + [anon_sym_ends_DASHwith2] = ACTIONS(1680), + [anon_sym_EQ_EQ2] = ACTIONS(1680), + [anon_sym_BANG_EQ2] = ACTIONS(1680), + [anon_sym_LT2] = ACTIONS(1678), + [anon_sym_LT_EQ2] = ACTIONS(1680), + [anon_sym_GT_EQ2] = ACTIONS(1680), + [anon_sym_EQ_TILDE2] = ACTIONS(1680), + [anon_sym_BANG_TILDE2] = ACTIONS(1680), + [anon_sym_LPAREN2] = ACTIONS(1680), + [anon_sym_STAR_STAR2] = ACTIONS(1680), + [anon_sym_PLUS_PLUS2] = ACTIONS(1680), + [anon_sym_SLASH2] = ACTIONS(1678), + [anon_sym_mod2] = ACTIONS(1680), + [anon_sym_SLASH_SLASH2] = ACTIONS(1680), + [anon_sym_PLUS2] = ACTIONS(1678), + [anon_sym_bit_DASHshl2] = ACTIONS(1680), + [anon_sym_bit_DASHshr2] = ACTIONS(1680), + [anon_sym_bit_DASHand2] = ACTIONS(1680), + [anon_sym_bit_DASHxor2] = ACTIONS(1680), + [anon_sym_bit_DASHor2] = ACTIONS(1680), + [anon_sym_DOT_DOT2] = ACTIONS(1678), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1680), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1680), + [sym_filesize_unit] = ACTIONS(1678), + [sym_duration_unit] = ACTIONS(1680), + [anon_sym_err_GT] = ACTIONS(1678), + [anon_sym_out_GT] = ACTIONS(1678), + [anon_sym_e_GT] = ACTIONS(1678), + [anon_sym_o_GT] = ACTIONS(1678), + [anon_sym_err_PLUSout_GT] = ACTIONS(1678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1678), + [anon_sym_o_PLUSe_GT] = ACTIONS(1678), + [anon_sym_e_PLUSo_GT] = ACTIONS(1678), + [anon_sym_err_GT_GT] = ACTIONS(1680), + [anon_sym_out_GT_GT] = ACTIONS(1680), + [anon_sym_e_GT_GT] = ACTIONS(1680), + [anon_sym_o_GT_GT] = ACTIONS(1680), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1680), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1680), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1680), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1680), + [aux_sym_unquoted_token2] = ACTIONS(1678), + [anon_sym_POUND] = ACTIONS(245), }, - [1548] = { - [sym_cell_path] = STATE(2046), - [sym_path] = STATE(1964), - [sym_comment] = STATE(1548), - [aux_sym_cell_path_repeat1] = STATE(1620), - [ts_builtin_sym_end] = ACTIONS(1885), + [1477] = { + [sym_comment] = STATE(1477), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1762), + [anon_sym_in2] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1762), + [anon_sym_xor2] = ACTIONS(1762), + [anon_sym_or2] = ACTIONS(1762), + [anon_sym_not_DASHin2] = ACTIONS(1762), + [anon_sym_has2] = ACTIONS(1762), + [anon_sym_not_DASHhas2] = ACTIONS(1762), + [anon_sym_starts_DASHwith2] = ACTIONS(1762), + [anon_sym_ends_DASHwith2] = ACTIONS(1762), + [anon_sym_EQ_EQ2] = ACTIONS(1762), + [anon_sym_BANG_EQ2] = ACTIONS(1762), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1762), + [anon_sym_GT_EQ2] = ACTIONS(1762), + [anon_sym_EQ_TILDE2] = ACTIONS(1762), + [anon_sym_BANG_TILDE2] = ACTIONS(1762), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_STAR_STAR2] = ACTIONS(1762), + [anon_sym_PLUS_PLUS2] = ACTIONS(1762), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1762), + [anon_sym_SLASH_SLASH2] = ACTIONS(1762), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1762), + [anon_sym_bit_DASHshr2] = ACTIONS(1762), + [anon_sym_bit_DASHand2] = ACTIONS(1762), + [anon_sym_bit_DASHxor2] = ACTIONS(1762), + [anon_sym_bit_DASHor2] = ACTIONS(1762), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(245), + }, + [1478] = { + [sym_comment] = STATE(1478), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1701), + [anon_sym_DOT_DOT_LT] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [1479] = { + [sym_path] = STATE(1592), + [sym_comment] = STATE(1479), + [aux_sym_cell_path_repeat1] = STATE(1490), + [sym__newline] = ACTIONS(940), + [anon_sym_SEMI] = ACTIONS(940), + [anon_sym_PIPE] = ACTIONS(940), + [anon_sym_err_GT_PIPE] = ACTIONS(940), + [anon_sym_out_GT_PIPE] = ACTIONS(940), + [anon_sym_e_GT_PIPE] = ACTIONS(940), + [anon_sym_o_GT_PIPE] = ACTIONS(940), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(940), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(940), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(940), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(940), + [anon_sym_LBRACK] = ACTIONS(940), + [anon_sym_LPAREN] = ACTIONS(940), + [anon_sym_RPAREN] = ACTIONS(940), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(940), + [anon_sym_DASH2] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_RBRACE] = ACTIONS(940), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(940), + [anon_sym_DOT_DOT_LT] = ACTIONS(940), + [anon_sym_null] = ACTIONS(940), + [anon_sym_true] = ACTIONS(940), + [anon_sym_false] = ACTIONS(940), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(940), + [aux_sym__val_number_decimal_token3] = ACTIONS(940), + [aux_sym__val_number_decimal_token4] = ACTIONS(940), + [aux_sym__val_number_token1] = ACTIONS(940), + [aux_sym__val_number_token2] = ACTIONS(940), + [aux_sym__val_number_token3] = ACTIONS(940), + [aux_sym__val_number_token4] = ACTIONS(940), + [aux_sym__val_number_token5] = ACTIONS(940), + [aux_sym__val_number_token6] = ACTIONS(940), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(940), + [anon_sym_DQUOTE] = ACTIONS(940), + [sym__str_single_quotes] = ACTIONS(940), + [sym__str_back_ticks] = ACTIONS(940), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(940), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(940), + [anon_sym_DOT2] = ACTIONS(4714), + [anon_sym_err_GT] = ACTIONS(938), + [anon_sym_out_GT] = ACTIONS(938), + [anon_sym_e_GT] = ACTIONS(938), + [anon_sym_o_GT] = ACTIONS(938), + [anon_sym_err_PLUSout_GT] = ACTIONS(938), + [anon_sym_out_PLUSerr_GT] = ACTIONS(938), + [anon_sym_o_PLUSe_GT] = ACTIONS(938), + [anon_sym_e_PLUSo_GT] = ACTIONS(938), + [anon_sym_err_GT_GT] = ACTIONS(940), + [anon_sym_out_GT_GT] = ACTIONS(940), + [anon_sym_e_GT_GT] = ACTIONS(940), + [anon_sym_o_GT_GT] = ACTIONS(940), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(940), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(940), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(940), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(940), + [aux_sym_unquoted_token1] = ACTIONS(938), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(940), + }, + [1480] = { + [sym_comment] = STATE(1480), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(4790), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1762), + [aux_sym__val_number_token5] = ACTIONS(1762), + [aux_sym__val_number_token6] = ACTIONS(1762), + [anon_sym_0b] = ACTIONS(1760), + [anon_sym_0o] = ACTIONS(1760), + [anon_sym_0x] = ACTIONS(1760), + [sym_val_date] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token1] = ACTIONS(1760), + [aux_sym_unquoted_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1762), + }, + [1481] = { + [sym_comment] = STATE(1481), + [sym__newline] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_err_GT_PIPE] = ACTIONS(984), + [anon_sym_out_GT_PIPE] = ACTIONS(984), + [anon_sym_e_GT_PIPE] = ACTIONS(984), + [anon_sym_o_GT_PIPE] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), + [anon_sym_RPAREN] = ACTIONS(984), + [anon_sym_GT2] = ACTIONS(982), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_in2] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_EQ_GT] = ACTIONS(984), + [anon_sym_STAR2] = ACTIONS(982), + [anon_sym_and2] = ACTIONS(984), + [anon_sym_xor2] = ACTIONS(984), + [anon_sym_or2] = ACTIONS(984), + [anon_sym_not_DASHin2] = ACTIONS(984), + [anon_sym_has2] = ACTIONS(984), + [anon_sym_not_DASHhas2] = ACTIONS(984), + [anon_sym_starts_DASHwith2] = ACTIONS(984), + [anon_sym_ends_DASHwith2] = ACTIONS(984), + [anon_sym_EQ_EQ2] = ACTIONS(984), + [anon_sym_BANG_EQ2] = ACTIONS(984), + [anon_sym_LT2] = ACTIONS(982), + [anon_sym_LT_EQ2] = ACTIONS(984), + [anon_sym_GT_EQ2] = ACTIONS(984), + [anon_sym_EQ_TILDE2] = ACTIONS(984), + [anon_sym_BANG_TILDE2] = ACTIONS(984), + [anon_sym_STAR_STAR2] = ACTIONS(984), + [anon_sym_PLUS_PLUS2] = ACTIONS(984), + [anon_sym_SLASH2] = ACTIONS(982), + [anon_sym_mod2] = ACTIONS(984), + [anon_sym_SLASH_SLASH2] = ACTIONS(984), + [anon_sym_PLUS2] = ACTIONS(982), + [anon_sym_bit_DASHshl2] = ACTIONS(984), + [anon_sym_bit_DASHshr2] = ACTIONS(984), + [anon_sym_bit_DASHand2] = ACTIONS(984), + [anon_sym_bit_DASHxor2] = ACTIONS(984), + [anon_sym_bit_DASHor2] = ACTIONS(984), + [anon_sym_DOT_DOT2] = ACTIONS(982), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), + [anon_sym_DOT_DOT_LT2] = ACTIONS(984), + [anon_sym_err_GT] = ACTIONS(982), + [anon_sym_out_GT] = ACTIONS(982), + [anon_sym_e_GT] = ACTIONS(982), + [anon_sym_o_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT] = ACTIONS(982), + [anon_sym_err_GT_GT] = ACTIONS(984), + [anon_sym_out_GT_GT] = ACTIONS(984), + [anon_sym_e_GT_GT] = ACTIONS(984), + [anon_sym_o_GT_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), + [anon_sym_POUND] = ACTIONS(245), + }, + [1482] = { + [sym_cell_path] = STATE(1912), + [sym_path] = STATE(1374), + [sym_comment] = STATE(1482), + [aux_sym_cell_path_repeat1] = STATE(1284), [sym__newline] = ACTIONS(1885), [anon_sym_SEMI] = ACTIONS(1885), [anon_sym_PIPE] = ACTIONS(1885), @@ -220829,38 +213562,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_RPAREN] = ACTIONS(1885), + [anon_sym_GT2] = ACTIONS(1883), + [anon_sym_DASH2] = ACTIONS(1885), + [anon_sym_in2] = ACTIONS(1885), [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1883), - [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_DOT2] = ACTIONS(4816), + [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_has2] = ACTIONS(1885), + [anon_sym_not_DASHhas2] = 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_DOT2] = ACTIONS(4722), [anon_sym_err_GT] = ACTIONS(1883), [anon_sym_out_GT] = ACTIONS(1883), [anon_sym_e_GT] = ACTIONS(1883), @@ -220877,357 +213613,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(245), - [sym_raw_string_begin] = ACTIONS(1885), - }, - [1549] = { - [sym_cell_path] = STATE(2047), - [sym_path] = STATE(1964), - [sym_comment] = STATE(1549), - [aux_sym_cell_path_repeat1] = STATE(1620), - [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_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_DOT2] = ACTIONS(4816), - [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(245), - [sym_raw_string_begin] = ACTIONS(1893), }, - [1550] = { - [sym_cell_path] = STATE(2048), - [sym_path] = STATE(1964), - [sym_comment] = STATE(1550), - [aux_sym_cell_path_repeat1] = STATE(1620), - [ts_builtin_sym_end] = ACTIONS(1925), - [sym__newline] = ACTIONS(1925), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_err_GT_PIPE] = ACTIONS(1925), - [anon_sym_out_GT_PIPE] = ACTIONS(1925), - [anon_sym_e_GT_PIPE] = ACTIONS(1925), - [anon_sym_o_GT_PIPE] = ACTIONS(1925), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1925), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1925), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1925), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1925), - [anon_sym_LBRACK] = ACTIONS(1925), - [anon_sym_LPAREN] = ACTIONS(1925), - [anon_sym_DOLLAR] = ACTIONS(1923), - [anon_sym_DASH_DASH] = ACTIONS(1925), - [anon_sym_DASH2] = ACTIONS(1923), - [anon_sym_LBRACE] = ACTIONS(1925), - [anon_sym_DOT_DOT] = ACTIONS(1923), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1925), - [anon_sym_DOT_DOT_LT] = ACTIONS(1925), - [anon_sym_null] = ACTIONS(1925), - [anon_sym_true] = ACTIONS(1925), - [anon_sym_false] = ACTIONS(1925), - [aux_sym__val_number_decimal_token1] = ACTIONS(1923), - [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_0b] = ACTIONS(1923), - [anon_sym_0o] = ACTIONS(1923), - [anon_sym_0x] = ACTIONS(1923), - [sym_val_date] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1925), - [sym__str_single_quotes] = ACTIONS(1925), - [sym__str_back_ticks] = ACTIONS(1925), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1925), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1925), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(1923), - [anon_sym_out_GT] = ACTIONS(1923), - [anon_sym_e_GT] = ACTIONS(1923), - [anon_sym_o_GT] = ACTIONS(1923), - [anon_sym_err_PLUSout_GT] = ACTIONS(1923), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1923), - [anon_sym_o_PLUSe_GT] = ACTIONS(1923), - [anon_sym_e_PLUSo_GT] = ACTIONS(1923), - [anon_sym_err_GT_GT] = ACTIONS(1925), - [anon_sym_out_GT_GT] = ACTIONS(1925), - [anon_sym_e_GT_GT] = ACTIONS(1925), - [anon_sym_o_GT_GT] = ACTIONS(1925), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1925), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1925), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1925), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1925), - [aux_sym_unquoted_token1] = ACTIONS(1923), + [1483] = { + [sym_cell_path] = STATE(1966), + [sym_path] = STATE(1692), + [sym_comment] = STATE(1483), + [aux_sym_cell_path_repeat1] = STATE(1530), + [ts_builtin_sym_end] = ACTIONS(927), + [sym__newline] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(927), + [anon_sym_err_GT_PIPE] = ACTIONS(927), + [anon_sym_out_GT_PIPE] = ACTIONS(927), + [anon_sym_e_GT_PIPE] = ACTIONS(927), + [anon_sym_o_GT_PIPE] = ACTIONS(927), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(927), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(927), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(927), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(927), + [anon_sym_GT2] = ACTIONS(925), + [anon_sym_DASH2] = ACTIONS(927), + [anon_sym_in2] = ACTIONS(927), + [anon_sym_STAR2] = ACTIONS(925), + [anon_sym_and2] = ACTIONS(927), + [anon_sym_xor2] = ACTIONS(927), + [anon_sym_or2] = ACTIONS(927), + [anon_sym_not_DASHin2] = ACTIONS(927), + [anon_sym_has2] = ACTIONS(927), + [anon_sym_not_DASHhas2] = ACTIONS(927), + [anon_sym_starts_DASHwith2] = ACTIONS(927), + [anon_sym_ends_DASHwith2] = ACTIONS(927), + [anon_sym_EQ_EQ2] = ACTIONS(927), + [anon_sym_BANG_EQ2] = ACTIONS(927), + [anon_sym_LT2] = ACTIONS(925), + [anon_sym_LT_EQ2] = ACTIONS(927), + [anon_sym_GT_EQ2] = ACTIONS(927), + [anon_sym_EQ_TILDE2] = ACTIONS(927), + [anon_sym_BANG_TILDE2] = ACTIONS(927), + [anon_sym_STAR_STAR2] = ACTIONS(927), + [anon_sym_PLUS_PLUS2] = ACTIONS(927), + [anon_sym_SLASH2] = ACTIONS(925), + [anon_sym_mod2] = ACTIONS(927), + [anon_sym_SLASH_SLASH2] = ACTIONS(927), + [anon_sym_PLUS2] = ACTIONS(925), + [anon_sym_bit_DASHshl2] = ACTIONS(927), + [anon_sym_bit_DASHshr2] = ACTIONS(927), + [anon_sym_bit_DASHand2] = ACTIONS(927), + [anon_sym_bit_DASHxor2] = ACTIONS(927), + [anon_sym_bit_DASHor2] = ACTIONS(927), + [anon_sym_DOT_DOT2] = ACTIONS(925), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(927), + [anon_sym_DOT_DOT_LT2] = ACTIONS(927), + [anon_sym_DOT2] = ACTIONS(4792), + [anon_sym_err_GT] = ACTIONS(925), + [anon_sym_out_GT] = ACTIONS(925), + [anon_sym_e_GT] = ACTIONS(925), + [anon_sym_o_GT] = ACTIONS(925), + [anon_sym_err_PLUSout_GT] = ACTIONS(925), + [anon_sym_out_PLUSerr_GT] = ACTIONS(925), + [anon_sym_o_PLUSe_GT] = ACTIONS(925), + [anon_sym_e_PLUSo_GT] = ACTIONS(925), + [anon_sym_err_GT_GT] = ACTIONS(927), + [anon_sym_out_GT_GT] = ACTIONS(927), + [anon_sym_e_GT_GT] = ACTIONS(927), + [anon_sym_o_GT_GT] = ACTIONS(927), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(927), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(927), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(927), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(927), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1925), - }, - [1551] = { - [sym_cell_path] = STATE(2049), - [sym_path] = STATE(1964), - [sym_comment] = STATE(1551), - [aux_sym_cell_path_repeat1] = STATE(1620), - [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_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_DOT2] = ACTIONS(4816), - [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(245), - [sym_raw_string_begin] = ACTIONS(1933), - }, - [1552] = { - [sym_cell_path] = STATE(2050), - [sym_path] = STATE(1964), - [sym_comment] = STATE(1552), - [aux_sym_cell_path_repeat1] = STATE(1620), - [ts_builtin_sym_end] = ACTIONS(1937), - [sym__newline] = ACTIONS(1937), - [anon_sym_SEMI] = ACTIONS(1937), - [anon_sym_PIPE] = ACTIONS(1937), - [anon_sym_err_GT_PIPE] = ACTIONS(1937), - [anon_sym_out_GT_PIPE] = ACTIONS(1937), - [anon_sym_e_GT_PIPE] = ACTIONS(1937), - [anon_sym_o_GT_PIPE] = ACTIONS(1937), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1937), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1937), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1937), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(1937), - [anon_sym_LPAREN] = ACTIONS(1937), - [anon_sym_DOLLAR] = ACTIONS(1935), - [anon_sym_DASH_DASH] = ACTIONS(1937), - [anon_sym_DASH2] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1937), - [anon_sym_DOT_DOT] = ACTIONS(1935), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1937), - [anon_sym_DOT_DOT_LT] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1937), - [aux_sym__val_number_decimal_token4] = ACTIONS(1937), - [aux_sym__val_number_token1] = ACTIONS(1937), - [aux_sym__val_number_token2] = ACTIONS(1937), - [aux_sym__val_number_token3] = ACTIONS(1937), - [aux_sym__val_number_token4] = ACTIONS(1937), - [aux_sym__val_number_token5] = ACTIONS(1937), - [aux_sym__val_number_token6] = ACTIONS(1937), - [anon_sym_0b] = ACTIONS(1935), - [anon_sym_0o] = ACTIONS(1935), - [anon_sym_0x] = ACTIONS(1935), - [sym_val_date] = ACTIONS(1937), - [anon_sym_DQUOTE] = ACTIONS(1937), - [sym__str_single_quotes] = ACTIONS(1937), - [sym__str_back_ticks] = ACTIONS(1937), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1937), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(1935), - [anon_sym_out_GT] = ACTIONS(1935), - [anon_sym_e_GT] = ACTIONS(1935), - [anon_sym_o_GT] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT] = ACTIONS(1935), - [anon_sym_err_GT_GT] = ACTIONS(1937), - [anon_sym_out_GT_GT] = ACTIONS(1937), - [anon_sym_e_GT_GT] = ACTIONS(1937), - [anon_sym_o_GT_GT] = ACTIONS(1937), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1937), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1937), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1937), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1937), - [aux_sym_unquoted_token1] = ACTIONS(1935), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1937), - }, - [1553] = { - [sym_cell_path] = STATE(2054), - [sym_path] = STATE(1964), - [sym_comment] = STATE(1553), - [aux_sym_cell_path_repeat1] = STATE(1620), - [ts_builtin_sym_end] = ACTIONS(1841), - [sym__newline] = ACTIONS(1841), - [anon_sym_SEMI] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_err_GT_PIPE] = ACTIONS(1841), - [anon_sym_out_GT_PIPE] = ACTIONS(1841), - [anon_sym_e_GT_PIPE] = ACTIONS(1841), - [anon_sym_o_GT_PIPE] = ACTIONS(1841), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1841), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1841), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1841), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1839), - [anon_sym_DASH_DASH] = ACTIONS(1841), - [anon_sym_DASH2] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1841), - [anon_sym_DOT_DOT] = ACTIONS(1839), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1841), - [anon_sym_DOT_DOT_LT] = ACTIONS(1841), - [anon_sym_null] = ACTIONS(1841), - [anon_sym_true] = ACTIONS(1841), - [anon_sym_false] = ACTIONS(1841), - [aux_sym__val_number_decimal_token1] = ACTIONS(1839), - [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_0b] = ACTIONS(1839), - [anon_sym_0o] = ACTIONS(1839), - [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(1841), - [sym__str_single_quotes] = ACTIONS(1841), - [sym__str_back_ticks] = ACTIONS(1841), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1841), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(1839), - [anon_sym_out_GT] = ACTIONS(1839), - [anon_sym_e_GT] = ACTIONS(1839), - [anon_sym_o_GT] = ACTIONS(1839), - [anon_sym_err_PLUSout_GT] = ACTIONS(1839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1839), - [anon_sym_o_PLUSe_GT] = ACTIONS(1839), - [anon_sym_e_PLUSo_GT] = ACTIONS(1839), - [anon_sym_err_GT_GT] = ACTIONS(1841), - [anon_sym_out_GT_GT] = ACTIONS(1841), - [anon_sym_e_GT_GT] = ACTIONS(1841), - [anon_sym_o_GT_GT] = ACTIONS(1841), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1841), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1841), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1841), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1841), - [aux_sym_unquoted_token1] = ACTIONS(1839), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1841), }, - [1554] = { - [sym_comment] = STATE(1554), + [1484] = { + [sym_comment] = STATE(1484), [ts_builtin_sym_end] = ACTIONS(976), [sym__newline] = ACTIONS(976), [anon_sym_SEMI] = ACTIONS(976), @@ -221295,631 +213753,355 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(976), }, - [1555] = { - [sym_comment] = STATE(1555), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_GT2] = ACTIONS(1666), - [anon_sym_DASH2] = ACTIONS(1668), - [anon_sym_in2] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_STAR2] = ACTIONS(1666), - [anon_sym_and2] = ACTIONS(1668), - [anon_sym_xor2] = ACTIONS(1668), - [anon_sym_or2] = ACTIONS(1668), - [anon_sym_not_DASHin2] = ACTIONS(1668), - [anon_sym_has2] = ACTIONS(1668), - [anon_sym_not_DASHhas2] = ACTIONS(1668), - [anon_sym_starts_DASHwith2] = ACTIONS(1668), - [anon_sym_ends_DASHwith2] = ACTIONS(1668), - [anon_sym_EQ_EQ2] = ACTIONS(1668), - [anon_sym_BANG_EQ2] = ACTIONS(1668), - [anon_sym_LT2] = ACTIONS(1666), - [anon_sym_LT_EQ2] = ACTIONS(1668), - [anon_sym_GT_EQ2] = ACTIONS(1668), - [anon_sym_EQ_TILDE2] = ACTIONS(1668), - [anon_sym_BANG_TILDE2] = ACTIONS(1668), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_STAR_STAR2] = ACTIONS(1668), - [anon_sym_PLUS_PLUS2] = ACTIONS(1668), - [anon_sym_SLASH2] = ACTIONS(1666), - [anon_sym_mod2] = ACTIONS(1668), - [anon_sym_SLASH_SLASH2] = ACTIONS(1668), - [anon_sym_PLUS2] = ACTIONS(1666), - [anon_sym_bit_DASHshl2] = ACTIONS(1668), - [anon_sym_bit_DASHshr2] = ACTIONS(1668), - [anon_sym_bit_DASHand2] = ACTIONS(1668), - [anon_sym_bit_DASHxor2] = ACTIONS(1668), - [anon_sym_bit_DASHor2] = ACTIONS(1668), - [anon_sym_DOT_DOT2] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [anon_sym_err_GT] = ACTIONS(1666), - [anon_sym_out_GT] = ACTIONS(1666), - [anon_sym_e_GT] = ACTIONS(1666), - [anon_sym_o_GT] = ACTIONS(1666), - [anon_sym_err_PLUSout_GT] = ACTIONS(1666), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), - [anon_sym_o_PLUSe_GT] = ACTIONS(1666), - [anon_sym_e_PLUSo_GT] = ACTIONS(1666), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [aux_sym_unquoted_token2] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - }, - [1556] = { - [sym_cell_path] = STATE(2058), - [sym_path] = STATE(1964), - [sym_comment] = STATE(1556), - [aux_sym_cell_path_repeat1] = STATE(1620), - [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_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_DOT2] = ACTIONS(4816), - [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(245), - [sym_raw_string_begin] = ACTIONS(1929), - }, - [1557] = { - [sym_comment] = STATE(1557), - [sym__newline] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_err_GT_PIPE] = ACTIONS(984), - [anon_sym_out_GT_PIPE] = ACTIONS(984), - [anon_sym_e_GT_PIPE] = ACTIONS(984), - [anon_sym_o_GT_PIPE] = ACTIONS(984), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), - [anon_sym_RPAREN] = ACTIONS(984), - [anon_sym_GT2] = ACTIONS(982), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_EQ_GT] = ACTIONS(984), - [anon_sym_STAR2] = ACTIONS(982), - [anon_sym_and2] = ACTIONS(984), - [anon_sym_xor2] = ACTIONS(984), - [anon_sym_or2] = ACTIONS(984), - [anon_sym_not_DASHin2] = ACTIONS(984), - [anon_sym_has2] = ACTIONS(984), - [anon_sym_not_DASHhas2] = ACTIONS(984), - [anon_sym_starts_DASHwith2] = ACTIONS(984), - [anon_sym_ends_DASHwith2] = ACTIONS(984), - [anon_sym_EQ_EQ2] = ACTIONS(984), - [anon_sym_BANG_EQ2] = ACTIONS(984), - [anon_sym_LT2] = ACTIONS(982), - [anon_sym_LT_EQ2] = ACTIONS(984), - [anon_sym_GT_EQ2] = ACTIONS(984), - [anon_sym_EQ_TILDE2] = ACTIONS(984), - [anon_sym_BANG_TILDE2] = ACTIONS(984), - [anon_sym_STAR_STAR2] = ACTIONS(984), - [anon_sym_PLUS_PLUS2] = ACTIONS(984), - [anon_sym_SLASH2] = ACTIONS(982), - [anon_sym_mod2] = ACTIONS(984), - [anon_sym_SLASH_SLASH2] = ACTIONS(984), - [anon_sym_PLUS2] = ACTIONS(982), - [anon_sym_bit_DASHshl2] = ACTIONS(984), - [anon_sym_bit_DASHshr2] = ACTIONS(984), - [anon_sym_bit_DASHand2] = ACTIONS(984), - [anon_sym_bit_DASHxor2] = ACTIONS(984), - [anon_sym_bit_DASHor2] = ACTIONS(984), - [anon_sym_DOT_DOT2] = ACTIONS(982), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), - [anon_sym_DOT_DOT_LT2] = ACTIONS(984), - [anon_sym_err_GT] = ACTIONS(982), - [anon_sym_out_GT] = ACTIONS(982), - [anon_sym_e_GT] = ACTIONS(982), - [anon_sym_o_GT] = ACTIONS(982), - [anon_sym_err_PLUSout_GT] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT] = ACTIONS(982), - [anon_sym_o_PLUSe_GT] = ACTIONS(982), - [anon_sym_e_PLUSo_GT] = ACTIONS(982), - [anon_sym_err_GT_GT] = ACTIONS(984), - [anon_sym_out_GT_GT] = ACTIONS(984), - [anon_sym_e_GT_GT] = ACTIONS(984), - [anon_sym_o_GT_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(245), - }, - [1558] = { - [sym_comment] = STATE(1558), - [sym__newline] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_err_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_GT_PIPE] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), - [anon_sym_RPAREN] = ACTIONS(1650), - [anon_sym_GT2] = ACTIONS(1648), - [anon_sym_DASH2] = ACTIONS(1650), - [anon_sym_in2] = ACTIONS(1650), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_STAR2] = ACTIONS(1648), - [anon_sym_and2] = ACTIONS(1650), - [anon_sym_xor2] = ACTIONS(1650), - [anon_sym_or2] = ACTIONS(1650), - [anon_sym_not_DASHin2] = ACTIONS(1650), - [anon_sym_has2] = ACTIONS(1650), - [anon_sym_not_DASHhas2] = ACTIONS(1650), - [anon_sym_starts_DASHwith2] = ACTIONS(1650), - [anon_sym_ends_DASHwith2] = ACTIONS(1650), - [anon_sym_EQ_EQ2] = ACTIONS(1650), - [anon_sym_BANG_EQ2] = ACTIONS(1650), - [anon_sym_LT2] = ACTIONS(1648), - [anon_sym_LT_EQ2] = ACTIONS(1650), - [anon_sym_GT_EQ2] = ACTIONS(1650), - [anon_sym_EQ_TILDE2] = ACTIONS(1650), - [anon_sym_BANG_TILDE2] = ACTIONS(1650), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_STAR_STAR2] = ACTIONS(1650), - [anon_sym_PLUS_PLUS2] = ACTIONS(1650), - [anon_sym_SLASH2] = ACTIONS(1648), - [anon_sym_mod2] = ACTIONS(1650), - [anon_sym_SLASH_SLASH2] = ACTIONS(1650), - [anon_sym_PLUS2] = ACTIONS(1648), - [anon_sym_bit_DASHshl2] = ACTIONS(1650), - [anon_sym_bit_DASHshr2] = ACTIONS(1650), - [anon_sym_bit_DASHand2] = ACTIONS(1650), - [anon_sym_bit_DASHxor2] = ACTIONS(1650), - [anon_sym_bit_DASHor2] = ACTIONS(1650), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [anon_sym_err_GT] = ACTIONS(1648), - [anon_sym_out_GT] = ACTIONS(1648), - [anon_sym_e_GT] = ACTIONS(1648), - [anon_sym_o_GT] = ACTIONS(1648), - [anon_sym_err_PLUSout_GT] = ACTIONS(1648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), - [anon_sym_o_PLUSe_GT] = ACTIONS(1648), - [anon_sym_e_PLUSo_GT] = ACTIONS(1648), - [anon_sym_err_GT_GT] = ACTIONS(1650), - [anon_sym_out_GT_GT] = ACTIONS(1650), - [anon_sym_e_GT_GT] = ACTIONS(1650), - [anon_sym_o_GT_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), - [aux_sym_unquoted_token2] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(245), + [1485] = { + [sym_cell_path] = STATE(1913), + [sym_path] = STATE(1723), + [sym_comment] = STATE(1485), + [aux_sym_cell_path_repeat1] = STATE(1578), + [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_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_DOT2] = ACTIONS(4760), + [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(245), + [sym_raw_string_begin] = ACTIONS(1909), }, - [1559] = { - [sym_cell_path] = STATE(2108), - [sym_path] = STATE(1450), - [sym_comment] = STATE(1559), - [aux_sym_cell_path_repeat1] = STATE(1340), - [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_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_has2] = ACTIONS(1929), - [anon_sym_not_DASHhas2] = 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_DOT2] = ACTIONS(4772), - [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), + [1486] = { + [sym_cell_path] = STATE(1930), + [sym_path] = STATE(1374), + [sym_comment] = STATE(1486), + [aux_sym_cell_path_repeat1] = STATE(1284), + [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_has2] = ACTIONS(1869), + [anon_sym_not_DASHhas2] = 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_DOT2] = ACTIONS(4722), + [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(245), }, - [1560] = { - [sym_comment] = STATE(1560), - [sym__newline] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(4825), - [anon_sym_PIPE] = ACTIONS(4825), - [anon_sym_err_GT_PIPE] = ACTIONS(4825), - [anon_sym_out_GT_PIPE] = ACTIONS(4825), - [anon_sym_e_GT_PIPE] = ACTIONS(4825), - [anon_sym_o_GT_PIPE] = ACTIONS(4825), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4825), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4825), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4825), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4825), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4825), - [anon_sym_RPAREN] = ACTIONS(4825), - [anon_sym_DOLLAR] = ACTIONS(4827), - [anon_sym_DASH_DASH] = ACTIONS(4825), - [anon_sym_DASH2] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(4825), - [anon_sym_RBRACE] = ACTIONS(4825), - [anon_sym_DOT_DOT] = ACTIONS(4827), - [anon_sym_DOT_DOT2] = ACTIONS(4829), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4827), - [anon_sym_DOT_DOT_LT] = ACTIONS(4827), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4831), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4831), - [anon_sym_null] = ACTIONS(4825), - [anon_sym_true] = ACTIONS(4825), - [anon_sym_false] = ACTIONS(4825), - [aux_sym__val_number_decimal_token1] = ACTIONS(4827), - [aux_sym__val_number_decimal_token2] = ACTIONS(4825), - [aux_sym__val_number_decimal_token3] = ACTIONS(4825), - [aux_sym__val_number_decimal_token4] = ACTIONS(4825), - [aux_sym__val_number_token1] = ACTIONS(4825), - [aux_sym__val_number_token2] = ACTIONS(4825), - [aux_sym__val_number_token3] = ACTIONS(4825), - [aux_sym__val_number_token4] = ACTIONS(4825), - [aux_sym__val_number_token5] = ACTIONS(4825), - [aux_sym__val_number_token6] = ACTIONS(4825), - [anon_sym_0b] = ACTIONS(4827), - [anon_sym_0o] = ACTIONS(4827), - [anon_sym_0x] = ACTIONS(4827), - [sym_val_date] = ACTIONS(4825), - [anon_sym_DQUOTE] = ACTIONS(4825), - [sym__str_single_quotes] = ACTIONS(4825), - [sym__str_back_ticks] = ACTIONS(4825), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4825), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4825), - [anon_sym_err_GT] = ACTIONS(4827), - [anon_sym_out_GT] = ACTIONS(4827), - [anon_sym_e_GT] = ACTIONS(4827), - [anon_sym_o_GT] = ACTIONS(4827), - [anon_sym_err_PLUSout_GT] = ACTIONS(4827), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4827), - [anon_sym_o_PLUSe_GT] = ACTIONS(4827), - [anon_sym_e_PLUSo_GT] = ACTIONS(4827), - [anon_sym_err_GT_GT] = ACTIONS(4825), - [anon_sym_out_GT_GT] = ACTIONS(4825), - [anon_sym_e_GT_GT] = ACTIONS(4825), - [anon_sym_o_GT_GT] = ACTIONS(4825), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4825), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4825), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4825), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4825), - [aux_sym_unquoted_token1] = ACTIONS(4827), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(4825), - }, - [1561] = { - [sym_comment] = STATE(1561), - [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(1719), - [anon_sym_RPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_DASH_DASH] = ACTIONS(1721), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1719), - [anon_sym_LPAREN2] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT] = ACTIONS(1721), - [aux_sym__immediate_decimal_token2] = ACTIONS(4833), - [anon_sym_null] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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(1719), - [anon_sym_0o] = ACTIONS(1719), - [anon_sym_0x] = ACTIONS(1719), - [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(1719), - [anon_sym_out_GT] = ACTIONS(1719), - [anon_sym_e_GT] = ACTIONS(1719), - [anon_sym_o_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT] = ACTIONS(1719), - [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(1719), - [aux_sym_unquoted_token2] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1721), + [1487] = { + [sym_comment] = STATE(1487), + [sym__newline] = ACTIONS(1676), + [anon_sym_SEMI] = ACTIONS(1676), + [anon_sym_PIPE] = ACTIONS(1676), + [anon_sym_err_GT_PIPE] = ACTIONS(1676), + [anon_sym_out_GT_PIPE] = ACTIONS(1676), + [anon_sym_e_GT_PIPE] = ACTIONS(1676), + [anon_sym_o_GT_PIPE] = ACTIONS(1676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1676), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1676), + [anon_sym_RPAREN] = ACTIONS(1676), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_DASH_DASH] = ACTIONS(1676), + [anon_sym_DASH2] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(1676), + [anon_sym_RBRACE] = ACTIONS(1676), + [anon_sym_DOT_DOT] = ACTIONS(1674), + [anon_sym_DOT_DOT2] = ACTIONS(1674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1674), + [anon_sym_DOT_DOT_LT] = ACTIONS(1674), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1676), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1676), + [anon_sym_null] = ACTIONS(1676), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1676), + [aux_sym__val_number_decimal_token1] = ACTIONS(1674), + [aux_sym__val_number_decimal_token2] = ACTIONS(1676), + [aux_sym__val_number_decimal_token3] = ACTIONS(1676), + [aux_sym__val_number_decimal_token4] = ACTIONS(1676), + [aux_sym__val_number_token1] = ACTIONS(1676), + [aux_sym__val_number_token2] = ACTIONS(1676), + [aux_sym__val_number_token3] = ACTIONS(1676), + [aux_sym__val_number_token4] = ACTIONS(1676), + [aux_sym__val_number_token5] = ACTIONS(1676), + [aux_sym__val_number_token6] = ACTIONS(1676), + [anon_sym_0b] = ACTIONS(1674), + [anon_sym_0o] = ACTIONS(1674), + [anon_sym_0x] = ACTIONS(1674), + [sym_val_date] = ACTIONS(1676), + [anon_sym_DQUOTE] = ACTIONS(1676), + [sym__str_single_quotes] = ACTIONS(1676), + [sym__str_back_ticks] = ACTIONS(1676), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1676), + [anon_sym_err_GT] = ACTIONS(1674), + [anon_sym_out_GT] = ACTIONS(1674), + [anon_sym_e_GT] = ACTIONS(1674), + [anon_sym_o_GT] = ACTIONS(1674), + [anon_sym_err_PLUSout_GT] = ACTIONS(1674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1674), + [anon_sym_o_PLUSe_GT] = ACTIONS(1674), + [anon_sym_e_PLUSo_GT] = ACTIONS(1674), + [anon_sym_err_GT_GT] = ACTIONS(1676), + [anon_sym_out_GT_GT] = ACTIONS(1676), + [anon_sym_e_GT_GT] = ACTIONS(1676), + [anon_sym_o_GT_GT] = ACTIONS(1676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1676), + [aux_sym_unquoted_token1] = ACTIONS(1674), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1676), }, - [1562] = { - [sym_comment] = STATE(1562), - [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(1719), - [anon_sym_DASH2] = ACTIONS(1721), - [anon_sym_in2] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_STAR2] = ACTIONS(1719), - [anon_sym_and2] = ACTIONS(1721), - [anon_sym_xor2] = ACTIONS(1721), - [anon_sym_or2] = ACTIONS(1721), - [anon_sym_not_DASHin2] = ACTIONS(1721), - [anon_sym_has2] = ACTIONS(1721), - [anon_sym_not_DASHhas2] = 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(1719), - [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(1721), - [anon_sym_STAR_STAR2] = ACTIONS(1721), - [anon_sym_PLUS_PLUS2] = ACTIONS(1721), - [anon_sym_SLASH2] = ACTIONS(1719), - [anon_sym_mod2] = ACTIONS(1721), - [anon_sym_SLASH_SLASH2] = ACTIONS(1721), - [anon_sym_PLUS2] = ACTIONS(1719), - [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(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1721), - [anon_sym_err_GT] = ACTIONS(1719), - [anon_sym_out_GT] = ACTIONS(1719), - [anon_sym_e_GT] = ACTIONS(1719), - [anon_sym_o_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT] = ACTIONS(1719), - [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(1719), + [1488] = { + [sym_comment] = STATE(1488), + [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_DOT_DOT2] = 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_DOT2] = ACTIONS(978), + [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(245), + [sym_raw_string_begin] = ACTIONS(980), }, - [1563] = { - [sym_comment] = STATE(1563), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_DOT_DOT] = ACTIONS(1666), - [anon_sym_DOT_DOT2] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1666), - [anon_sym_DOT_DOT_LT] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [anon_sym_null] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1668), - [aux_sym__val_number_token5] = ACTIONS(1668), - [aux_sym__val_number_token6] = ACTIONS(1668), - [anon_sym_0b] = ACTIONS(1666), - [anon_sym_0o] = ACTIONS(1666), - [anon_sym_0x] = ACTIONS(1666), - [sym_val_date] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_err_GT] = ACTIONS(1666), - [anon_sym_out_GT] = ACTIONS(1666), - [anon_sym_e_GT] = ACTIONS(1666), - [anon_sym_o_GT] = ACTIONS(1666), - [anon_sym_err_PLUSout_GT] = ACTIONS(1666), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), - [anon_sym_o_PLUSe_GT] = ACTIONS(1666), - [anon_sym_e_PLUSo_GT] = ACTIONS(1666), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [aux_sym_unquoted_token1] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), + [1489] = { + [sym_cell_path] = STATE(1996), + [sym_path] = STATE(1723), + [sym_comment] = STATE(1489), + [aux_sym_cell_path_repeat1] = STATE(1578), + [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_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_DOT2] = ACTIONS(4760), + [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(245), + [sym_raw_string_begin] = ACTIONS(1917), }, - [1564] = { - [sym_path] = STATE(1692), - [sym_comment] = STATE(1564), - [aux_sym_cell_path_repeat1] = STATE(1530), + [1490] = { + [sym_path] = STATE(1592), + [sym_comment] = STATE(1490), + [aux_sym_cell_path_repeat1] = STATE(1490), [sym__newline] = ACTIONS(933), [anon_sym_SEMI] = ACTIONS(933), [anon_sym_PIPE] = ACTIONS(933), @@ -221964,7 +214146,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(933), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(933), - [anon_sym_DOT2] = ACTIONS(4770), + [anon_sym_DOT2] = ACTIONS(4794), [anon_sym_err_GT] = ACTIONS(931), [anon_sym_out_GT] = ACTIONS(931), [anon_sym_e_GT] = ACTIONS(931), @@ -221985,1181 +214167,905 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(933), }, - [1565] = { - [sym_comment] = STATE(1565), - [sym__newline] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_err_GT_PIPE] = ACTIONS(1792), - [anon_sym_out_GT_PIPE] = ACTIONS(1792), - [anon_sym_e_GT_PIPE] = ACTIONS(1792), - [anon_sym_o_GT_PIPE] = ACTIONS(1792), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1792), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1792), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1792), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_GT2] = ACTIONS(1790), - [anon_sym_DASH2] = ACTIONS(1792), - [anon_sym_in2] = ACTIONS(1792), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_STAR2] = ACTIONS(1790), - [anon_sym_and2] = ACTIONS(1792), - [anon_sym_xor2] = ACTIONS(1792), - [anon_sym_or2] = ACTIONS(1792), - [anon_sym_not_DASHin2] = ACTIONS(1792), - [anon_sym_has2] = ACTIONS(1792), - [anon_sym_not_DASHhas2] = ACTIONS(1792), - [anon_sym_starts_DASHwith2] = ACTIONS(1792), - [anon_sym_ends_DASHwith2] = ACTIONS(1792), - [anon_sym_EQ_EQ2] = ACTIONS(1792), - [anon_sym_BANG_EQ2] = ACTIONS(1792), - [anon_sym_LT2] = ACTIONS(1790), - [anon_sym_LT_EQ2] = ACTIONS(1792), - [anon_sym_GT_EQ2] = ACTIONS(1792), - [anon_sym_EQ_TILDE2] = ACTIONS(1792), - [anon_sym_BANG_TILDE2] = ACTIONS(1792), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_STAR_STAR2] = ACTIONS(1792), - [anon_sym_PLUS_PLUS2] = ACTIONS(1792), - [anon_sym_SLASH2] = ACTIONS(1790), - [anon_sym_mod2] = ACTIONS(1792), - [anon_sym_SLASH_SLASH2] = ACTIONS(1792), - [anon_sym_PLUS2] = ACTIONS(1790), - [anon_sym_bit_DASHshl2] = ACTIONS(1792), - [anon_sym_bit_DASHshr2] = ACTIONS(1792), - [anon_sym_bit_DASHand2] = ACTIONS(1792), - [anon_sym_bit_DASHxor2] = ACTIONS(1792), - [anon_sym_bit_DASHor2] = ACTIONS(1792), - [anon_sym_DOT_DOT2] = ACTIONS(1790), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1792), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1792), - [anon_sym_err_GT] = ACTIONS(1790), - [anon_sym_out_GT] = ACTIONS(1790), - [anon_sym_e_GT] = ACTIONS(1790), - [anon_sym_o_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT] = ACTIONS(1790), - [anon_sym_err_GT_GT] = ACTIONS(1792), - [anon_sym_out_GT_GT] = ACTIONS(1792), - [anon_sym_e_GT_GT] = ACTIONS(1792), - [anon_sym_o_GT_GT] = ACTIONS(1792), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1792), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1792), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1792), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1792), - [aux_sym_unquoted_token2] = ACTIONS(1790), + [1491] = { + [sym_comment] = STATE(1491), + [sym__newline] = ACTIONS(1947), + [anon_sym_SEMI] = ACTIONS(1947), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_err_GT_PIPE] = ACTIONS(1947), + [anon_sym_out_GT_PIPE] = ACTIONS(1947), + [anon_sym_e_GT_PIPE] = ACTIONS(1947), + [anon_sym_o_GT_PIPE] = ACTIONS(1947), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1947), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1947), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1947), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_RPAREN] = ACTIONS(1947), + [anon_sym_DOLLAR] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1947), + [anon_sym_DASH2] = ACTIONS(1945), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_RBRACE] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1945), + [anon_sym_DOT_DOT2] = ACTIONS(1945), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), + [anon_sym_DOT_DOT_LT] = ACTIONS(1945), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1947), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1947), + [anon_sym_null] = ACTIONS(1947), + [anon_sym_true] = ACTIONS(1947), + [anon_sym_false] = ACTIONS(1947), + [aux_sym__val_number_decimal_token1] = ACTIONS(1945), + [aux_sym__val_number_decimal_token2] = ACTIONS(1947), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), + [aux_sym__val_number_token1] = ACTIONS(1947), + [aux_sym__val_number_token2] = ACTIONS(1947), + [aux_sym__val_number_token3] = ACTIONS(1947), + [aux_sym__val_number_token4] = ACTIONS(1947), + [aux_sym__val_number_token5] = ACTIONS(1947), + [aux_sym__val_number_token6] = ACTIONS(1947), + [anon_sym_0b] = ACTIONS(1945), + [anon_sym_0o] = ACTIONS(1945), + [anon_sym_0x] = ACTIONS(1945), + [sym_val_date] = ACTIONS(1947), + [anon_sym_DQUOTE] = ACTIONS(1947), + [sym__str_single_quotes] = ACTIONS(1947), + [sym__str_back_ticks] = ACTIONS(1947), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1947), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1947), + [anon_sym_err_GT] = ACTIONS(1945), + [anon_sym_out_GT] = ACTIONS(1945), + [anon_sym_e_GT] = ACTIONS(1945), + [anon_sym_o_GT] = ACTIONS(1945), + [anon_sym_err_PLUSout_GT] = ACTIONS(1945), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1945), + [anon_sym_o_PLUSe_GT] = ACTIONS(1945), + [anon_sym_e_PLUSo_GT] = ACTIONS(1945), + [anon_sym_err_GT_GT] = ACTIONS(1947), + [anon_sym_out_GT_GT] = ACTIONS(1947), + [anon_sym_e_GT_GT] = ACTIONS(1947), + [anon_sym_o_GT_GT] = ACTIONS(1947), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1947), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1947), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1947), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1947), + [aux_sym_unquoted_token1] = ACTIONS(1945), [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1947), }, - [1566] = { - [sym_comment] = STATE(1566), - [sym__newline] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_err_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_GT_PIPE] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_RPAREN] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DASH2] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1648), - [anon_sym_DOT_DOT_LT] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [aux_sym__val_number_token4] = ACTIONS(1650), - [aux_sym__val_number_token5] = ACTIONS(1650), - [aux_sym__val_number_token6] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1648), - [anon_sym_0o] = ACTIONS(1648), - [anon_sym_0x] = ACTIONS(1648), - [sym_val_date] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_err_GT] = ACTIONS(1648), - [anon_sym_out_GT] = ACTIONS(1648), - [anon_sym_e_GT] = ACTIONS(1648), - [anon_sym_o_GT] = ACTIONS(1648), - [anon_sym_err_PLUSout_GT] = ACTIONS(1648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), - [anon_sym_o_PLUSe_GT] = ACTIONS(1648), - [anon_sym_e_PLUSo_GT] = ACTIONS(1648), - [anon_sym_err_GT_GT] = ACTIONS(1650), - [anon_sym_out_GT_GT] = ACTIONS(1650), - [anon_sym_e_GT_GT] = ACTIONS(1650), - [anon_sym_o_GT_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), - [aux_sym_unquoted_token1] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1650), + [1492] = { + [sym_comment] = STATE(1492), + [sym__newline] = ACTIONS(1995), + [anon_sym_SEMI] = ACTIONS(1995), + [anon_sym_PIPE] = ACTIONS(1995), + [anon_sym_err_GT_PIPE] = ACTIONS(1995), + [anon_sym_out_GT_PIPE] = ACTIONS(1995), + [anon_sym_e_GT_PIPE] = ACTIONS(1995), + [anon_sym_o_GT_PIPE] = ACTIONS(1995), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1995), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1995), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1995), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_RPAREN] = ACTIONS(1995), + [anon_sym_DOLLAR] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1995), + [anon_sym_DASH2] = ACTIONS(1993), + [anon_sym_LBRACE] = ACTIONS(1995), + [anon_sym_RBRACE] = ACTIONS(1995), + [anon_sym_DOT_DOT] = ACTIONS(1993), + [anon_sym_DOT_DOT2] = ACTIONS(1993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1993), + [anon_sym_DOT_DOT_LT] = ACTIONS(1993), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1995), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1995), + [anon_sym_null] = ACTIONS(1995), + [anon_sym_true] = ACTIONS(1995), + [anon_sym_false] = ACTIONS(1995), + [aux_sym__val_number_decimal_token1] = ACTIONS(1993), + [aux_sym__val_number_decimal_token2] = ACTIONS(1995), + [aux_sym__val_number_decimal_token3] = ACTIONS(1995), + [aux_sym__val_number_decimal_token4] = ACTIONS(1995), + [aux_sym__val_number_token1] = ACTIONS(1995), + [aux_sym__val_number_token2] = ACTIONS(1995), + [aux_sym__val_number_token3] = ACTIONS(1995), + [aux_sym__val_number_token4] = ACTIONS(1995), + [aux_sym__val_number_token5] = ACTIONS(1995), + [aux_sym__val_number_token6] = ACTIONS(1995), + [anon_sym_0b] = ACTIONS(1993), + [anon_sym_0o] = ACTIONS(1993), + [anon_sym_0x] = ACTIONS(1993), + [sym_val_date] = ACTIONS(1995), + [anon_sym_DQUOTE] = ACTIONS(1995), + [sym__str_single_quotes] = ACTIONS(1995), + [sym__str_back_ticks] = ACTIONS(1995), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1995), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1995), + [anon_sym_err_GT] = ACTIONS(1993), + [anon_sym_out_GT] = ACTIONS(1993), + [anon_sym_e_GT] = ACTIONS(1993), + [anon_sym_o_GT] = ACTIONS(1993), + [anon_sym_err_PLUSout_GT] = ACTIONS(1993), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1993), + [anon_sym_o_PLUSe_GT] = ACTIONS(1993), + [anon_sym_e_PLUSo_GT] = ACTIONS(1993), + [anon_sym_err_GT_GT] = ACTIONS(1995), + [anon_sym_out_GT_GT] = ACTIONS(1995), + [anon_sym_e_GT_GT] = ACTIONS(1995), + [anon_sym_o_GT_GT] = ACTIONS(1995), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1995), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1995), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1995), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1995), + [aux_sym_unquoted_token1] = ACTIONS(1993), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1995), }, - [1567] = { - [sym_comment] = STATE(1567), - [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(1719), - [anon_sym_DASH_DASH] = ACTIONS(1721), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1719), - [anon_sym_DOT_DOT2] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1719), - [anon_sym_DOT_DOT_LT] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1721), - [anon_sym_null] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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(1719), - [anon_sym_0o] = ACTIONS(1719), - [anon_sym_0x] = ACTIONS(1719), - [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(1719), - [anon_sym_out_GT] = ACTIONS(1719), - [anon_sym_e_GT] = ACTIONS(1719), - [anon_sym_o_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT] = ACTIONS(1719), - [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(1719), + [1493] = { + [sym_comment] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1701), + [anon_sym_DOT_DOT_LT] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4706), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [1494] = { + [sym_cell_path] = STATE(2009), + [sym_path] = STATE(1723), + [sym_comment] = STATE(1494), + [aux_sym_cell_path_repeat1] = STATE(1578), + [ts_builtin_sym_end] = ACTIONS(1895), + [sym__newline] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1895), + [anon_sym_err_GT_PIPE] = ACTIONS(1895), + [anon_sym_out_GT_PIPE] = ACTIONS(1895), + [anon_sym_e_GT_PIPE] = ACTIONS(1895), + [anon_sym_o_GT_PIPE] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1895), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_DASH_DASH] = ACTIONS(1895), + [anon_sym_DASH2] = ACTIONS(1893), + [anon_sym_LBRACE] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1895), + [anon_sym_DOT_DOT_LT] = ACTIONS(1895), + [anon_sym_null] = ACTIONS(1895), + [anon_sym_true] = ACTIONS(1895), + [anon_sym_false] = ACTIONS(1895), + [aux_sym__val_number_decimal_token1] = ACTIONS(1893), + [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_0b] = ACTIONS(1893), + [anon_sym_0o] = ACTIONS(1893), + [anon_sym_0x] = ACTIONS(1893), + [sym_val_date] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(1895), + [sym__str_single_quotes] = ACTIONS(1895), + [sym__str_back_ticks] = ACTIONS(1895), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1895), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1895), + [anon_sym_DOT2] = ACTIONS(4760), + [anon_sym_err_GT] = ACTIONS(1893), + [anon_sym_out_GT] = ACTIONS(1893), + [anon_sym_e_GT] = ACTIONS(1893), + [anon_sym_o_GT] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT] = ACTIONS(1893), + [anon_sym_err_GT_GT] = ACTIONS(1895), + [anon_sym_out_GT_GT] = ACTIONS(1895), + [anon_sym_e_GT_GT] = ACTIONS(1895), + [anon_sym_o_GT_GT] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1895), + [aux_sym_unquoted_token1] = ACTIONS(1893), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1895), + }, + [1495] = { + [sym_comment] = STATE(1495), + [ts_builtin_sym_end] = ACTIONS(1762), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1760), + [anon_sym_DOT_DOT_LT] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(4797), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1762), + [aux_sym__val_number_token5] = ACTIONS(1762), + [aux_sym__val_number_token6] = ACTIONS(1762), + [anon_sym_0b] = ACTIONS(1760), + [anon_sym_0o] = ACTIONS(1760), + [anon_sym_0x] = ACTIONS(1760), + [sym_val_date] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token1] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1762), + }, + [1496] = { + [sym_comment] = STATE(1496), + [sym__newline] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(1799), + [anon_sym_PIPE] = ACTIONS(1799), + [anon_sym_err_GT_PIPE] = ACTIONS(1799), + [anon_sym_out_GT_PIPE] = ACTIONS(1799), + [anon_sym_e_GT_PIPE] = ACTIONS(1799), + [anon_sym_o_GT_PIPE] = ACTIONS(1799), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1799), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1799), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1799), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1799), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_RPAREN] = ACTIONS(1799), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_DASH2] = ACTIONS(1797), + [anon_sym_LBRACE] = ACTIONS(1799), + [anon_sym_RBRACE] = ACTIONS(1799), + [anon_sym_DOT_DOT] = ACTIONS(1797), + [anon_sym_DOT_DOT2] = ACTIONS(1797), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1797), + [anon_sym_DOT_DOT_LT] = ACTIONS(1797), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1799), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1799), + [anon_sym_null] = ACTIONS(1799), + [anon_sym_true] = ACTIONS(1799), + [anon_sym_false] = ACTIONS(1799), + [aux_sym__val_number_decimal_token1] = ACTIONS(1797), + [aux_sym__val_number_decimal_token2] = ACTIONS(1799), + [aux_sym__val_number_decimal_token3] = ACTIONS(1799), + [aux_sym__val_number_decimal_token4] = ACTIONS(1799), + [aux_sym__val_number_token1] = ACTIONS(1799), + [aux_sym__val_number_token2] = ACTIONS(1799), + [aux_sym__val_number_token3] = ACTIONS(1799), + [aux_sym__val_number_token4] = ACTIONS(1799), + [aux_sym__val_number_token5] = ACTIONS(1799), + [aux_sym__val_number_token6] = ACTIONS(1799), + [anon_sym_0b] = ACTIONS(1797), + [anon_sym_0o] = ACTIONS(1797), + [anon_sym_0x] = ACTIONS(1797), + [sym_val_date] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1799), + [sym__str_single_quotes] = ACTIONS(1799), + [sym__str_back_ticks] = ACTIONS(1799), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1799), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1799), + [anon_sym_err_GT] = ACTIONS(1797), + [anon_sym_out_GT] = ACTIONS(1797), + [anon_sym_e_GT] = ACTIONS(1797), + [anon_sym_o_GT] = ACTIONS(1797), + [anon_sym_err_PLUSout_GT] = ACTIONS(1797), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1797), + [anon_sym_o_PLUSe_GT] = ACTIONS(1797), + [anon_sym_e_PLUSo_GT] = ACTIONS(1797), + [anon_sym_err_GT_GT] = ACTIONS(1799), + [anon_sym_out_GT_GT] = ACTIONS(1799), + [anon_sym_e_GT_GT] = ACTIONS(1799), + [anon_sym_o_GT_GT] = ACTIONS(1799), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1799), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1799), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1799), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1799), + [aux_sym_unquoted_token1] = ACTIONS(1797), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1799), + }, + [1497] = { + [sym_cell_path] = STATE(2013), + [sym_path] = STATE(1723), + [sym_comment] = STATE(1497), + [aux_sym_cell_path_repeat1] = STATE(1578), + [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_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_DOT2] = ACTIONS(4760), + [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(245), - [sym_raw_string_begin] = ACTIONS(1721), + [sym_raw_string_begin] = ACTIONS(1869), }, - [1568] = { - [sym_comment] = STATE(1568), - [sym__newline] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_err_GT_PIPE] = ACTIONS(1792), - [anon_sym_out_GT_PIPE] = ACTIONS(1792), - [anon_sym_e_GT_PIPE] = ACTIONS(1792), - [anon_sym_o_GT_PIPE] = ACTIONS(1792), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1792), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1792), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1792), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_DASH2] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_DOT_DOT] = ACTIONS(1790), - [anon_sym_DOT_DOT2] = ACTIONS(1790), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1790), - [anon_sym_DOT_DOT_LT] = ACTIONS(1790), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1792), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1792), - [anon_sym_false] = ACTIONS(1792), - [aux_sym__val_number_decimal_token1] = ACTIONS(1790), - [aux_sym__val_number_decimal_token2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1792), - [aux_sym__val_number_decimal_token4] = ACTIONS(1792), - [aux_sym__val_number_token1] = ACTIONS(1792), - [aux_sym__val_number_token2] = ACTIONS(1792), - [aux_sym__val_number_token3] = ACTIONS(1792), - [aux_sym__val_number_token4] = ACTIONS(1792), - [aux_sym__val_number_token5] = ACTIONS(1792), - [aux_sym__val_number_token6] = ACTIONS(1792), - [anon_sym_0b] = ACTIONS(1790), - [anon_sym_0o] = ACTIONS(1790), - [anon_sym_0x] = ACTIONS(1790), - [sym_val_date] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym__str_single_quotes] = ACTIONS(1792), - [sym__str_back_ticks] = ACTIONS(1792), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1792), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1792), - [anon_sym_err_GT] = ACTIONS(1790), - [anon_sym_out_GT] = ACTIONS(1790), - [anon_sym_e_GT] = ACTIONS(1790), - [anon_sym_o_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT] = ACTIONS(1790), - [anon_sym_err_GT_GT] = ACTIONS(1792), - [anon_sym_out_GT_GT] = ACTIONS(1792), - [anon_sym_e_GT_GT] = ACTIONS(1792), - [anon_sym_o_GT_GT] = ACTIONS(1792), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1792), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1792), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1792), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1792), - [aux_sym_unquoted_token1] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1792), + [1498] = { + [sym_comment] = STATE(1498), + [sym__newline] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(1799), + [anon_sym_PIPE] = ACTIONS(1799), + [anon_sym_err_GT_PIPE] = ACTIONS(1799), + [anon_sym_out_GT_PIPE] = ACTIONS(1799), + [anon_sym_e_GT_PIPE] = ACTIONS(1799), + [anon_sym_o_GT_PIPE] = ACTIONS(1799), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1799), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1799), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1799), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1799), + [anon_sym_RPAREN] = ACTIONS(1799), + [anon_sym_GT2] = ACTIONS(1797), + [anon_sym_DASH2] = ACTIONS(1799), + [anon_sym_in2] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1799), + [anon_sym_RBRACE] = ACTIONS(1799), + [anon_sym_STAR2] = ACTIONS(1797), + [anon_sym_and2] = ACTIONS(1799), + [anon_sym_xor2] = ACTIONS(1799), + [anon_sym_or2] = ACTIONS(1799), + [anon_sym_not_DASHin2] = ACTIONS(1799), + [anon_sym_has2] = ACTIONS(1799), + [anon_sym_not_DASHhas2] = ACTIONS(1799), + [anon_sym_starts_DASHwith2] = ACTIONS(1799), + [anon_sym_ends_DASHwith2] = ACTIONS(1799), + [anon_sym_EQ_EQ2] = ACTIONS(1799), + [anon_sym_BANG_EQ2] = ACTIONS(1799), + [anon_sym_LT2] = ACTIONS(1797), + [anon_sym_LT_EQ2] = ACTIONS(1799), + [anon_sym_GT_EQ2] = ACTIONS(1799), + [anon_sym_EQ_TILDE2] = ACTIONS(1799), + [anon_sym_BANG_TILDE2] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1799), + [anon_sym_STAR_STAR2] = ACTIONS(1799), + [anon_sym_PLUS_PLUS2] = ACTIONS(1799), + [anon_sym_SLASH2] = ACTIONS(1797), + [anon_sym_mod2] = ACTIONS(1799), + [anon_sym_SLASH_SLASH2] = ACTIONS(1799), + [anon_sym_PLUS2] = ACTIONS(1797), + [anon_sym_bit_DASHshl2] = ACTIONS(1799), + [anon_sym_bit_DASHshr2] = ACTIONS(1799), + [anon_sym_bit_DASHand2] = ACTIONS(1799), + [anon_sym_bit_DASHxor2] = ACTIONS(1799), + [anon_sym_bit_DASHor2] = ACTIONS(1799), + [anon_sym_DOT_DOT2] = ACTIONS(1797), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1799), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1799), + [anon_sym_err_GT] = ACTIONS(1797), + [anon_sym_out_GT] = ACTIONS(1797), + [anon_sym_e_GT] = ACTIONS(1797), + [anon_sym_o_GT] = ACTIONS(1797), + [anon_sym_err_PLUSout_GT] = ACTIONS(1797), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1797), + [anon_sym_o_PLUSe_GT] = ACTIONS(1797), + [anon_sym_e_PLUSo_GT] = ACTIONS(1797), + [anon_sym_err_GT_GT] = ACTIONS(1799), + [anon_sym_out_GT_GT] = ACTIONS(1799), + [anon_sym_e_GT_GT] = ACTIONS(1799), + [anon_sym_o_GT_GT] = ACTIONS(1799), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1799), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1799), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1799), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1799), + [aux_sym_unquoted_token2] = ACTIONS(1797), + [anon_sym_POUND] = ACTIONS(245), }, - [1569] = { - [sym_comment] = STATE(1569), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(994), - [anon_sym_err_GT_PIPE] = ACTIONS(994), - [anon_sym_out_GT_PIPE] = ACTIONS(994), - [anon_sym_e_GT_PIPE] = ACTIONS(994), - [anon_sym_o_GT_PIPE] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(994), - [anon_sym_RPAREN] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(994), - [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(994), - [anon_sym_DOT_DOT] = ACTIONS(998), - [anon_sym_DOT_DOT2] = ACTIONS(4829), - [anon_sym_DOT_DOT_EQ] = ACTIONS(998), - [anon_sym_DOT_DOT_LT] = ACTIONS(998), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4831), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4831), - [anon_sym_null] = ACTIONS(994), - [anon_sym_true] = ACTIONS(994), - [anon_sym_false] = ACTIONS(994), - [aux_sym__val_number_decimal_token1] = ACTIONS(998), - [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_0b] = ACTIONS(998), - [anon_sym_0o] = ACTIONS(998), - [anon_sym_0x] = ACTIONS(998), - [sym_val_date] = ACTIONS(994), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym__str_single_quotes] = ACTIONS(994), - [sym__str_back_ticks] = ACTIONS(994), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(994), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(994), - [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(994), - [anon_sym_out_GT_GT] = ACTIONS(994), - [anon_sym_e_GT_GT] = ACTIONS(994), - [anon_sym_o_GT_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), - [aux_sym_unquoted_token1] = ACTIONS(998), + [1499] = { + [sym_comment] = STATE(1499), + [sym__newline] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(2396), + [anon_sym_err_GT_PIPE] = ACTIONS(2396), + [anon_sym_out_GT_PIPE] = ACTIONS(2396), + [anon_sym_e_GT_PIPE] = ACTIONS(2396), + [anon_sym_o_GT_PIPE] = ACTIONS(2396), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2396), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2396), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2396), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2396), + [anon_sym_RPAREN] = ACTIONS(2396), + [anon_sym_GT2] = ACTIONS(2394), + [anon_sym_DASH2] = ACTIONS(2396), + [anon_sym_in2] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_EQ_GT] = ACTIONS(2396), + [anon_sym_STAR2] = ACTIONS(2394), + [anon_sym_QMARK2] = ACTIONS(2396), + [anon_sym_and2] = ACTIONS(2396), + [anon_sym_xor2] = ACTIONS(2396), + [anon_sym_or2] = ACTIONS(2396), + [anon_sym_not_DASHin2] = ACTIONS(2396), + [anon_sym_has2] = ACTIONS(2396), + [anon_sym_not_DASHhas2] = ACTIONS(2396), + [anon_sym_starts_DASHwith2] = ACTIONS(2396), + [anon_sym_ends_DASHwith2] = ACTIONS(2396), + [anon_sym_EQ_EQ2] = ACTIONS(2396), + [anon_sym_BANG_EQ2] = ACTIONS(2396), + [anon_sym_LT2] = ACTIONS(2394), + [anon_sym_LT_EQ2] = ACTIONS(2396), + [anon_sym_GT_EQ2] = ACTIONS(2396), + [anon_sym_EQ_TILDE2] = ACTIONS(2396), + [anon_sym_BANG_TILDE2] = ACTIONS(2396), + [anon_sym_STAR_STAR2] = ACTIONS(2396), + [anon_sym_PLUS_PLUS2] = ACTIONS(2396), + [anon_sym_SLASH2] = ACTIONS(2394), + [anon_sym_mod2] = ACTIONS(2396), + [anon_sym_SLASH_SLASH2] = ACTIONS(2396), + [anon_sym_PLUS2] = ACTIONS(2394), + [anon_sym_bit_DASHshl2] = ACTIONS(2396), + [anon_sym_bit_DASHshr2] = ACTIONS(2396), + [anon_sym_bit_DASHand2] = ACTIONS(2396), + [anon_sym_bit_DASHxor2] = ACTIONS(2396), + [anon_sym_bit_DASHor2] = ACTIONS(2396), + [anon_sym_COLON2] = ACTIONS(2396), + [anon_sym_DOT2] = ACTIONS(2396), + [anon_sym_err_GT] = ACTIONS(2394), + [anon_sym_out_GT] = ACTIONS(2394), + [anon_sym_e_GT] = ACTIONS(2394), + [anon_sym_o_GT] = ACTIONS(2394), + [anon_sym_err_PLUSout_GT] = ACTIONS(2394), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2394), + [anon_sym_o_PLUSe_GT] = ACTIONS(2394), + [anon_sym_e_PLUSo_GT] = ACTIONS(2394), + [anon_sym_err_GT_GT] = ACTIONS(2396), + [anon_sym_out_GT_GT] = ACTIONS(2396), + [anon_sym_e_GT_GT] = ACTIONS(2396), + [anon_sym_o_GT_GT] = ACTIONS(2396), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2396), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2396), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2396), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2396), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(994), }, - [1570] = { - [sym_cell_path] = STATE(2097), - [sym_path] = STATE(1964), - [sym_comment] = STATE(1570), - [aux_sym_cell_path_repeat1] = STATE(1620), - [ts_builtin_sym_end] = ACTIONS(927), - [sym__newline] = ACTIONS(927), - [anon_sym_SEMI] = ACTIONS(927), - [anon_sym_PIPE] = ACTIONS(927), - [anon_sym_err_GT_PIPE] = ACTIONS(927), - [anon_sym_out_GT_PIPE] = ACTIONS(927), - [anon_sym_e_GT_PIPE] = ACTIONS(927), - [anon_sym_o_GT_PIPE] = ACTIONS(927), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(927), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(927), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(927), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(925), - [anon_sym_DASH_DASH] = ACTIONS(927), - [anon_sym_DASH2] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(927), - [anon_sym_DOT_DOT] = ACTIONS(925), - [anon_sym_DOT_DOT_EQ] = ACTIONS(927), - [anon_sym_DOT_DOT_LT] = ACTIONS(927), - [anon_sym_null] = ACTIONS(927), - [anon_sym_true] = ACTIONS(927), - [anon_sym_false] = ACTIONS(927), - [aux_sym__val_number_decimal_token1] = ACTIONS(925), - [aux_sym__val_number_decimal_token2] = ACTIONS(927), - [aux_sym__val_number_decimal_token3] = ACTIONS(927), - [aux_sym__val_number_decimal_token4] = ACTIONS(927), - [aux_sym__val_number_token1] = ACTIONS(927), - [aux_sym__val_number_token2] = ACTIONS(927), - [aux_sym__val_number_token3] = ACTIONS(927), - [aux_sym__val_number_token4] = ACTIONS(927), - [aux_sym__val_number_token5] = ACTIONS(927), - [aux_sym__val_number_token6] = ACTIONS(927), - [anon_sym_0b] = ACTIONS(925), - [anon_sym_0o] = ACTIONS(925), - [anon_sym_0x] = ACTIONS(925), - [sym_val_date] = ACTIONS(927), - [anon_sym_DQUOTE] = ACTIONS(927), - [sym__str_single_quotes] = ACTIONS(927), - [sym__str_back_ticks] = ACTIONS(927), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(927), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(927), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(925), - [anon_sym_out_GT] = ACTIONS(925), - [anon_sym_e_GT] = ACTIONS(925), - [anon_sym_o_GT] = ACTIONS(925), - [anon_sym_err_PLUSout_GT] = ACTIONS(925), - [anon_sym_out_PLUSerr_GT] = ACTIONS(925), - [anon_sym_o_PLUSe_GT] = ACTIONS(925), - [anon_sym_e_PLUSo_GT] = ACTIONS(925), - [anon_sym_err_GT_GT] = ACTIONS(927), - [anon_sym_out_GT_GT] = ACTIONS(927), - [anon_sym_e_GT_GT] = ACTIONS(927), - [anon_sym_o_GT_GT] = ACTIONS(927), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(927), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(927), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(927), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(927), - [aux_sym_unquoted_token1] = ACTIONS(925), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(927), - }, - [1571] = { - [sym_comment] = STATE(1571), - [ts_builtin_sym_end] = ACTIONS(1668), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_DOT_DOT] = ACTIONS(1666), - [anon_sym_DOT_DOT2] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1666), - [anon_sym_DOT_DOT_LT] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [aux_sym__immediate_decimal_token2] = ACTIONS(4792), - [anon_sym_null] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1668), - [aux_sym__val_number_token5] = ACTIONS(1668), - [aux_sym__val_number_token6] = ACTIONS(1668), - [anon_sym_0b] = ACTIONS(1666), - [anon_sym_0o] = ACTIONS(1666), - [anon_sym_0x] = ACTIONS(1666), - [sym_val_date] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_err_GT] = ACTIONS(1666), - [anon_sym_out_GT] = ACTIONS(1666), - [anon_sym_e_GT] = ACTIONS(1666), - [anon_sym_o_GT] = ACTIONS(1666), - [anon_sym_err_PLUSout_GT] = ACTIONS(1666), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), - [anon_sym_o_PLUSe_GT] = ACTIONS(1666), - [anon_sym_e_PLUSo_GT] = ACTIONS(1666), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [aux_sym_unquoted_token1] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), - }, - [1572] = { - [sym_cell_path] = STATE(2065), - [sym_path] = STATE(1858), - [sym_comment] = STATE(1572), - [aux_sym_cell_path_repeat1] = STATE(1628), - [ts_builtin_sym_end] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1713), - [anon_sym_in2] = ACTIONS(1713), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1713), - [anon_sym_xor2] = ACTIONS(1713), - [anon_sym_or2] = ACTIONS(1713), - [anon_sym_not_DASHin2] = ACTIONS(1713), - [anon_sym_has2] = ACTIONS(1713), - [anon_sym_not_DASHhas2] = ACTIONS(1713), - [anon_sym_starts_DASHwith2] = ACTIONS(1713), - [anon_sym_ends_DASHwith2] = ACTIONS(1713), - [anon_sym_EQ_EQ2] = ACTIONS(1713), - [anon_sym_BANG_EQ2] = ACTIONS(1713), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1713), - [anon_sym_GT_EQ2] = ACTIONS(1713), - [anon_sym_EQ_TILDE2] = ACTIONS(1713), - [anon_sym_BANG_TILDE2] = ACTIONS(1713), - [anon_sym_STAR_STAR2] = ACTIONS(1713), - [anon_sym_PLUS_PLUS2] = ACTIONS(1713), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1713), - [anon_sym_SLASH_SLASH2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1713), - [anon_sym_bit_DASHshr2] = ACTIONS(1713), - [anon_sym_bit_DASHand2] = ACTIONS(1713), - [anon_sym_bit_DASHxor2] = ACTIONS(1713), - [anon_sym_bit_DASHor2] = ACTIONS(1713), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [anon_sym_DOT2] = ACTIONS(4835), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(245), - }, - [1573] = { - [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_LBRACK] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_DASH_DASH] = ACTIONS(1721), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1719), - [anon_sym_DOT_DOT2] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1719), - [anon_sym_DOT_DOT_LT] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1721), - [aux_sym__immediate_decimal_token2] = ACTIONS(4837), - [anon_sym_null] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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(1719), - [anon_sym_0o] = ACTIONS(1719), - [anon_sym_0x] = ACTIONS(1719), - [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(1719), - [anon_sym_out_GT] = ACTIONS(1719), - [anon_sym_e_GT] = ACTIONS(1719), - [anon_sym_o_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT] = ACTIONS(1719), - [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(1719), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1721), - }, - [1574] = { - [sym_comment] = STATE(1574), - [sym__newline] = ACTIONS(1965), - [anon_sym_SEMI] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1965), - [anon_sym_err_GT_PIPE] = ACTIONS(1965), - [anon_sym_out_GT_PIPE] = ACTIONS(1965), - [anon_sym_e_GT_PIPE] = ACTIONS(1965), - [anon_sym_o_GT_PIPE] = ACTIONS(1965), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1965), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1965), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1965), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1965), - [anon_sym_RPAREN] = ACTIONS(1965), - [anon_sym_GT2] = ACTIONS(1963), - [anon_sym_DASH2] = ACTIONS(1965), - [anon_sym_in2] = ACTIONS(1965), - [anon_sym_if] = ACTIONS(1965), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_RBRACE] = ACTIONS(1965), - [anon_sym_EQ_GT] = ACTIONS(1965), - [anon_sym_STAR2] = ACTIONS(1963), - [anon_sym_and2] = ACTIONS(1965), - [anon_sym_xor2] = ACTIONS(1965), - [anon_sym_or2] = ACTIONS(1965), - [anon_sym_not_DASHin2] = ACTIONS(1965), - [anon_sym_has2] = ACTIONS(1965), - [anon_sym_not_DASHhas2] = ACTIONS(1965), - [anon_sym_starts_DASHwith2] = ACTIONS(1965), - [anon_sym_ends_DASHwith2] = ACTIONS(1965), - [anon_sym_EQ_EQ2] = ACTIONS(1965), - [anon_sym_BANG_EQ2] = ACTIONS(1965), - [anon_sym_LT2] = ACTIONS(1963), - [anon_sym_LT_EQ2] = ACTIONS(1965), - [anon_sym_GT_EQ2] = ACTIONS(1965), - [anon_sym_EQ_TILDE2] = ACTIONS(1965), - [anon_sym_BANG_TILDE2] = ACTIONS(1965), - [anon_sym_STAR_STAR2] = ACTIONS(1965), - [anon_sym_PLUS_PLUS2] = ACTIONS(1965), - [anon_sym_SLASH2] = ACTIONS(1963), - [anon_sym_mod2] = ACTIONS(1965), - [anon_sym_SLASH_SLASH2] = ACTIONS(1965), - [anon_sym_PLUS2] = ACTIONS(1963), - [anon_sym_bit_DASHshl2] = ACTIONS(1965), - [anon_sym_bit_DASHshr2] = ACTIONS(1965), - [anon_sym_bit_DASHand2] = ACTIONS(1965), - [anon_sym_bit_DASHxor2] = ACTIONS(1965), - [anon_sym_bit_DASHor2] = ACTIONS(1965), - [anon_sym_DOT_DOT2] = ACTIONS(1963), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1965), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1965), - [anon_sym_err_GT] = ACTIONS(1963), - [anon_sym_out_GT] = ACTIONS(1963), - [anon_sym_e_GT] = ACTIONS(1963), - [anon_sym_o_GT] = ACTIONS(1963), - [anon_sym_err_PLUSout_GT] = ACTIONS(1963), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1963), - [anon_sym_o_PLUSe_GT] = ACTIONS(1963), - [anon_sym_e_PLUSo_GT] = ACTIONS(1963), - [anon_sym_err_GT_GT] = ACTIONS(1965), - [anon_sym_out_GT_GT] = ACTIONS(1965), - [anon_sym_e_GT_GT] = ACTIONS(1965), - [anon_sym_o_GT_GT] = ACTIONS(1965), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1965), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1965), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1965), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1965), - [anon_sym_POUND] = ACTIONS(245), - }, - [1575] = { - [sym_comment] = STATE(1575), - [sym__newline] = ACTIONS(2015), - [anon_sym_SEMI] = ACTIONS(2015), - [anon_sym_PIPE] = ACTIONS(2015), - [anon_sym_err_GT_PIPE] = ACTIONS(2015), - [anon_sym_out_GT_PIPE] = ACTIONS(2015), - [anon_sym_e_GT_PIPE] = ACTIONS(2015), - [anon_sym_o_GT_PIPE] = ACTIONS(2015), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2015), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2015), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2015), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2015), - [anon_sym_LBRACK] = ACTIONS(2015), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_RPAREN] = ACTIONS(2015), - [anon_sym_DOLLAR] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_DASH2] = ACTIONS(2009), - [anon_sym_LBRACE] = ACTIONS(2015), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_DOT_DOT] = ACTIONS(2009), - [anon_sym_DOT_DOT2] = ACTIONS(4839), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), - [anon_sym_DOT_DOT_LT] = ACTIONS(2009), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4841), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4841), - [anon_sym_null] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(2015), - [anon_sym_false] = ACTIONS(2015), - [aux_sym__val_number_decimal_token1] = ACTIONS(2009), - [aux_sym__val_number_decimal_token2] = ACTIONS(2015), - [aux_sym__val_number_decimal_token3] = ACTIONS(2015), - [aux_sym__val_number_decimal_token4] = ACTIONS(2015), - [aux_sym__val_number_token1] = ACTIONS(2015), - [aux_sym__val_number_token2] = ACTIONS(2015), - [aux_sym__val_number_token3] = ACTIONS(2015), - [aux_sym__val_number_token4] = ACTIONS(2015), - [aux_sym__val_number_token5] = ACTIONS(2015), - [aux_sym__val_number_token6] = ACTIONS(2015), - [anon_sym_0b] = ACTIONS(2009), - [anon_sym_0o] = ACTIONS(2009), - [anon_sym_0x] = ACTIONS(2009), - [sym_val_date] = ACTIONS(2015), - [anon_sym_DQUOTE] = ACTIONS(2015), - [sym__str_single_quotes] = ACTIONS(2015), - [sym__str_back_ticks] = ACTIONS(2015), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2015), - [anon_sym_err_GT] = ACTIONS(2009), - [anon_sym_out_GT] = ACTIONS(2009), - [anon_sym_e_GT] = ACTIONS(2009), - [anon_sym_o_GT] = ACTIONS(2009), - [anon_sym_err_PLUSout_GT] = ACTIONS(2009), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2009), - [anon_sym_o_PLUSe_GT] = ACTIONS(2009), - [anon_sym_e_PLUSo_GT] = ACTIONS(2009), - [anon_sym_err_GT_GT] = ACTIONS(2015), - [anon_sym_out_GT_GT] = ACTIONS(2015), - [anon_sym_e_GT_GT] = ACTIONS(2015), - [anon_sym_o_GT_GT] = ACTIONS(2015), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2015), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2015), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2015), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2015), - [aux_sym_unquoted_token1] = ACTIONS(2009), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2015), - }, - [1576] = { - [sym_comment] = STATE(1576), - [sym__newline] = ACTIONS(2023), - [anon_sym_SEMI] = ACTIONS(2023), - [anon_sym_PIPE] = ACTIONS(2023), - [anon_sym_err_GT_PIPE] = ACTIONS(2023), - [anon_sym_out_GT_PIPE] = ACTIONS(2023), - [anon_sym_e_GT_PIPE] = ACTIONS(2023), - [anon_sym_o_GT_PIPE] = ACTIONS(2023), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2023), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2023), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2023), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_RPAREN] = ACTIONS(2023), - [anon_sym_DOLLAR] = ACTIONS(2017), - [anon_sym_DASH_DASH] = ACTIONS(2023), - [anon_sym_DASH2] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2023), - [anon_sym_DOT_DOT] = ACTIONS(2017), - [anon_sym_DOT_DOT2] = ACTIONS(4843), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2017), - [anon_sym_DOT_DOT_LT] = ACTIONS(2017), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4845), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4845), - [anon_sym_null] = ACTIONS(2023), - [anon_sym_true] = ACTIONS(2023), - [anon_sym_false] = ACTIONS(2023), - [aux_sym__val_number_decimal_token1] = ACTIONS(2017), - [aux_sym__val_number_decimal_token2] = ACTIONS(2023), - [aux_sym__val_number_decimal_token3] = ACTIONS(2023), - [aux_sym__val_number_decimal_token4] = ACTIONS(2023), - [aux_sym__val_number_token1] = ACTIONS(2023), - [aux_sym__val_number_token2] = ACTIONS(2023), - [aux_sym__val_number_token3] = ACTIONS(2023), - [aux_sym__val_number_token4] = ACTIONS(2023), - [aux_sym__val_number_token5] = ACTIONS(2023), - [aux_sym__val_number_token6] = ACTIONS(2023), - [anon_sym_0b] = ACTIONS(2017), - [anon_sym_0o] = ACTIONS(2017), - [anon_sym_0x] = ACTIONS(2017), - [sym_val_date] = ACTIONS(2023), - [anon_sym_DQUOTE] = ACTIONS(2023), - [sym__str_single_quotes] = ACTIONS(2023), - [sym__str_back_ticks] = ACTIONS(2023), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2023), - [anon_sym_err_GT] = ACTIONS(2017), - [anon_sym_out_GT] = ACTIONS(2017), - [anon_sym_e_GT] = ACTIONS(2017), - [anon_sym_o_GT] = ACTIONS(2017), - [anon_sym_err_PLUSout_GT] = ACTIONS(2017), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2017), - [anon_sym_o_PLUSe_GT] = ACTIONS(2017), - [anon_sym_e_PLUSo_GT] = ACTIONS(2017), - [anon_sym_err_GT_GT] = ACTIONS(2023), - [anon_sym_out_GT_GT] = ACTIONS(2023), - [anon_sym_e_GT_GT] = ACTIONS(2023), - [anon_sym_o_GT_GT] = ACTIONS(2023), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2023), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2023), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2023), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2023), - [aux_sym_unquoted_token1] = ACTIONS(2017), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2023), - }, - [1577] = { - [sym_comment] = STATE(1577), - [sym__newline] = ACTIONS(2031), - [anon_sym_SEMI] = ACTIONS(2031), - [anon_sym_PIPE] = ACTIONS(2031), - [anon_sym_err_GT_PIPE] = ACTIONS(2031), - [anon_sym_out_GT_PIPE] = ACTIONS(2031), - [anon_sym_e_GT_PIPE] = ACTIONS(2031), - [anon_sym_o_GT_PIPE] = ACTIONS(2031), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2031), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2031), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2031), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(2031), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_RPAREN] = ACTIONS(2031), - [anon_sym_DOLLAR] = ACTIONS(2025), - [anon_sym_DASH_DASH] = ACTIONS(2031), - [anon_sym_DASH2] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(2031), - [anon_sym_RBRACE] = ACTIONS(2031), - [anon_sym_DOT_DOT] = ACTIONS(2025), - [anon_sym_DOT_DOT2] = ACTIONS(4847), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2025), - [anon_sym_DOT_DOT_LT] = ACTIONS(2025), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4849), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4849), - [anon_sym_null] = ACTIONS(2031), - [anon_sym_true] = ACTIONS(2031), - [anon_sym_false] = ACTIONS(2031), - [aux_sym__val_number_decimal_token1] = ACTIONS(2025), - [aux_sym__val_number_decimal_token2] = ACTIONS(2031), - [aux_sym__val_number_decimal_token3] = ACTIONS(2031), - [aux_sym__val_number_decimal_token4] = ACTIONS(2031), - [aux_sym__val_number_token1] = ACTIONS(2031), - [aux_sym__val_number_token2] = ACTIONS(2031), - [aux_sym__val_number_token3] = ACTIONS(2031), - [aux_sym__val_number_token4] = ACTIONS(2031), - [aux_sym__val_number_token5] = ACTIONS(2031), - [aux_sym__val_number_token6] = ACTIONS(2031), - [anon_sym_0b] = ACTIONS(2025), - [anon_sym_0o] = ACTIONS(2025), - [anon_sym_0x] = ACTIONS(2025), - [sym_val_date] = ACTIONS(2031), - [anon_sym_DQUOTE] = ACTIONS(2031), - [sym__str_single_quotes] = ACTIONS(2031), - [sym__str_back_ticks] = ACTIONS(2031), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2031), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2031), - [anon_sym_err_GT] = ACTIONS(2025), - [anon_sym_out_GT] = ACTIONS(2025), - [anon_sym_e_GT] = ACTIONS(2025), - [anon_sym_o_GT] = ACTIONS(2025), - [anon_sym_err_PLUSout_GT] = ACTIONS(2025), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2025), - [anon_sym_o_PLUSe_GT] = ACTIONS(2025), - [anon_sym_e_PLUSo_GT] = ACTIONS(2025), - [anon_sym_err_GT_GT] = ACTIONS(2031), - [anon_sym_out_GT_GT] = ACTIONS(2031), - [anon_sym_e_GT_GT] = ACTIONS(2031), - [anon_sym_o_GT_GT] = ACTIONS(2031), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2031), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2031), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2031), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2031), - [aux_sym_unquoted_token1] = ACTIONS(2025), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2031), - }, - [1578] = { - [sym_cell_path] = STATE(2089), - [sym_path] = STATE(1858), - [sym_comment] = STATE(1578), - [aux_sym_cell_path_repeat1] = STATE(1628), - [ts_builtin_sym_end] = ACTIONS(1700), - [sym__newline] = ACTIONS(1700), - [anon_sym_SEMI] = ACTIONS(1700), - [anon_sym_PIPE] = ACTIONS(1700), - [anon_sym_err_GT_PIPE] = ACTIONS(1700), - [anon_sym_out_GT_PIPE] = ACTIONS(1700), - [anon_sym_e_GT_PIPE] = ACTIONS(1700), - [anon_sym_o_GT_PIPE] = ACTIONS(1700), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1700), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1700), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1700), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1700), - [anon_sym_GT2] = ACTIONS(1698), - [anon_sym_DASH2] = ACTIONS(1700), - [anon_sym_in2] = ACTIONS(1700), - [anon_sym_STAR2] = ACTIONS(1698), - [anon_sym_and2] = ACTIONS(1700), - [anon_sym_xor2] = ACTIONS(1700), - [anon_sym_or2] = ACTIONS(1700), - [anon_sym_not_DASHin2] = ACTIONS(1700), - [anon_sym_has2] = ACTIONS(1700), - [anon_sym_not_DASHhas2] = ACTIONS(1700), - [anon_sym_starts_DASHwith2] = ACTIONS(1700), - [anon_sym_ends_DASHwith2] = ACTIONS(1700), - [anon_sym_EQ_EQ2] = ACTIONS(1700), - [anon_sym_BANG_EQ2] = ACTIONS(1700), - [anon_sym_LT2] = ACTIONS(1698), - [anon_sym_LT_EQ2] = ACTIONS(1700), - [anon_sym_GT_EQ2] = ACTIONS(1700), - [anon_sym_EQ_TILDE2] = ACTIONS(1700), - [anon_sym_BANG_TILDE2] = ACTIONS(1700), - [anon_sym_STAR_STAR2] = ACTIONS(1700), - [anon_sym_PLUS_PLUS2] = ACTIONS(1700), - [anon_sym_SLASH2] = ACTIONS(1698), - [anon_sym_mod2] = ACTIONS(1700), - [anon_sym_SLASH_SLASH2] = ACTIONS(1700), - [anon_sym_PLUS2] = ACTIONS(1698), - [anon_sym_bit_DASHshl2] = ACTIONS(1700), - [anon_sym_bit_DASHshr2] = ACTIONS(1700), - [anon_sym_bit_DASHand2] = ACTIONS(1700), - [anon_sym_bit_DASHxor2] = ACTIONS(1700), - [anon_sym_bit_DASHor2] = ACTIONS(1700), - [anon_sym_DOT_DOT2] = ACTIONS(1698), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1700), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1700), - [anon_sym_DOT2] = ACTIONS(4835), - [anon_sym_err_GT] = ACTIONS(1698), - [anon_sym_out_GT] = ACTIONS(1698), - [anon_sym_e_GT] = ACTIONS(1698), - [anon_sym_o_GT] = ACTIONS(1698), - [anon_sym_err_PLUSout_GT] = ACTIONS(1698), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1698), - [anon_sym_o_PLUSe_GT] = ACTIONS(1698), - [anon_sym_e_PLUSo_GT] = ACTIONS(1698), - [anon_sym_err_GT_GT] = ACTIONS(1700), - [anon_sym_out_GT_GT] = ACTIONS(1700), - [anon_sym_e_GT_GT] = ACTIONS(1700), - [anon_sym_o_GT_GT] = ACTIONS(1700), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1700), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1700), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1700), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1700), + [1500] = { + [sym_cell_path] = STATE(1884), + [sym_path] = STATE(1374), + [sym_comment] = STATE(1500), + [aux_sym_cell_path_repeat1] = STATE(1284), + [sym__newline] = ACTIONS(1847), + [anon_sym_SEMI] = ACTIONS(1847), + [anon_sym_PIPE] = ACTIONS(1847), + [anon_sym_err_GT_PIPE] = ACTIONS(1847), + [anon_sym_out_GT_PIPE] = ACTIONS(1847), + [anon_sym_e_GT_PIPE] = ACTIONS(1847), + [anon_sym_o_GT_PIPE] = ACTIONS(1847), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1847), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1847), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1847), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1847), + [anon_sym_RPAREN] = ACTIONS(1847), + [anon_sym_GT2] = ACTIONS(1845), + [anon_sym_DASH2] = ACTIONS(1847), + [anon_sym_in2] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1847), + [anon_sym_EQ_GT] = ACTIONS(1847), + [anon_sym_STAR2] = ACTIONS(1845), + [anon_sym_and2] = ACTIONS(1847), + [anon_sym_xor2] = ACTIONS(1847), + [anon_sym_or2] = ACTIONS(1847), + [anon_sym_not_DASHin2] = ACTIONS(1847), + [anon_sym_has2] = ACTIONS(1847), + [anon_sym_not_DASHhas2] = ACTIONS(1847), + [anon_sym_starts_DASHwith2] = ACTIONS(1847), + [anon_sym_ends_DASHwith2] = ACTIONS(1847), + [anon_sym_EQ_EQ2] = ACTIONS(1847), + [anon_sym_BANG_EQ2] = ACTIONS(1847), + [anon_sym_LT2] = ACTIONS(1845), + [anon_sym_LT_EQ2] = ACTIONS(1847), + [anon_sym_GT_EQ2] = ACTIONS(1847), + [anon_sym_EQ_TILDE2] = ACTIONS(1847), + [anon_sym_BANG_TILDE2] = ACTIONS(1847), + [anon_sym_STAR_STAR2] = ACTIONS(1847), + [anon_sym_PLUS_PLUS2] = ACTIONS(1847), + [anon_sym_SLASH2] = ACTIONS(1845), + [anon_sym_mod2] = ACTIONS(1847), + [anon_sym_SLASH_SLASH2] = ACTIONS(1847), + [anon_sym_PLUS2] = ACTIONS(1845), + [anon_sym_bit_DASHshl2] = ACTIONS(1847), + [anon_sym_bit_DASHshr2] = ACTIONS(1847), + [anon_sym_bit_DASHand2] = ACTIONS(1847), + [anon_sym_bit_DASHxor2] = ACTIONS(1847), + [anon_sym_bit_DASHor2] = ACTIONS(1847), + [anon_sym_DOT2] = ACTIONS(4722), + [anon_sym_err_GT] = ACTIONS(1845), + [anon_sym_out_GT] = ACTIONS(1845), + [anon_sym_e_GT] = ACTIONS(1845), + [anon_sym_o_GT] = ACTIONS(1845), + [anon_sym_err_PLUSout_GT] = ACTIONS(1845), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1845), + [anon_sym_o_PLUSe_GT] = ACTIONS(1845), + [anon_sym_e_PLUSo_GT] = ACTIONS(1845), + [anon_sym_err_GT_GT] = ACTIONS(1847), + [anon_sym_out_GT_GT] = ACTIONS(1847), + [anon_sym_e_GT_GT] = ACTIONS(1847), + [anon_sym_o_GT_GT] = ACTIONS(1847), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1847), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1847), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1847), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1847), [anon_sym_POUND] = ACTIONS(245), }, - [1579] = { - [sym_cell_path] = STATE(2124), - [sym_path] = STATE(1450), - [sym_comment] = STATE(1579), - [aux_sym_cell_path_repeat1] = STATE(1340), - [sym__newline] = ACTIONS(1961), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_err_GT_PIPE] = ACTIONS(1961), - [anon_sym_out_GT_PIPE] = ACTIONS(1961), - [anon_sym_e_GT_PIPE] = ACTIONS(1961), - [anon_sym_o_GT_PIPE] = ACTIONS(1961), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1961), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1961), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1961), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(1961), - [anon_sym_GT2] = ACTIONS(1959), - [anon_sym_DASH2] = ACTIONS(1961), - [anon_sym_in2] = ACTIONS(1961), - [anon_sym_LBRACE] = ACTIONS(1961), - [anon_sym_RBRACE] = ACTIONS(1961), - [anon_sym_EQ_GT] = ACTIONS(1961), - [anon_sym_STAR2] = ACTIONS(1959), - [anon_sym_and2] = ACTIONS(1961), - [anon_sym_xor2] = ACTIONS(1961), - [anon_sym_or2] = ACTIONS(1961), - [anon_sym_not_DASHin2] = ACTIONS(1961), - [anon_sym_has2] = ACTIONS(1961), - [anon_sym_not_DASHhas2] = ACTIONS(1961), - [anon_sym_starts_DASHwith2] = ACTIONS(1961), - [anon_sym_ends_DASHwith2] = ACTIONS(1961), - [anon_sym_EQ_EQ2] = ACTIONS(1961), - [anon_sym_BANG_EQ2] = ACTIONS(1961), - [anon_sym_LT2] = ACTIONS(1959), - [anon_sym_LT_EQ2] = ACTIONS(1961), - [anon_sym_GT_EQ2] = ACTIONS(1961), - [anon_sym_EQ_TILDE2] = ACTIONS(1961), - [anon_sym_BANG_TILDE2] = ACTIONS(1961), - [anon_sym_STAR_STAR2] = ACTIONS(1961), - [anon_sym_PLUS_PLUS2] = ACTIONS(1961), - [anon_sym_SLASH2] = ACTIONS(1959), - [anon_sym_mod2] = ACTIONS(1961), - [anon_sym_SLASH_SLASH2] = ACTIONS(1961), - [anon_sym_PLUS2] = ACTIONS(1959), - [anon_sym_bit_DASHshl2] = ACTIONS(1961), - [anon_sym_bit_DASHshr2] = ACTIONS(1961), - [anon_sym_bit_DASHand2] = ACTIONS(1961), - [anon_sym_bit_DASHxor2] = ACTIONS(1961), - [anon_sym_bit_DASHor2] = ACTIONS(1961), - [anon_sym_DOT2] = ACTIONS(4772), - [anon_sym_err_GT] = ACTIONS(1959), - [anon_sym_out_GT] = ACTIONS(1959), - [anon_sym_e_GT] = ACTIONS(1959), - [anon_sym_o_GT] = ACTIONS(1959), - [anon_sym_err_PLUSout_GT] = ACTIONS(1959), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1959), - [anon_sym_o_PLUSe_GT] = ACTIONS(1959), - [anon_sym_e_PLUSo_GT] = ACTIONS(1959), - [anon_sym_err_GT_GT] = ACTIONS(1961), - [anon_sym_out_GT_GT] = ACTIONS(1961), - [anon_sym_e_GT_GT] = ACTIONS(1961), - [anon_sym_o_GT_GT] = ACTIONS(1961), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1961), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1961), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1961), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1961), + [1501] = { + [sym_cell_path] = STATE(1904), + [sym_path] = STATE(1374), + [sym_comment] = STATE(1501), + [aux_sym_cell_path_repeat1] = STATE(1284), + [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_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_has2] = ACTIONS(1917), + [anon_sym_not_DASHhas2] = 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_DOT2] = ACTIONS(4722), + [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(245), }, - [1580] = { - [sym_comment] = STATE(1580), - [ts_builtin_sym_end] = ACTIONS(1668), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_DOT_DOT] = ACTIONS(1666), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_DOT] = ACTIONS(4851), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT] = ACTIONS(1668), - [aux_sym__immediate_decimal_token2] = ACTIONS(4853), - [anon_sym_null] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1668), - [aux_sym__val_number_token5] = ACTIONS(1668), - [aux_sym__val_number_token6] = ACTIONS(1668), - [anon_sym_0b] = ACTIONS(1666), - [anon_sym_0o] = ACTIONS(1666), - [anon_sym_0x] = ACTIONS(1666), - [sym_val_date] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_err_GT] = ACTIONS(1666), - [anon_sym_out_GT] = ACTIONS(1666), - [anon_sym_e_GT] = ACTIONS(1666), - [anon_sym_o_GT] = ACTIONS(1666), - [anon_sym_err_PLUSout_GT] = ACTIONS(1666), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), - [anon_sym_o_PLUSe_GT] = ACTIONS(1666), - [anon_sym_e_PLUSo_GT] = ACTIONS(1666), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [aux_sym_unquoted_token1] = ACTIONS(1666), - [aux_sym_unquoted_token2] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), + [1502] = { + [sym_cell_path] = STATE(1962), + [sym_path] = STATE(1723), + [sym_comment] = STATE(1502), + [aux_sym_cell_path_repeat1] = STATE(1578), + [ts_builtin_sym_end] = ACTIONS(1835), + [sym__newline] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1835), + [anon_sym_err_GT_PIPE] = ACTIONS(1835), + [anon_sym_out_GT_PIPE] = ACTIONS(1835), + [anon_sym_e_GT_PIPE] = ACTIONS(1835), + [anon_sym_o_GT_PIPE] = ACTIONS(1835), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1835), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1835), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1835), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1835), + [anon_sym_DOLLAR] = ACTIONS(1833), + [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_DASH2] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1833), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1835), + [anon_sym_DOT_DOT_LT] = ACTIONS(1835), + [anon_sym_null] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(1835), + [anon_sym_false] = ACTIONS(1835), + [aux_sym__val_number_decimal_token1] = ACTIONS(1833), + [aux_sym__val_number_decimal_token2] = ACTIONS(1835), + [aux_sym__val_number_decimal_token3] = ACTIONS(1835), + [aux_sym__val_number_decimal_token4] = ACTIONS(1835), + [aux_sym__val_number_token1] = ACTIONS(1835), + [aux_sym__val_number_token2] = ACTIONS(1835), + [aux_sym__val_number_token3] = ACTIONS(1835), + [aux_sym__val_number_token4] = ACTIONS(1835), + [aux_sym__val_number_token5] = ACTIONS(1835), + [aux_sym__val_number_token6] = ACTIONS(1835), + [anon_sym_0b] = ACTIONS(1833), + [anon_sym_0o] = ACTIONS(1833), + [anon_sym_0x] = ACTIONS(1833), + [sym_val_date] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(1835), + [sym__str_single_quotes] = ACTIONS(1835), + [sym__str_back_ticks] = ACTIONS(1835), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1835), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1835), + [anon_sym_DOT2] = ACTIONS(4760), + [anon_sym_err_GT] = ACTIONS(1833), + [anon_sym_out_GT] = ACTIONS(1833), + [anon_sym_e_GT] = ACTIONS(1833), + [anon_sym_o_GT] = ACTIONS(1833), + [anon_sym_err_PLUSout_GT] = ACTIONS(1833), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1833), + [anon_sym_o_PLUSe_GT] = ACTIONS(1833), + [anon_sym_e_PLUSo_GT] = ACTIONS(1833), + [anon_sym_err_GT_GT] = ACTIONS(1835), + [anon_sym_out_GT_GT] = ACTIONS(1835), + [anon_sym_e_GT_GT] = ACTIONS(1835), + [anon_sym_o_GT_GT] = ACTIONS(1835), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1835), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1835), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1835), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1835), + [aux_sym_unquoted_token1] = ACTIONS(1833), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1835), }, - [1581] = { - [sym_comment] = STATE(1581), - [sym__newline] = ACTIONS(1969), - [anon_sym_SEMI] = ACTIONS(1969), - [anon_sym_PIPE] = ACTIONS(1969), - [anon_sym_err_GT_PIPE] = ACTIONS(1969), - [anon_sym_out_GT_PIPE] = ACTIONS(1969), - [anon_sym_e_GT_PIPE] = ACTIONS(1969), - [anon_sym_o_GT_PIPE] = ACTIONS(1969), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1969), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1969), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1969), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1969), - [anon_sym_RPAREN] = ACTIONS(1969), - [anon_sym_GT2] = ACTIONS(1967), - [anon_sym_DASH2] = ACTIONS(1969), - [anon_sym_in2] = ACTIONS(1969), - [anon_sym_if] = ACTIONS(1969), - [anon_sym_LBRACE] = ACTIONS(1969), - [anon_sym_RBRACE] = ACTIONS(1969), - [anon_sym_EQ_GT] = ACTIONS(1969), - [anon_sym_STAR2] = ACTIONS(1967), - [anon_sym_and2] = ACTIONS(1969), - [anon_sym_xor2] = ACTIONS(1969), - [anon_sym_or2] = ACTIONS(1969), - [anon_sym_not_DASHin2] = ACTIONS(1969), - [anon_sym_has2] = ACTIONS(1969), - [anon_sym_not_DASHhas2] = ACTIONS(1969), - [anon_sym_starts_DASHwith2] = ACTIONS(1969), - [anon_sym_ends_DASHwith2] = ACTIONS(1969), - [anon_sym_EQ_EQ2] = ACTIONS(1969), - [anon_sym_BANG_EQ2] = ACTIONS(1969), - [anon_sym_LT2] = ACTIONS(1967), - [anon_sym_LT_EQ2] = ACTIONS(1969), - [anon_sym_GT_EQ2] = ACTIONS(1969), - [anon_sym_EQ_TILDE2] = ACTIONS(1969), - [anon_sym_BANG_TILDE2] = ACTIONS(1969), - [anon_sym_STAR_STAR2] = ACTIONS(1969), - [anon_sym_PLUS_PLUS2] = ACTIONS(1969), - [anon_sym_SLASH2] = ACTIONS(1967), - [anon_sym_mod2] = ACTIONS(1969), - [anon_sym_SLASH_SLASH2] = ACTIONS(1969), - [anon_sym_PLUS2] = ACTIONS(1967), - [anon_sym_bit_DASHshl2] = ACTIONS(1969), - [anon_sym_bit_DASHshr2] = ACTIONS(1969), - [anon_sym_bit_DASHand2] = ACTIONS(1969), - [anon_sym_bit_DASHxor2] = ACTIONS(1969), - [anon_sym_bit_DASHor2] = ACTIONS(1969), - [anon_sym_DOT_DOT2] = ACTIONS(1967), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1969), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1969), - [anon_sym_err_GT] = ACTIONS(1967), - [anon_sym_out_GT] = ACTIONS(1967), - [anon_sym_e_GT] = ACTIONS(1967), - [anon_sym_o_GT] = ACTIONS(1967), - [anon_sym_err_PLUSout_GT] = ACTIONS(1967), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1967), - [anon_sym_o_PLUSe_GT] = ACTIONS(1967), - [anon_sym_e_PLUSo_GT] = ACTIONS(1967), - [anon_sym_err_GT_GT] = ACTIONS(1969), - [anon_sym_out_GT_GT] = ACTIONS(1969), - [anon_sym_e_GT_GT] = ACTIONS(1969), - [anon_sym_o_GT_GT] = ACTIONS(1969), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1969), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1969), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1969), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1969), + [1503] = { + [sym_cell_path] = STATE(2004), + [sym_path] = STATE(1692), + [sym_comment] = STATE(1503), + [aux_sym_cell_path_repeat1] = STATE(1530), + [ts_builtin_sym_end] = ACTIONS(1676), + [sym__newline] = ACTIONS(1676), + [anon_sym_SEMI] = ACTIONS(1676), + [anon_sym_PIPE] = ACTIONS(1676), + [anon_sym_err_GT_PIPE] = ACTIONS(1676), + [anon_sym_out_GT_PIPE] = ACTIONS(1676), + [anon_sym_e_GT_PIPE] = ACTIONS(1676), + [anon_sym_o_GT_PIPE] = ACTIONS(1676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1676), + [anon_sym_GT2] = ACTIONS(1674), + [anon_sym_DASH2] = ACTIONS(1676), + [anon_sym_in2] = ACTIONS(1676), + [anon_sym_STAR2] = ACTIONS(1674), + [anon_sym_and2] = ACTIONS(1676), + [anon_sym_xor2] = ACTIONS(1676), + [anon_sym_or2] = ACTIONS(1676), + [anon_sym_not_DASHin2] = ACTIONS(1676), + [anon_sym_has2] = ACTIONS(1676), + [anon_sym_not_DASHhas2] = ACTIONS(1676), + [anon_sym_starts_DASHwith2] = ACTIONS(1676), + [anon_sym_ends_DASHwith2] = ACTIONS(1676), + [anon_sym_EQ_EQ2] = ACTIONS(1676), + [anon_sym_BANG_EQ2] = ACTIONS(1676), + [anon_sym_LT2] = ACTIONS(1674), + [anon_sym_LT_EQ2] = ACTIONS(1676), + [anon_sym_GT_EQ2] = ACTIONS(1676), + [anon_sym_EQ_TILDE2] = ACTIONS(1676), + [anon_sym_BANG_TILDE2] = ACTIONS(1676), + [anon_sym_STAR_STAR2] = ACTIONS(1676), + [anon_sym_PLUS_PLUS2] = ACTIONS(1676), + [anon_sym_SLASH2] = ACTIONS(1674), + [anon_sym_mod2] = ACTIONS(1676), + [anon_sym_SLASH_SLASH2] = ACTIONS(1676), + [anon_sym_PLUS2] = ACTIONS(1674), + [anon_sym_bit_DASHshl2] = ACTIONS(1676), + [anon_sym_bit_DASHshr2] = ACTIONS(1676), + [anon_sym_bit_DASHand2] = ACTIONS(1676), + [anon_sym_bit_DASHxor2] = ACTIONS(1676), + [anon_sym_bit_DASHor2] = ACTIONS(1676), + [anon_sym_DOT_DOT2] = ACTIONS(1674), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1676), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1676), + [anon_sym_DOT2] = ACTIONS(4792), + [anon_sym_err_GT] = ACTIONS(1674), + [anon_sym_out_GT] = ACTIONS(1674), + [anon_sym_e_GT] = ACTIONS(1674), + [anon_sym_o_GT] = ACTIONS(1674), + [anon_sym_err_PLUSout_GT] = ACTIONS(1674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1674), + [anon_sym_o_PLUSe_GT] = ACTIONS(1674), + [anon_sym_e_PLUSo_GT] = ACTIONS(1674), + [anon_sym_err_GT_GT] = ACTIONS(1676), + [anon_sym_out_GT_GT] = ACTIONS(1676), + [anon_sym_e_GT_GT] = ACTIONS(1676), + [anon_sym_o_GT_GT] = ACTIONS(1676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1676), [anon_sym_POUND] = ACTIONS(245), }, - [1582] = { - [sym_comment] = STATE(1582), + [1504] = { + [sym_comment] = STATE(1504), [ts_builtin_sym_end] = ACTIONS(972), [sym__newline] = ACTIONS(972), [anon_sym_SEMI] = ACTIONS(972), @@ -223227,1316 +215133,2334 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(972), }, - [1583] = { - [sym_comment] = STATE(1583), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), - [anon_sym_DOT_DOT_LT] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [anon_sym_null] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1713), - [aux_sym__val_number_token5] = ACTIONS(1713), - [aux_sym__val_number_token6] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1713), + [1505] = { + [sym_comment] = STATE(1505), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_GT2] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1703), + [anon_sym_in2] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_STAR2] = ACTIONS(1701), + [anon_sym_and2] = ACTIONS(1703), + [anon_sym_xor2] = ACTIONS(1703), + [anon_sym_or2] = ACTIONS(1703), + [anon_sym_not_DASHin2] = ACTIONS(1703), + [anon_sym_has2] = ACTIONS(1703), + [anon_sym_not_DASHhas2] = ACTIONS(1703), + [anon_sym_starts_DASHwith2] = ACTIONS(1703), + [anon_sym_ends_DASHwith2] = ACTIONS(1703), + [anon_sym_EQ_EQ2] = ACTIONS(1703), + [anon_sym_BANG_EQ2] = ACTIONS(1703), + [anon_sym_LT2] = ACTIONS(1701), + [anon_sym_LT_EQ2] = ACTIONS(1703), + [anon_sym_GT_EQ2] = ACTIONS(1703), + [anon_sym_EQ_TILDE2] = ACTIONS(1703), + [anon_sym_BANG_TILDE2] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_STAR_STAR2] = ACTIONS(1703), + [anon_sym_PLUS_PLUS2] = ACTIONS(1703), + [anon_sym_SLASH2] = ACTIONS(1701), + [anon_sym_mod2] = ACTIONS(1703), + [anon_sym_SLASH_SLASH2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_bit_DASHshl2] = ACTIONS(1703), + [anon_sym_bit_DASHshr2] = ACTIONS(1703), + [anon_sym_bit_DASHand2] = ACTIONS(1703), + [anon_sym_bit_DASHxor2] = ACTIONS(1703), + [anon_sym_bit_DASHor2] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), }, - [1584] = { - [sym_comment] = STATE(1584), - [ts_builtin_sym_end] = ACTIONS(1668), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_GT2] = ACTIONS(1666), - [anon_sym_DASH2] = ACTIONS(1668), - [anon_sym_in2] = ACTIONS(1668), - [anon_sym_STAR2] = ACTIONS(1666), - [anon_sym_and2] = ACTIONS(1668), - [anon_sym_xor2] = ACTIONS(1668), - [anon_sym_or2] = ACTIONS(1668), - [anon_sym_not_DASHin2] = ACTIONS(1668), - [anon_sym_has2] = ACTIONS(1668), - [anon_sym_not_DASHhas2] = ACTIONS(1668), - [anon_sym_starts_DASHwith2] = ACTIONS(1668), - [anon_sym_ends_DASHwith2] = ACTIONS(1668), - [anon_sym_EQ_EQ2] = ACTIONS(1668), - [anon_sym_BANG_EQ2] = ACTIONS(1668), - [anon_sym_LT2] = ACTIONS(1666), - [anon_sym_LT_EQ2] = ACTIONS(1668), - [anon_sym_GT_EQ2] = ACTIONS(1668), - [anon_sym_EQ_TILDE2] = ACTIONS(1668), - [anon_sym_BANG_TILDE2] = ACTIONS(1668), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_STAR_STAR2] = ACTIONS(1668), - [anon_sym_PLUS_PLUS2] = ACTIONS(1668), - [anon_sym_SLASH2] = ACTIONS(1666), - [anon_sym_mod2] = ACTIONS(1668), - [anon_sym_SLASH_SLASH2] = ACTIONS(1668), - [anon_sym_PLUS2] = ACTIONS(1666), - [anon_sym_bit_DASHshl2] = ACTIONS(1668), - [anon_sym_bit_DASHshr2] = ACTIONS(1668), - [anon_sym_bit_DASHand2] = ACTIONS(1668), - [anon_sym_bit_DASHxor2] = ACTIONS(1668), - [anon_sym_bit_DASHor2] = ACTIONS(1668), - [anon_sym_DOT_DOT2] = ACTIONS(1666), - [anon_sym_DOT] = ACTIONS(4855), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [aux_sym__immediate_decimal_token2] = ACTIONS(4857), - [anon_sym_err_GT] = ACTIONS(1666), - [anon_sym_out_GT] = ACTIONS(1666), - [anon_sym_e_GT] = ACTIONS(1666), - [anon_sym_o_GT] = ACTIONS(1666), - [anon_sym_err_PLUSout_GT] = ACTIONS(1666), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), - [anon_sym_o_PLUSe_GT] = ACTIONS(1666), - [anon_sym_e_PLUSo_GT] = ACTIONS(1666), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [aux_sym_unquoted_token2] = ACTIONS(1666), + [1506] = { + [sym_cell_path] = STATE(1963), + [sym_path] = STATE(1723), + [sym_comment] = STATE(1506), + [aux_sym_cell_path_repeat1] = STATE(1578), + [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_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_DOT2] = ACTIONS(4760), + [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(245), + [sym_raw_string_begin] = ACTIONS(1881), }, - [1585] = { - [sym_comment] = STATE(1585), - [ts_builtin_sym_end] = ACTIONS(1494), - [sym__newline] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_PIPE] = ACTIONS(1494), - [anon_sym_err_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_GT_PIPE] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1494), - [anon_sym_GT2] = ACTIONS(1492), - [anon_sym_DASH2] = ACTIONS(1494), - [anon_sym_in2] = ACTIONS(1494), - [anon_sym_STAR2] = ACTIONS(1492), - [anon_sym_and2] = ACTIONS(1494), - [anon_sym_xor2] = ACTIONS(1494), - [anon_sym_or2] = ACTIONS(1494), - [anon_sym_not_DASHin2] = ACTIONS(1494), - [anon_sym_has2] = ACTIONS(1494), - [anon_sym_not_DASHhas2] = ACTIONS(1494), - [anon_sym_starts_DASHwith2] = ACTIONS(1494), - [anon_sym_ends_DASHwith2] = ACTIONS(1494), - [anon_sym_EQ_EQ2] = ACTIONS(1494), - [anon_sym_BANG_EQ2] = ACTIONS(1494), - [anon_sym_LT2] = ACTIONS(1492), - [anon_sym_LT_EQ2] = ACTIONS(1494), - [anon_sym_GT_EQ2] = ACTIONS(1494), - [anon_sym_EQ_TILDE2] = ACTIONS(1494), - [anon_sym_BANG_TILDE2] = ACTIONS(1494), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_STAR_STAR2] = ACTIONS(1494), - [anon_sym_PLUS_PLUS2] = ACTIONS(1494), - [anon_sym_SLASH2] = ACTIONS(1492), - [anon_sym_mod2] = ACTIONS(1494), - [anon_sym_SLASH_SLASH2] = ACTIONS(1494), - [anon_sym_PLUS2] = ACTIONS(1492), - [anon_sym_bit_DASHshl2] = ACTIONS(1494), - [anon_sym_bit_DASHshr2] = ACTIONS(1494), - [anon_sym_bit_DASHand2] = ACTIONS(1494), - [anon_sym_bit_DASHxor2] = ACTIONS(1494), - [anon_sym_bit_DASHor2] = ACTIONS(1494), - [anon_sym_DOT_DOT2] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), - [sym_filesize_unit] = ACTIONS(1492), - [sym_duration_unit] = ACTIONS(1494), - [anon_sym_err_GT] = ACTIONS(1492), - [anon_sym_out_GT] = ACTIONS(1492), - [anon_sym_e_GT] = ACTIONS(1492), - [anon_sym_o_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT] = ACTIONS(1492), - [anon_sym_err_GT_GT] = ACTIONS(1494), - [anon_sym_out_GT_GT] = ACTIONS(1494), - [anon_sym_e_GT_GT] = ACTIONS(1494), - [anon_sym_o_GT_GT] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1494), - [aux_sym_unquoted_token2] = ACTIONS(1492), + [1507] = { + [sym_cell_path] = STATE(1957), + [sym_path] = STATE(1692), + [sym_comment] = STATE(1507), + [aux_sym_cell_path_repeat1] = STATE(1530), + [ts_builtin_sym_end] = ACTIONS(1670), + [sym__newline] = ACTIONS(1670), + [anon_sym_SEMI] = ACTIONS(1670), + [anon_sym_PIPE] = ACTIONS(1670), + [anon_sym_err_GT_PIPE] = ACTIONS(1670), + [anon_sym_out_GT_PIPE] = ACTIONS(1670), + [anon_sym_e_GT_PIPE] = ACTIONS(1670), + [anon_sym_o_GT_PIPE] = ACTIONS(1670), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1670), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1670), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1670), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1670), + [anon_sym_GT2] = ACTIONS(1668), + [anon_sym_DASH2] = ACTIONS(1670), + [anon_sym_in2] = ACTIONS(1670), + [anon_sym_STAR2] = ACTIONS(1668), + [anon_sym_and2] = ACTIONS(1670), + [anon_sym_xor2] = ACTIONS(1670), + [anon_sym_or2] = ACTIONS(1670), + [anon_sym_not_DASHin2] = ACTIONS(1670), + [anon_sym_has2] = ACTIONS(1670), + [anon_sym_not_DASHhas2] = ACTIONS(1670), + [anon_sym_starts_DASHwith2] = ACTIONS(1670), + [anon_sym_ends_DASHwith2] = ACTIONS(1670), + [anon_sym_EQ_EQ2] = ACTIONS(1670), + [anon_sym_BANG_EQ2] = ACTIONS(1670), + [anon_sym_LT2] = ACTIONS(1668), + [anon_sym_LT_EQ2] = ACTIONS(1670), + [anon_sym_GT_EQ2] = ACTIONS(1670), + [anon_sym_EQ_TILDE2] = ACTIONS(1670), + [anon_sym_BANG_TILDE2] = ACTIONS(1670), + [anon_sym_STAR_STAR2] = ACTIONS(1670), + [anon_sym_PLUS_PLUS2] = ACTIONS(1670), + [anon_sym_SLASH2] = ACTIONS(1668), + [anon_sym_mod2] = ACTIONS(1670), + [anon_sym_SLASH_SLASH2] = ACTIONS(1670), + [anon_sym_PLUS2] = ACTIONS(1668), + [anon_sym_bit_DASHshl2] = ACTIONS(1670), + [anon_sym_bit_DASHshr2] = ACTIONS(1670), + [anon_sym_bit_DASHand2] = ACTIONS(1670), + [anon_sym_bit_DASHxor2] = ACTIONS(1670), + [anon_sym_bit_DASHor2] = ACTIONS(1670), + [anon_sym_DOT_DOT2] = ACTIONS(1668), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1670), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1670), + [anon_sym_DOT2] = ACTIONS(4792), + [anon_sym_err_GT] = ACTIONS(1668), + [anon_sym_out_GT] = ACTIONS(1668), + [anon_sym_e_GT] = ACTIONS(1668), + [anon_sym_o_GT] = ACTIONS(1668), + [anon_sym_err_PLUSout_GT] = ACTIONS(1668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1668), + [anon_sym_o_PLUSe_GT] = ACTIONS(1668), + [anon_sym_e_PLUSo_GT] = ACTIONS(1668), + [anon_sym_err_GT_GT] = ACTIONS(1670), + [anon_sym_out_GT_GT] = ACTIONS(1670), + [anon_sym_e_GT_GT] = ACTIONS(1670), + [anon_sym_o_GT_GT] = ACTIONS(1670), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1670), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1670), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1670), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1670), [anon_sym_POUND] = ACTIONS(245), }, - [1586] = { - [sym_cell_path] = STATE(2122), - [sym_path] = STATE(1858), - [sym_comment] = STATE(1586), - [aux_sym_cell_path_repeat1] = STATE(1628), - [ts_builtin_sym_end] = ACTIONS(927), - [sym__newline] = ACTIONS(927), - [anon_sym_SEMI] = ACTIONS(927), - [anon_sym_PIPE] = ACTIONS(927), - [anon_sym_err_GT_PIPE] = ACTIONS(927), - [anon_sym_out_GT_PIPE] = ACTIONS(927), - [anon_sym_e_GT_PIPE] = ACTIONS(927), - [anon_sym_o_GT_PIPE] = ACTIONS(927), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(927), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(927), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(927), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(927), - [anon_sym_GT2] = ACTIONS(925), - [anon_sym_DASH2] = ACTIONS(927), - [anon_sym_in2] = ACTIONS(927), - [anon_sym_STAR2] = ACTIONS(925), - [anon_sym_and2] = ACTIONS(927), - [anon_sym_xor2] = ACTIONS(927), - [anon_sym_or2] = ACTIONS(927), - [anon_sym_not_DASHin2] = ACTIONS(927), - [anon_sym_has2] = ACTIONS(927), - [anon_sym_not_DASHhas2] = ACTIONS(927), - [anon_sym_starts_DASHwith2] = ACTIONS(927), - [anon_sym_ends_DASHwith2] = ACTIONS(927), - [anon_sym_EQ_EQ2] = ACTIONS(927), - [anon_sym_BANG_EQ2] = ACTIONS(927), - [anon_sym_LT2] = ACTIONS(925), - [anon_sym_LT_EQ2] = ACTIONS(927), - [anon_sym_GT_EQ2] = ACTIONS(927), - [anon_sym_EQ_TILDE2] = ACTIONS(927), - [anon_sym_BANG_TILDE2] = ACTIONS(927), - [anon_sym_STAR_STAR2] = ACTIONS(927), - [anon_sym_PLUS_PLUS2] = ACTIONS(927), - [anon_sym_SLASH2] = ACTIONS(925), - [anon_sym_mod2] = ACTIONS(927), - [anon_sym_SLASH_SLASH2] = ACTIONS(927), - [anon_sym_PLUS2] = ACTIONS(925), - [anon_sym_bit_DASHshl2] = ACTIONS(927), - [anon_sym_bit_DASHshr2] = ACTIONS(927), - [anon_sym_bit_DASHand2] = ACTIONS(927), - [anon_sym_bit_DASHxor2] = ACTIONS(927), - [anon_sym_bit_DASHor2] = ACTIONS(927), - [anon_sym_DOT_DOT2] = ACTIONS(925), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(927), - [anon_sym_DOT_DOT_LT2] = ACTIONS(927), - [anon_sym_DOT2] = ACTIONS(4835), - [anon_sym_err_GT] = ACTIONS(925), - [anon_sym_out_GT] = ACTIONS(925), - [anon_sym_e_GT] = ACTIONS(925), - [anon_sym_o_GT] = ACTIONS(925), - [anon_sym_err_PLUSout_GT] = ACTIONS(925), - [anon_sym_out_PLUSerr_GT] = ACTIONS(925), - [anon_sym_o_PLUSe_GT] = ACTIONS(925), - [anon_sym_e_PLUSo_GT] = ACTIONS(925), - [anon_sym_err_GT_GT] = ACTIONS(927), - [anon_sym_out_GT_GT] = ACTIONS(927), - [anon_sym_e_GT_GT] = ACTIONS(927), - [anon_sym_o_GT_GT] = ACTIONS(927), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(927), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(927), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(927), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(927), + [1508] = { + [sym_comment] = STATE(1508), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1760), + [anon_sym_DOT_DOT_LT] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1762), + [aux_sym__val_number_token5] = ACTIONS(1762), + [aux_sym__val_number_token6] = ACTIONS(1762), + [anon_sym_0b] = ACTIONS(1760), + [anon_sym_0o] = ACTIONS(1760), + [anon_sym_0x] = ACTIONS(1760), + [sym_val_date] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token1] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1762), + }, + [1509] = { + [sym_cell_path] = STATE(1902), + [sym_path] = STATE(1723), + [sym_comment] = STATE(1509), + [aux_sym_cell_path_repeat1] = STATE(1578), + [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_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_DOT2] = ACTIONS(4760), + [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(245), + [sym_raw_string_begin] = ACTIONS(1885), }, - [1587] = { - [sym_comment] = STATE(1587), - [sym__newline] = ACTIONS(2039), - [anon_sym_SEMI] = ACTIONS(2039), - [anon_sym_PIPE] = ACTIONS(2039), - [anon_sym_err_GT_PIPE] = ACTIONS(2039), - [anon_sym_out_GT_PIPE] = ACTIONS(2039), - [anon_sym_e_GT_PIPE] = ACTIONS(2039), - [anon_sym_o_GT_PIPE] = ACTIONS(2039), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2039), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2039), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2039), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2039), - [anon_sym_LBRACK] = ACTIONS(2039), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_RPAREN] = ACTIONS(2039), - [anon_sym_DOLLAR] = ACTIONS(2033), - [anon_sym_DASH_DASH] = ACTIONS(2039), - [anon_sym_DASH2] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(2039), - [anon_sym_RBRACE] = ACTIONS(2039), - [anon_sym_DOT_DOT] = ACTIONS(2033), - [anon_sym_DOT_DOT2] = ACTIONS(4859), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2033), - [anon_sym_DOT_DOT_LT] = ACTIONS(2033), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4861), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4861), - [anon_sym_null] = ACTIONS(2039), - [anon_sym_true] = ACTIONS(2039), - [anon_sym_false] = ACTIONS(2039), - [aux_sym__val_number_decimal_token1] = ACTIONS(2033), - [aux_sym__val_number_decimal_token2] = ACTIONS(2039), - [aux_sym__val_number_decimal_token3] = ACTIONS(2039), - [aux_sym__val_number_decimal_token4] = ACTIONS(2039), - [aux_sym__val_number_token1] = ACTIONS(2039), - [aux_sym__val_number_token2] = ACTIONS(2039), - [aux_sym__val_number_token3] = ACTIONS(2039), - [aux_sym__val_number_token4] = ACTIONS(2039), - [aux_sym__val_number_token5] = ACTIONS(2039), - [aux_sym__val_number_token6] = ACTIONS(2039), - [anon_sym_0b] = ACTIONS(2033), - [anon_sym_0o] = ACTIONS(2033), - [anon_sym_0x] = ACTIONS(2033), - [sym_val_date] = ACTIONS(2039), - [anon_sym_DQUOTE] = ACTIONS(2039), - [sym__str_single_quotes] = ACTIONS(2039), - [sym__str_back_ticks] = ACTIONS(2039), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2039), - [anon_sym_err_GT] = ACTIONS(2033), - [anon_sym_out_GT] = ACTIONS(2033), - [anon_sym_e_GT] = ACTIONS(2033), - [anon_sym_o_GT] = ACTIONS(2033), - [anon_sym_err_PLUSout_GT] = ACTIONS(2033), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2033), - [anon_sym_o_PLUSe_GT] = ACTIONS(2033), - [anon_sym_e_PLUSo_GT] = ACTIONS(2033), - [anon_sym_err_GT_GT] = ACTIONS(2039), - [anon_sym_out_GT_GT] = ACTIONS(2039), - [anon_sym_e_GT_GT] = ACTIONS(2039), - [anon_sym_o_GT_GT] = ACTIONS(2039), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2039), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2039), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2039), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2039), - [aux_sym_unquoted_token1] = ACTIONS(2033), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2039), + [1510] = { + [sym_comment] = STATE(1510), + [sym__newline] = ACTIONS(1989), + [anon_sym_SEMI] = ACTIONS(1989), + [anon_sym_PIPE] = ACTIONS(1989), + [anon_sym_err_GT_PIPE] = ACTIONS(1989), + [anon_sym_out_GT_PIPE] = ACTIONS(1989), + [anon_sym_e_GT_PIPE] = ACTIONS(1989), + [anon_sym_o_GT_PIPE] = ACTIONS(1989), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1989), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1989), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1989), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1989), + [anon_sym_RPAREN] = ACTIONS(1989), + [anon_sym_GT2] = ACTIONS(1987), + [anon_sym_DASH2] = ACTIONS(1989), + [anon_sym_in2] = ACTIONS(1989), + [anon_sym_if] = ACTIONS(1989), + [anon_sym_LBRACE] = ACTIONS(1989), + [anon_sym_RBRACE] = ACTIONS(1989), + [anon_sym_EQ_GT] = ACTIONS(1989), + [anon_sym_STAR2] = ACTIONS(1987), + [anon_sym_and2] = ACTIONS(1989), + [anon_sym_xor2] = ACTIONS(1989), + [anon_sym_or2] = ACTIONS(1989), + [anon_sym_not_DASHin2] = ACTIONS(1989), + [anon_sym_has2] = ACTIONS(1989), + [anon_sym_not_DASHhas2] = ACTIONS(1989), + [anon_sym_starts_DASHwith2] = ACTIONS(1989), + [anon_sym_ends_DASHwith2] = ACTIONS(1989), + [anon_sym_EQ_EQ2] = ACTIONS(1989), + [anon_sym_BANG_EQ2] = ACTIONS(1989), + [anon_sym_LT2] = ACTIONS(1987), + [anon_sym_LT_EQ2] = ACTIONS(1989), + [anon_sym_GT_EQ2] = ACTIONS(1989), + [anon_sym_EQ_TILDE2] = ACTIONS(1989), + [anon_sym_BANG_TILDE2] = ACTIONS(1989), + [anon_sym_STAR_STAR2] = ACTIONS(1989), + [anon_sym_PLUS_PLUS2] = ACTIONS(1989), + [anon_sym_SLASH2] = ACTIONS(1987), + [anon_sym_mod2] = ACTIONS(1989), + [anon_sym_SLASH_SLASH2] = ACTIONS(1989), + [anon_sym_PLUS2] = ACTIONS(1987), + [anon_sym_bit_DASHshl2] = ACTIONS(1989), + [anon_sym_bit_DASHshr2] = ACTIONS(1989), + [anon_sym_bit_DASHand2] = ACTIONS(1989), + [anon_sym_bit_DASHxor2] = ACTIONS(1989), + [anon_sym_bit_DASHor2] = ACTIONS(1989), + [anon_sym_DOT_DOT2] = ACTIONS(1987), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1989), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1989), + [anon_sym_err_GT] = ACTIONS(1987), + [anon_sym_out_GT] = ACTIONS(1987), + [anon_sym_e_GT] = ACTIONS(1987), + [anon_sym_o_GT] = ACTIONS(1987), + [anon_sym_err_PLUSout_GT] = ACTIONS(1987), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1987), + [anon_sym_o_PLUSe_GT] = ACTIONS(1987), + [anon_sym_e_PLUSo_GT] = ACTIONS(1987), + [anon_sym_err_GT_GT] = ACTIONS(1989), + [anon_sym_out_GT_GT] = ACTIONS(1989), + [anon_sym_e_GT_GT] = ACTIONS(1989), + [anon_sym_o_GT_GT] = ACTIONS(1989), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1989), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1989), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1989), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1989), + [anon_sym_POUND] = ACTIONS(245), }, - [1588] = { - [sym_comment] = STATE(1588), - [sym__newline] = ACTIONS(1965), - [anon_sym_SEMI] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1965), - [anon_sym_err_GT_PIPE] = ACTIONS(1965), - [anon_sym_out_GT_PIPE] = ACTIONS(1965), - [anon_sym_e_GT_PIPE] = ACTIONS(1965), - [anon_sym_o_GT_PIPE] = ACTIONS(1965), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1965), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1965), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1965), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1965), - [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_RPAREN] = ACTIONS(1965), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_DASH_DASH] = ACTIONS(1965), - [anon_sym_DASH2] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_RBRACE] = ACTIONS(1965), - [anon_sym_DOT_DOT] = ACTIONS(1963), - [anon_sym_DOT_DOT2] = ACTIONS(1963), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), - [anon_sym_DOT_DOT_LT] = ACTIONS(1963), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1965), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1965), - [anon_sym_null] = ACTIONS(1965), - [anon_sym_true] = ACTIONS(1965), - [anon_sym_false] = ACTIONS(1965), - [aux_sym__val_number_decimal_token1] = ACTIONS(1963), - [aux_sym__val_number_decimal_token2] = ACTIONS(1965), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), - [aux_sym__val_number_token1] = ACTIONS(1965), - [aux_sym__val_number_token2] = ACTIONS(1965), - [aux_sym__val_number_token3] = ACTIONS(1965), - [aux_sym__val_number_token4] = ACTIONS(1965), - [aux_sym__val_number_token5] = ACTIONS(1965), - [aux_sym__val_number_token6] = ACTIONS(1965), - [anon_sym_0b] = ACTIONS(1963), - [anon_sym_0o] = ACTIONS(1963), - [anon_sym_0x] = ACTIONS(1963), - [sym_val_date] = ACTIONS(1965), - [anon_sym_DQUOTE] = ACTIONS(1965), - [sym__str_single_quotes] = ACTIONS(1965), - [sym__str_back_ticks] = ACTIONS(1965), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1965), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1965), - [anon_sym_err_GT] = ACTIONS(1963), - [anon_sym_out_GT] = ACTIONS(1963), - [anon_sym_e_GT] = ACTIONS(1963), - [anon_sym_o_GT] = ACTIONS(1963), - [anon_sym_err_PLUSout_GT] = ACTIONS(1963), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1963), - [anon_sym_o_PLUSe_GT] = ACTIONS(1963), - [anon_sym_e_PLUSo_GT] = ACTIONS(1963), - [anon_sym_err_GT_GT] = ACTIONS(1965), - [anon_sym_out_GT_GT] = ACTIONS(1965), - [anon_sym_e_GT_GT] = ACTIONS(1965), - [anon_sym_o_GT_GT] = ACTIONS(1965), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1965), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1965), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1965), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1965), - [aux_sym_unquoted_token1] = ACTIONS(1963), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1965), + [1511] = { + [sym_comment] = STATE(1511), + [sym__newline] = ACTIONS(1989), + [anon_sym_SEMI] = ACTIONS(1989), + [anon_sym_PIPE] = ACTIONS(1989), + [anon_sym_err_GT_PIPE] = ACTIONS(1989), + [anon_sym_out_GT_PIPE] = ACTIONS(1989), + [anon_sym_e_GT_PIPE] = ACTIONS(1989), + [anon_sym_o_GT_PIPE] = ACTIONS(1989), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1989), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1989), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1989), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1989), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_RPAREN] = ACTIONS(1989), + [anon_sym_DOLLAR] = ACTIONS(1987), + [anon_sym_DASH_DASH] = ACTIONS(1989), + [anon_sym_DASH2] = ACTIONS(1987), + [anon_sym_LBRACE] = ACTIONS(1989), + [anon_sym_RBRACE] = ACTIONS(1989), + [anon_sym_DOT_DOT] = ACTIONS(1987), + [anon_sym_DOT_DOT2] = ACTIONS(1987), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1987), + [anon_sym_DOT_DOT_LT] = ACTIONS(1987), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1989), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1989), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_true] = ACTIONS(1989), + [anon_sym_false] = ACTIONS(1989), + [aux_sym__val_number_decimal_token1] = ACTIONS(1987), + [aux_sym__val_number_decimal_token2] = ACTIONS(1989), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), + [aux_sym__val_number_token1] = ACTIONS(1989), + [aux_sym__val_number_token2] = ACTIONS(1989), + [aux_sym__val_number_token3] = ACTIONS(1989), + [aux_sym__val_number_token4] = ACTIONS(1989), + [aux_sym__val_number_token5] = ACTIONS(1989), + [aux_sym__val_number_token6] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1987), + [anon_sym_0x] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1989), + [sym__str_single_quotes] = ACTIONS(1989), + [sym__str_back_ticks] = ACTIONS(1989), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1989), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1989), + [anon_sym_err_GT] = ACTIONS(1987), + [anon_sym_out_GT] = ACTIONS(1987), + [anon_sym_e_GT] = ACTIONS(1987), + [anon_sym_o_GT] = ACTIONS(1987), + [anon_sym_err_PLUSout_GT] = ACTIONS(1987), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1987), + [anon_sym_o_PLUSe_GT] = ACTIONS(1987), + [anon_sym_e_PLUSo_GT] = ACTIONS(1987), + [anon_sym_err_GT_GT] = ACTIONS(1989), + [anon_sym_out_GT_GT] = ACTIONS(1989), + [anon_sym_e_GT_GT] = ACTIONS(1989), + [anon_sym_o_GT_GT] = ACTIONS(1989), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1989), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1989), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1989), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1989), + [aux_sym_unquoted_token1] = ACTIONS(1987), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1989), }, - [1589] = { - [sym_comment] = STATE(1589), - [ts_builtin_sym_end] = ACTIONS(1486), - [sym__newline] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1486), - [anon_sym_err_GT_PIPE] = ACTIONS(1486), - [anon_sym_out_GT_PIPE] = ACTIONS(1486), - [anon_sym_e_GT_PIPE] = ACTIONS(1486), - [anon_sym_o_GT_PIPE] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1486), - [anon_sym_GT2] = ACTIONS(1484), - [anon_sym_DASH2] = ACTIONS(1486), - [anon_sym_in2] = ACTIONS(1486), - [anon_sym_STAR2] = ACTIONS(1484), - [anon_sym_and2] = ACTIONS(1486), - [anon_sym_xor2] = ACTIONS(1486), - [anon_sym_or2] = ACTIONS(1486), - [anon_sym_not_DASHin2] = ACTIONS(1486), - [anon_sym_has2] = ACTIONS(1486), - [anon_sym_not_DASHhas2] = ACTIONS(1486), - [anon_sym_starts_DASHwith2] = ACTIONS(1486), - [anon_sym_ends_DASHwith2] = ACTIONS(1486), - [anon_sym_EQ_EQ2] = ACTIONS(1486), - [anon_sym_BANG_EQ2] = ACTIONS(1486), - [anon_sym_LT2] = ACTIONS(1484), - [anon_sym_LT_EQ2] = ACTIONS(1486), - [anon_sym_GT_EQ2] = ACTIONS(1486), - [anon_sym_EQ_TILDE2] = ACTIONS(1486), - [anon_sym_BANG_TILDE2] = ACTIONS(1486), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_STAR_STAR2] = ACTIONS(1486), - [anon_sym_PLUS_PLUS2] = ACTIONS(1486), - [anon_sym_SLASH2] = ACTIONS(1484), - [anon_sym_mod2] = ACTIONS(1486), - [anon_sym_SLASH_SLASH2] = ACTIONS(1486), - [anon_sym_PLUS2] = ACTIONS(1484), - [anon_sym_bit_DASHshl2] = ACTIONS(1486), - [anon_sym_bit_DASHshr2] = ACTIONS(1486), - [anon_sym_bit_DASHand2] = ACTIONS(1486), - [anon_sym_bit_DASHxor2] = ACTIONS(1486), - [anon_sym_bit_DASHor2] = ACTIONS(1486), - [anon_sym_DOT_DOT2] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1486), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1486), - [sym_filesize_unit] = ACTIONS(1484), - [sym_duration_unit] = ACTIONS(1486), - [anon_sym_err_GT] = ACTIONS(1484), - [anon_sym_out_GT] = ACTIONS(1484), - [anon_sym_e_GT] = ACTIONS(1484), - [anon_sym_o_GT] = ACTIONS(1484), - [anon_sym_err_PLUSout_GT] = ACTIONS(1484), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1484), - [anon_sym_o_PLUSe_GT] = ACTIONS(1484), - [anon_sym_e_PLUSo_GT] = ACTIONS(1484), - [anon_sym_err_GT_GT] = ACTIONS(1486), - [anon_sym_out_GT_GT] = ACTIONS(1486), - [anon_sym_e_GT_GT] = ACTIONS(1486), - [anon_sym_o_GT_GT] = ACTIONS(1486), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1486), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1486), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1486), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1486), - [aux_sym_unquoted_token2] = ACTIONS(1484), + [1512] = { + [sym_comment] = STATE(1512), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_DOT] = ACTIONS(4799), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4801), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [1513] = { + [sym_comment] = STATE(1513), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_GT2] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1703), + [anon_sym_in2] = ACTIONS(1703), + [anon_sym_STAR2] = ACTIONS(1701), + [anon_sym_and2] = ACTIONS(1703), + [anon_sym_xor2] = ACTIONS(1703), + [anon_sym_or2] = ACTIONS(1703), + [anon_sym_not_DASHin2] = ACTIONS(1703), + [anon_sym_has2] = ACTIONS(1703), + [anon_sym_not_DASHhas2] = ACTIONS(1703), + [anon_sym_starts_DASHwith2] = ACTIONS(1703), + [anon_sym_ends_DASHwith2] = ACTIONS(1703), + [anon_sym_EQ_EQ2] = ACTIONS(1703), + [anon_sym_BANG_EQ2] = ACTIONS(1703), + [anon_sym_LT2] = ACTIONS(1701), + [anon_sym_LT_EQ2] = ACTIONS(1703), + [anon_sym_GT_EQ2] = ACTIONS(1703), + [anon_sym_EQ_TILDE2] = ACTIONS(1703), + [anon_sym_BANG_TILDE2] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_STAR_STAR2] = ACTIONS(1703), + [anon_sym_PLUS_PLUS2] = ACTIONS(1703), + [anon_sym_SLASH2] = ACTIONS(1701), + [anon_sym_mod2] = ACTIONS(1703), + [anon_sym_SLASH_SLASH2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_bit_DASHshl2] = ACTIONS(1703), + [anon_sym_bit_DASHshr2] = ACTIONS(1703), + [anon_sym_bit_DASHand2] = ACTIONS(1703), + [anon_sym_bit_DASHxor2] = ACTIONS(1703), + [anon_sym_bit_DASHor2] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(4803), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4805), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token2] = ACTIONS(1701), [anon_sym_POUND] = ACTIONS(245), }, - [1590] = { - [sym_comment] = STATE(1590), - [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_RPAREN] = ACTIONS(1591), - [anon_sym_GT2] = ACTIONS(1579), - [anon_sym_DASH2] = ACTIONS(1591), - [anon_sym_in2] = ACTIONS(1591), - [anon_sym_if] = ACTIONS(1591), - [anon_sym_LBRACE] = ACTIONS(1591), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_EQ_GT] = ACTIONS(1591), - [anon_sym_STAR2] = ACTIONS(1579), - [anon_sym_QMARK2] = ACTIONS(1591), - [anon_sym_and2] = ACTIONS(1591), - [anon_sym_xor2] = ACTIONS(1591), - [anon_sym_or2] = ACTIONS(1591), - [anon_sym_not_DASHin2] = ACTIONS(1591), - [anon_sym_has2] = ACTIONS(1591), - [anon_sym_not_DASHhas2] = ACTIONS(1591), - [anon_sym_starts_DASHwith2] = ACTIONS(1591), - [anon_sym_ends_DASHwith2] = ACTIONS(1591), - [anon_sym_EQ_EQ2] = ACTIONS(1591), - [anon_sym_BANG_EQ2] = ACTIONS(1591), - [anon_sym_LT2] = ACTIONS(1579), - [anon_sym_LT_EQ2] = ACTIONS(1591), - [anon_sym_GT_EQ2] = ACTIONS(1591), - [anon_sym_EQ_TILDE2] = ACTIONS(1591), - [anon_sym_BANG_TILDE2] = ACTIONS(1591), - [anon_sym_STAR_STAR2] = ACTIONS(1591), - [anon_sym_PLUS_PLUS2] = ACTIONS(1591), - [anon_sym_SLASH2] = ACTIONS(1579), - [anon_sym_mod2] = ACTIONS(1591), - [anon_sym_SLASH_SLASH2] = ACTIONS(1591), - [anon_sym_PLUS2] = ACTIONS(1579), - [anon_sym_bit_DASHshl2] = ACTIONS(1591), - [anon_sym_bit_DASHshr2] = ACTIONS(1591), - [anon_sym_bit_DASHand2] = ACTIONS(1591), - [anon_sym_bit_DASHxor2] = ACTIONS(1591), - [anon_sym_bit_DASHor2] = ACTIONS(1591), - [anon_sym_COLON2] = ACTIONS(1591), - [anon_sym_DOT2] = ACTIONS(1591), - [anon_sym_err_GT] = ACTIONS(1579), - [anon_sym_out_GT] = ACTIONS(1579), - [anon_sym_e_GT] = ACTIONS(1579), - [anon_sym_o_GT] = ACTIONS(1579), - [anon_sym_err_PLUSout_GT] = ACTIONS(1579), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), - [anon_sym_o_PLUSe_GT] = ACTIONS(1579), - [anon_sym_e_PLUSo_GT] = ACTIONS(1579), - [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), + [1514] = { + [sym_comment] = STATE(1514), + [sym__newline] = ACTIONS(1995), + [anon_sym_SEMI] = ACTIONS(1995), + [anon_sym_PIPE] = ACTIONS(1995), + [anon_sym_err_GT_PIPE] = ACTIONS(1995), + [anon_sym_out_GT_PIPE] = ACTIONS(1995), + [anon_sym_e_GT_PIPE] = ACTIONS(1995), + [anon_sym_o_GT_PIPE] = ACTIONS(1995), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1995), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1995), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1995), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1995), + [anon_sym_RPAREN] = ACTIONS(1995), + [anon_sym_GT2] = ACTIONS(1993), + [anon_sym_DASH2] = ACTIONS(1995), + [anon_sym_in2] = ACTIONS(1995), + [anon_sym_if] = ACTIONS(1995), + [anon_sym_LBRACE] = ACTIONS(1995), + [anon_sym_RBRACE] = ACTIONS(1995), + [anon_sym_EQ_GT] = ACTIONS(1995), + [anon_sym_STAR2] = ACTIONS(1993), + [anon_sym_and2] = ACTIONS(1995), + [anon_sym_xor2] = ACTIONS(1995), + [anon_sym_or2] = ACTIONS(1995), + [anon_sym_not_DASHin2] = ACTIONS(1995), + [anon_sym_has2] = ACTIONS(1995), + [anon_sym_not_DASHhas2] = ACTIONS(1995), + [anon_sym_starts_DASHwith2] = ACTIONS(1995), + [anon_sym_ends_DASHwith2] = ACTIONS(1995), + [anon_sym_EQ_EQ2] = ACTIONS(1995), + [anon_sym_BANG_EQ2] = ACTIONS(1995), + [anon_sym_LT2] = ACTIONS(1993), + [anon_sym_LT_EQ2] = ACTIONS(1995), + [anon_sym_GT_EQ2] = ACTIONS(1995), + [anon_sym_EQ_TILDE2] = ACTIONS(1995), + [anon_sym_BANG_TILDE2] = ACTIONS(1995), + [anon_sym_STAR_STAR2] = ACTIONS(1995), + [anon_sym_PLUS_PLUS2] = ACTIONS(1995), + [anon_sym_SLASH2] = ACTIONS(1993), + [anon_sym_mod2] = ACTIONS(1995), + [anon_sym_SLASH_SLASH2] = ACTIONS(1995), + [anon_sym_PLUS2] = ACTIONS(1993), + [anon_sym_bit_DASHshl2] = ACTIONS(1995), + [anon_sym_bit_DASHshr2] = ACTIONS(1995), + [anon_sym_bit_DASHand2] = ACTIONS(1995), + [anon_sym_bit_DASHxor2] = ACTIONS(1995), + [anon_sym_bit_DASHor2] = ACTIONS(1995), + [anon_sym_DOT_DOT2] = ACTIONS(1993), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1995), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1995), + [anon_sym_err_GT] = ACTIONS(1993), + [anon_sym_out_GT] = ACTIONS(1993), + [anon_sym_e_GT] = ACTIONS(1993), + [anon_sym_o_GT] = ACTIONS(1993), + [anon_sym_err_PLUSout_GT] = ACTIONS(1993), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1993), + [anon_sym_o_PLUSe_GT] = ACTIONS(1993), + [anon_sym_e_PLUSo_GT] = ACTIONS(1993), + [anon_sym_err_GT_GT] = ACTIONS(1995), + [anon_sym_out_GT_GT] = ACTIONS(1995), + [anon_sym_e_GT_GT] = ACTIONS(1995), + [anon_sym_o_GT_GT] = ACTIONS(1995), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1995), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1995), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1995), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1995), [anon_sym_POUND] = ACTIONS(245), }, - [1591] = { - [sym_comment] = STATE(1591), - [sym__newline] = ACTIONS(2408), - [anon_sym_SEMI] = ACTIONS(2408), - [anon_sym_PIPE] = ACTIONS(2408), - [anon_sym_err_GT_PIPE] = ACTIONS(2408), - [anon_sym_out_GT_PIPE] = ACTIONS(2408), - [anon_sym_e_GT_PIPE] = ACTIONS(2408), - [anon_sym_o_GT_PIPE] = ACTIONS(2408), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2408), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2408), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2408), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2408), - [anon_sym_RPAREN] = ACTIONS(2408), - [anon_sym_GT2] = ACTIONS(2406), - [anon_sym_DASH2] = ACTIONS(2408), - [anon_sym_in2] = ACTIONS(2408), - [anon_sym_if] = ACTIONS(2408), - [anon_sym_LBRACE] = ACTIONS(2408), - [anon_sym_RBRACE] = ACTIONS(2408), - [anon_sym_EQ_GT] = ACTIONS(2408), - [anon_sym_STAR2] = ACTIONS(2406), - [anon_sym_QMARK2] = ACTIONS(2408), - [anon_sym_and2] = ACTIONS(2408), - [anon_sym_xor2] = ACTIONS(2408), - [anon_sym_or2] = ACTIONS(2408), - [anon_sym_not_DASHin2] = ACTIONS(2408), - [anon_sym_has2] = ACTIONS(2408), - [anon_sym_not_DASHhas2] = ACTIONS(2408), - [anon_sym_starts_DASHwith2] = ACTIONS(2408), - [anon_sym_ends_DASHwith2] = ACTIONS(2408), - [anon_sym_EQ_EQ2] = ACTIONS(2408), - [anon_sym_BANG_EQ2] = ACTIONS(2408), - [anon_sym_LT2] = ACTIONS(2406), - [anon_sym_LT_EQ2] = ACTIONS(2408), - [anon_sym_GT_EQ2] = ACTIONS(2408), - [anon_sym_EQ_TILDE2] = ACTIONS(2408), - [anon_sym_BANG_TILDE2] = ACTIONS(2408), - [anon_sym_STAR_STAR2] = ACTIONS(2408), - [anon_sym_PLUS_PLUS2] = ACTIONS(2408), - [anon_sym_SLASH2] = ACTIONS(2406), - [anon_sym_mod2] = ACTIONS(2408), - [anon_sym_SLASH_SLASH2] = ACTIONS(2408), - [anon_sym_PLUS2] = ACTIONS(2406), - [anon_sym_bit_DASHshl2] = ACTIONS(2408), - [anon_sym_bit_DASHshr2] = ACTIONS(2408), - [anon_sym_bit_DASHand2] = ACTIONS(2408), - [anon_sym_bit_DASHxor2] = ACTIONS(2408), - [anon_sym_bit_DASHor2] = ACTIONS(2408), - [anon_sym_COLON2] = ACTIONS(2408), - [anon_sym_DOT2] = ACTIONS(2408), - [anon_sym_err_GT] = ACTIONS(2406), - [anon_sym_out_GT] = ACTIONS(2406), - [anon_sym_e_GT] = ACTIONS(2406), - [anon_sym_o_GT] = ACTIONS(2406), - [anon_sym_err_PLUSout_GT] = ACTIONS(2406), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2406), - [anon_sym_o_PLUSe_GT] = ACTIONS(2406), - [anon_sym_e_PLUSo_GT] = ACTIONS(2406), - [anon_sym_err_GT_GT] = ACTIONS(2408), - [anon_sym_out_GT_GT] = ACTIONS(2408), - [anon_sym_e_GT_GT] = ACTIONS(2408), - [anon_sym_o_GT_GT] = ACTIONS(2408), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2408), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2408), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2408), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2408), + [1515] = { + [sym_cell_path] = STATE(2000), + [sym_path] = STATE(1723), + [sym_comment] = STATE(1515), + [aux_sym_cell_path_repeat1] = STATE(1578), + [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(1849), + [anon_sym_DASH_DASH] = ACTIONS(1851), + [anon_sym_DASH2] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1849), + [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(1849), + [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(1849), + [anon_sym_0o] = ACTIONS(1849), + [anon_sym_0x] = ACTIONS(1849), + [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_DOT2] = ACTIONS(4760), + [anon_sym_err_GT] = ACTIONS(1849), + [anon_sym_out_GT] = ACTIONS(1849), + [anon_sym_e_GT] = ACTIONS(1849), + [anon_sym_o_GT] = ACTIONS(1849), + [anon_sym_err_PLUSout_GT] = ACTIONS(1849), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1849), + [anon_sym_o_PLUSe_GT] = ACTIONS(1849), + [anon_sym_e_PLUSo_GT] = ACTIONS(1849), + [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(1849), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1851), + }, + [1516] = { + [sym_comment] = STATE(1516), + [sym__newline] = ACTIONS(4807), + [anon_sym_SEMI] = ACTIONS(4807), + [anon_sym_PIPE] = ACTIONS(4807), + [anon_sym_err_GT_PIPE] = ACTIONS(4807), + [anon_sym_out_GT_PIPE] = ACTIONS(4807), + [anon_sym_e_GT_PIPE] = ACTIONS(4807), + [anon_sym_o_GT_PIPE] = ACTIONS(4807), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4807), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4807), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4807), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4807), + [anon_sym_LBRACK] = ACTIONS(4807), + [anon_sym_LPAREN] = ACTIONS(4807), + [anon_sym_RPAREN] = ACTIONS(4807), + [anon_sym_DOLLAR] = ACTIONS(4809), + [anon_sym_DASH_DASH] = ACTIONS(4807), + [anon_sym_DASH2] = ACTIONS(4809), + [anon_sym_LBRACE] = ACTIONS(4807), + [anon_sym_RBRACE] = ACTIONS(4807), + [anon_sym_DOT_DOT] = ACTIONS(4809), + [anon_sym_DOT_DOT2] = ACTIONS(4786), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4809), + [anon_sym_DOT_DOT_LT] = ACTIONS(4809), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4788), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4788), + [anon_sym_null] = ACTIONS(4807), + [anon_sym_true] = ACTIONS(4807), + [anon_sym_false] = ACTIONS(4807), + [aux_sym__val_number_decimal_token1] = ACTIONS(4809), + [aux_sym__val_number_decimal_token2] = ACTIONS(4807), + [aux_sym__val_number_decimal_token3] = ACTIONS(4807), + [aux_sym__val_number_decimal_token4] = ACTIONS(4807), + [aux_sym__val_number_token1] = ACTIONS(4807), + [aux_sym__val_number_token2] = ACTIONS(4807), + [aux_sym__val_number_token3] = ACTIONS(4807), + [aux_sym__val_number_token4] = ACTIONS(4807), + [aux_sym__val_number_token5] = ACTIONS(4807), + [aux_sym__val_number_token6] = ACTIONS(4807), + [anon_sym_0b] = ACTIONS(4809), + [anon_sym_0o] = ACTIONS(4809), + [anon_sym_0x] = ACTIONS(4809), + [sym_val_date] = ACTIONS(4807), + [anon_sym_DQUOTE] = ACTIONS(4807), + [sym__str_single_quotes] = ACTIONS(4807), + [sym__str_back_ticks] = ACTIONS(4807), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4807), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4807), + [anon_sym_err_GT] = ACTIONS(4809), + [anon_sym_out_GT] = ACTIONS(4809), + [anon_sym_e_GT] = ACTIONS(4809), + [anon_sym_o_GT] = ACTIONS(4809), + [anon_sym_err_PLUSout_GT] = ACTIONS(4809), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4809), + [anon_sym_o_PLUSe_GT] = ACTIONS(4809), + [anon_sym_e_PLUSo_GT] = ACTIONS(4809), + [anon_sym_err_GT_GT] = ACTIONS(4807), + [anon_sym_out_GT_GT] = ACTIONS(4807), + [anon_sym_e_GT_GT] = ACTIONS(4807), + [anon_sym_o_GT_GT] = ACTIONS(4807), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4807), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4807), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4807), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4807), + [aux_sym_unquoted_token1] = ACTIONS(4809), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4807), + }, + [1517] = { + [sym_cell_path] = STATE(1901), + [sym_path] = STATE(1723), + [sym_comment] = STATE(1517), + [aux_sym_cell_path_repeat1] = STATE(1578), + [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_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_DOT2] = ACTIONS(4760), + [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(245), + [sym_raw_string_begin] = ACTIONS(1865), }, - [1592] = { - [sym_cell_path] = STATE(2092), - [sym_path] = STATE(1450), - [sym_comment] = STATE(1592), - [aux_sym_cell_path_repeat1] = STATE(1340), - [sym__newline] = ACTIONS(1841), - [anon_sym_SEMI] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_err_GT_PIPE] = ACTIONS(1841), - [anon_sym_out_GT_PIPE] = ACTIONS(1841), - [anon_sym_e_GT_PIPE] = ACTIONS(1841), - [anon_sym_o_GT_PIPE] = ACTIONS(1841), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1841), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1841), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1841), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1841), - [anon_sym_RPAREN] = ACTIONS(1841), - [anon_sym_GT2] = ACTIONS(1839), - [anon_sym_DASH2] = ACTIONS(1841), - [anon_sym_in2] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1841), - [anon_sym_RBRACE] = ACTIONS(1841), - [anon_sym_EQ_GT] = ACTIONS(1841), - [anon_sym_STAR2] = ACTIONS(1839), - [anon_sym_and2] = ACTIONS(1841), - [anon_sym_xor2] = ACTIONS(1841), - [anon_sym_or2] = ACTIONS(1841), - [anon_sym_not_DASHin2] = ACTIONS(1841), - [anon_sym_has2] = ACTIONS(1841), - [anon_sym_not_DASHhas2] = ACTIONS(1841), - [anon_sym_starts_DASHwith2] = ACTIONS(1841), - [anon_sym_ends_DASHwith2] = ACTIONS(1841), - [anon_sym_EQ_EQ2] = ACTIONS(1841), - [anon_sym_BANG_EQ2] = ACTIONS(1841), - [anon_sym_LT2] = ACTIONS(1839), - [anon_sym_LT_EQ2] = ACTIONS(1841), - [anon_sym_GT_EQ2] = ACTIONS(1841), - [anon_sym_EQ_TILDE2] = ACTIONS(1841), - [anon_sym_BANG_TILDE2] = ACTIONS(1841), - [anon_sym_STAR_STAR2] = ACTIONS(1841), - [anon_sym_PLUS_PLUS2] = ACTIONS(1841), - [anon_sym_SLASH2] = ACTIONS(1839), - [anon_sym_mod2] = ACTIONS(1841), - [anon_sym_SLASH_SLASH2] = ACTIONS(1841), - [anon_sym_PLUS2] = ACTIONS(1839), - [anon_sym_bit_DASHshl2] = ACTIONS(1841), - [anon_sym_bit_DASHshr2] = ACTIONS(1841), - [anon_sym_bit_DASHand2] = ACTIONS(1841), - [anon_sym_bit_DASHxor2] = ACTIONS(1841), - [anon_sym_bit_DASHor2] = ACTIONS(1841), - [anon_sym_DOT2] = ACTIONS(4772), - [anon_sym_err_GT] = ACTIONS(1839), - [anon_sym_out_GT] = ACTIONS(1839), - [anon_sym_e_GT] = ACTIONS(1839), - [anon_sym_o_GT] = ACTIONS(1839), - [anon_sym_err_PLUSout_GT] = ACTIONS(1839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1839), - [anon_sym_o_PLUSe_GT] = ACTIONS(1839), - [anon_sym_e_PLUSo_GT] = ACTIONS(1839), - [anon_sym_err_GT_GT] = ACTIONS(1841), - [anon_sym_out_GT_GT] = ACTIONS(1841), - [anon_sym_e_GT_GT] = ACTIONS(1841), - [anon_sym_o_GT_GT] = ACTIONS(1841), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1841), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1841), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1841), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1841), + [1518] = { + [sym_comment] = STATE(1518), + [sym__newline] = ACTIONS(1628), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1628), + [anon_sym_err_GT_PIPE] = ACTIONS(1628), + [anon_sym_out_GT_PIPE] = ACTIONS(1628), + [anon_sym_e_GT_PIPE] = ACTIONS(1628), + [anon_sym_o_GT_PIPE] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1628), + [anon_sym_RPAREN] = ACTIONS(1628), + [anon_sym_GT2] = ACTIONS(1616), + [anon_sym_DASH2] = ACTIONS(1628), + [anon_sym_in2] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1628), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_EQ_GT] = ACTIONS(1628), + [anon_sym_STAR2] = ACTIONS(1616), + [anon_sym_QMARK2] = ACTIONS(1628), + [anon_sym_and2] = ACTIONS(1628), + [anon_sym_xor2] = ACTIONS(1628), + [anon_sym_or2] = ACTIONS(1628), + [anon_sym_not_DASHin2] = ACTIONS(1628), + [anon_sym_has2] = ACTIONS(1628), + [anon_sym_not_DASHhas2] = ACTIONS(1628), + [anon_sym_starts_DASHwith2] = ACTIONS(1628), + [anon_sym_ends_DASHwith2] = ACTIONS(1628), + [anon_sym_EQ_EQ2] = ACTIONS(1628), + [anon_sym_BANG_EQ2] = ACTIONS(1628), + [anon_sym_LT2] = ACTIONS(1616), + [anon_sym_LT_EQ2] = ACTIONS(1628), + [anon_sym_GT_EQ2] = ACTIONS(1628), + [anon_sym_EQ_TILDE2] = ACTIONS(1628), + [anon_sym_BANG_TILDE2] = ACTIONS(1628), + [anon_sym_STAR_STAR2] = ACTIONS(1628), + [anon_sym_PLUS_PLUS2] = ACTIONS(1628), + [anon_sym_SLASH2] = ACTIONS(1616), + [anon_sym_mod2] = ACTIONS(1628), + [anon_sym_SLASH_SLASH2] = ACTIONS(1628), + [anon_sym_PLUS2] = ACTIONS(1616), + [anon_sym_bit_DASHshl2] = ACTIONS(1628), + [anon_sym_bit_DASHshr2] = ACTIONS(1628), + [anon_sym_bit_DASHand2] = ACTIONS(1628), + [anon_sym_bit_DASHxor2] = ACTIONS(1628), + [anon_sym_bit_DASHor2] = ACTIONS(1628), + [anon_sym_COLON2] = ACTIONS(1628), + [anon_sym_DOT2] = ACTIONS(1628), + [anon_sym_err_GT] = ACTIONS(1616), + [anon_sym_out_GT] = ACTIONS(1616), + [anon_sym_e_GT] = ACTIONS(1616), + [anon_sym_o_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT] = ACTIONS(1616), + [anon_sym_err_GT_GT] = ACTIONS(1628), + [anon_sym_out_GT_GT] = ACTIONS(1628), + [anon_sym_e_GT_GT] = ACTIONS(1628), + [anon_sym_o_GT_GT] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1628), [anon_sym_POUND] = ACTIONS(245), }, - [1593] = { - [sym_comment] = STATE(1593), - [ts_builtin_sym_end] = ACTIONS(1650), - [sym__newline] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_err_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_GT_PIPE] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DASH2] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT] = ACTIONS(1650), - [aux_sym__immediate_decimal_token1] = ACTIONS(4863), - [aux_sym__immediate_decimal_token2] = ACTIONS(4865), - [anon_sym_null] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [aux_sym__val_number_token4] = ACTIONS(1650), - [aux_sym__val_number_token5] = ACTIONS(1650), - [aux_sym__val_number_token6] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1648), - [anon_sym_0o] = ACTIONS(1648), - [anon_sym_0x] = ACTIONS(1648), - [sym_val_date] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_err_GT] = ACTIONS(1648), - [anon_sym_out_GT] = ACTIONS(1648), - [anon_sym_e_GT] = ACTIONS(1648), - [anon_sym_o_GT] = ACTIONS(1648), - [anon_sym_err_PLUSout_GT] = ACTIONS(1648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), - [anon_sym_o_PLUSe_GT] = ACTIONS(1648), - [anon_sym_e_PLUSo_GT] = ACTIONS(1648), - [anon_sym_err_GT_GT] = ACTIONS(1650), - [anon_sym_out_GT_GT] = ACTIONS(1650), - [anon_sym_e_GT_GT] = ACTIONS(1650), - [anon_sym_o_GT_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), - [aux_sym_unquoted_token1] = ACTIONS(1648), - [aux_sym_unquoted_token2] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1650), + [1519] = { + [sym_comment] = STATE(1519), + [ts_builtin_sym_end] = ACTIONS(4807), + [sym__newline] = ACTIONS(4807), + [anon_sym_SEMI] = ACTIONS(4807), + [anon_sym_PIPE] = ACTIONS(4807), + [anon_sym_err_GT_PIPE] = ACTIONS(4807), + [anon_sym_out_GT_PIPE] = ACTIONS(4807), + [anon_sym_e_GT_PIPE] = ACTIONS(4807), + [anon_sym_o_GT_PIPE] = ACTIONS(4807), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4807), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4807), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4807), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4807), + [anon_sym_LBRACK] = ACTIONS(4807), + [anon_sym_LPAREN] = ACTIONS(4807), + [anon_sym_DOLLAR] = ACTIONS(4809), + [anon_sym_DASH_DASH] = ACTIONS(4807), + [anon_sym_DASH2] = ACTIONS(4809), + [anon_sym_LBRACE] = ACTIONS(4807), + [anon_sym_DOT_DOT] = ACTIONS(4809), + [anon_sym_DOT_DOT2] = ACTIONS(4811), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4809), + [anon_sym_DOT_DOT_LT] = ACTIONS(4809), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4813), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4813), + [anon_sym_null] = ACTIONS(4807), + [anon_sym_true] = ACTIONS(4807), + [anon_sym_false] = ACTIONS(4807), + [aux_sym__val_number_decimal_token1] = ACTIONS(4809), + [aux_sym__val_number_decimal_token2] = ACTIONS(4807), + [aux_sym__val_number_decimal_token3] = ACTIONS(4807), + [aux_sym__val_number_decimal_token4] = ACTIONS(4807), + [aux_sym__val_number_token1] = ACTIONS(4807), + [aux_sym__val_number_token2] = ACTIONS(4807), + [aux_sym__val_number_token3] = ACTIONS(4807), + [aux_sym__val_number_token4] = ACTIONS(4807), + [aux_sym__val_number_token5] = ACTIONS(4807), + [aux_sym__val_number_token6] = ACTIONS(4807), + [anon_sym_0b] = ACTIONS(4809), + [anon_sym_0o] = ACTIONS(4809), + [anon_sym_0x] = ACTIONS(4809), + [sym_val_date] = ACTIONS(4807), + [anon_sym_DQUOTE] = ACTIONS(4807), + [sym__str_single_quotes] = ACTIONS(4807), + [sym__str_back_ticks] = ACTIONS(4807), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4807), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4807), + [anon_sym_err_GT] = ACTIONS(4809), + [anon_sym_out_GT] = ACTIONS(4809), + [anon_sym_e_GT] = ACTIONS(4809), + [anon_sym_o_GT] = ACTIONS(4809), + [anon_sym_err_PLUSout_GT] = ACTIONS(4809), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4809), + [anon_sym_o_PLUSe_GT] = ACTIONS(4809), + [anon_sym_e_PLUSo_GT] = ACTIONS(4809), + [anon_sym_err_GT_GT] = ACTIONS(4807), + [anon_sym_out_GT_GT] = ACTIONS(4807), + [anon_sym_e_GT_GT] = ACTIONS(4807), + [anon_sym_o_GT_GT] = ACTIONS(4807), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4807), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4807), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4807), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4807), + [aux_sym_unquoted_token1] = ACTIONS(4809), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4807), }, - [1594] = { - [sym_cell_path] = STATE(2010), - [sym_path] = STATE(1964), - [sym_comment] = STATE(1594), - [aux_sym_cell_path_repeat1] = STATE(1620), - [ts_builtin_sym_end] = ACTIONS(1943), - [sym__newline] = ACTIONS(1943), - [anon_sym_SEMI] = ACTIONS(1943), - [anon_sym_PIPE] = ACTIONS(1943), - [anon_sym_err_GT_PIPE] = ACTIONS(1943), - [anon_sym_out_GT_PIPE] = ACTIONS(1943), - [anon_sym_e_GT_PIPE] = ACTIONS(1943), - [anon_sym_o_GT_PIPE] = ACTIONS(1943), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1943), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1943), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1943), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1943), - [anon_sym_LBRACK] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1943), - [anon_sym_DOLLAR] = ACTIONS(1941), - [anon_sym_DASH_DASH] = ACTIONS(1943), - [anon_sym_DASH2] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1943), - [anon_sym_DOT_DOT] = ACTIONS(1941), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1943), - [anon_sym_DOT_DOT_LT] = ACTIONS(1943), - [anon_sym_null] = ACTIONS(1943), - [anon_sym_true] = ACTIONS(1943), - [anon_sym_false] = ACTIONS(1943), - [aux_sym__val_number_decimal_token1] = ACTIONS(1941), - [aux_sym__val_number_decimal_token2] = ACTIONS(1943), - [aux_sym__val_number_decimal_token3] = ACTIONS(1943), - [aux_sym__val_number_decimal_token4] = ACTIONS(1943), - [aux_sym__val_number_token1] = ACTIONS(1943), - [aux_sym__val_number_token2] = ACTIONS(1943), - [aux_sym__val_number_token3] = ACTIONS(1943), - [aux_sym__val_number_token4] = ACTIONS(1943), - [aux_sym__val_number_token5] = ACTIONS(1943), - [aux_sym__val_number_token6] = ACTIONS(1943), - [anon_sym_0b] = ACTIONS(1941), - [anon_sym_0o] = ACTIONS(1941), - [anon_sym_0x] = ACTIONS(1941), - [sym_val_date] = ACTIONS(1943), - [anon_sym_DQUOTE] = ACTIONS(1943), - [sym__str_single_quotes] = ACTIONS(1943), - [sym__str_back_ticks] = ACTIONS(1943), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1943), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(1941), - [anon_sym_out_GT] = ACTIONS(1941), - [anon_sym_e_GT] = ACTIONS(1941), - [anon_sym_o_GT] = ACTIONS(1941), - [anon_sym_err_PLUSout_GT] = ACTIONS(1941), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1941), - [anon_sym_o_PLUSe_GT] = ACTIONS(1941), - [anon_sym_e_PLUSo_GT] = ACTIONS(1941), - [anon_sym_err_GT_GT] = ACTIONS(1943), - [anon_sym_out_GT_GT] = ACTIONS(1943), - [anon_sym_e_GT_GT] = ACTIONS(1943), - [anon_sym_o_GT_GT] = ACTIONS(1943), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1943), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1943), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1943), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1943), - [aux_sym_unquoted_token1] = ACTIONS(1941), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1943), + [1520] = { + [sym_comment] = STATE(1520), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT] = ACTIONS(1703), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), }, - [1595] = { - [sym_comment] = STATE(1595), - [ts_builtin_sym_end] = ACTIONS(1540), - [sym__newline] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1540), - [anon_sym_err_GT_PIPE] = ACTIONS(1540), - [anon_sym_out_GT_PIPE] = ACTIONS(1540), - [anon_sym_e_GT_PIPE] = ACTIONS(1540), - [anon_sym_o_GT_PIPE] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1540), - [anon_sym_GT2] = ACTIONS(1538), - [anon_sym_DASH2] = ACTIONS(1540), - [anon_sym_in2] = ACTIONS(1540), - [anon_sym_STAR2] = ACTIONS(1538), - [anon_sym_and2] = ACTIONS(1540), - [anon_sym_xor2] = ACTIONS(1540), - [anon_sym_or2] = ACTIONS(1540), - [anon_sym_not_DASHin2] = ACTIONS(1540), - [anon_sym_has2] = ACTIONS(1540), - [anon_sym_not_DASHhas2] = ACTIONS(1540), - [anon_sym_starts_DASHwith2] = ACTIONS(1540), - [anon_sym_ends_DASHwith2] = ACTIONS(1540), - [anon_sym_EQ_EQ2] = ACTIONS(1540), - [anon_sym_BANG_EQ2] = ACTIONS(1540), - [anon_sym_LT2] = ACTIONS(1538), - [anon_sym_LT_EQ2] = ACTIONS(1540), - [anon_sym_GT_EQ2] = ACTIONS(1540), - [anon_sym_EQ_TILDE2] = ACTIONS(1540), - [anon_sym_BANG_TILDE2] = ACTIONS(1540), - [anon_sym_LPAREN2] = ACTIONS(1540), - [anon_sym_STAR_STAR2] = ACTIONS(1540), - [anon_sym_PLUS_PLUS2] = ACTIONS(1540), - [anon_sym_SLASH2] = ACTIONS(1538), - [anon_sym_mod2] = ACTIONS(1540), - [anon_sym_SLASH_SLASH2] = ACTIONS(1540), - [anon_sym_PLUS2] = ACTIONS(1538), - [anon_sym_bit_DASHshl2] = ACTIONS(1540), - [anon_sym_bit_DASHshr2] = ACTIONS(1540), - [anon_sym_bit_DASHand2] = ACTIONS(1540), - [anon_sym_bit_DASHxor2] = ACTIONS(1540), - [anon_sym_bit_DASHor2] = ACTIONS(1540), - [anon_sym_DOT_DOT2] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1540), - [sym_filesize_unit] = ACTIONS(1538), - [sym_duration_unit] = ACTIONS(1540), - [anon_sym_err_GT] = ACTIONS(1538), - [anon_sym_out_GT] = ACTIONS(1538), - [anon_sym_e_GT] = ACTIONS(1538), - [anon_sym_o_GT] = ACTIONS(1538), - [anon_sym_err_PLUSout_GT] = ACTIONS(1538), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1538), - [anon_sym_o_PLUSe_GT] = ACTIONS(1538), - [anon_sym_e_PLUSo_GT] = ACTIONS(1538), - [anon_sym_err_GT_GT] = ACTIONS(1540), - [anon_sym_out_GT_GT] = ACTIONS(1540), - [anon_sym_e_GT_GT] = ACTIONS(1540), - [anon_sym_o_GT_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1540), - [aux_sym_unquoted_token2] = ACTIONS(1538), + [1521] = { + [sym_comment] = STATE(1521), + [sym__newline] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_PIPE] = ACTIONS(956), + [anon_sym_err_GT_PIPE] = ACTIONS(956), + [anon_sym_out_GT_PIPE] = ACTIONS(956), + [anon_sym_e_GT_PIPE] = ACTIONS(956), + [anon_sym_o_GT_PIPE] = ACTIONS(956), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(956), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(956), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(956), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(956), + [anon_sym_RPAREN] = ACTIONS(956), + [anon_sym_DOLLAR] = ACTIONS(954), + [anon_sym_DASH_DASH] = ACTIONS(956), + [anon_sym_DASH2] = ACTIONS(954), + [anon_sym_LBRACE] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(956), + [anon_sym_DOT_DOT] = ACTIONS(954), + [anon_sym_QMARK2] = ACTIONS(956), + [anon_sym_DOT_DOT_EQ] = ACTIONS(956), + [anon_sym_DOT_DOT_LT] = ACTIONS(956), + [anon_sym_null] = ACTIONS(956), + [anon_sym_true] = ACTIONS(956), + [anon_sym_false] = ACTIONS(956), + [aux_sym__val_number_decimal_token1] = ACTIONS(954), + [aux_sym__val_number_decimal_token2] = ACTIONS(956), + [aux_sym__val_number_decimal_token3] = ACTIONS(956), + [aux_sym__val_number_decimal_token4] = ACTIONS(956), + [aux_sym__val_number_token1] = ACTIONS(956), + [aux_sym__val_number_token2] = ACTIONS(956), + [aux_sym__val_number_token3] = ACTIONS(956), + [aux_sym__val_number_token4] = ACTIONS(956), + [aux_sym__val_number_token5] = ACTIONS(956), + [aux_sym__val_number_token6] = ACTIONS(956), + [anon_sym_0b] = ACTIONS(954), + [anon_sym_0o] = ACTIONS(954), + [anon_sym_0x] = ACTIONS(954), + [sym_val_date] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(956), + [sym__str_single_quotes] = ACTIONS(956), + [sym__str_back_ticks] = ACTIONS(956), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(956), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(956), + [anon_sym_DOT2] = ACTIONS(954), + [anon_sym_err_GT] = ACTIONS(954), + [anon_sym_out_GT] = ACTIONS(954), + [anon_sym_e_GT] = ACTIONS(954), + [anon_sym_o_GT] = ACTIONS(954), + [anon_sym_err_PLUSout_GT] = ACTIONS(954), + [anon_sym_out_PLUSerr_GT] = ACTIONS(954), + [anon_sym_o_PLUSe_GT] = ACTIONS(954), + [anon_sym_e_PLUSo_GT] = ACTIONS(954), + [anon_sym_err_GT_GT] = ACTIONS(956), + [anon_sym_out_GT_GT] = ACTIONS(956), + [anon_sym_e_GT_GT] = ACTIONS(956), + [anon_sym_o_GT_GT] = ACTIONS(956), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(956), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(956), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(956), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(956), + [aux_sym_unquoted_token1] = ACTIONS(954), [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(956), }, - [1596] = { - [sym_comment] = STATE(1596), - [sym__newline] = ACTIONS(2003), - [anon_sym_SEMI] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2003), - [anon_sym_err_GT_PIPE] = ACTIONS(2003), - [anon_sym_out_GT_PIPE] = ACTIONS(2003), - [anon_sym_e_GT_PIPE] = ACTIONS(2003), - [anon_sym_o_GT_PIPE] = ACTIONS(2003), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2003), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2003), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2003), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(2003), - [anon_sym_RPAREN] = ACTIONS(2003), - [anon_sym_DOLLAR] = ACTIONS(2001), - [anon_sym_DASH_DASH] = ACTIONS(2003), - [anon_sym_DASH2] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_RBRACE] = ACTIONS(2003), - [anon_sym_DOT_DOT] = ACTIONS(2001), - [anon_sym_DOT_DOT2] = ACTIONS(2001), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2001), - [anon_sym_DOT_DOT_LT] = ACTIONS(2001), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2003), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2003), - [anon_sym_null] = ACTIONS(2003), - [anon_sym_true] = ACTIONS(2003), - [anon_sym_false] = ACTIONS(2003), - [aux_sym__val_number_decimal_token1] = ACTIONS(2001), - [aux_sym__val_number_decimal_token2] = ACTIONS(2003), - [aux_sym__val_number_decimal_token3] = ACTIONS(2003), - [aux_sym__val_number_decimal_token4] = ACTIONS(2003), - [aux_sym__val_number_token1] = ACTIONS(2003), - [aux_sym__val_number_token2] = ACTIONS(2003), - [aux_sym__val_number_token3] = ACTIONS(2003), - [aux_sym__val_number_token4] = ACTIONS(2003), - [aux_sym__val_number_token5] = ACTIONS(2003), - [aux_sym__val_number_token6] = ACTIONS(2003), - [anon_sym_0b] = ACTIONS(2001), - [anon_sym_0o] = ACTIONS(2001), - [anon_sym_0x] = ACTIONS(2001), - [sym_val_date] = ACTIONS(2003), - [anon_sym_DQUOTE] = ACTIONS(2003), - [sym__str_single_quotes] = ACTIONS(2003), - [sym__str_back_ticks] = ACTIONS(2003), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2003), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2003), - [anon_sym_err_GT] = ACTIONS(2001), - [anon_sym_out_GT] = ACTIONS(2001), - [anon_sym_e_GT] = ACTIONS(2001), - [anon_sym_o_GT] = ACTIONS(2001), - [anon_sym_err_PLUSout_GT] = ACTIONS(2001), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2001), - [anon_sym_o_PLUSe_GT] = ACTIONS(2001), - [anon_sym_e_PLUSo_GT] = ACTIONS(2001), - [anon_sym_err_GT_GT] = ACTIONS(2003), - [anon_sym_out_GT_GT] = ACTIONS(2003), - [anon_sym_e_GT_GT] = ACTIONS(2003), - [anon_sym_o_GT_GT] = ACTIONS(2003), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2003), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2003), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2003), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2003), - [aux_sym_unquoted_token1] = ACTIONS(2001), + [1522] = { + [sym_comment] = STATE(1522), + [sym__newline] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_PIPE] = ACTIONS(948), + [anon_sym_err_GT_PIPE] = ACTIONS(948), + [anon_sym_out_GT_PIPE] = ACTIONS(948), + [anon_sym_e_GT_PIPE] = ACTIONS(948), + [anon_sym_o_GT_PIPE] = ACTIONS(948), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(948), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(948), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(948), + [anon_sym_LPAREN] = ACTIONS(948), + [anon_sym_RPAREN] = ACTIONS(948), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_DASH_DASH] = ACTIONS(948), + [anon_sym_DASH2] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(948), + [anon_sym_RBRACE] = ACTIONS(948), + [anon_sym_DOT_DOT] = ACTIONS(946), + [anon_sym_QMARK2] = ACTIONS(948), + [anon_sym_DOT_DOT_EQ] = ACTIONS(948), + [anon_sym_DOT_DOT_LT] = ACTIONS(948), + [anon_sym_null] = ACTIONS(948), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [aux_sym__val_number_decimal_token1] = ACTIONS(946), + [aux_sym__val_number_decimal_token2] = ACTIONS(948), + [aux_sym__val_number_decimal_token3] = ACTIONS(948), + [aux_sym__val_number_decimal_token4] = ACTIONS(948), + [aux_sym__val_number_token1] = ACTIONS(948), + [aux_sym__val_number_token2] = ACTIONS(948), + [aux_sym__val_number_token3] = ACTIONS(948), + [aux_sym__val_number_token4] = ACTIONS(948), + [aux_sym__val_number_token5] = ACTIONS(948), + [aux_sym__val_number_token6] = ACTIONS(948), + [anon_sym_0b] = ACTIONS(946), + [anon_sym_0o] = ACTIONS(946), + [anon_sym_0x] = ACTIONS(946), + [sym_val_date] = ACTIONS(948), + [anon_sym_DQUOTE] = ACTIONS(948), + [sym__str_single_quotes] = ACTIONS(948), + [sym__str_back_ticks] = ACTIONS(948), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(948), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(948), + [anon_sym_DOT2] = ACTIONS(946), + [anon_sym_err_GT] = ACTIONS(946), + [anon_sym_out_GT] = ACTIONS(946), + [anon_sym_e_GT] = ACTIONS(946), + [anon_sym_o_GT] = ACTIONS(946), + [anon_sym_err_PLUSout_GT] = ACTIONS(946), + [anon_sym_out_PLUSerr_GT] = ACTIONS(946), + [anon_sym_o_PLUSe_GT] = ACTIONS(946), + [anon_sym_e_PLUSo_GT] = ACTIONS(946), + [anon_sym_err_GT_GT] = ACTIONS(948), + [anon_sym_out_GT_GT] = ACTIONS(948), + [anon_sym_e_GT_GT] = ACTIONS(948), + [anon_sym_o_GT_GT] = ACTIONS(948), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(948), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(948), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(948), + [aux_sym_unquoted_token1] = ACTIONS(946), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(948), + }, + [1523] = { + [sym_comment] = STATE(1523), + [ts_builtin_sym_end] = ACTIONS(948), + [sym__newline] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_PIPE] = ACTIONS(948), + [anon_sym_err_GT_PIPE] = ACTIONS(948), + [anon_sym_out_GT_PIPE] = ACTIONS(948), + [anon_sym_e_GT_PIPE] = ACTIONS(948), + [anon_sym_o_GT_PIPE] = ACTIONS(948), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(948), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(948), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(948), + [anon_sym_GT2] = ACTIONS(946), + [anon_sym_DASH2] = ACTIONS(948), + [anon_sym_in2] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(948), + [anon_sym_STAR2] = ACTIONS(946), + [anon_sym_QMARK2] = ACTIONS(948), + [anon_sym_and2] = ACTIONS(948), + [anon_sym_xor2] = ACTIONS(948), + [anon_sym_or2] = ACTIONS(948), + [anon_sym_not_DASHin2] = ACTIONS(948), + [anon_sym_has2] = ACTIONS(948), + [anon_sym_not_DASHhas2] = ACTIONS(948), + [anon_sym_starts_DASHwith2] = ACTIONS(948), + [anon_sym_ends_DASHwith2] = ACTIONS(948), + [anon_sym_EQ_EQ2] = ACTIONS(948), + [anon_sym_BANG_EQ2] = ACTIONS(948), + [anon_sym_LT2] = ACTIONS(946), + [anon_sym_LT_EQ2] = ACTIONS(948), + [anon_sym_GT_EQ2] = ACTIONS(948), + [anon_sym_EQ_TILDE2] = ACTIONS(948), + [anon_sym_BANG_TILDE2] = ACTIONS(948), + [anon_sym_STAR_STAR2] = ACTIONS(948), + [anon_sym_PLUS_PLUS2] = ACTIONS(948), + [anon_sym_SLASH2] = ACTIONS(946), + [anon_sym_mod2] = ACTIONS(948), + [anon_sym_SLASH_SLASH2] = ACTIONS(948), + [anon_sym_PLUS2] = ACTIONS(946), + [anon_sym_bit_DASHshl2] = ACTIONS(948), + [anon_sym_bit_DASHshr2] = ACTIONS(948), + [anon_sym_bit_DASHand2] = ACTIONS(948), + [anon_sym_bit_DASHxor2] = ACTIONS(948), + [anon_sym_bit_DASHor2] = ACTIONS(948), + [anon_sym_DOT_DOT2] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(948), + [anon_sym_DOT_DOT_LT2] = ACTIONS(948), + [anon_sym_DOT2] = ACTIONS(946), + [anon_sym_err_GT] = ACTIONS(946), + [anon_sym_out_GT] = ACTIONS(946), + [anon_sym_e_GT] = ACTIONS(946), + [anon_sym_o_GT] = ACTIONS(946), + [anon_sym_err_PLUSout_GT] = ACTIONS(946), + [anon_sym_out_PLUSerr_GT] = ACTIONS(946), + [anon_sym_o_PLUSe_GT] = ACTIONS(946), + [anon_sym_e_PLUSo_GT] = ACTIONS(946), + [anon_sym_err_GT_GT] = ACTIONS(948), + [anon_sym_out_GT_GT] = ACTIONS(948), + [anon_sym_e_GT_GT] = ACTIONS(948), + [anon_sym_o_GT_GT] = ACTIONS(948), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(948), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(948), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(948), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2003), }, - [1597] = { - [sym_comment] = STATE(1597), - [ts_builtin_sym_end] = ACTIONS(1717), - [sym__newline] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_err_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_GT_PIPE] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), - [anon_sym_GT2] = ACTIONS(1715), - [anon_sym_DASH2] = ACTIONS(1717), - [anon_sym_in2] = ACTIONS(1717), - [anon_sym_STAR2] = ACTIONS(1715), - [anon_sym_and2] = ACTIONS(1717), - [anon_sym_xor2] = ACTIONS(1717), - [anon_sym_or2] = ACTIONS(1717), - [anon_sym_not_DASHin2] = ACTIONS(1717), - [anon_sym_has2] = ACTIONS(1717), - [anon_sym_not_DASHhas2] = ACTIONS(1717), - [anon_sym_starts_DASHwith2] = ACTIONS(1717), - [anon_sym_ends_DASHwith2] = ACTIONS(1717), - [anon_sym_EQ_EQ2] = ACTIONS(1717), - [anon_sym_BANG_EQ2] = ACTIONS(1717), - [anon_sym_LT2] = ACTIONS(1715), - [anon_sym_LT_EQ2] = ACTIONS(1717), - [anon_sym_GT_EQ2] = ACTIONS(1717), - [anon_sym_EQ_TILDE2] = ACTIONS(1717), - [anon_sym_BANG_TILDE2] = ACTIONS(1717), - [anon_sym_LPAREN2] = ACTIONS(1717), - [anon_sym_STAR_STAR2] = ACTIONS(1717), - [anon_sym_PLUS_PLUS2] = ACTIONS(1717), - [anon_sym_SLASH2] = ACTIONS(1715), - [anon_sym_mod2] = ACTIONS(1717), - [anon_sym_SLASH_SLASH2] = ACTIONS(1717), - [anon_sym_PLUS2] = ACTIONS(1715), - [anon_sym_bit_DASHshl2] = ACTIONS(1717), - [anon_sym_bit_DASHshr2] = ACTIONS(1717), - [anon_sym_bit_DASHand2] = ACTIONS(1717), - [anon_sym_bit_DASHxor2] = ACTIONS(1717), - [anon_sym_bit_DASHor2] = ACTIONS(1717), - [anon_sym_DOT_DOT2] = ACTIONS(1715), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), - [sym_filesize_unit] = ACTIONS(1715), - [sym_duration_unit] = ACTIONS(1717), - [anon_sym_err_GT] = ACTIONS(1715), - [anon_sym_out_GT] = ACTIONS(1715), - [anon_sym_e_GT] = ACTIONS(1715), - [anon_sym_o_GT] = ACTIONS(1715), - [anon_sym_err_PLUSout_GT] = ACTIONS(1715), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), - [anon_sym_o_PLUSe_GT] = ACTIONS(1715), - [anon_sym_e_PLUSo_GT] = ACTIONS(1715), - [anon_sym_err_GT_GT] = ACTIONS(1717), - [anon_sym_out_GT_GT] = ACTIONS(1717), - [anon_sym_e_GT_GT] = ACTIONS(1717), - [anon_sym_o_GT_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), - [aux_sym_unquoted_token2] = ACTIONS(1715), + [1524] = { + [sym_comment] = STATE(1524), + [ts_builtin_sym_end] = ACTIONS(984), + [sym__newline] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_err_GT_PIPE] = ACTIONS(984), + [anon_sym_out_GT_PIPE] = ACTIONS(984), + [anon_sym_e_GT_PIPE] = ACTIONS(984), + [anon_sym_o_GT_PIPE] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), + [anon_sym_LBRACK] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(982), + [anon_sym_DASH_DASH] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_DOT_DOT2] = ACTIONS(982), + [anon_sym_DOT_DOT_EQ] = ACTIONS(982), + [anon_sym_DOT_DOT_LT] = ACTIONS(982), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), + [anon_sym_DOT_DOT_LT2] = ACTIONS(984), + [anon_sym_null] = ACTIONS(984), + [anon_sym_true] = ACTIONS(984), + [anon_sym_false] = ACTIONS(984), + [aux_sym__val_number_decimal_token1] = ACTIONS(982), + [aux_sym__val_number_decimal_token2] = ACTIONS(984), + [aux_sym__val_number_decimal_token3] = ACTIONS(984), + [aux_sym__val_number_decimal_token4] = ACTIONS(984), + [aux_sym__val_number_token1] = ACTIONS(984), + [aux_sym__val_number_token2] = ACTIONS(984), + [aux_sym__val_number_token3] = ACTIONS(984), + [aux_sym__val_number_token4] = ACTIONS(984), + [aux_sym__val_number_token5] = ACTIONS(984), + [aux_sym__val_number_token6] = ACTIONS(984), + [anon_sym_0b] = ACTIONS(982), + [anon_sym_0o] = ACTIONS(982), + [anon_sym_0x] = ACTIONS(982), + [sym_val_date] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(984), + [sym__str_single_quotes] = ACTIONS(984), + [sym__str_back_ticks] = ACTIONS(984), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(984), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(984), + [anon_sym_err_GT] = ACTIONS(982), + [anon_sym_out_GT] = ACTIONS(982), + [anon_sym_e_GT] = ACTIONS(982), + [anon_sym_o_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT] = ACTIONS(982), + [anon_sym_err_GT_GT] = ACTIONS(984), + [anon_sym_out_GT_GT] = ACTIONS(984), + [anon_sym_e_GT_GT] = ACTIONS(984), + [anon_sym_o_GT_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), + [aux_sym_unquoted_token1] = ACTIONS(982), [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(984), }, - [1598] = { - [sym_comment] = STATE(1598), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_DOT_DOT] = ACTIONS(1666), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT] = ACTIONS(1668), - [aux_sym__immediate_decimal_token2] = ACTIONS(4784), - [anon_sym_null] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1668), - [aux_sym__val_number_token5] = ACTIONS(1668), - [aux_sym__val_number_token6] = ACTIONS(1668), - [anon_sym_0b] = ACTIONS(1666), - [anon_sym_0o] = ACTIONS(1666), - [anon_sym_0x] = ACTIONS(1666), - [sym_val_date] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_err_GT] = ACTIONS(1666), - [anon_sym_out_GT] = ACTIONS(1666), - [anon_sym_e_GT] = ACTIONS(1666), - [anon_sym_o_GT] = ACTIONS(1666), - [anon_sym_err_PLUSout_GT] = ACTIONS(1666), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), - [anon_sym_o_PLUSe_GT] = ACTIONS(1666), - [anon_sym_e_PLUSo_GT] = ACTIONS(1666), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [aux_sym_unquoted_token1] = ACTIONS(1666), - [aux_sym_unquoted_token2] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), + [1525] = { + [sym_comment] = STATE(1525), + [sym__newline] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(952), + [anon_sym_PIPE] = ACTIONS(952), + [anon_sym_err_GT_PIPE] = ACTIONS(952), + [anon_sym_out_GT_PIPE] = ACTIONS(952), + [anon_sym_e_GT_PIPE] = ACTIONS(952), + [anon_sym_o_GT_PIPE] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(952), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_RPAREN] = ACTIONS(952), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_DASH2] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_DOT_DOT] = ACTIONS(950), + [anon_sym_QMARK2] = ACTIONS(952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(952), + [anon_sym_DOT_DOT_LT] = ACTIONS(952), + [anon_sym_null] = ACTIONS(952), + [anon_sym_true] = ACTIONS(952), + [anon_sym_false] = ACTIONS(952), + [aux_sym__val_number_decimal_token1] = ACTIONS(950), + [aux_sym__val_number_decimal_token2] = ACTIONS(952), + [aux_sym__val_number_decimal_token3] = ACTIONS(952), + [aux_sym__val_number_decimal_token4] = ACTIONS(952), + [aux_sym__val_number_token1] = ACTIONS(952), + [aux_sym__val_number_token2] = ACTIONS(952), + [aux_sym__val_number_token3] = ACTIONS(952), + [aux_sym__val_number_token4] = ACTIONS(952), + [aux_sym__val_number_token5] = ACTIONS(952), + [aux_sym__val_number_token6] = ACTIONS(952), + [anon_sym_0b] = ACTIONS(950), + [anon_sym_0o] = ACTIONS(950), + [anon_sym_0x] = ACTIONS(950), + [sym_val_date] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(952), + [sym__str_single_quotes] = ACTIONS(952), + [sym__str_back_ticks] = ACTIONS(952), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(952), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(952), + [anon_sym_DOT2] = ACTIONS(950), + [anon_sym_err_GT] = ACTIONS(950), + [anon_sym_out_GT] = ACTIONS(950), + [anon_sym_e_GT] = ACTIONS(950), + [anon_sym_o_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT] = ACTIONS(950), + [anon_sym_err_GT_GT] = ACTIONS(952), + [anon_sym_out_GT_GT] = ACTIONS(952), + [anon_sym_e_GT_GT] = ACTIONS(952), + [anon_sym_o_GT_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(952), + [aux_sym_unquoted_token1] = ACTIONS(950), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(952), }, - [1599] = { - [sym_comment] = STATE(1599), - [ts_builtin_sym_end] = ACTIONS(1668), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_DOT_DOT] = ACTIONS(1666), - [anon_sym_DOT_DOT2] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1666), - [anon_sym_DOT_DOT_LT] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [anon_sym_null] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1668), - [aux_sym__val_number_token5] = ACTIONS(1668), - [aux_sym__val_number_token6] = ACTIONS(1668), - [anon_sym_0b] = ACTIONS(1666), - [anon_sym_0o] = ACTIONS(1666), - [anon_sym_0x] = ACTIONS(1666), - [sym_val_date] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_err_GT] = ACTIONS(1666), - [anon_sym_out_GT] = ACTIONS(1666), - [anon_sym_e_GT] = ACTIONS(1666), - [anon_sym_o_GT] = ACTIONS(1666), - [anon_sym_err_PLUSout_GT] = ACTIONS(1666), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), - [anon_sym_o_PLUSe_GT] = ACTIONS(1666), - [anon_sym_e_PLUSo_GT] = ACTIONS(1666), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [aux_sym_unquoted_token1] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), + [1526] = { + [sym_comment] = STATE(1526), + [sym__newline] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_PIPE] = ACTIONS(2142), + [anon_sym_err_GT_PIPE] = ACTIONS(2142), + [anon_sym_out_GT_PIPE] = ACTIONS(2142), + [anon_sym_e_GT_PIPE] = ACTIONS(2142), + [anon_sym_o_GT_PIPE] = ACTIONS(2142), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2142), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2142), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2142), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_RPAREN] = ACTIONS(2142), + [anon_sym_DOLLAR] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2142), + [anon_sym_DASH2] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_DOT_DOT] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2142), + [anon_sym_DOT_DOT_LT] = ACTIONS(2142), + [anon_sym_null] = ACTIONS(2142), + [anon_sym_true] = ACTIONS(2142), + [anon_sym_false] = ACTIONS(2142), + [aux_sym__val_number_decimal_token1] = ACTIONS(2138), + [aux_sym__val_number_decimal_token2] = ACTIONS(2142), + [aux_sym__val_number_decimal_token3] = ACTIONS(2142), + [aux_sym__val_number_decimal_token4] = ACTIONS(2142), + [aux_sym__val_number_token1] = ACTIONS(2142), + [aux_sym__val_number_token2] = ACTIONS(2142), + [aux_sym__val_number_token3] = ACTIONS(2142), + [aux_sym__val_number_token4] = ACTIONS(2142), + [aux_sym__val_number_token5] = ACTIONS(2142), + [aux_sym__val_number_token6] = ACTIONS(2142), + [anon_sym_0b] = ACTIONS(2138), + [anon_sym_0o] = ACTIONS(2138), + [anon_sym_0x] = ACTIONS(2138), + [sym_val_date] = ACTIONS(2142), + [anon_sym_DQUOTE] = ACTIONS(2142), + [sym__str_single_quotes] = ACTIONS(2142), + [sym__str_back_ticks] = ACTIONS(2142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2142), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2142), + [anon_sym_err_GT] = ACTIONS(2138), + [anon_sym_out_GT] = ACTIONS(2138), + [anon_sym_e_GT] = ACTIONS(2138), + [anon_sym_o_GT] = ACTIONS(2138), + [anon_sym_err_PLUSout_GT] = ACTIONS(2138), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2138), + [anon_sym_o_PLUSe_GT] = ACTIONS(2138), + [anon_sym_e_PLUSo_GT] = ACTIONS(2138), + [anon_sym_err_GT_GT] = ACTIONS(2142), + [anon_sym_out_GT_GT] = ACTIONS(2142), + [anon_sym_e_GT_GT] = ACTIONS(2142), + [anon_sym_o_GT_GT] = ACTIONS(2142), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2142), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2142), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2142), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2142), + [aux_sym_unquoted_token1] = ACTIONS(2138), + [aux_sym_unquoted_token2] = ACTIONS(1477), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2142), }, - [1600] = { - [sym_comment] = STATE(1600), - [sym__newline] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(964), - [anon_sym_err_GT_PIPE] = ACTIONS(964), - [anon_sym_out_GT_PIPE] = ACTIONS(964), - [anon_sym_e_GT_PIPE] = ACTIONS(964), - [anon_sym_o_GT_PIPE] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), - [anon_sym_LBRACK] = ACTIONS(964), - [anon_sym_LPAREN] = ACTIONS(964), - [anon_sym_RPAREN] = ACTIONS(964), - [anon_sym_DOLLAR] = ACTIONS(962), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_DASH2] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_DOT_DOT] = ACTIONS(962), - [anon_sym_QMARK2] = ACTIONS(964), - [anon_sym_DOT_DOT_EQ] = ACTIONS(964), - [anon_sym_DOT_DOT_LT] = ACTIONS(964), - [anon_sym_null] = ACTIONS(964), - [anon_sym_true] = ACTIONS(964), - [anon_sym_false] = ACTIONS(964), - [aux_sym__val_number_decimal_token1] = ACTIONS(962), - [aux_sym__val_number_decimal_token2] = ACTIONS(964), - [aux_sym__val_number_decimal_token3] = ACTIONS(964), - [aux_sym__val_number_decimal_token4] = ACTIONS(964), - [aux_sym__val_number_token1] = ACTIONS(964), - [aux_sym__val_number_token2] = ACTIONS(964), - [aux_sym__val_number_token3] = ACTIONS(964), - [aux_sym__val_number_token4] = ACTIONS(964), - [aux_sym__val_number_token5] = ACTIONS(964), - [aux_sym__val_number_token6] = ACTIONS(964), - [anon_sym_0b] = ACTIONS(962), - [anon_sym_0o] = ACTIONS(962), - [anon_sym_0x] = ACTIONS(962), - [sym_val_date] = ACTIONS(964), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym__str_single_quotes] = ACTIONS(964), - [sym__str_back_ticks] = ACTIONS(964), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(964), - [anon_sym_DOT2] = ACTIONS(962), - [anon_sym_err_GT] = ACTIONS(962), - [anon_sym_out_GT] = ACTIONS(962), - [anon_sym_e_GT] = ACTIONS(962), - [anon_sym_o_GT] = ACTIONS(962), - [anon_sym_err_PLUSout_GT] = ACTIONS(962), - [anon_sym_out_PLUSerr_GT] = ACTIONS(962), - [anon_sym_o_PLUSe_GT] = ACTIONS(962), - [anon_sym_e_PLUSo_GT] = ACTIONS(962), - [anon_sym_err_GT_GT] = ACTIONS(964), - [anon_sym_out_GT_GT] = ACTIONS(964), - [anon_sym_e_GT_GT] = ACTIONS(964), - [anon_sym_o_GT_GT] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), - [aux_sym_unquoted_token1] = ACTIONS(962), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(964), + [1527] = { + [sym_comment] = STATE(1527), + [sym__newline] = ACTIONS(4815), + [anon_sym_SEMI] = ACTIONS(4815), + [anon_sym_PIPE] = ACTIONS(4815), + [anon_sym_err_GT_PIPE] = ACTIONS(4815), + [anon_sym_out_GT_PIPE] = ACTIONS(4815), + [anon_sym_e_GT_PIPE] = ACTIONS(4815), + [anon_sym_o_GT_PIPE] = ACTIONS(4815), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4815), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4815), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4815), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4815), + [anon_sym_LBRACK] = ACTIONS(4815), + [anon_sym_LPAREN] = ACTIONS(4815), + [anon_sym_RPAREN] = ACTIONS(4815), + [anon_sym_DOLLAR] = ACTIONS(4817), + [anon_sym_DASH_DASH] = ACTIONS(4817), + [anon_sym_DASH2] = ACTIONS(4817), + [anon_sym_LBRACE] = ACTIONS(4815), + [anon_sym_RBRACE] = ACTIONS(4815), + [anon_sym_DOT_DOT] = ACTIONS(4817), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4815), + [anon_sym_DOT_DOT_LT] = ACTIONS(4815), + [anon_sym_null] = ACTIONS(4817), + [anon_sym_true] = ACTIONS(4817), + [anon_sym_false] = ACTIONS(4817), + [aux_sym__val_number_decimal_token1] = ACTIONS(4817), + [aux_sym__val_number_decimal_token2] = ACTIONS(4817), + [aux_sym__val_number_decimal_token3] = ACTIONS(4815), + [aux_sym__val_number_decimal_token4] = ACTIONS(4815), + [aux_sym__val_number_token1] = ACTIONS(4817), + [aux_sym__val_number_token2] = ACTIONS(4817), + [aux_sym__val_number_token3] = ACTIONS(4817), + [aux_sym__val_number_token4] = ACTIONS(4817), + [aux_sym__val_number_token5] = ACTIONS(4817), + [aux_sym__val_number_token6] = ACTIONS(4817), + [anon_sym_0b] = ACTIONS(4817), + [anon_sym_0o] = ACTIONS(4817), + [anon_sym_0x] = ACTIONS(4817), + [sym_val_date] = ACTIONS(4817), + [anon_sym_DQUOTE] = ACTIONS(4815), + [sym__str_single_quotes] = ACTIONS(4815), + [sym__str_back_ticks] = ACTIONS(4815), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4815), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4815), + [anon_sym_err_GT] = ACTIONS(4817), + [anon_sym_out_GT] = ACTIONS(4817), + [anon_sym_e_GT] = ACTIONS(4817), + [anon_sym_o_GT] = ACTIONS(4817), + [anon_sym_err_PLUSout_GT] = ACTIONS(4817), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4817), + [anon_sym_o_PLUSe_GT] = ACTIONS(4817), + [anon_sym_e_PLUSo_GT] = ACTIONS(4817), + [anon_sym_err_GT_GT] = ACTIONS(4815), + [anon_sym_out_GT_GT] = ACTIONS(4815), + [anon_sym_e_GT_GT] = ACTIONS(4815), + [anon_sym_o_GT_GT] = ACTIONS(4815), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4815), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4815), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4815), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4815), + [anon_sym_EQ2] = ACTIONS(4819), + [sym_short_flag_identifier] = ACTIONS(4821), + [aux_sym_unquoted_token1] = ACTIONS(4817), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4815), }, - [1601] = { - [sym_comment] = STATE(1601), - [sym__newline] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_err_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_GT_PIPE] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_RPAREN] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DASH2] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT] = ACTIONS(1650), - [aux_sym__immediate_decimal_token1] = ACTIONS(4867), - [aux_sym__immediate_decimal_token2] = ACTIONS(4869), - [anon_sym_null] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [aux_sym__val_number_token4] = ACTIONS(1650), - [aux_sym__val_number_token5] = ACTIONS(1650), - [aux_sym__val_number_token6] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1648), - [anon_sym_0o] = ACTIONS(1648), - [anon_sym_0x] = ACTIONS(1648), - [sym_val_date] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_err_GT] = ACTIONS(1648), - [anon_sym_out_GT] = ACTIONS(1648), - [anon_sym_e_GT] = ACTIONS(1648), - [anon_sym_o_GT] = ACTIONS(1648), - [anon_sym_err_PLUSout_GT] = ACTIONS(1648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), - [anon_sym_o_PLUSe_GT] = ACTIONS(1648), - [anon_sym_e_PLUSo_GT] = ACTIONS(1648), - [anon_sym_err_GT_GT] = ACTIONS(1650), - [anon_sym_out_GT_GT] = ACTIONS(1650), - [anon_sym_e_GT_GT] = ACTIONS(1650), - [anon_sym_o_GT_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), - [aux_sym_unquoted_token1] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1650), + [1528] = { + [sym_comment] = STATE(1528), + [sym__newline] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_err_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_GT_PIPE] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_RPAREN] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1688), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_LPAREN2] = ACTIONS(1688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT] = ACTIONS(1688), + [anon_sym_null] = ACTIONS(1688), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1688), + [aux_sym__val_number_decimal_token3] = ACTIONS(1688), + [aux_sym__val_number_decimal_token4] = ACTIONS(1688), + [aux_sym__val_number_token1] = ACTIONS(1688), + [aux_sym__val_number_token2] = ACTIONS(1688), + [aux_sym__val_number_token3] = ACTIONS(1688), + [aux_sym__val_number_token4] = ACTIONS(1688), + [aux_sym__val_number_token5] = ACTIONS(1688), + [aux_sym__val_number_token6] = ACTIONS(1688), + [anon_sym_0b] = ACTIONS(1686), + [anon_sym_0o] = ACTIONS(1686), + [anon_sym_0x] = ACTIONS(1686), + [sym_val_date] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [sym__str_single_quotes] = ACTIONS(1688), + [sym__str_back_ticks] = ACTIONS(1688), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1688), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1688), + [anon_sym_err_GT] = ACTIONS(1686), + [anon_sym_out_GT] = ACTIONS(1686), + [anon_sym_e_GT] = ACTIONS(1686), + [anon_sym_o_GT] = ACTIONS(1686), + [anon_sym_err_PLUSout_GT] = ACTIONS(1686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1686), + [anon_sym_o_PLUSe_GT] = ACTIONS(1686), + [anon_sym_e_PLUSo_GT] = ACTIONS(1686), + [anon_sym_err_GT_GT] = ACTIONS(1688), + [anon_sym_out_GT_GT] = ACTIONS(1688), + [anon_sym_e_GT_GT] = ACTIONS(1688), + [anon_sym_o_GT_GT] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1688), + [aux_sym_unquoted_token1] = ACTIONS(1686), + [aux_sym_unquoted_token2] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1688), }, - [1602] = { - [sym_comment] = STATE(1602), + [1529] = { + [sym_path] = STATE(1692), + [sym_comment] = STATE(1529), + [aux_sym_cell_path_repeat1] = STATE(1529), + [ts_builtin_sym_end] = ACTIONS(933), + [sym__newline] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_PIPE] = ACTIONS(933), + [anon_sym_err_GT_PIPE] = ACTIONS(933), + [anon_sym_out_GT_PIPE] = ACTIONS(933), + [anon_sym_e_GT_PIPE] = ACTIONS(933), + [anon_sym_o_GT_PIPE] = ACTIONS(933), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(933), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(933), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(933), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(933), + [anon_sym_GT2] = ACTIONS(931), + [anon_sym_DASH2] = ACTIONS(933), + [anon_sym_in2] = ACTIONS(933), + [anon_sym_STAR2] = ACTIONS(931), + [anon_sym_and2] = ACTIONS(933), + [anon_sym_xor2] = ACTIONS(933), + [anon_sym_or2] = ACTIONS(933), + [anon_sym_not_DASHin2] = ACTIONS(933), + [anon_sym_has2] = ACTIONS(933), + [anon_sym_not_DASHhas2] = ACTIONS(933), + [anon_sym_starts_DASHwith2] = ACTIONS(933), + [anon_sym_ends_DASHwith2] = ACTIONS(933), + [anon_sym_EQ_EQ2] = ACTIONS(933), + [anon_sym_BANG_EQ2] = ACTIONS(933), + [anon_sym_LT2] = ACTIONS(931), + [anon_sym_LT_EQ2] = ACTIONS(933), + [anon_sym_GT_EQ2] = ACTIONS(933), + [anon_sym_EQ_TILDE2] = ACTIONS(933), + [anon_sym_BANG_TILDE2] = ACTIONS(933), + [anon_sym_STAR_STAR2] = ACTIONS(933), + [anon_sym_PLUS_PLUS2] = ACTIONS(933), + [anon_sym_SLASH2] = ACTIONS(931), + [anon_sym_mod2] = ACTIONS(933), + [anon_sym_SLASH_SLASH2] = ACTIONS(933), + [anon_sym_PLUS2] = ACTIONS(931), + [anon_sym_bit_DASHshl2] = ACTIONS(933), + [anon_sym_bit_DASHshr2] = ACTIONS(933), + [anon_sym_bit_DASHand2] = ACTIONS(933), + [anon_sym_bit_DASHxor2] = ACTIONS(933), + [anon_sym_bit_DASHor2] = ACTIONS(933), + [anon_sym_DOT_DOT2] = ACTIONS(931), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(933), + [anon_sym_DOT_DOT_LT2] = ACTIONS(933), + [anon_sym_DOT2] = ACTIONS(4823), + [anon_sym_err_GT] = ACTIONS(931), + [anon_sym_out_GT] = ACTIONS(931), + [anon_sym_e_GT] = ACTIONS(931), + [anon_sym_o_GT] = ACTIONS(931), + [anon_sym_err_PLUSout_GT] = ACTIONS(931), + [anon_sym_out_PLUSerr_GT] = ACTIONS(931), + [anon_sym_o_PLUSe_GT] = ACTIONS(931), + [anon_sym_e_PLUSo_GT] = ACTIONS(931), + [anon_sym_err_GT_GT] = ACTIONS(933), + [anon_sym_out_GT_GT] = ACTIONS(933), + [anon_sym_e_GT_GT] = ACTIONS(933), + [anon_sym_o_GT_GT] = ACTIONS(933), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(933), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(933), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(933), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(933), + [anon_sym_POUND] = ACTIONS(245), + }, + [1530] = { + [sym_path] = STATE(1692), + [sym_comment] = STATE(1530), + [aux_sym_cell_path_repeat1] = STATE(1529), + [ts_builtin_sym_end] = ACTIONS(940), + [sym__newline] = ACTIONS(940), + [anon_sym_SEMI] = ACTIONS(940), + [anon_sym_PIPE] = ACTIONS(940), + [anon_sym_err_GT_PIPE] = ACTIONS(940), + [anon_sym_out_GT_PIPE] = ACTIONS(940), + [anon_sym_e_GT_PIPE] = ACTIONS(940), + [anon_sym_o_GT_PIPE] = ACTIONS(940), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(940), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(940), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(940), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(940), + [anon_sym_GT2] = ACTIONS(938), + [anon_sym_DASH2] = ACTIONS(940), + [anon_sym_in2] = ACTIONS(940), + [anon_sym_STAR2] = ACTIONS(938), + [anon_sym_and2] = ACTIONS(940), + [anon_sym_xor2] = ACTIONS(940), + [anon_sym_or2] = ACTIONS(940), + [anon_sym_not_DASHin2] = ACTIONS(940), + [anon_sym_has2] = ACTIONS(940), + [anon_sym_not_DASHhas2] = ACTIONS(940), + [anon_sym_starts_DASHwith2] = ACTIONS(940), + [anon_sym_ends_DASHwith2] = ACTIONS(940), + [anon_sym_EQ_EQ2] = ACTIONS(940), + [anon_sym_BANG_EQ2] = ACTIONS(940), + [anon_sym_LT2] = ACTIONS(938), + [anon_sym_LT_EQ2] = ACTIONS(940), + [anon_sym_GT_EQ2] = ACTIONS(940), + [anon_sym_EQ_TILDE2] = ACTIONS(940), + [anon_sym_BANG_TILDE2] = ACTIONS(940), + [anon_sym_STAR_STAR2] = ACTIONS(940), + [anon_sym_PLUS_PLUS2] = ACTIONS(940), + [anon_sym_SLASH2] = ACTIONS(938), + [anon_sym_mod2] = ACTIONS(940), + [anon_sym_SLASH_SLASH2] = ACTIONS(940), + [anon_sym_PLUS2] = ACTIONS(938), + [anon_sym_bit_DASHshl2] = ACTIONS(940), + [anon_sym_bit_DASHshr2] = ACTIONS(940), + [anon_sym_bit_DASHand2] = ACTIONS(940), + [anon_sym_bit_DASHxor2] = ACTIONS(940), + [anon_sym_bit_DASHor2] = ACTIONS(940), + [anon_sym_DOT_DOT2] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(940), + [anon_sym_DOT_DOT_LT2] = ACTIONS(940), + [anon_sym_DOT2] = ACTIONS(4792), + [anon_sym_err_GT] = ACTIONS(938), + [anon_sym_out_GT] = ACTIONS(938), + [anon_sym_e_GT] = ACTIONS(938), + [anon_sym_o_GT] = ACTIONS(938), + [anon_sym_err_PLUSout_GT] = ACTIONS(938), + [anon_sym_out_PLUSerr_GT] = ACTIONS(938), + [anon_sym_o_PLUSe_GT] = ACTIONS(938), + [anon_sym_e_PLUSo_GT] = ACTIONS(938), + [anon_sym_err_GT_GT] = ACTIONS(940), + [anon_sym_out_GT_GT] = ACTIONS(940), + [anon_sym_e_GT_GT] = ACTIONS(940), + [anon_sym_o_GT_GT] = ACTIONS(940), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(940), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(940), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(940), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(940), + [anon_sym_POUND] = ACTIONS(245), + }, + [1531] = { + [sym__expr_parenthesized_immediate] = STATE(7173), + [sym_comment] = STATE(1531), + [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(4828), + [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_LPAREN2] = ACTIONS(4208), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4826), + [anon_sym_DOT_DOT_LT] = ACTIONS(4826), + [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(245), + [sym_raw_string_begin] = ACTIONS(4826), + }, + [1532] = { + [sym_comment] = STATE(1532), + [ts_builtin_sym_end] = ACTIONS(952), + [sym__newline] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(952), + [anon_sym_PIPE] = ACTIONS(952), + [anon_sym_err_GT_PIPE] = ACTIONS(952), + [anon_sym_out_GT_PIPE] = ACTIONS(952), + [anon_sym_e_GT_PIPE] = ACTIONS(952), + [anon_sym_o_GT_PIPE] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(952), + [anon_sym_GT2] = ACTIONS(950), + [anon_sym_DASH2] = ACTIONS(952), + [anon_sym_in2] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_STAR2] = ACTIONS(950), + [anon_sym_QMARK2] = ACTIONS(952), + [anon_sym_and2] = ACTIONS(952), + [anon_sym_xor2] = ACTIONS(952), + [anon_sym_or2] = ACTIONS(952), + [anon_sym_not_DASHin2] = ACTIONS(952), + [anon_sym_has2] = ACTIONS(952), + [anon_sym_not_DASHhas2] = ACTIONS(952), + [anon_sym_starts_DASHwith2] = ACTIONS(952), + [anon_sym_ends_DASHwith2] = ACTIONS(952), + [anon_sym_EQ_EQ2] = ACTIONS(952), + [anon_sym_BANG_EQ2] = ACTIONS(952), + [anon_sym_LT2] = ACTIONS(950), + [anon_sym_LT_EQ2] = ACTIONS(952), + [anon_sym_GT_EQ2] = ACTIONS(952), + [anon_sym_EQ_TILDE2] = ACTIONS(952), + [anon_sym_BANG_TILDE2] = ACTIONS(952), + [anon_sym_STAR_STAR2] = ACTIONS(952), + [anon_sym_PLUS_PLUS2] = ACTIONS(952), + [anon_sym_SLASH2] = ACTIONS(950), + [anon_sym_mod2] = ACTIONS(952), + [anon_sym_SLASH_SLASH2] = ACTIONS(952), + [anon_sym_PLUS2] = ACTIONS(950), + [anon_sym_bit_DASHshl2] = ACTIONS(952), + [anon_sym_bit_DASHshr2] = ACTIONS(952), + [anon_sym_bit_DASHand2] = ACTIONS(952), + [anon_sym_bit_DASHxor2] = ACTIONS(952), + [anon_sym_bit_DASHor2] = ACTIONS(952), + [anon_sym_DOT_DOT2] = ACTIONS(950), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(952), + [anon_sym_DOT_DOT_LT2] = ACTIONS(952), + [anon_sym_DOT2] = ACTIONS(950), + [anon_sym_err_GT] = ACTIONS(950), + [anon_sym_out_GT] = ACTIONS(950), + [anon_sym_e_GT] = ACTIONS(950), + [anon_sym_o_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT] = ACTIONS(950), + [anon_sym_err_GT_GT] = ACTIONS(952), + [anon_sym_out_GT_GT] = ACTIONS(952), + [anon_sym_e_GT_GT] = ACTIONS(952), + [anon_sym_o_GT_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(952), + [anon_sym_POUND] = ACTIONS(245), + }, + [1533] = { + [sym__expr_parenthesized_immediate] = STATE(7173), + [sym_comment] = STATE(1533), + [sym__newline] = ACTIONS(4830), + [anon_sym_SEMI] = ACTIONS(4830), + [anon_sym_PIPE] = ACTIONS(4830), + [anon_sym_err_GT_PIPE] = ACTIONS(4830), + [anon_sym_out_GT_PIPE] = ACTIONS(4830), + [anon_sym_e_GT_PIPE] = ACTIONS(4830), + [anon_sym_o_GT_PIPE] = ACTIONS(4830), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4830), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4830), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4830), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4830), + [anon_sym_LBRACK] = ACTIONS(4830), + [anon_sym_LPAREN] = ACTIONS(4832), + [anon_sym_RPAREN] = ACTIONS(4830), + [anon_sym_DOLLAR] = ACTIONS(4832), + [anon_sym_DASH_DASH] = ACTIONS(4830), + [anon_sym_DASH2] = ACTIONS(4832), + [anon_sym_LBRACE] = ACTIONS(4830), + [anon_sym_RBRACE] = ACTIONS(4830), + [anon_sym_DOT_DOT] = ACTIONS(4832), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4830), + [anon_sym_DOT_DOT_LT] = ACTIONS(4830), + [anon_sym_null] = ACTIONS(4830), + [anon_sym_true] = ACTIONS(4830), + [anon_sym_false] = ACTIONS(4830), + [aux_sym__val_number_decimal_token1] = ACTIONS(4832), + [aux_sym__val_number_decimal_token2] = ACTIONS(4830), + [aux_sym__val_number_decimal_token3] = ACTIONS(4830), + [aux_sym__val_number_decimal_token4] = ACTIONS(4830), + [aux_sym__val_number_token1] = ACTIONS(4830), + [aux_sym__val_number_token2] = ACTIONS(4830), + [aux_sym__val_number_token3] = ACTIONS(4830), + [aux_sym__val_number_token4] = ACTIONS(4830), + [aux_sym__val_number_token5] = ACTIONS(4830), + [aux_sym__val_number_token6] = ACTIONS(4830), + [anon_sym_0b] = ACTIONS(4832), + [anon_sym_0o] = ACTIONS(4832), + [anon_sym_0x] = ACTIONS(4832), + [sym_val_date] = ACTIONS(4830), + [anon_sym_DQUOTE] = ACTIONS(4830), + [sym__str_single_quotes] = ACTIONS(4830), + [sym__str_back_ticks] = ACTIONS(4830), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4830), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4830), + [anon_sym_err_GT] = ACTIONS(4832), + [anon_sym_out_GT] = ACTIONS(4832), + [anon_sym_e_GT] = ACTIONS(4832), + [anon_sym_o_GT] = ACTIONS(4832), + [anon_sym_err_PLUSout_GT] = ACTIONS(4832), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4832), + [anon_sym_o_PLUSe_GT] = ACTIONS(4832), + [anon_sym_e_PLUSo_GT] = ACTIONS(4832), + [anon_sym_err_GT_GT] = ACTIONS(4830), + [anon_sym_out_GT_GT] = ACTIONS(4830), + [anon_sym_e_GT_GT] = ACTIONS(4830), + [anon_sym_o_GT_GT] = ACTIONS(4830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4830), + [aux_sym_unquoted_token1] = ACTIONS(4832), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4830), + }, + [1534] = { + [sym_comment] = STATE(1534), + [ts_builtin_sym_end] = ACTIONS(1947), + [sym__newline] = ACTIONS(1947), + [anon_sym_SEMI] = ACTIONS(1947), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_err_GT_PIPE] = ACTIONS(1947), + [anon_sym_out_GT_PIPE] = ACTIONS(1947), + [anon_sym_e_GT_PIPE] = ACTIONS(1947), + [anon_sym_o_GT_PIPE] = ACTIONS(1947), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1947), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1947), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1947), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_DOLLAR] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1947), + [anon_sym_DASH2] = ACTIONS(1945), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1945), + [anon_sym_DOT_DOT2] = ACTIONS(1945), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), + [anon_sym_DOT_DOT_LT] = ACTIONS(1945), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1947), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1947), + [anon_sym_null] = ACTIONS(1947), + [anon_sym_true] = ACTIONS(1947), + [anon_sym_false] = ACTIONS(1947), + [aux_sym__val_number_decimal_token1] = ACTIONS(1945), + [aux_sym__val_number_decimal_token2] = ACTIONS(1947), + [aux_sym__val_number_decimal_token3] = ACTIONS(1947), + [aux_sym__val_number_decimal_token4] = ACTIONS(1947), + [aux_sym__val_number_token1] = ACTIONS(1947), + [aux_sym__val_number_token2] = ACTIONS(1947), + [aux_sym__val_number_token3] = ACTIONS(1947), + [aux_sym__val_number_token4] = ACTIONS(1947), + [aux_sym__val_number_token5] = ACTIONS(1947), + [aux_sym__val_number_token6] = ACTIONS(1947), + [anon_sym_0b] = ACTIONS(1945), + [anon_sym_0o] = ACTIONS(1945), + [anon_sym_0x] = ACTIONS(1945), + [sym_val_date] = ACTIONS(1947), + [anon_sym_DQUOTE] = ACTIONS(1947), + [sym__str_single_quotes] = ACTIONS(1947), + [sym__str_back_ticks] = ACTIONS(1947), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1947), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1947), + [anon_sym_err_GT] = ACTIONS(1945), + [anon_sym_out_GT] = ACTIONS(1945), + [anon_sym_e_GT] = ACTIONS(1945), + [anon_sym_o_GT] = ACTIONS(1945), + [anon_sym_err_PLUSout_GT] = ACTIONS(1945), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1945), + [anon_sym_o_PLUSe_GT] = ACTIONS(1945), + [anon_sym_e_PLUSo_GT] = ACTIONS(1945), + [anon_sym_err_GT_GT] = ACTIONS(1947), + [anon_sym_out_GT_GT] = ACTIONS(1947), + [anon_sym_e_GT_GT] = ACTIONS(1947), + [anon_sym_o_GT_GT] = ACTIONS(1947), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1947), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1947), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1947), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1947), + [aux_sym_unquoted_token1] = ACTIONS(1945), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1947), + }, + [1535] = { + [sym_comment] = STATE(1535), + [sym__newline] = ACTIONS(2148), + [anon_sym_SEMI] = ACTIONS(2148), + [anon_sym_PIPE] = ACTIONS(2148), + [anon_sym_err_GT_PIPE] = ACTIONS(2148), + [anon_sym_out_GT_PIPE] = ACTIONS(2148), + [anon_sym_e_GT_PIPE] = ACTIONS(2148), + [anon_sym_o_GT_PIPE] = ACTIONS(2148), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2148), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2148), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2148), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_LPAREN] = ACTIONS(2144), + [anon_sym_RPAREN] = ACTIONS(2148), + [anon_sym_DOLLAR] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2148), + [anon_sym_DASH2] = ACTIONS(2144), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_RBRACE] = ACTIONS(2148), + [anon_sym_DOT_DOT] = ACTIONS(2144), + [anon_sym_LPAREN2] = ACTIONS(2146), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2148), + [anon_sym_DOT_DOT_LT] = ACTIONS(2148), + [anon_sym_null] = ACTIONS(2148), + [anon_sym_true] = ACTIONS(2148), + [anon_sym_false] = ACTIONS(2148), + [aux_sym__val_number_decimal_token1] = ACTIONS(2144), + [aux_sym__val_number_decimal_token2] = ACTIONS(2148), + [aux_sym__val_number_decimal_token3] = ACTIONS(2148), + [aux_sym__val_number_decimal_token4] = ACTIONS(2148), + [aux_sym__val_number_token1] = ACTIONS(2148), + [aux_sym__val_number_token2] = ACTIONS(2148), + [aux_sym__val_number_token3] = ACTIONS(2148), + [aux_sym__val_number_token4] = ACTIONS(2148), + [aux_sym__val_number_token5] = ACTIONS(2148), + [aux_sym__val_number_token6] = ACTIONS(2148), + [anon_sym_0b] = ACTIONS(2144), + [anon_sym_0o] = ACTIONS(2144), + [anon_sym_0x] = ACTIONS(2144), + [sym_val_date] = ACTIONS(2148), + [anon_sym_DQUOTE] = ACTIONS(2148), + [sym__str_single_quotes] = ACTIONS(2148), + [sym__str_back_ticks] = ACTIONS(2148), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2148), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2148), + [anon_sym_err_GT] = ACTIONS(2144), + [anon_sym_out_GT] = ACTIONS(2144), + [anon_sym_e_GT] = ACTIONS(2144), + [anon_sym_o_GT] = ACTIONS(2144), + [anon_sym_err_PLUSout_GT] = ACTIONS(2144), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2144), + [anon_sym_o_PLUSe_GT] = ACTIONS(2144), + [anon_sym_e_PLUSo_GT] = ACTIONS(2144), + [anon_sym_err_GT_GT] = ACTIONS(2148), + [anon_sym_out_GT_GT] = ACTIONS(2148), + [anon_sym_e_GT_GT] = ACTIONS(2148), + [anon_sym_o_GT_GT] = ACTIONS(2148), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2148), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2148), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2148), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2148), + [aux_sym_unquoted_token1] = ACTIONS(2144), + [aux_sym_unquoted_token2] = ACTIONS(2150), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2148), + }, + [1536] = { + [sym_comment] = STATE(1536), + [ts_builtin_sym_end] = ACTIONS(1762), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(4834), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1762), + [aux_sym__val_number_token5] = ACTIONS(1762), + [aux_sym__val_number_token6] = ACTIONS(1762), + [anon_sym_0b] = ACTIONS(1760), + [anon_sym_0o] = ACTIONS(1760), + [anon_sym_0x] = ACTIONS(1760), + [sym_val_date] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token1] = ACTIONS(1760), + [aux_sym_unquoted_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1762), + }, + [1537] = { + [sym_comment] = STATE(1537), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(4836), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4838), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [1538] = { + [sym_comment] = STATE(1538), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4801), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [1539] = { + [sym_comment] = STATE(1539), [sym__newline] = ACTIONS(994), [anon_sym_SEMI] = ACTIONS(994), [anon_sym_PIPE] = ACTIONS(994), @@ -224557,7 +217481,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(994), [anon_sym_RBRACE] = ACTIONS(994), [anon_sym_DOT_DOT] = ACTIONS(998), - [anon_sym_LPAREN2] = ACTIONS(2190), + [anon_sym_LPAREN2] = ACTIONS(2104), [anon_sym_DOT_DOT_EQ] = ACTIONS(998), [anon_sym_DOT_DOT_LT] = ACTIONS(998), [anon_sym_null] = ACTIONS(998), @@ -224599,896 +217523,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), [aux_sym_unquoted_token1] = ACTIONS(998), - [aux_sym_unquoted_token4] = ACTIONS(2192), + [aux_sym_unquoted_token4] = ACTIONS(2106), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(994), }, - [1603] = { - [sym_comment] = STATE(1603), - [sym__newline] = ACTIONS(1786), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1786), - [anon_sym_err_GT_PIPE] = ACTIONS(1786), - [anon_sym_out_GT_PIPE] = ACTIONS(1786), - [anon_sym_e_GT_PIPE] = ACTIONS(1786), - [anon_sym_o_GT_PIPE] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1786), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_DOLLAR] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_DASH2] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_DOT_DOT] = ACTIONS(1778), - [anon_sym_LPAREN2] = ACTIONS(1780), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), - [anon_sym_DOT_DOT_LT] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1786), - [anon_sym_false] = ACTIONS(1786), - [aux_sym__val_number_decimal_token1] = ACTIONS(1778), - [aux_sym__val_number_decimal_token2] = ACTIONS(1786), - [aux_sym__val_number_decimal_token3] = ACTIONS(1786), - [aux_sym__val_number_decimal_token4] = ACTIONS(1786), - [aux_sym__val_number_token1] = ACTIONS(1786), - [aux_sym__val_number_token2] = ACTIONS(1786), - [aux_sym__val_number_token3] = ACTIONS(1786), - [aux_sym__val_number_token4] = ACTIONS(1786), - [aux_sym__val_number_token5] = ACTIONS(1786), - [aux_sym__val_number_token6] = ACTIONS(1786), - [anon_sym_0b] = ACTIONS(1778), - [anon_sym_0o] = ACTIONS(1778), - [anon_sym_0x] = ACTIONS(1778), - [sym_val_date] = ACTIONS(1786), - [anon_sym_DQUOTE] = ACTIONS(1786), - [sym__str_single_quotes] = ACTIONS(1786), - [sym__str_back_ticks] = ACTIONS(1786), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1786), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1786), - [anon_sym_err_GT] = ACTIONS(1778), - [anon_sym_out_GT] = ACTIONS(1778), - [anon_sym_e_GT] = ACTIONS(1778), - [anon_sym_o_GT] = ACTIONS(1778), - [anon_sym_err_PLUSout_GT] = ACTIONS(1778), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1778), - [anon_sym_o_PLUSe_GT] = ACTIONS(1778), - [anon_sym_e_PLUSo_GT] = ACTIONS(1778), - [anon_sym_err_GT_GT] = ACTIONS(1786), - [anon_sym_out_GT_GT] = ACTIONS(1786), - [anon_sym_e_GT_GT] = ACTIONS(1786), - [anon_sym_o_GT_GT] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1786), - [aux_sym_unquoted_token1] = ACTIONS(1778), - [aux_sym_unquoted_token2] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1786), - }, - [1604] = { - [sym_comment] = STATE(1604), - [sym_long_flag_identifier] = ACTIONS(4871), - [sym__newline] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4873), - [anon_sym_PIPE] = ACTIONS(4873), - [anon_sym_err_GT_PIPE] = ACTIONS(4873), - [anon_sym_out_GT_PIPE] = ACTIONS(4873), - [anon_sym_e_GT_PIPE] = ACTIONS(4873), - [anon_sym_o_GT_PIPE] = ACTIONS(4873), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4873), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4873), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4873), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4873), - [anon_sym_LBRACK] = ACTIONS(4873), - [anon_sym_LPAREN] = ACTIONS(4873), - [anon_sym_RPAREN] = ACTIONS(4873), - [anon_sym_DOLLAR] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4873), - [anon_sym_DASH2] = ACTIONS(4875), - [anon_sym_LBRACE] = ACTIONS(4873), - [anon_sym_RBRACE] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4873), - [anon_sym_DOT_DOT_LT] = ACTIONS(4873), - [anon_sym_null] = ACTIONS(4875), - [anon_sym_true] = ACTIONS(4875), - [anon_sym_false] = ACTIONS(4875), - [aux_sym__val_number_decimal_token1] = ACTIONS(4875), - [aux_sym__val_number_decimal_token2] = ACTIONS(4873), - [aux_sym__val_number_decimal_token3] = ACTIONS(4873), - [aux_sym__val_number_decimal_token4] = ACTIONS(4873), - [aux_sym__val_number_token1] = ACTIONS(4875), - [aux_sym__val_number_token2] = ACTIONS(4875), - [aux_sym__val_number_token3] = ACTIONS(4875), - [aux_sym__val_number_token4] = ACTIONS(4875), - [aux_sym__val_number_token5] = ACTIONS(4873), - [aux_sym__val_number_token6] = ACTIONS(4875), - [anon_sym_0b] = ACTIONS(4875), - [anon_sym_0o] = ACTIONS(4875), - [anon_sym_0x] = ACTIONS(4875), - [sym_val_date] = ACTIONS(4875), - [anon_sym_DQUOTE] = ACTIONS(4873), - [sym__str_single_quotes] = ACTIONS(4873), - [sym__str_back_ticks] = ACTIONS(4873), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4873), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4873), - [anon_sym_err_GT] = ACTIONS(4875), - [anon_sym_out_GT] = ACTIONS(4875), - [anon_sym_e_GT] = ACTIONS(4875), - [anon_sym_o_GT] = ACTIONS(4875), - [anon_sym_err_PLUSout_GT] = ACTIONS(4875), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4875), - [anon_sym_o_PLUSe_GT] = ACTIONS(4875), - [anon_sym_e_PLUSo_GT] = ACTIONS(4875), - [anon_sym_err_GT_GT] = ACTIONS(4873), - [anon_sym_out_GT_GT] = ACTIONS(4873), - [anon_sym_e_GT_GT] = ACTIONS(4873), - [anon_sym_o_GT_GT] = ACTIONS(4873), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4873), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4873), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4873), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4873), - [anon_sym_EQ2] = ACTIONS(4877), - [aux_sym_unquoted_token1] = ACTIONS(4875), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(4873), - }, - [1605] = { - [sym_comment] = STATE(1605), - [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(1719), - [anon_sym_DASH2] = ACTIONS(1721), - [anon_sym_in2] = ACTIONS(1721), - [anon_sym_STAR2] = ACTIONS(1719), - [anon_sym_and2] = ACTIONS(1721), - [anon_sym_xor2] = ACTIONS(1721), - [anon_sym_or2] = ACTIONS(1721), - [anon_sym_not_DASHin2] = ACTIONS(1721), - [anon_sym_has2] = ACTIONS(1721), - [anon_sym_not_DASHhas2] = 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(1719), - [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(1721), - [anon_sym_STAR_STAR2] = ACTIONS(1721), - [anon_sym_PLUS_PLUS2] = ACTIONS(1721), - [anon_sym_SLASH2] = ACTIONS(1719), - [anon_sym_mod2] = ACTIONS(1721), - [anon_sym_SLASH_SLASH2] = ACTIONS(1721), - [anon_sym_PLUS2] = ACTIONS(1719), - [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(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1721), - [aux_sym__immediate_decimal_token2] = ACTIONS(4879), - [anon_sym_err_GT] = ACTIONS(1719), - [anon_sym_out_GT] = ACTIONS(1719), - [anon_sym_e_GT] = ACTIONS(1719), - [anon_sym_o_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT] = ACTIONS(1719), - [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(1719), - [anon_sym_POUND] = ACTIONS(245), - }, - [1606] = { - [sym_comment] = STATE(1606), - [ts_builtin_sym_end] = ACTIONS(1650), - [sym__newline] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_err_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_GT_PIPE] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DASH2] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1648), - [anon_sym_DOT_DOT_LT] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [aux_sym__val_number_token4] = ACTIONS(1650), - [aux_sym__val_number_token5] = ACTIONS(1650), - [aux_sym__val_number_token6] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1648), - [anon_sym_0o] = ACTIONS(1648), - [anon_sym_0x] = ACTIONS(1648), - [sym_val_date] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_err_GT] = ACTIONS(1648), - [anon_sym_out_GT] = ACTIONS(1648), - [anon_sym_e_GT] = ACTIONS(1648), - [anon_sym_o_GT] = ACTIONS(1648), - [anon_sym_err_PLUSout_GT] = ACTIONS(1648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), - [anon_sym_o_PLUSe_GT] = ACTIONS(1648), - [anon_sym_e_PLUSo_GT] = ACTIONS(1648), - [anon_sym_err_GT_GT] = ACTIONS(1650), - [anon_sym_out_GT_GT] = ACTIONS(1650), - [anon_sym_e_GT_GT] = ACTIONS(1650), - [anon_sym_o_GT_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), - [aux_sym_unquoted_token1] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1650), - }, - [1607] = { - [sym_comment] = STATE(1607), - [sym__newline] = ACTIONS(4881), - [anon_sym_SEMI] = ACTIONS(4881), - [anon_sym_PIPE] = ACTIONS(4881), - [anon_sym_err_GT_PIPE] = ACTIONS(4881), - [anon_sym_out_GT_PIPE] = ACTIONS(4881), - [anon_sym_e_GT_PIPE] = ACTIONS(4881), - [anon_sym_o_GT_PIPE] = ACTIONS(4881), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4881), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4881), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4881), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4881), - [anon_sym_LBRACK] = ACTIONS(4881), - [anon_sym_LPAREN] = ACTIONS(4881), - [anon_sym_RPAREN] = ACTIONS(4881), - [anon_sym_DOLLAR] = ACTIONS(4883), - [anon_sym_DASH_DASH] = ACTIONS(4883), - [anon_sym_DASH2] = ACTIONS(4883), - [anon_sym_LBRACE] = ACTIONS(4881), - [anon_sym_RBRACE] = ACTIONS(4881), - [anon_sym_DOT_DOT] = ACTIONS(4883), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4881), - [anon_sym_DOT_DOT_LT] = ACTIONS(4881), - [anon_sym_null] = ACTIONS(4883), - [anon_sym_true] = ACTIONS(4883), - [anon_sym_false] = ACTIONS(4883), - [aux_sym__val_number_decimal_token1] = ACTIONS(4883), - [aux_sym__val_number_decimal_token2] = ACTIONS(4883), - [aux_sym__val_number_decimal_token3] = ACTIONS(4881), - [aux_sym__val_number_decimal_token4] = ACTIONS(4881), - [aux_sym__val_number_token1] = ACTIONS(4883), - [aux_sym__val_number_token2] = ACTIONS(4883), - [aux_sym__val_number_token3] = ACTIONS(4883), - [aux_sym__val_number_token4] = ACTIONS(4883), - [aux_sym__val_number_token5] = ACTIONS(4883), - [aux_sym__val_number_token6] = ACTIONS(4883), - [anon_sym_0b] = ACTIONS(4883), - [anon_sym_0o] = ACTIONS(4883), - [anon_sym_0x] = ACTIONS(4883), - [sym_val_date] = ACTIONS(4883), - [anon_sym_DQUOTE] = ACTIONS(4881), - [sym__str_single_quotes] = ACTIONS(4881), - [sym__str_back_ticks] = ACTIONS(4881), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4881), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4881), - [anon_sym_err_GT] = ACTIONS(4883), - [anon_sym_out_GT] = ACTIONS(4883), - [anon_sym_e_GT] = ACTIONS(4883), - [anon_sym_o_GT] = ACTIONS(4883), - [anon_sym_err_PLUSout_GT] = ACTIONS(4883), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4883), - [anon_sym_o_PLUSe_GT] = ACTIONS(4883), - [anon_sym_e_PLUSo_GT] = ACTIONS(4883), - [anon_sym_err_GT_GT] = ACTIONS(4881), - [anon_sym_out_GT_GT] = ACTIONS(4881), - [anon_sym_e_GT_GT] = ACTIONS(4881), - [anon_sym_o_GT_GT] = ACTIONS(4881), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4881), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4881), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4881), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4881), - [anon_sym_EQ2] = ACTIONS(4885), - [sym_short_flag_identifier] = ACTIONS(4887), - [aux_sym_unquoted_token1] = ACTIONS(4883), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(4881), - }, - [1608] = { - [sym_comment] = STATE(1608), - [ts_builtin_sym_end] = ACTIONS(956), - [sym__newline] = ACTIONS(956), - [anon_sym_SEMI] = ACTIONS(956), - [anon_sym_PIPE] = ACTIONS(956), - [anon_sym_err_GT_PIPE] = ACTIONS(956), - [anon_sym_out_GT_PIPE] = ACTIONS(956), - [anon_sym_e_GT_PIPE] = ACTIONS(956), - [anon_sym_o_GT_PIPE] = ACTIONS(956), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(956), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(956), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(956), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(956), - [anon_sym_GT2] = ACTIONS(954), - [anon_sym_DASH2] = ACTIONS(956), - [anon_sym_in2] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(956), - [anon_sym_STAR2] = ACTIONS(954), - [anon_sym_QMARK2] = ACTIONS(956), - [anon_sym_and2] = ACTIONS(956), - [anon_sym_xor2] = ACTIONS(956), - [anon_sym_or2] = ACTIONS(956), - [anon_sym_not_DASHin2] = ACTIONS(956), - [anon_sym_has2] = ACTIONS(956), - [anon_sym_not_DASHhas2] = ACTIONS(956), - [anon_sym_starts_DASHwith2] = ACTIONS(956), - [anon_sym_ends_DASHwith2] = ACTIONS(956), - [anon_sym_EQ_EQ2] = ACTIONS(956), - [anon_sym_BANG_EQ2] = ACTIONS(956), - [anon_sym_LT2] = ACTIONS(954), - [anon_sym_LT_EQ2] = ACTIONS(956), - [anon_sym_GT_EQ2] = ACTIONS(956), - [anon_sym_EQ_TILDE2] = ACTIONS(956), - [anon_sym_BANG_TILDE2] = ACTIONS(956), - [anon_sym_STAR_STAR2] = ACTIONS(956), - [anon_sym_PLUS_PLUS2] = ACTIONS(956), - [anon_sym_SLASH2] = ACTIONS(954), - [anon_sym_mod2] = ACTIONS(956), - [anon_sym_SLASH_SLASH2] = ACTIONS(956), - [anon_sym_PLUS2] = ACTIONS(954), - [anon_sym_bit_DASHshl2] = ACTIONS(956), - [anon_sym_bit_DASHshr2] = ACTIONS(956), - [anon_sym_bit_DASHand2] = ACTIONS(956), - [anon_sym_bit_DASHxor2] = ACTIONS(956), - [anon_sym_bit_DASHor2] = ACTIONS(956), - [anon_sym_DOT_DOT2] = ACTIONS(954), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(956), - [anon_sym_DOT_DOT_LT2] = ACTIONS(956), - [anon_sym_DOT2] = ACTIONS(954), - [anon_sym_err_GT] = ACTIONS(954), - [anon_sym_out_GT] = ACTIONS(954), - [anon_sym_e_GT] = ACTIONS(954), - [anon_sym_o_GT] = ACTIONS(954), - [anon_sym_err_PLUSout_GT] = ACTIONS(954), - [anon_sym_out_PLUSerr_GT] = ACTIONS(954), - [anon_sym_o_PLUSe_GT] = ACTIONS(954), - [anon_sym_e_PLUSo_GT] = ACTIONS(954), - [anon_sym_err_GT_GT] = ACTIONS(956), - [anon_sym_out_GT_GT] = ACTIONS(956), - [anon_sym_e_GT_GT] = ACTIONS(956), - [anon_sym_o_GT_GT] = ACTIONS(956), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(956), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(956), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(956), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(956), - [anon_sym_POUND] = ACTIONS(245), - }, - [1609] = { - [sym_comment] = STATE(1609), - [sym__newline] = ACTIONS(2047), - [anon_sym_SEMI] = ACTIONS(2047), - [anon_sym_PIPE] = ACTIONS(2047), - [anon_sym_err_GT_PIPE] = ACTIONS(2047), - [anon_sym_out_GT_PIPE] = ACTIONS(2047), - [anon_sym_e_GT_PIPE] = ACTIONS(2047), - [anon_sym_o_GT_PIPE] = ACTIONS(2047), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2047), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2047), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2047), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2047), - [anon_sym_LBRACK] = ACTIONS(2047), - [anon_sym_LPAREN] = ACTIONS(2045), - [anon_sym_RPAREN] = ACTIONS(2047), - [anon_sym_DOLLAR] = ACTIONS(2045), - [anon_sym_DASH_DASH] = ACTIONS(2045), - [anon_sym_DASH2] = ACTIONS(2045), - [anon_sym_LBRACE] = ACTIONS(2047), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_DOT_DOT] = ACTIONS(2045), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2045), - [anon_sym_DOT_DOT_LT] = ACTIONS(2045), - [anon_sym_null] = ACTIONS(2045), - [anon_sym_true] = ACTIONS(2045), - [anon_sym_false] = ACTIONS(2045), - [aux_sym__val_number_decimal_token1] = ACTIONS(2045), - [aux_sym__val_number_decimal_token2] = ACTIONS(2045), - [aux_sym__val_number_decimal_token3] = ACTIONS(2045), - [aux_sym__val_number_decimal_token4] = ACTIONS(2045), - [aux_sym__val_number_token1] = ACTIONS(2045), - [aux_sym__val_number_token2] = ACTIONS(2045), - [aux_sym__val_number_token3] = ACTIONS(2045), - [aux_sym__val_number_token4] = ACTIONS(2045), - [aux_sym__val_number_token5] = ACTIONS(2045), - [aux_sym__val_number_token6] = ACTIONS(2045), - [anon_sym_0b] = ACTIONS(2045), - [anon_sym_0o] = ACTIONS(2045), - [anon_sym_0x] = ACTIONS(2045), - [sym_val_date] = ACTIONS(2045), - [anon_sym_DQUOTE] = ACTIONS(2047), - [sym__str_single_quotes] = ACTIONS(2047), - [sym__str_back_ticks] = ACTIONS(2047), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2047), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2047), - [anon_sym_err_GT] = ACTIONS(2045), - [anon_sym_out_GT] = ACTIONS(2045), - [anon_sym_e_GT] = ACTIONS(2045), - [anon_sym_o_GT] = ACTIONS(2045), - [anon_sym_err_PLUSout_GT] = ACTIONS(2045), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2045), - [anon_sym_o_PLUSe_GT] = ACTIONS(2045), - [anon_sym_e_PLUSo_GT] = ACTIONS(2045), - [anon_sym_err_GT_GT] = ACTIONS(2045), - [anon_sym_out_GT_GT] = ACTIONS(2045), - [anon_sym_e_GT_GT] = ACTIONS(2045), - [anon_sym_o_GT_GT] = ACTIONS(2045), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2045), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2045), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2045), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2045), - [aux_sym_unquoted_token1] = ACTIONS(2045), - [aux_sym_unquoted_token4] = ACTIONS(2045), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2047), - }, - [1610] = { - [sym_comment] = STATE(1610), - [ts_builtin_sym_end] = ACTIONS(2015), - [sym__newline] = ACTIONS(2015), - [anon_sym_SEMI] = ACTIONS(2015), - [anon_sym_PIPE] = ACTIONS(2015), - [anon_sym_err_GT_PIPE] = ACTIONS(2015), - [anon_sym_out_GT_PIPE] = ACTIONS(2015), - [anon_sym_e_GT_PIPE] = ACTIONS(2015), - [anon_sym_o_GT_PIPE] = ACTIONS(2015), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2015), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2015), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2015), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2015), - [anon_sym_LBRACK] = ACTIONS(2015), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_DOLLAR] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2015), - [anon_sym_DASH2] = ACTIONS(2009), - [anon_sym_LBRACE] = ACTIONS(2015), - [anon_sym_DOT_DOT] = ACTIONS(2009), - [anon_sym_DOT_DOT2] = ACTIONS(4889), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2009), - [anon_sym_DOT_DOT_LT] = ACTIONS(2009), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4891), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4891), - [anon_sym_null] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(2015), - [anon_sym_false] = ACTIONS(2015), - [aux_sym__val_number_decimal_token1] = ACTIONS(2009), - [aux_sym__val_number_decimal_token2] = ACTIONS(2015), - [aux_sym__val_number_decimal_token3] = ACTIONS(2015), - [aux_sym__val_number_decimal_token4] = ACTIONS(2015), - [aux_sym__val_number_token1] = ACTIONS(2015), - [aux_sym__val_number_token2] = ACTIONS(2015), - [aux_sym__val_number_token3] = ACTIONS(2015), - [aux_sym__val_number_token4] = ACTIONS(2015), - [aux_sym__val_number_token5] = ACTIONS(2015), - [aux_sym__val_number_token6] = ACTIONS(2015), - [anon_sym_0b] = ACTIONS(2009), - [anon_sym_0o] = ACTIONS(2009), - [anon_sym_0x] = ACTIONS(2009), - [sym_val_date] = ACTIONS(2015), - [anon_sym_DQUOTE] = ACTIONS(2015), - [sym__str_single_quotes] = ACTIONS(2015), - [sym__str_back_ticks] = ACTIONS(2015), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2015), - [anon_sym_err_GT] = ACTIONS(2009), - [anon_sym_out_GT] = ACTIONS(2009), - [anon_sym_e_GT] = ACTIONS(2009), - [anon_sym_o_GT] = ACTIONS(2009), - [anon_sym_err_PLUSout_GT] = ACTIONS(2009), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2009), - [anon_sym_o_PLUSe_GT] = ACTIONS(2009), - [anon_sym_e_PLUSo_GT] = ACTIONS(2009), - [anon_sym_err_GT_GT] = ACTIONS(2015), - [anon_sym_out_GT_GT] = ACTIONS(2015), - [anon_sym_e_GT_GT] = ACTIONS(2015), - [anon_sym_o_GT_GT] = ACTIONS(2015), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2015), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2015), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2015), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2015), - [aux_sym_unquoted_token1] = ACTIONS(2009), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2015), - }, - [1611] = { - [sym_comment] = STATE(1611), - [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(1719), - [anon_sym_DASH_DASH] = ACTIONS(1721), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1719), - [anon_sym_DOT_DOT2] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1719), - [anon_sym_DOT_DOT_LT] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1721), - [anon_sym_null] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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(1719), - [anon_sym_0o] = ACTIONS(1719), - [anon_sym_0x] = ACTIONS(1719), - [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(1719), - [anon_sym_out_GT] = ACTIONS(1719), - [anon_sym_e_GT] = ACTIONS(1719), - [anon_sym_o_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT] = ACTIONS(1719), - [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(1719), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1721), - }, - [1612] = { - [sym_comment] = STATE(1612), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_DOT_DOT] = ACTIONS(1666), - [anon_sym_DOT] = ACTIONS(4893), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT] = ACTIONS(1668), - [aux_sym__immediate_decimal_token2] = ACTIONS(4895), - [anon_sym_null] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1668), - [aux_sym__val_number_token5] = ACTIONS(1668), - [aux_sym__val_number_token6] = ACTIONS(1668), - [anon_sym_0b] = ACTIONS(1666), - [anon_sym_0o] = ACTIONS(1666), - [anon_sym_0x] = ACTIONS(1666), - [sym_val_date] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_err_GT] = ACTIONS(1666), - [anon_sym_out_GT] = ACTIONS(1666), - [anon_sym_e_GT] = ACTIONS(1666), - [anon_sym_o_GT] = ACTIONS(1666), - [anon_sym_err_PLUSout_GT] = ACTIONS(1666), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), - [anon_sym_o_PLUSe_GT] = ACTIONS(1666), - [anon_sym_e_PLUSo_GT] = ACTIONS(1666), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [aux_sym_unquoted_token1] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), - }, - [1613] = { - [sym_comment] = STATE(1613), - [sym__newline] = ACTIONS(1819), - [anon_sym_SEMI] = ACTIONS(1819), - [anon_sym_PIPE] = ACTIONS(1819), - [anon_sym_err_GT_PIPE] = ACTIONS(1819), - [anon_sym_out_GT_PIPE] = ACTIONS(1819), - [anon_sym_e_GT_PIPE] = ACTIONS(1819), - [anon_sym_o_GT_PIPE] = ACTIONS(1819), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1819), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1819), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1819), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1819), - [anon_sym_RPAREN] = ACTIONS(1819), - [anon_sym_GT2] = ACTIONS(1811), - [anon_sym_DASH2] = ACTIONS(1819), - [anon_sym_in2] = ACTIONS(1819), - [anon_sym_RBRACE] = ACTIONS(1819), - [anon_sym_STAR2] = ACTIONS(1811), - [anon_sym_and2] = ACTIONS(1819), - [anon_sym_xor2] = ACTIONS(1819), - [anon_sym_or2] = ACTIONS(1819), - [anon_sym_not_DASHin2] = ACTIONS(1819), - [anon_sym_has2] = ACTIONS(1819), - [anon_sym_not_DASHhas2] = ACTIONS(1819), - [anon_sym_starts_DASHwith2] = ACTIONS(1819), - [anon_sym_ends_DASHwith2] = ACTIONS(1819), - [anon_sym_EQ_EQ2] = ACTIONS(1819), - [anon_sym_BANG_EQ2] = ACTIONS(1819), - [anon_sym_LT2] = ACTIONS(1811), - [anon_sym_LT_EQ2] = ACTIONS(1819), - [anon_sym_GT_EQ2] = ACTIONS(1819), - [anon_sym_EQ_TILDE2] = ACTIONS(1819), - [anon_sym_BANG_TILDE2] = ACTIONS(1819), - [anon_sym_LPAREN2] = ACTIONS(1813), - [anon_sym_STAR_STAR2] = ACTIONS(1819), - [anon_sym_PLUS_PLUS2] = ACTIONS(1819), - [anon_sym_SLASH2] = ACTIONS(1811), - [anon_sym_mod2] = ACTIONS(1819), - [anon_sym_SLASH_SLASH2] = ACTIONS(1819), - [anon_sym_PLUS2] = ACTIONS(1811), - [anon_sym_bit_DASHshl2] = ACTIONS(1819), - [anon_sym_bit_DASHshr2] = ACTIONS(1819), - [anon_sym_bit_DASHand2] = ACTIONS(1819), - [anon_sym_bit_DASHxor2] = ACTIONS(1819), - [anon_sym_bit_DASHor2] = ACTIONS(1819), - [anon_sym_DOT_DOT2] = ACTIONS(4897), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4899), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4899), - [anon_sym_err_GT] = ACTIONS(1811), - [anon_sym_out_GT] = ACTIONS(1811), - [anon_sym_e_GT] = ACTIONS(1811), - [anon_sym_o_GT] = ACTIONS(1811), - [anon_sym_err_PLUSout_GT] = ACTIONS(1811), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1811), - [anon_sym_o_PLUSe_GT] = ACTIONS(1811), - [anon_sym_e_PLUSo_GT] = ACTIONS(1811), - [anon_sym_err_GT_GT] = ACTIONS(1819), - [anon_sym_out_GT_GT] = ACTIONS(1819), - [anon_sym_e_GT_GT] = ACTIONS(1819), - [anon_sym_o_GT_GT] = ACTIONS(1819), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1819), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1819), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1819), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1819), - [aux_sym_unquoted_token2] = ACTIONS(1447), - [anon_sym_POUND] = ACTIONS(245), - }, - [1614] = { - [sym_comment] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(1792), - [sym__newline] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_err_GT_PIPE] = ACTIONS(1792), - [anon_sym_out_GT_PIPE] = ACTIONS(1792), - [anon_sym_e_GT_PIPE] = ACTIONS(1792), - [anon_sym_o_GT_PIPE] = ACTIONS(1792), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1792), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1792), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1792), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_DASH2] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_DOT_DOT] = ACTIONS(1790), - [anon_sym_DOT_DOT2] = ACTIONS(1790), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1790), - [anon_sym_DOT_DOT_LT] = ACTIONS(1790), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1792), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1792), - [anon_sym_false] = ACTIONS(1792), - [aux_sym__val_number_decimal_token1] = ACTIONS(1790), - [aux_sym__val_number_decimal_token2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1792), - [aux_sym__val_number_decimal_token4] = ACTIONS(1792), - [aux_sym__val_number_token1] = ACTIONS(1792), - [aux_sym__val_number_token2] = ACTIONS(1792), - [aux_sym__val_number_token3] = ACTIONS(1792), - [aux_sym__val_number_token4] = ACTIONS(1792), - [aux_sym__val_number_token5] = ACTIONS(1792), - [aux_sym__val_number_token6] = ACTIONS(1792), - [anon_sym_0b] = ACTIONS(1790), - [anon_sym_0o] = ACTIONS(1790), - [anon_sym_0x] = ACTIONS(1790), - [sym_val_date] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym__str_single_quotes] = ACTIONS(1792), - [sym__str_back_ticks] = ACTIONS(1792), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1792), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1792), - [anon_sym_err_GT] = ACTIONS(1790), - [anon_sym_out_GT] = ACTIONS(1790), - [anon_sym_e_GT] = ACTIONS(1790), - [anon_sym_o_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT] = ACTIONS(1790), - [anon_sym_err_GT_GT] = ACTIONS(1792), - [anon_sym_out_GT_GT] = ACTIONS(1792), - [anon_sym_e_GT_GT] = ACTIONS(1792), - [anon_sym_o_GT_GT] = ACTIONS(1792), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1792), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1792), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1792), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1792), - [aux_sym_unquoted_token1] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [1615] = { - [sym_comment] = STATE(1615), - [ts_builtin_sym_end] = ACTIONS(2023), - [sym__newline] = ACTIONS(2023), - [anon_sym_SEMI] = ACTIONS(2023), - [anon_sym_PIPE] = ACTIONS(2023), - [anon_sym_err_GT_PIPE] = ACTIONS(2023), - [anon_sym_out_GT_PIPE] = ACTIONS(2023), - [anon_sym_e_GT_PIPE] = ACTIONS(2023), - [anon_sym_o_GT_PIPE] = ACTIONS(2023), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2023), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2023), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2023), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_DOLLAR] = ACTIONS(2017), - [anon_sym_DASH_DASH] = ACTIONS(2023), - [anon_sym_DASH2] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_DOT_DOT] = ACTIONS(2017), - [anon_sym_DOT_DOT2] = ACTIONS(4901), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2017), - [anon_sym_DOT_DOT_LT] = ACTIONS(2017), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4903), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4903), - [anon_sym_null] = ACTIONS(2023), - [anon_sym_true] = ACTIONS(2023), - [anon_sym_false] = ACTIONS(2023), - [aux_sym__val_number_decimal_token1] = ACTIONS(2017), - [aux_sym__val_number_decimal_token2] = ACTIONS(2023), - [aux_sym__val_number_decimal_token3] = ACTIONS(2023), - [aux_sym__val_number_decimal_token4] = ACTIONS(2023), - [aux_sym__val_number_token1] = ACTIONS(2023), - [aux_sym__val_number_token2] = ACTIONS(2023), - [aux_sym__val_number_token3] = ACTIONS(2023), - [aux_sym__val_number_token4] = ACTIONS(2023), - [aux_sym__val_number_token5] = ACTIONS(2023), - [aux_sym__val_number_token6] = ACTIONS(2023), - [anon_sym_0b] = ACTIONS(2017), - [anon_sym_0o] = ACTIONS(2017), - [anon_sym_0x] = ACTIONS(2017), - [sym_val_date] = ACTIONS(2023), - [anon_sym_DQUOTE] = ACTIONS(2023), - [sym__str_single_quotes] = ACTIONS(2023), - [sym__str_back_ticks] = ACTIONS(2023), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2023), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2023), - [anon_sym_err_GT] = ACTIONS(2017), - [anon_sym_out_GT] = ACTIONS(2017), - [anon_sym_e_GT] = ACTIONS(2017), - [anon_sym_o_GT] = ACTIONS(2017), - [anon_sym_err_PLUSout_GT] = ACTIONS(2017), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2017), - [anon_sym_o_PLUSe_GT] = ACTIONS(2017), - [anon_sym_e_PLUSo_GT] = ACTIONS(2017), - [anon_sym_err_GT_GT] = ACTIONS(2023), - [anon_sym_out_GT_GT] = ACTIONS(2023), - [anon_sym_e_GT_GT] = ACTIONS(2023), - [anon_sym_o_GT_GT] = ACTIONS(2023), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2023), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2023), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2023), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2023), - [aux_sym_unquoted_token1] = ACTIONS(2017), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2023), - }, - [1616] = { - [sym_comment] = STATE(1616), + [1540] = { + [sym_comment] = STATE(1540), [sym__newline] = ACTIONS(944), [anon_sym_SEMI] = ACTIONS(944), [anon_sym_PIPE] = ACTIONS(944), @@ -225509,7 +217549,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(944), [anon_sym_RBRACE] = ACTIONS(944), [anon_sym_DOT_DOT] = ACTIONS(942), - [anon_sym_QMARK2] = ACTIONS(4905), + [anon_sym_QMARK2] = ACTIONS(944), [anon_sym_DOT_DOT_EQ] = ACTIONS(944), [anon_sym_DOT_DOT_LT] = ACTIONS(944), [anon_sym_null] = ACTIONS(944), @@ -225555,1776 +217595,484 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(944), }, - [1617] = { - [sym_comment] = STATE(1617), - [ts_builtin_sym_end] = ACTIONS(4825), - [sym__newline] = ACTIONS(4825), - [anon_sym_SEMI] = ACTIONS(4825), - [anon_sym_PIPE] = ACTIONS(4825), - [anon_sym_err_GT_PIPE] = ACTIONS(4825), - [anon_sym_out_GT_PIPE] = ACTIONS(4825), - [anon_sym_e_GT_PIPE] = ACTIONS(4825), - [anon_sym_o_GT_PIPE] = ACTIONS(4825), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4825), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4825), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4825), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4825), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4825), - [anon_sym_DOLLAR] = ACTIONS(4827), - [anon_sym_DASH_DASH] = ACTIONS(4825), - [anon_sym_DASH2] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(4825), - [anon_sym_DOT_DOT] = ACTIONS(4827), - [anon_sym_DOT_DOT2] = ACTIONS(4907), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4827), - [anon_sym_DOT_DOT_LT] = ACTIONS(4827), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4909), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4909), - [anon_sym_null] = ACTIONS(4825), - [anon_sym_true] = ACTIONS(4825), - [anon_sym_false] = ACTIONS(4825), - [aux_sym__val_number_decimal_token1] = ACTIONS(4827), - [aux_sym__val_number_decimal_token2] = ACTIONS(4825), - [aux_sym__val_number_decimal_token3] = ACTIONS(4825), - [aux_sym__val_number_decimal_token4] = ACTIONS(4825), - [aux_sym__val_number_token1] = ACTIONS(4825), - [aux_sym__val_number_token2] = ACTIONS(4825), - [aux_sym__val_number_token3] = ACTIONS(4825), - [aux_sym__val_number_token4] = ACTIONS(4825), - [aux_sym__val_number_token5] = ACTIONS(4825), - [aux_sym__val_number_token6] = ACTIONS(4825), - [anon_sym_0b] = ACTIONS(4827), - [anon_sym_0o] = ACTIONS(4827), - [anon_sym_0x] = ACTIONS(4827), - [sym_val_date] = ACTIONS(4825), - [anon_sym_DQUOTE] = ACTIONS(4825), - [sym__str_single_quotes] = ACTIONS(4825), - [sym__str_back_ticks] = ACTIONS(4825), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4825), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4825), - [anon_sym_err_GT] = ACTIONS(4827), - [anon_sym_out_GT] = ACTIONS(4827), - [anon_sym_e_GT] = ACTIONS(4827), - [anon_sym_o_GT] = ACTIONS(4827), - [anon_sym_err_PLUSout_GT] = ACTIONS(4827), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4827), - [anon_sym_o_PLUSe_GT] = ACTIONS(4827), - [anon_sym_e_PLUSo_GT] = ACTIONS(4827), - [anon_sym_err_GT_GT] = ACTIONS(4825), - [anon_sym_out_GT_GT] = ACTIONS(4825), - [anon_sym_e_GT_GT] = ACTIONS(4825), - [anon_sym_o_GT_GT] = ACTIONS(4825), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4825), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4825), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4825), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4825), - [aux_sym_unquoted_token1] = ACTIONS(4827), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(4825), - }, - [1618] = { - [sym_comment] = STATE(1618), - [ts_builtin_sym_end] = ACTIONS(2031), - [sym__newline] = ACTIONS(2031), - [anon_sym_SEMI] = ACTIONS(2031), - [anon_sym_PIPE] = ACTIONS(2031), - [anon_sym_err_GT_PIPE] = ACTIONS(2031), - [anon_sym_out_GT_PIPE] = ACTIONS(2031), - [anon_sym_e_GT_PIPE] = ACTIONS(2031), - [anon_sym_o_GT_PIPE] = ACTIONS(2031), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2031), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2031), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2031), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(2031), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_DOLLAR] = ACTIONS(2025), - [anon_sym_DASH_DASH] = ACTIONS(2031), - [anon_sym_DASH2] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(2031), - [anon_sym_DOT_DOT] = ACTIONS(2025), - [anon_sym_DOT_DOT2] = ACTIONS(4911), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2025), - [anon_sym_DOT_DOT_LT] = ACTIONS(2025), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4913), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4913), - [anon_sym_null] = ACTIONS(2031), - [anon_sym_true] = ACTIONS(2031), - [anon_sym_false] = ACTIONS(2031), - [aux_sym__val_number_decimal_token1] = ACTIONS(2025), - [aux_sym__val_number_decimal_token2] = ACTIONS(2031), - [aux_sym__val_number_decimal_token3] = ACTIONS(2031), - [aux_sym__val_number_decimal_token4] = ACTIONS(2031), - [aux_sym__val_number_token1] = ACTIONS(2031), - [aux_sym__val_number_token2] = ACTIONS(2031), - [aux_sym__val_number_token3] = ACTIONS(2031), - [aux_sym__val_number_token4] = ACTIONS(2031), - [aux_sym__val_number_token5] = ACTIONS(2031), - [aux_sym__val_number_token6] = ACTIONS(2031), - [anon_sym_0b] = ACTIONS(2025), - [anon_sym_0o] = ACTIONS(2025), - [anon_sym_0x] = ACTIONS(2025), - [sym_val_date] = ACTIONS(2031), - [anon_sym_DQUOTE] = ACTIONS(2031), - [sym__str_single_quotes] = ACTIONS(2031), - [sym__str_back_ticks] = ACTIONS(2031), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2031), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2031), - [anon_sym_err_GT] = ACTIONS(2025), - [anon_sym_out_GT] = ACTIONS(2025), - [anon_sym_e_GT] = ACTIONS(2025), - [anon_sym_o_GT] = ACTIONS(2025), - [anon_sym_err_PLUSout_GT] = ACTIONS(2025), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2025), - [anon_sym_o_PLUSe_GT] = ACTIONS(2025), - [anon_sym_e_PLUSo_GT] = ACTIONS(2025), - [anon_sym_err_GT_GT] = ACTIONS(2031), - [anon_sym_out_GT_GT] = ACTIONS(2031), - [anon_sym_e_GT_GT] = ACTIONS(2031), - [anon_sym_o_GT_GT] = ACTIONS(2031), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2031), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2031), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2031), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2031), - [aux_sym_unquoted_token1] = ACTIONS(2025), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2031), - }, - [1619] = { - [sym_comment] = STATE(1619), - [sym__newline] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_PIPE] = ACTIONS(950), - [anon_sym_err_GT_PIPE] = ACTIONS(950), - [anon_sym_out_GT_PIPE] = ACTIONS(950), - [anon_sym_e_GT_PIPE] = ACTIONS(950), - [anon_sym_o_GT_PIPE] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), - [anon_sym_LBRACK] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_RPAREN] = ACTIONS(950), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_DASH2] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_DOT_DOT] = ACTIONS(948), - [anon_sym_QMARK2] = ACTIONS(4915), - [anon_sym_DOT_DOT_EQ] = ACTIONS(950), - [anon_sym_DOT_DOT_LT] = ACTIONS(950), - [anon_sym_null] = ACTIONS(950), - [anon_sym_true] = ACTIONS(950), - [anon_sym_false] = ACTIONS(950), - [aux_sym__val_number_decimal_token1] = ACTIONS(948), - [aux_sym__val_number_decimal_token2] = ACTIONS(950), - [aux_sym__val_number_decimal_token3] = ACTIONS(950), - [aux_sym__val_number_decimal_token4] = ACTIONS(950), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [aux_sym__val_number_token4] = ACTIONS(950), - [aux_sym__val_number_token5] = ACTIONS(950), - [aux_sym__val_number_token6] = ACTIONS(950), - [anon_sym_0b] = ACTIONS(948), - [anon_sym_0o] = ACTIONS(948), - [anon_sym_0x] = ACTIONS(948), - [sym_val_date] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(948), - [anon_sym_err_GT] = ACTIONS(948), - [anon_sym_out_GT] = ACTIONS(948), - [anon_sym_e_GT] = ACTIONS(948), - [anon_sym_o_GT] = ACTIONS(948), - [anon_sym_err_PLUSout_GT] = ACTIONS(948), - [anon_sym_out_PLUSerr_GT] = ACTIONS(948), - [anon_sym_o_PLUSe_GT] = ACTIONS(948), - [anon_sym_e_PLUSo_GT] = ACTIONS(948), - [anon_sym_err_GT_GT] = ACTIONS(950), - [anon_sym_out_GT_GT] = ACTIONS(950), - [anon_sym_e_GT_GT] = ACTIONS(950), - [anon_sym_o_GT_GT] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), - [aux_sym_unquoted_token1] = ACTIONS(948), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(950), - }, - [1620] = { - [sym_path] = STATE(1964), - [sym_comment] = STATE(1620), - [aux_sym_cell_path_repeat1] = STATE(1629), - [ts_builtin_sym_end] = ACTIONS(933), - [sym__newline] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_err_GT_PIPE] = ACTIONS(933), - [anon_sym_out_GT_PIPE] = ACTIONS(933), - [anon_sym_e_GT_PIPE] = ACTIONS(933), - [anon_sym_o_GT_PIPE] = ACTIONS(933), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(933), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(933), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(933), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(933), - [anon_sym_DOLLAR] = ACTIONS(931), - [anon_sym_DASH_DASH] = ACTIONS(933), - [anon_sym_DASH2] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_DOT_DOT] = ACTIONS(931), - [anon_sym_DOT_DOT_EQ] = ACTIONS(933), - [anon_sym_DOT_DOT_LT] = ACTIONS(933), - [anon_sym_null] = ACTIONS(933), - [anon_sym_true] = ACTIONS(933), - [anon_sym_false] = ACTIONS(933), - [aux_sym__val_number_decimal_token1] = ACTIONS(931), - [aux_sym__val_number_decimal_token2] = ACTIONS(933), - [aux_sym__val_number_decimal_token3] = ACTIONS(933), - [aux_sym__val_number_decimal_token4] = ACTIONS(933), - [aux_sym__val_number_token1] = ACTIONS(933), - [aux_sym__val_number_token2] = ACTIONS(933), - [aux_sym__val_number_token3] = ACTIONS(933), - [aux_sym__val_number_token4] = ACTIONS(933), - [aux_sym__val_number_token5] = ACTIONS(933), - [aux_sym__val_number_token6] = ACTIONS(933), - [anon_sym_0b] = ACTIONS(931), - [anon_sym_0o] = ACTIONS(931), - [anon_sym_0x] = ACTIONS(931), - [sym_val_date] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym__str_single_quotes] = ACTIONS(933), - [sym__str_back_ticks] = ACTIONS(933), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(933), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(931), - [anon_sym_out_GT] = ACTIONS(931), - [anon_sym_e_GT] = ACTIONS(931), - [anon_sym_o_GT] = ACTIONS(931), - [anon_sym_err_PLUSout_GT] = ACTIONS(931), - [anon_sym_out_PLUSerr_GT] = ACTIONS(931), - [anon_sym_o_PLUSe_GT] = ACTIONS(931), - [anon_sym_e_PLUSo_GT] = ACTIONS(931), - [anon_sym_err_GT_GT] = ACTIONS(933), - [anon_sym_out_GT_GT] = ACTIONS(933), - [anon_sym_e_GT_GT] = ACTIONS(933), - [anon_sym_o_GT_GT] = ACTIONS(933), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(933), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(933), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(933), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(933), - [aux_sym_unquoted_token1] = ACTIONS(931), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(933), - }, - [1621] = { - [sym__expr_parenthesized_immediate] = STATE(7379), - [sym_comment] = STATE(1621), - [sym__newline] = ACTIONS(4917), - [anon_sym_SEMI] = ACTIONS(4917), - [anon_sym_PIPE] = ACTIONS(4917), - [anon_sym_err_GT_PIPE] = ACTIONS(4917), - [anon_sym_out_GT_PIPE] = ACTIONS(4917), - [anon_sym_e_GT_PIPE] = ACTIONS(4917), - [anon_sym_o_GT_PIPE] = ACTIONS(4917), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4917), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4917), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4917), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4917), - [anon_sym_LBRACK] = ACTIONS(4917), - [anon_sym_LPAREN] = ACTIONS(4919), - [anon_sym_RPAREN] = ACTIONS(4917), - [anon_sym_DOLLAR] = ACTIONS(4919), - [anon_sym_DASH_DASH] = ACTIONS(4917), - [anon_sym_DASH2] = ACTIONS(4919), - [anon_sym_LBRACE] = ACTIONS(4917), - [anon_sym_RBRACE] = ACTIONS(4917), - [anon_sym_DOT_DOT] = ACTIONS(4919), - [anon_sym_LPAREN2] = ACTIONS(4462), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4917), - [anon_sym_DOT_DOT_LT] = ACTIONS(4917), - [anon_sym_null] = ACTIONS(4917), - [anon_sym_true] = ACTIONS(4917), - [anon_sym_false] = ACTIONS(4917), - [aux_sym__val_number_decimal_token1] = ACTIONS(4919), - [aux_sym__val_number_decimal_token2] = ACTIONS(4917), - [aux_sym__val_number_decimal_token3] = ACTIONS(4917), - [aux_sym__val_number_decimal_token4] = ACTIONS(4917), - [aux_sym__val_number_token1] = ACTIONS(4917), - [aux_sym__val_number_token2] = ACTIONS(4917), - [aux_sym__val_number_token3] = ACTIONS(4917), - [aux_sym__val_number_token4] = ACTIONS(4917), - [aux_sym__val_number_token5] = ACTIONS(4917), - [aux_sym__val_number_token6] = ACTIONS(4917), - [anon_sym_0b] = ACTIONS(4919), - [anon_sym_0o] = ACTIONS(4919), - [anon_sym_0x] = ACTIONS(4919), - [sym_val_date] = ACTIONS(4917), - [anon_sym_DQUOTE] = ACTIONS(4917), - [sym__str_single_quotes] = ACTIONS(4917), - [sym__str_back_ticks] = ACTIONS(4917), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4917), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4917), - [anon_sym_err_GT] = ACTIONS(4919), - [anon_sym_out_GT] = ACTIONS(4919), - [anon_sym_e_GT] = ACTIONS(4919), - [anon_sym_o_GT] = ACTIONS(4919), - [anon_sym_err_PLUSout_GT] = ACTIONS(4919), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4919), - [anon_sym_o_PLUSe_GT] = ACTIONS(4919), - [anon_sym_e_PLUSo_GT] = ACTIONS(4919), - [anon_sym_err_GT_GT] = ACTIONS(4917), - [anon_sym_out_GT_GT] = ACTIONS(4917), - [anon_sym_e_GT_GT] = ACTIONS(4917), - [anon_sym_o_GT_GT] = ACTIONS(4917), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4917), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4917), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4917), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4917), - [aux_sym_unquoted_token1] = ACTIONS(4919), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(4917), - }, - [1622] = { - [sym_comment] = STATE(1622), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_DOT_DOT] = ACTIONS(1666), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT] = ACTIONS(1668), - [anon_sym_null] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1668), - [aux_sym__val_number_token5] = ACTIONS(1668), - [aux_sym__val_number_token6] = ACTIONS(1668), - [anon_sym_0b] = ACTIONS(1666), - [anon_sym_0o] = ACTIONS(1666), - [anon_sym_0x] = ACTIONS(1666), - [sym_val_date] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_err_GT] = ACTIONS(1666), - [anon_sym_out_GT] = ACTIONS(1666), - [anon_sym_e_GT] = ACTIONS(1666), - [anon_sym_o_GT] = ACTIONS(1666), - [anon_sym_err_PLUSout_GT] = ACTIONS(1666), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), - [anon_sym_o_PLUSe_GT] = ACTIONS(1666), - [anon_sym_e_PLUSo_GT] = ACTIONS(1666), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [aux_sym_unquoted_token1] = ACTIONS(1666), - [aux_sym_unquoted_token2] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), - }, - [1623] = { - [sym_comment] = STATE(1623), - [sym__newline] = ACTIONS(1786), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1786), - [anon_sym_err_GT_PIPE] = ACTIONS(1786), - [anon_sym_out_GT_PIPE] = ACTIONS(1786), - [anon_sym_e_GT_PIPE] = ACTIONS(1786), - [anon_sym_o_GT_PIPE] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_GT2] = ACTIONS(1778), - [anon_sym_DASH2] = ACTIONS(1786), - [anon_sym_in2] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_STAR2] = ACTIONS(1778), - [anon_sym_and2] = ACTIONS(1786), - [anon_sym_xor2] = ACTIONS(1786), - [anon_sym_or2] = ACTIONS(1786), - [anon_sym_not_DASHin2] = ACTIONS(1786), - [anon_sym_has2] = ACTIONS(1786), - [anon_sym_not_DASHhas2] = ACTIONS(1786), - [anon_sym_starts_DASHwith2] = ACTIONS(1786), - [anon_sym_ends_DASHwith2] = ACTIONS(1786), - [anon_sym_EQ_EQ2] = ACTIONS(1786), - [anon_sym_BANG_EQ2] = ACTIONS(1786), - [anon_sym_LT2] = ACTIONS(1778), - [anon_sym_LT_EQ2] = ACTIONS(1786), - [anon_sym_GT_EQ2] = ACTIONS(1786), - [anon_sym_EQ_TILDE2] = ACTIONS(1786), - [anon_sym_BANG_TILDE2] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1780), - [anon_sym_STAR_STAR2] = ACTIONS(1786), - [anon_sym_PLUS_PLUS2] = ACTIONS(1786), - [anon_sym_SLASH2] = ACTIONS(1778), - [anon_sym_mod2] = ACTIONS(1786), - [anon_sym_SLASH_SLASH2] = ACTIONS(1786), - [anon_sym_PLUS2] = ACTIONS(1778), - [anon_sym_bit_DASHshl2] = ACTIONS(1786), - [anon_sym_bit_DASHshr2] = ACTIONS(1786), - [anon_sym_bit_DASHand2] = ACTIONS(1786), - [anon_sym_bit_DASHxor2] = ACTIONS(1786), - [anon_sym_bit_DASHor2] = ACTIONS(1786), - [anon_sym_DOT_DOT2] = ACTIONS(4921), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4923), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4923), - [anon_sym_err_GT] = ACTIONS(1778), - [anon_sym_out_GT] = ACTIONS(1778), - [anon_sym_e_GT] = ACTIONS(1778), - [anon_sym_o_GT] = ACTIONS(1778), - [anon_sym_err_PLUSout_GT] = ACTIONS(1778), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1778), - [anon_sym_o_PLUSe_GT] = ACTIONS(1778), - [anon_sym_e_PLUSo_GT] = ACTIONS(1778), - [anon_sym_err_GT_GT] = ACTIONS(1786), - [anon_sym_out_GT_GT] = ACTIONS(1786), - [anon_sym_e_GT_GT] = ACTIONS(1786), - [anon_sym_o_GT_GT] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1786), - [aux_sym_unquoted_token2] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(245), - }, - [1624] = { - [sym_comment] = STATE(1624), - [sym__newline] = ACTIONS(2204), - [anon_sym_SEMI] = ACTIONS(2204), - [anon_sym_PIPE] = ACTIONS(2204), - [anon_sym_err_GT_PIPE] = ACTIONS(2204), - [anon_sym_out_GT_PIPE] = ACTIONS(2204), - [anon_sym_e_GT_PIPE] = ACTIONS(2204), - [anon_sym_o_GT_PIPE] = ACTIONS(2204), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2204), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2204), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2204), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2204), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2202), - [anon_sym_RPAREN] = ACTIONS(2204), - [anon_sym_DOLLAR] = ACTIONS(2202), - [anon_sym_DASH_DASH] = ACTIONS(2202), - [anon_sym_DASH2] = ACTIONS(2202), - [anon_sym_LBRACE] = ACTIONS(2204), - [anon_sym_RBRACE] = ACTIONS(2204), - [anon_sym_DOT_DOT] = ACTIONS(2202), - [anon_sym_LPAREN2] = ACTIONS(2091), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2202), - [anon_sym_DOT_DOT_LT] = ACTIONS(2202), - [anon_sym_null] = ACTIONS(2202), - [anon_sym_true] = ACTIONS(2202), - [anon_sym_false] = ACTIONS(2202), - [aux_sym__val_number_decimal_token1] = ACTIONS(2202), - [aux_sym__val_number_decimal_token2] = ACTIONS(2202), - [aux_sym__val_number_decimal_token3] = ACTIONS(2202), - [aux_sym__val_number_decimal_token4] = ACTIONS(2202), - [aux_sym__val_number_token1] = ACTIONS(2202), - [aux_sym__val_number_token2] = ACTIONS(2202), - [aux_sym__val_number_token3] = ACTIONS(2202), - [aux_sym__val_number_token4] = ACTIONS(2202), - [aux_sym__val_number_token5] = ACTIONS(2202), - [aux_sym__val_number_token6] = ACTIONS(2202), - [anon_sym_0b] = ACTIONS(2202), - [anon_sym_0o] = ACTIONS(2202), - [anon_sym_0x] = ACTIONS(2202), - [sym_val_date] = ACTIONS(2202), - [anon_sym_DQUOTE] = ACTIONS(2204), - [sym__str_single_quotes] = ACTIONS(2204), - [sym__str_back_ticks] = ACTIONS(2204), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2204), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2204), - [anon_sym_err_GT] = ACTIONS(2202), - [anon_sym_out_GT] = ACTIONS(2202), - [anon_sym_e_GT] = ACTIONS(2202), - [anon_sym_o_GT] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT] = ACTIONS(2202), - [anon_sym_err_GT_GT] = ACTIONS(2202), - [anon_sym_out_GT_GT] = ACTIONS(2202), - [anon_sym_e_GT_GT] = ACTIONS(2202), - [anon_sym_o_GT_GT] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2202), - [aux_sym_unquoted_token1] = ACTIONS(2202), - [aux_sym_unquoted_token4] = ACTIONS(2095), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2204), - }, - [1625] = { - [sym_comment] = STATE(1625), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_DOLLAR] = ACTIONS(966), - [anon_sym_DASH_DASH] = ACTIONS(968), - [anon_sym_DASH2] = ACTIONS(966), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_DOT_DOT] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(968), - [anon_sym_DOT_DOT_EQ] = ACTIONS(968), - [anon_sym_DOT_DOT_LT] = ACTIONS(968), - [anon_sym_null] = ACTIONS(968), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = ACTIONS(968), - [aux_sym__val_number_decimal_token1] = ACTIONS(966), - [aux_sym__val_number_decimal_token2] = ACTIONS(968), - [aux_sym__val_number_decimal_token3] = ACTIONS(968), - [aux_sym__val_number_decimal_token4] = ACTIONS(968), - [aux_sym__val_number_token1] = ACTIONS(968), - [aux_sym__val_number_token2] = ACTIONS(968), - [aux_sym__val_number_token3] = ACTIONS(968), - [aux_sym__val_number_token4] = ACTIONS(968), - [aux_sym__val_number_token5] = ACTIONS(968), - [aux_sym__val_number_token6] = ACTIONS(968), - [anon_sym_0b] = ACTIONS(966), - [anon_sym_0o] = ACTIONS(966), - [anon_sym_0x] = ACTIONS(966), - [sym_val_date] = ACTIONS(968), - [anon_sym_DQUOTE] = ACTIONS(968), - [sym__str_single_quotes] = ACTIONS(968), - [sym__str_back_ticks] = ACTIONS(968), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(968), - [anon_sym_DOT2] = ACTIONS(966), - [anon_sym_err_GT] = ACTIONS(966), - [anon_sym_out_GT] = ACTIONS(966), - [anon_sym_e_GT] = ACTIONS(966), - [anon_sym_o_GT] = ACTIONS(966), - [anon_sym_err_PLUSout_GT] = ACTIONS(966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(966), - [anon_sym_o_PLUSe_GT] = ACTIONS(966), - [anon_sym_e_PLUSo_GT] = ACTIONS(966), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [aux_sym_unquoted_token1] = ACTIONS(966), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(968), - }, - [1626] = { - [sym_comment] = STATE(1626), - [ts_builtin_sym_end] = ACTIONS(1965), - [sym__newline] = ACTIONS(1965), - [anon_sym_SEMI] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1965), - [anon_sym_err_GT_PIPE] = ACTIONS(1965), - [anon_sym_out_GT_PIPE] = ACTIONS(1965), - [anon_sym_e_GT_PIPE] = ACTIONS(1965), - [anon_sym_o_GT_PIPE] = ACTIONS(1965), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1965), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1965), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1965), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1965), - [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_DASH_DASH] = ACTIONS(1965), - [anon_sym_DASH2] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_DOT_DOT] = ACTIONS(1963), - [anon_sym_DOT_DOT2] = ACTIONS(1963), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), - [anon_sym_DOT_DOT_LT] = ACTIONS(1963), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1965), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1965), - [anon_sym_null] = ACTIONS(1965), - [anon_sym_true] = ACTIONS(1965), - [anon_sym_false] = ACTIONS(1965), - [aux_sym__val_number_decimal_token1] = ACTIONS(1963), - [aux_sym__val_number_decimal_token2] = ACTIONS(1965), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), - [aux_sym__val_number_token1] = ACTIONS(1965), - [aux_sym__val_number_token2] = ACTIONS(1965), - [aux_sym__val_number_token3] = ACTIONS(1965), - [aux_sym__val_number_token4] = ACTIONS(1965), - [aux_sym__val_number_token5] = ACTIONS(1965), - [aux_sym__val_number_token6] = ACTIONS(1965), - [anon_sym_0b] = ACTIONS(1963), - [anon_sym_0o] = ACTIONS(1963), - [anon_sym_0x] = ACTIONS(1963), - [sym_val_date] = ACTIONS(1965), - [anon_sym_DQUOTE] = ACTIONS(1965), - [sym__str_single_quotes] = ACTIONS(1965), - [sym__str_back_ticks] = ACTIONS(1965), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1965), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1965), - [anon_sym_err_GT] = ACTIONS(1963), - [anon_sym_out_GT] = ACTIONS(1963), - [anon_sym_e_GT] = ACTIONS(1963), - [anon_sym_o_GT] = ACTIONS(1963), - [anon_sym_err_PLUSout_GT] = ACTIONS(1963), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1963), - [anon_sym_o_PLUSe_GT] = ACTIONS(1963), - [anon_sym_e_PLUSo_GT] = ACTIONS(1963), - [anon_sym_err_GT_GT] = ACTIONS(1965), - [anon_sym_out_GT_GT] = ACTIONS(1965), - [anon_sym_e_GT_GT] = ACTIONS(1965), - [anon_sym_o_GT_GT] = ACTIONS(1965), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1965), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1965), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1965), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1965), - [aux_sym_unquoted_token1] = ACTIONS(1963), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1965), - }, - [1627] = { - [sym_comment] = STATE(1627), - [ts_builtin_sym_end] = ACTIONS(1969), - [sym__newline] = ACTIONS(1969), - [anon_sym_SEMI] = ACTIONS(1969), - [anon_sym_PIPE] = ACTIONS(1969), - [anon_sym_err_GT_PIPE] = ACTIONS(1969), - [anon_sym_out_GT_PIPE] = ACTIONS(1969), - [anon_sym_e_GT_PIPE] = ACTIONS(1969), - [anon_sym_o_GT_PIPE] = ACTIONS(1969), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1969), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1969), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1969), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1969), - [anon_sym_LPAREN] = ACTIONS(1969), - [anon_sym_DOLLAR] = ACTIONS(1967), - [anon_sym_DASH_DASH] = ACTIONS(1969), - [anon_sym_DASH2] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1969), - [anon_sym_DOT_DOT] = ACTIONS(1967), - [anon_sym_DOT_DOT2] = ACTIONS(1967), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1967), - [anon_sym_DOT_DOT_LT] = ACTIONS(1967), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1969), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1969), - [anon_sym_null] = ACTIONS(1969), - [anon_sym_true] = ACTIONS(1969), - [anon_sym_false] = ACTIONS(1969), - [aux_sym__val_number_decimal_token1] = ACTIONS(1967), - [aux_sym__val_number_decimal_token2] = ACTIONS(1969), - [aux_sym__val_number_decimal_token3] = ACTIONS(1969), - [aux_sym__val_number_decimal_token4] = ACTIONS(1969), - [aux_sym__val_number_token1] = ACTIONS(1969), - [aux_sym__val_number_token2] = ACTIONS(1969), - [aux_sym__val_number_token3] = ACTIONS(1969), - [aux_sym__val_number_token4] = ACTIONS(1969), - [aux_sym__val_number_token5] = ACTIONS(1969), - [aux_sym__val_number_token6] = ACTIONS(1969), - [anon_sym_0b] = ACTIONS(1967), - [anon_sym_0o] = ACTIONS(1967), - [anon_sym_0x] = ACTIONS(1967), - [sym_val_date] = ACTIONS(1969), - [anon_sym_DQUOTE] = ACTIONS(1969), - [sym__str_single_quotes] = ACTIONS(1969), - [sym__str_back_ticks] = ACTIONS(1969), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1969), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1969), - [anon_sym_err_GT] = ACTIONS(1967), - [anon_sym_out_GT] = ACTIONS(1967), - [anon_sym_e_GT] = ACTIONS(1967), - [anon_sym_o_GT] = ACTIONS(1967), - [anon_sym_err_PLUSout_GT] = ACTIONS(1967), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1967), - [anon_sym_o_PLUSe_GT] = ACTIONS(1967), - [anon_sym_e_PLUSo_GT] = ACTIONS(1967), - [anon_sym_err_GT_GT] = ACTIONS(1969), - [anon_sym_out_GT_GT] = ACTIONS(1969), - [anon_sym_e_GT_GT] = ACTIONS(1969), - [anon_sym_o_GT_GT] = ACTIONS(1969), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1969), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1969), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1969), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1969), - [aux_sym_unquoted_token1] = ACTIONS(1967), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1969), - }, - [1628] = { - [sym_path] = STATE(1858), - [sym_comment] = STATE(1628), - [aux_sym_cell_path_repeat1] = STATE(1650), - [ts_builtin_sym_end] = ACTIONS(933), - [sym__newline] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_err_GT_PIPE] = ACTIONS(933), - [anon_sym_out_GT_PIPE] = ACTIONS(933), - [anon_sym_e_GT_PIPE] = ACTIONS(933), - [anon_sym_o_GT_PIPE] = ACTIONS(933), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(933), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(933), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(933), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(933), - [anon_sym_GT2] = ACTIONS(931), - [anon_sym_DASH2] = ACTIONS(933), - [anon_sym_in2] = ACTIONS(933), - [anon_sym_STAR2] = ACTIONS(931), - [anon_sym_and2] = ACTIONS(933), - [anon_sym_xor2] = ACTIONS(933), - [anon_sym_or2] = ACTIONS(933), - [anon_sym_not_DASHin2] = ACTIONS(933), - [anon_sym_has2] = ACTIONS(933), - [anon_sym_not_DASHhas2] = ACTIONS(933), - [anon_sym_starts_DASHwith2] = ACTIONS(933), - [anon_sym_ends_DASHwith2] = ACTIONS(933), - [anon_sym_EQ_EQ2] = ACTIONS(933), - [anon_sym_BANG_EQ2] = ACTIONS(933), - [anon_sym_LT2] = ACTIONS(931), - [anon_sym_LT_EQ2] = ACTIONS(933), - [anon_sym_GT_EQ2] = ACTIONS(933), - [anon_sym_EQ_TILDE2] = ACTIONS(933), - [anon_sym_BANG_TILDE2] = ACTIONS(933), - [anon_sym_STAR_STAR2] = ACTIONS(933), - [anon_sym_PLUS_PLUS2] = ACTIONS(933), - [anon_sym_SLASH2] = ACTIONS(931), - [anon_sym_mod2] = ACTIONS(933), - [anon_sym_SLASH_SLASH2] = ACTIONS(933), - [anon_sym_PLUS2] = ACTIONS(931), - [anon_sym_bit_DASHshl2] = ACTIONS(933), - [anon_sym_bit_DASHshr2] = ACTIONS(933), - [anon_sym_bit_DASHand2] = ACTIONS(933), - [anon_sym_bit_DASHxor2] = ACTIONS(933), - [anon_sym_bit_DASHor2] = ACTIONS(933), - [anon_sym_DOT_DOT2] = ACTIONS(931), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(933), - [anon_sym_DOT_DOT_LT2] = ACTIONS(933), - [anon_sym_DOT2] = ACTIONS(4835), - [anon_sym_err_GT] = ACTIONS(931), - [anon_sym_out_GT] = ACTIONS(931), - [anon_sym_e_GT] = ACTIONS(931), - [anon_sym_o_GT] = ACTIONS(931), - [anon_sym_err_PLUSout_GT] = ACTIONS(931), - [anon_sym_out_PLUSerr_GT] = ACTIONS(931), - [anon_sym_o_PLUSe_GT] = ACTIONS(931), - [anon_sym_e_PLUSo_GT] = ACTIONS(931), - [anon_sym_err_GT_GT] = ACTIONS(933), - [anon_sym_out_GT_GT] = ACTIONS(933), - [anon_sym_e_GT_GT] = ACTIONS(933), - [anon_sym_o_GT_GT] = ACTIONS(933), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(933), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(933), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(933), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(245), - }, - [1629] = { - [sym_path] = STATE(1964), - [sym_comment] = STATE(1629), - [aux_sym_cell_path_repeat1] = STATE(1629), - [ts_builtin_sym_end] = ACTIONS(937), - [sym__newline] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(937), - [anon_sym_err_GT_PIPE] = ACTIONS(937), - [anon_sym_out_GT_PIPE] = ACTIONS(937), - [anon_sym_e_GT_PIPE] = ACTIONS(937), - [anon_sym_o_GT_PIPE] = ACTIONS(937), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(935), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_DASH2] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_DOT_DOT] = ACTIONS(935), - [anon_sym_DOT_DOT_EQ] = ACTIONS(937), - [anon_sym_DOT_DOT_LT] = ACTIONS(937), - [anon_sym_null] = ACTIONS(937), - [anon_sym_true] = ACTIONS(937), - [anon_sym_false] = ACTIONS(937), - [aux_sym__val_number_decimal_token1] = ACTIONS(935), - [aux_sym__val_number_decimal_token2] = ACTIONS(937), - [aux_sym__val_number_decimal_token3] = ACTIONS(937), - [aux_sym__val_number_decimal_token4] = ACTIONS(937), - [aux_sym__val_number_token1] = ACTIONS(937), - [aux_sym__val_number_token2] = ACTIONS(937), - [aux_sym__val_number_token3] = ACTIONS(937), - [aux_sym__val_number_token4] = ACTIONS(937), - [aux_sym__val_number_token5] = ACTIONS(937), - [aux_sym__val_number_token6] = ACTIONS(937), - [anon_sym_0b] = ACTIONS(935), - [anon_sym_0o] = ACTIONS(935), - [anon_sym_0x] = ACTIONS(935), - [sym_val_date] = ACTIONS(937), - [anon_sym_DQUOTE] = ACTIONS(937), - [sym__str_single_quotes] = ACTIONS(937), - [sym__str_back_ticks] = ACTIONS(937), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(937), - [anon_sym_DOT2] = ACTIONS(4925), - [anon_sym_err_GT] = ACTIONS(935), - [anon_sym_out_GT] = ACTIONS(935), - [anon_sym_e_GT] = ACTIONS(935), - [anon_sym_o_GT] = ACTIONS(935), - [anon_sym_err_PLUSout_GT] = ACTIONS(935), - [anon_sym_out_PLUSerr_GT] = ACTIONS(935), - [anon_sym_o_PLUSe_GT] = ACTIONS(935), - [anon_sym_e_PLUSo_GT] = ACTIONS(935), - [anon_sym_err_GT_GT] = ACTIONS(937), - [anon_sym_out_GT_GT] = ACTIONS(937), - [anon_sym_e_GT_GT] = ACTIONS(937), - [anon_sym_o_GT_GT] = ACTIONS(937), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), - [aux_sym_unquoted_token1] = ACTIONS(935), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(937), + [1541] = { + [sym_comment] = STATE(1541), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1701), + [anon_sym_DOT_DOT_LT] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), }, - [1630] = { - [sym_comment] = STATE(1630), - [sym__newline] = ACTIONS(1819), - [anon_sym_SEMI] = ACTIONS(1819), - [anon_sym_PIPE] = ACTIONS(1819), - [anon_sym_err_GT_PIPE] = ACTIONS(1819), - [anon_sym_out_GT_PIPE] = ACTIONS(1819), - [anon_sym_e_GT_PIPE] = ACTIONS(1819), - [anon_sym_o_GT_PIPE] = ACTIONS(1819), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1819), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1819), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1819), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1819), - [anon_sym_LBRACK] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1811), - [anon_sym_RPAREN] = ACTIONS(1819), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_DASH_DASH] = ACTIONS(1819), - [anon_sym_DASH2] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1819), - [anon_sym_RBRACE] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1811), - [anon_sym_LPAREN2] = ACTIONS(1813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1819), - [anon_sym_DOT_DOT_LT] = ACTIONS(1819), - [anon_sym_null] = ACTIONS(1819), - [anon_sym_true] = ACTIONS(1819), - [anon_sym_false] = ACTIONS(1819), - [aux_sym__val_number_decimal_token1] = ACTIONS(1811), - [aux_sym__val_number_decimal_token2] = ACTIONS(1819), - [aux_sym__val_number_decimal_token3] = ACTIONS(1819), - [aux_sym__val_number_decimal_token4] = ACTIONS(1819), - [aux_sym__val_number_token1] = ACTIONS(1819), - [aux_sym__val_number_token2] = ACTIONS(1819), - [aux_sym__val_number_token3] = ACTIONS(1819), - [aux_sym__val_number_token4] = ACTIONS(1819), - [aux_sym__val_number_token5] = ACTIONS(1819), - [aux_sym__val_number_token6] = ACTIONS(1819), - [anon_sym_0b] = ACTIONS(1811), - [anon_sym_0o] = ACTIONS(1811), - [anon_sym_0x] = ACTIONS(1811), - [sym_val_date] = ACTIONS(1819), - [anon_sym_DQUOTE] = ACTIONS(1819), - [sym__str_single_quotes] = ACTIONS(1819), - [sym__str_back_ticks] = ACTIONS(1819), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1819), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1819), - [anon_sym_err_GT] = ACTIONS(1811), - [anon_sym_out_GT] = ACTIONS(1811), - [anon_sym_e_GT] = ACTIONS(1811), - [anon_sym_o_GT] = ACTIONS(1811), - [anon_sym_err_PLUSout_GT] = ACTIONS(1811), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1811), - [anon_sym_o_PLUSe_GT] = ACTIONS(1811), - [anon_sym_e_PLUSo_GT] = ACTIONS(1811), - [anon_sym_err_GT_GT] = ACTIONS(1819), - [anon_sym_out_GT_GT] = ACTIONS(1819), - [anon_sym_e_GT_GT] = ACTIONS(1819), - [anon_sym_o_GT_GT] = ACTIONS(1819), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1819), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1819), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1819), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1819), - [aux_sym_unquoted_token1] = ACTIONS(1811), + [1542] = { + [sym_comment] = STATE(1542), + [sym__newline] = ACTIONS(1813), + [anon_sym_SEMI] = ACTIONS(1813), + [anon_sym_PIPE] = ACTIONS(1813), + [anon_sym_err_GT_PIPE] = ACTIONS(1813), + [anon_sym_out_GT_PIPE] = ACTIONS(1813), + [anon_sym_e_GT_PIPE] = ACTIONS(1813), + [anon_sym_o_GT_PIPE] = ACTIONS(1813), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1813), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1813), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1813), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_LPAREN] = ACTIONS(1805), + [anon_sym_RPAREN] = ACTIONS(1813), + [anon_sym_DOLLAR] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1813), + [anon_sym_DASH2] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1813), + [anon_sym_RBRACE] = ACTIONS(1813), + [anon_sym_DOT_DOT] = ACTIONS(1805), + [anon_sym_LPAREN2] = ACTIONS(1807), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1813), + [anon_sym_DOT_DOT_LT] = ACTIONS(1813), + [anon_sym_null] = ACTIONS(1813), + [anon_sym_true] = ACTIONS(1813), + [anon_sym_false] = ACTIONS(1813), + [aux_sym__val_number_decimal_token1] = ACTIONS(1805), + [aux_sym__val_number_decimal_token2] = ACTIONS(1813), + [aux_sym__val_number_decimal_token3] = ACTIONS(1813), + [aux_sym__val_number_decimal_token4] = ACTIONS(1813), + [aux_sym__val_number_token1] = ACTIONS(1813), + [aux_sym__val_number_token2] = ACTIONS(1813), + [aux_sym__val_number_token3] = ACTIONS(1813), + [aux_sym__val_number_token4] = ACTIONS(1813), + [aux_sym__val_number_token5] = ACTIONS(1813), + [aux_sym__val_number_token6] = ACTIONS(1813), + [anon_sym_0b] = ACTIONS(1805), + [anon_sym_0o] = ACTIONS(1805), + [anon_sym_0x] = ACTIONS(1805), + [sym_val_date] = ACTIONS(1813), + [anon_sym_DQUOTE] = ACTIONS(1813), + [sym__str_single_quotes] = ACTIONS(1813), + [sym__str_back_ticks] = ACTIONS(1813), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1813), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1813), + [anon_sym_err_GT] = ACTIONS(1805), + [anon_sym_out_GT] = ACTIONS(1805), + [anon_sym_e_GT] = ACTIONS(1805), + [anon_sym_o_GT] = ACTIONS(1805), + [anon_sym_err_PLUSout_GT] = ACTIONS(1805), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1805), + [anon_sym_o_PLUSe_GT] = ACTIONS(1805), + [anon_sym_e_PLUSo_GT] = ACTIONS(1805), + [anon_sym_err_GT_GT] = ACTIONS(1813), + [anon_sym_out_GT_GT] = ACTIONS(1813), + [anon_sym_e_GT_GT] = ACTIONS(1813), + [anon_sym_o_GT_GT] = ACTIONS(1813), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1813), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1813), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1813), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1813), + [aux_sym_unquoted_token1] = ACTIONS(1805), [aux_sym_unquoted_token2] = ACTIONS(1447), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1819), + [sym_raw_string_begin] = ACTIONS(1813), }, - [1631] = { - [sym_comment] = STATE(1631), - [ts_builtin_sym_end] = ACTIONS(964), - [sym__newline] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(964), - [anon_sym_err_GT_PIPE] = ACTIONS(964), - [anon_sym_out_GT_PIPE] = ACTIONS(964), - [anon_sym_e_GT_PIPE] = ACTIONS(964), - [anon_sym_o_GT_PIPE] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), - [anon_sym_GT2] = ACTIONS(962), + [1543] = { + [sym_comment] = STATE(1543), + [sym__newline] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_err_GT_PIPE] = ACTIONS(966), + [anon_sym_out_GT_PIPE] = ACTIONS(966), + [anon_sym_e_GT_PIPE] = ACTIONS(966), + [anon_sym_o_GT_PIPE] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_RPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), [anon_sym_DASH2] = ACTIONS(964), - [anon_sym_in2] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_STAR2] = ACTIONS(962), - [anon_sym_QMARK2] = ACTIONS(964), - [anon_sym_and2] = ACTIONS(964), - [anon_sym_xor2] = ACTIONS(964), - [anon_sym_or2] = ACTIONS(964), - [anon_sym_not_DASHin2] = ACTIONS(964), - [anon_sym_has2] = ACTIONS(964), - [anon_sym_not_DASHhas2] = ACTIONS(964), - [anon_sym_starts_DASHwith2] = ACTIONS(964), - [anon_sym_ends_DASHwith2] = ACTIONS(964), - [anon_sym_EQ_EQ2] = ACTIONS(964), - [anon_sym_BANG_EQ2] = ACTIONS(964), - [anon_sym_LT2] = ACTIONS(962), - [anon_sym_LT_EQ2] = ACTIONS(964), - [anon_sym_GT_EQ2] = ACTIONS(964), - [anon_sym_EQ_TILDE2] = ACTIONS(964), - [anon_sym_BANG_TILDE2] = ACTIONS(964), - [anon_sym_STAR_STAR2] = ACTIONS(964), - [anon_sym_PLUS_PLUS2] = ACTIONS(964), - [anon_sym_SLASH2] = ACTIONS(962), - [anon_sym_mod2] = ACTIONS(964), - [anon_sym_SLASH_SLASH2] = ACTIONS(964), - [anon_sym_PLUS2] = ACTIONS(962), - [anon_sym_bit_DASHshl2] = ACTIONS(964), - [anon_sym_bit_DASHshr2] = ACTIONS(964), - [anon_sym_bit_DASHand2] = ACTIONS(964), - [anon_sym_bit_DASHxor2] = ACTIONS(964), - [anon_sym_bit_DASHor2] = ACTIONS(964), - [anon_sym_DOT_DOT2] = ACTIONS(962), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(964), - [anon_sym_DOT_DOT_LT2] = ACTIONS(964), - [anon_sym_DOT2] = ACTIONS(962), - [anon_sym_err_GT] = ACTIONS(962), - [anon_sym_out_GT] = ACTIONS(962), - [anon_sym_e_GT] = ACTIONS(962), - [anon_sym_o_GT] = ACTIONS(962), - [anon_sym_err_PLUSout_GT] = ACTIONS(962), - [anon_sym_out_PLUSerr_GT] = ACTIONS(962), - [anon_sym_o_PLUSe_GT] = ACTIONS(962), - [anon_sym_e_PLUSo_GT] = ACTIONS(962), - [anon_sym_err_GT_GT] = ACTIONS(964), - [anon_sym_out_GT_GT] = ACTIONS(964), - [anon_sym_e_GT_GT] = ACTIONS(964), - [anon_sym_o_GT_GT] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), - [anon_sym_POUND] = ACTIONS(245), - }, - [1632] = { - [sym_comment] = STATE(1632), - [ts_builtin_sym_end] = ACTIONS(984), - [sym__newline] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_err_GT_PIPE] = ACTIONS(984), - [anon_sym_out_GT_PIPE] = ACTIONS(984), - [anon_sym_e_GT_PIPE] = ACTIONS(984), - [anon_sym_o_GT_PIPE] = ACTIONS(984), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(984), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(984), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(984), - [anon_sym_LBRACK] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DOT_DOT2] = ACTIONS(982), - [anon_sym_DOT_DOT_EQ] = ACTIONS(982), - [anon_sym_DOT_DOT_LT] = ACTIONS(982), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(984), - [anon_sym_DOT_DOT_LT2] = ACTIONS(984), - [anon_sym_null] = ACTIONS(984), - [anon_sym_true] = ACTIONS(984), - [anon_sym_false] = ACTIONS(984), - [aux_sym__val_number_decimal_token1] = ACTIONS(982), - [aux_sym__val_number_decimal_token2] = ACTIONS(984), - [aux_sym__val_number_decimal_token3] = ACTIONS(984), - [aux_sym__val_number_decimal_token4] = ACTIONS(984), - [aux_sym__val_number_token1] = ACTIONS(984), - [aux_sym__val_number_token2] = ACTIONS(984), - [aux_sym__val_number_token3] = ACTIONS(984), - [aux_sym__val_number_token4] = ACTIONS(984), - [aux_sym__val_number_token5] = ACTIONS(984), - [aux_sym__val_number_token6] = ACTIONS(984), - [anon_sym_0b] = ACTIONS(982), - [anon_sym_0o] = ACTIONS(982), - [anon_sym_0x] = ACTIONS(982), - [sym_val_date] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym__str_single_quotes] = ACTIONS(984), - [sym__str_back_ticks] = ACTIONS(984), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(984), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(984), - [anon_sym_err_GT] = ACTIONS(982), - [anon_sym_out_GT] = ACTIONS(982), - [anon_sym_e_GT] = ACTIONS(982), - [anon_sym_o_GT] = ACTIONS(982), - [anon_sym_err_PLUSout_GT] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT] = ACTIONS(982), - [anon_sym_o_PLUSe_GT] = ACTIONS(982), - [anon_sym_e_PLUSo_GT] = ACTIONS(982), - [anon_sym_err_GT_GT] = ACTIONS(984), - [anon_sym_out_GT_GT] = ACTIONS(984), - [anon_sym_e_GT_GT] = ACTIONS(984), - [anon_sym_o_GT_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(984), - [aux_sym_unquoted_token1] = ACTIONS(982), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_DOT_DOT] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(4840), + [anon_sym_DOT_DOT_EQ] = ACTIONS(966), + [anon_sym_DOT_DOT_LT] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(964), + [aux_sym__val_number_decimal_token2] = ACTIONS(966), + [aux_sym__val_number_decimal_token3] = ACTIONS(966), + [aux_sym__val_number_decimal_token4] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_0b] = ACTIONS(964), + [anon_sym_0o] = ACTIONS(964), + [anon_sym_0x] = ACTIONS(964), + [sym_val_date] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(964), + [anon_sym_err_GT] = ACTIONS(964), + [anon_sym_out_GT] = ACTIONS(964), + [anon_sym_e_GT] = ACTIONS(964), + [anon_sym_o_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT] = ACTIONS(964), + [anon_sym_err_GT_GT] = ACTIONS(966), + [anon_sym_out_GT_GT] = ACTIONS(966), + [anon_sym_e_GT_GT] = ACTIONS(966), + [anon_sym_o_GT_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(966), + [aux_sym_unquoted_token1] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(966), }, - [1633] = { - [sym_comment] = STATE(1633), - [ts_builtin_sym_end] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(966), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_in2] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(968), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_has2] = ACTIONS(968), - [anon_sym_not_DASHhas2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(966), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(966), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(966), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_DOT_DOT2] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(968), - [anon_sym_DOT_DOT_LT2] = ACTIONS(968), - [anon_sym_DOT2] = ACTIONS(966), - [anon_sym_err_GT] = ACTIONS(966), - [anon_sym_out_GT] = ACTIONS(966), - [anon_sym_e_GT] = ACTIONS(966), - [anon_sym_o_GT] = ACTIONS(966), - [anon_sym_err_PLUSout_GT] = ACTIONS(966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(966), - [anon_sym_o_PLUSe_GT] = ACTIONS(966), - [anon_sym_e_PLUSo_GT] = ACTIONS(966), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(245), + [1544] = { + [sym_comment] = STATE(1544), + [ts_builtin_sym_end] = ACTIONS(1688), + [sym__newline] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_err_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_GT_PIPE] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1688), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1686), + [anon_sym_DOT_DOT_LT] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [anon_sym_null] = ACTIONS(1688), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1688), + [aux_sym__val_number_decimal_token3] = ACTIONS(1688), + [aux_sym__val_number_decimal_token4] = ACTIONS(1688), + [aux_sym__val_number_token1] = ACTIONS(1688), + [aux_sym__val_number_token2] = ACTIONS(1688), + [aux_sym__val_number_token3] = ACTIONS(1688), + [aux_sym__val_number_token4] = ACTIONS(1688), + [aux_sym__val_number_token5] = ACTIONS(1688), + [aux_sym__val_number_token6] = ACTIONS(1688), + [anon_sym_0b] = ACTIONS(1686), + [anon_sym_0o] = ACTIONS(1686), + [anon_sym_0x] = ACTIONS(1686), + [sym_val_date] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [sym__str_single_quotes] = ACTIONS(1688), + [sym__str_back_ticks] = ACTIONS(1688), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1688), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1688), + [anon_sym_err_GT] = ACTIONS(1686), + [anon_sym_out_GT] = ACTIONS(1686), + [anon_sym_e_GT] = ACTIONS(1686), + [anon_sym_o_GT] = ACTIONS(1686), + [anon_sym_err_PLUSout_GT] = ACTIONS(1686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1686), + [anon_sym_o_PLUSe_GT] = ACTIONS(1686), + [anon_sym_e_PLUSo_GT] = ACTIONS(1686), + [anon_sym_err_GT_GT] = ACTIONS(1688), + [anon_sym_out_GT_GT] = ACTIONS(1688), + [anon_sym_e_GT_GT] = ACTIONS(1688), + [anon_sym_o_GT_GT] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1688), + [aux_sym_unquoted_token1] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1688), }, - [1634] = { - [sym_comment] = STATE(1634), - [ts_builtin_sym_end] = ACTIONS(960), - [sym__newline] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_err_GT_PIPE] = ACTIONS(960), - [anon_sym_out_GT_PIPE] = ACTIONS(960), - [anon_sym_e_GT_PIPE] = ACTIONS(960), - [anon_sym_o_GT_PIPE] = ACTIONS(960), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), - [anon_sym_GT2] = ACTIONS(958), - [anon_sym_DASH2] = ACTIONS(960), - [anon_sym_in2] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_STAR2] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(960), - [anon_sym_and2] = ACTIONS(960), - [anon_sym_xor2] = ACTIONS(960), - [anon_sym_or2] = ACTIONS(960), - [anon_sym_not_DASHin2] = ACTIONS(960), - [anon_sym_has2] = ACTIONS(960), - [anon_sym_not_DASHhas2] = ACTIONS(960), - [anon_sym_starts_DASHwith2] = ACTIONS(960), - [anon_sym_ends_DASHwith2] = ACTIONS(960), - [anon_sym_EQ_EQ2] = ACTIONS(960), - [anon_sym_BANG_EQ2] = ACTIONS(960), - [anon_sym_LT2] = ACTIONS(958), - [anon_sym_LT_EQ2] = ACTIONS(960), - [anon_sym_GT_EQ2] = ACTIONS(960), - [anon_sym_EQ_TILDE2] = ACTIONS(960), - [anon_sym_BANG_TILDE2] = ACTIONS(960), - [anon_sym_STAR_STAR2] = ACTIONS(960), - [anon_sym_PLUS_PLUS2] = ACTIONS(960), - [anon_sym_SLASH2] = ACTIONS(958), - [anon_sym_mod2] = ACTIONS(960), - [anon_sym_SLASH_SLASH2] = ACTIONS(960), - [anon_sym_PLUS2] = ACTIONS(958), - [anon_sym_bit_DASHshl2] = ACTIONS(960), - [anon_sym_bit_DASHshr2] = ACTIONS(960), - [anon_sym_bit_DASHand2] = ACTIONS(960), - [anon_sym_bit_DASHxor2] = ACTIONS(960), - [anon_sym_bit_DASHor2] = ACTIONS(960), - [anon_sym_DOT_DOT2] = ACTIONS(958), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(960), - [anon_sym_DOT_DOT_LT2] = ACTIONS(960), - [anon_sym_DOT2] = ACTIONS(958), - [anon_sym_err_GT] = ACTIONS(958), - [anon_sym_out_GT] = ACTIONS(958), - [anon_sym_e_GT] = ACTIONS(958), - [anon_sym_o_GT] = ACTIONS(958), - [anon_sym_err_PLUSout_GT] = ACTIONS(958), - [anon_sym_out_PLUSerr_GT] = ACTIONS(958), - [anon_sym_o_PLUSe_GT] = ACTIONS(958), - [anon_sym_e_PLUSo_GT] = ACTIONS(958), - [anon_sym_err_GT_GT] = ACTIONS(960), - [anon_sym_out_GT_GT] = ACTIONS(960), - [anon_sym_e_GT_GT] = ACTIONS(960), - [anon_sym_o_GT_GT] = ACTIONS(960), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(960), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(960), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(960), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), + [1545] = { + [sym_comment] = STATE(1545), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_GT2] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1703), + [anon_sym_in2] = ACTIONS(1703), + [anon_sym_STAR2] = ACTIONS(1701), + [anon_sym_and2] = ACTIONS(1703), + [anon_sym_xor2] = ACTIONS(1703), + [anon_sym_or2] = ACTIONS(1703), + [anon_sym_not_DASHin2] = ACTIONS(1703), + [anon_sym_has2] = ACTIONS(1703), + [anon_sym_not_DASHhas2] = ACTIONS(1703), + [anon_sym_starts_DASHwith2] = ACTIONS(1703), + [anon_sym_ends_DASHwith2] = ACTIONS(1703), + [anon_sym_EQ_EQ2] = ACTIONS(1703), + [anon_sym_BANG_EQ2] = ACTIONS(1703), + [anon_sym_LT2] = ACTIONS(1701), + [anon_sym_LT_EQ2] = ACTIONS(1703), + [anon_sym_GT_EQ2] = ACTIONS(1703), + [anon_sym_EQ_TILDE2] = ACTIONS(1703), + [anon_sym_BANG_TILDE2] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_STAR_STAR2] = ACTIONS(1703), + [anon_sym_PLUS_PLUS2] = ACTIONS(1703), + [anon_sym_SLASH2] = ACTIONS(1701), + [anon_sym_mod2] = ACTIONS(1703), + [anon_sym_SLASH_SLASH2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_bit_DASHshl2] = ACTIONS(1703), + [anon_sym_bit_DASHshr2] = ACTIONS(1703), + [anon_sym_bit_DASHand2] = ACTIONS(1703), + [anon_sym_bit_DASHxor2] = ACTIONS(1703), + [anon_sym_bit_DASHor2] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4805), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token2] = ACTIONS(1701), [anon_sym_POUND] = ACTIONS(245), }, - [1635] = { - [sym_comment] = STATE(1635), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_LBRACK] = ACTIONS(2198), - [anon_sym_LPAREN] = ACTIONS(2194), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_DOLLAR] = ACTIONS(2194), - [anon_sym_DASH_DASH] = ACTIONS(2194), - [anon_sym_DASH2] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_RBRACE] = ACTIONS(2198), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2196), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2194), - [anon_sym_DOT_DOT_LT] = ACTIONS(2194), - [anon_sym_null] = ACTIONS(2194), - [anon_sym_true] = ACTIONS(2194), - [anon_sym_false] = ACTIONS(2194), - [aux_sym__val_number_decimal_token1] = ACTIONS(2194), - [aux_sym__val_number_decimal_token2] = ACTIONS(2194), - [aux_sym__val_number_decimal_token3] = ACTIONS(2194), - [aux_sym__val_number_decimal_token4] = ACTIONS(2194), - [aux_sym__val_number_token1] = ACTIONS(2194), - [aux_sym__val_number_token2] = ACTIONS(2194), - [aux_sym__val_number_token3] = ACTIONS(2194), - [aux_sym__val_number_token4] = ACTIONS(2194), - [aux_sym__val_number_token5] = ACTIONS(2194), - [aux_sym__val_number_token6] = ACTIONS(2194), - [anon_sym_0b] = ACTIONS(2194), - [anon_sym_0o] = ACTIONS(2194), - [anon_sym_0x] = ACTIONS(2194), - [sym_val_date] = ACTIONS(2194), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym__str_single_quotes] = ACTIONS(2198), - [sym__str_back_ticks] = ACTIONS(2198), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2198), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2194), - [anon_sym_out_GT] = ACTIONS(2194), - [anon_sym_e_GT] = ACTIONS(2194), - [anon_sym_o_GT] = ACTIONS(2194), - [anon_sym_err_PLUSout_GT] = ACTIONS(2194), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2194), - [anon_sym_o_PLUSe_GT] = ACTIONS(2194), - [anon_sym_e_PLUSo_GT] = ACTIONS(2194), - [anon_sym_err_GT_GT] = ACTIONS(2194), - [anon_sym_out_GT_GT] = ACTIONS(2194), - [anon_sym_e_GT_GT] = ACTIONS(2194), - [anon_sym_o_GT_GT] = ACTIONS(2194), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), - [aux_sym_unquoted_token1] = ACTIONS(2194), - [aux_sym_unquoted_token4] = ACTIONS(2200), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2198), - }, - [1636] = { - [sym__expr_parenthesized_immediate] = STATE(7809), - [sym_comment] = STATE(1636), - [sym__newline] = ACTIONS(4928), - [anon_sym_SEMI] = ACTIONS(4928), - [anon_sym_PIPE] = ACTIONS(4928), - [anon_sym_err_GT_PIPE] = ACTIONS(4928), - [anon_sym_out_GT_PIPE] = ACTIONS(4928), - [anon_sym_e_GT_PIPE] = ACTIONS(4928), - [anon_sym_o_GT_PIPE] = ACTIONS(4928), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4928), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4928), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4928), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4930), - [anon_sym_RPAREN] = ACTIONS(4928), - [anon_sym_DOLLAR] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_DASH2] = ACTIONS(4930), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_DOT_DOT] = ACTIONS(4930), - [anon_sym_LPAREN2] = ACTIONS(4462), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4928), - [anon_sym_DOT_DOT_LT] = ACTIONS(4928), - [anon_sym_null] = ACTIONS(4928), - [anon_sym_true] = ACTIONS(4928), - [anon_sym_false] = ACTIONS(4928), - [aux_sym__val_number_decimal_token1] = ACTIONS(4930), - [aux_sym__val_number_decimal_token2] = ACTIONS(4928), - [aux_sym__val_number_decimal_token3] = ACTIONS(4928), - [aux_sym__val_number_decimal_token4] = ACTIONS(4928), - [aux_sym__val_number_token1] = ACTIONS(4928), - [aux_sym__val_number_token2] = ACTIONS(4928), - [aux_sym__val_number_token3] = ACTIONS(4928), - [aux_sym__val_number_token4] = ACTIONS(4928), - [aux_sym__val_number_token5] = ACTIONS(4928), - [aux_sym__val_number_token6] = ACTIONS(4928), - [anon_sym_0b] = ACTIONS(4930), - [anon_sym_0o] = ACTIONS(4930), - [anon_sym_0x] = ACTIONS(4930), - [sym_val_date] = ACTIONS(4928), - [anon_sym_DQUOTE] = ACTIONS(4928), - [sym__str_single_quotes] = ACTIONS(4928), - [sym__str_back_ticks] = ACTIONS(4928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4928), - [anon_sym_err_GT] = ACTIONS(4930), - [anon_sym_out_GT] = ACTIONS(4930), - [anon_sym_e_GT] = ACTIONS(4930), - [anon_sym_o_GT] = ACTIONS(4930), - [anon_sym_err_PLUSout_GT] = ACTIONS(4930), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4930), - [anon_sym_o_PLUSe_GT] = ACTIONS(4930), - [anon_sym_e_PLUSo_GT] = ACTIONS(4930), - [anon_sym_err_GT_GT] = ACTIONS(4928), - [anon_sym_out_GT_GT] = ACTIONS(4928), - [anon_sym_e_GT_GT] = ACTIONS(4928), - [anon_sym_o_GT_GT] = ACTIONS(4928), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4928), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4928), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4928), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4928), - [aux_sym_unquoted_token1] = ACTIONS(4930), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(4928), - }, - [1637] = { - [sym__expr_parenthesized_immediate] = STATE(7809), - [sym_comment] = STATE(1637), - [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(4462), - [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(245), - [sym_raw_string_begin] = ACTIONS(4932), - }, - [1638] = { - [sym_comment] = STATE(1638), - [sym__newline] = ACTIONS(2843), - [anon_sym_SEMI] = ACTIONS(2843), - [anon_sym_PIPE] = ACTIONS(2843), - [anon_sym_err_GT_PIPE] = ACTIONS(2843), - [anon_sym_out_GT_PIPE] = ACTIONS(2843), - [anon_sym_e_GT_PIPE] = ACTIONS(2843), - [anon_sym_o_GT_PIPE] = ACTIONS(2843), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2843), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2843), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2843), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_RPAREN] = ACTIONS(2843), - [anon_sym_DOLLAR] = ACTIONS(4936), - [anon_sym_DASH_DASH] = ACTIONS(2843), - [anon_sym_DASH2] = ACTIONS(4936), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_DOT_DOT] = ACTIONS(4936), - [anon_sym_DOT_DOT2] = ACTIONS(4829), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4936), - [anon_sym_DOT_DOT_LT] = ACTIONS(4936), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4831), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4831), - [anon_sym_null] = ACTIONS(2843), - [anon_sym_true] = ACTIONS(2843), - [anon_sym_false] = ACTIONS(2843), - [aux_sym__val_number_decimal_token1] = ACTIONS(4936), - [aux_sym__val_number_decimal_token2] = ACTIONS(2843), - [aux_sym__val_number_decimal_token3] = ACTIONS(2843), - [aux_sym__val_number_decimal_token4] = ACTIONS(2843), - [aux_sym__val_number_token1] = ACTIONS(2843), - [aux_sym__val_number_token2] = ACTIONS(2843), - [aux_sym__val_number_token3] = ACTIONS(2843), - [aux_sym__val_number_token4] = ACTIONS(2843), - [aux_sym__val_number_token5] = ACTIONS(2843), - [aux_sym__val_number_token6] = ACTIONS(2843), - [anon_sym_0b] = ACTIONS(4936), - [anon_sym_0o] = ACTIONS(4936), - [anon_sym_0x] = ACTIONS(4936), - [sym_val_date] = ACTIONS(2843), - [anon_sym_DQUOTE] = ACTIONS(2843), - [sym__str_single_quotes] = ACTIONS(2843), - [sym__str_back_ticks] = ACTIONS(2843), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2843), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2843), - [anon_sym_err_GT] = ACTIONS(4936), - [anon_sym_out_GT] = ACTIONS(4936), - [anon_sym_e_GT] = ACTIONS(4936), - [anon_sym_o_GT] = ACTIONS(4936), - [anon_sym_err_PLUSout_GT] = ACTIONS(4936), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4936), - [anon_sym_o_PLUSe_GT] = ACTIONS(4936), - [anon_sym_e_PLUSo_GT] = ACTIONS(4936), - [anon_sym_err_GT_GT] = ACTIONS(2843), - [anon_sym_out_GT_GT] = ACTIONS(2843), - [anon_sym_e_GT_GT] = ACTIONS(2843), - [anon_sym_o_GT_GT] = ACTIONS(2843), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2843), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2843), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2843), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2843), - [aux_sym_unquoted_token1] = ACTIONS(4936), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2843), - }, - [1639] = { - [sym_comment] = STATE(1639), - [sym__newline] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_err_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_GT_PIPE] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_RPAREN] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DASH2] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [aux_sym__val_number_token4] = ACTIONS(1650), - [aux_sym__val_number_token5] = ACTIONS(1650), - [aux_sym__val_number_token6] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1648), - [anon_sym_0o] = ACTIONS(1648), - [anon_sym_0x] = ACTIONS(1648), - [sym_val_date] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_err_GT] = ACTIONS(1648), - [anon_sym_out_GT] = ACTIONS(1648), - [anon_sym_e_GT] = ACTIONS(1648), - [anon_sym_o_GT] = ACTIONS(1648), - [anon_sym_err_PLUSout_GT] = ACTIONS(1648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), - [anon_sym_o_PLUSe_GT] = ACTIONS(1648), - [anon_sym_e_PLUSo_GT] = ACTIONS(1648), - [anon_sym_err_GT_GT] = ACTIONS(1650), - [anon_sym_out_GT_GT] = ACTIONS(1650), - [anon_sym_e_GT_GT] = ACTIONS(1650), - [anon_sym_o_GT_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), - [aux_sym_unquoted_token1] = ACTIONS(1648), - [aux_sym_unquoted_token2] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1650), - }, - [1640] = { - [sym_comment] = STATE(1640), - [ts_builtin_sym_end] = ACTIONS(1668), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_DOT_DOT] = ACTIONS(1666), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT] = ACTIONS(1668), - [aux_sym__immediate_decimal_token2] = ACTIONS(4853), - [anon_sym_null] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1668), - [aux_sym__val_number_token5] = ACTIONS(1668), - [aux_sym__val_number_token6] = ACTIONS(1668), - [anon_sym_0b] = ACTIONS(1666), - [anon_sym_0o] = ACTIONS(1666), - [anon_sym_0x] = ACTIONS(1666), - [sym_val_date] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_err_GT] = ACTIONS(1666), - [anon_sym_out_GT] = ACTIONS(1666), - [anon_sym_e_GT] = ACTIONS(1666), - [anon_sym_o_GT] = ACTIONS(1666), - [anon_sym_err_PLUSout_GT] = ACTIONS(1666), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), - [anon_sym_o_PLUSe_GT] = ACTIONS(1666), - [anon_sym_e_PLUSo_GT] = ACTIONS(1666), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [aux_sym_unquoted_token1] = ACTIONS(1666), - [aux_sym_unquoted_token2] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), - }, - [1641] = { - [sym__expr_parenthesized_immediate] = STATE(7809), - [sym_comment] = STATE(1641), - [sym__newline] = ACTIONS(4938), - [anon_sym_SEMI] = ACTIONS(4938), - [anon_sym_PIPE] = ACTIONS(4938), - [anon_sym_err_GT_PIPE] = ACTIONS(4938), - [anon_sym_out_GT_PIPE] = ACTIONS(4938), - [anon_sym_e_GT_PIPE] = ACTIONS(4938), - [anon_sym_o_GT_PIPE] = ACTIONS(4938), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4938), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4938), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4938), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4938), - [anon_sym_LBRACK] = ACTIONS(4938), - [anon_sym_LPAREN] = ACTIONS(4940), - [anon_sym_RPAREN] = ACTIONS(4938), - [anon_sym_DOLLAR] = ACTIONS(4940), - [anon_sym_DASH_DASH] = ACTIONS(4938), - [anon_sym_DASH2] = ACTIONS(4940), - [anon_sym_LBRACE] = ACTIONS(4938), - [anon_sym_RBRACE] = ACTIONS(4938), - [anon_sym_DOT_DOT] = ACTIONS(4940), - [anon_sym_LPAREN2] = ACTIONS(4462), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4938), - [anon_sym_DOT_DOT_LT] = ACTIONS(4938), - [anon_sym_null] = ACTIONS(4938), - [anon_sym_true] = ACTIONS(4938), - [anon_sym_false] = ACTIONS(4938), - [aux_sym__val_number_decimal_token1] = ACTIONS(4940), - [aux_sym__val_number_decimal_token2] = ACTIONS(4938), - [aux_sym__val_number_decimal_token3] = ACTIONS(4938), - [aux_sym__val_number_decimal_token4] = ACTIONS(4938), - [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(4938), - [aux_sym__val_number_token6] = ACTIONS(4938), - [anon_sym_0b] = ACTIONS(4940), - [anon_sym_0o] = ACTIONS(4940), - [anon_sym_0x] = ACTIONS(4940), - [sym_val_date] = ACTIONS(4938), - [anon_sym_DQUOTE] = ACTIONS(4938), - [sym__str_single_quotes] = ACTIONS(4938), - [sym__str_back_ticks] = ACTIONS(4938), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4938), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4938), - [anon_sym_err_GT] = ACTIONS(4940), - [anon_sym_out_GT] = ACTIONS(4940), - [anon_sym_e_GT] = ACTIONS(4940), - [anon_sym_o_GT] = ACTIONS(4940), - [anon_sym_err_PLUSout_GT] = ACTIONS(4940), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4940), - [anon_sym_o_PLUSe_GT] = ACTIONS(4940), - [anon_sym_e_PLUSo_GT] = ACTIONS(4940), - [anon_sym_err_GT_GT] = ACTIONS(4938), - [anon_sym_out_GT_GT] = ACTIONS(4938), - [anon_sym_e_GT_GT] = ACTIONS(4938), - [anon_sym_o_GT_GT] = ACTIONS(4938), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4938), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4938), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4938), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4938), - [aux_sym_unquoted_token1] = ACTIONS(4940), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(4938), + [1546] = { + [sym_comment] = STATE(1546), + [ts_builtin_sym_end] = ACTIONS(1676), + [sym__newline] = ACTIONS(1676), + [anon_sym_SEMI] = ACTIONS(1676), + [anon_sym_PIPE] = ACTIONS(1676), + [anon_sym_err_GT_PIPE] = ACTIONS(1676), + [anon_sym_out_GT_PIPE] = ACTIONS(1676), + [anon_sym_e_GT_PIPE] = ACTIONS(1676), + [anon_sym_o_GT_PIPE] = ACTIONS(1676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1676), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1676), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_DASH_DASH] = ACTIONS(1676), + [anon_sym_DASH2] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(1676), + [anon_sym_DOT_DOT] = ACTIONS(1674), + [anon_sym_DOT_DOT2] = ACTIONS(1674), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1674), + [anon_sym_DOT_DOT_LT] = ACTIONS(1674), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1676), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1676), + [anon_sym_null] = ACTIONS(1676), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1676), + [aux_sym__val_number_decimal_token1] = ACTIONS(1674), + [aux_sym__val_number_decimal_token2] = ACTIONS(1676), + [aux_sym__val_number_decimal_token3] = ACTIONS(1676), + [aux_sym__val_number_decimal_token4] = ACTIONS(1676), + [aux_sym__val_number_token1] = ACTIONS(1676), + [aux_sym__val_number_token2] = ACTIONS(1676), + [aux_sym__val_number_token3] = ACTIONS(1676), + [aux_sym__val_number_token4] = ACTIONS(1676), + [aux_sym__val_number_token5] = ACTIONS(1676), + [aux_sym__val_number_token6] = ACTIONS(1676), + [anon_sym_0b] = ACTIONS(1674), + [anon_sym_0o] = ACTIONS(1674), + [anon_sym_0x] = ACTIONS(1674), + [sym_val_date] = ACTIONS(1676), + [anon_sym_DQUOTE] = ACTIONS(1676), + [sym__str_single_quotes] = ACTIONS(1676), + [sym__str_back_ticks] = ACTIONS(1676), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1676), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1676), + [anon_sym_err_GT] = ACTIONS(1674), + [anon_sym_out_GT] = ACTIONS(1674), + [anon_sym_e_GT] = ACTIONS(1674), + [anon_sym_o_GT] = ACTIONS(1674), + [anon_sym_err_PLUSout_GT] = ACTIONS(1674), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1674), + [anon_sym_o_PLUSe_GT] = ACTIONS(1674), + [anon_sym_e_PLUSo_GT] = ACTIONS(1674), + [anon_sym_err_GT_GT] = ACTIONS(1676), + [anon_sym_out_GT_GT] = ACTIONS(1676), + [anon_sym_e_GT_GT] = ACTIONS(1676), + [anon_sym_o_GT_GT] = ACTIONS(1676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1676), + [aux_sym_unquoted_token1] = ACTIONS(1674), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1676), }, - [1642] = { - [sym_comment] = STATE(1642), - [sym__newline] = ACTIONS(4942), - [anon_sym_SEMI] = ACTIONS(4942), - [anon_sym_PIPE] = ACTIONS(4942), - [anon_sym_err_GT_PIPE] = ACTIONS(4942), - [anon_sym_out_GT_PIPE] = ACTIONS(4942), - [anon_sym_e_GT_PIPE] = ACTIONS(4942), - [anon_sym_o_GT_PIPE] = ACTIONS(4942), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4942), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4942), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4942), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4942), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4942), - [anon_sym_RPAREN] = ACTIONS(4942), - [anon_sym_DOLLAR] = ACTIONS(4944), - [anon_sym_DASH_DASH] = ACTIONS(4942), - [anon_sym_DASH2] = ACTIONS(4944), - [anon_sym_LBRACE] = ACTIONS(4942), - [anon_sym_DOT_DOT] = ACTIONS(4944), - [anon_sym_DOT_DOT2] = ACTIONS(4829), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4944), - [anon_sym_DOT_DOT_LT] = ACTIONS(4944), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4831), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4831), - [anon_sym_null] = ACTIONS(4942), - [anon_sym_true] = ACTIONS(4942), - [anon_sym_false] = ACTIONS(4942), - [aux_sym__val_number_decimal_token1] = ACTIONS(4944), - [aux_sym__val_number_decimal_token2] = ACTIONS(4942), - [aux_sym__val_number_decimal_token3] = ACTIONS(4942), - [aux_sym__val_number_decimal_token4] = ACTIONS(4942), - [aux_sym__val_number_token1] = ACTIONS(4942), - [aux_sym__val_number_token2] = ACTIONS(4942), - [aux_sym__val_number_token3] = ACTIONS(4942), - [aux_sym__val_number_token4] = ACTIONS(4942), - [aux_sym__val_number_token5] = ACTIONS(4942), - [aux_sym__val_number_token6] = ACTIONS(4942), - [anon_sym_0b] = ACTIONS(4944), - [anon_sym_0o] = ACTIONS(4944), - [anon_sym_0x] = ACTIONS(4944), - [sym_val_date] = ACTIONS(4942), - [anon_sym_DQUOTE] = ACTIONS(4942), - [sym__str_single_quotes] = ACTIONS(4942), - [sym__str_back_ticks] = ACTIONS(4942), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4942), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4942), - [anon_sym_err_GT] = ACTIONS(4944), - [anon_sym_out_GT] = ACTIONS(4944), - [anon_sym_e_GT] = ACTIONS(4944), - [anon_sym_o_GT] = ACTIONS(4944), - [anon_sym_err_PLUSout_GT] = ACTIONS(4944), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4944), - [anon_sym_o_PLUSe_GT] = ACTIONS(4944), - [anon_sym_e_PLUSo_GT] = ACTIONS(4944), - [anon_sym_err_GT_GT] = ACTIONS(4942), - [anon_sym_out_GT_GT] = ACTIONS(4942), - [anon_sym_e_GT_GT] = ACTIONS(4942), - [anon_sym_o_GT_GT] = ACTIONS(4942), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4942), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4942), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4942), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4942), - [aux_sym_unquoted_token1] = ACTIONS(4944), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(4942), + [1547] = { + [sym_comment] = STATE(1547), + [sym__newline] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_err_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_GT_PIPE] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1790), + [anon_sym_DOLLAR] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1790), + [anon_sym_DASH2] = ACTIONS(1782), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_LPAREN2] = ACTIONS(1784), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1790), + [anon_sym_DOT_DOT_LT] = ACTIONS(1790), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [aux_sym__val_number_decimal_token1] = ACTIONS(1782), + [aux_sym__val_number_decimal_token2] = ACTIONS(1790), + [aux_sym__val_number_decimal_token3] = ACTIONS(1790), + [aux_sym__val_number_decimal_token4] = ACTIONS(1790), + [aux_sym__val_number_token1] = ACTIONS(1790), + [aux_sym__val_number_token2] = ACTIONS(1790), + [aux_sym__val_number_token3] = ACTIONS(1790), + [aux_sym__val_number_token4] = ACTIONS(1790), + [aux_sym__val_number_token5] = ACTIONS(1790), + [aux_sym__val_number_token6] = ACTIONS(1790), + [anon_sym_0b] = ACTIONS(1782), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0x] = ACTIONS(1782), + [sym_val_date] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [sym__str_single_quotes] = ACTIONS(1790), + [sym__str_back_ticks] = ACTIONS(1790), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1790), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1790), + [anon_sym_err_GT] = ACTIONS(1782), + [anon_sym_out_GT] = ACTIONS(1782), + [anon_sym_e_GT] = ACTIONS(1782), + [anon_sym_o_GT] = ACTIONS(1782), + [anon_sym_err_PLUSout_GT] = ACTIONS(1782), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1782), + [anon_sym_o_PLUSe_GT] = ACTIONS(1782), + [anon_sym_e_PLUSo_GT] = ACTIONS(1782), + [anon_sym_err_GT_GT] = ACTIONS(1790), + [anon_sym_out_GT_GT] = ACTIONS(1790), + [anon_sym_e_GT_GT] = ACTIONS(1790), + [anon_sym_o_GT_GT] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), + [aux_sym_unquoted_token1] = ACTIONS(1782), + [aux_sym_unquoted_token2] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1790), }, - [1643] = { - [sym_comment] = STATE(1643), + [1548] = { + [sym_comment] = STATE(1548), [ts_builtin_sym_end] = ACTIONS(994), [sym__newline] = ACTIONS(994), [anon_sym_SEMI] = ACTIONS(994), @@ -227344,11 +218092,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(998), [anon_sym_LBRACE] = ACTIONS(994), [anon_sym_DOT_DOT] = ACTIONS(998), - [anon_sym_DOT_DOT2] = ACTIONS(4907), + [anon_sym_DOT_DOT2] = ACTIONS(4811), [anon_sym_DOT_DOT_EQ] = ACTIONS(998), [anon_sym_DOT_DOT_LT] = ACTIONS(998), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4909), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4909), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4813), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4813), [anon_sym_null] = ACTIONS(994), [anon_sym_true] = ACTIONS(994), [anon_sym_false] = ACTIONS(994), @@ -227391,892 +218139,416 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(994), }, - [1644] = { - [sym_comment] = STATE(1644), - [sym__newline] = ACTIONS(2043), - [anon_sym_SEMI] = ACTIONS(2043), - [anon_sym_PIPE] = ACTIONS(2043), - [anon_sym_err_GT_PIPE] = ACTIONS(2043), - [anon_sym_out_GT_PIPE] = ACTIONS(2043), - [anon_sym_e_GT_PIPE] = ACTIONS(2043), - [anon_sym_o_GT_PIPE] = ACTIONS(2043), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2043), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2043), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2043), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2043), - [anon_sym_LBRACK] = ACTIONS(2043), - [anon_sym_LPAREN] = ACTIONS(2041), - [anon_sym_RPAREN] = ACTIONS(2043), - [anon_sym_DOLLAR] = ACTIONS(2041), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_DASH2] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2041), - [anon_sym_LPAREN2] = ACTIONS(1780), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2043), - [anon_sym_DOT_DOT_LT] = ACTIONS(2043), - [anon_sym_null] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(2043), - [anon_sym_false] = ACTIONS(2043), - [aux_sym__val_number_decimal_token1] = ACTIONS(2041), - [aux_sym__val_number_decimal_token2] = ACTIONS(2043), - [aux_sym__val_number_decimal_token3] = ACTIONS(2043), - [aux_sym__val_number_decimal_token4] = ACTIONS(2043), - [aux_sym__val_number_token1] = ACTIONS(2043), - [aux_sym__val_number_token2] = ACTIONS(2043), - [aux_sym__val_number_token3] = ACTIONS(2043), - [aux_sym__val_number_token4] = ACTIONS(2043), - [aux_sym__val_number_token5] = ACTIONS(2043), - [aux_sym__val_number_token6] = ACTIONS(2043), - [anon_sym_0b] = ACTIONS(2041), - [anon_sym_0o] = ACTIONS(2041), - [anon_sym_0x] = ACTIONS(2041), - [sym_val_date] = ACTIONS(2043), - [anon_sym_DQUOTE] = ACTIONS(2043), - [sym__str_single_quotes] = ACTIONS(2043), - [sym__str_back_ticks] = ACTIONS(2043), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2043), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2043), - [anon_sym_err_GT] = ACTIONS(2041), - [anon_sym_out_GT] = ACTIONS(2041), - [anon_sym_e_GT] = ACTIONS(2041), - [anon_sym_o_GT] = ACTIONS(2041), - [anon_sym_err_PLUSout_GT] = ACTIONS(2041), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2041), - [anon_sym_o_PLUSe_GT] = ACTIONS(2041), - [anon_sym_e_PLUSo_GT] = ACTIONS(2041), - [anon_sym_err_GT_GT] = ACTIONS(2043), - [anon_sym_out_GT_GT] = ACTIONS(2043), - [anon_sym_e_GT_GT] = ACTIONS(2043), - [anon_sym_o_GT_GT] = ACTIONS(2043), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2043), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2043), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2043), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2043), - [aux_sym_unquoted_token1] = ACTIONS(2041), - [aux_sym_unquoted_token2] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2043), - }, - [1645] = { - [sym_comment] = STATE(1645), - [ts_builtin_sym_end] = ACTIONS(1668), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_GT2] = ACTIONS(1666), - [anon_sym_DASH2] = ACTIONS(1668), - [anon_sym_in2] = ACTIONS(1668), - [anon_sym_STAR2] = ACTIONS(1666), - [anon_sym_and2] = ACTIONS(1668), - [anon_sym_xor2] = ACTIONS(1668), - [anon_sym_or2] = ACTIONS(1668), - [anon_sym_not_DASHin2] = ACTIONS(1668), - [anon_sym_has2] = ACTIONS(1668), - [anon_sym_not_DASHhas2] = ACTIONS(1668), - [anon_sym_starts_DASHwith2] = ACTIONS(1668), - [anon_sym_ends_DASHwith2] = ACTIONS(1668), - [anon_sym_EQ_EQ2] = ACTIONS(1668), - [anon_sym_BANG_EQ2] = ACTIONS(1668), - [anon_sym_LT2] = ACTIONS(1666), - [anon_sym_LT_EQ2] = ACTIONS(1668), - [anon_sym_GT_EQ2] = ACTIONS(1668), - [anon_sym_EQ_TILDE2] = ACTIONS(1668), - [anon_sym_BANG_TILDE2] = ACTIONS(1668), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_STAR_STAR2] = ACTIONS(1668), - [anon_sym_PLUS_PLUS2] = ACTIONS(1668), - [anon_sym_SLASH2] = ACTIONS(1666), - [anon_sym_mod2] = ACTIONS(1668), - [anon_sym_SLASH_SLASH2] = ACTIONS(1668), - [anon_sym_PLUS2] = ACTIONS(1666), - [anon_sym_bit_DASHshl2] = ACTIONS(1668), - [anon_sym_bit_DASHshr2] = ACTIONS(1668), - [anon_sym_bit_DASHand2] = ACTIONS(1668), - [anon_sym_bit_DASHxor2] = ACTIONS(1668), - [anon_sym_bit_DASHor2] = ACTIONS(1668), - [anon_sym_DOT_DOT2] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [aux_sym__immediate_decimal_token2] = ACTIONS(4857), - [anon_sym_err_GT] = ACTIONS(1666), - [anon_sym_out_GT] = ACTIONS(1666), - [anon_sym_e_GT] = ACTIONS(1666), - [anon_sym_o_GT] = ACTIONS(1666), - [anon_sym_err_PLUSout_GT] = ACTIONS(1666), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), - [anon_sym_o_PLUSe_GT] = ACTIONS(1666), - [anon_sym_e_PLUSo_GT] = ACTIONS(1666), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [aux_sym_unquoted_token2] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - }, - [1646] = { - [sym_comment] = STATE(1646), - [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(1719), - [anon_sym_RPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_DASH_DASH] = ACTIONS(1721), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1719), - [anon_sym_LPAREN2] = ACTIONS(1721), - [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(1719), - [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(1719), - [anon_sym_0o] = ACTIONS(1719), - [anon_sym_0x] = ACTIONS(1719), - [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(1719), - [anon_sym_out_GT] = ACTIONS(1719), - [anon_sym_e_GT] = ACTIONS(1719), - [anon_sym_o_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT] = ACTIONS(1719), - [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(1719), - [aux_sym_unquoted_token2] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1721), - }, - [1647] = { - [sym__expr_parenthesized_immediate] = STATE(7809), - [sym_comment] = STATE(1647), - [sym__newline] = ACTIONS(4946), - [anon_sym_SEMI] = ACTIONS(4946), - [anon_sym_PIPE] = ACTIONS(4946), - [anon_sym_err_GT_PIPE] = ACTIONS(4946), - [anon_sym_out_GT_PIPE] = ACTIONS(4946), - [anon_sym_e_GT_PIPE] = ACTIONS(4946), - [anon_sym_o_GT_PIPE] = ACTIONS(4946), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4946), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4946), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4946), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4946), - [anon_sym_LBRACK] = ACTIONS(4946), - [anon_sym_LPAREN] = ACTIONS(4948), - [anon_sym_RPAREN] = ACTIONS(4946), - [anon_sym_DOLLAR] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4946), - [anon_sym_DASH2] = ACTIONS(4948), - [anon_sym_LBRACE] = ACTIONS(4946), - [anon_sym_RBRACE] = ACTIONS(4946), - [anon_sym_DOT_DOT] = ACTIONS(4948), - [anon_sym_LPAREN2] = ACTIONS(4462), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4946), - [anon_sym_DOT_DOT_LT] = ACTIONS(4946), - [anon_sym_null] = ACTIONS(4946), - [anon_sym_true] = ACTIONS(4946), - [anon_sym_false] = ACTIONS(4946), - [aux_sym__val_number_decimal_token1] = ACTIONS(4948), - [aux_sym__val_number_decimal_token2] = ACTIONS(4946), - [aux_sym__val_number_decimal_token3] = ACTIONS(4946), - [aux_sym__val_number_decimal_token4] = ACTIONS(4946), - [aux_sym__val_number_token1] = ACTIONS(4946), - [aux_sym__val_number_token2] = ACTIONS(4946), - [aux_sym__val_number_token3] = ACTIONS(4946), - [aux_sym__val_number_token4] = ACTIONS(4946), - [aux_sym__val_number_token5] = ACTIONS(4946), - [aux_sym__val_number_token6] = ACTIONS(4946), - [anon_sym_0b] = ACTIONS(4948), - [anon_sym_0o] = ACTIONS(4948), - [anon_sym_0x] = ACTIONS(4948), - [sym_val_date] = ACTIONS(4946), - [anon_sym_DQUOTE] = ACTIONS(4946), - [sym__str_single_quotes] = ACTIONS(4946), - [sym__str_back_ticks] = ACTIONS(4946), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4946), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4946), - [anon_sym_err_GT] = ACTIONS(4948), - [anon_sym_out_GT] = ACTIONS(4948), - [anon_sym_e_GT] = ACTIONS(4948), - [anon_sym_o_GT] = ACTIONS(4948), - [anon_sym_err_PLUSout_GT] = ACTIONS(4948), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4948), - [anon_sym_o_PLUSe_GT] = ACTIONS(4948), - [anon_sym_e_PLUSo_GT] = ACTIONS(4948), - [anon_sym_err_GT_GT] = ACTIONS(4946), - [anon_sym_out_GT_GT] = ACTIONS(4946), - [anon_sym_e_GT_GT] = ACTIONS(4946), - [anon_sym_o_GT_GT] = ACTIONS(4946), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4946), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4946), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4946), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4946), - [aux_sym_unquoted_token1] = ACTIONS(4948), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(4946), - }, - [1648] = { - [sym_comment] = STATE(1648), - [ts_builtin_sym_end] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_DOT_DOT2] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), - [anon_sym_DOT_DOT_LT] = ACTIONS(1711), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), - [anon_sym_null] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1713), - [aux_sym__val_number_decimal_token3] = ACTIONS(1713), - [aux_sym__val_number_decimal_token4] = ACTIONS(1713), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1713), - [aux_sym__val_number_token5] = ACTIONS(1713), - [aux_sym__val_number_token6] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1713), - }, - [1649] = { - [sym_comment] = STATE(1649), - [sym__newline] = ACTIONS(956), - [anon_sym_SEMI] = ACTIONS(956), - [anon_sym_PIPE] = ACTIONS(956), - [anon_sym_err_GT_PIPE] = ACTIONS(956), - [anon_sym_out_GT_PIPE] = ACTIONS(956), - [anon_sym_e_GT_PIPE] = ACTIONS(956), - [anon_sym_o_GT_PIPE] = ACTIONS(956), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(956), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(956), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(956), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(956), - [anon_sym_LBRACK] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(956), - [anon_sym_RPAREN] = ACTIONS(956), - [anon_sym_DOLLAR] = ACTIONS(954), - [anon_sym_DASH_DASH] = ACTIONS(956), - [anon_sym_DASH2] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(956), - [anon_sym_RBRACE] = ACTIONS(956), - [anon_sym_DOT_DOT] = ACTIONS(954), - [anon_sym_QMARK2] = ACTIONS(956), - [anon_sym_DOT_DOT_EQ] = ACTIONS(956), - [anon_sym_DOT_DOT_LT] = ACTIONS(956), - [anon_sym_null] = ACTIONS(956), - [anon_sym_true] = ACTIONS(956), - [anon_sym_false] = ACTIONS(956), - [aux_sym__val_number_decimal_token1] = ACTIONS(954), - [aux_sym__val_number_decimal_token2] = ACTIONS(956), - [aux_sym__val_number_decimal_token3] = ACTIONS(956), - [aux_sym__val_number_decimal_token4] = ACTIONS(956), - [aux_sym__val_number_token1] = ACTIONS(956), - [aux_sym__val_number_token2] = ACTIONS(956), - [aux_sym__val_number_token3] = ACTIONS(956), - [aux_sym__val_number_token4] = ACTIONS(956), - [aux_sym__val_number_token5] = ACTIONS(956), - [aux_sym__val_number_token6] = ACTIONS(956), - [anon_sym_0b] = ACTIONS(954), - [anon_sym_0o] = ACTIONS(954), - [anon_sym_0x] = ACTIONS(954), - [sym_val_date] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(956), - [sym__str_single_quotes] = ACTIONS(956), - [sym__str_back_ticks] = ACTIONS(956), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(956), - [anon_sym_DOT2] = ACTIONS(954), - [anon_sym_err_GT] = ACTIONS(954), - [anon_sym_out_GT] = ACTIONS(954), - [anon_sym_e_GT] = ACTIONS(954), - [anon_sym_o_GT] = ACTIONS(954), - [anon_sym_err_PLUSout_GT] = ACTIONS(954), - [anon_sym_out_PLUSerr_GT] = ACTIONS(954), - [anon_sym_o_PLUSe_GT] = ACTIONS(954), - [anon_sym_e_PLUSo_GT] = ACTIONS(954), - [anon_sym_err_GT_GT] = ACTIONS(956), - [anon_sym_out_GT_GT] = ACTIONS(956), - [anon_sym_e_GT_GT] = ACTIONS(956), - [anon_sym_o_GT_GT] = ACTIONS(956), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(956), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(956), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(956), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(956), - [aux_sym_unquoted_token1] = ACTIONS(954), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(956), - }, - [1650] = { - [sym_path] = STATE(1858), - [sym_comment] = STATE(1650), - [aux_sym_cell_path_repeat1] = STATE(1650), - [ts_builtin_sym_end] = ACTIONS(937), - [sym__newline] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(937), - [anon_sym_err_GT_PIPE] = ACTIONS(937), - [anon_sym_out_GT_PIPE] = ACTIONS(937), - [anon_sym_e_GT_PIPE] = ACTIONS(937), - [anon_sym_o_GT_PIPE] = ACTIONS(937), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), - [anon_sym_GT2] = ACTIONS(935), - [anon_sym_DASH2] = ACTIONS(937), - [anon_sym_in2] = ACTIONS(937), - [anon_sym_STAR2] = ACTIONS(935), - [anon_sym_and2] = ACTIONS(937), - [anon_sym_xor2] = ACTIONS(937), - [anon_sym_or2] = ACTIONS(937), - [anon_sym_not_DASHin2] = ACTIONS(937), - [anon_sym_has2] = ACTIONS(937), - [anon_sym_not_DASHhas2] = ACTIONS(937), - [anon_sym_starts_DASHwith2] = ACTIONS(937), - [anon_sym_ends_DASHwith2] = ACTIONS(937), - [anon_sym_EQ_EQ2] = ACTIONS(937), - [anon_sym_BANG_EQ2] = ACTIONS(937), - [anon_sym_LT2] = ACTIONS(935), - [anon_sym_LT_EQ2] = ACTIONS(937), - [anon_sym_GT_EQ2] = ACTIONS(937), - [anon_sym_EQ_TILDE2] = ACTIONS(937), - [anon_sym_BANG_TILDE2] = ACTIONS(937), - [anon_sym_STAR_STAR2] = ACTIONS(937), - [anon_sym_PLUS_PLUS2] = ACTIONS(937), - [anon_sym_SLASH2] = ACTIONS(935), - [anon_sym_mod2] = ACTIONS(937), - [anon_sym_SLASH_SLASH2] = ACTIONS(937), - [anon_sym_PLUS2] = ACTIONS(935), - [anon_sym_bit_DASHshl2] = ACTIONS(937), - [anon_sym_bit_DASHshr2] = ACTIONS(937), - [anon_sym_bit_DASHand2] = ACTIONS(937), - [anon_sym_bit_DASHxor2] = ACTIONS(937), - [anon_sym_bit_DASHor2] = ACTIONS(937), - [anon_sym_DOT_DOT2] = ACTIONS(935), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), - [anon_sym_DOT_DOT_LT2] = ACTIONS(937), - [anon_sym_DOT2] = ACTIONS(4950), - [anon_sym_err_GT] = ACTIONS(935), - [anon_sym_out_GT] = ACTIONS(935), - [anon_sym_e_GT] = ACTIONS(935), - [anon_sym_o_GT] = ACTIONS(935), - [anon_sym_err_PLUSout_GT] = ACTIONS(935), - [anon_sym_out_PLUSerr_GT] = ACTIONS(935), - [anon_sym_o_PLUSe_GT] = ACTIONS(935), - [anon_sym_e_PLUSo_GT] = ACTIONS(935), - [anon_sym_err_GT_GT] = ACTIONS(937), - [anon_sym_out_GT_GT] = ACTIONS(937), - [anon_sym_e_GT_GT] = ACTIONS(937), - [anon_sym_o_GT_GT] = ACTIONS(937), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), - [anon_sym_POUND] = ACTIONS(245), + [1549] = { + [sym_comment] = STATE(1549), + [ts_builtin_sym_end] = ACTIONS(1799), + [sym__newline] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(1799), + [anon_sym_PIPE] = ACTIONS(1799), + [anon_sym_err_GT_PIPE] = ACTIONS(1799), + [anon_sym_out_GT_PIPE] = ACTIONS(1799), + [anon_sym_e_GT_PIPE] = ACTIONS(1799), + [anon_sym_o_GT_PIPE] = ACTIONS(1799), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1799), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1799), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1799), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1799), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_DASH2] = ACTIONS(1797), + [anon_sym_LBRACE] = ACTIONS(1799), + [anon_sym_DOT_DOT] = ACTIONS(1797), + [anon_sym_DOT_DOT2] = ACTIONS(1797), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1797), + [anon_sym_DOT_DOT_LT] = ACTIONS(1797), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1799), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1799), + [anon_sym_null] = ACTIONS(1799), + [anon_sym_true] = ACTIONS(1799), + [anon_sym_false] = ACTIONS(1799), + [aux_sym__val_number_decimal_token1] = ACTIONS(1797), + [aux_sym__val_number_decimal_token2] = ACTIONS(1799), + [aux_sym__val_number_decimal_token3] = ACTIONS(1799), + [aux_sym__val_number_decimal_token4] = ACTIONS(1799), + [aux_sym__val_number_token1] = ACTIONS(1799), + [aux_sym__val_number_token2] = ACTIONS(1799), + [aux_sym__val_number_token3] = ACTIONS(1799), + [aux_sym__val_number_token4] = ACTIONS(1799), + [aux_sym__val_number_token5] = ACTIONS(1799), + [aux_sym__val_number_token6] = ACTIONS(1799), + [anon_sym_0b] = ACTIONS(1797), + [anon_sym_0o] = ACTIONS(1797), + [anon_sym_0x] = ACTIONS(1797), + [sym_val_date] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1799), + [sym__str_single_quotes] = ACTIONS(1799), + [sym__str_back_ticks] = ACTIONS(1799), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1799), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1799), + [anon_sym_err_GT] = ACTIONS(1797), + [anon_sym_out_GT] = ACTIONS(1797), + [anon_sym_e_GT] = ACTIONS(1797), + [anon_sym_o_GT] = ACTIONS(1797), + [anon_sym_err_PLUSout_GT] = ACTIONS(1797), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1797), + [anon_sym_o_PLUSe_GT] = ACTIONS(1797), + [anon_sym_e_PLUSo_GT] = ACTIONS(1797), + [anon_sym_err_GT_GT] = ACTIONS(1799), + [anon_sym_out_GT_GT] = ACTIONS(1799), + [anon_sym_e_GT_GT] = ACTIONS(1799), + [anon_sym_o_GT_GT] = ACTIONS(1799), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1799), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1799), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1799), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1799), + [aux_sym_unquoted_token1] = ACTIONS(1797), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1799), }, - [1651] = { - [sym_comment] = STATE(1651), - [sym__newline] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_err_GT_PIPE] = ACTIONS(1792), - [anon_sym_out_GT_PIPE] = ACTIONS(1792), - [anon_sym_e_GT_PIPE] = ACTIONS(1792), - [anon_sym_o_GT_PIPE] = ACTIONS(1792), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1792), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1792), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1792), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_DASH2] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1792), - [anon_sym_DOT_DOT_LT] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1792), - [anon_sym_false] = ACTIONS(1792), - [aux_sym__val_number_decimal_token1] = ACTIONS(1790), - [aux_sym__val_number_decimal_token2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1792), - [aux_sym__val_number_decimal_token4] = ACTIONS(1792), - [aux_sym__val_number_token1] = ACTIONS(1792), - [aux_sym__val_number_token2] = ACTIONS(1792), - [aux_sym__val_number_token3] = ACTIONS(1792), - [aux_sym__val_number_token4] = ACTIONS(1792), - [aux_sym__val_number_token5] = ACTIONS(1792), - [aux_sym__val_number_token6] = ACTIONS(1792), - [anon_sym_0b] = ACTIONS(1790), - [anon_sym_0o] = ACTIONS(1790), - [anon_sym_0x] = ACTIONS(1790), - [sym_val_date] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym__str_single_quotes] = ACTIONS(1792), - [sym__str_back_ticks] = ACTIONS(1792), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1792), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1792), - [anon_sym_err_GT] = ACTIONS(1790), - [anon_sym_out_GT] = ACTIONS(1790), - [anon_sym_e_GT] = ACTIONS(1790), - [anon_sym_o_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT] = ACTIONS(1790), - [anon_sym_err_GT_GT] = ACTIONS(1792), - [anon_sym_out_GT_GT] = ACTIONS(1792), - [anon_sym_e_GT_GT] = ACTIONS(1792), - [anon_sym_o_GT_GT] = ACTIONS(1792), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1792), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1792), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1792), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1792), - [aux_sym_unquoted_token1] = ACTIONS(1790), - [aux_sym_unquoted_token2] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1792), + [1550] = { + [sym_comment] = STATE(1550), + [sym__newline] = ACTIONS(2130), + [anon_sym_SEMI] = ACTIONS(2130), + [anon_sym_PIPE] = ACTIONS(2130), + [anon_sym_err_GT_PIPE] = ACTIONS(2130), + [anon_sym_out_GT_PIPE] = ACTIONS(2130), + [anon_sym_e_GT_PIPE] = ACTIONS(2130), + [anon_sym_o_GT_PIPE] = ACTIONS(2130), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2130), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2130), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2130), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2130), + [anon_sym_LBRACK] = ACTIONS(2130), + [anon_sym_LPAREN] = ACTIONS(2128), + [anon_sym_RPAREN] = ACTIONS(2130), + [anon_sym_DOLLAR] = ACTIONS(2128), + [anon_sym_DASH_DASH] = ACTIONS(2128), + [anon_sym_DASH2] = ACTIONS(2128), + [anon_sym_LBRACE] = ACTIONS(2130), + [anon_sym_RBRACE] = ACTIONS(2130), + [anon_sym_DOT_DOT] = ACTIONS(2128), + [anon_sym_LPAREN2] = ACTIONS(2070), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2128), + [anon_sym_DOT_DOT_LT] = ACTIONS(2128), + [anon_sym_null] = ACTIONS(2128), + [anon_sym_true] = ACTIONS(2128), + [anon_sym_false] = ACTIONS(2128), + [aux_sym__val_number_decimal_token1] = ACTIONS(2128), + [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(2128), + [anon_sym_0o] = ACTIONS(2128), + [anon_sym_0x] = ACTIONS(2128), + [sym_val_date] = ACTIONS(2128), + [anon_sym_DQUOTE] = ACTIONS(2130), + [sym__str_single_quotes] = ACTIONS(2130), + [sym__str_back_ticks] = ACTIONS(2130), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2130), + [anon_sym_err_GT] = ACTIONS(2128), + [anon_sym_out_GT] = ACTIONS(2128), + [anon_sym_e_GT] = ACTIONS(2128), + [anon_sym_o_GT] = ACTIONS(2128), + [anon_sym_err_PLUSout_GT] = ACTIONS(2128), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2128), + [anon_sym_o_PLUSe_GT] = ACTIONS(2128), + [anon_sym_e_PLUSo_GT] = ACTIONS(2128), + [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(2128), + [aux_sym_unquoted_token4] = ACTIONS(2074), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2130), }, - [1652] = { - [sym_comment] = STATE(1652), - [sym__newline] = ACTIONS(2063), - [anon_sym_SEMI] = ACTIONS(2063), - [anon_sym_PIPE] = ACTIONS(2063), - [anon_sym_err_GT_PIPE] = ACTIONS(2063), - [anon_sym_out_GT_PIPE] = ACTIONS(2063), - [anon_sym_e_GT_PIPE] = ACTIONS(2063), - [anon_sym_o_GT_PIPE] = ACTIONS(2063), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2063), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2063), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2063), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2063), - [anon_sym_LBRACK] = ACTIONS(2063), - [anon_sym_LPAREN] = ACTIONS(2059), - [anon_sym_RPAREN] = ACTIONS(2063), - [anon_sym_DOLLAR] = ACTIONS(2059), - [anon_sym_DASH_DASH] = ACTIONS(2063), - [anon_sym_DASH2] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(2063), - [anon_sym_RBRACE] = ACTIONS(2063), - [anon_sym_DOT_DOT] = ACTIONS(2059), - [anon_sym_LPAREN2] = ACTIONS(2061), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2063), - [anon_sym_DOT_DOT_LT] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2063), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [aux_sym__val_number_decimal_token1] = ACTIONS(2059), - [aux_sym__val_number_decimal_token2] = ACTIONS(2063), - [aux_sym__val_number_decimal_token3] = ACTIONS(2063), - [aux_sym__val_number_decimal_token4] = ACTIONS(2063), - [aux_sym__val_number_token1] = ACTIONS(2063), - [aux_sym__val_number_token2] = ACTIONS(2063), - [aux_sym__val_number_token3] = ACTIONS(2063), - [aux_sym__val_number_token4] = ACTIONS(2063), - [aux_sym__val_number_token5] = ACTIONS(2063), - [aux_sym__val_number_token6] = ACTIONS(2063), - [anon_sym_0b] = ACTIONS(2059), - [anon_sym_0o] = ACTIONS(2059), - [anon_sym_0x] = ACTIONS(2059), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(2063), - [sym__str_single_quotes] = ACTIONS(2063), - [sym__str_back_ticks] = ACTIONS(2063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2063), - [anon_sym_err_GT] = ACTIONS(2059), - [anon_sym_out_GT] = ACTIONS(2059), - [anon_sym_e_GT] = ACTIONS(2059), - [anon_sym_o_GT] = ACTIONS(2059), - [anon_sym_err_PLUSout_GT] = ACTIONS(2059), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2059), - [anon_sym_o_PLUSe_GT] = ACTIONS(2059), - [anon_sym_e_PLUSo_GT] = ACTIONS(2059), - [anon_sym_err_GT_GT] = ACTIONS(2063), - [anon_sym_out_GT_GT] = ACTIONS(2063), - [anon_sym_e_GT_GT] = ACTIONS(2063), - [anon_sym_o_GT_GT] = ACTIONS(2063), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2063), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2063), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2063), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2063), - [aux_sym_unquoted_token1] = ACTIONS(2059), - [aux_sym_unquoted_token2] = ACTIONS(2065), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2063), + [1551] = { + [sym_comment] = STATE(1551), + [sym__newline] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2072), + [anon_sym_PIPE] = ACTIONS(2072), + [anon_sym_err_GT_PIPE] = ACTIONS(2072), + [anon_sym_out_GT_PIPE] = ACTIONS(2072), + [anon_sym_e_GT_PIPE] = ACTIONS(2072), + [anon_sym_o_GT_PIPE] = ACTIONS(2072), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2072), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2072), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2072), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_RPAREN] = ACTIONS(2072), + [anon_sym_DOLLAR] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [anon_sym_DASH2] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2072), + [anon_sym_RBRACE] = ACTIONS(2072), + [anon_sym_DOT_DOT] = ACTIONS(2068), + [anon_sym_LPAREN2] = ACTIONS(2070), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2068), + [anon_sym_DOT_DOT_LT] = ACTIONS(2068), + [anon_sym_null] = ACTIONS(2068), + [anon_sym_true] = ACTIONS(2068), + [anon_sym_false] = 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_0b] = ACTIONS(2068), + [anon_sym_0o] = ACTIONS(2068), + [anon_sym_0x] = ACTIONS(2068), + [sym_val_date] = ACTIONS(2068), + [anon_sym_DQUOTE] = ACTIONS(2072), + [sym__str_single_quotes] = ACTIONS(2072), + [sym__str_back_ticks] = ACTIONS(2072), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2072), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2072), + [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(2068), + [anon_sym_out_GT_GT] = ACTIONS(2068), + [anon_sym_e_GT_GT] = ACTIONS(2068), + [anon_sym_o_GT_GT] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2068), + [aux_sym_unquoted_token1] = ACTIONS(2068), + [aux_sym_unquoted_token4] = ACTIONS(2074), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2072), }, - [1653] = { - [sym_comment] = STATE(1653), - [aux_sym_shebang_repeat1] = STATE(1653), - [sym__newline] = ACTIONS(4953), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym_PIPE] = ACTIONS(1286), - [anon_sym_err_GT_PIPE] = ACTIONS(1286), - [anon_sym_out_GT_PIPE] = ACTIONS(1286), - [anon_sym_e_GT_PIPE] = ACTIONS(1286), - [anon_sym_o_GT_PIPE] = ACTIONS(1286), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1286), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1286), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1286), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1286), - [anon_sym_COLON] = ACTIONS(1286), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_RPAREN] = ACTIONS(1286), - [anon_sym_GT2] = ACTIONS(1284), - [anon_sym_DASH2] = ACTIONS(1286), - [anon_sym_in2] = ACTIONS(1286), - [anon_sym_else] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_catch] = ACTIONS(1286), - [anon_sym_STAR2] = ACTIONS(1284), - [anon_sym_and2] = ACTIONS(1286), - [anon_sym_xor2] = ACTIONS(1286), - [anon_sym_or2] = ACTIONS(1286), - [anon_sym_not_DASHin2] = ACTIONS(1286), - [anon_sym_has2] = ACTIONS(1286), - [anon_sym_not_DASHhas2] = ACTIONS(1286), - [anon_sym_starts_DASHwith2] = ACTIONS(1286), - [anon_sym_ends_DASHwith2] = ACTIONS(1286), - [anon_sym_EQ_EQ2] = ACTIONS(1286), - [anon_sym_BANG_EQ2] = ACTIONS(1286), - [anon_sym_LT2] = ACTIONS(1284), - [anon_sym_LT_EQ2] = ACTIONS(1286), - [anon_sym_GT_EQ2] = ACTIONS(1286), - [anon_sym_EQ_TILDE2] = ACTIONS(1286), - [anon_sym_BANG_TILDE2] = ACTIONS(1286), - [anon_sym_STAR_STAR2] = ACTIONS(1286), - [anon_sym_PLUS_PLUS2] = ACTIONS(1286), - [anon_sym_SLASH2] = ACTIONS(1284), - [anon_sym_mod2] = ACTIONS(1286), - [anon_sym_SLASH_SLASH2] = ACTIONS(1286), - [anon_sym_PLUS2] = ACTIONS(1284), - [anon_sym_bit_DASHshl2] = ACTIONS(1286), - [anon_sym_bit_DASHshr2] = ACTIONS(1286), - [anon_sym_bit_DASHand2] = ACTIONS(1286), - [anon_sym_bit_DASHxor2] = ACTIONS(1286), - [anon_sym_bit_DASHor2] = ACTIONS(1286), - [anon_sym_err_GT] = ACTIONS(1284), - [anon_sym_out_GT] = ACTIONS(1284), - [anon_sym_e_GT] = ACTIONS(1284), - [anon_sym_o_GT] = ACTIONS(1284), - [anon_sym_err_PLUSout_GT] = ACTIONS(1284), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1284), - [anon_sym_o_PLUSe_GT] = ACTIONS(1284), - [anon_sym_e_PLUSo_GT] = ACTIONS(1284), - [anon_sym_err_GT_GT] = ACTIONS(1286), - [anon_sym_out_GT_GT] = ACTIONS(1286), - [anon_sym_e_GT_GT] = ACTIONS(1286), - [anon_sym_o_GT_GT] = ACTIONS(1286), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1286), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1286), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1286), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1286), - [anon_sym_POUND] = ACTIONS(245), + [1552] = { + [sym__expr_parenthesized_immediate] = STATE(6836), + [sym_comment] = STATE(1552), + [sym__newline] = ACTIONS(4842), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym_PIPE] = ACTIONS(4842), + [anon_sym_err_GT_PIPE] = ACTIONS(4842), + [anon_sym_out_GT_PIPE] = ACTIONS(4842), + [anon_sym_e_GT_PIPE] = ACTIONS(4842), + [anon_sym_o_GT_PIPE] = ACTIONS(4842), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4842), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4842), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4842), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(4844), + [anon_sym_RPAREN] = ACTIONS(4842), + [anon_sym_DOLLAR] = ACTIONS(4844), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_DASH2] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_DOT_DOT] = ACTIONS(4844), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4842), + [anon_sym_DOT_DOT_LT] = ACTIONS(4842), + [anon_sym_null] = ACTIONS(4842), + [anon_sym_true] = ACTIONS(4842), + [anon_sym_false] = ACTIONS(4842), + [aux_sym__val_number_decimal_token1] = ACTIONS(4844), + [aux_sym__val_number_decimal_token2] = ACTIONS(4842), + [aux_sym__val_number_decimal_token3] = ACTIONS(4842), + [aux_sym__val_number_decimal_token4] = ACTIONS(4842), + [aux_sym__val_number_token1] = ACTIONS(4842), + [aux_sym__val_number_token2] = ACTIONS(4842), + [aux_sym__val_number_token3] = ACTIONS(4842), + [aux_sym__val_number_token4] = ACTIONS(4842), + [aux_sym__val_number_token5] = ACTIONS(4842), + [aux_sym__val_number_token6] = ACTIONS(4842), + [anon_sym_0b] = ACTIONS(4844), + [anon_sym_0o] = ACTIONS(4844), + [anon_sym_0x] = ACTIONS(4844), + [sym_val_date] = ACTIONS(4842), + [anon_sym_DQUOTE] = ACTIONS(4842), + [sym__str_single_quotes] = ACTIONS(4842), + [sym__str_back_ticks] = ACTIONS(4842), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4842), + [anon_sym_err_GT] = ACTIONS(4844), + [anon_sym_out_GT] = ACTIONS(4844), + [anon_sym_e_GT] = ACTIONS(4844), + [anon_sym_o_GT] = ACTIONS(4844), + [anon_sym_err_PLUSout_GT] = ACTIONS(4844), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4844), + [anon_sym_o_PLUSe_GT] = ACTIONS(4844), + [anon_sym_e_PLUSo_GT] = ACTIONS(4844), + [anon_sym_err_GT_GT] = ACTIONS(4842), + [anon_sym_out_GT_GT] = ACTIONS(4842), + [anon_sym_e_GT_GT] = ACTIONS(4842), + [anon_sym_o_GT_GT] = ACTIONS(4842), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4842), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4842), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4842), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4842), + [aux_sym_unquoted_token1] = ACTIONS(4844), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4842), }, - [1654] = { - [sym_comment] = STATE(1654), - [ts_builtin_sym_end] = ACTIONS(2003), - [sym__newline] = ACTIONS(2003), - [anon_sym_SEMI] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2003), - [anon_sym_err_GT_PIPE] = ACTIONS(2003), - [anon_sym_out_GT_PIPE] = ACTIONS(2003), - [anon_sym_e_GT_PIPE] = ACTIONS(2003), - [anon_sym_o_GT_PIPE] = ACTIONS(2003), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2003), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2003), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2003), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(2003), - [anon_sym_DOLLAR] = ACTIONS(2001), - [anon_sym_DASH_DASH] = ACTIONS(2003), - [anon_sym_DASH2] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_DOT_DOT] = ACTIONS(2001), - [anon_sym_DOT_DOT2] = ACTIONS(2001), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2001), - [anon_sym_DOT_DOT_LT] = ACTIONS(2001), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2003), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2003), - [anon_sym_null] = ACTIONS(2003), - [anon_sym_true] = ACTIONS(2003), - [anon_sym_false] = ACTIONS(2003), - [aux_sym__val_number_decimal_token1] = ACTIONS(2001), - [aux_sym__val_number_decimal_token2] = ACTIONS(2003), - [aux_sym__val_number_decimal_token3] = ACTIONS(2003), - [aux_sym__val_number_decimal_token4] = ACTIONS(2003), - [aux_sym__val_number_token1] = ACTIONS(2003), - [aux_sym__val_number_token2] = ACTIONS(2003), - [aux_sym__val_number_token3] = ACTIONS(2003), - [aux_sym__val_number_token4] = ACTIONS(2003), - [aux_sym__val_number_token5] = ACTIONS(2003), - [aux_sym__val_number_token6] = ACTIONS(2003), - [anon_sym_0b] = ACTIONS(2001), - [anon_sym_0o] = ACTIONS(2001), - [anon_sym_0x] = ACTIONS(2001), - [sym_val_date] = ACTIONS(2003), - [anon_sym_DQUOTE] = ACTIONS(2003), - [sym__str_single_quotes] = ACTIONS(2003), - [sym__str_back_ticks] = ACTIONS(2003), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2003), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2003), - [anon_sym_err_GT] = ACTIONS(2001), - [anon_sym_out_GT] = ACTIONS(2001), - [anon_sym_e_GT] = ACTIONS(2001), - [anon_sym_o_GT] = ACTIONS(2001), - [anon_sym_err_PLUSout_GT] = ACTIONS(2001), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2001), - [anon_sym_o_PLUSe_GT] = ACTIONS(2001), - [anon_sym_e_PLUSo_GT] = ACTIONS(2001), - [anon_sym_err_GT_GT] = ACTIONS(2003), - [anon_sym_out_GT_GT] = ACTIONS(2003), - [anon_sym_e_GT_GT] = ACTIONS(2003), - [anon_sym_o_GT_GT] = ACTIONS(2003), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2003), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2003), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2003), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2003), - [aux_sym_unquoted_token1] = ACTIONS(2001), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2003), + [1553] = { + [sym_comment] = STATE(1553), + [sym_long_flag_identifier] = ACTIONS(4846), + [sym__newline] = ACTIONS(4848), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym_PIPE] = ACTIONS(4848), + [anon_sym_err_GT_PIPE] = ACTIONS(4848), + [anon_sym_out_GT_PIPE] = ACTIONS(4848), + [anon_sym_e_GT_PIPE] = ACTIONS(4848), + [anon_sym_o_GT_PIPE] = ACTIONS(4848), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4848), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4848), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4848), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4848), + [anon_sym_LBRACK] = ACTIONS(4848), + [anon_sym_LPAREN] = ACTIONS(4848), + [anon_sym_RPAREN] = ACTIONS(4848), + [anon_sym_DOLLAR] = ACTIONS(4850), + [anon_sym_DASH_DASH] = ACTIONS(4848), + [anon_sym_DASH2] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_RBRACE] = ACTIONS(4848), + [anon_sym_DOT_DOT] = ACTIONS(4850), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4848), + [anon_sym_DOT_DOT_LT] = ACTIONS(4848), + [anon_sym_null] = ACTIONS(4850), + [anon_sym_true] = ACTIONS(4850), + [anon_sym_false] = ACTIONS(4850), + [aux_sym__val_number_decimal_token1] = ACTIONS(4850), + [aux_sym__val_number_decimal_token2] = ACTIONS(4848), + [aux_sym__val_number_decimal_token3] = ACTIONS(4848), + [aux_sym__val_number_decimal_token4] = ACTIONS(4848), + [aux_sym__val_number_token1] = ACTIONS(4850), + [aux_sym__val_number_token2] = ACTIONS(4850), + [aux_sym__val_number_token3] = ACTIONS(4850), + [aux_sym__val_number_token4] = ACTIONS(4850), + [aux_sym__val_number_token5] = ACTIONS(4848), + [aux_sym__val_number_token6] = ACTIONS(4850), + [anon_sym_0b] = ACTIONS(4850), + [anon_sym_0o] = ACTIONS(4850), + [anon_sym_0x] = ACTIONS(4850), + [sym_val_date] = ACTIONS(4850), + [anon_sym_DQUOTE] = ACTIONS(4848), + [sym__str_single_quotes] = ACTIONS(4848), + [sym__str_back_ticks] = ACTIONS(4848), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4848), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4848), + [anon_sym_err_GT] = ACTIONS(4850), + [anon_sym_out_GT] = ACTIONS(4850), + [anon_sym_e_GT] = ACTIONS(4850), + [anon_sym_o_GT] = ACTIONS(4850), + [anon_sym_err_PLUSout_GT] = ACTIONS(4850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4850), + [anon_sym_o_PLUSe_GT] = ACTIONS(4850), + [anon_sym_e_PLUSo_GT] = ACTIONS(4850), + [anon_sym_err_GT_GT] = ACTIONS(4848), + [anon_sym_out_GT_GT] = ACTIONS(4848), + [anon_sym_e_GT_GT] = ACTIONS(4848), + [anon_sym_o_GT_GT] = ACTIONS(4848), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4848), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4848), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4848), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4848), + [anon_sym_EQ2] = ACTIONS(4852), + [aux_sym_unquoted_token1] = ACTIONS(4850), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4848), }, - [1655] = { - [sym_comment] = STATE(1655), - [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(1719), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_DASH_DASH] = ACTIONS(1721), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1719), - [anon_sym_LPAREN2] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT] = ACTIONS(1721), - [aux_sym__immediate_decimal_token2] = ACTIONS(4956), - [anon_sym_null] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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(1719), - [anon_sym_0o] = ACTIONS(1719), - [anon_sym_0x] = ACTIONS(1719), - [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(1719), - [anon_sym_out_GT] = ACTIONS(1719), - [anon_sym_e_GT] = ACTIONS(1719), - [anon_sym_o_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT] = ACTIONS(1719), - [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(1719), - [aux_sym_unquoted_token2] = ACTIONS(1719), + [1554] = { + [sym_comment] = STATE(1554), + [aux_sym_shebang_repeat1] = STATE(1554), + [sym__newline] = ACTIONS(4854), + [anon_sym_SEMI] = ACTIONS(1274), + [anon_sym_PIPE] = ACTIONS(1274), + [anon_sym_err_GT_PIPE] = ACTIONS(1274), + [anon_sym_out_GT_PIPE] = ACTIONS(1274), + [anon_sym_e_GT_PIPE] = ACTIONS(1274), + [anon_sym_o_GT_PIPE] = ACTIONS(1274), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1274), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1274), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1274), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1274), + [anon_sym_COLON] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1274), + [anon_sym_RPAREN] = ACTIONS(1274), + [anon_sym_GT2] = ACTIONS(1272), + [anon_sym_DASH2] = ACTIONS(1274), + [anon_sym_in2] = ACTIONS(1274), + [anon_sym_else] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_catch] = ACTIONS(1274), + [anon_sym_STAR2] = ACTIONS(1272), + [anon_sym_and2] = ACTIONS(1274), + [anon_sym_xor2] = ACTIONS(1274), + [anon_sym_or2] = ACTIONS(1274), + [anon_sym_not_DASHin2] = ACTIONS(1274), + [anon_sym_has2] = ACTIONS(1274), + [anon_sym_not_DASHhas2] = ACTIONS(1274), + [anon_sym_starts_DASHwith2] = ACTIONS(1274), + [anon_sym_ends_DASHwith2] = ACTIONS(1274), + [anon_sym_EQ_EQ2] = ACTIONS(1274), + [anon_sym_BANG_EQ2] = ACTIONS(1274), + [anon_sym_LT2] = ACTIONS(1272), + [anon_sym_LT_EQ2] = ACTIONS(1274), + [anon_sym_GT_EQ2] = ACTIONS(1274), + [anon_sym_EQ_TILDE2] = ACTIONS(1274), + [anon_sym_BANG_TILDE2] = ACTIONS(1274), + [anon_sym_STAR_STAR2] = ACTIONS(1274), + [anon_sym_PLUS_PLUS2] = ACTIONS(1274), + [anon_sym_SLASH2] = ACTIONS(1272), + [anon_sym_mod2] = ACTIONS(1274), + [anon_sym_SLASH_SLASH2] = ACTIONS(1274), + [anon_sym_PLUS2] = ACTIONS(1272), + [anon_sym_bit_DASHshl2] = ACTIONS(1274), + [anon_sym_bit_DASHshr2] = ACTIONS(1274), + [anon_sym_bit_DASHand2] = ACTIONS(1274), + [anon_sym_bit_DASHxor2] = ACTIONS(1274), + [anon_sym_bit_DASHor2] = ACTIONS(1274), + [anon_sym_err_GT] = ACTIONS(1272), + [anon_sym_out_GT] = ACTIONS(1272), + [anon_sym_e_GT] = ACTIONS(1272), + [anon_sym_o_GT] = ACTIONS(1272), + [anon_sym_err_PLUSout_GT] = ACTIONS(1272), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1272), + [anon_sym_o_PLUSe_GT] = ACTIONS(1272), + [anon_sym_e_PLUSo_GT] = ACTIONS(1272), + [anon_sym_err_GT_GT] = ACTIONS(1274), + [anon_sym_out_GT_GT] = ACTIONS(1274), + [anon_sym_e_GT_GT] = ACTIONS(1274), + [anon_sym_o_GT_GT] = ACTIONS(1274), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1274), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1274), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1274), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1274), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1721), - }, - [1656] = { - [sym_comment] = STATE(1656), - [sym__newline] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_err_GT_PIPE] = ACTIONS(2093), - [anon_sym_out_GT_PIPE] = ACTIONS(2093), - [anon_sym_e_GT_PIPE] = ACTIONS(2093), - [anon_sym_o_GT_PIPE] = ACTIONS(2093), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2093), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2093), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2093), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_RPAREN] = ACTIONS(2093), - [anon_sym_DOLLAR] = ACTIONS(2089), - [anon_sym_DASH_DASH] = ACTIONS(2089), - [anon_sym_DASH2] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_DOT_DOT] = ACTIONS(2089), - [anon_sym_LPAREN2] = ACTIONS(2091), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2089), - [anon_sym_DOT_DOT_LT] = ACTIONS(2089), - [anon_sym_null] = ACTIONS(2089), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [aux_sym__val_number_decimal_token1] = ACTIONS(2089), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2089), - [aux_sym__val_number_decimal_token4] = ACTIONS(2089), - [aux_sym__val_number_token1] = ACTIONS(2089), - [aux_sym__val_number_token2] = ACTIONS(2089), - [aux_sym__val_number_token3] = ACTIONS(2089), - [aux_sym__val_number_token4] = ACTIONS(2089), - [aux_sym__val_number_token5] = ACTIONS(2089), - [aux_sym__val_number_token6] = ACTIONS(2089), - [anon_sym_0b] = ACTIONS(2089), - [anon_sym_0o] = ACTIONS(2089), - [anon_sym_0x] = ACTIONS(2089), - [sym_val_date] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(2093), - [sym__str_single_quotes] = ACTIONS(2093), - [sym__str_back_ticks] = ACTIONS(2093), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2093), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2093), - [anon_sym_err_GT] = ACTIONS(2089), - [anon_sym_out_GT] = ACTIONS(2089), - [anon_sym_e_GT] = ACTIONS(2089), - [anon_sym_o_GT] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT] = ACTIONS(2089), - [anon_sym_err_GT_GT] = ACTIONS(2089), - [anon_sym_out_GT_GT] = ACTIONS(2089), - [anon_sym_e_GT_GT] = ACTIONS(2089), - [anon_sym_o_GT_GT] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2089), - [aux_sym_unquoted_token1] = ACTIONS(2089), - [aux_sym_unquoted_token4] = ACTIONS(2095), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2093), }, - [1657] = { - [sym_comment] = STATE(1657), + [1555] = { + [sym_comment] = STATE(1555), [sym__newline] = ACTIONS(960), [anon_sym_SEMI] = ACTIONS(960), [anon_sym_PIPE] = ACTIONS(960), @@ -228297,7 +218569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(960), [anon_sym_RBRACE] = ACTIONS(960), [anon_sym_DOT_DOT] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(960), + [anon_sym_QMARK2] = ACTIONS(4857), [anon_sym_DOT_DOT_EQ] = ACTIONS(960), [anon_sym_DOT_DOT_LT] = ACTIONS(960), [anon_sym_null] = ACTIONS(960), @@ -228343,680 +218615,1975 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(960), }, - [1658] = { - [sym_comment] = STATE(1658), - [ts_builtin_sym_end] = ACTIONS(2039), - [sym__newline] = ACTIONS(2039), - [anon_sym_SEMI] = ACTIONS(2039), - [anon_sym_PIPE] = ACTIONS(2039), - [anon_sym_err_GT_PIPE] = ACTIONS(2039), - [anon_sym_out_GT_PIPE] = ACTIONS(2039), - [anon_sym_e_GT_PIPE] = ACTIONS(2039), - [anon_sym_o_GT_PIPE] = ACTIONS(2039), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2039), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2039), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2039), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2039), - [anon_sym_LBRACK] = ACTIONS(2039), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_DOLLAR] = ACTIONS(2033), - [anon_sym_DASH_DASH] = ACTIONS(2039), - [anon_sym_DASH2] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(2039), - [anon_sym_DOT_DOT] = ACTIONS(2033), - [anon_sym_DOT_DOT2] = ACTIONS(4958), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2033), - [anon_sym_DOT_DOT_LT] = ACTIONS(2033), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4960), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4960), - [anon_sym_null] = ACTIONS(2039), - [anon_sym_true] = ACTIONS(2039), - [anon_sym_false] = ACTIONS(2039), - [aux_sym__val_number_decimal_token1] = ACTIONS(2033), - [aux_sym__val_number_decimal_token2] = ACTIONS(2039), - [aux_sym__val_number_decimal_token3] = ACTIONS(2039), - [aux_sym__val_number_decimal_token4] = ACTIONS(2039), - [aux_sym__val_number_token1] = ACTIONS(2039), - [aux_sym__val_number_token2] = ACTIONS(2039), - [aux_sym__val_number_token3] = ACTIONS(2039), - [aux_sym__val_number_token4] = ACTIONS(2039), - [aux_sym__val_number_token5] = ACTIONS(2039), - [aux_sym__val_number_token6] = ACTIONS(2039), - [anon_sym_0b] = ACTIONS(2033), - [anon_sym_0o] = ACTIONS(2033), - [anon_sym_0x] = ACTIONS(2033), - [sym_val_date] = ACTIONS(2039), - [anon_sym_DQUOTE] = ACTIONS(2039), - [sym__str_single_quotes] = ACTIONS(2039), - [sym__str_back_ticks] = ACTIONS(2039), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2039), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2039), - [anon_sym_err_GT] = ACTIONS(2033), - [anon_sym_out_GT] = ACTIONS(2033), - [anon_sym_e_GT] = ACTIONS(2033), - [anon_sym_o_GT] = ACTIONS(2033), - [anon_sym_err_PLUSout_GT] = ACTIONS(2033), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2033), - [anon_sym_o_PLUSe_GT] = ACTIONS(2033), - [anon_sym_e_PLUSo_GT] = ACTIONS(2033), - [anon_sym_err_GT_GT] = ACTIONS(2039), - [anon_sym_out_GT_GT] = ACTIONS(2039), - [anon_sym_e_GT_GT] = ACTIONS(2039), - [anon_sym_o_GT_GT] = ACTIONS(2039), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2039), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2039), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2039), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2039), - [aux_sym_unquoted_token1] = ACTIONS(2033), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2039), + [1556] = { + [sym__expr_parenthesized_immediate] = STATE(7173), + [sym_comment] = STATE(1556), + [sym__newline] = ACTIONS(4859), + [anon_sym_SEMI] = ACTIONS(4859), + [anon_sym_PIPE] = ACTIONS(4859), + [anon_sym_err_GT_PIPE] = ACTIONS(4859), + [anon_sym_out_GT_PIPE] = ACTIONS(4859), + [anon_sym_e_GT_PIPE] = ACTIONS(4859), + [anon_sym_o_GT_PIPE] = ACTIONS(4859), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4859), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4859), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4859), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4859), + [anon_sym_LBRACK] = ACTIONS(4859), + [anon_sym_LPAREN] = ACTIONS(4861), + [anon_sym_RPAREN] = ACTIONS(4859), + [anon_sym_DOLLAR] = ACTIONS(4861), + [anon_sym_DASH_DASH] = ACTIONS(4859), + [anon_sym_DASH2] = ACTIONS(4861), + [anon_sym_LBRACE] = ACTIONS(4859), + [anon_sym_RBRACE] = ACTIONS(4859), + [anon_sym_DOT_DOT] = ACTIONS(4861), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4859), + [anon_sym_DOT_DOT_LT] = ACTIONS(4859), + [anon_sym_null] = ACTIONS(4859), + [anon_sym_true] = ACTIONS(4859), + [anon_sym_false] = ACTIONS(4859), + [aux_sym__val_number_decimal_token1] = ACTIONS(4861), + [aux_sym__val_number_decimal_token2] = ACTIONS(4859), + [aux_sym__val_number_decimal_token3] = ACTIONS(4859), + [aux_sym__val_number_decimal_token4] = ACTIONS(4859), + [aux_sym__val_number_token1] = ACTIONS(4859), + [aux_sym__val_number_token2] = ACTIONS(4859), + [aux_sym__val_number_token3] = ACTIONS(4859), + [aux_sym__val_number_token4] = ACTIONS(4859), + [aux_sym__val_number_token5] = ACTIONS(4859), + [aux_sym__val_number_token6] = ACTIONS(4859), + [anon_sym_0b] = ACTIONS(4861), + [anon_sym_0o] = ACTIONS(4861), + [anon_sym_0x] = ACTIONS(4861), + [sym_val_date] = ACTIONS(4859), + [anon_sym_DQUOTE] = ACTIONS(4859), + [sym__str_single_quotes] = ACTIONS(4859), + [sym__str_back_ticks] = ACTIONS(4859), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4859), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4859), + [anon_sym_err_GT] = ACTIONS(4861), + [anon_sym_out_GT] = ACTIONS(4861), + [anon_sym_e_GT] = ACTIONS(4861), + [anon_sym_o_GT] = ACTIONS(4861), + [anon_sym_err_PLUSout_GT] = ACTIONS(4861), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4861), + [anon_sym_o_PLUSe_GT] = ACTIONS(4861), + [anon_sym_e_PLUSo_GT] = ACTIONS(4861), + [anon_sym_err_GT_GT] = ACTIONS(4859), + [anon_sym_out_GT_GT] = ACTIONS(4859), + [anon_sym_e_GT_GT] = ACTIONS(4859), + [anon_sym_o_GT_GT] = ACTIONS(4859), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4859), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4859), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4859), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4859), + [aux_sym_unquoted_token1] = ACTIONS(4861), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4859), }, - [1659] = { - [sym_comment] = STATE(1659), - [sym__newline] = ACTIONS(2053), - [anon_sym_SEMI] = ACTIONS(2053), - [anon_sym_PIPE] = ACTIONS(2053), - [anon_sym_err_GT_PIPE] = ACTIONS(2053), - [anon_sym_out_GT_PIPE] = ACTIONS(2053), - [anon_sym_e_GT_PIPE] = ACTIONS(2053), - [anon_sym_o_GT_PIPE] = ACTIONS(2053), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2053), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2053), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2053), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2053), - [anon_sym_LBRACK] = ACTIONS(2053), - [anon_sym_LPAREN] = ACTIONS(2049), - [anon_sym_RPAREN] = ACTIONS(2053), - [anon_sym_DOLLAR] = ACTIONS(2049), - [anon_sym_DASH_DASH] = ACTIONS(2053), - [anon_sym_DASH2] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(2053), - [anon_sym_RBRACE] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2049), - [anon_sym_LPAREN2] = ACTIONS(2051), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2053), - [anon_sym_DOT_DOT_LT] = ACTIONS(2053), - [anon_sym_null] = ACTIONS(2053), - [anon_sym_true] = ACTIONS(2053), - [anon_sym_false] = ACTIONS(2053), - [aux_sym__val_number_decimal_token1] = ACTIONS(2049), - [aux_sym__val_number_decimal_token2] = ACTIONS(2053), - [aux_sym__val_number_decimal_token3] = ACTIONS(2053), - [aux_sym__val_number_decimal_token4] = ACTIONS(2053), - [aux_sym__val_number_token1] = ACTIONS(2053), - [aux_sym__val_number_token2] = ACTIONS(2053), - [aux_sym__val_number_token3] = ACTIONS(2053), - [aux_sym__val_number_token4] = ACTIONS(2053), - [aux_sym__val_number_token5] = ACTIONS(2053), - [aux_sym__val_number_token6] = ACTIONS(2053), - [anon_sym_0b] = ACTIONS(2049), - [anon_sym_0o] = ACTIONS(2049), - [anon_sym_0x] = ACTIONS(2049), - [sym_val_date] = ACTIONS(2053), - [anon_sym_DQUOTE] = ACTIONS(2053), - [sym__str_single_quotes] = ACTIONS(2053), - [sym__str_back_ticks] = ACTIONS(2053), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2053), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2053), - [anon_sym_err_GT] = ACTIONS(2049), - [anon_sym_out_GT] = ACTIONS(2049), - [anon_sym_e_GT] = ACTIONS(2049), - [anon_sym_o_GT] = ACTIONS(2049), - [anon_sym_err_PLUSout_GT] = ACTIONS(2049), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2049), - [anon_sym_o_PLUSe_GT] = ACTIONS(2049), - [anon_sym_e_PLUSo_GT] = ACTIONS(2049), - [anon_sym_err_GT_GT] = ACTIONS(2053), - [anon_sym_out_GT_GT] = ACTIONS(2053), - [anon_sym_e_GT_GT] = ACTIONS(2053), - [anon_sym_o_GT_GT] = ACTIONS(2053), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2053), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2053), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2053), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2053), - [aux_sym_unquoted_token1] = ACTIONS(2049), - [aux_sym_unquoted_token2] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2053), + [1557] = { + [sym__expr_parenthesized_immediate] = STATE(7173), + [sym_comment] = STATE(1557), + [sym__newline] = ACTIONS(4863), + [anon_sym_SEMI] = ACTIONS(4863), + [anon_sym_PIPE] = ACTIONS(4863), + [anon_sym_err_GT_PIPE] = ACTIONS(4863), + [anon_sym_out_GT_PIPE] = ACTIONS(4863), + [anon_sym_e_GT_PIPE] = ACTIONS(4863), + [anon_sym_o_GT_PIPE] = ACTIONS(4863), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4863), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4863), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4863), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4863), + [anon_sym_LPAREN] = ACTIONS(4865), + [anon_sym_RPAREN] = ACTIONS(4863), + [anon_sym_DOLLAR] = ACTIONS(4865), + [anon_sym_DASH_DASH] = ACTIONS(4863), + [anon_sym_DASH2] = ACTIONS(4865), + [anon_sym_LBRACE] = ACTIONS(4863), + [anon_sym_RBRACE] = ACTIONS(4863), + [anon_sym_DOT_DOT] = ACTIONS(4865), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4863), + [anon_sym_DOT_DOT_LT] = ACTIONS(4863), + [anon_sym_null] = ACTIONS(4863), + [anon_sym_true] = ACTIONS(4863), + [anon_sym_false] = ACTIONS(4863), + [aux_sym__val_number_decimal_token1] = ACTIONS(4865), + [aux_sym__val_number_decimal_token2] = ACTIONS(4863), + [aux_sym__val_number_decimal_token3] = ACTIONS(4863), + [aux_sym__val_number_decimal_token4] = ACTIONS(4863), + [aux_sym__val_number_token1] = ACTIONS(4863), + [aux_sym__val_number_token2] = ACTIONS(4863), + [aux_sym__val_number_token3] = ACTIONS(4863), + [aux_sym__val_number_token4] = ACTIONS(4863), + [aux_sym__val_number_token5] = ACTIONS(4863), + [aux_sym__val_number_token6] = ACTIONS(4863), + [anon_sym_0b] = ACTIONS(4865), + [anon_sym_0o] = ACTIONS(4865), + [anon_sym_0x] = ACTIONS(4865), + [sym_val_date] = ACTIONS(4863), + [anon_sym_DQUOTE] = ACTIONS(4863), + [sym__str_single_quotes] = ACTIONS(4863), + [sym__str_back_ticks] = ACTIONS(4863), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4863), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4863), + [anon_sym_err_GT] = ACTIONS(4865), + [anon_sym_out_GT] = ACTIONS(4865), + [anon_sym_e_GT] = ACTIONS(4865), + [anon_sym_o_GT] = ACTIONS(4865), + [anon_sym_err_PLUSout_GT] = ACTIONS(4865), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4865), + [anon_sym_o_PLUSe_GT] = ACTIONS(4865), + [anon_sym_e_PLUSo_GT] = ACTIONS(4865), + [anon_sym_err_GT_GT] = ACTIONS(4863), + [anon_sym_out_GT_GT] = ACTIONS(4863), + [anon_sym_e_GT_GT] = ACTIONS(4863), + [anon_sym_o_GT_GT] = ACTIONS(4863), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4863), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4863), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4863), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4863), + [aux_sym_unquoted_token1] = ACTIONS(4865), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4863), }, - [1660] = { - [sym_comment] = STATE(1660), - [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(1719), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_DASH_DASH] = ACTIONS(1721), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1719), - [anon_sym_LPAREN2] = ACTIONS(1721), - [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(1719), - [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(1719), - [anon_sym_0o] = ACTIONS(1719), - [anon_sym_0x] = ACTIONS(1719), - [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(1719), - [anon_sym_out_GT] = ACTIONS(1719), - [anon_sym_e_GT] = ACTIONS(1719), - [anon_sym_o_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT] = ACTIONS(1719), - [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(1719), - [aux_sym_unquoted_token2] = ACTIONS(1719), + [1558] = { + [sym_comment] = STATE(1558), + [ts_builtin_sym_end] = ACTIONS(1762), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1762), + [anon_sym_in2] = ACTIONS(1762), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1762), + [anon_sym_xor2] = ACTIONS(1762), + [anon_sym_or2] = ACTIONS(1762), + [anon_sym_not_DASHin2] = ACTIONS(1762), + [anon_sym_has2] = ACTIONS(1762), + [anon_sym_not_DASHhas2] = ACTIONS(1762), + [anon_sym_starts_DASHwith2] = ACTIONS(1762), + [anon_sym_ends_DASHwith2] = ACTIONS(1762), + [anon_sym_EQ_EQ2] = ACTIONS(1762), + [anon_sym_BANG_EQ2] = ACTIONS(1762), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1762), + [anon_sym_GT_EQ2] = ACTIONS(1762), + [anon_sym_EQ_TILDE2] = ACTIONS(1762), + [anon_sym_BANG_TILDE2] = ACTIONS(1762), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_STAR_STAR2] = ACTIONS(1762), + [anon_sym_PLUS_PLUS2] = ACTIONS(1762), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1762), + [anon_sym_SLASH_SLASH2] = ACTIONS(1762), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1762), + [anon_sym_bit_DASHshr2] = ACTIONS(1762), + [anon_sym_bit_DASHand2] = ACTIONS(1762), + [anon_sym_bit_DASHxor2] = ACTIONS(1762), + [anon_sym_bit_DASHor2] = ACTIONS(1762), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(4867), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token2] = ACTIONS(1760), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1721), - }, - [1661] = { - [sym_comment] = STATE(1661), - [ts_builtin_sym_end] = ACTIONS(1668), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_DOT_DOT] = ACTIONS(1666), - [anon_sym_DOT] = ACTIONS(4962), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT] = ACTIONS(1668), - [aux_sym__immediate_decimal_token2] = ACTIONS(4964), - [anon_sym_null] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1668), - [aux_sym__val_number_token5] = ACTIONS(1668), - [aux_sym__val_number_token6] = ACTIONS(1668), - [anon_sym_0b] = ACTIONS(1666), - [anon_sym_0o] = ACTIONS(1666), - [anon_sym_0x] = ACTIONS(1666), - [sym_val_date] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_err_GT] = ACTIONS(1666), - [anon_sym_out_GT] = ACTIONS(1666), - [anon_sym_e_GT] = ACTIONS(1666), - [anon_sym_o_GT] = ACTIONS(1666), - [anon_sym_err_PLUSout_GT] = ACTIONS(1666), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), - [anon_sym_o_PLUSe_GT] = ACTIONS(1666), - [anon_sym_e_PLUSo_GT] = ACTIONS(1666), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [aux_sym_unquoted_token1] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), }, - [1662] = { - [sym_comment] = STATE(1662), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_LBRACK] = ACTIONS(2198), - [anon_sym_LPAREN] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_DOLLAR] = ACTIONS(2194), - [anon_sym_DASH_DASH] = ACTIONS(2194), - [anon_sym_DASH2] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_RBRACE] = ACTIONS(2198), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2194), - [anon_sym_DOT_DOT_LT] = ACTIONS(2194), - [anon_sym_null] = ACTIONS(2194), - [anon_sym_true] = ACTIONS(2194), - [anon_sym_false] = ACTIONS(2194), - [aux_sym__val_number_decimal_token1] = ACTIONS(2194), - [aux_sym__val_number_decimal_token2] = ACTIONS(2194), - [aux_sym__val_number_decimal_token3] = ACTIONS(2194), - [aux_sym__val_number_decimal_token4] = ACTIONS(2194), - [aux_sym__val_number_token1] = ACTIONS(2194), - [aux_sym__val_number_token2] = ACTIONS(2194), - [aux_sym__val_number_token3] = ACTIONS(2194), - [aux_sym__val_number_token4] = ACTIONS(2194), - [aux_sym__val_number_token5] = ACTIONS(2194), - [aux_sym__val_number_token6] = ACTIONS(2194), - [anon_sym_0b] = ACTIONS(2194), - [anon_sym_0o] = ACTIONS(2194), - [anon_sym_0x] = ACTIONS(2194), - [sym_val_date] = ACTIONS(2194), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym__str_single_quotes] = ACTIONS(2198), - [sym__str_back_ticks] = ACTIONS(2198), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2198), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2194), - [anon_sym_out_GT] = ACTIONS(2194), - [anon_sym_e_GT] = ACTIONS(2194), - [anon_sym_o_GT] = ACTIONS(2194), - [anon_sym_err_PLUSout_GT] = ACTIONS(2194), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2194), - [anon_sym_o_PLUSe_GT] = ACTIONS(2194), - [anon_sym_e_PLUSo_GT] = ACTIONS(2194), - [anon_sym_err_GT_GT] = ACTIONS(2194), - [anon_sym_out_GT_GT] = ACTIONS(2194), - [anon_sym_e_GT_GT] = ACTIONS(2194), - [anon_sym_o_GT_GT] = ACTIONS(2194), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), - [aux_sym_unquoted_token1] = ACTIONS(2194), - [aux_sym_unquoted_token4] = ACTIONS(2200), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2198), + [1559] = { + [sym_path] = STATE(1723), + [sym_comment] = STATE(1559), + [aux_sym_cell_path_repeat1] = STATE(1559), + [ts_builtin_sym_end] = ACTIONS(933), + [sym__newline] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_PIPE] = ACTIONS(933), + [anon_sym_err_GT_PIPE] = ACTIONS(933), + [anon_sym_out_GT_PIPE] = ACTIONS(933), + [anon_sym_e_GT_PIPE] = ACTIONS(933), + [anon_sym_o_GT_PIPE] = ACTIONS(933), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(933), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(933), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(933), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_DASH2] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_DOT_DOT] = ACTIONS(931), + [anon_sym_DOT_DOT_EQ] = ACTIONS(933), + [anon_sym_DOT_DOT_LT] = ACTIONS(933), + [anon_sym_null] = ACTIONS(933), + [anon_sym_true] = ACTIONS(933), + [anon_sym_false] = ACTIONS(933), + [aux_sym__val_number_decimal_token1] = ACTIONS(931), + [aux_sym__val_number_decimal_token2] = ACTIONS(933), + [aux_sym__val_number_decimal_token3] = ACTIONS(933), + [aux_sym__val_number_decimal_token4] = ACTIONS(933), + [aux_sym__val_number_token1] = ACTIONS(933), + [aux_sym__val_number_token2] = ACTIONS(933), + [aux_sym__val_number_token3] = ACTIONS(933), + [aux_sym__val_number_token4] = ACTIONS(933), + [aux_sym__val_number_token5] = ACTIONS(933), + [aux_sym__val_number_token6] = ACTIONS(933), + [anon_sym_0b] = ACTIONS(931), + [anon_sym_0o] = ACTIONS(931), + [anon_sym_0x] = ACTIONS(931), + [sym_val_date] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym__str_single_quotes] = ACTIONS(933), + [sym__str_back_ticks] = ACTIONS(933), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(933), + [anon_sym_DOT2] = ACTIONS(4869), + [anon_sym_err_GT] = ACTIONS(931), + [anon_sym_out_GT] = ACTIONS(931), + [anon_sym_e_GT] = ACTIONS(931), + [anon_sym_o_GT] = ACTIONS(931), + [anon_sym_err_PLUSout_GT] = ACTIONS(931), + [anon_sym_out_PLUSerr_GT] = ACTIONS(931), + [anon_sym_o_PLUSe_GT] = ACTIONS(931), + [anon_sym_e_PLUSo_GT] = ACTIONS(931), + [anon_sym_err_GT_GT] = ACTIONS(933), + [anon_sym_out_GT_GT] = ACTIONS(933), + [anon_sym_e_GT_GT] = ACTIONS(933), + [anon_sym_o_GT_GT] = ACTIONS(933), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(933), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(933), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(933), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(933), + [aux_sym_unquoted_token1] = ACTIONS(931), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(933), }, - [1663] = { - [sym_comment] = STATE(1663), - [sym__newline] = ACTIONS(2204), - [anon_sym_SEMI] = ACTIONS(2204), - [anon_sym_PIPE] = ACTIONS(2204), - [anon_sym_err_GT_PIPE] = ACTIONS(2204), - [anon_sym_out_GT_PIPE] = ACTIONS(2204), - [anon_sym_e_GT_PIPE] = ACTIONS(2204), - [anon_sym_o_GT_PIPE] = ACTIONS(2204), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2204), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2204), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2204), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2204), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_RPAREN] = ACTIONS(2204), - [anon_sym_DOLLAR] = ACTIONS(2202), - [anon_sym_DASH_DASH] = ACTIONS(2202), - [anon_sym_DASH2] = ACTIONS(2202), - [anon_sym_LBRACE] = ACTIONS(2204), - [anon_sym_RBRACE] = ACTIONS(2204), - [anon_sym_DOT_DOT] = ACTIONS(2202), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2202), - [anon_sym_DOT_DOT_LT] = ACTIONS(2202), - [anon_sym_null] = ACTIONS(2202), - [anon_sym_true] = ACTIONS(2202), - [anon_sym_false] = ACTIONS(2202), - [aux_sym__val_number_decimal_token1] = ACTIONS(2202), - [aux_sym__val_number_decimal_token2] = ACTIONS(2202), - [aux_sym__val_number_decimal_token3] = ACTIONS(2202), - [aux_sym__val_number_decimal_token4] = ACTIONS(2202), - [aux_sym__val_number_token1] = ACTIONS(2202), - [aux_sym__val_number_token2] = ACTIONS(2202), - [aux_sym__val_number_token3] = ACTIONS(2202), - [aux_sym__val_number_token4] = ACTIONS(2202), - [aux_sym__val_number_token5] = ACTIONS(2202), - [aux_sym__val_number_token6] = ACTIONS(2202), - [anon_sym_0b] = ACTIONS(2202), - [anon_sym_0o] = ACTIONS(2202), - [anon_sym_0x] = ACTIONS(2202), - [sym_val_date] = ACTIONS(2202), - [anon_sym_DQUOTE] = ACTIONS(2204), - [sym__str_single_quotes] = ACTIONS(2204), - [sym__str_back_ticks] = ACTIONS(2204), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2204), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2204), - [anon_sym_err_GT] = ACTIONS(2202), - [anon_sym_out_GT] = ACTIONS(2202), - [anon_sym_e_GT] = ACTIONS(2202), - [anon_sym_o_GT] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT] = ACTIONS(2202), - [anon_sym_err_GT_GT] = ACTIONS(2202), - [anon_sym_out_GT_GT] = ACTIONS(2202), - [anon_sym_e_GT_GT] = ACTIONS(2202), - [anon_sym_o_GT_GT] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2202), - [aux_sym_unquoted_token1] = ACTIONS(2202), - [aux_sym_unquoted_token4] = ACTIONS(2095), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2204), + [1560] = { + [sym_comment] = STATE(1560), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT] = ACTIONS(1762), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1762), + [aux_sym__val_number_token5] = ACTIONS(1762), + [aux_sym__val_number_token6] = ACTIONS(1762), + [anon_sym_0b] = ACTIONS(1760), + [anon_sym_0o] = ACTIONS(1760), + [anon_sym_0x] = ACTIONS(1760), + [sym_val_date] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token1] = ACTIONS(1760), + [aux_sym_unquoted_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1762), }, - [1664] = { - [sym_comment] = STATE(1664), - [sym__newline] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_err_GT_PIPE] = ACTIONS(2093), - [anon_sym_out_GT_PIPE] = ACTIONS(2093), - [anon_sym_e_GT_PIPE] = ACTIONS(2093), - [anon_sym_o_GT_PIPE] = ACTIONS(2093), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2093), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2093), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2093), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_RPAREN] = ACTIONS(2093), - [anon_sym_DOLLAR] = ACTIONS(2089), - [anon_sym_DASH_DASH] = ACTIONS(2089), - [anon_sym_DASH2] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_DOT_DOT] = ACTIONS(2089), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2089), - [anon_sym_DOT_DOT_LT] = ACTIONS(2089), - [anon_sym_null] = ACTIONS(2089), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [aux_sym__val_number_decimal_token1] = ACTIONS(2089), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2089), - [aux_sym__val_number_decimal_token4] = ACTIONS(2089), - [aux_sym__val_number_token1] = ACTIONS(2089), - [aux_sym__val_number_token2] = ACTIONS(2089), - [aux_sym__val_number_token3] = ACTIONS(2089), - [aux_sym__val_number_token4] = ACTIONS(2089), - [aux_sym__val_number_token5] = ACTIONS(2089), - [aux_sym__val_number_token6] = ACTIONS(2089), - [anon_sym_0b] = ACTIONS(2089), - [anon_sym_0o] = ACTIONS(2089), - [anon_sym_0x] = ACTIONS(2089), - [sym_val_date] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(2093), - [sym__str_single_quotes] = ACTIONS(2093), - [sym__str_back_ticks] = ACTIONS(2093), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2093), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2093), - [anon_sym_err_GT] = ACTIONS(2089), - [anon_sym_out_GT] = ACTIONS(2089), - [anon_sym_e_GT] = ACTIONS(2089), - [anon_sym_o_GT] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT] = ACTIONS(2089), - [anon_sym_err_GT_GT] = ACTIONS(2089), - [anon_sym_out_GT_GT] = ACTIONS(2089), - [anon_sym_e_GT_GT] = ACTIONS(2089), - [anon_sym_o_GT_GT] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2089), - [aux_sym_unquoted_token1] = ACTIONS(2089), - [aux_sym_unquoted_token4] = ACTIONS(2095), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2093), + [1561] = { + [sym_comment] = STATE(1561), + [sym__newline] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_err_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_GT_PIPE] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(1790), + [anon_sym_GT2] = ACTIONS(1782), + [anon_sym_DASH2] = ACTIONS(1790), + [anon_sym_in2] = ACTIONS(1790), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_STAR2] = ACTIONS(1782), + [anon_sym_and2] = ACTIONS(1790), + [anon_sym_xor2] = ACTIONS(1790), + [anon_sym_or2] = ACTIONS(1790), + [anon_sym_not_DASHin2] = ACTIONS(1790), + [anon_sym_has2] = ACTIONS(1790), + [anon_sym_not_DASHhas2] = ACTIONS(1790), + [anon_sym_starts_DASHwith2] = ACTIONS(1790), + [anon_sym_ends_DASHwith2] = ACTIONS(1790), + [anon_sym_EQ_EQ2] = ACTIONS(1790), + [anon_sym_BANG_EQ2] = ACTIONS(1790), + [anon_sym_LT2] = ACTIONS(1782), + [anon_sym_LT_EQ2] = ACTIONS(1790), + [anon_sym_GT_EQ2] = ACTIONS(1790), + [anon_sym_EQ_TILDE2] = ACTIONS(1790), + [anon_sym_BANG_TILDE2] = ACTIONS(1790), + [anon_sym_LPAREN2] = ACTIONS(1784), + [anon_sym_STAR_STAR2] = ACTIONS(1790), + [anon_sym_PLUS_PLUS2] = ACTIONS(1790), + [anon_sym_SLASH2] = ACTIONS(1782), + [anon_sym_mod2] = ACTIONS(1790), + [anon_sym_SLASH_SLASH2] = ACTIONS(1790), + [anon_sym_PLUS2] = ACTIONS(1782), + [anon_sym_bit_DASHshl2] = ACTIONS(1790), + [anon_sym_bit_DASHshr2] = ACTIONS(1790), + [anon_sym_bit_DASHand2] = ACTIONS(1790), + [anon_sym_bit_DASHxor2] = ACTIONS(1790), + [anon_sym_bit_DASHor2] = ACTIONS(1790), + [anon_sym_DOT_DOT2] = ACTIONS(4872), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4874), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4874), + [anon_sym_err_GT] = ACTIONS(1782), + [anon_sym_out_GT] = ACTIONS(1782), + [anon_sym_e_GT] = ACTIONS(1782), + [anon_sym_o_GT] = ACTIONS(1782), + [anon_sym_err_PLUSout_GT] = ACTIONS(1782), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1782), + [anon_sym_o_PLUSe_GT] = ACTIONS(1782), + [anon_sym_e_PLUSo_GT] = ACTIONS(1782), + [anon_sym_err_GT_GT] = ACTIONS(1790), + [anon_sym_out_GT_GT] = ACTIONS(1790), + [anon_sym_e_GT_GT] = ACTIONS(1790), + [anon_sym_o_GT_GT] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), + [aux_sym_unquoted_token2] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(245), }, - [1665] = { - [sym_comment] = STATE(1665), - [sym__newline] = ACTIONS(4966), - [anon_sym_SEMI] = ACTIONS(4966), - [anon_sym_PIPE] = ACTIONS(4966), - [anon_sym_err_GT_PIPE] = ACTIONS(4966), - [anon_sym_out_GT_PIPE] = ACTIONS(4966), - [anon_sym_e_GT_PIPE] = ACTIONS(4966), - [anon_sym_o_GT_PIPE] = ACTIONS(4966), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4966), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4966), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4966), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4966), - [anon_sym_RPAREN] = ACTIONS(4966), - [anon_sym_GT2] = ACTIONS(4968), - [anon_sym_DASH2] = ACTIONS(4970), - [anon_sym_in2] = ACTIONS(4970), - [anon_sym_LBRACE] = ACTIONS(4966), - [anon_sym_RBRACE] = ACTIONS(4966), - [anon_sym_STAR2] = ACTIONS(4968), - [anon_sym_and2] = ACTIONS(4970), - [anon_sym_xor2] = ACTIONS(4970), - [anon_sym_or2] = ACTIONS(4970), - [anon_sym_not_DASHin2] = ACTIONS(4970), - [anon_sym_has2] = ACTIONS(4970), - [anon_sym_not_DASHhas2] = ACTIONS(4970), - [anon_sym_starts_DASHwith2] = ACTIONS(4970), - [anon_sym_ends_DASHwith2] = ACTIONS(4970), - [anon_sym_EQ_EQ2] = ACTIONS(4970), - [anon_sym_BANG_EQ2] = ACTIONS(4970), - [anon_sym_LT2] = ACTIONS(4968), - [anon_sym_LT_EQ2] = ACTIONS(4970), - [anon_sym_GT_EQ2] = ACTIONS(4970), - [anon_sym_EQ_TILDE2] = ACTIONS(4970), - [anon_sym_BANG_TILDE2] = ACTIONS(4970), - [anon_sym_STAR_STAR2] = ACTIONS(4970), - [anon_sym_PLUS_PLUS2] = ACTIONS(4970), - [anon_sym_SLASH2] = ACTIONS(4968), - [anon_sym_mod2] = ACTIONS(4970), - [anon_sym_SLASH_SLASH2] = ACTIONS(4970), - [anon_sym_PLUS2] = ACTIONS(4968), - [anon_sym_bit_DASHshl2] = ACTIONS(4970), - [anon_sym_bit_DASHshr2] = ACTIONS(4970), - [anon_sym_bit_DASHand2] = ACTIONS(4970), - [anon_sym_bit_DASHxor2] = ACTIONS(4970), - [anon_sym_bit_DASHor2] = ACTIONS(4970), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(4972), - [anon_sym_out_GT] = ACTIONS(4972), - [anon_sym_e_GT] = ACTIONS(4972), - [anon_sym_o_GT] = ACTIONS(4972), - [anon_sym_err_PLUSout_GT] = ACTIONS(4972), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4972), - [anon_sym_o_PLUSe_GT] = ACTIONS(4972), - [anon_sym_e_PLUSo_GT] = ACTIONS(4972), - [anon_sym_err_GT_GT] = ACTIONS(4966), - [anon_sym_out_GT_GT] = ACTIONS(4966), - [anon_sym_e_GT_GT] = ACTIONS(4966), - [anon_sym_o_GT_GT] = ACTIONS(4966), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4966), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4966), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4966), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4966), + [1562] = { + [sym_comment] = STATE(1562), + [ts_builtin_sym_end] = ACTIONS(944), + [sym__newline] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(944), + [anon_sym_err_GT_PIPE] = ACTIONS(944), + [anon_sym_out_GT_PIPE] = ACTIONS(944), + [anon_sym_e_GT_PIPE] = ACTIONS(944), + [anon_sym_o_GT_PIPE] = ACTIONS(944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(944), + [anon_sym_GT2] = ACTIONS(942), + [anon_sym_DASH2] = ACTIONS(944), + [anon_sym_in2] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_STAR2] = ACTIONS(942), + [anon_sym_QMARK2] = ACTIONS(944), + [anon_sym_and2] = ACTIONS(944), + [anon_sym_xor2] = ACTIONS(944), + [anon_sym_or2] = ACTIONS(944), + [anon_sym_not_DASHin2] = ACTIONS(944), + [anon_sym_has2] = ACTIONS(944), + [anon_sym_not_DASHhas2] = ACTIONS(944), + [anon_sym_starts_DASHwith2] = ACTIONS(944), + [anon_sym_ends_DASHwith2] = ACTIONS(944), + [anon_sym_EQ_EQ2] = ACTIONS(944), + [anon_sym_BANG_EQ2] = ACTIONS(944), + [anon_sym_LT2] = ACTIONS(942), + [anon_sym_LT_EQ2] = ACTIONS(944), + [anon_sym_GT_EQ2] = ACTIONS(944), + [anon_sym_EQ_TILDE2] = ACTIONS(944), + [anon_sym_BANG_TILDE2] = ACTIONS(944), + [anon_sym_STAR_STAR2] = ACTIONS(944), + [anon_sym_PLUS_PLUS2] = ACTIONS(944), + [anon_sym_SLASH2] = ACTIONS(942), + [anon_sym_mod2] = ACTIONS(944), + [anon_sym_SLASH_SLASH2] = ACTIONS(944), + [anon_sym_PLUS2] = ACTIONS(942), + [anon_sym_bit_DASHshl2] = ACTIONS(944), + [anon_sym_bit_DASHshr2] = ACTIONS(944), + [anon_sym_bit_DASHand2] = ACTIONS(944), + [anon_sym_bit_DASHxor2] = ACTIONS(944), + [anon_sym_bit_DASHor2] = ACTIONS(944), + [anon_sym_DOT_DOT2] = ACTIONS(942), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(944), + [anon_sym_DOT_DOT_LT2] = ACTIONS(944), + [anon_sym_DOT2] = ACTIONS(942), + [anon_sym_err_GT] = ACTIONS(942), + [anon_sym_out_GT] = ACTIONS(942), + [anon_sym_e_GT] = ACTIONS(942), + [anon_sym_o_GT] = ACTIONS(942), + [anon_sym_err_PLUSout_GT] = ACTIONS(942), + [anon_sym_out_PLUSerr_GT] = ACTIONS(942), + [anon_sym_o_PLUSe_GT] = ACTIONS(942), + [anon_sym_e_PLUSo_GT] = ACTIONS(942), + [anon_sym_err_GT_GT] = ACTIONS(944), + [anon_sym_out_GT_GT] = ACTIONS(944), + [anon_sym_e_GT_GT] = ACTIONS(944), + [anon_sym_o_GT_GT] = ACTIONS(944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(944), [anon_sym_POUND] = ACTIONS(245), }, - [1666] = { - [sym_comment] = STATE(1666), - [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(1591), - [anon_sym_RPAREN] = ACTIONS(1591), - [anon_sym_DOLLAR] = ACTIONS(1579), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_DASH2] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1591), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1579), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [aux_sym__val_number_decimal_token1] = ACTIONS(1579), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [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(1579), - [anon_sym_0o] = ACTIONS(1579), - [anon_sym_0x] = ACTIONS(1579), - [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(1579), - [anon_sym_out_GT] = ACTIONS(1579), - [anon_sym_e_GT] = ACTIONS(1579), - [anon_sym_o_GT] = ACTIONS(1579), - [anon_sym_err_PLUSout_GT] = ACTIONS(1579), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), - [anon_sym_o_PLUSe_GT] = ACTIONS(1579), - [anon_sym_e_PLUSo_GT] = ACTIONS(1579), - [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(1579), - [aux_sym_unquoted_token2] = ACTIONS(4472), + [1563] = { + [sym_comment] = STATE(1563), + [sym__newline] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2790), + [anon_sym_PIPE] = ACTIONS(2790), + [anon_sym_err_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_GT_PIPE] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2790), + [anon_sym_LBRACK] = ACTIONS(2790), + [anon_sym_LPAREN] = ACTIONS(2790), + [anon_sym_RPAREN] = ACTIONS(2790), + [anon_sym_DOLLAR] = ACTIONS(4876), + [anon_sym_DASH_DASH] = ACTIONS(2790), + [anon_sym_DASH2] = ACTIONS(4876), + [anon_sym_LBRACE] = ACTIONS(2790), + [anon_sym_DOT_DOT] = ACTIONS(4876), + [anon_sym_DOT_DOT2] = ACTIONS(4786), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4876), + [anon_sym_DOT_DOT_LT] = ACTIONS(4876), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4788), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4788), + [anon_sym_null] = ACTIONS(2790), + [anon_sym_true] = ACTIONS(2790), + [anon_sym_false] = ACTIONS(2790), + [aux_sym__val_number_decimal_token1] = ACTIONS(4876), + [aux_sym__val_number_decimal_token2] = ACTIONS(2790), + [aux_sym__val_number_decimal_token3] = ACTIONS(2790), + [aux_sym__val_number_decimal_token4] = ACTIONS(2790), + [aux_sym__val_number_token1] = ACTIONS(2790), + [aux_sym__val_number_token2] = ACTIONS(2790), + [aux_sym__val_number_token3] = ACTIONS(2790), + [aux_sym__val_number_token4] = ACTIONS(2790), + [aux_sym__val_number_token5] = ACTIONS(2790), + [aux_sym__val_number_token6] = ACTIONS(2790), + [anon_sym_0b] = ACTIONS(4876), + [anon_sym_0o] = ACTIONS(4876), + [anon_sym_0x] = ACTIONS(4876), + [sym_val_date] = ACTIONS(2790), + [anon_sym_DQUOTE] = ACTIONS(2790), + [sym__str_single_quotes] = ACTIONS(2790), + [sym__str_back_ticks] = ACTIONS(2790), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2790), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2790), + [anon_sym_err_GT] = ACTIONS(4876), + [anon_sym_out_GT] = ACTIONS(4876), + [anon_sym_e_GT] = ACTIONS(4876), + [anon_sym_o_GT] = ACTIONS(4876), + [anon_sym_err_PLUSout_GT] = ACTIONS(4876), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4876), + [anon_sym_o_PLUSe_GT] = ACTIONS(4876), + [anon_sym_e_PLUSo_GT] = ACTIONS(4876), + [anon_sym_err_GT_GT] = ACTIONS(2790), + [anon_sym_out_GT_GT] = ACTIONS(2790), + [anon_sym_e_GT_GT] = ACTIONS(2790), + [anon_sym_o_GT_GT] = ACTIONS(2790), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2790), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2790), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2790), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2790), + [aux_sym_unquoted_token1] = ACTIONS(4876), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2790), + }, + [1564] = { + [sym_comment] = STATE(1564), + [sym__newline] = ACTIONS(2078), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_PIPE] = ACTIONS(2078), + [anon_sym_err_GT_PIPE] = ACTIONS(2078), + [anon_sym_out_GT_PIPE] = ACTIONS(2078), + [anon_sym_e_GT_PIPE] = ACTIONS(2078), + [anon_sym_o_GT_PIPE] = ACTIONS(2078), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2078), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2078), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2078), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2078), + [anon_sym_LPAREN] = ACTIONS(2076), + [anon_sym_RPAREN] = ACTIONS(2078), + [anon_sym_DOLLAR] = ACTIONS(2076), + [anon_sym_DASH_DASH] = ACTIONS(2076), + [anon_sym_DASH2] = ACTIONS(2076), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_DOT_DOT] = ACTIONS(2076), + [anon_sym_LPAREN2] = ACTIONS(2078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2076), + [anon_sym_DOT_DOT_LT] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2076), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [aux_sym__val_number_decimal_token1] = ACTIONS(2076), + [aux_sym__val_number_decimal_token2] = ACTIONS(2076), + [aux_sym__val_number_decimal_token3] = ACTIONS(2076), + [aux_sym__val_number_decimal_token4] = ACTIONS(2076), + [aux_sym__val_number_token1] = ACTIONS(2076), + [aux_sym__val_number_token2] = ACTIONS(2076), + [aux_sym__val_number_token3] = ACTIONS(2076), + [aux_sym__val_number_token4] = ACTIONS(2076), + [aux_sym__val_number_token5] = ACTIONS(2076), + [aux_sym__val_number_token6] = ACTIONS(2076), + [anon_sym_0b] = ACTIONS(2076), + [anon_sym_0o] = ACTIONS(2076), + [anon_sym_0x] = ACTIONS(2076), + [sym_val_date] = ACTIONS(2076), + [anon_sym_DQUOTE] = ACTIONS(2078), + [sym__str_single_quotes] = ACTIONS(2078), + [sym__str_back_ticks] = ACTIONS(2078), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2078), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2078), + [anon_sym_err_GT] = ACTIONS(2076), + [anon_sym_out_GT] = ACTIONS(2076), + [anon_sym_e_GT] = ACTIONS(2076), + [anon_sym_o_GT] = ACTIONS(2076), + [anon_sym_err_PLUSout_GT] = ACTIONS(2076), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2076), + [anon_sym_o_PLUSe_GT] = ACTIONS(2076), + [anon_sym_e_PLUSo_GT] = ACTIONS(2076), + [anon_sym_err_GT_GT] = ACTIONS(2076), + [anon_sym_out_GT_GT] = ACTIONS(2076), + [anon_sym_e_GT_GT] = ACTIONS(2076), + [anon_sym_o_GT_GT] = ACTIONS(2076), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2076), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2076), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2076), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2076), + [aux_sym_unquoted_token1] = ACTIONS(2076), + [aux_sym_unquoted_token4] = ACTIONS(2076), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2078), + }, + [1565] = { + [sym_comment] = STATE(1565), + [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(2134), + [anon_sym_RPAREN] = ACTIONS(2136), + [anon_sym_DOLLAR] = ACTIONS(2134), + [anon_sym_DASH_DASH] = ACTIONS(2136), + [anon_sym_DASH2] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_RBRACE] = ACTIONS(2136), + [anon_sym_DOT_DOT] = ACTIONS(2134), + [anon_sym_LPAREN2] = ACTIONS(1784), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2136), + [anon_sym_DOT_DOT_LT] = ACTIONS(2136), + [anon_sym_null] = ACTIONS(2136), + [anon_sym_true] = ACTIONS(2136), + [anon_sym_false] = ACTIONS(2136), + [aux_sym__val_number_decimal_token1] = ACTIONS(2134), + [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(2134), + [anon_sym_0o] = ACTIONS(2134), + [anon_sym_0x] = ACTIONS(2134), + [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(2134), + [anon_sym_out_GT] = ACTIONS(2134), + [anon_sym_e_GT] = ACTIONS(2134), + [anon_sym_o_GT] = ACTIONS(2134), + [anon_sym_err_PLUSout_GT] = ACTIONS(2134), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2134), + [anon_sym_o_PLUSe_GT] = ACTIONS(2134), + [anon_sym_e_PLUSo_GT] = ACTIONS(2134), + [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(2134), + [aux_sym_unquoted_token2] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2136), + }, + [1566] = { + [sym_comment] = STATE(1566), + [ts_builtin_sym_end] = ACTIONS(1979), + [sym__newline] = ACTIONS(1979), + [anon_sym_SEMI] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_err_GT_PIPE] = ACTIONS(1979), + [anon_sym_out_GT_PIPE] = ACTIONS(1979), + [anon_sym_e_GT_PIPE] = ACTIONS(1979), + [anon_sym_o_GT_PIPE] = ACTIONS(1979), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1979), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1979), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1979), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1979), + [anon_sym_LBRACK] = ACTIONS(1979), + [anon_sym_LPAREN] = ACTIONS(1979), + [anon_sym_DOLLAR] = ACTIONS(1973), + [anon_sym_DASH_DASH] = ACTIONS(1979), + [anon_sym_DASH2] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT2] = ACTIONS(4878), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1973), + [anon_sym_DOT_DOT_LT] = ACTIONS(1973), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4880), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4880), + [anon_sym_null] = ACTIONS(1979), + [anon_sym_true] = ACTIONS(1979), + [anon_sym_false] = ACTIONS(1979), + [aux_sym__val_number_decimal_token1] = ACTIONS(1973), + [aux_sym__val_number_decimal_token2] = ACTIONS(1979), + [aux_sym__val_number_decimal_token3] = ACTIONS(1979), + [aux_sym__val_number_decimal_token4] = ACTIONS(1979), + [aux_sym__val_number_token1] = ACTIONS(1979), + [aux_sym__val_number_token2] = ACTIONS(1979), + [aux_sym__val_number_token3] = ACTIONS(1979), + [aux_sym__val_number_token4] = ACTIONS(1979), + [aux_sym__val_number_token5] = ACTIONS(1979), + [aux_sym__val_number_token6] = ACTIONS(1979), + [anon_sym_0b] = ACTIONS(1973), + [anon_sym_0o] = ACTIONS(1973), + [anon_sym_0x] = ACTIONS(1973), + [sym_val_date] = ACTIONS(1979), + [anon_sym_DQUOTE] = ACTIONS(1979), + [sym__str_single_quotes] = ACTIONS(1979), + [sym__str_back_ticks] = ACTIONS(1979), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1979), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1979), + [anon_sym_err_GT] = ACTIONS(1973), + [anon_sym_out_GT] = ACTIONS(1973), + [anon_sym_e_GT] = ACTIONS(1973), + [anon_sym_o_GT] = ACTIONS(1973), + [anon_sym_err_PLUSout_GT] = ACTIONS(1973), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1973), + [anon_sym_o_PLUSe_GT] = ACTIONS(1973), + [anon_sym_e_PLUSo_GT] = ACTIONS(1973), + [anon_sym_err_GT_GT] = ACTIONS(1979), + [anon_sym_out_GT_GT] = ACTIONS(1979), + [anon_sym_e_GT_GT] = ACTIONS(1979), + [anon_sym_o_GT_GT] = ACTIONS(1979), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1979), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1979), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1979), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1979), + [aux_sym_unquoted_token1] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1979), + }, + [1567] = { + [sym_comment] = STATE(1567), + [sym__newline] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_err_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_GT_PIPE] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1688), + [anon_sym_RPAREN] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1688), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT] = ACTIONS(1688), + [aux_sym__immediate_decimal_token1] = ACTIONS(4882), + [aux_sym__immediate_decimal_token2] = ACTIONS(4884), + [anon_sym_null] = ACTIONS(1688), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1688), + [aux_sym__val_number_decimal_token3] = ACTIONS(1688), + [aux_sym__val_number_decimal_token4] = ACTIONS(1688), + [aux_sym__val_number_token1] = ACTIONS(1688), + [aux_sym__val_number_token2] = ACTIONS(1688), + [aux_sym__val_number_token3] = ACTIONS(1688), + [aux_sym__val_number_token4] = ACTIONS(1688), + [aux_sym__val_number_token5] = ACTIONS(1688), + [aux_sym__val_number_token6] = ACTIONS(1688), + [anon_sym_0b] = ACTIONS(1686), + [anon_sym_0o] = ACTIONS(1686), + [anon_sym_0x] = ACTIONS(1686), + [sym_val_date] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [sym__str_single_quotes] = ACTIONS(1688), + [sym__str_back_ticks] = ACTIONS(1688), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1688), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1688), + [anon_sym_err_GT] = ACTIONS(1686), + [anon_sym_out_GT] = ACTIONS(1686), + [anon_sym_e_GT] = ACTIONS(1686), + [anon_sym_o_GT] = ACTIONS(1686), + [anon_sym_err_PLUSout_GT] = ACTIONS(1686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1686), + [anon_sym_o_PLUSe_GT] = ACTIONS(1686), + [anon_sym_e_PLUSo_GT] = ACTIONS(1686), + [anon_sym_err_GT_GT] = ACTIONS(1688), + [anon_sym_out_GT_GT] = ACTIONS(1688), + [anon_sym_e_GT_GT] = ACTIONS(1688), + [anon_sym_o_GT_GT] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1688), + [aux_sym_unquoted_token1] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1688), + }, + [1568] = { + [sym_comment] = STATE(1568), + [sym__newline] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_err_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_GT_PIPE] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2166), + [anon_sym_LBRACK] = ACTIONS(2166), + [anon_sym_LPAREN] = ACTIONS(2162), + [anon_sym_RPAREN] = ACTIONS(2166), + [anon_sym_DOLLAR] = ACTIONS(2162), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_DASH2] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_DOT_DOT] = ACTIONS(2162), + [anon_sym_LPAREN2] = ACTIONS(2164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2162), + [anon_sym_DOT_DOT_LT] = ACTIONS(2162), + [anon_sym_null] = ACTIONS(2162), + [anon_sym_true] = ACTIONS(2162), + [anon_sym_false] = ACTIONS(2162), + [aux_sym__val_number_decimal_token1] = ACTIONS(2162), + [aux_sym__val_number_decimal_token2] = ACTIONS(2162), + [aux_sym__val_number_decimal_token3] = ACTIONS(2162), + [aux_sym__val_number_decimal_token4] = ACTIONS(2162), + [aux_sym__val_number_token1] = ACTIONS(2162), + [aux_sym__val_number_token2] = ACTIONS(2162), + [aux_sym__val_number_token3] = ACTIONS(2162), + [aux_sym__val_number_token4] = ACTIONS(2162), + [aux_sym__val_number_token5] = ACTIONS(2162), + [aux_sym__val_number_token6] = ACTIONS(2162), + [anon_sym_0b] = ACTIONS(2162), + [anon_sym_0o] = ACTIONS(2162), + [anon_sym_0x] = ACTIONS(2162), + [sym_val_date] = ACTIONS(2162), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym__str_single_quotes] = ACTIONS(2166), + [sym__str_back_ticks] = ACTIONS(2166), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2166), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2166), + [anon_sym_err_GT] = ACTIONS(2162), + [anon_sym_out_GT] = ACTIONS(2162), + [anon_sym_e_GT] = ACTIONS(2162), + [anon_sym_o_GT] = ACTIONS(2162), + [anon_sym_err_PLUSout_GT] = ACTIONS(2162), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2162), + [anon_sym_o_PLUSe_GT] = ACTIONS(2162), + [anon_sym_e_PLUSo_GT] = ACTIONS(2162), + [anon_sym_err_GT_GT] = ACTIONS(2162), + [anon_sym_out_GT_GT] = ACTIONS(2162), + [anon_sym_e_GT_GT] = ACTIONS(2162), + [anon_sym_o_GT_GT] = ACTIONS(2162), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2162), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2162), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2162), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2162), + [aux_sym_unquoted_token1] = ACTIONS(2162), + [aux_sym_unquoted_token4] = ACTIONS(2168), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2166), + }, + [1569] = { + [sym_comment] = STATE(1569), + [ts_builtin_sym_end] = ACTIONS(1955), + [sym__newline] = ACTIONS(1955), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_err_GT_PIPE] = ACTIONS(1955), + [anon_sym_out_GT_PIPE] = ACTIONS(1955), + [anon_sym_e_GT_PIPE] = ACTIONS(1955), + [anon_sym_o_GT_PIPE] = ACTIONS(1955), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1955), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1955), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1955), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1955), + [anon_sym_DOLLAR] = ACTIONS(1949), + [anon_sym_DASH_DASH] = ACTIONS(1955), + [anon_sym_DASH2] = ACTIONS(1949), + [anon_sym_LBRACE] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(1949), + [anon_sym_DOT_DOT2] = ACTIONS(4886), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1949), + [anon_sym_DOT_DOT_LT] = ACTIONS(1949), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4888), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4888), + [anon_sym_null] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1955), + [anon_sym_false] = ACTIONS(1955), + [aux_sym__val_number_decimal_token1] = ACTIONS(1949), + [aux_sym__val_number_decimal_token2] = ACTIONS(1955), + [aux_sym__val_number_decimal_token3] = ACTIONS(1955), + [aux_sym__val_number_decimal_token4] = ACTIONS(1955), + [aux_sym__val_number_token1] = ACTIONS(1955), + [aux_sym__val_number_token2] = ACTIONS(1955), + [aux_sym__val_number_token3] = ACTIONS(1955), + [aux_sym__val_number_token4] = ACTIONS(1955), + [aux_sym__val_number_token5] = ACTIONS(1955), + [aux_sym__val_number_token6] = ACTIONS(1955), + [anon_sym_0b] = ACTIONS(1949), + [anon_sym_0o] = ACTIONS(1949), + [anon_sym_0x] = ACTIONS(1949), + [sym_val_date] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(1955), + [sym__str_single_quotes] = ACTIONS(1955), + [sym__str_back_ticks] = ACTIONS(1955), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1955), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1955), + [anon_sym_err_GT] = ACTIONS(1949), + [anon_sym_out_GT] = ACTIONS(1949), + [anon_sym_e_GT] = ACTIONS(1949), + [anon_sym_o_GT] = ACTIONS(1949), + [anon_sym_err_PLUSout_GT] = ACTIONS(1949), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1949), + [anon_sym_o_PLUSe_GT] = ACTIONS(1949), + [anon_sym_e_PLUSo_GT] = ACTIONS(1949), + [anon_sym_err_GT_GT] = ACTIONS(1955), + [anon_sym_out_GT_GT] = ACTIONS(1955), + [anon_sym_e_GT_GT] = ACTIONS(1955), + [anon_sym_o_GT_GT] = ACTIONS(1955), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1955), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1955), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1955), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1955), + [aux_sym_unquoted_token1] = ACTIONS(1949), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1955), + }, + [1570] = { + [sym_comment] = STATE(1570), + [ts_builtin_sym_end] = ACTIONS(1963), + [sym__newline] = ACTIONS(1963), + [anon_sym_SEMI] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(1963), + [anon_sym_err_GT_PIPE] = ACTIONS(1963), + [anon_sym_out_GT_PIPE] = ACTIONS(1963), + [anon_sym_e_GT_PIPE] = ACTIONS(1963), + [anon_sym_o_GT_PIPE] = ACTIONS(1963), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1963), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1963), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1963), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1963), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_LPAREN] = ACTIONS(1963), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_DASH_DASH] = ACTIONS(1963), + [anon_sym_DASH2] = ACTIONS(1957), + [anon_sym_LBRACE] = ACTIONS(1963), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT2] = ACTIONS(4890), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1957), + [anon_sym_DOT_DOT_LT] = ACTIONS(1957), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4892), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4892), + [anon_sym_null] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(1963), + [anon_sym_false] = ACTIONS(1963), + [aux_sym__val_number_decimal_token1] = ACTIONS(1957), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1963), + [aux_sym__val_number_decimal_token4] = ACTIONS(1963), + [aux_sym__val_number_token1] = ACTIONS(1963), + [aux_sym__val_number_token2] = ACTIONS(1963), + [aux_sym__val_number_token3] = ACTIONS(1963), + [aux_sym__val_number_token4] = ACTIONS(1963), + [aux_sym__val_number_token5] = ACTIONS(1963), + [aux_sym__val_number_token6] = ACTIONS(1963), + [anon_sym_0b] = ACTIONS(1957), + [anon_sym_0o] = ACTIONS(1957), + [anon_sym_0x] = ACTIONS(1957), + [sym_val_date] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1963), + [sym__str_single_quotes] = ACTIONS(1963), + [sym__str_back_ticks] = ACTIONS(1963), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1963), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1963), + [anon_sym_err_GT] = ACTIONS(1957), + [anon_sym_out_GT] = ACTIONS(1957), + [anon_sym_e_GT] = ACTIONS(1957), + [anon_sym_o_GT] = ACTIONS(1957), + [anon_sym_err_PLUSout_GT] = ACTIONS(1957), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1957), + [anon_sym_o_PLUSe_GT] = ACTIONS(1957), + [anon_sym_e_PLUSo_GT] = ACTIONS(1957), + [anon_sym_err_GT_GT] = ACTIONS(1963), + [anon_sym_out_GT_GT] = ACTIONS(1963), + [anon_sym_e_GT_GT] = ACTIONS(1963), + [anon_sym_o_GT_GT] = ACTIONS(1963), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1963), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1963), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1963), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1963), + [aux_sym_unquoted_token1] = ACTIONS(1957), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1963), + }, + [1571] = { + [sym_comment] = STATE(1571), + [ts_builtin_sym_end] = ACTIONS(1971), + [sym__newline] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_PIPE] = ACTIONS(1971), + [anon_sym_err_GT_PIPE] = ACTIONS(1971), + [anon_sym_out_GT_PIPE] = ACTIONS(1971), + [anon_sym_e_GT_PIPE] = ACTIONS(1971), + [anon_sym_o_GT_PIPE] = ACTIONS(1971), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1971), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1971), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1971), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1971), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_LPAREN] = ACTIONS(1971), + [anon_sym_DOLLAR] = ACTIONS(1965), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_DASH2] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1971), + [anon_sym_DOT_DOT] = ACTIONS(1965), + [anon_sym_DOT_DOT2] = ACTIONS(4894), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1965), + [anon_sym_DOT_DOT_LT] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4896), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4896), + [anon_sym_null] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(1971), + [anon_sym_false] = ACTIONS(1971), + [aux_sym__val_number_decimal_token1] = ACTIONS(1965), + [aux_sym__val_number_decimal_token2] = ACTIONS(1971), + [aux_sym__val_number_decimal_token3] = ACTIONS(1971), + [aux_sym__val_number_decimal_token4] = ACTIONS(1971), + [aux_sym__val_number_token1] = ACTIONS(1971), + [aux_sym__val_number_token2] = ACTIONS(1971), + [aux_sym__val_number_token3] = ACTIONS(1971), + [aux_sym__val_number_token4] = ACTIONS(1971), + [aux_sym__val_number_token5] = ACTIONS(1971), + [aux_sym__val_number_token6] = ACTIONS(1971), + [anon_sym_0b] = ACTIONS(1965), + [anon_sym_0o] = ACTIONS(1965), + [anon_sym_0x] = ACTIONS(1965), + [sym_val_date] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1971), + [sym__str_single_quotes] = ACTIONS(1971), + [sym__str_back_ticks] = ACTIONS(1971), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1971), + [anon_sym_err_GT] = ACTIONS(1965), + [anon_sym_out_GT] = ACTIONS(1965), + [anon_sym_e_GT] = ACTIONS(1965), + [anon_sym_o_GT] = ACTIONS(1965), + [anon_sym_err_PLUSout_GT] = ACTIONS(1965), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1965), + [anon_sym_o_PLUSe_GT] = ACTIONS(1965), + [anon_sym_e_PLUSo_GT] = ACTIONS(1965), + [anon_sym_err_GT_GT] = ACTIONS(1971), + [anon_sym_out_GT_GT] = ACTIONS(1971), + [anon_sym_e_GT_GT] = ACTIONS(1971), + [anon_sym_o_GT_GT] = ACTIONS(1971), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1971), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1971), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1971), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1971), + [aux_sym_unquoted_token1] = ACTIONS(1965), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1971), + }, + [1572] = { + [sym_comment] = STATE(1572), + [sym__newline] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(1799), + [anon_sym_PIPE] = ACTIONS(1799), + [anon_sym_err_GT_PIPE] = ACTIONS(1799), + [anon_sym_out_GT_PIPE] = ACTIONS(1799), + [anon_sym_e_GT_PIPE] = ACTIONS(1799), + [anon_sym_o_GT_PIPE] = ACTIONS(1799), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1799), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1799), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1799), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1799), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1797), + [anon_sym_RPAREN] = ACTIONS(1799), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_DASH2] = ACTIONS(1797), + [anon_sym_LBRACE] = ACTIONS(1799), + [anon_sym_RBRACE] = ACTIONS(1799), + [anon_sym_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1799), + [anon_sym_DOT_DOT_LT] = ACTIONS(1799), + [anon_sym_null] = ACTIONS(1799), + [anon_sym_true] = ACTIONS(1799), + [anon_sym_false] = ACTIONS(1799), + [aux_sym__val_number_decimal_token1] = ACTIONS(1797), + [aux_sym__val_number_decimal_token2] = ACTIONS(1799), + [aux_sym__val_number_decimal_token3] = ACTIONS(1799), + [aux_sym__val_number_decimal_token4] = ACTIONS(1799), + [aux_sym__val_number_token1] = ACTIONS(1799), + [aux_sym__val_number_token2] = ACTIONS(1799), + [aux_sym__val_number_token3] = ACTIONS(1799), + [aux_sym__val_number_token4] = ACTIONS(1799), + [aux_sym__val_number_token5] = ACTIONS(1799), + [aux_sym__val_number_token6] = ACTIONS(1799), + [anon_sym_0b] = ACTIONS(1797), + [anon_sym_0o] = ACTIONS(1797), + [anon_sym_0x] = ACTIONS(1797), + [sym_val_date] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1799), + [sym__str_single_quotes] = ACTIONS(1799), + [sym__str_back_ticks] = ACTIONS(1799), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1799), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1799), + [anon_sym_err_GT] = ACTIONS(1797), + [anon_sym_out_GT] = ACTIONS(1797), + [anon_sym_e_GT] = ACTIONS(1797), + [anon_sym_o_GT] = ACTIONS(1797), + [anon_sym_err_PLUSout_GT] = ACTIONS(1797), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1797), + [anon_sym_o_PLUSe_GT] = ACTIONS(1797), + [anon_sym_e_PLUSo_GT] = ACTIONS(1797), + [anon_sym_err_GT_GT] = ACTIONS(1799), + [anon_sym_out_GT_GT] = ACTIONS(1799), + [anon_sym_e_GT_GT] = ACTIONS(1799), + [anon_sym_o_GT_GT] = ACTIONS(1799), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1799), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1799), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1799), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1799), + [aux_sym_unquoted_token1] = ACTIONS(1797), + [aux_sym_unquoted_token2] = ACTIONS(1797), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1799), + }, + [1573] = { + [sym_comment] = STATE(1573), + [ts_builtin_sym_end] = ACTIONS(956), + [sym__newline] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_PIPE] = ACTIONS(956), + [anon_sym_err_GT_PIPE] = ACTIONS(956), + [anon_sym_out_GT_PIPE] = ACTIONS(956), + [anon_sym_e_GT_PIPE] = ACTIONS(956), + [anon_sym_o_GT_PIPE] = ACTIONS(956), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(956), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(956), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(956), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(956), + [anon_sym_GT2] = ACTIONS(954), + [anon_sym_DASH2] = ACTIONS(956), + [anon_sym_in2] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(956), + [anon_sym_STAR2] = ACTIONS(954), + [anon_sym_QMARK2] = ACTIONS(956), + [anon_sym_and2] = ACTIONS(956), + [anon_sym_xor2] = ACTIONS(956), + [anon_sym_or2] = ACTIONS(956), + [anon_sym_not_DASHin2] = ACTIONS(956), + [anon_sym_has2] = ACTIONS(956), + [anon_sym_not_DASHhas2] = ACTIONS(956), + [anon_sym_starts_DASHwith2] = ACTIONS(956), + [anon_sym_ends_DASHwith2] = ACTIONS(956), + [anon_sym_EQ_EQ2] = ACTIONS(956), + [anon_sym_BANG_EQ2] = ACTIONS(956), + [anon_sym_LT2] = ACTIONS(954), + [anon_sym_LT_EQ2] = ACTIONS(956), + [anon_sym_GT_EQ2] = ACTIONS(956), + [anon_sym_EQ_TILDE2] = ACTIONS(956), + [anon_sym_BANG_TILDE2] = ACTIONS(956), + [anon_sym_STAR_STAR2] = ACTIONS(956), + [anon_sym_PLUS_PLUS2] = ACTIONS(956), + [anon_sym_SLASH2] = ACTIONS(954), + [anon_sym_mod2] = ACTIONS(956), + [anon_sym_SLASH_SLASH2] = ACTIONS(956), + [anon_sym_PLUS2] = ACTIONS(954), + [anon_sym_bit_DASHshl2] = ACTIONS(956), + [anon_sym_bit_DASHshr2] = ACTIONS(956), + [anon_sym_bit_DASHand2] = ACTIONS(956), + [anon_sym_bit_DASHxor2] = ACTIONS(956), + [anon_sym_bit_DASHor2] = ACTIONS(956), + [anon_sym_DOT_DOT2] = ACTIONS(954), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(956), + [anon_sym_DOT_DOT_LT2] = ACTIONS(956), + [anon_sym_DOT2] = ACTIONS(954), + [anon_sym_err_GT] = ACTIONS(954), + [anon_sym_out_GT] = ACTIONS(954), + [anon_sym_e_GT] = ACTIONS(954), + [anon_sym_o_GT] = ACTIONS(954), + [anon_sym_err_PLUSout_GT] = ACTIONS(954), + [anon_sym_out_PLUSerr_GT] = ACTIONS(954), + [anon_sym_o_PLUSe_GT] = ACTIONS(954), + [anon_sym_e_PLUSo_GT] = ACTIONS(954), + [anon_sym_err_GT_GT] = ACTIONS(956), + [anon_sym_out_GT_GT] = ACTIONS(956), + [anon_sym_e_GT_GT] = ACTIONS(956), + [anon_sym_o_GT_GT] = ACTIONS(956), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(956), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(956), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(956), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(956), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1591), }, - [1667] = { - [sym_cmd_identifier] = STATE(4124), - [sym__command_name] = STATE(6594), - [sym_scope_pattern] = STATE(6597), - [sym_wild_card] = STATE(6598), - [sym_command_list] = STATE(6599), - [sym__val_number_decimal] = STATE(3790), - [sym_val_string] = STATE(4114), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_comment] = STATE(1667), - [aux_sym_cmd_identifier_token1] = ACTIONS(4974), - [aux_sym_cmd_identifier_token2] = ACTIONS(4976), - [aux_sym_cmd_identifier_token3] = ACTIONS(4976), - [aux_sym_cmd_identifier_token4] = ACTIONS(4976), - [aux_sym_cmd_identifier_token5] = ACTIONS(4976), - [aux_sym_cmd_identifier_token6] = ACTIONS(4976), - [aux_sym_cmd_identifier_token7] = ACTIONS(4976), - [aux_sym_cmd_identifier_token8] = ACTIONS(4976), - [aux_sym_cmd_identifier_token9] = ACTIONS(4974), - [aux_sym_cmd_identifier_token10] = ACTIONS(4976), - [aux_sym_cmd_identifier_token11] = ACTIONS(4976), - [aux_sym_cmd_identifier_token12] = ACTIONS(4976), - [aux_sym_cmd_identifier_token13] = ACTIONS(4974), - [aux_sym_cmd_identifier_token14] = ACTIONS(4976), - [aux_sym_cmd_identifier_token15] = ACTIONS(4974), - [aux_sym_cmd_identifier_token16] = ACTIONS(4976), - [aux_sym_cmd_identifier_token17] = ACTIONS(4976), - [aux_sym_cmd_identifier_token18] = ACTIONS(4976), - [aux_sym_cmd_identifier_token19] = ACTIONS(4976), - [aux_sym_cmd_identifier_token20] = ACTIONS(4976), - [aux_sym_cmd_identifier_token21] = ACTIONS(4976), - [aux_sym_cmd_identifier_token22] = ACTIONS(4976), - [aux_sym_cmd_identifier_token23] = ACTIONS(4976), - [aux_sym_cmd_identifier_token24] = ACTIONS(4976), - [aux_sym_cmd_identifier_token25] = ACTIONS(4976), - [aux_sym_cmd_identifier_token26] = ACTIONS(4976), - [aux_sym_cmd_identifier_token27] = ACTIONS(4976), - [aux_sym_cmd_identifier_token28] = ACTIONS(4976), - [aux_sym_cmd_identifier_token29] = ACTIONS(4976), - [aux_sym_cmd_identifier_token30] = ACTIONS(4976), - [aux_sym_cmd_identifier_token31] = ACTIONS(4976), - [aux_sym_cmd_identifier_token32] = ACTIONS(4976), - [aux_sym_cmd_identifier_token33] = ACTIONS(4976), - [aux_sym_cmd_identifier_token34] = ACTIONS(4974), - [aux_sym_cmd_identifier_token35] = ACTIONS(4976), - [aux_sym_cmd_identifier_token36] = ACTIONS(4976), - [aux_sym_cmd_identifier_token37] = ACTIONS(4976), - [aux_sym_cmd_identifier_token38] = ACTIONS(4974), - [aux_sym_cmd_identifier_token39] = ACTIONS(4976), - [aux_sym_cmd_identifier_token40] = ACTIONS(4976), - [sym__newline] = ACTIONS(4978), - [anon_sym_SEMI] = ACTIONS(4978), - [anon_sym_LBRACK] = ACTIONS(4980), - [anon_sym_RPAREN] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(4978), - [anon_sym_STAR2] = ACTIONS(4982), - [aux_sym__val_number_decimal_token1] = ACTIONS(4984), - [aux_sym__val_number_decimal_token2] = ACTIONS(4984), - [aux_sym__val_number_decimal_token3] = ACTIONS(4986), - [aux_sym__val_number_decimal_token4] = ACTIONS(4988), + [1574] = { + [sym_comment] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(1995), + [sym__newline] = ACTIONS(1995), + [anon_sym_SEMI] = ACTIONS(1995), + [anon_sym_PIPE] = ACTIONS(1995), + [anon_sym_err_GT_PIPE] = ACTIONS(1995), + [anon_sym_out_GT_PIPE] = ACTIONS(1995), + [anon_sym_e_GT_PIPE] = ACTIONS(1995), + [anon_sym_o_GT_PIPE] = ACTIONS(1995), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1995), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1995), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1995), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_DOLLAR] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1995), + [anon_sym_DASH2] = ACTIONS(1993), + [anon_sym_LBRACE] = ACTIONS(1995), + [anon_sym_DOT_DOT] = ACTIONS(1993), + [anon_sym_DOT_DOT2] = ACTIONS(1993), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1993), + [anon_sym_DOT_DOT_LT] = ACTIONS(1993), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1995), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1995), + [anon_sym_null] = ACTIONS(1995), + [anon_sym_true] = ACTIONS(1995), + [anon_sym_false] = ACTIONS(1995), + [aux_sym__val_number_decimal_token1] = ACTIONS(1993), + [aux_sym__val_number_decimal_token2] = ACTIONS(1995), + [aux_sym__val_number_decimal_token3] = ACTIONS(1995), + [aux_sym__val_number_decimal_token4] = ACTIONS(1995), + [aux_sym__val_number_token1] = ACTIONS(1995), + [aux_sym__val_number_token2] = ACTIONS(1995), + [aux_sym__val_number_token3] = ACTIONS(1995), + [aux_sym__val_number_token4] = ACTIONS(1995), + [aux_sym__val_number_token5] = ACTIONS(1995), + [aux_sym__val_number_token6] = ACTIONS(1995), + [anon_sym_0b] = ACTIONS(1993), + [anon_sym_0o] = ACTIONS(1993), + [anon_sym_0x] = ACTIONS(1993), + [sym_val_date] = ACTIONS(1995), + [anon_sym_DQUOTE] = ACTIONS(1995), + [sym__str_single_quotes] = ACTIONS(1995), + [sym__str_back_ticks] = ACTIONS(1995), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1995), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1995), + [anon_sym_err_GT] = ACTIONS(1993), + [anon_sym_out_GT] = ACTIONS(1993), + [anon_sym_e_GT] = ACTIONS(1993), + [anon_sym_o_GT] = ACTIONS(1993), + [anon_sym_err_PLUSout_GT] = ACTIONS(1993), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1993), + [anon_sym_o_PLUSe_GT] = ACTIONS(1993), + [anon_sym_e_PLUSo_GT] = ACTIONS(1993), + [anon_sym_err_GT_GT] = ACTIONS(1995), + [anon_sym_out_GT_GT] = ACTIONS(1995), + [anon_sym_e_GT_GT] = ACTIONS(1995), + [anon_sym_o_GT_GT] = ACTIONS(1995), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1995), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1995), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1995), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1995), + [aux_sym_unquoted_token1] = ACTIONS(1993), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1995), + }, + [1575] = { + [sym_comment] = STATE(1575), + [sym__newline] = ACTIONS(4898), + [anon_sym_SEMI] = ACTIONS(4898), + [anon_sym_PIPE] = ACTIONS(4898), + [anon_sym_err_GT_PIPE] = ACTIONS(4898), + [anon_sym_out_GT_PIPE] = ACTIONS(4898), + [anon_sym_e_GT_PIPE] = ACTIONS(4898), + [anon_sym_o_GT_PIPE] = ACTIONS(4898), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4898), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4898), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4898), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_RPAREN] = ACTIONS(4898), + [anon_sym_DOLLAR] = ACTIONS(4900), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_DASH2] = ACTIONS(4900), + [anon_sym_LBRACE] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4900), + [anon_sym_DOT_DOT2] = ACTIONS(4786), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4900), + [anon_sym_DOT_DOT_LT] = ACTIONS(4900), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4788), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4788), + [anon_sym_null] = ACTIONS(4898), + [anon_sym_true] = ACTIONS(4898), + [anon_sym_false] = ACTIONS(4898), + [aux_sym__val_number_decimal_token1] = ACTIONS(4900), + [aux_sym__val_number_decimal_token2] = ACTIONS(4898), + [aux_sym__val_number_decimal_token3] = ACTIONS(4898), + [aux_sym__val_number_decimal_token4] = ACTIONS(4898), + [aux_sym__val_number_token1] = ACTIONS(4898), + [aux_sym__val_number_token2] = ACTIONS(4898), + [aux_sym__val_number_token3] = ACTIONS(4898), + [aux_sym__val_number_token4] = ACTIONS(4898), + [aux_sym__val_number_token5] = ACTIONS(4898), + [aux_sym__val_number_token6] = ACTIONS(4898), + [anon_sym_0b] = ACTIONS(4900), + [anon_sym_0o] = ACTIONS(4900), + [anon_sym_0x] = ACTIONS(4900), + [sym_val_date] = ACTIONS(4898), + [anon_sym_DQUOTE] = ACTIONS(4898), + [sym__str_single_quotes] = ACTIONS(4898), + [sym__str_back_ticks] = ACTIONS(4898), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4898), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4898), + [anon_sym_err_GT] = ACTIONS(4900), + [anon_sym_out_GT] = ACTIONS(4900), + [anon_sym_e_GT] = ACTIONS(4900), + [anon_sym_o_GT] = ACTIONS(4900), + [anon_sym_err_PLUSout_GT] = ACTIONS(4900), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4900), + [anon_sym_o_PLUSe_GT] = ACTIONS(4900), + [anon_sym_e_PLUSo_GT] = ACTIONS(4900), + [anon_sym_err_GT_GT] = ACTIONS(4898), + [anon_sym_out_GT_GT] = ACTIONS(4898), + [anon_sym_e_GT_GT] = ACTIONS(4898), + [anon_sym_o_GT_GT] = ACTIONS(4898), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4898), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4898), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4898), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4898), + [aux_sym_unquoted_token1] = ACTIONS(4900), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4898), + }, + [1576] = { + [sym_comment] = STATE(1576), + [ts_builtin_sym_end] = ACTIONS(1989), + [sym__newline] = ACTIONS(1989), + [anon_sym_SEMI] = ACTIONS(1989), + [anon_sym_PIPE] = ACTIONS(1989), + [anon_sym_err_GT_PIPE] = ACTIONS(1989), + [anon_sym_out_GT_PIPE] = ACTIONS(1989), + [anon_sym_e_GT_PIPE] = ACTIONS(1989), + [anon_sym_o_GT_PIPE] = ACTIONS(1989), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1989), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1989), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1989), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1989), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_LPAREN] = ACTIONS(1989), + [anon_sym_DOLLAR] = ACTIONS(1987), + [anon_sym_DASH_DASH] = ACTIONS(1989), + [anon_sym_DASH2] = ACTIONS(1987), + [anon_sym_LBRACE] = ACTIONS(1989), + [anon_sym_DOT_DOT] = ACTIONS(1987), + [anon_sym_DOT_DOT2] = ACTIONS(1987), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1987), + [anon_sym_DOT_DOT_LT] = ACTIONS(1987), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1989), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1989), + [anon_sym_null] = ACTIONS(1989), + [anon_sym_true] = ACTIONS(1989), + [anon_sym_false] = ACTIONS(1989), + [aux_sym__val_number_decimal_token1] = ACTIONS(1987), + [aux_sym__val_number_decimal_token2] = ACTIONS(1989), + [aux_sym__val_number_decimal_token3] = ACTIONS(1989), + [aux_sym__val_number_decimal_token4] = ACTIONS(1989), + [aux_sym__val_number_token1] = ACTIONS(1989), + [aux_sym__val_number_token2] = ACTIONS(1989), + [aux_sym__val_number_token3] = ACTIONS(1989), + [aux_sym__val_number_token4] = ACTIONS(1989), + [aux_sym__val_number_token5] = ACTIONS(1989), + [aux_sym__val_number_token6] = ACTIONS(1989), + [anon_sym_0b] = ACTIONS(1987), + [anon_sym_0o] = ACTIONS(1987), + [anon_sym_0x] = ACTIONS(1987), + [sym_val_date] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1989), + [sym__str_single_quotes] = ACTIONS(1989), + [sym__str_back_ticks] = ACTIONS(1989), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1989), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1989), + [anon_sym_err_GT] = ACTIONS(1987), + [anon_sym_out_GT] = ACTIONS(1987), + [anon_sym_e_GT] = ACTIONS(1987), + [anon_sym_o_GT] = ACTIONS(1987), + [anon_sym_err_PLUSout_GT] = ACTIONS(1987), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1987), + [anon_sym_o_PLUSe_GT] = ACTIONS(1987), + [anon_sym_e_PLUSo_GT] = ACTIONS(1987), + [anon_sym_err_GT_GT] = ACTIONS(1989), + [anon_sym_out_GT_GT] = ACTIONS(1989), + [anon_sym_e_GT_GT] = ACTIONS(1989), + [anon_sym_o_GT_GT] = ACTIONS(1989), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1989), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1989), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1989), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1989), + [aux_sym_unquoted_token1] = ACTIONS(1987), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1989), + }, + [1577] = { + [sym_comment] = STATE(1577), + [sym__newline] = ACTIONS(1813), + [anon_sym_SEMI] = ACTIONS(1813), + [anon_sym_PIPE] = ACTIONS(1813), + [anon_sym_err_GT_PIPE] = ACTIONS(1813), + [anon_sym_out_GT_PIPE] = ACTIONS(1813), + [anon_sym_e_GT_PIPE] = ACTIONS(1813), + [anon_sym_o_GT_PIPE] = ACTIONS(1813), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1813), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1813), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1813), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1813), + [anon_sym_RPAREN] = ACTIONS(1813), + [anon_sym_GT2] = ACTIONS(1805), + [anon_sym_DASH2] = ACTIONS(1813), + [anon_sym_in2] = ACTIONS(1813), + [anon_sym_RBRACE] = ACTIONS(1813), + [anon_sym_STAR2] = ACTIONS(1805), + [anon_sym_and2] = ACTIONS(1813), + [anon_sym_xor2] = ACTIONS(1813), + [anon_sym_or2] = ACTIONS(1813), + [anon_sym_not_DASHin2] = ACTIONS(1813), + [anon_sym_has2] = ACTIONS(1813), + [anon_sym_not_DASHhas2] = ACTIONS(1813), + [anon_sym_starts_DASHwith2] = ACTIONS(1813), + [anon_sym_ends_DASHwith2] = ACTIONS(1813), + [anon_sym_EQ_EQ2] = ACTIONS(1813), + [anon_sym_BANG_EQ2] = ACTIONS(1813), + [anon_sym_LT2] = ACTIONS(1805), + [anon_sym_LT_EQ2] = ACTIONS(1813), + [anon_sym_GT_EQ2] = ACTIONS(1813), + [anon_sym_EQ_TILDE2] = ACTIONS(1813), + [anon_sym_BANG_TILDE2] = ACTIONS(1813), + [anon_sym_LPAREN2] = ACTIONS(1807), + [anon_sym_STAR_STAR2] = ACTIONS(1813), + [anon_sym_PLUS_PLUS2] = ACTIONS(1813), + [anon_sym_SLASH2] = ACTIONS(1805), + [anon_sym_mod2] = ACTIONS(1813), + [anon_sym_SLASH_SLASH2] = ACTIONS(1813), + [anon_sym_PLUS2] = ACTIONS(1805), + [anon_sym_bit_DASHshl2] = ACTIONS(1813), + [anon_sym_bit_DASHshr2] = ACTIONS(1813), + [anon_sym_bit_DASHand2] = ACTIONS(1813), + [anon_sym_bit_DASHxor2] = ACTIONS(1813), + [anon_sym_bit_DASHor2] = ACTIONS(1813), + [anon_sym_DOT_DOT2] = ACTIONS(4902), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4904), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4904), + [anon_sym_err_GT] = ACTIONS(1805), + [anon_sym_out_GT] = ACTIONS(1805), + [anon_sym_e_GT] = ACTIONS(1805), + [anon_sym_o_GT] = ACTIONS(1805), + [anon_sym_err_PLUSout_GT] = ACTIONS(1805), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1805), + [anon_sym_o_PLUSe_GT] = ACTIONS(1805), + [anon_sym_e_PLUSo_GT] = ACTIONS(1805), + [anon_sym_err_GT_GT] = ACTIONS(1813), + [anon_sym_out_GT_GT] = ACTIONS(1813), + [anon_sym_e_GT_GT] = ACTIONS(1813), + [anon_sym_o_GT_GT] = ACTIONS(1813), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1813), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1813), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1813), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1813), + [aux_sym_unquoted_token2] = ACTIONS(1447), + [anon_sym_POUND] = ACTIONS(245), + }, + [1578] = { + [sym_path] = STATE(1723), + [sym_comment] = STATE(1578), + [aux_sym_cell_path_repeat1] = STATE(1559), + [ts_builtin_sym_end] = ACTIONS(940), + [sym__newline] = ACTIONS(940), + [anon_sym_SEMI] = ACTIONS(940), + [anon_sym_PIPE] = ACTIONS(940), + [anon_sym_err_GT_PIPE] = ACTIONS(940), + [anon_sym_out_GT_PIPE] = ACTIONS(940), + [anon_sym_e_GT_PIPE] = ACTIONS(940), + [anon_sym_o_GT_PIPE] = ACTIONS(940), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(940), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(940), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(940), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(940), + [anon_sym_LBRACK] = ACTIONS(940), + [anon_sym_LPAREN] = ACTIONS(940), + [anon_sym_DOLLAR] = ACTIONS(938), + [anon_sym_DASH_DASH] = ACTIONS(940), + [anon_sym_DASH2] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_DOT_DOT_EQ] = ACTIONS(940), + [anon_sym_DOT_DOT_LT] = ACTIONS(940), + [anon_sym_null] = ACTIONS(940), + [anon_sym_true] = ACTIONS(940), + [anon_sym_false] = ACTIONS(940), + [aux_sym__val_number_decimal_token1] = ACTIONS(938), + [aux_sym__val_number_decimal_token2] = ACTIONS(940), + [aux_sym__val_number_decimal_token3] = ACTIONS(940), + [aux_sym__val_number_decimal_token4] = ACTIONS(940), + [aux_sym__val_number_token1] = ACTIONS(940), + [aux_sym__val_number_token2] = ACTIONS(940), + [aux_sym__val_number_token3] = ACTIONS(940), + [aux_sym__val_number_token4] = ACTIONS(940), + [aux_sym__val_number_token5] = ACTIONS(940), + [aux_sym__val_number_token6] = ACTIONS(940), + [anon_sym_0b] = ACTIONS(938), + [anon_sym_0o] = ACTIONS(938), + [anon_sym_0x] = ACTIONS(938), + [sym_val_date] = ACTIONS(940), + [anon_sym_DQUOTE] = ACTIONS(940), + [sym__str_single_quotes] = ACTIONS(940), + [sym__str_back_ticks] = ACTIONS(940), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(940), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(940), + [anon_sym_DOT2] = ACTIONS(4760), + [anon_sym_err_GT] = ACTIONS(938), + [anon_sym_out_GT] = ACTIONS(938), + [anon_sym_e_GT] = ACTIONS(938), + [anon_sym_o_GT] = ACTIONS(938), + [anon_sym_err_PLUSout_GT] = ACTIONS(938), + [anon_sym_out_PLUSerr_GT] = ACTIONS(938), + [anon_sym_o_PLUSe_GT] = ACTIONS(938), + [anon_sym_e_PLUSo_GT] = ACTIONS(938), + [anon_sym_err_GT_GT] = ACTIONS(940), + [anon_sym_out_GT_GT] = ACTIONS(940), + [anon_sym_e_GT_GT] = ACTIONS(940), + [anon_sym_o_GT_GT] = ACTIONS(940), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(940), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(940), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(940), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(940), + [aux_sym_unquoted_token1] = ACTIONS(938), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(940), + }, + [1579] = { + [sym_comment] = STATE(1579), + [ts_builtin_sym_end] = ACTIONS(1762), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1760), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1760), + [anon_sym_DOT_DOT_LT] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1762), + [aux_sym__val_number_token5] = ACTIONS(1762), + [aux_sym__val_number_token6] = ACTIONS(1762), + [anon_sym_0b] = ACTIONS(1760), + [anon_sym_0o] = ACTIONS(1760), + [anon_sym_0x] = ACTIONS(1760), + [sym_val_date] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token1] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1762), + }, + [1580] = { + [sym__expr_parenthesized_immediate] = STATE(7173), + [sym_comment] = STATE(1580), + [sym__newline] = ACTIONS(4830), + [anon_sym_SEMI] = ACTIONS(4830), + [anon_sym_PIPE] = ACTIONS(4830), + [anon_sym_err_GT_PIPE] = ACTIONS(4830), + [anon_sym_out_GT_PIPE] = ACTIONS(4830), + [anon_sym_e_GT_PIPE] = ACTIONS(4830), + [anon_sym_o_GT_PIPE] = ACTIONS(4830), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4830), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4830), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4830), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4830), + [anon_sym_RPAREN] = ACTIONS(4830), + [anon_sym_GT2] = ACTIONS(4832), + [anon_sym_DASH2] = ACTIONS(4830), + [anon_sym_in2] = ACTIONS(4830), + [anon_sym_LBRACE] = ACTIONS(4830), + [anon_sym_RBRACE] = ACTIONS(4830), + [anon_sym_EQ_GT] = ACTIONS(4830), + [anon_sym_STAR2] = ACTIONS(4832), + [anon_sym_and2] = ACTIONS(4830), + [anon_sym_xor2] = ACTIONS(4830), + [anon_sym_or2] = ACTIONS(4830), + [anon_sym_not_DASHin2] = ACTIONS(4830), + [anon_sym_has2] = ACTIONS(4830), + [anon_sym_not_DASHhas2] = ACTIONS(4830), + [anon_sym_starts_DASHwith2] = ACTIONS(4830), + [anon_sym_ends_DASHwith2] = ACTIONS(4830), + [anon_sym_EQ_EQ2] = ACTIONS(4830), + [anon_sym_BANG_EQ2] = ACTIONS(4830), + [anon_sym_LT2] = ACTIONS(4832), + [anon_sym_LT_EQ2] = ACTIONS(4830), + [anon_sym_GT_EQ2] = ACTIONS(4830), + [anon_sym_EQ_TILDE2] = ACTIONS(4830), + [anon_sym_BANG_TILDE2] = ACTIONS(4830), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_STAR_STAR2] = ACTIONS(4830), + [anon_sym_PLUS_PLUS2] = ACTIONS(4830), + [anon_sym_SLASH2] = ACTIONS(4832), + [anon_sym_mod2] = ACTIONS(4830), + [anon_sym_SLASH_SLASH2] = ACTIONS(4830), + [anon_sym_PLUS2] = ACTIONS(4832), + [anon_sym_bit_DASHshl2] = ACTIONS(4830), + [anon_sym_bit_DASHshr2] = ACTIONS(4830), + [anon_sym_bit_DASHand2] = ACTIONS(4830), + [anon_sym_bit_DASHxor2] = ACTIONS(4830), + [anon_sym_bit_DASHor2] = ACTIONS(4830), + [anon_sym_err_GT] = ACTIONS(4832), + [anon_sym_out_GT] = ACTIONS(4832), + [anon_sym_e_GT] = ACTIONS(4832), + [anon_sym_o_GT] = ACTIONS(4832), + [anon_sym_err_PLUSout_GT] = ACTIONS(4832), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4832), + [anon_sym_o_PLUSe_GT] = ACTIONS(4832), + [anon_sym_e_PLUSo_GT] = ACTIONS(4832), + [anon_sym_err_GT_GT] = ACTIONS(4830), + [anon_sym_out_GT_GT] = ACTIONS(4830), + [anon_sym_e_GT_GT] = ACTIONS(4830), + [anon_sym_o_GT_GT] = ACTIONS(4830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4830), + [anon_sym_POUND] = ACTIONS(245), + }, + [1581] = { + [sym_comment] = STATE(1581), + [sym__newline] = ACTIONS(4906), + [anon_sym_SEMI] = ACTIONS(4906), + [anon_sym_PIPE] = ACTIONS(4906), + [anon_sym_err_GT_PIPE] = ACTIONS(4906), + [anon_sym_out_GT_PIPE] = ACTIONS(4906), + [anon_sym_e_GT_PIPE] = ACTIONS(4906), + [anon_sym_o_GT_PIPE] = ACTIONS(4906), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4906), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4906), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4906), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4906), + [anon_sym_LBRACK] = ACTIONS(4906), + [anon_sym_LPAREN] = ACTIONS(4906), + [anon_sym_RPAREN] = ACTIONS(4906), + [anon_sym_DOLLAR] = ACTIONS(4908), + [anon_sym_DASH_DASH] = ACTIONS(4906), + [anon_sym_DASH2] = ACTIONS(4908), + [anon_sym_LBRACE] = ACTIONS(4906), + [anon_sym_RBRACE] = ACTIONS(4906), + [anon_sym_DOT_DOT] = ACTIONS(4908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4906), + [anon_sym_DOT_DOT_LT] = ACTIONS(4906), + [anon_sym_null] = ACTIONS(4906), + [anon_sym_true] = ACTIONS(4906), + [anon_sym_false] = ACTIONS(4906), + [aux_sym__val_number_decimal_token1] = ACTIONS(4908), + [aux_sym__val_number_decimal_token2] = ACTIONS(4906), + [aux_sym__val_number_decimal_token3] = ACTIONS(4906), + [aux_sym__val_number_decimal_token4] = ACTIONS(4906), + [aux_sym__val_number_token1] = ACTIONS(4906), + [aux_sym__val_number_token2] = ACTIONS(4906), + [aux_sym__val_number_token3] = ACTIONS(4906), + [aux_sym__val_number_token4] = ACTIONS(4906), + [aux_sym__val_number_token5] = ACTIONS(4906), + [aux_sym__val_number_token6] = ACTIONS(4906), + [anon_sym_0b] = ACTIONS(4908), + [anon_sym_0o] = ACTIONS(4908), + [anon_sym_0x] = ACTIONS(4908), + [sym_val_date] = ACTIONS(4906), + [anon_sym_DQUOTE] = ACTIONS(4906), + [sym__str_single_quotes] = ACTIONS(4906), + [sym__str_back_ticks] = ACTIONS(4906), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4906), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4906), + [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(4906), + [anon_sym_out_GT_GT] = ACTIONS(4906), + [anon_sym_e_GT_GT] = ACTIONS(4906), + [anon_sym_o_GT_GT] = ACTIONS(4906), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4906), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4906), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4906), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4906), + [anon_sym_EQ2] = ACTIONS(4910), + [aux_sym_unquoted_token1] = ACTIONS(4908), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4906), + }, + [1582] = { + [sym__expr_parenthesized_immediate] = STATE(6836), + [sym_comment] = STATE(1582), + [sym__newline] = ACTIONS(4912), + [anon_sym_SEMI] = ACTIONS(4912), + [anon_sym_PIPE] = ACTIONS(4912), + [anon_sym_err_GT_PIPE] = ACTIONS(4912), + [anon_sym_out_GT_PIPE] = ACTIONS(4912), + [anon_sym_e_GT_PIPE] = ACTIONS(4912), + [anon_sym_o_GT_PIPE] = ACTIONS(4912), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4912), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4912), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4912), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(4912), + [anon_sym_LPAREN] = ACTIONS(4914), + [anon_sym_RPAREN] = ACTIONS(4912), + [anon_sym_DOLLAR] = ACTIONS(4914), + [anon_sym_DASH_DASH] = ACTIONS(4912), + [anon_sym_DASH2] = ACTIONS(4914), + [anon_sym_LBRACE] = ACTIONS(4912), + [anon_sym_DOT_DOT] = ACTIONS(4914), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4912), + [anon_sym_DOT_DOT_LT] = ACTIONS(4912), + [anon_sym_null] = ACTIONS(4912), + [anon_sym_true] = ACTIONS(4912), + [anon_sym_false] = ACTIONS(4912), + [aux_sym__val_number_decimal_token1] = ACTIONS(4914), + [aux_sym__val_number_decimal_token2] = ACTIONS(4912), + [aux_sym__val_number_decimal_token3] = ACTIONS(4912), + [aux_sym__val_number_decimal_token4] = ACTIONS(4912), + [aux_sym__val_number_token1] = ACTIONS(4912), + [aux_sym__val_number_token2] = ACTIONS(4912), + [aux_sym__val_number_token3] = ACTIONS(4912), + [aux_sym__val_number_token4] = ACTIONS(4912), + [aux_sym__val_number_token5] = ACTIONS(4912), + [aux_sym__val_number_token6] = ACTIONS(4912), + [anon_sym_0b] = ACTIONS(4914), + [anon_sym_0o] = ACTIONS(4914), + [anon_sym_0x] = ACTIONS(4914), + [sym_val_date] = ACTIONS(4912), + [anon_sym_DQUOTE] = ACTIONS(4912), + [sym__str_single_quotes] = ACTIONS(4912), + [sym__str_back_ticks] = ACTIONS(4912), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4912), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4912), + [anon_sym_err_GT] = ACTIONS(4914), + [anon_sym_out_GT] = ACTIONS(4914), + [anon_sym_e_GT] = ACTIONS(4914), + [anon_sym_o_GT] = ACTIONS(4914), + [anon_sym_err_PLUSout_GT] = ACTIONS(4914), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4914), + [anon_sym_o_PLUSe_GT] = ACTIONS(4914), + [anon_sym_e_PLUSo_GT] = ACTIONS(4914), + [anon_sym_err_GT_GT] = ACTIONS(4912), + [anon_sym_out_GT_GT] = ACTIONS(4912), + [anon_sym_e_GT_GT] = ACTIONS(4912), + [anon_sym_o_GT_GT] = ACTIONS(4912), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4912), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4912), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4912), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4912), + [aux_sym_unquoted_token1] = ACTIONS(4914), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4912), + }, + [1583] = { + [sym__expr_parenthesized_immediate] = STATE(6858), + [sym_comment] = STATE(1583), + [ts_builtin_sym_end] = ACTIONS(4842), + [sym__newline] = ACTIONS(4842), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym_PIPE] = ACTIONS(4842), + [anon_sym_err_GT_PIPE] = ACTIONS(4842), + [anon_sym_out_GT_PIPE] = ACTIONS(4842), + [anon_sym_e_GT_PIPE] = ACTIONS(4842), + [anon_sym_o_GT_PIPE] = ACTIONS(4842), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4842), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4842), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4842), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(4844), + [anon_sym_DOLLAR] = ACTIONS(4844), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_DASH2] = ACTIONS(4844), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_DOT_DOT] = ACTIONS(4844), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4842), + [anon_sym_DOT_DOT_LT] = ACTIONS(4842), + [anon_sym_null] = ACTIONS(4842), + [anon_sym_true] = ACTIONS(4842), + [anon_sym_false] = ACTIONS(4842), + [aux_sym__val_number_decimal_token1] = ACTIONS(4844), + [aux_sym__val_number_decimal_token2] = ACTIONS(4842), + [aux_sym__val_number_decimal_token3] = ACTIONS(4842), + [aux_sym__val_number_decimal_token4] = ACTIONS(4842), + [aux_sym__val_number_token1] = ACTIONS(4842), + [aux_sym__val_number_token2] = ACTIONS(4842), + [aux_sym__val_number_token3] = ACTIONS(4842), + [aux_sym__val_number_token4] = ACTIONS(4842), + [aux_sym__val_number_token5] = ACTIONS(4842), + [aux_sym__val_number_token6] = ACTIONS(4842), + [anon_sym_0b] = ACTIONS(4844), + [anon_sym_0o] = ACTIONS(4844), + [anon_sym_0x] = ACTIONS(4844), + [sym_val_date] = ACTIONS(4842), + [anon_sym_DQUOTE] = ACTIONS(4842), + [sym__str_single_quotes] = ACTIONS(4842), + [sym__str_back_ticks] = ACTIONS(4842), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4842), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4842), + [anon_sym_err_GT] = ACTIONS(4844), + [anon_sym_out_GT] = ACTIONS(4844), + [anon_sym_e_GT] = ACTIONS(4844), + [anon_sym_o_GT] = ACTIONS(4844), + [anon_sym_err_PLUSout_GT] = ACTIONS(4844), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4844), + [anon_sym_o_PLUSe_GT] = ACTIONS(4844), + [anon_sym_e_PLUSo_GT] = ACTIONS(4844), + [anon_sym_err_GT_GT] = ACTIONS(4842), + [anon_sym_out_GT_GT] = ACTIONS(4842), + [anon_sym_e_GT_GT] = ACTIONS(4842), + [anon_sym_o_GT_GT] = ACTIONS(4842), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4842), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4842), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4842), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4842), + [aux_sym_unquoted_token1] = ACTIONS(4844), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4842), + }, + [1584] = { + [sym_cmd_identifier] = STATE(3932), + [sym__command_name] = STATE(6265), + [sym_scope_pattern] = STATE(6267), + [sym_wild_card] = STATE(6269), + [sym_command_list] = STATE(6270), + [sym__val_number_decimal] = STATE(3553), + [sym_val_string] = STATE(3963), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_comment] = STATE(1584), + [aux_sym_cmd_identifier_token1] = ACTIONS(4916), + [aux_sym_cmd_identifier_token2] = ACTIONS(4918), + [aux_sym_cmd_identifier_token3] = ACTIONS(4918), + [aux_sym_cmd_identifier_token4] = ACTIONS(4918), + [aux_sym_cmd_identifier_token5] = ACTIONS(4918), + [aux_sym_cmd_identifier_token6] = ACTIONS(4918), + [aux_sym_cmd_identifier_token7] = ACTIONS(4918), + [aux_sym_cmd_identifier_token8] = ACTIONS(4918), + [aux_sym_cmd_identifier_token9] = ACTIONS(4916), + [aux_sym_cmd_identifier_token10] = ACTIONS(4918), + [aux_sym_cmd_identifier_token11] = ACTIONS(4918), + [aux_sym_cmd_identifier_token12] = ACTIONS(4918), + [aux_sym_cmd_identifier_token13] = ACTIONS(4916), + [aux_sym_cmd_identifier_token14] = ACTIONS(4918), + [aux_sym_cmd_identifier_token15] = ACTIONS(4916), + [aux_sym_cmd_identifier_token16] = ACTIONS(4918), + [aux_sym_cmd_identifier_token17] = ACTIONS(4918), + [aux_sym_cmd_identifier_token18] = ACTIONS(4918), + [aux_sym_cmd_identifier_token19] = ACTIONS(4918), + [aux_sym_cmd_identifier_token20] = ACTIONS(4918), + [aux_sym_cmd_identifier_token21] = ACTIONS(4918), + [aux_sym_cmd_identifier_token22] = ACTIONS(4918), + [aux_sym_cmd_identifier_token23] = ACTIONS(4918), + [aux_sym_cmd_identifier_token24] = ACTIONS(4918), + [aux_sym_cmd_identifier_token25] = ACTIONS(4918), + [aux_sym_cmd_identifier_token26] = ACTIONS(4918), + [aux_sym_cmd_identifier_token27] = ACTIONS(4918), + [aux_sym_cmd_identifier_token28] = ACTIONS(4918), + [aux_sym_cmd_identifier_token29] = ACTIONS(4918), + [aux_sym_cmd_identifier_token30] = ACTIONS(4918), + [aux_sym_cmd_identifier_token31] = ACTIONS(4918), + [aux_sym_cmd_identifier_token32] = ACTIONS(4918), + [aux_sym_cmd_identifier_token33] = ACTIONS(4918), + [aux_sym_cmd_identifier_token34] = ACTIONS(4916), + [aux_sym_cmd_identifier_token35] = ACTIONS(4918), + [aux_sym_cmd_identifier_token36] = ACTIONS(4918), + [aux_sym_cmd_identifier_token37] = ACTIONS(4918), + [aux_sym_cmd_identifier_token38] = ACTIONS(4916), + [aux_sym_cmd_identifier_token39] = ACTIONS(4918), + [aux_sym_cmd_identifier_token40] = ACTIONS(4918), + [sym__newline] = ACTIONS(4920), + [anon_sym_SEMI] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4922), + [anon_sym_RPAREN] = ACTIONS(4920), + [anon_sym_RBRACE] = ACTIONS(4920), + [anon_sym_STAR2] = ACTIONS(4924), + [aux_sym__val_number_decimal_token1] = ACTIONS(4926), + [aux_sym__val_number_decimal_token2] = ACTIONS(4926), + [aux_sym__val_number_decimal_token3] = ACTIONS(4928), + [aux_sym__val_number_decimal_token4] = ACTIONS(4930), [anon_sym_DQUOTE] = ACTIONS(1262), [sym__str_single_quotes] = ACTIONS(1264), [sym__str_back_ticks] = ACTIONS(1264), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(1266), }, - [1668] = { - [sym_comment] = STATE(1668), + [1585] = { + [sym_comment] = STATE(1585), [sym__newline] = ACTIONS(994), [anon_sym_SEMI] = ACTIONS(994), [anon_sym_PIPE] = ACTIONS(994), @@ -229082,1549 +220649,410 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(245), }, - [1669] = { - [sym_comment] = STATE(1669), - [sym__newline] = ACTIONS(1819), - [anon_sym_SEMI] = ACTIONS(1819), - [anon_sym_PIPE] = ACTIONS(1819), - [anon_sym_err_GT_PIPE] = ACTIONS(1819), - [anon_sym_out_GT_PIPE] = ACTIONS(1819), - [anon_sym_e_GT_PIPE] = ACTIONS(1819), - [anon_sym_o_GT_PIPE] = ACTIONS(1819), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1819), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1819), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1819), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1819), - [anon_sym_RPAREN] = ACTIONS(1819), - [anon_sym_GT2] = ACTIONS(1811), - [anon_sym_DASH2] = ACTIONS(1819), - [anon_sym_in2] = ACTIONS(1819), - [anon_sym_LBRACE] = ACTIONS(1819), - [anon_sym_RBRACE] = ACTIONS(1819), - [anon_sym_STAR2] = ACTIONS(1811), - [anon_sym_and2] = ACTIONS(1819), - [anon_sym_xor2] = ACTIONS(1819), - [anon_sym_or2] = ACTIONS(1819), - [anon_sym_not_DASHin2] = ACTIONS(1819), - [anon_sym_has2] = ACTIONS(1819), - [anon_sym_not_DASHhas2] = ACTIONS(1819), - [anon_sym_starts_DASHwith2] = ACTIONS(1819), - [anon_sym_ends_DASHwith2] = ACTIONS(1819), - [anon_sym_EQ_EQ2] = ACTIONS(1819), - [anon_sym_BANG_EQ2] = ACTIONS(1819), - [anon_sym_LT2] = ACTIONS(1811), - [anon_sym_LT_EQ2] = ACTIONS(1819), - [anon_sym_GT_EQ2] = ACTIONS(1819), - [anon_sym_EQ_TILDE2] = ACTIONS(1819), - [anon_sym_BANG_TILDE2] = ACTIONS(1819), - [anon_sym_STAR_STAR2] = ACTIONS(1819), - [anon_sym_PLUS_PLUS2] = ACTIONS(1819), - [anon_sym_SLASH2] = ACTIONS(1811), - [anon_sym_mod2] = ACTIONS(1819), - [anon_sym_SLASH_SLASH2] = ACTIONS(1819), - [anon_sym_PLUS2] = ACTIONS(1811), - [anon_sym_bit_DASHshl2] = ACTIONS(1819), - [anon_sym_bit_DASHshr2] = ACTIONS(1819), - [anon_sym_bit_DASHand2] = ACTIONS(1819), - [anon_sym_bit_DASHxor2] = ACTIONS(1819), - [anon_sym_bit_DASHor2] = ACTIONS(1819), - [anon_sym_DOT_DOT2] = ACTIONS(4990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4992), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4992), - [anon_sym_err_GT] = ACTIONS(1811), - [anon_sym_out_GT] = ACTIONS(1811), - [anon_sym_e_GT] = ACTIONS(1811), - [anon_sym_o_GT] = ACTIONS(1811), - [anon_sym_err_PLUSout_GT] = ACTIONS(1811), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1811), - [anon_sym_o_PLUSe_GT] = ACTIONS(1811), - [anon_sym_e_PLUSo_GT] = ACTIONS(1811), - [anon_sym_err_GT_GT] = ACTIONS(1819), - [anon_sym_out_GT_GT] = ACTIONS(1819), - [anon_sym_e_GT_GT] = ACTIONS(1819), - [anon_sym_o_GT_GT] = ACTIONS(1819), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1819), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1819), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1819), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1819), - [anon_sym_POUND] = ACTIONS(245), - }, - [1670] = { - [sym_cmd_identifier] = STATE(4124), - [sym__command_name] = STATE(6594), - [sym_scope_pattern] = STATE(6740), - [sym_wild_card] = STATE(6598), - [sym_command_list] = STATE(6599), - [sym__val_number_decimal] = STATE(3790), - [sym_val_string] = STATE(4114), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_comment] = STATE(1670), - [aux_sym_cmd_identifier_token1] = ACTIONS(4974), - [aux_sym_cmd_identifier_token2] = ACTIONS(4976), - [aux_sym_cmd_identifier_token3] = ACTIONS(4976), - [aux_sym_cmd_identifier_token4] = ACTIONS(4976), - [aux_sym_cmd_identifier_token5] = ACTIONS(4976), - [aux_sym_cmd_identifier_token6] = ACTIONS(4976), - [aux_sym_cmd_identifier_token7] = ACTIONS(4976), - [aux_sym_cmd_identifier_token8] = ACTIONS(4976), - [aux_sym_cmd_identifier_token9] = ACTIONS(4974), - [aux_sym_cmd_identifier_token10] = ACTIONS(4976), - [aux_sym_cmd_identifier_token11] = ACTIONS(4976), - [aux_sym_cmd_identifier_token12] = ACTIONS(4976), - [aux_sym_cmd_identifier_token13] = ACTIONS(4974), - [aux_sym_cmd_identifier_token14] = ACTIONS(4976), - [aux_sym_cmd_identifier_token15] = ACTIONS(4974), - [aux_sym_cmd_identifier_token16] = ACTIONS(4976), - [aux_sym_cmd_identifier_token17] = ACTIONS(4976), - [aux_sym_cmd_identifier_token18] = ACTIONS(4976), - [aux_sym_cmd_identifier_token19] = ACTIONS(4976), - [aux_sym_cmd_identifier_token20] = ACTIONS(4976), - [aux_sym_cmd_identifier_token21] = ACTIONS(4976), - [aux_sym_cmd_identifier_token22] = ACTIONS(4976), - [aux_sym_cmd_identifier_token23] = ACTIONS(4976), - [aux_sym_cmd_identifier_token24] = ACTIONS(4976), - [aux_sym_cmd_identifier_token25] = ACTIONS(4976), - [aux_sym_cmd_identifier_token26] = ACTIONS(4976), - [aux_sym_cmd_identifier_token27] = ACTIONS(4976), - [aux_sym_cmd_identifier_token28] = ACTIONS(4976), - [aux_sym_cmd_identifier_token29] = ACTIONS(4976), - [aux_sym_cmd_identifier_token30] = ACTIONS(4976), - [aux_sym_cmd_identifier_token31] = ACTIONS(4976), - [aux_sym_cmd_identifier_token32] = ACTIONS(4976), - [aux_sym_cmd_identifier_token33] = ACTIONS(4976), - [aux_sym_cmd_identifier_token34] = ACTIONS(4974), - [aux_sym_cmd_identifier_token35] = ACTIONS(4976), - [aux_sym_cmd_identifier_token36] = ACTIONS(4976), - [aux_sym_cmd_identifier_token37] = ACTIONS(4976), - [aux_sym_cmd_identifier_token38] = ACTIONS(4974), - [aux_sym_cmd_identifier_token39] = ACTIONS(4976), - [aux_sym_cmd_identifier_token40] = ACTIONS(4976), - [sym__newline] = ACTIONS(4994), - [anon_sym_SEMI] = ACTIONS(4994), - [anon_sym_LBRACK] = ACTIONS(4980), - [anon_sym_RPAREN] = ACTIONS(4994), - [anon_sym_RBRACE] = ACTIONS(4994), - [anon_sym_STAR2] = ACTIONS(4982), - [aux_sym__val_number_decimal_token1] = ACTIONS(4984), - [aux_sym__val_number_decimal_token2] = ACTIONS(4984), - [aux_sym__val_number_decimal_token3] = ACTIONS(4986), - [aux_sym__val_number_decimal_token4] = ACTIONS(4988), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym__str_single_quotes] = ACTIONS(1264), - [sym__str_back_ticks] = ACTIONS(1264), + [1586] = { + [sym_comment] = STATE(1586), + [sym__newline] = ACTIONS(1813), + [anon_sym_SEMI] = ACTIONS(1813), + [anon_sym_PIPE] = ACTIONS(1813), + [anon_sym_err_GT_PIPE] = ACTIONS(1813), + [anon_sym_out_GT_PIPE] = ACTIONS(1813), + [anon_sym_e_GT_PIPE] = ACTIONS(1813), + [anon_sym_o_GT_PIPE] = ACTIONS(1813), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1813), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1813), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1813), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1813), + [anon_sym_RPAREN] = ACTIONS(1813), + [anon_sym_GT2] = ACTIONS(1805), + [anon_sym_DASH2] = ACTIONS(1813), + [anon_sym_in2] = ACTIONS(1813), + [anon_sym_LBRACE] = ACTIONS(1813), + [anon_sym_RBRACE] = ACTIONS(1813), + [anon_sym_STAR2] = ACTIONS(1805), + [anon_sym_and2] = ACTIONS(1813), + [anon_sym_xor2] = ACTIONS(1813), + [anon_sym_or2] = ACTIONS(1813), + [anon_sym_not_DASHin2] = ACTIONS(1813), + [anon_sym_has2] = ACTIONS(1813), + [anon_sym_not_DASHhas2] = ACTIONS(1813), + [anon_sym_starts_DASHwith2] = ACTIONS(1813), + [anon_sym_ends_DASHwith2] = ACTIONS(1813), + [anon_sym_EQ_EQ2] = ACTIONS(1813), + [anon_sym_BANG_EQ2] = ACTIONS(1813), + [anon_sym_LT2] = ACTIONS(1805), + [anon_sym_LT_EQ2] = ACTIONS(1813), + [anon_sym_GT_EQ2] = ACTIONS(1813), + [anon_sym_EQ_TILDE2] = ACTIONS(1813), + [anon_sym_BANG_TILDE2] = ACTIONS(1813), + [anon_sym_STAR_STAR2] = ACTIONS(1813), + [anon_sym_PLUS_PLUS2] = ACTIONS(1813), + [anon_sym_SLASH2] = ACTIONS(1805), + [anon_sym_mod2] = ACTIONS(1813), + [anon_sym_SLASH_SLASH2] = ACTIONS(1813), + [anon_sym_PLUS2] = ACTIONS(1805), + [anon_sym_bit_DASHshl2] = ACTIONS(1813), + [anon_sym_bit_DASHshr2] = ACTIONS(1813), + [anon_sym_bit_DASHand2] = ACTIONS(1813), + [anon_sym_bit_DASHxor2] = ACTIONS(1813), + [anon_sym_bit_DASHor2] = ACTIONS(1813), + [anon_sym_DOT_DOT2] = ACTIONS(4932), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4934), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4934), + [anon_sym_err_GT] = ACTIONS(1805), + [anon_sym_out_GT] = ACTIONS(1805), + [anon_sym_e_GT] = ACTIONS(1805), + [anon_sym_o_GT] = ACTIONS(1805), + [anon_sym_err_PLUSout_GT] = ACTIONS(1805), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1805), + [anon_sym_o_PLUSe_GT] = ACTIONS(1805), + [anon_sym_e_PLUSo_GT] = ACTIONS(1805), + [anon_sym_err_GT_GT] = ACTIONS(1813), + [anon_sym_out_GT_GT] = ACTIONS(1813), + [anon_sym_e_GT_GT] = ACTIONS(1813), + [anon_sym_o_GT_GT] = ACTIONS(1813), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1813), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1813), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1813), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1813), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1266), }, - [1671] = { - [sym_comment] = STATE(1671), - [sym__newline] = ACTIONS(2047), - [anon_sym_SEMI] = ACTIONS(2047), - [anon_sym_PIPE] = ACTIONS(2047), - [anon_sym_err_GT_PIPE] = ACTIONS(2047), - [anon_sym_out_GT_PIPE] = ACTIONS(2047), - [anon_sym_e_GT_PIPE] = ACTIONS(2047), - [anon_sym_o_GT_PIPE] = ACTIONS(2047), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2047), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2047), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2047), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2047), - [anon_sym_LBRACK] = ACTIONS(2047), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_RPAREN] = ACTIONS(2047), - [anon_sym_DOLLAR] = ACTIONS(2045), - [anon_sym_DASH_DASH] = ACTIONS(2045), - [anon_sym_DASH2] = ACTIONS(2045), - [anon_sym_LBRACE] = ACTIONS(2047), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_DOT_DOT] = ACTIONS(2045), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2045), - [anon_sym_DOT_DOT_LT] = ACTIONS(2045), - [anon_sym_null] = ACTIONS(2045), - [anon_sym_true] = ACTIONS(2045), - [anon_sym_false] = ACTIONS(2045), - [aux_sym__val_number_decimal_token1] = ACTIONS(2045), - [aux_sym__val_number_decimal_token2] = ACTIONS(2045), - [aux_sym__val_number_decimal_token3] = ACTIONS(2045), - [aux_sym__val_number_decimal_token4] = ACTIONS(2045), - [aux_sym__val_number_token1] = ACTIONS(2045), - [aux_sym__val_number_token2] = ACTIONS(2045), - [aux_sym__val_number_token3] = ACTIONS(2045), - [aux_sym__val_number_token4] = ACTIONS(2045), - [aux_sym__val_number_token5] = ACTIONS(2045), - [aux_sym__val_number_token6] = ACTIONS(2045), - [anon_sym_0b] = ACTIONS(2045), - [anon_sym_0o] = ACTIONS(2045), - [anon_sym_0x] = ACTIONS(2045), - [sym_val_date] = ACTIONS(2045), - [anon_sym_DQUOTE] = ACTIONS(2047), - [sym__str_single_quotes] = ACTIONS(2047), - [sym__str_back_ticks] = ACTIONS(2047), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2047), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2047), - [anon_sym_err_GT] = ACTIONS(2045), - [anon_sym_out_GT] = ACTIONS(2045), - [anon_sym_e_GT] = ACTIONS(2045), - [anon_sym_o_GT] = ACTIONS(2045), - [anon_sym_err_PLUSout_GT] = ACTIONS(2045), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2045), - [anon_sym_o_PLUSe_GT] = ACTIONS(2045), - [anon_sym_e_PLUSo_GT] = ACTIONS(2045), - [anon_sym_err_GT_GT] = ACTIONS(2045), - [anon_sym_out_GT_GT] = ACTIONS(2045), - [anon_sym_e_GT_GT] = ACTIONS(2045), - [anon_sym_o_GT_GT] = ACTIONS(2045), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2045), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2045), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2045), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2045), - [aux_sym_unquoted_token1] = ACTIONS(2045), - [aux_sym_unquoted_token4] = ACTIONS(2045), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2047), - }, - [1672] = { - [sym_cmd_identifier] = STATE(4124), - [sym__command_name] = STATE(6594), - [sym_scope_pattern] = STATE(6248), - [sym_wild_card] = STATE(6598), - [sym_command_list] = STATE(6599), - [sym__val_number_decimal] = STATE(3790), - [sym_val_string] = STATE(4114), - [sym__raw_str] = STATE(3801), - [sym__str_double_quotes] = STATE(3801), - [sym_comment] = STATE(1672), - [aux_sym_cmd_identifier_token1] = ACTIONS(4974), - [aux_sym_cmd_identifier_token2] = ACTIONS(4976), - [aux_sym_cmd_identifier_token3] = ACTIONS(4976), - [aux_sym_cmd_identifier_token4] = ACTIONS(4976), - [aux_sym_cmd_identifier_token5] = ACTIONS(4976), - [aux_sym_cmd_identifier_token6] = ACTIONS(4976), - [aux_sym_cmd_identifier_token7] = ACTIONS(4976), - [aux_sym_cmd_identifier_token8] = ACTIONS(4976), - [aux_sym_cmd_identifier_token9] = ACTIONS(4974), - [aux_sym_cmd_identifier_token10] = ACTIONS(4976), - [aux_sym_cmd_identifier_token11] = ACTIONS(4976), - [aux_sym_cmd_identifier_token12] = ACTIONS(4976), - [aux_sym_cmd_identifier_token13] = ACTIONS(4974), - [aux_sym_cmd_identifier_token14] = ACTIONS(4976), - [aux_sym_cmd_identifier_token15] = ACTIONS(4974), - [aux_sym_cmd_identifier_token16] = ACTIONS(4976), - [aux_sym_cmd_identifier_token17] = ACTIONS(4976), - [aux_sym_cmd_identifier_token18] = ACTIONS(4976), - [aux_sym_cmd_identifier_token19] = ACTIONS(4976), - [aux_sym_cmd_identifier_token20] = ACTIONS(4976), - [aux_sym_cmd_identifier_token21] = ACTIONS(4976), - [aux_sym_cmd_identifier_token22] = ACTIONS(4976), - [aux_sym_cmd_identifier_token23] = ACTIONS(4976), - [aux_sym_cmd_identifier_token24] = ACTIONS(4976), - [aux_sym_cmd_identifier_token25] = ACTIONS(4976), - [aux_sym_cmd_identifier_token26] = ACTIONS(4976), - [aux_sym_cmd_identifier_token27] = ACTIONS(4976), - [aux_sym_cmd_identifier_token28] = ACTIONS(4976), - [aux_sym_cmd_identifier_token29] = ACTIONS(4976), - [aux_sym_cmd_identifier_token30] = ACTIONS(4976), - [aux_sym_cmd_identifier_token31] = ACTIONS(4976), - [aux_sym_cmd_identifier_token32] = ACTIONS(4976), - [aux_sym_cmd_identifier_token33] = ACTIONS(4976), - [aux_sym_cmd_identifier_token34] = ACTIONS(4974), - [aux_sym_cmd_identifier_token35] = ACTIONS(4976), - [aux_sym_cmd_identifier_token36] = ACTIONS(4976), - [aux_sym_cmd_identifier_token37] = ACTIONS(4976), - [aux_sym_cmd_identifier_token38] = ACTIONS(4974), - [aux_sym_cmd_identifier_token39] = ACTIONS(4976), - [aux_sym_cmd_identifier_token40] = ACTIONS(4976), - [sym__newline] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(4996), - [anon_sym_LBRACK] = ACTIONS(4980), - [anon_sym_RPAREN] = ACTIONS(4996), - [anon_sym_RBRACE] = ACTIONS(4996), - [anon_sym_STAR2] = ACTIONS(4982), - [aux_sym__val_number_decimal_token1] = ACTIONS(4984), - [aux_sym__val_number_decimal_token2] = ACTIONS(4984), - [aux_sym__val_number_decimal_token3] = ACTIONS(4986), - [aux_sym__val_number_decimal_token4] = ACTIONS(4988), + [1587] = { + [sym_cmd_identifier] = STATE(3932), + [sym__command_name] = STATE(6265), + [sym_scope_pattern] = STATE(5906), + [sym_wild_card] = STATE(6269), + [sym_command_list] = STATE(6270), + [sym__val_number_decimal] = STATE(3553), + [sym_val_string] = STATE(3963), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_comment] = STATE(1587), + [aux_sym_cmd_identifier_token1] = ACTIONS(4916), + [aux_sym_cmd_identifier_token2] = ACTIONS(4918), + [aux_sym_cmd_identifier_token3] = ACTIONS(4918), + [aux_sym_cmd_identifier_token4] = ACTIONS(4918), + [aux_sym_cmd_identifier_token5] = ACTIONS(4918), + [aux_sym_cmd_identifier_token6] = ACTIONS(4918), + [aux_sym_cmd_identifier_token7] = ACTIONS(4918), + [aux_sym_cmd_identifier_token8] = ACTIONS(4918), + [aux_sym_cmd_identifier_token9] = ACTIONS(4916), + [aux_sym_cmd_identifier_token10] = ACTIONS(4918), + [aux_sym_cmd_identifier_token11] = ACTIONS(4918), + [aux_sym_cmd_identifier_token12] = ACTIONS(4918), + [aux_sym_cmd_identifier_token13] = ACTIONS(4916), + [aux_sym_cmd_identifier_token14] = ACTIONS(4918), + [aux_sym_cmd_identifier_token15] = ACTIONS(4916), + [aux_sym_cmd_identifier_token16] = ACTIONS(4918), + [aux_sym_cmd_identifier_token17] = ACTIONS(4918), + [aux_sym_cmd_identifier_token18] = ACTIONS(4918), + [aux_sym_cmd_identifier_token19] = ACTIONS(4918), + [aux_sym_cmd_identifier_token20] = ACTIONS(4918), + [aux_sym_cmd_identifier_token21] = ACTIONS(4918), + [aux_sym_cmd_identifier_token22] = ACTIONS(4918), + [aux_sym_cmd_identifier_token23] = ACTIONS(4918), + [aux_sym_cmd_identifier_token24] = ACTIONS(4918), + [aux_sym_cmd_identifier_token25] = ACTIONS(4918), + [aux_sym_cmd_identifier_token26] = ACTIONS(4918), + [aux_sym_cmd_identifier_token27] = ACTIONS(4918), + [aux_sym_cmd_identifier_token28] = ACTIONS(4918), + [aux_sym_cmd_identifier_token29] = ACTIONS(4918), + [aux_sym_cmd_identifier_token30] = ACTIONS(4918), + [aux_sym_cmd_identifier_token31] = ACTIONS(4918), + [aux_sym_cmd_identifier_token32] = ACTIONS(4918), + [aux_sym_cmd_identifier_token33] = ACTIONS(4918), + [aux_sym_cmd_identifier_token34] = ACTIONS(4916), + [aux_sym_cmd_identifier_token35] = ACTIONS(4918), + [aux_sym_cmd_identifier_token36] = ACTIONS(4918), + [aux_sym_cmd_identifier_token37] = ACTIONS(4918), + [aux_sym_cmd_identifier_token38] = ACTIONS(4916), + [aux_sym_cmd_identifier_token39] = ACTIONS(4918), + [aux_sym_cmd_identifier_token40] = ACTIONS(4918), + [sym__newline] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(4936), + [anon_sym_LBRACK] = ACTIONS(4922), + [anon_sym_RPAREN] = ACTIONS(4936), + [anon_sym_RBRACE] = ACTIONS(4936), + [anon_sym_STAR2] = ACTIONS(4924), + [aux_sym__val_number_decimal_token1] = ACTIONS(4926), + [aux_sym__val_number_decimal_token2] = ACTIONS(4926), + [aux_sym__val_number_decimal_token3] = ACTIONS(4928), + [aux_sym__val_number_decimal_token4] = ACTIONS(4930), [anon_sym_DQUOTE] = ACTIONS(1262), [sym__str_single_quotes] = ACTIONS(1264), [sym__str_back_ticks] = ACTIONS(1264), [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(1266), }, - [1673] = { - [sym_comment] = STATE(1673), - [ts_builtin_sym_end] = ACTIONS(1819), - [sym__newline] = ACTIONS(1819), - [anon_sym_SEMI] = ACTIONS(1819), - [anon_sym_PIPE] = ACTIONS(1819), - [anon_sym_err_GT_PIPE] = ACTIONS(1819), - [anon_sym_out_GT_PIPE] = ACTIONS(1819), - [anon_sym_e_GT_PIPE] = ACTIONS(1819), - [anon_sym_o_GT_PIPE] = ACTIONS(1819), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1819), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1819), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1819), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1819), - [anon_sym_LBRACK] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1811), - [anon_sym_DOLLAR] = ACTIONS(1811), - [anon_sym_DASH_DASH] = ACTIONS(1819), - [anon_sym_DASH2] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1811), - [anon_sym_LPAREN2] = ACTIONS(1813), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1819), - [anon_sym_DOT_DOT_LT] = ACTIONS(1819), - [anon_sym_null] = ACTIONS(1819), - [anon_sym_true] = ACTIONS(1819), - [anon_sym_false] = ACTIONS(1819), - [aux_sym__val_number_decimal_token1] = ACTIONS(1811), - [aux_sym__val_number_decimal_token2] = ACTIONS(1819), - [aux_sym__val_number_decimal_token3] = ACTIONS(1819), - [aux_sym__val_number_decimal_token4] = ACTIONS(1819), - [aux_sym__val_number_token1] = ACTIONS(1819), - [aux_sym__val_number_token2] = ACTIONS(1819), - [aux_sym__val_number_token3] = ACTIONS(1819), - [aux_sym__val_number_token4] = ACTIONS(1819), - [aux_sym__val_number_token5] = ACTIONS(1819), - [aux_sym__val_number_token6] = ACTIONS(1819), - [anon_sym_0b] = ACTIONS(1811), - [anon_sym_0o] = ACTIONS(1811), - [anon_sym_0x] = ACTIONS(1811), - [sym_val_date] = ACTIONS(1819), - [anon_sym_DQUOTE] = ACTIONS(1819), - [sym__str_single_quotes] = ACTIONS(1819), - [sym__str_back_ticks] = ACTIONS(1819), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1819), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1819), - [anon_sym_err_GT] = ACTIONS(1811), - [anon_sym_out_GT] = ACTIONS(1811), - [anon_sym_e_GT] = ACTIONS(1811), - [anon_sym_o_GT] = ACTIONS(1811), - [anon_sym_err_PLUSout_GT] = ACTIONS(1811), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1811), - [anon_sym_o_PLUSe_GT] = ACTIONS(1811), - [anon_sym_e_PLUSo_GT] = ACTIONS(1811), - [anon_sym_err_GT_GT] = ACTIONS(1819), - [anon_sym_out_GT_GT] = ACTIONS(1819), - [anon_sym_e_GT_GT] = ACTIONS(1819), - [anon_sym_o_GT_GT] = ACTIONS(1819), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1819), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1819), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1819), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1819), - [aux_sym_unquoted_token1] = ACTIONS(1811), - [aux_sym_unquoted_token2] = ACTIONS(1447), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1819), + [1588] = { + [sym_comment] = STATE(1588), + [ts_builtin_sym_end] = ACTIONS(1688), + [sym__newline] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_err_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_GT_PIPE] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1688), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_LPAREN2] = ACTIONS(1688), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT] = ACTIONS(1688), + [anon_sym_null] = ACTIONS(1688), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1688), + [aux_sym__val_number_decimal_token3] = ACTIONS(1688), + [aux_sym__val_number_decimal_token4] = ACTIONS(1688), + [aux_sym__val_number_token1] = ACTIONS(1688), + [aux_sym__val_number_token2] = ACTIONS(1688), + [aux_sym__val_number_token3] = ACTIONS(1688), + [aux_sym__val_number_token4] = ACTIONS(1688), + [aux_sym__val_number_token5] = ACTIONS(1688), + [aux_sym__val_number_token6] = ACTIONS(1688), + [anon_sym_0b] = ACTIONS(1686), + [anon_sym_0o] = ACTIONS(1686), + [anon_sym_0x] = ACTIONS(1686), + [sym_val_date] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [sym__str_single_quotes] = ACTIONS(1688), + [sym__str_back_ticks] = ACTIONS(1688), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1688), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1688), + [anon_sym_err_GT] = ACTIONS(1686), + [anon_sym_out_GT] = ACTIONS(1686), + [anon_sym_e_GT] = ACTIONS(1686), + [anon_sym_o_GT] = ACTIONS(1686), + [anon_sym_err_PLUSout_GT] = ACTIONS(1686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1686), + [anon_sym_o_PLUSe_GT] = ACTIONS(1686), + [anon_sym_e_PLUSo_GT] = ACTIONS(1686), + [anon_sym_err_GT_GT] = ACTIONS(1688), + [anon_sym_out_GT_GT] = ACTIONS(1688), + [anon_sym_e_GT_GT] = ACTIONS(1688), + [anon_sym_o_GT_GT] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1688), + [aux_sym_unquoted_token1] = ACTIONS(1686), + [aux_sym_unquoted_token2] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1688), }, - [1674] = { - [sym_comment] = STATE(1674), - [sym__newline] = ACTIONS(4970), - [anon_sym_SEMI] = ACTIONS(4970), - [anon_sym_PIPE] = ACTIONS(4970), - [anon_sym_err_GT_PIPE] = ACTIONS(4970), - [anon_sym_out_GT_PIPE] = ACTIONS(4970), - [anon_sym_e_GT_PIPE] = ACTIONS(4970), - [anon_sym_o_GT_PIPE] = ACTIONS(4970), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4970), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4970), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4970), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4970), - [anon_sym_RPAREN] = ACTIONS(4970), - [anon_sym_GT2] = ACTIONS(4968), - [anon_sym_DASH2] = ACTIONS(4970), - [anon_sym_in2] = ACTIONS(4970), - [anon_sym_LBRACE] = ACTIONS(4970), - [anon_sym_RBRACE] = ACTIONS(4970), - [anon_sym_STAR2] = ACTIONS(4968), - [anon_sym_and2] = ACTIONS(4970), - [anon_sym_xor2] = ACTIONS(4970), - [anon_sym_or2] = ACTIONS(4970), - [anon_sym_not_DASHin2] = ACTIONS(4970), - [anon_sym_has2] = ACTIONS(4970), - [anon_sym_not_DASHhas2] = ACTIONS(4970), - [anon_sym_starts_DASHwith2] = ACTIONS(4970), - [anon_sym_ends_DASHwith2] = ACTIONS(4970), - [anon_sym_EQ_EQ2] = ACTIONS(4970), - [anon_sym_BANG_EQ2] = ACTIONS(4970), - [anon_sym_LT2] = ACTIONS(4968), - [anon_sym_LT_EQ2] = ACTIONS(4970), - [anon_sym_GT_EQ2] = ACTIONS(4970), - [anon_sym_EQ_TILDE2] = ACTIONS(4970), - [anon_sym_BANG_TILDE2] = ACTIONS(4970), - [anon_sym_STAR_STAR2] = ACTIONS(4970), - [anon_sym_PLUS_PLUS2] = ACTIONS(4970), - [anon_sym_SLASH2] = ACTIONS(4968), - [anon_sym_mod2] = ACTIONS(4970), - [anon_sym_SLASH_SLASH2] = ACTIONS(4970), - [anon_sym_PLUS2] = ACTIONS(4968), - [anon_sym_bit_DASHshl2] = ACTIONS(4970), - [anon_sym_bit_DASHshr2] = ACTIONS(4970), - [anon_sym_bit_DASHand2] = ACTIONS(4970), - [anon_sym_bit_DASHxor2] = ACTIONS(4970), - [anon_sym_bit_DASHor2] = ACTIONS(4970), - [anon_sym_DOT_DOT2] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), - [anon_sym_err_GT] = ACTIONS(4968), - [anon_sym_out_GT] = ACTIONS(4968), - [anon_sym_e_GT] = ACTIONS(4968), - [anon_sym_o_GT] = ACTIONS(4968), - [anon_sym_err_PLUSout_GT] = ACTIONS(4968), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4968), - [anon_sym_o_PLUSe_GT] = ACTIONS(4968), - [anon_sym_e_PLUSo_GT] = ACTIONS(4968), - [anon_sym_err_GT_GT] = ACTIONS(4970), - [anon_sym_out_GT_GT] = ACTIONS(4970), - [anon_sym_e_GT_GT] = ACTIONS(4970), - [anon_sym_o_GT_GT] = ACTIONS(4970), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4970), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4970), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4970), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4970), + [1589] = { + [sym_comment] = STATE(1589), + [sym__newline] = ACTIONS(4938), + [anon_sym_SEMI] = ACTIONS(4938), + [anon_sym_PIPE] = ACTIONS(4938), + [anon_sym_err_GT_PIPE] = ACTIONS(4938), + [anon_sym_out_GT_PIPE] = ACTIONS(4938), + [anon_sym_e_GT_PIPE] = ACTIONS(4938), + [anon_sym_o_GT_PIPE] = ACTIONS(4938), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4938), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4938), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4938), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4938), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_LPAREN] = ACTIONS(4938), + [anon_sym_RPAREN] = ACTIONS(4938), + [anon_sym_DOLLAR] = ACTIONS(4940), + [anon_sym_DASH_DASH] = ACTIONS(4938), + [anon_sym_DASH2] = ACTIONS(4940), + [anon_sym_LBRACE] = ACTIONS(4938), + [anon_sym_RBRACE] = ACTIONS(4938), + [anon_sym_DOT_DOT] = ACTIONS(4940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4938), + [anon_sym_DOT_DOT_LT] = ACTIONS(4938), + [anon_sym_null] = ACTIONS(4938), + [anon_sym_true] = ACTIONS(4938), + [anon_sym_false] = ACTIONS(4938), + [aux_sym__val_number_decimal_token1] = ACTIONS(4940), + [aux_sym__val_number_decimal_token2] = ACTIONS(4938), + [aux_sym__val_number_decimal_token3] = ACTIONS(4938), + [aux_sym__val_number_decimal_token4] = ACTIONS(4938), + [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(4938), + [aux_sym__val_number_token6] = ACTIONS(4938), + [anon_sym_0b] = ACTIONS(4940), + [anon_sym_0o] = ACTIONS(4940), + [anon_sym_0x] = ACTIONS(4940), + [sym_val_date] = ACTIONS(4938), + [anon_sym_DQUOTE] = ACTIONS(4938), + [sym__str_single_quotes] = ACTIONS(4938), + [sym__str_back_ticks] = ACTIONS(4938), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4938), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4938), + [anon_sym_err_GT] = ACTIONS(4940), + [anon_sym_out_GT] = ACTIONS(4940), + [anon_sym_e_GT] = ACTIONS(4940), + [anon_sym_o_GT] = ACTIONS(4940), + [anon_sym_err_PLUSout_GT] = ACTIONS(4940), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4940), + [anon_sym_o_PLUSe_GT] = ACTIONS(4940), + [anon_sym_e_PLUSo_GT] = ACTIONS(4940), + [anon_sym_err_GT_GT] = ACTIONS(4938), + [anon_sym_out_GT_GT] = ACTIONS(4938), + [anon_sym_e_GT_GT] = ACTIONS(4938), + [anon_sym_o_GT_GT] = ACTIONS(4938), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4938), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4938), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4938), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4938), + [anon_sym_EQ2] = ACTIONS(4942), + [aux_sym_unquoted_token1] = ACTIONS(4940), [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4938), }, - [1675] = { - [sym__expr_parenthesized_immediate] = STATE(7447), - [sym_comment] = STATE(1675), - [sym__newline] = ACTIONS(4998), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(4998), - [anon_sym_err_GT_PIPE] = ACTIONS(4998), - [anon_sym_out_GT_PIPE] = ACTIONS(4998), - [anon_sym_e_GT_PIPE] = ACTIONS(4998), - [anon_sym_o_GT_PIPE] = ACTIONS(4998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_GT2] = ACTIONS(5000), - [anon_sym_DASH2] = ACTIONS(4998), - [anon_sym_in2] = ACTIONS(4998), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_EQ_GT] = ACTIONS(4998), - [anon_sym_STAR2] = ACTIONS(5000), - [anon_sym_and2] = ACTIONS(4998), - [anon_sym_xor2] = ACTIONS(4998), - [anon_sym_or2] = ACTIONS(4998), - [anon_sym_not_DASHin2] = ACTIONS(4998), - [anon_sym_has2] = ACTIONS(4998), - [anon_sym_not_DASHhas2] = ACTIONS(4998), - [anon_sym_starts_DASHwith2] = ACTIONS(4998), - [anon_sym_ends_DASHwith2] = ACTIONS(4998), - [anon_sym_EQ_EQ2] = ACTIONS(4998), - [anon_sym_BANG_EQ2] = ACTIONS(4998), - [anon_sym_LT2] = ACTIONS(5000), - [anon_sym_LT_EQ2] = ACTIONS(4998), - [anon_sym_GT_EQ2] = ACTIONS(4998), - [anon_sym_EQ_TILDE2] = ACTIONS(4998), - [anon_sym_BANG_TILDE2] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4462), - [anon_sym_STAR_STAR2] = ACTIONS(4998), - [anon_sym_PLUS_PLUS2] = ACTIONS(4998), - [anon_sym_SLASH2] = ACTIONS(5000), - [anon_sym_mod2] = ACTIONS(4998), - [anon_sym_SLASH_SLASH2] = ACTIONS(4998), - [anon_sym_PLUS2] = ACTIONS(5000), - [anon_sym_bit_DASHshl2] = ACTIONS(4998), - [anon_sym_bit_DASHshr2] = ACTIONS(4998), - [anon_sym_bit_DASHand2] = ACTIONS(4998), - [anon_sym_bit_DASHxor2] = ACTIONS(4998), - [anon_sym_bit_DASHor2] = ACTIONS(4998), - [anon_sym_err_GT] = ACTIONS(5000), - [anon_sym_out_GT] = ACTIONS(5000), - [anon_sym_e_GT] = ACTIONS(5000), - [anon_sym_o_GT] = ACTIONS(5000), - [anon_sym_err_PLUSout_GT] = ACTIONS(5000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5000), - [anon_sym_o_PLUSe_GT] = ACTIONS(5000), - [anon_sym_e_PLUSo_GT] = ACTIONS(5000), - [anon_sym_err_GT_GT] = ACTIONS(4998), - [anon_sym_out_GT_GT] = ACTIONS(4998), - [anon_sym_e_GT_GT] = ACTIONS(4998), - [anon_sym_o_GT_GT] = ACTIONS(4998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4998), - [anon_sym_POUND] = ACTIONS(245), - }, - [1676] = { - [sym__expr_parenthesized_immediate] = STATE(7447), - [sym_comment] = STATE(1676), - [sym__newline] = ACTIONS(4998), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(4998), - [anon_sym_err_GT_PIPE] = ACTIONS(4998), - [anon_sym_out_GT_PIPE] = ACTIONS(4998), - [anon_sym_e_GT_PIPE] = ACTIONS(4998), - [anon_sym_o_GT_PIPE] = ACTIONS(4998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_GT2] = ACTIONS(5000), - [anon_sym_DASH2] = ACTIONS(4998), - [anon_sym_in2] = ACTIONS(4998), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_EQ_GT] = ACTIONS(4998), - [anon_sym_STAR2] = ACTIONS(5000), - [anon_sym_and2] = ACTIONS(4998), - [anon_sym_xor2] = ACTIONS(4998), - [anon_sym_or2] = ACTIONS(4998), - [anon_sym_not_DASHin2] = ACTIONS(4998), - [anon_sym_has2] = ACTIONS(4998), - [anon_sym_not_DASHhas2] = ACTIONS(4998), - [anon_sym_starts_DASHwith2] = ACTIONS(4998), - [anon_sym_ends_DASHwith2] = ACTIONS(4998), - [anon_sym_EQ_EQ2] = ACTIONS(4998), - [anon_sym_BANG_EQ2] = ACTIONS(4998), - [anon_sym_LT2] = ACTIONS(5000), - [anon_sym_LT_EQ2] = ACTIONS(4998), - [anon_sym_GT_EQ2] = ACTIONS(4998), - [anon_sym_EQ_TILDE2] = ACTIONS(4998), - [anon_sym_BANG_TILDE2] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4462), - [anon_sym_STAR_STAR2] = ACTIONS(4998), - [anon_sym_PLUS_PLUS2] = ACTIONS(4998), - [anon_sym_SLASH2] = ACTIONS(5000), - [anon_sym_mod2] = ACTIONS(4998), - [anon_sym_SLASH_SLASH2] = ACTIONS(4998), - [anon_sym_PLUS2] = ACTIONS(5000), - [anon_sym_bit_DASHshl2] = ACTIONS(4998), - [anon_sym_bit_DASHshr2] = ACTIONS(4998), - [anon_sym_bit_DASHand2] = ACTIONS(4998), - [anon_sym_bit_DASHxor2] = ACTIONS(4998), - [anon_sym_bit_DASHor2] = ACTIONS(4998), - [anon_sym_err_GT] = ACTIONS(5000), - [anon_sym_out_GT] = ACTIONS(5000), - [anon_sym_e_GT] = ACTIONS(5000), - [anon_sym_o_GT] = ACTIONS(5000), - [anon_sym_err_PLUSout_GT] = ACTIONS(5000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5000), - [anon_sym_o_PLUSe_GT] = ACTIONS(5000), - [anon_sym_e_PLUSo_GT] = ACTIONS(5000), - [anon_sym_err_GT_GT] = ACTIONS(4998), - [anon_sym_out_GT_GT] = ACTIONS(4998), - [anon_sym_e_GT_GT] = ACTIONS(4998), - [anon_sym_o_GT_GT] = ACTIONS(4998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4998), - [anon_sym_POUND] = ACTIONS(245), - }, - [1677] = { - [sym__expr_parenthesized_immediate] = STATE(7447), - [sym_comment] = STATE(1677), - [sym__newline] = ACTIONS(4998), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(4998), - [anon_sym_err_GT_PIPE] = ACTIONS(4998), - [anon_sym_out_GT_PIPE] = ACTIONS(4998), - [anon_sym_e_GT_PIPE] = ACTIONS(4998), - [anon_sym_o_GT_PIPE] = ACTIONS(4998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_GT2] = ACTIONS(5000), - [anon_sym_DASH2] = ACTIONS(4998), - [anon_sym_in2] = ACTIONS(4998), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_EQ_GT] = ACTIONS(4998), - [anon_sym_STAR2] = ACTIONS(5000), - [anon_sym_and2] = ACTIONS(4998), - [anon_sym_xor2] = ACTIONS(4998), - [anon_sym_or2] = ACTIONS(4998), - [anon_sym_not_DASHin2] = ACTIONS(4998), - [anon_sym_has2] = ACTIONS(4998), - [anon_sym_not_DASHhas2] = ACTIONS(4998), - [anon_sym_starts_DASHwith2] = ACTIONS(4998), - [anon_sym_ends_DASHwith2] = ACTIONS(4998), - [anon_sym_EQ_EQ2] = ACTIONS(4998), - [anon_sym_BANG_EQ2] = ACTIONS(4998), - [anon_sym_LT2] = ACTIONS(5000), - [anon_sym_LT_EQ2] = ACTIONS(4998), - [anon_sym_GT_EQ2] = ACTIONS(4998), - [anon_sym_EQ_TILDE2] = ACTIONS(4998), - [anon_sym_BANG_TILDE2] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4462), - [anon_sym_STAR_STAR2] = ACTIONS(4998), - [anon_sym_PLUS_PLUS2] = ACTIONS(4998), - [anon_sym_SLASH2] = ACTIONS(5000), - [anon_sym_mod2] = ACTIONS(4998), - [anon_sym_SLASH_SLASH2] = ACTIONS(4998), - [anon_sym_PLUS2] = ACTIONS(5000), - [anon_sym_bit_DASHshl2] = ACTIONS(4998), - [anon_sym_bit_DASHshr2] = ACTIONS(4998), - [anon_sym_bit_DASHand2] = ACTIONS(4998), - [anon_sym_bit_DASHxor2] = ACTIONS(4998), - [anon_sym_bit_DASHor2] = ACTIONS(4998), - [anon_sym_err_GT] = ACTIONS(5000), - [anon_sym_out_GT] = ACTIONS(5000), - [anon_sym_e_GT] = ACTIONS(5000), - [anon_sym_o_GT] = ACTIONS(5000), - [anon_sym_err_PLUSout_GT] = ACTIONS(5000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5000), - [anon_sym_o_PLUSe_GT] = ACTIONS(5000), - [anon_sym_e_PLUSo_GT] = ACTIONS(5000), - [anon_sym_err_GT_GT] = ACTIONS(4998), - [anon_sym_out_GT_GT] = ACTIONS(4998), - [anon_sym_e_GT_GT] = ACTIONS(4998), - [anon_sym_o_GT_GT] = ACTIONS(4998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4998), - [anon_sym_POUND] = ACTIONS(245), - }, - [1678] = { - [sym__expr_parenthesized_immediate] = STATE(7447), - [sym_comment] = STATE(1678), - [sym__newline] = ACTIONS(4998), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(4998), - [anon_sym_err_GT_PIPE] = ACTIONS(4998), - [anon_sym_out_GT_PIPE] = ACTIONS(4998), - [anon_sym_e_GT_PIPE] = ACTIONS(4998), - [anon_sym_o_GT_PIPE] = ACTIONS(4998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_GT2] = ACTIONS(5000), - [anon_sym_DASH2] = ACTIONS(4998), - [anon_sym_in2] = ACTIONS(4998), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_EQ_GT] = ACTIONS(4998), - [anon_sym_STAR2] = ACTIONS(5000), - [anon_sym_and2] = ACTIONS(4998), - [anon_sym_xor2] = ACTIONS(4998), - [anon_sym_or2] = ACTIONS(4998), - [anon_sym_not_DASHin2] = ACTIONS(4998), - [anon_sym_has2] = ACTIONS(4998), - [anon_sym_not_DASHhas2] = ACTIONS(4998), - [anon_sym_starts_DASHwith2] = ACTIONS(4998), - [anon_sym_ends_DASHwith2] = ACTIONS(4998), - [anon_sym_EQ_EQ2] = ACTIONS(4998), - [anon_sym_BANG_EQ2] = ACTIONS(4998), - [anon_sym_LT2] = ACTIONS(5000), - [anon_sym_LT_EQ2] = ACTIONS(4998), - [anon_sym_GT_EQ2] = ACTIONS(4998), - [anon_sym_EQ_TILDE2] = ACTIONS(4998), - [anon_sym_BANG_TILDE2] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4462), - [anon_sym_STAR_STAR2] = ACTIONS(4998), - [anon_sym_PLUS_PLUS2] = ACTIONS(4998), - [anon_sym_SLASH2] = ACTIONS(5000), - [anon_sym_mod2] = ACTIONS(4998), - [anon_sym_SLASH_SLASH2] = ACTIONS(4998), - [anon_sym_PLUS2] = ACTIONS(5000), - [anon_sym_bit_DASHshl2] = ACTIONS(4998), - [anon_sym_bit_DASHshr2] = ACTIONS(4998), - [anon_sym_bit_DASHand2] = ACTIONS(4998), - [anon_sym_bit_DASHxor2] = ACTIONS(4998), - [anon_sym_bit_DASHor2] = ACTIONS(4998), - [anon_sym_err_GT] = ACTIONS(5000), - [anon_sym_out_GT] = ACTIONS(5000), - [anon_sym_e_GT] = ACTIONS(5000), - [anon_sym_o_GT] = ACTIONS(5000), - [anon_sym_err_PLUSout_GT] = ACTIONS(5000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5000), - [anon_sym_o_PLUSe_GT] = ACTIONS(5000), - [anon_sym_e_PLUSo_GT] = ACTIONS(5000), - [anon_sym_err_GT_GT] = ACTIONS(4998), - [anon_sym_out_GT_GT] = ACTIONS(4998), - [anon_sym_e_GT_GT] = ACTIONS(4998), - [anon_sym_o_GT_GT] = ACTIONS(4998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4998), - [anon_sym_POUND] = ACTIONS(245), - }, - [1679] = { - [sym__expr_parenthesized_immediate] = STATE(7447), - [sym_comment] = STATE(1679), - [sym__newline] = ACTIONS(4998), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(4998), - [anon_sym_err_GT_PIPE] = ACTIONS(4998), - [anon_sym_out_GT_PIPE] = ACTIONS(4998), - [anon_sym_e_GT_PIPE] = ACTIONS(4998), - [anon_sym_o_GT_PIPE] = ACTIONS(4998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_GT2] = ACTIONS(5000), - [anon_sym_DASH2] = ACTIONS(4998), - [anon_sym_in2] = ACTIONS(4998), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_EQ_GT] = ACTIONS(4998), - [anon_sym_STAR2] = ACTIONS(5000), - [anon_sym_and2] = ACTIONS(4998), - [anon_sym_xor2] = ACTIONS(4998), - [anon_sym_or2] = ACTIONS(4998), - [anon_sym_not_DASHin2] = ACTIONS(4998), - [anon_sym_has2] = ACTIONS(4998), - [anon_sym_not_DASHhas2] = ACTIONS(4998), - [anon_sym_starts_DASHwith2] = ACTIONS(4998), - [anon_sym_ends_DASHwith2] = ACTIONS(4998), - [anon_sym_EQ_EQ2] = ACTIONS(4998), - [anon_sym_BANG_EQ2] = ACTIONS(4998), - [anon_sym_LT2] = ACTIONS(5000), - [anon_sym_LT_EQ2] = ACTIONS(4998), - [anon_sym_GT_EQ2] = ACTIONS(4998), - [anon_sym_EQ_TILDE2] = ACTIONS(4998), - [anon_sym_BANG_TILDE2] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4462), - [anon_sym_STAR_STAR2] = ACTIONS(4998), - [anon_sym_PLUS_PLUS2] = ACTIONS(4998), - [anon_sym_SLASH2] = ACTIONS(5000), - [anon_sym_mod2] = ACTIONS(4998), - [anon_sym_SLASH_SLASH2] = ACTIONS(4998), - [anon_sym_PLUS2] = ACTIONS(5000), - [anon_sym_bit_DASHshl2] = ACTIONS(4998), - [anon_sym_bit_DASHshr2] = ACTIONS(4998), - [anon_sym_bit_DASHand2] = ACTIONS(4998), - [anon_sym_bit_DASHxor2] = ACTIONS(4998), - [anon_sym_bit_DASHor2] = ACTIONS(4998), - [anon_sym_err_GT] = ACTIONS(5000), - [anon_sym_out_GT] = ACTIONS(5000), - [anon_sym_e_GT] = ACTIONS(5000), - [anon_sym_o_GT] = ACTIONS(5000), - [anon_sym_err_PLUSout_GT] = ACTIONS(5000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5000), - [anon_sym_o_PLUSe_GT] = ACTIONS(5000), - [anon_sym_e_PLUSo_GT] = ACTIONS(5000), - [anon_sym_err_GT_GT] = ACTIONS(4998), - [anon_sym_out_GT_GT] = ACTIONS(4998), - [anon_sym_e_GT_GT] = ACTIONS(4998), - [anon_sym_o_GT_GT] = ACTIONS(4998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4998), - [anon_sym_POUND] = ACTIONS(245), - }, - [1680] = { - [sym__expr_parenthesized_immediate] = STATE(7447), - [sym_comment] = STATE(1680), - [sym__newline] = ACTIONS(4998), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(4998), - [anon_sym_err_GT_PIPE] = ACTIONS(4998), - [anon_sym_out_GT_PIPE] = ACTIONS(4998), - [anon_sym_e_GT_PIPE] = ACTIONS(4998), - [anon_sym_o_GT_PIPE] = ACTIONS(4998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_GT2] = ACTIONS(5000), - [anon_sym_DASH2] = ACTIONS(4998), - [anon_sym_in2] = ACTIONS(4998), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_EQ_GT] = ACTIONS(4998), - [anon_sym_STAR2] = ACTIONS(5000), - [anon_sym_and2] = ACTIONS(4998), - [anon_sym_xor2] = ACTIONS(4998), - [anon_sym_or2] = ACTIONS(4998), - [anon_sym_not_DASHin2] = ACTIONS(4998), - [anon_sym_has2] = ACTIONS(4998), - [anon_sym_not_DASHhas2] = ACTIONS(4998), - [anon_sym_starts_DASHwith2] = ACTIONS(4998), - [anon_sym_ends_DASHwith2] = ACTIONS(4998), - [anon_sym_EQ_EQ2] = ACTIONS(4998), - [anon_sym_BANG_EQ2] = ACTIONS(4998), - [anon_sym_LT2] = ACTIONS(5000), - [anon_sym_LT_EQ2] = ACTIONS(4998), - [anon_sym_GT_EQ2] = ACTIONS(4998), - [anon_sym_EQ_TILDE2] = ACTIONS(4998), - [anon_sym_BANG_TILDE2] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4462), - [anon_sym_STAR_STAR2] = ACTIONS(4998), - [anon_sym_PLUS_PLUS2] = ACTIONS(4998), - [anon_sym_SLASH2] = ACTIONS(5000), - [anon_sym_mod2] = ACTIONS(4998), - [anon_sym_SLASH_SLASH2] = ACTIONS(4998), - [anon_sym_PLUS2] = ACTIONS(5000), - [anon_sym_bit_DASHshl2] = ACTIONS(4998), - [anon_sym_bit_DASHshr2] = ACTIONS(4998), - [anon_sym_bit_DASHand2] = ACTIONS(4998), - [anon_sym_bit_DASHxor2] = ACTIONS(4998), - [anon_sym_bit_DASHor2] = ACTIONS(4998), - [anon_sym_err_GT] = ACTIONS(5000), - [anon_sym_out_GT] = ACTIONS(5000), - [anon_sym_e_GT] = ACTIONS(5000), - [anon_sym_o_GT] = ACTIONS(5000), - [anon_sym_err_PLUSout_GT] = ACTIONS(5000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5000), - [anon_sym_o_PLUSe_GT] = ACTIONS(5000), - [anon_sym_e_PLUSo_GT] = ACTIONS(5000), - [anon_sym_err_GT_GT] = ACTIONS(4998), - [anon_sym_out_GT_GT] = ACTIONS(4998), - [anon_sym_e_GT_GT] = ACTIONS(4998), - [anon_sym_o_GT_GT] = ACTIONS(4998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4998), - [anon_sym_POUND] = ACTIONS(245), - }, - [1681] = { - [sym__expr_parenthesized_immediate] = STATE(7447), - [sym_comment] = STATE(1681), - [sym__newline] = ACTIONS(4998), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(4998), - [anon_sym_err_GT_PIPE] = ACTIONS(4998), - [anon_sym_out_GT_PIPE] = ACTIONS(4998), - [anon_sym_e_GT_PIPE] = ACTIONS(4998), - [anon_sym_o_GT_PIPE] = ACTIONS(4998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_GT2] = ACTIONS(5000), - [anon_sym_DASH2] = ACTIONS(4998), - [anon_sym_in2] = ACTIONS(4998), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_EQ_GT] = ACTIONS(4998), - [anon_sym_STAR2] = ACTIONS(5000), - [anon_sym_and2] = ACTIONS(4998), - [anon_sym_xor2] = ACTIONS(4998), - [anon_sym_or2] = ACTIONS(4998), - [anon_sym_not_DASHin2] = ACTIONS(4998), - [anon_sym_has2] = ACTIONS(4998), - [anon_sym_not_DASHhas2] = ACTIONS(4998), - [anon_sym_starts_DASHwith2] = ACTIONS(4998), - [anon_sym_ends_DASHwith2] = ACTIONS(4998), - [anon_sym_EQ_EQ2] = ACTIONS(4998), - [anon_sym_BANG_EQ2] = ACTIONS(4998), - [anon_sym_LT2] = ACTIONS(5000), - [anon_sym_LT_EQ2] = ACTIONS(4998), - [anon_sym_GT_EQ2] = ACTIONS(4998), - [anon_sym_EQ_TILDE2] = ACTIONS(4998), - [anon_sym_BANG_TILDE2] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4462), - [anon_sym_STAR_STAR2] = ACTIONS(4998), - [anon_sym_PLUS_PLUS2] = ACTIONS(4998), - [anon_sym_SLASH2] = ACTIONS(5000), - [anon_sym_mod2] = ACTIONS(4998), - [anon_sym_SLASH_SLASH2] = ACTIONS(4998), - [anon_sym_PLUS2] = ACTIONS(5000), - [anon_sym_bit_DASHshl2] = ACTIONS(4998), - [anon_sym_bit_DASHshr2] = ACTIONS(4998), - [anon_sym_bit_DASHand2] = ACTIONS(4998), - [anon_sym_bit_DASHxor2] = ACTIONS(4998), - [anon_sym_bit_DASHor2] = ACTIONS(4998), - [anon_sym_err_GT] = ACTIONS(5000), - [anon_sym_out_GT] = ACTIONS(5000), - [anon_sym_e_GT] = ACTIONS(5000), - [anon_sym_o_GT] = ACTIONS(5000), - [anon_sym_err_PLUSout_GT] = ACTIONS(5000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5000), - [anon_sym_o_PLUSe_GT] = ACTIONS(5000), - [anon_sym_e_PLUSo_GT] = ACTIONS(5000), - [anon_sym_err_GT_GT] = ACTIONS(4998), - [anon_sym_out_GT_GT] = ACTIONS(4998), - [anon_sym_e_GT_GT] = ACTIONS(4998), - [anon_sym_o_GT_GT] = ACTIONS(4998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4998), - [anon_sym_POUND] = ACTIONS(245), - }, - [1682] = { - [sym__expr_parenthesized_immediate] = STATE(7447), - [sym_comment] = STATE(1682), - [sym__newline] = ACTIONS(4998), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(4998), - [anon_sym_err_GT_PIPE] = ACTIONS(4998), - [anon_sym_out_GT_PIPE] = ACTIONS(4998), - [anon_sym_e_GT_PIPE] = ACTIONS(4998), - [anon_sym_o_GT_PIPE] = ACTIONS(4998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_GT2] = ACTIONS(5000), - [anon_sym_DASH2] = ACTIONS(4998), - [anon_sym_in2] = ACTIONS(4998), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_EQ_GT] = ACTIONS(4998), - [anon_sym_STAR2] = ACTIONS(5000), - [anon_sym_and2] = ACTIONS(4998), - [anon_sym_xor2] = ACTIONS(4998), - [anon_sym_or2] = ACTIONS(4998), - [anon_sym_not_DASHin2] = ACTIONS(4998), - [anon_sym_has2] = ACTIONS(4998), - [anon_sym_not_DASHhas2] = ACTIONS(4998), - [anon_sym_starts_DASHwith2] = ACTIONS(4998), - [anon_sym_ends_DASHwith2] = ACTIONS(4998), - [anon_sym_EQ_EQ2] = ACTIONS(4998), - [anon_sym_BANG_EQ2] = ACTIONS(4998), - [anon_sym_LT2] = ACTIONS(5000), - [anon_sym_LT_EQ2] = ACTIONS(4998), - [anon_sym_GT_EQ2] = ACTIONS(4998), - [anon_sym_EQ_TILDE2] = ACTIONS(4998), - [anon_sym_BANG_TILDE2] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4462), - [anon_sym_STAR_STAR2] = ACTIONS(4998), - [anon_sym_PLUS_PLUS2] = ACTIONS(4998), - [anon_sym_SLASH2] = ACTIONS(5000), - [anon_sym_mod2] = ACTIONS(4998), - [anon_sym_SLASH_SLASH2] = ACTIONS(4998), - [anon_sym_PLUS2] = ACTIONS(5000), - [anon_sym_bit_DASHshl2] = ACTIONS(4998), - [anon_sym_bit_DASHshr2] = ACTIONS(4998), - [anon_sym_bit_DASHand2] = ACTIONS(4998), - [anon_sym_bit_DASHxor2] = ACTIONS(4998), - [anon_sym_bit_DASHor2] = ACTIONS(4998), - [anon_sym_err_GT] = ACTIONS(5000), - [anon_sym_out_GT] = ACTIONS(5000), - [anon_sym_e_GT] = ACTIONS(5000), - [anon_sym_o_GT] = ACTIONS(5000), - [anon_sym_err_PLUSout_GT] = ACTIONS(5000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5000), - [anon_sym_o_PLUSe_GT] = ACTIONS(5000), - [anon_sym_e_PLUSo_GT] = ACTIONS(5000), - [anon_sym_err_GT_GT] = ACTIONS(4998), - [anon_sym_out_GT_GT] = ACTIONS(4998), - [anon_sym_e_GT_GT] = ACTIONS(4998), - [anon_sym_o_GT_GT] = ACTIONS(4998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4998), - [anon_sym_POUND] = ACTIONS(245), - }, - [1683] = { - [sym__expr_parenthesized_immediate] = STATE(7447), - [sym_comment] = STATE(1683), - [sym__newline] = ACTIONS(4998), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(4998), - [anon_sym_err_GT_PIPE] = ACTIONS(4998), - [anon_sym_out_GT_PIPE] = ACTIONS(4998), - [anon_sym_e_GT_PIPE] = ACTIONS(4998), - [anon_sym_o_GT_PIPE] = ACTIONS(4998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_GT2] = ACTIONS(5000), - [anon_sym_DASH2] = ACTIONS(4998), - [anon_sym_in2] = ACTIONS(4998), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_EQ_GT] = ACTIONS(4998), - [anon_sym_STAR2] = ACTIONS(5000), - [anon_sym_and2] = ACTIONS(4998), - [anon_sym_xor2] = ACTIONS(4998), - [anon_sym_or2] = ACTIONS(4998), - [anon_sym_not_DASHin2] = ACTIONS(4998), - [anon_sym_has2] = ACTIONS(4998), - [anon_sym_not_DASHhas2] = ACTIONS(4998), - [anon_sym_starts_DASHwith2] = ACTIONS(4998), - [anon_sym_ends_DASHwith2] = ACTIONS(4998), - [anon_sym_EQ_EQ2] = ACTIONS(4998), - [anon_sym_BANG_EQ2] = ACTIONS(4998), - [anon_sym_LT2] = ACTIONS(5000), - [anon_sym_LT_EQ2] = ACTIONS(4998), - [anon_sym_GT_EQ2] = ACTIONS(4998), - [anon_sym_EQ_TILDE2] = ACTIONS(4998), - [anon_sym_BANG_TILDE2] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4462), - [anon_sym_STAR_STAR2] = ACTIONS(4998), - [anon_sym_PLUS_PLUS2] = ACTIONS(4998), - [anon_sym_SLASH2] = ACTIONS(5000), - [anon_sym_mod2] = ACTIONS(4998), - [anon_sym_SLASH_SLASH2] = ACTIONS(4998), - [anon_sym_PLUS2] = ACTIONS(5000), - [anon_sym_bit_DASHshl2] = ACTIONS(4998), - [anon_sym_bit_DASHshr2] = ACTIONS(4998), - [anon_sym_bit_DASHand2] = ACTIONS(4998), - [anon_sym_bit_DASHxor2] = ACTIONS(4998), - [anon_sym_bit_DASHor2] = ACTIONS(4998), - [anon_sym_err_GT] = ACTIONS(5000), - [anon_sym_out_GT] = ACTIONS(5000), - [anon_sym_e_GT] = ACTIONS(5000), - [anon_sym_o_GT] = ACTIONS(5000), - [anon_sym_err_PLUSout_GT] = ACTIONS(5000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5000), - [anon_sym_o_PLUSe_GT] = ACTIONS(5000), - [anon_sym_e_PLUSo_GT] = ACTIONS(5000), - [anon_sym_err_GT_GT] = ACTIONS(4998), - [anon_sym_out_GT_GT] = ACTIONS(4998), - [anon_sym_e_GT_GT] = ACTIONS(4998), - [anon_sym_o_GT_GT] = ACTIONS(4998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4998), - [anon_sym_POUND] = ACTIONS(245), - }, - [1684] = { - [sym__expr_parenthesized_immediate] = STATE(7447), - [sym_comment] = STATE(1684), - [sym__newline] = ACTIONS(4998), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(4998), - [anon_sym_err_GT_PIPE] = ACTIONS(4998), - [anon_sym_out_GT_PIPE] = ACTIONS(4998), - [anon_sym_e_GT_PIPE] = ACTIONS(4998), - [anon_sym_o_GT_PIPE] = ACTIONS(4998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_GT2] = ACTIONS(5000), - [anon_sym_DASH2] = ACTIONS(4998), - [anon_sym_in2] = ACTIONS(4998), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_EQ_GT] = ACTIONS(4998), - [anon_sym_STAR2] = ACTIONS(5000), - [anon_sym_and2] = ACTIONS(4998), - [anon_sym_xor2] = ACTIONS(4998), - [anon_sym_or2] = ACTIONS(4998), - [anon_sym_not_DASHin2] = ACTIONS(4998), - [anon_sym_has2] = ACTIONS(4998), - [anon_sym_not_DASHhas2] = ACTIONS(4998), - [anon_sym_starts_DASHwith2] = ACTIONS(4998), - [anon_sym_ends_DASHwith2] = ACTIONS(4998), - [anon_sym_EQ_EQ2] = ACTIONS(4998), - [anon_sym_BANG_EQ2] = ACTIONS(4998), - [anon_sym_LT2] = ACTIONS(5000), - [anon_sym_LT_EQ2] = ACTIONS(4998), - [anon_sym_GT_EQ2] = ACTIONS(4998), - [anon_sym_EQ_TILDE2] = ACTIONS(4998), - [anon_sym_BANG_TILDE2] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4462), - [anon_sym_STAR_STAR2] = ACTIONS(4998), - [anon_sym_PLUS_PLUS2] = ACTIONS(4998), - [anon_sym_SLASH2] = ACTIONS(5000), - [anon_sym_mod2] = ACTIONS(4998), - [anon_sym_SLASH_SLASH2] = ACTIONS(4998), - [anon_sym_PLUS2] = ACTIONS(5000), - [anon_sym_bit_DASHshl2] = ACTIONS(4998), - [anon_sym_bit_DASHshr2] = ACTIONS(4998), - [anon_sym_bit_DASHand2] = ACTIONS(4998), - [anon_sym_bit_DASHxor2] = ACTIONS(4998), - [anon_sym_bit_DASHor2] = ACTIONS(4998), - [anon_sym_err_GT] = ACTIONS(5000), - [anon_sym_out_GT] = ACTIONS(5000), - [anon_sym_e_GT] = ACTIONS(5000), - [anon_sym_o_GT] = ACTIONS(5000), - [anon_sym_err_PLUSout_GT] = ACTIONS(5000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5000), - [anon_sym_o_PLUSe_GT] = ACTIONS(5000), - [anon_sym_e_PLUSo_GT] = ACTIONS(5000), - [anon_sym_err_GT_GT] = ACTIONS(4998), - [anon_sym_out_GT_GT] = ACTIONS(4998), - [anon_sym_e_GT_GT] = ACTIONS(4998), - [anon_sym_o_GT_GT] = ACTIONS(4998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4998), - [anon_sym_POUND] = ACTIONS(245), - }, - [1685] = { - [sym__expr_parenthesized_immediate] = STATE(7447), - [sym_comment] = STATE(1685), - [sym__newline] = ACTIONS(4998), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(4998), - [anon_sym_err_GT_PIPE] = ACTIONS(4998), - [anon_sym_out_GT_PIPE] = ACTIONS(4998), - [anon_sym_e_GT_PIPE] = ACTIONS(4998), - [anon_sym_o_GT_PIPE] = ACTIONS(4998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_GT2] = ACTIONS(5000), - [anon_sym_DASH2] = ACTIONS(4998), - [anon_sym_in2] = ACTIONS(4998), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_EQ_GT] = ACTIONS(4998), - [anon_sym_STAR2] = ACTIONS(5000), - [anon_sym_and2] = ACTIONS(4998), - [anon_sym_xor2] = ACTIONS(4998), - [anon_sym_or2] = ACTIONS(4998), - [anon_sym_not_DASHin2] = ACTIONS(4998), - [anon_sym_has2] = ACTIONS(4998), - [anon_sym_not_DASHhas2] = ACTIONS(4998), - [anon_sym_starts_DASHwith2] = ACTIONS(4998), - [anon_sym_ends_DASHwith2] = ACTIONS(4998), - [anon_sym_EQ_EQ2] = ACTIONS(4998), - [anon_sym_BANG_EQ2] = ACTIONS(4998), - [anon_sym_LT2] = ACTIONS(5000), - [anon_sym_LT_EQ2] = ACTIONS(4998), - [anon_sym_GT_EQ2] = ACTIONS(4998), - [anon_sym_EQ_TILDE2] = ACTIONS(4998), - [anon_sym_BANG_TILDE2] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4462), - [anon_sym_STAR_STAR2] = ACTIONS(4998), - [anon_sym_PLUS_PLUS2] = ACTIONS(4998), - [anon_sym_SLASH2] = ACTIONS(5000), - [anon_sym_mod2] = ACTIONS(4998), - [anon_sym_SLASH_SLASH2] = ACTIONS(4998), - [anon_sym_PLUS2] = ACTIONS(5000), - [anon_sym_bit_DASHshl2] = ACTIONS(4998), - [anon_sym_bit_DASHshr2] = ACTIONS(4998), - [anon_sym_bit_DASHand2] = ACTIONS(4998), - [anon_sym_bit_DASHxor2] = ACTIONS(4998), - [anon_sym_bit_DASHor2] = ACTIONS(4998), - [anon_sym_err_GT] = ACTIONS(5000), - [anon_sym_out_GT] = ACTIONS(5000), - [anon_sym_e_GT] = ACTIONS(5000), - [anon_sym_o_GT] = ACTIONS(5000), - [anon_sym_err_PLUSout_GT] = ACTIONS(5000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5000), - [anon_sym_o_PLUSe_GT] = ACTIONS(5000), - [anon_sym_e_PLUSo_GT] = ACTIONS(5000), - [anon_sym_err_GT_GT] = ACTIONS(4998), - [anon_sym_out_GT_GT] = ACTIONS(4998), - [anon_sym_e_GT_GT] = ACTIONS(4998), - [anon_sym_o_GT_GT] = ACTIONS(4998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4998), - [anon_sym_POUND] = ACTIONS(245), - }, - [1686] = { - [sym__expr_parenthesized_immediate] = STATE(7447), - [sym_comment] = STATE(1686), - [sym__newline] = ACTIONS(4998), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(4998), - [anon_sym_err_GT_PIPE] = ACTIONS(4998), - [anon_sym_out_GT_PIPE] = ACTIONS(4998), - [anon_sym_e_GT_PIPE] = ACTIONS(4998), - [anon_sym_o_GT_PIPE] = ACTIONS(4998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_GT2] = ACTIONS(5000), - [anon_sym_DASH2] = ACTIONS(4998), - [anon_sym_in2] = ACTIONS(4998), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_EQ_GT] = ACTIONS(4998), - [anon_sym_STAR2] = ACTIONS(5000), - [anon_sym_and2] = ACTIONS(4998), - [anon_sym_xor2] = ACTIONS(4998), - [anon_sym_or2] = ACTIONS(4998), - [anon_sym_not_DASHin2] = ACTIONS(4998), - [anon_sym_has2] = ACTIONS(4998), - [anon_sym_not_DASHhas2] = ACTIONS(4998), - [anon_sym_starts_DASHwith2] = ACTIONS(4998), - [anon_sym_ends_DASHwith2] = ACTIONS(4998), - [anon_sym_EQ_EQ2] = ACTIONS(4998), - [anon_sym_BANG_EQ2] = ACTIONS(4998), - [anon_sym_LT2] = ACTIONS(5000), - [anon_sym_LT_EQ2] = ACTIONS(4998), - [anon_sym_GT_EQ2] = ACTIONS(4998), - [anon_sym_EQ_TILDE2] = ACTIONS(4998), - [anon_sym_BANG_TILDE2] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4462), - [anon_sym_STAR_STAR2] = ACTIONS(4998), - [anon_sym_PLUS_PLUS2] = ACTIONS(4998), - [anon_sym_SLASH2] = ACTIONS(5000), - [anon_sym_mod2] = ACTIONS(4998), - [anon_sym_SLASH_SLASH2] = ACTIONS(4998), - [anon_sym_PLUS2] = ACTIONS(5000), - [anon_sym_bit_DASHshl2] = ACTIONS(4998), - [anon_sym_bit_DASHshr2] = ACTIONS(4998), - [anon_sym_bit_DASHand2] = ACTIONS(4998), - [anon_sym_bit_DASHxor2] = ACTIONS(4998), - [anon_sym_bit_DASHor2] = ACTIONS(4998), - [anon_sym_err_GT] = ACTIONS(5000), - [anon_sym_out_GT] = ACTIONS(5000), - [anon_sym_e_GT] = ACTIONS(5000), - [anon_sym_o_GT] = ACTIONS(5000), - [anon_sym_err_PLUSout_GT] = ACTIONS(5000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5000), - [anon_sym_o_PLUSe_GT] = ACTIONS(5000), - [anon_sym_e_PLUSo_GT] = ACTIONS(5000), - [anon_sym_err_GT_GT] = ACTIONS(4998), - [anon_sym_out_GT_GT] = ACTIONS(4998), - [anon_sym_e_GT_GT] = ACTIONS(4998), - [anon_sym_o_GT_GT] = ACTIONS(4998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4998), - [anon_sym_POUND] = ACTIONS(245), - }, - [1687] = { - [sym__expr_parenthesized_immediate] = STATE(7447), - [sym_comment] = STATE(1687), - [sym__newline] = ACTIONS(4998), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(4998), - [anon_sym_err_GT_PIPE] = ACTIONS(4998), - [anon_sym_out_GT_PIPE] = ACTIONS(4998), - [anon_sym_e_GT_PIPE] = ACTIONS(4998), - [anon_sym_o_GT_PIPE] = ACTIONS(4998), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4998), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4998), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4998), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_GT2] = ACTIONS(5000), - [anon_sym_DASH2] = ACTIONS(4998), - [anon_sym_in2] = ACTIONS(4998), - [anon_sym_LBRACE] = ACTIONS(4998), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_EQ_GT] = ACTIONS(4998), - [anon_sym_STAR2] = ACTIONS(5000), - [anon_sym_and2] = ACTIONS(4998), - [anon_sym_xor2] = ACTIONS(4998), - [anon_sym_or2] = ACTIONS(4998), - [anon_sym_not_DASHin2] = ACTIONS(4998), - [anon_sym_has2] = ACTIONS(4998), - [anon_sym_not_DASHhas2] = ACTIONS(4998), - [anon_sym_starts_DASHwith2] = ACTIONS(4998), - [anon_sym_ends_DASHwith2] = ACTIONS(4998), - [anon_sym_EQ_EQ2] = ACTIONS(4998), - [anon_sym_BANG_EQ2] = ACTIONS(4998), - [anon_sym_LT2] = ACTIONS(5000), - [anon_sym_LT_EQ2] = ACTIONS(4998), - [anon_sym_GT_EQ2] = ACTIONS(4998), - [anon_sym_EQ_TILDE2] = ACTIONS(4998), - [anon_sym_BANG_TILDE2] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4462), - [anon_sym_STAR_STAR2] = ACTIONS(4998), - [anon_sym_PLUS_PLUS2] = ACTIONS(4998), - [anon_sym_SLASH2] = ACTIONS(5000), - [anon_sym_mod2] = ACTIONS(4998), - [anon_sym_SLASH_SLASH2] = ACTIONS(4998), - [anon_sym_PLUS2] = ACTIONS(5000), - [anon_sym_bit_DASHshl2] = ACTIONS(4998), - [anon_sym_bit_DASHshr2] = ACTIONS(4998), - [anon_sym_bit_DASHand2] = ACTIONS(4998), - [anon_sym_bit_DASHxor2] = ACTIONS(4998), - [anon_sym_bit_DASHor2] = ACTIONS(4998), - [anon_sym_err_GT] = ACTIONS(5000), - [anon_sym_out_GT] = ACTIONS(5000), - [anon_sym_e_GT] = ACTIONS(5000), - [anon_sym_o_GT] = ACTIONS(5000), - [anon_sym_err_PLUSout_GT] = ACTIONS(5000), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5000), - [anon_sym_o_PLUSe_GT] = ACTIONS(5000), - [anon_sym_e_PLUSo_GT] = ACTIONS(5000), - [anon_sym_err_GT_GT] = ACTIONS(4998), - [anon_sym_out_GT_GT] = ACTIONS(4998), - [anon_sym_e_GT_GT] = ACTIONS(4998), - [anon_sym_o_GT_GT] = ACTIONS(4998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4998), - [anon_sym_POUND] = ACTIONS(245), - }, - [1688] = { - [sym_comment] = STATE(1688), - [sym__newline] = ACTIONS(1786), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1786), - [anon_sym_err_GT_PIPE] = ACTIONS(1786), - [anon_sym_out_GT_PIPE] = ACTIONS(1786), - [anon_sym_e_GT_PIPE] = ACTIONS(1786), - [anon_sym_o_GT_PIPE] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_GT2] = ACTIONS(1778), - [anon_sym_DASH2] = ACTIONS(1786), - [anon_sym_in2] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_STAR2] = ACTIONS(1778), - [anon_sym_and2] = ACTIONS(1786), - [anon_sym_xor2] = ACTIONS(1786), - [anon_sym_or2] = ACTIONS(1786), - [anon_sym_not_DASHin2] = ACTIONS(1786), - [anon_sym_has2] = ACTIONS(1786), - [anon_sym_not_DASHhas2] = ACTIONS(1786), - [anon_sym_starts_DASHwith2] = ACTIONS(1786), - [anon_sym_ends_DASHwith2] = ACTIONS(1786), - [anon_sym_EQ_EQ2] = ACTIONS(1786), - [anon_sym_BANG_EQ2] = ACTIONS(1786), - [anon_sym_LT2] = ACTIONS(1778), - [anon_sym_LT_EQ2] = ACTIONS(1786), - [anon_sym_GT_EQ2] = ACTIONS(1786), - [anon_sym_EQ_TILDE2] = ACTIONS(1786), - [anon_sym_BANG_TILDE2] = ACTIONS(1786), - [anon_sym_STAR_STAR2] = ACTIONS(1786), - [anon_sym_PLUS_PLUS2] = ACTIONS(1786), - [anon_sym_SLASH2] = ACTIONS(1778), - [anon_sym_mod2] = ACTIONS(1786), - [anon_sym_SLASH_SLASH2] = ACTIONS(1786), - [anon_sym_PLUS2] = ACTIONS(1778), - [anon_sym_bit_DASHshl2] = ACTIONS(1786), - [anon_sym_bit_DASHshr2] = ACTIONS(1786), - [anon_sym_bit_DASHand2] = ACTIONS(1786), - [anon_sym_bit_DASHxor2] = ACTIONS(1786), - [anon_sym_bit_DASHor2] = ACTIONS(1786), - [anon_sym_DOT_DOT2] = ACTIONS(5002), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(5004), - [anon_sym_DOT_DOT_LT2] = ACTIONS(5004), - [anon_sym_err_GT] = ACTIONS(1778), - [anon_sym_out_GT] = ACTIONS(1778), - [anon_sym_e_GT] = ACTIONS(1778), - [anon_sym_o_GT] = ACTIONS(1778), - [anon_sym_err_PLUSout_GT] = ACTIONS(1778), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1778), - [anon_sym_o_PLUSe_GT] = ACTIONS(1778), - [anon_sym_e_PLUSo_GT] = ACTIONS(1778), - [anon_sym_err_GT_GT] = ACTIONS(1786), - [anon_sym_out_GT_GT] = ACTIONS(1786), - [anon_sym_e_GT_GT] = ACTIONS(1786), - [anon_sym_o_GT_GT] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1786), - [anon_sym_POUND] = ACTIONS(245), - }, - [1689] = { - [sym__expr_parenthesized_immediate] = STATE(7809), - [sym_comment] = STATE(1689), - [ts_builtin_sym_end] = ACTIONS(4928), - [sym__newline] = ACTIONS(4928), - [anon_sym_SEMI] = ACTIONS(4928), - [anon_sym_PIPE] = ACTIONS(4928), - [anon_sym_err_GT_PIPE] = ACTIONS(4928), - [anon_sym_out_GT_PIPE] = ACTIONS(4928), - [anon_sym_e_GT_PIPE] = ACTIONS(4928), - [anon_sym_o_GT_PIPE] = ACTIONS(4928), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4928), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4928), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4928), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4928), - [anon_sym_LBRACK] = ACTIONS(4928), - [anon_sym_LPAREN] = ACTIONS(4930), - [anon_sym_DOLLAR] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4928), - [anon_sym_DASH2] = ACTIONS(4930), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_DOT_DOT] = ACTIONS(4930), - [anon_sym_LPAREN2] = ACTIONS(4462), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4928), - [anon_sym_DOT_DOT_LT] = ACTIONS(4928), - [anon_sym_null] = ACTIONS(4928), - [anon_sym_true] = ACTIONS(4928), - [anon_sym_false] = ACTIONS(4928), - [aux_sym__val_number_decimal_token1] = ACTIONS(4930), - [aux_sym__val_number_decimal_token2] = ACTIONS(4928), - [aux_sym__val_number_decimal_token3] = ACTIONS(4928), - [aux_sym__val_number_decimal_token4] = ACTIONS(4928), - [aux_sym__val_number_token1] = ACTIONS(4928), - [aux_sym__val_number_token2] = ACTIONS(4928), - [aux_sym__val_number_token3] = ACTIONS(4928), - [aux_sym__val_number_token4] = ACTIONS(4928), - [aux_sym__val_number_token5] = ACTIONS(4928), - [aux_sym__val_number_token6] = ACTIONS(4928), - [anon_sym_0b] = ACTIONS(4930), - [anon_sym_0o] = ACTIONS(4930), - [anon_sym_0x] = ACTIONS(4930), - [sym_val_date] = ACTIONS(4928), - [anon_sym_DQUOTE] = ACTIONS(4928), - [sym__str_single_quotes] = ACTIONS(4928), - [sym__str_back_ticks] = ACTIONS(4928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4928), - [anon_sym_err_GT] = ACTIONS(4930), - [anon_sym_out_GT] = ACTIONS(4930), - [anon_sym_e_GT] = ACTIONS(4930), - [anon_sym_o_GT] = ACTIONS(4930), - [anon_sym_err_PLUSout_GT] = ACTIONS(4930), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4930), - [anon_sym_o_PLUSe_GT] = ACTIONS(4930), - [anon_sym_e_PLUSo_GT] = ACTIONS(4930), - [anon_sym_err_GT_GT] = ACTIONS(4928), - [anon_sym_out_GT_GT] = ACTIONS(4928), - [anon_sym_e_GT_GT] = ACTIONS(4928), - [anon_sym_o_GT_GT] = ACTIONS(4928), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4928), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4928), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4928), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4928), - [aux_sym_unquoted_token1] = ACTIONS(4930), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(4928), - }, - [1690] = { - [sym__expr_parenthesized_immediate] = STATE(7809), - [sym_comment] = STATE(1690), - [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(4462), - [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(245), - [sym_raw_string_begin] = ACTIONS(4932), - }, - [1691] = { - [sym_comment] = STATE(1691), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_DOT_DOT] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT] = ACTIONS(1668), - [aux_sym__immediate_decimal_token2] = ACTIONS(4895), - [anon_sym_null] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1668), - [aux_sym__val_number_token5] = ACTIONS(1668), - [aux_sym__val_number_token6] = ACTIONS(1668), - [anon_sym_0b] = ACTIONS(1666), - [anon_sym_0o] = ACTIONS(1666), - [anon_sym_0x] = ACTIONS(1666), - [sym_val_date] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_err_GT] = ACTIONS(1666), - [anon_sym_out_GT] = ACTIONS(1666), - [anon_sym_e_GT] = ACTIONS(1666), - [anon_sym_o_GT] = ACTIONS(1666), - [anon_sym_err_PLUSout_GT] = ACTIONS(1666), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), - [anon_sym_o_PLUSe_GT] = ACTIONS(1666), - [anon_sym_e_PLUSo_GT] = ACTIONS(1666), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [aux_sym_unquoted_token1] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), - }, - [1692] = { - [sym_comment] = STATE(1692), + [1590] = { + [sym_comment] = STATE(1590), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(4838), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [1591] = { + [sym_comment] = STATE(1591), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT] = ACTIONS(1762), + [aux_sym__immediate_decimal_token2] = ACTIONS(4944), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1762), + [aux_sym__val_number_token5] = ACTIONS(1762), + [aux_sym__val_number_token6] = ACTIONS(1762), + [anon_sym_0b] = ACTIONS(1760), + [anon_sym_0o] = ACTIONS(1760), + [anon_sym_0x] = ACTIONS(1760), + [sym_val_date] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token1] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1762), + }, + [1592] = { + [sym_comment] = STATE(1592), [sym__newline] = ACTIONS(972), [anon_sym_SEMI] = ACTIONS(972), [anon_sym_PIPE] = ACTIONS(972), @@ -230690,343 +221118,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(972), }, - [1693] = { - [sym_comment] = STATE(1693), - [ts_builtin_sym_end] = ACTIONS(2043), - [sym__newline] = ACTIONS(2043), - [anon_sym_SEMI] = ACTIONS(2043), - [anon_sym_PIPE] = ACTIONS(2043), - [anon_sym_err_GT_PIPE] = ACTIONS(2043), - [anon_sym_out_GT_PIPE] = ACTIONS(2043), - [anon_sym_e_GT_PIPE] = ACTIONS(2043), - [anon_sym_o_GT_PIPE] = ACTIONS(2043), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2043), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2043), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2043), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2043), - [anon_sym_LBRACK] = ACTIONS(2043), - [anon_sym_LPAREN] = ACTIONS(2041), - [anon_sym_DOLLAR] = ACTIONS(2041), - [anon_sym_DASH_DASH] = ACTIONS(2043), - [anon_sym_DASH2] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2041), - [anon_sym_LPAREN2] = ACTIONS(1780), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2043), - [anon_sym_DOT_DOT_LT] = ACTIONS(2043), - [anon_sym_null] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(2043), - [anon_sym_false] = ACTIONS(2043), - [aux_sym__val_number_decimal_token1] = ACTIONS(2041), - [aux_sym__val_number_decimal_token2] = ACTIONS(2043), - [aux_sym__val_number_decimal_token3] = ACTIONS(2043), - [aux_sym__val_number_decimal_token4] = ACTIONS(2043), - [aux_sym__val_number_token1] = ACTIONS(2043), - [aux_sym__val_number_token2] = ACTIONS(2043), - [aux_sym__val_number_token3] = ACTIONS(2043), - [aux_sym__val_number_token4] = ACTIONS(2043), - [aux_sym__val_number_token5] = ACTIONS(2043), - [aux_sym__val_number_token6] = ACTIONS(2043), - [anon_sym_0b] = ACTIONS(2041), - [anon_sym_0o] = ACTIONS(2041), - [anon_sym_0x] = ACTIONS(2041), - [sym_val_date] = ACTIONS(2043), - [anon_sym_DQUOTE] = ACTIONS(2043), - [sym__str_single_quotes] = ACTIONS(2043), - [sym__str_back_ticks] = ACTIONS(2043), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2043), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2043), - [anon_sym_err_GT] = ACTIONS(2041), - [anon_sym_out_GT] = ACTIONS(2041), - [anon_sym_e_GT] = ACTIONS(2041), - [anon_sym_o_GT] = ACTIONS(2041), - [anon_sym_err_PLUSout_GT] = ACTIONS(2041), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2041), - [anon_sym_o_PLUSe_GT] = ACTIONS(2041), - [anon_sym_e_PLUSo_GT] = ACTIONS(2041), - [anon_sym_err_GT_GT] = ACTIONS(2043), - [anon_sym_out_GT_GT] = ACTIONS(2043), - [anon_sym_e_GT_GT] = ACTIONS(2043), - [anon_sym_o_GT_GT] = ACTIONS(2043), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2043), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2043), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2043), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2043), - [aux_sym_unquoted_token1] = ACTIONS(2041), - [aux_sym_unquoted_token2] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2043), - }, - [1694] = { - [sym_comment] = STATE(1694), - [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(1719), - [anon_sym_DASH_DASH] = ACTIONS(1721), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1719), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT] = ACTIONS(1721), - [aux_sym__immediate_decimal_token2] = ACTIONS(5006), - [anon_sym_null] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1719), - [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(1719), - [anon_sym_0o] = ACTIONS(1719), - [anon_sym_0x] = ACTIONS(1719), - [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(1719), - [anon_sym_out_GT] = ACTIONS(1719), - [anon_sym_e_GT] = ACTIONS(1719), - [anon_sym_o_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT] = ACTIONS(1719), - [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(1719), + [1593] = { + [sym_comment] = STATE(1593), + [ts_builtin_sym_end] = ACTIONS(966), + [sym__newline] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_err_GT_PIPE] = ACTIONS(966), + [anon_sym_out_GT_PIPE] = ACTIONS(966), + [anon_sym_e_GT_PIPE] = ACTIONS(966), + [anon_sym_o_GT_PIPE] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_DASH2] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_DOT_DOT] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(4946), + [anon_sym_DOT_DOT_EQ] = ACTIONS(966), + [anon_sym_DOT_DOT_LT] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(964), + [aux_sym__val_number_decimal_token2] = ACTIONS(966), + [aux_sym__val_number_decimal_token3] = ACTIONS(966), + [aux_sym__val_number_decimal_token4] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_0b] = ACTIONS(964), + [anon_sym_0o] = ACTIONS(964), + [anon_sym_0x] = ACTIONS(964), + [sym_val_date] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(964), + [anon_sym_err_GT] = ACTIONS(964), + [anon_sym_out_GT] = ACTIONS(964), + [anon_sym_e_GT] = ACTIONS(964), + [anon_sym_o_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT] = ACTIONS(964), + [anon_sym_err_GT_GT] = ACTIONS(966), + [anon_sym_out_GT_GT] = ACTIONS(966), + [anon_sym_e_GT_GT] = ACTIONS(966), + [anon_sym_o_GT_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(966), + [aux_sym_unquoted_token1] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(966), + }, + [1594] = { + [sym_comment] = STATE(1594), + [ts_builtin_sym_end] = ACTIONS(960), + [sym__newline] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_err_GT_PIPE] = ACTIONS(960), + [anon_sym_out_GT_PIPE] = ACTIONS(960), + [anon_sym_e_GT_PIPE] = ACTIONS(960), + [anon_sym_o_GT_PIPE] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(958), + [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_DASH2] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_DOT_DOT] = ACTIONS(958), + [anon_sym_QMARK2] = ACTIONS(4948), + [anon_sym_DOT_DOT_EQ] = ACTIONS(960), + [anon_sym_DOT_DOT_LT] = ACTIONS(960), + [anon_sym_null] = ACTIONS(960), + [anon_sym_true] = ACTIONS(960), + [anon_sym_false] = ACTIONS(960), + [aux_sym__val_number_decimal_token1] = ACTIONS(958), + [aux_sym__val_number_decimal_token2] = ACTIONS(960), + [aux_sym__val_number_decimal_token3] = ACTIONS(960), + [aux_sym__val_number_decimal_token4] = ACTIONS(960), + [aux_sym__val_number_token1] = ACTIONS(960), + [aux_sym__val_number_token2] = ACTIONS(960), + [aux_sym__val_number_token3] = ACTIONS(960), + [aux_sym__val_number_token4] = ACTIONS(960), + [aux_sym__val_number_token5] = ACTIONS(960), + [aux_sym__val_number_token6] = ACTIONS(960), + [anon_sym_0b] = ACTIONS(958), + [anon_sym_0o] = ACTIONS(958), + [anon_sym_0x] = ACTIONS(958), + [sym_val_date] = ACTIONS(960), + [anon_sym_DQUOTE] = ACTIONS(960), + [sym__str_single_quotes] = ACTIONS(960), + [sym__str_back_ticks] = ACTIONS(960), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(960), + [anon_sym_DOT2] = ACTIONS(958), + [anon_sym_err_GT] = ACTIONS(958), + [anon_sym_out_GT] = ACTIONS(958), + [anon_sym_e_GT] = ACTIONS(958), + [anon_sym_o_GT] = ACTIONS(958), + [anon_sym_err_PLUSout_GT] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(958), + [anon_sym_o_PLUSe_GT] = ACTIONS(958), + [anon_sym_e_PLUSo_GT] = ACTIONS(958), + [anon_sym_err_GT_GT] = ACTIONS(960), + [anon_sym_out_GT_GT] = ACTIONS(960), + [anon_sym_e_GT_GT] = ACTIONS(960), + [anon_sym_o_GT_GT] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), + [aux_sym_unquoted_token1] = ACTIONS(958), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1721), + [sym_raw_string_begin] = ACTIONS(960), }, - [1695] = { - [sym_comment] = STATE(1695), - [ts_builtin_sym_end] = ACTIONS(1786), - [sym__newline] = ACTIONS(1786), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1786), - [anon_sym_err_GT_PIPE] = ACTIONS(1786), - [anon_sym_out_GT_PIPE] = ACTIONS(1786), - [anon_sym_e_GT_PIPE] = ACTIONS(1786), - [anon_sym_o_GT_PIPE] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1786), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_DOLLAR] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_DASH2] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_DOT_DOT] = ACTIONS(1778), - [anon_sym_LPAREN2] = ACTIONS(1780), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), - [anon_sym_DOT_DOT_LT] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1786), - [anon_sym_false] = ACTIONS(1786), - [aux_sym__val_number_decimal_token1] = ACTIONS(1778), - [aux_sym__val_number_decimal_token2] = ACTIONS(1786), - [aux_sym__val_number_decimal_token3] = ACTIONS(1786), - [aux_sym__val_number_decimal_token4] = ACTIONS(1786), - [aux_sym__val_number_token1] = ACTIONS(1786), - [aux_sym__val_number_token2] = ACTIONS(1786), - [aux_sym__val_number_token3] = ACTIONS(1786), - [aux_sym__val_number_token4] = ACTIONS(1786), - [aux_sym__val_number_token5] = ACTIONS(1786), - [aux_sym__val_number_token6] = ACTIONS(1786), - [anon_sym_0b] = ACTIONS(1778), - [anon_sym_0o] = ACTIONS(1778), - [anon_sym_0x] = ACTIONS(1778), - [sym_val_date] = ACTIONS(1786), - [anon_sym_DQUOTE] = ACTIONS(1786), - [sym__str_single_quotes] = ACTIONS(1786), - [sym__str_back_ticks] = ACTIONS(1786), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1786), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1786), - [anon_sym_err_GT] = ACTIONS(1778), - [anon_sym_out_GT] = ACTIONS(1778), - [anon_sym_e_GT] = ACTIONS(1778), - [anon_sym_o_GT] = ACTIONS(1778), - [anon_sym_err_PLUSout_GT] = ACTIONS(1778), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1778), - [anon_sym_o_PLUSe_GT] = ACTIONS(1778), - [anon_sym_e_PLUSo_GT] = ACTIONS(1778), - [anon_sym_err_GT_GT] = ACTIONS(1786), - [anon_sym_out_GT_GT] = ACTIONS(1786), - [anon_sym_e_GT_GT] = ACTIONS(1786), - [anon_sym_o_GT_GT] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1786), - [aux_sym_unquoted_token1] = ACTIONS(1778), - [aux_sym_unquoted_token2] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1786), - }, - [1696] = { - [sym__expr_parenthesized_immediate] = STATE(7419), - [sym_comment] = STATE(1696), - [ts_builtin_sym_end] = ACTIONS(4917), - [sym__newline] = ACTIONS(4917), - [anon_sym_SEMI] = ACTIONS(4917), - [anon_sym_PIPE] = ACTIONS(4917), - [anon_sym_err_GT_PIPE] = ACTIONS(4917), - [anon_sym_out_GT_PIPE] = ACTIONS(4917), - [anon_sym_e_GT_PIPE] = ACTIONS(4917), - [anon_sym_o_GT_PIPE] = ACTIONS(4917), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4917), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4917), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4917), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4917), - [anon_sym_LBRACK] = ACTIONS(4917), - [anon_sym_LPAREN] = ACTIONS(4919), - [anon_sym_DOLLAR] = ACTIONS(4919), - [anon_sym_DASH_DASH] = ACTIONS(4917), - [anon_sym_DASH2] = ACTIONS(4919), - [anon_sym_LBRACE] = ACTIONS(4917), - [anon_sym_DOT_DOT] = ACTIONS(4919), - [anon_sym_LPAREN2] = ACTIONS(4462), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4917), - [anon_sym_DOT_DOT_LT] = ACTIONS(4917), - [anon_sym_null] = ACTIONS(4917), - [anon_sym_true] = ACTIONS(4917), - [anon_sym_false] = ACTIONS(4917), - [aux_sym__val_number_decimal_token1] = ACTIONS(4919), - [aux_sym__val_number_decimal_token2] = ACTIONS(4917), - [aux_sym__val_number_decimal_token3] = ACTIONS(4917), - [aux_sym__val_number_decimal_token4] = ACTIONS(4917), - [aux_sym__val_number_token1] = ACTIONS(4917), - [aux_sym__val_number_token2] = ACTIONS(4917), - [aux_sym__val_number_token3] = ACTIONS(4917), - [aux_sym__val_number_token4] = ACTIONS(4917), - [aux_sym__val_number_token5] = ACTIONS(4917), - [aux_sym__val_number_token6] = ACTIONS(4917), - [anon_sym_0b] = ACTIONS(4919), - [anon_sym_0o] = ACTIONS(4919), - [anon_sym_0x] = ACTIONS(4919), - [sym_val_date] = ACTIONS(4917), - [anon_sym_DQUOTE] = ACTIONS(4917), - [sym__str_single_quotes] = ACTIONS(4917), - [sym__str_back_ticks] = ACTIONS(4917), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4917), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4917), - [anon_sym_err_GT] = ACTIONS(4919), - [anon_sym_out_GT] = ACTIONS(4919), - [anon_sym_e_GT] = ACTIONS(4919), - [anon_sym_o_GT] = ACTIONS(4919), - [anon_sym_err_PLUSout_GT] = ACTIONS(4919), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4919), - [anon_sym_o_PLUSe_GT] = ACTIONS(4919), - [anon_sym_e_PLUSo_GT] = ACTIONS(4919), - [anon_sym_err_GT_GT] = ACTIONS(4917), - [anon_sym_out_GT_GT] = ACTIONS(4917), - [anon_sym_e_GT_GT] = ACTIONS(4917), - [anon_sym_o_GT_GT] = ACTIONS(4917), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4917), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4917), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4917), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4917), - [aux_sym_unquoted_token1] = ACTIONS(4919), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(4917), - }, - [1697] = { - [sym_comment] = STATE(1697), - [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_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_DOT2] = ACTIONS(978), - [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), + [1595] = { + [sym_cmd_identifier] = STATE(3932), + [sym__command_name] = STATE(6265), + [sym_scope_pattern] = STATE(6039), + [sym_wild_card] = STATE(6269), + [sym_command_list] = STATE(6270), + [sym__val_number_decimal] = STATE(3553), + [sym_val_string] = STATE(3963), + [sym__raw_str] = STATE(3602), + [sym__str_double_quotes] = STATE(3602), + [sym_comment] = STATE(1595), + [aux_sym_cmd_identifier_token1] = ACTIONS(4916), + [aux_sym_cmd_identifier_token2] = ACTIONS(4918), + [aux_sym_cmd_identifier_token3] = ACTIONS(4918), + [aux_sym_cmd_identifier_token4] = ACTIONS(4918), + [aux_sym_cmd_identifier_token5] = ACTIONS(4918), + [aux_sym_cmd_identifier_token6] = ACTIONS(4918), + [aux_sym_cmd_identifier_token7] = ACTIONS(4918), + [aux_sym_cmd_identifier_token8] = ACTIONS(4918), + [aux_sym_cmd_identifier_token9] = ACTIONS(4916), + [aux_sym_cmd_identifier_token10] = ACTIONS(4918), + [aux_sym_cmd_identifier_token11] = ACTIONS(4918), + [aux_sym_cmd_identifier_token12] = ACTIONS(4918), + [aux_sym_cmd_identifier_token13] = ACTIONS(4916), + [aux_sym_cmd_identifier_token14] = ACTIONS(4918), + [aux_sym_cmd_identifier_token15] = ACTIONS(4916), + [aux_sym_cmd_identifier_token16] = ACTIONS(4918), + [aux_sym_cmd_identifier_token17] = ACTIONS(4918), + [aux_sym_cmd_identifier_token18] = ACTIONS(4918), + [aux_sym_cmd_identifier_token19] = ACTIONS(4918), + [aux_sym_cmd_identifier_token20] = ACTIONS(4918), + [aux_sym_cmd_identifier_token21] = ACTIONS(4918), + [aux_sym_cmd_identifier_token22] = ACTIONS(4918), + [aux_sym_cmd_identifier_token23] = ACTIONS(4918), + [aux_sym_cmd_identifier_token24] = ACTIONS(4918), + [aux_sym_cmd_identifier_token25] = ACTIONS(4918), + [aux_sym_cmd_identifier_token26] = ACTIONS(4918), + [aux_sym_cmd_identifier_token27] = ACTIONS(4918), + [aux_sym_cmd_identifier_token28] = ACTIONS(4918), + [aux_sym_cmd_identifier_token29] = ACTIONS(4918), + [aux_sym_cmd_identifier_token30] = ACTIONS(4918), + [aux_sym_cmd_identifier_token31] = ACTIONS(4918), + [aux_sym_cmd_identifier_token32] = ACTIONS(4918), + [aux_sym_cmd_identifier_token33] = ACTIONS(4918), + [aux_sym_cmd_identifier_token34] = ACTIONS(4916), + [aux_sym_cmd_identifier_token35] = ACTIONS(4918), + [aux_sym_cmd_identifier_token36] = ACTIONS(4918), + [aux_sym_cmd_identifier_token37] = ACTIONS(4918), + [aux_sym_cmd_identifier_token38] = ACTIONS(4916), + [aux_sym_cmd_identifier_token39] = ACTIONS(4918), + [aux_sym_cmd_identifier_token40] = ACTIONS(4918), + [sym__newline] = ACTIONS(4950), + [anon_sym_SEMI] = ACTIONS(4950), + [anon_sym_LBRACK] = ACTIONS(4922), + [anon_sym_RPAREN] = ACTIONS(4950), + [anon_sym_RBRACE] = ACTIONS(4950), + [anon_sym_STAR2] = ACTIONS(4924), + [aux_sym__val_number_decimal_token1] = ACTIONS(4926), + [aux_sym__val_number_decimal_token2] = ACTIONS(4926), + [aux_sym__val_number_decimal_token3] = ACTIONS(4928), + [aux_sym__val_number_decimal_token4] = ACTIONS(4930), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym__str_single_quotes] = ACTIONS(1264), + [sym__str_back_ticks] = ACTIONS(1264), [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(980), + [sym_raw_string_begin] = ACTIONS(1266), }, - [1698] = { - [sym_comment] = STATE(1698), + [1596] = { + [sym_comment] = STATE(1596), [sym__newline] = ACTIONS(976), [anon_sym_SEMI] = ACTIONS(976), [anon_sym_PIPE] = ACTIONS(976), @@ -231092,7270 +221386,4845 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(245), [sym_raw_string_begin] = ACTIONS(976), }, - [1699] = { - [sym_comment] = STATE(1699), - [ts_builtin_sym_end] = ACTIONS(2053), - [sym__newline] = ACTIONS(2053), - [anon_sym_SEMI] = ACTIONS(2053), - [anon_sym_PIPE] = ACTIONS(2053), - [anon_sym_err_GT_PIPE] = ACTIONS(2053), - [anon_sym_out_GT_PIPE] = ACTIONS(2053), - [anon_sym_e_GT_PIPE] = ACTIONS(2053), - [anon_sym_o_GT_PIPE] = ACTIONS(2053), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2053), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2053), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2053), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2053), - [anon_sym_LBRACK] = ACTIONS(2053), - [anon_sym_LPAREN] = ACTIONS(2049), - [anon_sym_DOLLAR] = ACTIONS(2049), - [anon_sym_DASH_DASH] = ACTIONS(2053), - [anon_sym_DASH2] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2049), - [anon_sym_LPAREN2] = ACTIONS(2051), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2053), - [anon_sym_DOT_DOT_LT] = ACTIONS(2053), - [anon_sym_null] = ACTIONS(2053), - [anon_sym_true] = ACTIONS(2053), - [anon_sym_false] = ACTIONS(2053), - [aux_sym__val_number_decimal_token1] = ACTIONS(2049), - [aux_sym__val_number_decimal_token2] = ACTIONS(2053), - [aux_sym__val_number_decimal_token3] = ACTIONS(2053), - [aux_sym__val_number_decimal_token4] = ACTIONS(2053), - [aux_sym__val_number_token1] = ACTIONS(2053), - [aux_sym__val_number_token2] = ACTIONS(2053), - [aux_sym__val_number_token3] = ACTIONS(2053), - [aux_sym__val_number_token4] = ACTIONS(2053), - [aux_sym__val_number_token5] = ACTIONS(2053), - [aux_sym__val_number_token6] = ACTIONS(2053), - [anon_sym_0b] = ACTIONS(2049), - [anon_sym_0o] = ACTIONS(2049), - [anon_sym_0x] = ACTIONS(2049), - [sym_val_date] = ACTIONS(2053), - [anon_sym_DQUOTE] = ACTIONS(2053), - [sym__str_single_quotes] = ACTIONS(2053), - [sym__str_back_ticks] = ACTIONS(2053), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2053), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2053), - [anon_sym_err_GT] = ACTIONS(2049), - [anon_sym_out_GT] = ACTIONS(2049), - [anon_sym_e_GT] = ACTIONS(2049), - [anon_sym_o_GT] = ACTIONS(2049), - [anon_sym_err_PLUSout_GT] = ACTIONS(2049), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2049), - [anon_sym_o_PLUSe_GT] = ACTIONS(2049), - [anon_sym_e_PLUSo_GT] = ACTIONS(2049), - [anon_sym_err_GT_GT] = ACTIONS(2053), - [anon_sym_out_GT_GT] = ACTIONS(2053), - [anon_sym_e_GT_GT] = ACTIONS(2053), - [anon_sym_o_GT_GT] = ACTIONS(2053), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2053), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2053), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2053), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2053), - [aux_sym_unquoted_token1] = ACTIONS(2049), - [aux_sym_unquoted_token2] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2053), - }, - [1700] = { - [sym_comment] = STATE(1700), - [ts_builtin_sym_end] = ACTIONS(1792), - [sym__newline] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_err_GT_PIPE] = ACTIONS(1792), - [anon_sym_out_GT_PIPE] = ACTIONS(1792), - [anon_sym_e_GT_PIPE] = ACTIONS(1792), - [anon_sym_o_GT_PIPE] = ACTIONS(1792), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1792), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1792), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1792), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1792), - [anon_sym_GT2] = ACTIONS(1790), - [anon_sym_DASH2] = ACTIONS(1792), - [anon_sym_in2] = ACTIONS(1792), - [anon_sym_STAR2] = ACTIONS(1790), - [anon_sym_and2] = ACTIONS(1792), - [anon_sym_xor2] = ACTIONS(1792), - [anon_sym_or2] = ACTIONS(1792), - [anon_sym_not_DASHin2] = ACTIONS(1792), - [anon_sym_has2] = ACTIONS(1792), - [anon_sym_not_DASHhas2] = ACTIONS(1792), - [anon_sym_starts_DASHwith2] = ACTIONS(1792), - [anon_sym_ends_DASHwith2] = ACTIONS(1792), - [anon_sym_EQ_EQ2] = ACTIONS(1792), - [anon_sym_BANG_EQ2] = ACTIONS(1792), - [anon_sym_LT2] = ACTIONS(1790), - [anon_sym_LT_EQ2] = ACTIONS(1792), - [anon_sym_GT_EQ2] = ACTIONS(1792), - [anon_sym_EQ_TILDE2] = ACTIONS(1792), - [anon_sym_BANG_TILDE2] = ACTIONS(1792), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_STAR_STAR2] = ACTIONS(1792), - [anon_sym_PLUS_PLUS2] = ACTIONS(1792), - [anon_sym_SLASH2] = ACTIONS(1790), - [anon_sym_mod2] = ACTIONS(1792), - [anon_sym_SLASH_SLASH2] = ACTIONS(1792), - [anon_sym_PLUS2] = ACTIONS(1790), - [anon_sym_bit_DASHshl2] = ACTIONS(1792), - [anon_sym_bit_DASHshr2] = ACTIONS(1792), - [anon_sym_bit_DASHand2] = ACTIONS(1792), - [anon_sym_bit_DASHxor2] = ACTIONS(1792), - [anon_sym_bit_DASHor2] = ACTIONS(1792), - [anon_sym_DOT_DOT2] = ACTIONS(1790), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1792), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1792), - [anon_sym_err_GT] = ACTIONS(1790), - [anon_sym_out_GT] = ACTIONS(1790), - [anon_sym_e_GT] = ACTIONS(1790), - [anon_sym_o_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT] = ACTIONS(1790), - [anon_sym_err_GT_GT] = ACTIONS(1792), - [anon_sym_out_GT_GT] = ACTIONS(1792), - [anon_sym_e_GT_GT] = ACTIONS(1792), - [anon_sym_o_GT_GT] = ACTIONS(1792), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1792), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1792), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1792), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1792), - [aux_sym_unquoted_token2] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(245), - }, - [1701] = { - [sym_comment] = STATE(1701), - [ts_builtin_sym_end] = ACTIONS(1668), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_GT2] = ACTIONS(1666), - [anon_sym_DASH2] = ACTIONS(1668), - [anon_sym_in2] = ACTIONS(1668), - [anon_sym_STAR2] = ACTIONS(1666), - [anon_sym_and2] = ACTIONS(1668), - [anon_sym_xor2] = ACTIONS(1668), - [anon_sym_or2] = ACTIONS(1668), - [anon_sym_not_DASHin2] = ACTIONS(1668), - [anon_sym_has2] = ACTIONS(1668), - [anon_sym_not_DASHhas2] = ACTIONS(1668), - [anon_sym_starts_DASHwith2] = ACTIONS(1668), - [anon_sym_ends_DASHwith2] = ACTIONS(1668), - [anon_sym_EQ_EQ2] = ACTIONS(1668), - [anon_sym_BANG_EQ2] = ACTIONS(1668), - [anon_sym_LT2] = ACTIONS(1666), - [anon_sym_LT_EQ2] = ACTIONS(1668), - [anon_sym_GT_EQ2] = ACTIONS(1668), - [anon_sym_EQ_TILDE2] = ACTIONS(1668), - [anon_sym_BANG_TILDE2] = ACTIONS(1668), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_STAR_STAR2] = ACTIONS(1668), - [anon_sym_PLUS_PLUS2] = ACTIONS(1668), - [anon_sym_SLASH2] = ACTIONS(1666), - [anon_sym_mod2] = ACTIONS(1668), - [anon_sym_SLASH_SLASH2] = ACTIONS(1668), - [anon_sym_PLUS2] = ACTIONS(1666), - [anon_sym_bit_DASHshl2] = ACTIONS(1668), - [anon_sym_bit_DASHshr2] = ACTIONS(1668), - [anon_sym_bit_DASHand2] = ACTIONS(1668), - [anon_sym_bit_DASHxor2] = ACTIONS(1668), - [anon_sym_bit_DASHor2] = ACTIONS(1668), - [anon_sym_DOT_DOT2] = ACTIONS(1666), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), - [anon_sym_err_GT] = ACTIONS(1666), - [anon_sym_out_GT] = ACTIONS(1666), - [anon_sym_e_GT] = ACTIONS(1666), - [anon_sym_o_GT] = ACTIONS(1666), - [anon_sym_err_PLUSout_GT] = ACTIONS(1666), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), - [anon_sym_o_PLUSe_GT] = ACTIONS(1666), - [anon_sym_e_PLUSo_GT] = ACTIONS(1666), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [aux_sym_unquoted_token2] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - }, - [1702] = { - [sym_comment] = STATE(1702), - [ts_builtin_sym_end] = ACTIONS(2063), - [sym__newline] = ACTIONS(2063), - [anon_sym_SEMI] = ACTIONS(2063), - [anon_sym_PIPE] = ACTIONS(2063), - [anon_sym_err_GT_PIPE] = ACTIONS(2063), - [anon_sym_out_GT_PIPE] = ACTIONS(2063), - [anon_sym_e_GT_PIPE] = ACTIONS(2063), - [anon_sym_o_GT_PIPE] = ACTIONS(2063), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2063), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2063), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2063), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2063), - [anon_sym_LBRACK] = ACTIONS(2063), - [anon_sym_LPAREN] = ACTIONS(2059), - [anon_sym_DOLLAR] = ACTIONS(2059), - [anon_sym_DASH_DASH] = ACTIONS(2063), - [anon_sym_DASH2] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(2063), - [anon_sym_DOT_DOT] = ACTIONS(2059), - [anon_sym_LPAREN2] = ACTIONS(2061), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2063), - [anon_sym_DOT_DOT_LT] = ACTIONS(2063), - [anon_sym_null] = ACTIONS(2063), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [aux_sym__val_number_decimal_token1] = ACTIONS(2059), - [aux_sym__val_number_decimal_token2] = ACTIONS(2063), - [aux_sym__val_number_decimal_token3] = ACTIONS(2063), - [aux_sym__val_number_decimal_token4] = ACTIONS(2063), - [aux_sym__val_number_token1] = ACTIONS(2063), - [aux_sym__val_number_token2] = ACTIONS(2063), - [aux_sym__val_number_token3] = ACTIONS(2063), - [aux_sym__val_number_token4] = ACTIONS(2063), - [aux_sym__val_number_token5] = ACTIONS(2063), - [aux_sym__val_number_token6] = ACTIONS(2063), - [anon_sym_0b] = ACTIONS(2059), - [anon_sym_0o] = ACTIONS(2059), - [anon_sym_0x] = ACTIONS(2059), - [sym_val_date] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(2063), - [sym__str_single_quotes] = ACTIONS(2063), - [sym__str_back_ticks] = ACTIONS(2063), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2063), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2063), - [anon_sym_err_GT] = ACTIONS(2059), - [anon_sym_out_GT] = ACTIONS(2059), - [anon_sym_e_GT] = ACTIONS(2059), - [anon_sym_o_GT] = ACTIONS(2059), - [anon_sym_err_PLUSout_GT] = ACTIONS(2059), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2059), - [anon_sym_o_PLUSe_GT] = ACTIONS(2059), - [anon_sym_e_PLUSo_GT] = ACTIONS(2059), - [anon_sym_err_GT_GT] = ACTIONS(2063), - [anon_sym_out_GT_GT] = ACTIONS(2063), - [anon_sym_e_GT_GT] = ACTIONS(2063), - [anon_sym_o_GT_GT] = ACTIONS(2063), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2063), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2063), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2063), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2063), - [aux_sym_unquoted_token1] = ACTIONS(2059), - [aux_sym_unquoted_token2] = ACTIONS(2065), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2063), - }, - [1703] = { - [sym_comment] = STATE(1703), - [sym__newline] = ACTIONS(2294), - [anon_sym_SEMI] = ACTIONS(2294), - [anon_sym_PIPE] = ACTIONS(2294), - [anon_sym_err_GT_PIPE] = ACTIONS(2294), - [anon_sym_out_GT_PIPE] = ACTIONS(2294), - [anon_sym_e_GT_PIPE] = ACTIONS(2294), - [anon_sym_o_GT_PIPE] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2294), - [anon_sym_RPAREN] = ACTIONS(2294), - [anon_sym_GT2] = ACTIONS(2290), - [anon_sym_DASH2] = ACTIONS(2294), - [anon_sym_in2] = ACTIONS(2294), - [anon_sym_if] = ACTIONS(2294), - [anon_sym_LBRACE] = ACTIONS(2294), - [anon_sym_RBRACE] = ACTIONS(2294), - [anon_sym_EQ_GT] = ACTIONS(2294), - [anon_sym_STAR2] = ACTIONS(2290), - [anon_sym_and2] = ACTIONS(2294), - [anon_sym_xor2] = ACTIONS(2294), - [anon_sym_or2] = ACTIONS(2294), - [anon_sym_not_DASHin2] = ACTIONS(2294), - [anon_sym_has2] = ACTIONS(2294), - [anon_sym_not_DASHhas2] = ACTIONS(2294), - [anon_sym_starts_DASHwith2] = ACTIONS(2294), - [anon_sym_ends_DASHwith2] = ACTIONS(2294), - [anon_sym_EQ_EQ2] = ACTIONS(2294), - [anon_sym_BANG_EQ2] = ACTIONS(2294), - [anon_sym_LT2] = ACTIONS(2290), - [anon_sym_LT_EQ2] = ACTIONS(2294), - [anon_sym_GT_EQ2] = ACTIONS(2294), - [anon_sym_EQ_TILDE2] = ACTIONS(2294), - [anon_sym_BANG_TILDE2] = ACTIONS(2294), - [anon_sym_STAR_STAR2] = ACTIONS(2294), - [anon_sym_PLUS_PLUS2] = ACTIONS(2294), - [anon_sym_SLASH2] = ACTIONS(2290), - [anon_sym_mod2] = ACTIONS(2294), - [anon_sym_SLASH_SLASH2] = ACTIONS(2294), - [anon_sym_PLUS2] = ACTIONS(2290), - [anon_sym_bit_DASHshl2] = ACTIONS(2294), - [anon_sym_bit_DASHshr2] = ACTIONS(2294), - [anon_sym_bit_DASHand2] = ACTIONS(2294), - [anon_sym_bit_DASHxor2] = ACTIONS(2294), - [anon_sym_bit_DASHor2] = ACTIONS(2294), - [anon_sym_LBRACK2] = ACTIONS(5008), - [anon_sym_err_GT] = ACTIONS(2290), - [anon_sym_out_GT] = ACTIONS(2290), - [anon_sym_e_GT] = ACTIONS(2290), - [anon_sym_o_GT] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT] = ACTIONS(2290), - [anon_sym_err_GT_GT] = ACTIONS(2294), - [anon_sym_out_GT_GT] = ACTIONS(2294), - [anon_sym_e_GT_GT] = ACTIONS(2294), - [anon_sym_o_GT_GT] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2294), - [anon_sym_POUND] = ACTIONS(245), - }, - [1704] = { - [sym_comment] = STATE(1704), - [sym__newline] = ACTIONS(5010), - [anon_sym_SEMI] = ACTIONS(5010), - [anon_sym_PIPE] = ACTIONS(5010), - [anon_sym_err_GT_PIPE] = ACTIONS(5010), - [anon_sym_out_GT_PIPE] = ACTIONS(5010), - [anon_sym_e_GT_PIPE] = ACTIONS(5010), - [anon_sym_o_GT_PIPE] = ACTIONS(5010), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5010), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5010), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5010), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5010), - [anon_sym_LBRACK] = ACTIONS(5010), - [anon_sym_LPAREN] = ACTIONS(5012), - [anon_sym_RPAREN] = ACTIONS(5010), - [anon_sym_DOLLAR] = ACTIONS(5012), - [anon_sym_DASH_DASH] = ACTIONS(5010), - [anon_sym_DASH2] = ACTIONS(5012), - [anon_sym_LBRACE] = ACTIONS(5010), - [anon_sym_RBRACE] = ACTIONS(5010), - [anon_sym_DOT_DOT] = ACTIONS(5012), - [anon_sym_LPAREN2] = ACTIONS(5010), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5010), - [anon_sym_DOT_DOT_LT] = ACTIONS(5010), - [anon_sym_null] = ACTIONS(5010), - [anon_sym_true] = ACTIONS(5010), - [anon_sym_false] = ACTIONS(5010), - [aux_sym__val_number_decimal_token1] = ACTIONS(5012), - [aux_sym__val_number_decimal_token2] = ACTIONS(5010), - [aux_sym__val_number_decimal_token3] = ACTIONS(5010), - [aux_sym__val_number_decimal_token4] = ACTIONS(5010), - [aux_sym__val_number_token1] = ACTIONS(5010), - [aux_sym__val_number_token2] = ACTIONS(5010), - [aux_sym__val_number_token3] = ACTIONS(5010), - [aux_sym__val_number_token4] = ACTIONS(5010), - [aux_sym__val_number_token5] = ACTIONS(5010), - [aux_sym__val_number_token6] = ACTIONS(5010), - [anon_sym_0b] = ACTIONS(5012), - [anon_sym_0o] = ACTIONS(5012), - [anon_sym_0x] = ACTIONS(5012), - [sym_val_date] = ACTIONS(5010), - [anon_sym_DQUOTE] = ACTIONS(5010), - [sym__str_single_quotes] = ACTIONS(5010), - [sym__str_back_ticks] = ACTIONS(5010), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5010), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5010), - [anon_sym_err_GT] = ACTIONS(5012), - [anon_sym_out_GT] = ACTIONS(5012), - [anon_sym_e_GT] = ACTIONS(5012), - [anon_sym_o_GT] = ACTIONS(5012), - [anon_sym_err_PLUSout_GT] = ACTIONS(5012), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5012), - [anon_sym_o_PLUSe_GT] = ACTIONS(5012), - [anon_sym_e_PLUSo_GT] = ACTIONS(5012), - [anon_sym_err_GT_GT] = ACTIONS(5010), - [anon_sym_out_GT_GT] = ACTIONS(5010), - [anon_sym_e_GT_GT] = ACTIONS(5010), - [anon_sym_o_GT_GT] = ACTIONS(5010), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5010), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5010), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5010), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5010), - [aux_sym_unquoted_token1] = ACTIONS(5012), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(5010), - }, - [1705] = { - [sym_comment] = STATE(1705), - [ts_builtin_sym_end] = ACTIONS(2198), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_LBRACK] = ACTIONS(2198), - [anon_sym_LPAREN] = ACTIONS(2194), - [anon_sym_DOLLAR] = ACTIONS(2194), - [anon_sym_DASH_DASH] = ACTIONS(2194), - [anon_sym_DASH2] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2196), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2194), - [anon_sym_DOT_DOT_LT] = ACTIONS(2194), - [anon_sym_null] = ACTIONS(2194), - [anon_sym_true] = ACTIONS(2194), - [anon_sym_false] = ACTIONS(2194), - [aux_sym__val_number_decimal_token1] = ACTIONS(2194), - [aux_sym__val_number_decimal_token2] = ACTIONS(2194), - [aux_sym__val_number_decimal_token3] = ACTIONS(2194), - [aux_sym__val_number_decimal_token4] = ACTIONS(2194), - [aux_sym__val_number_token1] = ACTIONS(2194), - [aux_sym__val_number_token2] = ACTIONS(2194), - [aux_sym__val_number_token3] = ACTIONS(2194), - [aux_sym__val_number_token4] = ACTIONS(2194), - [aux_sym__val_number_token5] = ACTIONS(2194), - [aux_sym__val_number_token6] = ACTIONS(2194), - [anon_sym_0b] = ACTIONS(2194), - [anon_sym_0o] = ACTIONS(2194), - [anon_sym_0x] = ACTIONS(2194), - [sym_val_date] = ACTIONS(2194), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym__str_single_quotes] = ACTIONS(2198), - [sym__str_back_ticks] = ACTIONS(2198), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2198), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2194), - [anon_sym_out_GT] = ACTIONS(2194), - [anon_sym_e_GT] = ACTIONS(2194), - [anon_sym_o_GT] = ACTIONS(2194), - [anon_sym_err_PLUSout_GT] = ACTIONS(2194), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2194), - [anon_sym_o_PLUSe_GT] = ACTIONS(2194), - [anon_sym_e_PLUSo_GT] = ACTIONS(2194), - [anon_sym_err_GT_GT] = ACTIONS(2194), - [anon_sym_out_GT_GT] = ACTIONS(2194), - [anon_sym_e_GT_GT] = ACTIONS(2194), - [anon_sym_o_GT_GT] = ACTIONS(2194), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), - [aux_sym_unquoted_token1] = ACTIONS(2194), - [aux_sym_unquoted_token4] = ACTIONS(2200), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2198), + [1597] = { + [sym_comment] = STATE(1597), + [ts_builtin_sym_end] = ACTIONS(1813), + [sym__newline] = ACTIONS(1813), + [anon_sym_SEMI] = ACTIONS(1813), + [anon_sym_PIPE] = ACTIONS(1813), + [anon_sym_err_GT_PIPE] = ACTIONS(1813), + [anon_sym_out_GT_PIPE] = ACTIONS(1813), + [anon_sym_e_GT_PIPE] = ACTIONS(1813), + [anon_sym_o_GT_PIPE] = ACTIONS(1813), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1813), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1813), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1813), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_LPAREN] = ACTIONS(1805), + [anon_sym_DOLLAR] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1813), + [anon_sym_DASH2] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1813), + [anon_sym_DOT_DOT] = ACTIONS(1805), + [anon_sym_LPAREN2] = ACTIONS(1807), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1813), + [anon_sym_DOT_DOT_LT] = ACTIONS(1813), + [anon_sym_null] = ACTIONS(1813), + [anon_sym_true] = ACTIONS(1813), + [anon_sym_false] = ACTIONS(1813), + [aux_sym__val_number_decimal_token1] = ACTIONS(1805), + [aux_sym__val_number_decimal_token2] = ACTIONS(1813), + [aux_sym__val_number_decimal_token3] = ACTIONS(1813), + [aux_sym__val_number_decimal_token4] = ACTIONS(1813), + [aux_sym__val_number_token1] = ACTIONS(1813), + [aux_sym__val_number_token2] = ACTIONS(1813), + [aux_sym__val_number_token3] = ACTIONS(1813), + [aux_sym__val_number_token4] = ACTIONS(1813), + [aux_sym__val_number_token5] = ACTIONS(1813), + [aux_sym__val_number_token6] = ACTIONS(1813), + [anon_sym_0b] = ACTIONS(1805), + [anon_sym_0o] = ACTIONS(1805), + [anon_sym_0x] = ACTIONS(1805), + [sym_val_date] = ACTIONS(1813), + [anon_sym_DQUOTE] = ACTIONS(1813), + [sym__str_single_quotes] = ACTIONS(1813), + [sym__str_back_ticks] = ACTIONS(1813), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1813), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1813), + [anon_sym_err_GT] = ACTIONS(1805), + [anon_sym_out_GT] = ACTIONS(1805), + [anon_sym_e_GT] = ACTIONS(1805), + [anon_sym_o_GT] = ACTIONS(1805), + [anon_sym_err_PLUSout_GT] = ACTIONS(1805), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1805), + [anon_sym_o_PLUSe_GT] = ACTIONS(1805), + [anon_sym_e_PLUSo_GT] = ACTIONS(1805), + [anon_sym_err_GT_GT] = ACTIONS(1813), + [anon_sym_out_GT_GT] = ACTIONS(1813), + [anon_sym_e_GT_GT] = ACTIONS(1813), + [anon_sym_o_GT_GT] = ACTIONS(1813), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1813), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1813), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1813), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1813), + [aux_sym_unquoted_token1] = ACTIONS(1805), + [aux_sym_unquoted_token2] = ACTIONS(1447), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1813), }, - [1706] = { - [sym_comment] = STATE(1706), - [ts_builtin_sym_end] = ACTIONS(994), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(994), - [anon_sym_err_GT_PIPE] = ACTIONS(994), - [anon_sym_out_GT_PIPE] = ACTIONS(994), - [anon_sym_e_GT_PIPE] = ACTIONS(994), - [anon_sym_o_GT_PIPE] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_DOT_DOT] = ACTIONS(998), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_DOT_DOT_EQ] = ACTIONS(998), - [anon_sym_DOT_DOT_LT] = ACTIONS(998), - [anon_sym_null] = ACTIONS(998), - [anon_sym_true] = ACTIONS(998), - [anon_sym_false] = 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_0b] = ACTIONS(998), - [anon_sym_0o] = ACTIONS(998), - [anon_sym_0x] = ACTIONS(998), - [sym_val_date] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym__str_single_quotes] = ACTIONS(994), - [sym__str_back_ticks] = ACTIONS(994), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(994), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(994), - [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(998), - [anon_sym_out_GT_GT] = ACTIONS(998), - [anon_sym_e_GT_GT] = ACTIONS(998), - [anon_sym_o_GT_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), - [aux_sym_unquoted_token1] = ACTIONS(998), - [aux_sym_unquoted_token4] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(994), + [1598] = { + [sym_comment] = STATE(1598), + [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_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_DOT2] = ACTIONS(978), + [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(245), + [sym_raw_string_begin] = ACTIONS(980), }, - [1707] = { - [sym__expr_parenthesized_immediate] = STATE(7379), - [sym_comment] = STATE(1707), - [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(5016), - [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_DOT_DOT] = ACTIONS(5016), - [anon_sym_LPAREN2] = ACTIONS(4462), - [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), - [aux_sym_unquoted_token1] = ACTIONS(5016), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(5014), - }, - [1708] = { - [sym_comment] = STATE(1708), - [sym__newline] = ACTIONS(2294), - [anon_sym_SEMI] = ACTIONS(2294), - [anon_sym_PIPE] = ACTIONS(2294), - [anon_sym_err_GT_PIPE] = ACTIONS(2294), - [anon_sym_out_GT_PIPE] = ACTIONS(2294), - [anon_sym_e_GT_PIPE] = ACTIONS(2294), - [anon_sym_o_GT_PIPE] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2294), - [anon_sym_LBRACK] = ACTIONS(2290), - [anon_sym_LPAREN] = ACTIONS(2294), - [anon_sym_RPAREN] = ACTIONS(2294), - [anon_sym_DOLLAR] = ACTIONS(2290), - [anon_sym_DASH_DASH] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2290), - [anon_sym_LBRACE] = ACTIONS(2294), - [anon_sym_RBRACE] = ACTIONS(2294), - [anon_sym_DOT_DOT] = ACTIONS(2290), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2294), - [anon_sym_DOT_DOT_LT] = ACTIONS(2294), - [anon_sym_null] = ACTIONS(2294), - [anon_sym_true] = ACTIONS(2294), - [anon_sym_false] = ACTIONS(2294), - [aux_sym__val_number_decimal_token1] = ACTIONS(2290), - [aux_sym__val_number_decimal_token2] = ACTIONS(2294), - [aux_sym__val_number_decimal_token3] = ACTIONS(2294), - [aux_sym__val_number_decimal_token4] = ACTIONS(2294), - [aux_sym__val_number_token1] = ACTIONS(2294), - [aux_sym__val_number_token2] = ACTIONS(2294), - [aux_sym__val_number_token3] = ACTIONS(2294), - [aux_sym__val_number_token4] = ACTIONS(2294), - [aux_sym__val_number_token5] = ACTIONS(2294), - [aux_sym__val_number_token6] = ACTIONS(2294), - [anon_sym_0b] = ACTIONS(2290), - [anon_sym_0o] = ACTIONS(2290), - [anon_sym_0x] = ACTIONS(2290), - [anon_sym_LBRACK2] = ACTIONS(5018), - [sym_val_date] = ACTIONS(2294), - [anon_sym_DQUOTE] = ACTIONS(2294), - [sym__str_single_quotes] = ACTIONS(2294), - [sym__str_back_ticks] = ACTIONS(2294), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2294), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2294), - [anon_sym_err_GT] = ACTIONS(2290), - [anon_sym_out_GT] = ACTIONS(2290), - [anon_sym_e_GT] = ACTIONS(2290), - [anon_sym_o_GT] = ACTIONS(2290), - [anon_sym_err_PLUSout_GT] = ACTIONS(2290), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2290), - [anon_sym_o_PLUSe_GT] = ACTIONS(2290), - [anon_sym_e_PLUSo_GT] = ACTIONS(2290), - [anon_sym_err_GT_GT] = ACTIONS(2294), - [anon_sym_out_GT_GT] = ACTIONS(2294), - [anon_sym_e_GT_GT] = ACTIONS(2294), - [anon_sym_o_GT_GT] = ACTIONS(2294), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2294), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2294), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2294), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2294), - [aux_sym_unquoted_token1] = ACTIONS(2290), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(2294), - }, - [1709] = { - [sym_comment] = STATE(1709), - [ts_builtin_sym_end] = ACTIONS(2204), - [sym__newline] = ACTIONS(2204), - [anon_sym_SEMI] = ACTIONS(2204), - [anon_sym_PIPE] = ACTIONS(2204), - [anon_sym_err_GT_PIPE] = ACTIONS(2204), - [anon_sym_out_GT_PIPE] = ACTIONS(2204), - [anon_sym_e_GT_PIPE] = ACTIONS(2204), - [anon_sym_o_GT_PIPE] = ACTIONS(2204), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2204), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2204), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2204), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2204), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2202), - [anon_sym_DOLLAR] = ACTIONS(2202), - [anon_sym_DASH_DASH] = ACTIONS(2202), - [anon_sym_DASH2] = ACTIONS(2202), - [anon_sym_LBRACE] = ACTIONS(2204), - [anon_sym_DOT_DOT] = ACTIONS(2202), - [anon_sym_LPAREN2] = ACTIONS(2091), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2202), - [anon_sym_DOT_DOT_LT] = ACTIONS(2202), - [anon_sym_null] = ACTIONS(2202), - [anon_sym_true] = ACTIONS(2202), - [anon_sym_false] = ACTIONS(2202), - [aux_sym__val_number_decimal_token1] = ACTIONS(2202), - [aux_sym__val_number_decimal_token2] = ACTIONS(2202), - [aux_sym__val_number_decimal_token3] = ACTIONS(2202), - [aux_sym__val_number_decimal_token4] = ACTIONS(2202), - [aux_sym__val_number_token1] = ACTIONS(2202), - [aux_sym__val_number_token2] = ACTIONS(2202), - [aux_sym__val_number_token3] = ACTIONS(2202), - [aux_sym__val_number_token4] = ACTIONS(2202), - [aux_sym__val_number_token5] = ACTIONS(2202), - [aux_sym__val_number_token6] = ACTIONS(2202), - [anon_sym_0b] = ACTIONS(2202), - [anon_sym_0o] = ACTIONS(2202), - [anon_sym_0x] = ACTIONS(2202), - [sym_val_date] = ACTIONS(2202), - [anon_sym_DQUOTE] = ACTIONS(2204), - [sym__str_single_quotes] = ACTIONS(2204), - [sym__str_back_ticks] = ACTIONS(2204), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2204), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2204), - [anon_sym_err_GT] = ACTIONS(2202), - [anon_sym_out_GT] = ACTIONS(2202), - [anon_sym_e_GT] = ACTIONS(2202), - [anon_sym_o_GT] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT] = ACTIONS(2202), - [anon_sym_err_GT_GT] = ACTIONS(2202), - [anon_sym_out_GT_GT] = ACTIONS(2202), - [anon_sym_e_GT_GT] = ACTIONS(2202), - [anon_sym_o_GT_GT] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2202), - [aux_sym_unquoted_token1] = ACTIONS(2202), - [aux_sym_unquoted_token4] = ACTIONS(2095), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2204), - }, - [1710] = { - [sym_comment] = STATE(1710), - [ts_builtin_sym_end] = ACTIONS(2093), - [sym__newline] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_err_GT_PIPE] = ACTIONS(2093), - [anon_sym_out_GT_PIPE] = ACTIONS(2093), - [anon_sym_e_GT_PIPE] = ACTIONS(2093), - [anon_sym_o_GT_PIPE] = ACTIONS(2093), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2093), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2093), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2093), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_DOLLAR] = ACTIONS(2089), - [anon_sym_DASH_DASH] = ACTIONS(2089), - [anon_sym_DASH2] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_DOT_DOT] = ACTIONS(2089), - [anon_sym_LPAREN2] = ACTIONS(2091), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2089), - [anon_sym_DOT_DOT_LT] = ACTIONS(2089), - [anon_sym_null] = ACTIONS(2089), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [aux_sym__val_number_decimal_token1] = ACTIONS(2089), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2089), - [aux_sym__val_number_decimal_token4] = ACTIONS(2089), - [aux_sym__val_number_token1] = ACTIONS(2089), - [aux_sym__val_number_token2] = ACTIONS(2089), - [aux_sym__val_number_token3] = ACTIONS(2089), - [aux_sym__val_number_token4] = ACTIONS(2089), - [aux_sym__val_number_token5] = ACTIONS(2089), - [aux_sym__val_number_token6] = ACTIONS(2089), - [anon_sym_0b] = ACTIONS(2089), - [anon_sym_0o] = ACTIONS(2089), - [anon_sym_0x] = ACTIONS(2089), - [sym_val_date] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(2093), - [sym__str_single_quotes] = ACTIONS(2093), - [sym__str_back_ticks] = ACTIONS(2093), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2093), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2093), - [anon_sym_err_GT] = ACTIONS(2089), - [anon_sym_out_GT] = ACTIONS(2089), - [anon_sym_e_GT] = ACTIONS(2089), - [anon_sym_o_GT] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT] = ACTIONS(2089), - [anon_sym_err_GT_GT] = ACTIONS(2089), - [anon_sym_out_GT_GT] = ACTIONS(2089), - [anon_sym_e_GT_GT] = ACTIONS(2089), - [anon_sym_o_GT_GT] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2089), - [aux_sym_unquoted_token1] = ACTIONS(2089), - [aux_sym_unquoted_token4] = ACTIONS(2095), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2093), - }, - [1711] = { - [sym_comment] = STATE(1711), - [sym__newline] = ACTIONS(2015), - [anon_sym_SEMI] = ACTIONS(2015), - [anon_sym_PIPE] = ACTIONS(2015), - [anon_sym_err_GT_PIPE] = ACTIONS(2015), - [anon_sym_out_GT_PIPE] = ACTIONS(2015), - [anon_sym_e_GT_PIPE] = ACTIONS(2015), - [anon_sym_o_GT_PIPE] = ACTIONS(2015), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2015), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2015), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2015), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2015), - [anon_sym_RPAREN] = ACTIONS(2015), - [anon_sym_GT2] = ACTIONS(2009), - [anon_sym_DASH2] = ACTIONS(2015), - [anon_sym_in2] = ACTIONS(2015), - [anon_sym_LBRACE] = ACTIONS(2015), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_STAR2] = ACTIONS(2009), - [anon_sym_and2] = ACTIONS(2015), - [anon_sym_xor2] = ACTIONS(2015), - [anon_sym_or2] = ACTIONS(2015), - [anon_sym_not_DASHin2] = ACTIONS(2015), - [anon_sym_has2] = ACTIONS(2015), - [anon_sym_not_DASHhas2] = ACTIONS(2015), - [anon_sym_starts_DASHwith2] = ACTIONS(2015), - [anon_sym_ends_DASHwith2] = ACTIONS(2015), - [anon_sym_EQ_EQ2] = ACTIONS(2015), - [anon_sym_BANG_EQ2] = ACTIONS(2015), - [anon_sym_LT2] = ACTIONS(2009), - [anon_sym_LT_EQ2] = ACTIONS(2015), - [anon_sym_GT_EQ2] = ACTIONS(2015), - [anon_sym_EQ_TILDE2] = ACTIONS(2015), - [anon_sym_BANG_TILDE2] = ACTIONS(2015), - [anon_sym_STAR_STAR2] = ACTIONS(2015), - [anon_sym_PLUS_PLUS2] = ACTIONS(2015), - [anon_sym_SLASH2] = ACTIONS(2009), - [anon_sym_mod2] = ACTIONS(2015), - [anon_sym_SLASH_SLASH2] = ACTIONS(2015), - [anon_sym_PLUS2] = ACTIONS(2009), - [anon_sym_bit_DASHshl2] = ACTIONS(2015), - [anon_sym_bit_DASHshr2] = ACTIONS(2015), - [anon_sym_bit_DASHand2] = ACTIONS(2015), - [anon_sym_bit_DASHxor2] = ACTIONS(2015), - [anon_sym_bit_DASHor2] = ACTIONS(2015), - [anon_sym_DOT_DOT2] = ACTIONS(5020), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(5022), - [anon_sym_DOT_DOT_LT2] = ACTIONS(5022), - [anon_sym_err_GT] = ACTIONS(2009), - [anon_sym_out_GT] = ACTIONS(2009), - [anon_sym_e_GT] = ACTIONS(2009), - [anon_sym_o_GT] = ACTIONS(2009), - [anon_sym_err_PLUSout_GT] = ACTIONS(2009), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2009), - [anon_sym_o_PLUSe_GT] = ACTIONS(2009), - [anon_sym_e_PLUSo_GT] = ACTIONS(2009), - [anon_sym_err_GT_GT] = ACTIONS(2015), - [anon_sym_out_GT_GT] = ACTIONS(2015), - [anon_sym_e_GT_GT] = ACTIONS(2015), - [anon_sym_o_GT_GT] = ACTIONS(2015), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2015), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2015), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2015), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2015), - [anon_sym_POUND] = ACTIONS(245), - }, - [1712] = { - [sym_comment] = STATE(1712), - [sym__newline] = ACTIONS(2023), - [anon_sym_SEMI] = ACTIONS(2023), - [anon_sym_PIPE] = ACTIONS(2023), - [anon_sym_err_GT_PIPE] = ACTIONS(2023), - [anon_sym_out_GT_PIPE] = ACTIONS(2023), - [anon_sym_e_GT_PIPE] = ACTIONS(2023), - [anon_sym_o_GT_PIPE] = ACTIONS(2023), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2023), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2023), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2023), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2023), - [anon_sym_RPAREN] = ACTIONS(2023), - [anon_sym_GT2] = ACTIONS(2017), - [anon_sym_DASH2] = ACTIONS(2023), - [anon_sym_in2] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2023), - [anon_sym_STAR2] = ACTIONS(2017), - [anon_sym_and2] = ACTIONS(2023), - [anon_sym_xor2] = ACTIONS(2023), - [anon_sym_or2] = ACTIONS(2023), - [anon_sym_not_DASHin2] = ACTIONS(2023), - [anon_sym_has2] = ACTIONS(2023), - [anon_sym_not_DASHhas2] = ACTIONS(2023), - [anon_sym_starts_DASHwith2] = ACTIONS(2023), - [anon_sym_ends_DASHwith2] = ACTIONS(2023), - [anon_sym_EQ_EQ2] = ACTIONS(2023), - [anon_sym_BANG_EQ2] = ACTIONS(2023), - [anon_sym_LT2] = ACTIONS(2017), - [anon_sym_LT_EQ2] = ACTIONS(2023), - [anon_sym_GT_EQ2] = ACTIONS(2023), - [anon_sym_EQ_TILDE2] = ACTIONS(2023), - [anon_sym_BANG_TILDE2] = ACTIONS(2023), - [anon_sym_STAR_STAR2] = ACTIONS(2023), - [anon_sym_PLUS_PLUS2] = ACTIONS(2023), - [anon_sym_SLASH2] = ACTIONS(2017), - [anon_sym_mod2] = ACTIONS(2023), - [anon_sym_SLASH_SLASH2] = ACTIONS(2023), - [anon_sym_PLUS2] = ACTIONS(2017), - [anon_sym_bit_DASHshl2] = ACTIONS(2023), - [anon_sym_bit_DASHshr2] = ACTIONS(2023), - [anon_sym_bit_DASHand2] = ACTIONS(2023), - [anon_sym_bit_DASHxor2] = ACTIONS(2023), - [anon_sym_bit_DASHor2] = ACTIONS(2023), - [anon_sym_DOT_DOT2] = ACTIONS(5024), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(5026), - [anon_sym_DOT_DOT_LT2] = ACTIONS(5026), - [anon_sym_err_GT] = ACTIONS(2017), - [anon_sym_out_GT] = ACTIONS(2017), - [anon_sym_e_GT] = ACTIONS(2017), - [anon_sym_o_GT] = ACTIONS(2017), - [anon_sym_err_PLUSout_GT] = ACTIONS(2017), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2017), - [anon_sym_o_PLUSe_GT] = ACTIONS(2017), - [anon_sym_e_PLUSo_GT] = ACTIONS(2017), - [anon_sym_err_GT_GT] = ACTIONS(2023), - [anon_sym_out_GT_GT] = ACTIONS(2023), - [anon_sym_e_GT_GT] = ACTIONS(2023), - [anon_sym_o_GT_GT] = ACTIONS(2023), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2023), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2023), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2023), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2023), - [anon_sym_POUND] = ACTIONS(245), - }, - [1713] = { - [sym_comment] = STATE(1713), - [sym__newline] = ACTIONS(2031), - [anon_sym_SEMI] = ACTIONS(2031), - [anon_sym_PIPE] = ACTIONS(2031), - [anon_sym_err_GT_PIPE] = ACTIONS(2031), - [anon_sym_out_GT_PIPE] = ACTIONS(2031), - [anon_sym_e_GT_PIPE] = ACTIONS(2031), - [anon_sym_o_GT_PIPE] = ACTIONS(2031), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2031), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2031), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2031), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2031), - [anon_sym_RPAREN] = ACTIONS(2031), - [anon_sym_GT2] = ACTIONS(2025), - [anon_sym_DASH2] = ACTIONS(2031), - [anon_sym_in2] = ACTIONS(2031), - [anon_sym_LBRACE] = ACTIONS(2031), - [anon_sym_RBRACE] = ACTIONS(2031), - [anon_sym_STAR2] = ACTIONS(2025), - [anon_sym_and2] = ACTIONS(2031), - [anon_sym_xor2] = ACTIONS(2031), - [anon_sym_or2] = ACTIONS(2031), - [anon_sym_not_DASHin2] = ACTIONS(2031), - [anon_sym_has2] = ACTIONS(2031), - [anon_sym_not_DASHhas2] = ACTIONS(2031), - [anon_sym_starts_DASHwith2] = ACTIONS(2031), - [anon_sym_ends_DASHwith2] = ACTIONS(2031), - [anon_sym_EQ_EQ2] = ACTIONS(2031), - [anon_sym_BANG_EQ2] = ACTIONS(2031), - [anon_sym_LT2] = ACTIONS(2025), - [anon_sym_LT_EQ2] = ACTIONS(2031), - [anon_sym_GT_EQ2] = ACTIONS(2031), - [anon_sym_EQ_TILDE2] = ACTIONS(2031), - [anon_sym_BANG_TILDE2] = ACTIONS(2031), - [anon_sym_STAR_STAR2] = ACTIONS(2031), - [anon_sym_PLUS_PLUS2] = ACTIONS(2031), - [anon_sym_SLASH2] = ACTIONS(2025), - [anon_sym_mod2] = ACTIONS(2031), - [anon_sym_SLASH_SLASH2] = ACTIONS(2031), - [anon_sym_PLUS2] = ACTIONS(2025), - [anon_sym_bit_DASHshl2] = ACTIONS(2031), - [anon_sym_bit_DASHshr2] = ACTIONS(2031), - [anon_sym_bit_DASHand2] = ACTIONS(2031), - [anon_sym_bit_DASHxor2] = ACTIONS(2031), - [anon_sym_bit_DASHor2] = ACTIONS(2031), - [anon_sym_DOT_DOT2] = ACTIONS(5028), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(5030), - [anon_sym_DOT_DOT_LT2] = ACTIONS(5030), - [anon_sym_err_GT] = ACTIONS(2025), - [anon_sym_out_GT] = ACTIONS(2025), - [anon_sym_e_GT] = ACTIONS(2025), - [anon_sym_o_GT] = ACTIONS(2025), - [anon_sym_err_PLUSout_GT] = ACTIONS(2025), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2025), - [anon_sym_o_PLUSe_GT] = ACTIONS(2025), - [anon_sym_e_PLUSo_GT] = ACTIONS(2025), - [anon_sym_err_GT_GT] = ACTIONS(2031), - [anon_sym_out_GT_GT] = ACTIONS(2031), - [anon_sym_e_GT_GT] = ACTIONS(2031), - [anon_sym_o_GT_GT] = ACTIONS(2031), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2031), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2031), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2031), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2031), - [anon_sym_POUND] = ACTIONS(245), - }, - [1714] = { - [sym_comment] = STATE(1714), - [sym__newline] = ACTIONS(5032), - [anon_sym_SEMI] = ACTIONS(5032), - [anon_sym_PIPE] = ACTIONS(5032), - [anon_sym_err_GT_PIPE] = ACTIONS(5032), - [anon_sym_out_GT_PIPE] = ACTIONS(5032), - [anon_sym_e_GT_PIPE] = ACTIONS(5032), - [anon_sym_o_GT_PIPE] = ACTIONS(5032), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5032), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5032), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5032), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5032), - [anon_sym_LBRACK] = ACTIONS(5032), - [anon_sym_LPAREN] = ACTIONS(5034), - [anon_sym_RPAREN] = ACTIONS(5032), - [anon_sym_DOLLAR] = ACTIONS(5034), - [anon_sym_DASH_DASH] = ACTIONS(5032), - [anon_sym_DASH2] = ACTIONS(5034), - [anon_sym_LBRACE] = ACTIONS(5032), - [anon_sym_RBRACE] = ACTIONS(5032), - [anon_sym_DOT_DOT] = ACTIONS(5034), - [anon_sym_LPAREN2] = ACTIONS(5032), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5032), - [anon_sym_DOT_DOT_LT] = ACTIONS(5032), - [anon_sym_null] = ACTIONS(5032), - [anon_sym_true] = ACTIONS(5032), - [anon_sym_false] = ACTIONS(5032), - [aux_sym__val_number_decimal_token1] = ACTIONS(5034), - [aux_sym__val_number_decimal_token2] = ACTIONS(5032), - [aux_sym__val_number_decimal_token3] = ACTIONS(5032), - [aux_sym__val_number_decimal_token4] = ACTIONS(5032), - [aux_sym__val_number_token1] = ACTIONS(5032), - [aux_sym__val_number_token2] = ACTIONS(5032), - [aux_sym__val_number_token3] = ACTIONS(5032), - [aux_sym__val_number_token4] = ACTIONS(5032), - [aux_sym__val_number_token5] = ACTIONS(5032), - [aux_sym__val_number_token6] = ACTIONS(5032), - [anon_sym_0b] = ACTIONS(5034), - [anon_sym_0o] = ACTIONS(5034), - [anon_sym_0x] = ACTIONS(5034), - [sym_val_date] = ACTIONS(5032), - [anon_sym_DQUOTE] = ACTIONS(5032), - [sym__str_single_quotes] = ACTIONS(5032), - [sym__str_back_ticks] = ACTIONS(5032), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5032), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5032), - [anon_sym_err_GT] = ACTIONS(5034), - [anon_sym_out_GT] = ACTIONS(5034), - [anon_sym_e_GT] = ACTIONS(5034), - [anon_sym_o_GT] = ACTIONS(5034), - [anon_sym_err_PLUSout_GT] = ACTIONS(5034), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5034), - [anon_sym_o_PLUSe_GT] = ACTIONS(5034), - [anon_sym_e_PLUSo_GT] = ACTIONS(5034), - [anon_sym_err_GT_GT] = ACTIONS(5032), - [anon_sym_out_GT_GT] = ACTIONS(5032), - [anon_sym_e_GT_GT] = ACTIONS(5032), - [anon_sym_o_GT_GT] = ACTIONS(5032), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5032), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5032), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5032), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5032), - [aux_sym_unquoted_token1] = ACTIONS(5034), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(5032), - }, - [1715] = { - [sym_comment] = STATE(1715), - [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(1719), - [anon_sym_DASH2] = ACTIONS(1721), - [anon_sym_in2] = ACTIONS(1721), - [anon_sym_STAR2] = ACTIONS(1719), - [anon_sym_and2] = ACTIONS(1721), - [anon_sym_xor2] = ACTIONS(1721), - [anon_sym_or2] = ACTIONS(1721), - [anon_sym_not_DASHin2] = ACTIONS(1721), - [anon_sym_has2] = ACTIONS(1721), - [anon_sym_not_DASHhas2] = 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(1719), - [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(1721), - [anon_sym_STAR_STAR2] = ACTIONS(1721), - [anon_sym_PLUS_PLUS2] = ACTIONS(1721), - [anon_sym_SLASH2] = ACTIONS(1719), - [anon_sym_mod2] = ACTIONS(1721), - [anon_sym_SLASH_SLASH2] = ACTIONS(1721), - [anon_sym_PLUS2] = ACTIONS(1719), - [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(1719), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1721), - [anon_sym_err_GT] = ACTIONS(1719), - [anon_sym_out_GT] = ACTIONS(1719), - [anon_sym_e_GT] = ACTIONS(1719), - [anon_sym_o_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT] = ACTIONS(1719), - [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(1719), - [anon_sym_POUND] = ACTIONS(245), - }, - [1716] = { - [sym_comment] = STATE(1716), - [ts_builtin_sym_end] = ACTIONS(1650), - [sym__newline] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_err_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_GT_PIPE] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), - [anon_sym_GT2] = ACTIONS(1648), - [anon_sym_DASH2] = ACTIONS(1650), - [anon_sym_in2] = ACTIONS(1650), - [anon_sym_STAR2] = ACTIONS(1648), - [anon_sym_and2] = ACTIONS(1650), - [anon_sym_xor2] = ACTIONS(1650), - [anon_sym_or2] = ACTIONS(1650), - [anon_sym_not_DASHin2] = ACTIONS(1650), - [anon_sym_has2] = ACTIONS(1650), - [anon_sym_not_DASHhas2] = ACTIONS(1650), - [anon_sym_starts_DASHwith2] = ACTIONS(1650), - [anon_sym_ends_DASHwith2] = ACTIONS(1650), - [anon_sym_EQ_EQ2] = ACTIONS(1650), - [anon_sym_BANG_EQ2] = ACTIONS(1650), - [anon_sym_LT2] = ACTIONS(1648), - [anon_sym_LT_EQ2] = ACTIONS(1650), - [anon_sym_GT_EQ2] = ACTIONS(1650), - [anon_sym_EQ_TILDE2] = ACTIONS(1650), - [anon_sym_BANG_TILDE2] = ACTIONS(1650), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_STAR_STAR2] = ACTIONS(1650), - [anon_sym_PLUS_PLUS2] = ACTIONS(1650), - [anon_sym_SLASH2] = ACTIONS(1648), - [anon_sym_mod2] = ACTIONS(1650), - [anon_sym_SLASH_SLASH2] = ACTIONS(1650), - [anon_sym_PLUS2] = ACTIONS(1648), - [anon_sym_bit_DASHshl2] = ACTIONS(1650), - [anon_sym_bit_DASHshr2] = ACTIONS(1650), - [anon_sym_bit_DASHand2] = ACTIONS(1650), - [anon_sym_bit_DASHxor2] = ACTIONS(1650), - [anon_sym_bit_DASHor2] = ACTIONS(1650), - [anon_sym_DOT_DOT2] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1650), - [anon_sym_err_GT] = ACTIONS(1648), - [anon_sym_out_GT] = ACTIONS(1648), - [anon_sym_e_GT] = ACTIONS(1648), - [anon_sym_o_GT] = ACTIONS(1648), - [anon_sym_err_PLUSout_GT] = ACTIONS(1648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), - [anon_sym_o_PLUSe_GT] = ACTIONS(1648), - [anon_sym_e_PLUSo_GT] = ACTIONS(1648), - [anon_sym_err_GT_GT] = ACTIONS(1650), - [anon_sym_out_GT_GT] = ACTIONS(1650), - [anon_sym_e_GT_GT] = ACTIONS(1650), - [anon_sym_o_GT_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), - [aux_sym_unquoted_token2] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(245), - }, - [1717] = { - [sym__expr_parenthesized_immediate] = STATE(7379), - [sym_comment] = STATE(1717), - [sym__newline] = ACTIONS(5036), - [anon_sym_SEMI] = ACTIONS(5036), - [anon_sym_PIPE] = ACTIONS(5036), - [anon_sym_err_GT_PIPE] = ACTIONS(5036), - [anon_sym_out_GT_PIPE] = ACTIONS(5036), - [anon_sym_e_GT_PIPE] = ACTIONS(5036), - [anon_sym_o_GT_PIPE] = ACTIONS(5036), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5036), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5036), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5036), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5036), - [anon_sym_LBRACK] = ACTIONS(5036), - [anon_sym_LPAREN] = ACTIONS(5038), - [anon_sym_RPAREN] = ACTIONS(5036), - [anon_sym_DOLLAR] = ACTIONS(5038), - [anon_sym_DASH_DASH] = ACTIONS(5036), - [anon_sym_DASH2] = ACTIONS(5038), - [anon_sym_LBRACE] = ACTIONS(5036), - [anon_sym_DOT_DOT] = ACTIONS(5038), - [anon_sym_LPAREN2] = ACTIONS(4462), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5036), - [anon_sym_DOT_DOT_LT] = ACTIONS(5036), - [anon_sym_null] = ACTIONS(5036), - [anon_sym_true] = ACTIONS(5036), - [anon_sym_false] = ACTIONS(5036), - [aux_sym__val_number_decimal_token1] = ACTIONS(5038), - [aux_sym__val_number_decimal_token2] = ACTIONS(5036), - [aux_sym__val_number_decimal_token3] = ACTIONS(5036), - [aux_sym__val_number_decimal_token4] = ACTIONS(5036), - [aux_sym__val_number_token1] = ACTIONS(5036), - [aux_sym__val_number_token2] = ACTIONS(5036), - [aux_sym__val_number_token3] = ACTIONS(5036), - [aux_sym__val_number_token4] = ACTIONS(5036), - [aux_sym__val_number_token5] = ACTIONS(5036), - [aux_sym__val_number_token6] = ACTIONS(5036), - [anon_sym_0b] = ACTIONS(5038), - [anon_sym_0o] = ACTIONS(5038), - [anon_sym_0x] = ACTIONS(5038), - [sym_val_date] = ACTIONS(5036), - [anon_sym_DQUOTE] = ACTIONS(5036), - [sym__str_single_quotes] = ACTIONS(5036), - [sym__str_back_ticks] = ACTIONS(5036), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5036), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5036), - [anon_sym_err_GT] = ACTIONS(5038), - [anon_sym_out_GT] = ACTIONS(5038), - [anon_sym_e_GT] = ACTIONS(5038), - [anon_sym_o_GT] = ACTIONS(5038), - [anon_sym_err_PLUSout_GT] = ACTIONS(5038), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5038), - [anon_sym_o_PLUSe_GT] = ACTIONS(5038), - [anon_sym_e_PLUSo_GT] = ACTIONS(5038), - [anon_sym_err_GT_GT] = ACTIONS(5036), - [anon_sym_out_GT_GT] = ACTIONS(5036), - [anon_sym_e_GT_GT] = ACTIONS(5036), - [anon_sym_o_GT_GT] = ACTIONS(5036), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5036), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5036), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5036), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5036), - [aux_sym_unquoted_token1] = ACTIONS(5038), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(5036), - }, - [1718] = { - [sym_comment] = STATE(1718), - [ts_builtin_sym_end] = ACTIONS(4881), - [sym__newline] = ACTIONS(4881), - [anon_sym_SEMI] = ACTIONS(4881), - [anon_sym_PIPE] = ACTIONS(4881), - [anon_sym_err_GT_PIPE] = ACTIONS(4881), - [anon_sym_out_GT_PIPE] = ACTIONS(4881), - [anon_sym_e_GT_PIPE] = ACTIONS(4881), - [anon_sym_o_GT_PIPE] = ACTIONS(4881), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4881), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4881), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4881), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4881), - [anon_sym_LBRACK] = ACTIONS(4881), - [anon_sym_LPAREN] = ACTIONS(4881), - [anon_sym_DOLLAR] = ACTIONS(4883), - [anon_sym_DASH_DASH] = ACTIONS(4883), - [anon_sym_DASH2] = ACTIONS(4883), - [anon_sym_LBRACE] = ACTIONS(4881), - [anon_sym_DOT_DOT] = ACTIONS(4883), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4881), - [anon_sym_DOT_DOT_LT] = ACTIONS(4881), - [anon_sym_null] = ACTIONS(4883), - [anon_sym_true] = ACTIONS(4883), - [anon_sym_false] = ACTIONS(4883), - [aux_sym__val_number_decimal_token1] = ACTIONS(4883), - [aux_sym__val_number_decimal_token2] = ACTIONS(4883), - [aux_sym__val_number_decimal_token3] = ACTIONS(4881), - [aux_sym__val_number_decimal_token4] = ACTIONS(4881), - [aux_sym__val_number_token1] = ACTIONS(4883), - [aux_sym__val_number_token2] = ACTIONS(4883), - [aux_sym__val_number_token3] = ACTIONS(4883), - [aux_sym__val_number_token4] = ACTIONS(4883), - [aux_sym__val_number_token5] = ACTIONS(4883), - [aux_sym__val_number_token6] = ACTIONS(4883), - [anon_sym_0b] = ACTIONS(4883), - [anon_sym_0o] = ACTIONS(4883), - [anon_sym_0x] = ACTIONS(4883), - [sym_val_date] = ACTIONS(4883), - [anon_sym_DQUOTE] = ACTIONS(4881), - [sym__str_single_quotes] = ACTIONS(4881), - [sym__str_back_ticks] = ACTIONS(4881), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4881), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4881), - [anon_sym_err_GT] = ACTIONS(4883), - [anon_sym_out_GT] = ACTIONS(4883), - [anon_sym_e_GT] = ACTIONS(4883), - [anon_sym_o_GT] = ACTIONS(4883), - [anon_sym_err_PLUSout_GT] = ACTIONS(4883), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4883), - [anon_sym_o_PLUSe_GT] = ACTIONS(4883), - [anon_sym_e_PLUSo_GT] = ACTIONS(4883), - [anon_sym_err_GT_GT] = ACTIONS(4881), - [anon_sym_out_GT_GT] = ACTIONS(4881), - [anon_sym_e_GT_GT] = ACTIONS(4881), - [anon_sym_o_GT_GT] = ACTIONS(4881), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4881), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4881), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4881), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4881), - [anon_sym_EQ2] = ACTIONS(5040), - [sym_short_flag_identifier] = ACTIONS(5042), - [aux_sym_unquoted_token1] = ACTIONS(4883), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(4881), - }, - [1719] = { - [sym_comment] = STATE(1719), - [ts_builtin_sym_end] = ACTIONS(1819), - [sym__newline] = ACTIONS(1819), - [anon_sym_SEMI] = ACTIONS(1819), - [anon_sym_PIPE] = ACTIONS(1819), - [anon_sym_err_GT_PIPE] = ACTIONS(1819), - [anon_sym_out_GT_PIPE] = ACTIONS(1819), - [anon_sym_e_GT_PIPE] = ACTIONS(1819), - [anon_sym_o_GT_PIPE] = ACTIONS(1819), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1819), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1819), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1819), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1819), - [anon_sym_GT2] = ACTIONS(1811), - [anon_sym_DASH2] = ACTIONS(1819), - [anon_sym_in2] = ACTIONS(1819), - [anon_sym_STAR2] = ACTIONS(1811), - [anon_sym_and2] = ACTIONS(1819), - [anon_sym_xor2] = ACTIONS(1819), - [anon_sym_or2] = ACTIONS(1819), - [anon_sym_not_DASHin2] = ACTIONS(1819), - [anon_sym_has2] = ACTIONS(1819), - [anon_sym_not_DASHhas2] = ACTIONS(1819), - [anon_sym_starts_DASHwith2] = ACTIONS(1819), - [anon_sym_ends_DASHwith2] = ACTIONS(1819), - [anon_sym_EQ_EQ2] = ACTIONS(1819), - [anon_sym_BANG_EQ2] = ACTIONS(1819), - [anon_sym_LT2] = ACTIONS(1811), - [anon_sym_LT_EQ2] = ACTIONS(1819), - [anon_sym_GT_EQ2] = ACTIONS(1819), - [anon_sym_EQ_TILDE2] = ACTIONS(1819), - [anon_sym_BANG_TILDE2] = ACTIONS(1819), - [anon_sym_LPAREN2] = ACTIONS(1813), - [anon_sym_STAR_STAR2] = ACTIONS(1819), - [anon_sym_PLUS_PLUS2] = ACTIONS(1819), - [anon_sym_SLASH2] = ACTIONS(1811), - [anon_sym_mod2] = ACTIONS(1819), - [anon_sym_SLASH_SLASH2] = ACTIONS(1819), - [anon_sym_PLUS2] = ACTIONS(1811), - [anon_sym_bit_DASHshl2] = ACTIONS(1819), - [anon_sym_bit_DASHshr2] = ACTIONS(1819), - [anon_sym_bit_DASHand2] = ACTIONS(1819), - [anon_sym_bit_DASHxor2] = ACTIONS(1819), - [anon_sym_bit_DASHor2] = ACTIONS(1819), - [anon_sym_DOT_DOT2] = ACTIONS(5044), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(5046), - [anon_sym_DOT_DOT_LT2] = ACTIONS(5046), - [anon_sym_err_GT] = ACTIONS(1811), - [anon_sym_out_GT] = ACTIONS(1811), - [anon_sym_e_GT] = ACTIONS(1811), - [anon_sym_o_GT] = ACTIONS(1811), - [anon_sym_err_PLUSout_GT] = ACTIONS(1811), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1811), - [anon_sym_o_PLUSe_GT] = ACTIONS(1811), - [anon_sym_e_PLUSo_GT] = ACTIONS(1811), - [anon_sym_err_GT_GT] = ACTIONS(1819), - [anon_sym_out_GT_GT] = ACTIONS(1819), - [anon_sym_e_GT_GT] = ACTIONS(1819), - [anon_sym_o_GT_GT] = ACTIONS(1819), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1819), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1819), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1819), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1819), - [aux_sym_unquoted_token2] = ACTIONS(1447), + [1599] = { + [sym_comment] = STATE(1599), + [sym__newline] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_PIPE] = ACTIONS(1285), + [anon_sym_err_GT_PIPE] = ACTIONS(1285), + [anon_sym_out_GT_PIPE] = ACTIONS(1285), + [anon_sym_e_GT_PIPE] = ACTIONS(1285), + [anon_sym_o_GT_PIPE] = ACTIONS(1285), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1285), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1285), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1285), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1285), + [anon_sym_COLON] = ACTIONS(1285), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_RPAREN] = ACTIONS(1285), + [anon_sym_GT2] = ACTIONS(1287), + [anon_sym_DASH2] = ACTIONS(1285), + [anon_sym_in2] = ACTIONS(1285), + [anon_sym_else] = ACTIONS(1285), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_catch] = ACTIONS(1285), + [anon_sym_STAR2] = ACTIONS(1287), + [anon_sym_and2] = ACTIONS(1285), + [anon_sym_xor2] = ACTIONS(1285), + [anon_sym_or2] = ACTIONS(1285), + [anon_sym_not_DASHin2] = ACTIONS(1285), + [anon_sym_has2] = ACTIONS(1285), + [anon_sym_not_DASHhas2] = ACTIONS(1285), + [anon_sym_starts_DASHwith2] = ACTIONS(1285), + [anon_sym_ends_DASHwith2] = ACTIONS(1285), + [anon_sym_EQ_EQ2] = ACTIONS(1285), + [anon_sym_BANG_EQ2] = ACTIONS(1285), + [anon_sym_LT2] = ACTIONS(1287), + [anon_sym_LT_EQ2] = ACTIONS(1285), + [anon_sym_GT_EQ2] = ACTIONS(1285), + [anon_sym_EQ_TILDE2] = ACTIONS(1285), + [anon_sym_BANG_TILDE2] = ACTIONS(1285), + [anon_sym_STAR_STAR2] = ACTIONS(1285), + [anon_sym_PLUS_PLUS2] = ACTIONS(1285), + [anon_sym_SLASH2] = ACTIONS(1287), + [anon_sym_mod2] = ACTIONS(1285), + [anon_sym_SLASH_SLASH2] = ACTIONS(1285), + [anon_sym_PLUS2] = ACTIONS(1287), + [anon_sym_bit_DASHshl2] = ACTIONS(1285), + [anon_sym_bit_DASHshr2] = ACTIONS(1285), + [anon_sym_bit_DASHand2] = ACTIONS(1285), + [anon_sym_bit_DASHxor2] = ACTIONS(1285), + [anon_sym_bit_DASHor2] = ACTIONS(1285), + [anon_sym_err_GT] = ACTIONS(1287), + [anon_sym_out_GT] = ACTIONS(1287), + [anon_sym_e_GT] = ACTIONS(1287), + [anon_sym_o_GT] = ACTIONS(1287), + [anon_sym_err_PLUSout_GT] = ACTIONS(1287), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1287), + [anon_sym_o_PLUSe_GT] = ACTIONS(1287), + [anon_sym_e_PLUSo_GT] = ACTIONS(1287), + [anon_sym_err_GT_GT] = ACTIONS(1285), + [anon_sym_out_GT_GT] = ACTIONS(1285), + [anon_sym_e_GT_GT] = ACTIONS(1285), + [anon_sym_o_GT_GT] = ACTIONS(1285), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1285), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1285), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1285), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1285), [anon_sym_POUND] = ACTIONS(245), }, - [1720] = { - [sym_comment] = STATE(1720), - [ts_builtin_sym_end] = ACTIONS(1786), - [sym__newline] = ACTIONS(1786), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1786), - [anon_sym_err_GT_PIPE] = ACTIONS(1786), - [anon_sym_out_GT_PIPE] = ACTIONS(1786), - [anon_sym_e_GT_PIPE] = ACTIONS(1786), - [anon_sym_o_GT_PIPE] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1786), - [anon_sym_GT2] = ACTIONS(1778), - [anon_sym_DASH2] = ACTIONS(1786), - [anon_sym_in2] = ACTIONS(1786), - [anon_sym_STAR2] = ACTIONS(1778), - [anon_sym_and2] = ACTIONS(1786), - [anon_sym_xor2] = ACTIONS(1786), - [anon_sym_or2] = ACTIONS(1786), - [anon_sym_not_DASHin2] = ACTIONS(1786), - [anon_sym_has2] = ACTIONS(1786), - [anon_sym_not_DASHhas2] = ACTIONS(1786), - [anon_sym_starts_DASHwith2] = ACTIONS(1786), - [anon_sym_ends_DASHwith2] = ACTIONS(1786), - [anon_sym_EQ_EQ2] = ACTIONS(1786), - [anon_sym_BANG_EQ2] = ACTIONS(1786), - [anon_sym_LT2] = ACTIONS(1778), - [anon_sym_LT_EQ2] = ACTIONS(1786), - [anon_sym_GT_EQ2] = ACTIONS(1786), - [anon_sym_EQ_TILDE2] = ACTIONS(1786), - [anon_sym_BANG_TILDE2] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1780), - [anon_sym_STAR_STAR2] = ACTIONS(1786), - [anon_sym_PLUS_PLUS2] = ACTIONS(1786), - [anon_sym_SLASH2] = ACTIONS(1778), - [anon_sym_mod2] = ACTIONS(1786), - [anon_sym_SLASH_SLASH2] = ACTIONS(1786), - [anon_sym_PLUS2] = ACTIONS(1778), - [anon_sym_bit_DASHshl2] = ACTIONS(1786), - [anon_sym_bit_DASHshr2] = ACTIONS(1786), - [anon_sym_bit_DASHand2] = ACTIONS(1786), - [anon_sym_bit_DASHxor2] = ACTIONS(1786), - [anon_sym_bit_DASHor2] = ACTIONS(1786), - [anon_sym_DOT_DOT2] = ACTIONS(5048), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(5050), - [anon_sym_DOT_DOT_LT2] = ACTIONS(5050), - [anon_sym_err_GT] = ACTIONS(1778), - [anon_sym_out_GT] = ACTIONS(1778), - [anon_sym_e_GT] = ACTIONS(1778), - [anon_sym_o_GT] = ACTIONS(1778), - [anon_sym_err_PLUSout_GT] = ACTIONS(1778), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1778), - [anon_sym_o_PLUSe_GT] = ACTIONS(1778), - [anon_sym_e_PLUSo_GT] = ACTIONS(1778), - [anon_sym_err_GT_GT] = ACTIONS(1786), - [anon_sym_out_GT_GT] = ACTIONS(1786), - [anon_sym_e_GT_GT] = ACTIONS(1786), - [anon_sym_o_GT_GT] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1786), - [aux_sym_unquoted_token2] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(245), - }, - [1721] = { - [sym_comment] = STATE(1721), - [ts_builtin_sym_end] = ACTIONS(2047), - [sym__newline] = ACTIONS(2047), - [anon_sym_SEMI] = ACTIONS(2047), - [anon_sym_PIPE] = ACTIONS(2047), - [anon_sym_err_GT_PIPE] = ACTIONS(2047), - [anon_sym_out_GT_PIPE] = ACTIONS(2047), - [anon_sym_e_GT_PIPE] = ACTIONS(2047), - [anon_sym_o_GT_PIPE] = ACTIONS(2047), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2047), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2047), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2047), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2047), - [anon_sym_LBRACK] = ACTIONS(2047), - [anon_sym_LPAREN] = ACTIONS(2045), - [anon_sym_DOLLAR] = ACTIONS(2045), - [anon_sym_DASH_DASH] = ACTIONS(2045), - [anon_sym_DASH2] = ACTIONS(2045), - [anon_sym_LBRACE] = ACTIONS(2047), - [anon_sym_DOT_DOT] = ACTIONS(2045), - [anon_sym_LPAREN2] = ACTIONS(2047), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2045), - [anon_sym_DOT_DOT_LT] = ACTIONS(2045), - [anon_sym_null] = ACTIONS(2045), - [anon_sym_true] = ACTIONS(2045), - [anon_sym_false] = ACTIONS(2045), - [aux_sym__val_number_decimal_token1] = ACTIONS(2045), - [aux_sym__val_number_decimal_token2] = ACTIONS(2045), - [aux_sym__val_number_decimal_token3] = ACTIONS(2045), - [aux_sym__val_number_decimal_token4] = ACTIONS(2045), - [aux_sym__val_number_token1] = ACTIONS(2045), - [aux_sym__val_number_token2] = ACTIONS(2045), - [aux_sym__val_number_token3] = ACTIONS(2045), - [aux_sym__val_number_token4] = ACTIONS(2045), - [aux_sym__val_number_token5] = ACTIONS(2045), - [aux_sym__val_number_token6] = ACTIONS(2045), - [anon_sym_0b] = ACTIONS(2045), - [anon_sym_0o] = ACTIONS(2045), - [anon_sym_0x] = ACTIONS(2045), - [sym_val_date] = ACTIONS(2045), - [anon_sym_DQUOTE] = ACTIONS(2047), - [sym__str_single_quotes] = ACTIONS(2047), - [sym__str_back_ticks] = ACTIONS(2047), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2047), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2047), - [anon_sym_err_GT] = ACTIONS(2045), - [anon_sym_out_GT] = ACTIONS(2045), - [anon_sym_e_GT] = ACTIONS(2045), - [anon_sym_o_GT] = ACTIONS(2045), - [anon_sym_err_PLUSout_GT] = ACTIONS(2045), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2045), - [anon_sym_o_PLUSe_GT] = ACTIONS(2045), - [anon_sym_e_PLUSo_GT] = ACTIONS(2045), - [anon_sym_err_GT_GT] = ACTIONS(2045), - [anon_sym_out_GT_GT] = ACTIONS(2045), - [anon_sym_e_GT_GT] = ACTIONS(2045), - [anon_sym_o_GT_GT] = ACTIONS(2045), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2045), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2045), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2045), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2045), - [aux_sym_unquoted_token1] = ACTIONS(2045), - [aux_sym_unquoted_token4] = ACTIONS(2045), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2047), - }, - [1722] = { - [sym_comment] = STATE(1722), - [ts_builtin_sym_end] = ACTIONS(4873), - [sym_long_flag_identifier] = ACTIONS(5052), - [sym__newline] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4873), - [anon_sym_PIPE] = ACTIONS(4873), - [anon_sym_err_GT_PIPE] = ACTIONS(4873), - [anon_sym_out_GT_PIPE] = ACTIONS(4873), - [anon_sym_e_GT_PIPE] = ACTIONS(4873), - [anon_sym_o_GT_PIPE] = ACTIONS(4873), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4873), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4873), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4873), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4873), - [anon_sym_LBRACK] = ACTIONS(4873), - [anon_sym_LPAREN] = ACTIONS(4873), - [anon_sym_DOLLAR] = ACTIONS(4875), - [anon_sym_DASH_DASH] = ACTIONS(4873), - [anon_sym_DASH2] = ACTIONS(4875), - [anon_sym_LBRACE] = ACTIONS(4873), - [anon_sym_DOT_DOT] = ACTIONS(4875), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4873), - [anon_sym_DOT_DOT_LT] = ACTIONS(4873), - [anon_sym_null] = ACTIONS(4875), - [anon_sym_true] = ACTIONS(4875), - [anon_sym_false] = ACTIONS(4875), - [aux_sym__val_number_decimal_token1] = ACTIONS(4875), - [aux_sym__val_number_decimal_token2] = ACTIONS(4873), - [aux_sym__val_number_decimal_token3] = ACTIONS(4873), - [aux_sym__val_number_decimal_token4] = ACTIONS(4873), - [aux_sym__val_number_token1] = ACTIONS(4875), - [aux_sym__val_number_token2] = ACTIONS(4875), - [aux_sym__val_number_token3] = ACTIONS(4875), - [aux_sym__val_number_token4] = ACTIONS(4875), - [aux_sym__val_number_token5] = ACTIONS(4873), - [aux_sym__val_number_token6] = ACTIONS(4875), - [anon_sym_0b] = ACTIONS(4875), - [anon_sym_0o] = ACTIONS(4875), - [anon_sym_0x] = ACTIONS(4875), - [sym_val_date] = ACTIONS(4875), - [anon_sym_DQUOTE] = ACTIONS(4873), - [sym__str_single_quotes] = ACTIONS(4873), - [sym__str_back_ticks] = ACTIONS(4873), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4873), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4873), - [anon_sym_err_GT] = ACTIONS(4875), - [anon_sym_out_GT] = ACTIONS(4875), - [anon_sym_e_GT] = ACTIONS(4875), - [anon_sym_o_GT] = ACTIONS(4875), - [anon_sym_err_PLUSout_GT] = ACTIONS(4875), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4875), - [anon_sym_o_PLUSe_GT] = ACTIONS(4875), - [anon_sym_e_PLUSo_GT] = ACTIONS(4875), - [anon_sym_err_GT_GT] = ACTIONS(4873), - [anon_sym_out_GT_GT] = ACTIONS(4873), - [anon_sym_e_GT_GT] = ACTIONS(4873), - [anon_sym_o_GT_GT] = ACTIONS(4873), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4873), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4873), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4873), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4873), - [anon_sym_EQ2] = ACTIONS(5054), - [aux_sym_unquoted_token1] = ACTIONS(4875), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(4873), - }, - [1723] = { - [sym__expr_parenthesized_immediate] = STATE(7809), - [sym_comment] = STATE(1723), - [sym__newline] = ACTIONS(4928), - [anon_sym_SEMI] = ACTIONS(4928), - [anon_sym_PIPE] = ACTIONS(4928), - [anon_sym_err_GT_PIPE] = ACTIONS(4928), - [anon_sym_out_GT_PIPE] = ACTIONS(4928), - [anon_sym_e_GT_PIPE] = ACTIONS(4928), - [anon_sym_o_GT_PIPE] = ACTIONS(4928), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4928), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4928), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4928), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4928), - [anon_sym_RPAREN] = ACTIONS(4928), - [anon_sym_GT2] = ACTIONS(4930), - [anon_sym_DASH2] = ACTIONS(4928), - [anon_sym_in2] = ACTIONS(4928), - [anon_sym_LBRACE] = ACTIONS(4928), - [anon_sym_RBRACE] = ACTIONS(4928), - [anon_sym_EQ_GT] = ACTIONS(4928), - [anon_sym_STAR2] = ACTIONS(4930), - [anon_sym_and2] = ACTIONS(4928), - [anon_sym_xor2] = ACTIONS(4928), - [anon_sym_or2] = ACTIONS(4928), - [anon_sym_not_DASHin2] = ACTIONS(4928), - [anon_sym_has2] = ACTIONS(4928), - [anon_sym_not_DASHhas2] = ACTIONS(4928), - [anon_sym_starts_DASHwith2] = ACTIONS(4928), - [anon_sym_ends_DASHwith2] = ACTIONS(4928), - [anon_sym_EQ_EQ2] = ACTIONS(4928), - [anon_sym_BANG_EQ2] = ACTIONS(4928), - [anon_sym_LT2] = ACTIONS(4930), - [anon_sym_LT_EQ2] = ACTIONS(4928), - [anon_sym_GT_EQ2] = ACTIONS(4928), - [anon_sym_EQ_TILDE2] = ACTIONS(4928), - [anon_sym_BANG_TILDE2] = ACTIONS(4928), - [anon_sym_LPAREN2] = ACTIONS(4462), - [anon_sym_STAR_STAR2] = ACTIONS(4928), - [anon_sym_PLUS_PLUS2] = ACTIONS(4928), - [anon_sym_SLASH2] = ACTIONS(4930), - [anon_sym_mod2] = ACTIONS(4928), - [anon_sym_SLASH_SLASH2] = ACTIONS(4928), - [anon_sym_PLUS2] = ACTIONS(4930), - [anon_sym_bit_DASHshl2] = ACTIONS(4928), - [anon_sym_bit_DASHshr2] = ACTIONS(4928), - [anon_sym_bit_DASHand2] = ACTIONS(4928), - [anon_sym_bit_DASHxor2] = ACTIONS(4928), - [anon_sym_bit_DASHor2] = ACTIONS(4928), - [anon_sym_err_GT] = ACTIONS(4930), - [anon_sym_out_GT] = ACTIONS(4930), - [anon_sym_e_GT] = ACTIONS(4930), - [anon_sym_o_GT] = ACTIONS(4930), - [anon_sym_err_PLUSout_GT] = ACTIONS(4930), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4930), - [anon_sym_o_PLUSe_GT] = ACTIONS(4930), - [anon_sym_e_PLUSo_GT] = ACTIONS(4930), - [anon_sym_err_GT_GT] = ACTIONS(4928), - [anon_sym_out_GT_GT] = ACTIONS(4928), - [anon_sym_e_GT_GT] = ACTIONS(4928), - [anon_sym_o_GT_GT] = ACTIONS(4928), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4928), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4928), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4928), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4928), - [anon_sym_POUND] = ACTIONS(245), - }, - [1724] = { - [sym__expr_parenthesized_immediate] = STATE(7809), - [sym_comment] = STATE(1724), - [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_RPAREN] = ACTIONS(4932), - [anon_sym_GT2] = ACTIONS(4934), - [anon_sym_DASH2] = ACTIONS(4932), - [anon_sym_in2] = ACTIONS(4932), - [anon_sym_LBRACE] = ACTIONS(4932), - [anon_sym_RBRACE] = ACTIONS(4932), - [anon_sym_EQ_GT] = ACTIONS(4932), - [anon_sym_STAR2] = ACTIONS(4934), - [anon_sym_and2] = ACTIONS(4932), - [anon_sym_xor2] = ACTIONS(4932), - [anon_sym_or2] = ACTIONS(4932), - [anon_sym_not_DASHin2] = ACTIONS(4932), - [anon_sym_has2] = ACTIONS(4932), - [anon_sym_not_DASHhas2] = ACTIONS(4932), - [anon_sym_starts_DASHwith2] = ACTIONS(4932), - [anon_sym_ends_DASHwith2] = ACTIONS(4932), - [anon_sym_EQ_EQ2] = ACTIONS(4932), - [anon_sym_BANG_EQ2] = ACTIONS(4932), - [anon_sym_LT2] = ACTIONS(4934), - [anon_sym_LT_EQ2] = ACTIONS(4932), - [anon_sym_GT_EQ2] = ACTIONS(4932), - [anon_sym_EQ_TILDE2] = ACTIONS(4932), - [anon_sym_BANG_TILDE2] = ACTIONS(4932), - [anon_sym_LPAREN2] = ACTIONS(4462), - [anon_sym_STAR_STAR2] = ACTIONS(4932), - [anon_sym_PLUS_PLUS2] = ACTIONS(4932), - [anon_sym_SLASH2] = ACTIONS(4934), - [anon_sym_mod2] = ACTIONS(4932), - [anon_sym_SLASH_SLASH2] = ACTIONS(4932), - [anon_sym_PLUS2] = ACTIONS(4934), - [anon_sym_bit_DASHshl2] = ACTIONS(4932), - [anon_sym_bit_DASHshr2] = ACTIONS(4932), - [anon_sym_bit_DASHand2] = ACTIONS(4932), - [anon_sym_bit_DASHxor2] = ACTIONS(4932), - [anon_sym_bit_DASHor2] = 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), - [anon_sym_POUND] = ACTIONS(245), - }, - [1725] = { - [sym__expr_parenthesized_immediate] = STATE(7809), - [sym_comment] = STATE(1725), - [sym__newline] = ACTIONS(4938), - [anon_sym_SEMI] = ACTIONS(4938), - [anon_sym_PIPE] = ACTIONS(4938), - [anon_sym_err_GT_PIPE] = ACTIONS(4938), - [anon_sym_out_GT_PIPE] = ACTIONS(4938), - [anon_sym_e_GT_PIPE] = ACTIONS(4938), - [anon_sym_o_GT_PIPE] = ACTIONS(4938), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4938), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4938), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4938), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4938), - [anon_sym_RPAREN] = ACTIONS(4938), - [anon_sym_GT2] = ACTIONS(4940), - [anon_sym_DASH2] = ACTIONS(4938), - [anon_sym_in2] = ACTIONS(4938), - [anon_sym_LBRACE] = ACTIONS(4938), - [anon_sym_RBRACE] = ACTIONS(4938), - [anon_sym_EQ_GT] = ACTIONS(4938), - [anon_sym_STAR2] = ACTIONS(4940), - [anon_sym_and2] = ACTIONS(4938), - [anon_sym_xor2] = ACTIONS(4938), - [anon_sym_or2] = ACTIONS(4938), - [anon_sym_not_DASHin2] = ACTIONS(4938), - [anon_sym_has2] = ACTIONS(4938), - [anon_sym_not_DASHhas2] = ACTIONS(4938), - [anon_sym_starts_DASHwith2] = ACTIONS(4938), - [anon_sym_ends_DASHwith2] = ACTIONS(4938), - [anon_sym_EQ_EQ2] = ACTIONS(4938), - [anon_sym_BANG_EQ2] = ACTIONS(4938), - [anon_sym_LT2] = ACTIONS(4940), - [anon_sym_LT_EQ2] = ACTIONS(4938), - [anon_sym_GT_EQ2] = ACTIONS(4938), - [anon_sym_EQ_TILDE2] = ACTIONS(4938), - [anon_sym_BANG_TILDE2] = ACTIONS(4938), - [anon_sym_LPAREN2] = ACTIONS(4462), - [anon_sym_STAR_STAR2] = ACTIONS(4938), - [anon_sym_PLUS_PLUS2] = ACTIONS(4938), - [anon_sym_SLASH2] = ACTIONS(4940), - [anon_sym_mod2] = ACTIONS(4938), - [anon_sym_SLASH_SLASH2] = ACTIONS(4938), - [anon_sym_PLUS2] = ACTIONS(4940), - [anon_sym_bit_DASHshl2] = ACTIONS(4938), - [anon_sym_bit_DASHshr2] = ACTIONS(4938), - [anon_sym_bit_DASHand2] = ACTIONS(4938), - [anon_sym_bit_DASHxor2] = ACTIONS(4938), - [anon_sym_bit_DASHor2] = ACTIONS(4938), - [anon_sym_err_GT] = ACTIONS(4940), - [anon_sym_out_GT] = ACTIONS(4940), - [anon_sym_e_GT] = ACTIONS(4940), - [anon_sym_o_GT] = ACTIONS(4940), - [anon_sym_err_PLUSout_GT] = ACTIONS(4940), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4940), - [anon_sym_o_PLUSe_GT] = ACTIONS(4940), - [anon_sym_e_PLUSo_GT] = ACTIONS(4940), - [anon_sym_err_GT_GT] = ACTIONS(4938), - [anon_sym_out_GT_GT] = ACTIONS(4938), - [anon_sym_e_GT_GT] = ACTIONS(4938), - [anon_sym_o_GT_GT] = ACTIONS(4938), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4938), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4938), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4938), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4938), + [1600] = { + [sym_comment] = STATE(1600), + [ts_builtin_sym_end] = ACTIONS(1762), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_DASH2] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT] = ACTIONS(1762), + [anon_sym_null] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), + [aux_sym__val_number_decimal_token1] = ACTIONS(1760), + [aux_sym__val_number_decimal_token2] = ACTIONS(1762), + [aux_sym__val_number_decimal_token3] = ACTIONS(1762), + [aux_sym__val_number_decimal_token4] = ACTIONS(1762), + [aux_sym__val_number_token1] = ACTIONS(1762), + [aux_sym__val_number_token2] = ACTIONS(1762), + [aux_sym__val_number_token3] = ACTIONS(1762), + [aux_sym__val_number_token4] = ACTIONS(1762), + [aux_sym__val_number_token5] = ACTIONS(1762), + [aux_sym__val_number_token6] = ACTIONS(1762), + [anon_sym_0b] = ACTIONS(1760), + [anon_sym_0o] = ACTIONS(1760), + [anon_sym_0x] = ACTIONS(1760), + [sym_val_date] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym__str_single_quotes] = ACTIONS(1762), + [sym__str_back_ticks] = ACTIONS(1762), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1762), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token1] = ACTIONS(1760), + [aux_sym_unquoted_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1762), + }, + [1601] = { + [sym_comment] = STATE(1601), + [sym__newline] = ACTIONS(4952), + [anon_sym_SEMI] = ACTIONS(4952), + [anon_sym_PIPE] = ACTIONS(4952), + [anon_sym_err_GT_PIPE] = ACTIONS(4952), + [anon_sym_out_GT_PIPE] = ACTIONS(4952), + [anon_sym_e_GT_PIPE] = ACTIONS(4952), + [anon_sym_o_GT_PIPE] = ACTIONS(4952), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4952), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4952), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4952), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4952), + [anon_sym_RPAREN] = ACTIONS(4952), + [anon_sym_GT2] = ACTIONS(4954), + [anon_sym_DASH2] = ACTIONS(4952), + [anon_sym_in2] = ACTIONS(4952), + [anon_sym_LBRACE] = ACTIONS(4952), + [anon_sym_RBRACE] = ACTIONS(4952), + [anon_sym_STAR2] = ACTIONS(4954), + [anon_sym_and2] = ACTIONS(4952), + [anon_sym_xor2] = ACTIONS(4952), + [anon_sym_or2] = ACTIONS(4952), + [anon_sym_not_DASHin2] = ACTIONS(4952), + [anon_sym_has2] = ACTIONS(4952), + [anon_sym_not_DASHhas2] = ACTIONS(4952), + [anon_sym_starts_DASHwith2] = ACTIONS(4952), + [anon_sym_ends_DASHwith2] = ACTIONS(4952), + [anon_sym_EQ_EQ2] = ACTIONS(4952), + [anon_sym_BANG_EQ2] = ACTIONS(4952), + [anon_sym_LT2] = ACTIONS(4954), + [anon_sym_LT_EQ2] = ACTIONS(4952), + [anon_sym_GT_EQ2] = ACTIONS(4952), + [anon_sym_EQ_TILDE2] = ACTIONS(4952), + [anon_sym_BANG_TILDE2] = ACTIONS(4952), + [anon_sym_STAR_STAR2] = ACTIONS(4952), + [anon_sym_PLUS_PLUS2] = ACTIONS(4952), + [anon_sym_SLASH2] = ACTIONS(4954), + [anon_sym_mod2] = ACTIONS(4952), + [anon_sym_SLASH_SLASH2] = ACTIONS(4952), + [anon_sym_PLUS2] = ACTIONS(4954), + [anon_sym_bit_DASHshl2] = ACTIONS(4952), + [anon_sym_bit_DASHshr2] = ACTIONS(4952), + [anon_sym_bit_DASHand2] = ACTIONS(4952), + [anon_sym_bit_DASHxor2] = ACTIONS(4952), + [anon_sym_bit_DASHor2] = ACTIONS(4952), + [anon_sym_DOT_DOT2] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), + [anon_sym_err_GT] = ACTIONS(4954), + [anon_sym_out_GT] = ACTIONS(4954), + [anon_sym_e_GT] = ACTIONS(4954), + [anon_sym_o_GT] = ACTIONS(4954), + [anon_sym_err_PLUSout_GT] = ACTIONS(4954), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4954), + [anon_sym_o_PLUSe_GT] = ACTIONS(4954), + [anon_sym_e_PLUSo_GT] = ACTIONS(4954), + [anon_sym_err_GT_GT] = ACTIONS(4952), + [anon_sym_out_GT_GT] = ACTIONS(4952), + [anon_sym_e_GT_GT] = ACTIONS(4952), + [anon_sym_o_GT_GT] = ACTIONS(4952), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4952), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4952), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4952), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4952), [anon_sym_POUND] = ACTIONS(245), }, - [1726] = { - [sym__expr_parenthesized_immediate] = STATE(7809), - [sym_comment] = STATE(1726), - [sym__newline] = ACTIONS(4946), - [anon_sym_SEMI] = ACTIONS(4946), - [anon_sym_PIPE] = ACTIONS(4946), - [anon_sym_err_GT_PIPE] = ACTIONS(4946), - [anon_sym_out_GT_PIPE] = ACTIONS(4946), - [anon_sym_e_GT_PIPE] = ACTIONS(4946), - [anon_sym_o_GT_PIPE] = ACTIONS(4946), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4946), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4946), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4946), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4946), - [anon_sym_RPAREN] = ACTIONS(4946), - [anon_sym_GT2] = ACTIONS(4948), - [anon_sym_DASH2] = ACTIONS(4946), - [anon_sym_in2] = ACTIONS(4946), - [anon_sym_LBRACE] = ACTIONS(4946), - [anon_sym_RBRACE] = ACTIONS(4946), - [anon_sym_EQ_GT] = ACTIONS(4946), - [anon_sym_STAR2] = ACTIONS(4948), - [anon_sym_and2] = ACTIONS(4946), - [anon_sym_xor2] = ACTIONS(4946), - [anon_sym_or2] = ACTIONS(4946), - [anon_sym_not_DASHin2] = ACTIONS(4946), - [anon_sym_has2] = ACTIONS(4946), - [anon_sym_not_DASHhas2] = ACTIONS(4946), - [anon_sym_starts_DASHwith2] = ACTIONS(4946), - [anon_sym_ends_DASHwith2] = ACTIONS(4946), - [anon_sym_EQ_EQ2] = ACTIONS(4946), - [anon_sym_BANG_EQ2] = ACTIONS(4946), - [anon_sym_LT2] = ACTIONS(4948), - [anon_sym_LT_EQ2] = ACTIONS(4946), - [anon_sym_GT_EQ2] = ACTIONS(4946), - [anon_sym_EQ_TILDE2] = ACTIONS(4946), - [anon_sym_BANG_TILDE2] = ACTIONS(4946), - [anon_sym_LPAREN2] = ACTIONS(4462), - [anon_sym_STAR_STAR2] = ACTIONS(4946), - [anon_sym_PLUS_PLUS2] = ACTIONS(4946), - [anon_sym_SLASH2] = ACTIONS(4948), - [anon_sym_mod2] = ACTIONS(4946), - [anon_sym_SLASH_SLASH2] = ACTIONS(4946), - [anon_sym_PLUS2] = ACTIONS(4948), - [anon_sym_bit_DASHshl2] = ACTIONS(4946), - [anon_sym_bit_DASHshr2] = ACTIONS(4946), - [anon_sym_bit_DASHand2] = ACTIONS(4946), - [anon_sym_bit_DASHxor2] = ACTIONS(4946), - [anon_sym_bit_DASHor2] = ACTIONS(4946), - [anon_sym_err_GT] = ACTIONS(4948), - [anon_sym_out_GT] = ACTIONS(4948), - [anon_sym_e_GT] = ACTIONS(4948), - [anon_sym_o_GT] = ACTIONS(4948), - [anon_sym_err_PLUSout_GT] = ACTIONS(4948), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4948), - [anon_sym_o_PLUSe_GT] = ACTIONS(4948), - [anon_sym_e_PLUSo_GT] = ACTIONS(4948), - [anon_sym_err_GT_GT] = ACTIONS(4946), - [anon_sym_out_GT_GT] = ACTIONS(4946), - [anon_sym_e_GT_GT] = ACTIONS(4946), - [anon_sym_o_GT_GT] = ACTIONS(4946), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4946), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4946), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4946), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4946), - [anon_sym_POUND] = ACTIONS(245), - }, - [1727] = { - [sym_comment] = STATE(1727), - [sym__newline] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_err_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_GT_PIPE] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), - [anon_sym_RPAREN] = ACTIONS(1650), - [anon_sym_GT2] = ACTIONS(1648), - [anon_sym_DASH2] = ACTIONS(1650), - [anon_sym_in2] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_STAR2] = ACTIONS(1648), - [anon_sym_and2] = ACTIONS(1650), - [anon_sym_xor2] = ACTIONS(1650), - [anon_sym_or2] = ACTIONS(1650), - [anon_sym_not_DASHin2] = ACTIONS(1650), - [anon_sym_has2] = ACTIONS(1650), - [anon_sym_not_DASHhas2] = ACTIONS(1650), - [anon_sym_starts_DASHwith2] = ACTIONS(1650), - [anon_sym_ends_DASHwith2] = ACTIONS(1650), - [anon_sym_EQ_EQ2] = ACTIONS(1650), - [anon_sym_BANG_EQ2] = ACTIONS(1650), - [anon_sym_LT2] = ACTIONS(1648), - [anon_sym_LT_EQ2] = ACTIONS(1650), - [anon_sym_GT_EQ2] = ACTIONS(1650), - [anon_sym_EQ_TILDE2] = ACTIONS(1650), - [anon_sym_BANG_TILDE2] = ACTIONS(1650), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_STAR_STAR2] = ACTIONS(1650), - [anon_sym_PLUS_PLUS2] = ACTIONS(1650), - [anon_sym_SLASH2] = ACTIONS(1648), - [anon_sym_mod2] = ACTIONS(1650), - [anon_sym_SLASH_SLASH2] = ACTIONS(1650), - [anon_sym_PLUS2] = ACTIONS(1648), - [anon_sym_bit_DASHshl2] = ACTIONS(1650), - [anon_sym_bit_DASHshr2] = ACTIONS(1650), - [anon_sym_bit_DASHand2] = ACTIONS(1650), - [anon_sym_bit_DASHxor2] = ACTIONS(1650), - [anon_sym_bit_DASHor2] = ACTIONS(1650), - [aux_sym__immediate_decimal_token1] = ACTIONS(5056), - [aux_sym__immediate_decimal_token2] = ACTIONS(5058), - [anon_sym_err_GT] = ACTIONS(1648), - [anon_sym_out_GT] = ACTIONS(1648), - [anon_sym_e_GT] = ACTIONS(1648), - [anon_sym_o_GT] = ACTIONS(1648), - [anon_sym_err_PLUSout_GT] = ACTIONS(1648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), - [anon_sym_o_PLUSe_GT] = ACTIONS(1648), - [anon_sym_e_PLUSo_GT] = ACTIONS(1648), - [anon_sym_err_GT_GT] = ACTIONS(1650), - [anon_sym_out_GT_GT] = ACTIONS(1650), - [anon_sym_e_GT_GT] = ACTIONS(1650), - [anon_sym_o_GT_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), - [aux_sym_unquoted_token2] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(245), - }, - [1728] = { - [sym__expr_parenthesized_immediate] = STATE(7809), - [sym_comment] = STATE(1728), - [ts_builtin_sym_end] = ACTIONS(4938), - [sym__newline] = ACTIONS(4938), - [anon_sym_SEMI] = ACTIONS(4938), - [anon_sym_PIPE] = ACTIONS(4938), - [anon_sym_err_GT_PIPE] = ACTIONS(4938), - [anon_sym_out_GT_PIPE] = ACTIONS(4938), - [anon_sym_e_GT_PIPE] = ACTIONS(4938), - [anon_sym_o_GT_PIPE] = ACTIONS(4938), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4938), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4938), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4938), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4938), - [anon_sym_LBRACK] = ACTIONS(4938), - [anon_sym_LPAREN] = ACTIONS(4940), - [anon_sym_DOLLAR] = ACTIONS(4940), - [anon_sym_DASH_DASH] = ACTIONS(4938), - [anon_sym_DASH2] = ACTIONS(4940), - [anon_sym_LBRACE] = ACTIONS(4938), - [anon_sym_DOT_DOT] = ACTIONS(4940), - [anon_sym_LPAREN2] = ACTIONS(4462), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4938), - [anon_sym_DOT_DOT_LT] = ACTIONS(4938), - [anon_sym_null] = ACTIONS(4938), - [anon_sym_true] = ACTIONS(4938), - [anon_sym_false] = ACTIONS(4938), - [aux_sym__val_number_decimal_token1] = ACTIONS(4940), - [aux_sym__val_number_decimal_token2] = ACTIONS(4938), - [aux_sym__val_number_decimal_token3] = ACTIONS(4938), - [aux_sym__val_number_decimal_token4] = ACTIONS(4938), - [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(4938), - [aux_sym__val_number_token6] = ACTIONS(4938), - [anon_sym_0b] = ACTIONS(4940), - [anon_sym_0o] = ACTIONS(4940), - [anon_sym_0x] = ACTIONS(4940), - [sym_val_date] = ACTIONS(4938), - [anon_sym_DQUOTE] = ACTIONS(4938), - [sym__str_single_quotes] = ACTIONS(4938), - [sym__str_back_ticks] = ACTIONS(4938), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4938), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4938), - [anon_sym_err_GT] = ACTIONS(4940), - [anon_sym_out_GT] = ACTIONS(4940), - [anon_sym_e_GT] = ACTIONS(4940), - [anon_sym_o_GT] = ACTIONS(4940), - [anon_sym_err_PLUSout_GT] = ACTIONS(4940), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4940), - [anon_sym_o_PLUSe_GT] = ACTIONS(4940), - [anon_sym_e_PLUSo_GT] = ACTIONS(4940), - [anon_sym_err_GT_GT] = ACTIONS(4938), - [anon_sym_out_GT_GT] = ACTIONS(4938), - [anon_sym_e_GT_GT] = ACTIONS(4938), - [anon_sym_o_GT_GT] = ACTIONS(4938), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4938), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4938), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4938), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4938), - [aux_sym_unquoted_token1] = ACTIONS(4940), + [1602] = { + [sym__expr_parenthesized_immediate] = STATE(6822), + [sym_comment] = STATE(1602), + [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_RPAREN] = ACTIONS(4956), + [anon_sym_GT2] = ACTIONS(4958), + [anon_sym_DASH2] = ACTIONS(4956), + [anon_sym_in2] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_RBRACE] = ACTIONS(4956), + [anon_sym_EQ_GT] = ACTIONS(4956), + [anon_sym_STAR2] = ACTIONS(4958), + [anon_sym_and2] = ACTIONS(4956), + [anon_sym_xor2] = ACTIONS(4956), + [anon_sym_or2] = ACTIONS(4956), + [anon_sym_not_DASHin2] = ACTIONS(4956), + [anon_sym_has2] = ACTIONS(4956), + [anon_sym_not_DASHhas2] = ACTIONS(4956), + [anon_sym_starts_DASHwith2] = ACTIONS(4956), + [anon_sym_ends_DASHwith2] = ACTIONS(4956), + [anon_sym_EQ_EQ2] = ACTIONS(4956), + [anon_sym_BANG_EQ2] = ACTIONS(4956), + [anon_sym_LT2] = ACTIONS(4958), + [anon_sym_LT_EQ2] = ACTIONS(4956), + [anon_sym_GT_EQ2] = ACTIONS(4956), + [anon_sym_EQ_TILDE2] = ACTIONS(4956), + [anon_sym_BANG_TILDE2] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_STAR_STAR2] = ACTIONS(4956), + [anon_sym_PLUS_PLUS2] = ACTIONS(4956), + [anon_sym_SLASH2] = ACTIONS(4958), + [anon_sym_mod2] = ACTIONS(4956), + [anon_sym_SLASH_SLASH2] = ACTIONS(4956), + [anon_sym_PLUS2] = ACTIONS(4958), + [anon_sym_bit_DASHshl2] = ACTIONS(4956), + [anon_sym_bit_DASHshr2] = ACTIONS(4956), + [anon_sym_bit_DASHand2] = ACTIONS(4956), + [anon_sym_bit_DASHxor2] = ACTIONS(4956), + [anon_sym_bit_DASHor2] = 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_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(4938), }, - [1729] = { - [sym__expr_parenthesized_immediate] = STATE(7809), - [sym_comment] = STATE(1729), - [ts_builtin_sym_end] = ACTIONS(4946), - [sym__newline] = ACTIONS(4946), - [anon_sym_SEMI] = ACTIONS(4946), - [anon_sym_PIPE] = ACTIONS(4946), - [anon_sym_err_GT_PIPE] = ACTIONS(4946), - [anon_sym_out_GT_PIPE] = ACTIONS(4946), - [anon_sym_e_GT_PIPE] = ACTIONS(4946), - [anon_sym_o_GT_PIPE] = ACTIONS(4946), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4946), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4946), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4946), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4946), - [anon_sym_LBRACK] = ACTIONS(4946), - [anon_sym_LPAREN] = ACTIONS(4948), - [anon_sym_DOLLAR] = ACTIONS(4948), - [anon_sym_DASH_DASH] = ACTIONS(4946), - [anon_sym_DASH2] = ACTIONS(4948), - [anon_sym_LBRACE] = ACTIONS(4946), - [anon_sym_DOT_DOT] = ACTIONS(4948), - [anon_sym_LPAREN2] = ACTIONS(4462), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4946), - [anon_sym_DOT_DOT_LT] = ACTIONS(4946), - [anon_sym_null] = ACTIONS(4946), - [anon_sym_true] = ACTIONS(4946), - [anon_sym_false] = ACTIONS(4946), - [aux_sym__val_number_decimal_token1] = ACTIONS(4948), - [aux_sym__val_number_decimal_token2] = ACTIONS(4946), - [aux_sym__val_number_decimal_token3] = ACTIONS(4946), - [aux_sym__val_number_decimal_token4] = ACTIONS(4946), - [aux_sym__val_number_token1] = ACTIONS(4946), - [aux_sym__val_number_token2] = ACTIONS(4946), - [aux_sym__val_number_token3] = ACTIONS(4946), - [aux_sym__val_number_token4] = ACTIONS(4946), - [aux_sym__val_number_token5] = ACTIONS(4946), - [aux_sym__val_number_token6] = ACTIONS(4946), - [anon_sym_0b] = ACTIONS(4948), - [anon_sym_0o] = ACTIONS(4948), - [anon_sym_0x] = ACTIONS(4948), - [sym_val_date] = ACTIONS(4946), - [anon_sym_DQUOTE] = ACTIONS(4946), - [sym__str_single_quotes] = ACTIONS(4946), - [sym__str_back_ticks] = ACTIONS(4946), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4946), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4946), - [anon_sym_err_GT] = ACTIONS(4948), - [anon_sym_out_GT] = ACTIONS(4948), - [anon_sym_e_GT] = ACTIONS(4948), - [anon_sym_o_GT] = ACTIONS(4948), - [anon_sym_err_PLUSout_GT] = ACTIONS(4948), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4948), - [anon_sym_o_PLUSe_GT] = ACTIONS(4948), - [anon_sym_e_PLUSo_GT] = ACTIONS(4948), - [anon_sym_err_GT_GT] = ACTIONS(4946), - [anon_sym_out_GT_GT] = ACTIONS(4946), - [anon_sym_e_GT_GT] = ACTIONS(4946), - [anon_sym_o_GT_GT] = ACTIONS(4946), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4946), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4946), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4946), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4946), - [aux_sym_unquoted_token1] = ACTIONS(4948), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(4946), - }, - [1730] = { - [sym_comment] = STATE(1730), - [sym__newline] = ACTIONS(5060), - [anon_sym_SEMI] = ACTIONS(5060), - [anon_sym_PIPE] = ACTIONS(5060), - [anon_sym_err_GT_PIPE] = ACTIONS(5060), - [anon_sym_out_GT_PIPE] = ACTIONS(5060), - [anon_sym_e_GT_PIPE] = ACTIONS(5060), - [anon_sym_o_GT_PIPE] = ACTIONS(5060), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5060), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5060), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5060), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5060), - [anon_sym_LBRACK] = ACTIONS(5060), - [anon_sym_LPAREN] = ACTIONS(5060), - [anon_sym_RPAREN] = ACTIONS(5060), - [anon_sym_DOLLAR] = ACTIONS(5062), - [anon_sym_DASH_DASH] = ACTIONS(5060), - [anon_sym_DASH2] = ACTIONS(5062), - [anon_sym_LBRACE] = ACTIONS(5060), - [anon_sym_RBRACE] = ACTIONS(5060), - [anon_sym_DOT_DOT] = ACTIONS(5062), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5060), - [anon_sym_DOT_DOT_LT] = ACTIONS(5060), - [anon_sym_null] = ACTIONS(5060), - [anon_sym_true] = ACTIONS(5060), - [anon_sym_false] = ACTIONS(5060), - [aux_sym__val_number_decimal_token1] = ACTIONS(5062), - [aux_sym__val_number_decimal_token2] = ACTIONS(5060), - [aux_sym__val_number_decimal_token3] = ACTIONS(5060), - [aux_sym__val_number_decimal_token4] = ACTIONS(5060), - [aux_sym__val_number_token1] = ACTIONS(5060), - [aux_sym__val_number_token2] = ACTIONS(5060), - [aux_sym__val_number_token3] = ACTIONS(5060), - [aux_sym__val_number_token4] = ACTIONS(5060), - [aux_sym__val_number_token5] = ACTIONS(5060), - [aux_sym__val_number_token6] = ACTIONS(5060), - [anon_sym_0b] = ACTIONS(5062), - [anon_sym_0o] = ACTIONS(5062), - [anon_sym_0x] = ACTIONS(5062), - [sym_val_date] = ACTIONS(5060), - [anon_sym_DQUOTE] = ACTIONS(5060), - [sym__str_single_quotes] = ACTIONS(5060), - [sym__str_back_ticks] = ACTIONS(5060), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5060), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5060), - [anon_sym_err_GT] = ACTIONS(5062), - [anon_sym_out_GT] = ACTIONS(5062), - [anon_sym_e_GT] = ACTIONS(5062), - [anon_sym_o_GT] = ACTIONS(5062), - [anon_sym_err_PLUSout_GT] = ACTIONS(5062), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5062), - [anon_sym_o_PLUSe_GT] = ACTIONS(5062), - [anon_sym_e_PLUSo_GT] = ACTIONS(5062), - [anon_sym_err_GT_GT] = ACTIONS(5060), - [anon_sym_out_GT_GT] = ACTIONS(5060), - [anon_sym_e_GT_GT] = ACTIONS(5060), - [anon_sym_o_GT_GT] = ACTIONS(5060), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5060), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5060), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5060), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5060), - [anon_sym_EQ2] = ACTIONS(5064), - [aux_sym_unquoted_token1] = ACTIONS(5062), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(5060), - }, - [1731] = { - [sym_comment] = STATE(1731), - [ts_builtin_sym_end] = ACTIONS(944), - [sym__newline] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(944), - [anon_sym_err_GT_PIPE] = ACTIONS(944), - [anon_sym_out_GT_PIPE] = ACTIONS(944), - [anon_sym_e_GT_PIPE] = ACTIONS(944), - [anon_sym_o_GT_PIPE] = ACTIONS(944), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(944), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(944), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(944), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(944), - [anon_sym_GT2] = ACTIONS(942), - [anon_sym_DASH2] = ACTIONS(944), - [anon_sym_in2] = ACTIONS(944), - [anon_sym_STAR2] = ACTIONS(942), - [anon_sym_QMARK2] = ACTIONS(5066), - [anon_sym_and2] = ACTIONS(944), - [anon_sym_xor2] = ACTIONS(944), - [anon_sym_or2] = ACTIONS(944), - [anon_sym_not_DASHin2] = ACTIONS(944), - [anon_sym_has2] = ACTIONS(944), - [anon_sym_not_DASHhas2] = ACTIONS(944), - [anon_sym_starts_DASHwith2] = ACTIONS(944), - [anon_sym_ends_DASHwith2] = ACTIONS(944), - [anon_sym_EQ_EQ2] = ACTIONS(944), - [anon_sym_BANG_EQ2] = ACTIONS(944), - [anon_sym_LT2] = ACTIONS(942), - [anon_sym_LT_EQ2] = ACTIONS(944), - [anon_sym_GT_EQ2] = ACTIONS(944), - [anon_sym_EQ_TILDE2] = ACTIONS(944), - [anon_sym_BANG_TILDE2] = ACTIONS(944), - [anon_sym_STAR_STAR2] = ACTIONS(944), - [anon_sym_PLUS_PLUS2] = ACTIONS(944), - [anon_sym_SLASH2] = ACTIONS(942), - [anon_sym_mod2] = ACTIONS(944), - [anon_sym_SLASH_SLASH2] = ACTIONS(944), - [anon_sym_PLUS2] = ACTIONS(942), - [anon_sym_bit_DASHshl2] = ACTIONS(944), - [anon_sym_bit_DASHshr2] = ACTIONS(944), - [anon_sym_bit_DASHand2] = ACTIONS(944), - [anon_sym_bit_DASHxor2] = ACTIONS(944), - [anon_sym_bit_DASHor2] = ACTIONS(944), - [anon_sym_DOT_DOT2] = ACTIONS(942), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(944), - [anon_sym_DOT_DOT_LT2] = ACTIONS(944), - [anon_sym_DOT2] = ACTIONS(942), - [anon_sym_err_GT] = ACTIONS(942), - [anon_sym_out_GT] = ACTIONS(942), - [anon_sym_e_GT] = ACTIONS(942), - [anon_sym_o_GT] = ACTIONS(942), - [anon_sym_err_PLUSout_GT] = ACTIONS(942), - [anon_sym_out_PLUSerr_GT] = ACTIONS(942), - [anon_sym_o_PLUSe_GT] = ACTIONS(942), - [anon_sym_e_PLUSo_GT] = ACTIONS(942), - [anon_sym_err_GT_GT] = ACTIONS(944), - [anon_sym_out_GT_GT] = ACTIONS(944), - [anon_sym_e_GT_GT] = ACTIONS(944), - [anon_sym_o_GT_GT] = ACTIONS(944), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(944), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(944), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(944), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(944), + [1603] = { + [sym__expr_parenthesized_immediate] = STATE(6822), + [sym_comment] = STATE(1603), + [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_RPAREN] = ACTIONS(4956), + [anon_sym_GT2] = ACTIONS(4958), + [anon_sym_DASH2] = ACTIONS(4956), + [anon_sym_in2] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_RBRACE] = ACTIONS(4956), + [anon_sym_EQ_GT] = ACTIONS(4956), + [anon_sym_STAR2] = ACTIONS(4958), + [anon_sym_and2] = ACTIONS(4956), + [anon_sym_xor2] = ACTIONS(4956), + [anon_sym_or2] = ACTIONS(4956), + [anon_sym_not_DASHin2] = ACTIONS(4956), + [anon_sym_has2] = ACTIONS(4956), + [anon_sym_not_DASHhas2] = ACTIONS(4956), + [anon_sym_starts_DASHwith2] = ACTIONS(4956), + [anon_sym_ends_DASHwith2] = ACTIONS(4956), + [anon_sym_EQ_EQ2] = ACTIONS(4956), + [anon_sym_BANG_EQ2] = ACTIONS(4956), + [anon_sym_LT2] = ACTIONS(4958), + [anon_sym_LT_EQ2] = ACTIONS(4956), + [anon_sym_GT_EQ2] = ACTIONS(4956), + [anon_sym_EQ_TILDE2] = ACTIONS(4956), + [anon_sym_BANG_TILDE2] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_STAR_STAR2] = ACTIONS(4956), + [anon_sym_PLUS_PLUS2] = ACTIONS(4956), + [anon_sym_SLASH2] = ACTIONS(4958), + [anon_sym_mod2] = ACTIONS(4956), + [anon_sym_SLASH_SLASH2] = ACTIONS(4956), + [anon_sym_PLUS2] = ACTIONS(4958), + [anon_sym_bit_DASHshl2] = ACTIONS(4956), + [anon_sym_bit_DASHshr2] = ACTIONS(4956), + [anon_sym_bit_DASHand2] = ACTIONS(4956), + [anon_sym_bit_DASHxor2] = ACTIONS(4956), + [anon_sym_bit_DASHor2] = 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_POUND] = ACTIONS(245), }, - [1732] = { - [sym_comment] = STATE(1732), - [ts_builtin_sym_end] = ACTIONS(950), - [sym__newline] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_PIPE] = ACTIONS(950), - [anon_sym_err_GT_PIPE] = ACTIONS(950), - [anon_sym_out_GT_PIPE] = ACTIONS(950), - [anon_sym_e_GT_PIPE] = ACTIONS(950), - [anon_sym_o_GT_PIPE] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), - [anon_sym_GT2] = ACTIONS(948), - [anon_sym_DASH2] = ACTIONS(950), - [anon_sym_in2] = ACTIONS(950), - [anon_sym_STAR2] = ACTIONS(948), - [anon_sym_QMARK2] = ACTIONS(5068), - [anon_sym_and2] = ACTIONS(950), - [anon_sym_xor2] = ACTIONS(950), - [anon_sym_or2] = ACTIONS(950), - [anon_sym_not_DASHin2] = ACTIONS(950), - [anon_sym_has2] = ACTIONS(950), - [anon_sym_not_DASHhas2] = ACTIONS(950), - [anon_sym_starts_DASHwith2] = ACTIONS(950), - [anon_sym_ends_DASHwith2] = ACTIONS(950), - [anon_sym_EQ_EQ2] = ACTIONS(950), - [anon_sym_BANG_EQ2] = ACTIONS(950), - [anon_sym_LT2] = ACTIONS(948), - [anon_sym_LT_EQ2] = ACTIONS(950), - [anon_sym_GT_EQ2] = ACTIONS(950), - [anon_sym_EQ_TILDE2] = ACTIONS(950), - [anon_sym_BANG_TILDE2] = ACTIONS(950), - [anon_sym_STAR_STAR2] = ACTIONS(950), - [anon_sym_PLUS_PLUS2] = ACTIONS(950), - [anon_sym_SLASH2] = ACTIONS(948), - [anon_sym_mod2] = ACTIONS(950), - [anon_sym_SLASH_SLASH2] = ACTIONS(950), - [anon_sym_PLUS2] = ACTIONS(948), - [anon_sym_bit_DASHshl2] = ACTIONS(950), - [anon_sym_bit_DASHshr2] = ACTIONS(950), - [anon_sym_bit_DASHand2] = ACTIONS(950), - [anon_sym_bit_DASHxor2] = ACTIONS(950), - [anon_sym_bit_DASHor2] = ACTIONS(950), - [anon_sym_DOT_DOT2] = ACTIONS(948), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), - [anon_sym_DOT_DOT_LT2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(948), - [anon_sym_err_GT] = ACTIONS(948), - [anon_sym_out_GT] = ACTIONS(948), - [anon_sym_e_GT] = ACTIONS(948), - [anon_sym_o_GT] = ACTIONS(948), - [anon_sym_err_PLUSout_GT] = ACTIONS(948), - [anon_sym_out_PLUSerr_GT] = ACTIONS(948), - [anon_sym_o_PLUSe_GT] = ACTIONS(948), - [anon_sym_e_PLUSo_GT] = ACTIONS(948), - [anon_sym_err_GT_GT] = ACTIONS(950), - [anon_sym_out_GT_GT] = ACTIONS(950), - [anon_sym_e_GT_GT] = ACTIONS(950), - [anon_sym_o_GT_GT] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), - [anon_sym_POUND] = ACTIONS(245), - }, - [1733] = { - [sym_comment] = STATE(1733), - [ts_builtin_sym_end] = ACTIONS(960), - [sym__newline] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_err_GT_PIPE] = ACTIONS(960), - [anon_sym_out_GT_PIPE] = ACTIONS(960), - [anon_sym_e_GT_PIPE] = ACTIONS(960), - [anon_sym_o_GT_PIPE] = ACTIONS(960), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_DOLLAR] = ACTIONS(958), - [anon_sym_DASH_DASH] = ACTIONS(960), - [anon_sym_DASH2] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_DOT_DOT] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(960), - [anon_sym_DOT_DOT_EQ] = ACTIONS(960), - [anon_sym_DOT_DOT_LT] = ACTIONS(960), - [anon_sym_null] = ACTIONS(960), - [anon_sym_true] = ACTIONS(960), - [anon_sym_false] = ACTIONS(960), - [aux_sym__val_number_decimal_token1] = ACTIONS(958), - [aux_sym__val_number_decimal_token2] = ACTIONS(960), - [aux_sym__val_number_decimal_token3] = ACTIONS(960), - [aux_sym__val_number_decimal_token4] = ACTIONS(960), - [aux_sym__val_number_token1] = ACTIONS(960), - [aux_sym__val_number_token2] = ACTIONS(960), - [aux_sym__val_number_token3] = ACTIONS(960), - [aux_sym__val_number_token4] = ACTIONS(960), - [aux_sym__val_number_token5] = ACTIONS(960), - [aux_sym__val_number_token6] = ACTIONS(960), - [anon_sym_0b] = ACTIONS(958), - [anon_sym_0o] = ACTIONS(958), - [anon_sym_0x] = ACTIONS(958), - [sym_val_date] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(960), - [sym__str_single_quotes] = ACTIONS(960), - [sym__str_back_ticks] = ACTIONS(960), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(960), - [anon_sym_DOT2] = ACTIONS(958), - [anon_sym_err_GT] = ACTIONS(958), - [anon_sym_out_GT] = ACTIONS(958), - [anon_sym_e_GT] = ACTIONS(958), - [anon_sym_o_GT] = ACTIONS(958), - [anon_sym_err_PLUSout_GT] = ACTIONS(958), - [anon_sym_out_PLUSerr_GT] = ACTIONS(958), - [anon_sym_o_PLUSe_GT] = ACTIONS(958), - [anon_sym_e_PLUSo_GT] = ACTIONS(958), - [anon_sym_err_GT_GT] = ACTIONS(960), - [anon_sym_out_GT_GT] = ACTIONS(960), - [anon_sym_e_GT_GT] = ACTIONS(960), - [anon_sym_o_GT_GT] = ACTIONS(960), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(960), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(960), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(960), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), - [aux_sym_unquoted_token1] = ACTIONS(958), + [1604] = { + [sym__expr_parenthesized_immediate] = STATE(6822), + [sym_comment] = STATE(1604), + [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_RPAREN] = ACTIONS(4956), + [anon_sym_GT2] = ACTIONS(4958), + [anon_sym_DASH2] = ACTIONS(4956), + [anon_sym_in2] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_RBRACE] = ACTIONS(4956), + [anon_sym_EQ_GT] = ACTIONS(4956), + [anon_sym_STAR2] = ACTIONS(4958), + [anon_sym_and2] = ACTIONS(4956), + [anon_sym_xor2] = ACTIONS(4956), + [anon_sym_or2] = ACTIONS(4956), + [anon_sym_not_DASHin2] = ACTIONS(4956), + [anon_sym_has2] = ACTIONS(4956), + [anon_sym_not_DASHhas2] = ACTIONS(4956), + [anon_sym_starts_DASHwith2] = ACTIONS(4956), + [anon_sym_ends_DASHwith2] = ACTIONS(4956), + [anon_sym_EQ_EQ2] = ACTIONS(4956), + [anon_sym_BANG_EQ2] = ACTIONS(4956), + [anon_sym_LT2] = ACTIONS(4958), + [anon_sym_LT_EQ2] = ACTIONS(4956), + [anon_sym_GT_EQ2] = ACTIONS(4956), + [anon_sym_EQ_TILDE2] = ACTIONS(4956), + [anon_sym_BANG_TILDE2] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_STAR_STAR2] = ACTIONS(4956), + [anon_sym_PLUS_PLUS2] = ACTIONS(4956), + [anon_sym_SLASH2] = ACTIONS(4958), + [anon_sym_mod2] = ACTIONS(4956), + [anon_sym_SLASH_SLASH2] = ACTIONS(4956), + [anon_sym_PLUS2] = ACTIONS(4958), + [anon_sym_bit_DASHshl2] = ACTIONS(4956), + [anon_sym_bit_DASHshr2] = ACTIONS(4956), + [anon_sym_bit_DASHand2] = ACTIONS(4956), + [anon_sym_bit_DASHxor2] = ACTIONS(4956), + [anon_sym_bit_DASHor2] = 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_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(960), }, - [1734] = { - [sym_comment] = STATE(1734), - [ts_builtin_sym_end] = ACTIONS(956), - [sym__newline] = ACTIONS(956), - [anon_sym_SEMI] = ACTIONS(956), - [anon_sym_PIPE] = ACTIONS(956), - [anon_sym_err_GT_PIPE] = ACTIONS(956), - [anon_sym_out_GT_PIPE] = ACTIONS(956), - [anon_sym_e_GT_PIPE] = ACTIONS(956), - [anon_sym_o_GT_PIPE] = ACTIONS(956), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(956), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(956), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(956), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(956), - [anon_sym_LBRACK] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(956), - [anon_sym_DOLLAR] = ACTIONS(954), - [anon_sym_DASH_DASH] = ACTIONS(956), - [anon_sym_DASH2] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(956), - [anon_sym_DOT_DOT] = ACTIONS(954), - [anon_sym_QMARK2] = ACTIONS(956), - [anon_sym_DOT_DOT_EQ] = ACTIONS(956), - [anon_sym_DOT_DOT_LT] = ACTIONS(956), - [anon_sym_null] = ACTIONS(956), - [anon_sym_true] = ACTIONS(956), - [anon_sym_false] = ACTIONS(956), - [aux_sym__val_number_decimal_token1] = ACTIONS(954), - [aux_sym__val_number_decimal_token2] = ACTIONS(956), - [aux_sym__val_number_decimal_token3] = ACTIONS(956), - [aux_sym__val_number_decimal_token4] = ACTIONS(956), - [aux_sym__val_number_token1] = ACTIONS(956), - [aux_sym__val_number_token2] = ACTIONS(956), - [aux_sym__val_number_token3] = ACTIONS(956), - [aux_sym__val_number_token4] = ACTIONS(956), - [aux_sym__val_number_token5] = ACTIONS(956), - [aux_sym__val_number_token6] = ACTIONS(956), - [anon_sym_0b] = ACTIONS(954), - [anon_sym_0o] = ACTIONS(954), - [anon_sym_0x] = ACTIONS(954), - [sym_val_date] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(956), - [sym__str_single_quotes] = ACTIONS(956), - [sym__str_back_ticks] = ACTIONS(956), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(956), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(956), - [anon_sym_DOT2] = ACTIONS(954), - [anon_sym_err_GT] = ACTIONS(954), - [anon_sym_out_GT] = ACTIONS(954), - [anon_sym_e_GT] = ACTIONS(954), - [anon_sym_o_GT] = ACTIONS(954), - [anon_sym_err_PLUSout_GT] = ACTIONS(954), - [anon_sym_out_PLUSerr_GT] = ACTIONS(954), - [anon_sym_o_PLUSe_GT] = ACTIONS(954), - [anon_sym_e_PLUSo_GT] = ACTIONS(954), - [anon_sym_err_GT_GT] = ACTIONS(956), - [anon_sym_out_GT_GT] = ACTIONS(956), - [anon_sym_e_GT_GT] = ACTIONS(956), - [anon_sym_o_GT_GT] = ACTIONS(956), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(956), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(956), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(956), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(956), - [aux_sym_unquoted_token1] = ACTIONS(954), + [1605] = { + [sym__expr_parenthesized_immediate] = STATE(6822), + [sym_comment] = STATE(1605), + [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_RPAREN] = ACTIONS(4956), + [anon_sym_GT2] = ACTIONS(4958), + [anon_sym_DASH2] = ACTIONS(4956), + [anon_sym_in2] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_RBRACE] = ACTIONS(4956), + [anon_sym_EQ_GT] = ACTIONS(4956), + [anon_sym_STAR2] = ACTIONS(4958), + [anon_sym_and2] = ACTIONS(4956), + [anon_sym_xor2] = ACTIONS(4956), + [anon_sym_or2] = ACTIONS(4956), + [anon_sym_not_DASHin2] = ACTIONS(4956), + [anon_sym_has2] = ACTIONS(4956), + [anon_sym_not_DASHhas2] = ACTIONS(4956), + [anon_sym_starts_DASHwith2] = ACTIONS(4956), + [anon_sym_ends_DASHwith2] = ACTIONS(4956), + [anon_sym_EQ_EQ2] = ACTIONS(4956), + [anon_sym_BANG_EQ2] = ACTIONS(4956), + [anon_sym_LT2] = ACTIONS(4958), + [anon_sym_LT_EQ2] = ACTIONS(4956), + [anon_sym_GT_EQ2] = ACTIONS(4956), + [anon_sym_EQ_TILDE2] = ACTIONS(4956), + [anon_sym_BANG_TILDE2] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_STAR_STAR2] = ACTIONS(4956), + [anon_sym_PLUS_PLUS2] = ACTIONS(4956), + [anon_sym_SLASH2] = ACTIONS(4958), + [anon_sym_mod2] = ACTIONS(4956), + [anon_sym_SLASH_SLASH2] = ACTIONS(4956), + [anon_sym_PLUS2] = ACTIONS(4958), + [anon_sym_bit_DASHshl2] = ACTIONS(4956), + [anon_sym_bit_DASHshr2] = ACTIONS(4956), + [anon_sym_bit_DASHand2] = ACTIONS(4956), + [anon_sym_bit_DASHxor2] = ACTIONS(4956), + [anon_sym_bit_DASHor2] = 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_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(956), }, - [1735] = { - [sym_comment] = STATE(1735), - [sym__newline] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_PIPE] = ACTIONS(1278), - [anon_sym_err_GT_PIPE] = ACTIONS(1278), - [anon_sym_out_GT_PIPE] = ACTIONS(1278), - [anon_sym_e_GT_PIPE] = ACTIONS(1278), - [anon_sym_o_GT_PIPE] = ACTIONS(1278), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1278), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1278), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1278), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1278), - [anon_sym_COLON] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_RPAREN] = ACTIONS(1278), - [anon_sym_GT2] = ACTIONS(1280), - [anon_sym_DASH2] = ACTIONS(1278), - [anon_sym_in2] = ACTIONS(1278), - [anon_sym_else] = ACTIONS(1278), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_catch] = ACTIONS(1278), - [anon_sym_STAR2] = ACTIONS(1280), - [anon_sym_and2] = ACTIONS(1278), - [anon_sym_xor2] = ACTIONS(1278), - [anon_sym_or2] = ACTIONS(1278), - [anon_sym_not_DASHin2] = ACTIONS(1278), - [anon_sym_has2] = ACTIONS(1278), - [anon_sym_not_DASHhas2] = ACTIONS(1278), - [anon_sym_starts_DASHwith2] = ACTIONS(1278), - [anon_sym_ends_DASHwith2] = ACTIONS(1278), - [anon_sym_EQ_EQ2] = ACTIONS(1278), - [anon_sym_BANG_EQ2] = ACTIONS(1278), - [anon_sym_LT2] = ACTIONS(1280), - [anon_sym_LT_EQ2] = ACTIONS(1278), - [anon_sym_GT_EQ2] = ACTIONS(1278), - [anon_sym_EQ_TILDE2] = ACTIONS(1278), - [anon_sym_BANG_TILDE2] = ACTIONS(1278), - [anon_sym_STAR_STAR2] = ACTIONS(1278), - [anon_sym_PLUS_PLUS2] = ACTIONS(1278), - [anon_sym_SLASH2] = ACTIONS(1280), - [anon_sym_mod2] = ACTIONS(1278), - [anon_sym_SLASH_SLASH2] = ACTIONS(1278), - [anon_sym_PLUS2] = ACTIONS(1280), - [anon_sym_bit_DASHshl2] = ACTIONS(1278), - [anon_sym_bit_DASHshr2] = ACTIONS(1278), - [anon_sym_bit_DASHand2] = ACTIONS(1278), - [anon_sym_bit_DASHxor2] = ACTIONS(1278), - [anon_sym_bit_DASHor2] = ACTIONS(1278), - [anon_sym_err_GT] = ACTIONS(1280), - [anon_sym_out_GT] = ACTIONS(1280), - [anon_sym_e_GT] = ACTIONS(1280), - [anon_sym_o_GT] = ACTIONS(1280), - [anon_sym_err_PLUSout_GT] = ACTIONS(1280), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1280), - [anon_sym_o_PLUSe_GT] = ACTIONS(1280), - [anon_sym_e_PLUSo_GT] = ACTIONS(1280), - [anon_sym_err_GT_GT] = ACTIONS(1278), - [anon_sym_out_GT_GT] = ACTIONS(1278), - [anon_sym_e_GT_GT] = ACTIONS(1278), - [anon_sym_o_GT_GT] = ACTIONS(1278), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1278), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1278), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1278), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1278), - [anon_sym_POUND] = ACTIONS(245), - }, - [1736] = { - [sym_comment] = STATE(1736), - [ts_builtin_sym_end] = ACTIONS(964), - [sym__newline] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(964), - [anon_sym_err_GT_PIPE] = ACTIONS(964), - [anon_sym_out_GT_PIPE] = ACTIONS(964), - [anon_sym_e_GT_PIPE] = ACTIONS(964), - [anon_sym_o_GT_PIPE] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(964), - [anon_sym_LBRACK] = ACTIONS(964), - [anon_sym_LPAREN] = ACTIONS(964), - [anon_sym_DOLLAR] = ACTIONS(962), - [anon_sym_DASH_DASH] = ACTIONS(964), - [anon_sym_DASH2] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_DOT_DOT] = ACTIONS(962), - [anon_sym_QMARK2] = ACTIONS(964), - [anon_sym_DOT_DOT_EQ] = ACTIONS(964), - [anon_sym_DOT_DOT_LT] = ACTIONS(964), - [anon_sym_null] = ACTIONS(964), - [anon_sym_true] = ACTIONS(964), - [anon_sym_false] = ACTIONS(964), - [aux_sym__val_number_decimal_token1] = ACTIONS(962), - [aux_sym__val_number_decimal_token2] = ACTIONS(964), - [aux_sym__val_number_decimal_token3] = ACTIONS(964), - [aux_sym__val_number_decimal_token4] = ACTIONS(964), - [aux_sym__val_number_token1] = ACTIONS(964), - [aux_sym__val_number_token2] = ACTIONS(964), - [aux_sym__val_number_token3] = ACTIONS(964), - [aux_sym__val_number_token4] = ACTIONS(964), - [aux_sym__val_number_token5] = ACTIONS(964), - [aux_sym__val_number_token6] = ACTIONS(964), - [anon_sym_0b] = ACTIONS(962), - [anon_sym_0o] = ACTIONS(962), - [anon_sym_0x] = ACTIONS(962), - [sym_val_date] = ACTIONS(964), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym__str_single_quotes] = ACTIONS(964), - [sym__str_back_ticks] = ACTIONS(964), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(964), - [anon_sym_DOT2] = ACTIONS(962), - [anon_sym_err_GT] = ACTIONS(962), - [anon_sym_out_GT] = ACTIONS(962), - [anon_sym_e_GT] = ACTIONS(962), - [anon_sym_o_GT] = ACTIONS(962), - [anon_sym_err_PLUSout_GT] = ACTIONS(962), - [anon_sym_out_PLUSerr_GT] = ACTIONS(962), - [anon_sym_o_PLUSe_GT] = ACTIONS(962), - [anon_sym_e_PLUSo_GT] = ACTIONS(962), - [anon_sym_err_GT_GT] = ACTIONS(964), - [anon_sym_out_GT_GT] = ACTIONS(964), - [anon_sym_e_GT_GT] = ACTIONS(964), - [anon_sym_o_GT_GT] = ACTIONS(964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(964), - [aux_sym_unquoted_token1] = ACTIONS(962), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(964), - }, - [1737] = { - [sym_comment] = STATE(1737), - [ts_builtin_sym_end] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_DOLLAR] = ACTIONS(966), - [anon_sym_DASH_DASH] = ACTIONS(968), - [anon_sym_DASH2] = ACTIONS(966), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_DOT_DOT] = ACTIONS(966), - [anon_sym_QMARK2] = ACTIONS(968), - [anon_sym_DOT_DOT_EQ] = ACTIONS(968), - [anon_sym_DOT_DOT_LT] = ACTIONS(968), - [anon_sym_null] = ACTIONS(968), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = ACTIONS(968), - [aux_sym__val_number_decimal_token1] = ACTIONS(966), - [aux_sym__val_number_decimal_token2] = ACTIONS(968), - [aux_sym__val_number_decimal_token3] = ACTIONS(968), - [aux_sym__val_number_decimal_token4] = ACTIONS(968), - [aux_sym__val_number_token1] = ACTIONS(968), - [aux_sym__val_number_token2] = ACTIONS(968), - [aux_sym__val_number_token3] = ACTIONS(968), - [aux_sym__val_number_token4] = ACTIONS(968), - [aux_sym__val_number_token5] = ACTIONS(968), - [aux_sym__val_number_token6] = ACTIONS(968), - [anon_sym_0b] = ACTIONS(966), - [anon_sym_0o] = ACTIONS(966), - [anon_sym_0x] = ACTIONS(966), - [sym_val_date] = ACTIONS(968), - [anon_sym_DQUOTE] = ACTIONS(968), - [sym__str_single_quotes] = ACTIONS(968), - [sym__str_back_ticks] = ACTIONS(968), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(968), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(968), - [anon_sym_DOT2] = ACTIONS(966), - [anon_sym_err_GT] = ACTIONS(966), - [anon_sym_out_GT] = ACTIONS(966), - [anon_sym_e_GT] = ACTIONS(966), - [anon_sym_o_GT] = ACTIONS(966), - [anon_sym_err_PLUSout_GT] = ACTIONS(966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(966), - [anon_sym_o_PLUSe_GT] = ACTIONS(966), - [anon_sym_e_PLUSo_GT] = ACTIONS(966), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [aux_sym_unquoted_token1] = ACTIONS(966), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(968), - }, - [1738] = { - [sym_comment] = STATE(1738), - [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(1591), - [anon_sym_RPAREN] = ACTIONS(1591), - [anon_sym_DOLLAR] = ACTIONS(1579), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_DASH2] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1591), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1579), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1591), - [anon_sym_DOT_DOT_LT] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [aux_sym__val_number_decimal_token1] = ACTIONS(1579), - [aux_sym__val_number_decimal_token2] = ACTIONS(1591), - [aux_sym__val_number_decimal_token3] = ACTIONS(1591), - [aux_sym__val_number_decimal_token4] = ACTIONS(1591), - [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(1579), - [anon_sym_0o] = ACTIONS(1579), - [anon_sym_0x] = ACTIONS(1579), - [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(1579), - [anon_sym_out_GT] = ACTIONS(1579), - [anon_sym_e_GT] = ACTIONS(1579), - [anon_sym_o_GT] = ACTIONS(1579), - [anon_sym_err_PLUSout_GT] = ACTIONS(1579), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1579), - [anon_sym_o_PLUSe_GT] = ACTIONS(1579), - [anon_sym_e_PLUSo_GT] = ACTIONS(1579), - [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(1579), - [aux_sym_unquoted_token2] = ACTIONS(4681), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1591), - }, - [1739] = { - [sym_comment] = STATE(1739), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_RPAREN] = ACTIONS(1668), - [anon_sym_GT2] = ACTIONS(1666), - [anon_sym_DASH2] = ACTIONS(1668), - [anon_sym_in2] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_STAR2] = ACTIONS(1666), - [anon_sym_and2] = ACTIONS(1668), - [anon_sym_xor2] = ACTIONS(1668), - [anon_sym_or2] = ACTIONS(1668), - [anon_sym_not_DASHin2] = ACTIONS(1668), - [anon_sym_has2] = ACTIONS(1668), - [anon_sym_not_DASHhas2] = ACTIONS(1668), - [anon_sym_starts_DASHwith2] = ACTIONS(1668), - [anon_sym_ends_DASHwith2] = ACTIONS(1668), - [anon_sym_EQ_EQ2] = ACTIONS(1668), - [anon_sym_BANG_EQ2] = ACTIONS(1668), - [anon_sym_LT2] = ACTIONS(1666), - [anon_sym_LT_EQ2] = ACTIONS(1668), - [anon_sym_GT_EQ2] = ACTIONS(1668), - [anon_sym_EQ_TILDE2] = ACTIONS(1668), - [anon_sym_BANG_TILDE2] = ACTIONS(1668), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_STAR_STAR2] = ACTIONS(1668), - [anon_sym_PLUS_PLUS2] = ACTIONS(1668), - [anon_sym_SLASH2] = ACTIONS(1666), - [anon_sym_mod2] = ACTIONS(1668), - [anon_sym_SLASH_SLASH2] = ACTIONS(1668), - [anon_sym_PLUS2] = ACTIONS(1666), - [anon_sym_bit_DASHshl2] = ACTIONS(1668), - [anon_sym_bit_DASHshr2] = ACTIONS(1668), - [anon_sym_bit_DASHand2] = ACTIONS(1668), - [anon_sym_bit_DASHxor2] = ACTIONS(1668), - [anon_sym_bit_DASHor2] = ACTIONS(1668), - [anon_sym_DOT] = ACTIONS(5070), - [aux_sym__immediate_decimal_token2] = ACTIONS(5072), - [anon_sym_err_GT] = ACTIONS(1666), - [anon_sym_out_GT] = ACTIONS(1666), - [anon_sym_e_GT] = ACTIONS(1666), - [anon_sym_o_GT] = ACTIONS(1666), - [anon_sym_err_PLUSout_GT] = ACTIONS(1666), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), - [anon_sym_o_PLUSe_GT] = ACTIONS(1666), - [anon_sym_e_PLUSo_GT] = ACTIONS(1666), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [aux_sym_unquoted_token2] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - }, - [1740] = { - [sym_comment] = STATE(1740), - [ts_builtin_sym_end] = ACTIONS(1650), - [sym__newline] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_err_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_GT_PIPE] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DASH2] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT] = ACTIONS(1650), - [aux_sym__immediate_decimal_token1] = ACTIONS(5074), - [aux_sym__immediate_decimal_token2] = ACTIONS(5076), - [anon_sym_null] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [aux_sym__val_number_token4] = ACTIONS(1650), - [aux_sym__val_number_token5] = ACTIONS(1650), - [aux_sym__val_number_token6] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1648), - [anon_sym_0o] = ACTIONS(1648), - [anon_sym_0x] = ACTIONS(1648), - [sym_val_date] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_err_GT] = ACTIONS(1648), - [anon_sym_out_GT] = ACTIONS(1648), - [anon_sym_e_GT] = ACTIONS(1648), - [anon_sym_o_GT] = ACTIONS(1648), - [anon_sym_err_PLUSout_GT] = ACTIONS(1648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), - [anon_sym_o_PLUSe_GT] = ACTIONS(1648), - [anon_sym_e_PLUSo_GT] = ACTIONS(1648), - [anon_sym_err_GT_GT] = ACTIONS(1650), - [anon_sym_out_GT_GT] = ACTIONS(1650), - [anon_sym_e_GT_GT] = ACTIONS(1650), - [anon_sym_o_GT_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), - [aux_sym_unquoted_token1] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1650), - }, - [1741] = { - [sym_comment] = STATE(1741), - [ts_builtin_sym_end] = ACTIONS(1668), - [sym__newline] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_err_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_GT_PIPE] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_DASH2] = ACTIONS(1666), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_DOT_DOT] = ACTIONS(1666), - [anon_sym_LPAREN2] = ACTIONS(1668), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1668), - [anon_sym_DOT_DOT_LT] = ACTIONS(1668), - [anon_sym_null] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1666), - [aux_sym__val_number_decimal_token2] = ACTIONS(1668), - [aux_sym__val_number_decimal_token3] = ACTIONS(1668), - [aux_sym__val_number_decimal_token4] = ACTIONS(1668), - [aux_sym__val_number_token1] = ACTIONS(1668), - [aux_sym__val_number_token2] = ACTIONS(1668), - [aux_sym__val_number_token3] = ACTIONS(1668), - [aux_sym__val_number_token4] = ACTIONS(1668), - [aux_sym__val_number_token5] = ACTIONS(1668), - [aux_sym__val_number_token6] = ACTIONS(1668), - [anon_sym_0b] = ACTIONS(1666), - [anon_sym_0o] = ACTIONS(1666), - [anon_sym_0x] = ACTIONS(1666), - [sym_val_date] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(1668), - [sym__str_single_quotes] = ACTIONS(1668), - [sym__str_back_ticks] = ACTIONS(1668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), - [anon_sym_err_GT] = ACTIONS(1666), - [anon_sym_out_GT] = ACTIONS(1666), - [anon_sym_e_GT] = ACTIONS(1666), - [anon_sym_o_GT] = ACTIONS(1666), - [anon_sym_err_PLUSout_GT] = ACTIONS(1666), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1666), - [anon_sym_o_PLUSe_GT] = ACTIONS(1666), - [anon_sym_e_PLUSo_GT] = ACTIONS(1666), - [anon_sym_err_GT_GT] = ACTIONS(1668), - [anon_sym_out_GT_GT] = ACTIONS(1668), - [anon_sym_e_GT_GT] = ACTIONS(1668), - [anon_sym_o_GT_GT] = ACTIONS(1668), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), - [aux_sym_unquoted_token1] = ACTIONS(1666), - [aux_sym_unquoted_token2] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1668), - }, - [1742] = { - [sym_comment] = STATE(1742), - [sym__newline] = ACTIONS(5078), - [anon_sym_SEMI] = ACTIONS(5078), - [anon_sym_PIPE] = ACTIONS(5078), - [anon_sym_err_GT_PIPE] = ACTIONS(5078), - [anon_sym_out_GT_PIPE] = ACTIONS(5078), - [anon_sym_e_GT_PIPE] = ACTIONS(5078), - [anon_sym_o_GT_PIPE] = ACTIONS(5078), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5078), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5078), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5078), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5078), - [anon_sym_LBRACK] = ACTIONS(5078), - [anon_sym_LPAREN] = ACTIONS(5078), - [anon_sym_RPAREN] = ACTIONS(5078), - [anon_sym_DOLLAR] = ACTIONS(5080), - [anon_sym_DASH_DASH] = ACTIONS(5078), - [anon_sym_DASH2] = ACTIONS(5080), - [anon_sym_LBRACE] = ACTIONS(5078), - [anon_sym_RBRACE] = ACTIONS(5078), - [anon_sym_DOT_DOT] = ACTIONS(5080), - [anon_sym_DOT_DOT_EQ] = ACTIONS(5078), - [anon_sym_DOT_DOT_LT] = ACTIONS(5078), - [anon_sym_null] = ACTIONS(5078), - [anon_sym_true] = ACTIONS(5078), - [anon_sym_false] = ACTIONS(5078), - [aux_sym__val_number_decimal_token1] = ACTIONS(5080), - [aux_sym__val_number_decimal_token2] = ACTIONS(5078), - [aux_sym__val_number_decimal_token3] = ACTIONS(5078), - [aux_sym__val_number_decimal_token4] = ACTIONS(5078), - [aux_sym__val_number_token1] = ACTIONS(5078), - [aux_sym__val_number_token2] = ACTIONS(5078), - [aux_sym__val_number_token3] = ACTIONS(5078), - [aux_sym__val_number_token4] = ACTIONS(5078), - [aux_sym__val_number_token5] = ACTIONS(5078), - [aux_sym__val_number_token6] = ACTIONS(5078), - [anon_sym_0b] = ACTIONS(5080), - [anon_sym_0o] = ACTIONS(5080), - [anon_sym_0x] = ACTIONS(5080), - [sym_val_date] = ACTIONS(5078), - [anon_sym_DQUOTE] = ACTIONS(5078), - [sym__str_single_quotes] = ACTIONS(5078), - [sym__str_back_ticks] = ACTIONS(5078), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5078), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5078), - [anon_sym_err_GT] = ACTIONS(5080), - [anon_sym_out_GT] = ACTIONS(5080), - [anon_sym_e_GT] = ACTIONS(5080), - [anon_sym_o_GT] = ACTIONS(5080), - [anon_sym_err_PLUSout_GT] = ACTIONS(5080), - [anon_sym_out_PLUSerr_GT] = ACTIONS(5080), - [anon_sym_o_PLUSe_GT] = ACTIONS(5080), - [anon_sym_e_PLUSo_GT] = ACTIONS(5080), - [anon_sym_err_GT_GT] = ACTIONS(5078), - [anon_sym_out_GT_GT] = ACTIONS(5078), - [anon_sym_e_GT_GT] = ACTIONS(5078), - [anon_sym_o_GT_GT] = ACTIONS(5078), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5078), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5078), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5078), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5078), - [anon_sym_EQ2] = ACTIONS(5082), - [aux_sym_unquoted_token1] = ACTIONS(5080), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(5078), - }, - [1743] = { - [sym_comment] = STATE(1743), - [ts_builtin_sym_end] = ACTIONS(1650), - [sym__newline] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_err_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_GT_PIPE] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DASH2] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_LPAREN2] = ACTIONS(1650), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1650), - [anon_sym_DOT_DOT_LT] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [aux_sym__val_number_decimal_token1] = ACTIONS(1648), - [aux_sym__val_number_decimal_token2] = ACTIONS(1650), - [aux_sym__val_number_decimal_token3] = ACTIONS(1650), - [aux_sym__val_number_decimal_token4] = ACTIONS(1650), - [aux_sym__val_number_token1] = ACTIONS(1650), - [aux_sym__val_number_token2] = ACTIONS(1650), - [aux_sym__val_number_token3] = ACTIONS(1650), - [aux_sym__val_number_token4] = ACTIONS(1650), - [aux_sym__val_number_token5] = ACTIONS(1650), - [aux_sym__val_number_token6] = ACTIONS(1650), - [anon_sym_0b] = ACTIONS(1648), - [anon_sym_0o] = ACTIONS(1648), - [anon_sym_0x] = ACTIONS(1648), - [sym_val_date] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [sym__str_single_quotes] = ACTIONS(1650), - [sym__str_back_ticks] = ACTIONS(1650), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1650), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1650), - [anon_sym_err_GT] = ACTIONS(1648), - [anon_sym_out_GT] = ACTIONS(1648), - [anon_sym_e_GT] = ACTIONS(1648), - [anon_sym_o_GT] = ACTIONS(1648), - [anon_sym_err_PLUSout_GT] = ACTIONS(1648), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1648), - [anon_sym_o_PLUSe_GT] = ACTIONS(1648), - [anon_sym_e_PLUSo_GT] = ACTIONS(1648), - [anon_sym_err_GT_GT] = ACTIONS(1650), - [anon_sym_out_GT_GT] = ACTIONS(1650), - [anon_sym_e_GT_GT] = ACTIONS(1650), - [anon_sym_o_GT_GT] = ACTIONS(1650), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1650), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1650), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1650), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1650), - [aux_sym_unquoted_token1] = ACTIONS(1648), - [aux_sym_unquoted_token2] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1650), - }, - [1744] = { - [sym_comment] = STATE(1744), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(994), - [anon_sym_err_GT_PIPE] = ACTIONS(994), - [anon_sym_out_GT_PIPE] = ACTIONS(994), - [anon_sym_e_GT_PIPE] = ACTIONS(994), - [anon_sym_o_GT_PIPE] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(994), - [anon_sym_RPAREN] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_DASH2] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(994), - [anon_sym_DOT_DOT] = ACTIONS(998), - [anon_sym_DOT_DOT_EQ] = ACTIONS(998), - [anon_sym_DOT_DOT_LT] = ACTIONS(998), - [anon_sym_null] = ACTIONS(998), - [anon_sym_true] = ACTIONS(998), - [anon_sym_false] = 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_0b] = ACTIONS(998), - [anon_sym_0o] = ACTIONS(998), - [anon_sym_0x] = ACTIONS(998), - [sym_val_date] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(994), - [sym__str_single_quotes] = ACTIONS(994), - [sym__str_back_ticks] = ACTIONS(994), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(994), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(994), - [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(998), - [anon_sym_out_GT_GT] = ACTIONS(998), - [anon_sym_e_GT_GT] = ACTIONS(998), - [anon_sym_o_GT_GT] = ACTIONS(998), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), - [aux_sym_unquoted_token1] = ACTIONS(998), - [aux_sym_unquoted_token4] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(994), + [1606] = { + [sym__expr_parenthesized_immediate] = STATE(6822), + [sym_comment] = STATE(1606), + [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_RPAREN] = ACTIONS(4956), + [anon_sym_GT2] = ACTIONS(4958), + [anon_sym_DASH2] = ACTIONS(4956), + [anon_sym_in2] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_RBRACE] = ACTIONS(4956), + [anon_sym_EQ_GT] = ACTIONS(4956), + [anon_sym_STAR2] = ACTIONS(4958), + [anon_sym_and2] = ACTIONS(4956), + [anon_sym_xor2] = ACTIONS(4956), + [anon_sym_or2] = ACTIONS(4956), + [anon_sym_not_DASHin2] = ACTIONS(4956), + [anon_sym_has2] = ACTIONS(4956), + [anon_sym_not_DASHhas2] = ACTIONS(4956), + [anon_sym_starts_DASHwith2] = ACTIONS(4956), + [anon_sym_ends_DASHwith2] = ACTIONS(4956), + [anon_sym_EQ_EQ2] = ACTIONS(4956), + [anon_sym_BANG_EQ2] = ACTIONS(4956), + [anon_sym_LT2] = ACTIONS(4958), + [anon_sym_LT_EQ2] = ACTIONS(4956), + [anon_sym_GT_EQ2] = ACTIONS(4956), + [anon_sym_EQ_TILDE2] = ACTIONS(4956), + [anon_sym_BANG_TILDE2] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_STAR_STAR2] = ACTIONS(4956), + [anon_sym_PLUS_PLUS2] = ACTIONS(4956), + [anon_sym_SLASH2] = ACTIONS(4958), + [anon_sym_mod2] = ACTIONS(4956), + [anon_sym_SLASH_SLASH2] = ACTIONS(4956), + [anon_sym_PLUS2] = ACTIONS(4958), + [anon_sym_bit_DASHshl2] = ACTIONS(4956), + [anon_sym_bit_DASHshr2] = ACTIONS(4956), + [anon_sym_bit_DASHand2] = ACTIONS(4956), + [anon_sym_bit_DASHxor2] = ACTIONS(4956), + [anon_sym_bit_DASHor2] = 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_POUND] = ACTIONS(245), }, - [1745] = { - [sym_comment] = STATE(1745), - [ts_builtin_sym_end] = ACTIONS(944), - [sym__newline] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(944), - [anon_sym_err_GT_PIPE] = ACTIONS(944), - [anon_sym_out_GT_PIPE] = ACTIONS(944), - [anon_sym_e_GT_PIPE] = ACTIONS(944), - [anon_sym_o_GT_PIPE] = ACTIONS(944), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(944), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(944), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(944), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(944), - [anon_sym_DOLLAR] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(944), - [anon_sym_DASH2] = ACTIONS(942), - [anon_sym_LBRACE] = ACTIONS(944), - [anon_sym_DOT_DOT] = ACTIONS(942), - [anon_sym_QMARK2] = ACTIONS(5084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(944), - [anon_sym_DOT_DOT_LT] = ACTIONS(944), - [anon_sym_null] = ACTIONS(944), - [anon_sym_true] = ACTIONS(944), - [anon_sym_false] = ACTIONS(944), - [aux_sym__val_number_decimal_token1] = ACTIONS(942), - [aux_sym__val_number_decimal_token2] = ACTIONS(944), - [aux_sym__val_number_decimal_token3] = ACTIONS(944), - [aux_sym__val_number_decimal_token4] = ACTIONS(944), - [aux_sym__val_number_token1] = ACTIONS(944), - [aux_sym__val_number_token2] = ACTIONS(944), - [aux_sym__val_number_token3] = ACTIONS(944), - [aux_sym__val_number_token4] = ACTIONS(944), - [aux_sym__val_number_token5] = ACTIONS(944), - [aux_sym__val_number_token6] = ACTIONS(944), - [anon_sym_0b] = ACTIONS(942), - [anon_sym_0o] = ACTIONS(942), - [anon_sym_0x] = ACTIONS(942), - [sym_val_date] = ACTIONS(944), - [anon_sym_DQUOTE] = ACTIONS(944), - [sym__str_single_quotes] = ACTIONS(944), - [sym__str_back_ticks] = ACTIONS(944), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(944), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(944), - [anon_sym_DOT2] = ACTIONS(942), - [anon_sym_err_GT] = ACTIONS(942), - [anon_sym_out_GT] = ACTIONS(942), - [anon_sym_e_GT] = ACTIONS(942), - [anon_sym_o_GT] = ACTIONS(942), - [anon_sym_err_PLUSout_GT] = ACTIONS(942), - [anon_sym_out_PLUSerr_GT] = ACTIONS(942), - [anon_sym_o_PLUSe_GT] = ACTIONS(942), - [anon_sym_e_PLUSo_GT] = ACTIONS(942), - [anon_sym_err_GT_GT] = ACTIONS(944), - [anon_sym_out_GT_GT] = ACTIONS(944), - [anon_sym_e_GT_GT] = ACTIONS(944), - [anon_sym_o_GT_GT] = ACTIONS(944), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(944), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(944), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(944), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(944), - [aux_sym_unquoted_token1] = ACTIONS(942), + [1607] = { + [sym__expr_parenthesized_immediate] = STATE(6822), + [sym_comment] = STATE(1607), + [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_RPAREN] = ACTIONS(4956), + [anon_sym_GT2] = ACTIONS(4958), + [anon_sym_DASH2] = ACTIONS(4956), + [anon_sym_in2] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_RBRACE] = ACTIONS(4956), + [anon_sym_EQ_GT] = ACTIONS(4956), + [anon_sym_STAR2] = ACTIONS(4958), + [anon_sym_and2] = ACTIONS(4956), + [anon_sym_xor2] = ACTIONS(4956), + [anon_sym_or2] = ACTIONS(4956), + [anon_sym_not_DASHin2] = ACTIONS(4956), + [anon_sym_has2] = ACTIONS(4956), + [anon_sym_not_DASHhas2] = ACTIONS(4956), + [anon_sym_starts_DASHwith2] = ACTIONS(4956), + [anon_sym_ends_DASHwith2] = ACTIONS(4956), + [anon_sym_EQ_EQ2] = ACTIONS(4956), + [anon_sym_BANG_EQ2] = ACTIONS(4956), + [anon_sym_LT2] = ACTIONS(4958), + [anon_sym_LT_EQ2] = ACTIONS(4956), + [anon_sym_GT_EQ2] = ACTIONS(4956), + [anon_sym_EQ_TILDE2] = ACTIONS(4956), + [anon_sym_BANG_TILDE2] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_STAR_STAR2] = ACTIONS(4956), + [anon_sym_PLUS_PLUS2] = ACTIONS(4956), + [anon_sym_SLASH2] = ACTIONS(4958), + [anon_sym_mod2] = ACTIONS(4956), + [anon_sym_SLASH_SLASH2] = ACTIONS(4956), + [anon_sym_PLUS2] = ACTIONS(4958), + [anon_sym_bit_DASHshl2] = ACTIONS(4956), + [anon_sym_bit_DASHshr2] = ACTIONS(4956), + [anon_sym_bit_DASHand2] = ACTIONS(4956), + [anon_sym_bit_DASHxor2] = ACTIONS(4956), + [anon_sym_bit_DASHor2] = 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_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(944), }, - [1746] = { - [sym_comment] = STATE(1746), - [ts_builtin_sym_end] = ACTIONS(950), - [sym__newline] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_PIPE] = ACTIONS(950), - [anon_sym_err_GT_PIPE] = ACTIONS(950), - [anon_sym_out_GT_PIPE] = ACTIONS(950), - [anon_sym_e_GT_PIPE] = ACTIONS(950), - [anon_sym_o_GT_PIPE] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), - [anon_sym_LBRACK] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_DASH2] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_DOT_DOT] = ACTIONS(948), - [anon_sym_QMARK2] = ACTIONS(5086), - [anon_sym_DOT_DOT_EQ] = ACTIONS(950), - [anon_sym_DOT_DOT_LT] = ACTIONS(950), - [anon_sym_null] = ACTIONS(950), - [anon_sym_true] = ACTIONS(950), - [anon_sym_false] = ACTIONS(950), - [aux_sym__val_number_decimal_token1] = ACTIONS(948), - [aux_sym__val_number_decimal_token2] = ACTIONS(950), - [aux_sym__val_number_decimal_token3] = ACTIONS(950), - [aux_sym__val_number_decimal_token4] = ACTIONS(950), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [aux_sym__val_number_token4] = ACTIONS(950), - [aux_sym__val_number_token5] = ACTIONS(950), - [aux_sym__val_number_token6] = ACTIONS(950), - [anon_sym_0b] = ACTIONS(948), - [anon_sym_0o] = ACTIONS(948), - [anon_sym_0x] = ACTIONS(948), - [sym_val_date] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(948), - [anon_sym_err_GT] = ACTIONS(948), - [anon_sym_out_GT] = ACTIONS(948), - [anon_sym_e_GT] = ACTIONS(948), - [anon_sym_o_GT] = ACTIONS(948), - [anon_sym_err_PLUSout_GT] = ACTIONS(948), - [anon_sym_out_PLUSerr_GT] = ACTIONS(948), - [anon_sym_o_PLUSe_GT] = ACTIONS(948), - [anon_sym_e_PLUSo_GT] = ACTIONS(948), - [anon_sym_err_GT_GT] = ACTIONS(950), - [anon_sym_out_GT_GT] = ACTIONS(950), - [anon_sym_e_GT_GT] = ACTIONS(950), - [anon_sym_o_GT_GT] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), - [aux_sym_unquoted_token1] = ACTIONS(948), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(950), - }, - [1747] = { - [sym_comment] = STATE(1747), - [ts_builtin_sym_end] = ACTIONS(1792), - [sym__newline] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_err_GT_PIPE] = ACTIONS(1792), - [anon_sym_out_GT_PIPE] = ACTIONS(1792), - [anon_sym_e_GT_PIPE] = ACTIONS(1792), - [anon_sym_o_GT_PIPE] = ACTIONS(1792), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1792), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1792), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1792), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), + [1608] = { + [sym__expr_parenthesized_immediate] = STATE(6822), + [sym_comment] = STATE(1608), + [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_RPAREN] = ACTIONS(4956), + [anon_sym_GT2] = ACTIONS(4958), + [anon_sym_DASH2] = ACTIONS(4956), + [anon_sym_in2] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_RBRACE] = ACTIONS(4956), + [anon_sym_EQ_GT] = ACTIONS(4956), + [anon_sym_STAR2] = ACTIONS(4958), + [anon_sym_and2] = ACTIONS(4956), + [anon_sym_xor2] = ACTIONS(4956), + [anon_sym_or2] = ACTIONS(4956), + [anon_sym_not_DASHin2] = ACTIONS(4956), + [anon_sym_has2] = ACTIONS(4956), + [anon_sym_not_DASHhas2] = ACTIONS(4956), + [anon_sym_starts_DASHwith2] = ACTIONS(4956), + [anon_sym_ends_DASHwith2] = ACTIONS(4956), + [anon_sym_EQ_EQ2] = ACTIONS(4956), + [anon_sym_BANG_EQ2] = ACTIONS(4956), + [anon_sym_LT2] = ACTIONS(4958), + [anon_sym_LT_EQ2] = ACTIONS(4956), + [anon_sym_GT_EQ2] = ACTIONS(4956), + [anon_sym_EQ_TILDE2] = ACTIONS(4956), + [anon_sym_BANG_TILDE2] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_STAR_STAR2] = ACTIONS(4956), + [anon_sym_PLUS_PLUS2] = ACTIONS(4956), + [anon_sym_SLASH2] = ACTIONS(4958), + [anon_sym_mod2] = ACTIONS(4956), + [anon_sym_SLASH_SLASH2] = ACTIONS(4956), + [anon_sym_PLUS2] = ACTIONS(4958), + [anon_sym_bit_DASHshl2] = ACTIONS(4956), + [anon_sym_bit_DASHshr2] = ACTIONS(4956), + [anon_sym_bit_DASHand2] = ACTIONS(4956), + [anon_sym_bit_DASHxor2] = ACTIONS(4956), + [anon_sym_bit_DASHor2] = 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_POUND] = ACTIONS(245), + }, + [1609] = { + [sym__expr_parenthesized_immediate] = STATE(6822), + [sym_comment] = STATE(1609), + [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_RPAREN] = ACTIONS(4956), + [anon_sym_GT2] = ACTIONS(4958), + [anon_sym_DASH2] = ACTIONS(4956), + [anon_sym_in2] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_RBRACE] = ACTIONS(4956), + [anon_sym_EQ_GT] = ACTIONS(4956), + [anon_sym_STAR2] = ACTIONS(4958), + [anon_sym_and2] = ACTIONS(4956), + [anon_sym_xor2] = ACTIONS(4956), + [anon_sym_or2] = ACTIONS(4956), + [anon_sym_not_DASHin2] = ACTIONS(4956), + [anon_sym_has2] = ACTIONS(4956), + [anon_sym_not_DASHhas2] = ACTIONS(4956), + [anon_sym_starts_DASHwith2] = ACTIONS(4956), + [anon_sym_ends_DASHwith2] = ACTIONS(4956), + [anon_sym_EQ_EQ2] = ACTIONS(4956), + [anon_sym_BANG_EQ2] = ACTIONS(4956), + [anon_sym_LT2] = ACTIONS(4958), + [anon_sym_LT_EQ2] = ACTIONS(4956), + [anon_sym_GT_EQ2] = ACTIONS(4956), + [anon_sym_EQ_TILDE2] = ACTIONS(4956), + [anon_sym_BANG_TILDE2] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_STAR_STAR2] = ACTIONS(4956), + [anon_sym_PLUS_PLUS2] = ACTIONS(4956), + [anon_sym_SLASH2] = ACTIONS(4958), + [anon_sym_mod2] = ACTIONS(4956), + [anon_sym_SLASH_SLASH2] = ACTIONS(4956), + [anon_sym_PLUS2] = ACTIONS(4958), + [anon_sym_bit_DASHshl2] = ACTIONS(4956), + [anon_sym_bit_DASHshr2] = ACTIONS(4956), + [anon_sym_bit_DASHand2] = ACTIONS(4956), + [anon_sym_bit_DASHxor2] = ACTIONS(4956), + [anon_sym_bit_DASHor2] = 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_POUND] = ACTIONS(245), + }, + [1610] = { + [sym__expr_parenthesized_immediate] = STATE(6822), + [sym_comment] = STATE(1610), + [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_RPAREN] = ACTIONS(4956), + [anon_sym_GT2] = ACTIONS(4958), + [anon_sym_DASH2] = ACTIONS(4956), + [anon_sym_in2] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_RBRACE] = ACTIONS(4956), + [anon_sym_EQ_GT] = ACTIONS(4956), + [anon_sym_STAR2] = ACTIONS(4958), + [anon_sym_and2] = ACTIONS(4956), + [anon_sym_xor2] = ACTIONS(4956), + [anon_sym_or2] = ACTIONS(4956), + [anon_sym_not_DASHin2] = ACTIONS(4956), + [anon_sym_has2] = ACTIONS(4956), + [anon_sym_not_DASHhas2] = ACTIONS(4956), + [anon_sym_starts_DASHwith2] = ACTIONS(4956), + [anon_sym_ends_DASHwith2] = ACTIONS(4956), + [anon_sym_EQ_EQ2] = ACTIONS(4956), + [anon_sym_BANG_EQ2] = ACTIONS(4956), + [anon_sym_LT2] = ACTIONS(4958), + [anon_sym_LT_EQ2] = ACTIONS(4956), + [anon_sym_GT_EQ2] = ACTIONS(4956), + [anon_sym_EQ_TILDE2] = ACTIONS(4956), + [anon_sym_BANG_TILDE2] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_STAR_STAR2] = ACTIONS(4956), + [anon_sym_PLUS_PLUS2] = ACTIONS(4956), + [anon_sym_SLASH2] = ACTIONS(4958), + [anon_sym_mod2] = ACTIONS(4956), + [anon_sym_SLASH_SLASH2] = ACTIONS(4956), + [anon_sym_PLUS2] = ACTIONS(4958), + [anon_sym_bit_DASHshl2] = ACTIONS(4956), + [anon_sym_bit_DASHshr2] = ACTIONS(4956), + [anon_sym_bit_DASHand2] = ACTIONS(4956), + [anon_sym_bit_DASHxor2] = ACTIONS(4956), + [anon_sym_bit_DASHor2] = 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_POUND] = ACTIONS(245), + }, + [1611] = { + [sym__expr_parenthesized_immediate] = STATE(6822), + [sym_comment] = STATE(1611), + [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_RPAREN] = ACTIONS(4956), + [anon_sym_GT2] = ACTIONS(4958), + [anon_sym_DASH2] = ACTIONS(4956), + [anon_sym_in2] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_RBRACE] = ACTIONS(4956), + [anon_sym_EQ_GT] = ACTIONS(4956), + [anon_sym_STAR2] = ACTIONS(4958), + [anon_sym_and2] = ACTIONS(4956), + [anon_sym_xor2] = ACTIONS(4956), + [anon_sym_or2] = ACTIONS(4956), + [anon_sym_not_DASHin2] = ACTIONS(4956), + [anon_sym_has2] = ACTIONS(4956), + [anon_sym_not_DASHhas2] = ACTIONS(4956), + [anon_sym_starts_DASHwith2] = ACTIONS(4956), + [anon_sym_ends_DASHwith2] = ACTIONS(4956), + [anon_sym_EQ_EQ2] = ACTIONS(4956), + [anon_sym_BANG_EQ2] = ACTIONS(4956), + [anon_sym_LT2] = ACTIONS(4958), + [anon_sym_LT_EQ2] = ACTIONS(4956), + [anon_sym_GT_EQ2] = ACTIONS(4956), + [anon_sym_EQ_TILDE2] = ACTIONS(4956), + [anon_sym_BANG_TILDE2] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_STAR_STAR2] = ACTIONS(4956), + [anon_sym_PLUS_PLUS2] = ACTIONS(4956), + [anon_sym_SLASH2] = ACTIONS(4958), + [anon_sym_mod2] = ACTIONS(4956), + [anon_sym_SLASH_SLASH2] = ACTIONS(4956), + [anon_sym_PLUS2] = ACTIONS(4958), + [anon_sym_bit_DASHshl2] = ACTIONS(4956), + [anon_sym_bit_DASHshr2] = ACTIONS(4956), + [anon_sym_bit_DASHand2] = ACTIONS(4956), + [anon_sym_bit_DASHxor2] = ACTIONS(4956), + [anon_sym_bit_DASHor2] = 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_POUND] = ACTIONS(245), + }, + [1612] = { + [sym__expr_parenthesized_immediate] = STATE(6822), + [sym_comment] = STATE(1612), + [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_RPAREN] = ACTIONS(4956), + [anon_sym_GT2] = ACTIONS(4958), + [anon_sym_DASH2] = ACTIONS(4956), + [anon_sym_in2] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_RBRACE] = ACTIONS(4956), + [anon_sym_EQ_GT] = ACTIONS(4956), + [anon_sym_STAR2] = ACTIONS(4958), + [anon_sym_and2] = ACTIONS(4956), + [anon_sym_xor2] = ACTIONS(4956), + [anon_sym_or2] = ACTIONS(4956), + [anon_sym_not_DASHin2] = ACTIONS(4956), + [anon_sym_has2] = ACTIONS(4956), + [anon_sym_not_DASHhas2] = ACTIONS(4956), + [anon_sym_starts_DASHwith2] = ACTIONS(4956), + [anon_sym_ends_DASHwith2] = ACTIONS(4956), + [anon_sym_EQ_EQ2] = ACTIONS(4956), + [anon_sym_BANG_EQ2] = ACTIONS(4956), + [anon_sym_LT2] = ACTIONS(4958), + [anon_sym_LT_EQ2] = ACTIONS(4956), + [anon_sym_GT_EQ2] = ACTIONS(4956), + [anon_sym_EQ_TILDE2] = ACTIONS(4956), + [anon_sym_BANG_TILDE2] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_STAR_STAR2] = ACTIONS(4956), + [anon_sym_PLUS_PLUS2] = ACTIONS(4956), + [anon_sym_SLASH2] = ACTIONS(4958), + [anon_sym_mod2] = ACTIONS(4956), + [anon_sym_SLASH_SLASH2] = ACTIONS(4956), + [anon_sym_PLUS2] = ACTIONS(4958), + [anon_sym_bit_DASHshl2] = ACTIONS(4956), + [anon_sym_bit_DASHshr2] = ACTIONS(4956), + [anon_sym_bit_DASHand2] = ACTIONS(4956), + [anon_sym_bit_DASHxor2] = ACTIONS(4956), + [anon_sym_bit_DASHor2] = 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_POUND] = ACTIONS(245), + }, + [1613] = { + [sym__expr_parenthesized_immediate] = STATE(6822), + [sym_comment] = STATE(1613), + [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_RPAREN] = ACTIONS(4956), + [anon_sym_GT2] = ACTIONS(4958), + [anon_sym_DASH2] = ACTIONS(4956), + [anon_sym_in2] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_RBRACE] = ACTIONS(4956), + [anon_sym_EQ_GT] = ACTIONS(4956), + [anon_sym_STAR2] = ACTIONS(4958), + [anon_sym_and2] = ACTIONS(4956), + [anon_sym_xor2] = ACTIONS(4956), + [anon_sym_or2] = ACTIONS(4956), + [anon_sym_not_DASHin2] = ACTIONS(4956), + [anon_sym_has2] = ACTIONS(4956), + [anon_sym_not_DASHhas2] = ACTIONS(4956), + [anon_sym_starts_DASHwith2] = ACTIONS(4956), + [anon_sym_ends_DASHwith2] = ACTIONS(4956), + [anon_sym_EQ_EQ2] = ACTIONS(4956), + [anon_sym_BANG_EQ2] = ACTIONS(4956), + [anon_sym_LT2] = ACTIONS(4958), + [anon_sym_LT_EQ2] = ACTIONS(4956), + [anon_sym_GT_EQ2] = ACTIONS(4956), + [anon_sym_EQ_TILDE2] = ACTIONS(4956), + [anon_sym_BANG_TILDE2] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_STAR_STAR2] = ACTIONS(4956), + [anon_sym_PLUS_PLUS2] = ACTIONS(4956), + [anon_sym_SLASH2] = ACTIONS(4958), + [anon_sym_mod2] = ACTIONS(4956), + [anon_sym_SLASH_SLASH2] = ACTIONS(4956), + [anon_sym_PLUS2] = ACTIONS(4958), + [anon_sym_bit_DASHshl2] = ACTIONS(4956), + [anon_sym_bit_DASHshr2] = ACTIONS(4956), + [anon_sym_bit_DASHand2] = ACTIONS(4956), + [anon_sym_bit_DASHxor2] = ACTIONS(4956), + [anon_sym_bit_DASHor2] = 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_POUND] = ACTIONS(245), + }, + [1614] = { + [sym__expr_parenthesized_immediate] = STATE(6822), + [sym_comment] = STATE(1614), + [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_RPAREN] = ACTIONS(4956), + [anon_sym_GT2] = ACTIONS(4958), + [anon_sym_DASH2] = ACTIONS(4956), + [anon_sym_in2] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4956), + [anon_sym_RBRACE] = ACTIONS(4956), + [anon_sym_EQ_GT] = ACTIONS(4956), + [anon_sym_STAR2] = ACTIONS(4958), + [anon_sym_and2] = ACTIONS(4956), + [anon_sym_xor2] = ACTIONS(4956), + [anon_sym_or2] = ACTIONS(4956), + [anon_sym_not_DASHin2] = ACTIONS(4956), + [anon_sym_has2] = ACTIONS(4956), + [anon_sym_not_DASHhas2] = ACTIONS(4956), + [anon_sym_starts_DASHwith2] = ACTIONS(4956), + [anon_sym_ends_DASHwith2] = ACTIONS(4956), + [anon_sym_EQ_EQ2] = ACTIONS(4956), + [anon_sym_BANG_EQ2] = ACTIONS(4956), + [anon_sym_LT2] = ACTIONS(4958), + [anon_sym_LT_EQ2] = ACTIONS(4956), + [anon_sym_GT_EQ2] = ACTIONS(4956), + [anon_sym_EQ_TILDE2] = ACTIONS(4956), + [anon_sym_BANG_TILDE2] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_STAR_STAR2] = ACTIONS(4956), + [anon_sym_PLUS_PLUS2] = ACTIONS(4956), + [anon_sym_SLASH2] = ACTIONS(4958), + [anon_sym_mod2] = ACTIONS(4956), + [anon_sym_SLASH_SLASH2] = ACTIONS(4956), + [anon_sym_PLUS2] = ACTIONS(4958), + [anon_sym_bit_DASHshl2] = ACTIONS(4956), + [anon_sym_bit_DASHshr2] = ACTIONS(4956), + [anon_sym_bit_DASHand2] = ACTIONS(4956), + [anon_sym_bit_DASHxor2] = ACTIONS(4956), + [anon_sym_bit_DASHor2] = 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_POUND] = ACTIONS(245), + }, + [1615] = { + [sym_comment] = STATE(1615), + [sym__newline] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_err_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_GT_PIPE] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(1790), + [anon_sym_GT2] = ACTIONS(1782), [anon_sym_DASH2] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_DOT_DOT] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1792), - [anon_sym_DOT_DOT_LT] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1792), - [anon_sym_false] = ACTIONS(1792), - [aux_sym__val_number_decimal_token1] = ACTIONS(1790), - [aux_sym__val_number_decimal_token2] = ACTIONS(1792), - [aux_sym__val_number_decimal_token3] = ACTIONS(1792), - [aux_sym__val_number_decimal_token4] = ACTIONS(1792), - [aux_sym__val_number_token1] = ACTIONS(1792), - [aux_sym__val_number_token2] = ACTIONS(1792), - [aux_sym__val_number_token3] = ACTIONS(1792), - [aux_sym__val_number_token4] = ACTIONS(1792), - [aux_sym__val_number_token5] = ACTIONS(1792), - [aux_sym__val_number_token6] = ACTIONS(1792), - [anon_sym_0b] = ACTIONS(1790), - [anon_sym_0o] = ACTIONS(1790), - [anon_sym_0x] = ACTIONS(1790), - [sym_val_date] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym__str_single_quotes] = ACTIONS(1792), - [sym__str_back_ticks] = ACTIONS(1792), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1792), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1792), - [anon_sym_err_GT] = ACTIONS(1790), - [anon_sym_out_GT] = ACTIONS(1790), - [anon_sym_e_GT] = ACTIONS(1790), - [anon_sym_o_GT] = ACTIONS(1790), - [anon_sym_err_PLUSout_GT] = ACTIONS(1790), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1790), - [anon_sym_o_PLUSe_GT] = ACTIONS(1790), - [anon_sym_e_PLUSo_GT] = ACTIONS(1790), - [anon_sym_err_GT_GT] = ACTIONS(1792), - [anon_sym_out_GT_GT] = ACTIONS(1792), - [anon_sym_e_GT_GT] = ACTIONS(1792), - [anon_sym_o_GT_GT] = ACTIONS(1792), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1792), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1792), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1792), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1792), - [aux_sym_unquoted_token1] = ACTIONS(1790), - [aux_sym_unquoted_token2] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(245), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [1748] = { - [sym_comment] = STATE(1748), - [sym__newline] = ACTIONS(2039), - [anon_sym_SEMI] = ACTIONS(2039), - [anon_sym_PIPE] = ACTIONS(2039), - [anon_sym_err_GT_PIPE] = ACTIONS(2039), - [anon_sym_out_GT_PIPE] = ACTIONS(2039), - [anon_sym_e_GT_PIPE] = ACTIONS(2039), - [anon_sym_o_GT_PIPE] = ACTIONS(2039), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2039), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2039), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2039), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2039), - [anon_sym_RPAREN] = ACTIONS(2039), - [anon_sym_GT2] = ACTIONS(2033), - [anon_sym_DASH2] = ACTIONS(2039), - [anon_sym_in2] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(2039), - [anon_sym_RBRACE] = ACTIONS(2039), - [anon_sym_STAR2] = ACTIONS(2033), - [anon_sym_and2] = ACTIONS(2039), - [anon_sym_xor2] = ACTIONS(2039), - [anon_sym_or2] = ACTIONS(2039), - [anon_sym_not_DASHin2] = ACTIONS(2039), - [anon_sym_has2] = ACTIONS(2039), - [anon_sym_not_DASHhas2] = ACTIONS(2039), - [anon_sym_starts_DASHwith2] = ACTIONS(2039), - [anon_sym_ends_DASHwith2] = ACTIONS(2039), - [anon_sym_EQ_EQ2] = ACTIONS(2039), - [anon_sym_BANG_EQ2] = ACTIONS(2039), - [anon_sym_LT2] = ACTIONS(2033), - [anon_sym_LT_EQ2] = ACTIONS(2039), - [anon_sym_GT_EQ2] = ACTIONS(2039), - [anon_sym_EQ_TILDE2] = ACTIONS(2039), - [anon_sym_BANG_TILDE2] = ACTIONS(2039), - [anon_sym_STAR_STAR2] = ACTIONS(2039), - [anon_sym_PLUS_PLUS2] = ACTIONS(2039), - [anon_sym_SLASH2] = ACTIONS(2033), - [anon_sym_mod2] = ACTIONS(2039), - [anon_sym_SLASH_SLASH2] = ACTIONS(2039), - [anon_sym_PLUS2] = ACTIONS(2033), - [anon_sym_bit_DASHshl2] = ACTIONS(2039), - [anon_sym_bit_DASHshr2] = ACTIONS(2039), - [anon_sym_bit_DASHand2] = ACTIONS(2039), - [anon_sym_bit_DASHxor2] = ACTIONS(2039), - [anon_sym_bit_DASHor2] = ACTIONS(2039), - [anon_sym_DOT_DOT2] = ACTIONS(5088), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(5090), - [anon_sym_DOT_DOT_LT2] = ACTIONS(5090), - [anon_sym_err_GT] = ACTIONS(2033), - [anon_sym_out_GT] = ACTIONS(2033), - [anon_sym_e_GT] = ACTIONS(2033), - [anon_sym_o_GT] = ACTIONS(2033), - [anon_sym_err_PLUSout_GT] = ACTIONS(2033), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2033), - [anon_sym_o_PLUSe_GT] = ACTIONS(2033), - [anon_sym_e_PLUSo_GT] = ACTIONS(2033), - [anon_sym_err_GT_GT] = ACTIONS(2039), - [anon_sym_out_GT_GT] = ACTIONS(2039), - [anon_sym_e_GT_GT] = ACTIONS(2039), - [anon_sym_o_GT_GT] = ACTIONS(2039), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2039), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2039), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2039), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2039), + [anon_sym_in2] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_STAR2] = ACTIONS(1782), + [anon_sym_and2] = ACTIONS(1790), + [anon_sym_xor2] = ACTIONS(1790), + [anon_sym_or2] = ACTIONS(1790), + [anon_sym_not_DASHin2] = ACTIONS(1790), + [anon_sym_has2] = ACTIONS(1790), + [anon_sym_not_DASHhas2] = ACTIONS(1790), + [anon_sym_starts_DASHwith2] = ACTIONS(1790), + [anon_sym_ends_DASHwith2] = ACTIONS(1790), + [anon_sym_EQ_EQ2] = ACTIONS(1790), + [anon_sym_BANG_EQ2] = ACTIONS(1790), + [anon_sym_LT2] = ACTIONS(1782), + [anon_sym_LT_EQ2] = ACTIONS(1790), + [anon_sym_GT_EQ2] = ACTIONS(1790), + [anon_sym_EQ_TILDE2] = ACTIONS(1790), + [anon_sym_BANG_TILDE2] = ACTIONS(1790), + [anon_sym_STAR_STAR2] = ACTIONS(1790), + [anon_sym_PLUS_PLUS2] = ACTIONS(1790), + [anon_sym_SLASH2] = ACTIONS(1782), + [anon_sym_mod2] = ACTIONS(1790), + [anon_sym_SLASH_SLASH2] = ACTIONS(1790), + [anon_sym_PLUS2] = ACTIONS(1782), + [anon_sym_bit_DASHshl2] = ACTIONS(1790), + [anon_sym_bit_DASHshr2] = ACTIONS(1790), + [anon_sym_bit_DASHand2] = ACTIONS(1790), + [anon_sym_bit_DASHxor2] = ACTIONS(1790), + [anon_sym_bit_DASHor2] = ACTIONS(1790), + [anon_sym_DOT_DOT2] = ACTIONS(4960), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4962), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4962), + [anon_sym_err_GT] = ACTIONS(1782), + [anon_sym_out_GT] = ACTIONS(1782), + [anon_sym_e_GT] = ACTIONS(1782), + [anon_sym_o_GT] = ACTIONS(1782), + [anon_sym_err_PLUSout_GT] = ACTIONS(1782), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1782), + [anon_sym_o_PLUSe_GT] = ACTIONS(1782), + [anon_sym_e_PLUSo_GT] = ACTIONS(1782), + [anon_sym_err_GT_GT] = ACTIONS(1790), + [anon_sym_out_GT_GT] = ACTIONS(1790), + [anon_sym_e_GT_GT] = ACTIONS(1790), + [anon_sym_o_GT_GT] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), [anon_sym_POUND] = ACTIONS(245), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1749), 1, - sym_comment, - ACTIONS(1931), 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(1933), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [73] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1750), 1, - sym_comment, - STATE(2266), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5094), 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(5092), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [152] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1751), 1, - sym_comment, - STATE(2278), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5098), 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(5096), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [231] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1752), 1, - sym_comment, - ACTIONS(962), 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(964), 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, - [304] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1753), 1, - sym_comment, - ACTIONS(5034), 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(5032), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [377] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1754), 1, - sym_comment, - ACTIONS(1666), 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(1668), 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, - [450] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1755), 1, - sym_comment, - ACTIONS(5102), 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(5100), 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, - [523] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1756), 1, - sym_comment, - ACTIONS(5034), 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(5032), 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, - [596] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1757), 1, - sym_comment, - ACTIONS(2378), 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(2380), 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, - [669] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1758), 1, - sym_comment, - ACTIONS(1648), 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(1650), 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, - [742] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1759), 1, - sym_comment, - ACTIONS(982), 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(984), 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, - [815] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1760), 1, - sym_comment, - 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, - 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(2416), 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, - [888] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1761), 1, - sym_comment, - ACTIONS(5106), 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(5104), 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, - [961] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1762), 1, - sym_comment, - ACTIONS(1719), 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(1721), 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, - [1034] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1763), 1, - sym_comment, - ACTIONS(1790), 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(1792), 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, - [1107] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4482), 1, - aux_sym_unquoted_token2, - STATE(1764), 1, - sym_comment, - ACTIONS(1579), 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(1591), 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, - [1182] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1765), 1, - sym_comment, - STATE(2281), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5110), 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(5108), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [1261] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1766), 1, - sym_comment, - ACTIONS(966), 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(968), 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, - [1334] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1767), 1, - sym_comment, - ACTIONS(2418), 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(2420), 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, - [1407] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1768), 1, - sym_comment, - ACTIONS(2422), 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(2424), 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, - [1480] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1769), 1, - sym_comment, - ACTIONS(5115), 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(5112), 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, - [1553] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1770), 1, - sym_comment, - ACTIONS(1851), 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(1853), 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, - [1626] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_DOT2, - STATE(1628), 1, - aux_sym_cell_path_repeat1, - STATE(1771), 1, - sym_comment, - STATE(1858), 1, - sym_path, - STATE(2447), 1, - sym_cell_path, - ACTIONS(1941), 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(1943), 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [1707] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1772), 1, - sym_comment, - STATE(2146), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5094), 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(5092), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [1786] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1773), 1, - sym_comment, - ACTIONS(2461), 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(2463), 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, - [1859] = 19, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2134), 1, - anon_sym_DOLLAR, - ACTIONS(2186), 1, - sym_raw_string_begin, - ACTIONS(4333), 1, - anon_sym_DQUOTE, - ACTIONS(4337), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4339), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4986), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(1774), 1, - sym_comment, - STATE(3794), 1, - sym__val_number_decimal, - STATE(4625), 1, - sym__inter_single_quotes, - STATE(4629), 1, - sym__inter_double_quotes, - ACTIONS(4335), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4077), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4684), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(357), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(359), 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, - [1962] = 9, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1006), 1, - anon_sym_DOT_DOT2, - ACTIONS(5122), 1, - sym__newline, - STATE(1775), 1, - sym_comment, - ACTIONS(1008), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5127), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5131), 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(5125), 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_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(5129), 25, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [2045] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1006), 1, - anon_sym_DOT_DOT2, - STATE(1776), 1, - sym_comment, - ACTIONS(1008), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5127), 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(5129), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [2122] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_DOT2, - STATE(1628), 1, - aux_sym_cell_path_repeat1, - STATE(1777), 1, - sym_comment, - STATE(1858), 1, - sym_path, - STATE(2420), 1, - sym_cell_path, - ACTIONS(1851), 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(1853), 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [2203] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_DOT2, - STATE(1628), 1, - aux_sym_cell_path_repeat1, - STATE(1778), 1, - sym_comment, - STATE(1858), 1, - sym_path, - STATE(2421), 1, - sym_cell_path, - ACTIONS(1859), 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(1861), 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [2284] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_DOT2, - STATE(1628), 1, - aux_sym_cell_path_repeat1, - STATE(1779), 1, - sym_comment, - STATE(1858), 1, - sym_path, - STATE(2423), 1, - sym_cell_path, - 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), 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [2365] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1780), 1, - sym_comment, - STATE(2176), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5094), 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(5092), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [2444] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1781), 1, - sym_comment, - ACTIONS(1963), 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(1965), 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, - [2517] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_DOT2, - STATE(1628), 1, - aux_sym_cell_path_repeat1, - STATE(1782), 1, - sym_comment, - STATE(1858), 1, - sym_path, - STATE(2424), 1, - sym_cell_path, - ACTIONS(1875), 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(1877), 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [2598] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1783), 1, - sym_comment, - STATE(2220), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5094), 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(5092), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [2677] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1784), 1, - sym_comment, - ACTIONS(2465), 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(2467), 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, - [2750] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1785), 1, - sym_comment, - ACTIONS(2300), 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(2302), 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, - [2823] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1786), 1, - sym_comment, - ACTIONS(2457), 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(2459), 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, - [2896] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1787), 1, - sym_comment, - ACTIONS(2410), 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(2412), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [2969] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1788), 1, - sym_comment, - STATE(2240), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5098), 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(5096), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [3048] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1789), 1, - sym_comment, - STATE(2226), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5094), 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(5092), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [3127] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1790), 1, - sym_comment, - ACTIONS(2033), 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(2039), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [3200] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1791), 1, - sym_comment, - 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, - 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(2428), 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, - [3273] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_DOT2, - STATE(1628), 1, - aux_sym_cell_path_repeat1, - STATE(1792), 1, - sym_comment, - STATE(1858), 1, - sym_path, - STATE(2520), 1, - sym_cell_path, - ACTIONS(1959), 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(1961), 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [3354] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1793), 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, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - [3427] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1794), 1, - sym_comment, - STATE(2277), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5098), 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(5096), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [3506] = 19, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2134), 1, - anon_sym_DOLLAR, - ACTIONS(2186), 1, - sym_raw_string_begin, - ACTIONS(4333), 1, - anon_sym_DQUOTE, - ACTIONS(4337), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4339), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4986), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5120), 1, - anon_sym_LPAREN, - STATE(1795), 1, - sym_comment, - STATE(3794), 1, - sym__val_number_decimal, - STATE(4625), 1, - sym__inter_single_quotes, - STATE(4629), 1, - sym__inter_double_quotes, - ACTIONS(4335), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4077), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4551), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(357), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(359), 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, - [3609] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1796), 1, - sym_comment, - ACTIONS(1879), 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(1881), 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, - [3682] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1797), 1, - sym_comment, - ACTIONS(2414), 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(2416), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [3755] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1798), 1, - sym_comment, - ACTIONS(2320), 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(2322), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [3828] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1799), 1, - sym_comment, - STATE(2250), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5094), 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(5092), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [3907] = 7, + [1616] = { + [sym_comment] = STATE(1616), + [ts_builtin_sym_end] = ACTIONS(1688), + [sym__newline] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_err_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_GT_PIPE] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1688), + [anon_sym_GT2] = ACTIONS(1686), + [anon_sym_DASH2] = ACTIONS(1688), + [anon_sym_in2] = ACTIONS(1688), + [anon_sym_STAR2] = ACTIONS(1686), + [anon_sym_and2] = ACTIONS(1688), + [anon_sym_xor2] = ACTIONS(1688), + [anon_sym_or2] = ACTIONS(1688), + [anon_sym_not_DASHin2] = ACTIONS(1688), + [anon_sym_has2] = ACTIONS(1688), + [anon_sym_not_DASHhas2] = ACTIONS(1688), + [anon_sym_starts_DASHwith2] = ACTIONS(1688), + [anon_sym_ends_DASHwith2] = ACTIONS(1688), + [anon_sym_EQ_EQ2] = ACTIONS(1688), + [anon_sym_BANG_EQ2] = ACTIONS(1688), + [anon_sym_LT2] = ACTIONS(1686), + [anon_sym_LT_EQ2] = ACTIONS(1688), + [anon_sym_GT_EQ2] = ACTIONS(1688), + [anon_sym_EQ_TILDE2] = ACTIONS(1688), + [anon_sym_BANG_TILDE2] = ACTIONS(1688), + [anon_sym_LPAREN2] = ACTIONS(1688), + [anon_sym_STAR_STAR2] = ACTIONS(1688), + [anon_sym_PLUS_PLUS2] = ACTIONS(1688), + [anon_sym_SLASH2] = ACTIONS(1686), + [anon_sym_mod2] = ACTIONS(1688), + [anon_sym_SLASH_SLASH2] = ACTIONS(1688), + [anon_sym_PLUS2] = ACTIONS(1686), + [anon_sym_bit_DASHshl2] = ACTIONS(1688), + [anon_sym_bit_DASHshr2] = ACTIONS(1688), + [anon_sym_bit_DASHand2] = ACTIONS(1688), + [anon_sym_bit_DASHxor2] = ACTIONS(1688), + [anon_sym_bit_DASHor2] = ACTIONS(1688), + [anon_sym_DOT_DOT2] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1688), + [anon_sym_err_GT] = ACTIONS(1686), + [anon_sym_out_GT] = ACTIONS(1686), + [anon_sym_e_GT] = ACTIONS(1686), + [anon_sym_o_GT] = ACTIONS(1686), + [anon_sym_err_PLUSout_GT] = ACTIONS(1686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1686), + [anon_sym_o_PLUSe_GT] = ACTIONS(1686), + [anon_sym_e_PLUSo_GT] = ACTIONS(1686), + [anon_sym_err_GT_GT] = ACTIONS(1688), + [anon_sym_out_GT_GT] = ACTIONS(1688), + [anon_sym_e_GT_GT] = ACTIONS(1688), + [anon_sym_o_GT_GT] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1688), + [aux_sym_unquoted_token2] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(245), + }, + [1617] = { + [sym_comment] = STATE(1617), + [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(2134), + [anon_sym_DOLLAR] = ACTIONS(2134), + [anon_sym_DASH_DASH] = ACTIONS(2136), + [anon_sym_DASH2] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_DOT_DOT] = ACTIONS(2134), + [anon_sym_LPAREN2] = ACTIONS(1784), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2136), + [anon_sym_DOT_DOT_LT] = ACTIONS(2136), + [anon_sym_null] = ACTIONS(2136), + [anon_sym_true] = ACTIONS(2136), + [anon_sym_false] = ACTIONS(2136), + [aux_sym__val_number_decimal_token1] = ACTIONS(2134), + [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(2134), + [anon_sym_0o] = ACTIONS(2134), + [anon_sym_0x] = ACTIONS(2134), + [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(2134), + [anon_sym_out_GT] = ACTIONS(2134), + [anon_sym_e_GT] = ACTIONS(2134), + [anon_sym_o_GT] = ACTIONS(2134), + [anon_sym_err_PLUSout_GT] = ACTIONS(2134), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2134), + [anon_sym_o_PLUSe_GT] = ACTIONS(2134), + [anon_sym_e_PLUSo_GT] = ACTIONS(2134), + [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(2134), + [aux_sym_unquoted_token2] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2136), + }, + [1618] = { + [sym_comment] = STATE(1618), + [ts_builtin_sym_end] = ACTIONS(1790), + [sym__newline] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_err_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_GT_PIPE] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_DOLLAR] = ACTIONS(1782), + [anon_sym_DASH_DASH] = ACTIONS(1790), + [anon_sym_DASH2] = ACTIONS(1782), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_LPAREN2] = ACTIONS(1784), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1790), + [anon_sym_DOT_DOT_LT] = ACTIONS(1790), + [anon_sym_null] = ACTIONS(1790), + [anon_sym_true] = ACTIONS(1790), + [anon_sym_false] = ACTIONS(1790), + [aux_sym__val_number_decimal_token1] = ACTIONS(1782), + [aux_sym__val_number_decimal_token2] = ACTIONS(1790), + [aux_sym__val_number_decimal_token3] = ACTIONS(1790), + [aux_sym__val_number_decimal_token4] = ACTIONS(1790), + [aux_sym__val_number_token1] = ACTIONS(1790), + [aux_sym__val_number_token2] = ACTIONS(1790), + [aux_sym__val_number_token3] = ACTIONS(1790), + [aux_sym__val_number_token4] = ACTIONS(1790), + [aux_sym__val_number_token5] = ACTIONS(1790), + [aux_sym__val_number_token6] = ACTIONS(1790), + [anon_sym_0b] = ACTIONS(1782), + [anon_sym_0o] = ACTIONS(1782), + [anon_sym_0x] = ACTIONS(1782), + [sym_val_date] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [sym__str_single_quotes] = ACTIONS(1790), + [sym__str_back_ticks] = ACTIONS(1790), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1790), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1790), + [anon_sym_err_GT] = ACTIONS(1782), + [anon_sym_out_GT] = ACTIONS(1782), + [anon_sym_e_GT] = ACTIONS(1782), + [anon_sym_o_GT] = ACTIONS(1782), + [anon_sym_err_PLUSout_GT] = ACTIONS(1782), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1782), + [anon_sym_o_PLUSe_GT] = ACTIONS(1782), + [anon_sym_e_PLUSo_GT] = ACTIONS(1782), + [anon_sym_err_GT_GT] = ACTIONS(1790), + [anon_sym_out_GT_GT] = ACTIONS(1790), + [anon_sym_e_GT_GT] = ACTIONS(1790), + [anon_sym_o_GT_GT] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), + [aux_sym_unquoted_token1] = ACTIONS(1782), + [aux_sym_unquoted_token2] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1790), + }, + [1619] = { + [sym_comment] = STATE(1619), + [ts_builtin_sym_end] = ACTIONS(1799), + [sym__newline] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(1799), + [anon_sym_PIPE] = ACTIONS(1799), + [anon_sym_err_GT_PIPE] = ACTIONS(1799), + [anon_sym_out_GT_PIPE] = ACTIONS(1799), + [anon_sym_e_GT_PIPE] = ACTIONS(1799), + [anon_sym_o_GT_PIPE] = ACTIONS(1799), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1799), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1799), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1799), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1799), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1797), + [anon_sym_DOLLAR] = ACTIONS(1797), + [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_DASH2] = ACTIONS(1797), + [anon_sym_LBRACE] = ACTIONS(1799), + [anon_sym_DOT_DOT] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1799), + [anon_sym_DOT_DOT_LT] = ACTIONS(1799), + [anon_sym_null] = ACTIONS(1799), + [anon_sym_true] = ACTIONS(1799), + [anon_sym_false] = ACTIONS(1799), + [aux_sym__val_number_decimal_token1] = ACTIONS(1797), + [aux_sym__val_number_decimal_token2] = ACTIONS(1799), + [aux_sym__val_number_decimal_token3] = ACTIONS(1799), + [aux_sym__val_number_decimal_token4] = ACTIONS(1799), + [aux_sym__val_number_token1] = ACTIONS(1799), + [aux_sym__val_number_token2] = ACTIONS(1799), + [aux_sym__val_number_token3] = ACTIONS(1799), + [aux_sym__val_number_token4] = ACTIONS(1799), + [aux_sym__val_number_token5] = ACTIONS(1799), + [aux_sym__val_number_token6] = ACTIONS(1799), + [anon_sym_0b] = ACTIONS(1797), + [anon_sym_0o] = ACTIONS(1797), + [anon_sym_0x] = ACTIONS(1797), + [sym_val_date] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1799), + [sym__str_single_quotes] = ACTIONS(1799), + [sym__str_back_ticks] = ACTIONS(1799), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1799), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1799), + [anon_sym_err_GT] = ACTIONS(1797), + [anon_sym_out_GT] = ACTIONS(1797), + [anon_sym_e_GT] = ACTIONS(1797), + [anon_sym_o_GT] = ACTIONS(1797), + [anon_sym_err_PLUSout_GT] = ACTIONS(1797), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1797), + [anon_sym_o_PLUSe_GT] = ACTIONS(1797), + [anon_sym_e_PLUSo_GT] = ACTIONS(1797), + [anon_sym_err_GT_GT] = ACTIONS(1799), + [anon_sym_out_GT_GT] = ACTIONS(1799), + [anon_sym_e_GT_GT] = ACTIONS(1799), + [anon_sym_o_GT_GT] = ACTIONS(1799), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1799), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1799), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1799), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1799), + [aux_sym_unquoted_token1] = ACTIONS(1797), + [aux_sym_unquoted_token2] = ACTIONS(1797), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1799), + }, + [1620] = { + [sym_comment] = STATE(1620), + [sym__newline] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2234), + [anon_sym_err_GT_PIPE] = ACTIONS(2234), + [anon_sym_out_GT_PIPE] = ACTIONS(2234), + [anon_sym_e_GT_PIPE] = ACTIONS(2234), + [anon_sym_o_GT_PIPE] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2234), + [anon_sym_LBRACK] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_RPAREN] = ACTIONS(2234), + [anon_sym_DOLLAR] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [anon_sym_DASH2] = ACTIONS(2230), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_DOT_DOT] = ACTIONS(2230), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2234), + [anon_sym_DOT_DOT_LT] = ACTIONS(2234), + [anon_sym_null] = ACTIONS(2234), + [anon_sym_true] = ACTIONS(2234), + [anon_sym_false] = ACTIONS(2234), + [aux_sym__val_number_decimal_token1] = ACTIONS(2230), + [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_0b] = ACTIONS(2230), + [anon_sym_0o] = ACTIONS(2230), + [anon_sym_0x] = ACTIONS(2230), + [anon_sym_LBRACK2] = ACTIONS(4964), + [sym_val_date] = ACTIONS(2234), + [anon_sym_DQUOTE] = ACTIONS(2234), + [sym__str_single_quotes] = ACTIONS(2234), + [sym__str_back_ticks] = ACTIONS(2234), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2234), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2234), + [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(2234), + [anon_sym_out_GT_GT] = ACTIONS(2234), + [anon_sym_e_GT_GT] = ACTIONS(2234), + [anon_sym_o_GT_GT] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2234), + [aux_sym_unquoted_token1] = ACTIONS(2230), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2234), + }, + [1621] = { + [sym_comment] = STATE(1621), + [sym__newline] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(4966), + [anon_sym_PIPE] = ACTIONS(4966), + [anon_sym_err_GT_PIPE] = ACTIONS(4966), + [anon_sym_out_GT_PIPE] = ACTIONS(4966), + [anon_sym_e_GT_PIPE] = ACTIONS(4966), + [anon_sym_o_GT_PIPE] = ACTIONS(4966), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4966), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4966), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4966), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(4966), + [anon_sym_LPAREN] = ACTIONS(4968), + [anon_sym_RPAREN] = ACTIONS(4966), + [anon_sym_DOLLAR] = ACTIONS(4968), + [anon_sym_DASH_DASH] = ACTIONS(4966), + [anon_sym_DASH2] = ACTIONS(4968), + [anon_sym_LBRACE] = ACTIONS(4966), + [anon_sym_RBRACE] = ACTIONS(4966), + [anon_sym_DOT_DOT] = ACTIONS(4968), + [anon_sym_LPAREN2] = ACTIONS(4966), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4966), + [anon_sym_DOT_DOT_LT] = ACTIONS(4966), + [anon_sym_null] = ACTIONS(4966), + [anon_sym_true] = ACTIONS(4966), + [anon_sym_false] = ACTIONS(4966), + [aux_sym__val_number_decimal_token1] = ACTIONS(4968), + [aux_sym__val_number_decimal_token2] = ACTIONS(4966), + [aux_sym__val_number_decimal_token3] = ACTIONS(4966), + [aux_sym__val_number_decimal_token4] = ACTIONS(4966), + [aux_sym__val_number_token1] = ACTIONS(4966), + [aux_sym__val_number_token2] = ACTIONS(4966), + [aux_sym__val_number_token3] = ACTIONS(4966), + [aux_sym__val_number_token4] = ACTIONS(4966), + [aux_sym__val_number_token5] = ACTIONS(4966), + [aux_sym__val_number_token6] = ACTIONS(4966), + [anon_sym_0b] = ACTIONS(4968), + [anon_sym_0o] = ACTIONS(4968), + [anon_sym_0x] = ACTIONS(4968), + [sym_val_date] = ACTIONS(4966), + [anon_sym_DQUOTE] = ACTIONS(4966), + [sym__str_single_quotes] = ACTIONS(4966), + [sym__str_back_ticks] = ACTIONS(4966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4966), + [anon_sym_err_GT] = ACTIONS(4968), + [anon_sym_out_GT] = ACTIONS(4968), + [anon_sym_e_GT] = ACTIONS(4968), + [anon_sym_o_GT] = ACTIONS(4968), + [anon_sym_err_PLUSout_GT] = ACTIONS(4968), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4968), + [anon_sym_o_PLUSe_GT] = ACTIONS(4968), + [anon_sym_e_PLUSo_GT] = ACTIONS(4968), + [anon_sym_err_GT_GT] = ACTIONS(4966), + [anon_sym_out_GT_GT] = ACTIONS(4966), + [anon_sym_e_GT_GT] = ACTIONS(4966), + [anon_sym_o_GT_GT] = ACTIONS(4966), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4966), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4966), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4966), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4966), + [aux_sym_unquoted_token1] = ACTIONS(4968), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4966), + }, + [1622] = { + [sym__expr_parenthesized_immediate] = STATE(7173), + [sym_comment] = STATE(1622), + [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(4828), + [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_LPAREN2] = ACTIONS(4208), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4826), + [anon_sym_DOT_DOT_LT] = ACTIONS(4826), + [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(245), + [sym_raw_string_begin] = ACTIONS(4826), + }, + [1623] = { + [sym__expr_parenthesized_immediate] = STATE(7173), + [sym_comment] = STATE(1623), + [ts_builtin_sym_end] = ACTIONS(4830), + [sym__newline] = ACTIONS(4830), + [anon_sym_SEMI] = ACTIONS(4830), + [anon_sym_PIPE] = ACTIONS(4830), + [anon_sym_err_GT_PIPE] = ACTIONS(4830), + [anon_sym_out_GT_PIPE] = ACTIONS(4830), + [anon_sym_e_GT_PIPE] = ACTIONS(4830), + [anon_sym_o_GT_PIPE] = ACTIONS(4830), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4830), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4830), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4830), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4830), + [anon_sym_LBRACK] = ACTIONS(4830), + [anon_sym_LPAREN] = ACTIONS(4832), + [anon_sym_DOLLAR] = ACTIONS(4832), + [anon_sym_DASH_DASH] = ACTIONS(4830), + [anon_sym_DASH2] = ACTIONS(4832), + [anon_sym_LBRACE] = ACTIONS(4830), + [anon_sym_DOT_DOT] = ACTIONS(4832), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4830), + [anon_sym_DOT_DOT_LT] = ACTIONS(4830), + [anon_sym_null] = ACTIONS(4830), + [anon_sym_true] = ACTIONS(4830), + [anon_sym_false] = ACTIONS(4830), + [aux_sym__val_number_decimal_token1] = ACTIONS(4832), + [aux_sym__val_number_decimal_token2] = ACTIONS(4830), + [aux_sym__val_number_decimal_token3] = ACTIONS(4830), + [aux_sym__val_number_decimal_token4] = ACTIONS(4830), + [aux_sym__val_number_token1] = ACTIONS(4830), + [aux_sym__val_number_token2] = ACTIONS(4830), + [aux_sym__val_number_token3] = ACTIONS(4830), + [aux_sym__val_number_token4] = ACTIONS(4830), + [aux_sym__val_number_token5] = ACTIONS(4830), + [aux_sym__val_number_token6] = ACTIONS(4830), + [anon_sym_0b] = ACTIONS(4832), + [anon_sym_0o] = ACTIONS(4832), + [anon_sym_0x] = ACTIONS(4832), + [sym_val_date] = ACTIONS(4830), + [anon_sym_DQUOTE] = ACTIONS(4830), + [sym__str_single_quotes] = ACTIONS(4830), + [sym__str_back_ticks] = ACTIONS(4830), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4830), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4830), + [anon_sym_err_GT] = ACTIONS(4832), + [anon_sym_out_GT] = ACTIONS(4832), + [anon_sym_e_GT] = ACTIONS(4832), + [anon_sym_o_GT] = ACTIONS(4832), + [anon_sym_err_PLUSout_GT] = ACTIONS(4832), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4832), + [anon_sym_o_PLUSe_GT] = ACTIONS(4832), + [anon_sym_e_PLUSo_GT] = ACTIONS(4832), + [anon_sym_err_GT_GT] = ACTIONS(4830), + [anon_sym_out_GT_GT] = ACTIONS(4830), + [anon_sym_e_GT_GT] = ACTIONS(4830), + [anon_sym_o_GT_GT] = ACTIONS(4830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4830), + [aux_sym_unquoted_token1] = ACTIONS(4832), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4830), + }, + [1624] = { + [sym_comment] = STATE(1624), + [ts_builtin_sym_end] = ACTIONS(1799), + [sym__newline] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(1799), + [anon_sym_PIPE] = ACTIONS(1799), + [anon_sym_err_GT_PIPE] = ACTIONS(1799), + [anon_sym_out_GT_PIPE] = ACTIONS(1799), + [anon_sym_e_GT_PIPE] = ACTIONS(1799), + [anon_sym_o_GT_PIPE] = ACTIONS(1799), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1799), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1799), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1799), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1799), + [anon_sym_GT2] = ACTIONS(1797), + [anon_sym_DASH2] = ACTIONS(1799), + [anon_sym_in2] = ACTIONS(1799), + [anon_sym_STAR2] = ACTIONS(1797), + [anon_sym_and2] = ACTIONS(1799), + [anon_sym_xor2] = ACTIONS(1799), + [anon_sym_or2] = ACTIONS(1799), + [anon_sym_not_DASHin2] = ACTIONS(1799), + [anon_sym_has2] = ACTIONS(1799), + [anon_sym_not_DASHhas2] = ACTIONS(1799), + [anon_sym_starts_DASHwith2] = ACTIONS(1799), + [anon_sym_ends_DASHwith2] = ACTIONS(1799), + [anon_sym_EQ_EQ2] = ACTIONS(1799), + [anon_sym_BANG_EQ2] = ACTIONS(1799), + [anon_sym_LT2] = ACTIONS(1797), + [anon_sym_LT_EQ2] = ACTIONS(1799), + [anon_sym_GT_EQ2] = ACTIONS(1799), + [anon_sym_EQ_TILDE2] = ACTIONS(1799), + [anon_sym_BANG_TILDE2] = ACTIONS(1799), + [anon_sym_LPAREN2] = ACTIONS(1799), + [anon_sym_STAR_STAR2] = ACTIONS(1799), + [anon_sym_PLUS_PLUS2] = ACTIONS(1799), + [anon_sym_SLASH2] = ACTIONS(1797), + [anon_sym_mod2] = ACTIONS(1799), + [anon_sym_SLASH_SLASH2] = ACTIONS(1799), + [anon_sym_PLUS2] = ACTIONS(1797), + [anon_sym_bit_DASHshl2] = ACTIONS(1799), + [anon_sym_bit_DASHshr2] = ACTIONS(1799), + [anon_sym_bit_DASHand2] = ACTIONS(1799), + [anon_sym_bit_DASHxor2] = ACTIONS(1799), + [anon_sym_bit_DASHor2] = ACTIONS(1799), + [anon_sym_DOT_DOT2] = ACTIONS(1797), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1799), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1799), + [anon_sym_err_GT] = ACTIONS(1797), + [anon_sym_out_GT] = ACTIONS(1797), + [anon_sym_e_GT] = ACTIONS(1797), + [anon_sym_o_GT] = ACTIONS(1797), + [anon_sym_err_PLUSout_GT] = ACTIONS(1797), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1797), + [anon_sym_o_PLUSe_GT] = ACTIONS(1797), + [anon_sym_e_PLUSo_GT] = ACTIONS(1797), + [anon_sym_err_GT_GT] = ACTIONS(1799), + [anon_sym_out_GT_GT] = ACTIONS(1799), + [anon_sym_e_GT_GT] = ACTIONS(1799), + [anon_sym_o_GT_GT] = ACTIONS(1799), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1799), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1799), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1799), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1799), + [aux_sym_unquoted_token2] = ACTIONS(1797), + [anon_sym_POUND] = ACTIONS(245), + }, + [1625] = { + [sym__expr_parenthesized_immediate] = STATE(6836), + [sym_comment] = STATE(1625), + [sym__newline] = ACTIONS(4970), + [anon_sym_SEMI] = ACTIONS(4970), + [anon_sym_PIPE] = ACTIONS(4970), + [anon_sym_err_GT_PIPE] = ACTIONS(4970), + [anon_sym_out_GT_PIPE] = ACTIONS(4970), + [anon_sym_e_GT_PIPE] = ACTIONS(4970), + [anon_sym_o_GT_PIPE] = ACTIONS(4970), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4970), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4970), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4970), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4970), + [anon_sym_LBRACK] = ACTIONS(4970), + [anon_sym_LPAREN] = ACTIONS(4972), + [anon_sym_RPAREN] = ACTIONS(4970), + [anon_sym_DOLLAR] = ACTIONS(4972), + [anon_sym_DASH_DASH] = ACTIONS(4970), + [anon_sym_DASH2] = ACTIONS(4972), + [anon_sym_LBRACE] = ACTIONS(4970), + [anon_sym_DOT_DOT] = ACTIONS(4972), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4970), + [anon_sym_DOT_DOT_LT] = ACTIONS(4970), + [anon_sym_null] = ACTIONS(4970), + [anon_sym_true] = ACTIONS(4970), + [anon_sym_false] = ACTIONS(4970), + [aux_sym__val_number_decimal_token1] = ACTIONS(4972), + [aux_sym__val_number_decimal_token2] = ACTIONS(4970), + [aux_sym__val_number_decimal_token3] = ACTIONS(4970), + [aux_sym__val_number_decimal_token4] = ACTIONS(4970), + [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(4970), + [aux_sym__val_number_token6] = ACTIONS(4970), + [anon_sym_0b] = ACTIONS(4972), + [anon_sym_0o] = ACTIONS(4972), + [anon_sym_0x] = ACTIONS(4972), + [sym_val_date] = ACTIONS(4970), + [anon_sym_DQUOTE] = ACTIONS(4970), + [sym__str_single_quotes] = ACTIONS(4970), + [sym__str_back_ticks] = ACTIONS(4970), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4970), + [anon_sym_err_GT] = ACTIONS(4972), + [anon_sym_out_GT] = ACTIONS(4972), + [anon_sym_e_GT] = ACTIONS(4972), + [anon_sym_o_GT] = ACTIONS(4972), + [anon_sym_err_PLUSout_GT] = ACTIONS(4972), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4972), + [anon_sym_o_PLUSe_GT] = ACTIONS(4972), + [anon_sym_e_PLUSo_GT] = ACTIONS(4972), + [anon_sym_err_GT_GT] = ACTIONS(4970), + [anon_sym_out_GT_GT] = ACTIONS(4970), + [anon_sym_e_GT_GT] = ACTIONS(4970), + [anon_sym_o_GT_GT] = ACTIONS(4970), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4970), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4970), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4970), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4970), + [aux_sym_unquoted_token1] = ACTIONS(4972), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4970), + }, + [1626] = { + [sym_comment] = STATE(1626), + [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(4976), + [anon_sym_RPAREN] = ACTIONS(4974), + [anon_sym_DOLLAR] = ACTIONS(4976), + [anon_sym_DASH_DASH] = ACTIONS(4974), + [anon_sym_DASH2] = ACTIONS(4976), + [anon_sym_LBRACE] = ACTIONS(4974), + [anon_sym_RBRACE] = ACTIONS(4974), + [anon_sym_DOT_DOT] = ACTIONS(4976), + [anon_sym_LPAREN2] = ACTIONS(4974), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4974), + [anon_sym_DOT_DOT_LT] = ACTIONS(4974), + [anon_sym_null] = ACTIONS(4974), + [anon_sym_true] = ACTIONS(4974), + [anon_sym_false] = ACTIONS(4974), + [aux_sym__val_number_decimal_token1] = ACTIONS(4976), + [aux_sym__val_number_decimal_token2] = ACTIONS(4974), + [aux_sym__val_number_decimal_token3] = ACTIONS(4974), + [aux_sym__val_number_decimal_token4] = ACTIONS(4974), + [aux_sym__val_number_token1] = ACTIONS(4974), + [aux_sym__val_number_token2] = ACTIONS(4974), + [aux_sym__val_number_token3] = ACTIONS(4974), + [aux_sym__val_number_token4] = ACTIONS(4974), + [aux_sym__val_number_token5] = ACTIONS(4974), + [aux_sym__val_number_token6] = ACTIONS(4974), + [anon_sym_0b] = ACTIONS(4976), + [anon_sym_0o] = ACTIONS(4976), + [anon_sym_0x] = ACTIONS(4976), + [sym_val_date] = ACTIONS(4974), + [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), + [aux_sym_unquoted_token1] = ACTIONS(4976), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4974), + }, + [1627] = { + [sym_comment] = STATE(1627), + [sym__newline] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_err_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_GT_PIPE] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1688), + [anon_sym_RPAREN] = ACTIONS(1688), + [anon_sym_GT2] = ACTIONS(1686), + [anon_sym_DASH2] = ACTIONS(1688), + [anon_sym_in2] = ACTIONS(1688), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_STAR2] = ACTIONS(1686), + [anon_sym_and2] = ACTIONS(1688), + [anon_sym_xor2] = ACTIONS(1688), + [anon_sym_or2] = ACTIONS(1688), + [anon_sym_not_DASHin2] = ACTIONS(1688), + [anon_sym_has2] = ACTIONS(1688), + [anon_sym_not_DASHhas2] = ACTIONS(1688), + [anon_sym_starts_DASHwith2] = ACTIONS(1688), + [anon_sym_ends_DASHwith2] = ACTIONS(1688), + [anon_sym_EQ_EQ2] = ACTIONS(1688), + [anon_sym_BANG_EQ2] = ACTIONS(1688), + [anon_sym_LT2] = ACTIONS(1686), + [anon_sym_LT_EQ2] = ACTIONS(1688), + [anon_sym_GT_EQ2] = ACTIONS(1688), + [anon_sym_EQ_TILDE2] = ACTIONS(1688), + [anon_sym_BANG_TILDE2] = ACTIONS(1688), + [anon_sym_LPAREN2] = ACTIONS(1688), + [anon_sym_STAR_STAR2] = ACTIONS(1688), + [anon_sym_PLUS_PLUS2] = ACTIONS(1688), + [anon_sym_SLASH2] = ACTIONS(1686), + [anon_sym_mod2] = ACTIONS(1688), + [anon_sym_SLASH_SLASH2] = ACTIONS(1688), + [anon_sym_PLUS2] = ACTIONS(1686), + [anon_sym_bit_DASHshl2] = ACTIONS(1688), + [anon_sym_bit_DASHshr2] = ACTIONS(1688), + [anon_sym_bit_DASHand2] = ACTIONS(1688), + [anon_sym_bit_DASHxor2] = ACTIONS(1688), + [anon_sym_bit_DASHor2] = ACTIONS(1688), + [aux_sym__immediate_decimal_token1] = ACTIONS(4978), + [aux_sym__immediate_decimal_token2] = ACTIONS(4980), + [anon_sym_err_GT] = ACTIONS(1686), + [anon_sym_out_GT] = ACTIONS(1686), + [anon_sym_e_GT] = ACTIONS(1686), + [anon_sym_o_GT] = ACTIONS(1686), + [anon_sym_err_PLUSout_GT] = ACTIONS(1686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1686), + [anon_sym_o_PLUSe_GT] = ACTIONS(1686), + [anon_sym_e_PLUSo_GT] = ACTIONS(1686), + [anon_sym_err_GT_GT] = ACTIONS(1688), + [anon_sym_out_GT_GT] = ACTIONS(1688), + [anon_sym_e_GT_GT] = ACTIONS(1688), + [anon_sym_o_GT_GT] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1688), + [aux_sym_unquoted_token2] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(245), + }, + [1628] = { + [sym_comment] = STATE(1628), + [sym__newline] = ACTIONS(4982), + [anon_sym_SEMI] = ACTIONS(4982), + [anon_sym_PIPE] = ACTIONS(4982), + [anon_sym_err_GT_PIPE] = ACTIONS(4982), + [anon_sym_out_GT_PIPE] = ACTIONS(4982), + [anon_sym_e_GT_PIPE] = ACTIONS(4982), + [anon_sym_o_GT_PIPE] = ACTIONS(4982), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4982), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4982), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4982), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4982), + [anon_sym_RPAREN] = ACTIONS(4982), + [anon_sym_GT2] = ACTIONS(4954), + [anon_sym_DASH2] = ACTIONS(4952), + [anon_sym_in2] = ACTIONS(4952), + [anon_sym_LBRACE] = ACTIONS(4982), + [anon_sym_RBRACE] = ACTIONS(4982), + [anon_sym_STAR2] = ACTIONS(4954), + [anon_sym_and2] = ACTIONS(4952), + [anon_sym_xor2] = ACTIONS(4952), + [anon_sym_or2] = ACTIONS(4952), + [anon_sym_not_DASHin2] = ACTIONS(4952), + [anon_sym_has2] = ACTIONS(4952), + [anon_sym_not_DASHhas2] = ACTIONS(4952), + [anon_sym_starts_DASHwith2] = ACTIONS(4952), + [anon_sym_ends_DASHwith2] = ACTIONS(4952), + [anon_sym_EQ_EQ2] = ACTIONS(4952), + [anon_sym_BANG_EQ2] = ACTIONS(4952), + [anon_sym_LT2] = ACTIONS(4954), + [anon_sym_LT_EQ2] = ACTIONS(4952), + [anon_sym_GT_EQ2] = ACTIONS(4952), + [anon_sym_EQ_TILDE2] = ACTIONS(4952), + [anon_sym_BANG_TILDE2] = ACTIONS(4952), + [anon_sym_STAR_STAR2] = ACTIONS(4952), + [anon_sym_PLUS_PLUS2] = ACTIONS(4952), + [anon_sym_SLASH2] = ACTIONS(4954), + [anon_sym_mod2] = ACTIONS(4952), + [anon_sym_SLASH_SLASH2] = ACTIONS(4952), + [anon_sym_PLUS2] = ACTIONS(4954), + [anon_sym_bit_DASHshl2] = ACTIONS(4952), + [anon_sym_bit_DASHshr2] = ACTIONS(4952), + [anon_sym_bit_DASHand2] = ACTIONS(4952), + [anon_sym_bit_DASHxor2] = ACTIONS(4952), + [anon_sym_bit_DASHor2] = ACTIONS(4952), + [anon_sym_DOT_DOT2] = ACTIONS(1006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1008), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1008), + [anon_sym_err_GT] = ACTIONS(4984), + [anon_sym_out_GT] = ACTIONS(4984), + [anon_sym_e_GT] = ACTIONS(4984), + [anon_sym_o_GT] = ACTIONS(4984), + [anon_sym_err_PLUSout_GT] = ACTIONS(4984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4984), + [anon_sym_o_PLUSe_GT] = ACTIONS(4984), + [anon_sym_e_PLUSo_GT] = ACTIONS(4984), + [anon_sym_err_GT_GT] = ACTIONS(4982), + [anon_sym_out_GT_GT] = ACTIONS(4982), + [anon_sym_e_GT_GT] = ACTIONS(4982), + [anon_sym_o_GT_GT] = ACTIONS(4982), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4982), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4982), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4982), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4982), + [anon_sym_POUND] = ACTIONS(245), + }, + [1629] = { + [sym_comment] = STATE(1629), + [ts_builtin_sym_end] = ACTIONS(2148), + [sym__newline] = ACTIONS(2148), + [anon_sym_SEMI] = ACTIONS(2148), + [anon_sym_PIPE] = ACTIONS(2148), + [anon_sym_err_GT_PIPE] = ACTIONS(2148), + [anon_sym_out_GT_PIPE] = ACTIONS(2148), + [anon_sym_e_GT_PIPE] = ACTIONS(2148), + [anon_sym_o_GT_PIPE] = ACTIONS(2148), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2148), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2148), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2148), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_LPAREN] = ACTIONS(2144), + [anon_sym_DOLLAR] = ACTIONS(2144), + [anon_sym_DASH_DASH] = ACTIONS(2148), + [anon_sym_DASH2] = ACTIONS(2144), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_DOT_DOT] = ACTIONS(2144), + [anon_sym_LPAREN2] = ACTIONS(2146), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2148), + [anon_sym_DOT_DOT_LT] = ACTIONS(2148), + [anon_sym_null] = ACTIONS(2148), + [anon_sym_true] = ACTIONS(2148), + [anon_sym_false] = ACTIONS(2148), + [aux_sym__val_number_decimal_token1] = ACTIONS(2144), + [aux_sym__val_number_decimal_token2] = ACTIONS(2148), + [aux_sym__val_number_decimal_token3] = ACTIONS(2148), + [aux_sym__val_number_decimal_token4] = ACTIONS(2148), + [aux_sym__val_number_token1] = ACTIONS(2148), + [aux_sym__val_number_token2] = ACTIONS(2148), + [aux_sym__val_number_token3] = ACTIONS(2148), + [aux_sym__val_number_token4] = ACTIONS(2148), + [aux_sym__val_number_token5] = ACTIONS(2148), + [aux_sym__val_number_token6] = ACTIONS(2148), + [anon_sym_0b] = ACTIONS(2144), + [anon_sym_0o] = ACTIONS(2144), + [anon_sym_0x] = ACTIONS(2144), + [sym_val_date] = ACTIONS(2148), + [anon_sym_DQUOTE] = ACTIONS(2148), + [sym__str_single_quotes] = ACTIONS(2148), + [sym__str_back_ticks] = ACTIONS(2148), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2148), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2148), + [anon_sym_err_GT] = ACTIONS(2144), + [anon_sym_out_GT] = ACTIONS(2144), + [anon_sym_e_GT] = ACTIONS(2144), + [anon_sym_o_GT] = ACTIONS(2144), + [anon_sym_err_PLUSout_GT] = ACTIONS(2144), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2144), + [anon_sym_o_PLUSe_GT] = ACTIONS(2144), + [anon_sym_e_PLUSo_GT] = ACTIONS(2144), + [anon_sym_err_GT_GT] = ACTIONS(2148), + [anon_sym_out_GT_GT] = ACTIONS(2148), + [anon_sym_e_GT_GT] = ACTIONS(2148), + [anon_sym_o_GT_GT] = ACTIONS(2148), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2148), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2148), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2148), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2148), + [aux_sym_unquoted_token1] = ACTIONS(2144), + [aux_sym_unquoted_token2] = ACTIONS(2150), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2148), + }, + [1630] = { + [sym_comment] = STATE(1630), + [sym__newline] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2234), + [anon_sym_err_GT_PIPE] = ACTIONS(2234), + [anon_sym_out_GT_PIPE] = ACTIONS(2234), + [anon_sym_e_GT_PIPE] = ACTIONS(2234), + [anon_sym_o_GT_PIPE] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2234), + [anon_sym_RPAREN] = ACTIONS(2234), + [anon_sym_GT2] = ACTIONS(2230), + [anon_sym_DASH2] = ACTIONS(2234), + [anon_sym_in2] = ACTIONS(2234), + [anon_sym_if] = ACTIONS(2234), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_EQ_GT] = ACTIONS(2234), + [anon_sym_STAR2] = ACTIONS(2230), + [anon_sym_and2] = ACTIONS(2234), + [anon_sym_xor2] = ACTIONS(2234), + [anon_sym_or2] = ACTIONS(2234), + [anon_sym_not_DASHin2] = ACTIONS(2234), + [anon_sym_has2] = ACTIONS(2234), + [anon_sym_not_DASHhas2] = ACTIONS(2234), + [anon_sym_starts_DASHwith2] = ACTIONS(2234), + [anon_sym_ends_DASHwith2] = ACTIONS(2234), + [anon_sym_EQ_EQ2] = ACTIONS(2234), + [anon_sym_BANG_EQ2] = ACTIONS(2234), + [anon_sym_LT2] = ACTIONS(2230), + [anon_sym_LT_EQ2] = ACTIONS(2234), + [anon_sym_GT_EQ2] = ACTIONS(2234), + [anon_sym_EQ_TILDE2] = ACTIONS(2234), + [anon_sym_BANG_TILDE2] = ACTIONS(2234), + [anon_sym_STAR_STAR2] = ACTIONS(2234), + [anon_sym_PLUS_PLUS2] = ACTIONS(2234), + [anon_sym_SLASH2] = ACTIONS(2230), + [anon_sym_mod2] = ACTIONS(2234), + [anon_sym_SLASH_SLASH2] = ACTIONS(2234), + [anon_sym_PLUS2] = ACTIONS(2230), + [anon_sym_bit_DASHshl2] = ACTIONS(2234), + [anon_sym_bit_DASHshr2] = ACTIONS(2234), + [anon_sym_bit_DASHand2] = ACTIONS(2234), + [anon_sym_bit_DASHxor2] = ACTIONS(2234), + [anon_sym_bit_DASHor2] = ACTIONS(2234), + [anon_sym_LBRACK2] = ACTIONS(4986), + [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(2234), + [anon_sym_out_GT_GT] = ACTIONS(2234), + [anon_sym_e_GT_GT] = ACTIONS(2234), + [anon_sym_o_GT_GT] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2234), + [anon_sym_POUND] = ACTIONS(245), + }, + [1631] = { + [sym_comment] = STATE(1631), + [ts_builtin_sym_end] = ACTIONS(952), + [sym__newline] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(952), + [anon_sym_PIPE] = ACTIONS(952), + [anon_sym_err_GT_PIPE] = ACTIONS(952), + [anon_sym_out_GT_PIPE] = ACTIONS(952), + [anon_sym_e_GT_PIPE] = ACTIONS(952), + [anon_sym_o_GT_PIPE] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(952), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_DASH2] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_DOT_DOT] = ACTIONS(950), + [anon_sym_QMARK2] = ACTIONS(952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(952), + [anon_sym_DOT_DOT_LT] = ACTIONS(952), + [anon_sym_null] = ACTIONS(952), + [anon_sym_true] = ACTIONS(952), + [anon_sym_false] = ACTIONS(952), + [aux_sym__val_number_decimal_token1] = ACTIONS(950), + [aux_sym__val_number_decimal_token2] = ACTIONS(952), + [aux_sym__val_number_decimal_token3] = ACTIONS(952), + [aux_sym__val_number_decimal_token4] = ACTIONS(952), + [aux_sym__val_number_token1] = ACTIONS(952), + [aux_sym__val_number_token2] = ACTIONS(952), + [aux_sym__val_number_token3] = ACTIONS(952), + [aux_sym__val_number_token4] = ACTIONS(952), + [aux_sym__val_number_token5] = ACTIONS(952), + [aux_sym__val_number_token6] = ACTIONS(952), + [anon_sym_0b] = ACTIONS(950), + [anon_sym_0o] = ACTIONS(950), + [anon_sym_0x] = ACTIONS(950), + [sym_val_date] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(952), + [sym__str_single_quotes] = ACTIONS(952), + [sym__str_back_ticks] = ACTIONS(952), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(952), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(952), + [anon_sym_DOT2] = ACTIONS(950), + [anon_sym_err_GT] = ACTIONS(950), + [anon_sym_out_GT] = ACTIONS(950), + [anon_sym_e_GT] = ACTIONS(950), + [anon_sym_o_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT] = ACTIONS(950), + [anon_sym_err_GT_GT] = ACTIONS(952), + [anon_sym_out_GT_GT] = ACTIONS(952), + [anon_sym_e_GT_GT] = ACTIONS(952), + [anon_sym_o_GT_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(952), + [aux_sym_unquoted_token1] = ACTIONS(950), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(952), + }, + [1632] = { + [sym_comment] = STATE(1632), + [ts_builtin_sym_end] = ACTIONS(944), + [sym__newline] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(944), + [anon_sym_err_GT_PIPE] = ACTIONS(944), + [anon_sym_out_GT_PIPE] = ACTIONS(944), + [anon_sym_e_GT_PIPE] = ACTIONS(944), + [anon_sym_o_GT_PIPE] = ACTIONS(944), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(944), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(944), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(944), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(944), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_DOLLAR] = ACTIONS(942), + [anon_sym_DASH_DASH] = ACTIONS(944), + [anon_sym_DASH2] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_DOT_DOT] = ACTIONS(942), + [anon_sym_QMARK2] = ACTIONS(944), + [anon_sym_DOT_DOT_EQ] = ACTIONS(944), + [anon_sym_DOT_DOT_LT] = ACTIONS(944), + [anon_sym_null] = ACTIONS(944), + [anon_sym_true] = ACTIONS(944), + [anon_sym_false] = ACTIONS(944), + [aux_sym__val_number_decimal_token1] = ACTIONS(942), + [aux_sym__val_number_decimal_token2] = ACTIONS(944), + [aux_sym__val_number_decimal_token3] = ACTIONS(944), + [aux_sym__val_number_decimal_token4] = ACTIONS(944), + [aux_sym__val_number_token1] = ACTIONS(944), + [aux_sym__val_number_token2] = ACTIONS(944), + [aux_sym__val_number_token3] = ACTIONS(944), + [aux_sym__val_number_token4] = ACTIONS(944), + [aux_sym__val_number_token5] = ACTIONS(944), + [aux_sym__val_number_token6] = ACTIONS(944), + [anon_sym_0b] = ACTIONS(942), + [anon_sym_0o] = ACTIONS(942), + [anon_sym_0x] = ACTIONS(942), + [sym_val_date] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(944), + [sym__str_single_quotes] = ACTIONS(944), + [sym__str_back_ticks] = ACTIONS(944), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(944), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(944), + [anon_sym_DOT2] = ACTIONS(942), + [anon_sym_err_GT] = ACTIONS(942), + [anon_sym_out_GT] = ACTIONS(942), + [anon_sym_e_GT] = ACTIONS(942), + [anon_sym_o_GT] = ACTIONS(942), + [anon_sym_err_PLUSout_GT] = ACTIONS(942), + [anon_sym_out_PLUSerr_GT] = ACTIONS(942), + [anon_sym_o_PLUSe_GT] = ACTIONS(942), + [anon_sym_e_PLUSo_GT] = ACTIONS(942), + [anon_sym_err_GT_GT] = ACTIONS(944), + [anon_sym_out_GT_GT] = ACTIONS(944), + [anon_sym_e_GT_GT] = ACTIONS(944), + [anon_sym_o_GT_GT] = ACTIONS(944), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(944), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(944), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(944), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(944), + [aux_sym_unquoted_token1] = ACTIONS(942), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(944), + }, + [1633] = { + [sym_comment] = STATE(1633), + [ts_builtin_sym_end] = ACTIONS(956), + [sym__newline] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_PIPE] = ACTIONS(956), + [anon_sym_err_GT_PIPE] = ACTIONS(956), + [anon_sym_out_GT_PIPE] = ACTIONS(956), + [anon_sym_e_GT_PIPE] = ACTIONS(956), + [anon_sym_o_GT_PIPE] = ACTIONS(956), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(956), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(956), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(956), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(956), + [anon_sym_DOLLAR] = ACTIONS(954), + [anon_sym_DASH_DASH] = ACTIONS(956), + [anon_sym_DASH2] = ACTIONS(954), + [anon_sym_LBRACE] = ACTIONS(956), + [anon_sym_DOT_DOT] = ACTIONS(954), + [anon_sym_QMARK2] = ACTIONS(956), + [anon_sym_DOT_DOT_EQ] = ACTIONS(956), + [anon_sym_DOT_DOT_LT] = ACTIONS(956), + [anon_sym_null] = ACTIONS(956), + [anon_sym_true] = ACTIONS(956), + [anon_sym_false] = ACTIONS(956), + [aux_sym__val_number_decimal_token1] = ACTIONS(954), + [aux_sym__val_number_decimal_token2] = ACTIONS(956), + [aux_sym__val_number_decimal_token3] = ACTIONS(956), + [aux_sym__val_number_decimal_token4] = ACTIONS(956), + [aux_sym__val_number_token1] = ACTIONS(956), + [aux_sym__val_number_token2] = ACTIONS(956), + [aux_sym__val_number_token3] = ACTIONS(956), + [aux_sym__val_number_token4] = ACTIONS(956), + [aux_sym__val_number_token5] = ACTIONS(956), + [aux_sym__val_number_token6] = ACTIONS(956), + [anon_sym_0b] = ACTIONS(954), + [anon_sym_0o] = ACTIONS(954), + [anon_sym_0x] = ACTIONS(954), + [sym_val_date] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(956), + [sym__str_single_quotes] = ACTIONS(956), + [sym__str_back_ticks] = ACTIONS(956), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(956), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(956), + [anon_sym_DOT2] = ACTIONS(954), + [anon_sym_err_GT] = ACTIONS(954), + [anon_sym_out_GT] = ACTIONS(954), + [anon_sym_e_GT] = ACTIONS(954), + [anon_sym_o_GT] = ACTIONS(954), + [anon_sym_err_PLUSout_GT] = ACTIONS(954), + [anon_sym_out_PLUSerr_GT] = ACTIONS(954), + [anon_sym_o_PLUSe_GT] = ACTIONS(954), + [anon_sym_e_PLUSo_GT] = ACTIONS(954), + [anon_sym_err_GT_GT] = ACTIONS(956), + [anon_sym_out_GT_GT] = ACTIONS(956), + [anon_sym_e_GT_GT] = ACTIONS(956), + [anon_sym_o_GT_GT] = ACTIONS(956), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(956), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(956), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(956), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(956), + [aux_sym_unquoted_token1] = ACTIONS(954), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(956), + }, + [1634] = { + [sym_comment] = STATE(1634), + [ts_builtin_sym_end] = ACTIONS(948), + [sym__newline] = ACTIONS(948), + [anon_sym_SEMI] = ACTIONS(948), + [anon_sym_PIPE] = ACTIONS(948), + [anon_sym_err_GT_PIPE] = ACTIONS(948), + [anon_sym_out_GT_PIPE] = ACTIONS(948), + [anon_sym_e_GT_PIPE] = ACTIONS(948), + [anon_sym_o_GT_PIPE] = ACTIONS(948), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(948), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(948), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(948), + [anon_sym_LBRACK] = ACTIONS(948), + [anon_sym_LPAREN] = ACTIONS(948), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_DASH_DASH] = ACTIONS(948), + [anon_sym_DASH2] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(948), + [anon_sym_DOT_DOT] = ACTIONS(946), + [anon_sym_QMARK2] = ACTIONS(948), + [anon_sym_DOT_DOT_EQ] = ACTIONS(948), + [anon_sym_DOT_DOT_LT] = ACTIONS(948), + [anon_sym_null] = ACTIONS(948), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [aux_sym__val_number_decimal_token1] = ACTIONS(946), + [aux_sym__val_number_decimal_token2] = ACTIONS(948), + [aux_sym__val_number_decimal_token3] = ACTIONS(948), + [aux_sym__val_number_decimal_token4] = ACTIONS(948), + [aux_sym__val_number_token1] = ACTIONS(948), + [aux_sym__val_number_token2] = ACTIONS(948), + [aux_sym__val_number_token3] = ACTIONS(948), + [aux_sym__val_number_token4] = ACTIONS(948), + [aux_sym__val_number_token5] = ACTIONS(948), + [aux_sym__val_number_token6] = ACTIONS(948), + [anon_sym_0b] = ACTIONS(946), + [anon_sym_0o] = ACTIONS(946), + [anon_sym_0x] = ACTIONS(946), + [sym_val_date] = ACTIONS(948), + [anon_sym_DQUOTE] = ACTIONS(948), + [sym__str_single_quotes] = ACTIONS(948), + [sym__str_back_ticks] = ACTIONS(948), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(948), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(948), + [anon_sym_DOT2] = ACTIONS(946), + [anon_sym_err_GT] = ACTIONS(946), + [anon_sym_out_GT] = ACTIONS(946), + [anon_sym_e_GT] = ACTIONS(946), + [anon_sym_o_GT] = ACTIONS(946), + [anon_sym_err_PLUSout_GT] = ACTIONS(946), + [anon_sym_out_PLUSerr_GT] = ACTIONS(946), + [anon_sym_o_PLUSe_GT] = ACTIONS(946), + [anon_sym_e_PLUSo_GT] = ACTIONS(946), + [anon_sym_err_GT_GT] = ACTIONS(948), + [anon_sym_out_GT_GT] = ACTIONS(948), + [anon_sym_e_GT_GT] = ACTIONS(948), + [anon_sym_o_GT_GT] = ACTIONS(948), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(948), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(948), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(948), + [aux_sym_unquoted_token1] = ACTIONS(946), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(948), + }, + [1635] = { + [sym_comment] = STATE(1635), + [ts_builtin_sym_end] = ACTIONS(2166), + [sym__newline] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_err_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_GT_PIPE] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2166), + [anon_sym_LBRACK] = ACTIONS(2166), + [anon_sym_LPAREN] = ACTIONS(2162), + [anon_sym_DOLLAR] = ACTIONS(2162), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_DASH2] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_DOT_DOT] = ACTIONS(2162), + [anon_sym_LPAREN2] = ACTIONS(2164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2162), + [anon_sym_DOT_DOT_LT] = ACTIONS(2162), + [anon_sym_null] = ACTIONS(2162), + [anon_sym_true] = ACTIONS(2162), + [anon_sym_false] = ACTIONS(2162), + [aux_sym__val_number_decimal_token1] = ACTIONS(2162), + [aux_sym__val_number_decimal_token2] = ACTIONS(2162), + [aux_sym__val_number_decimal_token3] = ACTIONS(2162), + [aux_sym__val_number_decimal_token4] = ACTIONS(2162), + [aux_sym__val_number_token1] = ACTIONS(2162), + [aux_sym__val_number_token2] = ACTIONS(2162), + [aux_sym__val_number_token3] = ACTIONS(2162), + [aux_sym__val_number_token4] = ACTIONS(2162), + [aux_sym__val_number_token5] = ACTIONS(2162), + [aux_sym__val_number_token6] = ACTIONS(2162), + [anon_sym_0b] = ACTIONS(2162), + [anon_sym_0o] = ACTIONS(2162), + [anon_sym_0x] = ACTIONS(2162), + [sym_val_date] = ACTIONS(2162), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym__str_single_quotes] = ACTIONS(2166), + [sym__str_back_ticks] = ACTIONS(2166), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2166), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2166), + [anon_sym_err_GT] = ACTIONS(2162), + [anon_sym_out_GT] = ACTIONS(2162), + [anon_sym_e_GT] = ACTIONS(2162), + [anon_sym_o_GT] = ACTIONS(2162), + [anon_sym_err_PLUSout_GT] = ACTIONS(2162), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2162), + [anon_sym_o_PLUSe_GT] = ACTIONS(2162), + [anon_sym_e_PLUSo_GT] = ACTIONS(2162), + [anon_sym_err_GT_GT] = ACTIONS(2162), + [anon_sym_out_GT_GT] = ACTIONS(2162), + [anon_sym_e_GT_GT] = ACTIONS(2162), + [anon_sym_o_GT_GT] = ACTIONS(2162), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2162), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2162), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2162), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2162), + [aux_sym_unquoted_token1] = ACTIONS(2162), + [aux_sym_unquoted_token4] = ACTIONS(2168), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2166), + }, + [1636] = { + [sym_comment] = STATE(1636), + [ts_builtin_sym_end] = ACTIONS(994), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_DOT_DOT] = ACTIONS(998), + [anon_sym_LPAREN2] = ACTIONS(2104), + [anon_sym_DOT_DOT_EQ] = ACTIONS(998), + [anon_sym_DOT_DOT_LT] = ACTIONS(998), + [anon_sym_null] = ACTIONS(998), + [anon_sym_true] = ACTIONS(998), + [anon_sym_false] = 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_0b] = ACTIONS(998), + [anon_sym_0o] = ACTIONS(998), + [anon_sym_0x] = ACTIONS(998), + [sym_val_date] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym__str_single_quotes] = ACTIONS(994), + [sym__str_back_ticks] = ACTIONS(994), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(994), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(994), + [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(998), + [anon_sym_out_GT_GT] = ACTIONS(998), + [anon_sym_e_GT_GT] = ACTIONS(998), + [anon_sym_o_GT_GT] = ACTIONS(998), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), + [aux_sym_unquoted_token1] = ACTIONS(998), + [aux_sym_unquoted_token4] = ACTIONS(2106), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(994), + }, + [1637] = { + [sym_comment] = STATE(1637), + [sym__newline] = ACTIONS(1979), + [anon_sym_SEMI] = ACTIONS(1979), + [anon_sym_PIPE] = ACTIONS(1979), + [anon_sym_err_GT_PIPE] = ACTIONS(1979), + [anon_sym_out_GT_PIPE] = ACTIONS(1979), + [anon_sym_e_GT_PIPE] = ACTIONS(1979), + [anon_sym_o_GT_PIPE] = ACTIONS(1979), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1979), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1979), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1979), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1979), + [anon_sym_RPAREN] = ACTIONS(1979), + [anon_sym_GT2] = ACTIONS(1973), + [anon_sym_DASH2] = ACTIONS(1979), + [anon_sym_in2] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_RBRACE] = ACTIONS(1979), + [anon_sym_STAR2] = ACTIONS(1973), + [anon_sym_and2] = ACTIONS(1979), + [anon_sym_xor2] = ACTIONS(1979), + [anon_sym_or2] = ACTIONS(1979), + [anon_sym_not_DASHin2] = ACTIONS(1979), + [anon_sym_has2] = ACTIONS(1979), + [anon_sym_not_DASHhas2] = ACTIONS(1979), + [anon_sym_starts_DASHwith2] = ACTIONS(1979), + [anon_sym_ends_DASHwith2] = ACTIONS(1979), + [anon_sym_EQ_EQ2] = ACTIONS(1979), + [anon_sym_BANG_EQ2] = ACTIONS(1979), + [anon_sym_LT2] = ACTIONS(1973), + [anon_sym_LT_EQ2] = ACTIONS(1979), + [anon_sym_GT_EQ2] = ACTIONS(1979), + [anon_sym_EQ_TILDE2] = ACTIONS(1979), + [anon_sym_BANG_TILDE2] = ACTIONS(1979), + [anon_sym_STAR_STAR2] = ACTIONS(1979), + [anon_sym_PLUS_PLUS2] = ACTIONS(1979), + [anon_sym_SLASH2] = ACTIONS(1973), + [anon_sym_mod2] = ACTIONS(1979), + [anon_sym_SLASH_SLASH2] = ACTIONS(1979), + [anon_sym_PLUS2] = ACTIONS(1973), + [anon_sym_bit_DASHshl2] = ACTIONS(1979), + [anon_sym_bit_DASHshr2] = ACTIONS(1979), + [anon_sym_bit_DASHand2] = ACTIONS(1979), + [anon_sym_bit_DASHxor2] = ACTIONS(1979), + [anon_sym_bit_DASHor2] = ACTIONS(1979), + [anon_sym_DOT_DOT2] = ACTIONS(4988), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4990), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4990), + [anon_sym_err_GT] = ACTIONS(1973), + [anon_sym_out_GT] = ACTIONS(1973), + [anon_sym_e_GT] = ACTIONS(1973), + [anon_sym_o_GT] = ACTIONS(1973), + [anon_sym_err_PLUSout_GT] = ACTIONS(1973), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1973), + [anon_sym_o_PLUSe_GT] = ACTIONS(1973), + [anon_sym_e_PLUSo_GT] = ACTIONS(1973), + [anon_sym_err_GT_GT] = ACTIONS(1979), + [anon_sym_out_GT_GT] = ACTIONS(1979), + [anon_sym_e_GT_GT] = ACTIONS(1979), + [anon_sym_o_GT_GT] = ACTIONS(1979), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1979), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1979), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1979), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1979), + [anon_sym_POUND] = ACTIONS(245), + }, + [1638] = { + [sym_comment] = STATE(1638), + [ts_builtin_sym_end] = ACTIONS(2130), + [sym__newline] = ACTIONS(2130), + [anon_sym_SEMI] = ACTIONS(2130), + [anon_sym_PIPE] = ACTIONS(2130), + [anon_sym_err_GT_PIPE] = ACTIONS(2130), + [anon_sym_out_GT_PIPE] = ACTIONS(2130), + [anon_sym_e_GT_PIPE] = ACTIONS(2130), + [anon_sym_o_GT_PIPE] = ACTIONS(2130), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2130), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2130), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2130), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2130), + [anon_sym_LBRACK] = ACTIONS(2130), + [anon_sym_LPAREN] = ACTIONS(2128), + [anon_sym_DOLLAR] = ACTIONS(2128), + [anon_sym_DASH_DASH] = ACTIONS(2128), + [anon_sym_DASH2] = ACTIONS(2128), + [anon_sym_LBRACE] = ACTIONS(2130), + [anon_sym_DOT_DOT] = ACTIONS(2128), + [anon_sym_LPAREN2] = ACTIONS(2070), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2128), + [anon_sym_DOT_DOT_LT] = ACTIONS(2128), + [anon_sym_null] = ACTIONS(2128), + [anon_sym_true] = ACTIONS(2128), + [anon_sym_false] = ACTIONS(2128), + [aux_sym__val_number_decimal_token1] = ACTIONS(2128), + [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(2128), + [anon_sym_0o] = ACTIONS(2128), + [anon_sym_0x] = ACTIONS(2128), + [sym_val_date] = ACTIONS(2128), + [anon_sym_DQUOTE] = ACTIONS(2130), + [sym__str_single_quotes] = ACTIONS(2130), + [sym__str_back_ticks] = ACTIONS(2130), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2130), + [anon_sym_err_GT] = ACTIONS(2128), + [anon_sym_out_GT] = ACTIONS(2128), + [anon_sym_e_GT] = ACTIONS(2128), + [anon_sym_o_GT] = ACTIONS(2128), + [anon_sym_err_PLUSout_GT] = ACTIONS(2128), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2128), + [anon_sym_o_PLUSe_GT] = ACTIONS(2128), + [anon_sym_e_PLUSo_GT] = ACTIONS(2128), + [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(2128), + [aux_sym_unquoted_token4] = ACTIONS(2074), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2130), + }, + [1639] = { + [sym_comment] = STATE(1639), + [sym__newline] = ACTIONS(1628), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1628), + [anon_sym_err_GT_PIPE] = ACTIONS(1628), + [anon_sym_out_GT_PIPE] = ACTIONS(1628), + [anon_sym_e_GT_PIPE] = ACTIONS(1628), + [anon_sym_o_GT_PIPE] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_RPAREN] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1628), + [anon_sym_DOT_DOT_LT] = ACTIONS(1628), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_true] = ACTIONS(1628), + [anon_sym_false] = ACTIONS(1628), + [aux_sym__val_number_decimal_token1] = ACTIONS(1616), + [aux_sym__val_number_decimal_token2] = ACTIONS(1628), + [aux_sym__val_number_decimal_token3] = ACTIONS(1628), + [aux_sym__val_number_decimal_token4] = ACTIONS(1628), + [aux_sym__val_number_token1] = ACTIONS(1628), + [aux_sym__val_number_token2] = ACTIONS(1628), + [aux_sym__val_number_token3] = ACTIONS(1628), + [aux_sym__val_number_token4] = ACTIONS(1628), + [aux_sym__val_number_token5] = ACTIONS(1628), + [aux_sym__val_number_token6] = ACTIONS(1628), + [anon_sym_0b] = ACTIONS(1616), + [anon_sym_0o] = ACTIONS(1616), + [anon_sym_0x] = ACTIONS(1616), + [sym_val_date] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1628), + [sym__str_single_quotes] = ACTIONS(1628), + [sym__str_back_ticks] = ACTIONS(1628), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1628), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1628), + [anon_sym_err_GT] = ACTIONS(1616), + [anon_sym_out_GT] = ACTIONS(1616), + [anon_sym_e_GT] = ACTIONS(1616), + [anon_sym_o_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT] = ACTIONS(1616), + [anon_sym_err_GT_GT] = ACTIONS(1628), + [anon_sym_out_GT_GT] = ACTIONS(1628), + [anon_sym_e_GT_GT] = ACTIONS(1628), + [anon_sym_o_GT_GT] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1628), + [aux_sym_unquoted_token1] = ACTIONS(1616), + [aux_sym_unquoted_token2] = ACTIONS(4589), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1628), + }, + [1640] = { + [sym_comment] = STATE(1640), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_GT2] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1703), + [anon_sym_in2] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_STAR2] = ACTIONS(1701), + [anon_sym_and2] = ACTIONS(1703), + [anon_sym_xor2] = ACTIONS(1703), + [anon_sym_or2] = ACTIONS(1703), + [anon_sym_not_DASHin2] = ACTIONS(1703), + [anon_sym_has2] = ACTIONS(1703), + [anon_sym_not_DASHhas2] = ACTIONS(1703), + [anon_sym_starts_DASHwith2] = ACTIONS(1703), + [anon_sym_ends_DASHwith2] = ACTIONS(1703), + [anon_sym_EQ_EQ2] = ACTIONS(1703), + [anon_sym_BANG_EQ2] = ACTIONS(1703), + [anon_sym_LT2] = ACTIONS(1701), + [anon_sym_LT_EQ2] = ACTIONS(1703), + [anon_sym_GT_EQ2] = ACTIONS(1703), + [anon_sym_EQ_TILDE2] = ACTIONS(1703), + [anon_sym_BANG_TILDE2] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_STAR_STAR2] = ACTIONS(1703), + [anon_sym_PLUS_PLUS2] = ACTIONS(1703), + [anon_sym_SLASH2] = ACTIONS(1701), + [anon_sym_mod2] = ACTIONS(1703), + [anon_sym_SLASH_SLASH2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_bit_DASHshl2] = ACTIONS(1703), + [anon_sym_bit_DASHshr2] = ACTIONS(1703), + [anon_sym_bit_DASHand2] = ACTIONS(1703), + [anon_sym_bit_DASHxor2] = ACTIONS(1703), + [anon_sym_bit_DASHor2] = ACTIONS(1703), + [anon_sym_DOT] = ACTIONS(4992), + [aux_sym__immediate_decimal_token2] = ACTIONS(4994), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + }, + [1641] = { + [sym_comment] = STATE(1641), + [ts_builtin_sym_end] = ACTIONS(1688), + [sym__newline] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_err_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_GT_PIPE] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1688), + [anon_sym_DASH2] = ACTIONS(1686), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1688), + [anon_sym_DOT_DOT_LT] = ACTIONS(1688), + [aux_sym__immediate_decimal_token1] = ACTIONS(4996), + [aux_sym__immediate_decimal_token2] = ACTIONS(4998), + [anon_sym_null] = ACTIONS(1688), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [aux_sym__val_number_decimal_token1] = ACTIONS(1686), + [aux_sym__val_number_decimal_token2] = ACTIONS(1688), + [aux_sym__val_number_decimal_token3] = ACTIONS(1688), + [aux_sym__val_number_decimal_token4] = ACTIONS(1688), + [aux_sym__val_number_token1] = ACTIONS(1688), + [aux_sym__val_number_token2] = ACTIONS(1688), + [aux_sym__val_number_token3] = ACTIONS(1688), + [aux_sym__val_number_token4] = ACTIONS(1688), + [aux_sym__val_number_token5] = ACTIONS(1688), + [aux_sym__val_number_token6] = ACTIONS(1688), + [anon_sym_0b] = ACTIONS(1686), + [anon_sym_0o] = ACTIONS(1686), + [anon_sym_0x] = ACTIONS(1686), + [sym_val_date] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [sym__str_single_quotes] = ACTIONS(1688), + [sym__str_back_ticks] = ACTIONS(1688), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1688), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1688), + [anon_sym_err_GT] = ACTIONS(1686), + [anon_sym_out_GT] = ACTIONS(1686), + [anon_sym_e_GT] = ACTIONS(1686), + [anon_sym_o_GT] = ACTIONS(1686), + [anon_sym_err_PLUSout_GT] = ACTIONS(1686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1686), + [anon_sym_o_PLUSe_GT] = ACTIONS(1686), + [anon_sym_e_PLUSo_GT] = ACTIONS(1686), + [anon_sym_err_GT_GT] = ACTIONS(1688), + [anon_sym_out_GT_GT] = ACTIONS(1688), + [anon_sym_e_GT_GT] = ACTIONS(1688), + [anon_sym_o_GT_GT] = ACTIONS(1688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1688), + [aux_sym_unquoted_token1] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1688), + }, + [1642] = { + [sym_comment] = STATE(1642), + [ts_builtin_sym_end] = ACTIONS(2072), + [sym__newline] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2072), + [anon_sym_PIPE] = ACTIONS(2072), + [anon_sym_err_GT_PIPE] = ACTIONS(2072), + [anon_sym_out_GT_PIPE] = ACTIONS(2072), + [anon_sym_e_GT_PIPE] = ACTIONS(2072), + [anon_sym_o_GT_PIPE] = ACTIONS(2072), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2072), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2072), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2072), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_DOLLAR] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [anon_sym_DASH2] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2072), + [anon_sym_DOT_DOT] = ACTIONS(2068), + [anon_sym_LPAREN2] = ACTIONS(2070), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2068), + [anon_sym_DOT_DOT_LT] = ACTIONS(2068), + [anon_sym_null] = ACTIONS(2068), + [anon_sym_true] = ACTIONS(2068), + [anon_sym_false] = 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_0b] = ACTIONS(2068), + [anon_sym_0o] = ACTIONS(2068), + [anon_sym_0x] = ACTIONS(2068), + [sym_val_date] = ACTIONS(2068), + [anon_sym_DQUOTE] = ACTIONS(2072), + [sym__str_single_quotes] = ACTIONS(2072), + [sym__str_back_ticks] = ACTIONS(2072), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2072), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2072), + [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(2068), + [anon_sym_out_GT_GT] = ACTIONS(2068), + [anon_sym_e_GT_GT] = ACTIONS(2068), + [anon_sym_o_GT_GT] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2068), + [aux_sym_unquoted_token1] = ACTIONS(2068), + [aux_sym_unquoted_token4] = ACTIONS(2074), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2072), + }, + [1643] = { + [sym_comment] = STATE(1643), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_DASH2] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_DOT_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ] = ACTIONS(998), + [anon_sym_DOT_DOT_LT] = ACTIONS(998), + [anon_sym_null] = ACTIONS(998), + [anon_sym_true] = ACTIONS(998), + [anon_sym_false] = 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_0b] = ACTIONS(998), + [anon_sym_0o] = ACTIONS(998), + [anon_sym_0x] = ACTIONS(998), + [sym_val_date] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym__str_single_quotes] = ACTIONS(994), + [sym__str_back_ticks] = ACTIONS(994), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(994), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(994), + [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(998), + [anon_sym_out_GT_GT] = ACTIONS(998), + [anon_sym_e_GT_GT] = ACTIONS(998), + [anon_sym_o_GT_GT] = ACTIONS(998), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(998), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(998), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(998), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(998), + [aux_sym_unquoted_token1] = ACTIONS(998), + [aux_sym_unquoted_token4] = ACTIONS(2106), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(994), + }, + [1644] = { + [sym_comment] = STATE(1644), + [sym__newline] = ACTIONS(1955), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_err_GT_PIPE] = ACTIONS(1955), + [anon_sym_out_GT_PIPE] = ACTIONS(1955), + [anon_sym_e_GT_PIPE] = ACTIONS(1955), + [anon_sym_o_GT_PIPE] = ACTIONS(1955), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1955), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1955), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1955), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1955), + [anon_sym_RPAREN] = ACTIONS(1955), + [anon_sym_GT2] = ACTIONS(1949), + [anon_sym_DASH2] = ACTIONS(1955), + [anon_sym_in2] = ACTIONS(1955), + [anon_sym_LBRACE] = ACTIONS(1955), + [anon_sym_RBRACE] = ACTIONS(1955), + [anon_sym_STAR2] = ACTIONS(1949), + [anon_sym_and2] = ACTIONS(1955), + [anon_sym_xor2] = ACTIONS(1955), + [anon_sym_or2] = ACTIONS(1955), + [anon_sym_not_DASHin2] = ACTIONS(1955), + [anon_sym_has2] = ACTIONS(1955), + [anon_sym_not_DASHhas2] = ACTIONS(1955), + [anon_sym_starts_DASHwith2] = ACTIONS(1955), + [anon_sym_ends_DASHwith2] = ACTIONS(1955), + [anon_sym_EQ_EQ2] = ACTIONS(1955), + [anon_sym_BANG_EQ2] = ACTIONS(1955), + [anon_sym_LT2] = ACTIONS(1949), + [anon_sym_LT_EQ2] = ACTIONS(1955), + [anon_sym_GT_EQ2] = ACTIONS(1955), + [anon_sym_EQ_TILDE2] = ACTIONS(1955), + [anon_sym_BANG_TILDE2] = ACTIONS(1955), + [anon_sym_STAR_STAR2] = ACTIONS(1955), + [anon_sym_PLUS_PLUS2] = ACTIONS(1955), + [anon_sym_SLASH2] = ACTIONS(1949), + [anon_sym_mod2] = ACTIONS(1955), + [anon_sym_SLASH_SLASH2] = ACTIONS(1955), + [anon_sym_PLUS2] = ACTIONS(1949), + [anon_sym_bit_DASHshl2] = ACTIONS(1955), + [anon_sym_bit_DASHshr2] = ACTIONS(1955), + [anon_sym_bit_DASHand2] = ACTIONS(1955), + [anon_sym_bit_DASHxor2] = ACTIONS(1955), + [anon_sym_bit_DASHor2] = ACTIONS(1955), + [anon_sym_DOT_DOT2] = ACTIONS(5000), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(5002), + [anon_sym_DOT_DOT_LT2] = ACTIONS(5002), + [anon_sym_err_GT] = ACTIONS(1949), + [anon_sym_out_GT] = ACTIONS(1949), + [anon_sym_e_GT] = ACTIONS(1949), + [anon_sym_o_GT] = ACTIONS(1949), + [anon_sym_err_PLUSout_GT] = ACTIONS(1949), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1949), + [anon_sym_o_PLUSe_GT] = ACTIONS(1949), + [anon_sym_e_PLUSo_GT] = ACTIONS(1949), + [anon_sym_err_GT_GT] = ACTIONS(1955), + [anon_sym_out_GT_GT] = ACTIONS(1955), + [anon_sym_e_GT_GT] = ACTIONS(1955), + [anon_sym_o_GT_GT] = ACTIONS(1955), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1955), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1955), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1955), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1955), + [anon_sym_POUND] = ACTIONS(245), + }, + [1645] = { + [sym_comment] = STATE(1645), + [sym__newline] = ACTIONS(1963), + [anon_sym_SEMI] = ACTIONS(1963), + [anon_sym_PIPE] = ACTIONS(1963), + [anon_sym_err_GT_PIPE] = ACTIONS(1963), + [anon_sym_out_GT_PIPE] = ACTIONS(1963), + [anon_sym_e_GT_PIPE] = ACTIONS(1963), + [anon_sym_o_GT_PIPE] = ACTIONS(1963), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1963), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1963), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1963), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1963), + [anon_sym_RPAREN] = ACTIONS(1963), + [anon_sym_GT2] = ACTIONS(1957), + [anon_sym_DASH2] = ACTIONS(1963), + [anon_sym_in2] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(1963), + [anon_sym_RBRACE] = ACTIONS(1963), + [anon_sym_STAR2] = ACTIONS(1957), + [anon_sym_and2] = ACTIONS(1963), + [anon_sym_xor2] = ACTIONS(1963), + [anon_sym_or2] = ACTIONS(1963), + [anon_sym_not_DASHin2] = ACTIONS(1963), + [anon_sym_has2] = ACTIONS(1963), + [anon_sym_not_DASHhas2] = ACTIONS(1963), + [anon_sym_starts_DASHwith2] = ACTIONS(1963), + [anon_sym_ends_DASHwith2] = ACTIONS(1963), + [anon_sym_EQ_EQ2] = ACTIONS(1963), + [anon_sym_BANG_EQ2] = ACTIONS(1963), + [anon_sym_LT2] = ACTIONS(1957), + [anon_sym_LT_EQ2] = ACTIONS(1963), + [anon_sym_GT_EQ2] = ACTIONS(1963), + [anon_sym_EQ_TILDE2] = ACTIONS(1963), + [anon_sym_BANG_TILDE2] = ACTIONS(1963), + [anon_sym_STAR_STAR2] = ACTIONS(1963), + [anon_sym_PLUS_PLUS2] = ACTIONS(1963), + [anon_sym_SLASH2] = ACTIONS(1957), + [anon_sym_mod2] = ACTIONS(1963), + [anon_sym_SLASH_SLASH2] = ACTIONS(1963), + [anon_sym_PLUS2] = ACTIONS(1957), + [anon_sym_bit_DASHshl2] = ACTIONS(1963), + [anon_sym_bit_DASHshr2] = ACTIONS(1963), + [anon_sym_bit_DASHand2] = ACTIONS(1963), + [anon_sym_bit_DASHxor2] = ACTIONS(1963), + [anon_sym_bit_DASHor2] = ACTIONS(1963), + [anon_sym_DOT_DOT2] = ACTIONS(5004), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(5006), + [anon_sym_DOT_DOT_LT2] = ACTIONS(5006), + [anon_sym_err_GT] = ACTIONS(1957), + [anon_sym_out_GT] = ACTIONS(1957), + [anon_sym_e_GT] = ACTIONS(1957), + [anon_sym_o_GT] = ACTIONS(1957), + [anon_sym_err_PLUSout_GT] = ACTIONS(1957), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1957), + [anon_sym_o_PLUSe_GT] = ACTIONS(1957), + [anon_sym_e_PLUSo_GT] = ACTIONS(1957), + [anon_sym_err_GT_GT] = ACTIONS(1963), + [anon_sym_out_GT_GT] = ACTIONS(1963), + [anon_sym_e_GT_GT] = ACTIONS(1963), + [anon_sym_o_GT_GT] = ACTIONS(1963), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1963), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1963), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1963), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1963), + [anon_sym_POUND] = ACTIONS(245), + }, + [1646] = { + [sym_comment] = STATE(1646), + [sym__newline] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1971), + [anon_sym_PIPE] = ACTIONS(1971), + [anon_sym_err_GT_PIPE] = ACTIONS(1971), + [anon_sym_out_GT_PIPE] = ACTIONS(1971), + [anon_sym_e_GT_PIPE] = ACTIONS(1971), + [anon_sym_o_GT_PIPE] = ACTIONS(1971), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1971), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1971), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1971), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1971), + [anon_sym_RPAREN] = ACTIONS(1971), + [anon_sym_GT2] = ACTIONS(1965), + [anon_sym_DASH2] = ACTIONS(1971), + [anon_sym_in2] = ACTIONS(1971), + [anon_sym_LBRACE] = ACTIONS(1971), + [anon_sym_RBRACE] = ACTIONS(1971), + [anon_sym_STAR2] = ACTIONS(1965), + [anon_sym_and2] = ACTIONS(1971), + [anon_sym_xor2] = ACTIONS(1971), + [anon_sym_or2] = ACTIONS(1971), + [anon_sym_not_DASHin2] = ACTIONS(1971), + [anon_sym_has2] = ACTIONS(1971), + [anon_sym_not_DASHhas2] = ACTIONS(1971), + [anon_sym_starts_DASHwith2] = ACTIONS(1971), + [anon_sym_ends_DASHwith2] = ACTIONS(1971), + [anon_sym_EQ_EQ2] = ACTIONS(1971), + [anon_sym_BANG_EQ2] = ACTIONS(1971), + [anon_sym_LT2] = ACTIONS(1965), + [anon_sym_LT_EQ2] = ACTIONS(1971), + [anon_sym_GT_EQ2] = ACTIONS(1971), + [anon_sym_EQ_TILDE2] = ACTIONS(1971), + [anon_sym_BANG_TILDE2] = ACTIONS(1971), + [anon_sym_STAR_STAR2] = ACTIONS(1971), + [anon_sym_PLUS_PLUS2] = ACTIONS(1971), + [anon_sym_SLASH2] = ACTIONS(1965), + [anon_sym_mod2] = ACTIONS(1971), + [anon_sym_SLASH_SLASH2] = ACTIONS(1971), + [anon_sym_PLUS2] = ACTIONS(1965), + [anon_sym_bit_DASHshl2] = ACTIONS(1971), + [anon_sym_bit_DASHshr2] = ACTIONS(1971), + [anon_sym_bit_DASHand2] = ACTIONS(1971), + [anon_sym_bit_DASHxor2] = ACTIONS(1971), + [anon_sym_bit_DASHor2] = ACTIONS(1971), + [anon_sym_DOT_DOT2] = ACTIONS(5008), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(5010), + [anon_sym_DOT_DOT_LT2] = ACTIONS(5010), + [anon_sym_err_GT] = ACTIONS(1965), + [anon_sym_out_GT] = ACTIONS(1965), + [anon_sym_e_GT] = ACTIONS(1965), + [anon_sym_o_GT] = ACTIONS(1965), + [anon_sym_err_PLUSout_GT] = ACTIONS(1965), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1965), + [anon_sym_o_PLUSe_GT] = ACTIONS(1965), + [anon_sym_e_PLUSo_GT] = ACTIONS(1965), + [anon_sym_err_GT_GT] = ACTIONS(1971), + [anon_sym_out_GT_GT] = ACTIONS(1971), + [anon_sym_e_GT_GT] = ACTIONS(1971), + [anon_sym_o_GT_GT] = ACTIONS(1971), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1971), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1971), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1971), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1971), + [anon_sym_POUND] = ACTIONS(245), + }, + [1647] = { + [sym__expr_parenthesized_immediate] = STATE(7173), + [sym_comment] = STATE(1647), + [ts_builtin_sym_end] = ACTIONS(4859), + [sym__newline] = ACTIONS(4859), + [anon_sym_SEMI] = ACTIONS(4859), + [anon_sym_PIPE] = ACTIONS(4859), + [anon_sym_err_GT_PIPE] = ACTIONS(4859), + [anon_sym_out_GT_PIPE] = ACTIONS(4859), + [anon_sym_e_GT_PIPE] = ACTIONS(4859), + [anon_sym_o_GT_PIPE] = ACTIONS(4859), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4859), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4859), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4859), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4859), + [anon_sym_LBRACK] = ACTIONS(4859), + [anon_sym_LPAREN] = ACTIONS(4861), + [anon_sym_DOLLAR] = ACTIONS(4861), + [anon_sym_DASH_DASH] = ACTIONS(4859), + [anon_sym_DASH2] = ACTIONS(4861), + [anon_sym_LBRACE] = ACTIONS(4859), + [anon_sym_DOT_DOT] = ACTIONS(4861), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4859), + [anon_sym_DOT_DOT_LT] = ACTIONS(4859), + [anon_sym_null] = ACTIONS(4859), + [anon_sym_true] = ACTIONS(4859), + [anon_sym_false] = ACTIONS(4859), + [aux_sym__val_number_decimal_token1] = ACTIONS(4861), + [aux_sym__val_number_decimal_token2] = ACTIONS(4859), + [aux_sym__val_number_decimal_token3] = ACTIONS(4859), + [aux_sym__val_number_decimal_token4] = ACTIONS(4859), + [aux_sym__val_number_token1] = ACTIONS(4859), + [aux_sym__val_number_token2] = ACTIONS(4859), + [aux_sym__val_number_token3] = ACTIONS(4859), + [aux_sym__val_number_token4] = ACTIONS(4859), + [aux_sym__val_number_token5] = ACTIONS(4859), + [aux_sym__val_number_token6] = ACTIONS(4859), + [anon_sym_0b] = ACTIONS(4861), + [anon_sym_0o] = ACTIONS(4861), + [anon_sym_0x] = ACTIONS(4861), + [sym_val_date] = ACTIONS(4859), + [anon_sym_DQUOTE] = ACTIONS(4859), + [sym__str_single_quotes] = ACTIONS(4859), + [sym__str_back_ticks] = ACTIONS(4859), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4859), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4859), + [anon_sym_err_GT] = ACTIONS(4861), + [anon_sym_out_GT] = ACTIONS(4861), + [anon_sym_e_GT] = ACTIONS(4861), + [anon_sym_o_GT] = ACTIONS(4861), + [anon_sym_err_PLUSout_GT] = ACTIONS(4861), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4861), + [anon_sym_o_PLUSe_GT] = ACTIONS(4861), + [anon_sym_e_PLUSo_GT] = ACTIONS(4861), + [anon_sym_err_GT_GT] = ACTIONS(4859), + [anon_sym_out_GT_GT] = ACTIONS(4859), + [anon_sym_e_GT_GT] = ACTIONS(4859), + [anon_sym_o_GT_GT] = ACTIONS(4859), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4859), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4859), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4859), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4859), + [aux_sym_unquoted_token1] = ACTIONS(4861), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4859), + }, + [1648] = { + [sym__expr_parenthesized_immediate] = STATE(7173), + [sym_comment] = STATE(1648), + [ts_builtin_sym_end] = ACTIONS(4863), + [sym__newline] = ACTIONS(4863), + [anon_sym_SEMI] = ACTIONS(4863), + [anon_sym_PIPE] = ACTIONS(4863), + [anon_sym_err_GT_PIPE] = ACTIONS(4863), + [anon_sym_out_GT_PIPE] = ACTIONS(4863), + [anon_sym_e_GT_PIPE] = ACTIONS(4863), + [anon_sym_o_GT_PIPE] = ACTIONS(4863), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4863), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4863), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4863), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4863), + [anon_sym_LPAREN] = ACTIONS(4865), + [anon_sym_DOLLAR] = ACTIONS(4865), + [anon_sym_DASH_DASH] = ACTIONS(4863), + [anon_sym_DASH2] = ACTIONS(4865), + [anon_sym_LBRACE] = ACTIONS(4863), + [anon_sym_DOT_DOT] = ACTIONS(4865), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4863), + [anon_sym_DOT_DOT_LT] = ACTIONS(4863), + [anon_sym_null] = ACTIONS(4863), + [anon_sym_true] = ACTIONS(4863), + [anon_sym_false] = ACTIONS(4863), + [aux_sym__val_number_decimal_token1] = ACTIONS(4865), + [aux_sym__val_number_decimal_token2] = ACTIONS(4863), + [aux_sym__val_number_decimal_token3] = ACTIONS(4863), + [aux_sym__val_number_decimal_token4] = ACTIONS(4863), + [aux_sym__val_number_token1] = ACTIONS(4863), + [aux_sym__val_number_token2] = ACTIONS(4863), + [aux_sym__val_number_token3] = ACTIONS(4863), + [aux_sym__val_number_token4] = ACTIONS(4863), + [aux_sym__val_number_token5] = ACTIONS(4863), + [aux_sym__val_number_token6] = ACTIONS(4863), + [anon_sym_0b] = ACTIONS(4865), + [anon_sym_0o] = ACTIONS(4865), + [anon_sym_0x] = ACTIONS(4865), + [sym_val_date] = ACTIONS(4863), + [anon_sym_DQUOTE] = ACTIONS(4863), + [sym__str_single_quotes] = ACTIONS(4863), + [sym__str_back_ticks] = ACTIONS(4863), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4863), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4863), + [anon_sym_err_GT] = ACTIONS(4865), + [anon_sym_out_GT] = ACTIONS(4865), + [anon_sym_e_GT] = ACTIONS(4865), + [anon_sym_o_GT] = ACTIONS(4865), + [anon_sym_err_PLUSout_GT] = ACTIONS(4865), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4865), + [anon_sym_o_PLUSe_GT] = ACTIONS(4865), + [anon_sym_e_PLUSo_GT] = ACTIONS(4865), + [anon_sym_err_GT_GT] = ACTIONS(4863), + [anon_sym_out_GT_GT] = ACTIONS(4863), + [anon_sym_e_GT_GT] = ACTIONS(4863), + [anon_sym_o_GT_GT] = ACTIONS(4863), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4863), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4863), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4863), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4863), + [aux_sym_unquoted_token1] = ACTIONS(4865), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4863), + }, + [1649] = { + [sym_comment] = STATE(1649), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(5012), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT] = ACTIONS(1703), + [aux_sym__immediate_decimal_token2] = ACTIONS(5014), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [1650] = { + [sym_comment] = STATE(1650), + [ts_builtin_sym_end] = ACTIONS(2078), + [sym__newline] = ACTIONS(2078), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_PIPE] = ACTIONS(2078), + [anon_sym_err_GT_PIPE] = ACTIONS(2078), + [anon_sym_out_GT_PIPE] = ACTIONS(2078), + [anon_sym_e_GT_PIPE] = ACTIONS(2078), + [anon_sym_o_GT_PIPE] = ACTIONS(2078), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2078), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2078), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2078), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2078), + [anon_sym_LPAREN] = ACTIONS(2076), + [anon_sym_DOLLAR] = ACTIONS(2076), + [anon_sym_DASH_DASH] = ACTIONS(2076), + [anon_sym_DASH2] = ACTIONS(2076), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_DOT_DOT] = ACTIONS(2076), + [anon_sym_LPAREN2] = ACTIONS(2078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2076), + [anon_sym_DOT_DOT_LT] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2076), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [aux_sym__val_number_decimal_token1] = ACTIONS(2076), + [aux_sym__val_number_decimal_token2] = ACTIONS(2076), + [aux_sym__val_number_decimal_token3] = ACTIONS(2076), + [aux_sym__val_number_decimal_token4] = ACTIONS(2076), + [aux_sym__val_number_token1] = ACTIONS(2076), + [aux_sym__val_number_token2] = ACTIONS(2076), + [aux_sym__val_number_token3] = ACTIONS(2076), + [aux_sym__val_number_token4] = ACTIONS(2076), + [aux_sym__val_number_token5] = ACTIONS(2076), + [aux_sym__val_number_token6] = ACTIONS(2076), + [anon_sym_0b] = ACTIONS(2076), + [anon_sym_0o] = ACTIONS(2076), + [anon_sym_0x] = ACTIONS(2076), + [sym_val_date] = ACTIONS(2076), + [anon_sym_DQUOTE] = ACTIONS(2078), + [sym__str_single_quotes] = ACTIONS(2078), + [sym__str_back_ticks] = ACTIONS(2078), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2078), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2078), + [anon_sym_err_GT] = ACTIONS(2076), + [anon_sym_out_GT] = ACTIONS(2076), + [anon_sym_e_GT] = ACTIONS(2076), + [anon_sym_o_GT] = ACTIONS(2076), + [anon_sym_err_PLUSout_GT] = ACTIONS(2076), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2076), + [anon_sym_o_PLUSe_GT] = ACTIONS(2076), + [anon_sym_e_PLUSo_GT] = ACTIONS(2076), + [anon_sym_err_GT_GT] = ACTIONS(2076), + [anon_sym_out_GT_GT] = ACTIONS(2076), + [anon_sym_e_GT_GT] = ACTIONS(2076), + [anon_sym_o_GT_GT] = ACTIONS(2076), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2076), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2076), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2076), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2076), + [aux_sym_unquoted_token1] = ACTIONS(2076), + [aux_sym_unquoted_token4] = ACTIONS(2076), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2078), + }, + [1651] = { + [sym_comment] = STATE(1651), + [ts_builtin_sym_end] = ACTIONS(966), + [sym__newline] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_err_GT_PIPE] = ACTIONS(966), + [anon_sym_out_GT_PIPE] = ACTIONS(966), + [anon_sym_e_GT_PIPE] = ACTIONS(966), + [anon_sym_o_GT_PIPE] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(966), + [anon_sym_GT2] = ACTIONS(964), + [anon_sym_DASH2] = ACTIONS(966), + [anon_sym_in2] = ACTIONS(966), + [anon_sym_STAR2] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(5016), + [anon_sym_and2] = ACTIONS(966), + [anon_sym_xor2] = ACTIONS(966), + [anon_sym_or2] = ACTIONS(966), + [anon_sym_not_DASHin2] = ACTIONS(966), + [anon_sym_has2] = ACTIONS(966), + [anon_sym_not_DASHhas2] = ACTIONS(966), + [anon_sym_starts_DASHwith2] = ACTIONS(966), + [anon_sym_ends_DASHwith2] = ACTIONS(966), + [anon_sym_EQ_EQ2] = ACTIONS(966), + [anon_sym_BANG_EQ2] = ACTIONS(966), + [anon_sym_LT2] = ACTIONS(964), + [anon_sym_LT_EQ2] = ACTIONS(966), + [anon_sym_GT_EQ2] = ACTIONS(966), + [anon_sym_EQ_TILDE2] = ACTIONS(966), + [anon_sym_BANG_TILDE2] = ACTIONS(966), + [anon_sym_STAR_STAR2] = ACTIONS(966), + [anon_sym_PLUS_PLUS2] = ACTIONS(966), + [anon_sym_SLASH2] = ACTIONS(964), + [anon_sym_mod2] = ACTIONS(966), + [anon_sym_SLASH_SLASH2] = ACTIONS(966), + [anon_sym_PLUS2] = ACTIONS(964), + [anon_sym_bit_DASHshl2] = ACTIONS(966), + [anon_sym_bit_DASHshr2] = ACTIONS(966), + [anon_sym_bit_DASHand2] = ACTIONS(966), + [anon_sym_bit_DASHxor2] = ACTIONS(966), + [anon_sym_bit_DASHor2] = ACTIONS(966), + [anon_sym_DOT_DOT2] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(966), + [anon_sym_DOT_DOT_LT2] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(964), + [anon_sym_err_GT] = ACTIONS(964), + [anon_sym_out_GT] = ACTIONS(964), + [anon_sym_e_GT] = ACTIONS(964), + [anon_sym_o_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT] = ACTIONS(964), + [anon_sym_err_GT_GT] = ACTIONS(966), + [anon_sym_out_GT_GT] = ACTIONS(966), + [anon_sym_e_GT_GT] = ACTIONS(966), + [anon_sym_o_GT_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(245), + }, + [1652] = { + [sym_comment] = STATE(1652), + [ts_builtin_sym_end] = ACTIONS(960), + [sym__newline] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_err_GT_PIPE] = ACTIONS(960), + [anon_sym_out_GT_PIPE] = ACTIONS(960), + [anon_sym_e_GT_PIPE] = ACTIONS(960), + [anon_sym_o_GT_PIPE] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), + [anon_sym_GT2] = ACTIONS(958), + [anon_sym_DASH2] = ACTIONS(960), + [anon_sym_in2] = ACTIONS(960), + [anon_sym_STAR2] = ACTIONS(958), + [anon_sym_QMARK2] = ACTIONS(5018), + [anon_sym_and2] = ACTIONS(960), + [anon_sym_xor2] = ACTIONS(960), + [anon_sym_or2] = ACTIONS(960), + [anon_sym_not_DASHin2] = ACTIONS(960), + [anon_sym_has2] = ACTIONS(960), + [anon_sym_not_DASHhas2] = ACTIONS(960), + [anon_sym_starts_DASHwith2] = ACTIONS(960), + [anon_sym_ends_DASHwith2] = ACTIONS(960), + [anon_sym_EQ_EQ2] = ACTIONS(960), + [anon_sym_BANG_EQ2] = ACTIONS(960), + [anon_sym_LT2] = ACTIONS(958), + [anon_sym_LT_EQ2] = ACTIONS(960), + [anon_sym_GT_EQ2] = ACTIONS(960), + [anon_sym_EQ_TILDE2] = ACTIONS(960), + [anon_sym_BANG_TILDE2] = ACTIONS(960), + [anon_sym_STAR_STAR2] = ACTIONS(960), + [anon_sym_PLUS_PLUS2] = ACTIONS(960), + [anon_sym_SLASH2] = ACTIONS(958), + [anon_sym_mod2] = ACTIONS(960), + [anon_sym_SLASH_SLASH2] = ACTIONS(960), + [anon_sym_PLUS2] = ACTIONS(958), + [anon_sym_bit_DASHshl2] = ACTIONS(960), + [anon_sym_bit_DASHshr2] = ACTIONS(960), + [anon_sym_bit_DASHand2] = ACTIONS(960), + [anon_sym_bit_DASHxor2] = ACTIONS(960), + [anon_sym_bit_DASHor2] = ACTIONS(960), + [anon_sym_DOT_DOT2] = ACTIONS(958), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(960), + [anon_sym_DOT_DOT_LT2] = ACTIONS(960), + [anon_sym_DOT2] = ACTIONS(958), + [anon_sym_err_GT] = ACTIONS(958), + [anon_sym_out_GT] = ACTIONS(958), + [anon_sym_e_GT] = ACTIONS(958), + [anon_sym_o_GT] = ACTIONS(958), + [anon_sym_err_PLUSout_GT] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(958), + [anon_sym_o_PLUSe_GT] = ACTIONS(958), + [anon_sym_e_PLUSo_GT] = ACTIONS(958), + [anon_sym_err_GT_GT] = ACTIONS(960), + [anon_sym_out_GT_GT] = ACTIONS(960), + [anon_sym_e_GT_GT] = ACTIONS(960), + [anon_sym_o_GT_GT] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), + [anon_sym_POUND] = ACTIONS(245), + }, + [1653] = { + [sym_comment] = STATE(1653), + [sym__newline] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_err_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_GT_PIPE] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2166), + [anon_sym_LBRACK] = ACTIONS(2166), + [anon_sym_LPAREN] = ACTIONS(2166), + [anon_sym_RPAREN] = ACTIONS(2166), + [anon_sym_DOLLAR] = ACTIONS(2162), + [anon_sym_DASH_DASH] = ACTIONS(2162), + [anon_sym_DASH2] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_DOT_DOT] = ACTIONS(2162), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2162), + [anon_sym_DOT_DOT_LT] = ACTIONS(2162), + [anon_sym_null] = ACTIONS(2162), + [anon_sym_true] = ACTIONS(2162), + [anon_sym_false] = ACTIONS(2162), + [aux_sym__val_number_decimal_token1] = ACTIONS(2162), + [aux_sym__val_number_decimal_token2] = ACTIONS(2162), + [aux_sym__val_number_decimal_token3] = ACTIONS(2162), + [aux_sym__val_number_decimal_token4] = ACTIONS(2162), + [aux_sym__val_number_token1] = ACTIONS(2162), + [aux_sym__val_number_token2] = ACTIONS(2162), + [aux_sym__val_number_token3] = ACTIONS(2162), + [aux_sym__val_number_token4] = ACTIONS(2162), + [aux_sym__val_number_token5] = ACTIONS(2162), + [aux_sym__val_number_token6] = ACTIONS(2162), + [anon_sym_0b] = ACTIONS(2162), + [anon_sym_0o] = ACTIONS(2162), + [anon_sym_0x] = ACTIONS(2162), + [sym_val_date] = ACTIONS(2162), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym__str_single_quotes] = ACTIONS(2166), + [sym__str_back_ticks] = ACTIONS(2166), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2166), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2166), + [anon_sym_err_GT] = ACTIONS(2162), + [anon_sym_out_GT] = ACTIONS(2162), + [anon_sym_e_GT] = ACTIONS(2162), + [anon_sym_o_GT] = ACTIONS(2162), + [anon_sym_err_PLUSout_GT] = ACTIONS(2162), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2162), + [anon_sym_o_PLUSe_GT] = ACTIONS(2162), + [anon_sym_e_PLUSo_GT] = ACTIONS(2162), + [anon_sym_err_GT_GT] = ACTIONS(2162), + [anon_sym_out_GT_GT] = ACTIONS(2162), + [anon_sym_e_GT_GT] = ACTIONS(2162), + [anon_sym_o_GT_GT] = ACTIONS(2162), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2162), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2162), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2162), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2162), + [aux_sym_unquoted_token1] = ACTIONS(2162), + [aux_sym_unquoted_token4] = ACTIONS(2168), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2166), + }, + [1654] = { + [sym_comment] = STATE(1654), + [sym__newline] = ACTIONS(2130), + [anon_sym_SEMI] = ACTIONS(2130), + [anon_sym_PIPE] = ACTIONS(2130), + [anon_sym_err_GT_PIPE] = ACTIONS(2130), + [anon_sym_out_GT_PIPE] = ACTIONS(2130), + [anon_sym_e_GT_PIPE] = ACTIONS(2130), + [anon_sym_o_GT_PIPE] = ACTIONS(2130), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2130), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2130), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2130), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2130), + [anon_sym_LBRACK] = ACTIONS(2130), + [anon_sym_LPAREN] = ACTIONS(2130), + [anon_sym_RPAREN] = ACTIONS(2130), + [anon_sym_DOLLAR] = ACTIONS(2128), + [anon_sym_DASH_DASH] = ACTIONS(2128), + [anon_sym_DASH2] = ACTIONS(2128), + [anon_sym_LBRACE] = ACTIONS(2130), + [anon_sym_RBRACE] = ACTIONS(2130), + [anon_sym_DOT_DOT] = ACTIONS(2128), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2128), + [anon_sym_DOT_DOT_LT] = ACTIONS(2128), + [anon_sym_null] = ACTIONS(2128), + [anon_sym_true] = ACTIONS(2128), + [anon_sym_false] = ACTIONS(2128), + [aux_sym__val_number_decimal_token1] = ACTIONS(2128), + [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(2128), + [anon_sym_0o] = ACTIONS(2128), + [anon_sym_0x] = ACTIONS(2128), + [sym_val_date] = ACTIONS(2128), + [anon_sym_DQUOTE] = ACTIONS(2130), + [sym__str_single_quotes] = ACTIONS(2130), + [sym__str_back_ticks] = ACTIONS(2130), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2130), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2130), + [anon_sym_err_GT] = ACTIONS(2128), + [anon_sym_out_GT] = ACTIONS(2128), + [anon_sym_e_GT] = ACTIONS(2128), + [anon_sym_o_GT] = ACTIONS(2128), + [anon_sym_err_PLUSout_GT] = ACTIONS(2128), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2128), + [anon_sym_o_PLUSe_GT] = ACTIONS(2128), + [anon_sym_e_PLUSo_GT] = ACTIONS(2128), + [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(2128), + [aux_sym_unquoted_token4] = ACTIONS(2074), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2130), + }, + [1655] = { + [sym_comment] = STATE(1655), + [sym__newline] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2072), + [anon_sym_PIPE] = ACTIONS(2072), + [anon_sym_err_GT_PIPE] = ACTIONS(2072), + [anon_sym_out_GT_PIPE] = ACTIONS(2072), + [anon_sym_e_GT_PIPE] = ACTIONS(2072), + [anon_sym_o_GT_PIPE] = ACTIONS(2072), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2072), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2072), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2072), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2072), + [anon_sym_RPAREN] = ACTIONS(2072), + [anon_sym_DOLLAR] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2068), + [anon_sym_DASH2] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2072), + [anon_sym_RBRACE] = ACTIONS(2072), + [anon_sym_DOT_DOT] = ACTIONS(2068), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2068), + [anon_sym_DOT_DOT_LT] = ACTIONS(2068), + [anon_sym_null] = ACTIONS(2068), + [anon_sym_true] = ACTIONS(2068), + [anon_sym_false] = 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_0b] = ACTIONS(2068), + [anon_sym_0o] = ACTIONS(2068), + [anon_sym_0x] = ACTIONS(2068), + [sym_val_date] = ACTIONS(2068), + [anon_sym_DQUOTE] = ACTIONS(2072), + [sym__str_single_quotes] = ACTIONS(2072), + [sym__str_back_ticks] = ACTIONS(2072), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2072), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2072), + [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(2068), + [anon_sym_out_GT_GT] = ACTIONS(2068), + [anon_sym_e_GT_GT] = ACTIONS(2068), + [anon_sym_o_GT_GT] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2068), + [aux_sym_unquoted_token1] = ACTIONS(2068), + [aux_sym_unquoted_token4] = ACTIONS(2074), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2072), + }, + [1656] = { + [sym__expr_parenthesized_immediate] = STATE(7173), + [sym_comment] = STATE(1656), + [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_RPAREN] = ACTIONS(4826), + [anon_sym_GT2] = ACTIONS(4828), + [anon_sym_DASH2] = ACTIONS(4826), + [anon_sym_in2] = ACTIONS(4826), + [anon_sym_LBRACE] = ACTIONS(4826), + [anon_sym_RBRACE] = ACTIONS(4826), + [anon_sym_EQ_GT] = ACTIONS(4826), + [anon_sym_STAR2] = ACTIONS(4828), + [anon_sym_and2] = ACTIONS(4826), + [anon_sym_xor2] = ACTIONS(4826), + [anon_sym_or2] = ACTIONS(4826), + [anon_sym_not_DASHin2] = ACTIONS(4826), + [anon_sym_has2] = ACTIONS(4826), + [anon_sym_not_DASHhas2] = ACTIONS(4826), + [anon_sym_starts_DASHwith2] = ACTIONS(4826), + [anon_sym_ends_DASHwith2] = ACTIONS(4826), + [anon_sym_EQ_EQ2] = ACTIONS(4826), + [anon_sym_BANG_EQ2] = ACTIONS(4826), + [anon_sym_LT2] = ACTIONS(4828), + [anon_sym_LT_EQ2] = ACTIONS(4826), + [anon_sym_GT_EQ2] = ACTIONS(4826), + [anon_sym_EQ_TILDE2] = ACTIONS(4826), + [anon_sym_BANG_TILDE2] = ACTIONS(4826), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_STAR_STAR2] = ACTIONS(4826), + [anon_sym_PLUS_PLUS2] = ACTIONS(4826), + [anon_sym_SLASH2] = ACTIONS(4828), + [anon_sym_mod2] = ACTIONS(4826), + [anon_sym_SLASH_SLASH2] = ACTIONS(4826), + [anon_sym_PLUS2] = ACTIONS(4828), + [anon_sym_bit_DASHshl2] = ACTIONS(4826), + [anon_sym_bit_DASHshr2] = ACTIONS(4826), + [anon_sym_bit_DASHand2] = ACTIONS(4826), + [anon_sym_bit_DASHxor2] = ACTIONS(4826), + [anon_sym_bit_DASHor2] = 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), + [anon_sym_POUND] = ACTIONS(245), + }, + [1657] = { + [sym_comment] = STATE(1657), + [ts_builtin_sym_end] = ACTIONS(4848), + [sym_long_flag_identifier] = ACTIONS(5020), + [sym__newline] = ACTIONS(4848), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym_PIPE] = ACTIONS(4848), + [anon_sym_err_GT_PIPE] = ACTIONS(4848), + [anon_sym_out_GT_PIPE] = ACTIONS(4848), + [anon_sym_e_GT_PIPE] = ACTIONS(4848), + [anon_sym_o_GT_PIPE] = ACTIONS(4848), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4848), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4848), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4848), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4848), + [anon_sym_LBRACK] = ACTIONS(4848), + [anon_sym_LPAREN] = ACTIONS(4848), + [anon_sym_DOLLAR] = ACTIONS(4850), + [anon_sym_DASH_DASH] = ACTIONS(4848), + [anon_sym_DASH2] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_DOT_DOT] = ACTIONS(4850), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4848), + [anon_sym_DOT_DOT_LT] = ACTIONS(4848), + [anon_sym_null] = ACTIONS(4850), + [anon_sym_true] = ACTIONS(4850), + [anon_sym_false] = ACTIONS(4850), + [aux_sym__val_number_decimal_token1] = ACTIONS(4850), + [aux_sym__val_number_decimal_token2] = ACTIONS(4848), + [aux_sym__val_number_decimal_token3] = ACTIONS(4848), + [aux_sym__val_number_decimal_token4] = ACTIONS(4848), + [aux_sym__val_number_token1] = ACTIONS(4850), + [aux_sym__val_number_token2] = ACTIONS(4850), + [aux_sym__val_number_token3] = ACTIONS(4850), + [aux_sym__val_number_token4] = ACTIONS(4850), + [aux_sym__val_number_token5] = ACTIONS(4848), + [aux_sym__val_number_token6] = ACTIONS(4850), + [anon_sym_0b] = ACTIONS(4850), + [anon_sym_0o] = ACTIONS(4850), + [anon_sym_0x] = ACTIONS(4850), + [sym_val_date] = ACTIONS(4850), + [anon_sym_DQUOTE] = ACTIONS(4848), + [sym__str_single_quotes] = ACTIONS(4848), + [sym__str_back_ticks] = ACTIONS(4848), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4848), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4848), + [anon_sym_err_GT] = ACTIONS(4850), + [anon_sym_out_GT] = ACTIONS(4850), + [anon_sym_e_GT] = ACTIONS(4850), + [anon_sym_o_GT] = ACTIONS(4850), + [anon_sym_err_PLUSout_GT] = ACTIONS(4850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4850), + [anon_sym_o_PLUSe_GT] = ACTIONS(4850), + [anon_sym_e_PLUSo_GT] = ACTIONS(4850), + [anon_sym_err_GT_GT] = ACTIONS(4848), + [anon_sym_out_GT_GT] = ACTIONS(4848), + [anon_sym_e_GT_GT] = ACTIONS(4848), + [anon_sym_o_GT_GT] = ACTIONS(4848), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4848), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4848), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4848), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4848), + [anon_sym_EQ2] = ACTIONS(5022), + [aux_sym_unquoted_token1] = ACTIONS(4850), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4848), + }, + [1658] = { + [sym__expr_parenthesized_immediate] = STATE(7173), + [sym_comment] = STATE(1658), + [sym__newline] = ACTIONS(4859), + [anon_sym_SEMI] = ACTIONS(4859), + [anon_sym_PIPE] = ACTIONS(4859), + [anon_sym_err_GT_PIPE] = ACTIONS(4859), + [anon_sym_out_GT_PIPE] = ACTIONS(4859), + [anon_sym_e_GT_PIPE] = ACTIONS(4859), + [anon_sym_o_GT_PIPE] = ACTIONS(4859), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4859), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4859), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4859), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4859), + [anon_sym_RPAREN] = ACTIONS(4859), + [anon_sym_GT2] = ACTIONS(4861), + [anon_sym_DASH2] = ACTIONS(4859), + [anon_sym_in2] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4859), + [anon_sym_RBRACE] = ACTIONS(4859), + [anon_sym_EQ_GT] = ACTIONS(4859), + [anon_sym_STAR2] = ACTIONS(4861), + [anon_sym_and2] = ACTIONS(4859), + [anon_sym_xor2] = ACTIONS(4859), + [anon_sym_or2] = ACTIONS(4859), + [anon_sym_not_DASHin2] = ACTIONS(4859), + [anon_sym_has2] = ACTIONS(4859), + [anon_sym_not_DASHhas2] = ACTIONS(4859), + [anon_sym_starts_DASHwith2] = ACTIONS(4859), + [anon_sym_ends_DASHwith2] = ACTIONS(4859), + [anon_sym_EQ_EQ2] = ACTIONS(4859), + [anon_sym_BANG_EQ2] = ACTIONS(4859), + [anon_sym_LT2] = ACTIONS(4861), + [anon_sym_LT_EQ2] = ACTIONS(4859), + [anon_sym_GT_EQ2] = ACTIONS(4859), + [anon_sym_EQ_TILDE2] = ACTIONS(4859), + [anon_sym_BANG_TILDE2] = ACTIONS(4859), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_STAR_STAR2] = ACTIONS(4859), + [anon_sym_PLUS_PLUS2] = ACTIONS(4859), + [anon_sym_SLASH2] = ACTIONS(4861), + [anon_sym_mod2] = ACTIONS(4859), + [anon_sym_SLASH_SLASH2] = ACTIONS(4859), + [anon_sym_PLUS2] = ACTIONS(4861), + [anon_sym_bit_DASHshl2] = ACTIONS(4859), + [anon_sym_bit_DASHshr2] = ACTIONS(4859), + [anon_sym_bit_DASHand2] = ACTIONS(4859), + [anon_sym_bit_DASHxor2] = ACTIONS(4859), + [anon_sym_bit_DASHor2] = ACTIONS(4859), + [anon_sym_err_GT] = ACTIONS(4861), + [anon_sym_out_GT] = ACTIONS(4861), + [anon_sym_e_GT] = ACTIONS(4861), + [anon_sym_o_GT] = ACTIONS(4861), + [anon_sym_err_PLUSout_GT] = ACTIONS(4861), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4861), + [anon_sym_o_PLUSe_GT] = ACTIONS(4861), + [anon_sym_e_PLUSo_GT] = ACTIONS(4861), + [anon_sym_err_GT_GT] = ACTIONS(4859), + [anon_sym_out_GT_GT] = ACTIONS(4859), + [anon_sym_e_GT_GT] = ACTIONS(4859), + [anon_sym_o_GT_GT] = ACTIONS(4859), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4859), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4859), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4859), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4859), + [anon_sym_POUND] = ACTIONS(245), + }, + [1659] = { + [sym__expr_parenthesized_immediate] = STATE(7173), + [sym_comment] = STATE(1659), + [sym__newline] = ACTIONS(4863), + [anon_sym_SEMI] = ACTIONS(4863), + [anon_sym_PIPE] = ACTIONS(4863), + [anon_sym_err_GT_PIPE] = ACTIONS(4863), + [anon_sym_out_GT_PIPE] = ACTIONS(4863), + [anon_sym_e_GT_PIPE] = ACTIONS(4863), + [anon_sym_o_GT_PIPE] = ACTIONS(4863), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4863), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4863), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4863), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4863), + [anon_sym_RPAREN] = ACTIONS(4863), + [anon_sym_GT2] = ACTIONS(4865), + [anon_sym_DASH2] = ACTIONS(4863), + [anon_sym_in2] = ACTIONS(4863), + [anon_sym_LBRACE] = ACTIONS(4863), + [anon_sym_RBRACE] = ACTIONS(4863), + [anon_sym_EQ_GT] = ACTIONS(4863), + [anon_sym_STAR2] = ACTIONS(4865), + [anon_sym_and2] = ACTIONS(4863), + [anon_sym_xor2] = ACTIONS(4863), + [anon_sym_or2] = ACTIONS(4863), + [anon_sym_not_DASHin2] = ACTIONS(4863), + [anon_sym_has2] = ACTIONS(4863), + [anon_sym_not_DASHhas2] = ACTIONS(4863), + [anon_sym_starts_DASHwith2] = ACTIONS(4863), + [anon_sym_ends_DASHwith2] = ACTIONS(4863), + [anon_sym_EQ_EQ2] = ACTIONS(4863), + [anon_sym_BANG_EQ2] = ACTIONS(4863), + [anon_sym_LT2] = ACTIONS(4865), + [anon_sym_LT_EQ2] = ACTIONS(4863), + [anon_sym_GT_EQ2] = ACTIONS(4863), + [anon_sym_EQ_TILDE2] = ACTIONS(4863), + [anon_sym_BANG_TILDE2] = ACTIONS(4863), + [anon_sym_LPAREN2] = ACTIONS(4208), + [anon_sym_STAR_STAR2] = ACTIONS(4863), + [anon_sym_PLUS_PLUS2] = ACTIONS(4863), + [anon_sym_SLASH2] = ACTIONS(4865), + [anon_sym_mod2] = ACTIONS(4863), + [anon_sym_SLASH_SLASH2] = ACTIONS(4863), + [anon_sym_PLUS2] = ACTIONS(4865), + [anon_sym_bit_DASHshl2] = ACTIONS(4863), + [anon_sym_bit_DASHshr2] = ACTIONS(4863), + [anon_sym_bit_DASHand2] = ACTIONS(4863), + [anon_sym_bit_DASHxor2] = ACTIONS(4863), + [anon_sym_bit_DASHor2] = ACTIONS(4863), + [anon_sym_err_GT] = ACTIONS(4865), + [anon_sym_out_GT] = ACTIONS(4865), + [anon_sym_e_GT] = ACTIONS(4865), + [anon_sym_o_GT] = ACTIONS(4865), + [anon_sym_err_PLUSout_GT] = ACTIONS(4865), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4865), + [anon_sym_o_PLUSe_GT] = ACTIONS(4865), + [anon_sym_e_PLUSo_GT] = ACTIONS(4865), + [anon_sym_err_GT_GT] = ACTIONS(4863), + [anon_sym_out_GT_GT] = ACTIONS(4863), + [anon_sym_e_GT_GT] = ACTIONS(4863), + [anon_sym_o_GT_GT] = ACTIONS(4863), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4863), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4863), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4863), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4863), + [anon_sym_POUND] = ACTIONS(245), + }, + [1660] = { + [sym_comment] = STATE(1660), + [ts_builtin_sym_end] = ACTIONS(4815), + [sym__newline] = ACTIONS(4815), + [anon_sym_SEMI] = ACTIONS(4815), + [anon_sym_PIPE] = ACTIONS(4815), + [anon_sym_err_GT_PIPE] = ACTIONS(4815), + [anon_sym_out_GT_PIPE] = ACTIONS(4815), + [anon_sym_e_GT_PIPE] = ACTIONS(4815), + [anon_sym_o_GT_PIPE] = ACTIONS(4815), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4815), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4815), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4815), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4815), + [anon_sym_LBRACK] = ACTIONS(4815), + [anon_sym_LPAREN] = ACTIONS(4815), + [anon_sym_DOLLAR] = ACTIONS(4817), + [anon_sym_DASH_DASH] = ACTIONS(4817), + [anon_sym_DASH2] = ACTIONS(4817), + [anon_sym_LBRACE] = ACTIONS(4815), + [anon_sym_DOT_DOT] = ACTIONS(4817), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4815), + [anon_sym_DOT_DOT_LT] = ACTIONS(4815), + [anon_sym_null] = ACTIONS(4817), + [anon_sym_true] = ACTIONS(4817), + [anon_sym_false] = ACTIONS(4817), + [aux_sym__val_number_decimal_token1] = ACTIONS(4817), + [aux_sym__val_number_decimal_token2] = ACTIONS(4817), + [aux_sym__val_number_decimal_token3] = ACTIONS(4815), + [aux_sym__val_number_decimal_token4] = ACTIONS(4815), + [aux_sym__val_number_token1] = ACTIONS(4817), + [aux_sym__val_number_token2] = ACTIONS(4817), + [aux_sym__val_number_token3] = ACTIONS(4817), + [aux_sym__val_number_token4] = ACTIONS(4817), + [aux_sym__val_number_token5] = ACTIONS(4817), + [aux_sym__val_number_token6] = ACTIONS(4817), + [anon_sym_0b] = ACTIONS(4817), + [anon_sym_0o] = ACTIONS(4817), + [anon_sym_0x] = ACTIONS(4817), + [sym_val_date] = ACTIONS(4817), + [anon_sym_DQUOTE] = ACTIONS(4815), + [sym__str_single_quotes] = ACTIONS(4815), + [sym__str_back_ticks] = ACTIONS(4815), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4815), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4815), + [anon_sym_err_GT] = ACTIONS(4817), + [anon_sym_out_GT] = ACTIONS(4817), + [anon_sym_e_GT] = ACTIONS(4817), + [anon_sym_o_GT] = ACTIONS(4817), + [anon_sym_err_PLUSout_GT] = ACTIONS(4817), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4817), + [anon_sym_o_PLUSe_GT] = ACTIONS(4817), + [anon_sym_e_PLUSo_GT] = ACTIONS(4817), + [anon_sym_err_GT_GT] = ACTIONS(4815), + [anon_sym_out_GT_GT] = ACTIONS(4815), + [anon_sym_e_GT_GT] = ACTIONS(4815), + [anon_sym_o_GT_GT] = ACTIONS(4815), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4815), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4815), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4815), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4815), + [anon_sym_EQ2] = ACTIONS(5024), + [sym_short_flag_identifier] = ACTIONS(5026), + [aux_sym_unquoted_token1] = ACTIONS(4817), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(4815), + }, + [1661] = { + [sym_comment] = STATE(1661), + [sym__newline] = ACTIONS(2078), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_PIPE] = ACTIONS(2078), + [anon_sym_err_GT_PIPE] = ACTIONS(2078), + [anon_sym_out_GT_PIPE] = ACTIONS(2078), + [anon_sym_e_GT_PIPE] = ACTIONS(2078), + [anon_sym_o_GT_PIPE] = ACTIONS(2078), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2078), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2078), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2078), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2078), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_RPAREN] = ACTIONS(2078), + [anon_sym_DOLLAR] = ACTIONS(2076), + [anon_sym_DASH_DASH] = ACTIONS(2076), + [anon_sym_DASH2] = ACTIONS(2076), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_DOT_DOT] = ACTIONS(2076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2076), + [anon_sym_DOT_DOT_LT] = ACTIONS(2076), + [anon_sym_null] = ACTIONS(2076), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [aux_sym__val_number_decimal_token1] = ACTIONS(2076), + [aux_sym__val_number_decimal_token2] = ACTIONS(2076), + [aux_sym__val_number_decimal_token3] = ACTIONS(2076), + [aux_sym__val_number_decimal_token4] = ACTIONS(2076), + [aux_sym__val_number_token1] = ACTIONS(2076), + [aux_sym__val_number_token2] = ACTIONS(2076), + [aux_sym__val_number_token3] = ACTIONS(2076), + [aux_sym__val_number_token4] = ACTIONS(2076), + [aux_sym__val_number_token5] = ACTIONS(2076), + [aux_sym__val_number_token6] = ACTIONS(2076), + [anon_sym_0b] = ACTIONS(2076), + [anon_sym_0o] = ACTIONS(2076), + [anon_sym_0x] = ACTIONS(2076), + [sym_val_date] = ACTIONS(2076), + [anon_sym_DQUOTE] = ACTIONS(2078), + [sym__str_single_quotes] = ACTIONS(2078), + [sym__str_back_ticks] = ACTIONS(2078), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2078), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2078), + [anon_sym_err_GT] = ACTIONS(2076), + [anon_sym_out_GT] = ACTIONS(2076), + [anon_sym_e_GT] = ACTIONS(2076), + [anon_sym_o_GT] = ACTIONS(2076), + [anon_sym_err_PLUSout_GT] = ACTIONS(2076), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2076), + [anon_sym_o_PLUSe_GT] = ACTIONS(2076), + [anon_sym_e_PLUSo_GT] = ACTIONS(2076), + [anon_sym_err_GT_GT] = ACTIONS(2076), + [anon_sym_out_GT_GT] = ACTIONS(2076), + [anon_sym_e_GT_GT] = ACTIONS(2076), + [anon_sym_o_GT_GT] = ACTIONS(2076), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2076), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2076), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2076), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2076), + [aux_sym_unquoted_token1] = ACTIONS(2076), + [aux_sym_unquoted_token4] = ACTIONS(2076), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2078), + }, + [1662] = { + [sym_comment] = STATE(1662), + [ts_builtin_sym_end] = ACTIONS(1762), + [sym__newline] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_err_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_GT_PIPE] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1762), + [anon_sym_GT2] = ACTIONS(1760), + [anon_sym_DASH2] = ACTIONS(1762), + [anon_sym_in2] = ACTIONS(1762), + [anon_sym_STAR2] = ACTIONS(1760), + [anon_sym_and2] = ACTIONS(1762), + [anon_sym_xor2] = ACTIONS(1762), + [anon_sym_or2] = ACTIONS(1762), + [anon_sym_not_DASHin2] = ACTIONS(1762), + [anon_sym_has2] = ACTIONS(1762), + [anon_sym_not_DASHhas2] = ACTIONS(1762), + [anon_sym_starts_DASHwith2] = ACTIONS(1762), + [anon_sym_ends_DASHwith2] = ACTIONS(1762), + [anon_sym_EQ_EQ2] = ACTIONS(1762), + [anon_sym_BANG_EQ2] = ACTIONS(1762), + [anon_sym_LT2] = ACTIONS(1760), + [anon_sym_LT_EQ2] = ACTIONS(1762), + [anon_sym_GT_EQ2] = ACTIONS(1762), + [anon_sym_EQ_TILDE2] = ACTIONS(1762), + [anon_sym_BANG_TILDE2] = ACTIONS(1762), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_STAR_STAR2] = ACTIONS(1762), + [anon_sym_PLUS_PLUS2] = ACTIONS(1762), + [anon_sym_SLASH2] = ACTIONS(1760), + [anon_sym_mod2] = ACTIONS(1762), + [anon_sym_SLASH_SLASH2] = ACTIONS(1762), + [anon_sym_PLUS2] = ACTIONS(1760), + [anon_sym_bit_DASHshl2] = ACTIONS(1762), + [anon_sym_bit_DASHshr2] = ACTIONS(1762), + [anon_sym_bit_DASHand2] = ACTIONS(1762), + [anon_sym_bit_DASHxor2] = ACTIONS(1762), + [anon_sym_bit_DASHor2] = ACTIONS(1762), + [anon_sym_DOT_DOT2] = ACTIONS(1760), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1762), + [anon_sym_err_GT] = ACTIONS(1760), + [anon_sym_out_GT] = ACTIONS(1760), + [anon_sym_e_GT] = ACTIONS(1760), + [anon_sym_o_GT] = ACTIONS(1760), + [anon_sym_err_PLUSout_GT] = ACTIONS(1760), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1760), + [anon_sym_o_PLUSe_GT] = ACTIONS(1760), + [anon_sym_e_PLUSo_GT] = ACTIONS(1760), + [anon_sym_err_GT_GT] = ACTIONS(1762), + [anon_sym_out_GT_GT] = ACTIONS(1762), + [anon_sym_e_GT_GT] = ACTIONS(1762), + [anon_sym_o_GT_GT] = ACTIONS(1762), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1762), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1762), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1762), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1762), + [aux_sym_unquoted_token2] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(245), + }, + [1663] = { + [sym_comment] = STATE(1663), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_GT2] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1703), + [anon_sym_in2] = ACTIONS(1703), + [anon_sym_STAR2] = ACTIONS(1701), + [anon_sym_and2] = ACTIONS(1703), + [anon_sym_xor2] = ACTIONS(1703), + [anon_sym_or2] = ACTIONS(1703), + [anon_sym_not_DASHin2] = ACTIONS(1703), + [anon_sym_has2] = ACTIONS(1703), + [anon_sym_not_DASHhas2] = ACTIONS(1703), + [anon_sym_starts_DASHwith2] = ACTIONS(1703), + [anon_sym_ends_DASHwith2] = ACTIONS(1703), + [anon_sym_EQ_EQ2] = ACTIONS(1703), + [anon_sym_BANG_EQ2] = ACTIONS(1703), + [anon_sym_LT2] = ACTIONS(1701), + [anon_sym_LT_EQ2] = ACTIONS(1703), + [anon_sym_GT_EQ2] = ACTIONS(1703), + [anon_sym_EQ_TILDE2] = ACTIONS(1703), + [anon_sym_BANG_TILDE2] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_STAR_STAR2] = ACTIONS(1703), + [anon_sym_PLUS_PLUS2] = ACTIONS(1703), + [anon_sym_SLASH2] = ACTIONS(1701), + [anon_sym_mod2] = ACTIONS(1703), + [anon_sym_SLASH_SLASH2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_bit_DASHshl2] = ACTIONS(1703), + [anon_sym_bit_DASHshr2] = ACTIONS(1703), + [anon_sym_bit_DASHand2] = ACTIONS(1703), + [anon_sym_bit_DASHxor2] = ACTIONS(1703), + [anon_sym_bit_DASHor2] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1703), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + }, + [1664] = { + [sym_comment] = STATE(1664), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT] = ACTIONS(1703), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [aux_sym_unquoted_token2] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [1665] = { + [sym_comment] = STATE(1665), + [ts_builtin_sym_end] = ACTIONS(1813), + [sym__newline] = ACTIONS(1813), + [anon_sym_SEMI] = ACTIONS(1813), + [anon_sym_PIPE] = ACTIONS(1813), + [anon_sym_err_GT_PIPE] = ACTIONS(1813), + [anon_sym_out_GT_PIPE] = ACTIONS(1813), + [anon_sym_e_GT_PIPE] = ACTIONS(1813), + [anon_sym_o_GT_PIPE] = ACTIONS(1813), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1813), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1813), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1813), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1813), + [anon_sym_GT2] = ACTIONS(1805), + [anon_sym_DASH2] = ACTIONS(1813), + [anon_sym_in2] = ACTIONS(1813), + [anon_sym_STAR2] = ACTIONS(1805), + [anon_sym_and2] = ACTIONS(1813), + [anon_sym_xor2] = ACTIONS(1813), + [anon_sym_or2] = ACTIONS(1813), + [anon_sym_not_DASHin2] = ACTIONS(1813), + [anon_sym_has2] = ACTIONS(1813), + [anon_sym_not_DASHhas2] = ACTIONS(1813), + [anon_sym_starts_DASHwith2] = ACTIONS(1813), + [anon_sym_ends_DASHwith2] = ACTIONS(1813), + [anon_sym_EQ_EQ2] = ACTIONS(1813), + [anon_sym_BANG_EQ2] = ACTIONS(1813), + [anon_sym_LT2] = ACTIONS(1805), + [anon_sym_LT_EQ2] = ACTIONS(1813), + [anon_sym_GT_EQ2] = ACTIONS(1813), + [anon_sym_EQ_TILDE2] = ACTIONS(1813), + [anon_sym_BANG_TILDE2] = ACTIONS(1813), + [anon_sym_LPAREN2] = ACTIONS(1807), + [anon_sym_STAR_STAR2] = ACTIONS(1813), + [anon_sym_PLUS_PLUS2] = ACTIONS(1813), + [anon_sym_SLASH2] = ACTIONS(1805), + [anon_sym_mod2] = ACTIONS(1813), + [anon_sym_SLASH_SLASH2] = ACTIONS(1813), + [anon_sym_PLUS2] = ACTIONS(1805), + [anon_sym_bit_DASHshl2] = ACTIONS(1813), + [anon_sym_bit_DASHshr2] = ACTIONS(1813), + [anon_sym_bit_DASHand2] = ACTIONS(1813), + [anon_sym_bit_DASHxor2] = ACTIONS(1813), + [anon_sym_bit_DASHor2] = ACTIONS(1813), + [anon_sym_DOT_DOT2] = ACTIONS(5028), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(5030), + [anon_sym_DOT_DOT_LT2] = ACTIONS(5030), + [anon_sym_err_GT] = ACTIONS(1805), + [anon_sym_out_GT] = ACTIONS(1805), + [anon_sym_e_GT] = ACTIONS(1805), + [anon_sym_o_GT] = ACTIONS(1805), + [anon_sym_err_PLUSout_GT] = ACTIONS(1805), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1805), + [anon_sym_o_PLUSe_GT] = ACTIONS(1805), + [anon_sym_e_PLUSo_GT] = ACTIONS(1805), + [anon_sym_err_GT_GT] = ACTIONS(1813), + [anon_sym_out_GT_GT] = ACTIONS(1813), + [anon_sym_e_GT_GT] = ACTIONS(1813), + [anon_sym_o_GT_GT] = ACTIONS(1813), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1813), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1813), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1813), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1813), + [aux_sym_unquoted_token2] = ACTIONS(1447), + [anon_sym_POUND] = ACTIONS(245), + }, + [1666] = { + [sym_comment] = STATE(1666), + [sym__newline] = ACTIONS(1628), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1628), + [anon_sym_err_GT_PIPE] = ACTIONS(1628), + [anon_sym_out_GT_PIPE] = ACTIONS(1628), + [anon_sym_e_GT_PIPE] = ACTIONS(1628), + [anon_sym_o_GT_PIPE] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_RPAREN] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1628), + [anon_sym_DASH2] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1628), + [anon_sym_DOT_DOT_LT] = ACTIONS(1628), + [anon_sym_null] = ACTIONS(1628), + [anon_sym_true] = ACTIONS(1628), + [anon_sym_false] = ACTIONS(1628), + [aux_sym__val_number_decimal_token1] = ACTIONS(1616), + [aux_sym__val_number_decimal_token2] = ACTIONS(1628), + [aux_sym__val_number_decimal_token3] = ACTIONS(1628), + [aux_sym__val_number_decimal_token4] = ACTIONS(1628), + [aux_sym__val_number_token1] = ACTIONS(1628), + [aux_sym__val_number_token2] = ACTIONS(1628), + [aux_sym__val_number_token3] = ACTIONS(1628), + [aux_sym__val_number_token4] = ACTIONS(1628), + [aux_sym__val_number_token5] = ACTIONS(1628), + [aux_sym__val_number_token6] = ACTIONS(1628), + [anon_sym_0b] = ACTIONS(1616), + [anon_sym_0o] = ACTIONS(1616), + [anon_sym_0x] = ACTIONS(1616), + [sym_val_date] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1628), + [sym__str_single_quotes] = ACTIONS(1628), + [sym__str_back_ticks] = ACTIONS(1628), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1628), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1628), + [anon_sym_err_GT] = ACTIONS(1616), + [anon_sym_out_GT] = ACTIONS(1616), + [anon_sym_e_GT] = ACTIONS(1616), + [anon_sym_o_GT] = ACTIONS(1616), + [anon_sym_err_PLUSout_GT] = ACTIONS(1616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1616), + [anon_sym_o_PLUSe_GT] = ACTIONS(1616), + [anon_sym_e_PLUSo_GT] = ACTIONS(1616), + [anon_sym_err_GT_GT] = ACTIONS(1628), + [anon_sym_out_GT_GT] = ACTIONS(1628), + [anon_sym_e_GT_GT] = ACTIONS(1628), + [anon_sym_o_GT_GT] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1628), + [aux_sym_unquoted_token1] = ACTIONS(1616), + [aux_sym_unquoted_token2] = ACTIONS(4218), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(1628), + }, + [1667] = { + [sym_comment] = STATE(1667), + [ts_builtin_sym_end] = ACTIONS(1790), + [sym__newline] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_err_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_GT_PIPE] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1790), + [anon_sym_GT2] = ACTIONS(1782), + [anon_sym_DASH2] = ACTIONS(1790), + [anon_sym_in2] = ACTIONS(1790), + [anon_sym_STAR2] = ACTIONS(1782), + [anon_sym_and2] = ACTIONS(1790), + [anon_sym_xor2] = ACTIONS(1790), + [anon_sym_or2] = ACTIONS(1790), + [anon_sym_not_DASHin2] = ACTIONS(1790), + [anon_sym_has2] = ACTIONS(1790), + [anon_sym_not_DASHhas2] = ACTIONS(1790), + [anon_sym_starts_DASHwith2] = ACTIONS(1790), + [anon_sym_ends_DASHwith2] = ACTIONS(1790), + [anon_sym_EQ_EQ2] = ACTIONS(1790), + [anon_sym_BANG_EQ2] = ACTIONS(1790), + [anon_sym_LT2] = ACTIONS(1782), + [anon_sym_LT_EQ2] = ACTIONS(1790), + [anon_sym_GT_EQ2] = ACTIONS(1790), + [anon_sym_EQ_TILDE2] = ACTIONS(1790), + [anon_sym_BANG_TILDE2] = ACTIONS(1790), + [anon_sym_LPAREN2] = ACTIONS(1784), + [anon_sym_STAR_STAR2] = ACTIONS(1790), + [anon_sym_PLUS_PLUS2] = ACTIONS(1790), + [anon_sym_SLASH2] = ACTIONS(1782), + [anon_sym_mod2] = ACTIONS(1790), + [anon_sym_SLASH_SLASH2] = ACTIONS(1790), + [anon_sym_PLUS2] = ACTIONS(1782), + [anon_sym_bit_DASHshl2] = ACTIONS(1790), + [anon_sym_bit_DASHshr2] = ACTIONS(1790), + [anon_sym_bit_DASHand2] = ACTIONS(1790), + [anon_sym_bit_DASHxor2] = ACTIONS(1790), + [anon_sym_bit_DASHor2] = ACTIONS(1790), + [anon_sym_DOT_DOT2] = ACTIONS(5032), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(5034), + [anon_sym_DOT_DOT_LT2] = ACTIONS(5034), + [anon_sym_err_GT] = ACTIONS(1782), + [anon_sym_out_GT] = ACTIONS(1782), + [anon_sym_e_GT] = ACTIONS(1782), + [anon_sym_o_GT] = ACTIONS(1782), + [anon_sym_err_PLUSout_GT] = ACTIONS(1782), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1782), + [anon_sym_o_PLUSe_GT] = ACTIONS(1782), + [anon_sym_e_PLUSo_GT] = ACTIONS(1782), + [anon_sym_err_GT_GT] = ACTIONS(1790), + [anon_sym_out_GT_GT] = ACTIONS(1790), + [anon_sym_e_GT_GT] = ACTIONS(1790), + [anon_sym_o_GT_GT] = ACTIONS(1790), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1790), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1790), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1790), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1790), + [aux_sym_unquoted_token2] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(245), + }, + [1668] = { + [sym_comment] = STATE(1668), + [ts_builtin_sym_end] = ACTIONS(2142), + [sym__newline] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_PIPE] = ACTIONS(2142), + [anon_sym_err_GT_PIPE] = ACTIONS(2142), + [anon_sym_out_GT_PIPE] = ACTIONS(2142), + [anon_sym_e_GT_PIPE] = ACTIONS(2142), + [anon_sym_o_GT_PIPE] = ACTIONS(2142), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2142), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2142), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2142), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_DOLLAR] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2142), + [anon_sym_DASH2] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2142), + [anon_sym_DOT_DOT] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2142), + [anon_sym_DOT_DOT_LT] = ACTIONS(2142), + [anon_sym_null] = ACTIONS(2142), + [anon_sym_true] = ACTIONS(2142), + [anon_sym_false] = ACTIONS(2142), + [aux_sym__val_number_decimal_token1] = ACTIONS(2138), + [aux_sym__val_number_decimal_token2] = ACTIONS(2142), + [aux_sym__val_number_decimal_token3] = ACTIONS(2142), + [aux_sym__val_number_decimal_token4] = ACTIONS(2142), + [aux_sym__val_number_token1] = ACTIONS(2142), + [aux_sym__val_number_token2] = ACTIONS(2142), + [aux_sym__val_number_token3] = ACTIONS(2142), + [aux_sym__val_number_token4] = ACTIONS(2142), + [aux_sym__val_number_token5] = ACTIONS(2142), + [aux_sym__val_number_token6] = ACTIONS(2142), + [anon_sym_0b] = ACTIONS(2138), + [anon_sym_0o] = ACTIONS(2138), + [anon_sym_0x] = ACTIONS(2138), + [sym_val_date] = ACTIONS(2142), + [anon_sym_DQUOTE] = ACTIONS(2142), + [sym__str_single_quotes] = ACTIONS(2142), + [sym__str_back_ticks] = ACTIONS(2142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2142), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2142), + [anon_sym_err_GT] = ACTIONS(2138), + [anon_sym_out_GT] = ACTIONS(2138), + [anon_sym_e_GT] = ACTIONS(2138), + [anon_sym_o_GT] = ACTIONS(2138), + [anon_sym_err_PLUSout_GT] = ACTIONS(2138), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2138), + [anon_sym_o_PLUSe_GT] = ACTIONS(2138), + [anon_sym_e_PLUSo_GT] = ACTIONS(2138), + [anon_sym_err_GT_GT] = ACTIONS(2142), + [anon_sym_out_GT_GT] = ACTIONS(2142), + [anon_sym_e_GT_GT] = ACTIONS(2142), + [anon_sym_o_GT_GT] = ACTIONS(2142), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2142), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2142), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2142), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2142), + [aux_sym_unquoted_token1] = ACTIONS(2138), + [aux_sym_unquoted_token2] = ACTIONS(1477), + [anon_sym_POUND] = ACTIONS(245), + [sym_raw_string_begin] = ACTIONS(2142), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(1800), 1, + STATE(1669), 1, sym_comment, - STATE(2161), 1, + STATE(2052), 1, aux_sym_shebang_repeat1, - STATE(7447), 1, + STATE(6822), 1, sym__expr_parenthesized_immediate, - ACTIONS(5098), 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(5096), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [3986] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1801), 1, - sym_comment, - ACTIONS(2009), 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(2015), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [4059] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1802), 1, - sym_comment, - ACTIONS(2017), 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(2023), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [4132] = 19, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2228), 1, - anon_sym_DOLLAR, - ACTIONS(2278), 1, - sym_raw_string_begin, - ACTIONS(4067), 1, - anon_sym_DQUOTE, - ACTIONS(4071), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4073), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4986), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5133), 1, - anon_sym_LPAREN, - STATE(1803), 1, - sym_comment, - STATE(3792), 1, - sym__val_number_decimal, - STATE(4857), 1, - sym__inter_single_quotes, - STATE(4858), 1, - sym__inter_double_quotes, - ACTIONS(4069), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(4093), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4597), 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, - [4235] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1804), 1, - sym_comment, - ACTIONS(2025), 13, + ACTIONS(5038), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -238369,7 +226238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2031), 49, + ACTIONS(5036), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238384,10 +226253,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, @@ -238419,12 +226285,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, - [4308] = 4, + [79] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1805), 1, + STATE(1670), 1, sym_comment, - ACTIONS(1967), 16, + ACTIONS(978), 17, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -238432,6 +226298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238441,8 +226308,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1969), 46, + ACTIONS(980), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238454,204 +226322,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_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, - [4381] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1806), 1, - sym_comment, - STATE(2211), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5094), 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(5092), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [4460] = 21, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(121), 1, - sym_raw_string_begin, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4986), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5139), 1, - anon_sym_LBRACK, - ACTIONS(5141), 1, - anon_sym_STAR2, - STATE(1807), 1, - sym_comment, - STATE(3693), 1, - sym__val_number_decimal, - STATE(5741), 1, - sym_cmd_identifier, - STATE(5742), 1, - sym_val_string, - STATE(7009), 1, - sym_scope_pattern, - STATE(7069), 1, - sym_wild_card, - STATE(7138), 1, - sym_command_list, - STATE(7330), 1, - sym__command_name, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(1634), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4996), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(5135), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5137), 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, - [4567] = 4, + 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, + [152] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(1808), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1671), 1, sym_comment, - ACTIONS(2328), 13, + STATE(2060), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5042), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -238665,7 +226379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2330), 49, + ACTIONS(5040), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238680,10 +226394,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, @@ -238715,17 +226426,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, - [4640] = 4, + [231] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1809), 1, + STATE(1672), 1, sym_comment, - ACTIONS(2332), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(954), 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, @@ -238734,7 +226447,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(2334), 49, + aux_sym_unquoted_token1, + ACTIONS(956), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238746,36 +226461,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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -238784,12 +226495,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, - [4713] = 4, + [304] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(1810), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1673), 1, sym_comment, - ACTIONS(2336), 13, + STATE(2107), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5046), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -238803,7 +226520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2338), 49, + ACTIONS(5044), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238818,10 +226535,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, @@ -238853,12 +226567,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, - [4786] = 4, + [383] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(1811), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1674), 1, sym_comment, - ACTIONS(2418), 13, + STATE(2077), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5042), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -238872,7 +226592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2420), 49, + ACTIONS(5040), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238887,10 +226607,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, @@ -238922,12 +226639,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, - [4859] = 4, + [462] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(1812), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1675), 1, sym_comment, - ACTIONS(2422), 13, + STATE(2099), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5042), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -238941,7 +226664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2424), 49, + ACTIONS(5040), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238956,10 +226679,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, @@ -238991,19 +226711,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, - [4932] = 4, + [541] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1813), 1, + STATE(1676), 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_DOT2, + ACTIONS(1616), 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, @@ -239012,8 +226732,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), 47, - ts_builtin_sym_end, + aux_sym_unquoted_token1, + ACTIONS(1628), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239025,33 +226746,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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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_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, @@ -239060,19 +226780,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, - [5005] = 4, + [614] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(1814), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1677), 1, sym_comment, - ACTIONS(974), 15, + STATE(2124), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5042), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239081,8 +226805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(976), 47, - ts_builtin_sym_end, + ACTIONS(5040), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239094,8 +226817,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, @@ -239119,8 +226844,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, @@ -239129,25 +226852,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, - [5078] = 8, + [693] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_DOT2, - STATE(1628), 1, - aux_sym_cell_path_repeat1, - STATE(1815), 1, + STATE(1678), 1, sym_comment, - STATE(1858), 1, - sym_path, - STATE(2507), 1, - sym_cell_path, - ACTIONS(1835), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1797), 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, @@ -239156,8 +226873,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(1837), 45, - ts_builtin_sym_end, + aux_sym_unquoted_token1, + ACTIONS(1799), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239169,31 +226887,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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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_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, @@ -239202,20 +226921,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, - [5159] = 8, + [766] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_DOT2, - STATE(1628), 1, - aux_sym_cell_path_repeat1, - STATE(1816), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1679), 1, sym_comment, - STATE(1858), 1, - sym_path, - STATE(2508), 1, - sym_cell_path, - ACTIONS(1847), 13, + STATE(2145), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5042), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -239229,8 +226946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1849), 45, - ts_builtin_sym_end, + ACTIONS(5040), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239242,8 +226958,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, @@ -239275,25 +226993,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, - [5240] = 9, + [845] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1006), 1, - anon_sym_DOT_DOT2, - ACTIONS(4657), 1, - anon_sym_COLON2, - STATE(1817), 1, + STATE(1680), 1, sym_comment, - ACTIONS(1008), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4968), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(4972), 8, + 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, @@ -239302,7 +227014,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(4966), 20, + aux_sym_unquoted_token1, + ACTIONS(994), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239314,7 +227028,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_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239323,38 +227062,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, - ACTIONS(4970), 25, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [5323] = 4, + [918] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(1818), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1681), 1, sym_comment, - ACTIONS(2342), 13, + STATE(2165), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5042), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -239368,7 +227087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2344), 49, + ACTIONS(5040), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239383,10 +227102,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, @@ -239418,12 +227134,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, - [5396] = 4, + [997] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(1819), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1682), 1, sym_comment, - ACTIONS(2346), 13, + STATE(2039), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5042), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -239437,7 +227159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2348), 49, + ACTIONS(5040), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239452,10 +227174,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, @@ -239487,17 +227206,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, - [5469] = 4, + [1076] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1820), 1, + STATE(1683), 1, sym_comment, - ACTIONS(2350), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5050), 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, @@ -239506,7 +227227,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(2352), 49, + aux_sym_unquoted_token1, + ACTIONS(5048), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239518,36 +227241,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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -239556,12 +227275,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, - [5542] = 4, + [1149] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(1821), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1684), 1, sym_comment, - ACTIONS(2354), 13, + STATE(2082), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5042), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -239575,7 +227300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2356), 49, + ACTIONS(5040), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239590,10 +227315,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, @@ -239625,12 +227347,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, - [5615] = 4, + [1228] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(1822), 1, + ACTIONS(5052), 1, + anon_sym_DOT, + ACTIONS(5054), 1, + aux_sym__immediate_decimal_token2, + STATE(1685), 1, sym_comment, - ACTIONS(2358), 13, + ACTIONS(1701), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -239644,7 +227370,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(2360), 49, + aux_sym_unquoted_token2, + ACTIONS(1703), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239656,13 +227384,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, @@ -239677,6 +227400,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, @@ -239694,17 +227418,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, - [5688] = 4, + [1305] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1823), 1, + STATE(1686), 1, sym_comment, - ACTIONS(2362), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2394), 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, @@ -239713,7 +227439,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(2364), 49, + aux_sym_unquoted_token1, + ACTIONS(2396), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239725,36 +227453,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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -239763,12 +227487,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, - [5761] = 4, + [1378] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(1824), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1687), 1, sym_comment, - ACTIONS(2366), 13, + STATE(2106), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5042), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -239782,7 +227512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2368), 49, + ACTIONS(5040), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239797,10 +227527,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, @@ -239832,12 +227559,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, - [5834] = 4, + [1457] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1825), 1, + STATE(1688), 1, sym_comment, - ACTIONS(1851), 13, + ACTIONS(4976), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -239851,7 +227578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1853), 49, + ACTIONS(4974), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239866,7 +227593,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, @@ -239884,6 +227610,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, @@ -239901,17 +227628,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, - [5907] = 4, + [1530] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1826), 1, + STATE(1689), 1, sym_comment, - ACTIONS(2426), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5058), 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, @@ -239920,7 +227649,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(2428), 49, + aux_sym_unquoted_token1, + ACTIONS(5056), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239932,36 +227663,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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -239970,103 +227697,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, - [5980] = 21, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(121), 1, - sym_raw_string_begin, + [1603] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4986), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5139), 1, - anon_sym_LBRACK, - ACTIONS(5141), 1, - anon_sym_STAR2, - STATE(1827), 1, + STATE(1690), 1, sym_comment, - STATE(3693), 1, - sym__val_number_decimal, - STATE(5741), 1, - sym_cmd_identifier, - STATE(5742), 1, - sym_val_string, - STATE(7069), 1, - sym_wild_card, - STATE(7091), 1, - sym_scope_pattern, - STATE(7138), 1, - sym_command_list, - STATE(7330), 1, - sym__command_name, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4984), 2, + ACTIONS(982), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(1634), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4994), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(5135), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5137), 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, - [6087] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1828), 1, - sym_comment, - ACTIONS(2430), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240075,7 +227718,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(2432), 49, + aux_sym_unquoted_token1, + ACTIONS(984), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240087,36 +227732,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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -240125,17 +227766,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, - [6160] = 4, + [1676] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1829), 1, + STATE(1691), 1, sym_comment, - ACTIONS(1879), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5062), 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, @@ -240144,7 +227787,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(1881), 49, + aux_sym_unquoted_token1, + ACTIONS(5060), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240156,36 +227801,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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -240194,23 +227835,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, - [6233] = 7, + [1749] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1830), 1, + STATE(1692), 1, sym_comment, - STATE(2222), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5145), 13, + ACTIONS(970), 15, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240219,7 +227856,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(5143), 46, + ACTIONS(972), 47, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240231,10 +227869,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, @@ -240258,6 +227894,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, @@ -240266,17 +227904,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, - [6312] = 4, + [1822] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1831), 1, + STATE(1693), 1, sym_comment, - ACTIONS(1913), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(4976), 17, + anon_sym_LPAREN, + 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, @@ -240285,7 +227926,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(1915), 49, + aux_sym_unquoted_token1, + ACTIONS(4974), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240297,36 +227941,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_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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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_LPAREN2, + 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, @@ -240335,17 +227973,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, - [6385] = 4, + [1895] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1832), 1, + STATE(1694), 1, sym_comment, - ACTIONS(1945), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2405), 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, @@ -240354,7 +227994,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(1947), 49, + aux_sym_unquoted_token1, + ACTIONS(2407), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240366,36 +228008,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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -240404,16 +228042,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, - [6458] = 6, + [1968] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5147), 1, - anon_sym_DOT, - ACTIONS(5149), 1, - aux_sym__immediate_decimal_token2, - STATE(1833), 1, + ACTIONS(5064), 1, + anon_sym_DOT2, + STATE(1530), 1, + aux_sym_cell_path_repeat1, + STATE(1692), 1, + sym_path, + STATE(1695), 1, sym_comment, - ACTIONS(1666), 14, + STATE(2376), 1, + sym_cell_path, + ACTIONS(1883), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -240427,8 +228069,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_token2, - ACTIONS(1668), 46, + ACTIONS(1885), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -240457,7 +228098,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, @@ -240475,12 +228115,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, - [6535] = 4, + [2049] = 8, ACTIONS(245), 1, anon_sym_POUND, - STATE(1834), 1, + ACTIONS(5064), 1, + anon_sym_DOT2, + STATE(1530), 1, + aux_sym_cell_path_repeat1, + STATE(1692), 1, + sym_path, + STATE(1696), 1, sym_comment, - ACTIONS(2441), 13, + STATE(2377), 1, + sym_cell_path, + ACTIONS(1893), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -240494,7 +228142,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(2443), 49, + ACTIONS(1895), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240506,13 +228155,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, @@ -240544,12 +228188,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, - [6608] = 4, + [2130] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(1835), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1697), 1, sym_comment, - ACTIONS(1883), 13, + STATE(2105), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5068), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -240563,7 +228213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1885), 49, + ACTIONS(5066), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240578,10 +228228,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, @@ -240613,12 +228260,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, - [6681] = 4, + [2209] = 8, ACTIONS(245), 1, anon_sym_POUND, - STATE(1836), 1, + ACTIONS(5064), 1, + anon_sym_DOT2, + STATE(1530), 1, + aux_sym_cell_path_repeat1, + STATE(1692), 1, + sym_path, + STATE(1698), 1, sym_comment, - ACTIONS(2445), 13, + STATE(2365), 1, + sym_cell_path, + ACTIONS(1863), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -240632,7 +228287,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(2447), 49, + ACTIONS(1865), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240644,13 +228300,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, @@ -240682,12 +228333,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, - [6754] = 4, + [2290] = 8, ACTIONS(245), 1, anon_sym_POUND, - STATE(1837), 1, + ACTIONS(5064), 1, + anon_sym_DOT2, + STATE(1530), 1, + aux_sym_cell_path_repeat1, + STATE(1692), 1, + sym_path, + STATE(1699), 1, sym_comment, - ACTIONS(2449), 13, + STATE(2366), 1, + sym_cell_path, + ACTIONS(1907), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -240701,7 +228360,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(2451), 49, + ACTIONS(1909), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240713,13 +228373,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, @@ -240751,12 +228406,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, - [6827] = 4, + [2371] = 8, ACTIONS(245), 1, anon_sym_POUND, - STATE(1838), 1, + ACTIONS(5064), 1, + anon_sym_DOT2, + STATE(1530), 1, + aux_sym_cell_path_repeat1, + STATE(1692), 1, + sym_path, + STATE(1700), 1, sym_comment, - ACTIONS(1891), 13, + STATE(2368), 1, + sym_cell_path, + ACTIONS(1871), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -240770,7 +228433,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(1893), 49, + ACTIONS(1873), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240782,13 +228446,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, @@ -240820,18 +228479,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, - [6900] = 7, + [2452] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(1839), 1, + STATE(1701), 1, sym_comment, - STATE(2224), 1, + STATE(2088), 1, aux_sym_shebang_repeat1, - STATE(7447), 1, + STATE(6822), 1, sym__expr_parenthesized_immediate, - ACTIONS(5145), 13, + ACTIONS(5046), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -240845,7 +228504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5143), 46, + ACTIONS(5044), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240892,12 +228551,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, - [6979] = 4, + [2531] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1840), 1, + STATE(1702), 1, sym_comment, - ACTIONS(998), 16, + ACTIONS(946), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -240914,7 +228573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(994), 46, + ACTIONS(948), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -240961,12 +228620,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, - [7052] = 4, + [2604] = 21, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(121), 1, + sym_raw_string_begin, ACTIONS(245), 1, anon_sym_POUND, - STATE(1841), 1, + ACTIONS(4928), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5074), 1, + anon_sym_LBRACK, + ACTIONS(5076), 1, + anon_sym_STAR2, + STATE(1703), 1, sym_comment, - ACTIONS(2453), 13, + STATE(3523), 1, + sym__val_number_decimal, + STATE(5490), 1, + sym_cmd_identifier, + STATE(5494), 1, + sym_val_string, + STATE(6370), 1, + sym_wild_card, + STATE(6377), 1, + sym_command_list, + STATE(6672), 1, + sym_scope_pattern, + STATE(6717), 1, + sym__command_name, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(1532), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4936), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(5070), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5072), 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, + [2711] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(4994), 1, + aux_sym__immediate_decimal_token2, + STATE(1704), 1, + sym_comment, + ACTIONS(1701), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -240980,7 +228727,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(2455), 49, + aux_sym_unquoted_token2, + ACTIONS(1703), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240995,10 +228743,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, @@ -241013,6 +228758,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, @@ -241030,17 +228776,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, - [7125] = 4, + [2786] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1842), 1, + STATE(1705), 1, sym_comment, - ACTIONS(2296), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + 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, @@ -241049,7 +228797,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(2298), 49, + aux_sym_unquoted_token1, + ACTIONS(5078), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241061,36 +228811,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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -241099,17 +228845,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, - [7198] = 4, + [2859] = 9, ACTIONS(245), 1, anon_sym_POUND, - STATE(1843), 1, + ACTIONS(1006), 1, + anon_sym_DOT_DOT2, + ACTIONS(4625), 1, + anon_sym_COLON2, + STATE(1706), 1, sym_comment, - ACTIONS(1935), 13, + ACTIONS(1008), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(4954), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(4984), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241118,7 +228872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1937), 49, + ACTIONS(4982), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241130,36 +228884,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_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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -241168,44 +228893,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7271] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1844), 1, - sym_comment, - ACTIONS(2461), 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(2463), 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, + ACTIONS(4952), 25, 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, @@ -241229,25 +228919,25 @@ 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, - [7344] = 4, + [2942] = 9, ACTIONS(245), 1, anon_sym_POUND, - STATE(1845), 1, + ACTIONS(1006), 1, + anon_sym_DOT_DOT2, + ACTIONS(5084), 1, + sym__newline, + STATE(1707), 1, sym_comment, - ACTIONS(2465), 13, + ACTIONS(1008), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5089), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(5093), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241256,8 +228946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2467), 49, - sym__newline, + ACTIONS(5087), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241269,12 +228958,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_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(5091), 25, 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, @@ -241298,92 +228993,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, - [7417] = 4, + [3025] = 4, ACTIONS(245), 1, - anon_sym_POUND, - STATE(1846), 1, - sym_comment, - ACTIONS(2469), 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(2471), 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, - [7490] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5151), 1, - anon_sym_LBRACK2, - STATE(1847), 1, + anon_sym_POUND, + STATE(1708), 1, sym_comment, - ACTIONS(2290), 17, - anon_sym_LBRACK, + ACTIONS(1867), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241400,9 +229015,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2294), 44, + ACTIONS(1869), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241414,9 +229028,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, @@ -241445,12 +229062,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, - [7565] = 4, + [3098] = 8, ACTIONS(245), 1, anon_sym_POUND, - STATE(1848), 1, + ACTIONS(5064), 1, + anon_sym_DOT2, + STATE(1530), 1, + aux_sym_cell_path_repeat1, + STATE(1692), 1, + sym_path, + STATE(1709), 1, sym_comment, - ACTIONS(2469), 13, + STATE(2344), 1, + sym_cell_path, + ACTIONS(1845), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -241464,7 +229089,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(2471), 49, + ACTIONS(1847), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241476,12 +229102,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, @@ -241505,7 +229127,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_COLON2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241514,12 +229135,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, - [7638] = 4, + [3179] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1849), 1, + ACTIONS(5095), 1, + aux_sym__immediate_decimal_token2, + STATE(1710), 1, sym_comment, - ACTIONS(2469), 13, + ACTIONS(1760), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -241533,7 +229156,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(2471), 49, + aux_sym_unquoted_token2, + ACTIONS(1762), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241548,9 +229172,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, @@ -241565,6 +229187,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, @@ -241574,7 +229197,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_COLON2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241583,23 +229205,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, - [7711] = 7, + [3254] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1850), 1, + STATE(1711), 1, sym_comment, - STATE(2225), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5145), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + 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, @@ -241608,7 +229226,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(5143), 46, + aux_sym_unquoted_token1, + ACTIONS(5097), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241620,33 +229240,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_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -241655,84 +229274,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, - [7790] = 7, + [3327] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(1851), 1, + STATE(1712), 1, sym_comment, - STATE(2192), 1, + STATE(2110), 1, aux_sym_shebang_repeat1, - STATE(7447), 1, + STATE(6822), 1, sym__expr_parenthesized_immediate, - ACTIONS(5094), 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(5092), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [7869] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1852), 1, - sym_comment, - ACTIONS(2475), 13, + ACTIONS(5068), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -241746,7 +229299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2477), 49, + ACTIONS(5066), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241762,8 +229315,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, @@ -241787,7 +229338,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_COLON2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241796,12 +229346,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, - [7942] = 4, + [3406] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(1853), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1713), 1, sym_comment, - ACTIONS(2479), 13, + STATE(2123), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5068), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -241815,7 +229371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2481), 49, + ACTIONS(5066), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241831,8 +229387,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, @@ -241856,7 +229410,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_COLON2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241865,14 +229418,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, - [8015] = 5, + [3485] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4691), 1, + ACTIONS(4678), 1, aux_sym_unquoted_token2, - STATE(1854), 1, + STATE(1714), 1, sym_comment, - ACTIONS(1579), 16, + ACTIONS(1616), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241889,7 +229442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1591), 45, + ACTIONS(1628), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -241935,14 +229488,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, - [8090] = 5, + [3560] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5153), 1, - anon_sym_EQ2, - STATE(1855), 1, + ACTIONS(4521), 1, + aux_sym_unquoted_token2, + STATE(1715), 1, sym_comment, - ACTIONS(5080), 16, + ACTIONS(1616), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241959,7 +229512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5078), 45, + ACTIONS(1628), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -242005,12 +229558,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, - [8165] = 4, + [3635] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1856), 1, + STATE(1716), 1, sym_comment, - ACTIONS(5157), 16, + ACTIONS(2362), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242027,7 +229580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5155), 46, + ACTIONS(2364), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -242074,91 +229627,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, - [8238] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1857), 1, - sym_comment, - STATE(2165), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5098), 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(5096), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [8317] = 4, + [3708] = 8, ACTIONS(245), 1, anon_sym_POUND, - STATE(1858), 1, + ACTIONS(5064), 1, + anon_sym_DOT2, + STATE(1530), 1, + aux_sym_cell_path_repeat1, + STATE(1692), 1, + sym_path, + STATE(1717), 1, sym_comment, - ACTIONS(970), 15, + STATE(2379), 1, + sym_cell_path, + ACTIONS(1867), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242167,7 +229654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(972), 47, + ACTIONS(1869), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -242205,8 +229692,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, @@ -242215,18 +229700,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, - [8390] = 7, + [3789] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(1859), 1, + STATE(1718), 1, sym_comment, - STATE(2227), 1, + STATE(2150), 1, aux_sym_shebang_repeat1, - STATE(7447), 1, + STATE(6822), 1, sym__expr_parenthesized_immediate, - ACTIONS(5145), 13, + ACTIONS(5068), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -242240,7 +229725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5143), 46, + ACTIONS(5066), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242287,12 +229772,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, - [8469] = 4, + [3868] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(1860), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1719), 1, sym_comment, - ACTIONS(2300), 13, + STATE(2026), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5038), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -242306,7 +229797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2302), 49, + ACTIONS(5036), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242322,8 +229813,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, @@ -242347,7 +229836,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_COLON2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242356,17 +229844,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, - [8542] = 4, + [3947] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1861), 1, + STATE(1720), 1, sym_comment, - ACTIONS(2457), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5103), 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, @@ -242375,7 +229865,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(2459), 49, + aux_sym_unquoted_token1, + ACTIONS(5101), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242387,36 +229879,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_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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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_COLON2, + 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, @@ -242425,18 +229913,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, - [8615] = 7, + [4020] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(1862), 1, + STATE(1721), 1, sym_comment, - STATE(2228), 1, + STATE(2085), 1, aux_sym_shebang_repeat1, - STATE(7447), 1, + STATE(6822), 1, sym__expr_parenthesized_immediate, - ACTIONS(5145), 13, + ACTIONS(5046), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -242450,7 +229938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5143), 46, + ACTIONS(5044), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242497,23 +229985,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, - [8694] = 7, + [4099] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1863), 1, + STATE(1722), 1, sym_comment, - STATE(2258), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5110), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2409), 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, @@ -242522,7 +230006,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(5108), 46, + aux_sym_unquoted_token1, + ACTIONS(2411), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242534,33 +230020,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_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -242569,12 +230054,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, - [8773] = 4, + [4172] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1864), 1, + STATE(1723), 1, sym_comment, - ACTIONS(2469), 16, + ACTIONS(970), 17, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242582,6 +230067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242591,8 +230077,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2471), 46, + ACTIONS(972), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242606,10 +230093,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, @@ -242638,18 +230123,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8846] = 7, + [4245] = 21, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(121), 1, + sym_raw_string_begin, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1865), 1, + ACTIONS(4928), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5074), 1, + anon_sym_LBRACK, + ACTIONS(5076), 1, + anon_sym_STAR2, + STATE(1724), 1, sym_comment, - STATE(2230), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5145), 13, + STATE(3523), 1, + sym__val_number_decimal, + STATE(5490), 1, + sym_cmd_identifier, + STATE(5494), 1, + sym_val_string, + STATE(6370), 1, + sym_wild_card, + STATE(6377), 1, + sym_command_list, + STATE(6429), 1, + sym_scope_pattern, + STATE(6717), 1, + sym__command_name, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(1532), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4950), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(5070), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5072), 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, + [4352] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(1725), 1, + sym_comment, + ACTIONS(2405), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -242663,7 +230228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5143), 46, + ACTIONS(2407), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242678,7 +230243,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, @@ -242710,18 +230278,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, - [8925] = 7, + [4425] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(1866), 1, + STATE(1726), 1, sym_comment, - STATE(2259), 1, + STATE(2027), 1, aux_sym_shebang_repeat1, - STATE(7447), 1, + STATE(6822), 1, sym__expr_parenthesized_immediate, - ACTIONS(5110), 13, + ACTIONS(5038), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -242735,7 +230303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5108), 46, + ACTIONS(5036), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242782,18 +230350,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, - [9004] = 7, + [4504] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(1867), 1, + STATE(1727), 1, sym_comment, - STATE(2232), 1, + STATE(2152), 1, aux_sym_shebang_repeat1, - STATE(7447), 1, + STATE(6822), 1, sym__expr_parenthesized_immediate, - ACTIONS(5145), 13, + ACTIONS(5068), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -242807,7 +230375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5143), 46, + ACTIONS(5066), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242854,18 +230422,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, - [9083] = 7, + [4583] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1868), 1, + STATE(1728), 1, sym_comment, - STATE(2285), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5110), 13, + ACTIONS(1973), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -242879,7 +230441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5108), 46, + ACTIONS(1979), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242894,7 +230456,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, @@ -242926,18 +230491,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, - [9162] = 7, + [4656] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(1869), 1, + STATE(1729), 1, sym_comment, - STATE(2262), 1, + STATE(2033), 1, aux_sym_shebang_repeat1, - STATE(7447), 1, + STATE(6822), 1, sym__expr_parenthesized_immediate, - ACTIONS(5110), 13, + ACTIONS(5038), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -242951,7 +230516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5108), 46, + ACTIONS(5036), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242998,18 +230563,312 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9241] = 7, + [4735] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2106), 1, + aux_sym_unquoted_token4, + STATE(1730), 1, + sym_comment, + ACTIONS(994), 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(998), 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, + [4810] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(1731), 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, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2423), 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, + [4883] = 21, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(121), 1, + sym_raw_string_begin, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(4928), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5074), 1, + anon_sym_LBRACK, + ACTIONS(5076), 1, + anon_sym_STAR2, + STATE(1732), 1, + sym_comment, + STATE(3523), 1, + sym__val_number_decimal, + STATE(5490), 1, + sym_cmd_identifier, + STATE(5494), 1, + sym_val_string, + STATE(6370), 1, + sym_wild_card, + STATE(6377), 1, + sym_command_list, + STATE(6717), 1, + sym__command_name, + STATE(6743), 1, + sym_scope_pattern, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(1532), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4920), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(5070), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5072), 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, + [4990] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(1733), 1, + sym_comment, + ACTIONS(1973), 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(1979), 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, + [5063] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(1870), 1, + STATE(1734), 1, sym_comment, - STATE(2175), 1, + STATE(2034), 1, aux_sym_shebang_repeat1, - STATE(7447), 1, + STATE(6822), 1, sym__expr_parenthesized_immediate, - ACTIONS(5098), 13, + ACTIONS(5038), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -243023,7 +230882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5096), 46, + ACTIONS(5036), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243070,13 +230929,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, - [9320] = 4, - ACTIONS(245), 1, + [5142] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1871), 1, + ACTIONS(2168), 1, + aux_sym_unquoted_token4, + STATE(1735), 1, sym_comment, - ACTIONS(5012), 17, + ACTIONS(2166), 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(2162), 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, + [5217] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(1736), 1, + sym_comment, + ACTIONS(2374), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243093,9 +231021,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5010), 45, + ACTIONS(2376), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243108,9 +231035,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, @@ -243139,18 +231068,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, - [9393] = 7, + [5290] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(1872), 1, + STATE(1737), 1, sym_comment, - STATE(2242), 1, + STATE(2023), 1, aux_sym_shebang_repeat1, - STATE(7447), 1, + STATE(6822), 1, sym__expr_parenthesized_immediate, - ACTIONS(5145), 13, + ACTIONS(5038), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -243164,7 +231093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5143), 46, + ACTIONS(5036), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243211,18 +231140,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9472] = 7, + [5369] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(1738), 1, + sym_comment, + ACTIONS(2130), 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(2128), 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, + [5444] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(1739), 1, + sym_comment, + ACTIONS(2072), 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(2068), 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, + [5519] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(1873), 1, + STATE(1740), 1, sym_comment, - STATE(2272), 1, + STATE(2041), 1, aux_sym_shebang_repeat1, - STATE(7447), 1, + STATE(6822), 1, sym__expr_parenthesized_immediate, - ACTIONS(5110), 13, + ACTIONS(5038), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -243236,7 +231305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5108), 46, + ACTIONS(5036), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243283,13 +231352,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, - [9551] = 4, + [5598] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1874), 1, + STATE(1741), 1, sym_comment, - ACTIONS(5034), 17, + 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, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2427), 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, + [5671] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(1742), 1, + sym_comment, + ACTIONS(1833), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243306,9 +231443,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5032), 45, + ACTIONS(1835), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243321,9 +231457,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, @@ -243352,18 +231490,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, - [9624] = 7, + [5744] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(1875), 1, + STATE(1743), 1, sym_comment, - STATE(2245), 1, + STATE(2044), 1, aux_sym_shebang_repeat1, - STATE(7447), 1, + STATE(6822), 1, sym__expr_parenthesized_immediate, - ACTIONS(5145), 13, + ACTIONS(5038), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -243377,7 +231515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5143), 46, + ACTIONS(5036), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243424,18 +231562,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, - [9703] = 7, + [5823] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(1876), 1, + STATE(1744), 1, sym_comment, - STATE(2274), 1, + STATE(2049), 1, aux_sym_shebang_repeat1, - STATE(7447), 1, + STATE(6822), 1, sym__expr_parenthesized_immediate, - ACTIONS(5110), 13, + ACTIONS(5038), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -243449,7 +231587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5108), 46, + ACTIONS(5036), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243496,20 +231634,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, - [9782] = 8, + [5902] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_DOT2, - STATE(1628), 1, - aux_sym_cell_path_repeat1, - STATE(1858), 1, - sym_path, - STATE(1877), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1745), 1, sym_comment, - STATE(2441), 1, - sym_cell_path, - ACTIONS(1931), 13, + STATE(2072), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5046), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -243523,8 +231659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1933), 45, - ts_builtin_sym_end, + ACTIONS(5044), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243536,8 +231671,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, @@ -243569,156 +231706,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, - [9863] = 4, + [5981] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(1878), 1, - sym_comment, - ACTIONS(2374), 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(2376), 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, - [9936] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1879), 1, - sym_comment, - ACTIONS(2382), 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(2384), 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, - [10009] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(1880), 1, + STATE(1746), 1, sym_comment, - STATE(2276), 1, + STATE(2154), 1, aux_sym_shebang_repeat1, - STATE(7447), 1, + STATE(6822), 1, sym__expr_parenthesized_immediate, - ACTIONS(5110), 13, + ACTIONS(5042), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -243732,7 +231731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5108), 46, + ACTIONS(5040), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243779,12 +231778,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, - [10088] = 4, + [6060] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1881), 1, + ACTIONS(5105), 1, + anon_sym_EQ2, + STATE(1747), 1, sym_comment, - ACTIONS(2410), 16, + ACTIONS(4940), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243801,8 +231802,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2412), 46, + ACTIONS(4938), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243816,10 +231818,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, @@ -243848,12 +231848,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, - [10161] = 4, + [6135] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1882), 1, + ACTIONS(5014), 1, + aux_sym__immediate_decimal_token2, + STATE(1748), 1, sym_comment, - ACTIONS(1913), 16, + ACTIONS(1701), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243870,8 +231872,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(1703), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243885,10 +231888,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, @@ -243917,23 +231918,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, - [10234] = 7, + [6210] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1883), 1, + STATE(1749), 1, sym_comment, - STATE(2184), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5098), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(4809), 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, @@ -243942,7 +231939,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(5096), 46, + aux_sym_unquoted_token1, + ACTIONS(4807), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243954,33 +231953,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_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -243989,18 +231987,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, - [10313] = 7, + [6283] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(1884), 1, + STATE(1750), 1, sym_comment, - STATE(2139), 1, + STATE(2051), 1, aux_sym_shebang_repeat1, - STATE(7447), 1, + STATE(6822), 1, sym__expr_parenthesized_immediate, - ACTIONS(5098), 13, + ACTIONS(5038), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -244014,7 +232012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5096), 46, + ACTIONS(5036), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244061,12 +232059,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, - [10392] = 4, + [6362] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1885), 1, + ACTIONS(5107), 1, + aux_sym__immediate_decimal_token2, + STATE(1751), 1, sym_comment, - ACTIONS(2392), 16, + ACTIONS(1760), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244083,8 +232083,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2394), 46, + ACTIONS(1762), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244098,10 +232099,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, @@ -244130,18 +232129,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, - [10465] = 7, + [6437] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1886), 1, + ACTIONS(5064), 1, + anon_sym_DOT2, + STATE(1530), 1, + aux_sym_cell_path_repeat1, + STATE(1692), 1, + sym_path, + STATE(1752), 1, sym_comment, - STATE(2255), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5145), 13, + STATE(2305), 1, + sym_cell_path, + ACTIONS(1879), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -244155,7 +232156,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(5143), 46, + ACTIONS(1881), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244167,10 +232169,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, @@ -244202,29 +232202,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, - [10544] = 5, - ACTIONS(245), 1, + [6518] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5072), 1, - aux_sym__immediate_decimal_token2, - STATE(1887), 1, + STATE(1753), 1, sym_comment, - ACTIONS(1666), 14, - 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, - aux_sym_unquoted_token2, - ACTIONS(1668), 47, + ACTIONS(2078), 21, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244236,59 +232221,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_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(2076), 41, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [10619] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1888), 1, - sym_comment, - STATE(2290), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5094), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + 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, @@ -244297,45 +232261,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(5092), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -244344,14 +232269,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, - [10698] = 5, + aux_sym_unquoted_token1, + aux_sym_unquoted_token4, + [6591] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5159), 1, - anon_sym_EQ2, - STATE(1889), 1, + STATE(1754), 1, sym_comment, - ACTIONS(5062), 16, + ACTIONS(4844), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244368,9 +232293,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5060), 45, + ACTIONS(4842), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244384,8 +232308,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, @@ -244414,12 +232340,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, - [10773] = 4, + [6664] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1890), 1, + STATE(1755), 1, sym_comment, - ACTIONS(1945), 16, + ACTIONS(2260), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244436,7 +232362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1947), 46, + ACTIONS(2262), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -244483,84 +232409,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, - [10846] = 7, + [6737] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1891), 1, - sym_comment, - STATE(2263), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5145), 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(5143), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [10925] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1892), 1, + STATE(1756), 1, sym_comment, - ACTIONS(4827), 16, + ACTIONS(1863), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244577,7 +232431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4825), 46, + ACTIONS(1865), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -244624,14 +232478,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, - [10998] = 5, + [6810] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5161), 1, - aux_sym__immediate_decimal_token2, - STATE(1893), 1, + ACTIONS(5064), 1, + anon_sym_DOT2, + STATE(1530), 1, + aux_sym_cell_path_repeat1, + STATE(1692), 1, + sym_path, + STATE(1757), 1, sym_comment, - ACTIONS(1719), 14, + STATE(2357), 1, + sym_cell_path, + ACTIONS(1915), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -244645,8 +232505,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_token2, - ACTIONS(1721), 47, + ACTIONS(1917), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244658,10 +232518,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -244676,7 +232534,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, @@ -244694,18 +232551,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, - [11073] = 7, + [6891] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(1894), 1, + STATE(1758), 1, sym_comment, - STATE(2270), 1, + STATE(2166), 1, aux_sym_shebang_repeat1, - STATE(7447), 1, + STATE(6822), 1, sym__expr_parenthesized_immediate, - ACTIONS(5145), 13, + ACTIONS(5046), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -244719,7 +232576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5143), 46, + ACTIONS(5044), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244766,12 +232623,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, - [11152] = 4, + [6970] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1895), 1, + STATE(1759), 1, sym_comment, - ACTIONS(5165), 16, + ACTIONS(1871), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244788,7 +232645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5163), 46, + ACTIONS(1873), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -244835,12 +232692,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, - [11225] = 4, + [7043] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1896), 1, + STATE(1760), 1, sym_comment, - ACTIONS(958), 16, + ACTIONS(2264), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244857,7 +232714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(960), 46, + ACTIONS(2266), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -244904,12 +232761,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, - [11298] = 4, + [7116] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1897), 1, + STATE(1761), 1, sym_comment, - ACTIONS(4919), 16, + ACTIONS(1829), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244926,7 +232783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4917), 46, + ACTIONS(1831), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -244973,89 +232830,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, - [11371] = 7, + [7189] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1898), 1, + STATE(1762), 1, sym_comment, - STATE(2155), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5110), 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(5108), 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(2270), 16, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [11450] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1899), 1, - sym_comment, - ACTIONS(5012), 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, @@ -245064,7 +232851,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(5010), 49, + aux_sym_unquoted_token1, + ACTIONS(2272), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245076,36 +232865,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_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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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_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, @@ -245114,18 +232899,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, - [11523] = 7, + [7262] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(1900), 1, + STATE(1763), 1, sym_comment, - STATE(2239), 1, + STATE(2053), 1, aux_sym_shebang_repeat1, - STATE(7447), 1, + STATE(6822), 1, sym__expr_parenthesized_immediate, - ACTIONS(5094), 13, + ACTIONS(5038), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -245139,7 +232924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5092), 46, + ACTIONS(5036), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245186,12 +232971,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, - [11602] = 4, + [7341] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1901), 1, + STATE(1764), 1, sym_comment, - ACTIONS(5012), 16, + ACTIONS(2274), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245208,7 +232993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5010), 46, + ACTIONS(2276), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -245255,19 +233040,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, - [11675] = 4, + [7414] = 19, ACTIONS(245), 1, anon_sym_POUND, - STATE(1902), 1, - sym_comment, - ACTIONS(1959), 16, + ACTIONS(2178), 1, anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, + ACTIONS(2228), 1, + sym_raw_string_begin, + ACTIONS(4294), 1, + anon_sym_DQUOTE, + ACTIONS(4298), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4300), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4928), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5109), 1, + anon_sym_LPAREN, + STATE(1765), 1, + sym_comment, + STATE(3507), 1, + sym__val_number_decimal, + STATE(4498), 1, + sym__inter_single_quotes, + STATE(4499), 1, + sym__inter_double_quotes, + ACTIONS(4296), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4926), 2, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_decimal_token2, + STATE(3892), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4434), 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, + [7517] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(1766), 1, + sym_comment, + ACTIONS(2409), 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, @@ -245276,9 +233143,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(1961), 46, - sym_raw_string_begin, + ACTIONS(2411), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245290,32 +233155,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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -245324,20 +233193,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, - [11748] = 8, + [7590] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_DOT2, - STATE(1628), 1, - aux_sym_cell_path_repeat1, - STATE(1858), 1, - sym_path, - STATE(1903), 1, + STATE(1767), 1, sym_comment, - STATE(2428), 1, - sym_cell_path, - ACTIONS(1879), 13, + ACTIONS(2298), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -245351,8 +233212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1881), 45, - ts_builtin_sym_end, + ACTIONS(2300), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245364,8 +233224,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, @@ -245397,20 +233262,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, - [11829] = 8, + [7663] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_DOT2, - STATE(1628), 1, - aux_sym_cell_path_repeat1, - STATE(1858), 1, - sym_path, - STATE(1904), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1768), 1, sym_comment, - STATE(2429), 1, - sym_cell_path, - ACTIONS(1895), 13, + STATE(2171), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5042), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -245424,8 +233287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1897), 45, - ts_builtin_sym_end, + ACTIONS(5040), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245437,8 +233299,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, @@ -245470,12 +233334,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, - [11910] = 4, + [7742] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1905), 1, + STATE(1769), 1, sym_comment, - ACTIONS(5169), 16, + ACTIONS(1993), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245492,7 +233356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5167), 46, + ACTIONS(1995), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -245539,20 +233403,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, - [11983] = 8, + [7815] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_DOT2, - STATE(1628), 1, - aux_sym_cell_path_repeat1, - STATE(1858), 1, - sym_path, - STATE(1906), 1, + STATE(1770), 1, sym_comment, - STATE(2431), 1, - sym_cell_path, - ACTIONS(1913), 13, + ACTIONS(1949), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -245566,8 +233422,7 @@ 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), 45, - ts_builtin_sym_end, + ACTIONS(1955), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245579,8 +233434,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, @@ -245612,20 +233472,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, - [12064] = 8, + [7888] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_DOT2, - STATE(1628), 1, - aux_sym_cell_path_repeat1, - STATE(1858), 1, - sym_path, - STATE(1907), 1, + STATE(1771), 1, sym_comment, - STATE(2432), 1, - sym_cell_path, - ACTIONS(1945), 13, + ACTIONS(1957), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -245639,8 +233491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1947), 45, - ts_builtin_sym_end, + ACTIONS(1963), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245652,8 +233503,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, @@ -245685,19 +233541,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, - [12145] = 4, + [7961] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(1908), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1772), 1, sym_comment, - ACTIONS(5173), 16, - anon_sym_DOLLAR, + STATE(2066), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5068), 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(5066), 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_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [8040] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(1773), 1, + sym_comment, + ACTIONS(1965), 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, @@ -245706,9 +233632,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(5171), 46, - sym_raw_string_begin, + ACTIONS(1971), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245720,32 +233644,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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -245754,20 +233682,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, - [12218] = 8, + [8113] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_DOT2, - STATE(1628), 1, - aux_sym_cell_path_repeat1, - STATE(1858), 1, - sym_path, - STATE(1909), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1774), 1, sym_comment, - STATE(2433), 1, - sym_cell_path, - ACTIONS(1843), 13, + STATE(2063), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5038), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -245781,8 +233707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1845), 45, - ts_builtin_sym_end, + ACTIONS(5036), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245794,8 +233719,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, @@ -245827,20 +233754,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, - [12299] = 8, + [8192] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_DOT2, - STATE(1628), 1, - aux_sym_cell_path_repeat1, - STATE(1858), 1, - sym_path, - STATE(1910), 1, + STATE(1775), 1, sym_comment, - STATE(2436), 1, - sym_cell_path, - ACTIONS(1855), 13, + ACTIONS(2421), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -245854,8 +233773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1857), 45, - ts_builtin_sym_end, + ACTIONS(2423), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245867,8 +233785,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, @@ -245900,12 +233823,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, - [12380] = 4, + [8265] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1911), 1, + STATE(1776), 1, sym_comment, - ACTIONS(5177), 16, + ACTIONS(2370), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245922,7 +233845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5175), 46, + ACTIONS(2372), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -245969,20 +233892,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12453] = 8, + [8338] = 7, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1777), 1, + sym_comment, + STATE(2064), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5038), 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(5036), 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [8417] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_DOT2, - STATE(1628), 1, - aux_sym_cell_path_repeat1, - STATE(1858), 1, - sym_path, - STATE(1912), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1778), 1, sym_comment, - STATE(2446), 1, - sym_cell_path, - ACTIONS(1829), 13, + STATE(2073), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5068), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -245996,8 +233989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1831), 45, - ts_builtin_sym_end, + ACTIONS(5066), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246009,8 +234001,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, @@ -246042,19 +234036,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, - [12534] = 4, + [8496] = 8, ACTIONS(245), 1, anon_sym_POUND, - STATE(1913), 1, + ACTIONS(5064), 1, + anon_sym_DOT2, + STATE(1530), 1, + aux_sym_cell_path_repeat1, + STATE(1692), 1, + sym_path, + STATE(1779), 1, sym_comment, - ACTIONS(2441), 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(2306), 1, + sym_cell_path, + ACTIONS(1849), 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, @@ -246063,9 +234063,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(2443), 46, - sym_raw_string_begin, + ACTIONS(1851), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246077,32 +234076,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_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -246111,12 +234109,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, - [12607] = 4, + [8577] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1914), 1, + STATE(1780), 1, sym_comment, - ACTIONS(2453), 16, + ACTIONS(1987), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246133,7 +234131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2455), 46, + ACTIONS(1989), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -246180,12 +234178,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, - [12680] = 4, + [8650] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1915), 1, + STATE(1781), 1, sym_comment, - ACTIONS(5181), 16, + ACTIONS(4976), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246202,7 +234200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5179), 46, + ACTIONS(4974), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -246249,18 +234247,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, - [12753] = 7, + [8723] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(1916), 1, + STATE(1782), 1, sym_comment, - STATE(2144), 1, + STATE(2031), 1, aux_sym_shebang_repeat1, - STATE(7447), 1, + STATE(6822), 1, sym__expr_parenthesized_immediate, - ACTIONS(5098), 13, + ACTIONS(5046), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -246274,7 +234272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5096), 46, + ACTIONS(5044), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246321,18 +234319,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, - [12832] = 7, + [8802] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1917), 1, + ACTIONS(5064), 1, + anon_sym_DOT2, + STATE(1530), 1, + aux_sym_cell_path_repeat1, + STATE(1692), 1, + sym_path, + STATE(1783), 1, sym_comment, - STATE(2243), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5094), 13, + STATE(2387), 1, + sym_cell_path, + ACTIONS(1829), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -246346,7 +234346,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(5092), 46, + ACTIONS(1831), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246358,10 +234359,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, @@ -246393,12 +234392,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, - [12911] = 4, + [8883] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1918), 1, + STATE(1784), 1, sym_comment, - ACTIONS(1931), 16, + ACTIONS(2298), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246415,7 +234414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1933), 46, + ACTIONS(2300), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -246462,106 +234461,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, - [12984] = 21, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(121), 1, - sym_raw_string_begin, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4986), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5139), 1, - anon_sym_LBRACK, - ACTIONS(5141), 1, - anon_sym_STAR2, - STATE(1919), 1, - sym_comment, - STATE(3693), 1, - sym__val_number_decimal, - STATE(5741), 1, - sym_cmd_identifier, - STATE(5742), 1, - sym_val_string, - STATE(6993), 1, - sym_scope_pattern, - STATE(7069), 1, - sym_wild_card, - STATE(7138), 1, - sym_command_list, - STATE(7330), 1, - sym__command_name, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(1634), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4978), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(5135), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5137), 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, - [13091] = 8, + [8956] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_DOT2, - STATE(1628), 1, - aux_sym_cell_path_repeat1, - STATE(1858), 1, - sym_path, - STATE(1920), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1785), 1, sym_comment, - STATE(2513), 1, - sym_cell_path, - ACTIONS(1839), 13, + STATE(2074), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5068), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -246575,8 +234486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1841), 45, - ts_builtin_sym_end, + ACTIONS(5066), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246588,8 +234498,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, @@ -246621,20 +234533,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, - [13172] = 8, + [9035] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_DOT2, - STATE(1628), 1, - aux_sym_cell_path_repeat1, - STATE(1858), 1, - sym_path, - STATE(1921), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1786), 1, sym_comment, - STATE(2442), 1, - sym_cell_path, - ACTIONS(1935), 13, + STATE(2075), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5068), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -246648,8 +234558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1937), 45, - ts_builtin_sym_end, + ACTIONS(5066), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246661,8 +234570,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, @@ -246694,18 +234605,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, - [13253] = 7, + [9114] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(1922), 1, + STATE(1787), 1, sym_comment, - STATE(2284), 1, + STATE(2080), 1, aux_sym_shebang_repeat1, - STATE(7447), 1, + STATE(6822), 1, sym__expr_parenthesized_immediate, - ACTIONS(5110), 13, + ACTIONS(5068), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -246719,7 +234630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5108), 46, + ACTIONS(5066), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246766,19 +234677,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, - [13332] = 4, + [9193] = 8, ACTIONS(245), 1, anon_sym_POUND, - STATE(1923), 1, + ACTIONS(5064), 1, + anon_sym_DOT2, + STATE(1530), 1, + aux_sym_cell_path_repeat1, + STATE(1692), 1, + sym_path, + STATE(1788), 1, sym_comment, - ACTIONS(1927), 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(2312), 1, + sym_cell_path, + ACTIONS(1823), 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, @@ -246787,9 +234704,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(1929), 46, - sym_raw_string_begin, + ACTIONS(1825), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246801,32 +234717,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_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -246835,19 +234750,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, - [13405] = 4, + [9274] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1924), 1, + STATE(1789), 1, sym_comment, - ACTIONS(1883), 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(2302), 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, @@ -246856,9 +234769,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(1885), 46, - sym_raw_string_begin, + ACTIONS(2304), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246870,32 +234781,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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -246904,19 +234819,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, - [13478] = 4, + [9347] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1925), 1, + STATE(1790), 1, sym_comment, - ACTIONS(2370), 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(2306), 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, @@ -246925,9 +234838,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(2372), 46, - sym_raw_string_begin, + ACTIONS(2308), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246939,32 +234850,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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -246973,19 +234888,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, - [13551] = 4, + [9420] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(1926), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1791), 1, sym_comment, - ACTIONS(2445), 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(2083), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5068), 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, @@ -246994,9 +234913,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(2447), 46, - sym_raw_string_begin, + ACTIONS(5066), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247008,32 +234925,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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -247042,16 +234960,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, - [13624] = 5, - ACTIONS(3), 1, + [9499] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2192), 1, - aux_sym_unquoted_token4, - STATE(1927), 1, + STATE(1792), 1, sym_comment, - ACTIONS(994), 21, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(2310), 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(2312), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247063,46 +234991,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_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(998), 40, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_RPAREN, 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_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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -247111,13 +235029,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, - [13699] = 4, + [9572] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1928), 1, + STATE(1793), 1, sym_comment, - ACTIONS(2449), 16, + ACTIONS(1949), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247134,7 +235051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2451), 46, + ACTIONS(1955), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -247181,12 +235098,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, - [13772] = 4, + [9645] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1929), 1, + STATE(1794), 1, sym_comment, - ACTIONS(2033), 16, + ACTIONS(1957), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247203,7 +235120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2039), 46, + ACTIONS(1963), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -247250,16 +235167,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, - [13845] = 6, + [9718] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5183), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5185), 1, - aux_sym__immediate_decimal_token2, - STATE(1930), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1795), 1, sym_comment, - ACTIONS(1648), 14, + STATE(2048), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5046), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -247273,9 +235192,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_token2, - ACTIONS(1650), 46, - ts_builtin_sym_end, + ACTIONS(5044), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247287,8 +235204,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, @@ -247303,7 +235222,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, @@ -247321,88 +235239,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, - [13922] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2200), 1, - aux_sym_unquoted_token4, - STATE(1931), 1, - sym_comment, - ACTIONS(2198), 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(2194), 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, - [13997] = 7, + [9797] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1932), 1, + STATE(1796), 1, sym_comment, - STATE(2286), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5110), 13, + ACTIONS(2425), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -247416,7 +235258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5108), 46, + ACTIONS(2427), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247431,7 +235273,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, @@ -247463,59 +235308,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, - [14076] = 5, - ACTIONS(3), 1, + [9870] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(1933), 1, + STATE(1797), 1, sym_comment, - ACTIONS(2204), 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(2202), 40, + ACTIONS(1965), 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, @@ -247524,25 +235329,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, - [14151] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(1934), 1, - sym_comment, - ACTIONS(2093), 21, + ACTIONS(1971), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247556,23 +235345,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(2089), 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, @@ -247582,18 +235363,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, @@ -247602,13 +235377,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, - [14226] = 4, + [9943] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1935), 1, + STATE(1798), 1, sym_comment, - ACTIONS(2320), 16, + ACTIONS(5113), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247625,7 +235399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2322), 46, + ACTIONS(5111), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -247672,12 +235446,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, - [14299] = 4, + [10016] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1936), 1, + STATE(1799), 1, sym_comment, - ACTIONS(2009), 16, + ACTIONS(5117), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247694,7 +235468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2015), 46, + ACTIONS(5115), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -247741,12 +235515,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, - [14372] = 4, + [10089] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1937), 1, + STATE(1800), 1, sym_comment, - ACTIONS(2017), 16, + ACTIONS(950), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247763,7 +235537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2023), 46, + ACTIONS(952), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -247810,19 +235584,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, - [14445] = 4, + [10162] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1938), 1, + STATE(1801), 1, sym_comment, - ACTIONS(2025), 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(4968), 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, @@ -247831,9 +235603,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(2031), 46, - sym_raw_string_begin, + ACTIONS(4966), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247845,32 +235615,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_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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -247879,19 +235653,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, - [14518] = 4, + [10235] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(1939), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1802), 1, sym_comment, - ACTIONS(5189), 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(2160), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5046), 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, @@ -247900,9 +235678,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(5187), 46, - sym_raw_string_begin, + ACTIONS(5044), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247914,32 +235690,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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -247948,12 +235725,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, - [14591] = 4, + [10314] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1940), 1, + STATE(1803), 1, sym_comment, - ACTIONS(5193), 16, + ACTIONS(2302), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247970,7 +235747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5191), 46, + ACTIONS(2304), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -248017,84 +235794,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, - [14664] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1941), 1, - sym_comment, - STATE(2181), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5110), 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(5108), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [14743] = 4, + [10387] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1942), 1, + STATE(1804), 1, sym_comment, - ACTIONS(2328), 16, + ACTIONS(2306), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248111,7 +235816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2330), 46, + ACTIONS(2308), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -248158,12 +235863,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, - [14816] = 4, + [10460] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1943), 1, + STATE(1805), 1, sym_comment, - ACTIONS(2332), 16, + ACTIONS(2310), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248180,7 +235885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2334), 46, + ACTIONS(2312), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -248227,25 +235932,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, - [14889] = 9, + [10533] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1006), 1, - anon_sym_DOT_DOT2, - ACTIONS(1010), 1, - anon_sym_COLON2, - STATE(1944), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1806), 1, sym_comment, - ACTIONS(1008), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4968), 5, + STATE(2087), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5068), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(4972), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248254,7 +235957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4966), 20, + ACTIONS(5066), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248266,7 +235969,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_RBRACE, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -248275,9 +236004,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, - ACTIONS(4970), 25, + [10612] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(1807), 1, + sym_comment, + ACTIONS(1833), 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(1835), 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_and2, anon_sym_xor2, anon_sym_or2, @@ -248301,12 +236065,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14972] = 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, + [10685] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1945), 1, + STATE(1808), 1, sym_comment, - ACTIONS(2336), 16, + ACTIONS(5121), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248323,7 +236095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2338), 46, + ACTIONS(5119), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -248370,12 +236142,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, - [15045] = 4, + [10758] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1946), 1, + STATE(1809), 1, sym_comment, - ACTIONS(5197), 16, + ACTIONS(5125), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248392,7 +236164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5195), 46, + ACTIONS(5123), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -248439,12 +236211,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, - [15118] = 4, + [10831] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1947), 1, + STATE(1810), 1, sym_comment, - ACTIONS(5201), 16, + ACTIONS(2382), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248461,7 +236233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5199), 46, + ACTIONS(2384), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -248508,84 +236280,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, - [15191] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1948), 1, - sym_comment, - STATE(2190), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5098), 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(5096), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [15270] = 4, + [10904] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1949), 1, + STATE(1811), 1, sym_comment, - ACTIONS(2296), 16, + ACTIONS(1883), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248602,7 +236302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2298), 46, + ACTIONS(1885), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -248649,12 +236349,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, - [15343] = 4, + [10977] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1950), 1, + STATE(1812), 1, sym_comment, - ACTIONS(2342), 16, + ACTIONS(2318), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248671,7 +236371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2344), 46, + ACTIONS(2320), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -248718,12 +236418,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, - [15416] = 4, + [11050] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1951), 1, + STATE(1813), 1, sym_comment, - ACTIONS(2346), 16, + ACTIONS(2322), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248740,7 +236440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2348), 46, + ACTIONS(2324), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -248787,12 +236487,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, - [15489] = 4, + [11123] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1952), 1, + STATE(1814), 1, sym_comment, - ACTIONS(2350), 16, + ACTIONS(2326), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248809,7 +236509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2352), 46, + ACTIONS(2328), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -248856,19 +236556,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, - [15562] = 4, + [11196] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1953), 1, + STATE(1815), 1, sym_comment, - ACTIONS(2354), 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(2318), 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, @@ -248877,9 +236575,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(2356), 46, - sym_raw_string_begin, + ACTIONS(2320), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248891,32 +236587,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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -248925,19 +236625,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, - [15635] = 4, + [11269] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1954), 1, + STATE(1816), 1, sym_comment, - ACTIONS(2358), 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(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, @@ -248946,9 +236644,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(2360), 46, - sym_raw_string_begin, + ACTIONS(2324), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248960,32 +236656,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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -248994,19 +236694,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15708] = 4, + [11342] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1955), 1, + STATE(1817), 1, sym_comment, - ACTIONS(2362), 16, - anon_sym_DOLLAR, + ACTIONS(2326), 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(2328), 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_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [11415] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(1818), 1, + sym_comment, + ACTIONS(2330), 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, @@ -249015,9 +236782,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(2364), 46, - sym_raw_string_begin, + ACTIONS(2332), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249029,32 +236794,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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -249063,12 +236832,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, - [15781] = 4, + [11488] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1956), 1, + STATE(1819), 1, sym_comment, - ACTIONS(2366), 16, + ACTIONS(2330), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249085,7 +236854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2368), 46, + ACTIONS(2332), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -249132,21 +236901,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, - [15854] = 5, + [11561] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4964), 1, + ACTIONS(5127), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5129), 1, aux_sym__immediate_decimal_token2, - STATE(1957), 1, + STATE(1820), 1, sym_comment, - ACTIONS(1666), 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(1686), 14, + 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, @@ -249155,9 +236924,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(1668), 45, - sym_raw_string_begin, + aux_sym_unquoted_token2, + ACTIONS(1688), 46, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -249170,30 +236938,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_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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -249202,19 +236972,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, - [15929] = 4, + [11638] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1958), 1, + STATE(1821), 1, sym_comment, - ACTIONS(2475), 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(2334), 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, @@ -249223,9 +236991,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(2477), 46, - sym_raw_string_begin, + ACTIONS(2336), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249237,32 +237003,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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -249271,16 +237041,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, - [16002] = 6, + [11711] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4695), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5203), 1, - anon_sym_DOT, - STATE(1959), 1, + STATE(1822), 1, sym_comment, - ACTIONS(1666), 13, + ACTIONS(2338), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249294,7 +237060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1668), 47, + ACTIONS(2340), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249309,8 +237075,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, @@ -249342,18 +237110,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, - [16079] = 7, + [11784] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1960), 1, + STATE(1823), 1, sym_comment, - STATE(2157), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5094), 13, + ACTIONS(2342), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249367,7 +237129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5092), 46, + ACTIONS(2344), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249382,7 +237144,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, @@ -249414,21 +237179,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, - [16158] = 5, + [11857] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5205), 1, - aux_sym__immediate_decimal_token2, - STATE(1961), 1, + STATE(1824), 1, sym_comment, - ACTIONS(1719), 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(2260), 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, @@ -249437,10 +237198,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(1721), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(2262), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249452,30 +237210,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_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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -249484,20 +237248,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, - [16233] = 8, + [11930] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_DOT2, - STATE(1628), 1, - aux_sym_cell_path_repeat1, - STATE(1858), 1, - sym_path, - STATE(1962), 1, + STATE(1825), 1, sym_comment, - STATE(2438), 1, - sym_cell_path, - ACTIONS(1883), 13, + ACTIONS(1863), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249511,8 +237267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1885), 45, - ts_builtin_sym_end, + ACTIONS(1865), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249524,8 +237279,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, @@ -249557,12 +237317,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, - [16314] = 4, + [12003] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1963), 1, + STATE(1826), 1, sym_comment, - ACTIONS(2479), 16, + ACTIONS(2334), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249579,7 +237339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2481), 46, + ACTIONS(2336), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -249626,12 +237386,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, - [16387] = 4, + [12076] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1964), 1, + STATE(1827), 1, sym_comment, - ACTIONS(970), 17, + ACTIONS(2338), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249639,7 +237399,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249649,9 +237408,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(972), 45, + ACTIONS(2340), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249665,8 +237423,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, @@ -249695,14 +237455,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, - [16460] = 4, - ACTIONS(3), 1, + [12149] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(1965), 1, + STATE(1828), 1, sym_comment, - ACTIONS(2047), 21, + ACTIONS(2342), 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(2344), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249716,23 +237492,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(2045), 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, @@ -249742,18 +237510,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, @@ -249762,20 +237524,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, - aux_sym_unquoted_token4, - [16533] = 7, + [12222] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1966), 1, + STATE(1829), 1, sym_comment, - STATE(2238), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5098), 13, + ACTIONS(1871), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249789,7 +237543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5096), 46, + ACTIONS(1873), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249804,7 +237558,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, @@ -249836,20 +237593,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, - [16612] = 8, + [12295] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_DOT2, - STATE(1628), 1, - aux_sym_cell_path_repeat1, - STATE(1858), 1, - sym_path, - STATE(1967), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1830), 1, sym_comment, - STATE(2509), 1, - sym_cell_path, - ACTIONS(1927), 13, + STATE(2054), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5046), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249863,8 +237618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1929), 45, - ts_builtin_sym_end, + ACTIONS(5044), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249876,8 +237630,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, @@ -249909,12 +237665,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, - [16693] = 4, + [12374] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1968), 1, + STATE(1831), 1, sym_comment, - ACTIONS(2398), 16, + ACTIONS(2390), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249931,7 +237687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2400), 46, + ACTIONS(2392), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -249978,12 +237734,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, - [16766] = 4, + [12447] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1969), 1, + STATE(1832), 1, sym_comment, - ACTIONS(1891), 16, + ACTIONS(1701), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250000,7 +237756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1893), 46, + ACTIONS(1703), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -250047,18 +237803,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, - [16839] = 7, + [12520] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1970), 1, + STATE(1833), 1, sym_comment, - STATE(2203), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5098), 13, + ACTIONS(2290), 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(2292), 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, + [12593] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(1834), 1, + sym_comment, + ACTIONS(2264), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250072,7 +237891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5096), 46, + ACTIONS(2266), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250087,7 +237906,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, @@ -250119,19 +237941,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, - [16918] = 4, + [12666] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1971), 1, + STATE(1835), 1, sym_comment, - ACTIONS(2406), 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(1829), 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, @@ -250140,9 +237960,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(2408), 46, - sym_raw_string_begin, + ACTIONS(1831), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250154,32 +237972,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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -250188,12 +238010,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, - [16991] = 4, + [12739] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1972), 1, + STATE(1836), 1, sym_comment, - ACTIONS(1935), 16, + ACTIONS(942), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250210,7 +238032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1937), 46, + ACTIONS(944), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -250257,18 +238079,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, - [17064] = 7, + [12812] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1973), 1, + STATE(1837), 1, sym_comment, - STATE(2196), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5098), 13, + ACTIONS(2270), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250282,7 +238098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5096), 46, + ACTIONS(2272), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250297,7 +238113,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, @@ -250329,20 +238148,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, - [17143] = 8, + [12885] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_DOT2, - STATE(1628), 1, - aux_sym_cell_path_repeat1, - STATE(1858), 1, - sym_path, - STATE(1974), 1, + ACTIONS(1006), 1, + anon_sym_DOT_DOT2, + STATE(1838), 1, sym_comment, - STATE(2439), 1, - sym_cell_path, - ACTIONS(1891), 13, + ACTIONS(1008), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5089), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250356,8 +238172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1893), 45, - ts_builtin_sym_end, + ACTIONS(5091), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250369,8 +238184,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, @@ -250402,20 +238219,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, - [17224] = 8, + [12962] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_DOT2, - STATE(1628), 1, - aux_sym_cell_path_repeat1, - STATE(1858), 1, - sym_path, - STATE(1975), 1, + STATE(1839), 1, sym_comment, - STATE(2440), 1, - sym_cell_path, - ACTIONS(1923), 13, + ACTIONS(2274), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250429,8 +238238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1925), 45, - ts_builtin_sym_end, + ACTIONS(2276), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250442,8 +238250,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, @@ -250475,20 +238288,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, - [17305] = 4, + [13035] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(1976), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1840), 1, sym_comment, - ACTIONS(978), 17, - 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_DOT2, + STATE(2129), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5046), 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, @@ -250497,10 +238313,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(980), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5044), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250512,30 +238325,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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -250544,12 +238360,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, - [17378] = 4, + [13114] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1977), 1, + ACTIONS(5131), 1, + anon_sym_LBRACK2, + STATE(1841), 1, sym_comment, - ACTIONS(974), 17, + ACTIONS(2230), 17, + anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250557,7 +238376,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250567,7 +238385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(976), 45, + ACTIONS(2234), 44, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -250581,7 +238399,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_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -250613,18 +238430,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, - [17451] = 7, + [13189] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1978), 1, + STATE(1842), 1, sym_comment, - STATE(2169), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5094), 13, + ACTIONS(2278), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250638,7 +238449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5092), 46, + ACTIONS(2280), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250654,6 +238465,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, @@ -250677,6 +238490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_COLON2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250685,18 +238499,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, - [17530] = 7, + [13262] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1979), 1, + STATE(1843), 1, sym_comment, - STATE(2289), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5110), 13, + ACTIONS(2278), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250710,7 +238518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5108), 46, + ACTIONS(2280), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250726,6 +238534,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, @@ -250749,6 +238559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_COLON2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250757,12 +238568,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, - [17609] = 4, + [13335] = 19, ACTIONS(245), 1, anon_sym_POUND, - STATE(1980), 1, + ACTIONS(2014), 1, + anon_sym_DOLLAR, + ACTIONS(2066), 1, + sym_raw_string_begin, + ACTIONS(4328), 1, + anon_sym_DQUOTE, + ACTIONS(4332), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4334), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4928), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5133), 1, + anon_sym_LPAREN, + STATE(1844), 1, + sym_comment, + STATE(3572), 1, + sym__val_number_decimal, + STATE(4336), 1, + sym__inter_single_quotes, + STATE(4388), 1, + sym__inter_double_quotes, + ACTIONS(4330), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3849), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4347), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(357), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(359), 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, + [13438] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(1845), 1, sym_comment, - ACTIONS(1579), 16, + ACTIONS(1686), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250779,7 +238674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1591), 46, + ACTIONS(1688), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -250826,19 +238721,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, - [17682] = 4, + [13511] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1981), 1, + STATE(1846), 1, sym_comment, - ACTIONS(954), 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(2282), 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, @@ -250847,9 +238740,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(956), 46, - sym_raw_string_begin, + ACTIONS(2284), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250861,32 +238752,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_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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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_COLON2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250895,18 +238790,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, - [17755] = 7, + [13584] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(1982), 1, + STATE(1847), 1, sym_comment, - STATE(2254), 1, - aux_sym_shebang_repeat1, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5145), 13, + ACTIONS(2286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250920,7 +238809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5143), 46, + ACTIONS(2288), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250936,6 +238825,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, @@ -250959,6 +238850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_COLON2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250967,19 +238859,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, - [17834] = 4, + [13657] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(1983), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1848), 1, sym_comment, - ACTIONS(2457), 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(2091), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5068), 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, @@ -250988,10 +238884,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(2459), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5066), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251003,30 +238896,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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -251035,12 +238931,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, - [17906] = 4, + [13736] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(1984), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1849), 1, sym_comment, - ACTIONS(5000), 13, + STATE(2173), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5042), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251054,7 +238956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4998), 48, + ACTIONS(5040), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251070,8 +238972,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, @@ -251103,17 +239003,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, - [17978] = 4, + [13815] = 9, ACTIONS(245), 1, anon_sym_POUND, - STATE(1985), 1, + ACTIONS(1006), 1, + anon_sym_DOT_DOT2, + ACTIONS(1010), 1, + anon_sym_COLON2, + STATE(1850), 1, sym_comment, - ACTIONS(5000), 13, + ACTIONS(1008), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(4954), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(4984), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251122,7 +239030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4998), 48, + ACTIONS(4982), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251134,12 +239042,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(4952), 25, 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, @@ -251163,20 +239077,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, - [18050] = 4, + [13898] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(1986), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1851), 1, sym_comment, - ACTIONS(5000), 13, + STATE(2040), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5046), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251190,7 +239102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4998), 48, + ACTIONS(5044), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251206,8 +239118,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, @@ -251239,12 +239149,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, - [18122] = 4, + [13977] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(1987), 1, + ACTIONS(4642), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5135), 1, + anon_sym_DOT, + STATE(1852), 1, sym_comment, - ACTIONS(2392), 13, + ACTIONS(1701), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251258,7 +239172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2394), 48, + ACTIONS(1703), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251275,7 +239189,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in2, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -251307,12 +239220,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18194] = 4, + [14054] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1988), 1, + ACTIONS(5137), 1, + anon_sym_EQ2, + STATE(1853), 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(4906), 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, + [14129] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(1854), 1, + sym_comment, + ACTIONS(5141), 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(5139), 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, + [14202] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(1855), 1, + sym_comment, + ACTIONS(5145), 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(5143), 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, + [14275] = 7, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1856), 1, sym_comment, - ACTIONS(5000), 13, + STATE(2167), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5042), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251326,7 +239453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4998), 48, + ACTIONS(5040), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251342,8 +239469,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, @@ -251375,17 +239500,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, - [18266] = 4, + [14354] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(1857), 1, + sym_comment, + ACTIONS(4968), 17, + anon_sym_LPAREN, + 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(4966), 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_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, + 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, + [14427] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(1858), 1, + sym_comment, + ACTIONS(2278), 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(2280), 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, + [14500] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1989), 1, + STATE(1859), 1, sym_comment, - ACTIONS(5000), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2278), 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, @@ -251394,7 +239659,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(4998), 48, + aux_sym_unquoted_token1, + ACTIONS(2280), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251406,35 +239673,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_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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -251443,17 +239707,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, - [18338] = 4, + [14573] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1990), 1, + STATE(1860), 1, sym_comment, - ACTIONS(5000), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5149), 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, @@ -251462,7 +239728,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(4998), 48, + aux_sym_unquoted_token1, + ACTIONS(5147), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251474,35 +239742,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_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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -251511,17 +239776,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, - [18410] = 4, + [14646] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1991), 1, + STATE(1861), 1, sym_comment, - ACTIONS(5000), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(4968), 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, @@ -251530,7 +239797,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(4998), 48, + aux_sym_unquoted_token1, + ACTIONS(4966), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251542,35 +239811,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_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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -251579,17 +239845,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, - [18482] = 4, + [14719] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1992), 1, + STATE(1862), 1, sym_comment, - ACTIONS(5209), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2294), 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, @@ -251598,7 +239866,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(5207), 48, + aux_sym_unquoted_token1, + ACTIONS(2296), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251610,35 +239880,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_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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -251647,12 +239914,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, - [18554] = 4, + [14792] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1993), 1, + STATE(1863), 1, sym_comment, - ACTIONS(5000), 13, + ACTIONS(2290), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251666,7 +239933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4998), 48, + ACTIONS(2292), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251707,6 +239974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_COLON2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251715,12 +239983,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, - [18626] = 4, + [14865] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1994), 1, + STATE(1864), 1, sym_comment, - ACTIONS(5000), 13, + ACTIONS(2294), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251734,7 +240002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4998), 48, + ACTIONS(2296), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251775,6 +240043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_COLON2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251783,17 +240052,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, - [18698] = 4, + [14938] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1995), 1, + STATE(1865), 1, sym_comment, - ACTIONS(5000), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2282), 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, @@ -251802,7 +240073,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(4998), 48, + aux_sym_unquoted_token1, + ACTIONS(2284), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251814,35 +240087,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_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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -251851,12 +240121,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, - [18770] = 4, + [15011] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1996), 1, + STATE(1866), 1, sym_comment, - ACTIONS(4944), 16, + ACTIONS(2286), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -251873,7 +240143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4942), 45, + ACTIONS(2288), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -251891,6 +240161,7 @@ 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, @@ -251919,12 +240190,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, - [18842] = 4, + [15084] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(1997), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1867), 1, sym_comment, - ACTIONS(5000), 13, + STATE(2078), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5046), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251938,7 +240215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4998), 48, + ACTIONS(5044), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251954,8 +240231,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, @@ -251987,17 +240262,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, - [18914] = 4, + [15163] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1998), 1, + STATE(1868), 1, sym_comment, - ACTIONS(5000), 13, + ACTIONS(974), 15, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252006,7 +240283,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(4998), 48, + ACTIONS(976), 47, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252018,12 +240296,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, @@ -252047,6 +240321,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, @@ -252055,17 +240331,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, - [18986] = 4, + [15236] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1999), 1, + STATE(1869), 1, sym_comment, - ACTIONS(2041), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1760), 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, @@ -252074,7 +240352,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(2043), 48, + aux_sym_unquoted_token1, + ACTIONS(1762), 46, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252086,35 +240366,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_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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -252123,12 +240400,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, - [19058] = 4, + [15309] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(2000), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(1870), 1, sym_comment, - ACTIONS(1778), 13, + STATE(2149), 1, + aux_sym_shebang_repeat1, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5046), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252142,7 +240425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1786), 48, + ACTIONS(5044), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252158,8 +240441,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, @@ -252191,17 +240472,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, - [19130] = 4, + [15388] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2001), 1, + STATE(1871), 1, sym_comment, - ACTIONS(2045), 13, + ACTIONS(978), 15, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252210,7 +240493,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(2047), 48, + ACTIONS(980), 47, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252222,12 +240506,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, @@ -252251,6 +240531,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, @@ -252259,80 +240541,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, - [19202] = 4, + [15461] = 19, ACTIONS(245), 1, anon_sym_POUND, - STATE(2002), 1, - sym_comment, - ACTIONS(1579), 16, + ACTIONS(2014), 1, 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(1591), 45, + ACTIONS(2066), 1, 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, + ACTIONS(4328), 1, + anon_sym_DQUOTE, + ACTIONS(4332), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4334), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4930), 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, + ACTIONS(5133), 1, + anon_sym_LPAREN, + STATE(1872), 1, + sym_comment, + STATE(3572), 1, + sym__val_number_decimal, + STATE(4336), 1, + sym__inter_single_quotes, + STATE(4388), 1, + sym__inter_double_quotes, + ACTIONS(4330), 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, - [19274] = 4, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3849), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4242), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(357), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(359), 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, + [15564] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2003), 1, + STATE(1873), 1, sym_comment, - ACTIONS(998), 16, + ACTIONS(974), 17, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -252340,6 +240638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252349,7 +240648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(994), 45, + ACTIONS(976), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -252395,19 +240694,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, - [19346] = 4, + [15637] = 8, ACTIONS(245), 1, anon_sym_POUND, - STATE(2004), 1, + ACTIONS(5064), 1, + anon_sym_DOT2, + STATE(1530), 1, + aux_sym_cell_path_repeat1, + STATE(1692), 1, + sym_path, + STATE(1874), 1, sym_comment, - ACTIONS(5038), 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(2304), 1, + sym_cell_path, + ACTIONS(1833), 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, @@ -252416,9 +240721,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(5036), 45, - sym_raw_string_begin, + ACTIONS(1835), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252430,31 +240734,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_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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -252463,12 +240767,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, - [19418] = 4, + [15718] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2005), 1, + STATE(1875), 1, sym_comment, - ACTIONS(2406), 16, + ACTIONS(2378), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -252485,9 +240789,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2408), 45, + ACTIONS(2380), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252501,8 +240804,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, @@ -252531,12 +240836,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, - [19490] = 4, + [15791] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2006), 1, + STATE(1876), 1, sym_comment, - ACTIONS(2410), 16, + ACTIONS(2394), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -252553,7 +240858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2412), 45, + ACTIONS(2396), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -252599,19 +240904,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, - [19562] = 4, + [15863] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(2007), 1, + ACTIONS(4648), 1, + anon_sym_DOT_DOT2, + STATE(1877), 1, sym_comment, - ACTIONS(2033), 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(4650), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + 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, @@ -252620,9 +240928,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(2039), 45, - sym_raw_string_begin, + ACTIONS(994), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -252635,30 +240941,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_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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -252667,17 +240974,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, - [19634] = 6, + [15939] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4750), 1, - anon_sym_DOT_DOT2, - STATE(2008), 1, + STATE(1878), 1, sym_comment, - ACTIONS(4752), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4968), 13, + ACTIONS(4958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252691,8 +240993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4970), 45, - ts_builtin_sym_end, + ACTIONS(4956), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252704,8 +241005,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, @@ -252737,12 +241042,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, - [19710] = 4, + [16011] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2009), 1, + STATE(1879), 1, sym_comment, - ACTIONS(966), 16, + ACTIONS(946), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -252759,7 +241064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(968), 45, + ACTIONS(948), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -252805,12 +241110,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, - [19782] = 4, + [16083] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2010), 1, + STATE(1880), 1, sym_comment, - ACTIONS(1959), 16, + ACTIONS(4809), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -252827,7 +241132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1961), 45, + ACTIONS(4807), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -252873,19 +241178,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, - [19854] = 4, + [16155] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2011), 1, + STATE(1881), 1, sym_comment, - ACTIONS(2370), 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(4958), 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, @@ -252894,10 +241197,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(2372), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(4956), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252909,30 +241209,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_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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -252941,19 +241246,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, - [19926] = 4, + [16227] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(2012), 1, + ACTIONS(5151), 1, + anon_sym_DOT_DOT2, + STATE(1882), 1, sym_comment, - 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, + ACTIONS(5153), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1949), 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, @@ -252962,9 +241270,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(2416), 45, - sym_raw_string_begin, + ACTIONS(1955), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -252977,30 +241283,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_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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -253009,19 +241316,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, - [19998] = 4, + [16303] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(2013), 1, + ACTIONS(5155), 1, + anon_sym_DOT_DOT2, + STATE(1883), 1, sym_comment, - ACTIONS(2320), 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(5157), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1957), 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, @@ -253030,9 +241340,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(2322), 45, - sym_raw_string_begin, + ACTIONS(1963), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -253045,30 +241353,99 @@ static const uint16_t 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [16379] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(1884), 1, + sym_comment, + 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, + 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(1885), 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_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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -253077,12 +241454,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, - [20070] = 4, + [16451] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2014), 1, + STATE(1885), 1, sym_comment, - ACTIONS(2009), 16, + ACTIONS(2294), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -253099,7 +241476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2015), 45, + ACTIONS(2296), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -253145,19 +241522,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, - [20142] = 4, + [16523] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2015), 1, + STATE(1886), 1, sym_comment, - ACTIONS(2017), 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(4958), 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, @@ -253166,10 +241541,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(2023), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(4956), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253181,30 +241553,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_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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -253213,19 +241590,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, - [20214] = 4, + [16595] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2016), 1, + STATE(1887), 1, sym_comment, - ACTIONS(2025), 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(2134), 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, @@ -253234,10 +241609,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(2031), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(2136), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253249,30 +241621,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_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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -253281,19 +241658,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, - [20286] = 4, + [16667] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2017), 1, + STATE(1888), 1, sym_comment, - ACTIONS(2374), 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(1782), 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, @@ -253302,10 +241677,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(2376), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(1790), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253317,30 +241689,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_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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -253349,12 +241726,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, - [20358] = 4, + [16739] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2018), 1, + STATE(1889), 1, sym_comment, - ACTIONS(2378), 16, + ACTIONS(5081), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -253371,7 +241748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2380), 45, + ACTIONS(5078), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -253417,12 +241794,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, - [20430] = 4, + [16811] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2019), 1, + STATE(1890), 1, sym_comment, - ACTIONS(2382), 16, + ACTIONS(1993), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -253439,7 +241816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2384), 45, + ACTIONS(1995), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -253485,12 +241862,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20502] = 4, + [16883] = 39, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(245), 1, anon_sym_POUND, - STATE(2020), 1, + ACTIONS(247), 1, + sym_raw_string_begin, + ACTIONS(375), 1, + anon_sym_DASH2, + ACTIONS(1012), 1, + anon_sym_DOLLAR, + ACTIONS(3148), 1, + sym__newline, + ACTIONS(3330), 1, + anon_sym_null, + ACTIONS(3334), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3336), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3340), 1, + aux_sym__val_number_decimal_token4, + STATE(1499), 1, + sym__val_number, + STATE(1585), 1, + sym_val_variable, + STATE(1707), 1, + sym_expr_parenthesized, + STATE(1842), 1, + sym__inter_single_quotes, + STATE(1843), 1, + sym__inter_double_quotes, + STATE(1891), 1, sym_comment, - ACTIONS(2328), 16, + STATE(2018), 1, + sym__expr_unary_minus, + STATE(2713), 1, + aux_sym_shebang_repeat1, + STATE(2848), 1, + sym__val_number_decimal, + STATE(3605), 1, + sym__expr_binary_expression_parenthesized, + STATE(6359), 1, + sym__expression_parenthesized, + ACTIONS(207), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3332), 2, + anon_sym_true, + anon_sym_false, + STATE(1340), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2260), 4, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym_val_range, + sym__value, + ACTIONS(223), 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(1992), 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, + [17025] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(1892), 1, + sym_comment, + ACTIONS(4900), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -253507,9 +241987,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2330), 45, + ACTIONS(4898), 45, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253523,6 +242002,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, @@ -253553,12 +242033,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, - [20574] = 4, + [17097] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2021), 1, + STATE(1893), 1, sym_comment, - ACTIONS(2332), 16, + ACTIONS(5103), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -253575,7 +242055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2334), 45, + ACTIONS(5101), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -253621,12 +242101,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, - [20646] = 4, + [17169] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2022), 1, + STATE(1894), 1, sym_comment, - ACTIONS(2336), 16, + ACTIONS(1701), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -253643,7 +242123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2338), 45, + ACTIONS(1703), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -253689,12 +242169,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, - [20718] = 4, + [17241] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2023), 1, + STATE(1895), 1, sym_comment, - ACTIONS(2418), 16, + ACTIONS(1987), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -253711,7 +242191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2420), 45, + ACTIONS(1989), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -253757,12 +242237,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, - [20790] = 4, + [17313] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2024), 1, + STATE(1896), 1, sym_comment, - ACTIONS(2422), 16, + ACTIONS(1686), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -253779,7 +242259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2424), 45, + ACTIONS(1688), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -253825,115 +242305,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, - [20862] = 39, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(155), 1, - anon_sym_LPAREN, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(185), 1, - anon_sym_DOT_DOT, - ACTIONS(201), 1, - aux_sym_expr_unary_token1, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, + [17385] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(247), 1, - sym_raw_string_begin, - ACTIONS(375), 1, - anon_sym_DASH2, - ACTIONS(1012), 1, - anon_sym_DOLLAR, - ACTIONS(3204), 1, - sym__newline, - ACTIONS(3418), 1, - anon_sym_null, - ACTIONS(3422), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3424), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3426), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, - aux_sym__val_number_decimal_token4, - STATE(1591), 1, - sym__val_number, - STATE(1668), 1, - sym_val_variable, - STATE(1775), 1, - sym_expr_parenthesized, - STATE(1848), 1, - sym__inter_single_quotes, - STATE(1849), 1, - sym__inter_double_quotes, - STATE(2025), 1, - sym_comment, - STATE(2104), 1, - sym__expr_unary_minus, - STATE(2852), 1, - aux_sym_shebang_repeat1, - STATE(2977), 1, - sym__val_number_decimal, - STATE(3807), 1, - sym__expr_binary_expression_parenthesized, - STATE(6774), 1, - sym__expression_parenthesized, - ACTIONS(207), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3420), 2, - anon_sym_true, - anon_sym_false, - STATE(1383), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2352), 4, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym_val_range, - sym__value, - ACTIONS(223), 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(2082), 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, - [21004] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2026), 1, + STATE(1897), 1, sym_comment, - ACTIONS(2392), 16, + ACTIONS(1760), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -253950,7 +242327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2394), 45, + ACTIONS(1762), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -253996,12 +242373,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, - [21076] = 4, + [17457] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2027), 1, + STATE(1898), 1, sym_comment, - ACTIONS(2342), 16, + ACTIONS(1797), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -254018,7 +242395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2344), 45, + ACTIONS(1799), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -254064,12 +242441,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, - [21148] = 4, + [17529] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2028), 1, + STATE(1899), 1, sym_comment, - ACTIONS(2346), 16, + ACTIONS(2338), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -254086,7 +242463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2348), 45, + ACTIONS(2340), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -254132,12 +242509,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, - [21220] = 4, + [17601] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2029), 1, + STATE(1900), 1, sym_comment, - ACTIONS(2350), 16, + ACTIONS(2286), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -254154,7 +242531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2352), 45, + ACTIONS(2288), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -254200,12 +242577,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, - [21292] = 4, + [17673] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2030), 1, + STATE(1901), 1, sym_comment, - ACTIONS(2354), 16, + ACTIONS(2264), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -254222,7 +242599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2356), 45, + ACTIONS(2266), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -254268,12 +242645,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, - [21364] = 4, + [17745] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2031), 1, + STATE(1902), 1, sym_comment, - ACTIONS(2358), 16, + ACTIONS(2390), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -254290,7 +242667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2360), 45, + ACTIONS(2392), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -254336,12 +242713,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, - [21436] = 4, + [17817] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2032), 1, + STATE(1903), 1, sym_comment, - ACTIONS(2362), 16, + ACTIONS(5141), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -254358,7 +242735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2364), 45, + ACTIONS(5139), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -254404,19 +242781,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21508] = 4, + [17889] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2033), 1, + STATE(1904), 1, sym_comment, - ACTIONS(2366), 16, - anon_sym_DOLLAR, + ACTIONS(1867), 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(1869), 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_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [17961] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5159), 1, + anon_sym_DOT_DOT2, + STATE(1905), 1, + sym_comment, + ACTIONS(5161), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1965), 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, @@ -254425,9 +242873,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(2368), 45, - sym_raw_string_begin, + ACTIONS(1971), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -254440,30 +242886,99 @@ static const uint16_t 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [18037] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(1906), 1, + sym_comment, + ACTIONS(2362), 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(2364), 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_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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -254472,12 +242987,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, - [21580] = 4, + [18109] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2034), 1, + STATE(1907), 1, sym_comment, - ACTIONS(1851), 16, + ACTIONS(950), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -254494,7 +243009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1853), 45, + ACTIONS(952), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -254540,12 +243055,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, - [21652] = 4, + [18181] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2035), 1, + STATE(1908), 1, sym_comment, - ACTIONS(2426), 16, + ACTIONS(2322), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -254562,7 +243077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2428), 45, + ACTIONS(2324), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -254608,12 +243123,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, - [21724] = 4, + [18253] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2036), 1, + STATE(1909), 1, sym_comment, - ACTIONS(2430), 16, + ACTIONS(5113), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -254630,7 +243145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2432), 45, + ACTIONS(5111), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -254676,12 +243191,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, - [21796] = 4, + [18325] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2037), 1, + STATE(1910), 1, sym_comment, - ACTIONS(1879), 16, + ACTIONS(5117), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -254698,7 +243213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1881), 45, + ACTIONS(5115), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -254744,19 +243259,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, - [21868] = 4, + [18397] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(2038), 1, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + STATE(1911), 1, sym_comment, - ACTIONS(1913), 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(1805), 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, @@ -254765,10 +243282,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(1915), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(1813), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254780,30 +243294,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_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_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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -254812,19 +243329,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, - [21940] = 4, + [18473] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2039), 1, + STATE(1912), 1, sym_comment, - ACTIONS(1945), 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(2390), 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, @@ -254833,10 +243348,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(1947), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(2392), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254848,30 +243360,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_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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -254880,12 +243397,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, - [22012] = 4, + [18545] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2040), 1, + STATE(1913), 1, sym_comment, - ACTIONS(2441), 16, + ACTIONS(1829), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -254902,7 +243419,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(1831), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -254948,19 +243465,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, - [22084] = 4, + [18617] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(2041), 1, + ACTIONS(5163), 1, + anon_sym_DOT_DOT2, + STATE(1914), 1, sym_comment, - ACTIONS(1883), 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(5165), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1782), 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, @@ -254969,9 +243489,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(1885), 45, - sym_raw_string_begin, + ACTIONS(1790), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -254984,30 +243502,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_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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -255016,12 +243535,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, - [22156] = 4, + [18693] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2042), 1, + STATE(1915), 1, sym_comment, - ACTIONS(2445), 16, + ACTIONS(982), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -255038,7 +243557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2447), 45, + ACTIONS(984), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -255084,12 +243603,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] = 4, + [18765] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2043), 1, + STATE(1916), 1, sym_comment, - ACTIONS(2449), 16, + ACTIONS(4968), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -255106,7 +243625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2451), 45, + ACTIONS(4966), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -255152,12 +243671,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, - [22300] = 4, + [18837] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2044), 1, + STATE(1917), 1, sym_comment, - ACTIONS(1891), 16, + ACTIONS(2382), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -255174,7 +243693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1893), 45, + ACTIONS(2384), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -255220,19 +243739,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, - [22372] = 4, + [18909] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2045), 1, + STATE(1918), 1, sym_comment, - ACTIONS(1931), 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(5169), 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, @@ -255241,10 +243758,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(1933), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5167), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255256,30 +243770,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_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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -255288,12 +243807,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, - [22444] = 4, + [18981] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2046), 1, + STATE(1919), 1, sym_comment, - ACTIONS(2453), 16, + ACTIONS(2270), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -255310,7 +243829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2455), 45, + ACTIONS(2272), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -255356,12 +243875,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22516] = 4, + [19053] = 39, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(245), 1, anon_sym_POUND, - STATE(2047), 1, + ACTIONS(247), 1, + sym_raw_string_begin, + ACTIONS(375), 1, + anon_sym_DASH2, + ACTIONS(1012), 1, + anon_sym_DOLLAR, + ACTIONS(3148), 1, + sym__newline, + ACTIONS(3330), 1, + anon_sym_null, + ACTIONS(3334), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3336), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3340), 1, + aux_sym__val_number_decimal_token4, + STATE(1499), 1, + sym__val_number, + STATE(1585), 1, + sym_val_variable, + STATE(1707), 1, + sym_expr_parenthesized, + STATE(1842), 1, + sym__inter_single_quotes, + STATE(1843), 1, + sym__inter_double_quotes, + STATE(1920), 1, + sym_comment, + STATE(1958), 1, + aux_sym_shebang_repeat1, + STATE(2018), 1, + sym__expr_unary_minus, + STATE(2848), 1, + sym__val_number_decimal, + STATE(3605), 1, + sym__expr_binary_expression_parenthesized, + STATE(6247), 1, + sym__expression_parenthesized, + ACTIONS(207), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3332), 2, + anon_sym_true, + anon_sym_false, + STATE(1340), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2260), 4, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym_val_range, + sym__value, + ACTIONS(223), 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(1992), 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, + [19195] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(1921), 1, sym_comment, - ACTIONS(2296), 16, + ACTIONS(5145), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -255378,7 +244000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2298), 45, + ACTIONS(5143), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -255424,31 +244046,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22588] = 4, - ACTIONS(245), 1, + [19267] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2164), 1, + anon_sym_LPAREN2, + ACTIONS(2168), 1, + aux_sym_unquoted_token4, + STATE(1922), 1, + sym_comment, + ACTIONS(2166), 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(2162), 46, + 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_has2, + anon_sym_not_DASHhas2, + 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, + [19343] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2048), 1, + ACTIONS(2104), 1, + anon_sym_LPAREN2, + ACTIONS(2106), 1, + aux_sym_unquoted_token4, + STATE(1923), 1, sym_comment, - ACTIONS(1935), 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(1937), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(994), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255460,30 +244137,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, - 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_RPAREN, + anon_sym_RBRACE, + ACTIONS(998), 46, + 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_has2, + anon_sym_not_DASHhas2, + 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, @@ -255492,12 +244186,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, - [22660] = 4, + [19419] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2049), 1, + STATE(1924), 1, sym_comment, - ACTIONS(2461), 16, + ACTIONS(2274), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -255514,7 +244208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2463), 45, + ACTIONS(2276), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -255560,12 +244254,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, - [22732] = 4, + [19491] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2050), 1, + STATE(1925), 1, sym_comment, - ACTIONS(2465), 16, + ACTIONS(2330), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -255582,7 +244276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2467), 45, + ACTIONS(2332), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -255628,12 +244322,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, - [22804] = 4, + [19563] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2051), 1, + STATE(1926), 1, sym_comment, - ACTIONS(2194), 13, + ACTIONS(2370), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255647,7 +244341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2198), 48, + ACTIONS(2372), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255696,12 +244390,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, - [22876] = 4, + [19635] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2052), 1, + STATE(1927), 1, sym_comment, - ACTIONS(954), 16, + ACTIONS(2290), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -255718,7 +244412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(956), 45, + ACTIONS(2292), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -255764,12 +244458,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, - [22948] = 4, + [19707] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2053), 1, + STATE(1928), 1, sym_comment, - ACTIONS(5034), 16, + ACTIONS(4976), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -255786,7 +244480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5032), 45, + ACTIONS(4974), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -255832,19 +244526,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, - [23020] = 4, + [19779] = 8, ACTIONS(245), 1, anon_sym_POUND, - STATE(2054), 1, + ACTIONS(4648), 1, + anon_sym_DOT_DOT2, + STATE(1929), 1, sym_comment, - ACTIONS(1927), 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(4650), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(4954), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(4984), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255853,9 +244551,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(1929), 45, - sym_raw_string_begin, + ACTIONS(4982), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -255868,30 +244564,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_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, @@ -255900,12 +244572,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, - [23092] = 4, + ACTIONS(4952), 25, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [19859] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2055), 1, + STATE(1930), 1, sym_comment, - ACTIONS(5213), 13, + ACTIONS(2374), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255919,7 +244617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5211), 48, + ACTIONS(2376), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255968,19 +244666,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, - [23164] = 4, + [19931] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2056), 1, + STATE(1931), 1, sym_comment, - ACTIONS(5169), 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(2378), 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, @@ -255989,10 +244685,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(5167), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(2380), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256004,30 +244697,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_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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -256036,12 +244734,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, - [23236] = 4, + [20003] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2057), 1, + STATE(1932), 1, sym_comment, - ACTIONS(5173), 16, + ACTIONS(2334), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -256058,7 +244756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5171), 45, + ACTIONS(2336), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -256104,12 +244802,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, - [23308] = 4, + [20075] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2058), 1, + STATE(1933), 1, sym_comment, - ACTIONS(2398), 16, + ACTIONS(1883), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -256126,7 +244824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2400), 45, + ACTIONS(1885), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -256172,12 +244870,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, - [23380] = 4, + [20147] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2059), 1, + STATE(1934), 1, sym_comment, - ACTIONS(4827), 16, + ACTIONS(2342), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -256194,7 +244892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4825), 45, + ACTIONS(2344), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -256240,12 +244938,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, - [23452] = 4, + [20219] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2060), 1, + STATE(1935), 1, sym_comment, - ACTIONS(4919), 16, + ACTIONS(942), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -256262,7 +244960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4917), 45, + ACTIONS(944), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -256308,391 +245006,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, - [23524] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2061), 1, - sym_comment, - ACTIONS(1666), 14, - 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, - aux_sym_unquoted_token2, - ACTIONS(1668), 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_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [23596] = 39, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(155), 1, - anon_sym_LPAREN, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(185), 1, - anon_sym_DOT_DOT, - ACTIONS(201), 1, - aux_sym_expr_unary_token1, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(247), 1, - sym_raw_string_begin, - ACTIONS(375), 1, - anon_sym_DASH2, - ACTIONS(1012), 1, - anon_sym_DOLLAR, - ACTIONS(3204), 1, - sym__newline, - ACTIONS(3418), 1, - anon_sym_null, - ACTIONS(3422), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3424), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3426), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, - aux_sym__val_number_decimal_token4, - STATE(1591), 1, - sym__val_number, - STATE(1668), 1, - sym_val_variable, - STATE(1775), 1, - sym_expr_parenthesized, - STATE(1848), 1, - sym__inter_single_quotes, - STATE(1849), 1, - sym__inter_double_quotes, - STATE(2062), 1, - sym_comment, - STATE(2093), 1, - aux_sym_shebang_repeat1, - STATE(2104), 1, - sym__expr_unary_minus, - STATE(2977), 1, - sym__val_number_decimal, - STATE(3807), 1, - sym__expr_binary_expression_parenthesized, - STATE(6491), 1, - sym__expression_parenthesized, - ACTIONS(207), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3420), 2, - anon_sym_true, - anon_sym_false, - STATE(1383), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2352), 4, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym_val_range, - sym__value, - ACTIONS(223), 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(2082), 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, - [23738] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(2063), 1, - sym_comment, - ACTIONS(2204), 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(2202), 46, - 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_has2, - anon_sym_not_DASHhas2, - 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, - [23814] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5215), 1, - anon_sym_DOT_DOT2, - STATE(2064), 1, - sym_comment, - ACTIONS(5217), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2009), 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(2015), 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [23890] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2065), 1, - sym_comment, - ACTIONS(2001), 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(2003), 47, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [23962] = 4, + [20291] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2066), 1, + STATE(1936), 1, sym_comment, - ACTIONS(5115), 16, + ACTIONS(4914), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -256709,9 +245028,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5112), 45, + ACTIONS(4912), 45, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256725,6 +245043,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, @@ -256755,120 +245074,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, - [24034] = 39, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(155), 1, - anon_sym_LPAREN, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(185), 1, - anon_sym_DOT_DOT, - ACTIONS(201), 1, - aux_sym_expr_unary_token1, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(247), 1, - sym_raw_string_begin, - ACTIONS(375), 1, - anon_sym_DASH2, - ACTIONS(1012), 1, - anon_sym_DOLLAR, - ACTIONS(3204), 1, - sym__newline, - ACTIONS(3418), 1, - anon_sym_null, - ACTIONS(3422), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3424), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3426), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, - aux_sym__val_number_decimal_token4, - STATE(1591), 1, - sym__val_number, - STATE(1668), 1, - sym_val_variable, - STATE(1775), 1, - sym_expr_parenthesized, - STATE(1848), 1, - sym__inter_single_quotes, - STATE(1849), 1, - sym__inter_double_quotes, - STATE(2025), 1, - aux_sym_shebang_repeat1, - STATE(2067), 1, - sym_comment, - STATE(2104), 1, - sym__expr_unary_minus, - STATE(2977), 1, - sym__val_number_decimal, - STATE(3807), 1, - sym__expr_binary_expression_parenthesized, - STATE(6772), 1, - sym__expression_parenthesized, - ACTIONS(207), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3420), 2, - anon_sym_true, - anon_sym_false, - STATE(1383), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2352), 4, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym_val_range, - sym__value, - ACTIONS(223), 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(2082), 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, - [24176] = 4, + [20363] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2068), 1, + STATE(1937), 1, sym_comment, - ACTIONS(2049), 13, + ACTIONS(1987), 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, @@ -256877,7 +245094,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(2053), 48, + ACTIONS(1989), 47, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256889,12 +245107,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, @@ -256918,6 +245132,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, @@ -256926,12 +245142,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, - [24248] = 4, + [20435] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2069), 1, + STATE(1938), 1, sym_comment, - ACTIONS(1648), 14, + ACTIONS(5173), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256945,8 +245161,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_token2, - ACTIONS(1650), 47, + ACTIONS(5171), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256961,7 +245176,9 @@ 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, @@ -256976,7 +245193,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, @@ -256994,16 +245210,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, - [24320] = 6, - ACTIONS(3), 1, + [20507] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2091), 1, + ACTIONS(1784), 1, anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(2070), 1, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + STATE(1939), 1, sym_comment, - ACTIONS(2093), 13, + ACTIONS(2134), 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(2136), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257016,12 +245246,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(2089), 46, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -257032,30 +245259,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, @@ -257064,12 +245280,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, - [24396] = 4, + [20583] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2071), 1, + STATE(1940), 1, sym_comment, - ACTIONS(1719), 14, + ACTIONS(1805), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257083,8 +245299,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_token2, - ACTIONS(1721), 47, + ACTIONS(1813), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257099,7 +245314,9 @@ 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, @@ -257114,7 +245331,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, @@ -257132,17 +245348,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, - [24468] = 6, + [20655] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5219), 1, - anon_sym_DOT_DOT2, - STATE(2072), 1, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + STATE(1941), 1, sym_comment, - ACTIONS(5221), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2017), 13, + ACTIONS(1782), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257156,8 +245371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2023), 45, - ts_builtin_sym_end, + ACTIONS(1790), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257169,8 +245383,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, @@ -257202,17 +245418,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, - [24544] = 4, + [20731] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2073), 1, + STATE(1942), 1, sym_comment, - ACTIONS(1790), 14, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + 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, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257221,8 +245439,10 @@ 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_token2, - ACTIONS(1792), 47, + aux_sym_unquoted_token1, + ACTIONS(2427), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257234,34 +245454,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_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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_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, @@ -257270,22 +245486,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, - [24616] = 6, + [20803] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5223), 1, - anon_sym_DOT_DOT2, - STATE(2074), 1, + STATE(1943), 1, sym_comment, - ACTIONS(5225), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2025), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(4876), 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, @@ -257294,8 +245507,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(2031), 45, - ts_builtin_sym_end, + aux_sym_unquoted_token1, + ACTIONS(2790), 45, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257307,31 +245521,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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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_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, @@ -257340,16 +245554,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, - [24692] = 6, + [20875] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2196), 1, - anon_sym_LPAREN2, - ACTIONS(2200), 1, - aux_sym_unquoted_token4, - STATE(2075), 1, + STATE(1944), 1, sym_comment, - ACTIONS(2198), 13, + ACTIONS(2078), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257363,7 +245573,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2194), 46, + anon_sym_LPAREN2, + ACTIONS(2076), 47, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -257410,80 +245621,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, - [24768] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2076), 1, - sym_comment, - ACTIONS(5177), 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(5175), 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, - [24840] = 4, + aux_sym_unquoted_token4, + [20947] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2077), 1, + STATE(1945), 1, sym_comment, - ACTIONS(5181), 16, + ACTIONS(5121), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -257500,7 +245644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5179), 45, + ACTIONS(5119), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -257546,12 +245690,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, - [24912] = 4, + [21019] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2078), 1, + STATE(1946), 1, sym_comment, - ACTIONS(1963), 16, + ACTIONS(5125), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -257568,7 +245712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1965), 45, + ACTIONS(5123), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -257614,12 +245758,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, - [24984] = 4, + [21091] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2079), 1, + STATE(1947), 1, sym_comment, - ACTIONS(5157), 16, + ACTIONS(954), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -257636,7 +245780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5155), 45, + ACTIONS(956), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -257682,12 +245826,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, - [25056] = 4, + [21163] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2080), 1, + STATE(1948), 1, sym_comment, - ACTIONS(2059), 13, + ACTIONS(4954), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257701,7 +245845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2063), 48, + ACTIONS(4952), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257750,12 +245894,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, - [25128] = 4, + [21235] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2081), 1, + STATE(1949), 1, sym_comment, - ACTIONS(1967), 16, + ACTIONS(4972), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -257772,9 +245916,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1969), 45, + ACTIONS(4970), 45, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257788,6 +245931,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, @@ -257818,12 +245962,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, - [25200] = 4, + [21307] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(2082), 1, + ACTIONS(1477), 1, + aux_sym_unquoted_token2, + ACTIONS(2140), 1, + anon_sym_LPAREN2, + STATE(1950), 1, sym_comment, - ACTIONS(998), 13, + ACTIONS(2138), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257837,7 +245985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(994), 48, + ACTIONS(2142), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257852,9 +246000,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, @@ -257886,17 +246032,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, - [25272] = 6, + [21383] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5227), 1, - anon_sym_DOT_DOT2, - STATE(2083), 1, + STATE(1951), 1, sym_comment, - ACTIONS(5229), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1778), 13, + ACTIONS(2306), 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(2308), 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, + [21455] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5054), 1, + aux_sym__immediate_decimal_token2, + STATE(1952), 1, + sym_comment, + ACTIONS(1701), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257910,7 +246121,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(1786), 45, + aux_sym_unquoted_token2, + ACTIONS(1703), 46, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -257939,6 +246151,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, @@ -257956,17 +246169,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, - [25348] = 6, + [21529] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4750), 1, - anon_sym_DOT_DOT2, - STATE(2084), 1, + STATE(1953), 1, sym_comment, - ACTIONS(4752), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(998), 13, + ACTIONS(1701), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257980,8 +246188,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(994), 45, - ts_builtin_sym_end, + aux_sym_unquoted_token2, + ACTIONS(1703), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257993,8 +246201,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, @@ -258009,6 +246219,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, @@ -258026,12 +246237,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, - [25424] = 4, + [21601] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2085), 1, + STATE(1954), 1, sym_comment, - ACTIONS(4936), 16, + ACTIONS(5149), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -258048,8 +246259,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2843), 45, + ACTIONS(5147), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258063,7 +246275,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, @@ -258094,14 +246305,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, - [25496] = 5, + [21673] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5149), 1, - aux_sym__immediate_decimal_token2, - STATE(2086), 1, + STATE(1955), 1, sym_comment, - ACTIONS(1666), 14, + ACTIONS(4958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258115,9 +246324,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_token2, - ACTIONS(1668), 46, - ts_builtin_sym_end, + ACTIONS(4956), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258129,8 +246336,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, @@ -258145,7 +246356,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, @@ -258163,19 +246373,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, - [25570] = 4, + [21745] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2087), 1, + STATE(1956), 1, sym_comment, - ACTIONS(5016), 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(4958), 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, @@ -258184,9 +246392,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(5014), 45, - sym_raw_string_begin, + ACTIONS(4956), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258198,31 +246404,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_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -258231,19 +246441,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, - [25642] = 4, + [21817] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2088), 1, + STATE(1957), 1, sym_comment, - ACTIONS(5165), 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(1674), 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, @@ -258252,9 +246461,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(5163), 45, - sym_raw_string_begin, + ACTIONS(1676), 47, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -258267,60 +246474,154 @@ static const uint16_t 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [21889] = 39, + ACTIONS(153), 1, anon_sym_LBRACK, + ACTIONS(155), 1, anon_sym_LPAREN, - anon_sym_DASH_DASH, + ACTIONS(181), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(247), 1, + sym_raw_string_begin, + ACTIONS(375), 1, + anon_sym_DASH2, + ACTIONS(1012), 1, + anon_sym_DOLLAR, + ACTIONS(3148), 1, + sym__newline, + ACTIONS(3330), 1, anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(3334), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3336), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, + STATE(1499), 1, + sym__val_number, + STATE(1585), 1, + sym_val_variable, + STATE(1707), 1, + sym_expr_parenthesized, + STATE(1842), 1, + sym__inter_single_quotes, + STATE(1843), 1, + sym__inter_double_quotes, + STATE(1958), 1, + sym_comment, + STATE(2018), 1, + sym__expr_unary_minus, + STATE(2713), 1, + aux_sym_shebang_repeat1, + STATE(2848), 1, + sym__val_number_decimal, + STATE(3605), 1, + sym__expr_binary_expression_parenthesized, + STATE(6226), 1, + sym__expression_parenthesized, + ACTIONS(207), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3332), 2, + anon_sym_true, + anon_sym_false, + STATE(1340), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2260), 4, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym_val_range, + sym__value, + ACTIONS(223), 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, - 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, - [25714] = 4, - ACTIONS(245), 1, + STATE(1992), 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, + [22031] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2089), 1, + ACTIONS(2070), 1, + anon_sym_LPAREN2, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(1959), 1, sym_comment, - ACTIONS(1711), 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(1713), 47, - ts_builtin_sym_end, + ACTIONS(2130), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258332,8 +246633,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(2128), 46, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -258344,21 +246650,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_DOT_DOT_EQ2, - anon_sym_DOT_DOT_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, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258367,32 +246682,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, - [25786] = 6, - ACTIONS(245), 1, + [22107] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5231), 1, - anon_sym_DOT_DOT2, - STATE(2090), 1, + ACTIONS(2070), 1, + anon_sym_LPAREN2, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(1960), 1, sym_comment, - ACTIONS(5233), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2033), 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(2039), 45, - ts_builtin_sym_end, + ACTIONS(2072), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258404,8 +246703,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(2068), 46, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -258416,19 +246720,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, @@ -258437,12 +246752,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, - [25862] = 4, + [22183] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2091), 1, + STATE(1961), 1, sym_comment, - ACTIONS(962), 16, + ACTIONS(2326), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -258459,7 +246774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(964), 45, + ACTIONS(2328), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -258505,17 +246820,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, - [25934] = 4, + [22255] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2092), 1, + STATE(1962), 1, sym_comment, - ACTIONS(1927), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2260), 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, @@ -258524,7 +246841,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(1929), 48, + aux_sym_unquoted_token1, + ACTIONS(2262), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258536,152 +246856,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_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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [26006] = 39, - ACTIONS(153), 1, anon_sym_LBRACK, - ACTIONS(155), 1, anon_sym_LPAREN, - ACTIONS(181), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(185), 1, - anon_sym_DOT_DOT, - ACTIONS(201), 1, - aux_sym_expr_unary_token1, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(247), 1, - sym_raw_string_begin, - ACTIONS(375), 1, - anon_sym_DASH2, - ACTIONS(1012), 1, - anon_sym_DOLLAR, - ACTIONS(3204), 1, - sym__newline, - ACTIONS(3418), 1, - anon_sym_null, - ACTIONS(3422), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3424), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3426), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, - aux_sym__val_number_decimal_token4, - STATE(1591), 1, - sym__val_number, - STATE(1668), 1, - sym_val_variable, - STATE(1775), 1, - sym_expr_parenthesized, - STATE(1848), 1, - sym__inter_single_quotes, - STATE(1849), 1, - sym__inter_double_quotes, - STATE(2093), 1, - sym_comment, - STATE(2104), 1, - sym__expr_unary_minus, - STATE(2852), 1, - aux_sym_shebang_repeat1, - STATE(2977), 1, - sym__val_number_decimal, - STATE(3807), 1, - sym__expr_binary_expression_parenthesized, - STATE(6284), 1, - sym__expression_parenthesized, - ACTIONS(207), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3420), 2, + anon_sym_null, anon_sym_true, anon_sym_false, - STATE(1383), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2352), 4, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym_val_range, - sym__value, - ACTIONS(223), 6, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_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(2082), 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, - [26148] = 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, + [22327] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2094), 1, + STATE(1963), 1, sym_comment, - ACTIONS(5106), 16, + ACTIONS(1863), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -258698,7 +246910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5104), 45, + ACTIONS(1865), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -258744,18 +246956,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, - [26220] = 6, + [22399] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2095), 1, + STATE(1964), 1, sym_comment, - ACTIONS(4968), 5, + ACTIONS(4958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(4972), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258764,7 +246975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4966), 23, + ACTIONS(4956), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258777,20 +246988,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_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(4970), 25, - anon_sym_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -258814,16 +247016,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26296] = 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, + [22471] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(1813), 1, - anon_sym_LPAREN2, - STATE(2096), 1, + STATE(1965), 1, sym_comment, - ACTIONS(1811), 13, + ACTIONS(1686), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258837,7 +247043,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(1819), 46, + aux_sym_unquoted_token2, + ACTIONS(1688), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258867,6 +247074,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, @@ -258884,91 +247092,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, - [26372] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2097), 1, - sym_comment, - ACTIONS(982), 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(984), 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, - [26444] = 8, + [22543] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4750), 1, - anon_sym_DOT_DOT2, - STATE(2098), 1, + STATE(1966), 1, sym_comment, - ACTIONS(4752), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4968), 5, + ACTIONS(982), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(4972), 8, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -258977,7 +247112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4966), 20, + ACTIONS(984), 47, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -258990,15 +247125,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(4970), 25, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -259024,17 +247150,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26524] = 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, + [22615] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2099), 1, + STATE(1967), 1, sym_comment, - ACTIONS(1959), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5058), 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, @@ -259043,7 +247181,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(1961), 48, + aux_sym_unquoted_token1, + ACTIONS(5056), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259055,35 +247196,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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -259092,17 +247228,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, - [26596] = 6, + [22687] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5235), 1, - anon_sym_DOT_DOT2, - STATE(2100), 1, + ACTIONS(2146), 1, + anon_sym_LPAREN2, + ACTIONS(2150), 1, + aux_sym_unquoted_token2, + STATE(1968), 1, sym_comment, - ACTIONS(5237), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1811), 13, + ACTIONS(2144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259116,8 +247251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1819), 45, - ts_builtin_sym_end, + ACTIONS(2148), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259129,8 +247263,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, @@ -259162,12 +247298,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, - [26672] = 4, + [22763] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2101), 1, + STATE(1969), 1, sym_comment, - ACTIONS(2370), 13, + ACTIONS(4958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259181,7 +247317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2372), 48, + ACTIONS(4956), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259230,21 +247366,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, - [26744] = 6, + [22835] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - STATE(2102), 1, + STATE(1970), 1, sym_comment, - ACTIONS(2041), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1833), 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, @@ -259253,7 +247387,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(2043), 46, + aux_sym_unquoted_token1, + ACTIONS(1835), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259265,33 +247402,98 @@ static const uint16_t ts_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_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, + [22907] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(1971), 1, + sym_comment, + ACTIONS(4844), 16, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, + 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(4842), 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, @@ -259300,16 +247502,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, - [26820] = 6, + [22979] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - STATE(2103), 1, + STATE(1972), 1, sym_comment, - ACTIONS(1778), 13, + ACTIONS(1760), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259323,7 +247521,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(1786), 46, + aux_sym_unquoted_token2, + ACTIONS(1762), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259353,6 +247552,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, @@ -259370,12 +247570,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, - [26896] = 4, + [23051] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5175), 1, + aux_sym__immediate_decimal_token2, + STATE(1973), 1, sym_comment, - ACTIONS(5241), 13, + ACTIONS(1760), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259389,7 +247591,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(5239), 48, + aux_sym_unquoted_token2, + ACTIONS(1762), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259401,12 +247605,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, @@ -259421,6 +247621,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, @@ -259438,12 +247639,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, - [26968] = 4, + [23125] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2105), 1, + STATE(1974), 1, sym_comment, - ACTIONS(5189), 16, + ACTIONS(2278), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -259460,7 +247661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5187), 45, + ACTIONS(2280), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -259506,82 +247707,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, - [27040] = 6, + [23197] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - ACTIONS(2051), 1, - anon_sym_LPAREN2, - STATE(2106), 1, - sym_comment, - ACTIONS(2049), 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(2053), 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_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [27116] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2107), 1, + STATE(1975), 1, sym_comment, - ACTIONS(5193), 16, + ACTIONS(2278), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -259598,7 +247729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5191), 45, + ACTIONS(2280), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -259644,12 +247775,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, - [27188] = 4, + [23269] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(2108), 1, + ACTIONS(4648), 1, + anon_sym_DOT_DOT2, + STATE(1976), 1, sym_comment, - ACTIONS(2398), 13, + ACTIONS(4650), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(4954), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259663,7 +247799,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(2400), 48, + ACTIONS(4952), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259675,12 +247812,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, @@ -259712,19 +247845,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, - [27260] = 4, + [23345] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2109), 1, + STATE(1977), 1, sym_comment, - ACTIONS(1666), 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(2138), 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, @@ -259733,10 +247864,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(1668), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(2142), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259748,30 +247876,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_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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -259780,18 +247913,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, - [27332] = 4, + [23417] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2110), 1, + STATE(1978), 1, sym_comment, - ACTIONS(1967), 14, + ACTIONS(2076), 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, @@ -259800,8 +247932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1969), 47, - ts_builtin_sym_end, + ACTIONS(2078), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259813,8 +247944,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, @@ -259838,8 +247973,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, @@ -259848,16 +247981,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, - [27404] = 6, + [23489] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(1979), 1, + sym_comment, + ACTIONS(1616), 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(1628), 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, + [23561] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2061), 1, - anon_sym_LPAREN2, - ACTIONS(2065), 1, - aux_sym_unquoted_token2, - STATE(2111), 1, + STATE(1980), 1, sym_comment, - ACTIONS(2059), 13, + ACTIONS(1797), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259871,7 +248068,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(2063), 46, + aux_sym_unquoted_token2, + ACTIONS(1799), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259901,6 +248099,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, @@ -259918,12 +248117,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, - [27480] = 4, + [23633] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2112), 1, + STATE(1981), 1, sym_comment, - ACTIONS(2469), 16, + ACTIONS(998), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -259940,7 +248139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2471), 45, + ACTIONS(994), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -259986,12 +248185,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, - [27552] = 4, + [23705] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2113), 1, + STATE(1982), 1, sym_comment, - ACTIONS(2469), 16, + ACTIONS(2310), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -260008,7 +248207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2471), 45, + ACTIONS(2312), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -260054,19 +248253,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, - [27624] = 4, + [23777] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2114), 1, + STATE(1983), 1, sym_comment, - ACTIONS(5012), 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(1993), 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, @@ -260075,9 +248273,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(5010), 45, - sym_raw_string_begin, + ACTIONS(1995), 47, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -260090,30 +248286,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_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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -260122,12 +248321,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, - [27696] = 4, + [23849] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2115), 1, + STATE(1984), 1, sym_comment, - ACTIONS(1648), 16, + ACTIONS(2405), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -260144,7 +248343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1650), 45, + ACTIONS(2407), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -260190,12 +248389,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, - [27768] = 4, + [23921] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2116), 1, + STATE(1985), 1, + sym_comment, + ACTIONS(4958), 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(4956), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [23993] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(1986), 1, sym_comment, - ACTIONS(5102), 16, + ACTIONS(1973), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -260212,7 +248479,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(1979), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -260258,12 +248525,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, - [27840] = 4, + [24065] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2117), 1, + STATE(1987), 1, sym_comment, - ACTIONS(2475), 16, + ACTIONS(5050), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -260280,7 +248547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2477), 45, + ACTIONS(5048), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -260326,12 +248593,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, - [27912] = 4, + [24137] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2118), 1, + STATE(1988), 1, sym_comment, - ACTIONS(2479), 16, + ACTIONS(5062), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -260348,7 +248615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2481), 45, + ACTIONS(5060), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -260394,12 +248661,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, - [27984] = 4, + [24209] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2119), 1, + STATE(1989), 1, sym_comment, - ACTIONS(1719), 16, + ACTIONS(5099), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -260416,7 +248683,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(5097), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -260462,12 +248729,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, - [28056] = 4, + [24281] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2120), 1, + STATE(1990), 1, sym_comment, - ACTIONS(2374), 13, + ACTIONS(2144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260481,7 +248748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2376), 48, + ACTIONS(2148), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260530,86 +248797,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, - [28128] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2121), 1, - sym_comment, - ACTIONS(1790), 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(1792), 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, - [28200] = 4, + [24353] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2122), 1, + STATE(1991), 1, sym_comment, - ACTIONS(982), 14, + ACTIONS(4958), 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, @@ -260618,8 +248816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(984), 47, - ts_builtin_sym_end, + ACTIONS(4956), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260631,8 +248828,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, @@ -260656,8 +248857,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, @@ -260666,18 +248865,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, - [28272] = 4, + [24425] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2123), 1, + STATE(1992), 1, sym_comment, - ACTIONS(1963), 14, + ACTIONS(998), 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, @@ -260686,8 +248884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1965), 47, - ts_builtin_sym_end, + ACTIONS(994), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260699,8 +248896,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, @@ -260724,8 +248925,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, @@ -260734,12 +248933,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, - [28344] = 4, + [24497] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2124), 1, + STATE(1993), 1, sym_comment, - ACTIONS(2378), 13, + ACTIONS(4958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260753,7 +248952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2380), 48, + ACTIONS(4956), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260802,12 +249001,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, - [28416] = 4, + [24569] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2125), 1, + STATE(1994), 1, sym_comment, - ACTIONS(2382), 13, + ACTIONS(4958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260821,7 +249020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2384), 48, + ACTIONS(4956), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260870,12 +249069,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, - [28488] = 4, + [24641] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(2126), 1, + ACTIONS(5177), 1, + anon_sym_DOT_DOT2, + STATE(1995), 1, sym_comment, - ACTIONS(4968), 13, + ACTIONS(5179), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1973), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260889,7 +249093,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(4970), 48, + ACTIONS(1979), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260901,12 +249106,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, @@ -260938,12 +249139,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, - [28560] = 4, + [24717] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2127), 1, + STATE(1996), 1, sym_comment, - ACTIONS(2300), 16, + ACTIONS(1867), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -260960,7 +249161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2302), 45, + ACTIONS(1869), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -261006,153 +249207,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, - [28632] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2128), 1, - sym_comment, - ACTIONS(5245), 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(5243), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [28704] = 4, + [24789] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2129), 1, + STATE(1997), 1, sym_comment, - ACTIONS(1811), 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(1819), 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, + ACTIONS(2362), 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [28776] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2130), 1, - sym_comment, - ACTIONS(5000), 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, @@ -261161,7 +249228,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(4998), 48, + aux_sym_unquoted_token1, + ACTIONS(2364), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261173,105 +249243,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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [28848] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2190), 1, - anon_sym_LPAREN2, - ACTIONS(2192), 1, - aux_sym_unquoted_token4, - STATE(2131), 1, - sym_comment, - ACTIONS(994), 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(998), 46, - 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_has2, - anon_sym_not_DASHhas2, - 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_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, @@ -261280,14 +249275,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, - [28924] = 5, + [24861] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5247), 1, - aux_sym__immediate_decimal_token2, - STATE(2132), 1, + ACTIONS(5181), 1, + anon_sym_DOT_DOT2, + STATE(1998), 1, sym_comment, - ACTIONS(1719), 14, + ACTIONS(5183), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1805), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -261301,8 +249299,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_token2, - ACTIONS(1721), 46, + ACTIONS(1813), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -261331,7 +249328,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, @@ -261349,12 +249345,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, - [28998] = 4, + [24937] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2133), 1, + STATE(1999), 1, sym_comment, - ACTIONS(5197), 16, + ACTIONS(2409), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -261371,7 +249367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5195), 45, + ACTIONS(2411), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -261417,12 +249413,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, - [29070] = 4, + [25009] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2134), 1, + STATE(2000), 1, sym_comment, - ACTIONS(5201), 16, + ACTIONS(1871), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -261439,7 +249435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5199), 45, + ACTIONS(1873), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -261485,12 +249481,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, - [29142] = 4, + [25081] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2135), 1, + STATE(2001), 1, sym_comment, - ACTIONS(958), 16, + ACTIONS(2318), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -261507,7 +249503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(960), 45, + ACTIONS(2320), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -261553,293 +249549,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, - [29214] = 39, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(155), 1, - anon_sym_LPAREN, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(185), 1, - anon_sym_DOT_DOT, - ACTIONS(201), 1, - aux_sym_expr_unary_token1, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, + [25153] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(247), 1, - sym_raw_string_begin, - ACTIONS(375), 1, - anon_sym_DASH2, - ACTIONS(1012), 1, - anon_sym_DOLLAR, - ACTIONS(3204), 1, - sym__newline, - ACTIONS(3418), 1, - anon_sym_null, - ACTIONS(3422), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3424), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3426), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, - aux_sym__val_number_decimal_token4, - STATE(1591), 1, - sym__val_number, - STATE(1668), 1, - sym_val_variable, - STATE(1775), 1, - sym_expr_parenthesized, - STATE(1848), 1, - sym__inter_single_quotes, - STATE(1849), 1, - sym__inter_double_quotes, - STATE(2104), 1, - sym__expr_unary_minus, - STATE(2136), 1, + STATE(2002), 1, sym_comment, - STATE(2137), 1, - aux_sym_shebang_repeat1, - STATE(2977), 1, - sym__val_number_decimal, - STATE(3807), 1, - sym__expr_binary_expression_parenthesized, - STATE(6765), 1, - sym__expression_parenthesized, - ACTIONS(207), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3420), 2, - anon_sym_true, - anon_sym_false, - STATE(1383), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2352), 4, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym_val_range, - sym__value, - ACTIONS(223), 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(2082), 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, - [29356] = 39, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(155), 1, - anon_sym_LPAREN, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(185), 1, - anon_sym_DOT_DOT, - ACTIONS(201), 1, - aux_sym_expr_unary_token1, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(247), 1, - sym_raw_string_begin, - ACTIONS(375), 1, - anon_sym_DASH2, - ACTIONS(1012), 1, + ACTIONS(2298), 16, anon_sym_DOLLAR, - ACTIONS(3204), 1, - sym__newline, - ACTIONS(3418), 1, - anon_sym_null, - ACTIONS(3422), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(3424), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3426), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, - aux_sym__val_number_decimal_token4, - STATE(1591), 1, - sym__val_number, - STATE(1668), 1, - sym_val_variable, - STATE(1775), 1, - sym_expr_parenthesized, - STATE(1848), 1, - sym__inter_single_quotes, - STATE(1849), 1, - sym__inter_double_quotes, - STATE(2104), 1, - sym__expr_unary_minus, - STATE(2137), 1, - sym_comment, - STATE(2852), 1, - aux_sym_shebang_repeat1, - STATE(2977), 1, - sym__val_number_decimal, - STATE(3807), 1, - sym__expr_binary_expression_parenthesized, - STATE(6767), 1, - sym__expression_parenthesized, - ACTIONS(207), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3420), 2, - anon_sym_true, - anon_sym_false, - STATE(1383), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2352), 4, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym_val_range, - sym__value, - ACTIONS(223), 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(2082), 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, - [29498] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2138), 1, - sym_comment, - ACTIONS(2047), 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_LPAREN2, - ACTIONS(2045), 47, - 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_has2, - anon_sym_not_DASHhas2, - 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, - [29570] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2139), 1, - sym_comment, - ACTIONS(5251), 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, @@ -261848,7 +249570,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(5249), 46, + aux_sym_unquoted_token1, + ACTIONS(2300), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261860,33 +249585,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -261895,87 +249617,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, - [29643] = 5, + [25225] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2140), 1, + STATE(2003), 1, sym_comment, - STATE(2266), 1, - aux_sym_shebang_repeat1, - ACTIONS(5094), 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(5092), 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(2282), 16, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [29716] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2141), 1, - sym_comment, - STATE(2224), 1, - aux_sym_shebang_repeat1, - ACTIONS(5145), 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, @@ -261984,45 +249638,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5143), 46, + aux_sym_unquoted_token1, + ACTIONS(2284), 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_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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, @@ -262031,19 +249685,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, - [29789] = 5, + [25297] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2142), 1, + STATE(2004), 1, sym_comment, - STATE(2259), 1, - aux_sym_shebang_repeat1, - ACTIONS(5110), 13, + ACTIONS(1945), 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, @@ -262052,7 +249705,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(5108), 46, + ACTIONS(1947), 47, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262064,10 +249718,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, @@ -262091,6 +249743,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, @@ -262099,19 +249753,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, - [29862] = 5, + [25369] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2143), 1, + STATE(2005), 1, sym_comment, - STATE(2157), 1, - aux_sym_shebang_repeat1, - ACTIONS(5094), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1949), 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, @@ -262120,7 +249774,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(5092), 46, + aux_sym_unquoted_token1, + ACTIONS(1955), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262132,33 +249789,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -262167,19 +249821,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, - [29935] = 5, + [25441] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2144), 1, + STATE(2006), 1, sym_comment, - ACTIONS(5251), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1957), 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, @@ -262188,7 +249842,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(5249), 46, + aux_sym_unquoted_token1, + ACTIONS(1963), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262200,33 +249857,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -262235,19 +249889,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, - [30008] = 5, + [25513] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2145), 1, + STATE(2007), 1, sym_comment, - STATE(2196), 1, - aux_sym_shebang_repeat1, - ACTIONS(5098), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1965), 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, @@ -262256,7 +249910,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(5096), 46, + aux_sym_unquoted_token1, + ACTIONS(1971), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262268,33 +249925,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -262303,14 +249957,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, - [30081] = 5, + [25585] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2146), 1, + STATE(2008), 1, sym_comment, - ACTIONS(5255), 13, + ACTIONS(4958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262324,7 +249976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5253), 46, + ACTIONS(4956), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262340,6 +249992,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, @@ -262371,19 +250025,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, - [30154] = 5, + [25657] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2147), 1, + STATE(2009), 1, sym_comment, - STATE(2240), 1, - aux_sym_shebang_repeat1, - ACTIONS(5098), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + 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, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262392,7 +250046,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(5096), 46, + aux_sym_unquoted_token1, + ACTIONS(2423), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262404,33 +250061,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -262439,16 +250093,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, - [30227] = 6, + [25729] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(2148), 1, + STATE(2010), 1, sym_comment, - STATE(7809), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4930), 13, + ACTIONS(2162), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262462,8 +250112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4928), 45, - ts_builtin_sym_end, + ACTIONS(2166), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262475,8 +250124,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, @@ -262508,16 +250161,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, - [30302] = 6, + [25801] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(2149), 1, + STATE(2011), 1, sym_comment, - STATE(7375), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5000), 13, + ACTIONS(5187), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262531,8 +250180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4998), 45, - ts_builtin_sym_end, + ACTIONS(5185), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262544,8 +250192,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, @@ -262577,19 +250229,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, - [30377] = 5, + [25873] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2150), 1, + STATE(2012), 1, sym_comment, - STATE(2281), 1, - aux_sym_shebang_repeat1, - ACTIONS(5110), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2370), 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, @@ -262598,7 +250250,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(5108), 46, + aux_sym_unquoted_token1, + ACTIONS(2372), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262610,33 +250265,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -262645,19 +250297,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, - [30450] = 5, + [25945] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2146), 1, - aux_sym_shebang_repeat1, - STATE(2151), 1, + STATE(2013), 1, sym_comment, - ACTIONS(5094), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2374), 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, @@ -262666,7 +250318,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(5092), 46, + aux_sym_unquoted_token1, + ACTIONS(2376), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262678,33 +250333,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -262713,19 +250365,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, - [30523] = 5, + [26017] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2152), 1, + STATE(2014), 1, sym_comment, - STATE(2232), 1, - aux_sym_shebang_repeat1, - ACTIONS(5145), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2378), 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, @@ -262734,7 +250386,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(5143), 46, + aux_sym_unquoted_token1, + ACTIONS(2380), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262746,33 +250401,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -262781,16 +250433,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, - [30596] = 6, + [26089] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(2153), 1, + STATE(2015), 1, sym_comment, - STATE(7809), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4934), 13, + ACTIONS(4958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262804,8 +250452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4932), 45, - ts_builtin_sym_end, + ACTIONS(4956), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262817,8 +250464,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, @@ -262850,19 +250501,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, - [30671] = 5, + [26161] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2016), 1, sym_comment, - STATE(2190), 1, - aux_sym_shebang_repeat1, - ACTIONS(5098), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2302), 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, @@ -262871,7 +250522,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(5096), 46, + aux_sym_unquoted_token1, + ACTIONS(2304), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262883,33 +250537,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -262918,19 +250569,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, - [30744] = 5, + [26233] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2155), 1, + STATE(2017), 1, sym_comment, - ACTIONS(5259), 13, + ACTIONS(4954), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(4984), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262939,7 +250589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 46, + ACTIONS(4982), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262952,9 +250602,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_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(4952), 25, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -262978,22 +250639,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, - [30817] = 5, + [26309] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2156), 1, + STATE(2018), 1, sym_comment, - STATE(2262), 1, - aux_sym_shebang_repeat1, - ACTIONS(5110), 13, + ACTIONS(5191), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263007,7 +250658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5108), 46, + ACTIONS(5189), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263023,6 +250674,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, @@ -263054,14 +250707,321 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30890] = 5, + [26381] = 39, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + ACTIONS(247), 1, + sym_raw_string_begin, + ACTIONS(375), 1, + anon_sym_DASH2, + ACTIONS(1012), 1, + anon_sym_DOLLAR, + ACTIONS(3148), 1, + sym__newline, + ACTIONS(3330), 1, + anon_sym_null, + ACTIONS(3334), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3336), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3340), 1, + aux_sym__val_number_decimal_token4, + STATE(1499), 1, + sym__val_number, + STATE(1585), 1, + sym_val_variable, + STATE(1707), 1, + sym_expr_parenthesized, + STATE(1842), 1, + sym__inter_single_quotes, + STATE(1843), 1, + sym__inter_double_quotes, + STATE(2018), 1, + sym__expr_unary_minus, + STATE(2019), 1, + sym_comment, + STATE(2020), 1, aux_sym_shebang_repeat1, - STATE(2157), 1, + STATE(2848), 1, + sym__val_number_decimal, + STATE(3605), 1, + sym__expr_binary_expression_parenthesized, + STATE(6346), 1, + sym__expression_parenthesized, + ACTIONS(207), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3332), 2, + anon_sym_true, + anon_sym_false, + STATE(1340), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2260), 4, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym_val_range, + sym__value, + ACTIONS(223), 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(1992), 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, + [26523] = 39, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(247), 1, + sym_raw_string_begin, + ACTIONS(375), 1, + anon_sym_DASH2, + ACTIONS(1012), 1, + anon_sym_DOLLAR, + ACTIONS(3148), 1, + sym__newline, + ACTIONS(3330), 1, + anon_sym_null, + ACTIONS(3334), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3336), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3340), 1, + aux_sym__val_number_decimal_token4, + STATE(1499), 1, + sym__val_number, + STATE(1585), 1, + sym_val_variable, + STATE(1707), 1, + sym_expr_parenthesized, + STATE(1842), 1, + sym__inter_single_quotes, + STATE(1843), 1, + sym__inter_double_quotes, + STATE(2018), 1, + sym__expr_unary_minus, + STATE(2020), 1, sym_comment, - ACTIONS(5255), 13, + STATE(2713), 1, + aux_sym_shebang_repeat1, + STATE(2848), 1, + sym__val_number_decimal, + STATE(3605), 1, + sym__expr_binary_expression_parenthesized, + STATE(6348), 1, + sym__expression_parenthesized, + ACTIONS(207), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3332), 2, + anon_sym_true, + anon_sym_false, + STATE(1340), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2260), 4, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym_val_range, + sym__value, + ACTIONS(223), 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(1992), 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, + [26665] = 39, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(247), 1, + sym_raw_string_begin, + ACTIONS(375), 1, + anon_sym_DASH2, + ACTIONS(1012), 1, + anon_sym_DOLLAR, + ACTIONS(3148), 1, + sym__newline, + ACTIONS(3330), 1, + anon_sym_null, + ACTIONS(3334), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3336), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3340), 1, + aux_sym__val_number_decimal_token4, + STATE(1499), 1, + sym__val_number, + STATE(1585), 1, + sym_val_variable, + STATE(1707), 1, + sym_expr_parenthesized, + STATE(1842), 1, + sym__inter_single_quotes, + STATE(1843), 1, + sym__inter_double_quotes, + STATE(1891), 1, + aux_sym_shebang_repeat1, + STATE(2018), 1, + sym__expr_unary_minus, + STATE(2021), 1, + sym_comment, + STATE(2848), 1, + sym__val_number_decimal, + STATE(3605), 1, + sym__expr_binary_expression_parenthesized, + STATE(6357), 1, + sym__expression_parenthesized, + ACTIONS(207), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3332), 2, + anon_sym_true, + anon_sym_false, + STATE(1340), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2260), 4, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym_val_range, + sym__value, + ACTIONS(223), 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(1992), 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, + [26807] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2022), 1, + sym_comment, + ACTIONS(2382), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263075,7 +251035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5253), 46, + ACTIONS(2384), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263091,6 +251051,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, @@ -263122,16 +251084,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, - [30963] = 6, + [26879] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(2158), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2023), 1, sym_comment, - STATE(7375), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5000), 13, + ACTIONS(5195), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263145,8 +251105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4998), 45, - ts_builtin_sym_end, + ACTIONS(5193), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263158,8 +251117,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, @@ -263191,59 +251152,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, - [31038] = 6, - ACTIONS(3), 1, + [26952] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2196), 1, - anon_sym_LPAREN2, - ACTIONS(2200), 1, - aux_sym_unquoted_token4, - STATE(2159), 1, + STATE(2024), 1, sym_comment, - ACTIONS(2198), 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(2194), 46, + STATE(2135), 1, + aux_sym_shebang_repeat1, + ACTIONS(5199), 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_has2, - anon_sym_not_DASHhas2, - 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, @@ -263252,25 +251173,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, - [31113] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2190), 1, - anon_sym_LPAREN2, - ACTIONS(2192), 1, - aux_sym_unquoted_token4, - STATE(2160), 1, - sym_comment, - ACTIONS(994), 12, - ts_builtin_sym_end, + ACTIONS(5197), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263282,11 +251185,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(998), 46, - 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, @@ -263297,30 +251199,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, @@ -263329,14 +251220,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, - [31188] = 5, + [27025] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2161), 1, + STATE(2025), 1, sym_comment, - ACTIONS(5251), 13, + STATE(2099), 1, + aux_sym_shebang_repeat1, + ACTIONS(5042), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263350,7 +251241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5249), 46, + ACTIONS(5040), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263397,115 +251288,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, - [31261] = 38, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(155), 1, - anon_sym_LPAREN, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(185), 1, - anon_sym_DOT_DOT, - ACTIONS(201), 1, - aux_sym_expr_unary_token1, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(247), 1, - sym_raw_string_begin, - ACTIONS(375), 1, - anon_sym_DASH2, - ACTIONS(1012), 1, - anon_sym_DOLLAR, - ACTIONS(3418), 1, - anon_sym_null, - ACTIONS(3422), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3424), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3426), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3440), 1, - anon_sym_COLON2, - STATE(1591), 1, - sym__val_number, - STATE(1665), 1, - sym_expr_parenthesized, - STATE(1668), 1, - sym_val_variable, - STATE(1848), 1, - sym__inter_single_quotes, - STATE(1849), 1, - sym__inter_double_quotes, - STATE(2104), 1, - sym__expr_unary_minus, - STATE(2162), 1, - sym_comment, - STATE(2977), 1, - sym__val_number_decimal, - STATE(3852), 1, - sym__expr_binary_expression, - STATE(7367), 1, - sym__expression, - ACTIONS(207), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3420), 2, - anon_sym_true, - anon_sym_false, - STATE(1383), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2095), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(223), 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(2082), 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, - [31400] = 5, + [27098] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2163), 1, - sym_comment, - STATE(2242), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(5145), 13, + STATE(2026), 1, + sym_comment, + ACTIONS(5195), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263519,7 +251309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5143), 46, + ACTIONS(5193), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263566,14 +251356,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, - [31473] = 5, + [27171] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2164), 1, + STATE(2027), 1, sym_comment, - ACTIONS(5263), 13, + ACTIONS(5195), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263587,7 +251377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5261), 46, + ACTIONS(5193), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263634,14 +251424,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, - [31546] = 5, + [27244] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2165), 1, + STATE(2028), 1, sym_comment, - ACTIONS(5251), 13, + STATE(2088), 1, + aux_sym_shebang_repeat1, + ACTIONS(5046), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263655,7 +251445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5249), 46, + ACTIONS(5044), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263702,14 +251492,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, - [31619] = 5, + [27317] = 35, ACTIONS(245), 1, anon_sym_POUND, - STATE(2166), 1, + ACTIONS(3494), 1, + aux_sym_unquoted_token1, + ACTIONS(3910), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3912), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3914), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3916), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4354), 1, + anon_sym_DOLLAR, + ACTIONS(4358), 1, + anon_sym_DOT_DOT, + ACTIONS(4384), 1, + anon_sym_DQUOTE, + ACTIONS(4388), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4390), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4392), 1, + sym_raw_string_begin, + ACTIONS(5201), 1, + anon_sym_LBRACK, + ACTIONS(5203), 1, + anon_sym_LPAREN, + ACTIONS(5205), 1, + anon_sym_DASH_DASH, + ACTIONS(5207), 1, + anon_sym_DASH2, + ACTIONS(5211), 1, + sym_val_date, + STATE(2029), 1, sym_comment, - STATE(2272), 1, + STATE(3012), 1, + aux_sym_overlay_hide_repeat1, + STATE(5425), 1, + sym__inter_single_quotes, + STATE(5426), 1, + sym__inter_double_quotes, + STATE(5614), 1, + sym__val_number_decimal, + STATE(7015), 1, + sym_val_bool, + STATE(7269), 1, + sym__val_range, + STATE(7277), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3908), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4360), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4386), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3300), 2, + sym_val_list, + sym__flag, + STATE(3302), 2, + sym_short_flag, + sym_long_flag, + STATE(5097), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5209), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(4933), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2675), 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(2677), 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, + [27450] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2030), 1, + sym_comment, + STATE(2075), 1, aux_sym_shebang_repeat1, - ACTIONS(5110), 13, + ACTIONS(5068), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263723,7 +251611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5108), 46, + ACTIONS(5066), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263770,14 +251658,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, - [31692] = 5, + [27523] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2167), 1, - sym_comment, - STATE(2244), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(5267), 13, + STATE(2031), 1, + sym_comment, + ACTIONS(5215), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263791,7 +251679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5265), 46, + ACTIONS(5213), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263838,14 +251726,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, - [31765] = 5, + [27596] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2168), 1, + STATE(2032), 1, sym_comment, - STATE(2277), 1, + STATE(2124), 1, aux_sym_shebang_repeat1, - ACTIONS(5098), 13, + ACTIONS(5042), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263859,7 +251747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5096), 46, + ACTIONS(5040), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263906,14 +251794,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, - [31838] = 5, + [27669] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2169), 1, + STATE(2033), 1, sym_comment, - ACTIONS(5255), 13, + ACTIONS(5195), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263927,7 +251815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5253), 46, + ACTIONS(5193), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263974,17 +251862,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, - [31911] = 6, - ACTIONS(3), 1, + [27742] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(2170), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2034), 1, sym_comment, - ACTIONS(2204), 12, - ts_builtin_sym_end, + ACTIONS(5195), 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(5193), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263996,11 +251895,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(2202), 46, - 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, @@ -264011,30 +251909,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, @@ -264043,17 +251930,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, - [31986] = 6, - ACTIONS(3), 1, + [27815] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(2171), 1, + STATE(2035), 1, sym_comment, - ACTIONS(2093), 12, - ts_builtin_sym_end, + STATE(2166), 1, + aux_sym_shebang_repeat1, + ACTIONS(5046), 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(5044), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264065,11 +251963,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(2089), 46, - 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, @@ -264080,30 +251977,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, @@ -264112,14 +251998,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, - [32061] = 5, + [27888] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2172), 1, + STATE(2036), 1, sym_comment, - STATE(2225), 1, + STATE(2123), 1, aux_sym_shebang_repeat1, - ACTIONS(5145), 13, + ACTIONS(5068), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264133,7 +252019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5143), 46, + ACTIONS(5066), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264180,14 +252066,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, - [32134] = 5, + [27961] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2173), 1, + STATE(2037), 1, sym_comment, - STATE(2245), 1, + STATE(2087), 1, aux_sym_shebang_repeat1, - ACTIONS(5145), 13, + ACTIONS(5068), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264201,7 +252087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5143), 46, + ACTIONS(5066), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264248,14 +252134,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, - [32207] = 5, + [28034] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2174), 1, + STATE(2038), 1, sym_comment, - STATE(2274), 1, + STATE(2052), 1, aux_sym_shebang_repeat1, - ACTIONS(5110), 13, + ACTIONS(5038), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264269,7 +252155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5108), 46, + ACTIONS(5036), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264316,14 +252202,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, - [32280] = 5, + [28107] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2175), 1, + STATE(2039), 1, sym_comment, - ACTIONS(5251), 13, + ACTIONS(5219), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264337,7 +252223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5249), 46, + ACTIONS(5217), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264384,14 +252270,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, - [32353] = 5, + [28180] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2176), 1, + STATE(2040), 1, sym_comment, - ACTIONS(5255), 13, + ACTIONS(5215), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264405,7 +252291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5253), 46, + ACTIONS(5213), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264452,14 +252338,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, - [32426] = 5, + [28253] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2177), 1, - sym_comment, - STATE(2226), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(5094), 13, + STATE(2041), 1, + sym_comment, + ACTIONS(5195), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264473,7 +252359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5092), 46, + ACTIONS(5193), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264520,14 +252406,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, - [32499] = 5, + [28326] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(2178), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(2042), 1, sym_comment, - STATE(2285), 1, - aux_sym_shebang_repeat1, - ACTIONS(5110), 13, + STATE(7173), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4828), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264541,7 +252429,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(5108), 46, + ACTIONS(4826), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264553,10 +252442,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, @@ -264588,14 +252475,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, - [32572] = 5, + [28401] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(2164), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(2043), 1, + sym_comment, + STATE(7173), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4832), 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(4830), 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [28476] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2179), 1, + STATE(2044), 1, sym_comment, - ACTIONS(5271), 13, + ACTIONS(5195), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264609,7 +252565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5269), 46, + ACTIONS(5193), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264656,14 +252612,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, - [32645] = 5, + [28549] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2180), 1, + STATE(2045), 1, sym_comment, - STATE(2254), 1, + ACTIONS(1701), 14, + 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, + aux_sym_unquoted_token2, + ACTIONS(1703), 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, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [28620] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2046), 1, + sym_comment, + STATE(2144), 1, aux_sym_shebang_repeat1, - ACTIONS(5145), 13, + ACTIONS(5223), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264677,7 +252700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5143), 46, + ACTIONS(5221), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264724,14 +252747,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, - [32718] = 5, + [28693] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(2034), 1, aux_sym_shebang_repeat1, - STATE(2181), 1, + STATE(2047), 1, sym_comment, - ACTIONS(5259), 13, + ACTIONS(5038), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264745,7 +252768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 46, + ACTIONS(5036), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264792,16 +252815,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, - [32791] = 6, + [28766] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(2182), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2048), 1, sym_comment, - STATE(7375), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5000), 13, + ACTIONS(5215), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264815,8 +252836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4998), 45, - ts_builtin_sym_end, + ACTIONS(5213), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264828,8 +252848,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, @@ -264861,14 +252883,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, - [32866] = 5, + [28839] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2183), 1, - sym_comment, - STATE(2276), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(5110), 13, + STATE(2049), 1, + sym_comment, + ACTIONS(5195), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264882,7 +252904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5108), 46, + ACTIONS(5193), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264929,14 +252951,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, - [32939] = 5, + [28912] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2184), 1, + STATE(2050), 1, sym_comment, - ACTIONS(5251), 13, + ACTIONS(5227), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264950,7 +252972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5249), 46, + ACTIONS(5225), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264997,14 +253019,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, - [33012] = 5, + [28985] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2185), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2051), 1, sym_comment, - STATE(2211), 1, + ACTIONS(5195), 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(5193), 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [29058] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(5094), 13, + STATE(2052), 1, + sym_comment, + ACTIONS(5195), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265018,7 +253108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5092), 46, + ACTIONS(5193), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265065,14 +253155,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, - [33085] = 5, + [29131] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2176), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2186), 1, + STATE(2053), 1, sym_comment, - ACTIONS(5094), 13, + ACTIONS(5195), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265086,7 +253176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5092), 46, + ACTIONS(5193), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265133,16 +253223,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, - [33158] = 6, + [29204] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(2187), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2054), 1, sym_comment, - STATE(7375), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5000), 13, + ACTIONS(5215), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265156,8 +253244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4998), 45, - ts_builtin_sym_end, + ACTIONS(5213), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265169,8 +253256,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, @@ -265202,16 +253291,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, - [33233] = 6, + [29277] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(2188), 1, + STATE(2055), 1, sym_comment, - STATE(7375), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5000), 13, + STATE(2145), 1, + aux_sym_shebang_repeat1, + ACTIONS(5042), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265225,8 +253312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4998), 45, - ts_builtin_sym_end, + ACTIONS(5040), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265238,8 +253324,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, @@ -265271,112 +253359,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, - [33308] = 35, + [29350] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3530), 1, - aux_sym_unquoted_token1, - ACTIONS(3842), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3844), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3846), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3848), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4395), 1, - anon_sym_DOLLAR, - ACTIONS(4399), 1, - anon_sym_DOT_DOT, - ACTIONS(4425), 1, - anon_sym_DQUOTE, - ACTIONS(4429), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4431), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4433), 1, - sym_raw_string_begin, - ACTIONS(5273), 1, - anon_sym_LBRACK, - ACTIONS(5275), 1, - anon_sym_LPAREN, - ACTIONS(5277), 1, - anon_sym_DASH_DASH, - ACTIONS(5279), 1, - anon_sym_DASH2, - ACTIONS(5283), 1, - sym_val_date, - STATE(2189), 1, - sym_comment, - STATE(2210), 1, - aux_sym_overlay_hide_repeat1, - STATE(5676), 1, - sym__inter_double_quotes, - STATE(5678), 1, - sym__inter_single_quotes, - STATE(5960), 1, - sym__val_number_decimal, - STATE(7905), 1, - sym__val_range, - STATE(7908), 1, - sym__unquoted_anonymous_prefix, - STATE(7914), 1, - sym_val_bool, - ACTIONS(3840), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4401), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4427), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3455), 2, - sym_short_flag, - sym_long_flag, - STATE(3459), 2, - sym_val_list, - sym__flag, - STATE(5417), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5281), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(5179), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2728), 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(2730), 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, - [33441] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2190), 1, + ACTIONS(2146), 1, + anon_sym_LPAREN2, + ACTIONS(2150), 1, + aux_sym_unquoted_token2, + STATE(2056), 1, sym_comment, - ACTIONS(5251), 13, + ACTIONS(2144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265390,7 +253382,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(5249), 46, + ACTIONS(2148), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265402,10 +253395,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, @@ -265437,14 +253428,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, - [33514] = 5, + [29425] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2191), 1, - sym_comment, - STATE(2255), 1, + STATE(2053), 1, aux_sym_shebang_repeat1, - ACTIONS(5145), 13, + STATE(2057), 1, + sym_comment, + ACTIONS(5038), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265458,7 +253449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5143), 46, + ACTIONS(5036), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265505,14 +253496,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, - [33587] = 5, + [29498] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2192), 1, + STATE(2058), 1, sym_comment, - ACTIONS(5255), 13, + STATE(2104), 1, + aux_sym_shebang_repeat1, + ACTIONS(5231), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265526,7 +253517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5253), 46, + ACTIONS(5229), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265573,14 +253564,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, - [33660] = 5, + [29571] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(2193), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(2059), 1, sym_comment, - STATE(2237), 1, - aux_sym_shebang_repeat1, - ACTIONS(5287), 13, + STATE(6968), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265594,7 +253587,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(5285), 46, + ACTIONS(4956), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265606,10 +253600,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, @@ -265641,16 +253633,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, - [33733] = 6, + [29646] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(1813), 1, - anon_sym_LPAREN2, - STATE(2194), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2060), 1, sym_comment, - ACTIONS(1811), 13, + ACTIONS(5219), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265664,8 +253654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1819), 45, - ts_builtin_sym_end, + ACTIONS(5217), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265677,8 +253666,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, @@ -265710,14 +253701,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, - [33808] = 5, + [29719] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2195), 1, + STATE(2061), 1, sym_comment, - STATE(2263), 1, + STATE(2173), 1, aux_sym_shebang_repeat1, - ACTIONS(5145), 13, + ACTIONS(5042), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265731,7 +253722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5143), 46, + ACTIONS(5040), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265778,14 +253769,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, - [33881] = 5, + [29792] = 35, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(3494), 1, + aux_sym_unquoted_token1, + ACTIONS(3910), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3912), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3914), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3916), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4354), 1, + anon_sym_DOLLAR, + ACTIONS(4358), 1, + anon_sym_DOT_DOT, + ACTIONS(4384), 1, + anon_sym_DQUOTE, + ACTIONS(4388), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4390), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4392), 1, + sym_raw_string_begin, + ACTIONS(5201), 1, + anon_sym_LBRACK, + ACTIONS(5203), 1, + anon_sym_LPAREN, + ACTIONS(5205), 1, + anon_sym_DASH_DASH, + ACTIONS(5207), 1, + anon_sym_DASH2, + ACTIONS(5211), 1, + sym_val_date, + STATE(2029), 1, + aux_sym_overlay_hide_repeat1, + STATE(2062), 1, + sym_comment, + STATE(5425), 1, + sym__inter_single_quotes, + STATE(5426), 1, + sym__inter_double_quotes, + STATE(5614), 1, + sym__val_number_decimal, + STATE(7015), 1, + sym_val_bool, + STATE(7269), 1, + sym__val_range, + STATE(7277), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3908), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4360), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4386), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3300), 2, + sym_val_list, + sym__flag, + STATE(3302), 2, + sym_short_flag, + sym_long_flag, + STATE(5097), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5209), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(4915), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2675), 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(2677), 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, + [29925] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2196), 1, + STATE(2063), 1, sym_comment, - ACTIONS(5251), 13, + ACTIONS(5195), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265799,7 +253888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5249), 46, + ACTIONS(5193), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265846,14 +253935,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, - [33954] = 5, + [29998] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2197), 1, - sym_comment, - STATE(2270), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(5145), 13, + STATE(2064), 1, + sym_comment, + ACTIONS(5195), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265867,7 +253956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5143), 46, + ACTIONS(5193), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265914,14 +254003,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, - [34027] = 5, + [30071] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2198), 1, + STATE(2065), 1, sym_comment, - STATE(2227), 1, + STATE(2165), 1, aux_sym_shebang_repeat1, - ACTIONS(5145), 13, + ACTIONS(5042), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265935,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(5143), 46, + ACTIONS(5040), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265982,14 +254071,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, - [34100] = 5, + [30144] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2144), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2199), 1, + STATE(2066), 1, sym_comment, - ACTIONS(5098), 13, + ACTIONS(5235), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266003,7 +254092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5096), 46, + ACTIONS(5233), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266050,14 +254139,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, - [34173] = 5, + [30217] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(2023), 1, aux_sym_shebang_repeat1, - STATE(2200), 1, + STATE(2067), 1, sym_comment, - ACTIONS(5094), 13, + ACTIONS(5038), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266071,7 +254160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5092), 46, + ACTIONS(5036), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266118,16 +254207,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, - [34246] = 6, + [30290] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(2201), 1, + STATE(2068), 1, sym_comment, - STATE(7809), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4940), 13, + STATE(2150), 1, + aux_sym_shebang_repeat1, + ACTIONS(5068), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266141,8 +254228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4938), 45, - ts_builtin_sym_end, + ACTIONS(5066), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266154,8 +254240,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, @@ -266187,16 +254275,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, - [34321] = 6, + [30363] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(2202), 1, + STATE(2039), 1, + aux_sym_shebang_repeat1, + STATE(2069), 1, sym_comment, - STATE(7809), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4948), 13, + ACTIONS(5042), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266210,8 +254296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4946), 45, - ts_builtin_sym_end, + ACTIONS(5040), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266223,8 +254308,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, @@ -266256,14 +254343,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, - [34396] = 5, + [30436] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2203), 1, + STATE(2070), 1, sym_comment, - ACTIONS(5251), 13, + STATE(2080), 1, + aux_sym_shebang_repeat1, + ACTIONS(5068), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266277,7 +254364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5249), 46, + ACTIONS(5066), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266324,14 +254411,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, - [34469] = 5, + [30509] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2169), 1, - aux_sym_shebang_repeat1, - STATE(2204), 1, + STATE(2071), 1, sym_comment, - ACTIONS(5094), 13, + ACTIONS(1686), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266345,7 +254430,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(5092), 46, + aux_sym_unquoted_token2, + ACTIONS(1688), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266357,10 +254444,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, @@ -266375,6 +254460,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, @@ -266392,14 +254478,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, - [34542] = 5, + [30580] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2205), 1, - sym_comment, - STATE(2220), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(5094), 13, + STATE(2072), 1, + sym_comment, + ACTIONS(5215), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266413,7 +254499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5092), 46, + ACTIONS(5213), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266460,14 +254546,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, - [34615] = 5, + [30653] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2165), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2206), 1, + STATE(2073), 1, sym_comment, - ACTIONS(5098), 13, + ACTIONS(5235), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266481,7 +254567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5096), 46, + ACTIONS(5233), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266528,16 +254614,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, - [34688] = 6, + [30726] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(2207), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2074), 1, sym_comment, - STATE(7375), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5000), 13, + ACTIONS(5235), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266551,8 +254635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4998), 45, - ts_builtin_sym_end, + ACTIONS(5233), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266564,8 +254647,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, @@ -266597,12 +254682,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, - [34763] = 4, + [30799] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2208), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2075), 1, sym_comment, - ACTIONS(1790), 14, + ACTIONS(5235), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266616,9 +254703,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_token2, - ACTIONS(1792), 46, - ts_builtin_sym_end, + ACTIONS(5233), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266630,8 +254715,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, @@ -266646,7 +254733,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, @@ -266664,16 +254750,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, - [34834] = 6, + [30872] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(2209), 1, + STATE(2076), 1, sym_comment, - STATE(7375), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5000), 13, + STATE(2082), 1, + aux_sym_shebang_repeat1, + ACTIONS(5042), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266687,8 +254771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4998), 45, - ts_builtin_sym_end, + ACTIONS(5040), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266700,8 +254783,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, @@ -266733,112 +254818,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, - [34909] = 35, + [30945] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3530), 1, - aux_sym_unquoted_token1, - ACTIONS(3842), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3844), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3846), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3848), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4395), 1, - anon_sym_DOLLAR, - ACTIONS(4399), 1, - anon_sym_DOT_DOT, - ACTIONS(4425), 1, - anon_sym_DQUOTE, - ACTIONS(4429), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4431), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4433), 1, - sym_raw_string_begin, - ACTIONS(5273), 1, - anon_sym_LBRACK, - ACTIONS(5275), 1, - anon_sym_LPAREN, - ACTIONS(5277), 1, - anon_sym_DASH_DASH, - ACTIONS(5279), 1, - anon_sym_DASH2, - ACTIONS(5283), 1, - sym_val_date, - STATE(2210), 1, - sym_comment, - STATE(3213), 1, - aux_sym_overlay_hide_repeat1, - STATE(5676), 1, - sym__inter_double_quotes, - STATE(5678), 1, - sym__inter_single_quotes, - STATE(5960), 1, - sym__val_number_decimal, - STATE(7905), 1, - sym__val_range, - STATE(7908), 1, - sym__unquoted_anonymous_prefix, - STATE(7914), 1, - sym_val_bool, - ACTIONS(3840), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4401), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4427), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3455), 2, - sym_short_flag, - sym_long_flag, - STATE(3459), 2, - sym_val_list, - sym__flag, - STATE(5417), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5281), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(5166), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2728), 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(2730), 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, - [35042] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2211), 1, + STATE(2077), 1, sym_comment, - ACTIONS(5255), 13, + ACTIONS(5219), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266852,7 +254839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5253), 46, + ACTIONS(5217), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266899,14 +254886,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, - [35115] = 5, + [31018] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2212), 1, - sym_comment, - STATE(2278), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(5098), 13, + STATE(2078), 1, + sym_comment, + ACTIONS(5215), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266920,7 +254907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5096), 46, + ACTIONS(5213), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266967,14 +254954,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, - [35188] = 5, + [31091] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(2213), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(2079), 1, sym_comment, - STATE(2243), 1, - aux_sym_shebang_repeat1, - ACTIONS(5094), 13, + STATE(7173), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4861), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266988,7 +254977,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(5092), 46, + ACTIONS(4859), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267000,10 +254990,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, @@ -267035,14 +255023,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, - [35261] = 5, + [31166] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2175), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2214), 1, + STATE(2080), 1, sym_comment, - ACTIONS(5098), 13, + ACTIONS(5235), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267056,7 +255044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5096), 46, + ACTIONS(5233), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267103,12 +255091,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, - [35334] = 4, + [31239] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2215), 1, + STATE(2081), 1, sym_comment, - ACTIONS(1666), 14, + STATE(2105), 1, + aux_sym_shebang_repeat1, + ACTIONS(5068), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267122,9 +255112,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_token2, - ACTIONS(1668), 46, - ts_builtin_sym_end, + ACTIONS(5066), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267136,8 +255124,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, @@ -267152,7 +255142,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, @@ -267170,16 +255159,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, - [35405] = 6, + [31312] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(2216), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2082), 1, sym_comment, - STATE(7375), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5000), 13, + ACTIONS(5219), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267193,8 +255180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4998), 45, - ts_builtin_sym_end, + ACTIONS(5217), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267206,8 +255192,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, @@ -267239,14 +255227,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, - [35480] = 5, + [31385] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2155), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2217), 1, + STATE(2083), 1, sym_comment, - ACTIONS(5110), 13, + ACTIONS(5235), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267260,7 +255248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5108), 46, + ACTIONS(5233), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267307,14 +255295,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, - [35553] = 5, + [31458] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(2184), 1, - aux_sym_shebang_repeat1, - STATE(2218), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(2084), 1, sym_comment, - ACTIONS(5098), 13, + STATE(7173), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4865), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267328,59 +255318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5096), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [35626] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2219), 1, - sym_comment, - ACTIONS(2047), 13, + ACTIONS(4863), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -267393,12 +255331,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(2045), 47, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -267409,30 +255343,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, @@ -267441,15 +255364,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, - [35697] = 5, + [31533] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2220), 1, + STATE(2085), 1, sym_comment, - ACTIONS(5255), 13, + ACTIONS(5215), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267463,7 +255385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5253), 46, + ACTIONS(5213), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267510,16 +255432,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, - [35770] = 6, + [31606] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(2221), 1, + STATE(2086), 1, sym_comment, - STATE(7375), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5000), 13, + ACTIONS(1760), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267533,7 +255451,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(4998), 45, + aux_sym_unquoted_token2, + ACTIONS(1762), 46, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -267562,6 +255481,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, @@ -267579,14 +255499,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, - [35845] = 5, + [31677] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2222), 1, + STATE(2087), 1, sym_comment, - ACTIONS(5291), 13, + ACTIONS(5235), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267600,7 +255520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5289), 46, + ACTIONS(5233), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267647,16 +255567,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, - [35918] = 6, + [31750] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2061), 1, - anon_sym_LPAREN2, - ACTIONS(2065), 1, - aux_sym_unquoted_token2, - STATE(2223), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2088), 1, sym_comment, - ACTIONS(2059), 13, + ACTIONS(5215), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267670,8 +255588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2063), 45, - ts_builtin_sym_end, + ACTIONS(5213), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267683,8 +255600,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, @@ -267716,14 +255635,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, - [35993] = 5, + [31823] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(2054), 1, aux_sym_shebang_repeat1, - STATE(2224), 1, + STATE(2089), 1, sym_comment, - ACTIONS(5291), 13, + ACTIONS(5046), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267737,7 +255656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5289), 46, + ACTIONS(5044), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267784,14 +255703,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, - [36066] = 5, + [31896] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(2083), 1, aux_sym_shebang_repeat1, - STATE(2225), 1, + STATE(2090), 1, sym_comment, - ACTIONS(5291), 13, + ACTIONS(5068), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267805,7 +255724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5289), 46, + ACTIONS(5066), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267852,14 +255771,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, - [36139] = 5, + [31969] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2226), 1, + STATE(2091), 1, sym_comment, - ACTIONS(5255), 13, + ACTIONS(5235), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267873,7 +255792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5253), 46, + ACTIONS(5233), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267920,14 +255839,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, - [36212] = 5, + [32042] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2227), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(2092), 1, sym_comment, - ACTIONS(5291), 13, + STATE(6968), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267941,7 +255862,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(5289), 46, + ACTIONS(4956), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267953,10 +255875,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, @@ -267988,14 +255908,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, - [36285] = 5, + [32117] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2228), 1, + STATE(2093), 1, sym_comment, - ACTIONS(5291), 13, + ACTIONS(1797), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268009,7 +255927,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(5289), 46, + aux_sym_unquoted_token2, + ACTIONS(1799), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268021,10 +255941,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, @@ -268039,6 +255957,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, @@ -268056,12 +255975,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, - [36358] = 4, + [32188] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(2229), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(2094), 1, sym_comment, - ACTIONS(1648), 14, + STATE(6968), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268075,8 +255998,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_token2, - ACTIONS(1650), 46, + ACTIONS(4956), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -268105,7 +256027,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, @@ -268123,14 +256044,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, - [36429] = 5, + [32263] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2230), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(2095), 1, sym_comment, - ACTIONS(5291), 13, + STATE(6968), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268144,7 +256067,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(5289), 46, + ACTIONS(4956), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268156,10 +256080,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, @@ -268191,14 +256113,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, - [36502] = 5, + [32338] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(2161), 1, - aux_sym_shebang_repeat1, - STATE(2231), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(2096), 1, sym_comment, - ACTIONS(5098), 13, + STATE(6968), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268212,7 +256136,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(5096), 46, + ACTIONS(4956), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268224,10 +256149,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, @@ -268259,14 +256182,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, - [36575] = 5, + [32413] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(2041), 1, aux_sym_shebang_repeat1, - STATE(2232), 1, + STATE(2097), 1, sym_comment, - ACTIONS(5291), 13, + ACTIONS(5038), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268280,7 +256203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5289), 46, + ACTIONS(5036), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268327,86 +256250,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, - [36648] = 35, + [32486] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, - sym_raw_string_begin, - ACTIONS(3570), 1, - aux_sym_unquoted_token1, - ACTIONS(3842), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3844), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3846), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3848), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4135), 1, - anon_sym_DOLLAR, - ACTIONS(4139), 1, - anon_sym_DOT_DOT, - ACTIONS(4159), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4161), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5273), 1, - anon_sym_LBRACK, - ACTIONS(5277), 1, - anon_sym_DASH_DASH, - ACTIONS(5279), 1, - anon_sym_DASH2, - ACTIONS(5283), 1, - sym_val_date, - ACTIONS(5293), 1, - anon_sym_LPAREN, - STATE(2233), 1, + STATE(2098), 1, sym_comment, - STATE(3213), 1, - aux_sym_overlay_hide_repeat1, - STATE(5242), 1, - sym__inter_single_quotes, - STATE(5247), 1, - sym__inter_double_quotes, - STATE(5822), 1, - sym__val_number_decimal, - STATE(7723), 1, - sym__val_range, - STATE(7727), 1, - sym__unquoted_anonymous_prefix, - STATE(7914), 1, - sym_val_bool, - ACTIONS(1264), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3840), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4141), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(3455), 2, - sym_short_flag, - sym_long_flag, - STATE(3459), 2, - sym_val_list, - sym__flag, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5295), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(5063), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2728), 8, + STATE(2106), 1, + aux_sym_shebang_repeat1, + ACTIONS(5042), 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, @@ -268415,8 +256271,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2730), 9, - anon_sym_null, + ACTIONS(5040), 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -268425,14 +256318,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, - [36781] = 5, + [32559] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2139), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2234), 1, + STATE(2099), 1, sym_comment, - ACTIONS(5098), 13, + ACTIONS(5219), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268446,7 +256339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5096), 46, + ACTIONS(5217), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268493,14 +256386,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, - [36854] = 5, + [32632] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2228), 1, + STATE(2063), 1, aux_sym_shebang_repeat1, - STATE(2235), 1, + STATE(2100), 1, sym_comment, - ACTIONS(5145), 13, + ACTIONS(5038), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268514,7 +256407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5143), 46, + ACTIONS(5036), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268561,14 +256454,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, - [36927] = 5, + [32705] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2236), 1, + STATE(2101), 1, sym_comment, - STATE(2286), 1, + STATE(2129), 1, aux_sym_shebang_repeat1, - ACTIONS(5110), 13, + ACTIONS(5046), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268582,7 +256475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5108), 46, + ACTIONS(5044), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268629,14 +256522,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, - [37000] = 5, + [32778] = 35, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2237), 1, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, + sym_raw_string_begin, + ACTIONS(3468), 1, + aux_sym_unquoted_token1, + ACTIONS(3910), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3912), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3914), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3916), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4039), 1, + anon_sym_DOT_DOT, + ACTIONS(4062), 1, + anon_sym_DOLLAR, + ACTIONS(4082), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4084), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5201), 1, + anon_sym_LBRACK, + ACTIONS(5205), 1, + anon_sym_DASH_DASH, + ACTIONS(5207), 1, + anon_sym_DASH2, + ACTIONS(5211), 1, + sym_val_date, + ACTIONS(5237), 1, + anon_sym_LPAREN, + STATE(2102), 1, sym_comment, - ACTIONS(5299), 13, + STATE(2112), 1, + aux_sym_overlay_hide_repeat1, + STATE(5018), 1, + sym__inter_single_quotes, + STATE(5024), 1, + sym__inter_double_quotes, + STATE(5535), 1, + sym__val_number_decimal, + STATE(7015), 1, + sym_val_bool, + STATE(7094), 1, + sym__val_range, + STATE(7123), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(1264), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3908), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4041), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(3300), 2, + sym_val_list, + sym__flag, + STATE(3302), 2, + sym_short_flag, + sym_long_flag, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5239), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(4795), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2675), 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(2677), 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, + [32911] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(2103), 1, + sym_comment, + STATE(6968), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268650,7 +256643,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(5297), 46, + ACTIONS(4956), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268662,10 +256656,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, @@ -268697,14 +256689,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, - [37073] = 5, + [32986] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2238), 1, + STATE(2104), 1, sym_comment, - ACTIONS(5251), 13, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268718,7 +256710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5249), 46, + ACTIONS(5241), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268765,14 +256757,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, - [37146] = 5, + [33059] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2239), 1, + STATE(2105), 1, sym_comment, - ACTIONS(5255), 13, + ACTIONS(5235), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268786,7 +256778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5253), 46, + ACTIONS(5233), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268833,14 +256825,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, - [37219] = 5, + [33132] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2240), 1, + STATE(2106), 1, sym_comment, - ACTIONS(5251), 13, + ACTIONS(5219), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268854,7 +256846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5249), 46, + ACTIONS(5217), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268901,16 +256893,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, - [37292] = 6, + [33205] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(2241), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2107), 1, sym_comment, - STATE(7375), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5000), 13, + ACTIONS(5215), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268924,8 +256914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4998), 45, - ts_builtin_sym_end, + ACTIONS(5213), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268937,8 +256926,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, @@ -268970,14 +256961,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, - [37367] = 5, + [33278] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(2064), 1, aux_sym_shebang_repeat1, - STATE(2242), 1, + STATE(2108), 1, sym_comment, - ACTIONS(5291), 13, + ACTIONS(5038), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268991,7 +256982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5289), 46, + ACTIONS(5036), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269038,14 +257029,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, - [37440] = 5, + [33351] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2243), 1, + ACTIONS(4805), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5245), 1, + anon_sym_DOT, + STATE(2109), 1, sym_comment, - ACTIONS(5255), 13, + ACTIONS(1701), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269059,7 +257052,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(5253), 46, + ACTIONS(1703), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269071,10 +257065,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, @@ -269106,14 +257098,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, - [37513] = 5, + [33426] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2244), 1, + STATE(2110), 1, sym_comment, - ACTIONS(5303), 13, + ACTIONS(5235), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269127,7 +257119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 46, + ACTIONS(5233), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269174,14 +257166,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, - [37586] = 5, + [33499] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2245), 1, + ACTIONS(4672), 1, + aux_sym_unquoted_token2, + STATE(2111), 1, sym_comment, - ACTIONS(5291), 13, + ACTIONS(1616), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269195,7 +257187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5289), 46, + ACTIONS(1628), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269210,7 +257202,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, @@ -269242,7 +257234,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37659] = 38, + [33572] = 35, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, + sym_raw_string_begin, + ACTIONS(3468), 1, + aux_sym_unquoted_token1, + ACTIONS(3910), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3912), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3914), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3916), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4039), 1, + anon_sym_DOT_DOT, + ACTIONS(4062), 1, + anon_sym_DOLLAR, + ACTIONS(4082), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4084), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5201), 1, + anon_sym_LBRACK, + ACTIONS(5205), 1, + anon_sym_DASH_DASH, + ACTIONS(5207), 1, + anon_sym_DASH2, + ACTIONS(5211), 1, + sym_val_date, + ACTIONS(5237), 1, + anon_sym_LPAREN, + STATE(2112), 1, + sym_comment, + STATE(3012), 1, + aux_sym_overlay_hide_repeat1, + STATE(5018), 1, + sym__inter_single_quotes, + STATE(5024), 1, + sym__inter_double_quotes, + STATE(5535), 1, + sym__val_number_decimal, + STATE(7015), 1, + sym_val_bool, + STATE(7094), 1, + sym__val_range, + STATE(7123), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(1264), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3908), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4041), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(3300), 2, + sym_val_list, + sym__flag, + STATE(3302), 2, + sym_short_flag, + sym_long_flag, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5239), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(4849), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2675), 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(2677), 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, + [33705] = 38, ACTIONS(153), 1, anon_sym_LBRACK, ACTIONS(155), 1, @@ -269271,37 +257361,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(1012), 1, anon_sym_DOLLAR, - ACTIONS(3418), 1, + ACTIONS(3330), 1, anon_sym_null, - ACTIONS(3422), 1, + ACTIONS(3334), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3424), 1, + ACTIONS(3336), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3430), 1, + ACTIONS(3408), 1, anon_sym_COLON2, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(1665), 1, - sym_expr_parenthesized, - STATE(1668), 1, + STATE(1585), 1, sym_val_variable, - STATE(1848), 1, + STATE(1628), 1, + sym_expr_parenthesized, + STATE(1842), 1, sym__inter_single_quotes, - STATE(1849), 1, + STATE(1843), 1, sym__inter_double_quotes, - STATE(2104), 1, + STATE(2018), 1, sym__expr_unary_minus, - STATE(2246), 1, + STATE(2113), 1, sym_comment, - STATE(2977), 1, + STATE(2848), 1, sym__val_number_decimal, - STATE(3852), 1, + STATE(3679), 1, sym__expr_binary_expression, - STATE(7508), 1, + STATE(6872), 1, sym__expression, ACTIONS(207), 2, anon_sym_DOT_DOT_EQ, @@ -269312,13 +257402,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(235), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3420), 2, + ACTIONS(3332), 2, anon_sym_true, anon_sym_false, - STATE(1383), 2, + STATE(1340), 2, sym__raw_str, sym__str_double_quotes, - STATE(2095), 4, + STATE(2017), 4, sym_expr_unary, sym_expr_binary, sym_val_range, @@ -269330,7 +257420,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(2082), 12, + STATE(1992), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -269343,7 +257433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [37798] = 38, + [33844] = 38, ACTIONS(153), 1, anon_sym_LBRACK, ACTIONS(155), 1, @@ -269372,37 +257462,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(1012), 1, anon_sym_DOLLAR, - ACTIONS(3418), 1, + ACTIONS(3330), 1, anon_sym_null, - ACTIONS(3422), 1, + ACTIONS(3334), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3424), 1, + ACTIONS(3336), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3430), 1, + ACTIONS(3408), 1, anon_sym_COLON2, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(1665), 1, - sym_expr_parenthesized, - STATE(1668), 1, + STATE(1585), 1, sym_val_variable, - STATE(1848), 1, + STATE(1628), 1, + sym_expr_parenthesized, + STATE(1842), 1, sym__inter_single_quotes, - STATE(1849), 1, + STATE(1843), 1, sym__inter_double_quotes, - STATE(2104), 1, + STATE(2018), 1, sym__expr_unary_minus, - STATE(2247), 1, + STATE(2114), 1, sym_comment, - STATE(2977), 1, + STATE(2848), 1, sym__val_number_decimal, - STATE(3852), 1, + STATE(3679), 1, sym__expr_binary_expression, - STATE(7367), 1, + STATE(6880), 1, sym__expression, ACTIONS(207), 2, anon_sym_DOT_DOT_EQ, @@ -269413,13 +257503,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(235), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3420), 2, + ACTIONS(3332), 2, anon_sym_true, anon_sym_false, - STATE(1383), 2, + STATE(1340), 2, sym__raw_str, sym__str_double_quotes, - STATE(2095), 4, + STATE(2017), 4, sym_expr_unary, sym_expr_binary, sym_val_range, @@ -269431,7 +257521,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(2082), 12, + STATE(1992), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -269444,219 +257534,14 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [37937] = 6, + [33983] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4857), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5305), 1, - anon_sym_DOT, - STATE(2248), 1, - sym_comment, - ACTIONS(1666), 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(1668), 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [38012] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2249), 1, - sym_comment, - STATE(2290), 1, - aux_sym_shebang_repeat1, - ACTIONS(5094), 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(5092), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [38085] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2250), 1, - sym_comment, - ACTIONS(5255), 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(5253), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [38158] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2250), 1, + STATE(2044), 1, aux_sym_shebang_repeat1, - STATE(2251), 1, + STATE(2115), 1, sym_comment, - ACTIONS(5094), 13, + ACTIONS(5038), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269670,7 +257555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5092), 46, + ACTIONS(5036), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269717,16 +257602,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, - [38231] = 6, + [34056] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1780), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - STATE(2252), 1, + STATE(2116), 1, sym_comment, - ACTIONS(2041), 13, + STATE(6968), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269740,7 +257625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2043), 45, + ACTIONS(4956), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -269786,14 +257671,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, - [38306] = 5, + [34131] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(2181), 1, - aux_sym_shebang_repeat1, - STATE(2253), 1, + ACTIONS(1477), 1, + aux_sym_unquoted_token2, + ACTIONS(2140), 1, + anon_sym_LPAREN2, + STATE(2117), 1, sym_comment, - ACTIONS(5110), 13, + ACTIONS(2138), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269807,7 +257694,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(5108), 46, + ACTIONS(2142), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269819,10 +257707,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, @@ -269854,14 +257740,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, - [38379] = 5, + [34206] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2254), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(2118), 1, sym_comment, - ACTIONS(5291), 13, + STATE(6968), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269875,7 +257763,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(5289), 46, + ACTIONS(4956), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269887,10 +257776,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, @@ -269922,14 +257809,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, - [38452] = 5, + [34281] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2255), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(2119), 1, sym_comment, - ACTIONS(5291), 13, + STATE(6968), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269943,7 +257832,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(5289), 46, + ACTIONS(4956), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269955,10 +257845,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, @@ -269990,14 +257878,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, - [38525] = 5, + [34356] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(2203), 1, - aux_sym_shebang_repeat1, - STATE(2256), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(2120), 1, sym_comment, - ACTIONS(5098), 13, + STATE(6968), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270011,7 +257901,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(5096), 46, + ACTIONS(4956), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270023,10 +257914,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, @@ -270058,112 +257947,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, - [38598] = 35, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, - sym_raw_string_begin, - ACTIONS(3570), 1, - aux_sym_unquoted_token1, - ACTIONS(3842), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3844), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3846), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3848), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4135), 1, - anon_sym_DOLLAR, - ACTIONS(4139), 1, - anon_sym_DOT_DOT, - ACTIONS(4159), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4161), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5273), 1, - anon_sym_LBRACK, - ACTIONS(5277), 1, - anon_sym_DASH_DASH, - ACTIONS(5279), 1, - anon_sym_DASH2, - ACTIONS(5283), 1, - sym_val_date, - ACTIONS(5293), 1, - anon_sym_LPAREN, - STATE(2233), 1, - aux_sym_overlay_hide_repeat1, - STATE(2257), 1, - sym_comment, - STATE(5242), 1, - sym__inter_single_quotes, - STATE(5247), 1, - sym__inter_double_quotes, - STATE(5822), 1, - sym__val_number_decimal, - STATE(7723), 1, - sym__val_range, - STATE(7727), 1, - sym__unquoted_anonymous_prefix, - STATE(7914), 1, - sym_val_bool, - ACTIONS(1264), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3840), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4141), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(3455), 2, - sym_short_flag, - sym_long_flag, - STATE(3459), 2, - sym_val_list, - sym__flag, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5295), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(5039), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2728), 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(2730), 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, - [38731] = 5, + [34431] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2258), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(2121), 1, sym_comment, - ACTIONS(5259), 13, + STATE(6968), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270177,7 +257970,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(5257), 46, + ACTIONS(4956), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270189,10 +257983,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, @@ -270224,14 +258016,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, - [38804] = 5, + [34506] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(2091), 1, aux_sym_shebang_repeat1, - STATE(2259), 1, + STATE(2122), 1, sym_comment, - ACTIONS(5259), 13, + ACTIONS(5068), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270245,7 +258037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 46, + ACTIONS(5066), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270292,83 +258084,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, - [38877] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - STATE(2260), 1, - sym_comment, - ACTIONS(1778), 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(1786), 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [38952] = 5, + [34579] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2258), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2261), 1, + STATE(2123), 1, sym_comment, - ACTIONS(5110), 13, + ACTIONS(5235), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270382,7 +258105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5108), 46, + ACTIONS(5233), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270429,14 +258152,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, - [39025] = 5, + [34652] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2262), 1, + STATE(2124), 1, sym_comment, - ACTIONS(5259), 13, + ACTIONS(5219), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270450,7 +258173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 46, + ACTIONS(5217), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270497,14 +258220,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, - [39098] = 5, + [34725] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(2072), 1, aux_sym_shebang_repeat1, - STATE(2263), 1, + STATE(2125), 1, sym_comment, - ACTIONS(5291), 13, + ACTIONS(5046), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270518,7 +258241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5289), 46, + ACTIONS(5044), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270565,14 +258288,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, - [39171] = 5, + [34798] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2264), 1, - sym_comment, - STATE(2288), 1, + STATE(2048), 1, aux_sym_shebang_repeat1, - ACTIONS(5309), 13, + STATE(2126), 1, + sym_comment, + ACTIONS(5046), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270586,7 +258309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5307), 46, + ACTIONS(5044), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270633,97 +258356,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, - [39244] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(2265), 1, - sym_comment, - STATE(7375), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5000), 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(4998), 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [39319] = 5, - ACTIONS(245), 1, + [34871] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2266), 1, + ACTIONS(2164), 1, + anon_sym_LPAREN2, + ACTIONS(2168), 1, + aux_sym_unquoted_token4, + STATE(2127), 1, sym_comment, - ACTIONS(5255), 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(5253), 46, + ACTIONS(2166), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270735,10 +258378,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(2162), 46, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -270749,19 +258393,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, @@ -270770,14 +258425,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, - [39392] = 5, + [34946] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(2239), 1, - aux_sym_shebang_repeat1, - STATE(2267), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(2128), 1, sym_comment, - ACTIONS(5094), 13, + STATE(6968), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270791,7 +258448,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(5092), 46, + ACTIONS(4956), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270803,10 +258461,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, @@ -270838,14 +258494,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, - [39465] = 5, + [35021] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4715), 1, - aux_sym_unquoted_token2, - STATE(2268), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2129), 1, sym_comment, - ACTIONS(1579), 13, + ACTIONS(5215), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270859,7 +258515,7 @@ 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), 46, + ACTIONS(5213), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270874,7 +258530,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, @@ -270906,115 +258562,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, - [39538] = 38, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(155), 1, - anon_sym_LPAREN, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(185), 1, - anon_sym_DOT_DOT, - ACTIONS(201), 1, - aux_sym_expr_unary_token1, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, + [35094] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(247), 1, - sym_raw_string_begin, - ACTIONS(375), 1, - anon_sym_DASH2, - ACTIONS(1012), 1, - anon_sym_DOLLAR, - ACTIONS(3418), 1, - anon_sym_null, - ACTIONS(3422), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3424), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3426), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3440), 1, - anon_sym_COLON2, - STATE(1591), 1, - sym__val_number, - STATE(1665), 1, - sym_expr_parenthesized, - STATE(1668), 1, - sym_val_variable, - STATE(1848), 1, - sym__inter_single_quotes, - STATE(1849), 1, - sym__inter_double_quotes, - STATE(2104), 1, - sym__expr_unary_minus, - STATE(2269), 1, - sym_comment, - STATE(2977), 1, - sym__val_number_decimal, - STATE(3852), 1, - sym__expr_binary_expression, - STATE(7508), 1, - sym__expression, - ACTIONS(207), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3420), 2, - anon_sym_true, - anon_sym_false, - STATE(1383), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2095), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(223), 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(2082), 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, - [39677] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1653), 1, + STATE(2085), 1, aux_sym_shebang_repeat1, - STATE(2270), 1, + STATE(2130), 1, sym_comment, - ACTIONS(5291), 13, + ACTIONS(5046), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271028,7 +258583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5289), 46, + ACTIONS(5044), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271075,14 +258630,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, - [39750] = 5, + [35167] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2230), 1, + STATE(2040), 1, aux_sym_shebang_repeat1, - STATE(2271), 1, + STATE(2131), 1, sym_comment, - ACTIONS(5145), 13, + ACTIONS(5046), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271096,7 +258651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5143), 46, + ACTIONS(5044), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271143,14 +258698,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, - [39823] = 5, + [35240] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2272), 1, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + STATE(2132), 1, sym_comment, - ACTIONS(5259), 13, + ACTIONS(1805), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271164,7 +258721,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(5257), 46, + ACTIONS(1813), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271176,10 +258734,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, @@ -271211,14 +258767,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, - [39896] = 5, + [35315] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2222), 1, + STATE(2031), 1, aux_sym_shebang_repeat1, - STATE(2273), 1, + STATE(2133), 1, sym_comment, - ACTIONS(5145), 13, + ACTIONS(5046), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271232,7 +258788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5143), 46, + ACTIONS(5044), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271279,28 +258835,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, - [39969] = 5, - ACTIONS(245), 1, + [35388] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2274), 1, + ACTIONS(2104), 1, + anon_sym_LPAREN2, + ACTIONS(2106), 1, + aux_sym_unquoted_token4, + STATE(2134), 1, sym_comment, - ACTIONS(5259), 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(5257), 46, + ACTIONS(994), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271312,10 +258857,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(998), 46, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -271326,19 +258872,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, @@ -271347,16 +258904,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, - [40042] = 6, + [35463] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - ACTIONS(2051), 1, - anon_sym_LPAREN2, - STATE(2275), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2135), 1, sym_comment, - ACTIONS(2049), 13, + ACTIONS(5249), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271370,8 +258925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2053), 45, - ts_builtin_sym_end, + ACTIONS(5247), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271383,8 +258937,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, @@ -271416,14 +258972,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40117] = 5, + [35536] = 38, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + ACTIONS(247), 1, + sym_raw_string_begin, + ACTIONS(375), 1, + anon_sym_DASH2, + ACTIONS(1012), 1, + anon_sym_DOLLAR, + ACTIONS(3330), 1, + anon_sym_null, + ACTIONS(3334), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3336), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3342), 1, + anon_sym_COLON2, + STATE(1499), 1, + sym__val_number, + STATE(1585), 1, + sym_val_variable, + STATE(1628), 1, + sym_expr_parenthesized, + STATE(1842), 1, + sym__inter_single_quotes, + STATE(1843), 1, + sym__inter_double_quotes, + STATE(2018), 1, + sym__expr_unary_minus, + STATE(2136), 1, + sym_comment, + STATE(2848), 1, + sym__val_number_decimal, + STATE(3679), 1, + sym__expr_binary_expression, + STATE(6872), 1, + sym__expression, + ACTIONS(207), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3332), 2, + anon_sym_true, + anon_sym_false, + STATE(1340), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2017), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(223), 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(1992), 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, + [35675] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2049), 1, aux_sym_shebang_repeat1, - STATE(2276), 1, + STATE(2137), 1, sym_comment, - ACTIONS(5259), 13, + ACTIONS(5038), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271437,7 +259094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 46, + ACTIONS(5036), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271484,14 +259141,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40190] = 5, + [35748] = 38, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2277), 1, + ACTIONS(247), 1, + sym_raw_string_begin, + ACTIONS(375), 1, + anon_sym_DASH2, + ACTIONS(1012), 1, + anon_sym_DOLLAR, + ACTIONS(3330), 1, + anon_sym_null, + ACTIONS(3334), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3336), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3342), 1, + anon_sym_COLON2, + STATE(1499), 1, + sym__val_number, + STATE(1585), 1, + sym_val_variable, + STATE(1628), 1, + sym_expr_parenthesized, + STATE(1842), 1, + sym__inter_single_quotes, + STATE(1843), 1, + sym__inter_double_quotes, + STATE(2018), 1, + sym__expr_unary_minus, + STATE(2138), 1, sym_comment, - ACTIONS(5251), 13, + STATE(2848), 1, + sym__val_number_decimal, + STATE(3679), 1, + sym__expr_binary_expression, + STATE(6880), 1, + sym__expression, + ACTIONS(207), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3332), 2, + anon_sym_true, + anon_sym_false, + STATE(1340), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2017), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(223), 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(1992), 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, + [35887] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2139), 1, + sym_comment, + STATE(2167), 1, + aux_sym_shebang_repeat1, + ACTIONS(5042), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271505,7 +259263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5249), 46, + ACTIONS(5040), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271552,14 +259310,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, - [40263] = 5, + [35960] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(2074), 1, aux_sym_shebang_repeat1, - STATE(2278), 1, + STATE(2140), 1, sym_comment, - ACTIONS(5251), 13, + ACTIONS(5068), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271573,7 +259331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5249), 46, + ACTIONS(5066), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271620,16 +259378,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, - [40336] = 6, + [36033] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(2279), 1, + STATE(2141), 1, sym_comment, - STATE(7375), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5000), 13, + STATE(2154), 1, + aux_sym_shebang_repeat1, + ACTIONS(5042), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271643,8 +259399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4998), 45, - ts_builtin_sym_end, + ACTIONS(5040), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271656,8 +259411,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, @@ -271689,16 +259446,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, - [40411] = 6, + [36106] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(2280), 1, + STATE(2142), 1, sym_comment, - STATE(7375), 1, + STATE(6968), 1, sym__expr_parenthesized_immediate, - ACTIONS(5000), 13, + ACTIONS(4958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271712,7 +259469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4998), 45, + ACTIONS(4956), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -271758,14 +259515,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, - [40486] = 5, + [36181] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(2027), 1, aux_sym_shebang_repeat1, - STATE(2281), 1, + STATE(2143), 1, sym_comment, - ACTIONS(5259), 13, + ACTIONS(5038), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271779,7 +259536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 46, + ACTIONS(5036), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271826,12 +259583,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, - [40559] = 4, + [36254] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2282), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2144), 1, sym_comment, - ACTIONS(1719), 14, + ACTIONS(5253), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271845,9 +259604,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_token2, - ACTIONS(1721), 46, - ts_builtin_sym_end, + ACTIONS(5251), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271859,8 +259616,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, @@ -271875,7 +259634,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, @@ -271893,14 +259651,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, - [40630] = 5, + [36327] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2238), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2283), 1, + STATE(2145), 1, sym_comment, - ACTIONS(5098), 13, + ACTIONS(5219), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271914,7 +259672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5096), 46, + ACTIONS(5217), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271961,14 +259719,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, - [40703] = 5, + [36400] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(2060), 1, aux_sym_shebang_repeat1, - STATE(2284), 1, + STATE(2146), 1, sym_comment, - ACTIONS(5259), 13, + ACTIONS(5042), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271982,7 +259740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 46, + ACTIONS(5040), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272029,14 +259787,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, - [40776] = 5, + [36473] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(2073), 1, aux_sym_shebang_repeat1, - STATE(2285), 1, + STATE(2147), 1, sym_comment, - ACTIONS(5259), 13, + ACTIONS(5068), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272050,7 +259808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 46, + ACTIONS(5066), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272097,14 +259855,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, - [40849] = 5, + [36546] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(2050), 1, aux_sym_shebang_repeat1, - STATE(2286), 1, + STATE(2148), 1, sym_comment, - ACTIONS(5259), 13, + ACTIONS(5257), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272118,7 +259876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 46, + ACTIONS(5255), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272165,14 +259923,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, - [40922] = 5, + [36619] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2287), 1, - sym_comment, - STATE(2289), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(5110), 13, + STATE(2149), 1, + sym_comment, + ACTIONS(5215), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272186,7 +259944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5108), 46, + ACTIONS(5213), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272233,14 +259991,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, - [40995] = 5, + [36692] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2288), 1, + STATE(2150), 1, sym_comment, - ACTIONS(5313), 13, + ACTIONS(5235), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272254,7 +260012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5311), 46, + ACTIONS(5233), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272301,14 +260059,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, - [41068] = 5, + [36765] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(2107), 1, aux_sym_shebang_repeat1, - STATE(2289), 1, + STATE(2151), 1, sym_comment, - ACTIONS(5259), 13, + ACTIONS(5046), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272322,7 +260080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5257), 46, + ACTIONS(5044), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272369,14 +260127,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, - [41141] = 5, + [36838] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2290), 1, + STATE(2152), 1, sym_comment, - ACTIONS(5255), 13, + ACTIONS(5235), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272390,7 +260148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5253), 46, + ACTIONS(5233), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272437,14 +260195,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, - [41214] = 5, + [36911] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2284), 1, + STATE(2078), 1, aux_sym_shebang_repeat1, - STATE(2291), 1, + STATE(2153), 1, sym_comment, - ACTIONS(5110), 13, + ACTIONS(5046), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272458,7 +260216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5108), 46, + ACTIONS(5044), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272505,45 +260263,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, - [41287] = 14, + [36984] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, - anon_sym_DASH2, - ACTIONS(5329), 1, - anon_sym_PLUS2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2292), 1, + STATE(2154), 1, sym_comment, - ACTIONS(5315), 2, + ACTIONS(5219), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5321), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5325), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5323), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5319), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5313), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272552,7 +260284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5311), 28, + ACTIONS(5217), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272565,11 +260297,29 @@ 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -272581,48 +260331,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, - [41377] = 15, + [37057] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5335), 1, - anon_sym_DASH2, - ACTIONS(5349), 1, - anon_sym_PLUS2, - ACTIONS(5353), 1, - anon_sym_bit_DASHand2, - STATE(2293), 1, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + STATE(2155), 1, sym_comment, - ACTIONS(5333), 2, + ACTIONS(2134), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5339), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5343), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5345), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5341), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5337), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5209), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272631,7 +260354,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(5207), 26, + ACTIONS(2136), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272643,11 +260367,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -272658,45 +260400,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, - [41469] = 14, + [37132] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, - anon_sym_DASH2, - ACTIONS(5329), 1, - anon_sym_PLUS2, - STATE(1653), 1, + STATE(2051), 1, aux_sym_shebang_repeat1, - STATE(2294), 1, + STATE(2156), 1, sym_comment, - ACTIONS(5315), 2, + ACTIONS(5038), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5321), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5325), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5323), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5319), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5299), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272705,7 +260421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5297), 28, + ACTIONS(5036), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272718,11 +260434,29 @@ 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -272734,31 +260468,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, - [41559] = 11, + [37205] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(5358), 1, - anon_sym_DASH2, - ACTIONS(5366), 1, - anon_sym_PLUS2, - STATE(2295), 1, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + STATE(2157), 1, sym_comment, - STATE(2412), 1, - aux_sym_shebang_repeat1, - ACTIONS(5360), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5362), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5309), 10, + ACTIONS(1782), 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, @@ -272767,7 +260491,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(5307), 39, + ACTIONS(1790), 45, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272778,7 +260504,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, @@ -272794,6 +260520,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, @@ -272807,56 +260537,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, - [41643] = 15, - ACTIONS(245), 1, + [37280] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(5358), 1, - anon_sym_DASH2, - ACTIONS(5366), 1, - anon_sym_PLUS2, - STATE(2292), 1, - aux_sym_shebang_repeat1, - STATE(2296), 1, + ACTIONS(2070), 1, + anon_sym_LPAREN2, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(2158), 1, sym_comment, - ACTIONS(5360), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5362), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5374), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5372), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5309), 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(5307), 27, + ACTIONS(2130), 12, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272867,64 +260559,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, + ACTIONS(2128), 46, + 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_has2, + anon_sym_not_DASHhas2, + 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_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, - [41735] = 15, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5358), 1, - anon_sym_DASH2, - ACTIONS(5366), 1, - anon_sym_PLUS2, - ACTIONS(5376), 1, - sym__newline, - STATE(2297), 1, - sym_comment, - STATE(2333), 1, - aux_sym_shebang_repeat1, - ACTIONS(5360), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5374), 2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5372), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5271), 8, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272933,26 +260598,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(5269), 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, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272961,50 +260606,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, - [41827] = 16, + [37355] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5335), 1, - anon_sym_DASH2, - ACTIONS(5349), 1, - anon_sym_PLUS2, - ACTIONS(5353), 1, - anon_sym_bit_DASHand2, - ACTIONS(5379), 1, - anon_sym_bit_DASHxor2, - STATE(2298), 1, + STATE(2110), 1, + aux_sym_shebang_repeat1, + STATE(2159), 1, sym_comment, - ACTIONS(5333), 2, + ACTIONS(5068), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5339), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5343), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5345), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5341), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5337), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5209), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273013,7 +260627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5207), 25, + ACTIONS(5066), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273026,10 +260640,31 @@ 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_DASH2, + anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -273039,54 +260674,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, - [41921] = 18, + [37428] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, - anon_sym_DASH2, - ACTIONS(5329), 1, - anon_sym_PLUS2, - ACTIONS(5383), 1, - anon_sym_bit_DASHand2, - ACTIONS(5385), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5387), 1, - anon_sym_bit_DASHor2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2299), 1, + STATE(2160), 1, sym_comment, - ACTIONS(5315), 2, + ACTIONS(5215), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5321), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5325), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5381), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5323), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5319), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5303), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273095,7 +260695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 23, + ACTIONS(5213), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273108,86 +260708,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_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, - [42019] = 17, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5358), 1, - anon_sym_DASH2, - ACTIONS(5366), 1, - anon_sym_PLUS2, - ACTIONS(5389), 1, - sym__newline, - ACTIONS(5394), 1, - anon_sym_bit_DASHand2, - STATE(2300), 1, - sym_comment, - STATE(2349), 1, - aux_sym_shebang_repeat1, - ACTIONS(5360), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5362), 2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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(5364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5374), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5392), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5372), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5287), 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(5285), 24, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, @@ -273198,118 +260742,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, - [42115] = 37, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(155), 1, - anon_sym_LPAREN, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(201), 1, - aux_sym_expr_unary_token1, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, + [37501] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(247), 1, - sym_raw_string_begin, - ACTIONS(375), 1, - anon_sym_DASH2, - ACTIONS(1012), 1, - anon_sym_DOLLAR, - ACTIONS(3418), 1, - anon_sym_null, - ACTIONS(3426), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5396), 1, - anon_sym_DOT_DOT, - ACTIONS(5400), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5402), 1, - aux_sym__val_number_decimal_token2, - STATE(1591), 1, - sym__val_number, - STATE(1848), 1, - sym__inter_single_quotes, - STATE(1849), 1, - sym__inter_double_quotes, - STATE(2104), 1, - sym__expr_unary_minus, - STATE(2301), 1, - sym_comment, - STATE(3621), 1, - sym__val_number_decimal, - STATE(3654), 1, - sym_val_variable, - STATE(3660), 1, - sym_expr_parenthesized, - STATE(3851), 1, - sym__expr_binary_expression, - STATE(7928), 1, - sym__expression, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3420), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5398), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1383), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2095), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(223), 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(2082), 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, - [42251] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - STATE(2302), 1, - sym_comment, - STATE(2373), 1, + STATE(2149), 1, aux_sym_shebang_repeat1, - ACTIONS(5362), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5309), 13, + STATE(2161), 1, + sym_comment, + ACTIONS(5046), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273323,7 +260763,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(5307), 42, + ACTIONS(5044), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273337,6 +260778,7 @@ 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, @@ -273351,6 +260793,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, @@ -273366,56 +260810,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, - [42327] = 19, + [37574] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5358), 1, - anon_sym_DASH2, - ACTIONS(5366), 1, - anon_sym_PLUS2, - ACTIONS(5394), 1, - anon_sym_bit_DASHand2, - ACTIONS(5404), 1, - sym__newline, - ACTIONS(5407), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5409), 1, - anon_sym_bit_DASHor2, - STATE(2299), 1, + STATE(2066), 1, aux_sym_shebang_repeat1, - STATE(2303), 1, + STATE(2162), 1, sym_comment, - ACTIONS(5360), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5362), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, + ACTIONS(5068), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5374), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5392), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5372), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5267), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273424,7 +260831,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(5265), 22, + ACTIONS(5066), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273436,9 +260844,32 @@ 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -273447,61 +260878,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, - [42427] = 17, - ACTIONS(245), 1, + [37647] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5317), 1, - anon_sym_DASH2, - ACTIONS(5329), 1, - anon_sym_PLUS2, - ACTIONS(5383), 1, - anon_sym_bit_DASHand2, - ACTIONS(5385), 1, - anon_sym_bit_DASHxor2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2304), 1, + STATE(2163), 1, sym_comment, - ACTIONS(5315), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5321), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5325), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5381), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5323), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5319), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5299), 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(5297), 24, + ACTIONS(2078), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273513,69 +260896,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_LPAREN2, + ACTIONS(2076), 47, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, 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, - [42523] = 19, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5317), 1, - anon_sym_DASH2, - ACTIONS(5329), 1, - anon_sym_PLUS2, - ACTIONS(5383), 1, - anon_sym_bit_DASHand2, - ACTIONS(5385), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5387), 1, - anon_sym_bit_DASHor2, - ACTIONS(5411), 1, - anon_sym_and2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2305), 1, - sym_comment, - ACTIONS(5315), 2, - anon_sym_GT2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, anon_sym_LT2, - ACTIONS(5321), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5325), 2, + 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(5327), 2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5323), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5319), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5303), 8, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273584,21 +260936,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(5301), 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, @@ -273607,31 +260944,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, - [42623] = 11, + aux_sym_unquoted_token4, + [37718] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5358), 1, - anon_sym_DASH2, - ACTIONS(5366), 1, - anon_sym_PLUS2, - ACTIONS(5404), 1, - sym__newline, - STATE(2306), 1, - sym_comment, - STATE(2331), 1, + STATE(2033), 1, aux_sym_shebang_repeat1, - ACTIONS(5360), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5362), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5267), 10, + STATE(2164), 1, + sym_comment, + ACTIONS(5038), 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, @@ -273640,7 +260966,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(5265), 39, + ACTIONS(5036), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273652,7 +260979,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, @@ -273667,6 +260996,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, @@ -273680,52 +261013,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, - [42707] = 17, + [37791] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, - anon_sym_DASH2, - ACTIONS(5329), 1, - anon_sym_PLUS2, - ACTIONS(5383), 1, - anon_sym_bit_DASHand2, - ACTIONS(5385), 1, - anon_sym_bit_DASHxor2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2307), 1, + STATE(2165), 1, sym_comment, - ACTIONS(5315), 2, + ACTIONS(5219), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5321), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5325), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5381), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5323), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5319), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5263), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273734,7 +261034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5261), 24, + ACTIONS(5217), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273747,9 +261047,31 @@ 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -273759,58 +261081,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, - [42803] = 20, + [37864] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, - anon_sym_DASH2, - ACTIONS(5329), 1, - anon_sym_PLUS2, - ACTIONS(5383), 1, - anon_sym_bit_DASHand2, - ACTIONS(5385), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5387), 1, - anon_sym_bit_DASHor2, - ACTIONS(5411), 1, - anon_sym_and2, - ACTIONS(5413), 1, - anon_sym_xor2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2308), 1, + STATE(2166), 1, sym_comment, - ACTIONS(5315), 2, + ACTIONS(5215), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5321), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5325), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5381), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5323), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5319), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5303), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273819,7 +261102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 21, + ACTIONS(5213), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273832,7 +261115,32 @@ 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -273841,56 +261149,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, - [42905] = 19, + [37937] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, - anon_sym_DASH2, - ACTIONS(5329), 1, - anon_sym_PLUS2, - ACTIONS(5383), 1, - anon_sym_bit_DASHand2, - ACTIONS(5385), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5387), 1, - anon_sym_bit_DASHor2, - ACTIONS(5411), 1, - anon_sym_and2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2309), 1, + STATE(2167), 1, sym_comment, - ACTIONS(5315), 2, + ACTIONS(5219), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5321), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5325), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5381), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5323), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5319), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5299), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273899,7 +261170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5297), 22, + ACTIONS(5217), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273912,8 +261183,32 @@ 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -273922,54 +261217,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, - [43005] = 18, + [38010] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5358), 1, - anon_sym_DASH2, - ACTIONS(5366), 1, - anon_sym_PLUS2, - ACTIONS(5394), 1, - anon_sym_bit_DASHand2, - ACTIONS(5404), 1, - sym__newline, - ACTIONS(5407), 1, - anon_sym_bit_DASHxor2, - STATE(2310), 1, + STATE(2168), 1, sym_comment, - STATE(2375), 1, + STATE(2171), 1, aux_sym_shebang_repeat1, - ACTIONS(5360), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5362), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, + ACTIONS(5042), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5374), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5392), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5372), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5267), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273978,7 +261238,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(5265), 23, + ACTIONS(5040), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273990,9 +261251,31 @@ 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -274002,50 +261285,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, - [43103] = 16, + [38083] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5358), 1, - anon_sym_DASH2, - ACTIONS(5366), 1, - anon_sym_PLUS2, - ACTIONS(5389), 1, - sym__newline, - STATE(2311), 1, - sym_comment, - STATE(2395), 1, + STATE(2077), 1, aux_sym_shebang_repeat1, - ACTIONS(5360), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5362), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, + STATE(2169), 1, + sym_comment, + ACTIONS(5042), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5374), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5392), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5372), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5287), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274054,7 +261306,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(5285), 25, + ACTIONS(5040), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274066,9 +261319,29 @@ 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -274080,58 +261353,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, - [43197] = 20, + [38156] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, - anon_sym_DASH2, - ACTIONS(5329), 1, - anon_sym_PLUS2, - ACTIONS(5383), 1, - anon_sym_bit_DASHand2, - ACTIONS(5385), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5387), 1, - anon_sym_bit_DASHor2, - ACTIONS(5411), 1, - anon_sym_and2, - ACTIONS(5413), 1, - anon_sym_xor2, - STATE(1653), 1, + STATE(2026), 1, aux_sym_shebang_repeat1, - STATE(2312), 1, + STATE(2170), 1, sym_comment, - ACTIONS(5315), 2, + ACTIONS(5038), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5321), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5325), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5381), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5323), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5319), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5299), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274140,7 +261374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5297), 21, + ACTIONS(5036), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274153,7 +261387,32 @@ 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -274162,32 +261421,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, - [43299] = 11, + [38229] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, - anon_sym_DASH2, - ACTIONS(5329), 1, - anon_sym_PLUS2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2313), 1, + STATE(2171), 1, sym_comment, - ACTIONS(5321), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5325), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5299), 10, + ACTIONS(5219), 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, @@ -274196,7 +261442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5297), 38, + ACTIONS(5217), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274209,7 +261455,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, @@ -274224,6 +261472,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, @@ -274235,26 +261489,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, - [43383] = 4, - ACTIONS(245), 1, + [38302] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2314), 1, + ACTIONS(2070), 1, + anon_sym_LPAREN2, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(2172), 1, sym_comment, - ACTIONS(5127), 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(5129), 46, + ACTIONS(2072), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274266,10 +261511,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(2068), 46, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -274280,19 +261526,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, @@ -274301,19 +261558,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, - [43453] = 7, + [38377] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5404), 1, - sym__newline, - STATE(2315), 1, - sym_comment, - STATE(2356), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(5362), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5267), 13, + STATE(2173), 1, + sym_comment, + ACTIONS(5219), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274327,7 +261579,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(5265), 42, + ACTIONS(5217), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274341,6 +261594,7 @@ 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, @@ -274355,6 +261609,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, @@ -274370,45 +261626,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, - [43529] = 14, + [38450] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, - anon_sym_DASH2, - ACTIONS(5329), 1, - anon_sym_PLUS2, - STATE(1653), 1, + STATE(2160), 1, aux_sym_shebang_repeat1, - STATE(2316), 1, + STATE(2174), 1, sym_comment, - ACTIONS(5315), 2, + ACTIONS(5046), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5321), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5325), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5323), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5319), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5303), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274417,7 +261647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 28, + ACTIONS(5044), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274430,11 +261660,29 @@ 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -274446,31 +261694,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, - [43619] = 11, + [38523] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5358), 1, - anon_sym_DASH2, - ACTIONS(5366), 1, - anon_sym_PLUS2, - ACTIONS(5389), 1, - sym__newline, - STATE(2317), 1, - sym_comment, - STATE(2400), 1, + STATE(2152), 1, aux_sym_shebang_repeat1, - ACTIONS(5360), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5362), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5287), 10, + STATE(2175), 1, + sym_comment, + ACTIONS(5068), 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, @@ -274479,7 +261715,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(5285), 39, + ACTIONS(5066), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274491,7 +261728,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, @@ -274506,6 +261745,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, @@ -274519,56 +261762,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, - [43703] = 19, + [38596] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, + ACTIONS(5261), 1, anon_sym_DASH2, - ACTIONS(5329), 1, + ACTIONS(5271), 1, anon_sym_PLUS2, - ACTIONS(5383), 1, - anon_sym_bit_DASHand2, - ACTIONS(5385), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5387), 1, - anon_sym_bit_DASHor2, - ACTIONS(5411), 1, - anon_sym_and2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2318), 1, + STATE(2176), 1, sym_comment, - ACTIONS(5315), 2, + ACTIONS(5259), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5321), 2, + ACTIONS(5263), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5325), 2, + ACTIONS(5267), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, + ACTIONS(5269), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, + ACTIONS(5273), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5323), 4, + ACTIONS(5265), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5319), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5263), 8, + ACTIONS(5187), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274577,7 +261800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5261), 22, + ACTIONS(5185), 35, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274590,8 +261813,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_in2, + anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + 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, @@ -274600,24 +261836,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43803] = 7, + [38682] = 37, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5389), 1, - sym__newline, - STATE(2319), 1, + ACTIONS(247), 1, + sym_raw_string_begin, + ACTIONS(375), 1, + anon_sym_DASH2, + ACTIONS(1012), 1, + anon_sym_DOLLAR, + ACTIONS(3330), 1, + anon_sym_null, + ACTIONS(3334), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3336), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3340), 1, + aux_sym__val_number_decimal_token4, + STATE(1499), 1, + sym__val_number, + STATE(1585), 1, + sym_val_variable, + STATE(1628), 1, + sym_expr_parenthesized, + STATE(1842), 1, + sym__inter_single_quotes, + STATE(1843), 1, + sym__inter_double_quotes, + STATE(2018), 1, + sym__expr_unary_minus, + STATE(2177), 1, sym_comment, - STATE(2332), 1, + STATE(2848), 1, + sym__val_number_decimal, + STATE(3679), 1, + sym__expr_binary_expression, + STATE(6947), 1, + sym__expression, + ACTIONS(207), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3332), 2, + anon_sym_true, + anon_sym_false, + STATE(1340), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2017), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(223), 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(1992), 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, + [38818] = 11, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5275), 1, + anon_sym_DASH2, + ACTIONS(5283), 1, + anon_sym_PLUS2, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(5362), 2, + STATE(2178), 1, + sym_comment, + ACTIONS(5277), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5287), 13, + ACTIONS(5281), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5285), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5249), 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, @@ -274626,7 +261969,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(5285), 42, + ACTIONS(5247), 38, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274638,7 +261982,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, @@ -274654,10 +261997,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, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -274669,54 +262008,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, - [43879] = 18, + [38902] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5355), 1, + ACTIONS(5287), 1, sym__newline, - ACTIONS(5358), 1, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5366), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - ACTIONS(5394), 1, - anon_sym_bit_DASHand2, - ACTIONS(5407), 1, - anon_sym_bit_DASHxor2, - STATE(2320), 1, + STATE(2179), 1, sym_comment, - STATE(2399), 1, + STATE(2223), 1, aux_sym_shebang_repeat1, - ACTIONS(5360), 2, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5362), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5374), 2, + ACTIONS(5300), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5392), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5372), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5309), 8, + ACTIONS(5231), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274725,7 +262044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5307), 23, + ACTIONS(5229), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274737,9 +262056,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_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -274749,32 +262082,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, - [43977] = 11, + [38988] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, - anon_sym_DASH2, - ACTIONS(5329), 1, - anon_sym_PLUS2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2321), 1, + STATE(2180), 1, sym_comment, - ACTIONS(5321), 2, + ACTIONS(5277), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5325), 2, + ACTIONS(5279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, + ACTIONS(5281), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5313), 10, + ACTIONS(5249), 11, anon_sym_GT2, anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274783,7 +262110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5311), 38, + ACTIONS(5247), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274796,6 +262123,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, @@ -274811,6 +262139,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, @@ -274822,58 +262152,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, - [44061] = 20, + [39066] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5358), 1, - anon_sym_DASH2, - ACTIONS(5366), 1, - anon_sym_PLUS2, - ACTIONS(5389), 1, + ACTIONS(5287), 1, sym__newline, - ACTIONS(5394), 1, - anon_sym_bit_DASHand2, - ACTIONS(5407), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5409), 1, - anon_sym_bit_DASHor2, - ACTIONS(5415), 1, - anon_sym_and2, - STATE(2309), 1, - aux_sym_shebang_repeat1, - STATE(2322), 1, + STATE(2181), 1, sym_comment, - ACTIONS(5360), 2, + STATE(2224), 1, + aux_sym_shebang_repeat1, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5362), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, + ACTIONS(5231), 11, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5374), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5392), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5372), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5287), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274882,7 +262182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5285), 21, + ACTIONS(5229), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274894,8 +262194,27 @@ 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -274904,58 +262223,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, - [44163] = 20, + [39146] = 13, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(5358), 1, + ACTIONS(5275), 1, anon_sym_DASH2, - ACTIONS(5366), 1, + ACTIONS(5283), 1, anon_sym_PLUS2, - ACTIONS(5394), 1, - anon_sym_bit_DASHand2, - ACTIONS(5407), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5409), 1, - anon_sym_bit_DASHor2, - ACTIONS(5415), 1, - anon_sym_and2, - STATE(2323), 1, - sym_comment, - STATE(2388), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(5360), 2, + STATE(2182), 1, + sym_comment, + ACTIONS(5277), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5362), 2, + ACTIONS(5279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, + ACTIONS(5281), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5374), 2, + ACTIONS(5285), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5392), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5372), 4, + ACTIONS(5302), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5304), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5370), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5309), 8, + ACTIONS(5249), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274964,7 +262263,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(5307), 21, + ACTIONS(5247), 34, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274976,8 +262276,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_in2, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + 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, @@ -274986,17 +262298,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, - [44265] = 4, + [39234] = 14, ACTIONS(245), 1, anon_sym_POUND, - STATE(2324), 1, + ACTIONS(5287), 1, + sym__newline, + ACTIONS(5290), 1, + anon_sym_DASH2, + ACTIONS(5298), 1, + anon_sym_PLUS2, + STATE(2183), 1, sym_comment, - ACTIONS(5012), 13, - anon_sym_GT2, + STATE(2225), 1, + aux_sym_shebang_repeat1, + ACTIONS(5292), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5294), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5296), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5300), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5306), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5308), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5231), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275005,9 +262340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5010), 46, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5229), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275018,7 +262351,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, @@ -275028,19 +262361,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_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, @@ -275052,38 +262374,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, - [44335] = 13, + [39324] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, - anon_sym_DASH2, - ACTIONS(5329), 1, - anon_sym_PLUS2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2325), 1, + STATE(2184), 1, sym_comment, - ACTIONS(5315), 2, + ACTIONS(5279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5249), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5321), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5325), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5323), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5263), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275092,7 +262398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5261), 34, + ACTIONS(5247), 43, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275105,6 +262411,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, @@ -275114,8 +262421,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_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, @@ -275127,14 +262442,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, - [44423] = 5, + [39398] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4768), 1, - aux_sym_unquoted_token2, - STATE(2326), 1, + ACTIONS(5287), 1, + sym__newline, + STATE(2185), 1, sym_comment, - ACTIONS(1579), 13, + STATE(2226), 1, + aux_sym_shebang_repeat1, + ACTIONS(5294), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5231), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275148,9 +262468,7 @@ 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), 45, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5229), 42, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275161,6 +262479,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, @@ -275177,8 +262496,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, @@ -275194,54 +262511,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, - [44495] = 18, + [39474] = 18, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, + ACTIONS(5275), 1, anon_sym_DASH2, - ACTIONS(5329), 1, + ACTIONS(5283), 1, anon_sym_PLUS2, - ACTIONS(5383), 1, + ACTIONS(5314), 1, anon_sym_bit_DASHand2, - ACTIONS(5385), 1, + ACTIONS(5316), 1, anon_sym_bit_DASHxor2, - ACTIONS(5387), 1, + ACTIONS(5318), 1, anon_sym_bit_DASHor2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2327), 1, + STATE(2186), 1, sym_comment, - ACTIONS(5315), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5321), 2, + ACTIONS(5277), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5325), 2, + ACTIONS(5279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, + ACTIONS(5281), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, + ACTIONS(5285), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 2, + ACTIONS(5302), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5312), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5323), 4, + ACTIONS(5304), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5319), 6, + ACTIONS(5310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5263), 8, + ACTIONS(5249), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275250,7 +262567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5261), 23, + ACTIONS(5247), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275269,263 +262586,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [44593] = 37, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(155), 1, - anon_sym_LPAREN, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(185), 1, - anon_sym_DOT_DOT, - ACTIONS(201), 1, - aux_sym_expr_unary_token1, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(247), 1, - sym_raw_string_begin, - ACTIONS(375), 1, - anon_sym_DASH2, - ACTIONS(1012), 1, - anon_sym_DOLLAR, - ACTIONS(3418), 1, - anon_sym_null, - ACTIONS(3422), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3424), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3426), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, - aux_sym__val_number_decimal_token4, - STATE(1591), 1, - sym__val_number, - STATE(1665), 1, - sym_expr_parenthesized, - STATE(1668), 1, - sym_val_variable, - STATE(1848), 1, - sym__inter_single_quotes, - STATE(1849), 1, - sym__inter_double_quotes, - STATE(2104), 1, - sym__expr_unary_minus, - STATE(2328), 1, - sym_comment, - STATE(2977), 1, - sym__val_number_decimal, - STATE(3852), 1, - sym__expr_binary_expression, - STATE(7508), 1, - sym__expression, - ACTIONS(207), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3420), 2, - anon_sym_true, - anon_sym_false, - STATE(1383), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2095), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(223), 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(2082), 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, - [44729] = 37, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(155), 1, - anon_sym_LPAREN, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(185), 1, - anon_sym_DOT_DOT, - ACTIONS(201), 1, - aux_sym_expr_unary_token1, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(247), 1, - sym_raw_string_begin, - ACTIONS(375), 1, - anon_sym_DASH2, - ACTIONS(1012), 1, - anon_sym_DOLLAR, - ACTIONS(3418), 1, - anon_sym_null, - ACTIONS(3422), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3424), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3426), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, - aux_sym__val_number_decimal_token4, - STATE(1591), 1, - sym__val_number, - STATE(1665), 1, - sym_expr_parenthesized, - STATE(1668), 1, - sym_val_variable, - STATE(1848), 1, - sym__inter_single_quotes, - STATE(1849), 1, - sym__inter_double_quotes, - STATE(2104), 1, - sym__expr_unary_minus, - STATE(2329), 1, - sym_comment, - STATE(2977), 1, - sym__val_number_decimal, - STATE(3852), 1, - sym__expr_binary_expression, - STATE(7367), 1, - sym__expression, - ACTIONS(207), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3420), 2, - anon_sym_true, - anon_sym_false, - STATE(1383), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2095), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(223), 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(2082), 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, - [44865] = 21, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [39572] = 19, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(5287), 1, sym__newline, - ACTIONS(5358), 1, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5366), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - ACTIONS(5394), 1, + ACTIONS(5324), 1, anon_sym_bit_DASHand2, - ACTIONS(5407), 1, + ACTIONS(5326), 1, anon_sym_bit_DASHxor2, - ACTIONS(5409), 1, + ACTIONS(5328), 1, anon_sym_bit_DASHor2, - ACTIONS(5415), 1, - anon_sym_and2, - ACTIONS(5417), 1, - anon_sym_xor2, - STATE(2312), 1, - aux_sym_shebang_repeat1, - STATE(2330), 1, + STATE(2187), 1, sym_comment, - ACTIONS(5360), 2, + STATE(2228), 1, + aux_sym_shebang_repeat1, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5362), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5374), 2, + ACTIONS(5300), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5392), 2, + ACTIONS(5306), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5322), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5372), 4, + ACTIONS(5308), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5370), 6, + ACTIONS(5320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5287), 8, + ACTIONS(5231), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275534,7 +262649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5285), 20, + ACTIONS(5229), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275546,6 +262661,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, @@ -275555,29 +262672,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, - [44969] = 10, + [39672] = 19, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, + ACTIONS(5275), 1, anon_sym_DASH2, - ACTIONS(5329), 1, + ACTIONS(5283), 1, anon_sym_PLUS2, - STATE(1653), 1, + ACTIONS(5314), 1, + anon_sym_bit_DASHand2, + ACTIONS(5316), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5318), 1, + anon_sym_bit_DASHor2, + ACTIONS(5330), 1, + anon_sym_and2, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2331), 1, + STATE(2188), 1, sym_comment, - ACTIONS(5321), 2, + ACTIONS(5277), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5325), 2, + ACTIONS(5279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, + ACTIONS(5281), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5303), 10, + ACTIONS(5285), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5302), 2, anon_sym_GT2, anon_sym_LT2, + ACTIONS(5312), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5304), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5310), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5249), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275586,7 +262730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 40, + ACTIONS(5247), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275599,26 +262743,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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -275627,22 +262753,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, - [45051] = 6, + [39772] = 20, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2332), 1, + ACTIONS(5287), 1, + sym__newline, + ACTIONS(5290), 1, + anon_sym_DASH2, + ACTIONS(5298), 1, + anon_sym_PLUS2, + ACTIONS(5324), 1, + anon_sym_bit_DASHand2, + ACTIONS(5326), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5328), 1, + anon_sym_bit_DASHor2, + ACTIONS(5332), 1, + anon_sym_and2, + STATE(2189), 1, sym_comment, - ACTIONS(5325), 2, + STATE(2229), 1, + aux_sym_shebang_repeat1, + ACTIONS(5292), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5299), 13, + ACTIONS(5296), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5300), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5306), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5322), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5308), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5320), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5231), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275651,8 +262813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5297), 43, - sym__newline, + ACTIONS(5229), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275664,29 +262825,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_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -275695,45 +262835,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, - [45125] = 14, + [39874] = 20, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, + ACTIONS(5275), 1, anon_sym_DASH2, - ACTIONS(5329), 1, + ACTIONS(5283), 1, anon_sym_PLUS2, - STATE(1653), 1, + ACTIONS(5314), 1, + anon_sym_bit_DASHand2, + ACTIONS(5316), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5318), 1, + anon_sym_bit_DASHor2, + ACTIONS(5330), 1, + anon_sym_and2, + ACTIONS(5334), 1, + anon_sym_xor2, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2333), 1, + STATE(2190), 1, sym_comment, - ACTIONS(5315), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5321), 2, + ACTIONS(5277), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5325), 2, + ACTIONS(5279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, + ACTIONS(5281), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, + ACTIONS(5285), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5323), 4, + ACTIONS(5302), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5312), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5304), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5319), 6, + ACTIONS(5310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5263), 8, + ACTIONS(5249), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275742,7 +262895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5261), 28, + ACTIONS(5247), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275755,14 +262908,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, @@ -275771,24 +262917,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, - [45215] = 7, + [39976] = 21, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5376), 1, + ACTIONS(3756), 1, sym__newline, - STATE(2334), 1, + ACTIONS(5290), 1, + anon_sym_DASH2, + ACTIONS(5298), 1, + anon_sym_PLUS2, + ACTIONS(5324), 1, + anon_sym_bit_DASHand2, + ACTIONS(5326), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5328), 1, + anon_sym_bit_DASHor2, + ACTIONS(5332), 1, + anon_sym_and2, + ACTIONS(5336), 1, + anon_sym_xor2, + STATE(2191), 1, sym_comment, - STATE(2376), 1, + STATE(2301), 1, aux_sym_shebang_repeat1, - ACTIONS(5362), 2, + ACTIONS(5292), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5271), 13, + ACTIONS(5296), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5300), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5306), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5322), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5308), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5320), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5231), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275797,7 +262979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5269), 42, + ACTIONS(5229), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275809,26 +262991,80 @@ 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, + [40080] = 14, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5275), 1, anon_sym_DASH2, + ACTIONS(5283), 1, + anon_sym_PLUS2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2192), 1, + sym_comment, + ACTIONS(5277), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5281), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5285), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5302), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5304), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5310), 6, anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, 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(5249), 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(5247), 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_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, @@ -275840,34 +263076,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, - [45291] = 12, + [40170] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5355), 1, + ACTIONS(5287), 1, sym__newline, - ACTIONS(5358), 1, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5366), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - STATE(2321), 1, - aux_sym_shebang_repeat1, - STATE(2335), 1, + STATE(2193), 1, sym_comment, - ACTIONS(5360), 2, + STATE(2230), 1, + aux_sym_shebang_repeat1, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5362), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5374), 2, + ACTIONS(5300), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5309), 10, + ACTIONS(5306), 2, anon_sym_GT2, anon_sym_LT2, + ACTIONS(5308), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5320), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5231), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275876,7 +263125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5307), 37, + ACTIONS(5229), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275888,19 +263137,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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -275914,27 +263153,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, - [45377] = 9, + [40262] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5389), 1, - sym__newline, - STATE(2336), 1, + STATE(2194), 1, sym_comment, - STATE(2362), 1, - aux_sym_shebang_repeat1, - ACTIONS(5360), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5362), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5287), 11, + ACTIONS(4968), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -275944,7 +263172,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(5285), 40, + ACTIONS(4966), 46, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275955,7 +263185,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, @@ -275972,6 +263201,11 @@ 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, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -275985,48 +263219,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, - [45457] = 15, + [40332] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, - anon_sym_DASH2, - ACTIONS(5329), 1, - anon_sym_PLUS2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2337), 1, + STATE(2195), 1, sym_comment, - ACTIONS(5315), 2, + ACTIONS(4976), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5321), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5325), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5381), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5323), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5319), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5263), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276035,7 +263238,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(5261), 26, + ACTIONS(4974), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276047,10 +263251,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_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -276062,19 +263285,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, - [45549] = 5, + [40402] = 10, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1010), 1, - anon_sym_COLON2, - STATE(2338), 1, + ACTIONS(5275), 1, + anon_sym_DASH2, + ACTIONS(5283), 1, + anon_sym_PLUS2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2196), 1, sym_comment, - ACTIONS(998), 13, - anon_sym_GT2, + ACTIONS(5277), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5281), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5249), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276083,7 +263316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(994), 45, + ACTIONS(5247), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276095,9 +263328,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_DASH2, + anon_sym_RPAREN, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -276112,10 +263344,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, @@ -276129,32 +263357,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, - [45621] = 12, + [40484] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5358), 1, + ACTIONS(5287), 1, + sym__newline, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5366), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - ACTIONS(5389), 1, - sym__newline, - STATE(2313), 1, - aux_sym_shebang_repeat1, - STATE(2339), 1, + STATE(2197), 1, sym_comment, - ACTIONS(5360), 2, + STATE(2232), 1, + aux_sym_shebang_repeat1, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5362), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5374), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5287), 10, + ACTIONS(5231), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -276165,7 +263390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5285), 37, + ACTIONS(5229), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276192,6 +263417,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, @@ -276203,54 +263430,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, - [45707] = 18, + [40568] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, + ACTIONS(5275), 1, anon_sym_DASH2, - ACTIONS(5329), 1, + ACTIONS(5283), 1, anon_sym_PLUS2, - ACTIONS(5383), 1, - anon_sym_bit_DASHand2, - ACTIONS(5385), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5387), 1, - anon_sym_bit_DASHor2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2340), 1, + STATE(2198), 1, sym_comment, - ACTIONS(5315), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5321), 2, + ACTIONS(5277), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5325), 2, + ACTIONS(5279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, + ACTIONS(5281), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, + ACTIONS(5285), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 2, + ACTIONS(5302), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5312), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5323), 4, + ACTIONS(5304), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5319), 6, + ACTIONS(5310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5299), 8, + ACTIONS(5249), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276259,7 +263480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5297), 23, + ACTIONS(5247), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276275,6 +263496,9 @@ 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, @@ -276283,153 +263507,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, - [45805] = 37, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(155), 1, - anon_sym_LPAREN, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(185), 1, - anon_sym_DOT_DOT, - ACTIONS(201), 1, - aux_sym_expr_unary_token1, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(247), 1, - sym_raw_string_begin, - ACTIONS(375), 1, - anon_sym_DASH2, - ACTIONS(1012), 1, - anon_sym_DOLLAR, - ACTIONS(3418), 1, - anon_sym_null, - ACTIONS(3422), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3424), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3426), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, - aux_sym__val_number_decimal_token4, - STATE(1591), 1, - sym__val_number, - STATE(1665), 1, - sym_expr_parenthesized, - STATE(1668), 1, - sym_val_variable, - STATE(1848), 1, - sym__inter_single_quotes, - STATE(1849), 1, - sym__inter_double_quotes, - STATE(2104), 1, - sym__expr_unary_minus, - STATE(2341), 1, - sym_comment, - STATE(2977), 1, - sym__val_number_decimal, - STATE(3852), 1, - sym__expr_binary_expression, - STATE(7507), 1, - sym__expression, - ACTIONS(207), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3420), 2, - anon_sym_true, - anon_sym_false, - STATE(1383), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2095), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(223), 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(2082), 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, - [45941] = 18, + [40660] = 16, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5358), 1, + ACTIONS(5287), 1, + sym__newline, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5366), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - ACTIONS(5389), 1, - sym__newline, - ACTIONS(5394), 1, - anon_sym_bit_DASHand2, - ACTIONS(5407), 1, - anon_sym_bit_DASHxor2, - STATE(2304), 1, - aux_sym_shebang_repeat1, - STATE(2342), 1, + STATE(2199), 1, sym_comment, - ACTIONS(5360), 2, + STATE(2233), 1, + aux_sym_shebang_repeat1, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5362), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5374), 2, + ACTIONS(5300), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5392), 2, + ACTIONS(5306), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5322), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5372), 4, + ACTIONS(5308), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5370), 6, + ACTIONS(5320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5287), 8, + ACTIONS(5231), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276438,7 +263559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5285), 23, + ACTIONS(5229), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276453,6 +263574,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, @@ -276462,40 +263585,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, - [46039] = 14, + [40754] = 16, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5358), 1, + ACTIONS(5275), 1, anon_sym_DASH2, - ACTIONS(5366), 1, + ACTIONS(5283), 1, anon_sym_PLUS2, - ACTIONS(5404), 1, - sym__newline, - STATE(2343), 1, - sym_comment, - STATE(2409), 1, + ACTIONS(5314), 1, + anon_sym_bit_DASHand2, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(5360), 2, + STATE(2200), 1, + sym_comment, + ACTIONS(5277), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5362), 2, + ACTIONS(5279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, + ACTIONS(5281), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5374), 2, + ACTIONS(5285), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5372), 4, + ACTIONS(5302), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5312), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5304), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5267), 8, + ACTIONS(5310), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5249), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276504,7 +263637,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(5265), 33, + ACTIONS(5247), 25, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276516,18 +263650,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_has2, - anon_sym_not_DASHhas2, - 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, @@ -276538,56 +263663,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, - [46129] = 19, + [40848] = 17, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5358), 1, + ACTIONS(5287), 1, + sym__newline, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5366), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - ACTIONS(5389), 1, - sym__newline, - ACTIONS(5394), 1, + ACTIONS(5324), 1, anon_sym_bit_DASHand2, - ACTIONS(5407), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5409), 1, - anon_sym_bit_DASHor2, - STATE(2340), 1, - aux_sym_shebang_repeat1, - STATE(2344), 1, + STATE(2201), 1, sym_comment, - ACTIONS(5360), 2, + STATE(2235), 1, + aux_sym_shebang_repeat1, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5362), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5374), 2, + ACTIONS(5300), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5392), 2, + ACTIONS(5306), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5322), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5372), 4, + ACTIONS(5308), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5370), 6, + ACTIONS(5320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5287), 8, + ACTIONS(5231), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276596,7 +263717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5285), 22, + ACTIONS(5229), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276611,6 +263732,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, @@ -276619,31 +263742,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, - [46229] = 11, + [40944] = 17, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5358), 1, + ACTIONS(5275), 1, anon_sym_DASH2, - ACTIONS(5366), 1, + ACTIONS(5283), 1, anon_sym_PLUS2, - ACTIONS(5376), 1, - sym__newline, - STATE(2345), 1, - sym_comment, - STATE(2387), 1, + ACTIONS(5314), 1, + anon_sym_bit_DASHand2, + ACTIONS(5316), 1, + anon_sym_bit_DASHxor2, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(5360), 2, + STATE(2202), 1, + sym_comment, + ACTIONS(5277), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5362), 2, + ACTIONS(5279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, + ACTIONS(5281), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5271), 10, + ACTIONS(5285), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5302), 2, anon_sym_GT2, anon_sym_LT2, + ACTIONS(5312), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5304), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5310), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5249), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276652,7 +263796,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(5269), 39, + ACTIONS(5247), 24, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276664,25 +263809,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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -276692,147 +263821,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, - [46313] = 37, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(155), 1, - anon_sym_LPAREN, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(185), 1, - anon_sym_DOT_DOT, - ACTIONS(201), 1, - aux_sym_expr_unary_token1, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(247), 1, - sym_raw_string_begin, - ACTIONS(375), 1, - anon_sym_DASH2, - ACTIONS(1012), 1, - anon_sym_DOLLAR, - ACTIONS(3418), 1, - anon_sym_null, - ACTIONS(3422), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3424), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3426), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, - aux_sym__val_number_decimal_token4, - STATE(1591), 1, - sym__val_number, - STATE(1665), 1, - sym_expr_parenthesized, - STATE(1668), 1, - sym_val_variable, - STATE(1848), 1, - sym__inter_single_quotes, - STATE(1849), 1, - sym__inter_double_quotes, - STATE(2104), 1, - sym__expr_unary_minus, - STATE(2346), 1, - sym_comment, - STATE(2977), 1, - sym__val_number_decimal, - STATE(3852), 1, - sym__expr_binary_expression, - STATE(7386), 1, - sym__expression, - ACTIONS(207), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3420), 2, - anon_sym_true, - anon_sym_false, - STATE(1383), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2095), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(223), 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(2082), 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, - [46449] = 15, + [41040] = 18, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, + ACTIONS(5287), 1, + sym__newline, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5329), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2347), 1, + ACTIONS(5324), 1, + anon_sym_bit_DASHand2, + ACTIONS(5326), 1, + anon_sym_bit_DASHxor2, + STATE(2203), 1, sym_comment, - ACTIONS(5315), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5321), 2, + STATE(2236), 1, + aux_sym_shebang_repeat1, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5325), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, + ACTIONS(5300), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 2, + ACTIONS(5306), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5322), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5323), 4, + ACTIONS(5308), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5319), 6, + ACTIONS(5320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5303), 8, + ACTIONS(5231), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276841,8 +263877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 26, - sym__newline, + ACTIONS(5229), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276857,8 +263892,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, @@ -276868,32 +263901,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, - [46541] = 12, + [41138] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5358), 1, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5366), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - ACTIONS(5376), 1, + ACTIONS(5338), 1, sym__newline, - STATE(2348), 1, + STATE(2204), 1, sym_comment, - STATE(2385), 1, + STATE(2237), 1, aux_sym_shebang_repeat1, - ACTIONS(5360), 2, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5362), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5374), 2, + ACTIONS(5300), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5271), 10, + ACTIONS(5223), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -276904,7 +263937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5269), 37, + ACTIONS(5221), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276942,50 +263975,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, - [46627] = 16, + [41224] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, - anon_sym_DASH2, - ACTIONS(5329), 1, - anon_sym_PLUS2, - ACTIONS(5383), 1, - anon_sym_bit_DASHand2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2349), 1, + ACTIONS(5338), 1, + sym__newline, + STATE(2205), 1, sym_comment, - ACTIONS(5315), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5321), 2, + STATE(2240), 1, + aux_sym_shebang_repeat1, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5325), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5381), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5323), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5319), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5299), 8, + ACTIONS(5223), 11, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276994,8 +264005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5297), 25, - sym__newline, + ACTIONS(5221), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277007,9 +264017,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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -277020,52 +264046,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, - [46721] = 17, + [41304] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(5358), 1, - anon_sym_DASH2, - ACTIONS(5366), 1, - anon_sym_PLUS2, - ACTIONS(5394), 1, - anon_sym_bit_DASHand2, - STATE(2350), 1, + ACTIONS(4625), 1, + anon_sym_COLON2, + STATE(2206), 1, sym_comment, - STATE(2416), 1, - aux_sym_shebang_repeat1, - ACTIONS(5360), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5362), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, + ACTIONS(998), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5374), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5392), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5372), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5309), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277074,7 +264067,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(5307), 24, + ACTIONS(994), 45, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277085,10 +264079,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_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -277099,50 +264113,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, - [46817] = 16, + [41376] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5358), 1, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5366), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - ACTIONS(5404), 1, + ACTIONS(5338), 1, sym__newline, - STATE(2347), 1, - aux_sym_shebang_repeat1, - STATE(2351), 1, + STATE(2207), 1, sym_comment, - ACTIONS(5360), 2, + STATE(2243), 1, + aux_sym_shebang_repeat1, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5362), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5374), 2, + ACTIONS(5300), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5392), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5372), 4, + ACTIONS(5306), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5308), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5370), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5267), 8, + ACTIONS(5223), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277151,7 +264155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5265), 25, + ACTIONS(5221), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277163,9 +264167,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_has2, + anon_sym_not_DASHhas2, + 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, @@ -277177,20 +264189,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, - [46911] = 7, + [41466] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5122), 1, + ACTIONS(5338), 1, sym__newline, - STATE(2352), 1, + STATE(2208), 1, sym_comment, - ACTIONS(5127), 5, + STATE(2245), 1, + aux_sym_shebang_repeat1, + ACTIONS(5294), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5223), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5131), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277199,7 +264215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5125), 20, + ACTIONS(5221), 42, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277211,16 +264227,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(5129), 25, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -277237,8 +264243,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, @@ -277246,30 +264250,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [46987] = 10, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [41542] = 19, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5335), 1, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - STATE(2353), 1, + ACTIONS(5324), 1, + anon_sym_bit_DASHand2, + ACTIONS(5326), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5328), 1, + anon_sym_bit_DASHor2, + ACTIONS(5338), 1, + sym__newline, + STATE(2209), 1, sym_comment, - ACTIONS(5339), 2, + STATE(2248), 1, + aux_sym_shebang_repeat1, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5300), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5209), 10, + ACTIONS(5306), 2, anon_sym_GT2, anon_sym_LT2, + ACTIONS(5322), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5308), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5320), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5223), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277278,8 +264316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5207), 39, - sym__newline, + ACTIONS(5221), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277291,25 +264328,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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -277318,125 +264339,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, - [47069] = 37, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(155), 1, - anon_sym_LPAREN, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(185), 1, - anon_sym_DOT_DOT, - ACTIONS(201), 1, - aux_sym_expr_unary_token1, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, + [41642] = 20, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(247), 1, - sym_raw_string_begin, - ACTIONS(375), 1, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(1012), 1, - anon_sym_DOLLAR, - ACTIONS(3418), 1, - anon_sym_null, - ACTIONS(3422), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3424), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3426), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, - aux_sym__val_number_decimal_token4, - STATE(1591), 1, - sym__val_number, - STATE(1665), 1, - sym_expr_parenthesized, - STATE(1668), 1, - sym_val_variable, - STATE(1848), 1, - sym__inter_single_quotes, - STATE(1849), 1, - sym__inter_double_quotes, - STATE(2104), 1, - sym__expr_unary_minus, - STATE(2354), 1, + ACTIONS(5298), 1, + anon_sym_PLUS2, + ACTIONS(5324), 1, + anon_sym_bit_DASHand2, + ACTIONS(5326), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5328), 1, + anon_sym_bit_DASHor2, + ACTIONS(5332), 1, + anon_sym_and2, + ACTIONS(5338), 1, + sym__newline, + STATE(2210), 1, sym_comment, - STATE(2977), 1, - sym__val_number_decimal, - STATE(3852), 1, - sym__expr_binary_expression, - STATE(7442), 1, - sym__expression, - ACTIONS(207), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3420), 2, - anon_sym_true, - anon_sym_false, - STATE(1383), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2095), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(223), 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(2082), 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, - [47205] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1653), 1, + STATE(2250), 1, aux_sym_shebang_repeat1, - STATE(2355), 1, - sym_comment, - ACTIONS(5321), 2, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5325), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5313), 11, + ACTIONS(5300), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5306), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, + ACTIONS(5322), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5308), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5320), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5223), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277445,8 +264399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5311), 41, - sym__newline, + ACTIONS(5221), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277458,27 +264411,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_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -277487,17 +264421,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, - [47283] = 6, + [41744] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2356), 1, + ACTIONS(5341), 1, + anon_sym_LBRACK2, + STATE(2211), 1, sym_comment, - ACTIONS(5325), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5303), 13, + ACTIONS(2230), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -277511,7 +264442,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(5301), 43, + ACTIONS(2234), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277523,7 +264455,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, @@ -277540,6 +264471,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, @@ -277555,56 +264488,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, - [47357] = 19, + [41816] = 21, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5355), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(5358), 1, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5366), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - ACTIONS(5394), 1, + ACTIONS(5324), 1, anon_sym_bit_DASHand2, - ACTIONS(5407), 1, + ACTIONS(5326), 1, anon_sym_bit_DASHxor2, - ACTIONS(5409), 1, + ACTIONS(5328), 1, anon_sym_bit_DASHor2, - STATE(2357), 1, + ACTIONS(5332), 1, + anon_sym_and2, + ACTIONS(5336), 1, + anon_sym_xor2, + STATE(2212), 1, sym_comment, - STATE(2383), 1, + STATE(2254), 1, aux_sym_shebang_repeat1, - ACTIONS(5360), 2, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5362), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5374), 2, + ACTIONS(5300), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5392), 2, + ACTIONS(5306), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5322), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5372), 4, + ACTIONS(5308), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5370), 6, + ACTIONS(5320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5309), 8, + ACTIONS(5223), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277613,7 +264550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5307), 22, + ACTIONS(5221), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277625,8 +264562,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_and2, - anon_sym_xor2, anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -277636,38 +264571,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, - [47457] = 13, + [41920] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5329), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2358), 1, + ACTIONS(5338), 1, + sym__newline, + STATE(2213), 1, sym_comment, - ACTIONS(5315), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5321), 2, + STATE(2256), 1, + aux_sym_shebang_repeat1, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5325), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, + ACTIONS(5300), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5323), 4, + ACTIONS(5306), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5308), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5313), 8, + ACTIONS(5320), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5223), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277676,8 +264620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5311), 34, - sym__newline, + ACTIONS(5221), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277689,15 +264632,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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, @@ -277711,58 +264648,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, - [47545] = 20, + [42012] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5358), 1, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5366), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - ACTIONS(5394), 1, - anon_sym_bit_DASHand2, - ACTIONS(5404), 1, + ACTIONS(5338), 1, sym__newline, - ACTIONS(5407), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5409), 1, - anon_sym_bit_DASHor2, - ACTIONS(5415), 1, - anon_sym_and2, - STATE(2305), 1, - aux_sym_shebang_repeat1, - STATE(2359), 1, + STATE(2214), 1, sym_comment, - ACTIONS(5360), 2, + STATE(2261), 1, + aux_sym_shebang_repeat1, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5362), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, + ACTIONS(5223), 10, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5374), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5392), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5372), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5267), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277771,7 +264681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5265), 21, + ACTIONS(5221), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277783,151 +264693,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_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, - [47647] = 37, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(155), 1, - anon_sym_LPAREN, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(185), 1, - anon_sym_DOT_DOT, - ACTIONS(201), 1, - aux_sym_expr_unary_token1, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(247), 1, - sym_raw_string_begin, - ACTIONS(375), 1, - anon_sym_DASH2, - ACTIONS(1012), 1, - anon_sym_DOLLAR, - ACTIONS(3418), 1, - anon_sym_null, - ACTIONS(3422), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3424), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3426), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, - aux_sym__val_number_decimal_token4, - STATE(1591), 1, - sym__val_number, - STATE(1665), 1, - sym_expr_parenthesized, - STATE(1668), 1, - sym_val_variable, - STATE(1848), 1, - sym__inter_single_quotes, - STATE(1849), 1, - sym__inter_double_quotes, - STATE(2104), 1, - sym__expr_unary_minus, - STATE(2360), 1, - sym_comment, - STATE(2977), 1, - sym__val_number_decimal, - STATE(3852), 1, - sym__expr_binary_expression, - STATE(7476), 1, - sym__expression, - ACTIONS(207), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3420), 2, - anon_sym_true, - anon_sym_false, - STATE(1383), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2095), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(223), 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(2082), 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, - [47783] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4657), 1, - anon_sym_COLON2, - STATE(2361), 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(994), 45, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, @@ -277942,10 +264708,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, @@ -277959,26 +264721,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, - [47855] = 8, + [42096] = 16, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2362), 1, + ACTIONS(5290), 1, + anon_sym_DASH2, + ACTIONS(5298), 1, + anon_sym_PLUS2, + ACTIONS(5338), 1, + sym__newline, + STATE(2215), 1, sym_comment, - ACTIONS(5321), 2, + STATE(2264), 1, + aux_sym_shebang_repeat1, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5325), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5299), 11, + ACTIONS(5300), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5306), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, + ACTIONS(5322), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5308), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5320), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5223), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277987,8 +264773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5297), 41, - sym__newline, + ACTIONS(5221), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278000,24 +264785,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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -278029,60 +264799,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, - [47933] = 21, + [42190] = 17, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(5358), 1, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5366), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - ACTIONS(5394), 1, + ACTIONS(5324), 1, anon_sym_bit_DASHand2, - ACTIONS(5407), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5409), 1, - anon_sym_bit_DASHor2, - ACTIONS(5415), 1, - anon_sym_and2, - ACTIONS(5417), 1, - anon_sym_xor2, - STATE(2363), 1, + ACTIONS(5338), 1, + sym__newline, + STATE(2216), 1, sym_comment, - STATE(2391), 1, + STATE(2266), 1, aux_sym_shebang_repeat1, - ACTIONS(5360), 2, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5362), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5374), 2, + ACTIONS(5300), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5392), 2, + ACTIONS(5306), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5322), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5372), 4, + ACTIONS(5308), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5370), 6, + ACTIONS(5320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5271), 8, + ACTIONS(5223), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278091,7 +264853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5269), 20, + ACTIONS(5221), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278103,7 +264865,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_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, @@ -278112,50 +264878,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, - [48037] = 16, + [42286] = 18, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5329), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - ACTIONS(5383), 1, + ACTIONS(5324), 1, anon_sym_bit_DASHand2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2364), 1, + ACTIONS(5326), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5338), 1, + sym__newline, + STATE(2217), 1, sym_comment, - ACTIONS(5315), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5321), 2, + STATE(2268), 1, + aux_sym_shebang_repeat1, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5325), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, + ACTIONS(5300), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 2, + ACTIONS(5306), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5322), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5323), 4, + ACTIONS(5308), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5319), 6, + ACTIONS(5320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5303), 8, + ACTIONS(5223), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278164,8 +264934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 25, - sym__newline, + ACTIONS(5221), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278180,7 +264949,6 @@ 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, @@ -278190,15 +264958,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, - [48131] = 37, + [42384] = 37, ACTIONS(153), 1, anon_sym_LBRACK, ACTIONS(155), 1, anon_sym_LPAREN, ACTIONS(181), 1, anon_sym_LBRACE, - ACTIONS(185), 1, - anon_sym_DOT_DOT, ACTIONS(201), 1, aux_sym_expr_unary_token1, ACTIONS(227), 1, @@ -278219,52 +264985,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, ACTIONS(1012), 1, anon_sym_DOLLAR, - ACTIONS(3418), 1, + ACTIONS(3330), 1, anon_sym_null, - ACTIONS(3422), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3424), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - STATE(1591), 1, + ACTIONS(5343), 1, + anon_sym_DOT_DOT, + ACTIONS(5347), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5349), 1, + aux_sym__val_number_decimal_token2, + STATE(1499), 1, sym__val_number, - STATE(1665), 1, - sym_expr_parenthesized, - STATE(1668), 1, - sym_val_variable, - STATE(1848), 1, + STATE(1842), 1, sym__inter_single_quotes, - STATE(1849), 1, + STATE(1843), 1, sym__inter_double_quotes, - STATE(2104), 1, + STATE(2018), 1, sym__expr_unary_minus, - STATE(2365), 1, + STATE(2218), 1, sym_comment, - STATE(2977), 1, + STATE(3432), 1, sym__val_number_decimal, - STATE(3852), 1, + STATE(3462), 1, + sym_expr_parenthesized, + STATE(3463), 1, + sym_val_variable, + STATE(3673), 1, sym__expr_binary_expression, - STATE(7484), 1, + STATE(7010), 1, sym__expression, - ACTIONS(207), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, ACTIONS(229), 2, anon_sym_0o, anon_sym_0x, ACTIONS(235), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3420), 2, + ACTIONS(3332), 2, anon_sym_true, anon_sym_false, - STATE(1383), 2, + ACTIONS(5345), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1340), 2, sym__raw_str, sym__str_double_quotes, - STATE(2095), 4, + STATE(2017), 4, sym_expr_unary, sym_expr_binary, sym_val_range, @@ -278276,7 +265044,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(2082), 12, + STATE(1992), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -278289,38 +265057,100 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [48267] = 13, + [42520] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2219), 1, + sym_comment, + ACTIONS(5089), 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(5091), 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [42590] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5329), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - STATE(1653), 1, + ACTIONS(5351), 1, + sym__newline, + STATE(2178), 1, aux_sym_shebang_repeat1, - STATE(2366), 1, + STATE(2220), 1, sym_comment, - ACTIONS(5315), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5321), 2, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5325), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, + ACTIONS(5300), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5323), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5299), 8, + ACTIONS(5199), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278329,8 +265159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5297), 34, - sym__newline, + ACTIONS(5197), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278351,6 +265180,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_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, @@ -278364,23 +265197,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, - [48355] = 7, + [42676] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2367), 1, + ACTIONS(4732), 1, + aux_sym_unquoted_token2, + STATE(2221), 1, sym_comment, - ACTIONS(5339), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5345), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5209), 11, + ACTIONS(1616), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -278390,7 +265218,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(5207), 42, + ACTIONS(1628), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278402,10 +265231,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -278420,6 +265247,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, @@ -278433,25 +265264,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, - [48431] = 9, + [42748] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5376), 1, + ACTIONS(5351), 1, sym__newline, - STATE(2368), 1, - sym_comment, - STATE(2392), 1, + STATE(2180), 1, aux_sym_shebang_repeat1, - ACTIONS(5360), 2, + STATE(2222), 1, + sym_comment, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5362), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5271), 11, + ACTIONS(5199), 11, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, @@ -278463,7 +265294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5269), 40, + ACTIONS(5197), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278504,36 +265335,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, - [48511] = 12, + [42828] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5335), 1, + ACTIONS(5275), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5283), 1, anon_sym_PLUS2, - STATE(2369), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2223), 1, sym_comment, - ACTIONS(5333), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5339), 2, + ACTIONS(5277), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5281), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5285), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5341), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5209), 8, + ACTIONS(5243), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278542,7 +265369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5207), 35, + ACTIONS(5241), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278556,7 +265383,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, @@ -278565,6 +265391,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_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, @@ -278578,50 +265408,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, - [48597] = 16, + [42912] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5358), 1, - anon_sym_DASH2, - ACTIONS(5366), 1, - anon_sym_PLUS2, - ACTIONS(5376), 1, - sym__newline, - STATE(2337), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2370), 1, + STATE(2224), 1, sym_comment, - ACTIONS(5360), 2, + ACTIONS(5277), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5362), 2, + ACTIONS(5279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, + ACTIONS(5281), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, + ACTIONS(5243), 11, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5374), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5392), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5372), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5271), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278630,7 +265436,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(5269), 25, + ACTIONS(5241), 41, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278642,9 +265449,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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -278656,20 +265478,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, - [48691] = 5, + [42990] = 13, ACTIONS(245), 1, anon_sym_POUND, - STATE(2371), 1, + ACTIONS(5275), 1, + anon_sym_DASH2, + ACTIONS(5283), 1, + anon_sym_PLUS2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2225), 1, sym_comment, - ACTIONS(5345), 2, + ACTIONS(5277), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5209), 13, + ACTIONS(5281), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5285), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5302), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5304), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5243), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278678,7 +265518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5207), 44, + ACTIONS(5241), 34, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278691,9 +265531,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, @@ -278702,16 +265540,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_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, @@ -278723,116 +265553,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, - [48763] = 37, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(155), 1, - anon_sym_LPAREN, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(185), 1, - anon_sym_DOT_DOT, - ACTIONS(201), 1, - aux_sym_expr_unary_token1, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(247), 1, - sym_raw_string_begin, - ACTIONS(375), 1, - anon_sym_DASH2, - ACTIONS(1012), 1, - anon_sym_DOLLAR, - ACTIONS(3418), 1, - anon_sym_null, - ACTIONS(3422), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3424), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3426), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, - aux_sym__val_number_decimal_token4, - STATE(1591), 1, - sym__val_number, - STATE(1665), 1, - sym_expr_parenthesized, - STATE(1668), 1, - sym_val_variable, - STATE(1848), 1, - sym__inter_single_quotes, - STATE(1849), 1, - sym__inter_double_quotes, - STATE(2104), 1, - sym__expr_unary_minus, - STATE(2372), 1, - sym_comment, - STATE(2977), 1, - sym__val_number_decimal, - STATE(3852), 1, - sym__expr_binary_expression, - STATE(7459), 1, - sym__expression, - ACTIONS(207), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3420), 2, - anon_sym_true, - anon_sym_false, - STATE(1383), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2095), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(223), 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(2082), 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, - [48899] = 6, + [43078] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2373), 1, + STATE(2226), 1, sym_comment, - ACTIONS(5325), 2, + ACTIONS(5279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5313), 13, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -278846,7 +265577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5311), 43, + ACTIONS(5241), 43, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278890,34 +265621,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, - [48973] = 12, + [43152] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5358), 1, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5366), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - ACTIONS(5404), 1, + ACTIONS(5351), 1, sym__newline, - STATE(2374), 1, - sym_comment, - STATE(2397), 1, + STATE(2182), 1, aux_sym_shebang_repeat1, - ACTIONS(5360), 2, + STATE(2227), 1, + sym_comment, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5362), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5374), 2, + ACTIONS(5300), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5267), 10, + ACTIONS(5306), 2, anon_sym_GT2, anon_sym_LT2, + ACTIONS(5308), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5199), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278926,7 +265663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5265), 37, + ACTIONS(5197), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278947,10 +265684,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_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, @@ -278964,52 +265697,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, - [49059] = 17, + [43242] = 18, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, + ACTIONS(5275), 1, anon_sym_DASH2, - ACTIONS(5329), 1, + ACTIONS(5283), 1, anon_sym_PLUS2, - ACTIONS(5383), 1, + ACTIONS(5314), 1, anon_sym_bit_DASHand2, - ACTIONS(5385), 1, + ACTIONS(5316), 1, anon_sym_bit_DASHxor2, - STATE(1653), 1, + ACTIONS(5318), 1, + anon_sym_bit_DASHor2, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2375), 1, + STATE(2228), 1, sym_comment, - ACTIONS(5315), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5321), 2, + ACTIONS(5277), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5325), 2, + ACTIONS(5279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, + ACTIONS(5281), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, + ACTIONS(5285), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 2, + ACTIONS(5302), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5312), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5323), 4, + ACTIONS(5304), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5319), 6, + ACTIONS(5310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5303), 8, + ACTIONS(5243), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279018,7 +265753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 24, + ACTIONS(5241), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279034,7 +265769,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -279043,87 +265777,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, - [49155] = 6, + [43340] = 19, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + ACTIONS(5275), 1, + anon_sym_DASH2, + ACTIONS(5283), 1, + anon_sym_PLUS2, + ACTIONS(5314), 1, + anon_sym_bit_DASHand2, + ACTIONS(5316), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5318), 1, + anon_sym_bit_DASHor2, + ACTIONS(5330), 1, + anon_sym_and2, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2376), 1, + STATE(2229), 1, sym_comment, - ACTIONS(5325), 2, + ACTIONS(5277), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5263), 13, + ACTIONS(5281), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5285), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5302), 2, 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(5261), 43, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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(5312), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5304), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5310), 6, anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_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, - [49229] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5419), 1, - anon_sym_LBRACK2, - STATE(2377), 1, - sym_comment, - ACTIONS(2290), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5243), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279132,8 +265835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2294), 45, - ts_builtin_sym_end, + ACTIONS(5241), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279145,31 +265847,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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -279178,52 +265858,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, - [49301] = 17, + [43440] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5335), 1, + ACTIONS(5275), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5283), 1, anon_sym_PLUS2, - ACTIONS(5353), 1, - anon_sym_bit_DASHand2, - ACTIONS(5379), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5421), 1, - anon_sym_bit_DASHor2, - STATE(2378), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2230), 1, sym_comment, - ACTIONS(5333), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5339), 2, + ACTIONS(5277), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5343), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5345), 2, + ACTIONS(5279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5281), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5285), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5341), 4, + ACTIONS(5302), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5304), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5337), 6, + ACTIONS(5310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5209), 8, + ACTIONS(5243), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279232,7 +265905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5207), 24, + ACTIONS(5241), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279245,10 +265918,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, @@ -279257,40 +265934,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, - [49397] = 14, + [43530] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5358), 1, - anon_sym_DASH2, - ACTIONS(5366), 1, - anon_sym_PLUS2, - ACTIONS(5389), 1, + ACTIONS(5351), 1, sym__newline, - STATE(2366), 1, + STATE(2184), 1, aux_sym_shebang_repeat1, - STATE(2379), 1, + STATE(2231), 1, sym_comment, - ACTIONS(5360), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5362), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, + ACTIONS(5199), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5374), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5372), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5287), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279299,7 +265960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5285), 33, + ACTIONS(5197), 42, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279311,6 +265972,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, @@ -279320,8 +265982,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_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, @@ -279333,54 +266003,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, - [49487] = 18, + [43606] = 10, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5335), 1, + ACTIONS(5275), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5283), 1, anon_sym_PLUS2, - ACTIONS(5353), 1, - anon_sym_bit_DASHand2, - ACTIONS(5379), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5421), 1, - anon_sym_bit_DASHor2, - ACTIONS(5423), 1, - anon_sym_and2, - STATE(2380), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2232), 1, sym_comment, - ACTIONS(5333), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5339), 2, + ACTIONS(5277), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5343), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5345), 2, + ACTIONS(5279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5281), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5341), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5337), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5209), 8, + ACTIONS(5243), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279389,7 +266034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5207), 23, + ACTIONS(5241), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279402,9 +266047,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_RBRACE, + anon_sym_in2, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -279413,47 +266075,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, - [49585] = 15, + [43688] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5358), 1, + ACTIONS(5275), 1, anon_sym_DASH2, - ACTIONS(5366), 1, + ACTIONS(5283), 1, anon_sym_PLUS2, - ACTIONS(5404), 1, - sym__newline, - STATE(2316), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2381), 1, + STATE(2233), 1, sym_comment, - ACTIONS(5360), 2, + ACTIONS(5277), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5362), 2, + ACTIONS(5279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, + ACTIONS(5281), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5374), 2, + ACTIONS(5285), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5372), 4, + ACTIONS(5302), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5312), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5304), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5370), 6, + ACTIONS(5310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5267), 8, + ACTIONS(5243), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279462,7 +266125,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(5265), 27, + ACTIONS(5241), 26, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279477,8 +266141,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, @@ -279490,153 +266152,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, - [49677] = 37, - ACTIONS(153), 1, - anon_sym_LBRACK, - ACTIONS(155), 1, - anon_sym_LPAREN, - ACTIONS(181), 1, - anon_sym_LBRACE, - ACTIONS(185), 1, - anon_sym_DOT_DOT, - ACTIONS(201), 1, - aux_sym_expr_unary_token1, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(247), 1, - sym_raw_string_begin, - ACTIONS(375), 1, - anon_sym_DASH2, - ACTIONS(1012), 1, - anon_sym_DOLLAR, - ACTIONS(3418), 1, - anon_sym_null, - ACTIONS(3422), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3424), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3426), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, - aux_sym__val_number_decimal_token4, - STATE(1591), 1, - sym__val_number, - STATE(1665), 1, - sym_expr_parenthesized, - STATE(1668), 1, - sym_val_variable, - STATE(1848), 1, - sym__inter_single_quotes, - STATE(1849), 1, - sym__inter_double_quotes, - STATE(2104), 1, - sym__expr_unary_minus, - STATE(2382), 1, - sym_comment, - STATE(2977), 1, - sym__val_number_decimal, - STATE(3852), 1, - sym__expr_binary_expression, - STATE(7383), 1, - sym__expression, - ACTIONS(207), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3420), 2, - anon_sym_true, - anon_sym_false, - STATE(1383), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2095), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(223), 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(2082), 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, - [49813] = 18, + [43780] = 19, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5329), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - ACTIONS(5383), 1, + ACTIONS(5324), 1, anon_sym_bit_DASHand2, - ACTIONS(5385), 1, + ACTIONS(5326), 1, anon_sym_bit_DASHxor2, - ACTIONS(5387), 1, + ACTIONS(5328), 1, anon_sym_bit_DASHor2, - STATE(1653), 1, + ACTIONS(5351), 1, + sym__newline, + STATE(2186), 1, aux_sym_shebang_repeat1, - STATE(2383), 1, + STATE(2234), 1, sym_comment, - ACTIONS(5315), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5321), 2, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5325), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, + ACTIONS(5300), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 2, + ACTIONS(5306), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5322), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5323), 4, + ACTIONS(5308), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5319), 6, + ACTIONS(5320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5313), 8, + ACTIONS(5199), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279645,8 +266210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5311), 23, - sym__newline, + ACTIONS(5197), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279669,48 +266233,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, - [49911] = 15, + [43880] = 16, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, + ACTIONS(5275), 1, anon_sym_DASH2, - ACTIONS(5329), 1, + ACTIONS(5283), 1, anon_sym_PLUS2, - STATE(1653), 1, + ACTIONS(5314), 1, + anon_sym_bit_DASHand2, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2384), 1, + STATE(2235), 1, sym_comment, - ACTIONS(5315), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5321), 2, + ACTIONS(5277), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5325), 2, + ACTIONS(5279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, + ACTIONS(5281), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, + ACTIONS(5285), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 2, + ACTIONS(5302), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5312), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5323), 4, + ACTIONS(5304), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5319), 6, + ACTIONS(5310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5313), 8, + ACTIONS(5243), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279719,7 +266285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5311), 26, + ACTIONS(5241), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279735,7 +266301,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, @@ -279746,32 +266311,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, - [50003] = 11, + [43974] = 17, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, + ACTIONS(5275), 1, anon_sym_DASH2, - ACTIONS(5329), 1, + ACTIONS(5283), 1, anon_sym_PLUS2, - STATE(1653), 1, + ACTIONS(5314), 1, + anon_sym_bit_DASHand2, + ACTIONS(5316), 1, + anon_sym_bit_DASHxor2, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2385), 1, + STATE(2236), 1, sym_comment, - ACTIONS(5321), 2, + ACTIONS(5277), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5325), 2, + ACTIONS(5279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, + ACTIONS(5281), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, + ACTIONS(5285), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5263), 10, + ACTIONS(5302), 2, anon_sym_GT2, anon_sym_LT2, + ACTIONS(5312), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5304), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5310), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5243), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279780,7 +266365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5261), 38, + ACTIONS(5241), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279793,23 +266378,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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -279819,40 +266390,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, - [50087] = 14, + [44070] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5358), 1, + ACTIONS(5275), 1, anon_sym_DASH2, - ACTIONS(5366), 1, + ACTIONS(5283), 1, anon_sym_PLUS2, - ACTIONS(5376), 1, - sym__newline, - STATE(2325), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2386), 1, + STATE(2237), 1, sym_comment, - ACTIONS(5360), 2, + ACTIONS(5277), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5362), 2, + ACTIONS(5279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, + ACTIONS(5281), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5374), 2, + ACTIONS(5285), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5372), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5271), 8, + ACTIONS(5253), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279861,7 +266424,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(5269), 33, + ACTIONS(5251), 38, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279882,6 +266446,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_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, @@ -279895,27 +266463,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, - [50177] = 10, + [44154] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5329), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2387), 1, + ACTIONS(5354), 1, + sym__newline, + STATE(2238), 1, sym_comment, - ACTIONS(5321), 2, + STATE(2283), 1, + aux_sym_shebang_repeat1, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5325), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5263), 10, + ACTIONS(5300), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5257), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -279926,8 +266499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5261), 40, - sym__newline, + ACTIONS(5255), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279954,8 +266526,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, @@ -279967,56 +266537,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, - [50259] = 19, + [44240] = 20, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5329), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - ACTIONS(5383), 1, + ACTIONS(5324), 1, anon_sym_bit_DASHand2, - ACTIONS(5385), 1, + ACTIONS(5326), 1, anon_sym_bit_DASHxor2, - ACTIONS(5387), 1, + ACTIONS(5328), 1, anon_sym_bit_DASHor2, - ACTIONS(5411), 1, + ACTIONS(5332), 1, anon_sym_and2, - STATE(1653), 1, + ACTIONS(5351), 1, + sym__newline, + STATE(2188), 1, aux_sym_shebang_repeat1, - STATE(2388), 1, + STATE(2239), 1, sym_comment, - ACTIONS(5315), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5321), 2, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5325), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, + ACTIONS(5300), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 2, + ACTIONS(5306), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5322), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5323), 4, + ACTIONS(5308), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5319), 6, + ACTIONS(5320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5313), 8, + ACTIONS(5199), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280025,8 +266597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5311), 22, - sym__newline, + ACTIONS(5197), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280048,25 +266619,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, - [50359] = 9, + [44342] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - STATE(2355), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2389), 1, + STATE(2240), 1, sym_comment, - ACTIONS(5360), 2, + ACTIONS(5277), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5362), 2, + ACTIONS(5279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, + ACTIONS(5281), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5309), 11, + ACTIONS(5253), 11, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, @@ -280078,7 +266647,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(5307), 40, + ACTIONS(5251), 41, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280119,60 +266689,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, - [50439] = 21, + [44420] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(5354), 1, sym__newline, - ACTIONS(5358), 1, - anon_sym_DASH2, - ACTIONS(5366), 1, - anon_sym_PLUS2, - ACTIONS(5394), 1, - anon_sym_bit_DASHand2, - ACTIONS(5407), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5409), 1, - anon_sym_bit_DASHor2, - ACTIONS(5415), 1, - anon_sym_and2, - ACTIONS(5417), 1, - anon_sym_xor2, - STATE(2390), 1, + STATE(2241), 1, sym_comment, - STATE(2403), 1, + STATE(2284), 1, aux_sym_shebang_repeat1, - ACTIONS(5360), 2, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5362), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, + ACTIONS(5257), 11, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5374), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5392), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5372), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5309), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280181,7 +266719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5307), 20, + ACTIONS(5255), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280193,7 +266731,27 @@ 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -280202,58 +266760,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, - [50543] = 20, + [44500] = 21, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5329), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - ACTIONS(5383), 1, + ACTIONS(5324), 1, anon_sym_bit_DASHand2, - ACTIONS(5385), 1, + ACTIONS(5326), 1, anon_sym_bit_DASHxor2, - ACTIONS(5387), 1, + ACTIONS(5328), 1, anon_sym_bit_DASHor2, - ACTIONS(5411), 1, + ACTIONS(5332), 1, anon_sym_and2, - ACTIONS(5413), 1, + ACTIONS(5336), 1, anon_sym_xor2, - STATE(1653), 1, + STATE(2190), 1, aux_sym_shebang_repeat1, - STATE(2391), 1, + STATE(2242), 1, sym_comment, - ACTIONS(5315), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5321), 2, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5325), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, + ACTIONS(5300), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 2, + ACTIONS(5306), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5322), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5323), 4, + ACTIONS(5308), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5319), 6, + ACTIONS(5320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5263), 8, + ACTIONS(5199), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280262,8 +266822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5261), 21, - sym__newline, + ACTIONS(5197), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280284,26 +266843,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, - [50645] = 8, + [44604] = 13, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + ACTIONS(5275), 1, + anon_sym_DASH2, + ACTIONS(5283), 1, + anon_sym_PLUS2, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2392), 1, + STATE(2243), 1, sym_comment, - ACTIONS(5321), 2, + ACTIONS(5277), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5325), 2, + ACTIONS(5279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, + ACTIONS(5281), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5263), 11, + ACTIONS(5285), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5302), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, + ACTIONS(5304), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5253), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280312,7 +266883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5261), 41, + ACTIONS(5251), 34, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280325,7 +266896,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, @@ -280335,14 +266905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_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, @@ -280354,56 +266918,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, - [50723] = 19, + [44692] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5335), 1, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - ACTIONS(5353), 1, - anon_sym_bit_DASHand2, - ACTIONS(5379), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5421), 1, - anon_sym_bit_DASHor2, - ACTIONS(5423), 1, - anon_sym_and2, - ACTIONS(5425), 1, - anon_sym_xor2, - STATE(2393), 1, + ACTIONS(5354), 1, + sym__newline, + STATE(2244), 1, sym_comment, - ACTIONS(5333), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5339), 2, + STATE(2285), 1, + aux_sym_shebang_repeat1, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5343), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5345), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5300), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5341), 4, + ACTIONS(5306), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5308), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5337), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5209), 8, + ACTIONS(5257), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280412,8 +266960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5207), 22, - sym__newline, + ACTIONS(5255), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280425,91 +266972,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_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, - [50823] = 21, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(5358), 1, - anon_sym_DASH2, - ACTIONS(5366), 1, - anon_sym_PLUS2, - ACTIONS(5394), 1, - anon_sym_bit_DASHand2, - ACTIONS(5407), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5409), 1, - anon_sym_bit_DASHor2, - ACTIONS(5415), 1, + anon_sym_in2, anon_sym_and2, - ACTIONS(5417), 1, anon_sym_xor2, - STATE(2308), 1, - aux_sym_shebang_repeat1, - STATE(2394), 1, - sym_comment, - ACTIONS(5360), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5362), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5374), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5392), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5372), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 6, - anon_sym_in2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5267), 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(5265), 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_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, @@ -280518,48 +266994,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, - [50927] = 15, + [44782] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, - anon_sym_DASH2, - ACTIONS(5329), 1, - anon_sym_PLUS2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2395), 1, + STATE(2245), 1, sym_comment, - ACTIONS(5315), 2, + ACTIONS(5279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5253), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5321), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5325), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5381), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5323), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5319), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5299), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280568,7 +267018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5297), 26, + ACTIONS(5251), 43, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280581,9 +267031,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_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -280595,50 +267062,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, - [51019] = 16, + [44856] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5329), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - ACTIONS(5383), 1, - anon_sym_bit_DASHand2, - STATE(1653), 1, + ACTIONS(5351), 1, + sym__newline, + STATE(2192), 1, aux_sym_shebang_repeat1, - STATE(2396), 1, + STATE(2246), 1, sym_comment, - ACTIONS(5315), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5321), 2, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5325), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, + ACTIONS(5300), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5323), 4, + ACTIONS(5306), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5308), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5319), 6, + ACTIONS(5320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5263), 8, + ACTIONS(5199), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280647,8 +267111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5261), 25, - sym__newline, + ACTIONS(5197), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280663,6 +267126,9 @@ 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, @@ -280673,32 +267139,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, - [51113] = 11, + [44948] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, - anon_sym_DASH2, - ACTIONS(5329), 1, - anon_sym_PLUS2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2397), 1, + ACTIONS(5354), 1, + sym__newline, + STATE(2247), 1, sym_comment, - ACTIONS(5321), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5325), 2, + STATE(2286), 1, + aux_sym_shebang_repeat1, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5303), 10, + ACTIONS(5257), 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, @@ -280707,8 +267165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 38, - sym__newline, + ACTIONS(5255), 42, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280720,6 +267177,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, @@ -280735,6 +267193,10 @@ 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, @@ -280746,17 +267208,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, - [51197] = 4, + [45024] = 18, ACTIONS(245), 1, anon_sym_POUND, - STATE(2398), 1, + ACTIONS(5275), 1, + anon_sym_DASH2, + ACTIONS(5283), 1, + anon_sym_PLUS2, + ACTIONS(5314), 1, + anon_sym_bit_DASHand2, + ACTIONS(5316), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5318), 1, + anon_sym_bit_DASHor2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2248), 1, sym_comment, - ACTIONS(5034), 13, - anon_sym_GT2, + ACTIONS(5277), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5281), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5285), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5302), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5312), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5304), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5310), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5253), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280765,8 +267264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5032), 46, - ts_builtin_sym_end, + ACTIONS(5251), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280778,32 +267276,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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -280812,52 +267288,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, - [51267] = 17, + [45122] = 19, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5329), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - ACTIONS(5383), 1, + ACTIONS(5324), 1, anon_sym_bit_DASHand2, - ACTIONS(5385), 1, + ACTIONS(5326), 1, anon_sym_bit_DASHxor2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(2399), 1, + ACTIONS(5328), 1, + anon_sym_bit_DASHor2, + ACTIONS(5354), 1, + sym__newline, + STATE(2249), 1, sym_comment, - ACTIONS(5315), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5321), 2, + STATE(2287), 1, + aux_sym_shebang_repeat1, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5325), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, + ACTIONS(5300), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 2, + ACTIONS(5306), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5322), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5323), 4, + ACTIONS(5308), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5319), 6, + ACTIONS(5320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5313), 8, + ACTIONS(5257), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280866,8 +267346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5311), 24, - sym__newline, + ACTIONS(5255), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280882,7 +267361,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -280891,29 +267369,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, - [51363] = 10, + [45222] = 19, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, + ACTIONS(5275), 1, anon_sym_DASH2, - ACTIONS(5329), 1, + ACTIONS(5283), 1, anon_sym_PLUS2, - STATE(1653), 1, + ACTIONS(5314), 1, + anon_sym_bit_DASHand2, + ACTIONS(5316), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5318), 1, + anon_sym_bit_DASHor2, + ACTIONS(5330), 1, + anon_sym_and2, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2400), 1, + STATE(2250), 1, sym_comment, - ACTIONS(5321), 2, + ACTIONS(5277), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5325), 2, + ACTIONS(5279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, + ACTIONS(5281), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5299), 10, + ACTIONS(5285), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5302), 2, anon_sym_GT2, anon_sym_LT2, + ACTIONS(5312), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5304), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5310), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5253), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280922,7 +267427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5297), 40, + ACTIONS(5251), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280935,26 +267440,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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -280963,50 +267450,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, - [51445] = 16, + [45322] = 20, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(5358), 1, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5366), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - STATE(2384), 1, - aux_sym_shebang_repeat1, - STATE(2401), 1, + ACTIONS(5324), 1, + anon_sym_bit_DASHand2, + ACTIONS(5326), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5328), 1, + anon_sym_bit_DASHor2, + ACTIONS(5332), 1, + anon_sym_and2, + ACTIONS(5354), 1, + sym__newline, + STATE(2251), 1, sym_comment, - ACTIONS(5360), 2, + STATE(2288), 1, + aux_sym_shebang_repeat1, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5362), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5374), 2, + ACTIONS(5300), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5392), 2, + ACTIONS(5306), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5322), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5372), 4, + ACTIONS(5308), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5370), 6, + ACTIONS(5320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5309), 8, + ACTIONS(5257), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281015,7 +267510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5307), 25, + ACTIONS(5255), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281027,12 +267522,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_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, @@ -281041,26 +267532,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51539] = 8, + [45424] = 37, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(247), 1, + sym_raw_string_begin, + ACTIONS(375), 1, + anon_sym_DASH2, + ACTIONS(1012), 1, + anon_sym_DOLLAR, + ACTIONS(3330), 1, + anon_sym_null, + ACTIONS(3334), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3336), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3340), 1, + aux_sym__val_number_decimal_token4, + STATE(1499), 1, + sym__val_number, + STATE(1585), 1, + sym_val_variable, + STATE(1628), 1, + sym_expr_parenthesized, + STATE(1842), 1, + sym__inter_single_quotes, + STATE(1843), 1, + sym__inter_double_quotes, + STATE(2018), 1, + sym__expr_unary_minus, + STATE(2252), 1, + sym_comment, + STATE(2848), 1, + sym__val_number_decimal, + STATE(3679), 1, + sym__expr_binary_expression, + STATE(6823), 1, + sym__expression, + ACTIONS(207), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3332), 2, + anon_sym_true, + anon_sym_false, + STATE(1340), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2017), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(223), 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(1992), 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, + [45560] = 11, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + ACTIONS(5290), 1, + anon_sym_DASH2, + ACTIONS(5298), 1, + anon_sym_PLUS2, + ACTIONS(5351), 1, + sym__newline, + STATE(2196), 1, aux_sym_shebang_repeat1, - STATE(2402), 1, + STATE(2253), 1, sym_comment, - ACTIONS(5321), 2, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5325), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5303), 11, + ACTIONS(5199), 10, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281069,8 +267664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 41, - sym__newline, + ACTIONS(5197), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281082,7 +267676,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, @@ -281111,58 +267704,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, - [51617] = 20, + [45644] = 20, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, + ACTIONS(5275), 1, anon_sym_DASH2, - ACTIONS(5329), 1, + ACTIONS(5283), 1, anon_sym_PLUS2, - ACTIONS(5383), 1, + ACTIONS(5314), 1, anon_sym_bit_DASHand2, - ACTIONS(5385), 1, + ACTIONS(5316), 1, anon_sym_bit_DASHxor2, - ACTIONS(5387), 1, + ACTIONS(5318), 1, anon_sym_bit_DASHor2, - ACTIONS(5411), 1, + ACTIONS(5330), 1, anon_sym_and2, - ACTIONS(5413), 1, + ACTIONS(5334), 1, anon_sym_xor2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2403), 1, + STATE(2254), 1, sym_comment, - ACTIONS(5315), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5321), 2, + ACTIONS(5277), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5325), 2, + ACTIONS(5279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, + ACTIONS(5281), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, + ACTIONS(5285), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 2, + ACTIONS(5302), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5312), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5323), 4, + ACTIONS(5304), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5319), 6, + ACTIONS(5310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5313), 8, + ACTIONS(5253), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281171,7 +267764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5311), 21, + ACTIONS(5251), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281193,52 +267786,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, - [51719] = 17, + [45746] = 21, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5358), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5366), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - ACTIONS(5376), 1, - sym__newline, - ACTIONS(5394), 1, + ACTIONS(5324), 1, anon_sym_bit_DASHand2, - STATE(2396), 1, - aux_sym_shebang_repeat1, - STATE(2404), 1, + ACTIONS(5326), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5328), 1, + anon_sym_bit_DASHor2, + ACTIONS(5332), 1, + anon_sym_and2, + ACTIONS(5336), 1, + anon_sym_xor2, + STATE(2255), 1, sym_comment, - ACTIONS(5360), 2, + STATE(2289), 1, + aux_sym_shebang_repeat1, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5362), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5374), 2, + ACTIONS(5300), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5392), 2, + ACTIONS(5306), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5322), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5372), 4, + ACTIONS(5308), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5370), 6, + ACTIONS(5320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5271), 8, + ACTIONS(5257), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281247,7 +267848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5269), 24, + ACTIONS(5255), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281259,11 +267860,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, @@ -281272,43 +267869,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, - [51815] = 13, + [45850] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5335), 1, + ACTIONS(5275), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5283), 1, anon_sym_PLUS2, - STATE(2405), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2256), 1, sym_comment, - ACTIONS(5333), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5339), 2, + ACTIONS(5277), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5281), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5285), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5341), 4, + ACTIONS(5302), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5304), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5337), 6, + ACTIONS(5310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5209), 8, + ACTIONS(5253), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281317,7 +267916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5207), 29, + ACTIONS(5251), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281330,7 +267929,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, @@ -281347,129 +267945,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, - [51903] = 20, + [45940] = 16, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5358), 1, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5366), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - ACTIONS(5376), 1, + ACTIONS(5351), 1, sym__newline, - ACTIONS(5394), 1, - anon_sym_bit_DASHand2, - ACTIONS(5407), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5409), 1, - anon_sym_bit_DASHor2, - ACTIONS(5415), 1, - anon_sym_and2, - STATE(2318), 1, + STATE(2198), 1, aux_sym_shebang_repeat1, - STATE(2406), 1, + STATE(2257), 1, sym_comment, - ACTIONS(5360), 2, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5362), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5374), 2, + ACTIONS(5300), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5392), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5372), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5271), 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(5269), 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, - [52005] = 15, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5358), 1, - anon_sym_DASH2, - ACTIONS(5366), 1, - anon_sym_PLUS2, - ACTIONS(5389), 1, - sym__newline, - STATE(2294), 1, - aux_sym_shebang_repeat1, - STATE(2407), 1, - sym_comment, - ACTIONS(5360), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5362), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, + ACTIONS(5306), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5374), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5372), 4, + ACTIONS(5322), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5308), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5370), 6, + ACTIONS(5320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5287), 8, + ACTIONS(5199), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281478,7 +267997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5285), 27, + ACTIONS(5197), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281493,8 +268012,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, @@ -281506,52 +268023,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, - [52097] = 17, + [46034] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5358), 1, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5366), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - ACTIONS(5394), 1, - anon_sym_bit_DASHand2, - ACTIONS(5404), 1, + ACTIONS(5354), 1, sym__newline, - STATE(2364), 1, - aux_sym_shebang_repeat1, - STATE(2408), 1, + STATE(2258), 1, sym_comment, - ACTIONS(5360), 2, + STATE(2290), 1, + aux_sym_shebang_repeat1, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5362), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5374), 2, + ACTIONS(5300), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5392), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5372), 4, + ACTIONS(5306), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5308), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5370), 6, + ACTIONS(5320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5267), 8, + ACTIONS(5257), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281560,7 +268072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5265), 24, + ACTIONS(5255), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281575,6 +268087,9 @@ 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, @@ -281585,38 +268100,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, - [52193] = 13, + [46126] = 17, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5329), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - STATE(1653), 1, + ACTIONS(5324), 1, + anon_sym_bit_DASHand2, + ACTIONS(5351), 1, + sym__newline, + STATE(2200), 1, aux_sym_shebang_repeat1, - STATE(2409), 1, + STATE(2259), 1, sym_comment, - ACTIONS(5315), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5321), 2, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5325), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, + ACTIONS(5300), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5323), 4, + ACTIONS(5306), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5322), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5308), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5303), 8, + ACTIONS(5320), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5199), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281625,8 +268154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5301), 34, - sym__newline, + ACTIONS(5197), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281638,18 +268166,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_has2, - anon_sym_not_DASHhas2, - 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, @@ -281660,56 +268179,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, - [52281] = 19, + [46222] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5358), 1, - anon_sym_DASH2, - ACTIONS(5366), 1, - anon_sym_PLUS2, - ACTIONS(5376), 1, + ACTIONS(5084), 1, sym__newline, - ACTIONS(5394), 1, - anon_sym_bit_DASHand2, - ACTIONS(5407), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5409), 1, - anon_sym_bit_DASHor2, - STATE(2327), 1, - aux_sym_shebang_repeat1, - STATE(2410), 1, + STATE(2260), 1, sym_comment, - ACTIONS(5360), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5362), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, + ACTIONS(5089), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5374), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5392), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5372), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5271), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5093), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281718,7 +268201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5269), 22, + ACTIONS(5087), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281730,9 +268213,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_LBRACE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281741,25 +268222,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52381] = 9, + ACTIONS(5091), 25, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [46298] = 10, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5335), 1, + ACTIONS(5275), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5283), 1, anon_sym_PLUS2, - STATE(2411), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2261), 1, sym_comment, - ACTIONS(5339), 2, + ACTIONS(5277), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5345), 2, + ACTIONS(5279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5281), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5209), 10, + ACTIONS(5253), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -281770,7 +268279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5207), 41, + ACTIONS(5251), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281784,7 +268293,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, @@ -281812,29 +268320,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, - [52461] = 10, + [46380] = 18, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5329), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - STATE(1653), 1, + ACTIONS(5324), 1, + anon_sym_bit_DASHand2, + ACTIONS(5326), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5351), 1, + sym__newline, + STATE(2202), 1, aux_sym_shebang_repeat1, - STATE(2412), 1, + STATE(2262), 1, sym_comment, - ACTIONS(5321), 2, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5325), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5313), 10, + ACTIONS(5300), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5306), 2, anon_sym_GT2, anon_sym_LT2, + ACTIONS(5322), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5308), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5320), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5199), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281843,8 +268376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5311), 40, - sym__newline, + ACTIONS(5197), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281856,25 +268388,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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -281884,28 +268400,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, - [52543] = 9, + [46478] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5404), 1, + ACTIONS(5290), 1, + anon_sym_DASH2, + ACTIONS(5298), 1, + anon_sym_PLUS2, + ACTIONS(5354), 1, sym__newline, - STATE(2402), 1, - aux_sym_shebang_repeat1, - STATE(2413), 1, + STATE(2263), 1, sym_comment, - ACTIONS(5360), 2, + STATE(2291), 1, + aux_sym_shebang_repeat1, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5362), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5267), 11, + ACTIONS(5257), 10, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281914,7 +268433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5265), 40, + ACTIONS(5255), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281926,7 +268445,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, @@ -281955,46 +268473,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, - [52623] = 14, + [46562] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5335), 1, + ACTIONS(5275), 1, anon_sym_DASH2, - ACTIONS(5349), 1, + ACTIONS(5283), 1, anon_sym_PLUS2, - STATE(2414), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2264), 1, sym_comment, - ACTIONS(5333), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5339), 2, + ACTIONS(5277), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5343), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5345), 2, + ACTIONS(5279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, + ACTIONS(5281), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, + ACTIONS(5285), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5341), 4, + ACTIONS(5302), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5312), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5304), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5337), 6, + ACTIONS(5310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5209), 8, + ACTIONS(5253), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282003,7 +268523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5207), 27, + ACTIONS(5251), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282016,7 +268536,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, @@ -282031,54 +268550,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, - [52713] = 18, + [46654] = 16, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5358), 1, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5366), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - ACTIONS(5376), 1, + ACTIONS(5354), 1, sym__newline, - ACTIONS(5394), 1, - anon_sym_bit_DASHand2, - ACTIONS(5407), 1, - anon_sym_bit_DASHxor2, - STATE(2307), 1, - aux_sym_shebang_repeat1, - STATE(2415), 1, + STATE(2265), 1, sym_comment, - ACTIONS(5360), 2, + STATE(2292), 1, + aux_sym_shebang_repeat1, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5362), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5374), 2, + ACTIONS(5300), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5392), 2, + ACTIONS(5306), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5322), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5372), 4, + ACTIONS(5308), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5370), 6, + ACTIONS(5320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5271), 8, + ACTIONS(5257), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282087,7 +268602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5269), 23, + ACTIONS(5255), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -282102,6 +268617,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, @@ -282111,50 +268628,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, - [52811] = 16, + [46748] = 16, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5317), 1, + ACTIONS(5275), 1, anon_sym_DASH2, - ACTIONS(5329), 1, + ACTIONS(5283), 1, anon_sym_PLUS2, - ACTIONS(5383), 1, + ACTIONS(5314), 1, anon_sym_bit_DASHand2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(2416), 1, + STATE(2266), 1, sym_comment, - ACTIONS(5315), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5321), 2, + ACTIONS(5277), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5325), 2, + ACTIONS(5279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, + ACTIONS(5281), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, + ACTIONS(5285), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5381), 2, + ACTIONS(5302), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5312), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5323), 4, + ACTIONS(5304), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5319), 6, + ACTIONS(5310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5313), 8, + ACTIONS(5253), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282163,7 +268680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5311), 25, + ACTIONS(5251), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282189,40 +268706,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, - [52905] = 14, + [46842] = 17, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(5358), 1, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(5366), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - STATE(2358), 1, - aux_sym_shebang_repeat1, - STATE(2417), 1, + ACTIONS(5324), 1, + anon_sym_bit_DASHand2, + ACTIONS(5354), 1, + sym__newline, + STATE(2267), 1, sym_comment, - ACTIONS(5360), 2, + STATE(2293), 1, + aux_sym_shebang_repeat1, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5362), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5374), 2, + ACTIONS(5300), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5372), 4, + ACTIONS(5306), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5322), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5308), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5309), 8, + ACTIONS(5320), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5257), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282231,7 +268760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5307), 33, + ACTIONS(5255), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -282243,18 +268772,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_has2, - anon_sym_not_DASHhas2, - 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, @@ -282265,17 +268785,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, - [52995] = 4, + [46938] = 17, ACTIONS(245), 1, anon_sym_POUND, - STATE(2418), 1, + ACTIONS(5275), 1, + anon_sym_DASH2, + ACTIONS(5283), 1, + anon_sym_PLUS2, + ACTIONS(5314), 1, + anon_sym_bit_DASHand2, + ACTIONS(5316), 1, + anon_sym_bit_DASHxor2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2268), 1, sym_comment, - ACTIONS(2469), 13, - anon_sym_GT2, + ACTIONS(5277), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5281), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5285), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5302), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5312), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5304), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5310), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5253), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282284,8 +268839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2471), 45, - ts_builtin_sym_end, + ACTIONS(5251), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282297,30 +268851,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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -282330,86 +268864,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, - [53064] = 8, + [47034] = 18, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5427), 1, - anon_sym_DOT2, - STATE(2419), 1, - sym_comment, - STATE(2547), 1, - aux_sym_cell_path_repeat1, - STATE(2606), 1, - sym_path, - STATE(2670), 1, - sym_cell_path, - ACTIONS(1698), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1700), 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(5290), 1, + anon_sym_DASH2, + ACTIONS(5298), 1, + anon_sym_PLUS2, + ACTIONS(5324), 1, + anon_sym_bit_DASHand2, + ACTIONS(5326), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5354), 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, - [53141] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2420), 1, + STATE(2269), 1, sym_comment, - ACTIONS(2430), 13, + STATE(2294), 1, + aux_sym_shebang_repeat1, + ACTIONS(5292), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5294), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5296), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5300), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5306), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5322), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5308), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5320), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5257), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282418,9 +268920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2432), 45, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5255), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -282431,30 +268931,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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -282464,17 +268944,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, - [53210] = 4, + [47132] = 10, ACTIONS(245), 1, anon_sym_POUND, - STATE(2421), 1, + ACTIONS(5261), 1, + anon_sym_DASH2, + ACTIONS(5271), 1, + anon_sym_PLUS2, + STATE(2270), 1, sym_comment, - ACTIONS(1879), 13, - anon_sym_GT2, + ACTIONS(5263), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5267), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5269), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5273), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5187), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282483,8 +268976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1881), 45, - ts_builtin_sym_end, + ACTIONS(5185), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282496,8 +268988,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_RPAREN, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -282512,12 +269005,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, @@ -282529,85 +269016,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, - [53279] = 8, + [47214] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5427), 1, - anon_sym_DOT2, - STATE(2422), 1, + STATE(2271), 1, sym_comment, - STATE(2547), 1, - aux_sym_cell_path_repeat1, - STATE(2606), 1, - sym_path, - STATE(2660), 1, - sym_cell_path, - ACTIONS(1711), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1713), 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, + ACTIONS(5263), 2, 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, - [53356] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2423), 1, - sym_comment, - ACTIONS(1913), 13, + anon_sym_SLASH2, + ACTIONS(5267), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5269), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5187), 11, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -282617,8 +269042,7 @@ 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), 45, - ts_builtin_sym_end, + ACTIONS(5185), 42, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282630,8 +269054,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, @@ -282646,10 +269072,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, @@ -282663,12 +269085,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, - [53425] = 4, + [47290] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2424), 1, + STATE(2272), 1, sym_comment, - ACTIONS(1945), 13, + ACTIONS(5267), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5187), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -282682,8 +269107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1947), 45, - ts_builtin_sym_end, + ACTIONS(5185), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282695,8 +269119,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, @@ -282711,8 +269137,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, @@ -282728,17 +269152,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, - [53494] = 4, + [47362] = 17, ACTIONS(245), 1, anon_sym_POUND, - STATE(2425), 1, + ACTIONS(5261), 1, + anon_sym_DASH2, + ACTIONS(5271), 1, + anon_sym_PLUS2, + ACTIONS(5361), 1, + anon_sym_bit_DASHand2, + ACTIONS(5363), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5365), 1, + anon_sym_bit_DASHor2, + STATE(2273), 1, sym_comment, - ACTIONS(2374), 13, + ACTIONS(5259), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5263), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5267), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5269), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5273), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5359), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5265), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5357), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5187), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282747,8 +269206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2376), 45, - ts_builtin_sym_end, + ACTIONS(5185), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282760,31 +269218,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_DASH2, - anon_sym_in2, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -282793,17 +269231,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, - [53563] = 4, + [47458] = 18, ACTIONS(245), 1, anon_sym_POUND, - STATE(2426), 1, + ACTIONS(5261), 1, + anon_sym_DASH2, + ACTIONS(5271), 1, + anon_sym_PLUS2, + ACTIONS(5361), 1, + anon_sym_bit_DASHand2, + ACTIONS(5363), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5365), 1, + anon_sym_bit_DASHor2, + ACTIONS(5367), 1, + anon_sym_and2, + STATE(2274), 1, sym_comment, - ACTIONS(2382), 13, + ACTIONS(5259), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5263), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5267), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5269), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5273), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5359), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5265), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5357), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5187), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282812,8 +269287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2384), 45, - ts_builtin_sym_end, + ACTIONS(5185), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282825,31 +269299,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, + 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, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [47556] = 19, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5261), 1, anon_sym_DASH2, - anon_sym_in2, + ACTIONS(5271), 1, + anon_sym_PLUS2, + ACTIONS(5361), 1, + anon_sym_bit_DASHand2, + ACTIONS(5363), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5365), 1, + anon_sym_bit_DASHor2, + ACTIONS(5367), 1, anon_sym_and2, + ACTIONS(5369), 1, anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - 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(2275), 1, + sym_comment, + ACTIONS(5259), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5263), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5267), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(5269), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(5273), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + ACTIONS(5359), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5265), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5357), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5187), 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(5185), 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_RBRACE, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282858,17 +269392,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, - [53632] = 4, + [47656] = 13, ACTIONS(245), 1, anon_sym_POUND, - STATE(2427), 1, + ACTIONS(5261), 1, + anon_sym_DASH2, + ACTIONS(5271), 1, + anon_sym_PLUS2, + STATE(2276), 1, sym_comment, - ACTIONS(2328), 13, + ACTIONS(5259), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5263), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5267), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5269), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5273), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5265), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5357), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5187), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282877,8 +269437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2330), 45, - ts_builtin_sym_end, + ACTIONS(5185), 29, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282890,28 +269449,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_DASH2, - anon_sym_in2, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -282923,17 +269467,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, - [53701] = 4, + [47744] = 9, ACTIONS(245), 1, anon_sym_POUND, - STATE(2428), 1, + ACTIONS(5261), 1, + anon_sym_DASH2, + ACTIONS(5271), 1, + anon_sym_PLUS2, + STATE(2277), 1, sym_comment, - ACTIONS(2441), 13, - anon_sym_GT2, + ACTIONS(5263), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5267), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5269), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5187), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282942,8 +269496,7 @@ 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), 45, - ts_builtin_sym_end, + ACTIONS(5185), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282955,8 +269508,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_RPAREN, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -282971,10 +269525,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, @@ -282988,17 +269538,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, - [53770] = 4, + [47824] = 14, ACTIONS(245), 1, anon_sym_POUND, - STATE(2429), 1, + ACTIONS(5261), 1, + anon_sym_DASH2, + ACTIONS(5271), 1, + anon_sym_PLUS2, + STATE(2278), 1, sym_comment, - ACTIONS(1883), 13, + ACTIONS(5259), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5263), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5267), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5269), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5273), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5359), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5265), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5357), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5187), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283007,8 +269586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1885), 45, - ts_builtin_sym_end, + ACTIONS(5185), 27, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283020,28 +269598,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_DASH2, - anon_sym_in2, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -283053,17 +269614,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, - [53839] = 4, + [47914] = 15, ACTIONS(245), 1, anon_sym_POUND, - STATE(2430), 1, + ACTIONS(5261), 1, + anon_sym_DASH2, + ACTIONS(5271), 1, + anon_sym_PLUS2, + ACTIONS(5361), 1, + anon_sym_bit_DASHand2, + STATE(2279), 1, sym_comment, - ACTIONS(2332), 13, + ACTIONS(5259), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5263), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5267), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5269), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5273), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5359), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5265), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5357), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5187), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283072,8 +269664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2334), 45, - ts_builtin_sym_end, + ACTIONS(5185), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283085,29 +269676,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_DASH2, - anon_sym_in2, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -283118,17 +269691,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, - [53908] = 4, + [48006] = 16, ACTIONS(245), 1, anon_sym_POUND, - STATE(2431), 1, + ACTIONS(5261), 1, + anon_sym_DASH2, + ACTIONS(5271), 1, + anon_sym_PLUS2, + ACTIONS(5361), 1, + anon_sym_bit_DASHand2, + ACTIONS(5363), 1, + anon_sym_bit_DASHxor2, + STATE(2280), 1, sym_comment, - ACTIONS(2445), 13, + ACTIONS(5259), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5263), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5267), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5269), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5273), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5359), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5265), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5357), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5187), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283137,8 +269743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2447), 45, - ts_builtin_sym_end, + ACTIONS(5185), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283150,30 +269755,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_DASH2, - anon_sym_in2, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -283183,17 +269769,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53977] = 4, + [48100] = 37, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(245), 1, anon_sym_POUND, - STATE(2432), 1, + ACTIONS(247), 1, + sym_raw_string_begin, + ACTIONS(375), 1, + anon_sym_DASH2, + ACTIONS(1012), 1, + anon_sym_DOLLAR, + ACTIONS(3330), 1, + anon_sym_null, + ACTIONS(3334), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3336), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3340), 1, + aux_sym__val_number_decimal_token4, + STATE(1499), 1, + sym__val_number, + STATE(1585), 1, + sym_val_variable, + STATE(1628), 1, + sym_expr_parenthesized, + STATE(1842), 1, + sym__inter_single_quotes, + STATE(1843), 1, + sym__inter_double_quotes, + STATE(2018), 1, + sym__expr_unary_minus, + STATE(2281), 1, sym_comment, - ACTIONS(2449), 13, - anon_sym_GT2, + STATE(2848), 1, + sym__val_number_decimal, + STATE(3679), 1, + sym__expr_binary_expression, + STATE(6842), 1, + sym__expression, + ACTIONS(207), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3332), 2, + anon_sym_true, + anon_sym_false, + STATE(1340), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2017), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(223), 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(1992), 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, + [48236] = 37, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(247), 1, + sym_raw_string_begin, + ACTIONS(375), 1, + anon_sym_DASH2, + ACTIONS(1012), 1, + anon_sym_DOLLAR, + ACTIONS(3330), 1, + anon_sym_null, + ACTIONS(3334), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3336), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3340), 1, + aux_sym__val_number_decimal_token4, + STATE(1499), 1, + sym__val_number, + STATE(1585), 1, + sym_val_variable, + STATE(1628), 1, + sym_expr_parenthesized, + STATE(1842), 1, + sym__inter_single_quotes, + STATE(1843), 1, + sym__inter_double_quotes, + STATE(2018), 1, + sym__expr_unary_minus, + STATE(2282), 1, + sym_comment, + STATE(2848), 1, + sym__val_number_decimal, + STATE(3679), 1, + sym__expr_binary_expression, + STATE(6856), 1, + sym__expression, + ACTIONS(207), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3332), 2, + anon_sym_true, + anon_sym_false, + STATE(1340), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2017), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(223), 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(1992), 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, + [48372] = 11, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5275), 1, + anon_sym_DASH2, + ACTIONS(5283), 1, + anon_sym_PLUS2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2283), 1, + sym_comment, + ACTIONS(5277), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5281), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5285), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5227), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283202,8 +270001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2451), 45, - ts_builtin_sym_end, + ACTIONS(5225), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283215,7 +270013,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, @@ -283231,12 +270029,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, @@ -283248,16 +270040,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, - [54046] = 4, + [48456] = 8, ACTIONS(245), 1, anon_sym_POUND, - STATE(2433), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2284), 1, sym_comment, - ACTIONS(1891), 13, - anon_sym_GT2, + ACTIONS(5277), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(5279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5281), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5227), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -283267,8 +270068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1893), 45, - ts_builtin_sym_end, + ACTIONS(5225), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283280,6 +270080,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, @@ -283296,10 +270097,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, @@ -283313,17 +270110,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, - [54115] = 4, + [48534] = 13, ACTIONS(245), 1, anon_sym_POUND, - STATE(2434), 1, + ACTIONS(5275), 1, + anon_sym_DASH2, + ACTIONS(5283), 1, + anon_sym_PLUS2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2285), 1, sym_comment, - ACTIONS(2336), 13, - anon_sym_GT2, + ACTIONS(5277), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5281), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5285), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5302), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5304), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5227), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283332,8 +270150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2338), 45, - ts_builtin_sym_end, + ACTIONS(5225), 34, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283345,7 +270162,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, @@ -283355,18 +270172,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_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, @@ -283378,12 +270185,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, - [54184] = 4, + [48622] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(2435), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2286), 1, sym_comment, - ACTIONS(2049), 13, + ACTIONS(5279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5227), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -283397,8 +270209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2053), 45, - ts_builtin_sym_end, + ACTIONS(5225), 43, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283410,6 +270221,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, @@ -283426,8 +270238,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, @@ -283443,17 +270253,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, - [54253] = 4, + [48696] = 18, ACTIONS(245), 1, anon_sym_POUND, - STATE(2436), 1, + ACTIONS(5275), 1, + anon_sym_DASH2, + ACTIONS(5283), 1, + anon_sym_PLUS2, + ACTIONS(5314), 1, + anon_sym_bit_DASHand2, + ACTIONS(5316), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5318), 1, + anon_sym_bit_DASHor2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2287), 1, sym_comment, - ACTIONS(1931), 13, - anon_sym_GT2, + ACTIONS(5277), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5281), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5285), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5302), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5312), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5304), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5310), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5227), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283462,8 +270309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1933), 45, - ts_builtin_sym_end, + ACTIONS(5225), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283475,31 +270321,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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -283508,86 +270333,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54322] = 8, + [48794] = 19, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5427), 1, - anon_sym_DOT2, - STATE(2437), 1, + ACTIONS(5275), 1, + anon_sym_DASH2, + ACTIONS(5283), 1, + anon_sym_PLUS2, + ACTIONS(5314), 1, + anon_sym_bit_DASHand2, + ACTIONS(5316), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5318), 1, + anon_sym_bit_DASHor2, + ACTIONS(5330), 1, + anon_sym_and2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2288), 1, sym_comment, - STATE(2547), 1, - aux_sym_cell_path_repeat1, - STATE(2606), 1, - sym_path, - STATE(2612), 1, - sym_cell_path, - ACTIONS(925), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(927), 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(5277), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5281), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5285), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5302), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5312), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5304), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5310), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5227), 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(5225), 22, 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, - [54399] = 4, + 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, + [48894] = 20, ACTIONS(245), 1, anon_sym_POUND, - STATE(2438), 1, + ACTIONS(5275), 1, + anon_sym_DASH2, + ACTIONS(5283), 1, + anon_sym_PLUS2, + ACTIONS(5314), 1, + anon_sym_bit_DASHand2, + ACTIONS(5316), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5318), 1, + anon_sym_bit_DASHor2, + ACTIONS(5330), 1, + anon_sym_and2, + ACTIONS(5334), 1, + anon_sym_xor2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2289), 1, sym_comment, - ACTIONS(2453), 13, - anon_sym_GT2, + ACTIONS(5277), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5281), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5285), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5302), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5312), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5304), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5310), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5227), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283596,8 +270474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2455), 45, - ts_builtin_sym_end, + ACTIONS(5225), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283609,31 +270486,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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, + anon_sym_RPAREN, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -283642,17 +270496,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, - [54468] = 4, + [48996] = 14, ACTIONS(245), 1, anon_sym_POUND, - STATE(2439), 1, + ACTIONS(5275), 1, + anon_sym_DASH2, + ACTIONS(5283), 1, + anon_sym_PLUS2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2290), 1, sym_comment, - ACTIONS(2296), 13, - anon_sym_GT2, + ACTIONS(5277), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5281), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5285), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5302), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5304), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5310), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5227), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283661,8 +270543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2298), 45, - ts_builtin_sym_end, + ACTIONS(5225), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283674,28 +270555,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_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -283707,17 +270572,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, - [54537] = 4, + [49086] = 10, ACTIONS(245), 1, anon_sym_POUND, - STATE(2440), 1, + ACTIONS(5275), 1, + anon_sym_DASH2, + ACTIONS(5283), 1, + anon_sym_PLUS2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2291), 1, sym_comment, - ACTIONS(1935), 13, - anon_sym_GT2, + ACTIONS(5277), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5281), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5227), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283726,8 +270603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1937), 45, - ts_builtin_sym_end, + ACTIONS(5225), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283739,7 +270615,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, @@ -283755,10 +270631,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, @@ -283772,17 +270644,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, - [54606] = 4, + [49168] = 15, ACTIONS(245), 1, anon_sym_POUND, - STATE(2441), 1, + ACTIONS(5275), 1, + anon_sym_DASH2, + ACTIONS(5283), 1, + anon_sym_PLUS2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2292), 1, sym_comment, - ACTIONS(2461), 13, - anon_sym_GT2, + ACTIONS(5277), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5281), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5285), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5302), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5312), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5304), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5310), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5227), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283791,8 +270694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2463), 45, - ts_builtin_sym_end, + ACTIONS(5225), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283804,28 +270706,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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -283837,17 +270721,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, - [54675] = 4, + [49260] = 16, ACTIONS(245), 1, anon_sym_POUND, - STATE(2442), 1, + ACTIONS(5275), 1, + anon_sym_DASH2, + ACTIONS(5283), 1, + anon_sym_PLUS2, + ACTIONS(5314), 1, + anon_sym_bit_DASHand2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2293), 1, sym_comment, - ACTIONS(2465), 13, - anon_sym_GT2, + ACTIONS(5277), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5281), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5285), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5302), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5312), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5304), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5310), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5227), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283856,8 +270773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2467), 45, - ts_builtin_sym_end, + ACTIONS(5225), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283869,29 +270785,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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -283902,17 +270799,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, - [54744] = 4, + [49354] = 17, ACTIONS(245), 1, anon_sym_POUND, - STATE(2443), 1, + ACTIONS(5275), 1, + anon_sym_DASH2, + ACTIONS(5283), 1, + anon_sym_PLUS2, + ACTIONS(5314), 1, + anon_sym_bit_DASHand2, + ACTIONS(5316), 1, + anon_sym_bit_DASHxor2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2294), 1, sym_comment, - ACTIONS(2418), 13, - anon_sym_GT2, + ACTIONS(5277), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5281), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5285), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5302), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5312), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5304), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5310), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5227), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283921,8 +270853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2420), 45, - ts_builtin_sym_end, + ACTIONS(5225), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283934,30 +270865,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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -283967,107 +270878,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54813] = 34, + [49450] = 37, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3530), 1, - aux_sym_unquoted_token1, - ACTIONS(3842), 1, + ACTIONS(247), 1, + sym_raw_string_begin, + ACTIONS(375), 1, + anon_sym_DASH2, + ACTIONS(1012), 1, + anon_sym_DOLLAR, + ACTIONS(3330), 1, + anon_sym_null, + ACTIONS(3334), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3844), 1, + ACTIONS(3336), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3846), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3848), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4395), 1, - anon_sym_DOLLAR, - ACTIONS(4399), 1, + STATE(1499), 1, + sym__val_number, + STATE(1585), 1, + sym_val_variable, + STATE(1628), 1, + sym_expr_parenthesized, + STATE(1842), 1, + sym__inter_single_quotes, + STATE(1843), 1, + sym__inter_double_quotes, + STATE(2018), 1, + sym__expr_unary_minus, + STATE(2295), 1, + sym_comment, + STATE(2848), 1, + sym__val_number_decimal, + STATE(3679), 1, + sym__expr_binary_expression, + STATE(6872), 1, + sym__expression, + ACTIONS(207), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3332), 2, + anon_sym_true, + anon_sym_false, + STATE(1340), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2017), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(223), 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(1992), 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, + [49586] = 37, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, anon_sym_DOT_DOT, - ACTIONS(4425), 1, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, anon_sym_DQUOTE, - ACTIONS(4429), 1, + ACTIONS(237), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(4431), 1, + ACTIONS(239), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4433), 1, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(247), 1, sym_raw_string_begin, - ACTIONS(5275), 1, - anon_sym_LPAREN, - ACTIONS(5277), 1, - anon_sym_DASH_DASH, - ACTIONS(5279), 1, + ACTIONS(375), 1, anon_sym_DASH2, - ACTIONS(5283), 1, - sym_val_date, - STATE(2444), 1, - sym_comment, - STATE(2453), 1, - aux_sym_ctrl_do_repeat1, - STATE(3533), 1, - sym__flag, - STATE(5676), 1, - sym__inter_double_quotes, - STATE(5678), 1, + ACTIONS(1012), 1, + anon_sym_DOLLAR, + ACTIONS(3330), 1, + anon_sym_null, + ACTIONS(3334), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3336), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3340), 1, + aux_sym__val_number_decimal_token4, + STATE(1499), 1, + sym__val_number, + STATE(1585), 1, + sym_val_variable, + STATE(1628), 1, + sym_expr_parenthesized, + STATE(1842), 1, sym__inter_single_quotes, - STATE(5960), 1, + STATE(1843), 1, + sym__inter_double_quotes, + STATE(2018), 1, + sym__expr_unary_minus, + STATE(2296), 1, + sym_comment, + STATE(2848), 1, sym__val_number_decimal, - STATE(7905), 1, - sym__val_range, - STATE(7908), 1, - sym__unquoted_anonymous_prefix, - STATE(7914), 1, - sym_val_bool, - ACTIONS(3840), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4401), 2, + STATE(3679), 1, + sym__expr_binary_expression, + STATE(6880), 1, + sym__expression, + ACTIONS(207), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4427), 2, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3455), 2, - sym_short_flag, - sym_long_flag, - STATE(5417), 2, + ACTIONS(3332), 2, + anon_sym_true, + anon_sym_false, + STATE(1340), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5281), 3, + STATE(2017), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(223), 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(5311), 5, - sym_expr_parenthesized, - sym_val_variable, + STATE(1992), 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_unquoted, - ACTIONS(2728), 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(2730), 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, - [54942] = 4, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [49722] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2445), 1, + ACTIONS(1010), 1, + anon_sym_COLON2, + STATE(2297), 1, sym_comment, - ACTIONS(2045), 13, + ACTIONS(998), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284081,8 +271097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2047), 45, - ts_builtin_sym_end, + ACTIONS(994), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284096,6 +271111,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, @@ -284127,17 +271143,355 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55011] = 4, + [49794] = 37, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(245), 1, anon_sym_POUND, - STATE(2446), 1, + ACTIONS(247), 1, + sym_raw_string_begin, + ACTIONS(375), 1, + anon_sym_DASH2, + ACTIONS(1012), 1, + anon_sym_DOLLAR, + ACTIONS(3330), 1, + anon_sym_null, + ACTIONS(3334), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3336), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3340), 1, + aux_sym__val_number_decimal_token4, + STATE(1499), 1, + sym__val_number, + STATE(1585), 1, + sym_val_variable, + STATE(1628), 1, + sym_expr_parenthesized, + STATE(1842), 1, + sym__inter_single_quotes, + STATE(1843), 1, + sym__inter_double_quotes, + STATE(2018), 1, + sym__expr_unary_minus, + STATE(2298), 1, sym_comment, - ACTIONS(2422), 13, - anon_sym_GT2, + STATE(2848), 1, + sym__val_number_decimal, + STATE(3679), 1, + sym__expr_binary_expression, + STATE(6981), 1, + sym__expression, + ACTIONS(207), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3332), 2, + anon_sym_true, + anon_sym_false, + STATE(1340), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2017), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(223), 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(1992), 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, + [49930] = 37, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(247), 1, + sym_raw_string_begin, + ACTIONS(375), 1, + anon_sym_DASH2, + ACTIONS(1012), 1, + anon_sym_DOLLAR, + ACTIONS(3330), 1, + anon_sym_null, + ACTIONS(3334), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3336), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3340), 1, + aux_sym__val_number_decimal_token4, + STATE(1499), 1, + sym__val_number, + STATE(1585), 1, + sym_val_variable, + STATE(1628), 1, + sym_expr_parenthesized, + STATE(1842), 1, + sym__inter_single_quotes, + STATE(1843), 1, + sym__inter_double_quotes, + STATE(2018), 1, + sym__expr_unary_minus, + STATE(2299), 1, + sym_comment, + STATE(2848), 1, + sym__val_number_decimal, + STATE(3679), 1, + sym__expr_binary_expression, + STATE(6917), 1, + sym__expression, + ACTIONS(207), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3332), 2, + anon_sym_true, + anon_sym_false, + STATE(1340), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2017), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(223), 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(1992), 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, + [50066] = 37, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LPAREN, + ACTIONS(181), 1, + anon_sym_LBRACE, + ACTIONS(185), 1, + anon_sym_DOT_DOT, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, + ACTIONS(227), 1, + anon_sym_0b, + ACTIONS(231), 1, + sym_val_date, + ACTIONS(233), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(247), 1, + sym_raw_string_begin, + ACTIONS(375), 1, + anon_sym_DASH2, + ACTIONS(1012), 1, + anon_sym_DOLLAR, + ACTIONS(3330), 1, + anon_sym_null, + ACTIONS(3334), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3336), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3340), 1, + aux_sym__val_number_decimal_token4, + STATE(1499), 1, + sym__val_number, + STATE(1585), 1, + sym_val_variable, + STATE(1628), 1, + sym_expr_parenthesized, + STATE(1842), 1, + sym__inter_single_quotes, + STATE(1843), 1, + sym__inter_double_quotes, + STATE(2018), 1, + sym__expr_unary_minus, + STATE(2300), 1, + sym_comment, + STATE(2848), 1, + sym__val_number_decimal, + STATE(3679), 1, + sym__expr_binary_expression, + STATE(6942), 1, + sym__expression, + ACTIONS(207), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(229), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(235), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3332), 2, + anon_sym_true, + anon_sym_false, + STATE(1340), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2017), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(223), 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(1992), 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, + [50202] = 20, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5275), 1, + anon_sym_DASH2, + ACTIONS(5283), 1, + anon_sym_PLUS2, + ACTIONS(5314), 1, + anon_sym_bit_DASHand2, + ACTIONS(5316), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5318), 1, + anon_sym_bit_DASHor2, + ACTIONS(5330), 1, + anon_sym_and2, + ACTIONS(5334), 1, + anon_sym_xor2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(2301), 1, + sym_comment, + ACTIONS(5277), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5279), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5281), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5285), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5302), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5312), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5304), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5310), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5243), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284146,8 +271500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2424), 45, - ts_builtin_sym_end, + ACTIONS(5241), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284159,31 +271512,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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, + anon_sym_RPAREN, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -284192,12 +271522,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, - [55080] = 4, + [50304] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2447), 1, + STATE(2302), 1, sym_comment, - ACTIONS(1959), 13, + ACTIONS(4958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284211,7 +271541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1961), 45, + ACTIONS(4956), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284257,12 +271587,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, - [55149] = 4, + [50373] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2448), 1, + STATE(2303), 1, sym_comment, - ACTIONS(2370), 13, + ACTIONS(2144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284276,7 +271606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2372), 45, + ACTIONS(2148), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284322,86 +271652,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, - [55218] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2608), 1, - anon_sym_DOLLAR, - ACTIONS(5429), 1, - anon_sym_LPAREN2, - ACTIONS(5431), 1, - anon_sym_DOT, - ACTIONS(5435), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5437), 1, - aux_sym__immediate_decimal_token5, - STATE(2449), 1, - sym_comment, - STATE(2685), 1, - sym__immediate_decimal, - ACTIONS(1445), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5433), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2845), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1431), 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, - [55305] = 4, + [50442] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2450), 1, + STATE(2304), 1, sym_comment, - ACTIONS(5245), 13, + ACTIONS(2260), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284415,7 +271671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5243), 45, + ACTIONS(2262), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284461,12 +271717,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, - [55374] = 4, + [50511] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2451), 1, + STATE(2305), 1, sym_comment, - ACTIONS(2033), 13, + ACTIONS(1863), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284480,7 +271736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2039), 45, + ACTIONS(1865), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284526,12 +271782,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, - [55443] = 4, + [50580] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2452), 1, + STATE(2306), 1, sym_comment, - ACTIONS(1811), 13, + ACTIONS(1871), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284545,7 +271801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1819), 45, + ACTIONS(1873), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284591,112 +271847,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, - [55512] = 34, + [50649] = 18, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3530), 1, - aux_sym_unquoted_token1, - ACTIONS(3842), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3844), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3846), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3848), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4395), 1, - anon_sym_DOLLAR, - ACTIONS(4399), 1, - anon_sym_DOT_DOT, - ACTIONS(4425), 1, - anon_sym_DQUOTE, - ACTIONS(4429), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4431), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4433), 1, - sym_raw_string_begin, - ACTIONS(5275), 1, - anon_sym_LPAREN, - ACTIONS(5277), 1, - anon_sym_DASH_DASH, - ACTIONS(5279), 1, + ACTIONS(5373), 1, anon_sym_DASH2, - ACTIONS(5283), 1, - sym_val_date, - STATE(2453), 1, - sym_comment, - STATE(3288), 1, - aux_sym_ctrl_do_repeat1, - STATE(3533), 1, - sym__flag, - STATE(5676), 1, - sym__inter_double_quotes, - STATE(5678), 1, - sym__inter_single_quotes, - STATE(5960), 1, - sym__val_number_decimal, - STATE(7905), 1, - sym__val_range, - STATE(7908), 1, - sym__unquoted_anonymous_prefix, - STATE(7914), 1, - sym_val_bool, - ACTIONS(3840), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4401), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4427), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3455), 2, - sym_short_flag, - sym_long_flag, - STATE(5417), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5281), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(5343), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2728), 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(2730), 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, - [55641] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2454), 1, + ACTIONS(5379), 1, + anon_sym_and2, + ACTIONS(5389), 1, + anon_sym_PLUS2, + ACTIONS(5393), 1, + anon_sym_bit_DASHand2, + ACTIONS(5395), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5397), 1, + anon_sym_bit_DASHor2, + STATE(2307), 1, sym_comment, - ACTIONS(2475), 13, + ACTIONS(5371), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5377), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5383), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5385), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5387), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5391), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5375), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5187), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284705,7 +271903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2477), 45, + ACTIONS(5185), 22, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284718,31 +271916,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_DASH2, - anon_sym_in2, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -284751,12 +271926,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, - [55710] = 4, + [50746] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2455), 1, + STATE(2308), 1, sym_comment, - ACTIONS(2479), 13, + ACTIONS(2290), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284770,7 +271945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2481), 45, + ACTIONS(2292), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284816,12 +271991,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55779] = 4, + [50815] = 34, ACTIONS(245), 1, anon_sym_POUND, - STATE(2456), 1, + ACTIONS(3494), 1, + aux_sym_unquoted_token1, + ACTIONS(3910), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3912), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3914), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3916), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4354), 1, + anon_sym_DOLLAR, + ACTIONS(4358), 1, + anon_sym_DOT_DOT, + ACTIONS(4384), 1, + anon_sym_DQUOTE, + ACTIONS(4388), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4390), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4392), 1, + sym_raw_string_begin, + ACTIONS(5203), 1, + anon_sym_LPAREN, + ACTIONS(5205), 1, + anon_sym_DASH_DASH, + ACTIONS(5207), 1, + anon_sym_DASH2, + ACTIONS(5211), 1, + sym_val_date, + STATE(2309), 1, sym_comment, - ACTIONS(2414), 13, + STATE(2370), 1, + aux_sym_ctrl_do_repeat1, + STATE(3336), 1, + sym__flag, + STATE(5425), 1, + sym__inter_single_quotes, + STATE(5426), 1, + sym__inter_double_quotes, + STATE(5614), 1, + sym__val_number_decimal, + STATE(7015), 1, + sym_val_bool, + STATE(7269), 1, + sym__val_range, + STATE(7277), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3908), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4360), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4386), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3302), 2, + sym_short_flag, + sym_long_flag, + STATE(5097), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5209), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(4955), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2675), 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(2677), 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, + [50944] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2310), 1, + sym_comment, + ACTIONS(4958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284835,7 +272105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2416), 45, + ACTIONS(4956), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284881,17 +272151,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, - [55848] = 4, + [51013] = 19, ACTIONS(245), 1, anon_sym_POUND, - STATE(2457), 1, + ACTIONS(5373), 1, + anon_sym_DASH2, + ACTIONS(5379), 1, + anon_sym_and2, + ACTIONS(5389), 1, + anon_sym_PLUS2, + ACTIONS(5393), 1, + anon_sym_bit_DASHand2, + ACTIONS(5395), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5397), 1, + anon_sym_bit_DASHor2, + ACTIONS(5399), 1, + anon_sym_xor2, + STATE(2311), 1, sym_comment, - ACTIONS(2300), 13, + ACTIONS(5371), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5377), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5383), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5385), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5387), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5391), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5375), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5187), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284900,7 +272209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2302), 45, + ACTIONS(5185), 21, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -284913,31 +272222,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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -284946,12 +272231,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, - [55917] = 4, + [51112] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2458), 1, + STATE(2312), 1, sym_comment, - ACTIONS(2457), 13, + ACTIONS(1833), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -284965,7 +272250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2459), 45, + ACTIONS(1835), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285011,12 +272296,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, - [55986] = 4, + [51181] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2459), 1, + STATE(2313), 1, sym_comment, - ACTIONS(1579), 13, + ACTIONS(2294), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285030,7 +272315,7 @@ 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), 45, + ACTIONS(2296), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285076,12 +272361,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, - [56055] = 4, + [51250] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2460), 1, + STATE(2314), 1, sym_comment, - ACTIONS(4968), 13, + ACTIONS(4958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285095,7 +272380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4970), 45, + ACTIONS(4956), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285141,30 +272426,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56124] = 10, + [51319] = 13, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5439), 1, + ACTIONS(5373), 1, anon_sym_DASH2, - ACTIONS(5447), 1, + ACTIONS(5389), 1, anon_sym_PLUS2, - STATE(2461), 1, + STATE(2315), 1, sym_comment, - ACTIONS(5441), 2, + ACTIONS(5371), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5377), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5443), 2, + ACTIONS(5385), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5445), 2, + ACTIONS(5387), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5449), 2, + ACTIONS(5391), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5209), 10, + ACTIONS(5381), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5375), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5187), 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(5185), 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, + 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, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [51406] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2316), 1, + sym_comment, + ACTIONS(4958), 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, @@ -285173,7 +272519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5207), 38, + ACTIONS(4956), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285186,6 +272532,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, @@ -285201,6 +272548,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, @@ -285212,12 +272565,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, - [56205] = 4, + [51475] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2462), 1, + STATE(2317), 1, sym_comment, - ACTIONS(5000), 13, + ACTIONS(5187), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285231,7 +272584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4998), 45, + ACTIONS(5185), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285277,23 +272630,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, - [56274] = 7, + [51544] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2463), 1, + STATE(2318), 1, sym_comment, - ACTIONS(5441), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5443), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5445), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5209), 11, + ACTIONS(5173), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -285303,7 +272649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5207), 41, + ACTIONS(5171), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285332,6 +272678,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, @@ -285345,12 +272695,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, - [56349] = 4, + [51613] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2464), 1, + STATE(2319), 1, sym_comment, - ACTIONS(5000), 13, + ACTIONS(4958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285364,7 +272714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4998), 45, + ACTIONS(4956), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285410,36 +272760,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, - [56418] = 12, + [51682] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5439), 1, + ACTIONS(5373), 1, anon_sym_DASH2, - ACTIONS(5447), 1, + ACTIONS(5389), 1, anon_sym_PLUS2, - STATE(2465), 1, + STATE(2320), 1, sym_comment, - ACTIONS(5441), 2, + ACTIONS(5377), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5443), 2, + ACTIONS(5385), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5445), 2, + ACTIONS(5387), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5449), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5451), 2, + ACTIONS(5187), 10, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5453), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5209), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285448,7 +272789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5207), 34, + ACTIONS(5185), 40, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285470,8 +272811,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_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, @@ -285483,12 +272830,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, - [56503] = 4, + [51761] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2466), 1, + STATE(2321), 1, sym_comment, - ACTIONS(5000), 13, + ACTIONS(1973), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285502,7 +272849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4998), 45, + ACTIONS(1979), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285548,15 +272895,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, - [56572] = 5, + [51830] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2467), 1, + STATE(2322), 1, sym_comment, - ACTIONS(5443), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5209), 13, + ACTIONS(4958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285570,7 +272914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5207), 43, + ACTIONS(4956), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285599,6 +272943,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, @@ -285614,12 +272960,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, - [56643] = 4, + [51899] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2468), 1, + STATE(2323), 1, sym_comment, - ACTIONS(5000), 13, + ACTIONS(1805), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285633,7 +272979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4998), 45, + ACTIONS(1813), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285679,52 +273025,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, - [56712] = 17, + [51968] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5439), 1, + ACTIONS(5373), 1, anon_sym_DASH2, - ACTIONS(5447), 1, + ACTIONS(5389), 1, anon_sym_PLUS2, - ACTIONS(5459), 1, - anon_sym_bit_DASHand2, - ACTIONS(5461), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5463), 1, - anon_sym_bit_DASHor2, - STATE(2469), 1, + STATE(2324), 1, sym_comment, - ACTIONS(5441), 2, + ACTIONS(5371), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5377), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5443), 2, + ACTIONS(5383), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5385), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5445), 2, + ACTIONS(5387), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5449), 2, + ACTIONS(5391), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5451), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5457), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5453), 4, + ACTIONS(5381), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5455), 6, + ACTIONS(5375), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5209), 8, + ACTIONS(5187), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285733,7 +273073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5207), 23, + ACTIONS(5185), 26, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285749,6 +273089,9 @@ 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, @@ -285757,12 +273100,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, - [56807] = 4, + [52057] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2470), 1, + STATE(2325), 1, sym_comment, - ACTIONS(998), 13, + ACTIONS(4954), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285776,7 +273119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(994), 45, + ACTIONS(4952), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285822,12 +273165,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, - [56876] = 4, + [52126] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2471), 1, + STATE(2326), 1, sym_comment, - ACTIONS(5000), 13, + ACTIONS(4958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285841,7 +273184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4998), 45, + ACTIONS(4956), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285887,54 +273230,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, - [56945] = 18, + [52195] = 10, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5439), 1, + ACTIONS(5373), 1, anon_sym_DASH2, - ACTIONS(5447), 1, + ACTIONS(5389), 1, anon_sym_PLUS2, - ACTIONS(5459), 1, - anon_sym_bit_DASHand2, - ACTIONS(5461), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5463), 1, - anon_sym_bit_DASHor2, - ACTIONS(5465), 1, - anon_sym_and2, - STATE(2472), 1, + STATE(2327), 1, sym_comment, - ACTIONS(5441), 2, + ACTIONS(5377), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5443), 2, + ACTIONS(5385), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5445), 2, + ACTIONS(5387), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5449), 2, + ACTIONS(5391), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5451), 2, + ACTIONS(5187), 10, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5457), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5453), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5455), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5209), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285943,7 +273262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5207), 22, + ACTIONS(5185), 38, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285956,8 +273275,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_in2, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -285966,17 +273301,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, - [57042] = 4, + [52276] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(2473), 1, + STATE(2328), 1, sym_comment, - ACTIONS(5000), 13, + ACTIONS(4954), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(4984), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285985,7 +273321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4998), 45, + ACTIONS(4982), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -285998,6 +273334,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(4952), 25, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -286023,64 +273368,48 @@ 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, - [57111] = 19, + [52349] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5439), 1, + ACTIONS(5373), 1, anon_sym_DASH2, - ACTIONS(5447), 1, + ACTIONS(5389), 1, anon_sym_PLUS2, - ACTIONS(5459), 1, + ACTIONS(5393), 1, anon_sym_bit_DASHand2, - ACTIONS(5461), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5463), 1, - anon_sym_bit_DASHor2, - ACTIONS(5465), 1, - anon_sym_and2, - ACTIONS(5467), 1, - anon_sym_xor2, - STATE(2474), 1, + STATE(2329), 1, sym_comment, - ACTIONS(5441), 2, + ACTIONS(5371), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5377), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5443), 2, + ACTIONS(5383), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5385), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5445), 2, + ACTIONS(5387), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5449), 2, + ACTIONS(5391), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5451), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5457), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5453), 4, + ACTIONS(5381), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5455), 6, + ACTIONS(5375), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5209), 8, + ACTIONS(5187), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286089,7 +273418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5207), 21, + ACTIONS(5185), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286102,7 +273431,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_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -286111,12 +273444,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, - [57210] = 4, + [52440] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2475), 1, + STATE(2330), 1, sym_comment, - ACTIONS(5000), 13, + ACTIONS(2282), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286130,7 +273463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4998), 45, + ACTIONS(2284), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286176,43 +273509,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57279] = 13, - ACTIONS(245), 1, + [52509] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5439), 1, - anon_sym_DASH2, - ACTIONS(5447), 1, - anon_sym_PLUS2, - STATE(2476), 1, + ACTIONS(1447), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2490), 1, + anon_sym_DOLLAR, + ACTIONS(5401), 1, + anon_sym_LPAREN2, + ACTIONS(5403), 1, + anon_sym_DOT, + ACTIONS(5407), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5409), 1, + aux_sym__immediate_decimal_token5, + STATE(2331), 1, sym_comment, - ACTIONS(5441), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5443), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5445), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5449), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5451), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5453), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5455), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5209), 8, + STATE(2586), 1, + sym__immediate_decimal, + ACTIONS(1445), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5405), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2735), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1431), 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, @@ -286221,27 +273574,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(5207), 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, - 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, @@ -286250,12 +273582,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, - [57366] = 4, + aux_sym__unquoted_in_list_token1, + [52596] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2477), 1, + STATE(2332), 1, sym_comment, - ACTIONS(5000), 13, + ACTIONS(2286), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286269,7 +273602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4998), 45, + ACTIONS(2288), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286315,12 +273648,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, - [57435] = 4, + [52665] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2478), 1, + STATE(2333), 1, sym_comment, - ACTIONS(5209), 13, + ACTIONS(4958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286334,7 +273667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5207), 45, + ACTIONS(4956), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286380,12 +273713,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, - [57504] = 4, + [52734] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2479), 1, + STATE(2334), 1, sym_comment, - ACTIONS(5000), 13, + ACTIONS(2405), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286399,7 +273732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4998), 45, + ACTIONS(2407), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286445,27 +273778,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, - [57573] = 9, + [52803] = 16, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5439), 1, + ACTIONS(5373), 1, anon_sym_DASH2, - ACTIONS(5447), 1, + ACTIONS(5389), 1, anon_sym_PLUS2, - STATE(2480), 1, + ACTIONS(5393), 1, + anon_sym_bit_DASHand2, + ACTIONS(5395), 1, + anon_sym_bit_DASHxor2, + STATE(2335), 1, sym_comment, - ACTIONS(5441), 2, + ACTIONS(5371), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5377), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5443), 2, + ACTIONS(5383), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5385), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5445), 2, + ACTIONS(5387), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5209), 10, - anon_sym_GT2, - anon_sym_LT2, + ACTIONS(5391), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5375), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5187), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286474,7 +273830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5207), 40, + ACTIONS(5185), 24, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286487,25 +273843,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_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, @@ -286515,12 +273855,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, - [57652] = 4, + [52896] = 8, ACTIONS(245), 1, anon_sym_POUND, - STATE(2481), 1, + ACTIONS(5411), 1, + anon_sym_DOT2, + STATE(2336), 1, + sym_comment, + STATE(2409), 1, + aux_sym_cell_path_repeat1, + STATE(2469), 1, + sym_path, + STATE(2527), 1, + sym_cell_path, + ACTIONS(925), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(927), 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, + [52973] = 19, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(3078), 1, + anon_sym_DQUOTE, + ACTIONS(3084), 1, + sym_raw_string_begin, + ACTIONS(4928), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5417), 1, + sym__newline, + ACTIONS(5419), 1, + anon_sym_RBRACK, + STATE(2337), 1, sym_comment, - ACTIONS(5000), 13, + STATE(2405), 1, + aux_sym_shebang_repeat1, + STATE(2444), 1, + aux_sym_command_list_repeat1, + STATE(3580), 1, + sym__val_number_decimal, + STATE(6468), 1, + sym_cmd_identifier, + STATE(6490), 1, + sym_val_string, + STATE(6624), 1, + sym__command_name, + ACTIONS(3080), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5052), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5413), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5415), 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, + [53072] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2338), 1, + sym_comment, + ACTIONS(5191), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286534,7 +274023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4998), 45, + ACTIONS(5189), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286580,46 +274069,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, - [57721] = 14, + [53141] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5439), 1, - anon_sym_DASH2, - ACTIONS(5447), 1, - anon_sym_PLUS2, - STATE(2482), 1, + STATE(2339), 1, sym_comment, - ACTIONS(5441), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5443), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5445), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5449), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5451), 2, + ACTIONS(4958), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5457), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5453), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5455), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5209), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286628,7 +274088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5207), 26, + ACTIONS(4956), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286641,9 +274101,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -286655,12 +274134,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, - [57810] = 4, + [53210] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2483), 1, + STATE(2340), 1, sym_comment, - ACTIONS(5000), 13, + ACTIONS(4958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286674,7 +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(4998), 45, + ACTIONS(4956), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286720,48 +274199,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, - [57879] = 15, + [53279] = 34, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5439), 1, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, + sym_raw_string_begin, + ACTIONS(3468), 1, + aux_sym_unquoted_token1, + ACTIONS(3910), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3912), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3914), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3916), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4039), 1, + anon_sym_DOT_DOT, + ACTIONS(4082), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4084), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5205), 1, + anon_sym_DASH_DASH, + ACTIONS(5207), 1, anon_sym_DASH2, - ACTIONS(5447), 1, - anon_sym_PLUS2, - ACTIONS(5459), 1, - anon_sym_bit_DASHand2, - STATE(2484), 1, + ACTIONS(5211), 1, + sym_val_date, + ACTIONS(5421), 1, + anon_sym_LPAREN, + ACTIONS(5423), 1, + anon_sym_DOLLAR, + STATE(2341), 1, sym_comment, - ACTIONS(5441), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5443), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5445), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5449), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5451), 2, + STATE(2354), 1, + aux_sym_ctrl_do_repeat1, + STATE(3336), 1, + sym__flag, + STATE(5018), 1, + sym__inter_single_quotes, + STATE(5024), 1, + sym__inter_double_quotes, + STATE(5535), 1, + sym__val_number_decimal, + STATE(7015), 1, + sym_val_bool, + STATE(7094), 1, + sym__val_range, + STATE(7123), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(1264), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3908), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4041), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(3302), 2, + sym_short_flag, + sym_long_flag, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5239), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(4931), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2675), 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(2677), 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, + [53408] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2342), 1, + sym_comment, + ACTIONS(2298), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5457), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5453), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5455), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5209), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286770,7 +274313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5207), 25, + ACTIONS(2300), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286783,9 +274326,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -286796,16 +274359,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, - [57970] = 4, + [53477] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(2485), 1, + STATE(2343), 1, sym_comment, - ACTIONS(5000), 13, - anon_sym_GT2, + ACTIONS(5377), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(5385), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5387), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5187), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -286815,7 +274385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4998), 45, + ACTIONS(5185), 41, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286844,10 +274414,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, @@ -286861,50 +274427,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, - [58039] = 16, + [53552] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5439), 1, - anon_sym_DASH2, - ACTIONS(5447), 1, - anon_sym_PLUS2, - ACTIONS(5459), 1, - anon_sym_bit_DASHand2, - ACTIONS(5461), 1, - anon_sym_bit_DASHxor2, - STATE(2486), 1, + STATE(2344), 1, sym_comment, - ACTIONS(5441), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5443), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5445), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5449), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5451), 2, + ACTIONS(1883), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5457), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5453), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5455), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5209), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286913,7 +274446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5207), 24, + ACTIONS(1885), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -286926,9 +274459,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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -286938,12 +274492,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, - [58132] = 4, + [53621] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2487), 1, + STATE(2345), 1, sym_comment, - ACTIONS(2410), 13, + ACTIONS(2425), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -286957,7 +274511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2412), 45, + ACTIONS(2427), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287003,12 +274557,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58201] = 4, + [53690] = 19, ACTIONS(245), 1, anon_sym_POUND, - STATE(2488), 1, + ACTIONS(3078), 1, + anon_sym_DQUOTE, + ACTIONS(3084), 1, + sym_raw_string_begin, + ACTIONS(4928), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5417), 1, + sym__newline, + ACTIONS(5425), 1, + anon_sym_RBRACK, + STATE(2346), 1, sym_comment, - ACTIONS(5000), 13, + STATE(2414), 1, + aux_sym_shebang_repeat1, + STATE(2478), 1, + aux_sym_command_list_repeat1, + STATE(3580), 1, + sym__val_number_decimal, + STATE(6468), 1, + sym_cmd_identifier, + STATE(6490), 1, + sym_val_string, + STATE(6652), 1, + sym__command_name, + ACTIONS(3080), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5052), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5413), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5415), 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, + [53789] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2347), 1, + sym_comment, + ACTIONS(1949), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287022,7 +274656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4998), 45, + ACTIONS(1955), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287068,12 +274702,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, - [58270] = 4, + [53858] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2489), 1, + STATE(2348), 1, sym_comment, - ACTIONS(2320), 13, + ACTIONS(1957), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287087,7 +274721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2322), 45, + ACTIONS(1963), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287133,12 +274767,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, - [58339] = 4, + [53927] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2490), 1, + STATE(2349), 1, sym_comment, - ACTIONS(2009), 13, + ACTIONS(2134), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287152,7 +274786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2015), 45, + ACTIONS(2136), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287198,12 +274832,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, - [58408] = 4, + [53996] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2491), 1, + STATE(2350), 1, sym_comment, - ACTIONS(2017), 13, + ACTIONS(2394), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287217,7 +274851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2023), 45, + ACTIONS(2396), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287263,12 +274897,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, - [58477] = 4, + [54065] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2492), 1, + STATE(2351), 1, sym_comment, - ACTIONS(2041), 13, + ACTIONS(2278), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287282,7 +274916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2043), 45, + ACTIONS(2280), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287328,12 +274962,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, - [58546] = 4, + [54134] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2493), 1, + STATE(2352), 1, sym_comment, - ACTIONS(2025), 13, + ACTIONS(2278), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287347,7 +274981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2031), 45, + ACTIONS(2280), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287393,12 +275027,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, - [58615] = 4, + [54203] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2494), 1, + STATE(2353), 1, sym_comment, - ACTIONS(1778), 13, + ACTIONS(2342), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287412,7 +275046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1786), 45, + ACTIONS(2344), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287458,12 +275092,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58684] = 4, + [54272] = 34, ACTIONS(245), 1, anon_sym_POUND, - STATE(2495), 1, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, + sym_raw_string_begin, + ACTIONS(3468), 1, + aux_sym_unquoted_token1, + ACTIONS(3910), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3912), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3914), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3916), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4039), 1, + anon_sym_DOT_DOT, + ACTIONS(4082), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4084), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5205), 1, + anon_sym_DASH_DASH, + ACTIONS(5207), 1, + anon_sym_DASH2, + ACTIONS(5211), 1, + sym_val_date, + ACTIONS(5421), 1, + anon_sym_LPAREN, + ACTIONS(5423), 1, + anon_sym_DOLLAR, + STATE(2354), 1, sym_comment, - ACTIONS(2392), 13, + STATE(3090), 1, + aux_sym_ctrl_do_repeat1, + STATE(3336), 1, + sym__flag, + STATE(5018), 1, + sym__inter_single_quotes, + STATE(5024), 1, + sym__inter_double_quotes, + STATE(5535), 1, + sym__val_number_decimal, + STATE(7015), 1, + sym_val_bool, + STATE(7094), 1, + sym__val_range, + STATE(7123), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(1264), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3908), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4041), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(3302), 2, + sym_short_flag, + sym_long_flag, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5239), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(4900), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2675), 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(2677), 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, + [54401] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2355), 1, + sym_comment, + ACTIONS(1965), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287477,7 +275206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2394), 45, + ACTIONS(1971), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287523,17 +275252,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, - [58753] = 4, + [54470] = 12, ACTIONS(245), 1, anon_sym_POUND, - STATE(2496), 1, + ACTIONS(5373), 1, + anon_sym_DASH2, + ACTIONS(5389), 1, + anon_sym_PLUS2, + STATE(2356), 1, sym_comment, - ACTIONS(2342), 13, + ACTIONS(5371), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5377), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5385), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5387), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5391), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5187), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287542,7 +275290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2344), 45, + ACTIONS(5185), 34, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287555,7 +275303,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, @@ -287565,18 +275312,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_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, @@ -287588,12 +275325,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, - [58822] = 4, + [54555] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2497), 1, + STATE(2357), 1, sym_comment, - ACTIONS(2346), 13, + ACTIONS(1867), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287607,7 +275344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2348), 45, + ACTIONS(1869), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287653,12 +275390,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, - [58891] = 4, + [54624] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2498), 1, + STATE(2358), 1, sym_comment, - ACTIONS(2350), 13, + ACTIONS(2362), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287672,7 +275409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2352), 45, + ACTIONS(2364), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287718,12 +275455,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, - [58960] = 4, + [54693] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2499), 1, + STATE(2359), 1, sym_comment, - ACTIONS(2354), 13, + ACTIONS(2076), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287737,7 +275474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2356), 45, + ACTIONS(2078), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287783,12 +275520,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, - [59029] = 4, + [54762] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2500), 1, + STATE(2360), 1, sym_comment, - ACTIONS(2358), 13, + ACTIONS(1782), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287802,7 +275539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2360), 45, + ACTIONS(1790), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287848,12 +275585,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, - [59098] = 4, + [54831] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2501), 1, + STATE(2361), 1, sym_comment, - ACTIONS(2362), 13, + ACTIONS(1616), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287867,7 +275604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2364), 45, + ACTIONS(1628), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287913,107 +275650,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, - [59167] = 34, + [54900] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, - sym_raw_string_begin, - ACTIONS(3570), 1, - aux_sym_unquoted_token1, - ACTIONS(3842), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3844), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3846), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3848), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4139), 1, - anon_sym_DOT_DOT, - ACTIONS(4159), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4161), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5277), 1, - anon_sym_DASH_DASH, - ACTIONS(5279), 1, - anon_sym_DASH2, - ACTIONS(5283), 1, - sym_val_date, - ACTIONS(5469), 1, - anon_sym_LPAREN, - ACTIONS(5471), 1, - anon_sym_DOLLAR, - STATE(2502), 1, - sym_comment, - STATE(2506), 1, - aux_sym_ctrl_do_repeat1, - STATE(3533), 1, - sym__flag, - STATE(5242), 1, - sym__inter_single_quotes, - STATE(5247), 1, - sym__inter_double_quotes, - STATE(5822), 1, - sym__val_number_decimal, - STATE(7723), 1, - sym__val_range, - STATE(7727), 1, - sym__unquoted_anonymous_prefix, - STATE(7914), 1, - sym_val_bool, - ACTIONS(1264), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3840), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4141), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(3455), 2, - sym_short_flag, - sym_long_flag, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5295), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(5164), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2728), 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(2730), 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, - [59296] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2503), 1, + STATE(2362), 1, sym_comment, - ACTIONS(2366), 13, + ACTIONS(4958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -288027,7 +275669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2368), 45, + ACTIONS(4956), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -288073,12 +275715,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, - [59365] = 4, + [54969] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2504), 1, + STATE(2363), 1, sym_comment, - ACTIONS(2059), 13, + ACTIONS(5169), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -288092,7 +275734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2063), 45, + ACTIONS(5167), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -288138,52 +275780,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, - [59434] = 19, + [55038] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3152), 1, - anon_sym_DQUOTE, - ACTIONS(3158), 1, - sym_raw_string_begin, - ACTIONS(4986), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5477), 1, - sym__newline, - ACTIONS(5479), 1, - anon_sym_RBRACK, - STATE(2505), 1, + ACTIONS(5411), 1, + anon_sym_DOT2, + STATE(2364), 1, sym_comment, - STATE(2542), 1, - aux_sym_shebang_repeat1, - STATE(2600), 1, - aux_sym_command_list_repeat1, - STATE(3795), 1, - sym__val_number_decimal, - STATE(6937), 1, - sym_cmd_identifier, - STATE(6961), 1, - sym_val_string, - STATE(7089), 1, - sym__command_name, - ACTIONS(3154), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5281), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5473), 6, + STATE(2409), 1, + aux_sym_cell_path_repeat1, + STATE(2469), 1, + sym_path, + STATE(2501), 1, + sym_cell_path, + ACTIONS(1668), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5475), 34, + ACTIONS(1670), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -288218,107 +275836,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [59533] = 34, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, - sym_raw_string_begin, - ACTIONS(3570), 1, - aux_sym_unquoted_token1, - ACTIONS(3842), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, - ACTIONS(3844), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3846), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3848), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4139), 1, - anon_sym_DOT_DOT, - ACTIONS(4159), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4161), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5277), 1, - anon_sym_DASH_DASH, - ACTIONS(5279), 1, - anon_sym_DASH2, - ACTIONS(5283), 1, - sym_val_date, - ACTIONS(5469), 1, - anon_sym_LPAREN, - ACTIONS(5471), 1, - anon_sym_DOLLAR, - STATE(2506), 1, - sym_comment, - STATE(3288), 1, - aux_sym_ctrl_do_repeat1, - STATE(3533), 1, - sym__flag, - STATE(5242), 1, - sym__inter_single_quotes, - STATE(5247), 1, - sym__inter_double_quotes, - STATE(5822), 1, - sym__val_number_decimal, - STATE(7723), 1, - sym__val_range, - STATE(7727), 1, - sym__unquoted_anonymous_prefix, - STATE(7914), 1, - sym_val_bool, - ACTIONS(1264), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3840), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4141), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(3455), 2, - sym_short_flag, - sym_long_flag, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5295), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(5173), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2728), 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(2730), 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, - [59662] = 4, + [55115] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2507), 1, + STATE(2365), 1, sym_comment, - ACTIONS(1851), 13, + ACTIONS(2264), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -288332,7 +275868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1853), 45, + ACTIONS(2266), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -288378,12 +275914,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, - [59731] = 4, + [55184] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2508), 1, + STATE(2366), 1, sym_comment, - ACTIONS(2426), 13, + ACTIONS(1829), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -288397,7 +275933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2428), 45, + ACTIONS(1831), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -288443,12 +275979,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, - [59800] = 4, + [55253] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2509), 1, + STATE(2367), 1, sym_comment, - ACTIONS(2398), 13, + ACTIONS(5385), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5187), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -288462,7 +276001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2400), 45, + ACTIONS(5185), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -288491,8 +276030,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, @@ -288508,79 +276045,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, - [59869] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2510), 1, - sym_comment, - ACTIONS(4968), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(4972), 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(4966), 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, - ACTIONS(4970), 25, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [59942] = 4, + [55324] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2511), 1, + STATE(2368), 1, sym_comment, - ACTIONS(5241), 13, + ACTIONS(2270), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -288594,7 +276064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5239), 45, + ACTIONS(2272), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -288640,52 +276110,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, - [60011] = 19, + [55393] = 19, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3152), 1, + ACTIONS(1262), 1, anon_sym_DQUOTE, - ACTIONS(3158), 1, + ACTIONS(1266), 1, sym_raw_string_begin, - ACTIONS(4986), 1, + ACTIONS(3342), 1, + anon_sym_COLON2, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5477), 1, - sym__newline, - ACTIONS(5481), 1, - anon_sym_RBRACK, - STATE(2512), 1, + ACTIONS(5427), 1, + anon_sym_DASH_DASH, + STATE(2369), 1, sym_comment, - STATE(2531), 1, - aux_sym_shebang_repeat1, - STATE(2589), 1, - aux_sym_command_list_repeat1, - STATE(3795), 1, + STATE(2420), 1, + aux_sym_decl_def_repeat1, + STATE(2824), 1, + sym_long_flag, + STATE(3553), 1, sym__val_number_decimal, - STATE(6937), 1, + STATE(3932), 1, sym_cmd_identifier, - STATE(6961), 1, + STATE(3963), 1, sym_val_string, - STATE(7308), 1, + STATE(6224), 1, sym__command_name, - ACTIONS(3154), 2, + ACTIONS(1264), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4984), 2, + ACTIONS(4926), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(5281), 2, + STATE(3602), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5473), 6, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5475), 34, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -288720,12 +276190,176 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [60110] = 4, + [55492] = 34, ACTIONS(245), 1, anon_sym_POUND, - STATE(2513), 1, + ACTIONS(3494), 1, + aux_sym_unquoted_token1, + ACTIONS(3910), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3912), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3914), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3916), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4354), 1, + anon_sym_DOLLAR, + ACTIONS(4358), 1, + anon_sym_DOT_DOT, + ACTIONS(4384), 1, + anon_sym_DQUOTE, + ACTIONS(4388), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4390), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4392), 1, + sym_raw_string_begin, + ACTIONS(5203), 1, + anon_sym_LPAREN, + ACTIONS(5205), 1, + anon_sym_DASH_DASH, + ACTIONS(5207), 1, + anon_sym_DASH2, + ACTIONS(5211), 1, + sym_val_date, + STATE(2370), 1, + sym_comment, + STATE(3090), 1, + aux_sym_ctrl_do_repeat1, + STATE(3336), 1, + sym__flag, + STATE(5425), 1, + sym__inter_single_quotes, + STATE(5426), 1, + sym__inter_double_quotes, + STATE(5614), 1, + sym__val_number_decimal, + STATE(7015), 1, + sym_val_bool, + STATE(7269), 1, + sym__val_range, + STATE(7277), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3908), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4360), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4386), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3302), 2, + sym_short_flag, + sym_long_flag, + STATE(5097), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5209), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(5053), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2675), 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(2677), 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, + [55621] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5411), 1, + anon_sym_DOT2, + STATE(2371), 1, + sym_comment, + STATE(2409), 1, + aux_sym_cell_path_repeat1, + STATE(2469), 1, + sym_path, + STATE(2505), 1, + sym_cell_path, + ACTIONS(1674), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1676), 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, + [55698] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2372), 1, sym_comment, - ACTIONS(1927), 13, + ACTIONS(2409), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -288739,7 +276373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1929), 45, + ACTIONS(2411), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -288785,12 +276419,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, - [60179] = 4, + [55767] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2514), 1, + STATE(2373), 1, sym_comment, - ACTIONS(2406), 13, + ACTIONS(4958), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -288804,7 +276438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2408), 45, + ACTIONS(4956), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -288850,12 +276484,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60248] = 4, + [55836] = 17, ACTIONS(245), 1, anon_sym_POUND, - STATE(2515), 1, + ACTIONS(5373), 1, + anon_sym_DASH2, + ACTIONS(5389), 1, + anon_sym_PLUS2, + ACTIONS(5393), 1, + anon_sym_bit_DASHand2, + ACTIONS(5395), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5397), 1, + anon_sym_bit_DASHor2, + STATE(2374), 1, sym_comment, - ACTIONS(2469), 13, + ACTIONS(5371), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5377), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5383), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5385), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5387), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5391), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5375), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5187), 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(5185), 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, + [55931] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2375), 1, + sym_comment, + ACTIONS(998), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -288869,7 +276581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2471), 45, + ACTIONS(994), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -288915,172 +276627,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, - [60317] = 19, + [56000] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, - sym_raw_string_begin, - ACTIONS(3440), 1, - anon_sym_COLON2, - ACTIONS(4986), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5483), 1, - anon_sym_DASH_DASH, - STATE(2516), 1, - sym_comment, - STATE(2546), 1, - aux_sym_decl_def_repeat1, - STATE(3038), 1, - sym_long_flag, - STATE(3790), 1, - sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, - sym_cmd_identifier, - STATE(6698), 1, - sym__command_name, - ACTIONS(1264), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4974), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4976), 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, - [60416] = 19, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, - sym_raw_string_begin, - ACTIONS(3430), 1, - anon_sym_COLON2, - ACTIONS(4986), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5483), 1, - anon_sym_DASH_DASH, - STATE(2517), 1, + STATE(2376), 1, sym_comment, - STATE(2546), 1, - aux_sym_decl_def_repeat1, - STATE(3038), 1, - sym_long_flag, - STATE(3790), 1, - sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, - sym_cmd_identifier, - STATE(6698), 1, - sym__command_name, - ACTIONS(1264), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4974), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4976), 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, - [60515] = 4, + ACTIONS(2390), 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(2392), 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [56069] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2518), 1, + STATE(2377), 1, sym_comment, - ACTIONS(2194), 13, + ACTIONS(2421), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289094,7 +276711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2198), 45, + ACTIONS(2423), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289140,12 +276757,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, - [60584] = 4, + [56138] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2519), 1, + STATE(2378), 1, sym_comment, - ACTIONS(5213), 13, + ACTIONS(2370), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289159,7 +276776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5211), 45, + ACTIONS(2372), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289205,12 +276822,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, - [60653] = 4, + [56207] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2520), 1, + STATE(2379), 1, sym_comment, - ACTIONS(2378), 13, + ACTIONS(2374), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289224,7 +276841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2380), 45, + ACTIONS(2376), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289270,276 +276887,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, - [60722] = 18, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, - sym_raw_string_begin, - ACTIONS(4986), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5483), 1, - anon_sym_DASH_DASH, - STATE(2521), 1, - sym_comment, - STATE(2541), 1, - aux_sym_decl_def_repeat1, - STATE(3038), 1, - sym_long_flag, - STATE(3790), 1, - sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, - sym_cmd_identifier, - STATE(6712), 1, - sym__command_name, - ACTIONS(1264), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4974), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4976), 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, - [60818] = 18, + [56276] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, - sym_raw_string_begin, - ACTIONS(4986), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5483), 1, - anon_sym_DASH_DASH, - STATE(2522), 1, - sym_comment, - STATE(2850), 1, - aux_sym_decl_def_repeat1, - STATE(3038), 1, - sym_long_flag, - STATE(3790), 1, - sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, - sym_cmd_identifier, - STATE(6708), 1, - sym__command_name, - ACTIONS(1264), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4974), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4976), 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, - [60914] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5485), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5487), 1, - aux_sym__immediate_decimal_token2, - STATE(2523), 1, - sym_comment, - ACTIONS(1486), 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(1484), 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, - [60986] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5489), 1, - anon_sym_DOT, - ACTIONS(5491), 1, - aux_sym__immediate_decimal_token2, - STATE(2524), 1, + STATE(2380), 1, sym_comment, - ACTIONS(1494), 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(1492), 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(4958), 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, @@ -289548,6 +276906,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(4956), 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -289556,44 +276952,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, - aux_sym__unquoted_in_list_token2, - [61058] = 14, + [56345] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(3862), 1, - anon_sym_DOLLAR, - ACTIONS(5493), 1, - anon_sym_LPAREN2, - ACTIONS(5495), 1, - anon_sym_DOT, - ACTIONS(5497), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5499), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5501), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5503), 1, - aux_sym__immediate_decimal_token5, - STATE(2525), 1, + STATE(2381), 1, sym_comment, - STATE(2855), 1, - sym__immediate_decimal, - STATE(2912), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1431), 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(2378), 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, @@ -289602,28 +276971,44 @@ 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(1445), 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(2380), 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -289632,277 +277017,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, - [61146] = 18, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, - sym_raw_string_begin, - ACTIONS(4986), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5483), 1, - anon_sym_DASH_DASH, - STATE(2526), 1, - sym_comment, - STATE(2850), 1, - aux_sym_decl_def_repeat1, - STATE(3038), 1, - sym_long_flag, - STATE(3790), 1, - sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, - sym_cmd_identifier, - STATE(6777), 1, - sym__command_name, - ACTIONS(1264), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4974), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4976), 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, - [61242] = 6, + [56414] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5505), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5507), 1, - aux_sym__immediate_decimal_token2, - STATE(2527), 1, - sym_comment, - ACTIONS(1484), 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(1486), 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, - [61314] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5509), 1, - anon_sym_DOLLAR, - ACTIONS(5511), 1, - anon_sym_LPAREN2, - ACTIONS(5515), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5517), 1, - aux_sym__immediate_decimal_token5, - STATE(2528), 1, - sym_comment, - STATE(2917), 1, - sym__immediate_decimal, - ACTIONS(1445), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5513), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3099), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1431), 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, - [61398] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5509), 1, - anon_sym_DOLLAR, - ACTIONS(5511), 1, - anon_sym_LPAREN2, - ACTIONS(5515), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5517), 1, - aux_sym__immediate_decimal_token5, - STATE(2529), 1, + STATE(2382), 1, sym_comment, - STATE(2922), 1, - sym__immediate_decimal, - ACTIONS(1468), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5513), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3114), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1466), 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(2382), 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, @@ -289911,6 +277036,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2384), 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, @@ -289919,401 +277082,117 @@ static const 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, - [61482] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5519), 1, - anon_sym_DOT, - ACTIONS(5521), 1, - aux_sym__immediate_decimal_token2, - STATE(2530), 1, - sym_comment, - ACTIONS(1492), 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(1494), 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, - [61554] = 18, + [56483] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3152), 1, - anon_sym_DQUOTE, - ACTIONS(3158), 1, - sym_raw_string_begin, - ACTIONS(4986), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5477), 1, - sym__newline, - STATE(2531), 1, - sym_comment, - STATE(2594), 1, - aux_sym_command_list_repeat1, - STATE(2935), 1, - aux_sym_shebang_repeat1, - STATE(3795), 1, - sym__val_number_decimal, - STATE(6937), 1, - sym_cmd_identifier, - STATE(6961), 1, - sym_val_string, - STATE(7154), 1, - sym__command_name, - ACTIONS(3154), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5281), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5473), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5475), 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, - [61650] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2608), 1, - anon_sym_DOLLAR, - ACTIONS(5429), 1, - anon_sym_LPAREN2, - ACTIONS(5523), 1, - anon_sym_DOT, - ACTIONS(5527), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5529), 1, - aux_sym__immediate_decimal_token5, - STATE(2532), 1, + STATE(2383), 1, sym_comment, - STATE(2844), 1, - sym__immediate_decimal, - ACTIONS(1482), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5525), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2843), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1472), 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(2318), 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, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - 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, - [61734] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5531), 1, - anon_sym_DOT2, - STATE(2533), 1, - sym_comment, - STATE(2558), 1, - aux_sym_cell_path_repeat1, - STATE(2645), 1, - sym_path, - STATE(2694), 1, - sym_cell_path, - ACTIONS(1711), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1713), 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, - [61810] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5533), 1, - anon_sym_DOT2, - STATE(2606), 1, - sym_path, - STATE(2534), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(935), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(937), 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, - [61882] = 18, + 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(2320), 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [56552] = 19, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(1262), 1, anon_sym_DQUOTE, ACTIONS(1266), 1, sym_raw_string_begin, - ACTIONS(4986), 1, + ACTIONS(3408), 1, + anon_sym_COLON2, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5483), 1, + ACTIONS(5427), 1, anon_sym_DASH_DASH, - STATE(2535), 1, + STATE(2384), 1, sym_comment, - STATE(2540), 1, + STATE(2420), 1, aux_sym_decl_def_repeat1, - STATE(3038), 1, + STATE(2824), 1, sym_long_flag, - STATE(3790), 1, + STATE(3553), 1, sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, + STATE(3932), 1, sym_cmd_identifier, - STATE(6467), 1, + STATE(3963), 1, + sym_val_string, + STATE(6224), 1, sym__command_name, ACTIONS(1264), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4984), 2, + ACTIONS(4926), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3801), 2, + STATE(3602), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4974), 6, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4976), 34, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -290348,420 +277227,765 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [61978] = 8, + [56651] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5531), 1, - anon_sym_DOT2, - STATE(2536), 1, + STATE(2385), 1, sym_comment, - STATE(2558), 1, - aux_sym_cell_path_repeat1, - STATE(2645), 1, - sym_path, - STATE(2756), 1, - sym_cell_path, - ACTIONS(1698), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1700), 47, - sym_raw_string_begin, + 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(2324), 45, 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_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [56720] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2386), 1, + sym_comment, + ACTIONS(2326), 13, + anon_sym_GT2, 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, - [62054] = 8, + 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(2328), 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [56789] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5531), 1, - anon_sym_DOT2, - STATE(2537), 1, + STATE(2387), 1, sym_comment, - STATE(2558), 1, - aux_sym_cell_path_repeat1, - STATE(2645), 1, - sym_path, - STATE(2736), 1, - sym_cell_path, - ACTIONS(925), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(927), 47, - sym_raw_string_begin, + ACTIONS(2274), 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(2276), 45, 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_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [56858] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2388), 1, + sym_comment, + ACTIONS(2330), 13, + anon_sym_GT2, 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, - [62130] = 18, + 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(2332), 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [56927] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, - sym_raw_string_begin, - ACTIONS(4986), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5483), 1, - anon_sym_DASH_DASH, - STATE(2538), 1, + STATE(2389), 1, sym_comment, - STATE(2850), 1, - aux_sym_decl_def_repeat1, - STATE(3038), 1, - sym_long_flag, - STATE(3790), 1, - sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, - sym_cmd_identifier, - STATE(6547), 1, - sym__command_name, - ACTIONS(1264), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4974), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4976), 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, - [62226] = 18, + ACTIONS(2334), 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(2336), 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [56996] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, - sym_raw_string_begin, - ACTIONS(4986), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5483), 1, - anon_sym_DASH_DASH, - STATE(2526), 1, - aux_sym_decl_def_repeat1, - STATE(2539), 1, + STATE(2390), 1, sym_comment, - STATE(3038), 1, - sym_long_flag, - STATE(3790), 1, - sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, - sym_cmd_identifier, - STATE(6368), 1, - sym__command_name, - ACTIONS(1264), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4974), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4976), 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, - [62322] = 18, + ACTIONS(2338), 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(2340), 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [57065] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, - sym_raw_string_begin, - ACTIONS(4986), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5483), 1, - anon_sym_DASH_DASH, - STATE(2540), 1, + STATE(2391), 1, sym_comment, - STATE(2850), 1, - aux_sym_decl_def_repeat1, - STATE(3038), 1, - sym_long_flag, - STATE(3790), 1, - sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, - sym_cmd_identifier, - STATE(6776), 1, - sym__command_name, - ACTIONS(1264), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4974), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4976), 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, - [62418] = 18, + ACTIONS(2302), 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(2304), 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [57134] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2392), 1, + sym_comment, + ACTIONS(2306), 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(2308), 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [57203] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2393), 1, + sym_comment, + ACTIONS(2310), 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(2312), 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [57272] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2394), 1, + sym_comment, + ACTIONS(2138), 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(2142), 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [57341] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2395), 1, + sym_comment, + ACTIONS(2162), 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(2166), 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [57410] = 18, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(1262), 1, anon_sym_DQUOTE, ACTIONS(1266), 1, sym_raw_string_begin, - ACTIONS(4986), 1, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5483), 1, + ACTIONS(5427), 1, anon_sym_DASH_DASH, - STATE(2541), 1, + STATE(2396), 1, sym_comment, - STATE(2850), 1, + STATE(2725), 1, aux_sym_decl_def_repeat1, - STATE(3038), 1, + STATE(2824), 1, sym_long_flag, - STATE(3790), 1, + STATE(3553), 1, sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, + STATE(3932), 1, sym_cmd_identifier, - STATE(6714), 1, + STATE(3963), 1, + sym_val_string, + STATE(6256), 1, sym__command_name, ACTIONS(1264), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4984), 2, + ACTIONS(4926), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3801), 2, + STATE(3602), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4974), 6, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4976), 34, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -290796,128 +278020,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [62514] = 18, + [57506] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3152), 1, - anon_sym_DQUOTE, - ACTIONS(3158), 1, - sym_raw_string_begin, - ACTIONS(4986), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5477), 1, - sym__newline, - STATE(2542), 1, + ACTIONS(5429), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5431), 1, + aux_sym__immediate_decimal_token2, + STATE(2397), 1, sym_comment, - STATE(2568), 1, - aux_sym_command_list_repeat1, - STATE(2935), 1, - aux_sym_shebang_repeat1, - STATE(3795), 1, - sym__val_number_decimal, - STATE(6886), 1, - sym__command_name, - STATE(6937), 1, - sym_cmd_identifier, - STATE(6961), 1, - sym_val_string, - ACTIONS(3154), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5281), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5473), 6, + ACTIONS(1491), 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, - ACTIONS(5475), 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, - [62610] = 18, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, - sym_raw_string_begin, - ACTIONS(4986), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5483), 1, - anon_sym_DASH_DASH, - STATE(2538), 1, - aux_sym_decl_def_repeat1, - STATE(2543), 1, - sym_comment, - STATE(3038), 1, - sym_long_flag, - STATE(3790), 1, - sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, - sym_cmd_identifier, - STATE(6464), 1, - sym__command_name, - ACTIONS(1264), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4984), 2, + anon_sym_DOT_DOT2, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4974), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4976), 34, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1493), 44, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -290952,260 +278077,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [62706] = 18, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, - sym_raw_string_begin, - ACTIONS(4986), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5483), 1, anon_sym_DASH_DASH, - STATE(2544), 1, - sym_comment, - STATE(2546), 1, - aux_sym_decl_def_repeat1, - STATE(3038), 1, - sym_long_flag, - STATE(3790), 1, - sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, - sym_cmd_identifier, - STATE(6698), 1, - sym__command_name, - ACTIONS(1264), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4974), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4976), 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, - [62802] = 18, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, - sym_raw_string_begin, - ACTIONS(4986), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5483), 1, - anon_sym_DASH_DASH, - STATE(2522), 1, - aux_sym_decl_def_repeat1, - STATE(2545), 1, - sym_comment, - STATE(3038), 1, - sym_long_flag, - STATE(3790), 1, - sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, - sym_cmd_identifier, - STATE(6704), 1, - sym__command_name, - ACTIONS(1264), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4974), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4976), 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, - [62898] = 18, + [57578] = 18, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(1262), 1, anon_sym_DQUOTE, ACTIONS(1266), 1, sym_raw_string_begin, - ACTIONS(4986), 1, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5483), 1, + ACTIONS(5427), 1, anon_sym_DASH_DASH, - STATE(2546), 1, + STATE(2398), 1, sym_comment, - STATE(2850), 1, + STATE(2415), 1, aux_sym_decl_def_repeat1, - STATE(3038), 1, + STATE(2824), 1, sym_long_flag, - STATE(3790), 1, + STATE(3553), 1, sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, + STATE(3932), 1, sym_cmd_identifier, - STATE(6705), 1, + STATE(3963), 1, + sym_val_string, + STATE(6365), 1, sym__command_name, ACTIONS(1264), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4984), 2, + ACTIONS(4926), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3801), 2, + STATE(3602), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4974), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4976), 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, - [62994] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5427), 1, - anon_sym_DOT2, - STATE(2534), 1, - aux_sym_cell_path_repeat1, - STATE(2547), 1, - sym_comment, - STATE(2606), 1, - sym_path, - ACTIONS(931), 6, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(933), 48, - sym_raw_string_begin, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291240,27 +278164,16 @@ 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, - [63068] = 5, + [57674] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5491), 1, + ACTIONS(5433), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5435), 1, aux_sym__immediate_decimal_token2, - STATE(2548), 1, + STATE(2399), 1, sym_comment, - ACTIONS(1494), 7, + ACTIONS(1493), 7, sym_raw_string_begin, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, @@ -291268,7 +278181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - ACTIONS(1492), 48, + ACTIONS(1491), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -291317,511 +278230,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - [63137] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5509), 1, - anon_sym_DOLLAR, - ACTIONS(5511), 1, - anon_sym_LPAREN2, - ACTIONS(5538), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5540), 1, - aux_sym__immediate_decimal_token5, - STATE(2549), 1, - sym_comment, - STATE(3106), 1, - sym__immediate_decimal, - ACTIONS(1646), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5536), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3105), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1644), 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, - [63218] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5509), 1, - anon_sym_DOLLAR, - ACTIONS(5511), 1, - anon_sym_LPAREN2, - ACTIONS(5538), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5540), 1, - aux_sym__immediate_decimal_token5, - STATE(2550), 1, - sym_comment, - STATE(3111), 1, - sym__immediate_decimal, - ACTIONS(1577), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5536), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3108), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1575), 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, - [63299] = 11, - ACTIONS(3), 1, + [57746] = 18, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5509), 1, - anon_sym_DOLLAR, - ACTIONS(5511), 1, - anon_sym_LPAREN2, - ACTIONS(5538), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5540), 1, - aux_sym__immediate_decimal_token5, - STATE(2551), 1, - sym_comment, - STATE(3113), 1, - sym__immediate_decimal, - ACTIONS(1552), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5536), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3112), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1544), 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, + ACTIONS(1262), 1, 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, - [63380] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_LPAREN2, - ACTIONS(5544), 1, - anon_sym_DOT_DOT2, - ACTIONS(5548), 1, - sym_filesize_unit, - ACTIONS(5550), 1, - sym_duration_unit, - ACTIONS(5552), 1, - aux_sym__unquoted_in_list_token2, - STATE(2552), 1, - sym_comment, - STATE(7475), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1591), 2, + ACTIONS(1266), 1, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5546), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1579), 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, - [63461] = 13, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5554), 1, - anon_sym_DOLLAR, - ACTIONS(5556), 1, - anon_sym_LPAREN2, - ACTIONS(5558), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5560), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5562), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5564), 1, - aux_sym__immediate_decimal_token5, - STATE(2553), 1, - sym_comment, - STATE(3125), 1, - sym__immediate_decimal, - STATE(3198), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1466), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4930), 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(1468), 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, - [63546] = 13, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5554), 1, - anon_sym_DOLLAR, - ACTIONS(5556), 1, - anon_sym_LPAREN2, - ACTIONS(5558), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5560), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5562), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5564), 1, - aux_sym__immediate_decimal_token5, - STATE(2554), 1, + ACTIONS(5427), 1, + anon_sym_DASH_DASH, + STATE(2400), 1, sym_comment, - STATE(3116), 1, - sym__immediate_decimal, - STATE(3224), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1431), 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(1445), 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, + STATE(2407), 1, + aux_sym_decl_def_repeat1, + STATE(2824), 1, + sym_long_flag, + STATE(3553), 1, + sym__val_number_decimal, + STATE(3932), 1, + sym_cmd_identifier, + STATE(3963), 1, + sym_val_string, + STATE(6262), 1, + sym__command_name, + ACTIONS(1264), 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, - [63631] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5566), 1, - aux_sym__immediate_decimal_token2, - STATE(2555), 1, - sym_comment, - ACTIONS(1540), 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(1538), 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, + ACTIONS(4926), 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, - aux_sym__val_number_token1, - aux_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, - [63700] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5568), 1, - anon_sym_QMARK2, - STATE(2556), 1, - sym_comment, - ACTIONS(942), 7, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_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_DOT2, - ACTIONS(944), 48, - sym_raw_string_begin, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -291856,44 +278308,33 @@ 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, - [63769] = 11, + [57842] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5509), 1, + ACTIONS(1447), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5437), 1, anon_sym_DOLLAR, - ACTIONS(5511), 1, + ACTIONS(5439), 1, anon_sym_LPAREN2, - ACTIONS(5538), 1, + ACTIONS(5443), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5540), 1, + ACTIONS(5445), 1, aux_sym__immediate_decimal_token5, - STATE(2557), 1, + STATE(2401), 1, sym_comment, - STATE(3098), 1, + STATE(2755), 1, sym__immediate_decimal, - ACTIONS(1482), 2, + ACTIONS(1445), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5536), 2, + ACTIONS(5441), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3096), 2, + STATE(2953), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1472), 45, + ACTIONS(1431), 45, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -291939,25 +278380,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, - [63850] = 7, + [57926] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5531), 1, + ACTIONS(5447), 1, anon_sym_DOT2, - STATE(2558), 1, + STATE(2402), 1, sym_comment, - STATE(2560), 1, + STATE(2428), 1, aux_sym_cell_path_repeat1, - STATE(2645), 1, + STATE(2544), 1, sym_path, - ACTIONS(931), 6, + STATE(2577), 1, + sym_cell_path, + ACTIONS(1674), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(933), 47, + ACTIONS(1676), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -292005,88 +278448,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [63923] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5570), 1, - anon_sym_QMARK2, - STATE(2559), 1, - sym_comment, - ACTIONS(948), 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_DOT2, - ACTIONS(950), 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, - [63992] = 6, + [58002] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5572), 1, + ACTIONS(5447), 1, anon_sym_DOT2, - STATE(2645), 1, - sym_path, - STATE(2560), 2, + STATE(2403), 1, sym_comment, + STATE(2428), 1, aux_sym_cell_path_repeat1, - ACTIONS(935), 6, + STATE(2544), 1, + sym_path, + STATE(2601), 1, + sym_cell_path, + ACTIONS(925), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(937), 47, + ACTIONS(927), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -292134,70 +278516,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [64063] = 13, - ACTIONS(245), 1, + [58078] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3862), 1, + ACTIONS(2490), 1, anon_sym_DOLLAR, - ACTIONS(5493), 1, + ACTIONS(5401), 1, anon_sym_LPAREN2, - ACTIONS(5575), 1, + ACTIONS(5449), 1, anon_sym_DOT, - ACTIONS(5577), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5579), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5581), 1, + ACTIONS(5453), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5583), 1, + ACTIONS(5455), 1, aux_sym__immediate_decimal_token5, - STATE(2561), 1, + STATE(2404), 1, sym_comment, - STATE(2908), 1, + STATE(2728), 1, sym__immediate_decimal, - STATE(2906), 2, + ACTIONS(1489), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5451), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2727), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1472), 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(1482), 28, - sym_raw_string_begin, + ACTIONS(1479), 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, @@ -292206,21 +278587,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64148] = 4, + aux_sym__unquoted_in_list_token1, + [58162] = 18, ACTIONS(245), 1, anon_sym_POUND, - STATE(2562), 1, + ACTIONS(3078), 1, + anon_sym_DQUOTE, + ACTIONS(3084), 1, + sym_raw_string_begin, + ACTIONS(4928), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5417), 1, + sym__newline, + STATE(2405), 1, sym_comment, - ACTIONS(958), 7, + STATE(2459), 1, + aux_sym_command_list_repeat1, + STATE(2778), 1, + aux_sym_shebang_repeat1, + STATE(3580), 1, + sym__val_number_decimal, + STATE(6422), 1, + sym__command_name, + STATE(6468), 1, + sym_cmd_identifier, + STATE(6490), 1, + sym_val_string, + ACTIONS(3080), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5052), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5413), 6, aux_sym_cmd_identifier_token1, aux_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_DOT2, - ACTIONS(960), 49, - sym_raw_string_begin, + ACTIONS(5415), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292255,35 +278666,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_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, - [64215] = 4, + [58258] = 8, ACTIONS(245), 1, anon_sym_POUND, - STATE(2563), 1, + ACTIONS(5447), 1, + anon_sym_DOT2, + STATE(2406), 1, sym_comment, - ACTIONS(954), 7, + STATE(2428), 1, + aux_sym_cell_path_repeat1, + STATE(2544), 1, + sym_path, + STATE(2559), 1, + sym_cell_path, + ACTIONS(1668), 6, aux_sym_cmd_identifier_token1, aux_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_DOT2, - ACTIONS(956), 49, + ACTIONS(1670), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292321,10 +278726,7 @@ 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, @@ -292332,21 +278734,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [64282] = 4, + [58334] = 18, ACTIONS(245), 1, anon_sym_POUND, - STATE(2564), 1, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, + sym_raw_string_begin, + ACTIONS(4928), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5427), 1, + anon_sym_DASH_DASH, + STATE(2407), 1, sym_comment, - ACTIONS(962), 7, + STATE(2725), 1, + aux_sym_decl_def_repeat1, + STATE(2824), 1, + sym_long_flag, + STATE(3553), 1, + sym__val_number_decimal, + STATE(3932), 1, + sym_cmd_identifier, + STATE(3963), 1, + sym_val_string, + STATE(6240), 1, + sym__command_name, + ACTIONS(1264), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_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_DOT2, - ACTIONS(964), 49, - sym_raw_string_begin, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292381,35 +278812,50 @@ 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_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + [58430] = 18, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, + sym_raw_string_begin, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + ACTIONS(5427), 1, + anon_sym_DASH_DASH, + STATE(2408), 1, + sym_comment, + STATE(2411), 1, + aux_sym_decl_def_repeat1, + STATE(2824), 1, + sym_long_flag, + STATE(3553), 1, + sym__val_number_decimal, + STATE(3932), 1, + sym_cmd_identifier, + STATE(3963), 1, + sym_val_string, + STATE(5992), 1, + sym__command_name, + ACTIONS(1264), 2, sym__str_single_quotes, sym__str_back_ticks, - [64349] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2565), 1, - sym_comment, - ACTIONS(966), 7, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_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_DOT2, - ACTIONS(968), 49, - sym_raw_string_begin, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292444,39 +278890,25 @@ 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_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, - [64416] = 5, + [58526] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5585), 1, - aux_sym__immediate_decimal_token2, - STATE(2566), 1, + ACTIONS(5411), 1, + anon_sym_DOT2, + STATE(2409), 1, sym_comment, - ACTIONS(1538), 10, + STATE(2416), 1, + aux_sym_cell_path_repeat1, + STATE(2469), 1, + sym_path, + ACTIONS(938), 6, aux_sym_cmd_identifier_token1, aux_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(1540), 45, + ACTIONS(940), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -292512,36 +278944,135 @@ 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, + 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, + [58600] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1477), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5437), 1, + anon_sym_DOLLAR, + ACTIONS(5439), 1, + anon_sym_LPAREN2, + ACTIONS(5443), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5445), 1, + aux_sym__immediate_decimal_token5, + STATE(2410), 1, + sym_comment, + STATE(2770), 1, + sym__immediate_decimal, + ACTIONS(1475), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5441), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2977), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1473), 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, - [64485] = 5, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, + [58684] = 18, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5521), 1, - aux_sym__immediate_decimal_token2, - STATE(2567), 1, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, + sym_raw_string_begin, + ACTIONS(4928), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5427), 1, + anon_sym_DASH_DASH, + STATE(2411), 1, sym_comment, - ACTIONS(1492), 10, + STATE(2725), 1, + aux_sym_decl_def_repeat1, + STATE(2824), 1, + sym_long_flag, + STATE(3553), 1, + sym__val_number_decimal, + STATE(3932), 1, + sym_cmd_identifier, + STATE(3963), 1, + sym_val_string, + STATE(6228), 1, + sym__command_name, + ACTIONS(1264), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_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(1494), 45, - sym_raw_string_begin, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292576,56 +279107,28 @@ 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, - [64554] = 16, + [58780] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3152), 1, - anon_sym_DQUOTE, - ACTIONS(3158), 1, - sym_raw_string_begin, - ACTIONS(4986), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, - aux_sym__val_number_decimal_token4, - STATE(2568), 1, + ACTIONS(5457), 1, + anon_sym_DOT, + ACTIONS(5459), 1, + aux_sym__immediate_decimal_token2, + STATE(2412), 1, sym_comment, - STATE(2602), 1, - aux_sym_command_list_repeat1, - STATE(3795), 1, - sym__val_number_decimal, - STATE(6937), 1, - sym_cmd_identifier, - STATE(6961), 1, - sym_val_string, - STATE(7095), 1, - sym__command_name, - ACTIONS(3154), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5281), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5473), 6, + ACTIONS(1499), 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(5475), 34, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1501), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292660,91 +279163,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [64644] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5587), 1, - anon_sym_DOT2, - STATE(2569), 1, - sym_comment, - STATE(2630), 1, - aux_sym_cell_path_repeat1, - STATE(2809), 1, - sym_path, - STATE(2830), 1, - sym_cell_path, - ACTIONS(1713), 4, - sym_raw_string_begin, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1711), 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, - [64718] = 8, + [58852] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5587), 1, - anon_sym_DOT2, - STATE(2570), 1, + ACTIONS(5461), 1, + anon_sym_DOT, + ACTIONS(5463), 1, + aux_sym__immediate_decimal_token2, + STATE(2413), 1, sym_comment, - STATE(2630), 1, - aux_sym_cell_path_repeat1, - STATE(2809), 1, - sym_path, - STATE(2861), 1, - sym_cell_path, - ACTIONS(927), 4, + ACTIONS(1501), 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(925), 47, + ACTIONS(1499), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -292792,22 +279238,51 @@ 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, - [64792] = 4, + aux_sym__unquoted_in_list_token2, + [58924] = 18, ACTIONS(245), 1, anon_sym_POUND, - STATE(2571), 1, + ACTIONS(3078), 1, + anon_sym_DQUOTE, + ACTIONS(3084), 1, + sym_raw_string_begin, + ACTIONS(4928), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5417), 1, + sym__newline, + STATE(2414), 1, sym_comment, - ACTIONS(954), 7, + STATE(2479), 1, + aux_sym_command_list_repeat1, + STATE(2778), 1, + aux_sym_shebang_repeat1, + STATE(3580), 1, + sym__val_number_decimal, + STATE(6468), 1, + sym_cmd_identifier, + STATE(6490), 1, + sym_val_string, + STATE(6713), 1, + sym__command_name, + ACTIONS(3080), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5052), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5413), 6, aux_sym_cmd_identifier_token1, aux_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_DOT2, - ACTIONS(956), 48, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5415), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292842,36 +279317,50 @@ 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, + [59020] = 18, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, + sym_raw_string_begin, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + ACTIONS(5427), 1, + anon_sym_DASH_DASH, + STATE(2415), 1, + sym_comment, + STATE(2725), 1, + aux_sym_decl_def_repeat1, + STATE(2824), 1, + sym_long_flag, + STATE(3553), 1, + sym__val_number_decimal, + STATE(3932), 1, + sym_cmd_identifier, + STATE(3963), 1, + sym_val_string, + STATE(6323), 1, + sym__command_name, + ACTIONS(1264), 2, sym__str_single_quotes, sym__str_back_ticks, - [64858] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2572), 1, - sym_comment, - ACTIONS(1538), 10, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_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(1540), 45, - sym_raw_string_begin, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292906,30 +279395,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, - [64924] = 4, + [59116] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(2573), 1, + ACTIONS(5465), 1, + anon_sym_DOT2, + STATE(2469), 1, + sym_path, + STATE(2416), 2, sym_comment, - ACTIONS(978), 7, + aux_sym_cell_path_repeat1, + ACTIONS(931), 6, aux_sym_cmd_identifier_token1, aux_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_DOT2, - ACTIONS(980), 48, + ACTIONS(933), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -292978,24 +279461,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [64990] = 4, + [59188] = 14, ACTIONS(245), 1, anon_sym_POUND, - STATE(2574), 1, + ACTIONS(1447), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(3764), 1, + anon_sym_DOLLAR, + ACTIONS(5468), 1, + anon_sym_LPAREN2, + ACTIONS(5470), 1, + anon_sym_DOT, + ACTIONS(5472), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5474), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5476), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5478), 1, + aux_sym__immediate_decimal_token5, + STATE(2417), 1, + sym_comment, + STATE(2691), 1, + sym__immediate_decimal, + STATE(2788), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1431), 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(1445), 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, + [59276] = 18, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, + sym_raw_string_begin, + ACTIONS(4928), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5427), 1, + anon_sym_DASH_DASH, + STATE(2418), 1, sym_comment, - ACTIONS(1715), 10, + STATE(2420), 1, + aux_sym_decl_def_repeat1, + STATE(2824), 1, + sym_long_flag, + STATE(3553), 1, + sym__val_number_decimal, + STATE(3932), 1, + sym_cmd_identifier, + STATE(3963), 1, + sym_val_string, + STATE(6224), 1, + sym__command_name, + ACTIONS(1264), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_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(1717), 45, - sym_raw_string_begin, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293030,32 +279613,50 @@ 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, + [59372] = 18, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, + sym_raw_string_begin, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + ACTIONS(5427), 1, + anon_sym_DASH_DASH, + STATE(2419), 1, + sym_comment, + STATE(2421), 1, + aux_sym_decl_def_repeat1, + STATE(2824), 1, + sym_long_flag, + STATE(3553), 1, + sym__val_number_decimal, + STATE(3932), 1, + sym_cmd_identifier, + STATE(3963), 1, + sym_val_string, + STATE(6243), 1, + sym__command_name, + ACTIONS(1264), 2, sym__str_single_quotes, sym__str_back_ticks, - [65056] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2575), 1, - sym_comment, - ACTIONS(962), 7, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_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_DOT2, - ACTIONS(964), 48, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293090,33 +279691,50 @@ 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, + [59468] = 18, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, + sym_raw_string_begin, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + ACTIONS(5427), 1, + anon_sym_DASH_DASH, + STATE(2420), 1, + sym_comment, + STATE(2725), 1, + aux_sym_decl_def_repeat1, + STATE(2824), 1, + sym_long_flag, + STATE(3553), 1, + sym__val_number_decimal, + STATE(3932), 1, + sym_cmd_identifier, + STATE(3963), 1, + sym_val_string, + STATE(6244), 1, + sym__command_name, + ACTIONS(1264), 2, sym__str_single_quotes, sym__str_back_ticks, - [65122] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2576), 1, - sym_comment, - ACTIONS(974), 7, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_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_DOT2, - ACTIONS(976), 48, - sym_raw_string_begin, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293151,178 +279769,50 @@ 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, - [65188] = 12, + [59564] = 18, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5554), 1, - anon_sym_DOLLAR, - ACTIONS(5556), 1, - anon_sym_LPAREN2, - ACTIONS(5589), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5591), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5593), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5595), 1, - aux_sym__immediate_decimal_token5, - STATE(2577), 1, - sym_comment, - STATE(3191), 1, - sym__immediate_decimal, - STATE(3189), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1575), 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(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, + ACTIONS(1262), 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, - [65270] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5597), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5599), 1, - aux_sym__immediate_decimal_token2, - STATE(2578), 1, - sym_comment, - ACTIONS(1650), 5, + ACTIONS(1266), 1, sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1648), 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(4928), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4930), 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(5427), 1, + anon_sym_DASH_DASH, + STATE(2421), 1, + sym_comment, + STATE(2725), 1, + aux_sym_decl_def_repeat1, + STATE(2824), 1, + sym_long_flag, + STATE(3553), 1, + sym__val_number_decimal, + STATE(3932), 1, + sym_cmd_identifier, + STATE(3963), 1, + sym_val_string, + STATE(6251), 1, + sym__command_name, + ACTIONS(1264), 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, - [65340] = 9, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4673), 1, - anon_sym_DOT_DOT2, - ACTIONS(5601), 1, - sym_filesize_unit, - ACTIONS(5603), 1, - sym_duration_unit, - ACTIONS(5605), 1, - aux_sym_unquoted_token2, - STATE(2579), 1, - sym_comment, - ACTIONS(4675), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1579), 6, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1591), 43, - sym_raw_string_begin, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293348,237 +279838,59 @@ static const uint16_t ts_small_parse_table[] = { 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, - [65416] = 12, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5554), 1, - anon_sym_DOLLAR, - ACTIONS(5556), 1, - anon_sym_LPAREN2, - ACTIONS(5589), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5591), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5593), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5595), 1, - aux_sym__immediate_decimal_token5, - STATE(2580), 1, - sym_comment, - STATE(3196), 1, - sym__immediate_decimal, - STATE(3195), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1544), 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(1552), 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, - [65498] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5607), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5609), 1, - aux_sym__immediate_decimal_token2, - STATE(2581), 1, - sym_comment, - ACTIONS(1484), 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(1486), 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, - [65568] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(5613), 1, - aux_sym__immediate_decimal_token2, - STATE(2582), 1, - sym_comment, - ACTIONS(1668), 5, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1666), 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, - [65638] = 4, + 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, + [59660] = 18, ACTIONS(245), 1, anon_sym_POUND, - STATE(2583), 1, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, + sym_raw_string_begin, + ACTIONS(4928), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5427), 1, + anon_sym_DASH_DASH, + STATE(2396), 1, + aux_sym_decl_def_repeat1, + STATE(2422), 1, sym_comment, - ACTIONS(966), 7, + STATE(2824), 1, + sym_long_flag, + STATE(3553), 1, + sym__val_number_decimal, + STATE(3932), 1, + sym_cmd_identifier, + STATE(3963), 1, + sym_val_string, + STATE(6255), 1, + sym__command_name, + ACTIONS(1264), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_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_DOT2, - ACTIONS(968), 48, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293613,32 +279925,30 @@ 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, - [65704] = 4, + [59756] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(2584), 1, - sym_comment, - ACTIONS(1486), 7, - sym_raw_string_begin, + ACTIONS(5480), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(5482), 1, + anon_sym_DOT_DOT2, + ACTIONS(5486), 1, sym_filesize_unit, + ACTIONS(5488), 1, sym_duration_unit, + ACTIONS(5490), 1, + aux_sym__unquoted_in_list_token2, + STATE(2423), 1, + sym_comment, + STATE(6933), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1628), 2, + sym_raw_string_begin, sym__entry_separator, - ACTIONS(1484), 48, + ACTIONS(5484), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1616), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -293646,7 +279956,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, @@ -293686,15 +279995,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, - aux_sym__unquoted_in_list_token2, - [65770] = 5, + [59837] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5615), 1, - anon_sym_QMARK2, - STATE(2585), 1, + STATE(2424), 1, sym_comment, - ACTIONS(942), 7, + ACTIONS(946), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -293702,9 +280008,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, anon_sym_DOT2, - ACTIONS(944), 47, + ACTIONS(948), 49, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -293742,7 +280047,10 @@ 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, @@ -293750,22 +280058,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [65838] = 5, + [59904] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5617), 1, - anon_sym_QMARK2, - STATE(2586), 1, + ACTIONS(5492), 1, + anon_sym_DOT2, + STATE(2544), 1, + sym_path, + STATE(2425), 2, sym_comment, - ACTIONS(948), 7, + aux_sym_cell_path_repeat1, + ACTIONS(931), 6, aux_sym_cmd_identifier_token1, aux_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_DOT2, - ACTIONS(950), 47, + ACTIONS(933), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -293813,23 +280123,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [65906] = 4, + [59975] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5437), 1, + anon_sym_DOLLAR, + ACTIONS(5439), 1, + anon_sym_LPAREN2, + ACTIONS(5497), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5499), 1, + aux_sym__immediate_decimal_token5, + STATE(2426), 1, + sym_comment, + STATE(2975), 1, + sym__immediate_decimal, + ACTIONS(1646), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5495), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2973), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1644), 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, + [60056] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2587), 1, + ACTIONS(5501), 1, + anon_sym_QMARK2, + STATE(2427), 1, sym_comment, - ACTIONS(1492), 10, + ACTIONS(964), 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(1494), 45, + anon_sym_DOT2, + ACTIONS(966), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -293865,9 +280244,12 @@ 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, + 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, @@ -293875,20 +280257,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [65972] = 4, + [60125] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(2588), 1, + ACTIONS(5447), 1, + anon_sym_DOT2, + STATE(2425), 1, + aux_sym_cell_path_repeat1, + STATE(2428), 1, sym_comment, - ACTIONS(958), 7, + STATE(2544), 1, + sym_path, + ACTIONS(938), 6, aux_sym_cmd_identifier_token1, aux_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_DOT2, - ACTIONS(960), 48, + ACTIONS(940), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -293929,7 +280316,6 @@ 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, @@ -293937,46 +280323,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [66038] = 16, + [60198] = 13, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3152), 1, - anon_sym_DQUOTE, - ACTIONS(3158), 1, - sym_raw_string_begin, - ACTIONS(4986), 1, + ACTIONS(1447), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5503), 1, + anon_sym_DOLLAR, + ACTIONS(5505), 1, + anon_sym_LPAREN2, + ACTIONS(5507), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5509), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5511), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5513), 1, + aux_sym__immediate_decimal_token5, + STATE(2429), 1, + sym_comment, + STATE(2945), 1, + sym__immediate_decimal, + STATE(3009), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1431), 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, - ACTIONS(4988), 1, aux_sym__val_number_decimal_token4, - STATE(2589), 1, - sym_comment, - STATE(2602), 1, - aux_sym_command_list_repeat1, - STATE(3795), 1, - sym__val_number_decimal, - STATE(6937), 1, - sym_cmd_identifier, - STATE(6961), 1, - sym_val_string, - STATE(7162), 1, - sym__command_name, - ACTIONS(3154), 2, + 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(1445), 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(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5281), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5473), 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, + [60283] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5515), 1, + anon_sym_QMARK2, + STATE(2430), 1, + sym_comment, + ACTIONS(958), 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(5475), 34, + anon_sym_DOT2, + ACTIONS(960), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294011,46 +280446,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [66128] = 16, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, - sym_raw_string_begin, - ACTIONS(3440), 1, - anon_sym_COLON2, - ACTIONS(4986), 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, - ACTIONS(4988), 1, aux_sym__val_number_decimal_token4, - STATE(2590), 1, - sym_comment, - STATE(3790), 1, - sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, - sym_cmd_identifier, - STATE(6755), 1, - sym__command_name, - ACTIONS(1264), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4974), 6, + [60352] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5459), 1, + aux_sym__immediate_decimal_token2, + STATE(2431), 1, + sym_comment, + ACTIONS(1499), 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(4976), 34, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1501), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294085,46 +280513,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [66218] = 16, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, - sym_raw_string_begin, - ACTIONS(3440), 1, - anon_sym_COLON2, - ACTIONS(4986), 1, + 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, - ACTIONS(4988), 1, aux_sym__val_number_decimal_token4, - STATE(2591), 1, - sym_comment, - STATE(3790), 1, - sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, - sym_cmd_identifier, - STATE(5744), 1, - sym__command_name, - ACTIONS(1264), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4974), 6, + [60421] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2432), 1, + sym_comment, + ACTIONS(950), 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(4976), 34, + anon_sym_DOT2, + ACTIONS(952), 49, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294159,46 +280572,105 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [66308] = 16, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3440), 1, - anon_sym_COLON2, - ACTIONS(4986), 1, + 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, - ACTIONS(4988), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5623), 1, anon_sym_DQUOTE, - ACTIONS(5627), 1, - sym_raw_string_begin, - STATE(1670), 1, - sym__command_name, - STATE(2592), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [60488] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5437), 1, + anon_sym_DOLLAR, + ACTIONS(5439), 1, + anon_sym_LPAREN2, + ACTIONS(5497), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5499), 1, + aux_sym__immediate_decimal_token5, + STATE(2433), 1, sym_comment, - STATE(2632), 1, - sym_cmd_identifier, - STATE(2633), 1, - sym_val_string, - STATE(3793), 1, - sym__val_number_decimal, - ACTIONS(4984), 2, + STATE(2900), 1, + sym__immediate_decimal, + ACTIONS(1546), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5495), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2976), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1538), 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(5625), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_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, - STATE(2613), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5619), 6, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, + [60569] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2434), 1, + sym_comment, + ACTIONS(942), 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(5621), 34, + anon_sym_DOT2, + ACTIONS(944), 49, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294233,46 +280705,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [66398] = 16, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, - sym_raw_string_begin, - ACTIONS(3430), 1, - anon_sym_COLON2, - ACTIONS(4986), 1, + 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, - ACTIONS(4988), 1, aux_sym__val_number_decimal_token4, - STATE(2593), 1, - sym_comment, - STATE(3790), 1, - sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, - sym_cmd_identifier, - STATE(7691), 1, - sym__command_name, - ACTIONS(1264), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4974), 6, + [60636] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2435), 1, + sym_comment, + ACTIONS(954), 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(4976), 34, + anon_sym_DOT2, + ACTIONS(956), 49, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294307,46 +280768,104 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [66488] = 16, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3152), 1, - anon_sym_DQUOTE, - ACTIONS(3158), 1, - sym_raw_string_begin, - ACTIONS(4986), 1, + 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, - ACTIONS(4988), 1, aux_sym__val_number_decimal_token4, - STATE(2594), 1, - sym_comment, - STATE(2602), 1, - aux_sym_command_list_repeat1, - STATE(3795), 1, - sym__val_number_decimal, - STATE(6937), 1, - sym_cmd_identifier, - STATE(6961), 1, - sym_val_string, - STATE(7298), 1, - sym__command_name, - ACTIONS(3154), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4984), 2, + [60703] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5517), 1, + aux_sym__immediate_decimal_token2, + STATE(2436), 1, + sym_comment, + ACTIONS(1581), 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(1579), 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, - STATE(5281), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5473), 6, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_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, + [60772] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5519), 1, + aux_sym__immediate_decimal_token2, + STATE(2437), 1, + sym_comment, + ACTIONS(1579), 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(5475), 34, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1581), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294381,120 +280900,466 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [66578] = 16, + 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, + [60841] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5437), 1, + anon_sym_DOLLAR, + ACTIONS(5439), 1, + anon_sym_LPAREN2, + ACTIONS(5497), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5499), 1, + aux_sym__immediate_decimal_token5, + STATE(2438), 1, + sym_comment, + STATE(2969), 1, + sym__immediate_decimal, + ACTIONS(1634), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5495), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2968), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1632), 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, + [60922] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5463), 1, + aux_sym__immediate_decimal_token2, + STATE(2439), 1, + sym_comment, + ACTIONS(1501), 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(1499), 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, + [60991] = 13, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1262), 1, + ACTIONS(1477), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5503), 1, + anon_sym_DOLLAR, + ACTIONS(5505), 1, + anon_sym_LPAREN2, + ACTIONS(5507), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5509), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5511), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5513), 1, + aux_sym__immediate_decimal_token5, + STATE(2440), 1, + sym_comment, + STATE(2954), 1, + sym__immediate_decimal, + STATE(3037), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1473), 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(1475), 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(1266), 1, + 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, + [61076] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5437), 1, + anon_sym_DOLLAR, + ACTIONS(5439), 1, + anon_sym_LPAREN2, + ACTIONS(5497), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5499), 1, + aux_sym__immediate_decimal_token5, + STATE(2441), 1, + sym_comment, + STATE(2951), 1, + sym__immediate_decimal, + ACTIONS(1489), 2, sym_raw_string_begin, - ACTIONS(3430), 1, - anon_sym_COLON2, - ACTIONS(4986), 1, + sym__entry_separator, + ACTIONS(5495), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2950), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1479), 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, - ACTIONS(4988), 1, aux_sym__val_number_decimal_token4, - STATE(2595), 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_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, + [61157] = 13, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(3764), 1, + anon_sym_DOLLAR, + ACTIONS(5468), 1, + anon_sym_LPAREN2, + ACTIONS(5521), 1, + anon_sym_DOT, + ACTIONS(5523), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5525), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5527), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5529), 1, + aux_sym__immediate_decimal_token5, + STATE(2442), 1, sym_comment, - STATE(3790), 1, - sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, - sym_cmd_identifier, - STATE(6755), 1, - sym__command_name, - ACTIONS(1264), 2, + STATE(2787), 1, + sym__immediate_decimal, + STATE(2786), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1479), 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(1489), 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(4984), 2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [61242] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2443), 1, + sym_comment, + ACTIONS(1501), 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(1499), 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, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4974), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4976), 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, - [66668] = 16, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_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, + [61308] = 16, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1262), 1, + ACTIONS(3078), 1, anon_sym_DQUOTE, - ACTIONS(1266), 1, + ACTIONS(3084), 1, sym_raw_string_begin, - ACTIONS(3430), 1, - anon_sym_COLON2, - ACTIONS(4986), 1, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - STATE(2596), 1, + STATE(2444), 1, sym_comment, - STATE(3790), 1, + STATE(2460), 1, + aux_sym_command_list_repeat1, + STATE(3580), 1, sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, - sym_cmd_identifier, - STATE(5744), 1, + STATE(6445), 1, sym__command_name, - ACTIONS(1264), 2, + STATE(6468), 1, + sym_cmd_identifier, + STATE(6490), 1, + sym_val_string, + ACTIONS(3080), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4984), 2, + ACTIONS(4926), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3801), 2, + STATE(5052), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4974), 6, + ACTIONS(5413), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4976), 34, + ACTIONS(5415), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294529,110 +281394,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [66758] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5629), 1, - anon_sym_DOT, - ACTIONS(5631), 1, - aux_sym__immediate_decimal_token2, - STATE(2597), 1, - sym_comment, - ACTIONS(1492), 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(1494), 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, - [66828] = 16, + [61398] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_COLON2, - ACTIONS(4986), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5623), 1, - anon_sym_DQUOTE, - ACTIONS(5627), 1, - sym_raw_string_begin, - STATE(1670), 1, - sym__command_name, - STATE(2598), 1, + STATE(2445), 1, sym_comment, - STATE(2632), 1, - sym_cmd_identifier, - STATE(2633), 1, - sym_val_string, - STATE(3793), 1, - sym__val_number_decimal, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5625), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2613), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5619), 6, + ACTIONS(950), 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(5621), 34, + anon_sym_DOT2, + ACTIONS(952), 48, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294667,25 +281444,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [66918] = 8, + 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, + [61464] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5587), 1, + ACTIONS(5531), 1, anon_sym_DOT2, - STATE(2599), 1, + STATE(2446), 1, sym_comment, - STATE(2630), 1, + STATE(2521), 1, aux_sym_cell_path_repeat1, - STATE(2809), 1, + STATE(2659), 1, sym_path, - STATE(2865), 1, + STATE(2721), 1, sym_cell_path, - ACTIONS(1700), 4, + ACTIONS(1670), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1698), 47, + ACTIONS(1668), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -294733,46 +281522,22 @@ 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, - [66992] = 16, + [61538] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3152), 1, - anon_sym_DQUOTE, - ACTIONS(3158), 1, - sym_raw_string_begin, - ACTIONS(4986), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, - aux_sym__val_number_decimal_token4, - STATE(2600), 1, + STATE(2447), 1, sym_comment, - STATE(2602), 1, - aux_sym_command_list_repeat1, - STATE(3795), 1, - sym__val_number_decimal, - STATE(6888), 1, - sym__command_name, - STATE(6937), 1, - sym_cmd_identifier, - STATE(6961), 1, - sym_val_string, - ACTIONS(3154), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5281), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5473), 6, + ACTIONS(942), 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(5475), 34, + anon_sym_DOT2, + ACTIONS(944), 48, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294807,35 +281572,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [67082] = 12, + 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, + [61604] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5554), 1, - anon_sym_DOLLAR, - ACTIONS(5556), 1, - anon_sym_LPAREN2, - ACTIONS(5589), 1, + ACTIONS(5533), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5591), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5593), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5595), 1, - aux_sym__immediate_decimal_token5, - STATE(2601), 1, + ACTIONS(5535), 1, + aux_sym__immediate_decimal_token2, + STATE(2448), 1, sym_comment, - STATE(3219), 1, - sym__immediate_decimal, - STATE(3218), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1472), 18, - anon_sym_LPAREN, + ACTIONS(1491), 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, - 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, @@ -294848,23 +281611,31 @@ 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(1482), 28, + aux_sym__unquoted_in_list_token2, + ACTIONS(1493), 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_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_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_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, @@ -294877,45 +281648,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, - [67164] = 15, + [61674] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5642), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5645), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5648), 1, - anon_sym_DQUOTE, - ACTIONS(5654), 1, - sym_raw_string_begin, - STATE(3795), 1, - sym__val_number_decimal, - STATE(6937), 1, - sym_cmd_identifier, - STATE(6961), 1, - sym_val_string, - STATE(7522), 1, - sym__command_name, - ACTIONS(5639), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5651), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2602), 2, + STATE(2449), 1, sym_comment, - aux_sym_command_list_repeat1, - STATE(5281), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5633), 6, + ACTIONS(954), 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(5636), 34, + anon_sym_DOT2, + ACTIONS(956), 48, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294950,35 +281698,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [67252] = 12, + 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, + [61740] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5554), 1, - anon_sym_DOLLAR, - ACTIONS(5556), 1, - anon_sym_LPAREN2, - ACTIONS(5589), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5591), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5593), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5595), 1, - aux_sym__immediate_decimal_token5, - STATE(2603), 1, + ACTIONS(5537), 1, + anon_sym_DOT, + ACTIONS(5539), 1, + aux_sym__immediate_decimal_token2, + STATE(2450), 1, sym_comment, - STATE(3157), 1, - sym__immediate_decimal, - STATE(3154), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1644), 18, - anon_sym_LPAREN, + ACTIONS(1499), 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, - 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, @@ -294991,23 +281737,31 @@ 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(1646), 28, + aux_sym__unquoted_in_list_token2, + ACTIONS(1501), 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_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_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_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, @@ -295020,20 +281774,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, - [67334] = 4, + [61810] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2604), 1, + ACTIONS(5531), 1, + anon_sym_DOT2, + STATE(2451), 1, sym_comment, - ACTIONS(1540), 7, + STATE(2521), 1, + aux_sym_cell_path_repeat1, + STATE(2659), 1, + sym_path, + STATE(2703), 1, + sym_cell_path, + ACTIONS(1676), 4, 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(1538), 48, + ACTIONS(1674), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -295081,75 +281840,74 @@ 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, - [67400] = 4, - ACTIONS(245), 1, + [61884] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2605), 1, + STATE(2452), 1, sym_comment, - ACTIONS(1484), 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(1486), 45, + ACTIONS(1493), 7, 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_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1491), 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, - [67466] = 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, + aux_sym__unquoted_in_list_token2, + [61950] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2606), 1, + STATE(2453), 1, sym_comment, - ACTIONS(970), 7, + ACTIONS(946), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -295157,8 +281915,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, anon_sym_DOT2, - ACTIONS(972), 48, + ACTIONS(948), 48, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295196,9 +281955,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, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -295206,12 +281964,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [67532] = 4, + [62016] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2607), 1, + STATE(2454), 1, sym_comment, - ACTIONS(1717), 7, + ACTIONS(1581), 7, sym_raw_string_begin, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, @@ -295219,7 +281977,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - ACTIONS(1715), 48, + ACTIONS(1579), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -295268,12 +282026,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - [67598] = 4, + [62082] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2608), 1, + STATE(2455), 1, sym_comment, - ACTIONS(1494), 7, + ACTIONS(1680), 7, sym_raw_string_begin, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, @@ -295281,7 +282039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - ACTIONS(1492), 48, + ACTIONS(1678), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -295330,493 +282088,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - [67664] = 16, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, - sym_raw_string_begin, - ACTIONS(3440), 1, - anon_sym_COLON2, - ACTIONS(4986), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, - aux_sym__val_number_decimal_token4, - STATE(2609), 1, - sym_comment, - STATE(3790), 1, - sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, - sym_cmd_identifier, - STATE(7691), 1, - sym__command_name, - ACTIONS(1264), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4974), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4976), 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, - [67754] = 15, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, - sym_raw_string_begin, - ACTIONS(4986), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, - aux_sym__val_number_decimal_token4, - STATE(2610), 1, - sym_comment, - STATE(3790), 1, - sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, - sym_cmd_identifier, - STATE(7695), 1, - sym__command_name, - ACTIONS(1264), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4974), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4976), 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, - [67841] = 15, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4425), 1, - anon_sym_DQUOTE, - ACTIONS(4433), 1, - sym_raw_string_begin, - ACTIONS(4986), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, - aux_sym__val_number_decimal_token4, - STATE(2611), 1, - sym_comment, - STATE(3693), 1, - sym__val_number_decimal, - STATE(5452), 1, - sym__command_name, - STATE(5741), 1, - sym_cmd_identifier, - STATE(5742), 1, - sym_val_string, - ACTIONS(4427), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5417), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5135), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5137), 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, - [67928] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2612), 1, - sym_comment, - ACTIONS(982), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(984), 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, - [67993] = 4, + [62148] = 12, ACTIONS(245), 1, anon_sym_POUND, - STATE(2613), 1, + ACTIONS(5503), 1, + anon_sym_DOLLAR, + ACTIONS(5505), 1, + anon_sym_LPAREN2, + ACTIONS(5541), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5543), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5545), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5547), 1, + aux_sym__immediate_decimal_token5, + STATE(2456), 1, sym_comment, - ACTIONS(958), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(960), 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, + STATE(3008), 1, + sym__immediate_decimal, + STATE(3007), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1479), 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_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [68058] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2614), 1, - sym_comment, - ACTIONS(5657), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5659), 48, + 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(1489), 28, 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, - [68123] = 15, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1262), 1, + 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(1266), 1, - sym_raw_string_begin, - ACTIONS(4986), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, - aux_sym__val_number_decimal_token4, - STATE(2615), 1, - sym_comment, - STATE(3790), 1, - sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, - sym_cmd_identifier, - STATE(6373), 1, - sym__command_name, - ACTIONS(1264), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4974), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4976), 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, - [68210] = 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, + [62230] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5613), 1, + ACTIONS(5549), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5551), 1, aux_sym__immediate_decimal_token2, - STATE(2616), 1, + STATE(2457), 1, sym_comment, - ACTIONS(1668), 5, + ACTIONS(1688), 5, sym_raw_string_begin, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1666), 48, + ACTIONS(1686), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -295865,20 +282222,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - [68277] = 5, + [62300] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5661), 1, + ACTIONS(5553), 1, + anon_sym_DOT, + ACTIONS(5555), 1, aux_sym__immediate_decimal_token2, - STATE(2617), 1, + STATE(2458), 1, sym_comment, - ACTIONS(1721), 5, + ACTIONS(1703), 5, sym_raw_string_begin, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1719), 48, + ACTIONS(1701), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -295927,20 +282286,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - [68344] = 4, + [62370] = 16, ACTIONS(245), 1, anon_sym_POUND, - STATE(2618), 1, + ACTIONS(3078), 1, + anon_sym_DQUOTE, + ACTIONS(3084), 1, + sym_raw_string_begin, + ACTIONS(4928), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, + aux_sym__val_number_decimal_token4, + STATE(2459), 1, sym_comment, - ACTIONS(954), 6, + STATE(2460), 1, + aux_sym_command_list_repeat1, + STATE(3580), 1, + sym__val_number_decimal, + STATE(6468), 1, + sym_cmd_identifier, + STATE(6490), 1, + sym_val_string, + STATE(6730), 1, + sym__command_name, + ACTIONS(3080), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5052), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5413), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(956), 48, - sym_raw_string_begin, + ACTIONS(5415), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295975,57 +282360,45 @@ 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, - [68409] = 15, + [62460] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, - sym_raw_string_begin, - ACTIONS(4986), 1, + ACTIONS(5566), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, + ACTIONS(5569), 1, aux_sym__val_number_decimal_token4, - STATE(2619), 1, - sym_comment, - STATE(3790), 1, + ACTIONS(5572), 1, + anon_sym_DQUOTE, + ACTIONS(5578), 1, + sym_raw_string_begin, + STATE(3580), 1, sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, + STATE(6468), 1, sym_cmd_identifier, - STATE(6706), 1, + STATE(6490), 1, + sym_val_string, + STATE(6958), 1, sym__command_name, - ACTIONS(1264), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4984), 2, + ACTIONS(5563), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3801), 2, + ACTIONS(5575), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2460), 2, + sym_comment, + aux_sym_command_list_repeat1, + STATE(5052), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4974), 6, + ACTIONS(5557), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4976), 34, + ACTIONS(5560), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296057,87 +282430,26 @@ static const uint16_t ts_small_parse_table[] = { 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, - [68496] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5663), 1, - anon_sym_DOT2, - STATE(2620), 1, - sym_comment, - STATE(2737), 1, - aux_sym_cell_path_repeat1, - STATE(2856), 1, - sym_path, - STATE(2930), 1, - sym_cell_path, - ACTIONS(925), 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(927), 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, - [68569] = 4, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [62548] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2621), 1, + STATE(2461), 1, sym_comment, - ACTIONS(5665), 6, + ACTIONS(1499), 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(5667), 48, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1501), 45, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -296173,12 +282485,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, @@ -296186,44 +282495,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [68634] = 15, + [62614] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, - sym_raw_string_begin, - ACTIONS(4986), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, - aux_sym__val_number_decimal_token4, - STATE(2622), 1, + STATE(2462), 1, sym_comment, - STATE(3790), 1, - sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, - sym_cmd_identifier, - STATE(7833), 1, - sym__command_name, - ACTIONS(1264), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4974), 6, + ACTIONS(1491), 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(4976), 34, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1493), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296258,44 +282547,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [68721] = 15, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4425), 1, - anon_sym_DQUOTE, - ACTIONS(4433), 1, - sym_raw_string_begin, - ACTIONS(4986), 1, + 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, - ACTIONS(4988), 1, aux_sym__val_number_decimal_token4, - STATE(2623), 1, - sym_comment, - STATE(3693), 1, - sym__val_number_decimal, - STATE(5371), 1, - sym__command_name, - STATE(5741), 1, - sym_cmd_identifier, - STATE(5742), 1, - sym_val_string, - ACTIONS(4427), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5417), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5135), 6, + [62680] = 9, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(4581), 1, + anon_sym_DOT_DOT2, + ACTIONS(5581), 1, + sym_filesize_unit, + ACTIONS(5583), 1, + sym_duration_unit, + ACTIONS(5585), 1, + aux_sym_unquoted_token2, + STATE(2463), 1, + sym_comment, + ACTIONS(4583), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1616), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5137), 34, + ACTIONS(1628), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296330,109 +282616,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [68808] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5663), 1, - anon_sym_DOT2, - STATE(2624), 1, - sym_comment, - STATE(2737), 1, - aux_sym_cell_path_repeat1, - STATE(2856), 1, - sym_path, - STATE(2897), 1, - sym_cell_path, - ACTIONS(1698), 17, - 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, - ACTIONS(1700), 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, - [68881] = 15, + [62756] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, - sym_raw_string_begin, - ACTIONS(4986), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, - aux_sym__val_number_decimal_token4, - STATE(2625), 1, + ACTIONS(5587), 1, + anon_sym_QMARK2, + STATE(2464), 1, sym_comment, - STATE(3790), 1, - sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, - sym_cmd_identifier, - STATE(5744), 1, - sym__command_name, - ACTIONS(1264), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4974), 6, + ACTIONS(958), 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(4976), 34, + anon_sym_DOT2, + ACTIONS(960), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296467,44 +282676,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [68968] = 15, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, - sym_raw_string_begin, - ACTIONS(4986), 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(4988), 1, aux_sym__val_number_decimal_token4, - STATE(2626), 1, - sym_comment, - STATE(3790), 1, - sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, - sym_cmd_identifier, - STATE(5757), 1, - sym__command_name, - ACTIONS(1264), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4974), 6, + [62824] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2465), 1, + sym_comment, + ACTIONS(1579), 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(4976), 34, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1581), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296539,44 +282739,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [69055] = 15, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4986), 1, + 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, - ACTIONS(4988), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5623), 1, anon_sym_DQUOTE, - ACTIONS(5627), 1, - sym_raw_string_begin, - STATE(1670), 1, - sym__command_name, - STATE(2627), 1, - sym_comment, - STATE(2632), 1, - sym_cmd_identifier, - STATE(2633), 1, - sym_val_string, - STATE(3793), 1, - sym__val_number_decimal, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5625), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2613), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5619), 6, + [62890] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2466), 1, + sym_comment, + ACTIONS(1678), 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(5621), 34, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1680), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296611,25 +282801,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [69142] = 8, + 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, + [62956] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5663), 1, - anon_sym_DOT2, - STATE(2628), 1, + ACTIONS(5503), 1, + anon_sym_DOLLAR, + ACTIONS(5505), 1, + anon_sym_LPAREN2, + ACTIONS(5541), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5543), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5545), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5547), 1, + aux_sym__immediate_decimal_token5, + STATE(2467), 1, sym_comment, - STATE(2737), 1, - aux_sym_cell_path_repeat1, - STATE(2856), 1, - sym_path, - STATE(2909), 1, - sym_cell_path, - ACTIONS(1711), 17, + STATE(3031), 1, + sym__immediate_decimal, + STATE(3030), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1632), 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, @@ -296642,22 +282852,17 @@ 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(1713), 33, + ACTIONS(1634), 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, @@ -296676,44 +282881,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, - [69215] = 15, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(121), 1, - sym_raw_string_begin, + [63038] = 16, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4986), 1, + ACTIONS(3342), 1, + anon_sym_COLON2, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - STATE(2629), 1, + ACTIONS(5593), 1, + anon_sym_DQUOTE, + ACTIONS(5597), 1, + sym_raw_string_begin, + STATE(1587), 1, + sym__command_name, + STATE(2468), 1, sym_comment, - STATE(3693), 1, - sym__val_number_decimal, - STATE(5741), 1, + STATE(2536), 1, sym_cmd_identifier, - STATE(5742), 1, + STATE(2537), 1, sym_val_string, - STATE(6106), 1, - sym__command_name, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4984), 2, + STATE(3563), 1, + sym__val_number_decimal, + ACTIONS(4926), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(1634), 2, + ACTIONS(5595), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2511), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5135), 6, + ACTIONS(5589), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5137), 34, + ACTIONS(5591), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296748,146 +282955,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [69302] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5587), 1, - anon_sym_DOT2, - STATE(2630), 1, - sym_comment, - STATE(2631), 1, - aux_sym_cell_path_repeat1, - STATE(2809), 1, - sym_path, - ACTIONS(933), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(931), 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, - [69373] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5669), 1, - anon_sym_DOT2, - STATE(2809), 1, - sym_path, - STATE(2631), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(937), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(935), 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, - [69442] = 4, + [63128] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2632), 1, + STATE(2469), 1, sym_comment, - ACTIONS(5672), 6, + ACTIONS(970), 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(5674), 48, + anon_sym_DOT2, + ACTIONS(972), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -296936,20 +283017,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [69507] = 4, + [63194] = 16, ACTIONS(245), 1, anon_sym_POUND, - STATE(2633), 1, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, + sym_raw_string_begin, + ACTIONS(3342), 1, + anon_sym_COLON2, + ACTIONS(4928), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, + aux_sym__val_number_decimal_token4, + STATE(2470), 1, sym_comment, - ACTIONS(5676), 6, + STATE(3553), 1, + sym__val_number_decimal, + STATE(3932), 1, + sym_cmd_identifier, + STATE(3963), 1, + sym_val_string, + STATE(7229), 1, + sym__command_name, + ACTIONS(1264), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5678), 48, - sym_raw_string_begin, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296984,33 +283091,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, + [63284] = 16, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, + sym_raw_string_begin, + ACTIONS(3342), 1, + anon_sym_COLON2, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2471), 1, + sym_comment, + STATE(3553), 1, + sym__val_number_decimal, + STATE(3932), 1, + sym_cmd_identifier, + STATE(3963), 1, + sym_val_string, + STATE(6029), 1, + sym__command_name, + ACTIONS(1264), 2, sym__str_single_quotes, sym__str_back_ticks, - [69572] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2634), 1, - sym_comment, - ACTIONS(5012), 6, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5010), 48, - sym_raw_string_begin, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297045,33 +283165,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, + [63374] = 16, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, + sym_raw_string_begin, + ACTIONS(3342), 1, + anon_sym_COLON2, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2472), 1, + sym_comment, + STATE(3553), 1, + sym__val_number_decimal, + STATE(3932), 1, + sym_cmd_identifier, + STATE(3963), 1, + sym_val_string, + STATE(5548), 1, + sym__command_name, + ACTIONS(1264), 2, sym__str_single_quotes, sym__str_back_ticks, - [69637] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2635), 1, - sym_comment, - ACTIONS(962), 6, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(964), 48, - sym_raw_string_begin, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297106,57 +283239,112 @@ 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, + [63464] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5531), 1, + anon_sym_DOT2, + STATE(2473), 1, + sym_comment, + STATE(2521), 1, + aux_sym_cell_path_repeat1, + STATE(2659), 1, + sym_path, + STATE(2734), 1, + sym_cell_path, + ACTIONS(927), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(925), 47, 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, - [69702] = 15, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, + [63538] = 16, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(1262), 1, anon_sym_DQUOTE, ACTIONS(1266), 1, sym_raw_string_begin, - ACTIONS(4986), 1, + ACTIONS(3408), 1, + anon_sym_COLON2, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - STATE(2636), 1, + STATE(2474), 1, sym_comment, - STATE(3790), 1, + STATE(3553), 1, sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, + STATE(3932), 1, sym_cmd_identifier, - STATE(5345), 1, + STATE(3963), 1, + sym_val_string, + STATE(7229), 1, sym__command_name, ACTIONS(1264), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4984), 2, + ACTIONS(4926), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3801), 2, + STATE(3602), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4974), 6, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4976), 34, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297191,44 +283379,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [69789] = 15, + [63628] = 16, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3685), 1, + ACTIONS(1262), 1, anon_sym_DQUOTE, - ACTIONS(3699), 1, + ACTIONS(1266), 1, sym_raw_string_begin, - ACTIONS(4986), 1, + ACTIONS(3408), 1, + anon_sym_COLON2, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - STATE(2637), 1, + STATE(2475), 1, sym_comment, - STATE(3790), 1, + STATE(3553), 1, sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, + STATE(3932), 1, sym_cmd_identifier, - STATE(4810), 1, + STATE(3963), 1, + sym_val_string, + STATE(6029), 1, sym__command_name, - ACTIONS(3687), 2, + ACTIONS(1264), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4984), 2, + ACTIONS(4926), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4187), 2, + STATE(3602), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4974), 6, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4976), 34, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297263,20 +283453,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [69876] = 4, + [63718] = 16, ACTIONS(245), 1, anon_sym_POUND, - STATE(2638), 1, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, + sym_raw_string_begin, + ACTIONS(3408), 1, + anon_sym_COLON2, + ACTIONS(4928), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, + aux_sym__val_number_decimal_token4, + STATE(2476), 1, sym_comment, - ACTIONS(966), 6, + STATE(3553), 1, + sym__val_number_decimal, + STATE(3932), 1, + sym_cmd_identifier, + STATE(3963), 1, + sym_val_string, + STATE(5548), 1, + sym__command_name, + ACTIONS(1264), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(968), 48, - sym_raw_string_begin, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297311,33 +283527,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, + [63808] = 16, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(3408), 1, + anon_sym_COLON2, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, + ACTIONS(5593), 1, anon_sym_DQUOTE, + ACTIONS(5597), 1, + sym_raw_string_begin, + STATE(1587), 1, + sym__command_name, + STATE(2477), 1, + sym_comment, + STATE(2536), 1, + sym_cmd_identifier, + STATE(2537), 1, + sym_val_string, + STATE(3563), 1, + sym__val_number_decimal, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(5595), 2, sym__str_single_quotes, sym__str_back_ticks, - [69941] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2639), 1, - sym_comment, - ACTIONS(5034), 6, + STATE(2511), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5589), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5032), 48, - sym_raw_string_begin, + ACTIONS(5591), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297372,57 +283601,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, - [70006] = 15, + [63898] = 16, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1262), 1, + ACTIONS(3078), 1, anon_sym_DQUOTE, - ACTIONS(1266), 1, + ACTIONS(3084), 1, sym_raw_string_begin, - ACTIONS(4986), 1, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - STATE(2640), 1, + STATE(2460), 1, + aux_sym_command_list_repeat1, + STATE(2478), 1, sym_comment, - STATE(3790), 1, + STATE(3580), 1, sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, + STATE(6468), 1, sym_cmd_identifier, - STATE(5298), 1, + STATE(6490), 1, + sym_val_string, + STATE(6714), 1, sym__command_name, - ACTIONS(1264), 2, + ACTIONS(3080), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4984), 2, + ACTIONS(4926), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3801), 2, + STATE(5052), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4974), 6, + ACTIONS(5413), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4976), 34, + ACTIONS(5415), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297457,44 +283675,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [70093] = 15, + [63988] = 16, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3152), 1, + ACTIONS(3078), 1, anon_sym_DQUOTE, - ACTIONS(3158), 1, + ACTIONS(3084), 1, sym_raw_string_begin, - ACTIONS(4986), 1, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - STATE(2641), 1, + STATE(2460), 1, + aux_sym_command_list_repeat1, + STATE(2479), 1, sym_comment, - STATE(3795), 1, + STATE(3580), 1, sym__val_number_decimal, - STATE(6937), 1, + STATE(6441), 1, + sym__command_name, + STATE(6468), 1, sym_cmd_identifier, - STATE(6961), 1, + STATE(6490), 1, sym_val_string, - STATE(7372), 1, - sym__command_name, - ACTIONS(3154), 2, + ACTIONS(3080), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4984), 2, + ACTIONS(4926), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(5281), 2, + STATE(5052), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5473), 6, + ACTIONS(5413), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5475), 34, + ACTIONS(5415), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297529,19 +283749,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [70180] = 4, + [64078] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2642), 1, + STATE(2480), 1, sym_comment, - ACTIONS(5680), 6, + 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, - ACTIONS(5682), 48, + anon_sym_DOT2, + ACTIONS(980), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -297590,19 +283811,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70245] = 4, + [64144] = 12, ACTIONS(245), 1, anon_sym_POUND, - STATE(2643), 1, + ACTIONS(5503), 1, + anon_sym_DOLLAR, + ACTIONS(5505), 1, + anon_sym_LPAREN2, + ACTIONS(5541), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5543), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5545), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5547), 1, + aux_sym__immediate_decimal_token5, + STATE(2481), 1, + sym_comment, + STATE(3034), 1, + sym__immediate_decimal, + STATE(3032), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1644), 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(1646), 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, + [64226] = 12, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5503), 1, + anon_sym_DOLLAR, + ACTIONS(5505), 1, + anon_sym_LPAREN2, + ACTIONS(5541), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5543), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5545), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5547), 1, + aux_sym__immediate_decimal_token5, + STATE(2482), 1, + sym_comment, + STATE(3036), 1, + sym__immediate_decimal, + STATE(3035), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1538), 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(1546), 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, + [64308] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2483), 1, sym_comment, - ACTIONS(5684), 6, + ACTIONS(974), 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(5686), 48, + anon_sym_DOT2, + ACTIONS(976), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -297651,44 +284013,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70310] = 15, + [64374] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5599), 1, + anon_sym_QMARK2, + STATE(2484), 1, + sym_comment, + ACTIONS(964), 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_DOT2, + ACTIONS(966), 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, + [64442] = 15, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(1262), 1, anon_sym_DQUOTE, ACTIONS(1266), 1, sym_raw_string_begin, - ACTIONS(4986), 1, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - STATE(2644), 1, + STATE(2485), 1, sym_comment, - STATE(3790), 1, + STATE(3553), 1, sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, + STATE(3932), 1, sym_cmd_identifier, - STATE(6744), 1, + STATE(3963), 1, + sym_val_string, + STATE(5027), 1, sym__command_name, ACTIONS(1264), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4984), 2, + ACTIONS(4926), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3801), 2, + STATE(3602), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4974), 6, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4976), 34, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297723,22 +284148,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [70397] = 4, + [64529] = 15, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(121), 1, + sym_raw_string_begin, ACTIONS(245), 1, anon_sym_POUND, - STATE(2645), 1, + ACTIONS(4928), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, + aux_sym__val_number_decimal_token4, + STATE(2486), 1, sym_comment, - ACTIONS(970), 7, + STATE(3523), 1, + sym__val_number_decimal, + STATE(5490), 1, + sym_cmd_identifier, + STATE(5494), 1, + sym_val_string, + STATE(5680), 1, + sym__command_name, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(1532), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5070), 6, aux_sym_cmd_identifier_token1, aux_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_DOT2, - ACTIONS(972), 47, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5072), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297773,31 +284220,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_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, - [70462] = 4, + [64616] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2646), 1, + STATE(2487), 1, sym_comment, - ACTIONS(2457), 6, + ACTIONS(974), 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(2459), 48, + anon_sym_DOT2, + ACTIONS(976), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297835,8 +284273,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, @@ -297845,20 +284281,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70527] = 4, + [64681] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2647), 1, + STATE(2488), 1, sym_comment, - ACTIONS(5688), 6, + 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, - ACTIONS(5690), 48, + anon_sym_DOT2, + 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, @@ -297896,8 +284334,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, @@ -297906,44 +284342,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70592] = 15, + [64746] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5539), 1, + aux_sym__immediate_decimal_token2, + STATE(2489), 1, + sym_comment, + ACTIONS(1499), 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(1501), 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, + [64813] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, - sym_raw_string_begin, - ACTIONS(4986), 1, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - STATE(2648), 1, + ACTIONS(5605), 1, + anon_sym_DQUOTE, + ACTIONS(5609), 1, + sym_raw_string_begin, + STATE(1703), 1, + sym__command_name, + STATE(2490), 1, sym_comment, - STATE(3790), 1, - sym__val_number_decimal, - STATE(4114), 1, + STATE(2555), 1, sym_val_string, - STATE(4124), 1, + STATE(2608), 1, sym_cmd_identifier, - STATE(4810), 1, - sym__command_name, - ACTIONS(1264), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4984), 2, + STATE(3551), 1, + sym__val_number_decimal, + ACTIONS(4926), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3801), 2, + ACTIONS(5607), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2600), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4974), 6, + ACTIONS(5601), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4976), 34, + ACTIONS(5603), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297978,44 +284476,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [70679] = 15, + [64900] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1262), 1, + ACTIONS(4384), 1, anon_sym_DQUOTE, - ACTIONS(1266), 1, + ACTIONS(4392), 1, sym_raw_string_begin, - ACTIONS(4986), 1, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - STATE(2649), 1, + STATE(2491), 1, sym_comment, - STATE(3790), 1, + STATE(3523), 1, sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, - sym_cmd_identifier, - STATE(7636), 1, + STATE(5160), 1, sym__command_name, - ACTIONS(1264), 2, + STATE(5490), 1, + sym_cmd_identifier, + STATE(5494), 1, + sym_val_string, + ACTIONS(4386), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4984), 2, + ACTIONS(4926), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3801), 2, + STATE(5097), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4974), 6, + ACTIONS(5070), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4976), 34, + ACTIONS(5072), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298050,22 +284548,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [70766] = 4, + [64987] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2650), 1, + STATE(2492), 1, sym_comment, - ACTIONS(978), 7, + ACTIONS(2278), 6, aux_sym_cmd_identifier_token1, aux_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_DOT2, - ACTIONS(980), 47, + ACTIONS(2280), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298103,6 +284599,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, @@ -298111,22 +284609,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70831] = 4, + [65052] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2651), 1, + STATE(2493), 1, sym_comment, - ACTIONS(974), 7, + ACTIONS(2278), 6, aux_sym_cmd_identifier_token1, aux_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_DOT2, - ACTIONS(976), 47, + ACTIONS(2280), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298164,6 +284660,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, @@ -298172,84 +284670,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70896] = 13, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(3610), 1, - anon_sym_DOLLAR, - ACTIONS(4075), 1, - anon_sym_LPAREN2, - ACTIONS(5692), 1, - anon_sym_DOT, - ACTIONS(5696), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5698), 1, - aux_sym__immediate_decimal_token5, - STATE(2652), 1, - sym_comment, - STATE(3100), 1, - sym__immediate_decimal, - ACTIONS(5694), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1713), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1431), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1445), 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [70979] = 5, + [65117] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5700), 1, + ACTIONS(5611), 1, aux_sym__immediate_decimal_token2, - STATE(2653), 1, + STATE(2494), 1, sym_comment, - ACTIONS(1538), 18, + ACTIONS(1579), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -298268,7 +284696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - ACTIONS(1540), 35, + ACTIONS(1581), 35, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -298304,44 +284732,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [71046] = 15, + [65184] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4986), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5706), 1, - anon_sym_DQUOTE, - ACTIONS(5710), 1, - sym_raw_string_begin, - STATE(1827), 1, - sym__command_name, - STATE(2654), 1, + ACTIONS(5613), 1, + anon_sym_DOT2, + STATE(2495), 1, sym_comment, - STATE(2696), 1, - sym_cmd_identifier, + STATE(2585), 1, + aux_sym_cell_path_repeat1, STATE(2698), 1, - sym_val_string, - STATE(3789), 1, - sym__val_number_decimal, - ACTIONS(4984), 2, + sym_path, + STATE(2756), 1, + sym_cell_path, + ACTIONS(1668), 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(1670), 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, - ACTIONS(5708), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_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, - STATE(2692), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5702), 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, + [65257] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5615), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5617), 1, + aux_sym__immediate_decimal_token2, + STATE(2496), 1, + sym_comment, + ACTIONS(1491), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + anon_sym_DOT2, + ACTIONS(1493), 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + sym_duration_unit, + [65326] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2497), 1, + sym_comment, + ACTIONS(2282), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5704), 34, + ACTIONS(2284), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298376,44 +284908,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [71133] = 15, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, - sym_raw_string_begin, - ACTIONS(4986), 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, - ACTIONS(4988), 1, aux_sym__val_number_decimal_token4, - STATE(2655), 1, - sym_comment, - STATE(3790), 1, - sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, - sym_cmd_identifier, - STATE(7691), 1, - sym__command_name, - ACTIONS(1264), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4974), 6, + [65391] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2498), 1, + sym_comment, + ACTIONS(2286), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4976), 34, + ACTIONS(2288), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298448,44 +284969,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [71220] = 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, + [65456] = 15, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(1262), 1, anon_sym_DQUOTE, ACTIONS(1266), 1, sym_raw_string_begin, - ACTIONS(4986), 1, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - STATE(2656), 1, + STATE(2499), 1, sym_comment, - STATE(3790), 1, + STATE(3553), 1, sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, + STATE(3932), 1, sym_cmd_identifier, - STATE(6755), 1, + STATE(3963), 1, + sym_val_string, + STATE(7064), 1, sym__command_name, ACTIONS(1264), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4984), 2, + ACTIONS(4926), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3801), 2, + STATE(3602), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4974), 6, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4976), 34, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298520,44 +285054,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [71307] = 15, + [65543] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1262), 1, + ACTIONS(3631), 1, anon_sym_DQUOTE, - ACTIONS(1266), 1, + ACTIONS(3645), 1, sym_raw_string_begin, - ACTIONS(4986), 1, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - STATE(2657), 1, + STATE(2500), 1, sym_comment, - STATE(3790), 1, + STATE(3553), 1, sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, + STATE(3932), 1, sym_cmd_identifier, - STATE(7936), 1, + STATE(3963), 1, + sym_val_string, + STATE(4587), 1, sym__command_name, - ACTIONS(1264), 2, + ACTIONS(3633), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4984), 2, + ACTIONS(4926), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3801), 2, + STATE(3983), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4974), 6, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4976), 34, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298592,44 +285126,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [71394] = 15, + [65630] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, - sym_raw_string_begin, - ACTIONS(4986), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, - aux_sym__val_number_decimal_token4, - STATE(2658), 1, + STATE(2501), 1, sym_comment, - STATE(3790), 1, - sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, - sym_cmd_identifier, - STATE(6778), 1, - sym__command_name, - ACTIONS(1264), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4974), 6, + ACTIONS(1674), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4976), 34, + ACTIONS(1676), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298664,44 +285174,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [71481] = 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, + [65695] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4986), 1, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, + sym_raw_string_begin, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - STATE(2659), 1, + STATE(2502), 1, sym_comment, - STATE(3693), 1, + STATE(3553), 1, sym__val_number_decimal, - STATE(5741), 1, + STATE(3932), 1, sym_cmd_identifier, - STATE(5742), 1, + STATE(3963), 1, sym_val_string, - STATE(7130), 1, + STATE(5057), 1, sym__command_name, - ACTIONS(111), 2, + ACTIONS(1264), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4984), 2, + ACTIONS(4926), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(1634), 2, + STATE(3602), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5135), 6, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5137), 34, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298736,19 +285259,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [71568] = 4, + [65782] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2660), 1, + STATE(2503), 1, sym_comment, - ACTIONS(2001), 6, + ACTIONS(2290), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2003), 48, + ACTIONS(2292), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -298797,19 +285320,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [71633] = 4, + [65847] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2661), 1, + STATE(2504), 1, sym_comment, - ACTIONS(2469), 6, + ACTIONS(2294), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2471), 48, + ACTIONS(2296), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -298858,19 +285381,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [71698] = 4, + [65912] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2662), 1, + STATE(2505), 1, sym_comment, - ACTIONS(2469), 6, + ACTIONS(1945), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2471), 48, + ACTIONS(1947), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -298919,44 +285442,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [71763] = 15, + [65977] = 15, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(1262), 1, anon_sym_DQUOTE, ACTIONS(1266), 1, sym_raw_string_begin, - ACTIONS(4986), 1, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - STATE(2663), 1, + STATE(2506), 1, sym_comment, - STATE(3790), 1, + STATE(3553), 1, sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, + STATE(3932), 1, sym_cmd_identifier, - STATE(7860), 1, + STATE(3963), 1, + sym_val_string, + STATE(5936), 1, sym__command_name, ACTIONS(1264), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4984), 2, + ACTIONS(4926), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3801), 2, + STATE(3602), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4974), 6, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4976), 34, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298991,44 +285514,107 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [71850] = 15, + [66064] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5619), 1, + anon_sym_DOT2, + STATE(2659), 1, + sym_path, + STATE(2507), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(933), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(931), 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, + [66133] = 15, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(1262), 1, anon_sym_DQUOTE, ACTIONS(1266), 1, sym_raw_string_begin, - ACTIONS(4986), 1, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - STATE(2664), 1, + STATE(2508), 1, sym_comment, - STATE(3790), 1, + STATE(3553), 1, sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, + STATE(3932), 1, sym_cmd_identifier, - STATE(7917), 1, + STATE(3963), 1, + sym_val_string, + STATE(5911), 1, sym__command_name, ACTIONS(1264), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4984), 2, + ACTIONS(4926), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3801), 2, + STATE(3602), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4974), 6, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4976), 34, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299063,44 +285649,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [71937] = 15, + [66220] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, + ACTIONS(5613), 1, + anon_sym_DOT2, + STATE(2509), 1, + sym_comment, + STATE(2585), 1, + aux_sym_cell_path_repeat1, + STATE(2698), 1, + sym_path, + STATE(2757), 1, + sym_cell_path, + ACTIONS(1674), 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(1676), 33, sym_raw_string_begin, - ACTIONS(4986), 1, + 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, - ACTIONS(4988), 1, aux_sym__val_number_decimal_token4, - STATE(2665), 1, - sym_comment, - STATE(3790), 1, - sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, - sym_cmd_identifier, - STATE(7672), 1, - sym__command_name, - ACTIONS(1264), 2, + aux_sym__val_number_token1, + aux_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(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4974), 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, + [66293] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2510), 1, + sym_comment, + ACTIONS(5622), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4976), 34, + ACTIONS(5624), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299135,44 +285762,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [72024] = 15, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, - sym_raw_string_begin, - ACTIONS(4986), 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, - ACTIONS(4988), 1, aux_sym__val_number_decimal_token4, - STATE(2666), 1, - sym_comment, - STATE(3790), 1, - sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, - sym_cmd_identifier, - STATE(7771), 1, - sym__command_name, - ACTIONS(1264), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4974), 6, + [66358] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2511), 1, + sym_comment, + ACTIONS(950), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4976), 34, + ACTIONS(952), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299207,82 +285823,97 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [72111] = 6, + 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, + [66423] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5712), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5714), 1, - aux_sym__immediate_decimal_token2, - STATE(2667), 1, + ACTIONS(5613), 1, + anon_sym_DOT2, + STATE(2512), 1, sym_comment, - ACTIONS(1484), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + STATE(2585), 1, + aux_sym_cell_path_repeat1, + STATE(2698), 1, + sym_path, + STATE(2753), 1, + sym_cell_path, + ACTIONS(925), 17, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym_filesize_unit, - anon_sym_DOT2, - ACTIONS(1486), 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_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(927), 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_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - sym_duration_unit, - [72180] = 4, + 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, + [66496] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2668), 1, + STATE(2513), 1, sym_comment, - ACTIONS(2475), 6, + ACTIONS(4976), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2477), 48, + ACTIONS(4974), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -299331,19 +285962,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [72245] = 4, + [66561] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2669), 1, + STATE(2514), 1, sym_comment, - ACTIONS(2479), 6, + ACTIONS(942), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2481), 48, + ACTIONS(944), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -299392,19 +286023,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [72310] = 4, + [66626] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2670), 1, + STATE(2515), 1, sym_comment, - ACTIONS(1711), 6, + ACTIONS(5626), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1713), 48, + ACTIONS(5628), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -299453,44 +286084,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [72375] = 15, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(121), 1, + [66691] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5555), 1, + aux_sym__immediate_decimal_token2, + STATE(2516), 1, + sym_comment, + ACTIONS(1703), 5, sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1701), 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, + [66758] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4986), 1, + ACTIONS(3078), 1, + anon_sym_DQUOTE, + ACTIONS(3084), 1, + sym_raw_string_begin, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - STATE(2671), 1, + STATE(2517), 1, sym_comment, - STATE(3693), 1, + STATE(3580), 1, sym__val_number_decimal, - STATE(5741), 1, + STATE(6468), 1, sym_cmd_identifier, - STATE(5742), 1, + STATE(6490), 1, sym_val_string, - STATE(6166), 1, + STATE(6887), 1, sym__command_name, - ACTIONS(111), 2, + ACTIONS(3080), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4984), 2, + ACTIONS(4926), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(1634), 2, + STATE(5052), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5135), 6, + ACTIONS(5413), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5137), 34, + ACTIONS(5415), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299525,44 +286218,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [72462] = 15, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1262), 1, + [66845] = 15, + ACTIONS(109), 1, anon_sym_DQUOTE, - ACTIONS(1266), 1, + ACTIONS(121), 1, sym_raw_string_begin, - ACTIONS(4986), 1, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - STATE(2672), 1, + STATE(2518), 1, sym_comment, - STATE(3790), 1, + STATE(3523), 1, sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, + STATE(5490), 1, sym_cmd_identifier, - STATE(7710), 1, + STATE(5494), 1, + sym_val_string, + STATE(5810), 1, sym__command_name, - ACTIONS(1264), 2, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4984), 2, + ACTIONS(4926), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3801), 2, + STATE(1532), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4974), 6, + ACTIONS(5070), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4976), 34, + ACTIONS(5072), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299597,44 +286290,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [72549] = 15, + [66932] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, + STATE(2519), 1, + sym_comment, + ACTIONS(954), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(956), 48, sym_raw_string_begin, - ACTIONS(4986), 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(4988), 1, aux_sym__val_number_decimal_token4, - STATE(2673), 1, - sym_comment, - STATE(3790), 1, - sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, - sym_cmd_identifier, - STATE(7703), 1, - sym__command_name, - ACTIONS(1264), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4974), 6, + [66997] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2520), 1, + sym_comment, + ACTIONS(946), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4976), 34, + ACTIONS(948), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299669,44 +286399,97 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [72636] = 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, + [67062] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5531), 1, + anon_sym_DOT2, + STATE(2507), 1, + aux_sym_cell_path_repeat1, + STATE(2521), 1, + sym_comment, + STATE(2659), 1, + sym_path, + ACTIONS(940), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(938), 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, + [67133] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, - sym_raw_string_begin, - ACTIONS(4986), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4988), 1, - aux_sym__val_number_decimal_token4, - STATE(2674), 1, + STATE(2522), 1, sym_comment, - STATE(3790), 1, - sym__val_number_decimal, - STATE(4114), 1, - sym_val_string, - STATE(4124), 1, - sym_cmd_identifier, - STATE(7780), 1, - sym__command_name, - ACTIONS(1264), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4984), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4974), 6, + ACTIONS(5630), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4976), 34, + ACTIONS(5632), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299741,19 +286524,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [72723] = 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, + [67198] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2675), 1, + STATE(2523), 1, sym_comment, - ACTIONS(2300), 6, + ACTIONS(5634), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2302), 48, + ACTIONS(5636), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -299802,85 +286598,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [72788] = 5, + [67263] = 13, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5631), 1, - aux_sym__immediate_decimal_token2, - STATE(2676), 1, - sym_comment, - ACTIONS(1492), 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(1494), 35, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(3550), 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, - 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, - [72855] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5716), 1, - aux_sym__immediate_decimal_token2, - STATE(2677), 1, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(5638), 1, + anon_sym_DOT, + ACTIONS(5642), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5644), 1, + aux_sym__immediate_decimal_token5, + STATE(2524), 1, sym_comment, - ACTIONS(1538), 8, + STATE(2924), 1, + sym__immediate_decimal, + ACTIONS(5640), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1646), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1431), 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, - anon_sym_DOT2, - ACTIONS(1540), 44, + ACTIONS(1445), 37, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -299893,12 +286643,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_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -299922,95 +286668,44 @@ 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, - [72921] = 8, + [67346] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5718), 1, - anon_sym_DOT2, - STATE(2678), 1, - sym_comment, - STATE(2803), 1, - aux_sym_cell_path_repeat1, - STATE(2907), 1, - sym_path, - STATE(3010), 1, - sym_cell_path, - ACTIONS(1855), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1857), 43, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 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, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2525), 1, + sym_comment, + STATE(3553), 1, + sym__val_number_decimal, + STATE(3932), 1, + sym_cmd_identifier, + STATE(3963), 1, + sym_val_string, + STATE(7381), 1, + sym__command_name, + ACTIONS(1264), 2, sym__str_single_quotes, sym__str_back_ticks, - [72993] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5718), 1, - anon_sym_DOT2, - STATE(2679), 1, - sym_comment, - STATE(2803), 1, - aux_sym_cell_path_repeat1, - STATE(2907), 1, - sym_path, - STATE(3013), 1, - sym_cell_path, - ACTIONS(1883), 6, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1885), 43, - sym_raw_string_begin, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300045,98 +286740,44 @@ 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, - [73065] = 6, + [67433] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5720), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5722), 1, - aux_sym__immediate_decimal_token2, - STATE(2680), 1, - sym_comment, - ACTIONS(1648), 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(1650), 33, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 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(4928), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4930), 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(2526), 1, + sym_comment, + STATE(3553), 1, + sym__val_number_decimal, + STATE(3932), 1, + sym_cmd_identifier, + STATE(3963), 1, + sym_val_string, + STATE(7146), 1, + sym__command_name, + ACTIONS(1264), 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, - [73133] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5718), 1, - anon_sym_DOT2, - STATE(2681), 1, - sym_comment, - STATE(2803), 1, - aux_sym_cell_path_repeat1, - STATE(2907), 1, - sym_path, - STATE(3060), 1, - sym_cell_path, - ACTIONS(1891), 6, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1893), 43, - sym_raw_string_begin, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300171,35 +286812,19 @@ 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, - [73205] = 8, + [67520] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5718), 1, - anon_sym_DOT2, - STATE(2682), 1, + STATE(2527), 1, sym_comment, - STATE(2803), 1, - aux_sym_cell_path_repeat1, - STATE(2907), 1, - sym_path, - STATE(3017), 1, - sym_cell_path, - ACTIONS(1923), 6, + ACTIONS(982), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1925), 43, + ACTIONS(984), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -300235,7 +286860,12 @@ 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_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, @@ -300243,94 +286873,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73277] = 10, - ACTIONS(3), 1, + [67585] = 15, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5726), 1, - anon_sym_RBRACK, - ACTIONS(5729), 1, - anon_sym_DOT2, - ACTIONS(5731), 1, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, sym_raw_string_begin, - STATE(2683), 1, - sym_comment, - STATE(5816), 1, - aux_sym_cell_path_repeat1, - STATE(6336), 1, - sym_path, - STATE(7048), 1, - sym_cell_path, - ACTIONS(1839), 2, - sym__entry_separator, - sym__table_head_separator, - ACTIONS(5724), 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, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4930), 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(2528), 1, + sym_comment, + STATE(3553), 1, + sym__val_number_decimal, + STATE(3932), 1, + sym_cmd_identifier, + STATE(3963), 1, + sym_val_string, + STATE(6021), 1, + sym__command_name, + ACTIONS(1264), 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, - [73353] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5718), 1, - anon_sym_DOT2, - STATE(2684), 1, - sym_comment, - STATE(2803), 1, - aux_sym_cell_path_repeat1, - STATE(2907), 1, - sym_path, - STATE(3033), 1, - sym_cell_path, - ACTIONS(1931), 6, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1933), 43, - sym_raw_string_begin, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300365,32 +286945,20 @@ 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, - [73425] = 8, + [67672] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1788), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5733), 1, - anon_sym_DOT_DOT2, - STATE(2685), 1, + ACTIONS(5646), 1, + aux_sym__immediate_decimal_token2, + STATE(2529), 1, sym_comment, - ACTIONS(1786), 2, + ACTIONS(1762), 5, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5735), 2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1778), 46, + sym__entry_separator, + ACTIONS(1760), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -300398,6 +286966,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, @@ -300437,28 +287006,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, - [73497] = 8, + aux_sym__unquoted_in_list_token2, + [67739] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5718), 1, - anon_sym_DOT2, - STATE(2686), 1, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, + sym_raw_string_begin, + ACTIONS(4928), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, + aux_sym__val_number_decimal_token4, + STATE(2530), 1, sym_comment, - STATE(2803), 1, - aux_sym_cell_path_repeat1, - STATE(2907), 1, - sym_path, - STATE(2993), 1, - sym_cell_path, - ACTIONS(1935), 6, + STATE(3553), 1, + sym__val_number_decimal, + STATE(3932), 1, + sym_cmd_identifier, + STATE(3963), 1, + sym_val_string, + STATE(7229), 1, + sym__command_name, + ACTIONS(1264), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1937), 43, - sym_raw_string_begin, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300493,223 +287079,44 @@ 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, - [73569] = 5, - ACTIONS(3), 1, + [67826] = 15, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2439), 1, - sym_raw_string_begin, - ACTIONS(5737), 1, - sym__entry_separator, - STATE(2687), 2, - sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2434), 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, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_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, + ACTIONS(1262), 1, 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, - [73635] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5742), 1, - anon_sym_RBRACK, - ACTIONS(5744), 1, - sym__entry_separator, - ACTIONS(5746), 1, + ACTIONS(1266), 1, sym_raw_string_begin, - STATE(2687), 1, - aux_sym__multiple_types_repeat1, - STATE(2688), 1, - sym_comment, - ACTIONS(5740), 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, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4930), 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(2531), 1, + sym_comment, + STATE(3553), 1, + sym__val_number_decimal, + STATE(3932), 1, + sym_cmd_identifier, + STATE(3963), 1, + sym_val_string, + STATE(6029), 1, + sym__command_name, + ACTIONS(1264), 2, 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, - [73705] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5744), 1, - sym__entry_separator, - ACTIONS(5746), 1, - sym_raw_string_begin, - ACTIONS(5748), 1, - anon_sym_RBRACK, - STATE(2687), 1, - aux_sym__multiple_types_repeat1, - STATE(2689), 1, - sym_comment, - ACTIONS(5740), 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, + ACTIONS(4926), 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, - aux_sym__val_number_token1, - aux_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, - [73775] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5718), 1, - anon_sym_DOT2, - STATE(2690), 1, - sym_comment, - STATE(2803), 1, - aux_sym_cell_path_repeat1, - STATE(2907), 1, - sym_path, - STATE(3045), 1, - sym_cell_path, - ACTIONS(1839), 6, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1841), 43, - sym_raw_string_begin, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300744,89 +287151,44 @@ 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, - [73847] = 4, - ACTIONS(3), 1, + [67913] = 15, + ACTIONS(245), 1, anon_sym_POUND, - STATE(2691), 1, - sym_comment, - ACTIONS(956), 4, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(954), 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_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(4928), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4930), 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(2532), 1, + sym_comment, + STATE(3553), 1, + sym__val_number_decimal, + STATE(3932), 1, + sym_cmd_identifier, + STATE(3963), 1, + sym_val_string, + STATE(7262), 1, + sym__command_name, + ACTIONS(1264), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_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, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - 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, - [73911] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2692), 1, - sym_comment, - ACTIONS(958), 6, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(960), 47, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300861,32 +287223,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_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + [68000] = 15, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, + sym_raw_string_begin, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2533), 1, + sym_comment, + STATE(3553), 1, + sym__val_number_decimal, + STATE(3932), 1, + sym_cmd_identifier, + STATE(3963), 1, + sym_val_string, + STATE(6098), 1, + sym__command_name, + ACTIONS(1264), 2, sym__str_single_quotes, sym__str_back_ticks, - [73975] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2693), 1, - sym_comment, - ACTIONS(5012), 6, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5010), 47, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300921,32 +287295,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_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + [68087] = 15, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, + sym_raw_string_begin, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2534), 1, + sym_comment, + STATE(3553), 1, + sym__val_number_decimal, + STATE(3932), 1, + sym_cmd_identifier, + STATE(3963), 1, + sym_val_string, + STATE(7270), 1, + sym__command_name, + ACTIONS(1264), 2, sym__str_single_quotes, sym__str_back_ticks, - [74039] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2694), 1, - sym_comment, - ACTIONS(2001), 6, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2003), 47, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300981,94 +287367,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_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, - [74103] = 6, + [68174] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5750), 1, - sym__newline, - STATE(2695), 1, - sym_comment, - ACTIONS(5753), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(1280), 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(1278), 35, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - 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, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4930), 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(2535), 1, + sym_comment, + STATE(3553), 1, + sym__val_number_decimal, + STATE(3932), 1, + sym_cmd_identifier, + STATE(3963), 1, + sym_val_string, + STATE(5517), 1, + sym__command_name, + ACTIONS(1264), 2, 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, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [74171] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2696), 1, - sym_comment, - ACTIONS(5672), 6, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5674), 47, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301103,32 +287439,20 @@ 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, - [74235] = 4, + [68261] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2697), 1, + STATE(2536), 1, sym_comment, - ACTIONS(5034), 6, + ACTIONS(5648), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5032), 47, + ACTIONS(5650), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301166,6 +287490,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, @@ -301174,21 +287500,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74299] = 4, + [68326] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2698), 1, + STATE(2537), 1, sym_comment, - ACTIONS(5676), 6, + ACTIONS(5652), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5678), 47, + ACTIONS(5654), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301226,6 +287551,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, @@ -301234,81 +287561,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74363] = 4, - ACTIONS(3), 1, + [68391] = 15, + ACTIONS(245), 1, anon_sym_POUND, - STATE(2699), 1, - sym_comment, - ACTIONS(964), 4, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(962), 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_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(4928), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4930), 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(2538), 1, + sym_comment, + STATE(3553), 1, + sym__val_number_decimal, + STATE(3932), 1, + sym_cmd_identifier, + STATE(3963), 1, + sym_val_string, + STATE(7063), 1, + sym__command_name, + ACTIONS(1264), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_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, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - 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, - [74427] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2700), 1, - sym_comment, - ACTIONS(2475), 6, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2477), 47, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301343,92 +287633,20 @@ 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, - [74491] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2701), 1, - sym_comment, - ACTIONS(1668), 5, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1666), 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, - [74555] = 4, + [68478] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2702), 1, + STATE(2539), 1, sym_comment, - ACTIONS(2479), 6, + ACTIONS(4968), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2481), 47, + ACTIONS(4966), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301466,6 +287684,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, @@ -301474,151 +287694,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74619] = 4, + [68543] = 15, ACTIONS(245), 1, anon_sym_POUND, - STATE(2703), 1, - sym_comment, - ACTIONS(1492), 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(1494), 35, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 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(4928), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4930), 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_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, + STATE(2540), 1, + sym_comment, + STATE(3553), 1, + sym__val_number_decimal, + STATE(3932), 1, + sym_cmd_identifier, + STATE(3963), 1, + sym_val_string, + STATE(7207), 1, + sym__command_name, + ACTIONS(1264), 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, - [74683] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5744), 1, - sym__entry_separator, - ACTIONS(5746), 1, - sym_raw_string_begin, - ACTIONS(5755), 1, - anon_sym_RBRACK, - STATE(2687), 1, - aux_sym__multiple_types_repeat1, - STATE(2704), 1, - sym_comment, - ACTIONS(5740), 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, + ACTIONS(4926), 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, - aux_sym__val_number_token1, - aux_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, - [74753] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5718), 1, - anon_sym_DOT2, - STATE(2705), 1, - sym_comment, - STATE(2803), 1, - aux_sym_cell_path_repeat1, - STATE(2907), 1, - sym_path, - STATE(3021), 1, - sym_cell_path, - ACTIONS(1875), 6, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1877), 43, - sym_raw_string_begin, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301653,158 +287766,44 @@ 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, - [74825] = 13, + [68630] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(4499), 1, - anon_sym_DOLLAR, - ACTIONS(4501), 1, - anon_sym_LPAREN2, - ACTIONS(5757), 1, - anon_sym_DOT, - ACTIONS(5761), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5763), 1, - aux_sym__immediate_decimal_token5, - STATE(2706), 1, - sym_comment, - STATE(3200), 1, - sym__immediate_decimal, - ACTIONS(5759), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2074), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1431), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1445), 36, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [74907] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2707), 1, - sym_comment, - ACTIONS(1650), 5, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1648), 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(4928), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4930), 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(2541), 1, + sym_comment, + STATE(3553), 1, + sym__val_number_decimal, + STATE(3932), 1, + sym_cmd_identifier, + STATE(3963), 1, + sym_val_string, + STATE(7068), 1, + sym__command_name, + ACTIONS(1264), 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, - [74971] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2708), 1, - sym_comment, - ACTIONS(2300), 6, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2302), 47, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301839,695 +287838,164 @@ 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, - [75035] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2709), 1, - sym_comment, - ACTIONS(1721), 5, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1719), 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, - [75099] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2710), 1, - sym_comment, - ACTIONS(1792), 5, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1790), 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, - [75163] = 4, + [68717] = 15, ACTIONS(245), 1, anon_sym_POUND, - STATE(2711), 1, - sym_comment, - ACTIONS(1484), 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(1486), 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, + ACTIONS(1262), 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, - [75227] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5765), 1, - anon_sym_DOT, - ACTIONS(5767), 1, - aux_sym__immediate_decimal_token2, - STATE(2712), 1, - sym_comment, - ACTIONS(1666), 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(1668), 33, + ACTIONS(1266), 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(4928), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4930), 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, - 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, - [75295] = 12, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(3610), 1, - anon_sym_DOLLAR, - ACTIONS(4075), 1, - anon_sym_LPAREN2, - ACTIONS(5771), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5773), 1, - aux_sym__immediate_decimal_token5, - STATE(2713), 1, - sym_comment, - STATE(3265), 1, - sym__immediate_decimal, - ACTIONS(5769), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1804), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1431), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1445), 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [75375] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5775), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5777), 1, - aux_sym__immediate_decimal_token2, - STATE(2714), 1, + STATE(2542), 1, sym_comment, - ACTIONS(1650), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1648), 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, + STATE(3553), 1, + sym__val_number_decimal, + STATE(3932), 1, + sym_cmd_identifier, + STATE(3963), 1, + sym_val_string, + STATE(7090), 1, + sym__command_name, + ACTIONS(1264), 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, - [75443] = 30, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3440), 1, - anon_sym_COLON2, - ACTIONS(3842), 1, + ACTIONS(4926), 2, aux_sym__val_number_decimal_token1, - ACTIONS(3844), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3846), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3848), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5283), 1, - sym_val_date, - ACTIONS(5623), 1, - anon_sym_DQUOTE, - ACTIONS(5627), 1, - sym_raw_string_begin, - ACTIONS(5779), 1, - anon_sym_LPAREN, - ACTIONS(5781), 1, - anon_sym_DOLLAR, - ACTIONS(5783), 1, - anon_sym_DOT_DOT, - ACTIONS(5789), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5791), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5793), 1, - aux_sym_unquoted_token1, - STATE(2661), 1, - sym__inter_single_quotes, - STATE(2662), 1, - sym__inter_double_quotes, - STATE(2715), 1, - sym_comment, - STATE(5776), 1, - sym__val_number_decimal, - STATE(7715), 1, - sym__val_range, - STATE(7722), 1, - sym__unquoted_anonymous_prefix, - STATE(7914), 1, - sym_val_bool, - ACTIONS(3840), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5625), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5785), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2613), 2, + STATE(3602), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5787), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(1667), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2728), 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(2730), 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, - [75559] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2716), 1, - sym_comment, - ACTIONS(968), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(966), 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_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_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, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - 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, - [75623] = 31, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, + ACTIONS(4916), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4918), 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, + [68804] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1248), 1, - anon_sym_LPAREN, ACTIONS(1262), 1, anon_sym_DQUOTE, ACTIONS(1266), 1, sym_raw_string_begin, - ACTIONS(3440), 1, - anon_sym_COLON2, - ACTIONS(3544), 1, - anon_sym_DOLLAR, - ACTIONS(3570), 1, - aux_sym_unquoted_token1, - ACTIONS(3842), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3844), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3846), 1, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3848), 1, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4139), 1, - anon_sym_DOT_DOT, - ACTIONS(5283), 1, - sym_val_date, - STATE(1848), 1, - sym__inter_single_quotes, - STATE(1849), 1, - sym__inter_double_quotes, - STATE(2717), 1, + STATE(2543), 1, sym_comment, - STATE(5822), 1, + STATE(3553), 1, sym__val_number_decimal, - STATE(6402), 1, - sym_unquoted, - STATE(7723), 1, - sym__val_range, - STATE(7727), 1, - sym__unquoted_anonymous_prefix, - STATE(7914), 1, - sym_val_bool, + STATE(3932), 1, + sym_cmd_identifier, + STATE(3963), 1, + sym_val_string, + STATE(7151), 1, + sym__command_name, ACTIONS(1264), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3840), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4141), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5295), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(6400), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2728), 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(2730), 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, - [75741] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2718), 1, - sym_comment, - ACTIONS(1538), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(4926), 2, 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(1540), 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, - [75805] = 4, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4916), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4918), 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, + [68891] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2719), 1, + STATE(2544), 1, sym_comment, - ACTIONS(2457), 6, + ACTIONS(970), 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(2459), 47, + anon_sym_DOT2, + ACTIONS(972), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -302575,28 +288043,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75869] = 8, + [68956] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5718), 1, - anon_sym_DOT2, - STATE(2720), 1, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, + sym_raw_string_begin, + ACTIONS(4928), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, + aux_sym__val_number_decimal_token4, + STATE(2545), 1, sym_comment, - STATE(2803), 1, - aux_sym_cell_path_repeat1, - STATE(2907), 1, - sym_path, - STATE(3043), 1, - sym_cell_path, - ACTIONS(1879), 6, + STATE(3553), 1, + sym__val_number_decimal, + STATE(3932), 1, + sym_cmd_identifier, + STATE(3963), 1, + sym_val_string, + STATE(5548), 1, + sym__command_name, + ACTIONS(1264), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1881), 43, - sym_raw_string_begin, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302631,36 +288115,44 @@ 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, + [69043] = 15, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, + ACTIONS(5593), 1, anon_sym_DQUOTE, + ACTIONS(5597), 1, + sym_raw_string_begin, + STATE(1587), 1, + sym__command_name, + STATE(2536), 1, + sym_cmd_identifier, + STATE(2537), 1, + sym_val_string, + STATE(2546), 1, + sym_comment, + STATE(3563), 1, + sym__val_number_decimal, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(5595), 2, sym__str_single_quotes, sym__str_back_ticks, - [75941] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5718), 1, - anon_sym_DOT2, - STATE(2721), 1, - sym_comment, - STATE(2803), 1, - aux_sym_cell_path_repeat1, - STATE(2907), 1, - sym_path, - STATE(2982), 1, - sym_cell_path, - ACTIONS(1863), 6, + STATE(2511), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5589), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1865), 43, - sym_raw_string_begin, + ACTIONS(5591), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302695,125 +288187,44 @@ 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, - [76013] = 33, + [69130] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2642), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2644), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3120), 1, - anon_sym_LPAREN, - ACTIONS(3122), 1, - anon_sym_DOLLAR, - ACTIONS(3134), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3136), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3138), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3140), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3146), 1, - anon_sym_0b, - ACTIONS(3152), 1, + ACTIONS(4384), 1, anon_sym_DQUOTE, - ACTIONS(3158), 1, + ACTIONS(4392), 1, sym_raw_string_begin, - ACTIONS(3160), 1, - anon_sym_LBRACK, - ACTIONS(5795), 1, - anon_sym_LBRACE, - ACTIONS(5797), 1, - anon_sym_DOT_DOT, - ACTIONS(5801), 1, - anon_sym_null, - ACTIONS(5805), 1, - sym_val_date, - STATE(2722), 1, + ACTIONS(4928), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, + aux_sym__val_number_decimal_token4, + STATE(2547), 1, sym_comment, - STATE(5707), 1, + STATE(3523), 1, sym__val_number_decimal, - STATE(5763), 1, - sym_val_variable, - STATE(5997), 1, - sym_expr_parenthesized, - STATE(7100), 1, - sym__val_number, - STATE(7114), 1, - sym__inter_single_quotes, - STATE(7117), 1, - sym__inter_double_quotes, - STATE(7368), 1, - sym_block, - ACTIONS(3148), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3154), 2, + STATE(5146), 1, + sym__command_name, + STATE(5490), 1, + sym_cmd_identifier, + STATE(5494), 1, + sym_val_string, + ACTIONS(4386), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5799), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5803), 2, - anon_sym_true, - anon_sym_false, - STATE(5281), 2, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5097), 2, sym__raw_str, sym__str_double_quotes, - STATE(7467), 2, - sym_val_range, - sym__value, - ACTIONS(3142), 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(7234), 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, - [76135] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5718), 1, - anon_sym_DOT2, - STATE(2723), 1, - sym_comment, - STATE(2803), 1, - aux_sym_cell_path_repeat1, - STATE(2907), 1, - sym_path, - STATE(2988), 1, - sym_cell_path, - ACTIONS(1941), 6, + ACTIONS(5070), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1943), 43, - sym_raw_string_begin, + ACTIONS(5072), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302848,29 +288259,44 @@ 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, + [69217] = 15, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, + sym_raw_string_begin, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2548), 1, + sym_comment, + STATE(3553), 1, + sym__val_number_decimal, + STATE(3932), 1, + sym_cmd_identifier, + STATE(3963), 1, + sym_val_string, + STATE(4587), 1, + sym__command_name, + ACTIONS(1264), 2, sym__str_single_quotes, sym__str_back_ticks, - [76207] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2724), 1, - sym_comment, - ACTIONS(954), 6, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(956), 47, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302905,99 +288331,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_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, + [69304] = 15, + ACTIONS(109), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [76271] = 4, + ACTIONS(121), 1, + sym_raw_string_begin, ACTIONS(245), 1, anon_sym_POUND, - STATE(2725), 1, - sym_comment, - ACTIONS(1715), 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(1717), 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, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4930), 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_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, + STATE(2549), 1, + sym_comment, + STATE(3523), 1, + sym__val_number_decimal, + STATE(5490), 1, + sym_cmd_identifier, + STATE(5494), 1, + sym_val_string, + STATE(6444), 1, + sym__command_name, + ACTIONS(111), 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, - [76335] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5718), 1, - anon_sym_DOT2, - STATE(2726), 1, - sym_comment, - STATE(2803), 1, - aux_sym_cell_path_repeat1, - STATE(2907), 1, - sym_path, - STATE(3020), 1, - sym_cell_path, - ACTIONS(1959), 6, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(1532), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5070), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1961), 43, - sym_raw_string_begin, + ACTIONS(5072), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303032,298 +288403,44 @@ 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, - [76407] = 30, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_COLON2, - ACTIONS(3842), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3844), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3846), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3848), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5283), 1, - sym_val_date, - ACTIONS(5623), 1, - anon_sym_DQUOTE, - ACTIONS(5627), 1, - sym_raw_string_begin, - ACTIONS(5779), 1, - anon_sym_LPAREN, - ACTIONS(5781), 1, - anon_sym_DOLLAR, - ACTIONS(5783), 1, - anon_sym_DOT_DOT, - ACTIONS(5789), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5791), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5793), 1, - aux_sym_unquoted_token1, - STATE(2661), 1, - sym__inter_single_quotes, - STATE(2662), 1, - sym__inter_double_quotes, - STATE(2727), 1, - sym_comment, - STATE(5776), 1, - sym__val_number_decimal, - STATE(7715), 1, - sym__val_range, - STATE(7722), 1, - sym__unquoted_anonymous_prefix, - STATE(7914), 1, - sym_val_bool, - ACTIONS(3840), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5625), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5785), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2613), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5787), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(1667), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2728), 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(2730), 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, - [76523] = 33, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2642), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2644), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3120), 1, - anon_sym_LPAREN, - ACTIONS(3122), 1, - anon_sym_DOLLAR, - ACTIONS(3134), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3136), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3138), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3140), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3146), 1, - anon_sym_0b, - ACTIONS(3152), 1, - anon_sym_DQUOTE, - ACTIONS(3158), 1, - sym_raw_string_begin, - ACTIONS(3160), 1, - anon_sym_LBRACK, - ACTIONS(5795), 1, - anon_sym_LBRACE, - ACTIONS(5797), 1, - anon_sym_DOT_DOT, - ACTIONS(5801), 1, - anon_sym_null, - ACTIONS(5805), 1, - sym_val_date, - STATE(2728), 1, - sym_comment, - STATE(5707), 1, - sym__val_number_decimal, - STATE(5763), 1, - sym_val_variable, - STATE(6003), 1, - sym_expr_parenthesized, - STATE(7100), 1, - sym__val_number, - STATE(7114), 1, - sym__inter_single_quotes, - STATE(7117), 1, - sym__inter_double_quotes, - STATE(7536), 1, - sym_block, - ACTIONS(3148), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3154), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5799), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5803), 2, - anon_sym_true, - anon_sym_false, - STATE(5281), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(7516), 2, - sym_val_range, - sym__value, - ACTIONS(3142), 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(7234), 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, - [76645] = 31, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, + [69391] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1248), 1, - anon_sym_LPAREN, ACTIONS(1262), 1, anon_sym_DQUOTE, ACTIONS(1266), 1, sym_raw_string_begin, - ACTIONS(3430), 1, - anon_sym_COLON2, - ACTIONS(3544), 1, - anon_sym_DOLLAR, - ACTIONS(3570), 1, - aux_sym_unquoted_token1, - ACTIONS(3842), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3844), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3846), 1, + ACTIONS(4928), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3848), 1, + ACTIONS(4930), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4139), 1, - anon_sym_DOT_DOT, - ACTIONS(5283), 1, - sym_val_date, - STATE(1848), 1, - sym__inter_single_quotes, - STATE(1849), 1, - sym__inter_double_quotes, - STATE(2729), 1, + STATE(2550), 1, sym_comment, - STATE(5822), 1, + STATE(3553), 1, sym__val_number_decimal, - STATE(6402), 1, - sym_unquoted, - STATE(7723), 1, - sym__val_range, - STATE(7727), 1, - sym__unquoted_anonymous_prefix, - STATE(7914), 1, - sym_val_bool, + STATE(3932), 1, + sym_cmd_identifier, + STATE(3963), 1, + sym_val_string, + STATE(7045), 1, + sym__command_name, ACTIONS(1264), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3840), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4141), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(3801), 2, + ACTIONS(4926), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3602), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5295), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(6400), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2728), 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(2730), 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, - [76763] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5718), 1, - anon_sym_DOT2, - STATE(2730), 1, - sym_comment, - STATE(2803), 1, - aux_sym_cell_path_repeat1, - STATE(2907), 1, - sym_path, - STATE(2983), 1, - sym_cell_path, - ACTIONS(1829), 6, + ACTIONS(4916), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1831), 43, - sym_raw_string_begin, + ACTIONS(4918), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303358,29 +288475,20 @@ 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, - [76835] = 4, + [69478] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2731), 1, + STATE(2551), 1, sym_comment, - ACTIONS(5657), 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(5659), 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, @@ -303418,6 +288526,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, @@ -303426,156 +288536,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76899] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5807), 1, - aux_sym__immediate_decimal_token2, - STATE(2732), 1, - sym_comment, - ACTIONS(1492), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - anon_sym_DOT2, - ACTIONS(1494), 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_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - sym_duration_unit, - [76965] = 12, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - ACTIONS(3610), 1, - anon_sym_DOLLAR, - ACTIONS(4075), 1, - anon_sym_LPAREN2, - ACTIONS(5771), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5773), 1, - aux_sym__immediate_decimal_token5, - STATE(2733), 1, - sym_comment, - STATE(3258), 1, - sym__immediate_decimal, - ACTIONS(5769), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1824), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1466), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1468), 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [77045] = 8, + [69543] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5718), 1, + ACTIONS(5660), 1, anon_sym_DOT2, - STATE(2734), 1, + STATE(2552), 1, sym_comment, - STATE(2803), 1, + STATE(2652), 1, aux_sym_cell_path_repeat1, - STATE(2907), 1, + STATE(2746), 1, sym_path, - STATE(2985), 1, + STATE(2815), 1, sym_cell_path, - ACTIONS(1895), 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(1897), 43, + ACTIONS(1873), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -303619,82 +288600,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77117] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5744), 1, - sym__entry_separator, - ACTIONS(5746), 1, - sym_raw_string_begin, - ACTIONS(5809), 1, - anon_sym_RBRACK, - STATE(2687), 1, - aux_sym__multiple_types_repeat1, - STATE(2735), 1, - sym_comment, - ACTIONS(5740), 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, - [77187] = 4, + [69615] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2736), 1, + STATE(2553), 1, sym_comment, - ACTIONS(982), 6, + ACTIONS(5630), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(984), 47, + ACTIONS(5632), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -303742,84 +288660,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77251] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5663), 1, - anon_sym_DOT2, - STATE(2737), 1, - sym_comment, - STATE(2742), 1, - aux_sym_cell_path_repeat1, - STATE(2856), 1, - sym_path, - ACTIONS(931), 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(933), 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, - [77321] = 6, + [69679] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5811), 1, - anon_sym_DOT, - ACTIONS(5813), 1, + ACTIONS(5662), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5664), 1, aux_sym__immediate_decimal_token2, - STATE(2738), 1, + STATE(2554), 1, sym_comment, - ACTIONS(1668), 4, + ACTIONS(1688), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1666), 47, + ACTIONS(1686), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -303867,28 +288722,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, - [77389] = 8, + [69747] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5718), 1, - anon_sym_DOT2, - STATE(2739), 1, + STATE(2555), 1, sym_comment, - STATE(2803), 1, - aux_sym_cell_path_repeat1, - STATE(2907), 1, - sym_path, - STATE(2991), 1, - sym_cell_path, - ACTIONS(1835), 6, + ACTIONS(5652), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1837), 43, + ACTIONS(5654), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303923,7 +288771,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, @@ -303931,28 +288782,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77461] = 8, + [69811] = 33, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5718), 1, - anon_sym_DOT2, - STATE(2740), 1, + ACTIONS(2524), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2526), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3046), 1, + anon_sym_LPAREN, + ACTIONS(3048), 1, + anon_sym_DOLLAR, + ACTIONS(3060), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3062), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3064), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3066), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3072), 1, + anon_sym_0b, + ACTIONS(3078), 1, + anon_sym_DQUOTE, + ACTIONS(3084), 1, + sym_raw_string_begin, + ACTIONS(3136), 1, + anon_sym_LBRACK, + ACTIONS(5666), 1, + anon_sym_LBRACE, + ACTIONS(5668), 1, + anon_sym_DOT_DOT, + ACTIONS(5672), 1, + anon_sym_null, + ACTIONS(5676), 1, + sym_val_date, + STATE(2556), 1, sym_comment, - STATE(2803), 1, - aux_sym_cell_path_repeat1, - STATE(2907), 1, - sym_path, - STATE(2994), 1, - sym_cell_path, - ACTIONS(1913), 6, + STATE(5428), 1, + sym__val_number_decimal, + STATE(5586), 1, + sym_val_variable, + STATE(5819), 1, + sym_expr_parenthesized, + STATE(6437), 1, + sym__inter_single_quotes, + STATE(6438), 1, + sym__inter_double_quotes, + STATE(6752), 1, + sym__val_number, + STATE(6865), 1, + sym_block, + ACTIONS(3074), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3080), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5670), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5674), 2, + anon_sym_true, + anon_sym_false, + STATE(5052), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(6866), 2, + sym_val_range, + sym__value, + ACTIONS(3068), 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(6683), 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, + [69933] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2557), 1, + sym_comment, + ACTIONS(5634), 6, aux_sym_cmd_identifier_token1, aux_sym_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(5636), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303987,7 +288920,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, @@ -303995,19 +288931,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77533] = 4, + [69997] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2741), 1, + STATE(2558), 1, sym_comment, - ACTIONS(962), 6, + ACTIONS(2286), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(964), 47, + ACTIONS(2288), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -304055,90 +288991,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77597] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5815), 1, - anon_sym_DOT2, - STATE(2856), 1, - sym_path, - STATE(2742), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(935), 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(937), 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, - [77665] = 8, + [70061] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5718), 1, - anon_sym_DOT2, - STATE(2743), 1, + STATE(2559), 1, sym_comment, - STATE(2803), 1, - aux_sym_cell_path_repeat1, - STATE(2907), 1, - sym_path, - STATE(3047), 1, - sym_cell_path, - ACTIONS(925), 6, + ACTIONS(1674), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(927), 43, + ACTIONS(1676), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304173,7 +289040,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, @@ -304181,28 +289051,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77737] = 8, + [70125] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5718), 1, - anon_sym_DOT2, - STATE(2744), 1, + STATE(2560), 1, sym_comment, - STATE(2803), 1, - aux_sym_cell_path_repeat1, - STATE(2907), 1, - sym_path, - STATE(2998), 1, - sym_cell_path, - ACTIONS(1945), 6, + ACTIONS(2278), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1947), 43, + ACTIONS(2280), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304237,7 +289100,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, @@ -304245,21 +289111,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77809] = 4, + [70189] = 8, ACTIONS(245), 1, anon_sym_POUND, - STATE(2745), 1, + ACTIONS(5660), 1, + anon_sym_DOT2, + STATE(2561), 1, sym_comment, - ACTIONS(2469), 6, + STATE(2652), 1, + aux_sym_cell_path_repeat1, + STATE(2746), 1, + sym_path, + STATE(2819), 1, + sym_cell_path, + 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(2471), 47, + ACTIONS(1885), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304294,30 +289167,88 @@ 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_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, + [70261] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5678), 1, + anon_sym_QMARK2, + STATE(2562), 1, + sym_comment, + ACTIONS(966), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(964), 48, anon_sym_LBRACK, - 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, - [77873] = 4, + anon_sym_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, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + 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, + [70327] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2746), 1, + STATE(2563), 1, sym_comment, - ACTIONS(2469), 6, + ACTIONS(2290), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2471), 47, + ACTIONS(2292), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -304365,19 +289296,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77937] = 4, + [70391] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2747), 1, + STATE(2564), 1, sym_comment, - ACTIONS(5665), 6, + ACTIONS(4968), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5667), 47, + ACTIONS(4966), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -304425,27 +289356,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78001] = 8, + [70455] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5718), 1, + ACTIONS(5660), 1, anon_sym_DOT2, - STATE(2748), 1, + STATE(2565), 1, sym_comment, - STATE(2803), 1, + STATE(2652), 1, aux_sym_cell_path_repeat1, - STATE(2907), 1, + STATE(2746), 1, sym_path, - STATE(3008), 1, + STATE(2831), 1, sym_cell_path, - ACTIONS(1843), 6, + ACTIONS(1845), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1845), 43, + ACTIONS(1847), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -304489,36 +289420,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78073] = 8, + [70527] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1813), 1, - anon_sym_LPAREN2, - ACTIONS(5818), 1, - anon_sym_DOT_DOT2, - STATE(2749), 1, - sym_comment, - ACTIONS(1819), 2, - sym_raw_string_begin, + ACTIONS(5682), 1, + anon_sym_RBRACK, + ACTIONS(5684), 1, sym__entry_separator, - ACTIONS(5820), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1811), 46, + ACTIONS(5686), 1, + sym_raw_string_begin, + STATE(2566), 1, + sym_comment, + STATE(2579), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5680), 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, @@ -304536,6 +289463,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, @@ -304553,28 +289483,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, - [78145] = 8, + [70597] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5718), 1, - anon_sym_DOT2, - STATE(2750), 1, + STATE(2567), 1, sym_comment, - STATE(2803), 1, - aux_sym_cell_path_repeat1, - STATE(2907), 1, - sym_path, - STATE(3028), 1, - sym_cell_path, - ACTIONS(1847), 6, + ACTIONS(2294), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1849), 43, + ACTIONS(2296), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304609,7 +289532,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, @@ -304617,28 +289543,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78217] = 8, + [70661] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5718), 1, - anon_sym_DOT2, - STATE(2751), 1, + STATE(2568), 1, sym_comment, - STATE(2803), 1, - aux_sym_cell_path_repeat1, - STATE(2907), 1, - sym_path, - STATE(3048), 1, - sym_cell_path, - ACTIONS(1851), 6, + ACTIONS(942), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1853), 43, + ACTIONS(944), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304673,7 +289592,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, @@ -304681,27 +289603,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78289] = 8, + [70725] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5718), 1, + ACTIONS(5660), 1, anon_sym_DOT2, - STATE(2752), 1, + STATE(2569), 1, sym_comment, - STATE(2803), 1, + STATE(2652), 1, aux_sym_cell_path_repeat1, - STATE(2907), 1, + STATE(2746), 1, sym_path, - STATE(3015), 1, + STATE(2880), 1, sym_cell_path, - ACTIONS(1927), 6, + ACTIONS(925), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1929), 43, + ACTIONS(927), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -304745,19 +289667,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78361] = 4, + [70797] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5688), 1, + anon_sym_QMARK2, + STATE(2570), 1, + sym_comment, + ACTIONS(960), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(958), 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_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, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + 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, + [70863] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1447), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + ACTIONS(5690), 1, + anon_sym_DOT_DOT2, + STATE(2571), 1, + sym_comment, + ACTIONS(1813), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5692), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1805), 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, + [70935] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2753), 1, + STATE(2572), 1, sym_comment, - ACTIONS(966), 6, + ACTIONS(2278), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(968), 47, + ACTIONS(2280), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -304805,19 +289852,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78425] = 5, + [70999] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5822), 1, - anon_sym_QMARK2, - STATE(2754), 1, + ACTIONS(5694), 1, + anon_sym_DOT, + ACTIONS(5696), 1, + aux_sym__immediate_decimal_token2, + STATE(2573), 1, sym_comment, - ACTIONS(944), 4, + ACTIONS(1703), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(942), 48, + ACTIONS(1701), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -304848,7 +289897,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -304866,28 +289914,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, - [78491] = 8, + [71067] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5718), 1, - anon_sym_DOT2, - STATE(2755), 1, + STATE(2574), 1, sym_comment, - STATE(2803), 1, - aux_sym_cell_path_repeat1, - STATE(2907), 1, - sym_path, - STATE(2970), 1, - sym_cell_path, - ACTIONS(1859), 6, + ACTIONS(4976), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1861), 43, + ACTIONS(4974), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304922,7 +289963,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, @@ -304930,19 +289974,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78563] = 4, + [71131] = 31, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(245), 1, anon_sym_POUND, - STATE(2756), 1, + ACTIONS(1248), 1, + anon_sym_LPAREN, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, + sym_raw_string_begin, + ACTIONS(3342), 1, + anon_sym_COLON2, + ACTIONS(3442), 1, + anon_sym_DOLLAR, + ACTIONS(3468), 1, + aux_sym_unquoted_token1, + ACTIONS(3910), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3912), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3914), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3916), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4039), 1, + anon_sym_DOT_DOT, + ACTIONS(5211), 1, + sym_val_date, + STATE(1842), 1, + sym__inter_single_quotes, + STATE(1843), 1, + sym__inter_double_quotes, + STATE(2575), 1, + sym_comment, + STATE(5535), 1, + sym__val_number_decimal, + STATE(6325), 1, + sym_unquoted, + STATE(7015), 1, + sym_val_bool, + STATE(7094), 1, + sym__val_range, + STATE(7123), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(1264), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3908), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4041), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5239), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6319), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2675), 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(2677), 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, + [71249] = 30, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(3342), 1, + anon_sym_COLON2, + ACTIONS(3910), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3912), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3914), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3916), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5211), 1, + sym_val_date, + ACTIONS(5593), 1, + anon_sym_DQUOTE, + ACTIONS(5597), 1, + sym_raw_string_begin, + ACTIONS(5698), 1, + anon_sym_LPAREN, + ACTIONS(5700), 1, + anon_sym_DOLLAR, + ACTIONS(5702), 1, + anon_sym_DOT_DOT, + ACTIONS(5708), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5710), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5712), 1, + aux_sym_unquoted_token1, + STATE(2492), 1, + sym__inter_single_quotes, + STATE(2493), 1, + sym__inter_double_quotes, + STATE(2576), 1, + sym_comment, + STATE(5510), 1, + sym__val_number_decimal, + STATE(7015), 1, + sym_val_bool, + STATE(7104), 1, + sym__val_range, + STATE(7108), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3908), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5595), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5704), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2511), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5706), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(1584), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2675), 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(2677), 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, + [71365] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2577), 1, sym_comment, - ACTIONS(1711), 6, + ACTIONS(1945), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1713), 47, + ACTIONS(1947), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -304990,19 +290207,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78627] = 4, + [71429] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2757), 1, + STATE(2578), 1, sym_comment, - ACTIONS(5688), 6, + ACTIONS(2282), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5690), 47, + ACTIONS(2284), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -305050,32 +290267,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78691] = 5, + [71493] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5824), 1, - anon_sym_QMARK2, - STATE(2758), 1, - sym_comment, - ACTIONS(950), 4, + ACTIONS(2403), 1, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(5714), 1, sym__entry_separator, - ACTIONS(948), 48, + STATE(2579), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + ACTIONS(2398), 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_DOT2, + 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, @@ -305093,7 +290308,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOT2, + 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, @@ -305111,17 +290328,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, - [78757] = 4, + [71559] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2759), 1, + STATE(2580), 1, sym_comment, - ACTIONS(960), 4, + ACTIONS(952), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(958), 49, + ACTIONS(950), 49, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -305171,81 +290388,225 @@ 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, - [78821] = 4, - ACTIONS(245), 1, + [71623] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2760), 1, + ACTIONS(5684), 1, + sym__entry_separator, + ACTIONS(5686), 1, + sym_raw_string_begin, + ACTIONS(5717), 1, + anon_sym_RBRACK, + STATE(2579), 1, + aux_sym__multiple_types_repeat1, + STATE(2581), 1, sym_comment, - ACTIONS(5680), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5682), 47, + ACTIONS(5680), 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, + [71693] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5721), 1, + anon_sym_RBRACK, + ACTIONS(5724), 1, + anon_sym_DOT2, + ACTIONS(5726), 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, + STATE(2582), 1, + sym_comment, + STATE(5626), 1, + aux_sym_cell_path_repeat1, + STATE(5901), 1, + sym_path, + STATE(6473), 1, + sym_cell_path, + ACTIONS(1845), 2, + sym__entry_separator, + sym__table_head_separator, + ACTIONS(5719), 45, anon_sym_LBRACK, - anon_sym_STAR2, + 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, - [78885] = 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, + [71769] = 12, ACTIONS(245), 1, anon_sym_POUND, - STATE(2761), 1, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(3550), 1, + anon_sym_DOLLAR, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(5730), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5732), 1, + aux_sym__immediate_decimal_token5, + STATE(2583), 1, + sym_comment, + STATE(3103), 1, + sym__immediate_decimal, + ACTIONS(5728), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1773), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1431), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1445), 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [71849] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5660), 1, + anon_sym_DOT2, + STATE(2584), 1, sym_comment, - ACTIONS(5684), 6, + STATE(2652), 1, + aux_sym_cell_path_repeat1, + STATE(2746), 1, + sym_path, + STATE(2869), 1, + sym_cell_path, + 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(5686), 47, + ACTIONS(1917), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -305280,10 +290641,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, @@ -305291,24 +290649,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78949] = 9, + [71921] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5826), 1, - anon_sym_DOT_DOT2, - ACTIONS(5830), 1, - sym_filesize_unit, - ACTIONS(5832), 1, - sym_duration_unit, - ACTIONS(5834), 1, - aux_sym__unquoted_in_list_token2, - STATE(2762), 1, + ACTIONS(5613), 1, + anon_sym_DOT2, + STATE(2585), 1, sym_comment, - ACTIONS(5828), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1579), 16, + STATE(2591), 1, + aux_sym_cell_path_repeat1, + STATE(2698), 1, + sym_path, + ACTIONS(938), 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, @@ -305324,7 +290678,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(1591), 31, + ACTIONS(940), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -305332,6 +290686,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, @@ -305356,44 +290712,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, - [79023] = 4, - ACTIONS(245), 1, + [71991] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2763), 1, - sym_comment, - ACTIONS(966), 18, - anon_sym_DOT_DOT, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1792), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5734), 1, 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_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, - aux_sym__unquoted_in_list_token1, - ACTIONS(968), 34, + STATE(2586), 1, + sym_comment, + ACTIONS(1790), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5736), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1782), 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, @@ -305403,10 +290752,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, @@ -305415,44 +290775,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, - [79086] = 4, + aux_sym__unquoted_in_list_token1, + [72063] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2764), 1, + STATE(2587), 1, sym_comment, - ACTIONS(958), 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_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, - aux_sym__unquoted_in_list_token1, - ACTIONS(960), 34, + ACTIONS(954), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(956), 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, + [72127] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5684), 1, + sym__entry_separator, + ACTIONS(5686), 1, + sym_raw_string_begin, + ACTIONS(5738), 1, anon_sym_RBRACK, + STATE(2579), 1, + aux_sym__multiple_types_repeat1, + STATE(2588), 1, + sym_comment, + ACTIONS(5680), 49, + anon_sym_LBRACK, 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_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, @@ -305462,10 +290872,24 @@ 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, @@ -305474,44 +290898,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, - [79149] = 4, - ACTIONS(245), 1, + aux_sym__unquoted_in_list_token1, + [72197] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2765), 1, + STATE(2589), 1, sym_comment, - ACTIONS(954), 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_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, - aux_sym__unquoted_in_list_token1, - ACTIONS(956), 34, + ACTIONS(944), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(942), 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_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + 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, @@ -305521,10 +290934,22 @@ 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_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, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305533,12 +290958,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, - [79212] = 4, + aux_sym__unquoted_in_list_token1, + [72261] = 8, ACTIONS(245), 1, anon_sym_POUND, - STATE(2766), 1, + ACTIONS(5660), 1, + anon_sym_DOT2, + STATE(2590), 1, + sym_comment, + STATE(2652), 1, + aux_sym_cell_path_repeat1, + STATE(2746), 1, + sym_path, + STATE(2881), 1, + sym_cell_path, + ACTIONS(1893), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1895), 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, + [72333] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5740), 1, + anon_sym_DOT2, + STATE(2698), 1, + sym_path, + STATE(2591), 2, sym_comment, - ACTIONS(962), 18, + aux_sym_cell_path_repeat1, + ACTIONS(931), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -305547,7 +291042,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -305557,7 +291051,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(964), 34, + ACTIONS(933), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -305565,7 +291059,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, @@ -305592,32 +291085,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, - [79275] = 10, + [72401] = 12, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1477), 1, + aux_sym_unquoted_token2, + ACTIONS(3550), 1, + anon_sym_DOLLAR, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(5730), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5732), 1, + aux_sym__immediate_decimal_token5, + STATE(2592), 1, + sym_comment, + STATE(3080), 1, + sym__immediate_decimal, + ACTIONS(5728), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1823), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1473), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1475), 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [72481] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1943), 1, - sym__entry_separator, - ACTIONS(5838), 1, - anon_sym_RBRACK, - ACTIONS(5841), 1, - anon_sym_DOT2, - ACTIONS(5843), 1, - sym_raw_string_begin, - STATE(2767), 1, + STATE(2593), 1, sym_comment, - STATE(2874), 1, - aux_sym_cell_path_repeat1, - STATE(3019), 1, - sym_path, - STATE(3129), 1, - sym_cell_path, - ACTIONS(5836), 45, + ACTIONS(956), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(954), 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_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -305640,6 +291195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -305657,17 +291213,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, - [79350] = 5, + [72545] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5845), 1, - sym__newline, - STATE(2768), 2, + STATE(2594), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1284), 15, - anon_sym_DOLLAR, + ACTIONS(1499), 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, @@ -305681,18 +291236,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(1286), 35, + aux_sym__unquoted_in_list_token2, + ACTIONS(1501), 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_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, @@ -305702,13 +291259,12 @@ 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, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305717,35 +291273,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, - [79415] = 8, - ACTIONS(3), 1, + [72609] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5841), 1, + ACTIONS(5660), 1, anon_sym_DOT2, - STATE(2769), 1, + STATE(2595), 1, sym_comment, - STATE(2874), 1, + STATE(2652), 1, aux_sym_cell_path_repeat1, - STATE(3019), 1, + STATE(2746), 1, sym_path, - STATE(3065), 1, + STATE(2887), 1, sym_cell_path, - ACTIONS(1831), 2, + ACTIONS(1823), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1825), 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, + [72681] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5684), 1, sym__entry_separator, - ACTIONS(1829), 46, - anon_sym_LBRACK, + ACTIONS(5686), 1, + sym_raw_string_begin, + ACTIONS(5743), 1, anon_sym_RBRACK, + STATE(2579), 1, + aux_sym__multiple_types_repeat1, + STATE(2596), 1, + sym_comment, + ACTIONS(5680), 49, + anon_sym_LBRACK, 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, @@ -305763,89 +291380,9 @@ static const uint16_t ts_small_parse_table[] = { 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, - [79486] = 29, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3842), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3844), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3846), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3848), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5283), 1, - sym_val_date, - ACTIONS(5706), 1, - anon_sym_DQUOTE, - ACTIONS(5710), 1, - sym_raw_string_begin, - ACTIONS(5848), 1, - anon_sym_LPAREN, - ACTIONS(5850), 1, - anon_sym_DOLLAR, - ACTIONS(5852), 1, - anon_sym_DOT_DOT, - ACTIONS(5858), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5860), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5862), 1, - aux_sym_unquoted_token1, - STATE(2745), 1, - sym__inter_single_quotes, - STATE(2746), 1, - sym__inter_double_quotes, - STATE(2770), 1, - sym_comment, - STATE(5965), 1, - sym__val_number_decimal, - STATE(7591), 1, - sym__val_range, - STATE(7914), 1, - sym_val_bool, - STATE(7934), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3840), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5708), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5854), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2692), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5856), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(1919), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2728), 8, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -305854,8 +291391,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(2730), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305864,23 +291399,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, - [79599] = 8, + aux_sym__unquoted_in_list_token1, + [72751] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5841), 1, - anon_sym_DOT2, - STATE(2771), 1, + STATE(2597), 1, sym_comment, - STATE(2874), 1, - aux_sym_cell_path_repeat1, - STATE(3019), 1, - sym_path, - STATE(3067), 1, - sym_cell_path, - ACTIONS(1837), 2, + ACTIONS(948), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1835), 46, + ACTIONS(946), 49, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -305888,6 +291418,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_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -305910,6 +291442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -305927,52 +291460,264 @@ 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, - [79670] = 8, - ACTIONS(3), 1, + [72815] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5841), 1, + STATE(2598), 1, + sym_comment, + ACTIONS(5622), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5624), 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, + [72879] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5745), 1, + aux_sym__immediate_decimal_token2, + STATE(2599), 1, + sym_comment, + ACTIONS(1499), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, anon_sym_DOT2, - STATE(2772), 1, + ACTIONS(1501), 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + sym_duration_unit, + [72945] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2600), 1, sym_comment, - STATE(2874), 1, - aux_sym_cell_path_repeat1, - STATE(3019), 1, - sym_path, - STATE(3068), 1, - sym_cell_path, - ACTIONS(1849), 2, + ACTIONS(950), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(952), 47, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1847), 46, + 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, + [73009] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2601), 1, + sym_comment, + ACTIONS(982), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(984), 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, + [73073] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5747), 1, + sym__newline, + STATE(2602), 1, + sym_comment, + ACTIONS(5750), 2, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_COMMA, + ACTIONS(1287), 15, 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, @@ -305981,45 +291726,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, - [79741] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5841), 1, - anon_sym_DOT2, - STATE(2773), 1, - sym_comment, - STATE(2874), 1, - aux_sym_cell_path_repeat1, - STATE(3019), 1, - sym_path, - STATE(3069), 1, - sym_cell_path, - ACTIONS(1853), 2, + ACTIONS(1285), 35, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1851), 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, @@ -306029,21 +291748,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, @@ -306052,37 +291763,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, - aux_sym__unquoted_in_list_token1, - [79812] = 8, - ACTIONS(3), 1, + [73141] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5841), 1, - anon_sym_DOT2, - STATE(2774), 1, + STATE(2603), 1, sym_comment, - STATE(2874), 1, - aux_sym_cell_path_repeat1, - STATE(3019), 1, - sym_path, - STATE(3071), 1, - sym_cell_path, - ACTIONS(1861), 2, + ACTIONS(1491), 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(1493), 35, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1859), 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, @@ -306092,21 +291809,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_filesize_unit, + sym_duration_unit, 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, @@ -306115,53 +291823,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, - aux_sym__unquoted_in_list_token1, - [79883] = 8, - ACTIONS(3), 1, + [73205] = 30, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5841), 1, - anon_sym_DOT2, - STATE(2775), 1, - sym_comment, - STATE(2874), 1, - aux_sym_cell_path_repeat1, - STATE(3019), 1, - sym_path, - STATE(3072), 1, - sym_cell_path, - ACTIONS(1865), 2, + ACTIONS(3408), 1, + anon_sym_COLON2, + ACTIONS(3910), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3912), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3914), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3916), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5211), 1, + sym_val_date, + ACTIONS(5593), 1, + anon_sym_DQUOTE, + ACTIONS(5597), 1, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1863), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5698), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(5700), 1, anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(5702), 1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(5708), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5710), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5712), 1, + aux_sym_unquoted_token1, + STATE(2492), 1, + sym__inter_single_quotes, + STATE(2493), 1, + sym__inter_double_quotes, + STATE(2604), 1, + sym_comment, + STATE(5510), 1, + sym__val_number_decimal, + STATE(7015), 1, + sym_val_bool, + STATE(7104), 1, + sym__val_range, + STATE(7108), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3908), 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(5595), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5704), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2511), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5706), 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(1584), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2675), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -306170,6 +291899,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(2677), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -306178,53 +291909,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, - aux_sym__unquoted_in_list_token1, - [79954] = 8, - ACTIONS(3), 1, + [73321] = 31, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5841), 1, - anon_sym_DOT2, - STATE(2776), 1, - sym_comment, - STATE(2874), 1, - aux_sym_cell_path_repeat1, - STATE(3019), 1, - sym_path, - STATE(3073), 1, - sym_cell_path, - ACTIONS(1877), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1875), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1248), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, + sym_raw_string_begin, + ACTIONS(3408), 1, + anon_sym_COLON2, + ACTIONS(3442), 1, 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, + ACTIONS(3468), 1, + aux_sym_unquoted_token1, + ACTIONS(3910), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3912), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3914), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3916), 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, + ACTIONS(4039), 1, + anon_sym_DOT_DOT, + ACTIONS(5211), 1, sym_val_date, - anon_sym_DQUOTE, + STATE(1842), 1, + sym__inter_single_quotes, + STATE(1843), 1, + sym__inter_double_quotes, + STATE(2605), 1, + sym_comment, + STATE(5535), 1, + sym__val_number_decimal, + STATE(6325), 1, + sym_unquoted, + STATE(7015), 1, + sym_val_bool, + STATE(7094), 1, + sym__val_range, + STATE(7123), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(1264), 2, sym__str_single_quotes, sym__str_back_ticks, + ACTIONS(3908), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4041), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5239), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6319), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2675), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -306233,6 +291986,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(2677), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -306241,37 +291996,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, - aux_sym__unquoted_in_list_token1, - [80025] = 8, - ACTIONS(3), 1, + [73439] = 9, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5841), 1, - anon_sym_DOT2, - STATE(2777), 1, + ACTIONS(5752), 1, + anon_sym_DOT_DOT2, + ACTIONS(5756), 1, + sym_filesize_unit, + ACTIONS(5758), 1, + sym_duration_unit, + ACTIONS(5760), 1, + aux_sym__unquoted_in_list_token2, + STATE(2606), 1, sym_comment, - STATE(2874), 1, - aux_sym_cell_path_repeat1, - STATE(3019), 1, - sym_path, - STATE(3074), 1, - sym_cell_path, - ACTIONS(1881), 2, + ACTIONS(5754), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1616), 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(1628), 31, 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, - 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, @@ -306281,21 +292049,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, @@ -306304,15 +292061,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_in_list_token1, - [80096] = 5, + [73513] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5767), 1, + ACTIONS(5762), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5764), 1, aux_sym__immediate_decimal_token2, - STATE(2778), 1, + STATE(2607), 1, sym_comment, - ACTIONS(1666), 18, + ACTIONS(1686), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -306331,7 +292089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - ACTIONS(1668), 33, + ACTIONS(1688), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -306365,149 +292123,339 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [80161] = 8, - ACTIONS(3), 1, + [73581] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5841), 1, + STATE(2608), 1, + sym_comment, + ACTIONS(5648), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5650), 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, + [73645] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5660), 1, anon_sym_DOT2, - STATE(2779), 1, + STATE(2609), 1, sym_comment, - STATE(2874), 1, + STATE(2652), 1, aux_sym_cell_path_repeat1, - STATE(3019), 1, + STATE(2746), 1, sym_path, - STATE(3075), 1, + STATE(2889), 1, sym_cell_path, - ACTIONS(1897), 2, + ACTIONS(1833), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1835), 43, 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_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, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, - [80232] = 8, - ACTIONS(3), 1, + [73717] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5841), 1, + ACTIONS(5660), 1, anon_sym_DOT2, - STATE(2780), 1, + STATE(2610), 1, sym_comment, - STATE(2874), 1, + STATE(2652), 1, aux_sym_cell_path_repeat1, - STATE(3019), 1, + STATE(2746), 1, sym_path, - STATE(3077), 1, + STATE(2890), 1, sym_cell_path, - ACTIONS(1915), 2, + 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(1881), 43, 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, - 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, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [73789] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5660), 1, + anon_sym_DOT2, + STATE(2611), 1, + sym_comment, + STATE(2652), 1, + aux_sym_cell_path_repeat1, + STATE(2746), 1, + sym_path, + STATE(2894), 1, + sym_cell_path, + ACTIONS(1849), 6, + aux_sym_cmd_identifier_token1, + aux_sym_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, - aux_sym__val_number_token1, - aux_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, - [80303] = 8, + [73861] = 13, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(4523), 1, + anon_sym_DOLLAR, + ACTIONS(4525), 1, + anon_sym_LPAREN2, + ACTIONS(5766), 1, + anon_sym_DOT, + ACTIONS(5770), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5772), 1, + aux_sym__immediate_decimal_token5, + STATE(2612), 1, + sym_comment, + STATE(2983), 1, + sym__immediate_decimal, + ACTIONS(5768), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1905), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1431), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1445), 36, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [73943] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5841), 1, - anon_sym_DOT2, - STATE(2781), 1, + STATE(2613), 1, sym_comment, - STATE(2874), 1, - aux_sym_cell_path_repeat1, - STATE(3019), 1, - sym_path, - STATE(3078), 1, - sym_cell_path, - ACTIONS(1947), 2, + ACTIONS(1703), 5, sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1945), 46, + ACTIONS(1701), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -306515,6 +292463,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, @@ -306554,14 +292503,13 @@ 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, - [80374] = 5, + aux_sym__unquoted_in_list_token2, + [74007] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5864), 1, - aux_sym__immediate_decimal_token2, - STATE(2782), 1, + STATE(2614), 1, sym_comment, - ACTIONS(1719), 18, + ACTIONS(1579), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -306580,7 +292528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - ACTIONS(1721), 33, + ACTIONS(1581), 35, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -306602,6 +292550,8 @@ 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, @@ -306614,275 +292564,359 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [80439] = 8, - ACTIONS(3), 1, + [74071] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5841), 1, - anon_sym_DOT2, - STATE(2783), 1, + STATE(2615), 1, sym_comment, - STATE(2874), 1, - aux_sym_cell_path_repeat1, - STATE(3019), 1, - sym_path, - STATE(3079), 1, - sym_cell_path, - ACTIONS(1845), 2, + ACTIONS(5626), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5628), 47, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1843), 46, + 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_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, - [80510] = 8, - ACTIONS(3), 1, + [74135] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5841), 1, + ACTIONS(5660), 1, anon_sym_DOT2, - STATE(2784), 1, + STATE(2616), 1, sym_comment, - STATE(2874), 1, + STATE(2652), 1, aux_sym_cell_path_repeat1, - STATE(3019), 1, + STATE(2746), 1, sym_path, - STATE(3080), 1, + STATE(2895), 1, sym_cell_path, - ACTIONS(1857), 2, + 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(1865), 43, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1855), 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, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, - [80581] = 8, - ACTIONS(3), 1, + [74207] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5841), 1, + ACTIONS(5660), 1, anon_sym_DOT2, - STATE(2785), 1, + STATE(2617), 1, sym_comment, - STATE(2874), 1, + STATE(2652), 1, aux_sym_cell_path_repeat1, - STATE(3019), 1, + STATE(2746), 1, sym_path, - STATE(3083), 1, + STATE(2896), 1, sym_cell_path, - ACTIONS(1885), 2, + 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(1909), 43, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1883), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, + 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, + [74279] = 33, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(2524), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2526), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3046), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(3048), 1, anon_sym_DOLLAR, + ACTIONS(3060), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3062), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3064), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3066), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3072), 1, + anon_sym_0b, + ACTIONS(3078), 1, + anon_sym_DQUOTE, + ACTIONS(3084), 1, + sym_raw_string_begin, + ACTIONS(3136), 1, + anon_sym_LBRACK, + ACTIONS(5666), 1, anon_sym_LBRACE, + ACTIONS(5668), 1, anon_sym_DOT_DOT, + ACTIONS(5672), 1, + anon_sym_null, + ACTIONS(5676), 1, + sym_val_date, + STATE(2618), 1, + sym_comment, + STATE(5428), 1, + sym__val_number_decimal, + STATE(5586), 1, + sym_val_variable, + STATE(5817), 1, + sym_expr_parenthesized, + STATE(6437), 1, + sym__inter_single_quotes, + STATE(6438), 1, + sym__inter_double_quotes, + STATE(6752), 1, + sym__val_number, + STATE(6816), 1, + sym_block, + ACTIONS(3074), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3080), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5670), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(5674), 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, + STATE(5052), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(6863), 2, + sym_val_range, + sym__value, + ACTIONS(3068), 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, - 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, - [80652] = 8, - ACTIONS(3), 1, + STATE(6683), 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, + [74401] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5841), 1, + ACTIONS(5660), 1, anon_sym_DOT2, - STATE(2786), 1, + STATE(2619), 1, sym_comment, - STATE(2874), 1, + STATE(2652), 1, aux_sym_cell_path_repeat1, - STATE(3019), 1, + STATE(2746), 1, sym_path, - STATE(3084), 1, + STATE(2816), 1, sym_cell_path, - ACTIONS(1893), 2, + ACTIONS(1829), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1831), 43, 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_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, - [80723] = 8, + [74473] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5841), 1, - anon_sym_DOT2, - STATE(2787), 1, + STATE(2620), 1, sym_comment, - STATE(2874), 1, - aux_sym_cell_path_repeat1, - STATE(3019), 1, - sym_path, - STATE(3085), 1, - sym_cell_path, - ACTIONS(1925), 2, + ACTIONS(1688), 5, sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1923), 46, + ACTIONS(1686), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -306890,6 +292924,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, @@ -306929,52 +292964,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, - [80794] = 8, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token2, + [74537] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5841), 1, - anon_sym_DOT2, - STATE(2788), 1, + STATE(2621), 1, sym_comment, - STATE(2874), 1, - aux_sym_cell_path_repeat1, - STATE(3019), 1, - sym_path, - STATE(3086), 1, - sym_cell_path, - ACTIONS(1933), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1931), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(1678), 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, @@ -306983,45 +292987,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, - [80865] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5841), 1, - anon_sym_DOT2, - STATE(2789), 1, - sym_comment, - STATE(2874), 1, - aux_sym_cell_path_repeat1, - STATE(3019), 1, - sym_path, - STATE(3087), 1, - sym_cell_path, - ACTIONS(1937), 2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1680), 35, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1935), 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, @@ -307031,21 +293011,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_filesize_unit, + sym_duration_unit, 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, @@ -307054,31 +293025,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, - [80936] = 6, + [74601] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5744), 1, - sym__entry_separator, - ACTIONS(5746), 1, - sym_raw_string_begin, - STATE(2687), 1, - aux_sym__multiple_types_repeat1, - STATE(2790), 1, + STATE(2622), 1, sym_comment, - ACTIONS(5740), 49, + ACTIONS(1762), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1760), 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_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, @@ -307096,9 +293067,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, @@ -307116,12 +293084,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, - [81003] = 4, + aux_sym__unquoted_in_list_token2, + [74665] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2791), 1, + ACTIONS(5774), 1, + aux_sym__immediate_decimal_token2, + STATE(2623), 1, sym_comment, - ACTIONS(1538), 8, + ACTIONS(1579), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -307130,7 +293101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, anon_sym_DOT2, - ACTIONS(1540), 44, + ACTIONS(1581), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -307175,77 +293146,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [81066] = 6, - ACTIONS(245), 1, + [74731] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5866), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5868), 1, - aux_sym__immediate_decimal_token2, - STATE(2792), 1, + STATE(2624), 1, sym_comment, - ACTIONS(1484), 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(1486), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - 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(1799), 5, + sym_raw_string_begin, 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, - [81133] = 6, + sym__entry_separator, + ACTIONS(1797), 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, + [74795] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5870), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5872), 1, + ACTIONS(5776), 1, + anon_sym_DOT, + ACTIONS(5778), 1, aux_sym__immediate_decimal_token2, - STATE(2793), 1, + STATE(2625), 1, sym_comment, - ACTIONS(1648), 17, + ACTIONS(1701), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -307263,7 +293233,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(1650), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1703), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -307297,148 +293268,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [81200] = 6, + [74863] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5874), 1, - anon_sym_DOT, - ACTIONS(5876), 1, - aux_sym__immediate_decimal_token2, - STATE(2794), 1, + STATE(2626), 1, sym_comment, - ACTIONS(1492), 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(1494), 42, + ACTIONS(946), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(948), 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_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [81267] = 5, - ACTIONS(3), 1, + 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, + [74927] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5813), 1, - aux_sym__immediate_decimal_token2, - STATE(2795), 1, + STATE(2627), 1, sym_comment, - ACTIONS(1668), 4, + 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(5658), 47, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1666), 47, + 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, - [81332] = 5, + [74991] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5660), 1, + anon_sym_DOT2, + STATE(2628), 1, + sym_comment, + STATE(2652), 1, + aux_sym_cell_path_repeat1, + STATE(2746), 1, + sym_path, + STATE(2882), 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(1869), 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, + [75063] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5878), 1, - aux_sym__immediate_decimal_token2, - STATE(2796), 1, - sym_comment, - ACTIONS(1721), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1917), 1, sym__entry_separator, - ACTIONS(1719), 47, - anon_sym_LBRACK, + ACTIONS(5782), 1, anon_sym_RBRACK, + ACTIONS(5785), 1, + anon_sym_DOT2, + ACTIONS(5787), 1, + sym_raw_string_begin, + STATE(2629), 1, + sym_comment, + STATE(2742), 1, + aux_sym_cell_path_repeat1, + STATE(2817), 1, + sym_path, + STATE(2932), 1, + sym_cell_path, + ACTIONS(5780), 45, + anon_sym_LBRACK, 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, @@ -307478,20 +293517,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, - [81397] = 6, + [75138] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5880), 1, + ACTIONS(5789), 1, anon_sym_DOT, - ACTIONS(5882), 1, + ACTIONS(5791), 1, aux_sym__immediate_decimal_token2, - STATE(2797), 1, + STATE(2630), 1, sym_comment, - ACTIONS(1668), 3, + ACTIONS(1703), 3, sym_raw_string_begin, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1666), 47, + ACTIONS(1701), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -307539,133 +293578,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - [81464] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5884), 1, - anon_sym_DOT, - ACTIONS(5886), 1, - aux_sym__immediate_decimal_token2, - STATE(2798), 1, - sym_comment, - ACTIONS(1666), 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(1668), 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, - [81531] = 29, + [75205] = 29, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3842), 1, + ACTIONS(3910), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3844), 1, + ACTIONS(3912), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3846), 1, + ACTIONS(3914), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3848), 1, + ACTIONS(3916), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5283), 1, + ACTIONS(5211), 1, sym_val_date, - ACTIONS(5623), 1, + ACTIONS(5605), 1, anon_sym_DQUOTE, - ACTIONS(5627), 1, + ACTIONS(5609), 1, sym_raw_string_begin, - ACTIONS(5779), 1, + ACTIONS(5793), 1, anon_sym_LPAREN, - ACTIONS(5781), 1, + ACTIONS(5795), 1, anon_sym_DOLLAR, - ACTIONS(5783), 1, + ACTIONS(5797), 1, anon_sym_DOT_DOT, - ACTIONS(5789), 1, + ACTIONS(5803), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5791), 1, + ACTIONS(5805), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5793), 1, + ACTIONS(5807), 1, aux_sym_unquoted_token1, - STATE(2661), 1, - sym__inter_single_quotes, - STATE(2662), 1, + STATE(2560), 1, sym__inter_double_quotes, - STATE(2799), 1, + STATE(2572), 1, + sym__inter_single_quotes, + STATE(2631), 1, sym_comment, - STATE(5776), 1, + STATE(5575), 1, sym__val_number_decimal, - STATE(7715), 1, + STATE(7004), 1, sym__val_range, - STATE(7722), 1, - sym__unquoted_anonymous_prefix, - STATE(7914), 1, + STATE(7015), 1, sym_val_bool, - ACTIONS(3840), 2, + STATE(7037), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3908), 2, anon_sym_true, anon_sym_false, - ACTIONS(5625), 2, + ACTIONS(5607), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5785), 2, + ACTIONS(5799), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(2613), 2, + STATE(2600), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5787), 3, + ACTIONS(5801), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1667), 5, + STATE(1724), 5, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, sym_unquoted, - ACTIONS(2728), 8, + ACTIONS(2675), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -307674,7 +293652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2730), 9, + ACTIONS(2677), 9, anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -307684,73 +293662,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, - [81644] = 30, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, + [75318] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1248), 1, - anon_sym_LPAREN, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, - sym_raw_string_begin, - ACTIONS(3544), 1, + ACTIONS(5809), 1, + sym__newline, + STATE(2632), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1272), 15, anon_sym_DOLLAR, - ACTIONS(3570), 1, - aux_sym_unquoted_token1, - ACTIONS(3842), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3844), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3846), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3848), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4139), 1, anon_sym_DOT_DOT, - ACTIONS(5283), 1, - sym_val_date, - STATE(1848), 1, - sym__inter_single_quotes, - STATE(1849), 1, - sym__inter_double_quotes, - STATE(2800), 1, - sym_comment, - STATE(5822), 1, - sym__val_number_decimal, - STATE(6402), 1, - sym_unquoted, - STATE(7723), 1, - sym__val_range, - STATE(7727), 1, - sym__unquoted_anonymous_prefix, - STATE(7914), 1, - sym_val_bool, - ACTIONS(1264), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3840), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4141), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5295), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(6400), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2728), 8, + 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, @@ -307759,92 +293685,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2730), 9, + aux_sym__unquoted_in_list_token1, + ACTIONS(1274), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, 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, - [81759] = 29, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3842), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3844), 1, + anon_sym_true, + anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, - ACTIONS(3846), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3848), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5283), 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, - ACTIONS(5623), 1, anon_sym_DQUOTE, - ACTIONS(5627), 1, - sym_raw_string_begin, - ACTIONS(5779), 1, - anon_sym_LPAREN, - ACTIONS(5781), 1, - anon_sym_DOLLAR, - ACTIONS(5783), 1, - anon_sym_DOT_DOT, - ACTIONS(5789), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5791), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5793), 1, - aux_sym_unquoted_token1, - STATE(2661), 1, - sym__inter_single_quotes, - STATE(2662), 1, - sym__inter_double_quotes, - STATE(2801), 1, - sym_comment, - STATE(5776), 1, - sym__val_number_decimal, - STATE(7715), 1, - sym__val_range, - STATE(7722), 1, - sym__unquoted_anonymous_prefix, - STATE(7914), 1, - sym_val_bool, - ACTIONS(3840), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5625), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5785), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2613), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5787), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(1672), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2728), 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(2730), 9, - anon_sym_null, + 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, @@ -307853,73 +293722,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, - [81872] = 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, + [75383] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3506), 1, - anon_sym_DOLLAR, - ACTIONS(3530), 1, - aux_sym_unquoted_token1, - ACTIONS(3842), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3844), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3846), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3848), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4399), 1, - anon_sym_DOT_DOT, - ACTIONS(5283), 1, - sym_val_date, - ACTIONS(5888), 1, - anon_sym_LPAREN, - STATE(2418), 1, - sym__inter_double_quotes, - STATE(2515), 1, - sym__inter_single_quotes, - STATE(2802), 1, + ACTIONS(5812), 1, + anon_sym_DOT, + ACTIONS(5814), 1, + aux_sym__immediate_decimal_token2, + STATE(2633), 1, sym_comment, - STATE(5960), 1, - sym__val_number_decimal, - STATE(7240), 1, - sym_unquoted, - STATE(7905), 1, - sym__val_range, - STATE(7908), 1, - sym__unquoted_anonymous_prefix, - STATE(7914), 1, - sym_val_bool, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3840), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4401), 2, + ACTIONS(1701), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(1634), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5281), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(7236), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2728), 8, + 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, @@ -307928,8 +293748,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2730), 9, + aux_sym__unquoted_in_list_token1, + ACTIONS(1703), 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, @@ -307938,151 +293783,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, - [81987] = 7, - ACTIONS(245), 1, + [75450] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5718), 1, + ACTIONS(5785), 1, anon_sym_DOT2, - STATE(2803), 1, + STATE(2634), 1, sym_comment, - STATE(2804), 1, + STATE(2742), 1, aux_sym_cell_path_repeat1, - STATE(2907), 1, - sym_path, - ACTIONS(931), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(933), 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, - [82056] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5890), 1, - anon_sym_DOT2, - STATE(2907), 1, + STATE(2817), 1, sym_path, - STATE(2804), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(935), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(937), 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, - [82123] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2805), 1, - sym_comment, - ACTIONS(2487), 2, + STATE(2913), 1, + sym_cell_path, + ACTIONS(1873), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2485), 50, + 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, @@ -308100,9 +293829,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, @@ -308120,45 +293846,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, - [82186] = 5, - ACTIONS(245), 1, + [75521] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5893), 1, - anon_sym_QMARK2, - STATE(2806), 1, + STATE(2635), 1, sym_comment, - ACTIONS(942), 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_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, - aux_sym__unquoted_in_list_token1, - ACTIONS(944), 33, + ACTIONS(980), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(978), 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, @@ -308168,10 +293880,22 @@ 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_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, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308180,14 +293904,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, - [82251] = 5, + aux_sym__unquoted_in_list_token1, + [75584] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5895), 1, - anon_sym_QMARK2, - STATE(2807), 1, + STATE(2636), 1, sym_comment, - ACTIONS(948), 18, + ACTIONS(950), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -308206,7 +293929,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(950), 33, + ACTIONS(952), 34, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -308214,6 +293937,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, @@ -308240,37 +293964,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, - [82316] = 12, + [75647] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1447), 1, + ACTIONS(1477), 1, aux_sym_unquoted_token2, - ACTIONS(4499), 1, + ACTIONS(4523), 1, anon_sym_DOLLAR, - ACTIONS(4501), 1, + ACTIONS(4525), 1, anon_sym_LPAREN2, - ACTIONS(5899), 1, + ACTIONS(5818), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5901), 1, + ACTIONS(5820), 1, aux_sym__immediate_decimal_token5, - STATE(2808), 1, + STATE(2637), 1, sym_comment, - STATE(3314), 1, + STATE(3115), 1, sym__immediate_decimal, - ACTIONS(5897), 2, + ACTIONS(5816), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2493), 2, + STATE(2353), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1431), 6, + ACTIONS(1473), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1445), 36, + ACTIONS(1475), 36, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -308307,31 +294031,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [82395] = 4, - ACTIONS(3), 1, + [75726] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(2809), 1, + STATE(2638), 1, sym_comment, - ACTIONS(972), 4, + ACTIONS(942), 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_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, + aux_sym__unquoted_in_list_token1, + ACTIONS(944), 34, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(970), 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_QMARK2, + 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, @@ -308341,13 +294078,32 @@ 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, + [75789] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2639), 1, + sym_comment, + ACTIONS(954), 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_DOT2, anon_sym_err_GT, anon_sym_out_GT, @@ -308357,6 +294113,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, + ACTIONS(956), 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_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, @@ -308365,73 +294149,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, - [82458] = 29, + [75852] = 29, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3842), 1, + ACTIONS(3910), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3844), 1, + ACTIONS(3912), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3846), 1, + ACTIONS(3914), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3848), 1, + ACTIONS(3916), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5283), 1, + ACTIONS(5211), 1, sym_val_date, - ACTIONS(5706), 1, + ACTIONS(5605), 1, anon_sym_DQUOTE, - ACTIONS(5710), 1, + ACTIONS(5609), 1, sym_raw_string_begin, - ACTIONS(5848), 1, + ACTIONS(5793), 1, anon_sym_LPAREN, - ACTIONS(5850), 1, + ACTIONS(5795), 1, anon_sym_DOLLAR, - ACTIONS(5852), 1, + ACTIONS(5797), 1, anon_sym_DOT_DOT, - ACTIONS(5858), 1, + ACTIONS(5803), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5860), 1, + ACTIONS(5805), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5862), 1, + ACTIONS(5807), 1, aux_sym_unquoted_token1, - STATE(2745), 1, - sym__inter_single_quotes, - STATE(2746), 1, + STATE(2560), 1, sym__inter_double_quotes, - STATE(2810), 1, + STATE(2572), 1, + sym__inter_single_quotes, + STATE(2640), 1, sym_comment, - STATE(5965), 1, + STATE(5575), 1, sym__val_number_decimal, - STATE(7591), 1, + STATE(7004), 1, sym__val_range, - STATE(7914), 1, + STATE(7015), 1, sym_val_bool, - STATE(7934), 1, + STATE(7037), 1, sym__unquoted_anonymous_prefix, - ACTIONS(3840), 2, + ACTIONS(3908), 2, anon_sym_true, anon_sym_false, - ACTIONS(5708), 2, + ACTIONS(5607), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5854), 2, + ACTIONS(5799), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(2692), 2, + STATE(2600), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5856), 3, + ACTIONS(5801), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1807), 5, + STATE(1732), 5, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, sym_unquoted, - ACTIONS(2728), 8, + ACTIONS(2675), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -308440,7 +294223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2730), 9, + ACTIONS(2677), 9, anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -308450,30 +294233,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, - [82571] = 4, + [75965] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2811), 1, - sym_comment, - ACTIONS(980), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(5684), 1, sym__entry_separator, - ACTIONS(978), 48, + ACTIONS(5686), 1, + sym_raw_string_begin, + STATE(2579), 1, + aux_sym__multiple_types_repeat1, + STATE(2641), 1, + sym_comment, + ACTIONS(5680), 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_DOT2, + 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, @@ -308491,7 +294274,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOT2, + 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, @@ -308509,31 +294294,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, - [82634] = 4, - ACTIONS(3), 1, + [76032] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(2812), 1, + STATE(2642), 1, sym_comment, - ACTIONS(976), 4, + ACTIONS(946), 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_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, + aux_sym__unquoted_in_list_token1, + ACTIONS(948), 34, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(974), 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_QMARK2, + 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, @@ -308543,14 +294341,84 @@ 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_DOT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [76095] = 29, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(3910), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3912), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3914), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3916), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5211), 1, + sym_val_date, + ACTIONS(5593), 1, + anon_sym_DQUOTE, + ACTIONS(5597), 1, + sym_raw_string_begin, + ACTIONS(5698), 1, + anon_sym_LPAREN, + ACTIONS(5700), 1, + anon_sym_DOLLAR, + ACTIONS(5702), 1, + anon_sym_DOT_DOT, + ACTIONS(5708), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5710), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5712), 1, + aux_sym_unquoted_token1, + STATE(2492), 1, + sym__inter_single_quotes, + STATE(2493), 1, + sym__inter_double_quotes, + STATE(2643), 1, + sym_comment, + STATE(5510), 1, + sym__val_number_decimal, + STATE(7015), 1, + sym_val_bool, + STATE(7104), 1, + sym__val_range, + STATE(7108), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3908), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5595), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5704), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2511), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5706), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(1584), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2675), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -308559,6 +294427,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(2677), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308567,146 +294437,242 @@ static const 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, - [82697] = 4, + [76208] = 30, + ACTIONS(237), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(245), 1, anon_sym_POUND, - STATE(2813), 1, + ACTIONS(1248), 1, + anon_sym_LPAREN, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, + sym_raw_string_begin, + ACTIONS(3442), 1, + anon_sym_DOLLAR, + ACTIONS(3468), 1, + aux_sym_unquoted_token1, + ACTIONS(3910), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3912), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3914), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3916), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4039), 1, + anon_sym_DOT_DOT, + ACTIONS(5211), 1, + sym_val_date, + STATE(1842), 1, + sym__inter_single_quotes, + STATE(1843), 1, + sym__inter_double_quotes, + STATE(2644), 1, sym_comment, - ACTIONS(1492), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - anon_sym_DOT2, - ACTIONS(1494), 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_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - sym_duration_unit, - [82760] = 4, + STATE(5535), 1, + sym__val_number_decimal, + STATE(6325), 1, + sym_unquoted, + STATE(7015), 1, + sym_val_bool, + STATE(7094), 1, + sym__val_range, + STATE(7123), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(1264), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3908), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4041), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5239), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6319), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2675), 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(2677), 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, + [76323] = 29, ACTIONS(245), 1, anon_sym_POUND, - STATE(2814), 1, + ACTIONS(3910), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3912), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3914), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3916), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5211), 1, + sym_val_date, + ACTIONS(5593), 1, + anon_sym_DQUOTE, + ACTIONS(5597), 1, + sym_raw_string_begin, + ACTIONS(5698), 1, + anon_sym_LPAREN, + ACTIONS(5700), 1, + anon_sym_DOLLAR, + ACTIONS(5702), 1, + anon_sym_DOT_DOT, + ACTIONS(5708), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5710), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5712), 1, + aux_sym_unquoted_token1, + STATE(2492), 1, + sym__inter_single_quotes, + STATE(2493), 1, + sym__inter_double_quotes, + STATE(2645), 1, sym_comment, - ACTIONS(1715), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - anon_sym_DOT2, - ACTIONS(1717), 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_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - sym_duration_unit, - [82823] = 9, + STATE(5510), 1, + sym__val_number_decimal, + STATE(7015), 1, + sym_val_bool, + STATE(7104), 1, + sym__val_range, + STATE(7108), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3908), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5595), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5704), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2511), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5706), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(1595), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2675), 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(2677), 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, + [76436] = 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(245), 1, anon_sym_POUND, - ACTIONS(1841), 1, - sym__table_head_separator, - ACTIONS(5903), 1, - anon_sym_DOT2, - STATE(2815), 1, - sym_comment, - STATE(6301), 1, - aux_sym_cell_path_repeat1, - STATE(7513), 1, - sym_path, - STATE(7637), 1, - sym_cell_path, - ACTIONS(5724), 14, - anon_sym_DOT_DOT, + ACTIONS(3470), 1, + anon_sym_DOLLAR, + ACTIONS(3494), 1, + aux_sym_unquoted_token1, + ACTIONS(3910), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(3912), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3914), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3916), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4358), 1, + anon_sym_DOT_DOT, + ACTIONS(5211), 1, + sym_val_date, + ACTIONS(5822), 1, + anon_sym_LPAREN, + STATE(2351), 1, + sym__inter_single_quotes, + STATE(2352), 1, + sym__inter_double_quotes, + STATE(2646), 1, + sym_comment, + STATE(5614), 1, + sym__val_number_decimal, + STATE(6663), 1, + sym_unquoted, + STATE(7015), 1, + sym_val_bool, + STATE(7269), 1, + sym__val_range, + STATE(7277), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3908), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4360), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1532), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5209), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6605), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2675), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -308715,33 +294681,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_in_list_token1, - ACTIONS(5731), 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, + ACTIONS(2677), 9, 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, @@ -308750,23 +294691,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, - [82896] = 8, + [76551] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5841), 1, + ACTIONS(5785), 1, anon_sym_DOT2, - STATE(2816), 1, + STATE(2647), 1, sym_comment, - STATE(2874), 1, + STATE(2742), 1, aux_sym_cell_path_repeat1, - STATE(3019), 1, + STATE(2817), 1, sym_path, - STATE(3147), 1, + STATE(2915), 1, sym_cell_path, - ACTIONS(927), 2, + ACTIONS(1831), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(925), 46, + ACTIONS(1829), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -308813,12 +294754,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, - [82967] = 4, + [76622] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2817), 1, + STATE(2648), 1, sym_comment, - ACTIONS(1484), 8, + ACTIONS(1499), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -308827,7 +294768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, anon_sym_DOT2, - ACTIONS(1486), 44, + ACTIONS(1501), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -308872,38 +294813,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [83030] = 12, - ACTIONS(245), 1, + [76685] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - ACTIONS(4499), 1, + ACTIONS(5785), 1, + anon_sym_DOT2, + STATE(2649), 1, + sym_comment, + STATE(2742), 1, + aux_sym_cell_path_repeat1, + STATE(2817), 1, + sym_path, + STATE(2912), 1, + sym_cell_path, + 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_DOLLAR, - ACTIONS(4501), 1, - anon_sym_LPAREN2, - ACTIONS(5899), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5901), 1, - aux_sym__immediate_decimal_token5, - STATE(2818), 1, + 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, + [76756] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2650), 1, sym_comment, - STATE(3302), 1, - sym__immediate_decimal, - ACTIONS(5897), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2503), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1466), 6, + ACTIONS(1491), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1468), 36, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + sym_filesize_unit, + anon_sym_DOT2, + ACTIONS(1493), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -308915,7 +294902,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_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -308939,33 +294932,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [83109] = 6, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [76819] = 9, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5905), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5907), 1, - aux_sym__immediate_decimal_token2, - STATE(2819), 1, + ACTIONS(1847), 1, + sym__table_head_separator, + ACTIONS(5824), 1, + anon_sym_DOT2, + STATE(2651), 1, sym_comment, - ACTIONS(1650), 3, + STATE(6034), 1, + aux_sym_cell_path_repeat1, + STATE(6948), 1, + sym_path, + STATE(7310), 1, + sym_cell_path, + ACTIONS(5719), 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(5726), 33, sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1648), 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, @@ -308975,21 +294987,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, @@ -308998,22 +294999,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, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [83176] = 4, + [76892] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(2820), 1, + ACTIONS(5660), 1, + anon_sym_DOT2, + STATE(2652), 1, sym_comment, - ACTIONS(954), 7, + STATE(2656), 1, + aux_sym_cell_path_repeat1, + STATE(2746), 1, + sym_path, + ACTIONS(938), 6, aux_sym_cmd_identifier_token1, aux_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_DOT2, - ACTIONS(956), 44, + ACTIONS(940), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -309050,142 +295054,19 @@ 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, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [83238] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2821), 1, - sym_comment, - ACTIONS(1648), 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(1650), 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, - [83300] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5909), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5911), 1, - aux_sym__immediate_decimal_token2, - STATE(2822), 1, - sym_comment, - ACTIONS(1484), 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(1486), 41, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [83366] = 6, + [76961] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5913), 1, - anon_sym_DOT, - ACTIONS(5915), 1, - aux_sym__immediate_decimal_token2, - STATE(2823), 1, + STATE(2653), 1, sym_comment, - ACTIONS(1492), 8, + ACTIONS(1579), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -309193,9 +295074,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1494), 41, - ts_builtin_sym_end, + anon_sym_DOT2, + ACTIONS(1581), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -309207,8 +295087,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_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -309223,7 +295108,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, @@ -309236,17 +295120,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [83432] = 4, + [77024] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2824), 1, + ACTIONS(5785), 1, + anon_sym_DOT2, + STATE(2654), 1, sym_comment, - ACTIONS(1668), 4, + STATE(2742), 1, + aux_sym_cell_path_repeat1, + STATE(2817), 1, + sym_path, + STATE(2907), 1, + sym_cell_path, + ACTIONS(1881), 2, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1666), 47, + ACTIONS(1879), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -309254,7 +295144,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, @@ -309294,21 +295183,84 @@ 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, - [83494] = 7, - ACTIONS(3), 1, + [77095] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5919), 1, - anon_sym_RBRACK, - ACTIONS(5921), 1, - sym__entry_separator, - ACTIONS(5923), 1, - sym_raw_string_begin, - STATE(2825), 1, + STATE(2655), 1, sym_comment, - STATE(2853), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5917), 47, + ACTIONS(1678), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + anon_sym_DOT2, + ACTIONS(1680), 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_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + sym_duration_unit, + [77158] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5826), 1, + anon_sym_DOT2, + STATE(2746), 1, + sym_path, + STATE(2656), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(931), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(933), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -309316,13 +295268,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, @@ -309341,13 +295290,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, @@ -309355,31 +295303,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [83562] = 4, - ACTIONS(3), 1, + [77225] = 5, + ACTIONS(245), 1, anon_sym_POUND, - STATE(2826), 1, + ACTIONS(5778), 1, + aux_sym__immediate_decimal_token2, + STATE(2657), 1, sym_comment, - ACTIONS(1650), 4, + ACTIONS(1701), 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(1703), 33, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1648), 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_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, @@ -309389,21 +295351,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, @@ -309412,21 +295363,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_in_list_token1, - [83624] = 7, + [77290] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5925), 1, - anon_sym_DOT_DOT2, - STATE(2827), 1, + ACTIONS(5829), 1, + aux_sym__immediate_decimal_token2, + STATE(2658), 1, sym_comment, - ACTIONS(5927), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1811), 16, + ACTIONS(1760), 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, @@ -309442,7 +295388,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(1819), 31, + aux_sym__unquoted_in_list_token2, + ACTIONS(1762), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -309450,6 +295397,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, @@ -309474,17 +295423,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, - [83692] = 4, + [77355] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2828), 1, + STATE(2659), 1, sym_comment, - ACTIONS(1721), 4, + ACTIONS(972), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1719), 47, + ACTIONS(970), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -309515,6 +295464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -309532,31 +295482,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, - [83754] = 4, - ACTIONS(3), 1, + [77418] = 5, + ACTIONS(245), 1, anon_sym_POUND, - STATE(2829), 1, + ACTIONS(5831), 1, + anon_sym_QMARK2, + STATE(2660), 1, sym_comment, - ACTIONS(1792), 4, + ACTIONS(964), 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_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, + aux_sym__unquoted_in_list_token1, + ACTIONS(966), 33, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1790), 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_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, @@ -309566,21 +295530,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, @@ -309589,18 +295542,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, - aux_sym__unquoted_in_list_token1, - [83816] = 4, + [77483] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2830), 1, + ACTIONS(5785), 1, + anon_sym_DOT2, + STATE(2661), 1, sym_comment, - ACTIONS(2003), 4, + STATE(2742), 1, + aux_sym_cell_path_repeat1, + STATE(2817), 1, + sym_path, + STATE(2941), 1, + sym_cell_path, + ACTIONS(927), 2, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2001), 47, + ACTIONS(925), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -309608,7 +295566,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, @@ -309648,12 +295605,81 @@ 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, - [83878] = 4, + [77554] = 12, ACTIONS(245), 1, anon_sym_POUND, - STATE(2831), 1, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(4523), 1, + anon_sym_DOLLAR, + ACTIONS(4525), 1, + anon_sym_LPAREN2, + ACTIONS(5818), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5820), 1, + aux_sym__immediate_decimal_token5, + STATE(2662), 1, + sym_comment, + STATE(3134), 1, + sym__immediate_decimal, + ACTIONS(5816), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2355), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1431), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1445), 36, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [77633] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5833), 1, + anon_sym_QMARK2, + STATE(2663), 1, sym_comment, - ACTIONS(1719), 18, + ACTIONS(958), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -309662,6 +295688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -309671,8 +295698,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(1721), 33, + ACTIONS(960), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -309706,20 +295732,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, - [83940] = 4, - ACTIONS(245), 1, + [77698] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2832), 1, + STATE(2664), 1, sym_comment, - ACTIONS(1790), 18, + ACTIONS(976), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(974), 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_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -309728,21 +295782,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(1792), 33, + [77761] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5785), 1, + anon_sym_DOT2, + STATE(2665), 1, + sym_comment, + STATE(2742), 1, + aux_sym_cell_path_repeat1, + STATE(2817), 1, + sym_path, + STATE(2909), 1, + sym_cell_path, + ACTIONS(1851), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1849), 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, @@ -309752,10 +295830,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, @@ -309764,33 +295853,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, - [84002] = 4, - ACTIONS(245), 1, + aux_sym__unquoted_in_list_token1, + [77832] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2833), 1, + STATE(2666), 1, sym_comment, - ACTIONS(1280), 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(1278), 36, + ACTIONS(2431), 2, sym_raw_string_begin, - sym__newline, + sym__entry_separator, + ACTIONS(2429), 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, @@ -309798,6 +295876,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -309807,6 +295886,9 @@ 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, @@ -309814,6 +295896,14 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -309822,47 +295912,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, - [84064] = 8, - ACTIONS(245), 1, + aux_sym__unquoted_in_list_token1, + [77895] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5929), 1, + ACTIONS(5785), 1, anon_sym_DOT2, - STATE(2834), 1, + STATE(2667), 1, sym_comment, - STATE(2936), 1, + STATE(2742), 1, aux_sym_cell_path_repeat1, - STATE(3131), 1, + STATE(2817), 1, sym_path, - STATE(3151), 1, + STATE(2902), 1, sym_cell_path, - ACTIONS(1913), 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(1915), 33, + ACTIONS(1895), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1893), 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, @@ -309872,10 +295952,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, @@ -309884,47 +295975,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, - [84134] = 8, - ACTIONS(245), 1, + aux_sym__unquoted_in_list_token1, + [77966] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5929), 1, + ACTIONS(5785), 1, anon_sym_DOT2, - STATE(2835), 1, + STATE(2668), 1, sym_comment, - STATE(2936), 1, + STATE(2742), 1, aux_sym_cell_path_repeat1, - STATE(3131), 1, + STATE(2817), 1, sym_path, - STATE(3176), 1, + STATE(2911), 1, sym_cell_path, - ACTIONS(1855), 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(1857), 33, + ACTIONS(1865), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1863), 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, @@ -309934,10 +296015,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, @@ -309946,17 +296038,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, - [84204] = 4, + aux_sym__unquoted_in_list_token1, + [78037] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2836), 1, + ACTIONS(5835), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5837), 1, + aux_sym__immediate_decimal_token2, + STATE(2669), 1, sym_comment, - ACTIONS(1965), 4, + ACTIONS(1688), 3, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1963), 47, + ACTIONS(1686), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -309964,7 +296060,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, @@ -310004,257 +296099,146 @@ 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, - [84266] = 5, + aux_sym__unquoted_in_list_token2, + [78104] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5931), 1, - anon_sym_QMARK2, - STATE(2837), 1, - sym_comment, - ACTIONS(942), 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_DOT2, - ACTIONS(944), 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, - [84330] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5921), 1, - sym__entry_separator, - ACTIONS(5923), 1, - sym_raw_string_begin, - ACTIONS(5933), 1, - anon_sym_RBRACK, - STATE(2838), 1, - sym_comment, - STATE(2853), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5917), 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, - [84398] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5921), 1, - sym__entry_separator, - ACTIONS(5923), 1, - sym_raw_string_begin, - ACTIONS(5935), 1, - anon_sym_RBRACK, - STATE(2839), 1, + ACTIONS(5839), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5841), 1, + aux_sym__immediate_decimal_token2, + STATE(2670), 1, sym_comment, - STATE(2853), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5917), 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, - [84466] = 5, + ACTIONS(1491), 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(1493), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [78171] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5937), 1, - anon_sym_QMARK2, - STATE(2840), 1, + ACTIONS(5843), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5845), 1, + aux_sym__immediate_decimal_token2, + STATE(2671), 1, sym_comment, - ACTIONS(948), 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_DOT2, - ACTIONS(950), 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, + ACTIONS(1686), 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(1688), 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, - [84530] = 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, + [78238] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2841), 1, + ACTIONS(5785), 1, + anon_sym_DOT2, + STATE(2672), 1, sym_comment, - ACTIONS(1969), 4, + STATE(2742), 1, + aux_sym_cell_path_repeat1, + STATE(2817), 1, + sym_path, + STATE(2904), 1, + sym_cell_path, + ACTIONS(1825), 2, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1967), 47, + ACTIONS(1823), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -310262,7 +296246,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, @@ -310302,81 +296285,80 @@ 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, - [84592] = 7, - ACTIONS(3), 1, + [78309] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5921), 1, - sym__entry_separator, - ACTIONS(5923), 1, - sym_raw_string_begin, - ACTIONS(5939), 1, - anon_sym_RBRACK, - STATE(2842), 1, + ACTIONS(5847), 1, + anon_sym_DOT, + ACTIONS(5849), 1, + aux_sym__immediate_decimal_token2, + STATE(2673), 1, sym_comment, - STATE(2853), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5917), 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, - [84660] = 6, + ACTIONS(1499), 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(1501), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [78376] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5941), 1, - anon_sym_DOT_DOT2, - STATE(2843), 1, + ACTIONS(5696), 1, + aux_sym__immediate_decimal_token2, + STATE(2674), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(1703), 4, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5943), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2009), 46, + sym__entry_separator, + ACTIONS(1701), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -310384,6 +296366,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, @@ -310423,20 +296406,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, - [84726] = 6, + [78441] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5945), 1, - anon_sym_DOT_DOT2, - STATE(2844), 1, + ACTIONS(5851), 1, + aux_sym__immediate_decimal_token2, + STATE(2675), 1, sym_comment, - ACTIONS(2023), 2, + ACTIONS(1762), 4, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5947), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2017), 46, + sym__entry_separator, + ACTIONS(1760), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -310444,6 +296426,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, @@ -310483,20 +296466,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, - [84792] = 6, + [78506] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5949), 1, - anon_sym_DOT_DOT2, - STATE(2845), 1, + ACTIONS(5785), 1, + anon_sym_DOT2, + STATE(2676), 1, sym_comment, - ACTIONS(2031), 2, + STATE(2742), 1, + aux_sym_cell_path_repeat1, + STATE(2817), 1, + sym_path, + STATE(2906), 1, + sym_cell_path, + ACTIONS(1835), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5951), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2025), 46, + ACTIONS(1833), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -310543,21 +296529,82 @@ 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, - [84858] = 7, - ACTIONS(3), 1, + [78577] = 7, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5921), 1, - sym__entry_separator, - ACTIONS(5923), 1, + ACTIONS(1447), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5853), 1, + anon_sym_DOT_DOT2, + STATE(2677), 1, + sym_comment, + ACTIONS(5855), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1805), 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(1813), 31, sym_raw_string_begin, - ACTIONS(5953), 1, + anon_sym_LBRACK, anon_sym_RBRACK, - STATE(2846), 1, + 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, + [78645] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2678), 1, sym_comment, - STATE(2853), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5917), 47, + ACTIONS(950), 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_DOT2, + ACTIONS(952), 44, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -310565,13 +296612,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, @@ -310590,13 +296634,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, @@ -310604,20 +296648,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84926] = 7, + [78707] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5921), 1, + ACTIONS(5859), 1, + anon_sym_RBRACK, + ACTIONS(5861), 1, + anon_sym_DOT_DOT2, + ACTIONS(5865), 1, sym__entry_separator, - ACTIONS(5923), 1, + ACTIONS(5867), 1, sym_raw_string_begin, - ACTIONS(5955), 1, + STATE(2679), 1, + sym_comment, + ACTIONS(5863), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5857), 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, + 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, + [78777] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5871), 1, anon_sym_RBRACK, - STATE(2847), 1, + ACTIONS(5873), 1, + sym__entry_separator, + ACTIONS(5875), 1, + sym_raw_string_begin, + STATE(2680), 1, sym_comment, - STATE(2853), 1, + STATE(2701), 1, aux_sym__multiple_types_repeat1, - ACTIONS(5917), 47, + ACTIONS(5869), 47, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -310665,20 +296771,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84994] = 7, + [78845] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5921), 1, + ACTIONS(5873), 1, sym__entry_separator, - ACTIONS(5923), 1, + ACTIONS(5875), 1, sym_raw_string_begin, - ACTIONS(5957), 1, + ACTIONS(5877), 1, anon_sym_RBRACK, - STATE(2848), 1, + STATE(2681), 1, sym_comment, - STATE(2853), 1, + STATE(2701), 1, aux_sym__multiple_types_repeat1, - ACTIONS(5917), 47, + ACTIONS(5869), 47, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -310726,20 +296832,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85062] = 8, + [78913] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5929), 1, + ACTIONS(5879), 1, anon_sym_DOT2, - STATE(2849), 1, + STATE(2682), 1, sym_comment, - STATE(2936), 1, + STATE(2802), 1, aux_sym_cell_path_repeat1, - STATE(3131), 1, + STATE(2923), 1, sym_path, - STATE(3177), 1, + STATE(3013), 1, sym_cell_path, - ACTIONS(1883), 14, + ACTIONS(1823), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -310754,7 +296860,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(1885), 33, + ACTIONS(1825), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -310788,25 +296894,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, - [85132] = 6, - ACTIONS(245), 1, + [78983] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5963), 1, - anon_sym_DASH_DASH, - STATE(3038), 1, - sym_long_flag, - STATE(2850), 2, + ACTIONS(5873), 1, + sym__entry_separator, + ACTIONS(5875), 1, + sym_raw_string_begin, + ACTIONS(5881), 1, + anon_sym_RBRACK, + STATE(2683), 1, sym_comment, - aux_sym_decl_def_repeat1, - ACTIONS(5959), 6, + STATE(2701), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5869), 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(5961), 42, - sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -310814,10 +296916,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, @@ -310836,9 +296941,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, @@ -310848,139 +296955,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85198] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5929), 1, - anon_sym_DOT2, - STATE(2851), 1, - sym_comment, - STATE(2936), 1, - aux_sym_cell_path_repeat1, - STATE(3131), 1, - sym_path, - STATE(3178), 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_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, - [85268] = 5, + [79051] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5966), 1, - sym__newline, - STATE(2852), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1284), 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(1286), 33, - 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, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [85332] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2439), 1, - sym_raw_string_begin, - ACTIONS(5969), 1, - sym__entry_separator, - STATE(2853), 2, + STATE(2684), 1, sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2434), 48, + ACTIONS(942), 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_DOT2, + ACTIONS(944), 44, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -310988,13 +296977,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, @@ -311013,14 +296999,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_RBRACK, + 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, @@ -311028,22 +297013,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85396] = 6, + [79113] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5972), 1, + ACTIONS(994), 1, + sym__entry_separator, + ACTIONS(5861), 1, anon_sym_DOT_DOT2, - STATE(2854), 1, - sym_comment, - ACTIONS(2039), 2, + ACTIONS(5885), 1, + anon_sym_RBRACK, + ACTIONS(5888), 1, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5974), 2, + STATE(2685), 1, + sym_comment, + ACTIONS(5863), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2033), 46, + ACTIONS(5883), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -311088,104 +297075,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, - [85462] = 7, - ACTIONS(245), 1, + [79183] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1788), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5976), 1, - anon_sym_DOT_DOT2, - STATE(2855), 1, - sym_comment, - ACTIONS(5978), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1778), 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(1786), 31, + ACTIONS(5890), 1, + anon_sym_DOT2, + STATE(2817), 1, + sym_path, + ACTIONS(933), 2, sym_raw_string_begin, + sym__entry_separator, + STATE(2686), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(931), 46, 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, - [85530] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2856), 1, - sym_comment, - ACTIONS(970), 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_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, - aux_sym__unquoted_in_list_token1, - ACTIONS(972), 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_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -311195,155 +297111,13 @@ static const uint16_t ts_small_parse_table[] = { 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, - [85592] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5980), 1, - sym_long_flag_identifier, - ACTIONS(5982), 1, - anon_sym_EQ2, - STATE(2857), 1, - sym_comment, - ACTIONS(4873), 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(4875), 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, - [85658] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5929), 1, - anon_sym_DOT2, - STATE(2858), 1, - sym_comment, - STATE(2936), 1, - aux_sym_cell_path_repeat1, - STATE(3131), 1, - sym_path, - STATE(3180), 1, - sym_cell_path, - ACTIONS(1923), 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(1925), 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, - [85728] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2859), 1, - sym_comment, - ACTIONS(978), 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_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -311352,33 +297126,6 @@ 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(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_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, @@ -311387,20 +297134,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, - [85790] = 8, + aux_sym__unquoted_in_list_token1, + [79249] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5929), 1, + ACTIONS(5879), 1, anon_sym_DOT2, - STATE(2860), 1, + STATE(2687), 1, sym_comment, - STATE(2936), 1, + STATE(2802), 1, aux_sym_cell_path_repeat1, - STATE(3131), 1, + STATE(2923), 1, sym_path, - STATE(3175), 1, + STATE(3042), 1, sym_cell_path, - ACTIONS(1843), 14, + ACTIONS(1833), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -311415,65 +297163,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(1845), 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, - [85860] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2861), 1, - sym_comment, - ACTIONS(984), 4, + ACTIONS(1835), 33, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(982), 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, @@ -311483,21 +297185,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, @@ -311506,17 +297197,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, - [85922] = 4, + [79319] = 8, ACTIONS(245), 1, anon_sym_POUND, - STATE(2862), 1, + ACTIONS(5879), 1, + anon_sym_DOT2, + STATE(2688), 1, sym_comment, - ACTIONS(1666), 18, + STATE(2802), 1, + aux_sym_cell_path_repeat1, + STATE(2923), 1, + sym_path, + STATE(2991), 1, + sym_cell_path, + ACTIONS(1863), 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, @@ -311530,136 +297225,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, - aux_sym__unquoted_in_list_token2, - ACTIONS(1668), 33, + ACTIONS(1865), 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, - [85984] = 11, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - ACTIONS(4715), 1, - aux_sym_unquoted_token2, - ACTIONS(5984), 1, - anon_sym_DOT_DOT2, - ACTIONS(5988), 1, - sym_filesize_unit, - ACTIONS(5990), 1, - sym_duration_unit, - STATE(2863), 1, - sym_comment, - STATE(7446), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5986), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1579), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1591), 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_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [86060] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5992), 1, - sym__newline, - STATE(2864), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1284), 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(1286), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -311679,8 +297251,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, @@ -311689,31 +297259,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, - [86124] = 4, - ACTIONS(3), 1, + [79389] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(2865), 1, + STATE(2689), 1, sym_comment, - ACTIONS(1713), 4, + ACTIONS(1701), 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(1703), 33, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1711), 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_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, @@ -311723,21 +297305,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, @@ -311746,22 +297317,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, - aux_sym__unquoted_in_list_token1, - [86186] = 8, + [79451] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5929), 1, + STATE(2690), 1, + sym_comment, + ACTIONS(954), 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_DOT2, - STATE(2866), 1, + ACTIONS(956), 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_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, + [79513] = 7, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1792), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5893), 1, + anon_sym_DOT_DOT2, + STATE(2691), 1, sym_comment, - STATE(2936), 1, - aux_sym_cell_path_repeat1, - STATE(3131), 1, - sym_path, - STATE(3158), 1, - sym_cell_path, - ACTIONS(1829), 14, + ACTIONS(5895), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1782), 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, @@ -311775,7 +297404,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(1831), 33, + ACTIONS(1790), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -311783,8 +297412,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, @@ -311809,31 +297436,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86256] = 5, - ACTIONS(3), 1, + [79581] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5882), 1, - aux_sym__immediate_decimal_token2, - STATE(2867), 1, + ACTIONS(5897), 1, + sym_long_flag_identifier, + ACTIONS(5899), 1, + anon_sym_EQ2, + STATE(2692), 1, sym_comment, - ACTIONS(1668), 3, + ACTIONS(4848), 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(4850), 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, + [79647] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2693), 1, + sym_comment, + ACTIONS(1686), 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(1688), 33, sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1666), 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, @@ -311843,21 +297542,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, @@ -311866,22 +297554,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, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [86320] = 7, + [79709] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5901), 1, + anon_sym_QMARK2, + STATE(2694), 1, + sym_comment, + ACTIONS(964), 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_DOT2, + ACTIONS(966), 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, + [79773] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5903), 1, + anon_sym_QMARK2, + STATE(2695), 1, + sym_comment, + ACTIONS(958), 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_DOT2, + ACTIONS(960), 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, + [79837] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5921), 1, + ACTIONS(5873), 1, sym__entry_separator, - ACTIONS(5923), 1, + ACTIONS(5875), 1, sym_raw_string_begin, - ACTIONS(5995), 1, + ACTIONS(5905), 1, anon_sym_RBRACK, - STATE(2853), 1, - aux_sym__multiple_types_repeat1, - STATE(2868), 1, + STATE(2696), 1, sym_comment, - ACTIONS(5917), 47, + STATE(2701), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5869), 47, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -311929,21 +297733,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [86388] = 8, + [79905] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5929), 1, - anon_sym_DOT2, - STATE(2869), 1, + STATE(2697), 1, sym_comment, - STATE(2936), 1, - aux_sym_cell_path_repeat1, - STATE(3131), 1, - sym_path, - STATE(3225), 1, - sym_cell_path, - ACTIONS(5836), 14, + ACTIONS(1760), 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, @@ -311957,7 +297756,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(5843), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1762), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -311965,8 +297765,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, @@ -311991,25 +297791,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, - [86458] = 8, + [79967] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5929), 1, - anon_sym_DOT2, - STATE(2870), 1, + STATE(2698), 1, sym_comment, - STATE(2936), 1, - aux_sym_cell_path_repeat1, - STATE(3131), 1, - sym_path, - STATE(3220), 1, - sym_cell_path, - ACTIONS(925), 14, + ACTIONS(970), 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_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -312019,7 +297815,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(927), 33, + ACTIONS(972), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -312027,8 +297823,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, @@ -312053,78 +297849,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, - [86528] = 6, + [80029] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5807), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5997), 1, - anon_sym_DOT, - STATE(2871), 1, + STATE(2699), 1, sym_comment, - ACTIONS(1492), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1797), 18, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym_filesize_unit, - ACTIONS(1494), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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_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(1799), 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_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - sym_duration_unit, - [86594] = 5, + 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, + [80091] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5999), 1, - aux_sym__immediate_decimal_token2, - STATE(2872), 1, + STATE(2700), 1, sym_comment, - ACTIONS(1721), 3, + ACTIONS(1995), 4, sym_raw_string_begin, - anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1719), 47, + ACTIONS(1993), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -312132,6 +297925,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, @@ -312171,94 +297965,106 @@ 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, - [86658] = 5, - ACTIONS(245), 1, + [80153] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5876), 1, - aux_sym__immediate_decimal_token2, - STATE(2873), 1, + ACTIONS(2403), 1, + sym_raw_string_begin, + ACTIONS(5907), 1, + sym__entry_separator, + STATE(2701), 2, sym_comment, - ACTIONS(1492), 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(1494), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [86722] = 7, - ACTIONS(3), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(2398), 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, + [80217] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5841), 1, + ACTIONS(5879), 1, anon_sym_DOT2, - STATE(2874), 1, + STATE(2702), 1, sym_comment, - STATE(2875), 1, + STATE(2802), 1, aux_sym_cell_path_repeat1, - STATE(3019), 1, + STATE(2923), 1, sym_path, - ACTIONS(933), 2, + STATE(3040), 1, + sym_cell_path, + ACTIONS(5912), 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(5910), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(931), 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, @@ -312268,21 +298074,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, @@ -312291,21 +298086,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, - [86790] = 6, + [80287] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6001), 1, - anon_sym_DOT2, - STATE(3019), 1, - sym_path, - ACTIONS(937), 2, + STATE(2703), 1, + sym_comment, + ACTIONS(1947), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - STATE(2875), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(935), 46, + ACTIONS(1945), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -312313,6 +298104,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, @@ -312352,18 +298144,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, - [86856] = 5, + [80349] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5886), 1, - aux_sym__immediate_decimal_token2, - STATE(2876), 1, + ACTIONS(5879), 1, + anon_sym_DOT2, + STATE(2704), 1, sym_comment, - ACTIONS(1666), 17, + STATE(2802), 1, + aux_sym_cell_path_repeat1, + STATE(2923), 1, + sym_path, + STATE(3024), 1, + sym_cell_path, + ACTIONS(5780), 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, @@ -312377,7 +298172,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(1668), 33, + ACTIONS(5787), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -312385,8 +298180,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, @@ -312411,20 +298206,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, - [86920] = 8, + [80419] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5929), 1, + ACTIONS(5879), 1, anon_sym_DOT2, - STATE(2877), 1, + STATE(2705), 1, sym_comment, - STATE(2936), 1, + STATE(2802), 1, aux_sym_cell_path_repeat1, - STATE(3131), 1, + STATE(2923), 1, sym_path, - STATE(3181), 1, + STATE(3005), 1, sym_cell_path, - ACTIONS(1931), 14, + ACTIONS(1907), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -312439,7 +298234,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(1933), 33, + ACTIONS(1909), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -312473,20 +298268,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, - [86990] = 8, + [80489] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5929), 1, - anon_sym_DOT2, - STATE(2878), 1, + STATE(2706), 1, sym_comment, - STATE(2936), 1, - aux_sym_cell_path_repeat1, - STATE(3131), 1, - sym_path, - STATE(3182), 1, - sym_cell_path, - ACTIONS(1935), 14, + ACTIONS(1287), 15, + anon_sym_DOLLAR, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -312501,19 +298289,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(1937), 33, + ACTIONS(1285), 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, @@ -312527,6 +298315,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, @@ -312535,137 +298326,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, - [87060] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6004), 1, - aux_sym__immediate_decimal_token2, - STATE(2879), 1, - sym_comment, - ACTIONS(1538), 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(1540), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [87124] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2880), 1, - sym_comment, - ACTIONS(958), 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_DOT2, - ACTIONS(960), 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_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, - [87186] = 8, + [80551] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5929), 1, + ACTIONS(5879), 1, anon_sym_DOT2, - STATE(2881), 1, + STATE(2707), 1, sym_comment, - STATE(2936), 1, + STATE(2802), 1, aux_sym_cell_path_repeat1, - STATE(3131), 1, + STATE(2923), 1, sym_path, - STATE(3160), 1, + STATE(2990), 1, sym_cell_path, - ACTIONS(6008), 14, + ACTIONS(1893), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -312680,7 +298354,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(6006), 33, + ACTIONS(1895), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -312714,24 +298388,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, - [87256] = 8, + [80621] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6012), 1, - anon_sym_RBRACK, - ACTIONS(6014), 1, + ACTIONS(5914), 1, anon_sym_DOT_DOT2, - ACTIONS(6018), 1, - sym__entry_separator, - ACTIONS(6020), 1, - sym_raw_string_begin, - STATE(2882), 1, + STATE(2708), 1, sym_comment, - ACTIONS(6016), 2, + ACTIONS(1979), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5916), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(6010), 45, + ACTIONS(1973), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -312776,203 +298448,144 @@ 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, - [87326] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5929), 1, - anon_sym_DOT2, - STATE(2883), 1, - sym_comment, - STATE(2936), 1, - aux_sym_cell_path_repeat1, - STATE(3131), 1, - sym_path, - STATE(3174), 1, - sym_cell_path, - ACTIONS(1945), 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(1947), 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, - [87396] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2884), 1, - sym_comment, - ACTIONS(962), 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_DOT2, - ACTIONS(964), 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_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, - [87458] = 4, + [80687] = 11, ACTIONS(245), 1, anon_sym_POUND, - STATE(2885), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + ACTIONS(4672), 1, + aux_sym_unquoted_token2, + ACTIONS(5918), 1, + anon_sym_DOT_DOT2, + ACTIONS(5922), 1, + sym_filesize_unit, + ACTIONS(5924), 1, + sym_duration_unit, + STATE(2709), 1, sym_comment, - ACTIONS(966), 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_DOT2, - ACTIONS(968), 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_QMARK2, + STATE(6814), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5920), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1616), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1628), 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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [80763] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2710), 1, + sym_comment, + ACTIONS(974), 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_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, + aux_sym__unquoted_in_list_token1, + ACTIONS(976), 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, - [87520] = 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, + [80825] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5929), 1, - anon_sym_DOT2, - STATE(2886), 1, + STATE(2711), 1, sym_comment, - STATE(2936), 1, - aux_sym_cell_path_repeat1, - STATE(3131), 1, - sym_path, - STATE(3163), 1, - sym_cell_path, - ACTIONS(1835), 14, + ACTIONS(978), 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_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -312982,7 +298595,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(1837), 33, + ACTIONS(980), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -312990,8 +298603,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, @@ -313016,20 +298629,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, - [87590] = 8, + [80887] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5929), 1, + ACTIONS(5879), 1, anon_sym_DOT2, - STATE(2887), 1, + STATE(2712), 1, sym_comment, - STATE(2936), 1, + STATE(2802), 1, aux_sym_cell_path_repeat1, - STATE(3131), 1, + STATE(2923), 1, sym_path, - STATE(3164), 1, + STATE(3023), 1, sym_cell_path, - ACTIONS(1847), 14, + ACTIONS(1871), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -313044,7 +298657,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(1849), 33, + ACTIONS(1873), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -313078,20 +298691,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, - [87660] = 8, + [80957] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5929), 1, - anon_sym_DOT2, - STATE(2888), 1, + ACTIONS(5926), 1, + sym__newline, + STATE(2713), 2, sym_comment, - STATE(2936), 1, - aux_sym_cell_path_repeat1, - STATE(3131), 1, - sym_path, - STATE(3166), 1, - sym_cell_path, - ACTIONS(1851), 14, + aux_sym_shebang_repeat1, + ACTIONS(1272), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -313105,15 +298715,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_in_list_token1, - ACTIONS(1853), 33, + aux_sym_unquoted_token1, + ACTIONS(1274), 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, @@ -313132,6 +298740,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, @@ -313140,20 +298750,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, - [87730] = 8, + [81021] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5929), 1, + ACTIONS(5879), 1, anon_sym_DOT2, - STATE(2889), 1, + STATE(2714), 1, sym_comment, - STATE(2936), 1, + STATE(2802), 1, aux_sym_cell_path_repeat1, - STATE(3131), 1, + STATE(2923), 1, sym_path, - STATE(3167), 1, + STATE(2996), 1, sym_cell_path, - ACTIONS(1859), 14, + ACTIONS(1879), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -313168,7 +298778,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(1861), 33, + ACTIONS(1881), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -313202,20 +298812,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, - [87800] = 8, + [81091] = 6, ACTIONS(245), 1, anon_sym_POUND, + ACTIONS(5745), 1, + aux_sym__immediate_decimal_token2, ACTIONS(5929), 1, + anon_sym_DOT, + STATE(2715), 1, + sym_comment, + ACTIONS(1499), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + ACTIONS(1501), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + sym_duration_unit, + [81157] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5879), 1, anon_sym_DOT2, - STATE(2890), 1, + STATE(2716), 1, sym_comment, - STATE(2936), 1, + STATE(2802), 1, aux_sym_cell_path_repeat1, - STATE(3131), 1, + STATE(2923), 1, sym_path, - STATE(3168), 1, + STATE(3027), 1, sym_cell_path, - ACTIONS(1863), 14, + ACTIONS(1849), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -313230,7 +298900,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(1865), 33, + ACTIONS(1851), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -313264,24 +298934,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [87870] = 8, + [81227] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(994), 1, + ACTIONS(5873), 1, sym__entry_separator, - ACTIONS(6014), 1, - anon_sym_DOT_DOT2, - ACTIONS(6024), 1, + ACTIONS(5875), 1, + sym_raw_string_begin, + ACTIONS(5931), 1, anon_sym_RBRACK, - ACTIONS(6027), 1, + STATE(2701), 1, + aux_sym__multiple_types_repeat1, + STATE(2717), 1, + sym_comment, + ACTIONS(5869), 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, + [81295] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5873), 1, + sym__entry_separator, + ACTIONS(5875), 1, sym_raw_string_begin, - STATE(2891), 1, + ACTIONS(5933), 1, + anon_sym_RBRACK, + STATE(2701), 1, + aux_sym__multiple_types_repeat1, + STATE(2718), 1, sym_comment, - ACTIONS(6016), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(6022), 45, + ACTIONS(5869), 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, + [81363] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5873), 1, + sym__entry_separator, + ACTIONS(5875), 1, + sym_raw_string_begin, + ACTIONS(5935), 1, + anon_sym_RBRACK, + STATE(2701), 1, + aux_sym__multiple_types_repeat1, + STATE(2719), 1, + sym_comment, + ACTIONS(5869), 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, + [81431] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5791), 1, + aux_sym__immediate_decimal_token2, + STATE(2720), 1, + sym_comment, + ACTIONS(1703), 3, + sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1701), 47, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -313326,47 +299175,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, - [87940] = 8, - ACTIONS(245), 1, + aux_sym__unquoted_in_list_token2, + [81495] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5929), 1, - anon_sym_DOT2, - STATE(2892), 1, + STATE(2721), 1, sym_comment, - STATE(2936), 1, - aux_sym_cell_path_repeat1, - STATE(3131), 1, - sym_path, - STATE(3170), 1, - sym_cell_path, - ACTIONS(1875), 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(1877), 33, + ACTIONS(1676), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1674), 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, @@ -313376,10 +299210,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, @@ -313388,44 +299233,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, - [88010] = 5, - ACTIONS(245), 1, + aux_sym__unquoted_in_list_token1, + [81557] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6029), 1, + ACTIONS(5937), 1, aux_sym__immediate_decimal_token2, - STATE(2893), 1, + STATE(2722), 1, sym_comment, - ACTIONS(1719), 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(1721), 33, + ACTIONS(1762), 3, sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1760), 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, @@ -313435,10 +299268,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, @@ -313447,21 +299291,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, - [88074] = 8, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [81621] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5929), 1, - anon_sym_DOT2, - STATE(2894), 1, + ACTIONS(5849), 1, + aux_sym__immediate_decimal_token2, + STATE(2723), 1, sym_comment, - STATE(2936), 1, - aux_sym_cell_path_repeat1, - STATE(3131), 1, - sym_path, - STATE(3171), 1, - sym_cell_path, - ACTIONS(1879), 14, + ACTIONS(1499), 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(1501), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [81685] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5814), 1, + aux_sym__immediate_decimal_token2, + STATE(2724), 1, + sym_comment, + ACTIONS(1701), 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, @@ -313475,7 +299377,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(1881), 33, + ACTIONS(1703), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -313483,8 +299385,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, @@ -313509,20 +299411,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, - [88144] = 8, + [81749] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5929), 1, + ACTIONS(5943), 1, + anon_sym_DASH_DASH, + STATE(2824), 1, + sym_long_flag, + STATE(2725), 2, + sym_comment, + aux_sym_decl_def_repeat1, + ACTIONS(5939), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5941), 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, + 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, + [81815] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5879), 1, anon_sym_DOT2, - STATE(2895), 1, + STATE(2726), 1, sym_comment, - STATE(2936), 1, + STATE(2802), 1, aux_sym_cell_path_repeat1, - STATE(3131), 1, + STATE(2923), 1, sym_path, - STATE(3172), 1, + STATE(2985), 1, sym_cell_path, - ACTIONS(1895), 14, + ACTIONS(925), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -313537,7 +299499,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(1897), 33, + ACTIONS(927), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -313571,43 +299533,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, - [88214] = 4, - ACTIONS(245), 1, + [81885] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2896), 1, - sym_comment, - ACTIONS(974), 18, - anon_sym_DOT_DOT, + ACTIONS(5946), 1, 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_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, - aux_sym__unquoted_in_list_token1, - ACTIONS(976), 33, + STATE(2727), 1, + sym_comment, + ACTIONS(1955), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5948), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1949), 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, @@ -313617,32 +299569,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, - [88276] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2897), 1, - sym_comment, - ACTIONS(1711), 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, @@ -313651,33 +299584,6 @@ 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(1713), 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, @@ -313686,73 +299592,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, - [88337] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6031), 1, - aux_sym__immediate_decimal_token2, - STATE(2898), 1, - sym_comment, - ACTIONS(1538), 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(1540), 41, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [88400] = 4, + aux_sym__unquoted_in_list_token1, + [81951] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2899), 1, + ACTIONS(5950), 1, + anon_sym_DOT_DOT2, + STATE(2728), 1, sym_comment, - ACTIONS(956), 2, + ACTIONS(1963), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(954), 48, + ACTIONS(5952), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1957), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -313760,7 +299614,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_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -313783,7 +299636,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -313801,15 +299653,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, - [88461] = 4, + [82017] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2900), 1, + STATE(2729), 1, sym_comment, - ACTIONS(964), 2, + ACTIONS(1989), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(962), 48, + ACTIONS(1987), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -313817,7 +299671,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_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -313840,7 +299694,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -313858,34 +299711,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, - [88522] = 11, + [82079] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - ACTIONS(4768), 1, - aux_sym_unquoted_token2, - ACTIONS(6033), 1, - anon_sym_DOT_DOT2, - ACTIONS(6037), 1, - sym_filesize_unit, - ACTIONS(6039), 1, - sym_duration_unit, - STATE(2901), 1, + ACTIONS(5954), 1, + aux_sym__immediate_decimal_token2, + STATE(2730), 1, sym_comment, - STATE(7374), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6035), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1579), 5, + ACTIONS(1579), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1591), 37, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1581), 42, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -313897,8 +299739,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, @@ -313913,6 +299757,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, @@ -313922,15 +299767,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [88597] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [82143] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2902), 1, + STATE(2731), 1, sym_comment, - ACTIONS(968), 2, + ACTIONS(1799), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(966), 48, + ACTIONS(1797), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -313938,7 +299788,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_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -313961,7 +299811,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -313979,32 +299828,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, - [88658] = 6, - ACTIONS(3), 1, + [82205] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6041), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6043), 1, + ACTIONS(5956), 1, aux_sym__immediate_decimal_token2, - STATE(2903), 1, + STATE(2732), 1, sym_comment, - ACTIONS(1650), 2, + ACTIONS(1760), 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(1762), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1648), 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, @@ -314014,21 +299875,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, @@ -314037,20 +299887,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, - [88723] = 6, - ACTIONS(3), 1, + [82269] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5921), 1, - sym__entry_separator, - ACTIONS(5923), 1, - sym_raw_string_begin, - STATE(2853), 1, - aux_sym__multiple_types_repeat1, - STATE(2904), 1, + STATE(2733), 1, sym_comment, - ACTIONS(5917), 47, + ACTIONS(946), 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_DOT2, + ACTIONS(948), 44, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -314058,13 +299909,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, @@ -314083,13 +299931,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, @@ -314097,19 +299945,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [88788] = 6, + [82331] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6045), 1, - anon_sym_DOT, - ACTIONS(6047), 1, - aux_sym__immediate_decimal_token2, - STATE(2905), 1, + STATE(2734), 1, sym_comment, - ACTIONS(1668), 2, + ACTIONS(984), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(982), 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, + [82393] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5958), 1, + anon_sym_DOT_DOT2, + STATE(2735), 1, + sym_comment, + ACTIONS(1971), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1666), 46, + ACTIONS(5960), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1965), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -314156,44 +300063,151 @@ 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, - [88853] = 6, + [82459] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5962), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5964), 1, + aux_sym__immediate_decimal_token2, + STATE(2736), 1, + sym_comment, + ACTIONS(1491), 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(1493), 41, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [82525] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6049), 1, - anon_sym_DOT_DOT2, - STATE(2906), 1, + ACTIONS(5966), 1, + anon_sym_DOT, + ACTIONS(5968), 1, + aux_sym__immediate_decimal_token2, + STATE(2737), 1, + sym_comment, + ACTIONS(1499), 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(1501), 41, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [82591] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2738), 1, sym_comment, - ACTIONS(6051), 2, + ACTIONS(1703), 4, + sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2009), 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(2015), 31, - sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1701), 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, @@ -314203,10 +300217,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, @@ -314215,21 +300240,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, - [88918] = 4, - ACTIONS(245), 1, + aux_sym__unquoted_in_list_token1, + [82653] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2907), 1, + ACTIONS(5873), 1, + sym__entry_separator, + ACTIONS(5875), 1, + sym_raw_string_begin, + ACTIONS(5970), 1, + anon_sym_RBRACK, + STATE(2701), 1, + aux_sym__multiple_types_repeat1, + STATE(2739), 1, sym_comment, - ACTIONS(970), 7, + ACTIONS(5869), 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_DOT2, - ACTIONS(972), 43, - sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -314237,10 +300263,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, @@ -314259,12 +300288,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, @@ -314272,20 +300302,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [88979] = 6, + [82721] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6053), 1, - anon_sym_DOT_DOT2, - STATE(2908), 1, + ACTIONS(5972), 1, + sym__newline, + STATE(2740), 2, sym_comment, - ACTIONS(6055), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2017), 16, + aux_sym_shebang_repeat1, + ACTIONS(1272), 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, @@ -314298,15 +300326,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(2023), 31, + aux_sym_unquoted_token1, + ACTIONS(1274), 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, anon_sym_null, anon_sym_true, anon_sym_false, @@ -314323,6 +300351,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, @@ -314331,42 +300361,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, - [89044] = 4, - ACTIONS(245), 1, + [82785] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2909), 1, + STATE(2741), 1, sym_comment, - ACTIONS(2001), 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(2003), 33, + ACTIONS(1688), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1686), 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, @@ -314376,10 +300395,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, @@ -314388,19 +300418,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, - [89105] = 6, + aux_sym__unquoted_in_list_token1, + [82847] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1813), 1, - anon_sym_LPAREN2, - STATE(2910), 1, + ACTIONS(5785), 1, + anon_sym_DOT2, + STATE(2686), 1, + aux_sym_cell_path_repeat1, + STATE(2742), 1, sym_comment, - ACTIONS(1819), 2, + STATE(2817), 1, + sym_path, + ACTIONS(940), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1811), 46, + ACTIONS(938), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -314447,57 +300480,55 @@ 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, - [89170] = 6, - ACTIONS(245), 1, + [82915] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6057), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6059), 1, - aux_sym__immediate_decimal_token2, - STATE(2911), 1, + STATE(2743), 1, sym_comment, - ACTIONS(1484), 17, + ACTIONS(1762), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1760), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DASH2, + anon_sym_LBRACE, 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_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, - aux_sym_unquoted_token2, - ACTIONS(1486), 31, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - 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, + aux_sym__val_number_token1, + aux_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, + 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, @@ -314506,20 +300537,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, - [89235] = 6, + aux_sym__unquoted_in_list_token1, + [82977] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6061), 1, - anon_sym_DOT_DOT2, - STATE(2912), 1, + ACTIONS(5879), 1, + anon_sym_DOT2, + STATE(2744), 1, sym_comment, - ACTIONS(6063), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2025), 16, + STATE(2802), 1, + aux_sym_cell_path_repeat1, + STATE(2923), 1, + sym_path, + STATE(3025), 1, + sym_cell_path, + ACTIONS(1829), 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, @@ -314533,7 +300566,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(2031), 31, + ACTIONS(1831), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -314541,6 +300574,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_null, anon_sym_true, anon_sym_false, @@ -314565,19 +300600,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, - [89300] = 5, + [83047] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2095), 1, + ACTIONS(2106), 1, aux_sym_unquoted_token4, - STATE(2913), 1, + STATE(2745), 1, sym_comment, - ACTIONS(2204), 4, + ACTIONS(994), 4, sym_raw_string_begin, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2202), 45, + ACTIONS(998), 45, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -314623,80 +300658,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, - [89363] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6065), 1, - anon_sym_DOT, - ACTIONS(6067), 1, - aux_sym__immediate_decimal_token2, - STATE(2914), 1, - sym_comment, - ACTIONS(1492), 17, - 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_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, - aux_sym_unquoted_token2, - ACTIONS(1494), 31, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - 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_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, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [89428] = 5, + [83110] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6069), 1, - anon_sym_LBRACK2, - STATE(2915), 1, + STATE(2746), 1, sym_comment, - ACTIONS(2290), 6, + ACTIONS(970), 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(2294), 43, + anon_sym_DOT2, + ACTIONS(972), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -314740,23 +300715,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [89491] = 6, + [83171] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1780), 1, + ACTIONS(5480), 1, anon_sym_LPAREN2, - ACTIONS(1788), 1, - aux_sym__unquoted_in_list_token2, - STATE(2916), 1, - sym_comment, - ACTIONS(2043), 2, - sym_raw_string_begin, + ACTIONS(5859), 1, + anon_sym_RBRACK, + ACTIONS(5865), 1, sym__entry_separator, - ACTIONS(2041), 46, + ACTIONS(5977), 1, + anon_sym_COMMA, + ACTIONS(5979), 1, + sym_raw_string_begin, + STATE(2747), 1, + sym_comment, + STATE(6807), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5975), 44, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, @@ -314799,19 +300777,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, - [89556] = 6, + [83242] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1780), 1, + ACTIONS(1784), 1, anon_sym_LPAREN2, - ACTIONS(1788), 1, + ACTIONS(1792), 1, aux_sym__unquoted_in_list_token2, - STATE(2917), 1, + STATE(2748), 1, sym_comment, - ACTIONS(1786), 2, + ACTIONS(2136), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1778), 46, + ACTIONS(2134), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -314858,76 +300836,46 @@ 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, - [89621] = 4, - ACTIONS(245), 1, + [83307] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2918), 1, + STATE(2749), 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_DOT2, - ACTIONS(980), 43, + ACTIONS(952), 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, + sym__entry_separator, + ACTIONS(950), 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_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, - [89682] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2919), 1, - sym_comment, - ACTIONS(1280), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_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_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -314936,19 +300884,38 @@ 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(1278), 34, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + 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, + [83368] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2750), 1, + sym_comment, + ACTIONS(944), 2, sym_raw_string_begin, - sym__newline, + sym__entry_separator, + ACTIONS(942), 48, 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_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_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -314958,12 +300925,22 @@ 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_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, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -314972,76 +300949,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, - [89743] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2920), 1, - sym_comment, - ACTIONS(974), 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_DOT2, - ACTIONS(976), 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, - [89804] = 6, + aux_sym__unquoted_in_list_token1, + [83429] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2051), 1, - anon_sym_LPAREN2, - STATE(2921), 1, + STATE(2751), 1, sym_comment, - ACTIONS(2053), 2, + ACTIONS(956), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2049), 46, + ACTIONS(954), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -315049,6 +300966,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_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -315071,6 +300989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -315088,19 +301007,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, - [89869] = 6, + [83490] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2061), 1, - anon_sym_LPAREN2, - ACTIONS(2065), 1, - aux_sym__unquoted_in_list_token2, - STATE(2922), 1, + STATE(2752), 1, sym_comment, - ACTIONS(2063), 2, + ACTIONS(948), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2059), 46, + ACTIONS(946), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -315108,6 +301023,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_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -315130,6 +301046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -315147,17 +301064,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, - [89934] = 6, + [83551] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6071), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6073), 1, - aux_sym__immediate_decimal_token2, - STATE(2923), 1, + STATE(2753), 1, sym_comment, - ACTIONS(1648), 15, + ACTIONS(982), 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, @@ -315171,8 +301087,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(1650), 33, + ACTIONS(984), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -315180,8 +301095,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, @@ -315206,77 +301121,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, - [89999] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(2924), 1, - sym_comment, - ACTIONS(2093), 4, - sym_raw_string_begin, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2089), 45, - 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_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, - [90062] = 5, + [83612] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2200), 1, - aux_sym_unquoted_token4, - STATE(2925), 1, + STATE(2754), 1, sym_comment, - ACTIONS(2198), 4, + ACTIONS(2431), 2, sym_raw_string_begin, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2194), 45, + sym__entry_separator, + ACTIONS(2429), 48, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -315317,62 +301170,7 @@ 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_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, - [90125] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6075), 1, - anon_sym_EQ2, - STATE(2926), 1, - sym_comment, - ACTIONS(5080), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5078), 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, + anon_sym_RBRACK, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -315380,103 +301178,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [90188] = 6, - ACTIONS(245), 1, + [83673] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6077), 1, - anon_sym_DOT, - ACTIONS(6079), 1, - aux_sym__immediate_decimal_token2, - STATE(2927), 1, - sym_comment, - ACTIONS(1666), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1668), 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, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - 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(1784), 1, 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, - [90253] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6081), 1, - anon_sym_DOT_DOT2, - STATE(2928), 1, + ACTIONS(1792), 1, + aux_sym__unquoted_in_list_token2, + STATE(2755), 1, sym_comment, - ACTIONS(6083), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(6010), 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(6020), 31, + ACTIONS(1790), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1782), 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, @@ -315486,10 +301213,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, @@ -315498,15 +301236,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, - [90318] = 4, + aux_sym__unquoted_in_list_token1, + [83738] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2929), 1, + STATE(2756), 1, sym_comment, - ACTIONS(1280), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, + ACTIONS(1674), 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, @@ -315519,16 +301259,17 @@ 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(1278), 34, + aux_sym__unquoted_in_list_token1, + ACTIONS(1676), 33, sym_raw_string_begin, - sym__newline, 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, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -315545,8 +301286,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, @@ -315555,12 +301294,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, - [90379] = 4, + [83799] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2930), 1, + STATE(2757), 1, sym_comment, - ACTIONS(982), 17, + ACTIONS(1945), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -315578,7 +301317,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(984), 33, + ACTIONS(1947), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -315612,44 +301351,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, - [90440] = 6, - ACTIONS(245), 1, + [83860] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6081), 1, - anon_sym_DOT_DOT2, - STATE(2931), 1, + ACTIONS(5981), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5983), 1, + aux_sym__immediate_decimal_token2, + STATE(2758), 1, sym_comment, - ACTIONS(6083), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(6022), 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(6027), 31, + ACTIONS(1688), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1686), 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, @@ -315659,10 +301386,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, @@ -315671,15 +301409,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [90505] = 4, + aux_sym__unquoted_in_list_token1, + [83925] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5985), 1, + anon_sym_LBRACK2, + STATE(2759), 1, + sym_comment, + ACTIONS(2230), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2234), 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, + [83988] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2932), 1, + ACTIONS(2168), 1, + aux_sym_unquoted_token4, + STATE(2760), 1, sym_comment, - ACTIONS(960), 2, + ACTIONS(2166), 4, + sym_raw_string_begin, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2162), 45, + 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_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, + [84051] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2761), 1, + sym_comment, + ACTIONS(974), 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_DOT2, + ACTIONS(976), 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, + [84112] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1447), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + STATE(2762), 1, + sym_comment, + ACTIONS(1813), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(958), 48, + ACTIONS(1805), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -315687,7 +301603,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_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -315710,7 +301625,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -315725,80 +301639,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_GT_GT, 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, - [90566] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5915), 1, - aux_sym__immediate_decimal_token2, - STATE(2933), 1, - sym_comment, - ACTIONS(1492), 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(1494), 41, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [90629] = 5, - ACTIONS(3), 1, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [84177] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2192), 1, - aux_sym_unquoted_token4, - STATE(2934), 1, + ACTIONS(5987), 1, + anon_sym_DOT, + ACTIONS(5989), 1, + aux_sym__immediate_decimal_token2, + STATE(2763), 1, sym_comment, - ACTIONS(994), 4, + ACTIONS(1499), 17, + 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_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, + aux_sym_unquoted_token2, + ACTIONS(1501), 31, sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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_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, - ACTIONS(998), 45, + 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, + [84242] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5873), 1, + sym__entry_separator, + ACTIONS(5875), 1, + sym_raw_string_begin, + STATE(2701), 1, + aux_sym__multiple_types_repeat1, + STATE(2764), 1, + sym_comment, + ACTIONS(5869), 47, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -315839,27 +301753,27 @@ 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_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, - [90692] = 5, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [84307] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6085), 1, - sym__newline, - STATE(2935), 2, + STATE(2765), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1284), 6, + 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, - ACTIONS(1286), 42, + anon_sym_DOT2, + ACTIONS(980), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -315895,6 +301809,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, @@ -315902,45 +301817,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [90755] = 7, - ACTIONS(245), 1, + [84368] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5929), 1, - anon_sym_DOT2, - STATE(2936), 1, + ACTIONS(1477), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2140), 1, + anon_sym_LPAREN2, + STATE(2766), 1, sym_comment, - STATE(2937), 1, - aux_sym_cell_path_repeat1, - STATE(3131), 1, - sym_path, - ACTIONS(931), 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(933), 33, + ACTIONS(2142), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2138), 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, @@ -315950,10 +301852,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, @@ -315962,17 +301875,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, - [90822] = 6, + aux_sym__unquoted_in_list_token1, + [84433] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6088), 1, - anon_sym_DOT2, - STATE(3131), 1, - sym_path, - STATE(2937), 2, + STATE(2767), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(935), 14, + ACTIONS(1287), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -315986,14 +301897,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_in_list_token1, - ACTIONS(937), 33, + aux_sym_unquoted_token1, + ACTIONS(1285), 34, sym_raw_string_begin, + 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_EQ, anon_sym_DOT_DOT_LT, @@ -316013,6 +301923,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, @@ -316021,16 +301933,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, - [90887] = 4, + [84494] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(2938), 1, + ACTIONS(5991), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5993), 1, + aux_sym__immediate_decimal_token2, + STATE(2768), 1, sym_comment, - ACTIONS(1963), 17, + ACTIONS(1686), 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, @@ -316044,7 +301957,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(1965), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1688), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -316052,8 +301966,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, @@ -316078,16 +301992,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, - [90948] = 6, + [84559] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6091), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6093), 1, + ACTIONS(5995), 1, + anon_sym_DOT, + ACTIONS(5997), 1, aux_sym__immediate_decimal_token2, - STATE(2939), 1, + STATE(2769), 1, sym_comment, - ACTIONS(1648), 7, + ACTIONS(1701), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -316095,7 +302009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1650), 41, + ACTIONS(1703), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -316137,74 +302051,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [91013] = 4, + [84624] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2940), 1, - sym_comment, - ACTIONS(1668), 3, - sym_raw_string_begin, + ACTIONS(2146), 1, anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1666), 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, + ACTIONS(2150), 1, aux_sym__unquoted_in_list_token2, - [91074] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6095), 1, - anon_sym_QMARK2, - STATE(2941), 1, + STATE(2770), 1, sym_comment, - ACTIONS(944), 2, + ACTIONS(2148), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(942), 47, + ACTIONS(2144), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -316234,7 +302093,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -316252,47 +302110,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, - [91137] = 5, - ACTIONS(3), 1, + [84689] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6097), 1, - anon_sym_QMARK2, - STATE(2942), 1, + ACTIONS(5999), 1, + anon_sym_DOT_DOT2, + STATE(2771), 1, sym_comment, - ACTIONS(950), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(948), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(6001), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5857), 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_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -316301,38 +302136,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, - [91200] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2943), 1, - sym_comment, - ACTIONS(1650), 3, + ACTIONS(5867), 31, sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1648), 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, @@ -316342,21 +302157,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, @@ -316365,21 +302169,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, - [91261] = 6, + [84754] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2196), 1, + ACTIONS(2164), 1, anon_sym_LPAREN2, - ACTIONS(2200), 1, + ACTIONS(2168), 1, aux_sym__unquoted_in_list_token4, - STATE(2944), 1, + STATE(2772), 1, sym_comment, - ACTIONS(2198), 2, + ACTIONS(2166), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2194), 46, + ACTIONS(2162), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -316426,17 +302228,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, - [91326] = 4, + [84819] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2945), 1, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(2773), 1, sym_comment, - ACTIONS(2047), 4, + ACTIONS(2130), 4, sym_raw_string_begin, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2045), 46, + ACTIONS(2128), 45, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -316482,198 +302286,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, - aux_sym_unquoted_token4, - [91387] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym__unquoted_in_list_token4, - STATE(2946), 1, - sym_comment, - ACTIONS(2204), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2202), 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, - [91452] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym__unquoted_in_list_token4, - STATE(2947), 1, - sym_comment, - ACTIONS(2093), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2089), 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, - [91517] = 4, + [84882] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2948), 1, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(2774), 1, sym_comment, - ACTIONS(1721), 3, + ACTIONS(2072), 4, sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1719), 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, - [91578] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5605), 1, - aux_sym_unquoted_token2, - STATE(2949), 1, - sym_comment, - ACTIONS(1579), 6, + ACTIONS(2068), 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(1591), 43, - sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -316681,10 +302307,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, @@ -316703,9 +302332,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, @@ -316713,19 +302344,16 @@ 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, - [91641] = 4, + [84945] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2950), 1, + STATE(2775), 1, sym_comment, - ACTIONS(1792), 3, + ACTIONS(2078), 3, sym_raw_string_begin, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1790), 47, + ACTIONS(2076), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -316772,75 +302400,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, - aux_sym__unquoted_in_list_token2, - [91702] = 4, + aux_sym__unquoted_in_list_token4, + [85006] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(2951), 1, - sym_comment, - ACTIONS(1492), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5999), 1, anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1494), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, + STATE(2776), 1, + sym_comment, + ACTIONS(6001), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [91763] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6099), 1, - anon_sym_DOT, - ACTIONS(6101), 1, - aux_sym__immediate_decimal_token2, - STATE(2952), 1, - sym_comment, - ACTIONS(1666), 15, + ACTIONS(5883), 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, @@ -316854,8 +302428,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(1668), 33, + ACTIONS(5888), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -316863,8 +302436,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, @@ -316889,16 +302460,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, - [91828] = 4, + [85071] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2953), 1, + ACTIONS(6003), 1, + anon_sym_DOT, + ACTIONS(6005), 1, + aux_sym__immediate_decimal_token2, + STATE(2777), 1, sym_comment, - ACTIONS(2047), 3, + ACTIONS(1703), 2, sym_raw_string_begin, - anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2045), 47, + ACTIONS(1701), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -316945,17 +302519,73 @@ 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, - [91889] = 4, + [85136] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(2954), 1, + ACTIONS(6007), 1, + sym__newline, + STATE(2778), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1272), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1274), 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, + 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, + [85199] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2779), 1, sym_comment, - ACTIONS(1666), 17, + ACTIONS(1287), 16, + 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, @@ -316968,69 +302598,19 @@ 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(1668), 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, - [91950] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(994), 1, - sym__entry_separator, - ACTIONS(2190), 1, - anon_sym_LPAREN2, - ACTIONS(2192), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(6024), 1, - anon_sym_RBRACK, - ACTIONS(6027), 1, + aux_sym_unquoted_token1, + ACTIONS(1285), 34, sym_raw_string_begin, - STATE(2955), 1, - sym_comment, - ACTIONS(6022), 45, + sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, + 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_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -317040,21 +302620,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, @@ -317063,72 +302634,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_in_list_token1, - [92019] = 4, + [85260] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(2956), 1, - sym_comment, - ACTIONS(1484), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(6010), 1, anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1486), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, + STATE(2780), 1, + sym_comment, + ACTIONS(6012), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [92080] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2957), 1, - sym_comment, - ACTIONS(1648), 17, + ACTIONS(1973), 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, @@ -317144,7 +302661,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(1650), 33, + ACTIONS(1979), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -317152,8 +302669,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, @@ -317178,16 +302693,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, - [92141] = 4, - ACTIONS(3), 1, + [85325] = 5, + ACTIONS(245), 1, anon_sym_POUND, - STATE(2958), 1, + ACTIONS(6014), 1, + anon_sym_EQ2, + STATE(2781), 1, sym_comment, - ACTIONS(2487), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2485), 48, + ACTIONS(4908), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4906), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -317195,13 +302716,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, @@ -317220,14 +302738,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_RBRACK, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -317235,99 +302751,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92202] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2959), 1, - sym_comment, - ACTIONS(1538), 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(1540), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [92263] = 4, - ACTIONS(245), 1, + [85388] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2960), 1, + ACTIONS(6016), 1, + anon_sym_QMARK2, + STATE(2782), 1, sym_comment, - ACTIONS(1967), 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(1969), 33, + ACTIONS(966), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(964), 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, @@ -317337,10 +302784,22 @@ 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_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, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -317349,42 +302808,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, - [92324] = 4, - ACTIONS(245), 1, + aux_sym__unquoted_in_list_token1, + [85451] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2961), 1, + STATE(2783), 1, sym_comment, - ACTIONS(1719), 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(1721), 33, + ACTIONS(1703), 3, sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1701), 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, @@ -317394,10 +302841,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, @@ -317406,69 +302864,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, - [92385] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2962), 1, - sym_comment, - ACTIONS(1715), 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(1717), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [92446] = 4, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [85512] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2963), 1, + STATE(2784), 1, sym_comment, - ACTIONS(1790), 17, + ACTIONS(1987), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -317486,7 +302889,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(1792), 33, + ACTIONS(1989), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -317520,26 +302923,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, - [92507] = 9, + [85573] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5542), 1, + STATE(2785), 1, + sym_comment, + ACTIONS(1688), 3, + sym_raw_string_begin, anon_sym_LPAREN2, - ACTIONS(6012), 1, - anon_sym_RBRACK, - ACTIONS(6018), 1, sym__entry_separator, - ACTIONS(6105), 1, - anon_sym_COMMA, - ACTIONS(6107), 1, - sym_raw_string_begin, - STATE(2964), 1, - sym_comment, - STATE(7537), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6103), 44, + ACTIONS(1686), 47, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, @@ -317582,17 +302979,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, - [92578] = 6, + aux_sym__unquoted_in_list_token2, + [85634] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6109), 1, + ACTIONS(6018), 1, anon_sym_DOT_DOT2, - STATE(2965), 1, + STATE(2786), 1, sym_comment, - ACTIONS(6111), 2, + ACTIONS(6020), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2033), 16, + ACTIONS(1949), 16, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -317609,7 +303007,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(2039), 31, + ACTIONS(1955), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -317641,71 +303039,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, - [92643] = 4, + [85699] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(2966), 1, + ACTIONS(6022), 1, + anon_sym_DOT_DOT2, + STATE(2787), 1, sym_comment, - ACTIONS(5201), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5199), 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, + ACTIONS(6024), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1957), 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(1963), 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, - [92703] = 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, + [85764] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6113), 1, - aux_sym__immediate_decimal_token2, - STATE(2967), 1, + ACTIONS(6026), 1, + anon_sym_DOT_DOT2, + STATE(2788), 1, sym_comment, - ACTIONS(1719), 15, + ACTIONS(6028), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1965), 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, @@ -317719,8 +303125,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(1721), 33, + ACTIONS(1971), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -317728,8 +303133,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, @@ -317754,25 +303157,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, - [92765] = 7, + [85829] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6117), 1, - anon_sym_RBRACE, - ACTIONS(6119), 1, - sym__entry_separator, - ACTIONS(6121), 1, - sym_raw_string_begin, - STATE(2968), 1, + STATE(2789), 1, sym_comment, - STATE(2996), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6115), 45, + ACTIONS(1762), 3, + sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1760), 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_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -317812,26 +303212,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, - [92831] = 7, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [85890] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6119), 1, - sym__entry_separator, - ACTIONS(6121), 1, - sym_raw_string_begin, - ACTIONS(6123), 1, - anon_sym_RBRACE, - STATE(2969), 1, + STATE(2790), 1, sym_comment, - STATE(2996), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6115), 45, + ACTIONS(1799), 3, + sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1797), 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_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -317871,145 +303269,103 @@ static const 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, - [92897] = 4, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [85951] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2970), 1, + STATE(2791), 1, sym_comment, - 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(1881), 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, - [92957] = 4, + ACTIONS(1499), 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(1501), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [86012] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(2971), 1, + ACTIONS(6030), 1, + anon_sym_DOT, + ACTIONS(6032), 1, + aux_sym__immediate_decimal_token2, + STATE(2792), 1, sym_comment, - ACTIONS(1280), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1278), 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, - sym__newline, + ACTIONS(1701), 15, + 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_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [93017] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6119), 1, - sym__entry_separator, - ACTIONS(6121), 1, + 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(1703), 33, sym_raw_string_begin, - ACTIONS(6125), 1, - anon_sym_RBRACE, - STATE(2972), 1, - sym_comment, - STATE(2996), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6115), 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, 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, @@ -318019,21 +303375,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, @@ -318042,33 +303387,42 @@ static const 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, - [93083] = 7, - ACTIONS(3), 1, + [86077] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6119), 1, - sym__entry_separator, - ACTIONS(6121), 1, - sym_raw_string_begin, - ACTIONS(6127), 1, - anon_sym_RBRACE, - STATE(2973), 1, + STATE(2793), 1, sym_comment, - STATE(2996), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6115), 45, + ACTIONS(1701), 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(1703), 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__, - 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, @@ -318078,21 +303432,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, @@ -318101,196 +303444,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, - aux_sym_unquoted_token1, - [93149] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2974), 1, - sym_comment, - ACTIONS(2392), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2394), 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, - [93209] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2975), 1, - sym_comment, - 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(2408), 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, - [93269] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2976), 1, - sym_comment, - ACTIONS(2469), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2471), 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, - [93329] = 8, + [86138] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2546), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + ACTIONS(4732), 1, + aux_sym_unquoted_token2, + ACTIONS(6034), 1, anon_sym_DOT_DOT2, - ACTIONS(6129), 1, + ACTIONS(6038), 1, sym_filesize_unit, - ACTIONS(6131), 1, + ACTIONS(6040), 1, sym_duration_unit, - STATE(2977), 1, + STATE(2794), 1, sym_comment, - ACTIONS(2548), 2, + STATE(6963), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6036), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1579), 5, + ACTIONS(1616), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1591), 39, + ACTIONS(1628), 37, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -318302,11 +303483,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_and2, anon_sym_xor2, anon_sym_or2, @@ -318330,193 +303508,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [93397] = 4, + [86213] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2978), 1, + STATE(2795), 1, sym_comment, - ACTIONS(958), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(960), 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, - [93457] = 4, + ACTIONS(1491), 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(1493), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [86274] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2979), 1, + STATE(2796), 1, sym_comment, - ACTIONS(2469), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2471), 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, + ACTIONS(1686), 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, - 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, - [93517] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2980), 1, - sym_comment, - ACTIONS(5034), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5032), 43, + 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(1688), 33, 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, + 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, - [93577] = 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, + [86335] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6119), 1, + ACTIONS(994), 1, sym__entry_separator, - ACTIONS(6121), 1, + ACTIONS(2104), 1, + anon_sym_LPAREN2, + ACTIONS(2106), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(5885), 1, + anon_sym_RBRACK, + ACTIONS(5888), 1, sym_raw_string_begin, - ACTIONS(6133), 1, - anon_sym_RBRACE, - STATE(2981), 1, + STATE(2797), 1, sym_comment, - STATE(2996), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6115), 45, + ACTIONS(5883), 45, anon_sym_LBRACK, 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, @@ -318556,237 +303682,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_token1, - [93643] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2982), 1, - sym_comment, - ACTIONS(1913), 6, - aux_sym_cmd_identifier_token1, - aux_sym_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, - 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, - [93703] = 4, + aux_sym__unquoted_in_list_token1, + [86404] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2983), 1, + STATE(2798), 1, sym_comment, - ACTIONS(2422), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2424), 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, - [93763] = 4, + ACTIONS(1579), 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(1581), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [86465] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2984), 1, + STATE(2799), 1, sym_comment, - 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(994), 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, + ACTIONS(1760), 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, - 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, - [93823] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2985), 1, - sym_comment, - 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(1885), 43, + 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(1762), 33, 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, + 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, - [93883] = 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, + [86526] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2986), 1, + STATE(2800), 1, sym_comment, - ACTIONS(1538), 8, + ACTIONS(1678), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -318795,8 +303811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1540), 41, - ts_builtin_sym_end, + ACTIONS(1680), 42, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -318808,8 +303823,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, @@ -318837,128 +303854,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [93943] = 4, + [86587] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(2987), 1, + STATE(2801), 1, sym_comment, - ACTIONS(5197), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5195), 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, + ACTIONS(1797), 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(1799), 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, - [94003] = 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, + [86648] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(2988), 1, + ACTIONS(5879), 1, + anon_sym_DOT2, + STATE(2802), 1, sym_comment, - ACTIONS(1959), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1961), 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, + STATE(2809), 1, + aux_sym_cell_path_repeat1, + STATE(2923), 1, + sym_path, + ACTIONS(938), 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(940), 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, - [94063] = 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, + [86715] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6135), 1, - anon_sym_DOT, - ACTIONS(6137), 1, + ACTIONS(6042), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6044), 1, aux_sym__immediate_decimal_token2, - STATE(2989), 1, + STATE(2803), 1, sym_comment, - ACTIONS(1666), 7, + ACTIONS(1686), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -318966,8 +303988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1668), 40, - ts_builtin_sym_end, + ACTIONS(1688), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -318979,8 +304000,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, @@ -319007,22 +304030,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [94127] = 5, + [86780] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6079), 1, + ACTIONS(5968), 1, aux_sym__immediate_decimal_token2, - STATE(2990), 1, + STATE(2804), 1, sym_comment, - ACTIONS(1666), 7, + ACTIONS(1499), 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(1668), 41, + ACTIONS(1501), 41, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -319034,10 +304059,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -319064,303 +304087,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [94189] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2991), 1, - sym_comment, - ACTIONS(1851), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1853), 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, - [94249] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2992), 1, - sym_comment, - ACTIONS(954), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(956), 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, - [94309] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2993), 1, - sym_comment, - ACTIONS(2465), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2467), 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, - [94369] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2994), 1, - sym_comment, - ACTIONS(2445), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2447), 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, - [94429] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2995), 1, - sym_comment, - ACTIONS(2370), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2372), 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, - [94489] = 5, + sym_duration_unit, + [86843] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2439), 1, + ACTIONS(2070), 1, + anon_sym_LPAREN2, + ACTIONS(2074), 1, + aux_sym__unquoted_in_list_token4, + STATE(2805), 1, + sym_comment, + ACTIONS(2130), 2, sym_raw_string_begin, - ACTIONS(6139), 1, sym__entry_separator, - STATE(2996), 2, - sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2434), 46, + ACTIONS(2128), 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, @@ -319400,80 +304146,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, - aux_sym_unquoted_token1, - [94551] = 7, + aux_sym__unquoted_in_list_token1, + [86908] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6046), 1, + aux_sym__immediate_decimal_token2, + STATE(2806), 1, + sym_comment, + ACTIONS(1579), 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(1581), 41, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [86971] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6119), 1, - sym__entry_separator, - ACTIONS(6121), 1, - sym_raw_string_begin, - ACTIONS(6142), 1, - anon_sym_RBRACE, - STATE(2996), 1, - aux_sym__multiple_types_repeat1, - STATE(2997), 1, + STATE(2807), 1, sym_comment, - ACTIONS(6115), 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, + ACTIONS(2078), 4, + sym_raw_string_begin, 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, - [94617] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(2998), 1, - sym_comment, - ACTIONS(2449), 6, + ACTIONS(2076), 46, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2451), 43, - sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -319481,10 +304224,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, @@ -319503,9 +304249,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, @@ -319513,33 +304261,43 @@ 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, - [94677] = 5, - ACTIONS(3), 1, + aux_sym_unquoted_token4, + [87032] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6047), 1, - aux_sym__immediate_decimal_token2, - STATE(2999), 1, + STATE(2808), 1, sym_comment, - ACTIONS(1668), 2, + ACTIONS(1993), 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(1995), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1666), 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, @@ -319549,21 +304307,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, @@ -319572,21 +304319,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, - [94739] = 5, + [87093] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6144), 1, - anon_sym_QMARK2, - STATE(3000), 1, + ACTIONS(6048), 1, + anon_sym_DOT2, + STATE(2923), 1, + sym_path, + STATE(2809), 2, sym_comment, - ACTIONS(942), 15, + aux_sym_cell_path_repeat1, + ACTIONS(931), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -319596,7 +304344,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(944), 33, + ACTIONS(933), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -319630,42 +304378,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, - [94801] = 5, - ACTIONS(245), 1, + [87158] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6146), 1, + ACTIONS(6051), 1, anon_sym_QMARK2, - STATE(3001), 1, + STATE(2810), 1, sym_comment, - ACTIONS(948), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_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, - aux_sym__unquoted_in_list_token1, - ACTIONS(950), 33, + ACTIONS(960), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(958), 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, @@ -319675,10 +304411,22 @@ 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_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, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -319687,137 +304435,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [94863] = 4, + aux_sym__unquoted_in_list_token1, + [87221] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(3002), 1, + ACTIONS(6053), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6055), 1, + aux_sym__immediate_decimal_token2, + STATE(2811), 1, sym_comment, - ACTIONS(2475), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2477), 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, + ACTIONS(1491), 17, + 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, - 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, - [94923] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3003), 1, - sym_comment, - ACTIONS(962), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(964), 43, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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, + aux_sym_unquoted_token2, + ACTIONS(1493), 31, 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_LBRACK, + anon_sym_LPAREN, anon_sym_DASH_DASH, - aux_sym__val_number_decimal_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_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, - [94983] = 7, + 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, + [87286] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6119), 1, - sym__entry_separator, - ACTIONS(6121), 1, - sym_raw_string_begin, - ACTIONS(6148), 1, - anon_sym_RBRACE, - STATE(2996), 1, - aux_sym__multiple_types_repeat1, - STATE(3004), 1, + ACTIONS(2070), 1, + anon_sym_LPAREN2, + ACTIONS(2074), 1, + aux_sym__unquoted_in_list_token4, + STATE(2812), 1, sym_comment, - ACTIONS(6115), 45, + ACTIONS(2072), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2068), 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, @@ -319857,132 +304553,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_token1, - [95049] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3005), 1, - sym_comment, - 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(2412), 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, - [95109] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3006), 1, - sym_comment, - ACTIONS(2479), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2481), 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, - [95169] = 4, + aux_sym__unquoted_in_list_token1, + [87351] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(3007), 1, + ACTIONS(5585), 1, + aux_sym_unquoted_token2, + STATE(2813), 1, sym_comment, - ACTIONS(5189), 6, + ACTIONS(1616), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5187), 43, + ACTIONS(1628), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -320026,19 +304612,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95229] = 4, + [87414] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3008), 1, + STATE(2814), 1, sym_comment, - ACTIONS(1891), 6, + ACTIONS(1287), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1893), 43, + ACTIONS(1285), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -320074,83 +304660,27 @@ 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, - [95289] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3009), 1, - sym_comment, - ACTIONS(1715), 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(1717), 41, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [95349] = 4, + 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, + [87474] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3010), 1, + STATE(2815), 1, sym_comment, - ACTIONS(1931), 6, + ACTIONS(2270), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1933), 43, + ACTIONS(2272), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -320194,19 +304724,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95409] = 4, + [87534] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3011), 1, + STATE(2816), 1, sym_comment, - ACTIONS(966), 6, + ACTIONS(2274), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(968), 43, + ACTIONS(2276), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -320250,17 +304780,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95469] = 5, + [87594] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6150), 1, - aux_sym__immediate_decimal_token2, - STATE(3012), 1, + STATE(2817), 1, sym_comment, - ACTIONS(1721), 2, + ACTIONS(972), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1719), 46, + ACTIONS(970), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -320290,6 +304818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -320307,19 +304836,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, - [95531] = 4, + [87654] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3013), 1, + STATE(2818), 1, sym_comment, - ACTIONS(2453), 6, + ACTIONS(942), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2455), 43, + ACTIONS(944), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -320363,75 +304892,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95591] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3014), 1, - sym_comment, - ACTIONS(1484), 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(1486), 41, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [95651] = 4, + [87714] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3015), 1, + STATE(2819), 1, sym_comment, - ACTIONS(2398), 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(2400), 43, + ACTIONS(2392), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -320475,41 +304948,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95711] = 4, - ACTIONS(245), 1, + [87774] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3016), 1, - sym_comment, - ACTIONS(954), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_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, - aux_sym__unquoted_in_list_token1, - ACTIONS(956), 34, + ACTIONS(6059), 1, + anon_sym_RBRACE, + ACTIONS(6061), 1, + sym__entry_separator, + ACTIONS(6063), 1, sym_raw_string_begin, + STATE(2820), 1, + sym_comment, + STATE(2873), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6057), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_QMARK2, + 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, @@ -320519,10 +304983,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, @@ -320531,19 +305006,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, - [95771] = 4, + aux_sym_unquoted_token1, + [87840] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3017), 1, + STATE(2821), 1, sym_comment, - ACTIONS(1935), 6, + ACTIONS(4968), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1937), 43, + ACTIONS(4966), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -320587,131 +305063,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95831] = 4, + [87900] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3018), 1, - sym_comment, - ACTIONS(962), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_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, - aux_sym__unquoted_in_list_token1, - ACTIONS(964), 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, - [95891] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3019), 1, + STATE(2822), 1, sym_comment, - ACTIONS(972), 2, + ACTIONS(2278), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2280), 43, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(970), 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_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_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, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - 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, - [95951] = 4, + [87960] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3020), 1, + STATE(2823), 1, sym_comment, - ACTIONS(2378), 6, + ACTIONS(2405), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2380), 43, + ACTIONS(2407), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -320755,19 +305175,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96011] = 4, + [88020] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3021), 1, + STATE(2824), 1, sym_comment, - ACTIONS(1945), 6, + ACTIONS(6065), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1947), 43, + ACTIONS(6067), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -320811,19 +305231,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96071] = 4, + [88080] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5490), 1, + aux_sym__unquoted_in_list_token2, + STATE(2825), 1, + sym_comment, + ACTIONS(1628), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1616), 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, + [88142] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2826), 1, + sym_comment, + ACTIONS(954), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_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, + aux_sym__unquoted_in_list_token1, + ACTIONS(956), 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, + [88202] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3022), 1, + STATE(2827), 1, sym_comment, - ACTIONS(2414), 6, + ACTIONS(946), 6, aux_sym_cmd_identifier_token1, aux_sym_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, + ACTIONS(948), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -320867,20 +305400,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96131] = 7, + [88262] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6119), 1, + ACTIONS(6061), 1, sym__entry_separator, - ACTIONS(6121), 1, + ACTIONS(6063), 1, sym_raw_string_begin, - ACTIONS(6152), 1, + ACTIONS(6069), 1, anon_sym_RBRACE, - STATE(2996), 1, + STATE(2828), 1, + sym_comment, + STATE(2873), 1, aux_sym__multiple_types_repeat1, - STATE(3023), 1, + ACTIONS(6057), 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, + [88328] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6061), 1, + sym__entry_separator, + ACTIONS(6063), 1, + sym_raw_string_begin, + ACTIONS(6071), 1, + anon_sym_RBRACE, + STATE(2829), 1, sym_comment, - ACTIONS(6115), 45, + STATE(2873), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6057), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -320926,19 +305518,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, - [96197] = 4, + [88394] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3024), 1, + STATE(2830), 1, sym_comment, - ACTIONS(2374), 6, + ACTIONS(954), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2376), 43, + ACTIONS(956), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -320982,19 +305574,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96257] = 4, + [88454] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3025), 1, + STATE(2831), 1, sym_comment, - ACTIONS(2382), 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(2384), 43, + ACTIONS(1885), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -321038,10 +305630,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96317] = 4, + [88514] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3026), 1, + STATE(2832), 1, sym_comment, ACTIONS(980), 2, sym_raw_string_begin, @@ -321094,15 +305686,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, - [96377] = 4, + [88574] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3027), 1, + STATE(2833), 1, sym_comment, - ACTIONS(976), 2, + ACTIONS(6075), 3, sym_raw_string_begin, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(974), 47, + ACTIONS(6073), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -321132,7 +305725,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -321150,19 +305742,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, - [96437] = 4, + [88634] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3028), 1, + STATE(2834), 1, sym_comment, - ACTIONS(2426), 6, + ACTIONS(4976), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2428), 43, + ACTIONS(4974), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -321206,21 +305798,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96497] = 5, + [88694] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6154), 1, - aux_sym__immediate_decimal_token2, - STATE(3029), 1, + ACTIONS(6077), 1, + anon_sym_QMARK2, + STATE(2835), 1, sym_comment, - ACTIONS(1538), 17, - anon_sym_DOLLAR, - anon_sym_DASH2, + ACTIONS(964), 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, + anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -321229,32 +305820,148 @@ 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, - aux_sym_unquoted_token2, - ACTIONS(1540), 31, + aux_sym__unquoted_in_list_token1, + ACTIONS(966), 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, + 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, + [88756] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6079), 1, + anon_sym_DOT, + ACTIONS(6081), 1, + aux_sym__immediate_decimal_token2, + STATE(2836), 1, + sym_comment, + ACTIONS(1701), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 40, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [88820] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6083), 1, + anon_sym_QMARK2, + STATE(2837), 1, + sym_comment, + ACTIONS(958), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_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, + aux_sym__unquoted_in_list_token1, + ACTIONS(960), 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_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, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -321263,18 +305970,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, - [96559] = 4, + [88882] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(3030), 1, + ACTIONS(6032), 1, + aux_sym__immediate_decimal_token2, + STATE(2838), 1, sym_comment, - ACTIONS(966), 15, + ACTIONS(1701), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -321284,7 +305992,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(968), 34, + aux_sym__unquoted_in_list_token2, + ACTIONS(1703), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -321292,7 +306001,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, @@ -321319,19 +306027,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96619] = 4, + [88944] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6061), 1, + sym__entry_separator, + ACTIONS(6063), 1, + sym_raw_string_begin, + ACTIONS(6085), 1, + anon_sym_RBRACE, + STATE(2839), 1, + sym_comment, + STATE(2873), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6057), 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, + [89010] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(3031), 1, + ACTIONS(5997), 1, + aux_sym__immediate_decimal_token2, + STATE(2840), 1, + sym_comment, + ACTIONS(1701), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 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, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [89072] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2841), 1, sym_comment, - ACTIONS(5012), 6, + 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(5010), 43, + ACTIONS(5119), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -321375,14 +306199,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96679] = 5, + [89132] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6067), 1, + ACTIONS(6087), 1, aux_sym__immediate_decimal_token2, - STATE(3032), 1, + STATE(2842), 1, sym_comment, - ACTIONS(1492), 17, + ACTIONS(1579), 17, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -321400,7 +306224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, aux_sym_unquoted_token2, - ACTIONS(1494), 31, + ACTIONS(1581), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -321432,19 +306256,367 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96741] = 4, + [89194] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6061), 1, + sym__entry_separator, + ACTIONS(6063), 1, + sym_raw_string_begin, + ACTIONS(6089), 1, + anon_sym_RBRACE, + STATE(2843), 1, + sym_comment, + STATE(2873), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6057), 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, + [89260] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6091), 1, + aux_sym__immediate_decimal_token2, + STATE(2844), 1, + sym_comment, + ACTIONS(1760), 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(1762), 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, + [89322] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6093), 1, + aux_sym__immediate_decimal_token2, + STATE(2845), 1, + sym_comment, + ACTIONS(1762), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1760), 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, + [89384] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2846), 1, + sym_comment, + ACTIONS(6097), 3, + sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6095), 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, + [89444] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6061), 1, + sym__entry_separator, + ACTIONS(6063), 1, + sym_raw_string_begin, + ACTIONS(6099), 1, + anon_sym_RBRACE, + STATE(2847), 1, + sym_comment, + STATE(2873), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6057), 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, + [89510] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(2548), 1, + anon_sym_DOT_DOT2, + ACTIONS(6101), 1, + sym_filesize_unit, + ACTIONS(6103), 1, + sym_duration_unit, + STATE(2848), 1, + sym_comment, + ACTIONS(2550), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1616), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1628), 39, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [89578] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3033), 1, + STATE(2849), 1, sym_comment, - ACTIONS(2461), 6, + ACTIONS(2370), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2463), 43, + ACTIONS(2372), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -321488,19 +306660,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96801] = 4, + [89638] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3034), 1, + STATE(2850), 1, sym_comment, - ACTIONS(1579), 6, + ACTIONS(1616), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1591), 43, + ACTIONS(1628), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -321544,75 +306716,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96861] = 4, + [89698] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(3035), 1, + ACTIONS(6105), 1, + anon_sym_DOT, + ACTIONS(6107), 1, + aux_sym__immediate_decimal_token2, + STATE(2851), 1, sym_comment, - ACTIONS(2300), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2302), 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, + ACTIONS(1701), 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(1703), 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, - [96921] = 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, + [89762] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3036), 1, + STATE(2852), 1, sym_comment, - ACTIONS(5193), 6, + ACTIONS(2290), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5191), 43, + ACTIONS(2292), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -321656,76 +306830,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96981] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6156), 1, - aux_sym__immediate_decimal_token2, - STATE(3037), 1, - sym_comment, - ACTIONS(1719), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1721), 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, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [97043] = 4, + [89822] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3038), 1, + STATE(2853), 1, sym_comment, - ACTIONS(6158), 6, + ACTIONS(2294), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(6160), 43, + ACTIONS(2296), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -321769,19 +306886,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97103] = 4, + [89882] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3039), 1, + STATE(2854), 1, sym_comment, - ACTIONS(2457), 6, + ACTIONS(2278), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2459), 43, + ACTIONS(2280), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -321825,18 +306942,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97163] = 4, + [89942] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(3040), 1, + ACTIONS(6109), 1, + sym__newline, + STATE(2855), 2, sym_comment, - ACTIONS(958), 15, + aux_sym_shebang_repeat1, + ACTIONS(1272), 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_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -321845,16 +306965,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(960), 34, + aux_sym__unquoted_in_record_token1, + ACTIONS(1274), 32, 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, @@ -321873,6 +306989,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, @@ -321881,77 +306999,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, - [97223] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6162), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6164), 1, - aux_sym__immediate_decimal_token2, - STATE(3041), 1, - sym_comment, - ACTIONS(1648), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1650), 40, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [97287] = 4, + [90004] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3042), 1, + STATE(2856), 1, sym_comment, - ACTIONS(2418), 6, + ACTIONS(2378), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2420), 43, + ACTIONS(2380), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -321995,19 +307055,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97347] = 4, + [90064] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6112), 1, + anon_sym_LBRACK2, + STATE(2857), 1, + sym_comment, + ACTIONS(2234), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2230), 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, + [90126] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6061), 1, + sym__entry_separator, + ACTIONS(6063), 1, + sym_raw_string_begin, + ACTIONS(6114), 1, + anon_sym_RBRACE, + STATE(2858), 1, + sym_comment, + STATE(2873), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6057), 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, + [90192] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6061), 1, + sym__entry_separator, + ACTIONS(6063), 1, + sym_raw_string_begin, + ACTIONS(6116), 1, + anon_sym_RBRACE, + STATE(2859), 1, + sym_comment, + STATE(2873), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6057), 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, + [90258] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3043), 1, + STATE(2860), 1, sym_comment, - ACTIONS(2441), 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(2443), 43, + ACTIONS(994), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -322051,21 +307286,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97407] = 5, + [90318] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6166), 1, - sym__newline, - STATE(3044), 2, + STATE(2861), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1284), 15, - anon_sym_DOLLAR, + ACTIONS(946), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -322074,12 +307306,16 @@ 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_record_token1, - ACTIONS(1286), 32, + aux_sym__unquoted_in_list_token1, + ACTIONS(948), 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, @@ -322098,8 +307334,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, @@ -322108,19 +307342,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, - [97469] = 4, + [90378] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3045), 1, + STATE(2862), 1, sym_comment, - ACTIONS(1927), 6, + ACTIONS(2282), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1929), 43, + ACTIONS(2284), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -322164,78 +307398,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97529] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6119), 1, - sym__entry_separator, - ACTIONS(6121), 1, - sym_raw_string_begin, - ACTIONS(6169), 1, - anon_sym_RBRACE, - STATE(2996), 1, - aux_sym__multiple_types_repeat1, - STATE(3046), 1, - sym_comment, - ACTIONS(6115), 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, - [97595] = 4, + [90438] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3047), 1, + STATE(2863), 1, sym_comment, - ACTIONS(982), 6, + ACTIONS(2394), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(984), 43, + ACTIONS(2396), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -322279,19 +307454,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97655] = 4, + [90498] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3048), 1, + STATE(2864), 1, sym_comment, - ACTIONS(2430), 6, + ACTIONS(2286), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2432), 43, + ACTIONS(2288), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -322335,103 +307510,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97715] = 6, + [90558] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6171), 1, - anon_sym_DOT, - ACTIONS(6173), 1, + ACTIONS(6118), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6120), 1, aux_sym__immediate_decimal_token2, - STATE(3049), 1, + STATE(2865), 1, sym_comment, - ACTIONS(1666), 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(1668), 33, + ACTIONS(1686), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1688), 40, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [90622] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2866), 1, + sym_comment, + ACTIONS(950), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(952), 43, 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_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, - 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, - [97779] = 4, - ACTIONS(3), 1, + [90682] = 5, + ACTIONS(245), 1, anon_sym_POUND, - STATE(3050), 1, + ACTIONS(5989), 1, + aux_sym__immediate_decimal_token2, + STATE(2867), 1, sym_comment, - ACTIONS(6177), 3, - sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(6175), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1499), 17, anon_sym_DOLLAR, - anon_sym_LBRACE, + anon_sym_DASH2, 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, @@ -322440,65 +307647,32 @@ 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, - [97839] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6119), 1, - sym__entry_separator, - ACTIONS(6121), 1, + aux_sym_unquoted_token1, + aux_sym_unquoted_token2, + ACTIONS(1501), 31, sym_raw_string_begin, - ACTIONS(6179), 1, - anon_sym_RBRACE, - STATE(2996), 1, - aux_sym__multiple_types_repeat1, - STATE(3051), 1, - sym_comment, - ACTIONS(6115), 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_DASH_DASH, + 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, - aux_sym__val_number_token1, - aux_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_filesize_unit, + sym_duration_unit, 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, @@ -322507,21 +307681,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, - [97905] = 7, + [90744] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6119), 1, + ACTIONS(6061), 1, sym__entry_separator, - ACTIONS(6121), 1, + ACTIONS(6063), 1, sym_raw_string_begin, - ACTIONS(6181), 1, + ACTIONS(6122), 1, anon_sym_RBRACE, - STATE(2996), 1, - aux_sym__multiple_types_repeat1, - STATE(3052), 1, + STATE(2868), 1, sym_comment, - ACTIONS(6115), 45, + STATE(2873), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6057), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -322567,80 +307740,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [97971] = 5, + [90810] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6101), 1, - aux_sym__immediate_decimal_token2, - STATE(3053), 1, + STATE(2869), 1, sym_comment, - ACTIONS(1666), 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(1668), 33, + 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(1869), 43, 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_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, - 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, - [98033] = 5, + [90870] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6183), 1, - anon_sym_LBRACK2, - STATE(3054), 1, - sym_comment, - ACTIONS(2294), 2, - sym_raw_string_begin, + ACTIONS(6061), 1, sym__entry_separator, - ACTIONS(2290), 46, + ACTIONS(6063), 1, + sym_raw_string_begin, + ACTIONS(6124), 1, + anon_sym_RBRACE, + STATE(2870), 1, + sym_comment, + STATE(2873), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6057), 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, @@ -322680,194 +307854,136 @@ static const 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, - [98095] = 6, + aux_sym_unquoted_token1, + [90936] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6185), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6187), 1, - aux_sym__immediate_decimal_token2, - STATE(3055), 1, - sym_comment, - ACTIONS(1648), 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(1650), 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, - [98159] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5552), 1, - aux_sym__unquoted_in_list_token2, - STATE(3056), 1, + STATE(2871), 1, sym_comment, - ACTIONS(1591), 2, + ACTIONS(2362), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2364), 43, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1579), 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, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, - [98221] = 4, + [90996] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3057), 1, + STATE(2872), 1, sym_comment, - ACTIONS(1492), 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(1494), 41, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [98281] = 4, + ACTIONS(2409), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2411), 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, + [91056] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3058), 1, - sym_comment, - ACTIONS(6191), 3, + ACTIONS(2403), 1, sym_raw_string_begin, - anon_sym_LPAREN2, + ACTIONS(6126), 1, sym__entry_separator, - ACTIONS(6189), 46, + STATE(2873), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + ACTIONS(2398), 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, @@ -322907,26 +308023,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, - aux_sym__unquoted_in_list_token1, - [98341] = 7, - ACTIONS(3), 1, + aux_sym_unquoted_token1, + [91118] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6119), 1, - sym__entry_separator, - ACTIONS(6121), 1, + STATE(2874), 1, + sym_comment, + ACTIONS(5125), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5123), 43, sym_raw_string_begin, - ACTIONS(6193), 1, - anon_sym_RBRACE, - STATE(2996), 1, - aux_sym__multiple_types_repeat1, - STATE(3059), 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, + 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, + [91178] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6005), 1, + aux_sym__immediate_decimal_token2, + STATE(2875), 1, sym_comment, - ACTIONS(6115), 45, + ACTIONS(1703), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1701), 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, @@ -322966,20 +308136,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, - [98407] = 4, + aux_sym__unquoted_in_list_token1, + [91240] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3060), 1, + STATE(2876), 1, sym_comment, - ACTIONS(2296), 6, + ACTIONS(2382), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2298), 43, + ACTIONS(2384), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -323023,69 +308193,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98467] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3061), 1, - sym_comment, - ACTIONS(1484), 17, - 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_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, - aux_sym_unquoted_token2, - ACTIONS(1486), 31, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - 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_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, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [98526] = 5, + [91300] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5834), 1, - aux_sym__unquoted_in_list_token2, - STATE(3062), 1, + ACTIONS(6129), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6131), 1, + aux_sym__immediate_decimal_token2, + STATE(2877), 1, sym_comment, - ACTIONS(1579), 14, + ACTIONS(1686), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -323100,62 +308217,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(1591), 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, - [98587] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3063), 1, - sym_comment, - ACTIONS(2416), 2, + ACTIONS(1688), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2414), 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, @@ -323165,21 +308239,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, @@ -323188,45 +308251,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_in_list_token1, - [98646] = 4, - ACTIONS(3), 1, + [91364] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(3064), 1, + STATE(2878), 1, sym_comment, - ACTIONS(2420), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2418), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(950), 15, 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_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -323235,37 +308271,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, - [98705] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3065), 1, - sym_comment, - ACTIONS(2424), 2, + ACTIONS(952), 34, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2422), 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_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_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -323275,21 +308295,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, @@ -323298,23 +308307,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, - [98764] = 5, + [91424] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6137), 1, - aux_sym__immediate_decimal_token2, - STATE(3066), 1, + STATE(2879), 1, sym_comment, - ACTIONS(1666), 7, + ACTIONS(1499), 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(1668), 40, + ACTIONS(1501), 41, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -323355,187 +308362,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [98825] = 4, - ACTIONS(3), 1, + sym_duration_unit, + [91484] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(3067), 1, + STATE(2880), 1, sym_comment, - ACTIONS(1853), 2, + ACTIONS(982), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(984), 43, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1851), 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, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, - [98884] = 4, - ACTIONS(3), 1, + [91544] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(3068), 1, + STATE(2881), 1, sym_comment, - ACTIONS(2428), 2, + ACTIONS(2421), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2423), 43, 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, - 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, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, - [98943] = 4, - ACTIONS(3), 1, + [91604] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(3069), 1, + STATE(2882), 1, sym_comment, - ACTIONS(2432), 2, + ACTIONS(2374), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2376), 43, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2430), 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, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, - [99002] = 5, + [91664] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6195), 1, - aux_sym__immediate_decimal_token2, - STATE(3070), 1, + STATE(2883), 1, sym_comment, - ACTIONS(1719), 7, + ACTIONS(1491), 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(1721), 40, + ACTIONS(1493), 41, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -323576,70 +308586,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [99063] = 4, - ACTIONS(3), 1, + sym_duration_unit, + [91724] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(3071), 1, + STATE(2884), 1, sym_comment, - ACTIONS(1881), 2, + ACTIONS(2425), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2427), 43, 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, - 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, - [99122] = 4, + [91784] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3072), 1, + STATE(2885), 1, sym_comment, - ACTIONS(1915), 2, + ACTIONS(976), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1913), 46, + ACTIONS(974), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -323669,6 +308681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -323686,241 +308699,361 @@ 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, - [99181] = 4, - ACTIONS(3), 1, + [91844] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(3073), 1, + STATE(2886), 1, + sym_comment, + ACTIONS(1579), 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(1581), 41, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [91904] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2887), 1, sym_comment, - ACTIONS(1947), 2, + ACTIONS(1833), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1835), 43, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1945), 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, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, - [99240] = 4, - ACTIONS(3), 1, + [91964] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(3074), 1, + STATE(2888), 1, + sym_comment, + ACTIONS(1678), 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(1680), 41, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [92024] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2889), 1, sym_comment, - ACTIONS(2443), 2, + ACTIONS(2260), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2262), 43, 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_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, - [99299] = 4, - ACTIONS(3), 1, + [92084] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(3075), 1, + STATE(2890), 1, sym_comment, - ACTIONS(1885), 2, + 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(1865), 43, 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, - 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, - [99358] = 4, + sym__str_single_quotes, + sym__str_back_ticks, + [92144] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3076), 1, + STATE(2891), 1, sym_comment, - ACTIONS(1492), 17, - 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_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, - aux_sym_unquoted_token2, - ACTIONS(1494), 31, + ACTIONS(5113), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5111), 43, sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + 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, - 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_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, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [99417] = 4, + [92204] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3077), 1, - sym_comment, - ACTIONS(2447), 2, - sym_raw_string_begin, + ACTIONS(6061), 1, sym__entry_separator, - ACTIONS(2445), 46, + ACTIONS(6063), 1, + sym_raw_string_begin, + ACTIONS(6133), 1, + anon_sym_RBRACE, + STATE(2873), 1, + aux_sym__multiple_types_repeat1, + STATE(2892), 1, + sym_comment, + ACTIONS(6057), 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, @@ -323960,22 +309093,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, - aux_sym__unquoted_in_list_token1, - [99476] = 4, + aux_sym_unquoted_token1, + [92270] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3078), 1, - sym_comment, - ACTIONS(2451), 2, - sym_raw_string_begin, + ACTIONS(6061), 1, sym__entry_separator, - ACTIONS(2449), 46, + ACTIONS(6063), 1, + sym_raw_string_begin, + ACTIONS(6135), 1, + anon_sym_RBRACE, + STATE(2873), 1, + aux_sym__multiple_types_repeat1, + STATE(2893), 1, + sym_comment, + ACTIONS(6057), 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, @@ -324015,185 +309152,300 @@ static const 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, - [99535] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token1, + [92336] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(3079), 1, + STATE(2894), 1, sym_comment, - ACTIONS(1893), 2, + 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(1873), 43, 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_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, - [99594] = 4, - ACTIONS(3), 1, + [92396] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(3080), 1, + STATE(2895), 1, sym_comment, - ACTIONS(1933), 2, + ACTIONS(2264), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2266), 43, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1931), 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, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, - [99653] = 4, + [92456] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3081), 1, + STATE(2896), 1, sym_comment, - ACTIONS(1538), 17, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(1829), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1831), 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, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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, - aux_sym_unquoted_token2, - ACTIONS(1540), 31, + 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, + [92516] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2897), 1, + sym_comment, + ACTIONS(5117), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5115), 43, sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, + 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, - 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_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, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [99712] = 4, + [92576] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(3082), 1, + ACTIONS(6137), 1, + aux_sym__immediate_decimal_token2, + STATE(2898), 1, sym_comment, - ACTIONS(1715), 17, - anon_sym_DOLLAR, + ACTIONS(1760), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1762), 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, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [92638] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2899), 1, + sym_comment, + ACTIONS(942), 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, + anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -324202,32 +309454,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_token1, - aux_sym_unquoted_token2, - ACTIONS(1717), 31, + aux_sym__unquoted_in_list_token1, + ACTIONS(944), 34, sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + 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_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, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -324236,15 +309490,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, - [99771] = 4, + [92698] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3083), 1, + STATE(2900), 1, sym_comment, - ACTIONS(2455), 2, + ACTIONS(2340), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2453), 46, + ACTIONS(2338), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -324291,44 +309545,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, - [99830] = 4, - ACTIONS(3), 1, + [92757] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(3084), 1, + STATE(2901), 1, sym_comment, - ACTIONS(2298), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2296), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(1686), 15, 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, @@ -324337,37 +309564,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, - [99889] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3085), 1, - sym_comment, - ACTIONS(1937), 2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1688), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1935), 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, @@ -324377,21 +309588,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, @@ -324400,16 +309600,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, - [99948] = 4, + [92816] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3086), 1, + STATE(2902), 1, sym_comment, - ACTIONS(2463), 2, + ACTIONS(2423), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2461), 46, + ACTIONS(2421), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -324456,15 +309655,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, - [100007] = 4, + [92875] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3087), 1, + STATE(2903), 1, sym_comment, - ACTIONS(2467), 2, + ACTIONS(2427), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2465), 46, + ACTIONS(2425), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -324511,181 +309710,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, - [100066] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3088), 1, - sym_comment, - ACTIONS(1666), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1668), 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, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [100125] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6197), 1, - sym__newline, - STATE(3089), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1284), 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(1286), 31, - sym_raw_string_begin, - 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, - [100186] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3090), 1, - sym_comment, - ACTIONS(1648), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1650), 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, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [100245] = 4, + [92934] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3091), 1, + STATE(2904), 1, sym_comment, - ACTIONS(2322), 2, + ACTIONS(1835), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2320), 46, + ACTIONS(1833), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -324732,192 +309765,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, - [100304] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(1813), 1, - anon_sym_LPAREN2, - ACTIONS(6200), 1, - anon_sym_DOT_DOT2, - STATE(3092), 1, - sym_comment, - ACTIONS(6202), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1811), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1819), 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_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [100371] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3093), 1, - sym_comment, - ACTIONS(1719), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1721), 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, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [100430] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3094), 1, - sym_comment, - ACTIONS(1790), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1792), 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, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [100489] = 6, + [92993] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6119), 1, - sym__entry_separator, - ACTIONS(6121), 1, - sym_raw_string_begin, - STATE(2996), 1, - aux_sym__multiple_types_repeat1, - STATE(3095), 1, + STATE(2905), 1, sym_comment, - ACTIONS(6115), 45, + ACTIONS(1989), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1987), 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, @@ -324957,16 +309819,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, - [100552] = 4, + aux_sym__unquoted_in_list_token1, + [93052] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3096), 1, + STATE(2906), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(2262), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2009), 46, + ACTIONS(2260), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -325013,71 +309875,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, - [100611] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym__unquoted_in_list_token2, - STATE(3097), 1, - sym_comment, - ACTIONS(1811), 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(1819), 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, - [100672] = 4, + [93111] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3098), 1, + STATE(2907), 1, sym_comment, - ACTIONS(2023), 2, + ACTIONS(1865), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2017), 46, + ACTIONS(1863), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -325124,15 +309930,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, - [100731] = 4, + [93170] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3099), 1, + STATE(2908), 1, sym_comment, - ACTIONS(2031), 2, + ACTIONS(1995), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2025), 46, + ACTIONS(1993), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -325179,74 +309985,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, - [100790] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - ACTIONS(6204), 1, - anon_sym_DOT_DOT2, - STATE(3100), 1, - sym_comment, - ACTIONS(6206), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1778), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1786), 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_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [100857] = 4, + [93229] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3101), 1, + STATE(2909), 1, sym_comment, - ACTIONS(2330), 2, + ACTIONS(1873), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2328), 46, + ACTIONS(1871), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -325293,28 +310040,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, - [100916] = 4, - ACTIONS(3), 1, + [93288] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(3102), 1, + STATE(2910), 1, sym_comment, - ACTIONS(2334), 2, + ACTIONS(1797), 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(1799), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2332), 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, @@ -325324,21 +310083,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, @@ -325347,16 +310095,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, - [100975] = 4, + [93347] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3103), 1, + STATE(2911), 1, sym_comment, - ACTIONS(2338), 2, + ACTIONS(2266), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2336), 46, + ACTIONS(2264), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -325403,70 +310150,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, - [101034] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3104), 1, - sym_comment, - ACTIONS(1666), 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(1668), 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, - [101093] = 4, + [93406] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3105), 1, + STATE(2912), 1, sym_comment, - ACTIONS(2344), 2, + ACTIONS(1831), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2342), 46, + ACTIONS(1829), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -325513,15 +310205,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, - [101152] = 4, + [93465] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3106), 1, + STATE(2913), 1, sym_comment, - ACTIONS(2348), 2, + ACTIONS(2272), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2346), 46, + ACTIONS(2270), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -325568,12 +310260,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, - [101211] = 4, + [93524] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(3107), 1, + ACTIONS(6107), 1, + aux_sym__immediate_decimal_token2, + STATE(2914), 1, sym_comment, - ACTIONS(1648), 15, + ACTIONS(1701), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -325588,8 +310282,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(1650), 33, + ACTIONS(1703), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -325623,15 +310316,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, - [101270] = 4, + [93585] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3108), 1, + STATE(2915), 1, sym_comment, - ACTIONS(2352), 2, + ACTIONS(2276), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2350), 46, + ACTIONS(2274), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -325678,28 +310371,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, - [101329] = 4, - ACTIONS(3), 1, + [93644] = 5, + ACTIONS(245), 1, anon_sym_POUND, - STATE(3109), 1, + ACTIONS(6139), 1, + aux_sym__immediate_decimal_token2, + STATE(2916), 1, sym_comment, - ACTIONS(2039), 2, + ACTIONS(1760), 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(1762), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2033), 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, @@ -325709,21 +310415,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, @@ -325732,13 +310427,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_in_list_token1, - [101388] = 4, + [93705] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(3110), 1, + ACTIONS(6141), 1, + sym__newline, + STATE(2917), 2, sym_comment, - ACTIONS(1790), 15, + aux_sym_shebang_repeat1, + ACTIONS(1272), 15, + anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -325752,14 +310450,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, - aux_sym__unquoted_in_list_token2, - ACTIONS(1792), 33, + aux_sym_unquoted_token1, + ACTIONS(1274), 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, @@ -325788,70 +310483,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, - [101447] = 4, - ACTIONS(3), 1, + [93766] = 8, + ACTIONS(245), 1, anon_sym_POUND, - STATE(3111), 1, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + ACTIONS(6144), 1, + anon_sym_DOT_DOT2, + STATE(2918), 1, sym_comment, - ACTIONS(2356), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2354), 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, - [101506] = 4, + ACTIONS(6146), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1805), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1813), 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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [93833] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3112), 1, + STATE(2919), 1, sym_comment, - ACTIONS(2360), 2, + ACTIONS(1703), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2358), 46, + ACTIONS(1701), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -325898,15 +310597,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, - [101565] = 4, + [93892] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3113), 1, + STATE(2920), 1, sym_comment, - ACTIONS(2364), 2, + ACTIONS(1688), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2362), 46, + ACTIONS(1686), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -325953,15 +310652,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, - [101624] = 4, + [93951] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3114), 1, + STATE(2921), 1, sym_comment, - ACTIONS(2368), 2, + ACTIONS(1762), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2366), 46, + ACTIONS(1760), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -326008,41 +310707,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, - [101683] = 5, - ACTIONS(245), 1, + [94010] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1788), 1, - aux_sym__unquoted_in_list_token2, - STATE(3115), 1, + STATE(2922), 1, sym_comment, - ACTIONS(2041), 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(2043), 33, + ACTIONS(1799), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1797), 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, @@ -326052,10 +310738,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, @@ -326064,19 +310761,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, - [101744] = 5, + aux_sym__unquoted_in_list_token1, + [94069] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1788), 1, - aux_sym__unquoted_in_list_token2, - STATE(3116), 1, + STATE(2923), 1, sym_comment, - ACTIONS(1778), 14, + ACTIONS(970), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -326086,7 +310783,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(1786), 33, + ACTIONS(972), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -326120,38 +310817,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [101805] = 4, + [94128] = 8, ACTIONS(245), 1, anon_sym_POUND, - STATE(3117), 1, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + ACTIONS(6148), 1, + anon_sym_DOT_DOT2, + STATE(2924), 1, sym_comment, - ACTIONS(1280), 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_record_token1, - ACTIONS(1278), 33, - sym_raw_string_begin, + ACTIONS(6150), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1782), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1790), 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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [94195] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2925), 1, + sym_comment, + ACTIONS(1979), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1973), 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, @@ -326161,12 +310907,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, @@ -326175,19 +310930,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, - [101864] = 5, + aux_sym__unquoted_in_list_token1, + [94254] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6173), 1, - aux_sym__immediate_decimal_token2, - STATE(3118), 1, + STATE(2926), 1, sym_comment, - ACTIONS(1666), 14, + ACTIONS(974), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -326197,7 +310952,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(1668), 33, + ACTIONS(976), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -326231,19 +310986,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, - [101925] = 5, + [94313] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6208), 1, - aux_sym__immediate_decimal_token2, - STATE(3119), 1, + STATE(2927), 1, sym_comment, - ACTIONS(1719), 14, + ACTIONS(978), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -326253,7 +311007,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(980), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -326287,21 +311041,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, - [101986] = 4, + [94372] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3120), 1, + ACTIONS(2168), 1, + aux_sym__unquoted_in_list_token4, + STATE(2928), 1, sym_comment, - ACTIONS(1668), 2, + ACTIONS(2166), 9, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1666), 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(2162), 38, + anon_sym_DOLLAR, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -326322,9 +311080,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, @@ -326342,21 +311097,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, - [102045] = 4, + [94433] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3121), 1, + STATE(2929), 1, sym_comment, - ACTIONS(1650), 2, + ACTIONS(2431), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1648), 46, + ACTIONS(2429), 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, @@ -326396,22 +311151,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, - aux_sym__unquoted_in_list_token1, - [102104] = 4, + aux_sym_unquoted_token1, + [94492] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3122), 1, + ACTIONS(2074), 1, + aux_sym__unquoted_in_list_token4, + STATE(2930), 1, sym_comment, - ACTIONS(1721), 2, + ACTIONS(2130), 9, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1719), 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(2128), 38, + anon_sym_DOLLAR, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -326432,9 +311191,62 @@ static const uint16_t ts_small_parse_table[] = { 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, + [94553] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2074), 1, + aux_sym__unquoted_in_list_token4, + STATE(2931), 1, + sym_comment, + ACTIONS(2072), 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(2068), 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, @@ -326452,17 +311264,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, - [102163] = 4, + [94614] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3123), 1, - sym_comment, - ACTIONS(1792), 2, - sym_raw_string_begin, + ACTIONS(1869), 1, sym__entry_separator, - ACTIONS(1790), 46, - anon_sym_LBRACK, + ACTIONS(6154), 1, anon_sym_RBRACK, + ACTIONS(6157), 1, + sym_raw_string_begin, + STATE(2932), 1, + sym_comment, + ACTIONS(6152), 45, + anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -326507,14 +311321,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, - [102222] = 5, + [94677] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1470), 1, + ACTIONS(1447), 1, aux_sym__unquoted_in_list_token2, - STATE(3124), 1, + STATE(2933), 1, sym_comment, - ACTIONS(2049), 14, + ACTIONS(1805), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -326529,7 +311343,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(2053), 33, + ACTIONS(1813), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -326563,14 +311377,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, - [102283] = 5, + [94738] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2065), 1, + ACTIONS(5760), 1, aux_sym__unquoted_in_list_token2, - STATE(3125), 1, + STATE(2934), 1, sym_comment, - ACTIONS(2059), 14, + ACTIONS(1616), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -326585,7 +311399,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(2063), 33, + ACTIONS(1628), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -326619,14 +311433,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, - [102344] = 5, + [94799] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2192), 1, - aux_sym__unquoted_in_list_token4, - STATE(3126), 1, + STATE(2935), 1, sym_comment, - ACTIONS(6027), 9, + ACTIONS(2078), 9, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -326636,7 +311448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(6022), 38, + ACTIONS(2076), 39, anon_sym_DOLLAR, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -326675,15 +311487,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, - [102405] = 4, + aux_sym__unquoted_in_list_token4, + [94858] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3127), 1, + STATE(2936), 1, sym_comment, - ACTIONS(1965), 2, + ACTIONS(952), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1963), 46, + ACTIONS(950), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -326730,15 +311543,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, - [102464] = 4, + [94917] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3128), 1, + STATE(2937), 1, sym_comment, - ACTIONS(1969), 2, + ACTIONS(944), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1967), 46, + ACTIONS(942), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -326785,19 +311598,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, - [102523] = 6, + [94976] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1961), 1, - sym__entry_separator, - ACTIONS(6212), 1, - anon_sym_RBRACK, - ACTIONS(6215), 1, - sym_raw_string_begin, - STATE(3129), 1, + STATE(2938), 1, sym_comment, - ACTIONS(6210), 45, + ACTIONS(956), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(954), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -326842,21 +311653,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, - [102586] = 4, + [95035] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3130), 1, + STATE(2939), 1, sym_comment, - ACTIONS(2487), 2, + ACTIONS(948), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2485), 46, + ACTIONS(946), 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, @@ -326896,19 +311707,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_token1, - [102645] = 4, + aux_sym__unquoted_in_list_token1, + [95094] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3131), 1, + STATE(2940), 1, sym_comment, - ACTIONS(970), 15, + ACTIONS(1287), 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_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -326917,14 +311728,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(972), 33, + aux_sym__unquoted_in_record_token1, + ACTIONS(1285), 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_EQ, anon_sym_DOT_DOT_LT, @@ -326944,6 +311753,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, @@ -326952,40 +311763,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, - [102704] = 4, - ACTIONS(245), 1, + [95153] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3132), 1, + STATE(2941), 1, sym_comment, - ACTIONS(978), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_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, - aux_sym__unquoted_in_list_token1, - ACTIONS(980), 33, + ACTIONS(984), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(982), 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, @@ -326995,30 +311794,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, - [102763] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3133), 1, - sym_comment, - ACTIONS(974), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -327027,20 +311809,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(976), 33, + [95212] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5859), 1, + anon_sym_RBRACK, + ACTIONS(5865), 1, + sym__entry_separator, + ACTIONS(5867), 1, sym_raw_string_begin, + STATE(2942), 1, + sym_comment, + ACTIONS(5857), 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, @@ -327050,10 +311851,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, @@ -327062,15 +311874,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, - [102822] = 5, + aux_sym__unquoted_in_list_token1, + [95275] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6217), 1, - anon_sym_LBRACK2, - STATE(3134), 1, + ACTIONS(1792), 1, + aux_sym__unquoted_in_list_token2, + STATE(2943), 1, sym_comment, - ACTIONS(2290), 15, - anon_sym_LBRACK, + ACTIONS(2134), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -327085,8 +311897,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(2294), 32, + ACTIONS(2136), 33, sym_raw_string_begin, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, @@ -327118,25 +311931,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, - [102883] = 5, + [95336] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2200), 1, - aux_sym__unquoted_in_list_token4, - STATE(3135), 1, - sym_comment, - ACTIONS(2198), 9, + ACTIONS(994), 1, + sym__entry_separator, + ACTIONS(5885), 1, + anon_sym_RBRACK, + ACTIONS(5888), 1, sym_raw_string_begin, + STATE(2944), 1, + sym_comment, + ACTIONS(5883), 45, 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(2194), 38, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -327157,62 +311968,9 @@ static const uint16_t ts_small_parse_table[] = { 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, - [102944] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2095), 1, - aux_sym__unquoted_in_list_token4, - STATE(3136), 1, - sym_comment, - ACTIONS(2204), 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(2202), 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, @@ -327230,45 +311988,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, - [103005] = 5, - ACTIONS(3), 1, + [95399] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2095), 1, - aux_sym__unquoted_in_list_token4, - STATE(3137), 1, + ACTIONS(1792), 1, + aux_sym__unquoted_in_list_token2, + STATE(2945), 1, sym_comment, - ACTIONS(2093), 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(2089), 38, - anon_sym_DOLLAR, + ACTIONS(1782), 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_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -327277,39 +312009,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, - [103066] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3138), 1, - sym_comment, - ACTIONS(2047), 9, + ACTIONS(1790), 33, 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(2045), 39, anon_sym_DOLLAR, - anon_sym_DOT_DOT, + 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_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -327319,18 +312032,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_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -327339,25 +312044,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, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token4, - [103125] = 9, + [95460] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4673), 1, + ACTIONS(4581), 1, anon_sym_DOT_DOT2, - ACTIONS(6219), 1, + ACTIONS(6159), 1, sym_filesize_unit, - ACTIONS(6221), 1, + ACTIONS(6161), 1, sym_duration_unit, - ACTIONS(6223), 1, + ACTIONS(6163), 1, aux_sym_unquoted_token2, - STATE(3139), 1, + STATE(2946), 1, sym_comment, - ACTIONS(4675), 2, + ACTIONS(4583), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1579), 15, + ACTIONS(1616), 15, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -327373,7 +312076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1591), 27, + ACTIONS(1628), 27, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -327401,15 +312104,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, - [103194] = 4, + [95529] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3140), 1, + STATE(2947), 1, sym_comment, - ACTIONS(960), 2, + ACTIONS(2300), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(958), 46, + ACTIONS(2298), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -327456,28 +312159,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, - [103253] = 4, - ACTIONS(3), 1, + [95588] = 5, + ACTIONS(245), 1, anon_sym_POUND, - STATE(3141), 1, + ACTIONS(6165), 1, + anon_sym_LBRACK2, + STATE(2948), 1, sym_comment, - ACTIONS(956), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(954), 46, + ACTIONS(2230), 15, anon_sym_LBRACK, + 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(2234), 32, + sym_raw_string_begin, 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, @@ -327487,21 +312203,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, @@ -327510,22 +312215,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, - aux_sym__unquoted_in_list_token1, - [103312] = 4, + [95649] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3142), 1, + ACTIONS(2106), 1, + aux_sym__unquoted_in_list_token4, + STATE(2949), 1, sym_comment, - ACTIONS(964), 2, + ACTIONS(5888), 9, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(962), 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(5883), 38, + anon_sym_DOLLAR, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -327546,9 +312254,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, @@ -327566,15 +312271,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, - [103371] = 4, + [95710] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3143), 1, + STATE(2950), 1, sym_comment, - ACTIONS(968), 2, + ACTIONS(1955), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(966), 46, + ACTIONS(1949), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -327621,19 +312326,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, - [103430] = 6, + [95769] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6012), 1, - anon_sym_RBRACK, - ACTIONS(6018), 1, - sym__entry_separator, - ACTIONS(6020), 1, - sym_raw_string_begin, - STATE(3144), 1, + STATE(2951), 1, sym_comment, - ACTIONS(6010), 45, + ACTIONS(1963), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1957), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -327678,46 +312381,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, - [103493] = 6, - ACTIONS(3), 1, + [95828] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(994), 1, - sym__entry_separator, - ACTIONS(6024), 1, - anon_sym_RBRACK, - ACTIONS(6027), 1, - sym_raw_string_begin, - STATE(3145), 1, + ACTIONS(1477), 1, + aux_sym__unquoted_in_list_token2, + STATE(2952), 1, sym_comment, - ACTIONS(6022), 45, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(2138), 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, @@ -327726,37 +312402,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, - [103556] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3146), 1, - sym_comment, - ACTIONS(1591), 2, + ACTIONS(2142), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1579), 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, @@ -327766,21 +312425,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, @@ -327789,16 +312437,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, - [103615] = 4, + [95889] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3147), 1, + STATE(2953), 1, sym_comment, - ACTIONS(984), 2, + ACTIONS(1971), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(982), 46, + ACTIONS(1965), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -327845,28 +312492,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, - [103674] = 4, - ACTIONS(3), 1, + [95948] = 5, + ACTIONS(245), 1, anon_sym_POUND, - STATE(3148), 1, + ACTIONS(2150), 1, + aux_sym__unquoted_in_list_token2, + STATE(2954), 1, sym_comment, - ACTIONS(2408), 2, + ACTIONS(2144), 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(2148), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2406), 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, @@ -327876,21 +312536,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, @@ -327899,16 +312548,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, - [103733] = 4, + [96009] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6081), 1, + aux_sym__immediate_decimal_token2, + STATE(2955), 1, + sym_comment, + ACTIONS(1701), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 40, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [96070] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6167), 1, + aux_sym__immediate_decimal_token2, + STATE(2956), 1, + sym_comment, + ACTIONS(1760), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1762), 40, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [96131] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3149), 1, + STATE(2957), 1, sym_comment, - ACTIONS(2412), 2, + ACTIONS(2304), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2410), 46, + ACTIONS(2302), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -327955,40 +312715,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, - [103792] = 4, - ACTIONS(245), 1, + [96190] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3150), 1, + STATE(2958), 1, sym_comment, - ACTIONS(1719), 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(1721), 33, + ACTIONS(2308), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2306), 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, @@ -327998,29 +312746,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, - [103851] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3151), 1, - sym_comment, - ACTIONS(2445), 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, @@ -328029,20 +312761,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(2447), 33, + [96249] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2959), 1, + sym_comment, + ACTIONS(2312), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2310), 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, @@ -328052,10 +312801,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, @@ -328064,76 +312824,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, - [103909] = 9, + aux_sym__unquoted_in_list_token1, + [96308] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4772), 1, - anon_sym_DOT2, - STATE(1340), 1, - aux_sym_cell_path_repeat1, - STATE(1450), 1, - sym_path, - STATE(2099), 1, - sym_cell_path, - STATE(3152), 1, + STATE(2960), 1, sym_comment, - ACTIONS(1941), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(6225), 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(1943), 25, + ACTIONS(1499), 17, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [103977] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3153), 1, - sym_comment, - ACTIONS(2033), 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, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -328142,33 +312846,32 @@ 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(2039), 33, + aux_sym_unquoted_token1, + aux_sym_unquoted_token2, + ACTIONS(1501), 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, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, + 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, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -328177,17 +312880,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, - [104035] = 4, + [96367] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3154), 1, + STATE(2961), 1, sym_comment, - ACTIONS(2342), 14, + ACTIONS(1491), 17, + 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, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -328196,33 +312901,32 @@ 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(2344), 33, + aux_sym_unquoted_token1, + aux_sym_unquoted_token2, + ACTIONS(1493), 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, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, + 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, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -328231,17 +312935,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, - [104093] = 4, + [96426] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3155), 1, + STATE(2962), 1, sym_comment, - ACTIONS(6189), 14, + ACTIONS(1579), 17, + 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, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -328250,33 +312956,32 @@ 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(6191), 33, + aux_sym_unquoted_token1, + aux_sym_unquoted_token2, + ACTIONS(1581), 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, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, + 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, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -328285,17 +312990,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, - [104151] = 4, + [96485] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3156), 1, + STATE(2963), 1, sym_comment, - ACTIONS(2418), 14, + ACTIONS(1678), 17, + 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, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -328304,33 +313011,32 @@ 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(2420), 33, + aux_sym_unquoted_token1, + aux_sym_unquoted_token2, + ACTIONS(1680), 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, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, + 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, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -328339,39 +313045,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, - [104209] = 4, - ACTIONS(245), 1, + [96544] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3157), 1, - sym_comment, - ACTIONS(2346), 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(2348), 33, + ACTIONS(6061), 1, + sym__entry_separator, + ACTIONS(6063), 1, sym_raw_string_begin, + STATE(2873), 1, + aux_sym__multiple_types_repeat1, + STATE(2964), 1, + sym_comment, + ACTIONS(6057), 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, 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, @@ -328381,10 +313078,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, @@ -328393,39 +313101,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, - [104267] = 4, - ACTIONS(245), 1, + aux_sym_unquoted_token1, + [96607] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3158), 1, + STATE(2965), 1, sym_comment, - ACTIONS(2422), 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(2424), 33, + ACTIONS(1628), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1616), 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, @@ -328435,10 +313133,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, @@ -328447,12 +313156,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, - [104325] = 4, + aux_sym__unquoted_in_list_token1, + [96666] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3159), 1, + STATE(2966), 1, sym_comment, - ACTIONS(1666), 7, + ACTIONS(1701), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -328460,8 +313170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1668), 40, - ts_builtin_sym_end, + ACTIONS(1703), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328473,8 +313182,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, @@ -328501,39 +313212,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [104383] = 4, - ACTIONS(245), 1, + [96725] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3160), 1, + STATE(2967), 1, sym_comment, - ACTIONS(6230), 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(6228), 33, + ACTIONS(2396), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2394), 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, @@ -328543,10 +313243,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, @@ -328555,17 +313266,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, - [104441] = 4, - ACTIONS(245), 1, + aux_sym__unquoted_in_list_token1, + [96784] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3161), 1, + STATE(2968), 1, sym_comment, - ACTIONS(6234), 14, + ACTIONS(2320), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2318), 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, @@ -328574,20 +313313,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(6232), 33, + [96843] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2969), 1, + sym_comment, + ACTIONS(2324), 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_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, @@ -328597,10 +313353,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, @@ -328609,12 +313376,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, - [104499] = 4, + aux_sym__unquoted_in_list_token1, + [96902] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3162), 1, + STATE(2970), 1, sym_comment, - ACTIONS(1648), 7, + ACTIONS(1686), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -328622,8 +313390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1650), 40, - ts_builtin_sym_end, + ACTIONS(1688), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328635,8 +313402,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, @@ -328663,39 +313432,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [104557] = 4, - ACTIONS(245), 1, + [96961] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3163), 1, + STATE(2971), 1, sym_comment, - ACTIONS(1851), 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(1853), 33, + ACTIONS(2407), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2405), 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, @@ -328705,10 +313463,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, @@ -328717,39 +313486,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, - [104615] = 4, + aux_sym__unquoted_in_list_token1, + [97020] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3164), 1, + STATE(2972), 1, sym_comment, - ACTIONS(2426), 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(2428), 33, + ACTIONS(1760), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1762), 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, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [97079] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2973), 1, + sym_comment, + ACTIONS(2328), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2326), 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, @@ -328759,10 +313573,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, @@ -328771,23 +313596,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, - [104673] = 6, + aux_sym__unquoted_in_list_token1, + [97138] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6236), 1, - anon_sym_DOT, - ACTIONS(6238), 1, - aux_sym__immediate_decimal_token2, - STATE(3165), 1, + STATE(2974), 1, sym_comment, - ACTIONS(1666), 6, + ACTIONS(1797), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1668), 39, + ACTIONS(1799), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328827,39 +313650,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [104735] = 4, - ACTIONS(245), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [97197] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3166), 1, + STATE(2975), 1, sym_comment, - ACTIONS(2430), 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(2432), 33, + ACTIONS(2332), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2330), 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, @@ -328869,10 +313683,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, @@ -328881,39 +313706,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, - [104793] = 4, - ACTIONS(245), 1, + aux_sym__unquoted_in_list_token1, + [97256] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3167), 1, + STATE(2976), 1, sym_comment, - ACTIONS(1879), 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(1881), 33, + ACTIONS(2336), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2334), 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, @@ -328923,10 +313738,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, @@ -328935,39 +313761,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, - [104851] = 4, - ACTIONS(245), 1, + aux_sym__unquoted_in_list_token1, + [97315] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3168), 1, + STATE(2977), 1, sym_comment, - ACTIONS(1913), 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(1915), 33, + ACTIONS(2344), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2342), 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, @@ -328977,10 +313793,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, @@ -328989,39 +313816,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, - [104909] = 4, - ACTIONS(245), 1, + aux_sym__unquoted_in_list_token1, + [97374] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3169), 1, + STATE(2978), 1, sym_comment, - ACTIONS(6175), 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(6177), 33, + ACTIONS(2411), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2409), 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, @@ -329031,10 +313848,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, @@ -329043,12 +313871,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, - [104967] = 4, + aux_sym__unquoted_in_list_token1, + [97433] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3170), 1, + STATE(2979), 1, sym_comment, - ACTIONS(1945), 14, + ACTIONS(1701), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329063,7 +313892,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(1947), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1703), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329097,12 +313927,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, - [105025] = 4, + [97492] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3171), 1, + STATE(2980), 1, sym_comment, - ACTIONS(2441), 14, + ACTIONS(1760), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329117,7 +313947,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(2443), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1762), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329151,12 +313982,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105083] = 4, + [97551] = 8, ACTIONS(245), 1, anon_sym_POUND, - STATE(3172), 1, + ACTIONS(2584), 1, + anon_sym_DOT_DOT2, + ACTIONS(6169), 1, + sym_filesize_unit, + ACTIONS(6171), 1, + sym_duration_unit, + STATE(2981), 1, + sym_comment, + ACTIONS(2586), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1616), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1628), 37, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [97617] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2982), 1, sym_comment, - ACTIONS(1883), 14, + ACTIONS(2394), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329171,7 +314060,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(1885), 33, + ACTIONS(2396), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329205,12 +314094,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105141] = 4, + [97675] = 8, ACTIONS(245), 1, anon_sym_POUND, - STATE(3173), 1, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + ACTIONS(6173), 1, + anon_sym_DOT_DOT2, + STATE(2983), 1, + sym_comment, + ACTIONS(6175), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1782), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1790), 37, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [97741] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2984), 1, sym_comment, - ACTIONS(6242), 14, + ACTIONS(6095), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329225,7 +314172,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(6240), 33, + ACTIONS(6097), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329259,12 +314206,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, - [105199] = 4, + [97799] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3174), 1, + STATE(2985), 1, sym_comment, - ACTIONS(2449), 14, + ACTIONS(982), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329279,7 +314226,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(2451), 33, + ACTIONS(984), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329313,12 +314260,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, - [105257] = 4, + [97857] = 8, ACTIONS(245), 1, anon_sym_POUND, - STATE(3175), 1, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + ACTIONS(6177), 1, + anon_sym_DOT_DOT2, + STATE(2986), 1, + sym_comment, + ACTIONS(6179), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1805), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1813), 37, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [97923] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2987), 1, + sym_comment, + ACTIONS(1701), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 40, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [97981] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2988), 1, sym_comment, - ACTIONS(1891), 14, + ACTIONS(950), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329333,7 +314392,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(1893), 33, + ACTIONS(952), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329367,12 +314426,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, - [105315] = 4, + [98039] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3176), 1, + STATE(2989), 1, + sym_comment, + ACTIONS(1686), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1688), 40, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [98097] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2990), 1, sym_comment, - ACTIONS(1931), 14, + ACTIONS(2421), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329387,7 +314500,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(1933), 33, + ACTIONS(2423), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329421,12 +314534,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, - [105373] = 4, + [98155] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3177), 1, + STATE(2991), 1, sym_comment, - ACTIONS(2453), 14, + ACTIONS(2264), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329441,7 +314554,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(2455), 33, + ACTIONS(2266), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329475,12 +314588,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, - [105431] = 4, + [98213] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3178), 1, + STATE(2992), 1, + sym_comment, + ACTIONS(1760), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1762), 40, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [98271] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2993), 1, + sym_comment, + ACTIONS(1797), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1799), 40, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [98329] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(2994), 1, sym_comment, - ACTIONS(2296), 14, + ACTIONS(2405), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329495,7 +314716,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(2298), 33, + ACTIONS(2407), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329529,12 +314750,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, - [105489] = 4, + [98387] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3179), 1, + STATE(2995), 1, sym_comment, - ACTIONS(1963), 14, + ACTIONS(1686), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329549,7 +314770,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(1965), 33, + ACTIONS(1688), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329583,12 +314804,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, - [105547] = 4, + [98445] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3180), 1, + STATE(2996), 1, sym_comment, - ACTIONS(1935), 14, + ACTIONS(1863), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329603,7 +314824,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(1937), 33, + ACTIONS(1865), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329637,12 +314858,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, - [105605] = 4, + [98503] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3181), 1, + STATE(2997), 1, sym_comment, - ACTIONS(2461), 14, + ACTIONS(1973), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329657,7 +314878,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(2463), 33, + ACTIONS(1979), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329691,12 +314912,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, - [105663] = 4, + [98561] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3182), 1, + STATE(2998), 1, sym_comment, - ACTIONS(2465), 14, + ACTIONS(1760), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329711,7 +314932,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(2467), 33, + ACTIONS(1762), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329745,12 +314966,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, - [105721] = 4, + [98619] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3183), 1, + STATE(2999), 1, sym_comment, - ACTIONS(1967), 14, + ACTIONS(6073), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329765,7 +314986,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(1969), 33, + ACTIONS(6075), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329799,12 +315020,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, - [105779] = 4, + [98677] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3184), 1, + STATE(3000), 1, sym_comment, - ACTIONS(1666), 14, + ACTIONS(5719), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329819,7 +315040,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(1668), 33, + ACTIONS(5726), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329853,12 +315074,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, - [105837] = 4, + [98735] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3185), 1, + STATE(3001), 1, sym_comment, - ACTIONS(1648), 14, + ACTIONS(2425), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329873,7 +315094,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(1650), 33, + ACTIONS(2427), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329907,70 +315128,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, - [105895] = 8, + [98793] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2564), 1, - anon_sym_DOT_DOT2, - ACTIONS(6244), 1, - sym_filesize_unit, - ACTIONS(6246), 1, - sym_duration_unit, - STATE(3186), 1, + STATE(3002), 1, sym_comment, - ACTIONS(2566), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1579), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1591), 37, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [105961] = 4, + ACTIONS(2409), 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(2411), 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, + [98851] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3187), 1, + STATE(3003), 1, sym_comment, - ACTIONS(1719), 14, + ACTIONS(1797), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329985,7 +315202,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(1799), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330019,12 +315236,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, - [106019] = 4, + [98909] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3188), 1, + STATE(3004), 1, sym_comment, - ACTIONS(1790), 14, + ACTIONS(946), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330039,7 +315256,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(1792), 33, + ACTIONS(948), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330073,12 +315290,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, - [106077] = 4, + [98967] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3189), 1, + STATE(3005), 1, sym_comment, - ACTIONS(2350), 14, + ACTIONS(1829), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330093,7 +315310,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(2352), 33, + ACTIONS(1831), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330127,13 +315344,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, - [106135] = 4, + [99025] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3190), 1, + STATE(3006), 1, sym_comment, - ACTIONS(1280), 15, - anon_sym__, + ACTIONS(2298), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330147,12 +315363,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(1278), 32, + aux_sym__unquoted_in_list_token1, + ACTIONS(2300), 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_EQ, @@ -330181,12 +315398,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, - [106193] = 4, + [99083] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3191), 1, + STATE(3007), 1, sym_comment, - ACTIONS(2354), 14, + ACTIONS(1949), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330201,7 +315418,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(2356), 33, + ACTIONS(1955), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330235,12 +315452,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, - [106251] = 4, + [99141] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3192), 1, + STATE(3008), 1, sym_comment, - ACTIONS(2336), 14, + ACTIONS(1957), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330255,7 +315472,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(2338), 33, + ACTIONS(1963), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330289,14 +315506,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, - [106309] = 5, + [99199] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6248), 1, - anon_sym_COMMA, - STATE(3193), 1, + STATE(3009), 1, sym_comment, - ACTIONS(6103), 14, + ACTIONS(1965), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330311,11 +315526,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(6107), 32, + ACTIONS(1971), 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, @@ -330344,21 +315560,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, - [106369] = 4, + [99257] = 9, ACTIONS(245), 1, anon_sym_POUND, - STATE(3194), 1, + ACTIONS(4722), 1, + anon_sym_DOT2, + STATE(1284), 1, + aux_sym_cell_path_repeat1, + STATE(1374), 1, + sym_path, + STATE(1904), 1, + sym_cell_path, + STATE(3010), 1, sym_comment, - ACTIONS(1719), 7, + ACTIONS(1915), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1721), 40, - ts_builtin_sym_end, + ACTIONS(6181), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -330370,6 +315591,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_RBRACE, + ACTIONS(1917), 25, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -330386,7 +315610,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, @@ -330396,14 +315619,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, - [106427] = 4, + [99325] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3195), 1, + STATE(3011), 1, sym_comment, - ACTIONS(2358), 14, + ACTIONS(942), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330418,7 +315639,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(2360), 33, + ACTIONS(944), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330452,12 +315673,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, - [106485] = 4, + [99383] = 9, ACTIONS(245), 1, anon_sym_POUND, - STATE(3196), 1, + ACTIONS(6184), 1, + anon_sym_LBRACK, + ACTIONS(6191), 1, + anon_sym_DASH_DASH, + ACTIONS(6194), 1, + anon_sym_DASH2, + STATE(3012), 2, + sym_comment, + aux_sym_overlay_hide_repeat1, + STATE(3300), 2, + sym_val_list, + sym__flag, + STATE(3302), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(6189), 12, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(6187), 27, + sym_raw_string_begin, + anon_sym_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_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + 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, + [99451] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(3013), 1, sym_comment, - ACTIONS(2362), 14, + ACTIONS(1833), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330472,7 +315752,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(2364), 33, + ACTIONS(1835), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330506,70 +315786,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, - [106543] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(1813), 1, - anon_sym_LPAREN2, - ACTIONS(6250), 1, - anon_sym_DOT_DOT2, - STATE(3197), 1, - sym_comment, - ACTIONS(6252), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1811), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1819), 37, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [106609] = 4, + [99509] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3198), 1, + STATE(3014), 1, sym_comment, - ACTIONS(2366), 14, + ACTIONS(1987), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330584,7 +315806,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(2368), 33, + ACTIONS(1989), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330618,12 +315840,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, - [106667] = 4, + [99567] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3199), 1, + STATE(3015), 1, sym_comment, - ACTIONS(2414), 14, + ACTIONS(954), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330638,7 +315860,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(2416), 33, + ACTIONS(956), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330672,28 +315894,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, - [106725] = 8, + [99625] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - ACTIONS(6254), 1, - anon_sym_DOT_DOT2, - STATE(3200), 1, + ACTIONS(6197), 1, + anon_sym_DOT, + ACTIONS(6199), 1, + aux_sym__immediate_decimal_token2, + STATE(3016), 1, sym_comment, - ACTIONS(6256), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1778), 5, + ACTIONS(1701), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1786), 37, - ts_builtin_sym_end, + aux_sym_unquoted_token2, + ACTIONS(1703), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -330705,8 +315922,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, @@ -330721,6 +315940,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, @@ -330730,12 +315950,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [106791] = 4, + [99687] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3201), 1, + STATE(3017), 1, sym_comment, - ACTIONS(2328), 14, + ACTIONS(1701), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330750,7 +315970,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(2330), 33, + ACTIONS(1703), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330784,12 +316004,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, - [106849] = 4, + [99745] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3202), 1, + STATE(3018), 1, sym_comment, - ACTIONS(6010), 14, + ACTIONS(1616), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330804,7 +316024,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(6020), 33, + ACTIONS(1628), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330838,12 +316058,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, - [106907] = 4, + [99803] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3203), 1, + STATE(3019), 1, sym_comment, - ACTIONS(6260), 14, + ACTIONS(6203), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330858,7 +316078,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(6258), 33, + ACTIONS(6201), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330892,12 +316112,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, - [106965] = 4, + [99861] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3204), 1, + STATE(3020), 1, sym_comment, - ACTIONS(6264), 14, + ACTIONS(2306), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330912,7 +316132,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(6262), 33, + ACTIONS(2308), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330946,12 +316166,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, - [107023] = 4, + [99919] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3205), 1, + STATE(3021), 1, sym_comment, - ACTIONS(6022), 14, + ACTIONS(2310), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330966,7 +316186,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(6027), 33, + ACTIONS(2312), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331000,12 +316220,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, - [107081] = 4, + [99977] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3206), 1, + STATE(3022), 1, sym_comment, - ACTIONS(2320), 14, + ACTIONS(6207), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331020,7 +316240,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(2322), 33, + ACTIONS(6205), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331054,66 +316274,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, - [107139] = 4, + [100035] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3207), 1, + STATE(3023), 1, sym_comment, - ACTIONS(1790), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1792), 40, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [107197] = 4, + ACTIONS(2270), 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(2272), 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, + [100093] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3208), 1, + STATE(3024), 1, sym_comment, - ACTIONS(958), 14, + ACTIONS(6152), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331128,7 +316348,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(960), 33, + ACTIONS(6157), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331162,12 +316382,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, - [107255] = 4, + [100151] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3209), 1, + STATE(3025), 1, sym_comment, - ACTIONS(954), 14, + ACTIONS(2274), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331182,7 +316402,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(956), 33, + ACTIONS(2276), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331216,12 +316436,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, - [107313] = 4, + [100209] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3210), 1, + STATE(3026), 1, sym_comment, - ACTIONS(962), 14, + ACTIONS(1993), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331236,7 +316456,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(964), 33, + ACTIONS(1995), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331270,12 +316490,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, - [107371] = 4, + [100267] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3211), 1, + STATE(3027), 1, sym_comment, - ACTIONS(6268), 14, + ACTIONS(1871), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331290,7 +316510,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(6266), 33, + ACTIONS(1873), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331324,12 +316544,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, - [107429] = 4, + [100325] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3212), 1, + STATE(3028), 1, sym_comment, - ACTIONS(966), 14, + ACTIONS(5857), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331344,7 +316564,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(968), 33, + ACTIONS(5867), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331378,28 +316598,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, - [107487] = 9, + [100383] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6270), 1, - anon_sym_LBRACK, - ACTIONS(6277), 1, - anon_sym_DASH_DASH, - ACTIONS(6280), 1, + ACTIONS(6209), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6211), 1, + aux_sym__immediate_decimal_token2, + STATE(3029), 1, + sym_comment, + ACTIONS(1686), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1688), 39, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, - STATE(3213), 2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [100445] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(3030), 1, sym_comment, - aux_sym_overlay_hide_repeat1, - STATE(3455), 2, - sym_short_flag, - sym_long_flag, - STATE(3459), 2, - sym_val_list, - sym__flag, - ACTIONS(6275), 12, - anon_sym_DOLLAR, + ACTIONS(2318), 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, @@ -331408,10 +316673,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_token1, - ACTIONS(6273), 27, + aux_sym__unquoted_in_list_token1, + ACTIONS(2320), 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, @@ -331420,6 +316690,9 @@ 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__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, @@ -331427,8 +316700,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, @@ -331437,12 +316708,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, - [107555] = 4, + [100503] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3214), 1, + STATE(3031), 1, sym_comment, - ACTIONS(6234), 14, + ACTIONS(2322), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331457,7 +316728,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(6232), 33, + ACTIONS(2324), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331491,12 +316762,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, - [107613] = 4, + [100561] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3215), 1, + STATE(3032), 1, sym_comment, - ACTIONS(1579), 14, + ACTIONS(2326), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331511,7 +316782,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(1591), 33, + ACTIONS(2328), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331545,12 +316816,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107671] = 4, + [100619] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6213), 1, + anon_sym_COMMA, + STATE(3033), 1, + sym_comment, + ACTIONS(5975), 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(5979), 32, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + 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, + [100679] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3216), 1, + STATE(3034), 1, sym_comment, - ACTIONS(2332), 14, + ACTIONS(2330), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331565,7 +316891,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(2334), 33, + ACTIONS(2332), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331599,12 +316925,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, - [107729] = 4, + [100737] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3217), 1, + STATE(3035), 1, sym_comment, - ACTIONS(2406), 14, + ACTIONS(2334), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331619,7 +316945,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(2408), 33, + ACTIONS(2336), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331653,12 +316979,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, - [107787] = 4, + [100795] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3218), 1, + STATE(3036), 1, sym_comment, - ACTIONS(2009), 14, + ACTIONS(2338), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331673,7 +316999,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(2015), 33, + ACTIONS(2340), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331707,12 +317033,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, - [107845] = 4, + [100853] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3219), 1, + STATE(3037), 1, sym_comment, - ACTIONS(2017), 14, + ACTIONS(2342), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331727,7 +317053,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(2023), 33, + ACTIONS(2344), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331761,12 +317087,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, - [107903] = 4, + [100911] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3220), 1, + STATE(3038), 1, sym_comment, - ACTIONS(982), 14, + ACTIONS(6217), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331781,7 +317107,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(984), 33, + ACTIONS(6215), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331815,12 +317141,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, - [107961] = 4, + [100969] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3221), 1, + STATE(3039), 1, sym_comment, - ACTIONS(5724), 14, + ACTIONS(6217), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331835,7 +317161,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(5731), 33, + ACTIONS(6215), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331869,68 +317195,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, - [108019] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6283), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6285), 1, - aux_sym__immediate_decimal_token2, - STATE(3222), 1, - sym_comment, - ACTIONS(1648), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1650), 39, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [108081] = 4, + [101027] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3223), 1, + STATE(3040), 1, sym_comment, - ACTIONS(2410), 14, + ACTIONS(6221), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331945,7 +317215,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(2412), 33, + ACTIONS(6219), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331979,12 +317249,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, - [108139] = 4, + [101085] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3224), 1, + STATE(3041), 1, sym_comment, - ACTIONS(2025), 14, + ACTIONS(6225), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331999,7 +317269,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(2031), 33, + ACTIONS(6223), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -332033,12 +317303,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, - [108197] = 4, + [101143] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3225), 1, + STATE(3042), 1, sym_comment, - ACTIONS(6210), 14, + ACTIONS(2260), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332053,7 +317323,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(6215), 33, + ACTIONS(2262), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -332087,79 +317357,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, - [108255] = 6, + [101201] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6287), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6289), 1, - aux_sym__immediate_decimal_token2, - STATE(3226), 1, - sym_comment, - ACTIONS(1648), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1650), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [108316] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6291), 1, - anon_sym_DOT2, - STATE(3227), 1, + STATE(3043), 1, sym_comment, - STATE(3257), 1, - aux_sym_cell_path_repeat1, - STATE(3406), 1, - sym_path, - STATE(3494), 1, - sym_cell_path, - ACTIONS(1959), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, + ACTIONS(6229), 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, @@ -332168,12 +317376,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_token1, - ACTIONS(1961), 29, + aux_sym__unquoted_in_list_token1, + ACTIONS(6227), 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, anon_sym_null, @@ -332182,6 +317393,9 @@ 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__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, @@ -332189,8 +317403,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, @@ -332199,24 +317411,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, - [108381] = 8, + [101259] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6291), 1, - anon_sym_DOT2, - STATE(3228), 1, + STATE(3044), 1, sym_comment, - STATE(3257), 1, - aux_sym_cell_path_repeat1, - STATE(3406), 1, - sym_path, - STATE(3513), 1, - sym_cell_path, - ACTIONS(1935), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, + ACTIONS(1287), 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, @@ -332226,11 +317432,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1937), 29, + ACTIONS(1285), 32, sym_raw_string_begin, + sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -332239,6 +317447,9 @@ 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__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, @@ -332246,8 +317457,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, @@ -332256,24 +317465,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, - [108446] = 8, + [101317] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6291), 1, - anon_sym_DOT2, - STATE(3229), 1, + STATE(3045), 1, sym_comment, - STATE(3257), 1, - aux_sym_cell_path_repeat1, - STATE(3406), 1, - sym_path, - STATE(3493), 1, - sym_cell_path, - ACTIONS(1859), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, + ACTIONS(5883), 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, @@ -332282,12 +317484,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_token1, - ACTIONS(1861), 29, + aux_sym__unquoted_in_list_token1, + ACTIONS(5888), 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, anon_sym_null, @@ -332296,6 +317501,9 @@ 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__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, @@ -332303,8 +317511,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, @@ -332313,24 +317519,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, - [108511] = 8, + [101375] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6291), 1, - anon_sym_DOT2, - STATE(3230), 1, + STATE(3046), 1, sym_comment, - STATE(3257), 1, - aux_sym_cell_path_repeat1, - STATE(3406), 1, - sym_path, - STATE(3512), 1, - sym_cell_path, - ACTIONS(1931), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, + ACTIONS(2302), 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, @@ -332339,12 +317538,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_token1, - ACTIONS(1933), 29, + aux_sym__unquoted_in_list_token1, + ACTIONS(2304), 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, anon_sym_null, @@ -332353,6 +317555,9 @@ 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__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, @@ -332360,8 +317565,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, @@ -332370,20 +317573,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, - [108576] = 8, + [101433] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6291), 1, + ACTIONS(6231), 1, anon_sym_DOT2, - STATE(3231), 1, + STATE(3047), 1, sym_comment, - STATE(3257), 1, + STATE(3095), 1, aux_sym_cell_path_repeat1, - STATE(3406), 1, + STATE(3235), 1, sym_path, - STATE(3498), 1, + STATE(3313), 1, sym_cell_path, - ACTIONS(1875), 13, + ACTIONS(1871), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -332397,7 +317600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1877), 29, + ACTIONS(1873), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -332427,20 +317630,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, - [108641] = 8, + [101498] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6291), 1, + ACTIONS(6231), 1, anon_sym_DOT2, - STATE(3232), 1, + STATE(3048), 1, sym_comment, - STATE(3257), 1, + STATE(3095), 1, aux_sym_cell_path_repeat1, - STATE(3406), 1, + STATE(3235), 1, sym_path, - STATE(3499), 1, + STATE(3315), 1, sym_cell_path, - ACTIONS(1879), 13, + ACTIONS(925), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -332454,7 +317657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1881), 29, + ACTIONS(927), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -332484,20 +317687,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, - [108706] = 8, + [101563] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6291), 1, + ACTIONS(6231), 1, anon_sym_DOT2, - STATE(3233), 1, + STATE(3049), 1, sym_comment, - STATE(3257), 1, + STATE(3095), 1, aux_sym_cell_path_repeat1, - STATE(3406), 1, + STATE(3235), 1, sym_path, - STATE(3464), 1, + STATE(3314), 1, sym_cell_path, - ACTIONS(1927), 13, + ACTIONS(1829), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -332511,7 +317714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1929), 29, + ACTIONS(1831), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -332541,20 +317744,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, - [108771] = 8, + [101628] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6291), 1, + ACTIONS(6231), 1, anon_sym_DOT2, - STATE(3234), 1, + STATE(3050), 1, sym_comment, - STATE(3257), 1, + STATE(3095), 1, aux_sym_cell_path_repeat1, - STATE(3406), 1, + STATE(3235), 1, sym_path, - STATE(3479), 1, + STATE(3285), 1, sym_cell_path, - ACTIONS(1941), 13, + ACTIONS(1915), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -332568,7 +317771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1943), 29, + ACTIONS(1917), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -332598,20 +317801,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, - [108836] = 8, + [101693] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6291), 1, + ACTIONS(5064), 1, anon_sym_DOT2, - STATE(3235), 1, + STATE(1530), 1, + aux_sym_cell_path_repeat1, + STATE(1692), 1, + sym_path, + STATE(2357), 1, + sym_cell_path, + STATE(3051), 1, sym_comment, - STATE(3257), 1, + ACTIONS(1915), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(6181), 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(1917), 25, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [101760] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6231), 1, + anon_sym_DOT2, + STATE(3052), 1, + sym_comment, + STATE(3095), 1, aux_sym_cell_path_repeat1, - STATE(3406), 1, + STATE(3235), 1, sym_path, - STATE(3485), 1, + STATE(3304), 1, sym_cell_path, - ACTIONS(1829), 13, + ACTIONS(1833), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -332625,7 +317886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1831), 29, + ACTIONS(1835), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -332655,20 +317916,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, - [108901] = 8, + [101825] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6291), 1, + ACTIONS(6231), 1, anon_sym_DOT2, - STATE(3236), 1, + STATE(3053), 1, sym_comment, - STATE(3257), 1, + STATE(3095), 1, aux_sym_cell_path_repeat1, - STATE(3406), 1, + STATE(3235), 1, sym_path, - STATE(3507), 1, + STATE(3297), 1, sym_cell_path, - ACTIONS(1883), 13, + ACTIONS(1867), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -332682,7 +317943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1885), 29, + ACTIONS(1869), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -332712,20 +317973,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, - [108966] = 8, + [101890] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6291), 1, + ACTIONS(6231), 1, anon_sym_DOT2, - STATE(3237), 1, + STATE(3054), 1, sym_comment, - STATE(3257), 1, + STATE(3095), 1, aux_sym_cell_path_repeat1, - STATE(3406), 1, + STATE(3235), 1, sym_path, - STATE(3500), 1, + STATE(3306), 1, sym_cell_path, - ACTIONS(1895), 13, + ACTIONS(1879), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -332739,7 +318000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1897), 29, + ACTIONS(1881), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -332769,20 +318030,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, - [109031] = 8, + [101955] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6291), 1, + ACTIONS(6231), 1, anon_sym_DOT2, - STATE(3238), 1, + STATE(3055), 1, sym_comment, - STATE(3257), 1, + STATE(3095), 1, aux_sym_cell_path_repeat1, - STATE(3406), 1, + STATE(3235), 1, sym_path, - STATE(3501), 1, + STATE(3309), 1, sym_cell_path, - ACTIONS(1913), 13, + ACTIONS(1849), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -332796,7 +318057,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), 29, + ACTIONS(1851), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -332826,20 +318087,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, - [109096] = 8, + [102020] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6291), 1, + ACTIONS(6231), 1, anon_sym_DOT2, - STATE(3239), 1, + STATE(3056), 1, sym_comment, - STATE(3257), 1, + STATE(3095), 1, aux_sym_cell_path_repeat1, - STATE(3406), 1, + STATE(3235), 1, sym_path, - STATE(3484), 1, + STATE(3298), 1, sym_cell_path, - ACTIONS(1847), 13, + ACTIONS(1823), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -332853,7 +318114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1849), 29, + ACTIONS(1825), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -332883,79 +318144,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, - [109161] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6293), 1, - anon_sym_DOT, - ACTIONS(6295), 1, - aux_sym__immediate_decimal_token2, - STATE(3240), 1, - sym_comment, - ACTIONS(1666), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1668), 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_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [109222] = 8, + [102085] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6291), 1, - anon_sym_DOT2, - STATE(3241), 1, + STATE(3057), 1, sym_comment, - STATE(3257), 1, - aux_sym_cell_path_repeat1, - STATE(3406), 1, - sym_path, - STATE(3490), 1, - sym_cell_path, - ACTIONS(925), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, + ACTIONS(6235), 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, @@ -332964,12 +318163,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(927), 29, + aux_sym__unquoted_in_list_token1, + ACTIONS(6233), 32, sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -332978,6 +318179,9 @@ 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__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, @@ -332985,8 +318189,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, @@ -332995,72 +318197,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, - [109287] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6238), 1, - aux_sym__immediate_decimal_token2, - STATE(3242), 1, - sym_comment, - ACTIONS(1666), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1668), 39, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [109346] = 8, + [102142] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6291), 1, + ACTIONS(6231), 1, anon_sym_DOT2, - STATE(3243), 1, + STATE(3058), 1, sym_comment, - STATE(3257), 1, + STATE(3095), 1, aux_sym_cell_path_repeat1, - STATE(3406), 1, + STATE(3235), 1, sym_path, - STATE(3496), 1, + STATE(3311), 1, sym_cell_path, ACTIONS(1863), 13, anon_sym_DOLLAR, @@ -333106,20 +318254,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, - [109411] = 8, + [102207] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6291), 1, + ACTIONS(6231), 1, anon_sym_DOT2, - STATE(3244), 1, + STATE(3059), 1, sym_comment, - STATE(3257), 1, + STATE(3095), 1, aux_sym_cell_path_repeat1, - STATE(3406), 1, + STATE(3235), 1, sym_path, - STATE(3478), 1, + STATE(3290), 1, sym_cell_path, - ACTIONS(1835), 13, + ACTIONS(1845), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -333133,7 +318281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1837), 29, + ACTIONS(1847), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -333163,20 +318311,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, - [109476] = 8, + [102272] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6291), 1, + ACTIONS(6231), 1, anon_sym_DOT2, - STATE(3245), 1, + STATE(3060), 1, sym_comment, - STATE(3257), 1, + STATE(3095), 1, aux_sym_cell_path_repeat1, - STATE(3406), 1, + STATE(3235), 1, sym_path, - STATE(3509), 1, + STATE(3260), 1, sym_cell_path, - ACTIONS(1891), 13, + ACTIONS(1883), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -333190,7 +318338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1893), 29, + ACTIONS(1885), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -333220,20 +318368,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, - [109541] = 8, + [102337] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6237), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6239), 1, + aux_sym__immediate_decimal_token2, + STATE(3061), 1, + sym_comment, + ACTIONS(1686), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1688), 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [102398] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6291), 1, + ACTIONS(6231), 1, anon_sym_DOT2, - STATE(3246), 1, + STATE(3062), 1, sym_comment, - STATE(3257), 1, + STATE(3095), 1, aux_sym_cell_path_repeat1, - STATE(3406), 1, + STATE(3235), 1, sym_path, - STATE(3511), 1, + STATE(3312), 1, sym_cell_path, - ACTIONS(1923), 13, + ACTIONS(1907), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -333247,7 +318450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1925), 29, + ACTIONS(1909), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -333277,21 +318480,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, - [109606] = 5, + [102463] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6297), 1, + ACTIONS(6241), 1, + anon_sym_DOT, + ACTIONS(6243), 1, aux_sym__immediate_decimal_token2, - STATE(3247), 1, + STATE(3063), 1, sym_comment, - ACTIONS(1719), 6, + ACTIONS(1701), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, aux_sym_unquoted_token2, - ACTIONS(1721), 39, + ACTIONS(1703), 38, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -333303,10 +318509,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -333331,27 +318535,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [109665] = 9, + [102524] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_DOT2, - STATE(1628), 1, - aux_sym_cell_path_repeat1, - STATE(1858), 1, - sym_path, - STATE(2447), 1, - sym_cell_path, - STATE(3248), 1, + ACTIONS(6199), 1, + aux_sym__immediate_decimal_token2, + STATE(3064), 1, sym_comment, - ACTIONS(1941), 5, + ACTIONS(1701), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(6225), 12, - ts_builtin_sym_end, + aux_sym_unquoted_token2, + ACTIONS(1703), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -333363,9 +318561,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(1943), 25, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -333380,6 +318579,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, @@ -333389,248 +318589,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [109732] = 8, + [102583] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6291), 1, - anon_sym_DOT2, - STATE(3249), 1, - sym_comment, - STATE(3257), 1, - aux_sym_cell_path_repeat1, - STATE(3406), 1, - sym_path, - STATE(3502), 1, - sym_cell_path, - ACTIONS(1945), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1947), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - 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_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, - [109797] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6291), 1, - anon_sym_DOT2, - STATE(3250), 1, - sym_comment, - STATE(3257), 1, - aux_sym_cell_path_repeat1, - STATE(3406), 1, - sym_path, - STATE(3503), 1, - sym_cell_path, - ACTIONS(1843), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1845), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - 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_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, - [109862] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6291), 1, - anon_sym_DOT2, - STATE(3251), 1, - sym_comment, - STATE(3257), 1, - aux_sym_cell_path_repeat1, - STATE(3406), 1, - sym_path, - STATE(3510), 1, - sym_cell_path, - ACTIONS(1839), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1841), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - 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_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, - [109927] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6291), 1, - anon_sym_DOT2, - STATE(3252), 1, + ACTIONS(6245), 1, + aux_sym__immediate_decimal_token2, + STATE(3065), 1, sym_comment, - STATE(3257), 1, - aux_sym_cell_path_repeat1, - STATE(3406), 1, - sym_path, - STATE(3504), 1, - sym_cell_path, - ACTIONS(1855), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1857), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - 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_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, - [109992] = 8, + ACTIONS(1760), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1762), 39, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [102642] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6291), 1, + ACTIONS(6231), 1, anon_sym_DOT2, - STATE(3253), 1, + STATE(3066), 1, sym_comment, - STATE(3257), 1, + STATE(3095), 1, aux_sym_cell_path_repeat1, - STATE(3406), 1, + STATE(3235), 1, sym_path, - STATE(3492), 1, + STATE(3270), 1, sym_cell_path, - ACTIONS(1851), 13, + ACTIONS(1893), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -333644,7 +318670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1853), 29, + ACTIONS(1895), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -333674,90 +318700,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, - [110057] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3254), 1, - sym_comment, - ACTIONS(6301), 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(6299), 32, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - 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, - [110114] = 14, + [102707] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6303), 1, + ACTIONS(6247), 1, anon_sym_COLON, - ACTIONS(6305), 1, + ACTIONS(6249), 1, anon_sym_LBRACK, - ACTIONS(6311), 1, + ACTIONS(6255), 1, anon_sym_list, - ACTIONS(6313), 1, + ACTIONS(6257), 1, anon_sym_LBRACE, - STATE(3255), 1, + STATE(3067), 1, sym_comment, - STATE(7113), 1, + STATE(6356), 1, sym_block, - STATE(7542), 1, + STATE(6924), 1, sym_returns, - STATE(7724), 1, + STATE(7320), 1, sym__one_type, - STATE(7728), 1, + STATE(7322), 1, sym__multiple_types, - STATE(7731), 1, + STATE(7323), 1, sym__type_annotation, - ACTIONS(6309), 2, + ACTIONS(6253), 2, anon_sym_table, anon_sym_record, - STATE(6701), 3, + STATE(6276), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6307), 31, + ACTIONS(6251), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -333789,37 +318762,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [110190] = 14, + [102783] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6303), 1, + ACTIONS(6247), 1, anon_sym_COLON, - ACTIONS(6305), 1, + ACTIONS(6249), 1, anon_sym_LBRACK, - ACTIONS(6311), 1, + ACTIONS(6255), 1, anon_sym_list, - ACTIONS(6315), 1, + ACTIONS(6257), 1, anon_sym_LBRACE, - STATE(3256), 1, + STATE(3068), 1, sym_comment, - STATE(6443), 1, + STATE(6361), 1, sym_block, - STATE(7440), 1, + STATE(6925), 1, sym_returns, - STATE(7724), 1, + STATE(7320), 1, sym__one_type, - STATE(7728), 1, + STATE(7322), 1, sym__multiple_types, - STATE(7731), 1, + STATE(7323), 1, sym__type_annotation, - ACTIONS(6309), 2, + ACTIONS(6253), 2, anon_sym_table, anon_sym_record, - STATE(6701), 3, + STATE(6276), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6307), 31, + ACTIONS(6251), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -333851,146 +318824,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [110266] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6291), 1, - anon_sym_DOT2, - STATE(3257), 1, - sym_comment, - STATE(3280), 1, - aux_sym_cell_path_repeat1, - STATE(3406), 1, - sym_path, - ACTIONS(931), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(933), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - 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_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, - [110328] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2061), 1, - anon_sym_LPAREN2, - ACTIONS(2065), 1, - aux_sym_unquoted_token2, - STATE(3258), 1, - sym_comment, - ACTIONS(2059), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2063), 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_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [110388] = 14, + [102859] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6303), 1, + ACTIONS(6247), 1, anon_sym_COLON, - ACTIONS(6305), 1, + ACTIONS(6249), 1, anon_sym_LBRACK, - ACTIONS(6311), 1, + ACTIONS(6255), 1, anon_sym_list, - ACTIONS(6313), 1, + ACTIONS(6257), 1, anon_sym_LBRACE, - STATE(3259), 1, + STATE(3069), 1, sym_comment, - STATE(6951), 1, + STATE(5954), 1, sym_block, - STATE(7388), 1, + STATE(6935), 1, sym_returns, - STATE(7724), 1, + STATE(7320), 1, sym__one_type, - STATE(7728), 1, + STATE(7322), 1, sym__multiple_types, - STATE(7731), 1, + STATE(7323), 1, sym__type_annotation, - ACTIONS(6309), 2, + ACTIONS(6253), 2, anon_sym_table, anon_sym_record, - STATE(6701), 3, + STATE(6276), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6307), 31, + ACTIONS(6251), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -334022,37 +318886,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [110464] = 14, + [102935] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6303), 1, + ACTIONS(6247), 1, anon_sym_COLON, - ACTIONS(6305), 1, + ACTIONS(6249), 1, anon_sym_LBRACK, - ACTIONS(6311), 1, + ACTIONS(6255), 1, anon_sym_list, - ACTIONS(6315), 1, + ACTIONS(6257), 1, anon_sym_LBRACE, - STATE(3260), 1, + STATE(3070), 1, sym_comment, - STATE(6317), 1, + STATE(5973), 1, sym_block, - STATE(7462), 1, + STATE(6839), 1, sym_returns, - STATE(7724), 1, + STATE(7320), 1, sym__one_type, - STATE(7728), 1, + STATE(7322), 1, sym__multiple_types, - STATE(7731), 1, + STATE(7323), 1, sym__type_annotation, - ACTIONS(6309), 2, + ACTIONS(6253), 2, anon_sym_table, anon_sym_record, - STATE(6701), 3, + STATE(6276), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6307), 31, + ACTIONS(6251), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -334084,37 +318948,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [110540] = 14, + [103011] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1477), 1, + aux_sym_unquoted_token2, + ACTIONS(2140), 1, + anon_sym_LPAREN2, + STATE(3071), 1, + sym_comment, + ACTIONS(2138), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2142), 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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [103071] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2070), 1, + anon_sym_LPAREN2, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(3072), 1, + sym_comment, + ACTIONS(2130), 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(2128), 30, + 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_has2, + anon_sym_not_DASHhas2, + 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, + [103131] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(3073), 1, + sym_comment, + ACTIONS(2128), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2130), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [103187] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6303), 1, + ACTIONS(6247), 1, anon_sym_COLON, - ACTIONS(6305), 1, + ACTIONS(6249), 1, anon_sym_LBRACK, - ACTIONS(6311), 1, + ACTIONS(6255), 1, anon_sym_list, - ACTIONS(6313), 1, + ACTIONS(6257), 1, anon_sym_LBRACE, - STATE(3261), 1, + STATE(3074), 1, sym_comment, - STATE(7265), 1, + STATE(5885), 1, sym_block, - STATE(7492), 1, + STATE(6890), 1, sym_returns, - STATE(7724), 1, + STATE(7320), 1, sym__one_type, - STATE(7728), 1, + STATE(7322), 1, sym__multiple_types, - STATE(7731), 1, + STATE(7323), 1, sym__type_annotation, - ACTIONS(6309), 2, + ACTIONS(6253), 2, anon_sym_table, anon_sym_record, - STATE(6701), 3, + STATE(6276), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6307), 31, + ACTIONS(6251), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -334146,37 +319170,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [110616] = 14, + [103263] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6303), 1, + ACTIONS(6247), 1, anon_sym_COLON, - ACTIONS(6305), 1, + ACTIONS(6249), 1, anon_sym_LBRACK, - ACTIONS(6311), 1, + ACTIONS(6255), 1, anon_sym_list, - ACTIONS(6313), 1, + ACTIONS(6257), 1, anon_sym_LBRACE, - STATE(3262), 1, + STATE(3075), 1, sym_comment, - STATE(7269), 1, + STATE(5886), 1, sym_block, - STATE(7498), 1, + STATE(6938), 1, sym_returns, - STATE(7724), 1, + STATE(7320), 1, sym__one_type, - STATE(7728), 1, + STATE(7322), 1, sym__multiple_types, - STATE(7731), 1, + STATE(7323), 1, sym__type_annotation, - ACTIONS(6309), 2, + ACTIONS(6253), 2, anon_sym_table, anon_sym_record, - STATE(6701), 3, + STATE(6276), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6307), 31, + ACTIONS(6251), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -334208,22 +319232,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [110692] = 6, - ACTIONS(245), 1, + [103339] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - ACTIONS(2051), 1, + ACTIONS(2070), 1, anon_sym_LPAREN2, - STATE(3263), 1, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(3076), 1, sym_comment, - ACTIONS(2049), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2053), 38, + ACTIONS(2072), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334236,9 +319254,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(2068), 30, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -334249,50 +319270,53 @@ 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, - [110752] = 14, + [103399] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6303), 1, + ACTIONS(6247), 1, anon_sym_COLON, - ACTIONS(6305), 1, + ACTIONS(6249), 1, anon_sym_LBRACK, - ACTIONS(6311), 1, + ACTIONS(6255), 1, anon_sym_list, - ACTIONS(6315), 1, + ACTIONS(6257), 1, anon_sym_LBRACE, - STATE(3264), 1, + STATE(3077), 1, sym_comment, - STATE(6318), 1, + STATE(5918), 1, sym_block, - STATE(7470), 1, + STATE(6834), 1, sym_returns, - STATE(7724), 1, + STATE(7320), 1, sym__one_type, - STATE(7728), 1, + STATE(7322), 1, sym__multiple_types, - STATE(7731), 1, + STATE(7323), 1, sym__type_annotation, - ACTIONS(6309), 2, + ACTIONS(6253), 2, anon_sym_table, anon_sym_record, - STATE(6701), 3, + STATE(6276), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6307), 31, + ACTIONS(6251), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -334324,22 +319348,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [110828] = 6, + [103475] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - STATE(3265), 1, + ACTIONS(6247), 1, + anon_sym_COLON, + ACTIONS(6249), 1, + anon_sym_LBRACK, + ACTIONS(6255), 1, + anon_sym_list, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(3078), 1, + sym_comment, + STATE(5922), 1, + sym_block, + STATE(6835), 1, + sym_returns, + STATE(7320), 1, + sym__one_type, + STATE(7322), 1, + sym__multiple_types, + STATE(7323), 1, + sym__type_annotation, + ACTIONS(6253), 2, + anon_sym_table, + anon_sym_record, + STATE(6276), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6251), 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, + [103551] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(3079), 1, sym_comment, - ACTIONS(1778), 5, + ACTIONS(2068), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1786), 38, + ACTIONS(2072), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334354,7 +319436,9 @@ 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, @@ -334378,12 +319462,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110888] = 4, - ACTIONS(3), 1, + [103607] = 6, + ACTIONS(245), 1, anon_sym_POUND, - STATE(3266), 1, + ACTIONS(2146), 1, + anon_sym_LPAREN2, + ACTIONS(2150), 1, + aux_sym_unquoted_token2, + STATE(3080), 1, sym_comment, - ACTIONS(2047), 14, + ACTIONS(2144), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2148), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334396,13 +319490,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_LPAREN2, - ACTIONS(2045), 31, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -334413,39 +319503,97 @@ 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, - aux_sym_unquoted_token4, - [110944] = 6, + [103667] = 14, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6247), 1, + anon_sym_COLON, + ACTIONS(6249), 1, + anon_sym_LBRACK, + ACTIONS(6255), 1, + anon_sym_list, + ACTIONS(6259), 1, + anon_sym_LBRACE, + STATE(3081), 1, + sym_comment, + STATE(6668), 1, + sym_block, + STATE(6895), 1, + sym_returns, + STATE(7320), 1, + sym__one_type, + STATE(7322), 1, + sym__multiple_types, + STATE(7323), 1, + sym__type_annotation, + ACTIONS(6253), 2, + anon_sym_table, + anon_sym_record, + STATE(6276), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6251), 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, + [103743] = 6, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(1447), 1, aux_sym_unquoted_token2, - ACTIONS(1813), 1, + ACTIONS(1807), 1, anon_sym_LPAREN2, - STATE(3267), 1, + STATE(3082), 1, sym_comment, - ACTIONS(1811), 5, + ACTIONS(1805), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1819), 38, + ACTIONS(1813), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334484,37 +319632,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111004] = 14, + [103803] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6303), 1, + ACTIONS(6247), 1, anon_sym_COLON, - ACTIONS(6305), 1, + ACTIONS(6249), 1, anon_sym_LBRACK, - ACTIONS(6311), 1, + ACTIONS(6255), 1, anon_sym_list, - ACTIONS(6313), 1, + ACTIONS(6259), 1, anon_sym_LBRACE, - STATE(3268), 1, + STATE(3083), 1, sym_comment, - STATE(6856), 1, + STATE(6539), 1, sym_block, - STATE(7463), 1, + STATE(6972), 1, sym_returns, - STATE(7724), 1, + STATE(7320), 1, sym__one_type, - STATE(7728), 1, + STATE(7322), 1, sym__multiple_types, - STATE(7731), 1, + STATE(7323), 1, sym__type_annotation, - ACTIONS(6309), 2, + ACTIONS(6253), 2, anon_sym_table, anon_sym_record, - STATE(6701), 3, + STATE(6276), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6307), 31, + ACTIONS(6251), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -334546,37 +319694,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [111080] = 14, + [103879] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6303), 1, + ACTIONS(6247), 1, anon_sym_COLON, - ACTIONS(6305), 1, + ACTIONS(6249), 1, anon_sym_LBRACK, - ACTIONS(6311), 1, + ACTIONS(6255), 1, anon_sym_list, - ACTIONS(6315), 1, + ACTIONS(6259), 1, anon_sym_LBRACE, - STATE(3269), 1, + STATE(3084), 1, sym_comment, - STATE(6329), 1, + STATE(6383), 1, sym_block, - STATE(7518), 1, + STATE(6854), 1, sym_returns, - STATE(7724), 1, + STATE(7320), 1, sym__one_type, - STATE(7728), 1, + STATE(7322), 1, sym__multiple_types, - STATE(7731), 1, + STATE(7323), 1, sym__type_annotation, - ACTIONS(6309), 2, + ACTIONS(6253), 2, anon_sym_table, anon_sym_record, - STATE(6701), 3, + STATE(6276), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6307), 31, + ACTIONS(6251), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -334608,37 +319756,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [111156] = 14, + [103955] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6303), 1, + ACTIONS(6247), 1, anon_sym_COLON, - ACTIONS(6305), 1, + ACTIONS(6249), 1, anon_sym_LBRACK, - ACTIONS(6311), 1, + ACTIONS(6255), 1, anon_sym_list, - ACTIONS(6315), 1, + ACTIONS(6259), 1, anon_sym_LBRACE, - STATE(3270), 1, + STATE(3085), 1, sym_comment, - STATE(6330), 1, + STATE(6467), 1, sym_block, - STATE(7378), 1, + STATE(6965), 1, sym_returns, - STATE(7724), 1, + STATE(7320), 1, sym__one_type, - STATE(7728), 1, + STATE(7322), 1, sym__multiple_types, - STATE(7731), 1, + STATE(7323), 1, sym__type_annotation, - ACTIONS(6309), 2, + ACTIONS(6253), 2, anon_sym_table, anon_sym_record, - STATE(6701), 3, + STATE(6276), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6307), 31, + ACTIONS(6251), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -334670,89 +319818,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [111232] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3271), 1, - sym_comment, - ACTIONS(2089), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2093), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [111288] = 14, + [104031] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6303), 1, + ACTIONS(6247), 1, anon_sym_COLON, - ACTIONS(6305), 1, + ACTIONS(6249), 1, anon_sym_LBRACK, - ACTIONS(6311), 1, + ACTIONS(6255), 1, anon_sym_list, - ACTIONS(6313), 1, + ACTIONS(6259), 1, anon_sym_LBRACE, - STATE(3272), 1, + STATE(3086), 1, sym_comment, - STATE(7078), 1, + STATE(6710), 1, sym_block, - STATE(7373), 1, + STATE(6926), 1, sym_returns, - STATE(7724), 1, + STATE(7320), 1, sym__one_type, - STATE(7728), 1, + STATE(7322), 1, sym__multiple_types, - STATE(7731), 1, + STATE(7323), 1, sym__type_annotation, - ACTIONS(6309), 2, + ACTIONS(6253), 2, anon_sym_table, anon_sym_record, - STATE(6701), 3, + STATE(6276), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6307), 31, + ACTIONS(6251), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -334784,37 +319880,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [111364] = 14, + [104107] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6303), 1, + ACTIONS(6247), 1, anon_sym_COLON, - ACTIONS(6305), 1, + ACTIONS(6249), 1, anon_sym_LBRACK, - ACTIONS(6311), 1, + ACTIONS(6255), 1, anon_sym_list, - ACTIONS(6313), 1, + ACTIONS(6257), 1, anon_sym_LBRACE, - STATE(3273), 1, + STATE(3087), 1, sym_comment, - STATE(6948), 1, + STATE(6091), 1, sym_block, - STATE(7384), 1, + STATE(6878), 1, sym_returns, - STATE(7724), 1, + STATE(7320), 1, sym__one_type, - STATE(7728), 1, + STATE(7322), 1, sym__multiple_types, - STATE(7731), 1, + STATE(7323), 1, sym__type_annotation, - ACTIONS(6309), 2, + ACTIONS(6253), 2, anon_sym_table, anon_sym_record, - STATE(6701), 3, + STATE(6276), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6307), 31, + ACTIONS(6251), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -334846,89 +319942,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [111440] = 4, + [104183] = 14, ACTIONS(245), 1, anon_sym_POUND, - STATE(3274), 1, + ACTIONS(6247), 1, + anon_sym_COLON, + ACTIONS(6249), 1, + anon_sym_LBRACK, + ACTIONS(6255), 1, + anon_sym_list, + ACTIONS(6259), 1, + anon_sym_LBRACE, + STATE(3088), 1, sym_comment, - ACTIONS(1666), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1668), 39, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [111496] = 14, + STATE(6724), 1, + sym_block, + STATE(6934), 1, + sym_returns, + STATE(7320), 1, + sym__one_type, + STATE(7322), 1, + sym__multiple_types, + STATE(7323), 1, + sym__type_annotation, + ACTIONS(6253), 2, + anon_sym_table, + anon_sym_record, + STATE(6276), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6251), 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, + [104259] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6303), 1, + ACTIONS(6247), 1, anon_sym_COLON, - ACTIONS(6305), 1, + ACTIONS(6249), 1, anon_sym_LBRACK, - ACTIONS(6311), 1, + ACTIONS(6255), 1, anon_sym_list, - ACTIONS(6313), 1, + ACTIONS(6259), 1, anon_sym_LBRACE, - STATE(3275), 1, + STATE(3089), 1, sym_comment, - STATE(7144), 1, + STATE(6547), 1, sym_block, - STATE(7408), 1, + STATE(6980), 1, sym_returns, - STATE(7724), 1, + STATE(7320), 1, sym__one_type, - STATE(7728), 1, + STATE(7322), 1, sym__multiple_types, - STATE(7731), 1, + STATE(7323), 1, sym__type_annotation, - ACTIONS(6309), 2, + ACTIONS(6253), 2, anon_sym_table, anon_sym_record, - STATE(6701), 3, + STATE(6276), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6307), 31, + ACTIONS(6251), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -334960,16 +320066,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [111572] = 6, + [104335] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6265), 1, + anon_sym_DASH_DASH, + ACTIONS(6268), 1, + anon_sym_DASH2, + STATE(3336), 1, + sym__flag, + STATE(3090), 2, + sym_comment, + aux_sym_ctrl_do_repeat1, + STATE(3302), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(6263), 12, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(6261), 27, + sym_raw_string_begin, + anon_sym_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_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + 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, + [104399] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6243), 1, + aux_sym__immediate_decimal_token2, + STATE(3091), 1, + sym_comment, + ACTIONS(1701), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1703), 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [104457] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2091), 1, + ACTIONS(2104), 1, anon_sym_LPAREN2, - ACTIONS(2095), 1, + ACTIONS(2106), 1, aux_sym_unquoted_token4, - STATE(3276), 1, + STATE(3092), 1, sym_comment, - ACTIONS(2204), 13, + ACTIONS(994), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334983,7 +320198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2202), 30, + ACTIONS(998), 30, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -335014,16 +320229,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111632] = 6, + [104517] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(3277), 1, + STATE(3093), 1, sym_comment, - ACTIONS(2093), 13, + ACTIONS(2078), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335037,7 +320248,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2089), 30, + anon_sym_LPAREN2, + ACTIONS(2076), 31, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -335068,18 +320280,255 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111692] = 4, + aux_sym_unquoted_token4, + [104573] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6271), 1, + aux_sym__immediate_decimal_token2, + STATE(3094), 1, + sym_comment, + ACTIONS(1760), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1762), 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [104631] = 7, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6231), 1, + anon_sym_DOT2, + STATE(3095), 1, + sym_comment, + STATE(3099), 1, + aux_sym_cell_path_repeat1, + STATE(3235), 1, + sym_path, + ACTIONS(938), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(940), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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_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, + [104693] = 14, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6247), 1, + anon_sym_COLON, + ACTIONS(6249), 1, + anon_sym_LBRACK, + ACTIONS(6255), 1, + anon_sym_list, + ACTIONS(6259), 1, + anon_sym_LBRACE, + STATE(3096), 1, + sym_comment, + STATE(6582), 1, + sym_block, + STATE(6832), 1, + sym_returns, + STATE(7320), 1, + sym__one_type, + STATE(7322), 1, + sym__multiple_types, + STATE(7323), 1, + sym__type_annotation, + ACTIONS(6253), 2, + anon_sym_table, + anon_sym_record, + STATE(6276), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6251), 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, + [104769] = 14, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6247), 1, + anon_sym_COLON, + ACTIONS(6249), 1, + anon_sym_LBRACK, + ACTIONS(6255), 1, + anon_sym_list, + ACTIONS(6259), 1, + anon_sym_LBRACE, + STATE(3097), 1, + sym_comment, + STATE(6428), 1, + sym_block, + STATE(6840), 1, + sym_returns, + STATE(7320), 1, + sym__one_type, + STATE(7322), 1, + sym__multiple_types, + STATE(7323), 1, + sym__type_annotation, + ACTIONS(6253), 2, + anon_sym_table, + anon_sym_record, + STATE(6276), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6251), 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, + [104845] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(3278), 1, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + STATE(3098), 1, sym_comment, - ACTIONS(2202), 5, + ACTIONS(2134), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2204), 40, + ACTIONS(2136), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335094,60 +320543,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, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [111748] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2190), 1, - anon_sym_LPAREN2, - ACTIONS(2192), 1, - aux_sym_unquoted_token4, - STATE(3279), 1, - sym_comment, - ACTIONS(994), 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(998), 30, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -335158,33 +320554,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, - [111808] = 6, + [104905] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6317), 1, + ACTIONS(6273), 1, anon_sym_DOT2, - STATE(3406), 1, + STATE(3235), 1, sym_path, - STATE(3280), 2, + STATE(3099), 2, sym_comment, aux_sym_cell_path_repeat1, - ACTIONS(935), 13, + ACTIONS(931), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -335198,7 +320591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(937), 29, + ACTIONS(933), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -335228,37 +320621,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, - [111868] = 14, + [104965] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6303), 1, + ACTIONS(6247), 1, anon_sym_COLON, - ACTIONS(6305), 1, + ACTIONS(6249), 1, anon_sym_LBRACK, - ACTIONS(6311), 1, + ACTIONS(6255), 1, anon_sym_list, - ACTIONS(6315), 1, + ACTIONS(6259), 1, anon_sym_LBRACE, - STATE(3281), 1, + STATE(3100), 1, sym_comment, - STATE(6354), 1, + STATE(6642), 1, sym_block, - STATE(7517), 1, + STATE(6852), 1, sym_returns, - STATE(7724), 1, + STATE(7320), 1, sym__one_type, - STATE(7728), 1, + STATE(7322), 1, sym__multiple_types, - STATE(7731), 1, + STATE(7323), 1, sym__type_annotation, - ACTIONS(6309), 2, + ACTIONS(6253), 2, anon_sym_table, anon_sym_record, - STATE(6701), 3, + STATE(6276), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6307), 31, + ACTIONS(6251), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -335290,19 +320683,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [111944] = 4, + [105041] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3282), 1, + STATE(3101), 1, sym_comment, - ACTIONS(1648), 6, + ACTIONS(1701), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, aux_sym_unquoted_token2, - ACTIONS(1650), 39, + ACTIONS(1703), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335342,81 +320735,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112000] = 14, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6303), 1, - anon_sym_COLON, - ACTIONS(6305), 1, - anon_sym_LBRACK, - ACTIONS(6311), 1, - anon_sym_list, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(3283), 1, - sym_comment, - STATE(6355), 1, - sym_block, - STATE(7369), 1, - sym_returns, - STATE(7724), 1, - sym__one_type, - STATE(7728), 1, - sym__multiple_types, - STATE(7731), 1, - sym__type_annotation, - ACTIONS(6309), 2, - anon_sym_table, - anon_sym_record, - STATE(6701), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6307), 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, - [112076] = 4, + [105097] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3284), 1, + STATE(3102), 1, sym_comment, - ACTIONS(1719), 6, + ACTIONS(1686), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, aux_sym_unquoted_token2, - ACTIONS(1721), 39, + ACTIONS(1688), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335456,19 +320787,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112132] = 4, + [105153] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(3285), 1, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + STATE(3103), 1, sym_comment, - ACTIONS(1790), 6, + ACTIONS(1782), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1792), 39, + ACTIONS(1790), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335498,7 +320832,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, @@ -335508,84 +320841,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112188] = 14, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6303), 1, - anon_sym_COLON, - ACTIONS(6305), 1, - anon_sym_LBRACK, - ACTIONS(6311), 1, - anon_sym_list, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(3286), 1, - sym_comment, - STATE(6261), 1, - sym_block, - STATE(7406), 1, - sym_returns, - STATE(7724), 1, - sym__one_type, - STATE(7728), 1, - sym__multiple_types, - STATE(7731), 1, - sym__type_annotation, - ACTIONS(6309), 2, - anon_sym_table, - anon_sym_record, - STATE(6701), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6307), 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, - [112264] = 5, + [105213] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6295), 1, - aux_sym__immediate_decimal_token2, - STATE(3287), 1, + STATE(3104), 1, sym_comment, - ACTIONS(1666), 6, + ACTIONS(1760), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, aux_sym_unquoted_token2, - ACTIONS(1668), 38, - ts_builtin_sym_end, + ACTIONS(1762), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335597,8 +320865,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, @@ -335623,93 +320893,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112322] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6324), 1, - anon_sym_DASH_DASH, - ACTIONS(6327), 1, - anon_sym_DASH2, - STATE(3533), 1, - sym__flag, - STATE(3288), 2, - sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(3455), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(6322), 12, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(6320), 27, - sym_raw_string_begin, - anon_sym_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_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - 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, - [112386] = 14, + [105269] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6303), 1, + ACTIONS(6247), 1, anon_sym_COLON, - ACTIONS(6305), 1, + ACTIONS(6249), 1, anon_sym_LBRACK, - ACTIONS(6311), 1, + ACTIONS(6255), 1, anon_sym_list, - ACTIONS(6315), 1, + ACTIONS(6259), 1, anon_sym_LBRACE, - STATE(3289), 1, + STATE(3105), 1, sym_comment, - STATE(6264), 1, + STATE(6443), 1, sym_block, - STATE(7466), 1, + STATE(6905), 1, sym_returns, - STATE(7724), 1, + STATE(7320), 1, sym__one_type, - STATE(7728), 1, + STATE(7322), 1, sym__multiple_types, - STATE(7731), 1, + STATE(7323), 1, sym__type_annotation, - ACTIONS(6309), 2, + ACTIONS(6253), 2, anon_sym_table, anon_sym_record, - STATE(6701), 3, + STATE(6276), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6307), 31, + ACTIONS(6251), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -335741,22 +320955,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [112462] = 5, + [105345] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6330), 1, - aux_sym__immediate_decimal_token2, - STATE(3290), 1, + STATE(3106), 1, sym_comment, - ACTIONS(1719), 6, + ACTIONS(1797), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, aux_sym_unquoted_token2, - ACTIONS(1721), 38, - ts_builtin_sym_end, + ACTIONS(1799), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335768,8 +320979,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, @@ -335794,37 +321007,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112520] = 14, + [105401] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6303), 1, + ACTIONS(6247), 1, anon_sym_COLON, - ACTIONS(6305), 1, + ACTIONS(6249), 1, anon_sym_LBRACK, - ACTIONS(6311), 1, + ACTIONS(6255), 1, anon_sym_list, - ACTIONS(6313), 1, + ACTIONS(6257), 1, anon_sym_LBRACE, - STATE(3291), 1, + STATE(3107), 1, sym_comment, - STATE(7366), 1, + STATE(6328), 1, sym_block, - STATE(7387), 1, + STATE(6913), 1, sym_returns, - STATE(7724), 1, + STATE(7320), 1, sym__one_type, - STATE(7728), 1, + STATE(7322), 1, sym__multiple_types, - STATE(7731), 1, + STATE(7323), 1, sym__type_annotation, - ACTIONS(6309), 2, + ACTIONS(6253), 2, anon_sym_table, anon_sym_record, - STATE(6701), 3, + STATE(6276), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6307), 31, + ACTIONS(6251), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -335856,37 +321069,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [112596] = 14, + [105477] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6303), 1, + ACTIONS(6247), 1, anon_sym_COLON, - ACTIONS(6305), 1, + ACTIONS(6249), 1, anon_sym_LBRACK, - ACTIONS(6311), 1, + ACTIONS(6255), 1, anon_sym_list, - ACTIONS(6313), 1, + ACTIONS(6259), 1, anon_sym_LBRACE, - STATE(3292), 1, + STATE(3108), 1, sym_comment, - STATE(7075), 1, + STATE(6667), 1, sym_block, - STATE(7370), 1, + STATE(6893), 1, sym_returns, - STATE(7724), 1, + STATE(7320), 1, sym__one_type, - STATE(7728), 1, + STATE(7322), 1, sym__multiple_types, - STATE(7731), 1, + STATE(7323), 1, sym__type_annotation, - ACTIONS(6309), 2, + ACTIONS(6253), 2, anon_sym_table, anon_sym_record, - STATE(6701), 3, + STATE(6276), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6307), 31, + ACTIONS(6251), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -335918,99 +321131,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [112672] = 14, - ACTIONS(245), 1, + [105553] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6303), 1, - anon_sym_COLON, - ACTIONS(6305), 1, - anon_sym_LBRACK, - ACTIONS(6311), 1, - anon_sym_list, - ACTIONS(6313), 1, - anon_sym_LBRACE, - STATE(3293), 1, + ACTIONS(2164), 1, + anon_sym_LPAREN2, + ACTIONS(2168), 1, + aux_sym_unquoted_token4, + STATE(3109), 1, sym_comment, - STATE(7118), 1, - sym_block, - STATE(7389), 1, - sym_returns, - STATE(7724), 1, - sym__one_type, - STATE(7728), 1, - sym__multiple_types, - STATE(7731), 1, - sym__type_annotation, - ACTIONS(6309), 2, - anon_sym_table, - anon_sym_record, - STATE(6701), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6307), 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, - [112748] = 14, + ACTIONS(2166), 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(2162), 30, + 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_has2, + anon_sym_not_DASHhas2, + 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, + [105613] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6303), 1, + ACTIONS(6247), 1, anon_sym_COLON, - ACTIONS(6305), 1, + ACTIONS(6249), 1, anon_sym_LBRACK, - ACTIONS(6311), 1, + ACTIONS(6255), 1, anon_sym_list, - ACTIONS(6315), 1, + ACTIONS(6257), 1, anon_sym_LBRACE, - STATE(3294), 1, + STATE(3110), 1, sym_comment, - STATE(6381), 1, + STATE(6330), 1, sym_block, - STATE(7454), 1, + STATE(6914), 1, sym_returns, - STATE(7724), 1, + STATE(7320), 1, sym__one_type, - STATE(7728), 1, + STATE(7322), 1, sym__multiple_types, - STATE(7731), 1, + STATE(7323), 1, sym__type_annotation, - ACTIONS(6309), 2, + ACTIONS(6253), 2, anon_sym_table, anon_sym_record, - STATE(6701), 3, + STATE(6276), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6307), 31, + ACTIONS(6251), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -336042,37 +321247,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [112824] = 14, + [105689] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6303), 1, + ACTIONS(6247), 1, anon_sym_COLON, - ACTIONS(6305), 1, + ACTIONS(6249), 1, anon_sym_LBRACK, - ACTIONS(6311), 1, + ACTIONS(6255), 1, anon_sym_list, - ACTIONS(6315), 1, + ACTIONS(6257), 1, anon_sym_LBRACE, - STATE(3295), 1, + STATE(3111), 1, sym_comment, - STATE(6392), 1, + STATE(6092), 1, sym_block, - STATE(7474), 1, + STATE(6879), 1, sym_returns, - STATE(7724), 1, + STATE(7320), 1, sym__one_type, - STATE(7728), 1, + STATE(7322), 1, sym__multiple_types, - STATE(7731), 1, + STATE(7323), 1, sym__type_annotation, - ACTIONS(6309), 2, + ACTIONS(6253), 2, anon_sym_table, anon_sym_record, - STATE(6701), 3, + STATE(6276), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6307), 31, + ACTIONS(6251), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -336104,22 +321309,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [112900] = 6, + [105765] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1788), 1, + ACTIONS(1447), 1, aux_sym_unquoted_token2, - STATE(3296), 1, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + STATE(3112), 1, sym_comment, - ACTIONS(2041), 5, + ACTIONS(1805), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2043), 38, + ACTIONS(1813), 37, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -336131,10 +321337,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -336158,140 +321362,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112960] = 14, + [105824] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6303), 1, - anon_sym_COLON, - ACTIONS(6305), 1, - anon_sym_LBRACK, - ACTIONS(6311), 1, - anon_sym_list, - ACTIONS(6313), 1, - anon_sym_LBRACE, - STATE(3297), 1, + STATE(3113), 1, sym_comment, - STATE(7134), 1, - sym_block, - STATE(7401), 1, - sym_returns, - STATE(7724), 1, - sym__one_type, - STATE(7728), 1, - sym__multiple_types, - STATE(7731), 1, - sym__type_annotation, - ACTIONS(6309), 2, - anon_sym_table, - anon_sym_record, - STATE(6701), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6307), 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, - [113036] = 14, + ACTIONS(1760), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1762), 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [105879] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6303), 1, - anon_sym_COLON, - ACTIONS(6305), 1, - anon_sym_LBRACK, - ACTIONS(6311), 1, - anon_sym_list, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(3298), 1, + STATE(3114), 1, sym_comment, - STATE(6441), 1, - sym_block, - STATE(7426), 1, - sym_returns, - STATE(7724), 1, - sym__one_type, - STATE(7728), 1, - sym__multiple_types, - STATE(7731), 1, - sym__type_annotation, - ACTIONS(6309), 2, - anon_sym_table, - anon_sym_record, - STATE(6701), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6307), 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, - [113112] = 6, - ACTIONS(3), 1, + ACTIONS(1797), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1799), 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [105934] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2196), 1, + ACTIONS(2146), 1, anon_sym_LPAREN2, - ACTIONS(2200), 1, - aux_sym_unquoted_token4, - STATE(3299), 1, + ACTIONS(2150), 1, + aux_sym_unquoted_token2, + STATE(3115), 1, sym_comment, - ACTIONS(2198), 13, + ACTIONS(2144), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2148), 37, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -336303,13 +321492,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, - ACTIONS(2194), 30, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -336320,32 +321504,29 @@ 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, - [113172] = 6, + [105993] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6332), 1, + ACTIONS(6276), 1, sym_long_flag_identifier, - ACTIONS(6334), 1, + ACTIONS(6278), 1, anon_sym_EQ2, - STATE(3300), 1, + STATE(3116), 1, sym_comment, - ACTIONS(4875), 19, + ACTIONS(4850), 19, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -336365,68 +321546,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4873), 23, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - 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, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [113231] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3301), 1, - sym_comment, - ACTIONS(966), 14, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_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, - aux_sym_unquoted_token1, - ACTIONS(968), 30, + ACTIONS(4848), 23, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - 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_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, @@ -336440,22 +321570,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, - [113286] = 6, + [106052] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2061), 1, + ACTIONS(1784), 1, anon_sym_LPAREN2, - ACTIONS(2065), 1, + ACTIONS(1792), 1, aux_sym_unquoted_token2, - STATE(3302), 1, + STATE(3117), 1, sym_comment, - ACTIONS(2059), 5, + ACTIONS(2134), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2063), 37, + ACTIONS(2136), 37, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -336493,23 +321623,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113345] = 6, + [106111] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6336), 1, - anon_sym_EQ2, - ACTIONS(6338), 1, - sym_short_flag_identifier, - STATE(3303), 1, + STATE(3118), 1, sym_comment, - ACTIONS(4881), 20, + ACTIONS(942), 14, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_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, + aux_sym_unquoted_token1, + ACTIONS(944), 30, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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_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, @@ -336523,45 +321674,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, - ACTIONS(4883), 22, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - 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_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - aux_sym_unquoted_token1, - [113404] = 6, - ACTIONS(245), 1, + [106166] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(1813), 1, + ACTIONS(2164), 1, anon_sym_LPAREN2, - STATE(3304), 1, + ACTIONS(2168), 1, + aux_sym_unquoted_token4, + STATE(3119), 1, sym_comment, - ACTIONS(1811), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1819), 37, + ACTIONS(2166), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -336574,8 +321696,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, + ACTIONS(2162), 30, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -336586,29 +321711,32 @@ 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, - [113463] = 6, + [106225] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2190), 1, + ACTIONS(2070), 1, anon_sym_LPAREN2, - ACTIONS(2192), 1, + ACTIONS(2074), 1, aux_sym_unquoted_token4, - STATE(3305), 1, + STATE(3120), 1, sym_comment, - ACTIONS(994), 12, + ACTIONS(2130), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -336621,7 +321749,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(998), 30, + ACTIONS(2128), 30, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -336652,16 +321780,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113522] = 6, + [106284] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2196), 1, + ACTIONS(2070), 1, anon_sym_LPAREN2, - ACTIONS(2200), 1, + ACTIONS(2074), 1, aux_sym_unquoted_token4, - STATE(3306), 1, + STATE(3121), 1, sym_comment, - ACTIONS(2198), 12, + ACTIONS(2072), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -336674,7 +321802,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(2194), 30, + ACTIONS(2068), 30, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -336705,73 +321833,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113581] = 6, + [106343] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - ACTIONS(2051), 1, - anon_sym_LPAREN2, - STATE(3307), 1, + ACTIONS(6280), 1, + anon_sym_QMARK2, + STATE(3122), 1, sym_comment, - ACTIONS(2049), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2053), 37, - 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(964), 14, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [113640] = 5, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_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, + aux_sym_unquoted_token1, + ACTIONS(966), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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_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, + [106400] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4715), 1, - aux_sym_unquoted_token2, - STATE(3308), 1, + ACTIONS(6282), 1, + anon_sym_QMARK2, + STATE(3123), 1, sym_comment, - ACTIONS(1579), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1591), 38, + ACTIONS(958), 14, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_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, + aux_sym_unquoted_token1, + ACTIONS(960), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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_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, + [106457] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6284), 1, + anon_sym_EQ2, + ACTIONS(6286), 1, + sym_short_flag_identifier, + STATE(3124), 1, + sym_comment, + ACTIONS(4815), 20, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + 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, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + 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(4817), 22, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + 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_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + aux_sym_unquoted_token1, + [106516] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(3125), 1, + sym_comment, + ACTIONS(954), 14, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_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, + aux_sym_unquoted_token1, + ACTIONS(956), 30, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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_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, + [106571] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2104), 1, + anon_sym_LPAREN2, + ACTIONS(2106), 1, + aux_sym_unquoted_token4, + STATE(3126), 1, + sym_comment, + ACTIONS(994), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -336783,10 +322063,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(998), 30, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -336797,29 +322078,38 @@ 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, - [113697] = 6, - ACTIONS(3), 1, + [106630] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2091), 1, + ACTIONS(1477), 1, + aux_sym_unquoted_token2, + ACTIONS(2140), 1, anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(3309), 1, + STATE(3127), 1, sym_comment, - ACTIONS(2204), 12, + ACTIONS(2138), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2142), 37, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -336832,11 +322122,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(2202), 30, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -336847,32 +322134,32 @@ 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, - [113756] = 6, - ACTIONS(3), 1, + [106689] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(3310), 1, + STATE(3128), 1, sym_comment, - ACTIONS(2093), 12, + ACTIONS(1701), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1703), 38, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -336885,11 +322172,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(2089), 30, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -336900,30 +322184,77 @@ 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_LPAREN2, 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, - [113815] = 5, + [106744] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6340), 1, + STATE(3129), 1, + sym_comment, + ACTIONS(946), 14, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_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, + aux_sym_unquoted_token1, + ACTIONS(948), 30, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_QMARK2, - STATE(3311), 1, + 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_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, + [106799] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(3130), 1, sym_comment, - ACTIONS(942), 14, + ACTIONS(950), 14, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -336938,11 +322269,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(944), 29, + ACTIONS(952), 30, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -336968,23 +322300,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, - [113872] = 6, + [106854] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1788), 1, + ACTIONS(4672), 1, aux_sym_unquoted_token2, - STATE(3312), 1, + STATE(3131), 1, sym_comment, - ACTIONS(2041), 5, + ACTIONS(1616), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2043), 37, - ts_builtin_sym_end, + ACTIONS(1628), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -336996,8 +322325,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, @@ -337021,19 +322352,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113931] = 4, - ACTIONS(245), 1, + [106911] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3313), 1, + STATE(3132), 1, sym_comment, - ACTIONS(1790), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1792), 38, + ACTIONS(2078), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -337046,8 +322370,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_LPAREN2, + ACTIONS(2076), 31, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -337058,36 +322386,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_LPAREN2, 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, - [113986] = 6, + aux_sym_unquoted_token4, + [106966] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - STATE(3314), 1, + STATE(3133), 1, sym_comment, - ACTIONS(1778), 5, + ACTIONS(1686), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1786), 37, + aux_sym_unquoted_token2, + ACTIONS(1688), 38, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -337116,79 +322444,32 @@ 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, - [114045] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3315), 1, - sym_comment, - ACTIONS(2047), 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(2045), 31, - 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_has2, - anon_sym_not_DASHhas2, - 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, - aux_sym_unquoted_token4, - [114100] = 4, + [107021] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(3316), 1, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + STATE(3134), 1, sym_comment, - ACTIONS(1648), 6, + ACTIONS(1782), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1650), 38, + ACTIONS(1790), 37, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -337217,7 +322498,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, @@ -337227,38 +322507,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114155] = 5, - ACTIONS(245), 1, + [107080] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6342), 1, - anon_sym_QMARK2, - STATE(3317), 1, + ACTIONS(2168), 1, + aux_sym_unquoted_token4, + STATE(3135), 1, sym_comment, - ACTIONS(948), 14, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_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, - aux_sym_unquoted_token1, - ACTIONS(950), 29, + ACTIONS(2166), 8, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2162), 34, + 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, @@ -337266,11 +322541,14 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -337279,20 +322557,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, - [114212] = 4, + aux_sym_unquoted_token1, + [107136] = 10, ACTIONS(245), 1, anon_sym_POUND, - STATE(3318), 1, + ACTIONS(6288), 1, + anon_sym_DASH2, + ACTIONS(6296), 1, + anon_sym_PLUS2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(3136), 1, sym_comment, - ACTIONS(1666), 6, + ACTIONS(5249), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6290), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1668), 38, - ts_builtin_sym_end, + ACTIONS(6292), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6294), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5247), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337304,7 +322593,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, @@ -337320,31 +322609,37 @@ 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, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114267] = 4, + [107202] = 11, ACTIONS(245), 1, anon_sym_POUND, - STATE(3319), 1, + ACTIONS(5287), 1, + sym__newline, + ACTIONS(6298), 1, + anon_sym_DASH2, + ACTIONS(6306), 1, + anon_sym_PLUS2, + STATE(3137), 1, sym_comment, - ACTIONS(1719), 6, + STATE(3169), 1, + aux_sym_shebang_repeat1, + ACTIONS(5231), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6300), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1721), 38, - ts_builtin_sym_end, - sym__newline, + ACTIONS(6302), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6304), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5229), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337355,7 +322650,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, @@ -337371,194 +322666,409 @@ 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_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [107270] = 14, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6288), 1, + anon_sym_DASH2, + ACTIONS(6296), 1, + anon_sym_PLUS2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(3138), 1, + sym_comment, + ACTIONS(6290), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6308), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6314), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(6312), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6310), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5247), 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_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114322] = 4, + [107344] = 15, ACTIONS(245), 1, anon_sym_POUND, - STATE(3320), 1, - sym_comment, - ACTIONS(958), 14, - anon_sym_DOLLAR, + ACTIONS(5287), 1, + sym__newline, + ACTIONS(6298), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_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, - aux_sym_unquoted_token1, - ACTIONS(960), 30, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - 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_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, - [114377] = 4, + ACTIONS(6306), 1, + anon_sym_PLUS2, + STATE(3139), 1, + sym_comment, + STATE(3170), 1, + aux_sym_shebang_repeat1, + ACTIONS(6300), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6302), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6304), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6318), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6324), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6326), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6322), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6320), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5229), 17, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [107420] = 15, ACTIONS(245), 1, anon_sym_POUND, - STATE(3321), 1, - sym_comment, - ACTIONS(954), 14, - anon_sym_DOLLAR, + ACTIONS(6288), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_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, - aux_sym_unquoted_token1, - ACTIONS(956), 30, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - 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_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, - [114432] = 4, + ACTIONS(6296), 1, + anon_sym_PLUS2, + ACTIONS(6328), 1, + anon_sym_bit_DASHand2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(3140), 1, + sym_comment, + ACTIONS(6290), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6292), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6294), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6308), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6314), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6312), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6310), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5247), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [107496] = 16, ACTIONS(245), 1, anon_sym_POUND, - STATE(3322), 1, - sym_comment, - ACTIONS(962), 14, - anon_sym_DOLLAR, + ACTIONS(5287), 1, + sym__newline, + ACTIONS(6298), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_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, - aux_sym_unquoted_token1, - ACTIONS(964), 30, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - 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_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, - [114487] = 10, + ACTIONS(6306), 1, + anon_sym_PLUS2, + ACTIONS(6330), 1, + anon_sym_bit_DASHand2, + STATE(3141), 1, + sym_comment, + STATE(3171), 1, + aux_sym_shebang_repeat1, + ACTIONS(6300), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6302), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6304), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6318), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6324), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6326), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6322), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6320), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5229), 16, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [107574] = 16, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - STATE(1653), 1, + ACTIONS(6328), 1, + anon_sym_bit_DASHand2, + ACTIONS(6332), 1, + anon_sym_bit_DASHxor2, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3323), 1, + STATE(3142), 1, sym_comment, - ACTIONS(5303), 2, + ACTIONS(6290), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6292), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6294), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6346), 2, + ACTIONS(6314), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6312), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6310), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5247), 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [107652] = 17, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5287), 1, + sym__newline, + ACTIONS(6298), 1, + anon_sym_DASH2, + ACTIONS(6306), 1, + anon_sym_PLUS2, + ACTIONS(6330), 1, + anon_sym_bit_DASHand2, + ACTIONS(6334), 1, + anon_sym_bit_DASHxor2, + STATE(3143), 1, + sym_comment, + STATE(3172), 1, + aux_sym_shebang_repeat1, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5301), 32, + ACTIONS(6318), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6324), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6326), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6322), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6320), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5229), 15, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [107732] = 12, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5338), 1, sym__newline, + ACTIONS(6298), 1, + anon_sym_DASH2, + ACTIONS(6306), 1, + anon_sym_PLUS2, + STATE(3144), 1, + sym_comment, + STATE(3173), 1, + aux_sym_shebang_repeat1, + ACTIONS(5223), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6300), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6302), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6304), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6326), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5221), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337585,34 +323095,32 @@ 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, - [114553] = 9, + [107802] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5376), 1, + ACTIONS(5338), 1, sym__newline, - STATE(3324), 1, + STATE(3145), 1, sym_comment, - STATE(3349), 1, + STATE(3175), 1, aux_sym_shebang_repeat1, - ACTIONS(6354), 2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5271), 3, + ACTIONS(5223), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5269), 32, + ACTIONS(5221), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337645,40 +323153,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114617] = 13, + [107866] = 13, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5376), 1, + ACTIONS(5338), 1, sym__newline, - ACTIONS(6362), 1, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - STATE(3325), 1, + STATE(3146), 1, sym_comment, - STATE(3351), 1, + STATE(3177), 1, aux_sym_shebang_repeat1, - ACTIONS(6354), 2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6368), 2, + ACTIONS(6326), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6364), 4, + ACTIONS(6322), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5269), 25, + ACTIONS(5221), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337704,25 +323212,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114689] = 7, + [107938] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5376), 1, + ACTIONS(5338), 1, sym__newline, - STATE(3326), 1, + STATE(3147), 1, sym_comment, - STATE(3353), 1, + STATE(3179), 1, aux_sym_shebang_repeat1, - ACTIONS(6356), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5271), 5, + ACTIONS(5223), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5269), 34, + ACTIONS(5221), 34, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337757,56 +323265,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114749] = 18, + [107998] = 18, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5376), 1, + ACTIONS(5338), 1, sym__newline, - ACTIONS(6362), 1, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - ACTIONS(6374), 1, + ACTIONS(6330), 1, anon_sym_bit_DASHand2, - ACTIONS(6376), 1, + ACTIONS(6334), 1, anon_sym_bit_DASHxor2, - ACTIONS(6378), 1, + ACTIONS(6336), 1, anon_sym_bit_DASHor2, - STATE(3327), 1, + STATE(3148), 1, sym_comment, - STATE(3355), 1, + STATE(3181), 1, aux_sym_shebang_repeat1, - ACTIONS(6354), 2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6372), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6364), 4, + ACTIONS(6326), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6322), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6370), 6, + ACTIONS(6320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5269), 14, + ACTIONS(5221), 14, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [108080] = 9, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5351), 1, + sym__newline, + STATE(3149), 1, + sym_comment, + STATE(3241), 1, + aux_sym_shebang_repeat1, + ACTIONS(6300), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6302), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6304), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5199), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5197), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337818,61 +323363,79 @@ 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, - [114831] = 19, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [108144] = 19, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5376), 1, + ACTIONS(5338), 1, sym__newline, - ACTIONS(6362), 1, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - ACTIONS(6374), 1, + ACTIONS(6330), 1, anon_sym_bit_DASHand2, - ACTIONS(6376), 1, + ACTIONS(6334), 1, anon_sym_bit_DASHxor2, - ACTIONS(6378), 1, + ACTIONS(6336), 1, anon_sym_bit_DASHor2, - ACTIONS(6380), 1, + ACTIONS(6338), 1, anon_sym_and2, - STATE(3328), 1, + STATE(3150), 1, sym_comment, - STATE(3357), 1, + STATE(3183), 1, aux_sym_shebang_repeat1, - ACTIONS(6354), 2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6372), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6364), 4, + ACTIONS(6326), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6322), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6370), 6, + ACTIONS(6320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5269), 13, + ACTIONS(5221), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337886,60 +323449,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [114915] = 20, + [108228] = 20, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(6362), 1, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - ACTIONS(6374), 1, + ACTIONS(6330), 1, anon_sym_bit_DASHand2, - ACTIONS(6376), 1, + ACTIONS(6334), 1, anon_sym_bit_DASHxor2, - ACTIONS(6378), 1, + ACTIONS(6336), 1, anon_sym_bit_DASHor2, - ACTIONS(6380), 1, + ACTIONS(6338), 1, anon_sym_and2, - ACTIONS(6382), 1, + ACTIONS(6340), 1, anon_sym_xor2, - STATE(3329), 1, + STATE(3151), 1, sym_comment, - STATE(3359), 1, + STATE(3185), 1, aux_sym_shebang_repeat1, - ACTIONS(6354), 2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6372), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6364), 4, + ACTIONS(6326), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6322), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6370), 6, + ACTIONS(6320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5269), 12, + ACTIONS(5221), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337952,47 +323515,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [115001] = 14, + [108314] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5376), 1, + ACTIONS(5338), 1, sym__newline, - ACTIONS(6362), 1, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - STATE(3330), 1, + STATE(3152), 1, sym_comment, - STATE(3361), 1, + STATE(3187), 1, aux_sym_shebang_repeat1, - ACTIONS(6354), 2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6368), 2, + ACTIONS(6326), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6364), 4, + ACTIONS(6322), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6370), 6, + ACTIONS(6320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5269), 19, + ACTIONS(5221), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338012,32 +323575,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115075] = 11, + [108388] = 13, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5376), 1, + ACTIONS(5351), 1, sym__newline, - ACTIONS(6362), 1, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - STATE(3331), 1, + STATE(3153), 1, sym_comment, - STATE(3363), 1, + STATE(3244), 1, aux_sym_shebang_repeat1, - ACTIONS(5271), 2, + ACTIONS(6300), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6302), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6304), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6354), 2, + ACTIONS(6326), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6322), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5197), 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_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + 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, + [108460] = 7, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5351), 1, + sym__newline, + STATE(3154), 1, + sym_comment, + STATE(3246), 1, + aux_sym_shebang_repeat1, + ACTIONS(6302), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5199), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5197), 34, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [108520] = 11, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5338), 1, + sym__newline, + ACTIONS(6298), 1, + anon_sym_DASH2, + ACTIONS(6306), 1, + anon_sym_PLUS2, + STATE(3155), 1, + sym_comment, + STATE(3189), 1, + aux_sym_shebang_repeat1, + ACTIONS(5223), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5269), 31, + ACTIONS(5221), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338069,50 +323744,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115143] = 15, + [108588] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5376), 1, + ACTIONS(5338), 1, sym__newline, - ACTIONS(6362), 1, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - STATE(3332), 1, + STATE(3156), 1, sym_comment, - STATE(3365), 1, + STATE(3191), 1, aux_sym_shebang_repeat1, - ACTIONS(6354), 2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6372), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6364), 4, + ACTIONS(6326), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6322), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6370), 6, + ACTIONS(6320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5269), 17, + ACTIONS(5221), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338130,52 +323805,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115219] = 16, + [108664] = 16, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5376), 1, + ACTIONS(5338), 1, sym__newline, - ACTIONS(6362), 1, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - ACTIONS(6374), 1, + ACTIONS(6330), 1, anon_sym_bit_DASHand2, - STATE(3333), 1, + STATE(3157), 1, sym_comment, - STATE(3367), 1, + STATE(3193), 1, aux_sym_shebang_repeat1, - ACTIONS(6354), 2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6368), 2, + ACTIONS(6324), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6326), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6372), 2, + ACTIONS(6322), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6320), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5221), 16, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [108742] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(3158), 1, + sym_comment, + ACTIONS(974), 14, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_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, + aux_sym_unquoted_token1, + ACTIONS(976), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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_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, + [108796] = 17, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5338), 1, + sym__newline, + ACTIONS(6298), 1, + anon_sym_DASH2, + ACTIONS(6306), 1, + anon_sym_PLUS2, + ACTIONS(6330), 1, + anon_sym_bit_DASHand2, + ACTIONS(6334), 1, + anon_sym_bit_DASHxor2, + STATE(3159), 1, + sym_comment, + STATE(3195), 1, + aux_sym_shebang_repeat1, + ACTIONS(6300), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6302), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6304), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6318), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6364), 4, + ACTIONS(6326), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6322), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6370), 6, + ACTIONS(6320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5269), 16, + ACTIONS(5221), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338190,98 +323979,84 @@ 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, - [115297] = 17, + [108876] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5376), 1, - sym__newline, - ACTIONS(6362), 1, - anon_sym_DASH2, - ACTIONS(6366), 1, - anon_sym_PLUS2, - ACTIONS(6374), 1, - anon_sym_bit_DASHand2, - ACTIONS(6376), 1, - anon_sym_bit_DASHxor2, - STATE(3334), 1, + STATE(3160), 1, sym_comment, - STATE(3369), 1, - aux_sym_shebang_repeat1, - ACTIONS(6354), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6370), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5269), 15, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - [115377] = 11, + ACTIONS(978), 14, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_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, + aux_sym_unquoted_token1, + ACTIONS(980), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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_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, + [108930] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3335), 1, + STATE(3161), 1, sym_comment, - ACTIONS(5313), 2, + ACTIONS(5243), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6346), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5311), 30, + ACTIONS(5241), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338312,27 +324087,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115445] = 8, + [108998] = 8, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3336), 1, + STATE(3162), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5313), 3, + ACTIONS(5243), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5311), 33, + ACTIONS(5241), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338366,38 +324141,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115507] = 12, + [109060] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3337), 1, + STATE(3163), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, + ACTIONS(6308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6388), 4, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6312), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5311), 26, + ACTIONS(5241), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338424,23 +324199,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115577] = 6, + [109130] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3338), 1, + STATE(3164), 1, sym_comment, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5313), 5, + ACTIONS(5243), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5311), 35, + ACTIONS(5241), 35, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338476,54 +324251,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115635] = 17, + [109188] = 17, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - ACTIONS(6394), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHand2, - ACTIONS(6396), 1, + ACTIONS(6332), 1, anon_sym_bit_DASHxor2, - ACTIONS(6398), 1, + ACTIONS(6342), 1, anon_sym_bit_DASHor2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3339), 1, + STATE(3165), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, + ACTIONS(6308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6392), 2, + ACTIONS(6314), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6388), 4, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6312), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6390), 6, + ACTIONS(6310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5311), 15, + ACTIONS(5241), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338539,56 +324314,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [115715] = 18, + [109268] = 18, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - ACTIONS(6394), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHand2, - ACTIONS(6396), 1, + ACTIONS(6332), 1, anon_sym_bit_DASHxor2, - ACTIONS(6398), 1, + ACTIONS(6342), 1, anon_sym_bit_DASHor2, - ACTIONS(6400), 1, + ACTIONS(6344), 1, anon_sym_and2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3340), 1, + STATE(3166), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, + ACTIONS(6308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6392), 2, + ACTIONS(6314), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6388), 4, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6312), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6390), 6, + ACTIONS(6310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5311), 14, + ACTIONS(5241), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338603,58 +324378,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [115797] = 19, + [109350] = 19, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - ACTIONS(6394), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHand2, - ACTIONS(6396), 1, + ACTIONS(6332), 1, anon_sym_bit_DASHxor2, - ACTIONS(6398), 1, + ACTIONS(6342), 1, anon_sym_bit_DASHor2, - ACTIONS(6400), 1, + ACTIONS(6344), 1, anon_sym_and2, - ACTIONS(6402), 1, + ACTIONS(6346), 1, anon_sym_xor2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3341), 1, + STATE(3167), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, + ACTIONS(6308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6392), 2, + ACTIONS(6314), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6388), 4, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6312), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6390), 6, + ACTIONS(6310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5311), 13, + ACTIONS(5241), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338668,45 +324443,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [115881] = 13, + [109434] = 13, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3342), 1, + STATE(3168), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, + ACTIONS(6308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6388), 4, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6312), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6390), 6, + ACTIONS(6310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5311), 20, + ACTIONS(5241), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338727,30 +324502,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115953] = 10, + [109506] = 10, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3343), 1, + STATE(3169), 1, sym_comment, - ACTIONS(5313), 2, + ACTIONS(5243), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6346), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5311), 32, + ACTIONS(5241), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338783,48 +324558,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116019] = 14, + [109572] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3344), 1, + STATE(3170), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, + ACTIONS(6308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6392), 2, + ACTIONS(6314), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6388), 4, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6312), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6390), 6, + ACTIONS(6310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5311), 18, + ACTIONS(5241), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338843,50 +324618,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116093] = 15, + [109646] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - ACTIONS(6394), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHand2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3345), 1, + STATE(3171), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, + ACTIONS(6308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6392), 2, + ACTIONS(6314), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6388), 4, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6312), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6390), 6, + ACTIONS(6310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5311), 17, + ACTIONS(5241), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338904,52 +324679,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116169] = 16, + [109722] = 16, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - ACTIONS(6394), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHand2, - ACTIONS(6396), 1, + ACTIONS(6332), 1, anon_sym_bit_DASHxor2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3346), 1, + STATE(3172), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, + ACTIONS(6308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6392), 2, + ACTIONS(6314), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6388), 4, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6312), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6390), 6, + ACTIONS(6310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5311), 16, + ACTIONS(5241), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338966,33 +324741,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [116247] = 11, + [109800] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3347), 1, + STATE(3173), 1, sym_comment, - ACTIONS(5263), 2, + ACTIONS(5253), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6346), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5261), 30, + ACTIONS(5251), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339023,35 +324798,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116315] = 12, + [109868] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5404), 1, + ACTIONS(5354), 1, sym__newline, - ACTIONS(6362), 1, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - STATE(3348), 1, + STATE(3174), 1, sym_comment, - STATE(3372), 1, + STATE(3197), 1, aux_sym_shebang_repeat1, - ACTIONS(5267), 2, + ACTIONS(5257), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6354), 2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6368), 2, + ACTIONS(6326), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5265), 29, + ACTIONS(5255), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339081,27 +324856,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116385] = 8, + [109938] = 8, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3349), 1, + STATE(3175), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5263), 3, + ACTIONS(5253), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5261), 33, + ACTIONS(5251), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339135,29 +324910,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116447] = 9, + [110000] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5404), 1, + ACTIONS(5354), 1, sym__newline, - STATE(3350), 1, + STATE(3176), 1, sym_comment, - STATE(3373), 1, + STATE(3198), 1, aux_sym_shebang_repeat1, - ACTIONS(6354), 2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5267), 3, + ACTIONS(5257), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5265), 32, + ACTIONS(5255), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339190,38 +324965,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116511] = 12, + [110064] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3351), 1, + STATE(3177), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, + ACTIONS(6308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6388), 4, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6312), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5261), 26, + ACTIONS(5251), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339248,40 +325023,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116581] = 13, + [110134] = 13, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5404), 1, + ACTIONS(5354), 1, sym__newline, - ACTIONS(6362), 1, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - STATE(3352), 1, + STATE(3178), 1, sym_comment, - STATE(3374), 1, + STATE(3258), 1, aux_sym_shebang_repeat1, - ACTIONS(6354), 2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6368), 2, + ACTIONS(6326), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6364), 4, + ACTIONS(6322), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5265), 25, + ACTIONS(5255), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339307,23 +325082,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116653] = 6, + [110206] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3353), 1, + STATE(3179), 1, sym_comment, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5263), 5, + ACTIONS(5253), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5261), 35, + ACTIONS(5251), 35, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339359,25 +325134,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116711] = 7, + [110264] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5404), 1, + ACTIONS(5354), 1, sym__newline, - STATE(3354), 1, + STATE(3180), 1, sym_comment, - STATE(3375), 1, + STATE(3200), 1, aux_sym_shebang_repeat1, - ACTIONS(6356), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5267), 5, + ACTIONS(5257), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5265), 34, + ACTIONS(5255), 34, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339412,54 +325187,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116771] = 17, + [110324] = 17, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - ACTIONS(6394), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHand2, - ACTIONS(6396), 1, + ACTIONS(6332), 1, anon_sym_bit_DASHxor2, - ACTIONS(6398), 1, + ACTIONS(6342), 1, anon_sym_bit_DASHor2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3355), 1, + STATE(3181), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, + ACTIONS(6308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6392), 2, + ACTIONS(6314), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6388), 4, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6312), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6390), 6, + ACTIONS(6310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5261), 15, + ACTIONS(5251), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339475,56 +325250,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [116851] = 18, + [110404] = 18, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5404), 1, + ACTIONS(5354), 1, sym__newline, - ACTIONS(6362), 1, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - ACTIONS(6374), 1, + ACTIONS(6330), 1, anon_sym_bit_DASHand2, - ACTIONS(6376), 1, + ACTIONS(6334), 1, anon_sym_bit_DASHxor2, - ACTIONS(6378), 1, + ACTIONS(6336), 1, anon_sym_bit_DASHor2, - STATE(3356), 1, + STATE(3182), 1, sym_comment, - STATE(3376), 1, + STATE(3201), 1, aux_sym_shebang_repeat1, - ACTIONS(6354), 2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6372), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6364), 4, + ACTIONS(6326), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6322), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6370), 6, + ACTIONS(6320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5265), 14, + ACTIONS(5255), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339539,56 +325314,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [116933] = 18, + [110486] = 18, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - ACTIONS(6394), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHand2, - ACTIONS(6396), 1, + ACTIONS(6332), 1, anon_sym_bit_DASHxor2, - ACTIONS(6398), 1, + ACTIONS(6342), 1, anon_sym_bit_DASHor2, - ACTIONS(6400), 1, + ACTIONS(6344), 1, anon_sym_and2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3357), 1, + STATE(3183), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, + ACTIONS(6308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6392), 2, + ACTIONS(6314), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6388), 4, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6312), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6390), 6, + ACTIONS(6310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5261), 14, + ACTIONS(5251), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339603,58 +325378,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [117015] = 19, + [110568] = 19, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5404), 1, + ACTIONS(5354), 1, sym__newline, - ACTIONS(6362), 1, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - ACTIONS(6374), 1, + ACTIONS(6330), 1, anon_sym_bit_DASHand2, - ACTIONS(6376), 1, + ACTIONS(6334), 1, anon_sym_bit_DASHxor2, - ACTIONS(6378), 1, + ACTIONS(6336), 1, anon_sym_bit_DASHor2, - ACTIONS(6380), 1, + ACTIONS(6338), 1, anon_sym_and2, - STATE(3358), 1, + STATE(3184), 1, sym_comment, - STATE(3377), 1, + STATE(3202), 1, aux_sym_shebang_repeat1, - ACTIONS(6354), 2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6372), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6364), 4, + ACTIONS(6326), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6322), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6370), 6, + ACTIONS(6320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5265), 13, + ACTIONS(5255), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339668,58 +325443,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [117099] = 19, + [110652] = 19, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - ACTIONS(6394), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHand2, - ACTIONS(6396), 1, + ACTIONS(6332), 1, anon_sym_bit_DASHxor2, - ACTIONS(6398), 1, + ACTIONS(6342), 1, anon_sym_bit_DASHor2, - ACTIONS(6400), 1, + ACTIONS(6344), 1, anon_sym_and2, - ACTIONS(6402), 1, + ACTIONS(6346), 1, anon_sym_xor2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3359), 1, + STATE(3185), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, + ACTIONS(6308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6392), 2, + ACTIONS(6314), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6388), 4, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6312), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6390), 6, + ACTIONS(6310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5261), 13, + ACTIONS(5251), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339733,60 +325508,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [117183] = 20, + [110736] = 20, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(6362), 1, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - ACTIONS(6374), 1, + ACTIONS(6330), 1, anon_sym_bit_DASHand2, - ACTIONS(6376), 1, + ACTIONS(6334), 1, anon_sym_bit_DASHxor2, - ACTIONS(6378), 1, + ACTIONS(6336), 1, anon_sym_bit_DASHor2, - ACTIONS(6380), 1, + ACTIONS(6338), 1, anon_sym_and2, - ACTIONS(6382), 1, + ACTIONS(6340), 1, anon_sym_xor2, - STATE(3360), 1, + STATE(3186), 1, sym_comment, - STATE(3378), 1, + STATE(3203), 1, aux_sym_shebang_repeat1, - ACTIONS(6354), 2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6372), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6364), 4, + ACTIONS(6326), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6322), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6370), 6, + ACTIONS(6320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5265), 12, + ACTIONS(5255), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339799,45 +325574,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [117269] = 13, + [110822] = 13, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3361), 1, + STATE(3187), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, + ACTIONS(6308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6388), 4, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6312), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6390), 6, + ACTIONS(6310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5261), 20, + ACTIONS(5251), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339858,47 +325633,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117341] = 14, + [110894] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5404), 1, + ACTIONS(5354), 1, sym__newline, - ACTIONS(6362), 1, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - STATE(3362), 1, + STATE(3188), 1, sym_comment, - STATE(3379), 1, + STATE(3204), 1, aux_sym_shebang_repeat1, - ACTIONS(6354), 2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6368), 2, + ACTIONS(6326), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6364), 4, + ACTIONS(6322), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6370), 6, + ACTIONS(6320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5265), 19, + ACTIONS(5255), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339918,30 +325693,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117415] = 10, + [110968] = 10, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3363), 1, + STATE(3189), 1, sym_comment, - ACTIONS(5263), 2, + ACTIONS(5253), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6346), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5261), 32, + ACTIONS(5251), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339974,32 +325749,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117481] = 11, + [111034] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5404), 1, + ACTIONS(5354), 1, sym__newline, - ACTIONS(6362), 1, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - STATE(3323), 1, - aux_sym_shebang_repeat1, - STATE(3364), 1, + STATE(3190), 1, sym_comment, - ACTIONS(5267), 2, + STATE(3205), 1, + aux_sym_shebang_repeat1, + ACTIONS(5257), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6354), 2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5265), 31, + ACTIONS(5255), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -340031,48 +325806,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117549] = 14, + [111102] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3365), 1, + STATE(3191), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, + ACTIONS(6308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6392), 2, + ACTIONS(6314), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6388), 4, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6312), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6390), 6, + ACTIONS(6310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5261), 18, + ACTIONS(5251), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340091,50 +325866,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117623] = 15, + [111176] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5404), 1, + ACTIONS(5354), 1, sym__newline, - ACTIONS(6362), 1, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - STATE(3366), 1, + STATE(3192), 1, sym_comment, - STATE(3381), 1, + STATE(3206), 1, aux_sym_shebang_repeat1, - ACTIONS(6354), 2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6372), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6364), 4, + ACTIONS(6326), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6322), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6370), 6, + ACTIONS(6320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5265), 17, + ACTIONS(5255), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -340152,50 +325927,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117699] = 15, + [111252] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - ACTIONS(6394), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHand2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3367), 1, + STATE(3193), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, + ACTIONS(6308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6392), 2, + ACTIONS(6314), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6388), 4, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6312), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6390), 6, + ACTIONS(6310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5261), 17, + ACTIONS(5251), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340213,52 +325988,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117775] = 16, + [111328] = 16, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5404), 1, + ACTIONS(5354), 1, sym__newline, - ACTIONS(6362), 1, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - ACTIONS(6374), 1, + ACTIONS(6330), 1, anon_sym_bit_DASHand2, - STATE(3368), 1, + STATE(3194), 1, sym_comment, - STATE(3382), 1, + STATE(3207), 1, aux_sym_shebang_repeat1, - ACTIONS(6354), 2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6372), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6364), 4, + ACTIONS(6326), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6322), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6370), 6, + ACTIONS(6320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5265), 16, + ACTIONS(5255), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -340275,52 +326050,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117853] = 16, + [111406] = 16, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - ACTIONS(6394), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHand2, - ACTIONS(6396), 1, + ACTIONS(6332), 1, anon_sym_bit_DASHxor2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3369), 1, + STATE(3195), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, + ACTIONS(6308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6392), 2, + ACTIONS(6314), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6388), 4, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6312), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6390), 6, + ACTIONS(6310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5261), 16, + ACTIONS(5251), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340337,92 +326112,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [117931] = 17, + [111484] = 17, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5404), 1, + ACTIONS(5354), 1, sym__newline, - ACTIONS(6362), 1, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - ACTIONS(6374), 1, + ACTIONS(6330), 1, anon_sym_bit_DASHand2, - ACTIONS(6376), 1, + ACTIONS(6334), 1, anon_sym_bit_DASHxor2, - STATE(3370), 1, + STATE(3196), 1, sym_comment, - STATE(3383), 1, + STATE(3208), 1, aux_sym_shebang_repeat1, - ACTIONS(6354), 2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6372), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6364), 4, + ACTIONS(6326), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6322), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6370), 6, + ACTIONS(6320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5265), 15, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - [118011] = 9, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - STATE(3336), 1, - aux_sym_shebang_repeat1, - STATE(3371), 1, - sym_comment, - ACTIONS(6354), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5309), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5307), 32, + ACTIONS(5255), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -340434,54 +326171,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_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [118075] = 11, + [111564] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3372), 1, + STATE(3197), 1, sym_comment, - ACTIONS(5303), 2, + ACTIONS(5227), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6346), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5301), 30, + ACTIONS(5225), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340512,27 +326232,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118143] = 8, + [111632] = 8, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3373), 1, + STATE(3198), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5303), 3, + ACTIONS(5227), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5301), 33, + ACTIONS(5225), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340566,39 +326286,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118205] = 12, + [111694] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(5287), 1, + sym__newline, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - STATE(1653), 1, + STATE(3168), 1, aux_sym_shebang_repeat1, - STATE(3374), 1, + STATE(3199), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6388), 4, + ACTIONS(6326), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6322), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5301), 26, - sym__newline, + ACTIONS(6320), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5229), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -340610,37 +326338,31 @@ 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_has2, - anon_sym_not_DASHhas2, - 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, - [118275] = 6, + [111768] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3375), 1, + STATE(3200), 1, sym_comment, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5303), 5, + ACTIONS(5227), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5301), 35, + ACTIONS(5225), 35, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340676,54 +326398,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118333] = 17, + [111826] = 17, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - ACTIONS(6394), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHand2, - ACTIONS(6396), 1, + ACTIONS(6332), 1, anon_sym_bit_DASHxor2, - ACTIONS(6398), 1, + ACTIONS(6342), 1, anon_sym_bit_DASHor2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3376), 1, + STATE(3201), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, + ACTIONS(6308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6392), 2, + ACTIONS(6314), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6388), 4, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6312), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6390), 6, + ACTIONS(6310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5301), 15, + ACTIONS(5225), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340739,56 +326461,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [118413] = 18, + [111906] = 18, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - ACTIONS(6394), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHand2, - ACTIONS(6396), 1, + ACTIONS(6332), 1, anon_sym_bit_DASHxor2, - ACTIONS(6398), 1, + ACTIONS(6342), 1, anon_sym_bit_DASHor2, - ACTIONS(6400), 1, + ACTIONS(6344), 1, anon_sym_and2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3377), 1, + STATE(3202), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, + ACTIONS(6308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6392), 2, + ACTIONS(6314), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6388), 4, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6312), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6390), 6, + ACTIONS(6310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5301), 14, + ACTIONS(5225), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340803,58 +326525,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [118495] = 19, + [111988] = 19, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - ACTIONS(6394), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHand2, - ACTIONS(6396), 1, + ACTIONS(6332), 1, anon_sym_bit_DASHxor2, - ACTIONS(6398), 1, + ACTIONS(6342), 1, anon_sym_bit_DASHor2, - ACTIONS(6400), 1, + ACTIONS(6344), 1, anon_sym_and2, - ACTIONS(6402), 1, + ACTIONS(6346), 1, anon_sym_xor2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3378), 1, + STATE(3203), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, + ACTIONS(6308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6392), 2, + ACTIONS(6314), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6388), 4, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6312), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6390), 6, + ACTIONS(6310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5301), 13, + ACTIONS(5225), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340868,45 +326590,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [118579] = 13, + [112072] = 13, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3379), 1, + STATE(3204), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, + ACTIONS(6308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6388), 4, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6312), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6390), 6, + ACTIONS(6310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5301), 20, + ACTIONS(5225), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340927,35 +326649,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118651] = 12, + [112144] = 10, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(6362), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - STATE(3335), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3380), 1, + STATE(3205), 1, sym_comment, - ACTIONS(5309), 2, + ACTIONS(5227), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6354), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6368), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5307), 29, + ACTIONS(5225), 32, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -340982,51 +326700,53 @@ 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, - [118721] = 14, + [112210] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3381), 1, + STATE(3206), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, + ACTIONS(6308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6392), 2, + ACTIONS(6314), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6388), 4, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6312), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6390), 6, + ACTIONS(6310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5301), 18, + ACTIONS(5225), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341045,50 +326765,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118795] = 15, + [112284] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - ACTIONS(6394), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHand2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3382), 1, + STATE(3207), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, + ACTIONS(6308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6392), 2, + ACTIONS(6314), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6388), 4, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6312), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6390), 6, + ACTIONS(6310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5301), 17, + ACTIONS(5225), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341106,360 +326826,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118871] = 16, + [112360] = 16, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - ACTIONS(6394), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHand2, - ACTIONS(6396), 1, + ACTIONS(6332), 1, anon_sym_bit_DASHxor2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(3383), 1, - sym_comment, - ACTIONS(6346), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6348), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6392), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6388), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6390), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5301), 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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [118949] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3384), 1, - sym_comment, - ACTIONS(978), 14, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_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, - aux_sym_unquoted_token1, - ACTIONS(980), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - 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_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, - [119003] = 12, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6344), 1, - anon_sym_DASH2, - ACTIONS(6352), 1, - anon_sym_PLUS2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3385), 1, + STATE(3208), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, + ACTIONS(6308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6388), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5297), 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_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + ACTIONS(6314), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [119073] = 13, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(6362), 1, - anon_sym_DASH2, - ACTIONS(6366), 1, - anon_sym_PLUS2, - STATE(3337), 1, - aux_sym_shebang_repeat1, - STATE(3386), 1, - sym_comment, - ACTIONS(6354), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5307), 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_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - 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, - [119145] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(3387), 1, - sym_comment, - ACTIONS(6346), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6348), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5299), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5297), 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, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + ACTIONS(6312), 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, - [119207] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(3388), 1, - sym_comment, - ACTIONS(6348), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5299), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5297), 35, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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(6310), 6, anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_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, - [119265] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5355), 1, + ACTIONS(5225), 16, sym__newline, - STATE(3338), 1, - aux_sym_shebang_repeat1, - STATE(3389), 1, - sym_comment, - ACTIONS(6356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5309), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5307), 34, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -341471,54 +326884,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_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [119325] = 10, + [112438] = 10, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6404), 1, + ACTIONS(6348), 1, anon_sym_DASH2, - ACTIONS(6412), 1, + ACTIONS(6356), 1, anon_sym_PLUS2, - STATE(3390), 1, + STATE(3209), 1, sym_comment, - ACTIONS(5209), 2, + ACTIONS(5187), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6406), 2, + ACTIONS(6350), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6408), 2, + ACTIONS(6352), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6410), 2, + ACTIONS(6354), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6414), 2, + ACTIONS(6358), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5207), 31, + ACTIONS(5185), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341550,25 +326944,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119391] = 7, + [112504] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(3391), 1, + STATE(3210), 1, sym_comment, - ACTIONS(6406), 2, + ACTIONS(6350), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6408), 2, + ACTIONS(6352), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6410), 2, + ACTIONS(6354), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5209), 3, + ACTIONS(5187), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5207), 34, + ACTIONS(5185), 34, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341603,36 +326997,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119451] = 11, + [112564] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6404), 1, + ACTIONS(6348), 1, anon_sym_DASH2, - ACTIONS(6412), 1, + ACTIONS(6356), 1, anon_sym_PLUS2, - STATE(3392), 1, + STATE(3211), 1, sym_comment, - ACTIONS(6406), 2, + ACTIONS(6350), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6408), 2, + ACTIONS(6352), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6410), 2, + ACTIONS(6354), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6414), 2, + ACTIONS(6358), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6416), 2, + ACTIONS(6360), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6418), 4, + ACTIONS(6362), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5207), 27, + ACTIONS(5185), 27, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341660,21 +327054,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119519] = 5, + [112632] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(3393), 1, + STATE(3212), 1, sym_comment, - ACTIONS(6408), 2, + ACTIONS(6352), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5209), 5, + ACTIONS(5187), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5207), 36, + ACTIONS(5185), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341711,52 +327105,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119575] = 16, + [112688] = 16, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6404), 1, + ACTIONS(6348), 1, anon_sym_DASH2, - ACTIONS(6412), 1, + ACTIONS(6356), 1, anon_sym_PLUS2, - ACTIONS(6424), 1, + ACTIONS(6368), 1, anon_sym_bit_DASHand2, - ACTIONS(6426), 1, + ACTIONS(6370), 1, anon_sym_bit_DASHxor2, - ACTIONS(6428), 1, + ACTIONS(6372), 1, anon_sym_bit_DASHor2, - STATE(3394), 1, + STATE(3213), 1, sym_comment, - ACTIONS(6406), 2, + ACTIONS(6350), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6408), 2, + ACTIONS(6352), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6410), 2, + ACTIONS(6354), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6414), 2, + ACTIONS(6358), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6416), 2, + ACTIONS(6360), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6422), 2, + ACTIONS(6366), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6418), 4, + ACTIONS(6362), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6420), 6, + ACTIONS(6364), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5207), 16, + ACTIONS(5185), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341773,170 +327167,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [119653] = 17, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6404), 1, - anon_sym_DASH2, - ACTIONS(6412), 1, - anon_sym_PLUS2, - ACTIONS(6424), 1, - anon_sym_bit_DASHand2, - ACTIONS(6426), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6428), 1, - anon_sym_bit_DASHor2, - ACTIONS(6430), 1, - anon_sym_and2, - STATE(3395), 1, - sym_comment, - ACTIONS(6406), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6408), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6410), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6414), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6416), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6422), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6418), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6420), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5207), 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_xor2, - anon_sym_or2, - [119733] = 18, + [112766] = 17, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6404), 1, + ACTIONS(6348), 1, anon_sym_DASH2, - ACTIONS(6412), 1, + ACTIONS(6356), 1, anon_sym_PLUS2, - ACTIONS(6424), 1, + ACTIONS(6368), 1, anon_sym_bit_DASHand2, - ACTIONS(6426), 1, + ACTIONS(6370), 1, anon_sym_bit_DASHxor2, - ACTIONS(6428), 1, + ACTIONS(6372), 1, anon_sym_bit_DASHor2, - ACTIONS(6430), 1, + ACTIONS(6374), 1, anon_sym_and2, - ACTIONS(6432), 1, - anon_sym_xor2, - STATE(3396), 1, + STATE(3214), 1, sym_comment, - ACTIONS(6406), 2, + ACTIONS(6350), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6408), 2, + ACTIONS(6352), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6410), 2, + ACTIONS(6354), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6414), 2, + ACTIONS(6358), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6416), 2, + ACTIONS(6360), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6422), 2, + ACTIONS(6366), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6418), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6420), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5207), 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_or2, - [119815] = 12, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6404), 1, - anon_sym_DASH2, - ACTIONS(6412), 1, - anon_sym_PLUS2, - STATE(3397), 1, - sym_comment, - ACTIONS(6406), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6408), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6410), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6414), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6416), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6418), 4, + ACTIONS(6362), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6420), 6, + ACTIONS(6364), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5207), 21, + ACTIONS(5185), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341950,170 +327228,58 @@ 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_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [119885] = 9, + [112846] = 18, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6404), 1, + ACTIONS(6348), 1, anon_sym_DASH2, - ACTIONS(6412), 1, + ACTIONS(6356), 1, anon_sym_PLUS2, - STATE(3398), 1, - sym_comment, - ACTIONS(5209), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6406), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6408), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6410), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5207), 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_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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(6368), 1, anon_sym_bit_DASHand2, + ACTIONS(6370), 1, anon_sym_bit_DASHxor2, + ACTIONS(6372), 1, anon_sym_bit_DASHor2, - [119949] = 13, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6404), 1, - anon_sym_DASH2, - ACTIONS(6412), 1, - anon_sym_PLUS2, - STATE(3399), 1, - sym_comment, - ACTIONS(6406), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6408), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6410), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6414), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6416), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6422), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6418), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6420), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5207), 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, + ACTIONS(6374), 1, anon_sym_and2, + ACTIONS(6376), 1, anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [120021] = 14, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6404), 1, - anon_sym_DASH2, - ACTIONS(6412), 1, - anon_sym_PLUS2, - ACTIONS(6424), 1, - anon_sym_bit_DASHand2, - STATE(3400), 1, + STATE(3215), 1, sym_comment, - ACTIONS(6406), 2, + ACTIONS(6350), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6408), 2, + ACTIONS(6352), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6410), 2, + ACTIONS(6354), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6414), 2, + ACTIONS(6358), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6416), 2, + ACTIONS(6360), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6422), 2, + ACTIONS(6366), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6418), 4, + ACTIONS(6362), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6420), 6, + ACTIONS(6364), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5207), 18, + ACTIONS(5185), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342127,55 +327293,44 @@ 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_bit_DASHxor2, - anon_sym_bit_DASHor2, - [120095] = 15, + [112928] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6404), 1, + ACTIONS(6348), 1, anon_sym_DASH2, - ACTIONS(6412), 1, + ACTIONS(6356), 1, anon_sym_PLUS2, - ACTIONS(6424), 1, - anon_sym_bit_DASHand2, - ACTIONS(6426), 1, - anon_sym_bit_DASHxor2, - STATE(3401), 1, + STATE(3216), 1, sym_comment, - ACTIONS(6406), 2, + ACTIONS(6350), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6408), 2, + ACTIONS(6352), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6410), 2, + ACTIONS(6354), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6414), 2, + ACTIONS(6358), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6416), 2, + ACTIONS(6360), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6422), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6418), 4, + ACTIONS(6362), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6420), 6, + ACTIONS(6364), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5207), 17, + ACTIONS(5185), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342191,107 +327346,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [120171] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6434), 1, - anon_sym_EQ2, - STATE(3402), 1, - sym_comment, - ACTIONS(5080), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(5078), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - 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_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, - [120227] = 17, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [112998] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6348), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6356), 1, anon_sym_PLUS2, - ACTIONS(6394), 1, + STATE(3217), 1, + sym_comment, + ACTIONS(5187), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6350), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6352), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6354), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5185), 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_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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(6396), 1, anon_sym_bit_DASHxor2, - ACTIONS(6398), 1, anon_sym_bit_DASHor2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(3403), 1, + [113062] = 13, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6348), 1, + anon_sym_DASH2, + ACTIONS(6356), 1, + anon_sym_PLUS2, + STATE(3218), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6350), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6352), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6354), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, + ACTIONS(6358), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, + ACTIONS(6360), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6392), 2, + ACTIONS(6366), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6388), 4, + ACTIONS(6362), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6390), 6, + ACTIONS(6364), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5297), 15, + ACTIONS(5185), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342304,117 +327459,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, - [120307] = 12, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6311), 1, - anon_sym_list, - ACTIONS(6436), 1, - sym__newline, - ACTIONS(6438), 1, - anon_sym_RBRACK, - STATE(3404), 1, - sym_comment, - STATE(3448), 1, - aux_sym_shebang_repeat1, - STATE(3543), 1, - aux_sym__multiple_types_repeat2, - STATE(7111), 1, - sym__one_type, - STATE(7634), 1, - sym__type_annotation, - ACTIONS(6309), 2, - anon_sym_table, - anon_sym_record, - STATE(6701), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6307), 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, - [120377] = 18, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [113134] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(6362), 1, + ACTIONS(6348), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6356), 1, anon_sym_PLUS2, - ACTIONS(6374), 1, + ACTIONS(6368), 1, anon_sym_bit_DASHand2, - ACTIONS(6376), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6378), 1, - anon_sym_bit_DASHor2, - STATE(3339), 1, - aux_sym_shebang_repeat1, - STATE(3405), 1, + STATE(3219), 1, sym_comment, - ACTIONS(6354), 2, + ACTIONS(6350), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6352), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6354), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6358), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, ACTIONS(6360), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6372), 2, + ACTIONS(6366), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6364), 4, + ACTIONS(6362), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6370), 6, + ACTIONS(6364), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5307), 14, + ACTIONS(5185), 18, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342426,109 +327520,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, - [120459] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3406), 1, - sym_comment, - ACTIONS(970), 14, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_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, - aux_sym_unquoted_token1, - ACTIONS(972), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - 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_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, - [120513] = 18, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [113208] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6348), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6356), 1, anon_sym_PLUS2, - ACTIONS(6394), 1, + ACTIONS(6368), 1, anon_sym_bit_DASHand2, - ACTIONS(6396), 1, + ACTIONS(6370), 1, anon_sym_bit_DASHxor2, - ACTIONS(6398), 1, - anon_sym_bit_DASHor2, - ACTIONS(6400), 1, - anon_sym_and2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(3407), 1, + STATE(3220), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6350), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6352), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6354), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, + ACTIONS(6358), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, + ACTIONS(6360), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6392), 2, + ACTIONS(6366), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6388), 4, + ACTIONS(6362), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6390), 6, + ACTIONS(6364), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5297), 14, + ACTIONS(5185), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342541,60 +327582,61 @@ 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, - [120595] = 19, + anon_sym_bit_DASHor2, + [113284] = 18, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5355), 1, + ACTIONS(5351), 1, sym__newline, - ACTIONS(6362), 1, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - ACTIONS(6374), 1, + ACTIONS(6330), 1, anon_sym_bit_DASHand2, - ACTIONS(6376), 1, + ACTIONS(6334), 1, anon_sym_bit_DASHxor2, - ACTIONS(6378), 1, + ACTIONS(6336), 1, anon_sym_bit_DASHor2, - ACTIONS(6380), 1, - anon_sym_and2, - STATE(3340), 1, - aux_sym_shebang_repeat1, - STATE(3408), 1, + STATE(3221), 1, sym_comment, - ACTIONS(6354), 2, + STATE(3248), 1, + aux_sym_shebang_repeat1, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6372), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6364), 4, + ACTIONS(6326), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6322), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6370), 6, + ACTIONS(6320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5307), 13, + ACTIONS(5197), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342606,112 +327648,61 @@ 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, - [120679] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6440), 1, - anon_sym_LBRACK2, - STATE(3409), 1, - sym_comment, - ACTIONS(2290), 14, - anon_sym_LBRACK, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2294), 28, - sym_raw_string_begin, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - 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_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, - [120735] = 19, + [113366] = 19, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(5351), 1, + sym__newline, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - ACTIONS(6394), 1, + ACTIONS(6330), 1, anon_sym_bit_DASHand2, - ACTIONS(6396), 1, + ACTIONS(6334), 1, anon_sym_bit_DASHxor2, - ACTIONS(6398), 1, + ACTIONS(6336), 1, anon_sym_bit_DASHor2, - ACTIONS(6400), 1, + ACTIONS(6338), 1, anon_sym_and2, - ACTIONS(6402), 1, - anon_sym_xor2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(3410), 1, + STATE(3222), 1, sym_comment, - ACTIONS(6346), 2, + STATE(3250), 1, + aux_sym_shebang_repeat1, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6392), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6388), 4, + ACTIONS(6326), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6322), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6390), 6, + ACTIONS(6320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5297), 13, - sym__newline, + ACTIONS(5197), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342723,15 +327714,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_xor2, anon_sym_or2, - [120819] = 5, + [113450] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2192), 1, - aux_sym_unquoted_token4, - STATE(3411), 1, + STATE(3223), 1, sym_comment, - ACTIONS(994), 8, + ACTIONS(2078), 8, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -342740,7 +327730,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(998), 34, + ACTIONS(2076), 35, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH2, @@ -342775,112 +327765,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [120875] = 20, + aux_sym_unquoted_token4, + [113504] = 20, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(6362), 1, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - ACTIONS(6374), 1, + ACTIONS(6330), 1, anon_sym_bit_DASHand2, - ACTIONS(6376), 1, + ACTIONS(6334), 1, anon_sym_bit_DASHxor2, - ACTIONS(6378), 1, + ACTIONS(6336), 1, anon_sym_bit_DASHor2, - ACTIONS(6380), 1, + ACTIONS(6338), 1, anon_sym_and2, - ACTIONS(6382), 1, + ACTIONS(6340), 1, anon_sym_xor2, - STATE(3341), 1, - aux_sym_shebang_repeat1, - STATE(3412), 1, + STATE(3224), 1, sym_comment, - ACTIONS(6354), 2, + STATE(3253), 1, + aux_sym_shebang_repeat1, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6372), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6370), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5307), 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, - [120961] = 13, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6344), 1, - anon_sym_DASH2, - ACTIONS(6352), 1, - anon_sym_PLUS2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(3413), 1, - sym_comment, - ACTIONS(6346), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6348), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, + ACTIONS(6326), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6388), 4, + ACTIONS(6322), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6390), 6, + ACTIONS(6320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5297), 20, - sym__newline, + ACTIONS(5197), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342892,55 +327831,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_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, - [121033] = 14, + [113590] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(6362), 1, - anon_sym_DASH2, - ACTIONS(6366), 1, - anon_sym_PLUS2, - STATE(3342), 1, - aux_sym_shebang_repeat1, - STATE(3414), 1, + ACTIONS(4732), 1, + aux_sym_unquoted_token2, + STATE(3225), 1, sym_comment, - ACTIONS(6354), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, + ACTIONS(1616), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6370), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5307), 19, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1628), 37, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -342951,51 +327858,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_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, - [121107] = 13, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(3610), 1, - anon_sym_DOLLAR, - ACTIONS(4075), 1, - anon_sym_LPAREN2, - ACTIONS(6442), 1, - anon_sym_DOT, - ACTIONS(6446), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6448), 1, - aux_sym__immediate_decimal_token5, - STATE(3415), 1, - sym_comment, - STATE(3619), 1, - sym__immediate_decimal, - ACTIONS(6444), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1713), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1431), 6, - anon_sym_GT2, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1445), 26, - sym__newline, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -343019,31 +327883,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [121179] = 10, + [113646] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(6255), 1, + anon_sym_list, + ACTIONS(6378), 1, + sym__newline, + ACTIONS(6380), 1, + anon_sym_RBRACK, + STATE(3226), 1, + sym_comment, + STATE(3291), 1, + aux_sym_shebang_repeat1, + STATE(3360), 1, + aux_sym__multiple_types_repeat2, + STATE(6480), 1, + sym__one_type, + STATE(7039), 1, + sym__type_annotation, + ACTIONS(6253), 2, + anon_sym_table, + anon_sym_record, + STATE(6276), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6251), 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, + [113716] = 14, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5351), 1, + sym__newline, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(3416), 1, + STATE(3227), 1, sym_comment, - ACTIONS(5299), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6346), 2, + STATE(3257), 1, + aux_sym_shebang_repeat1, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5297), 32, - sym__newline, + ACTIONS(6318), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6326), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6322), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6320), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5197), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -343055,52 +327993,91 @@ 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [121245] = 11, + [113790] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(3228), 1, + sym_comment, + ACTIONS(2130), 8, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2128), 34, + 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_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + 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, + [113846] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5355), 1, + ACTIONS(5351), 1, sym__newline, - ACTIONS(6362), 1, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - STATE(3343), 1, + STATE(3136), 1, aux_sym_shebang_repeat1, - STATE(3417), 1, + STATE(3229), 1, sym_comment, - ACTIONS(5309), 2, + ACTIONS(5199), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6354), 2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5307), 31, + ACTIONS(5197), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -343132,37 +328109,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [121313] = 5, - ACTIONS(245), 1, + [113914] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6223), 1, - aux_sym_unquoted_token2, - STATE(3418), 1, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(3230), 1, sym_comment, - ACTIONS(1579), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1591), 29, + ACTIONS(2072), 8, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2068), 34, + 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, @@ -343170,11 +328143,14 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_out_GT, + anon_sym_e_GT, + 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, @@ -343183,49 +328159,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [121369] = 14, + aux_sym_unquoted_token1, + [113970] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(5351), 1, + sym__newline, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - STATE(1653), 1, + STATE(3138), 1, aux_sym_shebang_repeat1, - STATE(3419), 1, + STATE(3231), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6392), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6388), 4, + ACTIONS(6326), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6322), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6390), 6, + ACTIONS(6320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5297), 18, - sym__newline, + ACTIONS(5197), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -343243,50 +328221,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [121443] = 15, + [114046] = 16, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5355), 1, + ACTIONS(5351), 1, sym__newline, - ACTIONS(6362), 1, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - STATE(3344), 1, + ACTIONS(6330), 1, + anon_sym_bit_DASHand2, + STATE(3140), 1, aux_sym_shebang_repeat1, - STATE(3420), 1, + STATE(3232), 1, sym_comment, - ACTIONS(6354), 2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6372), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6364), 4, + ACTIONS(6326), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6322), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6370), 6, + ACTIONS(6320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5307), 17, + ACTIONS(5197), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -343301,37 +328281,44 @@ 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, - [121519] = 5, + [114124] = 13, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4768), 1, + ACTIONS(1447), 1, aux_sym_unquoted_token2, - STATE(3421), 1, + ACTIONS(3550), 1, + anon_sym_DOLLAR, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(6382), 1, + anon_sym_DOT, + ACTIONS(6386), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6388), 1, + aux_sym__immediate_decimal_token5, + STATE(3233), 1, sym_comment, - ACTIONS(1579), 5, + STATE(3415), 1, + sym__immediate_decimal, + ACTIONS(6384), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1646), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1431), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1591), 37, - ts_builtin_sym_end, + ACTIONS(1445), 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_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -343355,51 +328342,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [121575] = 15, + [114196] = 17, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(5351), 1, + sym__newline, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - ACTIONS(6394), 1, + ACTIONS(6330), 1, anon_sym_bit_DASHand2, - STATE(1653), 1, + ACTIONS(6334), 1, + anon_sym_bit_DASHxor2, + STATE(3142), 1, aux_sym_shebang_repeat1, - STATE(3422), 1, + STATE(3234), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6392), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6388), 4, + ACTIONS(6326), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6322), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6390), 6, + ACTIONS(6320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5297), 17, - sym__newline, + ACTIONS(5197), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -343414,35 +328404,37 @@ 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, - [121651] = 5, - ACTIONS(3), 1, + [114276] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2200), 1, - aux_sym_unquoted_token4, - STATE(3423), 1, + STATE(3235), 1, sym_comment, - ACTIONS(2198), 8, + ACTIONS(970), 14, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_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, + aux_sym_unquoted_token1, + ACTIONS(972), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2194), 34, - 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, @@ -343450,14 +328442,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, aux_sym__val_number_token6, 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, @@ -343466,66 +328455,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_token1, - [121707] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3424), 1, - sym_comment, - ACTIONS(2370), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5112), 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(2372), 25, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [121763] = 5, + [114330] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6450), 1, - anon_sym_EQ2, - STATE(3425), 1, + ACTIONS(6390), 1, + anon_sym_LBRACK2, + STATE(3236), 1, sym_comment, - ACTIONS(5062), 13, + ACTIONS(2230), 14, + anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -343539,9 +328477,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5060), 29, + ACTIONS(2234), 28, sym_raw_string_begin, - anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ, @@ -343569,35 +328506,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, - [121819] = 12, + [114386] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5389), 1, + ACTIONS(5351), 1, sym__newline, - ACTIONS(6362), 1, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - STATE(3426), 1, + STATE(3237), 1, sym_comment, - STATE(3445), 1, + STATE(3239), 1, aux_sym_shebang_repeat1, - ACTIONS(5287), 2, + ACTIONS(5199), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6354), 2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6368), 2, + ACTIONS(6326), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5285), 29, + ACTIONS(5197), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -343627,40 +328564,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [121889] = 5, - ACTIONS(3), 1, + [114456] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(3427), 1, + ACTIONS(6163), 1, + aux_sym_unquoted_token2, + STATE(3238), 1, sym_comment, - ACTIONS(2204), 8, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2202), 34, + ACTIONS(1616), 13, 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_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -343669,42 +328584,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_token1, - [121945] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(3428), 1, - sym_comment, - ACTIONS(2093), 8, + ACTIONS(1628), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2089), 34, - 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, @@ -343712,14 +328602,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token5, aux_sym__val_number_token6, 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, @@ -343728,30 +328615,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, - aux_sym_unquoted_token1, - [122001] = 9, + [114512] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5389), 1, - sym__newline, - STATE(3387), 1, + ACTIONS(6288), 1, + anon_sym_DASH2, + ACTIONS(6296), 1, + anon_sym_PLUS2, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3429), 1, + STATE(3239), 1, sym_comment, - ACTIONS(6354), 2, + ACTIONS(5249), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5287), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5285), 32, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5247), 30, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -343763,7 +328654,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, @@ -343779,45 +328669,89 @@ 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, - [122065] = 13, + [114580] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5389), 1, + ACTIONS(5287), 1, sym__newline, - ACTIONS(6362), 1, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - STATE(3385), 1, + STATE(3161), 1, aux_sym_shebang_repeat1, - STATE(3430), 1, + STATE(3240), 1, sym_comment, - ACTIONS(6354), 2, + ACTIONS(5231), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, + ACTIONS(6326), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6364), 4, + ACTIONS(5229), 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_has2, + anon_sym_not_DASHhas2, + 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(5285), 25, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [114650] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(3241), 1, + sym_comment, + ACTIONS(6290), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6292), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6294), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5249), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5247), 33, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -343829,6 +328763,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, @@ -343838,30 +328773,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_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, - [122137] = 7, + [114712] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5389), 1, + ACTIONS(6392), 1, + anon_sym_EQ2, + STATE(3242), 1, + sym_comment, + ACTIONS(4940), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(4938), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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_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, + [114768] = 9, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5287), 1, sym__newline, - STATE(3388), 1, + STATE(3162), 1, aux_sym_shebang_repeat1, - STATE(3431), 1, + STATE(3243), 1, sym_comment, - ACTIONS(6356), 2, + ACTIONS(6300), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5287), 5, + ACTIONS(6304), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5231), 3, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5285), 34, + ACTIONS(5229), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -343889,63 +328885,44 @@ 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, - [122197] = 18, + [114832] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5389), 1, - sym__newline, - ACTIONS(6362), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - ACTIONS(6374), 1, - anon_sym_bit_DASHand2, - ACTIONS(6376), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6378), 1, - anon_sym_bit_DASHor2, - STATE(3403), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3432), 1, + STATE(3244), 1, sym_comment, - ACTIONS(6354), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, + ACTIONS(6308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6368), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6364), 4, + ACTIONS(6312), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6370), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5285), 14, + ACTIONS(5247), 26, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -343957,61 +328934,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, - [122279] = 19, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + 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, + [114902] = 13, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5389), 1, + ACTIONS(5287), 1, sym__newline, - ACTIONS(6362), 1, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - ACTIONS(6374), 1, - anon_sym_bit_DASHand2, - ACTIONS(6376), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6378), 1, - anon_sym_bit_DASHor2, - ACTIONS(6380), 1, - anon_sym_and2, - STATE(3407), 1, + STATE(3163), 1, aux_sym_shebang_repeat1, - STATE(3433), 1, + STATE(3245), 1, sym_comment, - ACTIONS(6354), 2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6368), 2, + ACTIONS(6326), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6364), 4, + ACTIONS(6322), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6370), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5285), 13, + ACTIONS(5229), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344023,115 +328993,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_xor2, - anon_sym_or2, - [122363] = 20, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(6362), 1, - anon_sym_DASH2, - ACTIONS(6366), 1, - anon_sym_PLUS2, - ACTIONS(6374), 1, - anon_sym_bit_DASHand2, - ACTIONS(6376), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6378), 1, - anon_sym_bit_DASHor2, - ACTIONS(6380), 1, + anon_sym_in2, anon_sym_and2, - ACTIONS(6382), 1, anon_sym_xor2, - STATE(3410), 1, - aux_sym_shebang_repeat1, - STATE(3434), 1, - sym_comment, - ACTIONS(6354), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6370), 6, - anon_sym_in2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5285), 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, - [122449] = 14, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [114974] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5389), 1, - sym__newline, - ACTIONS(6362), 1, - anon_sym_DASH2, - ACTIONS(6366), 1, - anon_sym_PLUS2, - STATE(3413), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3435), 1, + STATE(3246), 1, sym_comment, - ACTIONS(6354), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, + ACTIONS(5249), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6370), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5285), 19, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5247), 35, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344143,40 +329036,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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, - [122523] = 11, + [115032] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5389), 1, + ACTIONS(5287), 1, sym__newline, - ACTIONS(6362), 1, - anon_sym_DASH2, - ACTIONS(6366), 1, - anon_sym_PLUS2, - STATE(3416), 1, + STATE(3164), 1, aux_sym_shebang_repeat1, - STATE(3436), 1, + STATE(3247), 1, sym_comment, - ACTIONS(5287), 2, + ACTIONS(6302), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5231), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6354), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5285), 31, + anon_sym_PLUS2, + ACTIONS(5229), 34, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344188,6 +329089,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, @@ -344203,107 +329105,62 @@ 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, - [122591] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3437), 1, - sym_comment, - ACTIONS(2047), 8, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2045), 35, - 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_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - 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, - aux_sym_unquoted_token4, - [122645] = 16, + [115092] = 17, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(6362), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - ACTIONS(6374), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHand2, - STATE(3345), 1, + ACTIONS(6332), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6342), 1, + anon_sym_bit_DASHor2, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3438), 1, + STATE(3248), 1, sym_comment, - ACTIONS(6354), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, + ACTIONS(6308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6372), 2, + ACTIONS(6314), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6364), 4, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6312), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6370), 6, + ACTIONS(6310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5307), 16, + ACTIONS(5247), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344318,52 +329175,56 @@ 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, - [122723] = 15, + [115172] = 18, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5389), 1, + ACTIONS(5287), 1, sym__newline, - ACTIONS(6362), 1, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - STATE(3419), 1, + ACTIONS(6330), 1, + anon_sym_bit_DASHand2, + ACTIONS(6334), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6336), 1, + anon_sym_bit_DASHor2, + STATE(3165), 1, aux_sym_shebang_repeat1, - STATE(3439), 1, + STATE(3249), 1, sym_comment, - ACTIONS(6354), 2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6372), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6364), 4, + ACTIONS(6326), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6322), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6370), 6, + ACTIONS(6320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5285), 17, + ACTIONS(5229), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344378,55 +329239,57 @@ 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, - [122799] = 16, + [115254] = 18, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5389), 1, - sym__newline, - ACTIONS(6362), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - ACTIONS(6374), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHand2, - STATE(3422), 1, + ACTIONS(6332), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6342), 1, + anon_sym_bit_DASHor2, + ACTIONS(6344), 1, + anon_sym_and2, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3440), 1, + STATE(3250), 1, sym_comment, - ACTIONS(6354), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, + ACTIONS(6308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6372), 2, + ACTIONS(6314), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6364), 4, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6312), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6370), 6, + ACTIONS(6310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5285), 16, + ACTIONS(5247), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344438,58 +329301,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_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [122877] = 16, + [115336] = 19, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6344), 1, + ACTIONS(5287), 1, + sym__newline, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - ACTIONS(6394), 1, + ACTIONS(6330), 1, anon_sym_bit_DASHand2, - ACTIONS(6396), 1, + ACTIONS(6334), 1, anon_sym_bit_DASHxor2, - STATE(1653), 1, + ACTIONS(6336), 1, + anon_sym_bit_DASHor2, + ACTIONS(6338), 1, + anon_sym_and2, + STATE(3166), 1, aux_sym_shebang_repeat1, - STATE(3441), 1, + STATE(3251), 1, sym_comment, - ACTIONS(6346), 2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6392), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6388), 4, + ACTIONS(6326), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6322), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6390), 6, + ACTIONS(6320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5297), 16, - sym__newline, + ACTIONS(5229), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344501,58 +329366,112 @@ 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, - [122955] = 17, + [115420] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(6362), 1, + ACTIONS(6394), 1, + anon_sym_EQ2, + STATE(3252), 1, + sym_comment, + ACTIONS(4908), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(4906), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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_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, + [115476] = 19, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - ACTIONS(6374), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHand2, - ACTIONS(6376), 1, + ACTIONS(6332), 1, anon_sym_bit_DASHxor2, - STATE(3346), 1, + ACTIONS(6342), 1, + anon_sym_bit_DASHor2, + ACTIONS(6344), 1, + anon_sym_and2, + ACTIONS(6346), 1, + anon_sym_xor2, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3442), 1, + STATE(3253), 1, sym_comment, - ACTIONS(6354), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, + ACTIONS(6308), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6372), 2, + ACTIONS(6314), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6364), 4, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6312), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6370), 6, + ACTIONS(6310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5307), 15, + ACTIONS(5247), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344564,39 +329483,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, - anon_sym_bit_DASHor2, - [123035] = 12, + [115560] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5376), 1, - sym__newline, - ACTIONS(6362), 1, - anon_sym_DASH2, - ACTIONS(6366), 1, - anon_sym_PLUS2, - STATE(3347), 1, - aux_sym_shebang_repeat1, - STATE(3443), 1, + STATE(3254), 1, sym_comment, - ACTIONS(5271), 2, + ACTIONS(2362), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6354), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6356), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6368), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5269), 29, + anon_sym_PLUS2, + ACTIONS(5078), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344608,6 +329508,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(2364), 25, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -344623,100 +329526,69 @@ 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, - [123105] = 17, + [115616] = 20, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5389), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(6362), 1, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - ACTIONS(6374), 1, + ACTIONS(6330), 1, anon_sym_bit_DASHand2, - ACTIONS(6376), 1, + ACTIONS(6334), 1, anon_sym_bit_DASHxor2, - STATE(3441), 1, + ACTIONS(6336), 1, + anon_sym_bit_DASHor2, + ACTIONS(6338), 1, + anon_sym_and2, + ACTIONS(6340), 1, + anon_sym_xor2, + STATE(3167), 1, aux_sym_shebang_repeat1, - STATE(3444), 1, + STATE(3255), 1, sym_comment, - ACTIONS(6354), 2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6368), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6372), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6364), 4, + ACTIONS(6326), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6322), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6370), 6, + ACTIONS(6320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5285), 15, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - [123185] = 11, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6344), 1, - anon_sym_DASH2, - ACTIONS(6352), 1, - anon_sym_PLUS2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(3445), 1, - sym_comment, - ACTIONS(5299), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6346), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6348), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5297), 30, - sym__newline, + ACTIONS(5229), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -344728,208 +329600,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_in2, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [123253] = 4, - ACTIONS(245), 1, + [115702] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3446), 1, + ACTIONS(2106), 1, + aux_sym_unquoted_token4, + STATE(3256), 1, sym_comment, - ACTIONS(974), 14, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_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, - aux_sym_unquoted_token1, - ACTIONS(976), 29, + ACTIONS(994), 8, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DASH_DASH, - 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_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, - [123307] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3447), 1, - sym_comment, - ACTIONS(5197), 13, + ACTIONS(998), 34, anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(5195), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_DASH_DASH, - 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_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, - [123360] = 11, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6311), 1, - anon_sym_list, - ACTIONS(6436), 1, - sym__newline, - STATE(3448), 1, - sym_comment, - STATE(3541), 1, - aux_sym__multiple_types_repeat2, - STATE(3629), 1, - aux_sym_shebang_repeat1, - STATE(7014), 1, - sym__one_type, - STATE(7634), 1, - sym__type_annotation, - ACTIONS(6309), 2, - anon_sym_table, - anon_sym_record, - STATE(6701), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6307), 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, - [123427] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3449), 1, - sym_comment, - ACTIONS(2475), 13, - anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2477), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, 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, @@ -344937,29 +329635,6 @@ static const uint16_t ts_small_parse_table[] = { 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, - [123480] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3450), 1, - sym_comment, - ACTIONS(2479), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -344968,29 +329643,6 @@ 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(2481), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - 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_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, @@ -344999,110 +329651,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [123533] = 4, + aux_sym_unquoted_token1, + [115758] = 13, ACTIONS(245), 1, anon_sym_POUND, - STATE(3451), 1, - sym_comment, - ACTIONS(5177), 13, - anon_sym_DOLLAR, + ACTIONS(6288), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(5175), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - 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_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, - [123586] = 4, + ACTIONS(6296), 1, + anon_sym_PLUS2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(3257), 1, + sym_comment, + ACTIONS(6290), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6292), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6294), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6308), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6312), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6310), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5247), 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, + [115830] = 12, ACTIONS(245), 1, anon_sym_POUND, - STATE(3452), 1, - sym_comment, - ACTIONS(5181), 13, - anon_sym_DOLLAR, + ACTIONS(6288), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(5179), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - 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_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, - [123639] = 4, + ACTIONS(6296), 1, + anon_sym_PLUS2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(3258), 1, + sym_comment, + ACTIONS(6290), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6292), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6294), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6308), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6312), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5225), 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_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + 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, + [115900] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3453), 1, + STATE(3259), 1, sym_comment, - ACTIONS(5034), 13, + ACTIONS(4976), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -345116,7 +329788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5032), 29, + ACTIONS(4974), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -345146,69 +329818,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, - [123692] = 12, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - ACTIONS(3610), 1, - anon_sym_DOLLAR, - ACTIONS(4075), 1, - anon_sym_LPAREN2, - ACTIONS(6454), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6456), 1, - aux_sym__immediate_decimal_token5, - STATE(3454), 1, - sym_comment, - STATE(3646), 1, - sym__immediate_decimal, - ACTIONS(6452), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1824), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1466), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1468), 26, - sym__newline, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [123761] = 4, + [115953] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3455), 1, + STATE(3260), 1, sym_comment, - ACTIONS(5165), 13, + ACTIONS(2390), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -345222,7 +329837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5163), 29, + ACTIONS(2392), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -345252,12 +329867,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, - [123814] = 4, + [116006] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3456), 1, + STATE(3261), 1, sym_comment, - ACTIONS(2414), 13, + ACTIONS(2290), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -345271,7 +329886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2416), 29, + ACTIONS(2292), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -345295,116 +329910,18 @@ static const uint16_t ts_small_parse_table[] = { 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, - [123867] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3457), 1, - sym_comment, - ACTIONS(2202), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2204), 37, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [123920] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3458), 1, - sym_comment, - ACTIONS(2089), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2093), 37, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [123973] = 4, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [116059] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3459), 1, + STATE(3262), 1, sym_comment, - ACTIONS(6460), 13, + ACTIONS(2409), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -345418,7 +329935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(6458), 29, + ACTIONS(2411), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -345448,12 +329965,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, - [124026] = 4, + [116112] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3460), 1, + STATE(3263), 1, sym_comment, - ACTIONS(2418), 13, + ACTIONS(2278), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -345467,7 +329984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2420), 29, + ACTIONS(2280), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -345497,12 +330014,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, - [124079] = 4, + [116165] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3461), 1, + STATE(3264), 1, sym_comment, - ACTIONS(2300), 13, + ACTIONS(2278), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -345516,7 +330033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2302), 29, + ACTIONS(2280), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -345546,12 +330063,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, - [124132] = 4, + [116218] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3462), 1, + STATE(3265), 1, + sym_comment, + ACTIONS(998), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(994), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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_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, + [116271] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(3266), 1, sym_comment, - ACTIONS(2457), 13, + ACTIONS(5113), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -345565,7 +330131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2459), 29, + ACTIONS(5111), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -345595,27 +330161,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, - [124185] = 12, + [116324] = 13, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(1447), 1, aux_sym_unquoted_token2, - ACTIONS(3610), 1, + ACTIONS(3550), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(6454), 1, + ACTIONS(6396), 1, + anon_sym_DOT, + ACTIONS(6400), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6456), 1, + ACTIONS(6402), 1, aux_sym__immediate_decimal_token5, - STATE(3463), 1, + STATE(3267), 1, sym_comment, - STATE(3649), 1, + STATE(3427), 1, sym__immediate_decimal, - ACTIONS(6452), 2, + ACTIONS(6398), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1804), 2, + STATE(3473), 2, sym__expr_parenthesized_immediate, sym_val_variable, ACTIONS(1431), 6, @@ -345625,10 +330193,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1445), 26, - sym__newline, + ACTIONS(1445), 25, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -345652,12 +330219,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124254] = 4, + [116395] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3464), 1, + STATE(3268), 1, sym_comment, - ACTIONS(2398), 13, + ACTIONS(5050), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -345671,7 +330238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2400), 29, + ACTIONS(5048), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -345701,31 +330268,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, - [124307] = 10, + [116448] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6462), 1, + STATE(3269), 1, + sym_comment, + ACTIONS(5062), 13, + anon_sym_DOLLAR, anon_sym_DASH2, - ACTIONS(6470), 1, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(5060), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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_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, + [116501] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(3270), 1, + sym_comment, + ACTIONS(2421), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2423), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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_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, + [116554] = 10, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6404), 1, + anon_sym_DASH2, + ACTIONS(6412), 1, anon_sym_PLUS2, - STATE(3465), 1, + STATE(3271), 1, sym_comment, - ACTIONS(5209), 2, + ACTIONS(5187), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6464), 2, + ACTIONS(6406), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6466), 2, + ACTIONS(6408), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6468), 2, + ACTIONS(6410), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6472), 2, + ACTIONS(6414), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5207), 30, + ACTIONS(5185), 30, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -345756,25 +330421,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124372] = 7, + [116619] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(3466), 1, + STATE(3272), 1, sym_comment, - ACTIONS(6464), 2, + ACTIONS(6406), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6466), 2, + ACTIONS(6408), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6468), 2, + ACTIONS(6410), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5209), 3, + ACTIONS(5187), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5207), 33, + ACTIONS(5185), 33, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -345808,36 +330473,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124431] = 11, + [116678] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6404), 1, anon_sym_DASH2, - ACTIONS(6470), 1, + ACTIONS(6412), 1, anon_sym_PLUS2, - STATE(3467), 1, + STATE(3273), 1, sym_comment, - ACTIONS(6464), 2, + ACTIONS(6406), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6466), 2, + ACTIONS(6408), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6468), 2, + ACTIONS(6410), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6472), 2, + ACTIONS(6414), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6474), 2, + ACTIONS(6416), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6476), 4, + ACTIONS(6418), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5207), 26, + ACTIONS(5185), 26, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -345864,21 +330529,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124498] = 5, + [116745] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(3468), 1, + STATE(3274), 1, sym_comment, - ACTIONS(6466), 2, + ACTIONS(6408), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5209), 5, + ACTIONS(5187), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5207), 35, + ACTIONS(5185), 35, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -345914,52 +330579,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124553] = 16, + [116800] = 16, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6404), 1, anon_sym_DASH2, - ACTIONS(6470), 1, + ACTIONS(6412), 1, anon_sym_PLUS2, - ACTIONS(6482), 1, + ACTIONS(6424), 1, anon_sym_bit_DASHand2, - ACTIONS(6484), 1, + ACTIONS(6426), 1, anon_sym_bit_DASHxor2, - ACTIONS(6486), 1, + ACTIONS(6428), 1, anon_sym_bit_DASHor2, - STATE(3469), 1, + STATE(3275), 1, sym_comment, - ACTIONS(6464), 2, + ACTIONS(6406), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6466), 2, + ACTIONS(6408), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6468), 2, + ACTIONS(6410), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6472), 2, + ACTIONS(6414), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6474), 2, + ACTIONS(6416), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6480), 2, + ACTIONS(6422), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6476), 4, + ACTIONS(6418), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6478), 6, + ACTIONS(6420), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5207), 15, + ACTIONS(5185), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -345975,54 +330640,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [124630] = 17, + [116877] = 17, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6404), 1, anon_sym_DASH2, - ACTIONS(6470), 1, + ACTIONS(6412), 1, anon_sym_PLUS2, - ACTIONS(6482), 1, + ACTIONS(6424), 1, anon_sym_bit_DASHand2, - ACTIONS(6484), 1, + ACTIONS(6426), 1, anon_sym_bit_DASHxor2, - ACTIONS(6486), 1, + ACTIONS(6428), 1, anon_sym_bit_DASHor2, - ACTIONS(6488), 1, + ACTIONS(6430), 1, anon_sym_and2, - STATE(3470), 1, + STATE(3276), 1, sym_comment, - ACTIONS(6464), 2, + ACTIONS(6406), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6466), 2, + ACTIONS(6408), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6468), 2, + ACTIONS(6410), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6472), 2, + ACTIONS(6414), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6474), 2, + ACTIONS(6416), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6480), 2, + ACTIONS(6422), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6476), 4, + ACTIONS(6418), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6478), 6, + ACTIONS(6420), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5207), 14, + ACTIONS(5185), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -346037,56 +330702,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_xor2, anon_sym_or2, - [124709] = 18, + [116956] = 18, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6404), 1, anon_sym_DASH2, - ACTIONS(6470), 1, + ACTIONS(6412), 1, anon_sym_PLUS2, - ACTIONS(6482), 1, + ACTIONS(6424), 1, anon_sym_bit_DASHand2, - ACTIONS(6484), 1, + ACTIONS(6426), 1, anon_sym_bit_DASHxor2, - ACTIONS(6486), 1, + ACTIONS(6428), 1, anon_sym_bit_DASHor2, - ACTIONS(6488), 1, + ACTIONS(6430), 1, anon_sym_and2, - ACTIONS(6490), 1, + ACTIONS(6432), 1, anon_sym_xor2, - STATE(3471), 1, + STATE(3277), 1, sym_comment, - ACTIONS(6464), 2, + ACTIONS(6406), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6466), 2, + ACTIONS(6408), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6468), 2, + ACTIONS(6410), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6472), 2, + ACTIONS(6414), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6474), 2, + ACTIONS(6416), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6480), 2, + ACTIONS(6422), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6476), 4, + ACTIONS(6418), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6478), 6, + ACTIONS(6420), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5207), 13, + ACTIONS(5185), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -346100,43 +330765,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_or2, - [124790] = 12, + [117037] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6404), 1, anon_sym_DASH2, - ACTIONS(6470), 1, + ACTIONS(6412), 1, anon_sym_PLUS2, - STATE(3472), 1, + STATE(3278), 1, sym_comment, - ACTIONS(6464), 2, + ACTIONS(6406), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6466), 2, + ACTIONS(6408), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6468), 2, + ACTIONS(6410), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6472), 2, + ACTIONS(6414), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6474), 2, + ACTIONS(6416), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6476), 4, + ACTIONS(6418), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6478), 6, + ACTIONS(6420), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5207), 20, + ACTIONS(5185), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -346157,28 +330822,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124859] = 9, + [117106] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6404), 1, anon_sym_DASH2, - ACTIONS(6470), 1, + ACTIONS(6412), 1, anon_sym_PLUS2, - STATE(3473), 1, + STATE(3279), 1, sym_comment, - ACTIONS(5209), 2, + ACTIONS(5187), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6464), 2, + ACTIONS(6406), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6466), 2, + ACTIONS(6408), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6468), 2, + ACTIONS(6410), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5207), 32, + ACTIONS(5185), 32, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -346211,46 +330876,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124922] = 13, + [117169] = 13, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6404), 1, anon_sym_DASH2, - ACTIONS(6470), 1, + ACTIONS(6412), 1, anon_sym_PLUS2, - STATE(3474), 1, + STATE(3280), 1, sym_comment, - ACTIONS(6464), 2, + ACTIONS(6406), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6466), 2, + ACTIONS(6408), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6468), 2, + ACTIONS(6410), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6472), 2, + ACTIONS(6414), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6474), 2, + ACTIONS(6416), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6480), 2, + ACTIONS(6422), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6476), 4, + ACTIONS(6418), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6478), 6, + ACTIONS(6420), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5207), 18, + ACTIONS(5185), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -346269,48 +330934,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124993] = 14, + [117240] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6404), 1, anon_sym_DASH2, - ACTIONS(6470), 1, + ACTIONS(6412), 1, anon_sym_PLUS2, - ACTIONS(6482), 1, + ACTIONS(6424), 1, anon_sym_bit_DASHand2, - STATE(3475), 1, + STATE(3281), 1, sym_comment, - ACTIONS(6464), 2, + ACTIONS(6406), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6466), 2, + ACTIONS(6408), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6468), 2, + ACTIONS(6410), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6472), 2, + ACTIONS(6414), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6474), 2, + ACTIONS(6416), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6480), 2, + ACTIONS(6422), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6476), 4, + ACTIONS(6418), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6478), 6, + ACTIONS(6420), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5207), 17, + ACTIONS(5185), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -346328,372 +330993,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [125066] = 15, + [117313] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6404), 1, anon_sym_DASH2, - ACTIONS(6470), 1, + ACTIONS(6412), 1, anon_sym_PLUS2, - ACTIONS(6482), 1, + ACTIONS(6424), 1, anon_sym_bit_DASHand2, - ACTIONS(6484), 1, + ACTIONS(6426), 1, anon_sym_bit_DASHxor2, - STATE(3476), 1, + STATE(3282), 1, sym_comment, - ACTIONS(6464), 2, + ACTIONS(6406), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6466), 2, + ACTIONS(6408), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6468), 2, + ACTIONS(6410), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6472), 2, + ACTIONS(6414), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6474), 2, + ACTIONS(6416), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6480), 2, + ACTIONS(6422), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6476), 4, + ACTIONS(6418), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6478), 6, + ACTIONS(6420), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5207), 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, - [125141] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3477), 1, - sym_comment, - ACTIONS(1579), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1591), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - 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_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, - [125194] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3478), 1, - sym_comment, - ACTIONS(1851), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1853), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - 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_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, - [125247] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3479), 1, - sym_comment, - ACTIONS(1959), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1961), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - 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_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, - [125300] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3480), 1, - sym_comment, - ACTIONS(2370), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2372), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - 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_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, - [125353] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3481), 1, - sym_comment, - ACTIONS(5169), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(5167), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - 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_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, - [125406] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3482), 1, - sym_comment, - ACTIONS(5173), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(5171), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - 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_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, - [125459] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3483), 1, - sym_comment, - ACTIONS(2370), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5112), 12, + ACTIONS(5185), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -346706,185 +331049,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, - ACTIONS(2372), 25, - anon_sym_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [125514] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3484), 1, - sym_comment, - ACTIONS(2426), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2428), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - 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_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, - [125567] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3485), 1, - sym_comment, - ACTIONS(2422), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2424), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - 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_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, - [125620] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3486), 1, - sym_comment, - ACTIONS(958), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(960), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - 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_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, - [125673] = 4, + [117388] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3487), 1, + STATE(3283), 1, sym_comment, - ACTIONS(954), 13, + ACTIONS(5125), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -346898,7 +331072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(956), 29, + ACTIONS(5123), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -346928,12 +331102,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, - [125726] = 4, + [117441] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3488), 1, + STATE(3284), 1, sym_comment, - ACTIONS(962), 13, + ACTIONS(5117), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -346947,7 +331121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(964), 29, + ACTIONS(5115), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -346977,12 +331151,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, - [125779] = 4, + [117494] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3489), 1, + STATE(3285), 1, sym_comment, - ACTIONS(2374), 13, + ACTIONS(1867), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -346996,7 +331170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2376), 29, + ACTIONS(1869), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -347026,12 +331200,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, - [125832] = 4, + [117547] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3490), 1, + STATE(3286), 1, sym_comment, - ACTIONS(982), 13, + ACTIONS(2282), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -347045,7 +331219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(984), 29, + ACTIONS(2284), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -347075,12 +331249,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, - [125885] = 4, + [117600] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3491), 1, + STATE(3287), 1, sym_comment, - ACTIONS(966), 13, + ACTIONS(2286), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -347094,7 +331268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(968), 29, + ACTIONS(2288), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -347124,12 +331298,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, - [125938] = 4, + [117653] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3492), 1, + STATE(3288), 1, sym_comment, - ACTIONS(2430), 13, + ACTIONS(2362), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -347143,7 +331317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2432), 29, + ACTIONS(2364), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -347173,12 +331347,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, - [125991] = 4, + [117706] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3493), 1, + STATE(3289), 1, sym_comment, - ACTIONS(1879), 13, + ACTIONS(2425), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -347192,7 +331366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1881), 29, + ACTIONS(2427), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -347222,12 +331396,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, - [126044] = 4, + [117759] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3494), 1, + STATE(3290), 1, sym_comment, - ACTIONS(2378), 13, + ACTIONS(1883), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -347241,7 +331415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2380), 29, + ACTIONS(1885), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -347271,61 +331445,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [126097] = 4, + [117812] = 11, ACTIONS(245), 1, anon_sym_POUND, - STATE(3495), 1, + ACTIONS(6255), 1, + anon_sym_list, + ACTIONS(6378), 1, + sym__newline, + STATE(3291), 1, sym_comment, - ACTIONS(2382), 13, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2384), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - 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_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, - [126150] = 4, + STATE(3353), 1, + aux_sym__multiple_types_repeat2, + STATE(3435), 1, + aux_sym_shebang_repeat1, + STATE(6719), 1, + sym__one_type, + STATE(7039), 1, + sym__type_annotation, + ACTIONS(6253), 2, + anon_sym_table, + anon_sym_record, + STATE(6276), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6251), 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, + [117879] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3496), 1, + STATE(3292), 1, sym_comment, - ACTIONS(1913), 13, + ACTIONS(5145), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -347339,7 +331520,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), 29, + ACTIONS(5143), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -347369,12 +331550,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, - [126203] = 4, + [117932] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3497), 1, + STATE(3293), 1, sym_comment, - ACTIONS(998), 13, + ACTIONS(5149), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -347388,7 +331569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(994), 29, + ACTIONS(5147), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -347418,61 +331599,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [126256] = 4, + [117985] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(3498), 1, + STATE(3294), 1, sym_comment, - ACTIONS(1945), 13, - anon_sym_DOLLAR, + ACTIONS(2362), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5078), 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(2364), 25, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1947), 29, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - 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_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, - [126309] = 4, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [118040] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3499), 1, + STATE(3295), 1, sym_comment, - ACTIONS(2441), 13, + ACTIONS(5121), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -347486,7 +331668,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), 29, + ACTIONS(5119), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -347516,12 +331698,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, - [126362] = 4, + [118093] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3500), 1, + STATE(3296), 1, sym_comment, - ACTIONS(1883), 13, + ACTIONS(2370), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -347535,7 +331717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1885), 29, + ACTIONS(2372), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -347565,12 +331747,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, - [126415] = 4, + [118146] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3501), 1, + STATE(3297), 1, sym_comment, - ACTIONS(2445), 13, + ACTIONS(2374), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -347584,7 +331766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2447), 29, + ACTIONS(2376), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -347614,12 +331796,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, - [126468] = 4, + [118199] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3502), 1, + STATE(3298), 1, sym_comment, - ACTIONS(2449), 13, + ACTIONS(1833), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -347633,7 +331815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2451), 29, + ACTIONS(1835), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -347663,12 +331845,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, - [126521] = 4, + [118252] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3503), 1, + STATE(3299), 1, sym_comment, - ACTIONS(1891), 13, + ACTIONS(2378), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -347682,7 +331864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1893), 29, + ACTIONS(2380), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -347712,12 +331894,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, - [126574] = 4, + [118305] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3504), 1, + STATE(3300), 1, sym_comment, - ACTIONS(1931), 13, + ACTIONS(6436), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -347731,7 +331913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1933), 29, + ACTIONS(6434), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -347761,12 +331943,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, - [126627] = 4, + [118358] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3505), 1, + STATE(3301), 1, sym_comment, - ACTIONS(5189), 13, + ACTIONS(950), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -347780,7 +331962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5187), 29, + ACTIONS(952), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -347810,12 +331992,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, - [126680] = 4, + [118411] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3506), 1, + STATE(3302), 1, sym_comment, - ACTIONS(5193), 13, + ACTIONS(5103), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -347829,7 +332011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5191), 29, + ACTIONS(5101), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -347859,12 +332041,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, - [126733] = 4, + [118464] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3507), 1, + STATE(3303), 1, sym_comment, - ACTIONS(2453), 13, + ACTIONS(942), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -347878,7 +332060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2455), 29, + ACTIONS(944), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -347908,12 +332090,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, - [126786] = 4, + [118517] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3508), 1, + STATE(3304), 1, sym_comment, - ACTIONS(2469), 13, + ACTIONS(2260), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -347927,7 +332109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2471), 29, + ACTIONS(2262), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -347957,12 +332139,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [126839] = 4, + [118570] = 12, ACTIONS(245), 1, anon_sym_POUND, - STATE(3509), 1, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(3550), 1, + anon_sym_DOLLAR, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(6440), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6442), 1, + aux_sym__immediate_decimal_token5, + STATE(3305), 1, sym_comment, - ACTIONS(2296), 13, + STATE(3457), 1, + sym__immediate_decimal, + ACTIONS(6438), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1773), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1431), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1445), 26, + sym__newline, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [118639] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(3306), 1, + sym_comment, + ACTIONS(1863), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -347976,7 +332215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2298), 29, + ACTIONS(1865), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -348006,12 +332245,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, - [126892] = 4, + [118692] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3510), 1, + STATE(3307), 1, sym_comment, - ACTIONS(1927), 13, + ACTIONS(954), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -348025,7 +332264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1929), 29, + ACTIONS(956), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -348055,12 +332294,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, - [126945] = 4, + [118745] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3511), 1, + STATE(3308), 1, sym_comment, - ACTIONS(1935), 13, + ACTIONS(1616), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -348074,7 +332313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1937), 29, + ACTIONS(1628), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -348104,12 +332343,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, - [126998] = 4, + [118798] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3512), 1, + STATE(3309), 1, sym_comment, - ACTIONS(2461), 13, + ACTIONS(1871), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -348123,7 +332362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2463), 29, + ACTIONS(1873), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -348153,12 +332392,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, - [127051] = 4, + [118851] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3513), 1, + STATE(3310), 1, sym_comment, - ACTIONS(2465), 13, + ACTIONS(2394), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -348172,7 +332411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2467), 29, + ACTIONS(2396), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -348202,12 +332441,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, - [127104] = 4, + [118904] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3514), 1, + STATE(3311), 1, sym_comment, - ACTIONS(5201), 13, + ACTIONS(2264), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -348221,7 +332460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5199), 29, + ACTIONS(2266), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -348251,12 +332490,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, - [127157] = 4, + [118957] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3515), 1, + STATE(3312), 1, sym_comment, - ACTIONS(2406), 13, + ACTIONS(1829), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -348270,7 +332509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2408), 29, + ACTIONS(1831), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -348300,12 +332539,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, - [127210] = 4, + [119010] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3516), 1, + STATE(3313), 1, sym_comment, - ACTIONS(5012), 13, + ACTIONS(2270), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -348319,7 +332558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5010), 29, + ACTIONS(2272), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -348349,12 +332588,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, - [127263] = 4, + [119063] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3517), 1, + STATE(3314), 1, sym_comment, - ACTIONS(2469), 13, + ACTIONS(2274), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -348368,7 +332607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2471), 29, + ACTIONS(2276), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -348398,12 +332637,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, - [127316] = 4, + [119116] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3518), 1, + STATE(3315), 1, sym_comment, - ACTIONS(2410), 13, + ACTIONS(982), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -348417,7 +332656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2412), 29, + ACTIONS(984), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -348447,70 +332686,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, - [127369] = 13, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(3610), 1, - anon_sym_DOLLAR, - ACTIONS(4075), 1, - anon_sym_LPAREN2, - ACTIONS(6492), 1, - anon_sym_DOT, - ACTIONS(6496), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6498), 1, - aux_sym__immediate_decimal_token5, - STATE(3519), 1, - sym_comment, - STATE(3622), 1, - sym__immediate_decimal, - ACTIONS(6494), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3655), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1431), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1445), 25, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [127440] = 4, + [119169] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3520), 1, + STATE(3316), 1, sym_comment, - ACTIONS(2392), 13, + ACTIONS(946), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -348524,7 +332705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2394), 29, + ACTIONS(948), 29, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -348550,398 +332731,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_GT_GT, anon_sym_e_GT_GT, anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [127493] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3521), 1, - sym_comment, - ACTIONS(6500), 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, - [127543] = 10, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6305), 1, - anon_sym_LBRACK, - ACTIONS(6311), 1, - anon_sym_list, - STATE(3522), 1, - sym_comment, - STATE(7593), 1, - sym__one_type, - STATE(7606), 1, - sym__multiple_types, - STATE(7731), 1, - sym__type_annotation, - ACTIONS(6309), 2, - anon_sym_table, - anon_sym_record, - STATE(6701), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6307), 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, - [127607] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6502), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6504), 1, - aux_sym__immediate_decimal_token2, - STATE(3523), 1, - sym_comment, - ACTIONS(1484), 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(1486), 31, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [127663] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3524), 1, - sym_comment, - ACTIONS(6506), 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, - [127713] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3525), 1, - sym_comment, - ACTIONS(6508), 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, - [127763] = 10, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6311), 1, - anon_sym_list, - ACTIONS(6510), 1, - anon_sym_GT2, - ACTIONS(6512), 1, - anon_sym_AT2, - STATE(3526), 1, - sym_comment, - STATE(7080), 1, - sym__all_type, - STATE(7651), 1, - sym_param_cmd, - ACTIONS(6309), 2, - anon_sym_table, - anon_sym_record, - STATE(7391), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6307), 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, - [127827] = 12, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [119222] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3610), 1, - anon_sym_DOLLAR, - ACTIONS(4075), 1, - anon_sym_LPAREN2, - ACTIONS(4077), 1, - anon_sym_DOT, - ACTIONS(6496), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6498), 1, - aux_sym__immediate_decimal_token5, - STATE(3527), 1, + STATE(3317), 1, sym_comment, - STATE(3653), 1, - sym__immediate_decimal, - ACTIONS(6494), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3652), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1472), 6, - anon_sym_GT2, + ACTIONS(2382), 13, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1482), 25, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [127895] = 12, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2384), 29, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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_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, + [119275] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1447), 1, + ACTIONS(1477), 1, aux_sym_unquoted_token2, - ACTIONS(3610), 1, + ACTIONS(3550), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(6516), 1, + ACTIONS(6440), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6518), 1, + ACTIONS(6442), 1, aux_sym__immediate_decimal_token5, - STATE(3528), 1, + STATE(3318), 1, sym_comment, - STATE(3677), 1, + STATE(3476), 1, sym__immediate_decimal, - ACTIONS(6514), 2, + ACTIONS(6438), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1804), 2, + STATE(1823), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1431), 6, + ACTIONS(1473), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1445), 25, + ACTIONS(1475), 26, + sym__newline, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -348965,86 +332841,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127963] = 3, + [119344] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3529), 1, + STATE(3319), 1, sym_comment, - ACTIONS(6520), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4968), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(4966), 29, + sym_raw_string_begin, 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, - [128013] = 12, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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_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, + [119397] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3610), 1, - anon_sym_DOLLAR, - ACTIONS(4075), 1, - anon_sym_LPAREN2, - ACTIONS(4457), 1, - anon_sym_DOT, - ACTIONS(6496), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6498), 1, - aux_sym__immediate_decimal_token5, - STATE(3530), 1, + STATE(3320), 1, sym_comment, - STATE(3666), 1, - sym__immediate_decimal, - ACTIONS(6494), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3655), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1431), 6, + ACTIONS(2128), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1445), 25, + ACTIONS(2130), 37, + 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_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -349068,29 +332939,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128081] = 6, + [119450] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6522), 1, - anon_sym_DOT, - ACTIONS(6524), 1, - aux_sym__immediate_decimal_token2, - STATE(3531), 1, + STATE(3321), 1, sym_comment, - ACTIONS(1492), 8, + ACTIONS(2068), 5, 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(1494), 31, + ACTIONS(2072), 37, + 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, @@ -349105,7 +332979,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, @@ -349115,62 +332988,61 @@ 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, - [128137] = 3, + [119503] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3532), 1, + STATE(3322), 1, sym_comment, - ACTIONS(6526), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(2405), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2407), 29, + sym_raw_string_begin, 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, - [128187] = 4, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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_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, + [119556] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3533), 1, + STATE(3323), 1, sym_comment, - ACTIONS(6530), 13, + ACTIONS(2294), 13, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -349184,8 +333056,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(6528), 28, + ACTIONS(2296), 29, sym_raw_string_begin, + anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ, @@ -349213,29 +333086,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, - [128239] = 10, + [119609] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6311), 1, - anon_sym_list, - ACTIONS(6512), 1, - anon_sym_AT2, - ACTIONS(6532), 1, - anon_sym_GT2, - STATE(3534), 1, + STATE(3324), 1, sym_comment, - STATE(6841), 1, - sym__all_type, - STATE(7842), 1, - sym_param_cmd, - ACTIONS(6309), 2, - anon_sym_table, - anon_sym_record, - STATE(7391), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6307), 31, + ACTIONS(6444), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -349265,14 +333126,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, - [128303] = 3, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [119659] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(3535), 1, + STATE(3325), 1, sym_comment, - ACTIONS(6534), 41, + ACTIONS(6446), 41, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -349314,29 +333180,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_list, anon_sym_LBRACE, anon_sym_RBRACE, - [128353] = 10, + [119709] = 10, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6311), 1, + ACTIONS(6249), 1, + anon_sym_LBRACK, + ACTIONS(6255), 1, anon_sym_list, - ACTIONS(6512), 1, - anon_sym_AT2, - ACTIONS(6536), 1, - anon_sym_GT2, - STATE(3536), 1, + STATE(3326), 1, sym_comment, - STATE(7229), 1, - sym__all_type, - STATE(7673), 1, - sym_param_cmd, - ACTIONS(6309), 2, + STATE(7073), 1, + sym__multiple_types, + STATE(7312), 1, + sym__one_type, + STATE(7323), 1, + sym__type_annotation, + ACTIONS(6253), 2, anon_sym_table, anon_sym_record, - STATE(7391), 3, + STATE(6276), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6307), 31, + ACTIONS(6251), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -349368,37 +333234,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [128417] = 12, + [119773] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1470), 1, + ACTIONS(1477), 1, aux_sym_unquoted_token2, - ACTIONS(3610), 1, + ACTIONS(3550), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(6516), 1, + ACTIONS(6450), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6518), 1, + ACTIONS(6452), 1, aux_sym__immediate_decimal_token5, - STATE(3537), 1, + STATE(3327), 1, sym_comment, - STATE(3679), 1, + STATE(3564), 1, sym__immediate_decimal, - ACTIONS(6514), 2, + ACTIONS(6448), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1824), 2, + STATE(1823), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1466), 6, + ACTIONS(1473), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1468), 25, + ACTIONS(1475), 25, anon_sym_in2, anon_sym_EQ_GT, anon_sym_and2, @@ -349424,35 +333290,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128485] = 11, + [119841] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3610), 1, + ACTIONS(3550), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(6496), 1, + ACTIONS(4172), 1, + anon_sym_DOT, + ACTIONS(6400), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6498), 1, + ACTIONS(6402), 1, aux_sym__immediate_decimal_token5, - STATE(1819), 1, - sym__immediate_decimal, - STATE(3538), 1, + STATE(3328), 1, sym_comment, - ACTIONS(6538), 2, + STATE(3472), 1, + sym__immediate_decimal, + ACTIONS(6398), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1818), 2, + STATE(3471), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1644), 6, + ACTIONS(1479), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1646), 25, + ACTIONS(1489), 25, anon_sym_in2, anon_sym_EQ_GT, anon_sym_and2, @@ -349478,35 +333346,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128550] = 11, + [119909] = 10, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6255), 1, + anon_sym_list, + ACTIONS(6454), 1, + anon_sym_GT2, + ACTIONS(6456), 1, + anon_sym_AT2, + STATE(3329), 1, + sym_comment, + STATE(6513), 1, + sym__all_type, + STATE(7198), 1, + sym_param_cmd, + ACTIONS(6253), 2, + anon_sym_table, + anon_sym_record, + STATE(6912), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6251), 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, + [119973] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3610), 1, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(3550), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(6496), 1, + ACTIONS(6450), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6498), 1, + ACTIONS(6452), 1, aux_sym__immediate_decimal_token5, - STATE(1821), 1, - sym__immediate_decimal, - STATE(3539), 1, + STATE(3330), 1, sym_comment, - ACTIONS(6538), 2, + STATE(3575), 1, + sym__immediate_decimal, + ACTIONS(6448), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1820), 2, + STATE(1773), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1575), 6, + ACTIONS(1431), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1577), 25, + ACTIONS(1445), 25, anon_sym_in2, anon_sym_EQ_GT, anon_sym_and2, @@ -349532,37 +333456,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128615] = 11, + [120041] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3610), 1, - anon_sym_DOLLAR, - ACTIONS(4075), 1, - anon_sym_LPAREN2, - ACTIONS(6496), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6498), 1, - aux_sym__immediate_decimal_token5, - STATE(1823), 1, - sym__immediate_decimal, - STATE(3540), 1, + ACTIONS(6458), 1, + anon_sym_DOT, + ACTIONS(6460), 1, + aux_sym__immediate_decimal_token2, + STATE(3331), 1, sym_comment, - ACTIONS(6538), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1822), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1544), 6, + ACTIONS(1499), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1552), 25, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1501), 31, + sym__newline, + anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -349577,6 +333493,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, @@ -349586,183 +333503,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128680] = 9, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6311), 1, - anon_sym_list, - STATE(3541), 1, - sym_comment, - STATE(3547), 1, - aux_sym__multiple_types_repeat2, - STATE(7365), 1, - sym__one_type, - STATE(7634), 1, - sym__type_annotation, - ACTIONS(6309), 2, - anon_sym_table, - anon_sym_record, - STATE(6701), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6307), 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, - [128741] = 9, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6311), 1, - anon_sym_list, - ACTIONS(6436), 1, - sym__newline, - STATE(3542), 1, - sym_comment, - STATE(3629), 1, - aux_sym_shebang_repeat1, - STATE(7163), 1, - sym__type_annotation, - ACTIONS(6309), 2, - anon_sym_table, - anon_sym_record, - STATE(6701), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6307), 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, - [128802] = 9, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6311), 1, - anon_sym_list, - STATE(3543), 1, - sym_comment, - STATE(3547), 1, - aux_sym__multiple_types_repeat2, - STATE(7044), 1, - sym__one_type, - STATE(7634), 1, - sym__type_annotation, - ACTIONS(6309), 2, - anon_sym_table, - anon_sym_record, - STATE(6701), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6307), 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, - [128863] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [120097] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6540), 1, - aux_sym__immediate_decimal_token2, - STATE(3544), 1, + ACTIONS(3550), 1, + anon_sym_DOLLAR, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(4029), 1, + anon_sym_DOT, + ACTIONS(6400), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6402), 1, + aux_sym__immediate_decimal_token5, + STATE(3332), 1, sym_comment, - ACTIONS(1538), 8, + STATE(3466), 1, + sym__immediate_decimal, + ACTIONS(6398), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3473), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1431), 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(1540), 31, - sym__newline, - anon_sym_DASH2, + ACTIONS(1445), 25, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -349777,7 +333553,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, @@ -349787,30 +333562,17 @@ 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, - [128916] = 9, + [120165] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6436), 1, - sym__newline, - ACTIONS(6546), 1, - anon_sym_list, - STATE(3545), 1, + STATE(3333), 1, sym_comment, - STATE(3629), 1, - aux_sym_shebang_repeat1, - STATE(4587), 1, - sym__type_annotation, - ACTIONS(6544), 2, - anon_sym_table, - anon_sym_record, - STATE(4819), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6542), 31, + ACTIONS(6462), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -349840,29 +333602,24 @@ 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, - [128977] = 9, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [120215] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6436), 1, - sym__newline, - ACTIONS(6546), 1, - anon_sym_list, - STATE(3546), 1, + STATE(3334), 1, sym_comment, - STATE(3629), 1, - aux_sym_shebang_repeat1, - STATE(4598), 1, - sym__type_annotation, - ACTIONS(6544), 2, - anon_sym_table, - anon_sym_record, - STATE(4819), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6542), 31, + ACTIONS(6464), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -349892,28 +333649,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, - [129038] = 8, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [120265] = 10, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6554), 1, + ACTIONS(6255), 1, anon_sym_list, - STATE(7530), 1, - sym__one_type, - STATE(7634), 1, - sym__type_annotation, - ACTIONS(6551), 2, + ACTIONS(6456), 1, + anon_sym_AT2, + ACTIONS(6466), 1, + anon_sym_GT2, + STATE(3335), 1, + sym_comment, + STATE(6708), 1, + sym__all_type, + STATE(7276), 1, + sym_param_cmd, + ACTIONS(6253), 2, anon_sym_table, anon_sym_record, - STATE(3547), 2, - sym_comment, - aux_sym__multiple_types_repeat2, - STATE(6701), 3, + STATE(6912), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6548), 31, + ACTIONS(6251), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -349945,173 +333710,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [129097] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6557), 1, - anon_sym_DOT, - ACTIONS(6559), 1, - aux_sym__immediate_decimal_token2, - STATE(3548), 1, - sym_comment, - ACTIONS(1492), 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(1494), 30, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [129152] = 5, + [120329] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6524), 1, - aux_sym__immediate_decimal_token2, - STATE(3549), 1, + STATE(3336), 1, sym_comment, - ACTIONS(1492), 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(1494), 31, - sym__newline, + ACTIONS(6470), 13, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [129205] = 6, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(6468), 28, + sym_raw_string_begin, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + 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_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, + [120381] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6561), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6563), 1, - aux_sym__immediate_decimal_token2, - STATE(3550), 1, + STATE(3337), 1, sym_comment, - ACTIONS(1484), 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(1486), 30, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [129260] = 9, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6436), 1, + ACTIONS(6472), 41, sym__newline, - ACTIONS(6546), 1, - anon_sym_list, - STATE(3546), 1, - aux_sym_shebang_repeat1, - STATE(3551), 1, - sym_comment, - STATE(4588), 1, - sym__type_annotation, - ACTIONS(6544), 2, - anon_sym_table, - anon_sym_record, - STATE(4819), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6542), 31, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -350141,83 +333798,24 @@ 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, - [129321] = 11, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - ACTIONS(4715), 1, - aux_sym_unquoted_token2, - ACTIONS(6565), 1, - anon_sym_DOT_DOT2, - ACTIONS(6569), 1, - sym_filesize_unit, - ACTIONS(6571), 1, - sym_duration_unit, - STATE(3552), 1, - sym_comment, - STATE(7446), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6567), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1579), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1591), 27, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_record, + anon_sym_list, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [129386] = 9, + anon_sym_RBRACE, + [120431] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6436), 1, - sym__newline, - ACTIONS(6546), 1, - anon_sym_list, - STATE(3545), 1, - aux_sym_shebang_repeat1, - STATE(3553), 1, + STATE(3338), 1, sym_comment, - STATE(4702), 1, - sym__type_annotation, - ACTIONS(6544), 2, - anon_sym_table, - anon_sym_record, - STATE(4819), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6542), 31, + ACTIONS(6474), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -350247,83 +333845,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, - [129447] = 11, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3610), 1, - anon_sym_DOLLAR, - ACTIONS(4075), 1, - anon_sym_LPAREN2, - ACTIONS(6496), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6498), 1, - aux_sym__immediate_decimal_token5, - STATE(2000), 1, - sym__immediate_decimal, - STATE(3554), 1, - sym_comment, - ACTIONS(6538), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1804), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1431), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1445), 25, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [129512] = 9, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [120481] = 10, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6311), 1, + ACTIONS(6255), 1, anon_sym_list, - ACTIONS(6436), 1, - sym__newline, - STATE(3555), 1, + ACTIONS(6456), 1, + anon_sym_AT2, + ACTIONS(6476), 1, + anon_sym_GT2, + STATE(3339), 1, sym_comment, - STATE(3557), 1, - aux_sym_shebang_repeat1, - STATE(7119), 1, - sym__type_annotation, - ACTIONS(6309), 2, + STATE(6694), 1, + sym__all_type, + STATE(7138), 1, + sym_param_cmd, + ACTIONS(6253), 2, anon_sym_table, anon_sym_record, - STATE(6701), 3, + STATE(6912), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6307), 31, + ACTIONS(6251), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -350355,37 +333906,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [129573] = 11, + [120545] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3610), 1, - anon_sym_DOLLAR, - ACTIONS(4075), 1, - anon_sym_LPAREN2, - ACTIONS(6496), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6498), 1, - aux_sym__immediate_decimal_token5, - STATE(2080), 1, - sym__immediate_decimal, - STATE(3556), 1, - sym_comment, - ACTIONS(6538), 2, + ACTIONS(6478), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1824), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1466), 6, + ACTIONS(6480), 1, + aux_sym__immediate_decimal_token2, + STATE(3340), 1, + sym_comment, + ACTIONS(1491), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1468), 25, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1493), 31, + sym__newline, + anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -350400,6 +333943,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, @@ -350409,79 +333953,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129638] = 9, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [120601] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6311), 1, + ACTIONS(6255), 1, anon_sym_list, - ACTIONS(6436), 1, + ACTIONS(6378), 1, sym__newline, - STATE(3557), 1, + STATE(3341), 1, sym_comment, - STATE(3629), 1, - aux_sym_shebang_repeat1, - STATE(6977), 1, - sym__type_annotation, - ACTIONS(6309), 2, - anon_sym_table, - anon_sym_record, - STATE(6701), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6307), 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, - [129699] = 9, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6311), 1, - anon_sym_list, - ACTIONS(6436), 1, - sym__newline, - STATE(3542), 1, + STATE(3359), 1, aux_sym_shebang_repeat1, - STATE(3558), 1, - sym_comment, - STATE(6996), 1, + STATE(6682), 1, sym__type_annotation, - ACTIONS(6309), 2, + ACTIONS(6253), 2, anon_sym_table, anon_sym_record, - STATE(6701), 3, + STATE(6276), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6307), 31, + ACTIONS(6251), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -350513,75 +334008,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [129760] = 11, + [120662] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3610), 1, - anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - ACTIONS(6496), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6498), 1, - aux_sym__immediate_decimal_token5, - STATE(1802), 1, - sym__immediate_decimal, - STATE(3559), 1, + ACTIONS(4672), 1, + aux_sym_unquoted_token2, + ACTIONS(6482), 1, + anon_sym_DOT_DOT2, + ACTIONS(6486), 1, + sym_filesize_unit, + ACTIONS(6488), 1, + sym_duration_unit, + STATE(3342), 1, sym_comment, - ACTIONS(6538), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1801), 2, + STATE(6814), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1472), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1482), 25, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [129825] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3560), 1, - sym_comment, - ACTIONS(1538), 8, + ACTIONS(6484), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1616), 5, 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(1540), 31, + ACTIONS(1628), 27, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -350600,7 +334053,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, @@ -350610,17 +334062,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, - sym_duration_unit, - [129875] = 5, + [120727] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6573), 1, + ACTIONS(6460), 1, aux_sym__immediate_decimal_token2, - STATE(3561), 1, + STATE(3343), 1, sym_comment, - ACTIONS(1538), 8, + ACTIONS(1499), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -350629,10 +334078,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1540), 30, + ACTIONS(1501), 31, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -350660,25 +334110,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [129927] = 4, + [120780] = 11, ACTIONS(245), 1, anon_sym_POUND, - STATE(3562), 1, + ACTIONS(3550), 1, + anon_sym_DOLLAR, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(6400), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6402), 1, + aux_sym__immediate_decimal_token5, + STATE(1990), 1, + sym__immediate_decimal, + STATE(3344), 1, sym_comment, - ACTIONS(1715), 8, + ACTIONS(6490), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1823), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1473), 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(1717), 31, - sym__newline, - anon_sym_DASH2, + ACTIONS(1475), 25, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -350693,7 +334155,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, @@ -350703,31 +334164,37 @@ 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, - [129977] = 6, + [120845] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6575), 1, - anon_sym_DOT, - ACTIONS(6577), 1, - aux_sym__immediate_decimal_token2, - STATE(3563), 1, + ACTIONS(3550), 1, + anon_sym_DOLLAR, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(6400), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6402), 1, + aux_sym__immediate_decimal_token5, + STATE(1771), 1, + sym__immediate_decimal, + STATE(3345), 1, sym_comment, - ACTIONS(1666), 7, + ACTIONS(6490), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1770), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1479), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1668), 30, - sym__newline, - anon_sym_DASH2, + ACTIONS(1489), 25, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -350742,7 +334209,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, @@ -350752,26 +334218,35 @@ 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, - [130031] = 5, + [120910] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6559), 1, - aux_sym__immediate_decimal_token2, - STATE(3564), 1, + ACTIONS(3550), 1, + anon_sym_DOLLAR, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(6400), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6402), 1, + aux_sym__immediate_decimal_token5, + STATE(1816), 1, + sym__immediate_decimal, + STATE(3346), 1, sym_comment, - ACTIONS(1492), 8, + ACTIONS(6490), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1815), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1632), 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(1494), 30, - anon_sym_DASH2, + ACTIONS(1634), 25, anon_sym_in2, anon_sym_EQ_GT, anon_sym_and2, @@ -350788,7 +334263,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, @@ -350798,28 +334272,37 @@ 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, - [130083] = 4, + [120975] = 11, ACTIONS(245), 1, anon_sym_POUND, - STATE(3565), 1, + ACTIONS(3550), 1, + anon_sym_DOLLAR, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(6400), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6402), 1, + aux_sym__immediate_decimal_token5, + STATE(1818), 1, + sym__immediate_decimal, + STATE(3347), 1, sym_comment, - ACTIONS(1492), 8, + ACTIONS(6490), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1817), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1644), 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(1494), 31, - sym__newline, - anon_sym_DASH2, + ACTIONS(1646), 25, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -350834,7 +334317,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, @@ -350844,37 +334326,35 @@ 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, - [130133] = 11, + [121040] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(3550), 1, + anon_sym_DOLLAR, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(4715), 1, - aux_sym_unquoted_token2, - ACTIONS(6579), 1, - anon_sym_DOT_DOT2, - ACTIONS(6583), 1, - sym_filesize_unit, - ACTIONS(6585), 1, - sym_duration_unit, - STATE(3566), 1, + ACTIONS(6400), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6402), 1, + aux_sym__immediate_decimal_token5, + STATE(1822), 1, + sym__immediate_decimal, + STATE(3348), 1, sym_comment, - STATE(7446), 1, + ACTIONS(6490), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1821), 2, sym__expr_parenthesized_immediate, - ACTIONS(6581), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1579), 5, + sym_val_variable, + ACTIONS(1538), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1591), 26, - anon_sym_DASH2, + ACTIONS(1546), 25, anon_sym_in2, anon_sym_EQ_GT, anon_sym_and2, @@ -350900,70 +334380,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130197] = 4, + [121105] = 9, ACTIONS(245), 1, anon_sym_POUND, - STATE(3567), 1, + ACTIONS(6378), 1, + sym__newline, + ACTIONS(6496), 1, + anon_sym_list, + STATE(3349), 1, sym_comment, - ACTIONS(1484), 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(1486), 31, + STATE(3435), 1, + aux_sym_shebang_repeat1, + STATE(4470), 1, + sym__type_annotation, + ACTIONS(6494), 2, + anon_sym_table, + anon_sym_record, + STATE(4630), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6492), 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, + [121166] = 9, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6378), 1, 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [130247] = 6, + ACTIONS(6496), 1, + anon_sym_list, + STATE(3350), 1, + sym_comment, + STATE(3435), 1, + aux_sym_shebang_repeat1, + STATE(4376), 1, + sym__type_annotation, + ACTIONS(6494), 2, + anon_sym_table, + anon_sym_record, + STATE(4630), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6492), 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, + [121227] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6587), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6589), 1, + ACTIONS(6498), 1, aux_sym__immediate_decimal_token2, - STATE(3568), 1, + STATE(3351), 1, sym_comment, - ACTIONS(1648), 7, + ACTIONS(1579), 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(1650), 30, + ACTIONS(1581), 31, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -350994,23 +334531,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [130301] = 7, + sym_duration_unit, + [121280] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6595), 1, + ACTIONS(6506), 1, anon_sym_list, - STATE(3569), 1, - sym_comment, - STATE(6111), 1, - sym__all_type, - ACTIONS(6593), 2, + STATE(6967), 1, + sym__one_type, + STATE(7039), 1, + sym__type_annotation, + ACTIONS(6503), 2, anon_sym_table, anon_sym_record, - STATE(7076), 3, + STATE(3352), 2, + sym_comment, + aux_sym__multiple_types_repeat2, + STATE(6276), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6591), 31, + ACTIONS(6500), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -351042,23 +334583,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [130356] = 7, + [121339] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6311), 1, + ACTIONS(6255), 1, anon_sym_list, - STATE(3570), 1, + STATE(3352), 1, + aux_sym__multiple_types_repeat2, + STATE(3353), 1, sym_comment, - STATE(7638), 1, + STATE(6756), 1, + sym__one_type, + STATE(7039), 1, sym__type_annotation, - ACTIONS(6309), 2, + ACTIONS(6253), 2, anon_sym_table, anon_sym_record, - STATE(6701), 3, + STATE(6276), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6307), 31, + ACTIONS(6251), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -351090,23 +334635,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [130411] = 7, + [121400] = 11, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(3550), 1, + anon_sym_DOLLAR, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(6400), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6402), 1, + aux_sym__immediate_decimal_token5, + STATE(1888), 1, + sym__immediate_decimal, + STATE(3354), 1, + sym_comment, + ACTIONS(6490), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1773), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1431), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1445), 25, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [121465] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6595), 1, + ACTIONS(6378), 1, + sym__newline, + ACTIONS(6496), 1, anon_sym_list, - STATE(3571), 1, + STATE(3350), 1, + aux_sym_shebang_repeat1, + STATE(3355), 1, sym_comment, - STATE(6010), 1, - sym__all_type, - ACTIONS(6593), 2, + STATE(4471), 1, + sym__type_annotation, + ACTIONS(6494), 2, anon_sym_table, anon_sym_record, - STATE(7076), 3, + STATE(4630), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6591), 31, + ACTIONS(6492), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -351138,58 +334741,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [130466] = 5, + [121526] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6597), 1, + ACTIONS(6509), 1, + anon_sym_DOT, + ACTIONS(6511), 1, aux_sym__immediate_decimal_token2, - STATE(3572), 1, - sym_comment, - ACTIONS(1719), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1721), 30, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [130517] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3573), 1, + STATE(3356), 1, sym_comment, - ACTIONS(1538), 8, + ACTIONS(1499), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -351198,7 +334759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1540), 30, + ACTIONS(1501), 30, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -351229,12 +334790,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [130566] = 4, + [121581] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(3574), 1, + ACTIONS(6513), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6515), 1, + aux_sym__immediate_decimal_token2, + STATE(3357), 1, sym_comment, - ACTIONS(1715), 8, + ACTIONS(1491), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -351243,7 +334808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1717), 30, + ACTIONS(1493), 30, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -351274,23 +334839,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [130615] = 7, + [121636] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6595), 1, + ACTIONS(6255), 1, anon_sym_list, - STATE(3575), 1, + ACTIONS(6378), 1, + sym__newline, + STATE(3358), 1, sym_comment, - STATE(6101), 1, - sym__all_type, - ACTIONS(6593), 2, + STATE(3361), 1, + aux_sym_shebang_repeat1, + STATE(6478), 1, + sym__type_annotation, + ACTIONS(6253), 2, anon_sym_table, anon_sym_record, - STATE(7076), 3, + STATE(6276), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6591), 31, + ACTIONS(6251), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -351322,23 +334891,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [130670] = 7, + [121697] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6595), 1, + ACTIONS(6255), 1, anon_sym_list, - STATE(3576), 1, + ACTIONS(6378), 1, + sym__newline, + STATE(3359), 1, sym_comment, - STATE(7376), 1, + STATE(3435), 1, + aux_sym_shebang_repeat1, + STATE(6703), 1, sym__type_annotation, - ACTIONS(6593), 2, + ACTIONS(6253), 2, anon_sym_table, anon_sym_record, - STATE(7395), 3, + STATE(6276), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6591), 31, + ACTIONS(6251), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -351370,68 +334943,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [130725] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3577), 1, - sym_comment, - ACTIONS(1492), 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(1494), 30, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [130774] = 7, + [121758] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6595), 1, + ACTIONS(6255), 1, anon_sym_list, - STATE(3578), 1, + STATE(3352), 1, + aux_sym__multiple_types_repeat2, + STATE(3360), 1, sym_comment, - STATE(6742), 1, - sym__all_type, - ACTIONS(6593), 2, + STATE(6722), 1, + sym__one_type, + STATE(7039), 1, + sym__type_annotation, + ACTIONS(6253), 2, anon_sym_table, anon_sym_record, - STATE(7076), 3, + STATE(6276), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6591), 31, + ACTIONS(6251), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -351463,70 +334995,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [130829] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5807), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5997), 1, - anon_sym_DOT, - STATE(3579), 1, - sym_comment, - ACTIONS(1492), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - ACTIONS(1494), 29, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - sym_duration_unit, - [130882] = 7, + [121819] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6595), 1, + ACTIONS(6255), 1, anon_sym_list, - STATE(3580), 1, + ACTIONS(6378), 1, + sym__newline, + STATE(3361), 1, sym_comment, - STATE(6078), 1, - sym__all_type, - ACTIONS(6593), 2, + STATE(3435), 1, + aux_sym_shebang_repeat1, + STATE(6633), 1, + sym__type_annotation, + ACTIONS(6253), 2, anon_sym_table, anon_sym_record, - STATE(7076), 3, + STATE(6276), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6591), 31, + ACTIONS(6251), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -351558,23 +335047,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [130937] = 7, + [121880] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6595), 1, + ACTIONS(6378), 1, + sym__newline, + ACTIONS(6496), 1, anon_sym_list, - STATE(3581), 1, + STATE(3349), 1, + aux_sym_shebang_repeat1, + STATE(3362), 1, sym_comment, - STATE(6079), 1, - sym__all_type, - ACTIONS(6593), 2, + STATE(4354), 1, + sym__type_annotation, + ACTIONS(6494), 2, anon_sym_table, anon_sym_record, - STATE(7076), 3, + STATE(4630), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6591), 31, + ACTIONS(6492), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -351606,71 +335099,450 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [130992] = 7, + [121941] = 11, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + ACTIONS(4672), 1, + aux_sym_unquoted_token2, + ACTIONS(6517), 1, + anon_sym_DOT_DOT2, + ACTIONS(6521), 1, + sym_filesize_unit, + ACTIONS(6523), 1, + sym_duration_unit, + STATE(3363), 1, + sym_comment, + STATE(6814), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6519), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1616), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1628), 26, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [122005] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6511), 1, + aux_sym__immediate_decimal_token2, + STATE(3364), 1, + sym_comment, + ACTIONS(1499), 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(1501), 30, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [122057] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6525), 1, + anon_sym_DOT, + ACTIONS(6527), 1, + aux_sym__immediate_decimal_token2, + STATE(3365), 1, + sym_comment, + ACTIONS(1701), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 30, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [122111] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(3366), 1, + sym_comment, + ACTIONS(1678), 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(1680), 31, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [122161] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6529), 1, + aux_sym__immediate_decimal_token2, + STATE(3367), 1, + sym_comment, + ACTIONS(1579), 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(1581), 30, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [122213] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6531), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6533), 1, + aux_sym__immediate_decimal_token2, + STATE(3368), 1, + sym_comment, + ACTIONS(1686), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1688), 30, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [122267] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(3369), 1, + sym_comment, + ACTIONS(1499), 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(1501), 31, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [122317] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(3370), 1, + sym_comment, + ACTIONS(1579), 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(1581), 31, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [122367] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6595), 1, - anon_sym_list, - STATE(3582), 1, + STATE(3371), 1, sym_comment, - STATE(6095), 1, - sym__all_type, - ACTIONS(6593), 2, - anon_sym_table, - anon_sym_record, - STATE(7076), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6591), 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, - [131047] = 7, + ACTIONS(1491), 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(1493), 31, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [122417] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6595), 1, + ACTIONS(6539), 1, anon_sym_list, - STATE(3583), 1, + STATE(3372), 1, sym_comment, - STATE(6116), 1, + STATE(5718), 1, sym__all_type, - ACTIONS(6593), 2, + ACTIONS(6537), 2, anon_sym_table, anon_sym_record, - STATE(7076), 3, + STATE(6493), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6591), 31, + ACTIONS(6535), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -351702,60 +335574,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [131102] = 7, + [122472] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6595), 1, - anon_sym_list, - STATE(3584), 1, + STATE(3373), 1, sym_comment, - STATE(6119), 1, - sym__all_type, - ACTIONS(6593), 2, - anon_sym_table, - anon_sym_record, - STATE(7076), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6591), 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, - [131157] = 4, + ACTIONS(1491), 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(1493), 30, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [122521] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3585), 1, + STATE(3374), 1, sym_comment, - ACTIONS(1484), 8, + ACTIONS(1678), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -351764,7 +335633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1486), 30, + ACTIONS(1680), 30, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -351795,23 +335664,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [131206] = 7, + [122570] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6595), 1, + ACTIONS(6539), 1, anon_sym_list, - STATE(3586), 1, + STATE(3375), 1, sym_comment, - STATE(6128), 1, + STATE(6004), 1, sym__all_type, - ACTIONS(6593), 2, + ACTIONS(6537), 2, anon_sym_table, anon_sym_record, - STATE(7076), 3, + STATE(6493), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6591), 31, + ACTIONS(6535), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -351843,71 +335712,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [131261] = 7, + [122625] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6595), 1, - anon_sym_list, - STATE(3587), 1, + STATE(3376), 1, sym_comment, - STATE(6093), 1, - sym__all_type, - ACTIONS(6593), 2, - anon_sym_table, - anon_sym_record, - STATE(7076), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6591), 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, - [131316] = 7, + ACTIONS(1499), 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(1501), 30, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [122674] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6595), 1, + ACTIONS(6539), 1, anon_sym_list, - STATE(3588), 1, + STATE(3377), 1, sym_comment, - STATE(6158), 1, + STATE(6010), 1, sym__all_type, - ACTIONS(6593), 2, + ACTIONS(6537), 2, anon_sym_table, anon_sym_record, - STATE(7076), 3, + STATE(6493), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6591), 31, + ACTIONS(6535), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -351939,71 +335805,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [131371] = 7, + [122729] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6595), 1, - anon_sym_list, - STATE(3589), 1, + ACTIONS(6541), 1, + aux_sym__immediate_decimal_token2, + STATE(3378), 1, sym_comment, - STATE(6064), 1, - sym__all_type, - ACTIONS(6593), 2, - anon_sym_table, - anon_sym_record, - STATE(7076), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6591), 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, - [131426] = 7, + ACTIONS(1760), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1762), 30, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [122780] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6595), 1, + ACTIONS(6539), 1, anon_sym_list, - STATE(3590), 1, + STATE(3379), 1, sym_comment, - STATE(6066), 1, - sym__all_type, - ACTIONS(6593), 2, + STATE(6907), 1, + sym__type_annotation, + ACTIONS(6537), 2, anon_sym_table, anon_sym_record, - STATE(7076), 3, + STATE(6894), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6591), 31, + ACTIONS(6535), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -352035,23 +335899,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [131481] = 7, + [122835] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6595), 1, + ACTIONS(6539), 1, anon_sym_list, - STATE(3591), 1, + STATE(3380), 1, sym_comment, - STATE(6069), 1, + STATE(5749), 1, sym__all_type, - ACTIONS(6593), 2, + ACTIONS(6537), 2, anon_sym_table, anon_sym_record, - STATE(7076), 3, + STATE(6493), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6591), 31, + ACTIONS(6535), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -352083,71 +335947,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [131536] = 7, + [122890] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6595), 1, - anon_sym_list, - STATE(3592), 1, + ACTIONS(5745), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5929), 1, + anon_sym_DOT, + STATE(3381), 1, sym_comment, - STATE(6070), 1, - sym__all_type, - ACTIONS(6593), 2, - anon_sym_table, - anon_sym_record, - STATE(7076), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6591), 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, - [131591] = 7, - ACTIONS(245), 1, + ACTIONS(1499), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + ACTIONS(1501), 29, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + sym_duration_unit, + [122943] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6595), 1, - anon_sym_list, - STATE(3593), 1, + ACTIONS(6543), 1, + sym__entry_separator, + STATE(3382), 2, sym_comment, - STATE(6073), 1, - sym__all_type, - ACTIONS(6593), 2, - anon_sym_table, - anon_sym_record, - STATE(7076), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6591), 31, + aux_sym__multiple_types_repeat1, + ACTIONS(2398), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -352177,73 +336034,75 @@ 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, - [131646] = 7, + anon_sym_record, + anon_sym_list, + [122992] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6595), 1, - anon_sym_list, - STATE(3594), 1, + ACTIONS(6546), 1, + anon_sym_DOT, + ACTIONS(6548), 1, + aux_sym__immediate_decimal_token2, + STATE(3383), 1, sym_comment, - STATE(6075), 1, - sym__all_type, - ACTIONS(6593), 2, - anon_sym_table, - anon_sym_record, - STATE(7076), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6591), 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, - [131701] = 7, + ACTIONS(1701), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 29, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [123045] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6595), 1, + ACTIONS(6539), 1, anon_sym_list, - STATE(3595), 1, + STATE(3384), 1, sym_comment, - STATE(6080), 1, + STATE(5671), 1, sym__all_type, - ACTIONS(6593), 2, + ACTIONS(6537), 2, anon_sym_table, anon_sym_record, - STATE(7076), 3, + STATE(6493), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6591), 31, + ACTIONS(6535), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -352275,65 +336134,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [131756] = 7, + [123100] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6595), 1, + ACTIONS(6539), 1, anon_sym_list, - STATE(3596), 1, + STATE(3385), 1, sym_comment, - STATE(6081), 1, + STATE(5681), 1, sym__all_type, - ACTIONS(6593), 2, + ACTIONS(6537), 2, anon_sym_table, anon_sym_record, - STATE(7076), 3, + STATE(6493), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6591), 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, - [131811] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6599), 1, - sym__entry_separator, - STATE(3597), 2, - sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2434), 36, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(6535), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -352363,19 +336180,18 @@ 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, - anon_sym_record, - anon_sym_list, - [131860] = 5, + [123155] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6577), 1, + ACTIONS(6550), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6552), 1, aux_sym__immediate_decimal_token2, - STATE(3598), 1, + STATE(3386), 1, sym_comment, - ACTIONS(1666), 7, + ACTIONS(1686), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -352383,11 +336199,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1668), 30, - sym__newline, + ACTIONS(1688), 29, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -352414,23 +336229,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [131911] = 7, + [123208] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6595), 1, + ACTIONS(6539), 1, anon_sym_list, - STATE(3599), 1, + STATE(3387), 1, sym_comment, - STATE(6745), 1, + STATE(5699), 1, sym__all_type, - ACTIONS(6593), 2, + ACTIONS(6537), 2, anon_sym_table, anon_sym_record, - STATE(7076), 3, + STATE(6493), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6591), 31, + ACTIONS(6535), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -352462,70 +336277,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [131966] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6602), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6604), 1, - aux_sym__immediate_decimal_token2, - STATE(3600), 1, - sym_comment, - ACTIONS(1648), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1650), 29, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [132019] = 7, + [123263] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6595), 1, + ACTIONS(6539), 1, anon_sym_list, - STATE(3601), 1, + STATE(3388), 1, sym_comment, - STATE(6171), 1, + STATE(5645), 1, sym__all_type, - ACTIONS(6593), 2, + ACTIONS(6537), 2, anon_sym_table, anon_sym_record, - STATE(7076), 3, + STATE(6493), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6591), 31, + ACTIONS(6535), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -352557,70 +336325,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [132074] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6606), 1, - anon_sym_DOT, - ACTIONS(6608), 1, - aux_sym__immediate_decimal_token2, - STATE(3602), 1, - sym_comment, - ACTIONS(1666), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1668), 29, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [132127] = 7, + [123318] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6595), 1, + ACTIONS(6539), 1, anon_sym_list, - STATE(3603), 1, + STATE(3389), 1, sym_comment, - STATE(6006), 1, + STATE(5665), 1, sym__all_type, - ACTIONS(6593), 2, + ACTIONS(6537), 2, anon_sym_table, anon_sym_record, - STATE(7076), 3, + STATE(6493), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6591), 31, + ACTIONS(6535), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -352652,23 +336373,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [132182] = 7, + [123373] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6595), 1, + ACTIONS(6539), 1, anon_sym_list, - STATE(3604), 1, + STATE(3390), 1, sym_comment, - STATE(6191), 1, + STATE(5649), 1, sym__all_type, - ACTIONS(6593), 2, + ACTIONS(6537), 2, anon_sym_table, anon_sym_record, - STATE(7076), 3, + STATE(6493), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6591), 31, + ACTIONS(6535), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -352700,23 +336421,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [132237] = 7, + [123428] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6595), 1, + ACTIONS(6539), 1, anon_sym_list, - STATE(3605), 1, + STATE(3391), 1, sym_comment, - STATE(6195), 1, + STATE(5650), 1, sym__all_type, - ACTIONS(6593), 2, + ACTIONS(6537), 2, anon_sym_table, anon_sym_record, - STATE(7076), 3, + STATE(6493), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6591), 31, + ACTIONS(6535), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -352748,23 +336469,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [132292] = 7, + [123483] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6595), 1, + ACTIONS(6539), 1, anon_sym_list, - STATE(3606), 1, + STATE(3392), 1, sym_comment, - STATE(6126), 1, + STATE(5652), 1, sym__all_type, - ACTIONS(6593), 2, + ACTIONS(6537), 2, anon_sym_table, anon_sym_record, - STATE(7076), 3, + STATE(6493), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6591), 31, + ACTIONS(6535), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -352796,16 +336517,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [132347] = 4, - ACTIONS(3), 1, + [123538] = 7, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2487), 1, - sym__entry_separator, - STATE(3607), 1, + ACTIONS(6539), 1, + anon_sym_list, + STATE(3393), 1, sym_comment, - ACTIONS(2485), 36, - anon_sym_LBRACK, - anon_sym_RBRACK, + STATE(5653), 1, + sym__all_type, + ACTIONS(6537), 2, + anon_sym_table, + anon_sym_record, + STATE(6493), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6535), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -352835,67 +336563,25 @@ 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, - anon_sym_record, - anon_sym_list, - [132395] = 4, + [123593] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(3608), 1, - sym_comment, - ACTIONS(1790), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1792), 30, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [132443] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6610), 1, - anon_sym_RBRACK, - ACTIONS(6614), 1, - sym__entry_separator, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(3609), 1, + ACTIONS(6539), 1, + anon_sym_list, + STATE(3394), 1, sym_comment, - ACTIONS(6612), 34, + STATE(5654), 1, + sym__all_type, + ACTIONS(6537), 2, + anon_sym_table, + anon_sym_record, + STATE(6493), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6535), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -352925,68 +336611,25 @@ 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, - anon_sym_record, - anon_sym_list, - [132495] = 5, + [123648] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6616), 1, - aux_sym__immediate_decimal_token2, - STATE(3610), 1, - sym_comment, - ACTIONS(1719), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1721), 29, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [132545] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(6618), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(3611), 1, + ACTIONS(6539), 1, + anon_sym_list, + STATE(3395), 1, sym_comment, - ACTIONS(6612), 34, + STATE(5655), 1, + sym__all_type, + ACTIONS(6537), 2, + anon_sym_table, + anon_sym_record, + STATE(6493), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6535), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -353016,204 +336659,25 @@ 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, - anon_sym_record, - anon_sym_list, - [132597] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(1813), 1, - anon_sym_LPAREN2, - ACTIONS(6620), 1, - anon_sym_DOT_DOT2, - STATE(3612), 1, - sym_comment, - ACTIONS(6622), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1811), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1819), 27, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [132653] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6608), 1, - aux_sym__immediate_decimal_token2, - STATE(3613), 1, - sym_comment, - ACTIONS(1666), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1668), 29, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [132703] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3614), 1, - sym_comment, - ACTIONS(1719), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1721), 30, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [132751] = 4, + [123703] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(3615), 1, - sym_comment, - ACTIONS(1666), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1668), 30, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [132799] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(6624), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(3616), 1, + ACTIONS(6539), 1, + anon_sym_list, + STATE(3396), 1, sym_comment, - ACTIONS(6612), 34, + STATE(5657), 1, + sym__all_type, + ACTIONS(6537), 2, + anon_sym_table, + anon_sym_record, + STATE(6493), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6535), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -353243,67 +336707,25 @@ 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, - anon_sym_record, - anon_sym_list, - [132851] = 4, + [123758] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(3617), 1, - sym_comment, - ACTIONS(1648), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1650), 30, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [132899] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(6626), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(3618), 1, + ACTIONS(6539), 1, + anon_sym_list, + STATE(3397), 1, sym_comment, - ACTIONS(6612), 34, + STATE(5658), 1, + sym__all_type, + ACTIONS(6537), 2, + anon_sym_table, + anon_sym_record, + STATE(6493), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6535), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -353333,429 +336755,217 @@ 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, - anon_sym_record, - anon_sym_list, - [132951] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - ACTIONS(6628), 1, - anon_sym_DOT_DOT2, - STATE(3619), 1, - sym_comment, - ACTIONS(6630), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1778), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1786), 27, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [133007] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(1813), 1, - anon_sym_LPAREN2, - ACTIONS(6632), 1, - anon_sym_DOT_DOT2, - STATE(3620), 1, - sym_comment, - ACTIONS(6634), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1811), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1819), 26, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [133062] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6129), 1, - sym_filesize_unit, - ACTIONS(6131), 1, - sym_duration_unit, - ACTIONS(6636), 1, - anon_sym_DOT_DOT2, - STATE(3621), 1, - sym_comment, - ACTIONS(6638), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1579), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1591), 26, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [133117] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - ACTIONS(6640), 1, - anon_sym_DOT_DOT2, - STATE(3622), 1, - sym_comment, - ACTIONS(6642), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1778), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1786), 26, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [133172] = 4, + [123813] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(3623), 1, + ACTIONS(6255), 1, + anon_sym_list, + STATE(3398), 1, sym_comment, - ACTIONS(1648), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1650), 29, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [133219] = 4, + STATE(7194), 1, + sym__type_annotation, + ACTIONS(6253), 2, + anon_sym_table, + anon_sym_record, + STATE(6276), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6251), 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, + [123868] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(3624), 1, + ACTIONS(6539), 1, + anon_sym_list, + STATE(3399), 1, sym_comment, - ACTIONS(1719), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1721), 29, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [133266] = 6, + STATE(5709), 1, + sym__all_type, + ACTIONS(6537), 2, + anon_sym_table, + anon_sym_record, + STATE(6493), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6535), 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, + [123923] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6644), 1, - anon_sym_DOT, - ACTIONS(6646), 1, - aux_sym__immediate_decimal_token2, - STATE(3625), 1, + ACTIONS(6539), 1, + anon_sym_list, + STATE(3400), 1, sym_comment, - ACTIONS(1666), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1668), 28, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [133317] = 6, + STATE(5710), 1, + sym__all_type, + ACTIONS(6537), 2, + anon_sym_table, + anon_sym_record, + STATE(6493), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6535), 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, + [123978] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6648), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6650), 1, - aux_sym__immediate_decimal_token2, - STATE(3626), 1, + ACTIONS(6539), 1, + anon_sym_list, + STATE(3401), 1, sym_comment, - ACTIONS(1648), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1650), 28, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [133368] = 4, + STATE(5715), 1, + sym__all_type, + ACTIONS(6537), 2, + anon_sym_table, + anon_sym_record, + STATE(6493), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6535), 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, + [124033] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(3627), 1, - sym_comment, - ACTIONS(1790), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1792), 29, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [133415] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(3628), 1, + ACTIONS(6539), 1, + anon_sym_list, + STATE(3402), 1, sym_comment, - ACTIONS(6612), 34, + STATE(5716), 1, + sym__all_type, + ACTIONS(6537), 2, + anon_sym_table, + anon_sym_record, + STATE(6493), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6535), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -353785,20 +336995,25 @@ 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, - anon_sym_record, - anon_sym_list, - [133464] = 4, + [124088] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6652), 1, - sym__newline, - STATE(3629), 2, + ACTIONS(6539), 1, + anon_sym_list, + STATE(3403), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1286), 34, + STATE(5717), 1, + sym__all_type, + ACTIONS(6537), 2, + anon_sym_table, + anon_sym_record, + STATE(6493), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6535), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -353828,62 +337043,16 @@ 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, - anon_sym_record, - anon_sym_list, - [133511] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6655), 1, - anon_sym_DOT, - ACTIONS(6657), 1, - aux_sym__immediate_decimal_token2, - STATE(3630), 1, - sym_comment, - ACTIONS(1492), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(1494), 26, - 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_has, - anon_sym_not_DASHhas, - 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, - [133562] = 4, + [124143] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(3631), 1, + ACTIONS(6527), 1, + aux_sym__immediate_decimal_token2, + STATE(3404), 1, sym_comment, - ACTIONS(1666), 7, + ACTIONS(1701), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -353891,10 +337060,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1668), 29, + ACTIONS(1703), 30, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -353921,231 +337091,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [133609] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6659), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6661), 1, - aux_sym__immediate_decimal_token2, - STATE(3632), 1, - sym_comment, - ACTIONS(1484), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(1486), 26, - 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_has, - anon_sym_not_DASHhas, - 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, - [133660] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6663), 1, - aux_sym__immediate_decimal_token2, - STATE(3633), 1, - sym_comment, - ACTIONS(1538), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(1540), 26, - 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_has, - anon_sym_not_DASHhas, - 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, - [133708] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6665), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6667), 1, - aux_sym__immediate_decimal_token2, - STATE(3634), 1, - sym_comment, - ACTIONS(1648), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1650), 27, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [133758] = 5, + [124194] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6669), 1, - aux_sym__immediate_decimal_token2, - STATE(3635), 1, - sym_comment, - ACTIONS(1719), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1721), 28, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [133806] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6657), 1, - aux_sym__immediate_decimal_token2, - STATE(3636), 1, + ACTIONS(6539), 1, + anon_sym_list, + STATE(3405), 1, sym_comment, - ACTIONS(1492), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(1494), 26, - 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_has, - anon_sym_not_DASHhas, - 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, - [133854] = 3, + STATE(5720), 1, + sym__all_type, + ACTIONS(6537), 2, + anon_sym_table, + anon_sym_record, + STATE(6493), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6535), 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, + [124249] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(3637), 1, + ACTIONS(6539), 1, + anon_sym_list, + STATE(3406), 1, sym_comment, - ACTIONS(1278), 35, - sym__newline, + STATE(5721), 1, + sym__all_type, + ACTIONS(6537), 2, + anon_sym_table, + anon_sym_record, + STATE(6493), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6535), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -354175,162 +337185,74 @@ 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, - anon_sym_record, - anon_sym_list, - [133898] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6671), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6673), 1, - aux_sym__immediate_decimal_token2, - STATE(3638), 1, - sym_comment, - ACTIONS(1484), 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(1486), 26, - 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_has, - anon_sym_not_DASHhas, - 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, - [133948] = 6, + [124304] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6675), 1, - anon_sym_DOT, - ACTIONS(6677), 1, - aux_sym__immediate_decimal_token2, - STATE(3639), 1, - sym_comment, - ACTIONS(1666), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1668), 27, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [133998] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6679), 1, - anon_sym_DOT, - ACTIONS(6681), 1, - aux_sym__immediate_decimal_token2, - STATE(3640), 1, + ACTIONS(6539), 1, + anon_sym_list, + STATE(3407), 1, sym_comment, - ACTIONS(1492), 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(1494), 26, - 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_has, - anon_sym_not_DASHhas, - 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, - [134048] = 5, + STATE(5679), 1, + sym__all_type, + ACTIONS(6537), 2, + anon_sym_table, + anon_sym_record, + STATE(6493), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6535), 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, + [124359] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6646), 1, - aux_sym__immediate_decimal_token2, - STATE(3641), 1, + STATE(3408), 1, sym_comment, - ACTIONS(1666), 6, + ACTIONS(1579), 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(1668), 28, - sym__newline, + ACTIONS(1581), 30, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -354355,68 +337277,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134096] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [124408] = 7, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6539), 1, + anon_sym_list, + STATE(3409), 1, + sym_comment, + STATE(5751), 1, + sym__all_type, + ACTIONS(6537), 2, + anon_sym_table, + anon_sym_record, + STATE(6493), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6535), 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, + [124463] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6681), 1, - aux_sym__immediate_decimal_token2, - STATE(3642), 1, + ACTIONS(6554), 1, + anon_sym_RBRACK, + ACTIONS(6558), 1, + sym__entry_separator, + STATE(3382), 1, + aux_sym__multiple_types_repeat1, + STATE(3410), 1, sym_comment, - ACTIONS(1492), 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(1494), 26, - 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_has, - anon_sym_not_DASHhas, - 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, - [134143] = 6, + ACTIONS(6556), 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, + [124515] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6683), 1, - anon_sym_DOT_DOT2, - STATE(3643), 1, + STATE(3411), 1, sym_comment, - ACTIONS(6685), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1811), 5, + ACTIONS(1686), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1819), 26, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1688), 30, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -354431,6 +337406,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, @@ -354440,23 +337416,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134192] = 6, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [124563] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2190), 1, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(1807), 1, anon_sym_LPAREN2, - ACTIONS(2192), 1, - aux_sym_unquoted_token4, - STATE(3644), 1, + ACTIONS(6560), 1, + anon_sym_DOT_DOT2, + STATE(3412), 1, sym_comment, - ACTIONS(994), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(998), 30, + ACTIONS(6562), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1805), 5, anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1813), 27, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -354467,42 +337453,83 @@ 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, - [134241] = 6, + [124619] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6558), 1, + sym__entry_separator, + ACTIONS(6564), 1, + anon_sym_RBRACK, + STATE(3382), 1, + aux_sym__multiple_types_repeat1, + STATE(3413), 1, + sym_comment, + ACTIONS(6556), 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, + [124671] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6687), 1, - anon_sym_DOT_DOT2, - STATE(3645), 1, + STATE(3414), 1, sym_comment, - ACTIONS(6689), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2033), 5, + ACTIONS(1760), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2039), 26, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1762), 30, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -354517,6 +337544,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, @@ -354526,22 +337554,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134290] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [124719] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2061), 1, + ACTIONS(1784), 1, anon_sym_LPAREN2, - ACTIONS(2065), 1, + ACTIONS(1792), 1, aux_sym_unquoted_token2, - STATE(3646), 1, + ACTIONS(6566), 1, + anon_sym_DOT_DOT2, + STATE(3415), 1, sym_comment, - ACTIONS(2059), 5, + ACTIONS(6568), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1782), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2063), 27, + ACTIONS(1790), 27, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -354569,26 +337604,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134339] = 6, + [124775] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - ACTIONS(2051), 1, - anon_sym_LPAREN2, - STATE(3647), 1, + ACTIONS(6548), 1, + aux_sym__immediate_decimal_token2, + STATE(3416), 1, sym_comment, - ACTIONS(2049), 5, + ACTIONS(1701), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2053), 27, - sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 29, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -354603,6 +337637,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, @@ -354612,21 +337647,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134388] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [124825] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6677), 1, + ACTIONS(6570), 1, aux_sym__immediate_decimal_token2, - STATE(3648), 1, + STATE(3417), 1, sym_comment, - ACTIONS(1666), 6, + ACTIONS(1760), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1668), 27, + ACTIONS(1762), 29, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -354654,22 +337692,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134435] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [124875] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6558), 1, + sym__entry_separator, + ACTIONS(6572), 1, + anon_sym_RBRACK, + STATE(3382), 1, + aux_sym__multiple_types_repeat1, + STATE(3418), 1, + sym_comment, + ACTIONS(6556), 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, + [124927] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6558), 1, + sym__entry_separator, + ACTIONS(6574), 1, + anon_sym_RBRACK, + STATE(3382), 1, + aux_sym__multiple_types_repeat1, + STATE(3419), 1, + sym_comment, + ACTIONS(6556), 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, + [124979] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - STATE(3649), 1, + STATE(3420), 1, sym_comment, - ACTIONS(1778), 5, + ACTIONS(1797), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1786), 27, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1799), 30, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -354688,6 +337818,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, @@ -354697,23 +337828,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134484] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [125027] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2196), 1, - anon_sym_LPAREN2, - ACTIONS(2200), 1, - aux_sym_unquoted_token4, - STATE(3650), 1, + ACTIONS(2431), 1, + sym__entry_separator, + STATE(3421), 1, sym_comment, - ACTIONS(2198), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(2194), 30, + ACTIONS(2429), 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, + [125075] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(3422), 1, + sym_comment, + ACTIONS(1701), 7, anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 30, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -354724,28 +337902,32 @@ 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_LPAREN2, 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, - [134533] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [125123] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3651), 1, + ACTIONS(6576), 1, + anon_sym_DOT, + ACTIONS(6578), 1, + aux_sym__immediate_decimal_token2, + STATE(3423), 1, sym_comment, - ACTIONS(1538), 8, + ACTIONS(1499), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -354754,7 +337936,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token41, sym_filesize_unit, anon_sym_COLON2, - ACTIONS(1540), 26, + ACTIONS(1501), 26, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -354781,23 +337963,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [134578] = 6, + [125174] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6691), 1, - anon_sym_DOT_DOT2, - STATE(3652), 1, + STATE(3424), 1, sym_comment, - ACTIONS(6693), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2009), 5, + ACTIONS(1701), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2015), 26, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 29, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -354815,6 +337994,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, @@ -354824,23 +338004,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134627] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [125221] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6695), 1, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + ACTIONS(6580), 1, anon_sym_DOT_DOT2, - STATE(3653), 1, + STATE(3425), 1, sym_comment, - ACTIONS(6697), 2, + ACTIONS(6582), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2017), 5, + ACTIONS(1805), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2023), 26, + ACTIONS(1813), 26, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -354867,23 +338053,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134676] = 6, + [125276] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6699), 1, - anon_sym_DOT_DOT2, - STATE(3654), 1, + STATE(3426), 1, sym_comment, - ACTIONS(6701), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(998), 5, + ACTIONS(1686), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(994), 26, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1688), 29, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -354901,6 +338084,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, @@ -354910,23 +338094,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134725] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [125323] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6703), 1, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + ACTIONS(6584), 1, anon_sym_DOT_DOT2, - STATE(3655), 1, + STATE(3427), 1, sym_comment, - ACTIONS(6705), 2, + ACTIONS(6586), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2025), 5, + ACTIONS(1782), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2031), 26, + ACTIONS(1790), 26, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -354953,23 +338143,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134774] = 6, + [125378] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6699), 1, - anon_sym_DOT_DOT2, - STATE(3656), 1, + STATE(3428), 1, sym_comment, - ACTIONS(6701), 2, + ACTIONS(1760), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1762), 29, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, - ACTIONS(4968), 5, + [125425] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(3429), 1, + sym_comment, + ACTIONS(1797), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(4970), 26, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1799), 29, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -354987,6 +338217,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, @@ -354996,20 +338227,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134823] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [125472] = 6, + ACTIONS(245), 1, anon_sym_POUND, - STATE(3657), 1, + ACTIONS(6588), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6590), 1, + aux_sym__immediate_decimal_token2, + STATE(3430), 1, sym_comment, - ACTIONS(2047), 3, - sym__newline, - anon_sym_LBRACE, - anon_sym_LPAREN2, - ACTIONS(2045), 31, + ACTIONS(1686), 6, anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1688), 28, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -355020,29 +338260,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_LPAREN2, 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, - [134868] = 4, + [125523] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3658), 1, + ACTIONS(6592), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6594), 1, + aux_sym__immediate_decimal_token2, + STATE(3431), 1, sym_comment, - ACTIONS(1715), 8, + ACTIONS(1491), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -355051,7 +338292,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token41, sym_filesize_unit, anon_sym_COLON2, - ACTIONS(1717), 26, + ACTIONS(1493), 26, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -355078,23 +338319,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [134913] = 6, - ACTIONS(3), 1, + [125574] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(3659), 1, + ACTIONS(6101), 1, + sym_filesize_unit, + ACTIONS(6103), 1, + sym_duration_unit, + ACTIONS(6596), 1, + anon_sym_DOT_DOT2, + STATE(3432), 1, sym_comment, - ACTIONS(2093), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(2089), 30, + ACTIONS(6598), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1616), 5, anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1628), 26, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -355105,43 +338353,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, - [134962] = 7, + [125629] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4966), 1, - anon_sym_EQ_GT, - ACTIONS(6699), 1, - anon_sym_DOT_DOT2, - STATE(3660), 1, + ACTIONS(6600), 1, + anon_sym_DOT, + ACTIONS(6602), 1, + aux_sym__immediate_decimal_token2, + STATE(3433), 1, sym_comment, - ACTIONS(6701), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4968), 5, + ACTIONS(1701), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(4970), 25, + aux_sym_unquoted_token2, + ACTIONS(1703), 28, + sym__newline, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -355156,6 +338401,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, @@ -355165,26 +338411,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135013] = 8, + [125680] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1579), 1, - anon_sym_COLON2, - ACTIONS(2544), 1, + ACTIONS(6558), 1, + sym__entry_separator, + STATE(3382), 1, + aux_sym__multiple_types_repeat1, + STATE(3434), 1, + sym_comment, + ACTIONS(6556), 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, + [125729] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6604), 1, + sym__newline, + STATE(3435), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1274), 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, + [125776] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6607), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6609), 1, + aux_sym__immediate_decimal_token2, + STATE(3436), 1, + sym_comment, + ACTIONS(1491), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, aux_sym_cmd_identifier_token41, - ACTIONS(6707), 1, sym_filesize_unit, - ACTIONS(6709), 1, + ACTIONS(1493), 26, + 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_has, + anon_sym_not_DASHhas, + 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, - STATE(3661), 1, + [125826] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6611), 1, + anon_sym_DOT, + ACTIONS(6613), 1, + aux_sym__immediate_decimal_token2, + STATE(3437), 1, sym_comment, - ACTIONS(2542), 5, + ACTIONS(1499), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(2540), 25, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1501), 26, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -355210,66 +338585,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [135066] = 6, - ACTIONS(3), 1, + sym_duration_unit, + [125876] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(3662), 1, + STATE(3438), 1, sym_comment, - ACTIONS(2204), 2, + ACTIONS(1285), 35, sym__newline, - anon_sym_LBRACE, - ACTIONS(2202), 30, - 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_has2, - anon_sym_not_DASHhas2, - 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, - [135115] = 4, + 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, + [125920] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6615), 1, + aux_sym__immediate_decimal_token2, + STATE(3439), 1, + sym_comment, + ACTIONS(1579), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(1581), 26, + 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_has, + anon_sym_not_DASHhas, + 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, + [125968] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(3663), 1, + ACTIONS(6617), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6619), 1, + aux_sym__immediate_decimal_token2, + STATE(3440), 1, sym_comment, - ACTIONS(1719), 6, + ACTIONS(1686), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, aux_sym_unquoted_token2, - ACTIONS(1721), 28, - sym__newline, + ACTIONS(1688), 27, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -355294,19 +338714,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135160] = 4, + [126018] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(3664), 1, + ACTIONS(6621), 1, + aux_sym__immediate_decimal_token2, + STATE(3441), 1, sym_comment, - ACTIONS(1666), 6, + ACTIONS(1760), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, aux_sym_unquoted_token2, - ACTIONS(1668), 28, + ACTIONS(1762), 28, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -355335,22 +338757,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135205] = 6, + [126066] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - STATE(3665), 1, + ACTIONS(6602), 1, + aux_sym__immediate_decimal_token2, + STATE(3442), 1, sym_comment, - ACTIONS(2041), 5, + ACTIONS(1701), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2043), 27, + aux_sym_unquoted_token2, + ACTIONS(1703), 28, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -355369,6 +338790,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, @@ -355378,23 +338800,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135254] = 6, + [126114] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6578), 1, + aux_sym__immediate_decimal_token2, + STATE(3443), 1, + sym_comment, + ACTIONS(1499), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(1501), 26, + 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_has, + anon_sym_not_DASHhas, + 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, + [126162] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6711), 1, - anon_sym_DOT_DOT2, - STATE(3666), 1, + ACTIONS(6623), 1, + anon_sym_DOT, + ACTIONS(6625), 1, + aux_sym__immediate_decimal_token2, + STATE(3444), 1, sym_comment, - ACTIONS(6713), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1778), 5, + ACTIONS(1701), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1786), 26, + aux_sym_unquoted_token2, + ACTIONS(1703), 27, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -355412,6 +338877,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, @@ -355421,24 +338887,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135303] = 5, + [126212] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6715), 1, - aux_sym__immediate_decimal_token2, - STATE(3667), 1, + STATE(3445), 1, sym_comment, - ACTIONS(1719), 6, + ACTIONS(1686), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, aux_sym_unquoted_token2, - ACTIONS(1721), 27, + ACTIONS(1688), 28, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -355463,14 +338928,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135350] = 5, + [126257] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6717), 1, + ACTIONS(6627), 1, aux_sym__immediate_decimal_token2, - STATE(3668), 1, + STATE(3446), 1, sym_comment, - ACTIONS(1538), 7, + ACTIONS(1579), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -355478,7 +338943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token41, sym_filesize_unit, - ACTIONS(1540), 26, + ACTIONS(1581), 26, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -355505,12 +338970,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [135397] = 4, + [126304] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(3669), 1, + ACTIONS(1616), 1, + anon_sym_COLON2, + ACTIONS(2546), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6629), 1, + sym_filesize_unit, + ACTIONS(6631), 1, + sym_duration_unit, + STATE(3447), 1, + sym_comment, + ACTIONS(2544), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2542), 25, + 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_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [126357] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2070), 1, + anon_sym_LPAREN2, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(3448), 1, + sym_comment, + ACTIONS(2130), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(2128), 30, + 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_has2, + anon_sym_not_DASHhas2, + 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, + [126406] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3449), 1, sym_comment, - ACTIONS(1492), 8, + ACTIONS(1579), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -355519,7 +339072,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token41, sym_filesize_unit, anon_sym_COLON2, - ACTIONS(1494), 26, + ACTIONS(1581), 26, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -355546,12 +339099,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [135442] = 4, + [126451] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(3450), 1, + sym_comment, + ACTIONS(1760), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1762), 28, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [126496] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2070), 1, + anon_sym_LPAREN2, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(3451), 1, + sym_comment, + ACTIONS(2072), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(2068), 30, + 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_has2, + anon_sym_not_DASHhas2, + 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, + [126545] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3670), 1, + STATE(3452), 1, sym_comment, - ACTIONS(1484), 8, + ACTIONS(1499), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -355560,7 +339197,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token41, sym_filesize_unit, anon_sym_COLON2, - ACTIONS(1486), 26, + ACTIONS(1501), 26, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -355587,22 +339224,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [135487] = 6, + [126590] = 6, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(1447), 1, aux_sym_unquoted_token2, - ACTIONS(1813), 1, + ACTIONS(1807), 1, anon_sym_LPAREN2, - STATE(3671), 1, + STATE(3453), 1, sym_comment, - ACTIONS(1811), 5, + ACTIONS(1805), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1819), 27, + ACTIONS(1813), 27, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -355630,23 +339267,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135536] = 4, - ACTIONS(245), 1, + [126639] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3672), 1, + ACTIONS(2164), 1, + anon_sym_LPAREN2, + ACTIONS(2168), 1, + aux_sym_unquoted_token4, + STATE(3454), 1, sym_comment, - ACTIONS(1790), 6, + ACTIONS(2166), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(2162), 30, 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_has2, + anon_sym_not_DASHhas2, + 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, - aux_sym_unquoted_token2, - ACTIONS(1792), 28, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [126688] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2104), 1, + anon_sym_LPAREN2, + ACTIONS(2106), 1, + aux_sym_unquoted_token4, + STATE(3455), 1, + sym_comment, + ACTIONS(994), 2, sym__newline, + anon_sym_LBRACE, + ACTIONS(998), 30, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -355657,33 +339337,38 @@ 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_LPAREN2, 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, - [135581] = 4, + [126737] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(3673), 1, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + STATE(3456), 1, sym_comment, - ACTIONS(1648), 6, + ACTIONS(2134), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1650), 28, + ACTIONS(2136), 27, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -355702,7 +339387,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, @@ -355712,20 +339396,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135626] = 5, + [126786] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4715), 1, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1792), 1, aux_sym_unquoted_token2, - STATE(3674), 1, + STATE(3457), 1, sym_comment, - ACTIONS(1579), 5, + ACTIONS(1782), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1591), 27, + ACTIONS(1790), 27, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -355753,25 +339439,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135672] = 6, - ACTIONS(245), 1, + [126835] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(1813), 1, - anon_sym_LPAREN2, - STATE(3675), 1, + STATE(3458), 1, sym_comment, - ACTIONS(1811), 5, + ACTIONS(2078), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_LPAREN2, + ACTIONS(2076), 31, anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1819), 26, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -355782,35 +339463,38 @@ 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, - [135720] = 6, + aux_sym_unquoted_token4, + [126880] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - STATE(3676), 1, + ACTIONS(6625), 1, + aux_sym__immediate_decimal_token2, + STATE(3459), 1, sym_comment, - ACTIONS(2041), 5, + ACTIONS(1701), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2043), 26, + aux_sym_unquoted_token2, + ACTIONS(1703), 27, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -355828,6 +339512,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, @@ -355837,25 +339522,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135768] = 6, + [126927] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1788), 1, + ACTIONS(1477), 1, aux_sym_unquoted_token2, - STATE(3677), 1, + ACTIONS(2140), 1, + anon_sym_LPAREN2, + STATE(3460), 1, sym_comment, - ACTIONS(1778), 5, + ACTIONS(2138), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1786), 26, + ACTIONS(2142), 27, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -355879,25 +339565,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135816] = 6, + [126976] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3461), 1, + sym_comment, + ACTIONS(1491), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(1493), 26, + 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_has, + anon_sym_not_DASHhas, + 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, + [127021] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - ACTIONS(2051), 1, - anon_sym_LPAREN2, - STATE(3678), 1, + ACTIONS(4982), 1, + anon_sym_EQ_GT, + ACTIONS(6633), 1, + anon_sym_DOT_DOT2, + STATE(3462), 1, sym_comment, - ACTIONS(2049), 5, + ACTIONS(6635), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(4954), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2053), 26, + ACTIONS(4952), 25, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -355921,22 +339650,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135864] = 6, + [127072] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2061), 1, - anon_sym_LPAREN2, - ACTIONS(2065), 1, - aux_sym_unquoted_token2, - STATE(3679), 1, + ACTIONS(6633), 1, + anon_sym_DOT_DOT2, + STATE(3463), 1, sym_comment, - ACTIONS(2059), 5, + ACTIONS(6635), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(998), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2063), 26, + ACTIONS(994), 26, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -355963,61 +339693,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135912] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3680), 1, - sym_comment, - ACTIONS(1715), 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(1717), 26, - 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_has, - anon_sym_not_DASHhas, - 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, - [135956] = 5, - ACTIONS(3), 1, + [127121] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2190), 1, - anon_sym_LPAREN2, - ACTIONS(2192), 1, - aux_sym_unquoted_token4, - STATE(3681), 1, + ACTIONS(6637), 1, + anon_sym_DOT_DOT2, + STATE(3464), 1, sym_comment, - ACTIONS(998), 31, + ACTIONS(6639), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1805), 5, anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1813), 26, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -356028,37 +339723,39 @@ 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, - [136002] = 5, - ACTIONS(3), 1, + [127170] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2196), 1, - anon_sym_LPAREN2, - ACTIONS(2200), 1, - aux_sym_unquoted_token4, - STATE(3682), 1, + ACTIONS(6633), 1, + anon_sym_DOT_DOT2, + STATE(3465), 1, sym_comment, - ACTIONS(2194), 31, + ACTIONS(6635), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(4954), 5, anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(4952), 26, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -356069,37 +339766,39 @@ 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, - [136048] = 5, - ACTIONS(3), 1, + [127219] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(3683), 1, + ACTIONS(6641), 1, + anon_sym_DOT_DOT2, + STATE(3466), 1, sym_comment, - ACTIONS(2202), 31, + ACTIONS(6643), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1782), 5, anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1790), 26, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -356110,37 +339809,37 @@ 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, - [136094] = 5, - ACTIONS(3), 1, + [127268] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(3684), 1, + ACTIONS(6645), 1, + aux_sym__immediate_decimal_token2, + STATE(3467), 1, sym_comment, - ACTIONS(2089), 31, + ACTIONS(1760), 6, anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1762), 27, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -356151,35 +339850,37 @@ 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_LPAREN2, 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, - [136140] = 4, - ACTIONS(3), 1, + [127315] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2047), 1, - anon_sym_LPAREN2, - STATE(3685), 1, + STATE(3468), 1, sym_comment, - ACTIONS(2045), 32, + ACTIONS(1701), 6, anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1703), 28, + 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, @@ -356190,69 +339891,28 @@ 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_LPAREN2, 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, - [136184] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3686), 1, - sym_comment, - ACTIONS(1492), 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(1494), 26, - 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_has, - anon_sym_not_DASHhas, - 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, - [136228] = 4, + [127360] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3687), 1, + ACTIONS(6613), 1, + aux_sym__immediate_decimal_token2, + STATE(3469), 1, sym_comment, - ACTIONS(1484), 7, + ACTIONS(1499), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -356260,7 +339920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token41, sym_filesize_unit, - ACTIONS(1486), 26, + ACTIONS(1501), 26, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -356287,61 +339947,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [136272] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6608), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6719), 1, - anon_sym_DOT, - STATE(3688), 1, - sym_comment, - ACTIONS(1666), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1668), 26, - 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_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, - [136320] = 4, + [127407] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(3689), 1, + ACTIONS(6647), 1, + anon_sym_DOT_DOT2, + STATE(3470), 1, sym_comment, - ACTIONS(1666), 6, + ACTIONS(6649), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1973), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1668), 27, + ACTIONS(1979), 26, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -356359,7 +339981,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, @@ -356369,19 +339990,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136364] = 4, + [127456] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(3690), 1, + ACTIONS(6651), 1, + anon_sym_DOT_DOT2, + STATE(3471), 1, sym_comment, - ACTIONS(1648), 6, + ACTIONS(6653), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1949), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1650), 27, + ACTIONS(1955), 26, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -356399,7 +340024,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, @@ -356409,19 +340033,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136408] = 4, + [127505] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(3691), 1, + ACTIONS(6655), 1, + anon_sym_DOT_DOT2, + STATE(3472), 1, sym_comment, - ACTIONS(1719), 6, + ACTIONS(6657), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1957), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1721), 27, + ACTIONS(1963), 26, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -356439,7 +340067,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, @@ -356449,19 +340076,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136452] = 4, + [127554] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(3692), 1, + ACTIONS(6659), 1, + anon_sym_DOT_DOT2, + STATE(3473), 1, sym_comment, - ACTIONS(1790), 6, + ACTIONS(6661), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1965), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1792), 27, + ACTIONS(1971), 26, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -356479,7 +340110,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, @@ -356489,24 +340119,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136496] = 7, + [127603] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6725), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6727), 1, - sym_filesize_unit, - ACTIONS(6729), 1, - sym_duration_unit, - STATE(3693), 1, + STATE(3474), 1, sym_comment, - ACTIONS(6723), 5, + ACTIONS(1678), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6721), 25, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(1680), 26, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -356532,35 +340159,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [136546] = 12, + sym_duration_unit, + [127648] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5389), 1, - sym__newline, - ACTIONS(6731), 1, - anon_sym_DASH2, - ACTIONS(6739), 1, - anon_sym_PLUS2, - STATE(3694), 1, + STATE(3475), 1, sym_comment, - STATE(3706), 1, - aux_sym_shebang_repeat1, - ACTIONS(5287), 2, + ACTIONS(1797), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6733), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6735), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5285), 19, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1799), 28, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -356577,32 +340191,33 @@ 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, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136606] = 9, + [127693] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5389), 1, - sym__newline, - STATE(3695), 1, + ACTIONS(2146), 1, + anon_sym_LPAREN2, + ACTIONS(2150), 1, + aux_sym_unquoted_token2, + STATE(3476), 1, sym_comment, - STATE(3708), 1, - aux_sym_shebang_repeat1, - ACTIONS(6733), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6735), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5287), 3, + ACTIONS(2144), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5285), 22, + ACTIONS(2148), 27, + sym__newline, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -356620,45 +340235,48 @@ 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, - [136660] = 13, + [127742] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5389), 1, - sym__newline, - ACTIONS(6731), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6739), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - STATE(3696), 1, - sym_comment, - STATE(3710), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + STATE(3477), 1, + sym_comment, + ACTIONS(6663), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, + ACTIONS(6677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6745), 4, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5285), 15, + ACTIONS(5225), 16, + sym__newline, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -356674,290 +340292,304 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136722] = 7, + [127802] = 13, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5389), 1, - sym__newline, - STATE(3697), 1, - sym_comment, - STATE(3712), 1, + ACTIONS(6665), 1, + anon_sym_DASH2, + ACTIONS(6675), 1, + anon_sym_PLUS2, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(6735), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5287), 5, + STATE(3478), 1, + sym_comment, + ACTIONS(6663), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6667), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5285), 24, - anon_sym_DASH2, + ACTIONS(6671), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6673), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6677), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6679), 6, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, 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(5251), 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_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136772] = 18, + [127864] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5389), 1, + ACTIONS(5354), 1, sym__newline, - ACTIONS(6731), 1, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6739), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, - anon_sym_bit_DASHand2, - ACTIONS(6753), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, - anon_sym_bit_DASHor2, - STATE(3698), 1, + STATE(3479), 1, sym_comment, - STATE(3714), 1, + STATE(3592), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6681), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, + ACTIONS(6697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6749), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5285), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6745), 4, + ACTIONS(6689), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6747), 6, + ACTIONS(6685), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [136844] = 19, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5389), 1, - sym__newline, - ACTIONS(6731), 1, - anon_sym_DASH2, - ACTIONS(6739), 1, - anon_sym_PLUS2, - ACTIONS(6751), 1, + ACTIONS(5255), 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, - ACTIONS(6753), 1, anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, anon_sym_bit_DASHor2, - ACTIONS(6757), 1, - anon_sym_and2, - STATE(3699), 1, - sym_comment, - STATE(3716), 1, + [127928] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + STATE(3480), 1, + sym_comment, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, + ACTIONS(5253), 3, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6749), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5285), 3, + anon_sym_PLUS2, + ACTIONS(5251), 23, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6745), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6747), 6, - anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [136918] = 20, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(6731), 1, - anon_sym_DASH2, - ACTIONS(6739), 1, - anon_sym_PLUS2, - ACTIONS(6751), 1, + anon_sym_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(6753), 1, anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, anon_sym_bit_DASHor2, - ACTIONS(6757), 1, - anon_sym_and2, - ACTIONS(6759), 1, - anon_sym_xor2, - STATE(3700), 1, - sym_comment, - STATE(3718), 1, + [127980] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(5285), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(6733), 2, + STATE(3481), 1, + sym_comment, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, + ACTIONS(5249), 3, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6749), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, + anon_sym_PLUS2, + ACTIONS(5247), 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_has2, + anon_sym_not_DASHhas2, + 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(6747), 6, + 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, + [128032] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2164), 1, + anon_sym_LPAREN2, + ACTIONS(2168), 1, + aux_sym_unquoted_token4, + STATE(3482), 1, + sym_comment, + ACTIONS(2162), 31, + 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_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [136994] = 14, + 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, + [128078] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5389), 1, + ACTIONS(5287), 1, sym__newline, - ACTIONS(6731), 1, - anon_sym_DASH2, - ACTIONS(6739), 1, - anon_sym_PLUS2, - STATE(3701), 1, + STATE(3483), 1, sym_comment, - STATE(3720), 1, + STATE(3566), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, + ACTIONS(5231), 3, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6745), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6747), 6, + anon_sym_PLUS2, + ACTIONS(5229), 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_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5285), 9, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_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, - [137058] = 11, + [128132] = 10, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5389), 1, - sym__newline, - ACTIONS(6731), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6739), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - STATE(3702), 1, - sym_comment, - STATE(3722), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(5287), 2, + STATE(3484), 1, + sym_comment, + ACTIONS(5253), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6733), 2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5285), 21, + ACTIONS(5251), 22, + sym__newline, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -356979,190 +340611,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [137116] = 15, + [128188] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5389), 1, - sym__newline, - ACTIONS(6731), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6739), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - STATE(3703), 1, - sym_comment, - STATE(3724), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + STATE(3485), 1, + sym_comment, + ACTIONS(6663), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, + ACTIONS(6677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6749), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6747), 6, + ACTIONS(5247), 16, + sym__newline, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5285), 7, - 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, - [137182] = 16, + [128248] = 13, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5389), 1, + ACTIONS(5287), 1, sym__newline, - ACTIONS(6731), 1, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6739), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, - anon_sym_bit_DASHand2, - STATE(3704), 1, + STATE(3486), 1, sym_comment, - STATE(3726), 1, + STATE(3567), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6681), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, + ACTIONS(6697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6749), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, + ACTIONS(6689), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5285), 6, + ACTIONS(5229), 15, + anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(6747), 6, - anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [137250] = 17, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [128310] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5389), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(3487), 1, + sym_comment, + ACTIONS(6671), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5249), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5247), 25, sym__newline, - ACTIONS(6731), 1, anon_sym_DASH2, - ACTIONS(6739), 1, - anon_sym_PLUS2, - ACTIONS(6751), 1, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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(6753), 1, anon_sym_bit_DASHxor2, - STATE(3705), 1, + anon_sym_bit_DASHor2, + [128358] = 9, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5354), 1, + sym__newline, + STATE(3488), 1, sym_comment, - STATE(3728), 1, + STATE(3579), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, + ACTIONS(5257), 3, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6749), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5285), 5, + anon_sym_PLUS2, + ACTIONS(5255), 22, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(6747), 6, - anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [137320] = 11, + anon_sym_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, + [128412] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(5354), 1, + sym__newline, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(3706), 1, + STATE(3489), 1, sym_comment, - ACTIONS(5299), 2, + STATE(3593), 1, + aux_sym_shebang_repeat1, + ACTIONS(5257), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6763), 2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5297), 20, - sym__newline, + ACTIONS(5255), 21, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -357179,38 +340837,31 @@ 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, - [137378] = 12, + [128470] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5355), 1, + ACTIONS(5287), 1, sym__newline, - ACTIONS(6731), 1, - anon_sym_DASH2, - ACTIONS(6739), 1, - anon_sym_PLUS2, - STATE(3707), 1, + STATE(3490), 1, sym_comment, - STATE(3741), 1, + STATE(3568), 1, aux_sym_shebang_repeat1, - ACTIONS(5309), 2, + ACTIONS(6691), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5231), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6733), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6735), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5307), 19, + anon_sym_PLUS2, + ACTIONS(5229), 24, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -357227,34 +340878,119 @@ 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, - [137438] = 8, + [128520] = 14, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + ACTIONS(6665), 1, + anon_sym_DASH2, + ACTIONS(6675), 1, + anon_sym_PLUS2, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3708), 1, + STATE(3491), 1, sym_comment, - ACTIONS(6763), 2, + ACTIONS(6663), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5299), 3, + ACTIONS(6677), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6699), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6679), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5251), 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, + [128584] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2070), 1, + anon_sym_LPAREN2, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(3492), 1, + sym_comment, + ACTIONS(2128), 31, 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_has2, + anon_sym_not_DASHhas2, + 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, - ACTIONS(5297), 23, - sym__newline, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [128630] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2070), 1, + anon_sym_LPAREN2, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(3493), 1, + sym_comment, + ACTIONS(2068), 31, + anon_sym_GT2, 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, @@ -357265,93 +341001,163 @@ 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, - [137490] = 9, + [128676] = 17, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - STATE(3709), 1, - sym_comment, - STATE(3742), 1, + ACTIONS(6665), 1, + anon_sym_DASH2, + ACTIONS(6675), 1, + anon_sym_PLUS2, + ACTIONS(6701), 1, + anon_sym_bit_DASHand2, + ACTIONS(6703), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6705), 1, + anon_sym_bit_DASHor2, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + STATE(3494), 1, + sym_comment, + ACTIONS(6663), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5309), 3, + ACTIONS(6677), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6699), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5247), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6679), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [128746] = 18, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5287), 1, + sym__newline, + ACTIONS(6683), 1, + anon_sym_DASH2, + ACTIONS(6695), 1, + anon_sym_PLUS2, + ACTIONS(6709), 1, + anon_sym_bit_DASHand2, + ACTIONS(6711), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6713), 1, + anon_sym_bit_DASHor2, + STATE(3495), 1, + sym_comment, + STATE(3569), 1, + aux_sym_shebang_repeat1, + ACTIONS(6681), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5307), 22, - anon_sym_DASH2, - anon_sym_in2, + ACTIONS(6687), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6691), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6693), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6697), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6707), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5229), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(6689), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6685), 6, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_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, - [137544] = 12, + [128818] = 13, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(5351), 1, + sym__newline, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - STATE(1653), 1, + STATE(3485), 1, aux_sym_shebang_repeat1, - STATE(3710), 1, + STATE(3496), 1, sym_comment, - ACTIONS(6763), 2, + ACTIONS(6681), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6775), 4, + ACTIONS(6689), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5297), 16, - sym__newline, + ACTIONS(5197), 15, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -357367,117 +341173,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [137604] = 13, + [128880] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5355), 1, + ACTIONS(5354), 1, sym__newline, - ACTIONS(6731), 1, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6739), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - STATE(3711), 1, + STATE(3497), 1, sym_comment, - STATE(3743), 1, + STATE(3596), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6681), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, + ACTIONS(6697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6745), 4, + ACTIONS(6707), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6689), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5307), 15, + ACTIONS(6685), 6, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(5255), 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, - [137666] = 6, + [128946] = 12, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + ACTIONS(6665), 1, + anon_sym_DASH2, + ACTIONS(6675), 1, + anon_sym_PLUS2, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3712), 1, + STATE(3498), 1, sym_comment, - ACTIONS(6765), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5299), 5, + ACTIONS(6663), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6667), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5297), 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_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - 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(6671), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [137714] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5355), 1, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5251), 16, sym__newline, - STATE(3713), 1, - sym_comment, - STATE(3744), 1, - aux_sym_shebang_repeat1, - ACTIONS(6735), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5309), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5307), 24, - anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -357488,385 +341267,409 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_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, - [137764] = 17, + [129006] = 18, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, + ACTIONS(6701), 1, anon_sym_bit_DASHand2, - ACTIONS(6783), 1, + ACTIONS(6703), 1, anon_sym_bit_DASHxor2, - ACTIONS(6785), 1, + ACTIONS(6705), 1, anon_sym_bit_DASHor2, - STATE(1653), 1, + ACTIONS(6715), 1, + anon_sym_and2, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3714), 1, + STATE(3499), 1, sym_comment, - ACTIONS(6763), 2, + ACTIONS(6663), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6779), 2, + ACTIONS(6699), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6775), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5297), 5, + ACTIONS(5247), 4, sym__newline, anon_sym_LBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6777), 6, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6679), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [137834] = 18, + [129078] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(6731), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6739), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, + ACTIONS(6701), 1, anon_sym_bit_DASHand2, - ACTIONS(6753), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, - anon_sym_bit_DASHor2, - STATE(3715), 1, - sym_comment, - STATE(3745), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + STATE(3500), 1, + sym_comment, + ACTIONS(6663), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, + ACTIONS(6677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6749), 2, + ACTIONS(6699), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5307), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6745), 4, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6747), 6, + ACTIONS(6679), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [137906] = 18, + ACTIONS(5251), 7, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [129144] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3501), 1, + sym_comment, + ACTIONS(1678), 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(1680), 26, + 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_has, + anon_sym_not_DASHhas, + 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, + [129188] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(5351), 1, + sym__newline, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, - anon_sym_bit_DASHand2, - ACTIONS(6783), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6785), 1, - anon_sym_bit_DASHor2, - ACTIONS(6787), 1, - anon_sym_and2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(3716), 1, + STATE(3502), 1, sym_comment, - ACTIONS(6763), 2, + STATE(3554), 1, + aux_sym_shebang_repeat1, + ACTIONS(5199), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6779), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5297), 4, - sym__newline, + ACTIONS(5197), 19, + anon_sym_in2, anon_sym_LBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6775), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6777), 6, - anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [137978] = 19, + anon_sym_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, + [129248] = 19, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5355), 1, + ACTIONS(5287), 1, sym__newline, - ACTIONS(6731), 1, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6739), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, + ACTIONS(6709), 1, anon_sym_bit_DASHand2, - ACTIONS(6753), 1, + ACTIONS(6711), 1, anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, + ACTIONS(6713), 1, anon_sym_bit_DASHor2, - ACTIONS(6757), 1, + ACTIONS(6717), 1, anon_sym_and2, - STATE(3717), 1, + STATE(3503), 1, sym_comment, - STATE(3746), 1, + STATE(3577), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6681), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, + ACTIONS(6697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6749), 2, + ACTIONS(6707), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5307), 3, + ACTIONS(5229), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(6745), 4, + ACTIONS(6689), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6747), 6, + ACTIONS(6685), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [138052] = 19, + [129322] = 19, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, + ACTIONS(6701), 1, anon_sym_bit_DASHand2, - ACTIONS(6783), 1, + ACTIONS(6703), 1, anon_sym_bit_DASHxor2, - ACTIONS(6785), 1, + ACTIONS(6705), 1, anon_sym_bit_DASHor2, - ACTIONS(6787), 1, + ACTIONS(6715), 1, anon_sym_and2, - ACTIONS(6789), 1, + ACTIONS(6719), 1, anon_sym_xor2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3718), 1, + STATE(3504), 1, sym_comment, - ACTIONS(6763), 2, + ACTIONS(6663), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6779), 2, + ACTIONS(6699), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5297), 3, + ACTIONS(5247), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(6775), 4, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6777), 6, + ACTIONS(6679), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [138126] = 20, + [129396] = 20, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(6731), 1, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6739), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, + ACTIONS(6709), 1, anon_sym_bit_DASHand2, - ACTIONS(6753), 1, + ACTIONS(6711), 1, anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, + ACTIONS(6713), 1, anon_sym_bit_DASHor2, - ACTIONS(6757), 1, + ACTIONS(6717), 1, anon_sym_and2, - ACTIONS(6759), 1, + ACTIONS(6721), 1, anon_sym_xor2, - STATE(3719), 1, + STATE(3505), 1, sym_comment, - STATE(3747), 1, + STATE(3582), 1, aux_sym_shebang_repeat1, - ACTIONS(5307), 2, + ACTIONS(5229), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(6733), 2, + ACTIONS(6681), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, + ACTIONS(6697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6749), 2, + ACTIONS(6707), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, + ACTIONS(6689), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6747), 6, + ACTIONS(6685), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [138202] = 13, + [129472] = 13, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3720), 1, + STATE(3506), 1, sym_comment, - ACTIONS(6763), 2, + ACTIONS(6663), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6775), 4, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6777), 6, + ACTIONS(6679), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5297), 10, + ACTIONS(5247), 10, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -357877,47 +341680,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138264] = 14, + [129534] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2582), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6723), 1, + sym_filesize_unit, + ACTIONS(6725), 1, + sym_duration_unit, + STATE(3507), 1, + sym_comment, + ACTIONS(2580), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2578), 25, + 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_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [129584] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5355), 1, + ACTIONS(5287), 1, sym__newline, - ACTIONS(6731), 1, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6739), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - STATE(3721), 1, + STATE(3508), 1, sym_comment, - STATE(3748), 1, + STATE(3583), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6681), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, + ACTIONS(6697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6745), 4, + ACTIONS(6689), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6747), 6, + ACTIONS(6685), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5307), 9, + ACTIONS(5229), 9, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -357927,30 +341773,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138328] = 10, + [129648] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(5351), 1, + sym__newline, + STATE(3481), 1, + aux_sym_shebang_repeat1, + STATE(3509), 1, + sym_comment, + ACTIONS(6687), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6691), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6693), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5199), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5197), 22, anon_sym_DASH2, - ACTIONS(6769), 1, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [129702] = 10, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6665), 1, + anon_sym_DASH2, + ACTIONS(6675), 1, anon_sym_PLUS2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3722), 1, + STATE(3510), 1, sym_comment, - ACTIONS(5299), 2, + ACTIONS(5249), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6763), 2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5297), 22, + ACTIONS(5247), 22, sym__newline, anon_sym_in2, anon_sym_LBRACE, @@ -357973,32 +341864,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138384] = 11, + [129758] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5355), 1, + ACTIONS(5287), 1, sym__newline, - ACTIONS(6731), 1, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6739), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - STATE(3723), 1, + STATE(3511), 1, sym_comment, - STATE(3749), 1, + STATE(3584), 1, aux_sym_shebang_repeat1, - ACTIONS(5309), 2, + ACTIONS(5231), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6733), 2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5307), 21, + ACTIONS(5229), 21, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -358020,48 +341911,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138442] = 14, + [129816] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3724), 1, + STATE(3512), 1, sym_comment, - ACTIONS(6763), 2, + ACTIONS(6663), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6779), 2, + ACTIONS(6699), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6775), 4, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6777), 6, + ACTIONS(6679), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5297), 8, + ACTIONS(5247), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -358070,50 +341961,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138506] = 15, + [129880] = 13, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5355), 1, + ACTIONS(5354), 1, sym__newline, - ACTIONS(6731), 1, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6739), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - STATE(3725), 1, - sym_comment, - STATE(3750), 1, + STATE(3477), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + STATE(3513), 1, + sym_comment, + ACTIONS(6681), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, + ACTIONS(6697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, + ACTIONS(6689), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5255), 15, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + 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, + [129942] = 15, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5287), 1, + sym__newline, + ACTIONS(6683), 1, + anon_sym_DASH2, + ACTIONS(6695), 1, + anon_sym_PLUS2, + STATE(3514), 1, + sym_comment, + STATE(3585), 1, + aux_sym_shebang_repeat1, + ACTIONS(6681), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6749), 2, + ACTIONS(6687), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6691), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6693), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6697), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6707), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, + ACTIONS(6689), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6747), 6, + ACTIONS(6685), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5307), 7, + ACTIONS(5229), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -358121,50 +342061,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138572] = 15, + [130008] = 16, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(5354), 1, + sym__newline, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, + ACTIONS(6709), 1, anon_sym_bit_DASHand2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(3726), 1, + STATE(3515), 1, sym_comment, - ACTIONS(6763), 2, + STATE(3598), 1, + aux_sym_shebang_repeat1, + ACTIONS(6681), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, + ACTIONS(6707), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6689), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5255), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(6685), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [130076] = 15, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6665), 1, + anon_sym_DASH2, + ACTIONS(6675), 1, + anon_sym_PLUS2, + ACTIONS(6701), 1, + anon_sym_bit_DASHand2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(3516), 1, + sym_comment, + ACTIONS(6663), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6779), 2, + ACTIONS(6667), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6671), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6673), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6677), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6699), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6775), 4, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6777), 6, + ACTIONS(6679), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5297), 7, + ACTIONS(5247), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -358172,192 +342164,297 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138638] = 16, + [130142] = 16, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5355), 1, - sym__newline, - ACTIONS(6731), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6739), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, + ACTIONS(6701), 1, anon_sym_bit_DASHand2, - STATE(3727), 1, - sym_comment, - STATE(3751), 1, + ACTIONS(6703), 1, + anon_sym_bit_DASHxor2, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + STATE(3517), 1, + sym_comment, + ACTIONS(6663), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, + ACTIONS(6677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, + ACTIONS(6699), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5251), 6, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(6679), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [130210] = 16, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5287), 1, + sym__newline, + ACTIONS(6683), 1, + anon_sym_DASH2, + ACTIONS(6695), 1, + anon_sym_PLUS2, + ACTIONS(6709), 1, + anon_sym_bit_DASHand2, + STATE(3518), 1, + sym_comment, + STATE(3590), 1, + aux_sym_shebang_repeat1, + ACTIONS(6681), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6749), 2, + ACTIONS(6687), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6691), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6693), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6697), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6707), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, + ACTIONS(6689), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5307), 6, + ACTIONS(5229), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(6747), 6, + ACTIONS(6685), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [138706] = 16, + [130278] = 16, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, + ACTIONS(6701), 1, anon_sym_bit_DASHand2, - ACTIONS(6783), 1, + ACTIONS(6703), 1, anon_sym_bit_DASHxor2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3728), 1, + STATE(3519), 1, sym_comment, - ACTIONS(6763), 2, + ACTIONS(6663), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6779), 2, + ACTIONS(6699), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6775), 4, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5297), 6, + ACTIONS(5247), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(6777), 6, + ACTIONS(6679), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [138774] = 17, + [130346] = 17, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5355), 1, + ACTIONS(5287), 1, sym__newline, - ACTIONS(6731), 1, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6739), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, + ACTIONS(6709), 1, anon_sym_bit_DASHand2, - ACTIONS(6753), 1, + ACTIONS(6711), 1, anon_sym_bit_DASHxor2, - STATE(3729), 1, + STATE(3520), 1, sym_comment, - STATE(3752), 1, + STATE(3595), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6681), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, + ACTIONS(6697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, + ACTIONS(6707), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6689), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5229), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(6685), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [130416] = 17, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5354), 1, + sym__newline, + ACTIONS(6683), 1, + anon_sym_DASH2, + ACTIONS(6695), 1, + anon_sym_PLUS2, + ACTIONS(6709), 1, + anon_sym_bit_DASHand2, + ACTIONS(6711), 1, + anon_sym_bit_DASHxor2, + STATE(3521), 1, + sym_comment, + STATE(3586), 1, + aux_sym_shebang_repeat1, + ACTIONS(6681), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6749), 2, + ACTIONS(6687), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6691), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6693), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6697), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6707), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, + ACTIONS(6689), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5307), 5, + ACTIONS(5255), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(6747), 6, + ACTIONS(6685), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [138844] = 12, + [130486] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5376), 1, + ACTIONS(5338), 1, sym__newline, - ACTIONS(6731), 1, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6739), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - STATE(3730), 1, + STATE(3522), 1, sym_comment, - STATE(3753), 1, + STATE(3597), 1, aux_sym_shebang_repeat1, - ACTIONS(5271), 2, + ACTIONS(5223), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6733), 2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, + ACTIONS(6697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5269), 19, + ACTIONS(5221), 19, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -358377,29 +342474,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138904] = 9, + [130546] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6731), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6733), 1, + sym_filesize_unit, + ACTIONS(6735), 1, + sym_duration_unit, + STATE(3523), 1, + sym_comment, + ACTIONS(6729), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6727), 25, + 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_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [130596] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5376), 1, + ACTIONS(5338), 1, sym__newline, - STATE(3731), 1, - sym_comment, - STATE(3755), 1, + STATE(3480), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + STATE(3524), 1, + sym_comment, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5271), 3, + ACTIONS(5223), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5269), 22, + ACTIONS(5221), 22, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -358422,40 +342562,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [138958] = 13, + [130650] = 13, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5376), 1, + ACTIONS(5338), 1, sym__newline, - ACTIONS(6731), 1, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6739), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - STATE(3732), 1, - sym_comment, - STATE(3757), 1, + STATE(3498), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + STATE(3525), 1, + sym_comment, + ACTIONS(6681), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, + ACTIONS(6697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6745), 4, + ACTIONS(6689), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5269), 15, + ACTIONS(5221), 15, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -358471,25 +342611,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139020] = 7, + [130712] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5376), 1, + ACTIONS(5338), 1, sym__newline, - STATE(3733), 1, + STATE(3526), 1, sym_comment, - STATE(3759), 1, + STATE(3541), 1, aux_sym_shebang_repeat1, - ACTIONS(6735), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5271), 5, + ACTIONS(5223), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5269), 24, + ACTIONS(5221), 24, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -358514,249 +342654,503 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139070] = 18, + [130762] = 18, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5376), 1, + ACTIONS(5338), 1, sym__newline, - ACTIONS(6731), 1, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6739), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, + ACTIONS(6709), 1, anon_sym_bit_DASHand2, - ACTIONS(6753), 1, + ACTIONS(6711), 1, anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, + ACTIONS(6713), 1, anon_sym_bit_DASHor2, - STATE(3734), 1, + STATE(3527), 1, sym_comment, - STATE(3761), 1, + STATE(3552), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6681), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, + ACTIONS(6697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6749), 2, + ACTIONS(6707), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5269), 4, + ACTIONS(5221), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6745), 4, + ACTIONS(6689), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6747), 6, + ACTIONS(6685), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [139142] = 19, + [130834] = 19, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5376), 1, + ACTIONS(5338), 1, sym__newline, - ACTIONS(6731), 1, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6739), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, + ACTIONS(6709), 1, anon_sym_bit_DASHand2, - ACTIONS(6753), 1, + ACTIONS(6711), 1, anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, + ACTIONS(6713), 1, anon_sym_bit_DASHor2, - ACTIONS(6757), 1, + ACTIONS(6717), 1, anon_sym_and2, - STATE(3735), 1, + STATE(3528), 1, sym_comment, - STATE(3763), 1, + STATE(3571), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6681), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, + ACTIONS(6697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6749), 2, + ACTIONS(6707), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5269), 3, + ACTIONS(5221), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(6745), 4, + ACTIONS(6689), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6747), 6, + ACTIONS(6685), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [139216] = 20, + [130908] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(5351), 1, sym__newline, - ACTIONS(6731), 1, + STATE(3487), 1, + aux_sym_shebang_repeat1, + STATE(3529), 1, + sym_comment, + ACTIONS(6691), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5199), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5197), 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [130958] = 20, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6739), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, + ACTIONS(6709), 1, anon_sym_bit_DASHand2, - ACTIONS(6753), 1, + ACTIONS(6711), 1, anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, + ACTIONS(6713), 1, anon_sym_bit_DASHor2, - ACTIONS(6757), 1, + ACTIONS(6717), 1, anon_sym_and2, - ACTIONS(6759), 1, + ACTIONS(6721), 1, anon_sym_xor2, - STATE(3736), 1, + STATE(3530), 1, sym_comment, - STATE(3765), 1, + STATE(3574), 1, aux_sym_shebang_repeat1, - ACTIONS(5269), 2, + ACTIONS(5221), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(6733), 2, + ACTIONS(6681), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, + ACTIONS(6697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6749), 2, + ACTIONS(6707), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, + ACTIONS(6689), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6747), 6, + ACTIONS(6685), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [139292] = 14, + [131034] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5376), 1, + ACTIONS(5338), 1, sym__newline, - ACTIONS(6731), 1, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6739), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - STATE(3737), 1, + STATE(3478), 1, + aux_sym_shebang_repeat1, + STATE(3531), 1, sym_comment, - STATE(3767), 1, + ACTIONS(6681), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6687), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6691), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6693), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6697), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6689), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6685), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5221), 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, + [131098] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3532), 1, + sym_comment, + ACTIONS(1499), 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(1501), 26, + 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_has, + anon_sym_not_DASHhas, + 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, + [131142] = 11, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5338), 1, + sym__newline, + ACTIONS(6683), 1, + anon_sym_DASH2, + ACTIONS(6695), 1, + anon_sym_PLUS2, + STATE(3484), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + STATE(3533), 1, + sym_comment, + ACTIONS(5223), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6687), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6691), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6693), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5221), 21, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [131200] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6548), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6737), 1, + anon_sym_DOT, + STATE(3534), 1, + sym_comment, + ACTIONS(1701), 5, + anon_sym_GT2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6735), 2, + anon_sym_PLUS2, + ACTIONS(1703), 26, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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(6737), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [131248] = 15, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5338), 1, + sym__newline, + ACTIONS(6683), 1, + anon_sym_DASH2, + ACTIONS(6695), 1, + anon_sym_PLUS2, + STATE(3491), 1, + aux_sym_shebang_repeat1, + STATE(3535), 1, + sym_comment, + ACTIONS(6681), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6745), 4, + ACTIONS(6687), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6691), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6693), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6697), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6707), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6689), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6747), 6, + ACTIONS(6685), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5269), 9, + ACTIONS(5221), 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, + [131314] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(3536), 1, + sym_comment, + ACTIONS(1701), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1703), 27, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, - [139356] = 11, + [131358] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5376), 1, - sym__newline, - ACTIONS(6731), 1, - anon_sym_DASH2, - ACTIONS(6739), 1, - anon_sym_PLUS2, - STATE(3738), 1, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + STATE(3537), 1, sym_comment, - STATE(3769), 1, - aux_sym_shebang_repeat1, - ACTIONS(5271), 2, + ACTIONS(1805), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6733), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6735), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5269), 21, + anon_sym_PLUS2, + ACTIONS(1813), 26, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -358771,144 +343165,137 @@ 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, - [139414] = 15, + [131406] = 18, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5376), 1, + ACTIONS(5351), 1, sym__newline, - ACTIONS(6731), 1, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6739), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - STATE(3739), 1, - sym_comment, - STATE(3771), 1, + ACTIONS(6709), 1, + anon_sym_bit_DASHand2, + ACTIONS(6711), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6713), 1, + anon_sym_bit_DASHor2, + STATE(3494), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + STATE(3538), 1, + sym_comment, + ACTIONS(6681), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, + ACTIONS(6697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6749), 2, + ACTIONS(6707), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, + ACTIONS(5197), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6689), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6747), 6, + ACTIONS(6685), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5269), 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, - [139480] = 16, + [131478] = 16, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5376), 1, + ACTIONS(5338), 1, sym__newline, - ACTIONS(6731), 1, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6739), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, + ACTIONS(6709), 1, anon_sym_bit_DASHand2, - STATE(3740), 1, - sym_comment, - STATE(3773), 1, + STATE(3500), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + STATE(3539), 1, + sym_comment, + ACTIONS(6681), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, + ACTIONS(6697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6749), 2, + ACTIONS(6707), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, + ACTIONS(6689), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5269), 6, + ACTIONS(5221), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(6747), 6, + ACTIONS(6685), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [139548] = 11, + [131546] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, - anon_sym_DASH2, - ACTIONS(6769), 1, - anon_sym_PLUS2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(3741), 1, + STATE(3540), 1, sym_comment, - ACTIONS(5313), 2, + ACTIONS(1686), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6763), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6765), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5311), 20, - sym__newline, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1688), 27, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -358923,30 +343310,33 @@ 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, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139606] = 8, + [131590] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3742), 1, + STATE(3541), 1, sym_comment, - ACTIONS(6763), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5313), 3, + ACTIONS(5253), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5311), 23, + ACTIONS(5251), 25, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -358965,78 +343355,95 @@ 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, - [139658] = 12, + [131638] = 17, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(5338), 1, + sym__newline, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - STATE(1653), 1, + ACTIONS(6709), 1, + anon_sym_bit_DASHand2, + ACTIONS(6711), 1, + anon_sym_bit_DASHxor2, + STATE(3517), 1, aux_sym_shebang_repeat1, - STATE(3743), 1, + STATE(3542), 1, sym_comment, - ACTIONS(6763), 2, + ACTIONS(6681), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6775), 4, + ACTIONS(6707), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6689), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5311), 16, - sym__newline, - anon_sym_in2, + ACTIONS(5221), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(6685), 6, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, 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, - [139718] = 6, + [131708] = 12, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(3744), 1, + ACTIONS(5354), 1, + sym__newline, + ACTIONS(6683), 1, + anon_sym_DASH2, + ACTIONS(6695), 1, + anon_sym_PLUS2, + STATE(3543), 1, sym_comment, - ACTIONS(6765), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5313), 5, + STATE(3578), 1, + aux_sym_shebang_repeat1, + ACTIONS(5257), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6687), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5311), 25, - sym__newline, - anon_sym_DASH2, + ACTIONS(6691), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6693), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6697), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5255), 19, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -359053,248 +343460,493 @@ 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, - [139766] = 17, + [131768] = 20, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, + ACTIONS(6709), 1, anon_sym_bit_DASHand2, - ACTIONS(6783), 1, + ACTIONS(6711), 1, anon_sym_bit_DASHxor2, - ACTIONS(6785), 1, + ACTIONS(6713), 1, anon_sym_bit_DASHor2, - STATE(1653), 1, + ACTIONS(6717), 1, + anon_sym_and2, + ACTIONS(6721), 1, + anon_sym_xor2, + STATE(3504), 1, aux_sym_shebang_repeat1, - STATE(3745), 1, + STATE(3544), 1, sym_comment, - ACTIONS(6763), 2, + ACTIONS(5197), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6681), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6779), 2, + ACTIONS(6707), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6775), 4, + ACTIONS(6689), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5311), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6777), 6, + ACTIONS(6685), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [139836] = 18, + [131844] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(5351), 1, + sym__newline, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, - anon_sym_bit_DASHand2, - ACTIONS(6783), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6785), 1, - anon_sym_bit_DASHor2, - ACTIONS(6787), 1, - anon_sym_and2, - STATE(1653), 1, + STATE(3506), 1, aux_sym_shebang_repeat1, - STATE(3746), 1, + STATE(3545), 1, sym_comment, - ACTIONS(6763), 2, + ACTIONS(6681), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6779), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5311), 4, - sym__newline, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6775), 4, + ACTIONS(6689), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6777), 6, + ACTIONS(6685), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [139908] = 19, + ACTIONS(5197), 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, + [131908] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(5351), 1, + sym__newline, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, - anon_sym_bit_DASHand2, - ACTIONS(6783), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6785), 1, - anon_sym_bit_DASHor2, - ACTIONS(6787), 1, - anon_sym_and2, - ACTIONS(6789), 1, - anon_sym_xor2, - STATE(1653), 1, + STATE(3510), 1, aux_sym_shebang_repeat1, - STATE(3747), 1, + STATE(3546), 1, sym_comment, - ACTIONS(6763), 2, + ACTIONS(5199), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, + ACTIONS(5197), 21, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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(6773), 2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [131966] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1477), 1, + aux_sym_unquoted_token2, + ACTIONS(2140), 1, + anon_sym_LPAREN2, + STATE(3547), 1, + sym_comment, + ACTIONS(2138), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(6779), 2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2142), 26, + 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_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + 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(5311), 3, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [132014] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3548), 1, + sym_comment, + ACTIONS(1491), 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(1493), 26, + 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_has, + anon_sym_not_DASHhas, + 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, + [132058] = 7, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5354), 1, sym__newline, + STATE(3549), 1, + sym_comment, + STATE(3587), 1, + aux_sym_shebang_repeat1, + ACTIONS(6691), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5257), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5255), 24, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - ACTIONS(6775), 4, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + 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(6777), 6, + 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, + [132108] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2078), 1, + anon_sym_LPAREN2, + STATE(3550), 1, + sym_comment, + ACTIONS(2076), 32, + 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_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [139982] = 13, + 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, + [132152] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6743), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6745), 1, + sym_filesize_unit, + ACTIONS(6747), 1, + sym_duration_unit, + STATE(3551), 1, + sym_comment, + ACTIONS(6741), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6739), 25, + 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_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [132202] = 17, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - STATE(1653), 1, + ACTIONS(6701), 1, + anon_sym_bit_DASHand2, + ACTIONS(6703), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6705), 1, + anon_sym_bit_DASHor2, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3748), 1, + STATE(3552), 1, sym_comment, - ACTIONS(6763), 2, + ACTIONS(6663), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6775), 4, + ACTIONS(6699), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6777), 6, + ACTIONS(5251), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6679), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5311), 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, - [140044] = 10, + [132272] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6753), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6755), 1, + sym_filesize_unit, + ACTIONS(6757), 1, + sym_duration_unit, + STATE(3553), 1, + sym_comment, + ACTIONS(6751), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6749), 25, + 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_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [132322] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3749), 1, + STATE(3554), 1, sym_comment, - ACTIONS(5313), 2, + ACTIONS(5249), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6763), 2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5311), 22, + ACTIONS(6677), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5247), 20, sym__newline, anon_sym_in2, anon_sym_LBRACE, @@ -359312,194 +343964,222 @@ 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, - [140100] = 14, + [132380] = 18, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(5354), 1, + sym__newline, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(3750), 1, + ACTIONS(6709), 1, + anon_sym_bit_DASHand2, + ACTIONS(6711), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6713), 1, + anon_sym_bit_DASHor2, + STATE(3555), 1, sym_comment, - ACTIONS(6763), 2, + STATE(3588), 1, + aux_sym_shebang_repeat1, + ACTIONS(6681), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6779), 2, + ACTIONS(6707), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6775), 4, + ACTIONS(5255), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6689), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6777), 6, + ACTIONS(6685), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5311), 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, - [140164] = 15, + [132452] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(5351), 1, + sym__newline, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, - anon_sym_bit_DASHand2, - STATE(1653), 1, + STATE(3512), 1, aux_sym_shebang_repeat1, - STATE(3751), 1, + STATE(3556), 1, sym_comment, - ACTIONS(6763), 2, + ACTIONS(6681), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6779), 2, + ACTIONS(6707), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6775), 4, + ACTIONS(6689), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6777), 6, + ACTIONS(6685), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5311), 7, - sym__newline, + ACTIONS(5197), 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, - [140230] = 16, + [132518] = 16, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(5351), 1, + sym__newline, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, + ACTIONS(6709), 1, anon_sym_bit_DASHand2, - ACTIONS(6783), 1, - anon_sym_bit_DASHxor2, - STATE(1653), 1, + STATE(3516), 1, aux_sym_shebang_repeat1, - STATE(3752), 1, + STATE(3557), 1, sym_comment, - ACTIONS(6763), 2, + ACTIONS(6681), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6779), 2, + ACTIONS(6707), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6775), 4, + ACTIONS(6689), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5311), 6, - sym__newline, + ACTIONS(5197), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(6777), 6, + ACTIONS(6685), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [140298] = 11, + [132586] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3558), 1, + sym_comment, + ACTIONS(1579), 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(1581), 26, + 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_has, + anon_sym_not_DASHhas, + 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, + [132630] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, - anon_sym_DASH2, - ACTIONS(6769), 1, - anon_sym_PLUS2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(3753), 1, + STATE(3559), 1, sym_comment, - ACTIONS(5263), 2, + ACTIONS(1760), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6763), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6765), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5261), 20, - sym__newline, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1762), 27, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -359514,40 +344194,35 @@ 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, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140356] = 12, + [132674] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5404), 1, - sym__newline, - ACTIONS(6731), 1, - anon_sym_DASH2, - ACTIONS(6739), 1, - anon_sym_PLUS2, - STATE(3754), 1, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + STATE(3560), 1, sym_comment, - STATE(3777), 1, - aux_sym_shebang_repeat1, - ACTIONS(5267), 2, + ACTIONS(2134), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6733), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6735), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5265), 19, + anon_sym_PLUS2, + ACTIONS(2136), 26, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -359562,34 +344237,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, - [140416] = 8, + [132722] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(3755), 1, + STATE(3561), 1, sym_comment, - ACTIONS(6763), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6765), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5263), 3, + ACTIONS(1797), 6, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5261), 23, - sym__newline, + aux_sym_unquoted_token2, + ACTIONS(1799), 27, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -359604,37 +344276,131 @@ 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, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140468] = 9, + [132766] = 17, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5404), 1, + ACTIONS(5351), 1, sym__newline, - STATE(3756), 1, - sym_comment, - STATE(3778), 1, + ACTIONS(6683), 1, + anon_sym_DASH2, + ACTIONS(6695), 1, + anon_sym_PLUS2, + ACTIONS(6709), 1, + anon_sym_bit_DASHand2, + ACTIONS(6711), 1, + anon_sym_bit_DASHxor2, + STATE(3519), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + STATE(3562), 1, + sym_comment, + ACTIONS(6681), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5267), 3, + ACTIONS(6697), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6707), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6689), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5197), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(6685), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [132836] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6763), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6765), 1, + sym_filesize_unit, + ACTIONS(6767), 1, + sym_duration_unit, + STATE(3563), 1, + sym_comment, + ACTIONS(6761), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6759), 25, + 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_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [132886] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(2146), 1, + anon_sym_LPAREN2, + ACTIONS(2150), 1, + aux_sym_unquoted_token2, + STATE(3564), 1, + sym_comment, + ACTIONS(2144), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5265), 22, + ACTIONS(2148), 26, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -359649,43 +344415,42 @@ 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, - [140522] = 12, + [132934] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3757), 1, + STATE(3565), 1, sym_comment, - ACTIONS(6763), 2, + ACTIONS(5243), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6775), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5261), 16, + ACTIONS(5241), 20, sym__newline, anon_sym_in2, anon_sym_LBRACE, @@ -359697,45 +344462,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_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, - [140582] = 13, + [132992] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5404), 1, - sym__newline, - ACTIONS(6731), 1, - anon_sym_DASH2, - ACTIONS(6739), 1, - anon_sym_PLUS2, - STATE(3758), 1, - sym_comment, - STATE(3779), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + STATE(3566), 1, + sym_comment, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, + ACTIONS(5243), 3, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6745), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5265), 15, + anon_sym_PLUS2, + ACTIONS(5241), 23, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -359746,30 +344504,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_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, - [140644] = 6, + [133044] = 12, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + ACTIONS(6665), 1, + anon_sym_DASH2, + ACTIONS(6675), 1, + anon_sym_PLUS2, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3759), 1, + STATE(3567), 1, sym_comment, - ACTIONS(6765), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5263), 5, + ACTIONS(6663), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6667), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5261), 25, + ACTIONS(6671), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6673), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6677), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5241), 16, sym__newline, - anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -359780,38 +344558,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_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, - [140692] = 7, + [133104] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5404), 1, - sym__newline, - STATE(3760), 1, - sym_comment, - STATE(3780), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(6735), 2, + STATE(3568), 1, + sym_comment, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5267), 5, + ACTIONS(5243), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5265), 24, + ACTIONS(5241), 25, + sym__newline, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -359836,457 +344605,529 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140742] = 17, + [133152] = 17, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, + ACTIONS(6701), 1, anon_sym_bit_DASHand2, - ACTIONS(6783), 1, + ACTIONS(6703), 1, anon_sym_bit_DASHxor2, - ACTIONS(6785), 1, + ACTIONS(6705), 1, anon_sym_bit_DASHor2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3761), 1, + STATE(3569), 1, sym_comment, - ACTIONS(6763), 2, + ACTIONS(6663), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6779), 2, + ACTIONS(6699), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6775), 4, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5261), 5, + ACTIONS(5241), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6777), 6, + ACTIONS(6679), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [140812] = 18, - ACTIONS(245), 1, + [133222] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5404), 1, - sym__newline, - ACTIONS(6731), 1, - anon_sym_DASH2, - ACTIONS(6739), 1, - anon_sym_PLUS2, - ACTIONS(6751), 1, - anon_sym_bit_DASHand2, - ACTIONS(6753), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, - anon_sym_bit_DASHor2, - STATE(3762), 1, + ACTIONS(2104), 1, + anon_sym_LPAREN2, + ACTIONS(2106), 1, + aux_sym_unquoted_token4, + STATE(3570), 1, sym_comment, - STATE(3781), 1, - aux_sym_shebang_repeat1, - ACTIONS(6733), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6735), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, + ACTIONS(998), 31, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6749), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5265), 4, - anon_sym_LBRACE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6745), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6747), 6, - anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [140884] = 18, + 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, + [133268] = 18, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, + ACTIONS(6701), 1, anon_sym_bit_DASHand2, - ACTIONS(6783), 1, + ACTIONS(6703), 1, anon_sym_bit_DASHxor2, - ACTIONS(6785), 1, + ACTIONS(6705), 1, anon_sym_bit_DASHor2, - ACTIONS(6787), 1, + ACTIONS(6715), 1, anon_sym_and2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3763), 1, + STATE(3571), 1, sym_comment, - ACTIONS(6763), 2, + ACTIONS(6663), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6779), 2, + ACTIONS(6699), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5261), 4, + ACTIONS(5251), 4, sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(6775), 4, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6777), 6, + ACTIONS(6679), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [140956] = 19, + [133340] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2572), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6769), 1, + sym_filesize_unit, + ACTIONS(6771), 1, + sym_duration_unit, + STATE(3572), 1, + sym_comment, + ACTIONS(2570), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2568), 25, + 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_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [133390] = 19, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5404), 1, + ACTIONS(5354), 1, sym__newline, - ACTIONS(6731), 1, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6739), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, + ACTIONS(6709), 1, anon_sym_bit_DASHand2, - ACTIONS(6753), 1, + ACTIONS(6711), 1, anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, + ACTIONS(6713), 1, anon_sym_bit_DASHor2, - ACTIONS(6757), 1, + ACTIONS(6717), 1, anon_sym_and2, - STATE(3764), 1, + STATE(3573), 1, sym_comment, - STATE(3782), 1, + STATE(3589), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + ACTIONS(6681), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, + ACTIONS(6697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6749), 2, + ACTIONS(6707), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5265), 3, + ACTIONS(5255), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(6745), 4, + ACTIONS(6689), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6747), 6, + ACTIONS(6685), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [141030] = 19, + [133464] = 19, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, + ACTIONS(6701), 1, anon_sym_bit_DASHand2, - ACTIONS(6783), 1, + ACTIONS(6703), 1, anon_sym_bit_DASHxor2, - ACTIONS(6785), 1, + ACTIONS(6705), 1, anon_sym_bit_DASHor2, - ACTIONS(6787), 1, + ACTIONS(6715), 1, anon_sym_and2, - ACTIONS(6789), 1, + ACTIONS(6719), 1, anon_sym_xor2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3765), 1, + STATE(3574), 1, sym_comment, - ACTIONS(6763), 2, + ACTIONS(6663), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6779), 2, + ACTIONS(6699), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5261), 3, + ACTIONS(5251), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(6775), 4, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6777), 6, + ACTIONS(6679), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [133538] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + STATE(3575), 1, + sym_comment, + ACTIONS(1782), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1790), 26, + 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_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [141104] = 20, + anon_sym_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, + [133586] = 20, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(6731), 1, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6739), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, + ACTIONS(6709), 1, anon_sym_bit_DASHand2, - ACTIONS(6753), 1, + ACTIONS(6711), 1, anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, + ACTIONS(6713), 1, anon_sym_bit_DASHor2, - ACTIONS(6757), 1, + ACTIONS(6717), 1, anon_sym_and2, - ACTIONS(6759), 1, + ACTIONS(6721), 1, anon_sym_xor2, - STATE(3766), 1, + STATE(3576), 1, sym_comment, - STATE(3783), 1, + STATE(3591), 1, aux_sym_shebang_repeat1, - ACTIONS(5265), 2, + ACTIONS(5255), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(6733), 2, + ACTIONS(6681), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, + ACTIONS(6697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6749), 2, + ACTIONS(6707), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, + ACTIONS(6689), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6747), 6, + ACTIONS(6685), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [141180] = 13, + [133662] = 18, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - STATE(1653), 1, + ACTIONS(6701), 1, + anon_sym_bit_DASHand2, + ACTIONS(6703), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6705), 1, + anon_sym_bit_DASHor2, + ACTIONS(6715), 1, + anon_sym_and2, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3767), 1, + STATE(3577), 1, sym_comment, - ACTIONS(6763), 2, + ACTIONS(6663), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6775), 4, + ACTIONS(6699), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5241), 4, + sym__newline, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6777), 6, + ACTIONS(6679), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5261), 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, - [141242] = 14, + [133734] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5404), 1, - sym__newline, - ACTIONS(6731), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6739), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - STATE(3768), 1, - sym_comment, - STATE(3784), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + STATE(3578), 1, + sym_comment, + ACTIONS(5227), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, + ACTIONS(6677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6745), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6747), 6, + ACTIONS(5225), 20, + sym__newline, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5265), 9, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_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, - [141306] = 10, + [133792] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, - anon_sym_DASH2, - ACTIONS(6769), 1, - anon_sym_PLUS2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3769), 1, + STATE(3579), 1, sym_comment, - ACTIONS(5263), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6763), 2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5261), 22, + ACTIONS(5227), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5225), 23, sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -360308,32 +345149,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [141362] = 11, + [133844] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6777), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6779), 1, + sym_filesize_unit, + ACTIONS(6781), 1, + sym_duration_unit, + STATE(3580), 1, + sym_comment, + ACTIONS(6775), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6773), 25, + 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_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [133894] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5404), 1, - sym__newline, - ACTIONS(6731), 1, - anon_sym_DASH2, - ACTIONS(6739), 1, - anon_sym_PLUS2, - STATE(3770), 1, + ACTIONS(4672), 1, + aux_sym_unquoted_token2, + STATE(3581), 1, sym_comment, - STATE(3785), 1, - aux_sym_shebang_repeat1, - ACTIONS(5267), 2, + ACTIONS(1616), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6733), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6735), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5265), 21, + anon_sym_PLUS2, + ACTIONS(1628), 27, + sym__newline, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -360350,388 +345224,284 @@ 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, - [141420] = 14, + [133940] = 19, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - STATE(1653), 1, + ACTIONS(6701), 1, + anon_sym_bit_DASHand2, + ACTIONS(6703), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6705), 1, + anon_sym_bit_DASHor2, + ACTIONS(6715), 1, + anon_sym_and2, + ACTIONS(6719), 1, + anon_sym_xor2, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3771), 1, + STATE(3582), 1, sym_comment, - ACTIONS(6763), 2, + ACTIONS(6663), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6779), 2, + ACTIONS(6699), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6775), 4, + ACTIONS(5241), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6777), 6, + ACTIONS(6679), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5261), 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, - [141484] = 15, + [134014] = 13, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5404), 1, - sym__newline, - ACTIONS(6731), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6739), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - STATE(3772), 1, - sym_comment, - STATE(3786), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + STATE(3583), 1, + sym_comment, + ACTIONS(6663), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, + ACTIONS(6677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6749), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6747), 6, + ACTIONS(6679), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5265), 7, + ACTIONS(5241), 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, - [141550] = 15, + [134076] = 10, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, - anon_sym_bit_DASHand2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3773), 1, + STATE(3584), 1, sym_comment, - ACTIONS(6763), 2, + ACTIONS(5243), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6779), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6775), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6777), 6, + ACTIONS(5241), 22, + sym__newline, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5261), 7, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_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, - [141616] = 16, + [134132] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5404), 1, - sym__newline, - ACTIONS(6731), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6739), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, - anon_sym_bit_DASHand2, - STATE(3774), 1, - sym_comment, - STATE(3787), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + STATE(3585), 1, + sym_comment, + ACTIONS(6663), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, + ACTIONS(6677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6749), 2, + ACTIONS(6699), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5265), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(6747), 6, + ACTIONS(6679), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [141684] = 16, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6761), 1, - anon_sym_DASH2, - ACTIONS(6769), 1, - anon_sym_PLUS2, - ACTIONS(6781), 1, - anon_sym_bit_DASHand2, - ACTIONS(6783), 1, - anon_sym_bit_DASHxor2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(3775), 1, - sym_comment, - ACTIONS(6763), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6765), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6779), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6775), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5261), 6, + ACTIONS(5241), 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, - ACTIONS(6777), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [141752] = 17, + [134196] = 16, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5404), 1, - sym__newline, - ACTIONS(6731), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6739), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, + ACTIONS(6701), 1, anon_sym_bit_DASHand2, - ACTIONS(6753), 1, + ACTIONS(6703), 1, anon_sym_bit_DASHxor2, - STATE(3776), 1, - sym_comment, - STATE(3788), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + STATE(3586), 1, + sym_comment, + ACTIONS(6663), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, + ACTIONS(6677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6749), 2, + ACTIONS(6699), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5265), 5, + ACTIONS(5225), 6, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(6747), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [141822] = 11, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6761), 1, - anon_sym_DASH2, - ACTIONS(6769), 1, - anon_sym_PLUS2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(3777), 1, - sym_comment, - ACTIONS(5303), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6763), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6765), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5301), 20, - sym__newline, + ACTIONS(6679), 6, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_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, - [141880] = 8, + [134264] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3778), 1, + STATE(3587), 1, sym_comment, - ACTIONS(6763), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5303), 3, + ACTIONS(5227), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5301), 23, + ACTIONS(5225), 25, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -360750,302 +345520,265 @@ 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, - [141932] = 12, + [134312] = 17, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - STATE(1653), 1, + ACTIONS(6701), 1, + anon_sym_bit_DASHand2, + ACTIONS(6703), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6705), 1, + anon_sym_bit_DASHor2, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3779), 1, + STATE(3588), 1, sym_comment, - ACTIONS(6763), 2, + ACTIONS(6663), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6775), 4, + ACTIONS(6699), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5301), 16, + ACTIONS(5225), 5, sym__newline, - anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - 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, - [141992] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(3780), 1, - sym_comment, - ACTIONS(6765), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5303), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5301), 25, - sym__newline, - anon_sym_DASH2, + ACTIONS(6679), 6, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_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, - [142040] = 17, + [134382] = 18, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, + ACTIONS(6701), 1, anon_sym_bit_DASHand2, - ACTIONS(6783), 1, + ACTIONS(6703), 1, anon_sym_bit_DASHxor2, - ACTIONS(6785), 1, + ACTIONS(6705), 1, anon_sym_bit_DASHor2, - STATE(1653), 1, + ACTIONS(6715), 1, + anon_sym_and2, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3781), 1, + STATE(3589), 1, sym_comment, - ACTIONS(6763), 2, + ACTIONS(6663), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6779), 2, + ACTIONS(6699), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6775), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5301), 5, + ACTIONS(5225), 4, sym__newline, anon_sym_LBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6777), 6, + ACTIONS(6669), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6679), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [142110] = 18, + [134454] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, + ACTIONS(6701), 1, anon_sym_bit_DASHand2, - ACTIONS(6783), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6785), 1, - anon_sym_bit_DASHor2, - ACTIONS(6787), 1, - anon_sym_and2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3782), 1, + STATE(3590), 1, sym_comment, - ACTIONS(6763), 2, + ACTIONS(6663), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6779), 2, + ACTIONS(6699), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5301), 4, - sym__newline, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6775), 4, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6777), 6, + ACTIONS(6679), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [142182] = 19, + ACTIONS(5241), 7, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [134520] = 19, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, + ACTIONS(6701), 1, anon_sym_bit_DASHand2, - ACTIONS(6783), 1, + ACTIONS(6703), 1, anon_sym_bit_DASHxor2, - ACTIONS(6785), 1, + ACTIONS(6705), 1, anon_sym_bit_DASHor2, - ACTIONS(6787), 1, + ACTIONS(6715), 1, anon_sym_and2, - ACTIONS(6789), 1, + ACTIONS(6719), 1, anon_sym_xor2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3783), 1, + STATE(3591), 1, sym_comment, - ACTIONS(6763), 2, + ACTIONS(6663), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6779), 2, + ACTIONS(6699), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5301), 3, + ACTIONS(5225), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(6775), 4, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6777), 6, + ACTIONS(6679), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [142256] = 13, + [134594] = 13, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3784), 1, + STATE(3592), 1, sym_comment, - ACTIONS(6763), 2, + ACTIONS(6663), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6775), 4, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6777), 6, + ACTIONS(6679), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5301), 10, + ACTIONS(5225), 10, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -361056,30 +345789,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142318] = 10, + [134656] = 10, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3785), 1, + STATE(3593), 1, sym_comment, - ACTIONS(5303), 2, + ACTIONS(5227), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6763), 2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5301), 22, + ACTIONS(5225), 22, sym__newline, anon_sym_in2, anon_sym_LBRACE, @@ -361102,638 +345835,381 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [142374] = 14, + [134712] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(5287), 1, + sym__newline, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - STATE(1653), 1, + STATE(3565), 1, aux_sym_shebang_repeat1, - STATE(3786), 1, + STATE(3594), 1, sym_comment, - ACTIONS(6763), 2, + ACTIONS(5231), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, + ACTIONS(5229), 19, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_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, + [134772] = 16, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6665), 1, + anon_sym_DASH2, + ACTIONS(6675), 1, + anon_sym_PLUS2, + ACTIONS(6701), 1, + anon_sym_bit_DASHand2, + ACTIONS(6703), 1, + anon_sym_bit_DASHxor2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(3595), 1, + sym_comment, + ACTIONS(6663), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6779), 2, + ACTIONS(6667), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6671), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6673), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6677), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6699), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6775), 4, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6777), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5301), 8, + ACTIONS(5241), 6, 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, - [142438] = 15, + ACTIONS(6679), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [134840] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, - anon_sym_bit_DASHand2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3787), 1, + STATE(3596), 1, sym_comment, - ACTIONS(6763), 2, + ACTIONS(6663), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6779), 2, + ACTIONS(6699), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6775), 4, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6777), 6, + ACTIONS(6679), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5301), 7, + ACTIONS(5225), 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, - [142504] = 16, + [134904] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6761), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, - anon_sym_bit_DASHand2, - ACTIONS(6783), 1, - anon_sym_bit_DASHxor2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3788), 1, + STATE(3597), 1, sym_comment, - ACTIONS(6763), 2, + ACTIONS(5253), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, + ACTIONS(6677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6779), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6775), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5301), 6, + ACTIONS(5251), 20, sym__newline, + anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(6777), 6, - anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [142572] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6795), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6797), 1, - sym_filesize_unit, - ACTIONS(6799), 1, - sym_duration_unit, - STATE(3789), 1, - sym_comment, - ACTIONS(6793), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6791), 25, - 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_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [142622] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6805), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6807), 1, - sym_filesize_unit, - ACTIONS(6809), 1, - sym_duration_unit, - STATE(3790), 1, - sym_comment, - ACTIONS(6803), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6801), 25, - 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_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [142672] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3791), 1, - sym_comment, - ACTIONS(1538), 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(1540), 26, - 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_has, - anon_sym_not_DASHhas, - 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, - [142716] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2562), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6811), 1, - sym_filesize_unit, - ACTIONS(6813), 1, - sym_duration_unit, - STATE(3792), 1, - sym_comment, - ACTIONS(2560), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2558), 25, - 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_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [142766] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6819), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6821), 1, - sym_filesize_unit, - ACTIONS(6823), 1, - sym_duration_unit, - STATE(3793), 1, - sym_comment, - ACTIONS(6817), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6815), 25, - 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_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [142816] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2576), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6825), 1, - sym_filesize_unit, - ACTIONS(6827), 1, - sym_duration_unit, - STATE(3794), 1, - sym_comment, - ACTIONS(2574), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2572), 25, - 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_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [142866] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6833), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6835), 1, - sym_filesize_unit, - ACTIONS(6837), 1, - sym_duration_unit, - STATE(3795), 1, - sym_comment, - ACTIONS(6831), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6829), 25, - 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_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [142916] = 17, + anon_sym_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, + [134962] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5376), 1, - sym__newline, - ACTIONS(6731), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6739), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, + ACTIONS(6701), 1, anon_sym_bit_DASHand2, - ACTIONS(6753), 1, - anon_sym_bit_DASHxor2, - STATE(3775), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3796), 1, + STATE(3598), 1, sym_comment, - ACTIONS(6733), 2, + ACTIONS(6663), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, + ACTIONS(6677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6749), 2, + ACTIONS(6699), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5269), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(6747), 6, + ACTIONS(6679), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [142986] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3797), 1, - sym_comment, - ACTIONS(962), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(964), 29, - anon_sym_EQ, + ACTIONS(5225), 7, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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_DOLLAR, - anon_sym_GT2, - 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_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [143029] = 5, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [135028] = 19, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4715), 1, - aux_sym_unquoted_token2, - STATE(3798), 1, + ACTIONS(5351), 1, + sym__newline, + ACTIONS(6683), 1, + anon_sym_DASH2, + ACTIONS(6695), 1, + anon_sym_PLUS2, + ACTIONS(6709), 1, + anon_sym_bit_DASHand2, + ACTIONS(6711), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6713), 1, + anon_sym_bit_DASHor2, + ACTIONS(6717), 1, + anon_sym_and2, + STATE(3499), 1, + aux_sym_shebang_repeat1, + STATE(3599), 1, sym_comment, - ACTIONS(1579), 5, + ACTIONS(6681), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6687), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1591), 26, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, + ACTIONS(6691), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6693), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6697), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6707), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5197), 3, + anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, + ACTIONS(6689), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6685), 6, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_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, - [143074] = 4, + [135102] = 27, + ACTIONS(223), 1, + aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, - STATE(3799), 1, - sym_comment, - ACTIONS(954), 3, + ACTIONS(375), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(956), 29, - anon_sym_EQ, + ACTIONS(3338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3448), 1, + aux_sym_expr_unary_token1, + ACTIONS(6783), 1, + sym_identifier, + ACTIONS(6785), 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, + ACTIONS(6787), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(6789), 1, anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_in2, + ACTIONS(6791), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [143117] = 4, + ACTIONS(6793), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6795), 1, + aux_sym__val_number_decimal_token2, + STATE(1499), 1, + sym__val_number, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, + sym__expr_unary_minus, + STATE(3600), 1, + sym_comment, + STATE(3670), 1, + sym_expr_parenthesized, + STATE(3763), 1, + aux_sym_shebang_repeat1, + STATE(3868), 1, + sym_val_number, + STATE(4207), 1, + sym__binary_predicate_parenthesized, + STATE(4211), 1, + sym__predicate, + STATE(4591), 1, + sym_val_closure, + ACTIONS(211), 2, + anon_sym_true, + anon_sym_false, + STATE(4183), 2, + sym_expr_unary, + sym_val_bool, + STATE(4357), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(225), 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, + [135191] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3800), 1, + STATE(3601), 1, sym_comment, - ACTIONS(966), 3, + ACTIONS(942), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(968), 29, + ACTIONS(944), 29, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -361763,16 +346239,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [143160] = 4, + [135234] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3801), 1, + STATE(3602), 1, sym_comment, - ACTIONS(958), 3, + ACTIONS(950), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(960), 29, + ACTIONS(952), 29, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -361802,60 +346278,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [143203] = 27, + [135277] = 27, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(375), 1, anon_sym_DASH2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6841), 1, + ACTIONS(6785), 1, sym__newline, - ACTIONS(6843), 1, + ACTIONS(6787), 1, anon_sym_LPAREN, - ACTIONS(6845), 1, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6847), 1, + ACTIONS(6791), 1, anon_sym_LBRACE, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2104), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3802), 1, - sym_comment, - STATE(3805), 1, + STATE(3600), 1, aux_sym_shebang_repeat1, - STATE(3855), 1, + STATE(3603), 1, + sym_comment, + STATE(3670), 1, sym_expr_parenthesized, - STATE(4086), 1, + STATE(3868), 1, sym_val_number, - STATE(4364), 1, - sym__binary_predicate_parenthesized, - STATE(4365), 1, + STATE(4043), 1, sym__predicate, - STATE(4894), 1, + STATE(4071), 1, + sym__binary_predicate_parenthesized, + STATE(4625), 1, sym_val_closure, ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4394), 2, + STATE(4183), 2, sym_expr_unary, sym_val_bool, - STATE(4573), 2, + STATE(4357), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -361864,590 +346340,520 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [143292] = 20, + [135366] = 20, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(5358), 1, + ACTIONS(6298), 1, anon_sym_DASH2, - ACTIONS(5366), 1, + ACTIONS(6306), 1, anon_sym_PLUS2, - ACTIONS(5394), 1, + ACTIONS(6330), 1, anon_sym_bit_DASHand2, - ACTIONS(5407), 1, + ACTIONS(6334), 1, anon_sym_bit_DASHxor2, - ACTIONS(5409), 1, + ACTIONS(6336), 1, anon_sym_bit_DASHor2, - ACTIONS(5415), 1, + ACTIONS(6338), 1, anon_sym_and2, - ACTIONS(5417), 1, + ACTIONS(6340), 1, anon_sym_xor2, - ACTIONS(6853), 1, + ACTIONS(6797), 1, anon_sym_or2, - STATE(3803), 1, + STATE(3604), 1, sym_comment, - STATE(3806), 1, + STATE(3606), 1, aux_sym_shebang_repeat1, - ACTIONS(5360), 2, + ACTIONS(6300), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5362), 2, + ACTIONS(6302), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5364), 2, + ACTIONS(6304), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5368), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5374), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5392), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5372), 4, + ACTIONS(6326), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6322), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5370), 6, + ACTIONS(6320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [143367] = 20, + [135441] = 20, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(6344), 1, + ACTIONS(6683), 1, anon_sym_DASH2, - ACTIONS(6352), 1, + ACTIONS(6695), 1, anon_sym_PLUS2, - ACTIONS(6394), 1, + ACTIONS(6709), 1, anon_sym_bit_DASHand2, - ACTIONS(6396), 1, + ACTIONS(6711), 1, anon_sym_bit_DASHxor2, - ACTIONS(6398), 1, + ACTIONS(6713), 1, anon_sym_bit_DASHor2, - ACTIONS(6400), 1, + ACTIONS(6717), 1, anon_sym_and2, - ACTIONS(6402), 1, + ACTIONS(6721), 1, anon_sym_xor2, - ACTIONS(6855), 1, + ACTIONS(6799), 1, anon_sym_or2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(3804), 1, + STATE(3605), 1, sym_comment, - ACTIONS(6346), 2, + STATE(3608), 1, + aux_sym_shebang_repeat1, + ACTIONS(6681), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6687), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6348), 2, + ACTIONS(6691), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6350), 2, + ACTIONS(6693), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6384), 2, + ACTIONS(6697), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6386), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6392), 2, + ACTIONS(6707), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6388), 4, + ACTIONS(6689), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6390), 6, + ACTIONS(6685), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [143442] = 27, - ACTIONS(223), 1, - aux_sym__val_number_token5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(375), 1, - anon_sym_DASH2, - ACTIONS(3426), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, - aux_sym_expr_unary_token1, - ACTIONS(6839), 1, - sym_identifier, - ACTIONS(6841), 1, - sym__newline, - ACTIONS(6843), 1, - anon_sym_LPAREN, - ACTIONS(6845), 1, - anon_sym_DOLLAR, - ACTIONS(6847), 1, - anon_sym_LBRACE, - ACTIONS(6849), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, - aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, - sym__val_number, - STATE(2104), 1, - sym__expr_unary_minus, - STATE(3805), 1, - sym_comment, - STATE(3855), 1, - sym_expr_parenthesized, - STATE(3966), 1, - aux_sym_shebang_repeat1, - STATE(4086), 1, - sym_val_number, - STATE(4321), 1, - sym__binary_predicate_parenthesized, - STATE(4324), 1, - sym__predicate, - STATE(4836), 1, - sym_val_closure, - ACTIONS(211), 2, - anon_sym_true, - anon_sym_false, - STATE(4394), 2, - sym_expr_unary, - sym_val_bool, - STATE(4573), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(225), 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, - [143531] = 20, + [135516] = 20, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(5317), 1, + ACTIONS(6288), 1, anon_sym_DASH2, - ACTIONS(5329), 1, + ACTIONS(6296), 1, anon_sym_PLUS2, - ACTIONS(5383), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHand2, - ACTIONS(5385), 1, + ACTIONS(6332), 1, anon_sym_bit_DASHxor2, - ACTIONS(5387), 1, + ACTIONS(6342), 1, anon_sym_bit_DASHor2, - ACTIONS(5411), 1, + ACTIONS(6344), 1, anon_sym_and2, - ACTIONS(5413), 1, + ACTIONS(6346), 1, anon_sym_xor2, - ACTIONS(6857), 1, + ACTIONS(6801), 1, anon_sym_or2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3806), 1, + STATE(3606), 1, sym_comment, - ACTIONS(5315), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5321), 2, + ACTIONS(6290), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5325), 2, + ACTIONS(6292), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5327), 2, + ACTIONS(6294), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5331), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5381), 2, + ACTIONS(6308), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6314), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5323), 4, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6312), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5319), 6, + ACTIONS(6310), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [135591] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(4672), 1, + aux_sym_unquoted_token2, + STATE(3607), 1, + sym_comment, + ACTIONS(1616), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1628), 26, + 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_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [143606] = 20, + anon_sym_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, + [135636] = 20, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(6731), 1, + ACTIONS(6665), 1, anon_sym_DASH2, - ACTIONS(6739), 1, + ACTIONS(6675), 1, anon_sym_PLUS2, - ACTIONS(6751), 1, + ACTIONS(6701), 1, anon_sym_bit_DASHand2, - ACTIONS(6753), 1, + ACTIONS(6703), 1, anon_sym_bit_DASHxor2, - ACTIONS(6755), 1, + ACTIONS(6705), 1, anon_sym_bit_DASHor2, - ACTIONS(6757), 1, + ACTIONS(6715), 1, anon_sym_and2, - ACTIONS(6759), 1, + ACTIONS(6719), 1, anon_sym_xor2, - ACTIONS(6859), 1, + ACTIONS(6803), 1, anon_sym_or2, - STATE(3807), 1, - sym_comment, - STATE(3808), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(6733), 2, + STATE(3608), 1, + sym_comment, + ACTIONS(6663), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6667), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6735), 2, + ACTIONS(6671), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6737), 2, + ACTIONS(6673), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6741), 2, + ACTIONS(6677), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6743), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6749), 2, + ACTIONS(6699), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6745), 4, + ACTIONS(6669), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6747), 6, + ACTIONS(6679), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [143681] = 20, + [135711] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(3609), 1, + sym_comment, + ACTIONS(954), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(956), 29, + 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_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_GT2, + 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_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [135754] = 20, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(6761), 1, + ACTIONS(5275), 1, anon_sym_DASH2, - ACTIONS(6769), 1, + ACTIONS(5283), 1, anon_sym_PLUS2, - ACTIONS(6781), 1, + ACTIONS(5314), 1, anon_sym_bit_DASHand2, - ACTIONS(6783), 1, + ACTIONS(5316), 1, anon_sym_bit_DASHxor2, - ACTIONS(6785), 1, + ACTIONS(5318), 1, anon_sym_bit_DASHor2, - ACTIONS(6787), 1, + ACTIONS(5330), 1, anon_sym_and2, - ACTIONS(6789), 1, + ACTIONS(5334), 1, anon_sym_xor2, - ACTIONS(6861), 1, + ACTIONS(6805), 1, anon_sym_or2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(3808), 1, + STATE(3610), 1, sym_comment, - ACTIONS(6763), 2, + ACTIONS(5277), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6765), 2, + ACTIONS(5279), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6767), 2, + ACTIONS(5281), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6771), 2, + ACTIONS(5285), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6773), 2, + ACTIONS(5302), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6779), 2, + ACTIONS(5312), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6775), 4, + ACTIONS(5304), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6777), 6, + ACTIONS(5310), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [143756] = 20, + [135829] = 20, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(6362), 1, + ACTIONS(5290), 1, anon_sym_DASH2, - ACTIONS(6366), 1, + ACTIONS(5298), 1, anon_sym_PLUS2, - ACTIONS(6374), 1, + ACTIONS(5324), 1, anon_sym_bit_DASHand2, - ACTIONS(6376), 1, + ACTIONS(5326), 1, anon_sym_bit_DASHxor2, - ACTIONS(6378), 1, + ACTIONS(5328), 1, anon_sym_bit_DASHor2, - ACTIONS(6380), 1, + ACTIONS(5332), 1, anon_sym_and2, - ACTIONS(6382), 1, + ACTIONS(5336), 1, anon_sym_xor2, - ACTIONS(6863), 1, + ACTIONS(6807), 1, anon_sym_or2, - STATE(3804), 1, + STATE(3610), 1, aux_sym_shebang_repeat1, - STATE(3809), 1, + STATE(3611), 1, sym_comment, - ACTIONS(6354), 2, + ACTIONS(5292), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6356), 2, + ACTIONS(5294), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6358), 2, + ACTIONS(5296), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6360), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6368), 2, + ACTIONS(5300), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6372), 2, + ACTIONS(5306), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5322), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6364), 4, + ACTIONS(5308), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6370), 6, + ACTIONS(5320), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [143831] = 17, + [135904] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6867), 1, - anon_sym_DASH2, - ACTIONS(6873), 1, - anon_sym_and2, - ACTIONS(6883), 1, - anon_sym_PLUS2, - ACTIONS(6887), 1, - anon_sym_bit_DASHand2, - ACTIONS(6889), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6891), 1, - anon_sym_bit_DASHor2, - STATE(3810), 1, + STATE(3612), 1, sym_comment, - ACTIONS(6865), 2, + ACTIONS(946), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(948), 29, + 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_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6871), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6877), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6879), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6881), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6885), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5207), 3, + 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, - ACTIONS(6875), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6869), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [143899] = 15, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [135947] = 18, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6867), 1, + ACTIONS(6811), 1, anon_sym_DASH2, - ACTIONS(6883), 1, + ACTIONS(6817), 1, + anon_sym_and2, + ACTIONS(6819), 1, + anon_sym_xor2, + ACTIONS(6829), 1, anon_sym_PLUS2, - ACTIONS(6887), 1, + ACTIONS(6833), 1, anon_sym_bit_DASHand2, - ACTIONS(6889), 1, + ACTIONS(6835), 1, anon_sym_bit_DASHxor2, - STATE(3811), 1, + ACTIONS(6837), 1, + anon_sym_bit_DASHor2, + STATE(3613), 1, sym_comment, - ACTIONS(6865), 2, + ACTIONS(5185), 2, + anon_sym_EQ_GT, + anon_sym_or2, + ACTIONS(6809), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6871), 2, + ACTIONS(6815), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6877), 2, + ACTIONS(6823), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6879), 2, + ACTIONS(6825), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6881), 2, + ACTIONS(6827), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6885), 2, + ACTIONS(6831), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6875), 4, + ACTIONS(6821), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5207), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(6869), 6, + ACTIONS(6813), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [143963] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6897), 1, - aux_sym_cmd_identifier_token41, - STATE(3812), 1, - sym_comment, - ACTIONS(6895), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6893), 25, - 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_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [144007] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6903), 1, - aux_sym_cmd_identifier_token41, - STATE(3813), 1, - sym_comment, - ACTIONS(6901), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6899), 25, - 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_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [144051] = 5, + [136017] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6909), 1, + ACTIONS(6843), 1, aux_sym_cmd_identifier_token41, - STATE(3814), 1, + STATE(3614), 1, sym_comment, - ACTIONS(6907), 5, + ACTIONS(6841), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6905), 25, + ACTIONS(6839), 25, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -362473,20 +346879,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [144095] = 5, + [136061] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3102), 1, + ACTIONS(6849), 1, aux_sym_cmd_identifier_token41, - STATE(3815), 1, + STATE(3615), 1, sym_comment, - ACTIONS(3100), 5, + ACTIONS(6847), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(3098), 25, + ACTIONS(6845), 25, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -362512,33 +346918,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [144139] = 10, + [136105] = 10, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6911), 1, + ACTIONS(6851), 1, anon_sym_DASH2, - ACTIONS(6919), 1, + ACTIONS(6859), 1, anon_sym_PLUS2, - STATE(3816), 1, + STATE(3616), 1, sym_comment, - ACTIONS(5209), 2, + ACTIONS(5187), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6913), 2, + ACTIONS(6853), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6915), 2, + ACTIONS(6855), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6917), 2, + ACTIONS(6857), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6921), 2, + ACTIONS(6861), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5207), 19, + ACTIONS(5185), 19, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -362556,28 +346962,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [144193] = 7, + [136159] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(3817), 1, + STATE(3617), 1, sym_comment, - ACTIONS(6913), 2, + ACTIONS(6853), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6915), 2, + ACTIONS(6855), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6917), 2, + ACTIONS(6857), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5209), 3, + ACTIONS(5187), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5207), 22, + ACTIONS(5185), 22, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -362597,38 +347003,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [144241] = 11, + [136207] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6911), 1, + ACTIONS(6851), 1, anon_sym_DASH2, - ACTIONS(6919), 1, + ACTIONS(6859), 1, anon_sym_PLUS2, - STATE(3818), 1, + STATE(3618), 1, sym_comment, - ACTIONS(6913), 2, + ACTIONS(6853), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6915), 2, + ACTIONS(6855), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6917), 2, + ACTIONS(6857), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6921), 2, + ACTIONS(6861), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6923), 2, + ACTIONS(6863), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6925), 4, + ACTIONS(6865), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5207), 15, + ACTIONS(5185), 15, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -362642,24 +347048,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [144297] = 5, + [136263] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(3819), 1, + STATE(3619), 1, sym_comment, - ACTIONS(6915), 2, + ACTIONS(6855), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5209), 5, + ACTIONS(5187), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5207), 24, + ACTIONS(5185), 24, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -362681,147 +347087,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [144341] = 17, + [136307] = 16, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6911), 1, + ACTIONS(6851), 1, anon_sym_DASH2, - ACTIONS(6919), 1, + ACTIONS(6859), 1, anon_sym_PLUS2, - ACTIONS(6929), 1, - anon_sym_and2, - ACTIONS(6933), 1, + ACTIONS(6871), 1, anon_sym_bit_DASHand2, - ACTIONS(6935), 1, + ACTIONS(6873), 1, anon_sym_bit_DASHxor2, - ACTIONS(6937), 1, + ACTIONS(6875), 1, anon_sym_bit_DASHor2, - STATE(3820), 1, + STATE(3620), 1, sym_comment, - ACTIONS(6913), 2, + ACTIONS(6853), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6915), 2, + ACTIONS(6855), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6917), 2, + ACTIONS(6857), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6921), 2, + ACTIONS(6861), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6923), 2, + ACTIONS(6863), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6931), 2, + ACTIONS(6869), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5207), 3, - anon_sym_EQ_GT, + ACTIONS(5185), 4, + anon_sym_LBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6925), 4, + ACTIONS(6865), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6927), 6, + ACTIONS(6867), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [144409] = 18, + [136373] = 17, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6911), 1, + ACTIONS(6851), 1, anon_sym_DASH2, - ACTIONS(6919), 1, + ACTIONS(6859), 1, anon_sym_PLUS2, - ACTIONS(6929), 1, + ACTIONS(6871), 1, + anon_sym_bit_DASHand2, + ACTIONS(6873), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6875), 1, + anon_sym_bit_DASHor2, + ACTIONS(6877), 1, anon_sym_and2, - ACTIONS(6933), 1, + STATE(3621), 1, + sym_comment, + ACTIONS(6853), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6855), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6857), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6861), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6863), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6869), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5185), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6865), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6867), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [136441] = 18, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6851), 1, + anon_sym_DASH2, + ACTIONS(6859), 1, + anon_sym_PLUS2, + ACTIONS(6871), 1, anon_sym_bit_DASHand2, - ACTIONS(6935), 1, + ACTIONS(6873), 1, anon_sym_bit_DASHxor2, - ACTIONS(6937), 1, + ACTIONS(6875), 1, anon_sym_bit_DASHor2, - ACTIONS(6939), 1, + ACTIONS(6877), 1, + anon_sym_and2, + ACTIONS(6879), 1, anon_sym_xor2, - STATE(3821), 1, + STATE(3622), 1, sym_comment, - ACTIONS(5207), 2, - anon_sym_EQ_GT, + ACTIONS(5185), 2, + anon_sym_LBRACE, anon_sym_or2, - ACTIONS(6913), 2, + ACTIONS(6853), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6915), 2, + ACTIONS(6855), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6917), 2, + ACTIONS(6857), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6921), 2, + ACTIONS(6861), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6923), 2, + ACTIONS(6863), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6931), 2, + ACTIONS(6869), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6925), 4, + ACTIONS(6865), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6927), 6, + ACTIONS(6867), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [144479] = 12, + [136511] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6911), 1, + ACTIONS(6851), 1, anon_sym_DASH2, - ACTIONS(6919), 1, + ACTIONS(6859), 1, anon_sym_PLUS2, - STATE(3822), 1, + STATE(3623), 1, sym_comment, - ACTIONS(6913), 2, + ACTIONS(6853), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6915), 2, + ACTIONS(6855), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6917), 2, + ACTIONS(6857), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6921), 2, + ACTIONS(6861), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6923), 2, + ACTIONS(6863), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6925), 4, + ACTIONS(6865), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6927), 6, + ACTIONS(6867), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5207), 9, - anon_sym_EQ_GT, + ACTIONS(5185), 9, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -362830,30 +347286,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [144537] = 9, + [136569] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6885), 1, + aux_sym_cmd_identifier_token41, + STATE(3624), 1, + sym_comment, + ACTIONS(6883), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6881), 25, + 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_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [136613] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6891), 1, + aux_sym_cmd_identifier_token41, + STATE(3625), 1, + sym_comment, + ACTIONS(6889), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6887), 25, + 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_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [136657] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6911), 1, + ACTIONS(6851), 1, anon_sym_DASH2, - ACTIONS(6919), 1, + ACTIONS(6859), 1, anon_sym_PLUS2, - STATE(3823), 1, + STATE(3626), 1, sym_comment, - ACTIONS(5209), 2, + ACTIONS(5187), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6913), 2, + ACTIONS(6853), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6915), 2, + ACTIONS(6855), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6917), 2, + ACTIONS(6857), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5207), 21, + ACTIONS(5185), 21, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -362873,281 +347407,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [144589] = 13, + [136709] = 13, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6911), 1, + ACTIONS(6851), 1, anon_sym_DASH2, - ACTIONS(6919), 1, + ACTIONS(6859), 1, anon_sym_PLUS2, - STATE(3824), 1, + STATE(3627), 1, sym_comment, - ACTIONS(6913), 2, + ACTIONS(6853), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6915), 2, + ACTIONS(6855), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6917), 2, + ACTIONS(6857), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6921), 2, + ACTIONS(6861), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6923), 2, + ACTIONS(6863), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6931), 2, + ACTIONS(6869), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6925), 4, + ACTIONS(6865), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6927), 6, + ACTIONS(6867), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5207), 7, - anon_sym_EQ_GT, + ACTIONS(5185), 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, - [144649] = 14, + [136769] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6911), 1, + ACTIONS(6851), 1, anon_sym_DASH2, - ACTIONS(6919), 1, + ACTIONS(6859), 1, anon_sym_PLUS2, - ACTIONS(6933), 1, + ACTIONS(6871), 1, anon_sym_bit_DASHand2, - STATE(3825), 1, + STATE(3628), 1, sym_comment, - ACTIONS(6913), 2, + ACTIONS(6853), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6915), 2, + ACTIONS(6855), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6917), 2, + ACTIONS(6857), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6921), 2, + ACTIONS(6861), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6923), 2, + ACTIONS(6863), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6931), 2, + ACTIONS(6869), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6925), 4, + ACTIONS(6865), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5207), 6, - anon_sym_EQ_GT, + ACTIONS(5185), 6, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(6927), 6, + ACTIONS(6867), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [144711] = 15, + [136831] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6911), 1, + ACTIONS(6851), 1, anon_sym_DASH2, - ACTIONS(6919), 1, + ACTIONS(6859), 1, anon_sym_PLUS2, - ACTIONS(6933), 1, + ACTIONS(6871), 1, anon_sym_bit_DASHand2, - ACTIONS(6935), 1, + ACTIONS(6873), 1, anon_sym_bit_DASHxor2, - STATE(3826), 1, + STATE(3629), 1, sym_comment, - ACTIONS(6913), 2, + ACTIONS(6853), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6915), 2, + ACTIONS(6855), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6917), 2, + ACTIONS(6857), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6921), 2, + ACTIONS(6861), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6923), 2, + ACTIONS(6863), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6931), 2, + ACTIONS(6869), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6925), 4, + ACTIONS(6865), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5207), 5, - anon_sym_EQ_GT, + ACTIONS(5185), 5, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(6927), 6, + ACTIONS(6867), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [144775] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6945), 1, - aux_sym_cmd_identifier_token41, - STATE(3827), 1, - sym_comment, - ACTIONS(6943), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6941), 25, - 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_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [144819] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3114), 1, - aux_sym_cmd_identifier_token41, - STATE(3828), 1, - sym_comment, - ACTIONS(3112), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3110), 25, - 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_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [144863] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3108), 1, - aux_sym_cmd_identifier_token41, - STATE(3829), 1, - sym_comment, - ACTIONS(3106), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3104), 25, - 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_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [144907] = 5, + [136895] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6951), 1, + ACTIONS(3120), 1, aux_sym_cmd_identifier_token41, - STATE(3830), 1, + STATE(3630), 1, sym_comment, - ACTIONS(6949), 5, + ACTIONS(3118), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6947), 25, + ACTIONS(3116), 25, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -363173,33 +347590,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [144951] = 10, + [136939] = 10, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6867), 1, + ACTIONS(6811), 1, anon_sym_DASH2, - ACTIONS(6883), 1, + ACTIONS(6829), 1, anon_sym_PLUS2, - STATE(3831), 1, + STATE(3631), 1, sym_comment, - ACTIONS(5209), 2, + ACTIONS(5187), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6871), 2, + ACTIONS(6815), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6879), 2, + ACTIONS(6825), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6881), 2, + ACTIONS(6827), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6885), 2, + ACTIONS(6831), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5207), 19, + ACTIONS(5185), 19, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -363217,28 +347634,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [145005] = 7, + [136993] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(3832), 1, + STATE(3632), 1, sym_comment, - ACTIONS(6871), 2, + ACTIONS(6815), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6879), 2, + ACTIONS(6825), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6881), 2, + ACTIONS(6827), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5209), 3, + ACTIONS(5187), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5207), 22, + ACTIONS(5185), 22, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -363258,38 +347675,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [145053] = 11, + [137041] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6867), 1, + ACTIONS(6811), 1, anon_sym_DASH2, - ACTIONS(6883), 1, + ACTIONS(6829), 1, anon_sym_PLUS2, - STATE(3833), 1, + STATE(3633), 1, sym_comment, - ACTIONS(6865), 2, + ACTIONS(6809), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6871), 2, + ACTIONS(6815), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6879), 2, + ACTIONS(6825), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6881), 2, + ACTIONS(6827), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6885), 2, + ACTIONS(6831), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6875), 4, + ACTIONS(6821), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5207), 15, + ACTIONS(5185), 15, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -363303,24 +347720,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [145109] = 5, + [137097] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(3834), 1, + STATE(3634), 1, sym_comment, - ACTIONS(6879), 2, + ACTIONS(6825), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5209), 5, + ACTIONS(5187), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5207), 24, + ACTIONS(5185), 24, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -363342,146 +347759,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [145153] = 16, + [137141] = 16, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6867), 1, + ACTIONS(6811), 1, anon_sym_DASH2, - ACTIONS(6883), 1, + ACTIONS(6829), 1, anon_sym_PLUS2, - ACTIONS(6887), 1, + ACTIONS(6833), 1, anon_sym_bit_DASHand2, - ACTIONS(6889), 1, + ACTIONS(6835), 1, anon_sym_bit_DASHxor2, - ACTIONS(6891), 1, + ACTIONS(6837), 1, anon_sym_bit_DASHor2, - STATE(3835), 1, + STATE(3635), 1, sym_comment, - ACTIONS(6865), 2, + ACTIONS(6809), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6871), 2, + ACTIONS(6815), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6877), 2, + ACTIONS(6823), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6879), 2, + ACTIONS(6825), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6881), 2, + ACTIONS(6827), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6885), 2, + ACTIONS(6831), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5207), 4, - anon_sym_LBRACE, + ACTIONS(5185), 4, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6875), 4, + ACTIONS(6821), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6869), 6, + ACTIONS(6813), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [145219] = 18, + [137207] = 17, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6867), 1, + ACTIONS(6811), 1, anon_sym_DASH2, - ACTIONS(6873), 1, + ACTIONS(6817), 1, anon_sym_and2, - ACTIONS(6883), 1, + ACTIONS(6829), 1, anon_sym_PLUS2, - ACTIONS(6887), 1, + ACTIONS(6833), 1, anon_sym_bit_DASHand2, - ACTIONS(6889), 1, + ACTIONS(6835), 1, anon_sym_bit_DASHxor2, - ACTIONS(6891), 1, + ACTIONS(6837), 1, anon_sym_bit_DASHor2, - ACTIONS(6953), 1, - anon_sym_xor2, - STATE(3836), 1, + STATE(3636), 1, sym_comment, - ACTIONS(5207), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(6865), 2, + ACTIONS(6809), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6871), 2, + ACTIONS(6815), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6877), 2, + ACTIONS(6823), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6879), 2, + ACTIONS(6825), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6881), 2, + ACTIONS(6827), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6885), 2, + ACTIONS(6831), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6875), 4, + ACTIONS(5185), 3, + anon_sym_EQ_GT, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6821), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6869), 6, + ACTIONS(6813), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [145289] = 12, + [137275] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6867), 1, + ACTIONS(6811), 1, anon_sym_DASH2, - ACTIONS(6883), 1, + ACTIONS(6829), 1, anon_sym_PLUS2, - STATE(3837), 1, + STATE(3637), 1, sym_comment, - ACTIONS(6865), 2, + ACTIONS(6809), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6871), 2, + ACTIONS(6815), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6879), 2, + ACTIONS(6825), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6881), 2, + ACTIONS(6827), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6885), 2, + ACTIONS(6831), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6875), 4, + ACTIONS(6821), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6869), 6, + ACTIONS(6813), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5207), 9, - anon_sym_LBRACE, + ACTIONS(5185), 9, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -363490,30 +347906,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [145347] = 9, + [137333] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6867), 1, + ACTIONS(6811), 1, anon_sym_DASH2, - ACTIONS(6883), 1, + ACTIONS(6829), 1, anon_sym_PLUS2, - STATE(3838), 1, + STATE(3638), 1, sym_comment, - ACTIONS(5209), 2, + ACTIONS(5187), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6871), 2, + ACTIONS(6815), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6879), 2, + ACTIONS(6825), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6881), 2, + ACTIONS(6827), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5207), 21, + ACTIONS(5185), 21, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -363533,201 +347949,317 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [145399] = 13, + [137385] = 13, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6867), 1, + ACTIONS(6811), 1, anon_sym_DASH2, - ACTIONS(6883), 1, + ACTIONS(6829), 1, anon_sym_PLUS2, - STATE(3839), 1, + STATE(3639), 1, sym_comment, - ACTIONS(6865), 2, + ACTIONS(6809), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6871), 2, + ACTIONS(6815), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6877), 2, + ACTIONS(6823), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6879), 2, + ACTIONS(6825), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6881), 2, + ACTIONS(6827), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6885), 2, + ACTIONS(6831), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6875), 4, + ACTIONS(6821), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6869), 6, + ACTIONS(6813), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5207), 7, - anon_sym_LBRACE, + ACTIONS(5185), 7, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [145459] = 14, + [137445] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6867), 1, + ACTIONS(6811), 1, anon_sym_DASH2, - ACTIONS(6883), 1, + ACTIONS(6829), 1, anon_sym_PLUS2, - ACTIONS(6887), 1, + ACTIONS(6833), 1, anon_sym_bit_DASHand2, - STATE(3840), 1, + STATE(3640), 1, sym_comment, - ACTIONS(6865), 2, + ACTIONS(6809), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6871), 2, + ACTIONS(6815), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6877), 2, + ACTIONS(6823), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6879), 2, + ACTIONS(6825), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6881), 2, + ACTIONS(6827), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6885), 2, + ACTIONS(6831), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6875), 4, + ACTIONS(6821), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5207), 6, - anon_sym_LBRACE, + ACTIONS(5185), 6, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(6869), 6, + ACTIONS(6813), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [145521] = 16, + [137507] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6911), 1, + ACTIONS(6811), 1, anon_sym_DASH2, - ACTIONS(6919), 1, + ACTIONS(6829), 1, anon_sym_PLUS2, - ACTIONS(6933), 1, + ACTIONS(6833), 1, anon_sym_bit_DASHand2, - ACTIONS(6935), 1, + ACTIONS(6835), 1, anon_sym_bit_DASHxor2, - ACTIONS(6937), 1, - anon_sym_bit_DASHor2, - STATE(3841), 1, + STATE(3641), 1, sym_comment, - ACTIONS(6913), 2, + ACTIONS(6809), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6815), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6915), 2, + ACTIONS(6823), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6825), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6917), 2, + ACTIONS(6827), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6921), 2, + ACTIONS(6831), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6923), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6931), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5207), 4, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6925), 4, + ACTIONS(6821), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6927), 6, + ACTIONS(5185), 5, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(6813), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [145587] = 25, + [137571] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6897), 1, + aux_sym_cmd_identifier_token41, + STATE(3642), 1, + sym_comment, + ACTIONS(6895), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6893), 25, + 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_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [137615] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3100), 1, + aux_sym_cmd_identifier_token41, + STATE(3643), 1, + sym_comment, + ACTIONS(3098), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3096), 25, + 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_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [137659] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3126), 1, + aux_sym_cmd_identifier_token41, + STATE(3644), 1, + sym_comment, + ACTIONS(3124), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3122), 25, + 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_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [137703] = 25, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(375), 1, anon_sym_DASH2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6843), 1, + ACTIONS(6787), 1, anon_sym_LPAREN, - ACTIONS(6845), 1, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6847), 1, + ACTIONS(6791), 1, anon_sym_LBRACE, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2104), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3842), 1, + STATE(3645), 1, sym_comment, - STATE(3855), 1, + STATE(3670), 1, sym_expr_parenthesized, - STATE(4086), 1, + STATE(3868), 1, sym_val_number, - STATE(4373), 1, + STATE(4210), 1, sym__binary_predicate, - STATE(4381), 1, + STATE(4214), 1, sym__predicate, - STATE(4942), 1, + STATE(4566), 1, sym_val_closure, ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4394), 2, + STATE(4183), 2, sym_expr_unary, sym_val_bool, - STATE(4573), 2, + STATE(4357), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -363736,236 +348268,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [145670] = 18, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5439), 1, - anon_sym_DASH2, - ACTIONS(5447), 1, - anon_sym_PLUS2, - ACTIONS(5459), 1, - anon_sym_bit_DASHand2, - ACTIONS(5461), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5463), 1, - anon_sym_bit_DASHor2, - ACTIONS(5465), 1, - anon_sym_and2, - ACTIONS(5467), 1, - anon_sym_xor2, - ACTIONS(6955), 1, - anon_sym_or2, - STATE(3843), 1, - sym_comment, - ACTIONS(5441), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5443), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5445), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5449), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5451), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5457), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5453), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5455), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [145739] = 18, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6404), 1, - anon_sym_DASH2, - ACTIONS(6412), 1, - anon_sym_PLUS2, - ACTIONS(6424), 1, - anon_sym_bit_DASHand2, - ACTIONS(6426), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6428), 1, - anon_sym_bit_DASHor2, - ACTIONS(6430), 1, - anon_sym_and2, - ACTIONS(6432), 1, - anon_sym_xor2, - ACTIONS(6957), 1, - anon_sym_or2, - STATE(3844), 1, - sym_comment, - ACTIONS(6406), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6408), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6410), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6414), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6416), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6422), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6418), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6420), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [145808] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3845), 1, - sym_comment, - STATE(4736), 1, - sym_redirection, - ACTIONS(6961), 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(6963), 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(6959), 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, - [145853] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3846), 1, - sym_comment, - STATE(4764), 1, - sym_redirection, - ACTIONS(6961), 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(6963), 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(6965), 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, - [145898] = 25, + [137786] = 25, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(375), 1, anon_sym_DASH2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6841), 1, + ACTIONS(6785), 1, sym__newline, - ACTIONS(6843), 1, + ACTIONS(6787), 1, anon_sym_LPAREN, - ACTIONS(6845), 1, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2104), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3847), 1, + STATE(3646), 1, sym_comment, - STATE(3855), 1, + STATE(3670), 1, sym_expr_parenthesized, - STATE(3966), 1, + STATE(3763), 1, aux_sym_shebang_repeat1, - STATE(4086), 1, + STATE(3868), 1, sym_val_number, - STATE(4349), 1, + STATE(4053), 1, sym__binary_predicate_parenthesized, - STATE(4351), 1, + STATE(4054), 1, sym__predicate, ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4394), 2, + STATE(4183), 2, sym_expr_unary, sym_val_bool, - STATE(4573), 2, + STATE(4357), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -363974,56 +348326,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [145981] = 25, + [137869] = 25, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(375), 1, anon_sym_DASH2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6841), 1, + ACTIONS(6785), 1, sym__newline, - ACTIONS(6843), 1, + ACTIONS(6787), 1, anon_sym_LPAREN, - ACTIONS(6845), 1, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2104), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3848), 1, + STATE(3647), 1, sym_comment, - STATE(3855), 1, + STATE(3670), 1, sym_expr_parenthesized, - STATE(3966), 1, + STATE(3763), 1, aux_sym_shebang_repeat1, - STATE(4086), 1, + STATE(3868), 1, sym_val_number, - STATE(4298), 1, + STATE(4048), 1, sym__binary_predicate_parenthesized, - STATE(4311), 1, + STATE(4052), 1, sym__predicate, ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4394), 2, + STATE(4183), 2, sym_expr_unary, sym_val_bool, - STATE(4573), 2, + STATE(4357), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -364032,56 +348384,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [146064] = 25, + [137952] = 25, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(375), 1, anon_sym_DASH2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6841), 1, + ACTIONS(6785), 1, sym__newline, - ACTIONS(6843), 1, + ACTIONS(6787), 1, anon_sym_LPAREN, - ACTIONS(6845), 1, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2104), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3849), 1, + STATE(3648), 1, sym_comment, - STATE(3855), 1, + STATE(3670), 1, sym_expr_parenthesized, - STATE(3966), 1, + STATE(3763), 1, aux_sym_shebang_repeat1, - STATE(4086), 1, + STATE(3868), 1, sym_val_number, - STATE(4348), 1, + STATE(4061), 1, sym__binary_predicate_parenthesized, - STATE(4380), 1, + STATE(4062), 1, sym__predicate, ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4394), 2, + STATE(4183), 2, sym_expr_unary, sym_val_bool, - STATE(4573), 2, + STATE(4357), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -364090,209 +348442,114 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [146147] = 18, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5335), 1, - anon_sym_DASH2, - ACTIONS(5349), 1, - anon_sym_PLUS2, - ACTIONS(5353), 1, - anon_sym_bit_DASHand2, - ACTIONS(5379), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5421), 1, - anon_sym_bit_DASHor2, - ACTIONS(5423), 1, - anon_sym_and2, - ACTIONS(5425), 1, - anon_sym_xor2, - ACTIONS(6967), 1, - anon_sym_or2, - STATE(3850), 1, - sym_comment, - ACTIONS(5333), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5339), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5343), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5345), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5347), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5351), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5341), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5337), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [146216] = 18, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6911), 1, + [138035] = 25, + ACTIONS(47), 1, anon_sym_DASH2, - ACTIONS(6919), 1, - anon_sym_PLUS2, - ACTIONS(6929), 1, - anon_sym_and2, - ACTIONS(6933), 1, - anon_sym_bit_DASHand2, - ACTIONS(6935), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6937), 1, - anon_sym_bit_DASHor2, - ACTIONS(6939), 1, - anon_sym_xor2, - ACTIONS(6969), 1, - anon_sym_or2, - STATE(3851), 1, - sym_comment, - ACTIONS(6913), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6915), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6917), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6921), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6923), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6931), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6925), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6927), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [146285] = 18, + ACTIONS(223), 1, + aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6867), 1, - anon_sym_DASH2, - ACTIONS(6873), 1, - anon_sym_and2, - ACTIONS(6883), 1, - anon_sym_PLUS2, - ACTIONS(6887), 1, - anon_sym_bit_DASHand2, - ACTIONS(6889), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6891), 1, - anon_sym_bit_DASHor2, - ACTIONS(6953), 1, - anon_sym_xor2, - ACTIONS(6971), 1, - anon_sym_or2, - STATE(3852), 1, + ACTIONS(3338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3474), 1, + aux_sym_expr_unary_token1, + ACTIONS(5822), 1, + anon_sym_LPAREN, + ACTIONS(6783), 1, + sym_identifier, + ACTIONS(6789), 1, + anon_sym_DOLLAR, + ACTIONS(6793), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6795), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6899), 1, + anon_sym_LBRACE, + STATE(1499), 1, + sym__val_number, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2338), 1, + sym__expr_unary_minus, + STATE(3649), 1, sym_comment, - ACTIONS(6865), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6871), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6877), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6879), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6881), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6885), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6875), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6869), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [146354] = 25, + STATE(3683), 1, + sym_expr_parenthesized, + STATE(3868), 1, + sym_val_number, + STATE(4267), 1, + sym__binary_predicate, + STATE(4273), 1, + sym__predicate, + STATE(4861), 1, + sym_val_closure, + ACTIONS(89), 2, + anon_sym_true, + anon_sym_false, + STATE(4276), 2, + sym_expr_unary, + sym_val_bool, + STATE(4349), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(225), 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, + [138118] = 25, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(375), 1, anon_sym_DASH2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6841), 1, + ACTIONS(6785), 1, sym__newline, - ACTIONS(6843), 1, + ACTIONS(6787), 1, anon_sym_LPAREN, - ACTIONS(6845), 1, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2104), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3853), 1, + STATE(3650), 1, sym_comment, - STATE(3855), 1, + STATE(3670), 1, sym_expr_parenthesized, - STATE(3966), 1, + STATE(3763), 1, aux_sym_shebang_repeat1, - STATE(4086), 1, + STATE(3868), 1, sym_val_number, - STATE(4286), 1, + STATE(4068), 1, sym__binary_predicate_parenthesized, - STATE(4297), 1, + STATE(4069), 1, sym__predicate, ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4394), 2, + STATE(4183), 2, sym_expr_unary, sym_val_bool, - STATE(4573), 2, + STATE(4357), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -364301,56 +348558,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [146437] = 25, + [138201] = 25, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(375), 1, anon_sym_DASH2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6841), 1, + ACTIONS(6785), 1, sym__newline, - ACTIONS(6843), 1, + ACTIONS(6787), 1, anon_sym_LPAREN, - ACTIONS(6845), 1, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2104), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3854), 1, + STATE(3651), 1, sym_comment, - STATE(3855), 1, - sym_expr_parenthesized, - STATE(3966), 1, + STATE(3664), 1, aux_sym_shebang_repeat1, - STATE(4086), 1, + STATE(3670), 1, + sym_expr_parenthesized, + STATE(3868), 1, sym_val_number, - STATE(4309), 1, + STATE(4070), 1, sym__binary_predicate_parenthesized, - STATE(4319), 1, + STATE(4072), 1, sym__predicate, ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4394), 2, + STATE(4183), 2, sym_expr_unary, sym_val_bool, - STATE(4573), 2, + STATE(4357), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -364359,96 +348616,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [146520] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3855), 1, - sym_comment, - ACTIONS(6975), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6981), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6979), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6977), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6973), 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, - [146567] = 25, - ACTIONS(47), 1, - anon_sym_DASH2, + [138284] = 25, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3426), 1, + ACTIONS(375), 1, + anon_sym_DASH2, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3510), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(5888), 1, - anon_sym_LPAREN, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6845), 1, + ACTIONS(6785), 1, + sym__newline, + ACTIONS(6787), 1, + anon_sym_LPAREN, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6983), 1, - anon_sym_LBRACE, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2511), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3856), 1, + STATE(3652), 1, sym_comment, - STATE(3877), 1, + STATE(3665), 1, + aux_sym_shebang_repeat1, + STATE(3670), 1, sym_expr_parenthesized, - STATE(4086), 1, + STATE(3868), 1, sym_val_number, - STATE(4546), 1, - sym__binary_predicate, - STATE(4548), 1, + STATE(4073), 1, + sym__binary_predicate_parenthesized, + STATE(4074), 1, sym__predicate, - STATE(5151), 1, - sym_val_closure, - ACTIONS(89), 2, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4550), 2, + STATE(4183), 2, sym_expr_unary, sym_val_bool, - STATE(4721), 2, + STATE(4357), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -364457,107 +348674,107 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [146650] = 18, + [138367] = 18, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(5261), 1, anon_sym_DASH2, - ACTIONS(6470), 1, + ACTIONS(5271), 1, anon_sym_PLUS2, - ACTIONS(6482), 1, + ACTIONS(5361), 1, anon_sym_bit_DASHand2, - ACTIONS(6484), 1, + ACTIONS(5363), 1, anon_sym_bit_DASHxor2, - ACTIONS(6486), 1, + ACTIONS(5365), 1, anon_sym_bit_DASHor2, - ACTIONS(6488), 1, + ACTIONS(5367), 1, anon_sym_and2, - ACTIONS(6490), 1, + ACTIONS(5369), 1, anon_sym_xor2, - ACTIONS(6985), 1, + ACTIONS(6901), 1, anon_sym_or2, - STATE(3857), 1, + STATE(3653), 1, sym_comment, - ACTIONS(6464), 2, + ACTIONS(5259), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5263), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6466), 2, + ACTIONS(5267), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6468), 2, + ACTIONS(5269), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6472), 2, + ACTIONS(5273), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6474), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6480), 2, + ACTIONS(5359), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6476), 4, + ACTIONS(5265), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6478), 6, + ACTIONS(5357), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [146719] = 25, + [138436] = 25, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(375), 1, anon_sym_DASH2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6841), 1, + ACTIONS(6785), 1, sym__newline, - ACTIONS(6843), 1, + ACTIONS(6787), 1, anon_sym_LPAREN, - ACTIONS(6845), 1, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2104), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3855), 1, - sym_expr_parenthesized, - STATE(3858), 1, - sym_comment, - STATE(3966), 1, + STATE(3647), 1, aux_sym_shebang_repeat1, - STATE(4086), 1, + STATE(3654), 1, + sym_comment, + STATE(3670), 1, + sym_expr_parenthesized, + STATE(3868), 1, sym_val_number, - STATE(4402), 1, + STATE(4051), 1, sym__binary_predicate_parenthesized, - STATE(4403), 1, + STATE(4075), 1, sym__predicate, ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4394), 2, + STATE(4183), 2, sym_expr_unary, sym_val_bool, - STATE(4573), 2, + STATE(4357), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -364566,56 +348783,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [146802] = 25, + [138519] = 25, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(375), 1, anon_sym_DASH2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6841), 1, + ACTIONS(6785), 1, sym__newline, - ACTIONS(6843), 1, + ACTIONS(6787), 1, anon_sym_LPAREN, - ACTIONS(6845), 1, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2104), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3855), 1, - sym_expr_parenthesized, - STATE(3858), 1, - aux_sym_shebang_repeat1, - STATE(3859), 1, + STATE(3655), 1, sym_comment, - STATE(4086), 1, + STATE(3667), 1, + aux_sym_shebang_repeat1, + STATE(3670), 1, + sym_expr_parenthesized, + STATE(3868), 1, sym_val_number, - STATE(4340), 1, + STATE(4084), 1, sym__binary_predicate_parenthesized, - STATE(4341), 1, + STATE(4224), 1, sym__predicate, ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4394), 2, + STATE(4183), 2, sym_expr_unary, sym_val_bool, - STATE(4573), 2, + STATE(4357), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -364624,56 +348841,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [146885] = 25, + [138602] = 25, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(375), 1, anon_sym_DASH2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6841), 1, + ACTIONS(6785), 1, sym__newline, - ACTIONS(6843), 1, + ACTIONS(6787), 1, anon_sym_LPAREN, - ACTIONS(6845), 1, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2104), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3855), 1, - sym_expr_parenthesized, - STATE(3860), 1, + STATE(3656), 1, sym_comment, - STATE(3966), 1, + STATE(3666), 1, aux_sym_shebang_repeat1, - STATE(4086), 1, + STATE(3670), 1, + sym_expr_parenthesized, + STATE(3868), 1, sym_val_number, - STATE(4408), 1, + STATE(4076), 1, sym__binary_predicate_parenthesized, - STATE(4409), 1, + STATE(4077), 1, sym__predicate, ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4394), 2, + STATE(4183), 2, sym_expr_unary, sym_val_bool, - STATE(4573), 2, + STATE(4357), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -364682,56 +348899,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [146968] = 25, + [138685] = 25, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(375), 1, anon_sym_DASH2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6841), 1, + ACTIONS(6785), 1, sym__newline, - ACTIONS(6843), 1, + ACTIONS(6787), 1, anon_sym_LPAREN, - ACTIONS(6845), 1, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2104), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3855), 1, + STATE(3657), 1, + sym_comment, + STATE(3670), 1, sym_expr_parenthesized, - STATE(3860), 1, + STATE(3763), 1, aux_sym_shebang_repeat1, - STATE(3861), 1, - sym_comment, - STATE(4086), 1, + STATE(3868), 1, sym_val_number, - STATE(4390), 1, + STATE(4090), 1, sym__binary_predicate_parenthesized, - STATE(4392), 1, + STATE(4091), 1, sym__predicate, ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4394), 2, + STATE(4183), 2, sym_expr_unary, sym_val_bool, - STATE(4573), 2, + STATE(4357), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -364740,56 +348957,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [147051] = 25, + [138768] = 25, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(375), 1, anon_sym_DASH2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6841), 1, + ACTIONS(6785), 1, sym__newline, - ACTIONS(6843), 1, + ACTIONS(6787), 1, anon_sym_LPAREN, - ACTIONS(6845), 1, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2104), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3855), 1, - sym_expr_parenthesized, - STATE(3862), 1, + STATE(3658), 1, sym_comment, - STATE(3863), 1, + STATE(3670), 1, + sym_expr_parenthesized, + STATE(3763), 1, aux_sym_shebang_repeat1, - STATE(4086), 1, + STATE(3868), 1, sym_val_number, - STATE(4395), 1, + STATE(4094), 1, sym__binary_predicate_parenthesized, - STATE(4396), 1, + STATE(4095), 1, sym__predicate, ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4394), 2, + STATE(4183), 2, sym_expr_unary, sym_val_bool, - STATE(4573), 2, + STATE(4357), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -364798,56 +349015,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [147134] = 25, + [138851] = 25, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(375), 1, anon_sym_DASH2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6841), 1, + ACTIONS(6785), 1, sym__newline, - ACTIONS(6843), 1, + ACTIONS(6787), 1, anon_sym_LPAREN, - ACTIONS(6845), 1, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2104), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3855), 1, - sym_expr_parenthesized, - STATE(3863), 1, + STATE(3659), 1, sym_comment, - STATE(3966), 1, + STATE(3670), 1, + sym_expr_parenthesized, + STATE(3763), 1, aux_sym_shebang_repeat1, - STATE(4086), 1, + STATE(3868), 1, sym_val_number, - STATE(4461), 1, + STATE(4098), 1, sym__binary_predicate_parenthesized, - STATE(4462), 1, + STATE(4100), 1, sym__predicate, ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4394), 2, + STATE(4183), 2, sym_expr_unary, sym_val_bool, - STATE(4573), 2, + STATE(4357), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -364856,56 +349073,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [147217] = 25, + [138934] = 25, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(375), 1, anon_sym_DASH2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6841), 1, + ACTIONS(6785), 1, sym__newline, - ACTIONS(6843), 1, + ACTIONS(6787), 1, anon_sym_LPAREN, - ACTIONS(6845), 1, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2104), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3847), 1, - aux_sym_shebang_repeat1, - STATE(3855), 1, - sym_expr_parenthesized, - STATE(3864), 1, + STATE(3660), 1, sym_comment, - STATE(4086), 1, + STATE(3670), 1, + sym_expr_parenthesized, + STATE(3671), 1, + aux_sym_shebang_repeat1, + STATE(3868), 1, sym_val_number, - STATE(4464), 1, - sym__binary_predicate_parenthesized, - STATE(4465), 1, + STATE(4111), 1, sym__predicate, + STATE(4150), 1, + sym__binary_predicate_parenthesized, ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4394), 2, + STATE(4183), 2, sym_expr_unary, sym_val_bool, - STATE(4573), 2, + STATE(4357), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -364914,56 +349131,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [147300] = 25, + [139017] = 25, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(375), 1, anon_sym_DASH2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6841), 1, + ACTIONS(6785), 1, sym__newline, - ACTIONS(6843), 1, + ACTIONS(6787), 1, anon_sym_LPAREN, - ACTIONS(6845), 1, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2104), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3848), 1, + STATE(3646), 1, aux_sym_shebang_repeat1, - STATE(3855), 1, - sym_expr_parenthesized, - STATE(3865), 1, + STATE(3661), 1, sym_comment, - STATE(4086), 1, + STATE(3670), 1, + sym_expr_parenthesized, + STATE(3868), 1, sym_val_number, - STATE(4469), 1, - sym__binary_predicate_parenthesized, - STATE(4471), 1, + STATE(4159), 1, sym__predicate, + STATE(4239), 1, + sym__binary_predicate_parenthesized, ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4394), 2, + STATE(4183), 2, sym_expr_unary, sym_val_bool, - STATE(4573), 2, + STATE(4357), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -364972,56 +349189,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [147383] = 25, + [139100] = 25, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(375), 1, anon_sym_DASH2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6841), 1, + ACTIONS(6785), 1, sym__newline, - ACTIONS(6843), 1, + ACTIONS(6787), 1, anon_sym_LPAREN, - ACTIONS(6845), 1, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2104), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3849), 1, + STATE(3648), 1, aux_sym_shebang_repeat1, - STATE(3855), 1, - sym_expr_parenthesized, - STATE(3866), 1, + STATE(3662), 1, sym_comment, - STATE(4086), 1, + STATE(3670), 1, + sym_expr_parenthesized, + STATE(3868), 1, sym_val_number, - STATE(4473), 1, + STATE(4167), 1, sym__binary_predicate_parenthesized, - STATE(4475), 1, + STATE(4170), 1, sym__predicate, ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4394), 2, + STATE(4183), 2, sym_expr_unary, sym_val_bool, - STATE(4573), 2, + STATE(4357), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -365030,56 +349247,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [147466] = 25, + [139183] = 25, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(375), 1, anon_sym_DASH2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6841), 1, + ACTIONS(6785), 1, sym__newline, - ACTIONS(6843), 1, + ACTIONS(6787), 1, anon_sym_LPAREN, - ACTIONS(6845), 1, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2104), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3855), 1, - sym_expr_parenthesized, - STATE(3867), 1, + STATE(3650), 1, + aux_sym_shebang_repeat1, + STATE(3663), 1, sym_comment, + STATE(3670), 1, + sym_expr_parenthesized, STATE(3868), 1, - aux_sym_shebang_repeat1, - STATE(4086), 1, sym_val_number, - STATE(4432), 1, + STATE(4186), 1, sym__binary_predicate_parenthesized, - STATE(4433), 1, + STATE(4188), 1, sym__predicate, ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4394), 2, + STATE(4183), 2, sym_expr_unary, sym_val_bool, - STATE(4573), 2, + STATE(4357), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -365088,56 +349305,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [147549] = 25, + [139266] = 25, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(375), 1, anon_sym_DASH2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6841), 1, + ACTIONS(6785), 1, sym__newline, - ACTIONS(6843), 1, + ACTIONS(6787), 1, anon_sym_LPAREN, - ACTIONS(6845), 1, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2104), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3855), 1, - sym_expr_parenthesized, - STATE(3868), 1, + STATE(3664), 1, sym_comment, - STATE(3966), 1, + STATE(3670), 1, + sym_expr_parenthesized, + STATE(3763), 1, aux_sym_shebang_repeat1, - STATE(4086), 1, + STATE(3868), 1, sym_val_number, - STATE(4266), 1, + STATE(4114), 1, sym__binary_predicate_parenthesized, - STATE(4267), 1, + STATE(4118), 1, sym__predicate, ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4394), 2, + STATE(4183), 2, sym_expr_unary, sym_val_bool, - STATE(4573), 2, + STATE(4357), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -365146,56 +349363,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [147632] = 25, + [139349] = 25, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(375), 1, anon_sym_DASH2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6841), 1, + ACTIONS(6785), 1, sym__newline, - ACTIONS(6843), 1, + ACTIONS(6787), 1, anon_sym_LPAREN, - ACTIONS(6845), 1, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2104), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3855), 1, - sym_expr_parenthesized, - STATE(3869), 1, + STATE(3665), 1, sym_comment, - STATE(3870), 1, + STATE(3670), 1, + sym_expr_parenthesized, + STATE(3763), 1, aux_sym_shebang_repeat1, - STATE(4086), 1, + STATE(3868), 1, sym_val_number, - STATE(4439), 1, + STATE(4121), 1, sym__binary_predicate_parenthesized, - STATE(4441), 1, + STATE(4122), 1, sym__predicate, ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4394), 2, + STATE(4183), 2, sym_expr_unary, sym_val_bool, - STATE(4573), 2, + STATE(4357), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -365204,56 +349421,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [147715] = 25, + [139432] = 25, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(375), 1, anon_sym_DASH2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6841), 1, + ACTIONS(6785), 1, sym__newline, - ACTIONS(6843), 1, + ACTIONS(6787), 1, anon_sym_LPAREN, - ACTIONS(6845), 1, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2104), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3855), 1, - sym_expr_parenthesized, - STATE(3870), 1, + STATE(3666), 1, sym_comment, - STATE(3966), 1, + STATE(3670), 1, + sym_expr_parenthesized, + STATE(3763), 1, aux_sym_shebang_repeat1, - STATE(4086), 1, + STATE(3868), 1, sym_val_number, - STATE(4276), 1, + STATE(4125), 1, sym__binary_predicate_parenthesized, - STATE(4277), 1, + STATE(4126), 1, sym__predicate, ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4394), 2, + STATE(4183), 2, sym_expr_unary, sym_val_bool, - STATE(4573), 2, + STATE(4357), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -365262,56 +349479,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [147798] = 25, + [139515] = 25, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(375), 1, anon_sym_DASH2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6841), 1, + ACTIONS(6785), 1, sym__newline, - ACTIONS(6843), 1, + ACTIONS(6787), 1, anon_sym_LPAREN, - ACTIONS(6845), 1, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2104), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3855), 1, - sym_expr_parenthesized, - STATE(3871), 1, + STATE(3667), 1, sym_comment, - STATE(3966), 1, + STATE(3670), 1, + sym_expr_parenthesized, + STATE(3763), 1, aux_sym_shebang_repeat1, - STATE(4086), 1, + STATE(3868), 1, sym_val_number, - STATE(4283), 1, + STATE(4082), 1, sym__binary_predicate_parenthesized, - STATE(4284), 1, + STATE(4108), 1, sym__predicate, ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4394), 2, + STATE(4183), 2, sym_expr_unary, sym_val_bool, - STATE(4573), 2, + STATE(4357), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -365320,56 +349537,186 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [147881] = 25, + [139598] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(3668), 1, + sym_comment, + STATE(4575), 1, + sym_redirection, + ACTIONS(6905), 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(6907), 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(6903), 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, + [139643] = 18, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6348), 1, + anon_sym_DASH2, + ACTIONS(6356), 1, + anon_sym_PLUS2, + ACTIONS(6368), 1, + anon_sym_bit_DASHand2, + ACTIONS(6370), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6372), 1, + anon_sym_bit_DASHor2, + ACTIONS(6374), 1, + anon_sym_and2, + ACTIONS(6376), 1, + anon_sym_xor2, + ACTIONS(6909), 1, + anon_sym_or2, + STATE(3669), 1, + sym_comment, + ACTIONS(6350), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6352), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6354), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6358), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6360), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6366), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6362), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6364), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [139712] = 7, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(3670), 1, + sym_comment, + ACTIONS(6913), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6919), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6917), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6915), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6911), 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, + [139759] = 25, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(375), 1, anon_sym_DASH2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6841), 1, + ACTIONS(6785), 1, sym__newline, - ACTIONS(6843), 1, + ACTIONS(6787), 1, anon_sym_LPAREN, - ACTIONS(6845), 1, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2104), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3853), 1, - aux_sym_shebang_repeat1, - STATE(3855), 1, + STATE(3670), 1, sym_expr_parenthesized, - STATE(3872), 1, + STATE(3671), 1, sym_comment, - STATE(4086), 1, + STATE(3763), 1, + aux_sym_shebang_repeat1, + STATE(3868), 1, sym_val_number, - STATE(4285), 1, + STATE(4155), 1, sym__binary_predicate_parenthesized, - STATE(4287), 1, + STATE(4156), 1, sym__predicate, ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4394), 2, + STATE(4183), 2, sym_expr_unary, sym_val_bool, - STATE(4573), 2, + STATE(4357), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -365378,56 +349725,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [147964] = 25, + [139842] = 25, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(375), 1, anon_sym_DASH2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6841), 1, + ACTIONS(6785), 1, sym__newline, - ACTIONS(6843), 1, + ACTIONS(6787), 1, anon_sym_LPAREN, - ACTIONS(6845), 1, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2104), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3854), 1, + STATE(3657), 1, aux_sym_shebang_repeat1, - STATE(3855), 1, + STATE(3670), 1, sym_expr_parenthesized, - STATE(3873), 1, + STATE(3672), 1, sym_comment, - STATE(4086), 1, + STATE(3868), 1, sym_val_number, - STATE(4291), 1, + STATE(4175), 1, sym__binary_predicate_parenthesized, - STATE(4292), 1, + STATE(4185), 1, sym__predicate, ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4394), 2, + STATE(4183), 2, sym_expr_unary, sym_val_bool, - STATE(4573), 2, + STATE(4357), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -365436,114 +349783,107 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [148047] = 25, - ACTIONS(223), 1, - aux_sym__val_number_token5, + [139925] = 18, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(375), 1, + ACTIONS(6811), 1, anon_sym_DASH2, - ACTIONS(3426), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, - aux_sym_expr_unary_token1, - ACTIONS(6839), 1, - sym_identifier, - ACTIONS(6841), 1, - sym__newline, - ACTIONS(6843), 1, - anon_sym_LPAREN, - ACTIONS(6845), 1, - anon_sym_DOLLAR, - ACTIONS(6849), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, - aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, - sym__val_number, - STATE(2104), 1, - sym__expr_unary_minus, - STATE(3855), 1, - sym_expr_parenthesized, - STATE(3871), 1, - aux_sym_shebang_repeat1, - STATE(3874), 1, + ACTIONS(6817), 1, + anon_sym_and2, + ACTIONS(6819), 1, + anon_sym_xor2, + ACTIONS(6829), 1, + anon_sym_PLUS2, + ACTIONS(6833), 1, + anon_sym_bit_DASHand2, + ACTIONS(6835), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6837), 1, + anon_sym_bit_DASHor2, + ACTIONS(6921), 1, + anon_sym_or2, + STATE(3673), 1, sym_comment, - STATE(4086), 1, - sym_val_number, - STATE(4443), 1, - sym__binary_predicate_parenthesized, - STATE(4444), 1, - sym__predicate, - ACTIONS(211), 2, - anon_sym_true, - anon_sym_false, - STATE(4394), 2, - sym_expr_unary, - sym_val_bool, - STATE(4573), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(225), 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, - [148130] = 25, + ACTIONS(6809), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6815), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6823), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6825), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6827), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6831), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6821), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6813), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [139994] = 25, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(375), 1, anon_sym_DASH2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6841), 1, + ACTIONS(6785), 1, sym__newline, - ACTIONS(6843), 1, + ACTIONS(6787), 1, anon_sym_LPAREN, - ACTIONS(6845), 1, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2104), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3855), 1, + STATE(3658), 1, + aux_sym_shebang_repeat1, + STATE(3670), 1, sym_expr_parenthesized, - STATE(3875), 1, + STATE(3674), 1, sym_comment, - STATE(3876), 1, - aux_sym_shebang_repeat1, - STATE(4086), 1, + STATE(3868), 1, sym_val_number, - STATE(4294), 1, + STATE(4191), 1, sym__binary_predicate_parenthesized, - STATE(4295), 1, + STATE(4192), 1, sym__predicate, ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4394), 2, + STATE(4183), 2, sym_expr_unary, sym_val_bool, - STATE(4573), 2, + STATE(4357), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -365552,56 +349892,107 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [148213] = 25, + [140077] = 18, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5373), 1, + anon_sym_DASH2, + ACTIONS(5379), 1, + anon_sym_and2, + ACTIONS(5389), 1, + anon_sym_PLUS2, + ACTIONS(5393), 1, + anon_sym_bit_DASHand2, + ACTIONS(5395), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5397), 1, + anon_sym_bit_DASHor2, + ACTIONS(5399), 1, + anon_sym_xor2, + ACTIONS(6923), 1, + anon_sym_or2, + STATE(3675), 1, + sym_comment, + ACTIONS(5371), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5377), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5383), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5385), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5387), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5391), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5381), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5375), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [140146] = 25, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(375), 1, anon_sym_DASH2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6841), 1, + ACTIONS(6785), 1, sym__newline, - ACTIONS(6843), 1, + ACTIONS(6787), 1, anon_sym_LPAREN, - ACTIONS(6845), 1, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2104), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3855), 1, + STATE(3659), 1, + aux_sym_shebang_repeat1, + STATE(3670), 1, sym_expr_parenthesized, - STATE(3876), 1, + STATE(3676), 1, sym_comment, - STATE(3966), 1, - aux_sym_shebang_repeat1, - STATE(4086), 1, + STATE(3868), 1, sym_val_number, - STATE(4383), 1, + STATE(4039), 1, sym__binary_predicate_parenthesized, - STATE(4384), 1, + STATE(4040), 1, sym__predicate, ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4394), 2, + STATE(4183), 2, sym_expr_unary, sym_val_bool, - STATE(4573), 2, + STATE(4357), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -365610,31 +350001,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [148296] = 7, + [140229] = 18, ACTIONS(245), 1, anon_sym_POUND, - STATE(3877), 1, + ACTIONS(6404), 1, + anon_sym_DASH2, + ACTIONS(6412), 1, + anon_sym_PLUS2, + ACTIONS(6424), 1, + anon_sym_bit_DASHand2, + ACTIONS(6426), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6428), 1, + anon_sym_bit_DASHor2, + ACTIONS(6430), 1, + anon_sym_and2, + ACTIONS(6432), 1, + anon_sym_xor2, + ACTIONS(6925), 1, + anon_sym_or2, + STATE(3677), 1, sym_comment, - ACTIONS(6987), 2, + ACTIONS(6406), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6408), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6410), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6414), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6416), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6993), 2, + ACTIONS(6422), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6991), 4, + ACTIONS(6418), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6989), 6, + ACTIONS(6420), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6973), 15, - ts_builtin_sym_end, + [140298] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(3678), 1, + sym_comment, + STATE(4567), 1, + sym_redirection, + ACTIONS(6905), 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(6907), 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(6927), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365646,17 +350089,67 @@ static const uint16_t ts_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, + [140343] = 18, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6851), 1, + anon_sym_DASH2, + ACTIONS(6859), 1, + anon_sym_PLUS2, + ACTIONS(6871), 1, + anon_sym_bit_DASHand2, + ACTIONS(6873), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6875), 1, + anon_sym_bit_DASHor2, + ACTIONS(6877), 1, anon_sym_and2, + ACTIONS(6879), 1, anon_sym_xor2, + ACTIONS(6929), 1, anon_sym_or2, - [148342] = 6, + STATE(3679), 1, + sym_comment, + ACTIONS(6853), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6855), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6857), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6861), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6863), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6869), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6865), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6867), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [140412] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(3878), 1, + STATE(3680), 1, sym_comment, - STATE(5077), 1, + STATE(4761), 1, sym_redirection, - ACTIONS(6961), 8, + ACTIONS(6905), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -365665,7 +350158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6963), 8, + ACTIONS(6907), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -365674,7 +350167,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(6995), 12, + ACTIONS(6931), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365687,14 +350180,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [148386] = 6, + [140456] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(3879), 1, + STATE(3681), 1, sym_comment, - STATE(5140), 1, + STATE(4748), 1, sym_redirection, - ACTIONS(6961), 8, + ACTIONS(6905), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -365703,7 +350196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6963), 8, + ACTIONS(6907), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -365712,7 +350205,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(6997), 12, + ACTIONS(6933), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365725,14 +350218,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [148430] = 6, + [140500] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(3880), 1, + STATE(3682), 1, sym_comment, - STATE(5048), 1, + STATE(4781), 1, sym_redirection, - ACTIONS(6999), 8, + ACTIONS(6935), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -365741,7 +350234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(7001), 8, + ACTIONS(6937), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -365750,7 +350243,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(6959), 12, + ACTIONS(6903), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -365763,14 +350256,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, - [148474] = 6, + [140544] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(3881), 1, + STATE(3683), 1, sym_comment, - STATE(5056), 1, + ACTIONS(6939), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6945), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6943), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6941), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6911), 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, + [140590] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(3684), 1, + sym_comment, + STATE(4730), 1, sym_redirection, - ACTIONS(6999), 8, + ACTIONS(6935), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -365779,7 +350311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(7001), 8, + ACTIONS(6937), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -365788,7 +350320,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(6965), 12, + ACTIONS(6927), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -365801,52 +350333,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [148518] = 23, + [140634] = 23, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(375), 1, anon_sym_DASH2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6843), 1, + ACTIONS(6787), 1, anon_sym_LPAREN, - ACTIONS(6845), 1, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2104), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3855), 1, + STATE(3670), 1, sym_expr_parenthesized, - STATE(3882), 1, + STATE(3685), 1, sym_comment, - STATE(4086), 1, + STATE(3868), 1, sym_val_number, - STATE(4455), 1, + STATE(4166), 1, sym__binary_predicate, - STATE(4466), 1, + STATE(4206), 1, sym__predicate, ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4394), 2, + STATE(4183), 2, + sym_expr_unary, + sym_val_bool, + STATE(4357), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(225), 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, + [140711] = 23, + ACTIONS(47), 1, + anon_sym_DASH2, + ACTIONS(223), 1, + aux_sym__val_number_token5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(3338), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3340), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3474), 1, + aux_sym_expr_unary_token1, + ACTIONS(5822), 1, + anon_sym_LPAREN, + ACTIONS(6783), 1, + sym_identifier, + ACTIONS(6789), 1, + anon_sym_DOLLAR, + ACTIONS(6793), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6795), 1, + aux_sym__val_number_decimal_token2, + STATE(1499), 1, + sym__val_number, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2338), 1, + sym__expr_unary_minus, + STATE(3683), 1, + sym_expr_parenthesized, + STATE(3686), 1, + sym_comment, + STATE(3868), 1, + sym_val_number, + STATE(4300), 1, + sym__binary_predicate, + STATE(4325), 1, + sym__predicate, + ACTIONS(89), 2, + anon_sym_true, + anon_sym_false, + STATE(4276), 2, sym_expr_unary, sym_val_bool, - STATE(4573), 2, + STATE(4349), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -365855,52 +350441,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [148595] = 23, + [140788] = 23, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(375), 1, anon_sym_DASH2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6843), 1, + ACTIONS(6787), 1, anon_sym_LPAREN, - ACTIONS(6845), 1, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2104), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3855), 1, + STATE(3670), 1, sym_expr_parenthesized, - STATE(3883), 1, + STATE(3687), 1, sym_comment, - STATE(4086), 1, + STATE(3868), 1, sym_val_number, - STATE(4398), 1, - sym__binary_predicate, - STATE(4400), 1, + STATE(4044), 1, sym__predicate, + STATE(4130), 1, + sym__binary_predicate, ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4394), 2, + STATE(4183), 2, sym_expr_unary, sym_val_bool, - STATE(4573), 2, + STATE(4357), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -365909,52 +350495,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [148672] = 23, - ACTIONS(47), 1, - anon_sym_DASH2, + [140865] = 23, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3426), 1, + ACTIONS(375), 1, + anon_sym_DASH2, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3510), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(5888), 1, - anon_sym_LPAREN, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6845), 1, + ACTIONS(6787), 1, + anon_sym_LPAREN, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2511), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3877), 1, + STATE(3670), 1, sym_expr_parenthesized, - STATE(3884), 1, + STATE(3688), 1, sym_comment, - STATE(4086), 1, + STATE(3868), 1, sym_val_number, - STATE(4527), 1, + STATE(4109), 1, sym__binary_predicate, - STATE(4535), 1, + STATE(4116), 1, sym__predicate, - ACTIONS(89), 2, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4550), 2, + STATE(4183), 2, sym_expr_unary, sym_val_bool, - STATE(4721), 2, + STATE(4357), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -365963,52 +350549,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [148749] = 23, - ACTIONS(47), 1, - anon_sym_DASH2, + [140942] = 23, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3426), 1, + ACTIONS(375), 1, + anon_sym_DASH2, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3510), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(5888), 1, - anon_sym_LPAREN, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6845), 1, + ACTIONS(6787), 1, + anon_sym_LPAREN, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2511), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3877), 1, + STATE(3670), 1, sym_expr_parenthesized, - STATE(3885), 1, + STATE(3689), 1, sym_comment, - STATE(4086), 1, + STATE(3868), 1, sym_val_number, - STATE(4491), 1, + STATE(4117), 1, sym__binary_predicate, - STATE(4493), 1, + STATE(4128), 1, sym__predicate, - ACTIONS(89), 2, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4550), 2, + STATE(4183), 2, sym_expr_unary, sym_val_bool, - STATE(4721), 2, + STATE(4357), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -366017,52 +350603,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [148826] = 23, + [141019] = 23, ACTIONS(47), 1, anon_sym_DASH2, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3510), 1, + ACTIONS(3474), 1, aux_sym_expr_unary_token1, - ACTIONS(5888), 1, + ACTIONS(5822), 1, anon_sym_LPAREN, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6845), 1, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2511), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2338), 1, sym__expr_unary_minus, - STATE(3877), 1, + STATE(3683), 1, sym_expr_parenthesized, - STATE(3886), 1, + STATE(3690), 1, sym_comment, - STATE(4086), 1, + STATE(3868), 1, sym_val_number, - STATE(4522), 1, + STATE(4303), 1, sym__binary_predicate, - STATE(4525), 1, + STATE(4314), 1, sym__predicate, ACTIONS(89), 2, anon_sym_true, anon_sym_false, - STATE(4550), 2, + STATE(4276), 2, sym_expr_unary, sym_val_bool, - STATE(4721), 2, + STATE(4349), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -366071,52 +350657,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [148903] = 23, + [141096] = 23, + ACTIONS(47), 1, + anon_sym_DASH2, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(375), 1, - anon_sym_DASH2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, + ACTIONS(3474), 1, aux_sym_expr_unary_token1, - ACTIONS(6839), 1, - sym_identifier, - ACTIONS(6843), 1, + ACTIONS(5822), 1, anon_sym_LPAREN, - ACTIONS(6845), 1, + ACTIONS(6783), 1, + sym_identifier, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2104), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2338), 1, sym__expr_unary_minus, - STATE(3855), 1, + STATE(3683), 1, sym_expr_parenthesized, - STATE(3887), 1, + STATE(3691), 1, sym_comment, - STATE(4086), 1, + STATE(3868), 1, sym_val_number, - STATE(4288), 1, + STATE(4315), 1, sym__binary_predicate, - STATE(4296), 1, + STATE(4322), 1, sym__predicate, - ACTIONS(211), 2, + ACTIONS(89), 2, anon_sym_true, anon_sym_false, - STATE(4394), 2, + STATE(4276), 2, sym_expr_unary, sym_val_bool, - STATE(4573), 2, + STATE(4349), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -366125,52 +350711,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [148980] = 23, + [141173] = 23, ACTIONS(47), 1, anon_sym_DASH2, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3510), 1, + ACTIONS(3474), 1, aux_sym_expr_unary_token1, - ACTIONS(5888), 1, + ACTIONS(5822), 1, anon_sym_LPAREN, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6845), 1, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2511), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2338), 1, sym__expr_unary_minus, - STATE(3877), 1, + STATE(3683), 1, sym_expr_parenthesized, - STATE(3888), 1, + STATE(3692), 1, sym_comment, - STATE(4086), 1, + STATE(3868), 1, sym_val_number, - STATE(4549), 1, + STATE(4305), 1, sym__binary_predicate, - STATE(4553), 1, + STATE(4306), 1, sym__predicate, ACTIONS(89), 2, anon_sym_true, anon_sym_false, - STATE(4550), 2, + STATE(4276), 2, sym_expr_unary, sym_val_bool, - STATE(4721), 2, + STATE(4349), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -366179,52 +350765,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [149057] = 23, + [141250] = 23, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(375), 1, anon_sym_DASH2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6843), 1, + ACTIONS(6787), 1, anon_sym_LPAREN, - ACTIONS(6845), 1, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2104), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3855), 1, + STATE(3670), 1, sym_expr_parenthesized, - STATE(3889), 1, + STATE(3693), 1, sym_comment, - STATE(4086), 1, + STATE(3868), 1, sym_val_number, - STATE(4305), 1, + STATE(4145), 1, sym__binary_predicate, - STATE(4325), 1, + STATE(4146), 1, sym__predicate, ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4394), 2, + STATE(4183), 2, sym_expr_unary, sym_val_bool, - STATE(4573), 2, + STATE(4357), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -366233,52 +350819,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [149134] = 23, + [141327] = 23, + ACTIONS(47), 1, + anon_sym_DASH2, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(375), 1, - anon_sym_DASH2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, + ACTIONS(3474), 1, aux_sym_expr_unary_token1, - ACTIONS(6839), 1, - sym_identifier, - ACTIONS(6843), 1, + ACTIONS(5822), 1, anon_sym_LPAREN, - ACTIONS(6845), 1, + ACTIONS(6783), 1, + sym_identifier, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2104), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2338), 1, sym__expr_unary_minus, - STATE(3855), 1, + STATE(3683), 1, sym_expr_parenthesized, - STATE(3890), 1, + STATE(3694), 1, sym_comment, - STATE(4086), 1, + STATE(3868), 1, sym_val_number, - STATE(4472), 1, - sym__binary_predicate, - STATE(4476), 1, + STATE(4252), 1, sym__predicate, - ACTIONS(211), 2, + STATE(4292), 1, + sym__binary_predicate, + ACTIONS(89), 2, anon_sym_true, anon_sym_false, - STATE(4394), 2, + STATE(4276), 2, sym_expr_unary, sym_val_bool, - STATE(4573), 2, + STATE(4349), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -366287,52 +350873,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [149211] = 23, + [141404] = 23, + ACTIONS(47), 1, + anon_sym_DASH2, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(375), 1, - anon_sym_DASH2, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3550), 1, + ACTIONS(3474), 1, aux_sym_expr_unary_token1, - ACTIONS(6839), 1, - sym_identifier, - ACTIONS(6843), 1, + ACTIONS(5822), 1, anon_sym_LPAREN, - ACTIONS(6845), 1, + ACTIONS(6783), 1, + sym_identifier, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2104), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2338), 1, sym__expr_unary_minus, - STATE(3855), 1, + STATE(3683), 1, sym_expr_parenthesized, - STATE(3891), 1, + STATE(3695), 1, sym_comment, - STATE(4086), 1, + STATE(3868), 1, sym_val_number, - STATE(4273), 1, + STATE(4248), 1, sym__binary_predicate, - STATE(4274), 1, + STATE(4258), 1, sym__predicate, - ACTIONS(211), 2, + ACTIONS(89), 2, anon_sym_true, anon_sym_false, - STATE(4394), 2, + STATE(4276), 2, sym_expr_unary, sym_val_bool, - STATE(4573), 2, + STATE(4349), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -366341,10 +350927,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [149288] = 4, + [141481] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3892), 1, + STATE(3696), 1, sym_comment, ACTIONS(982), 2, anon_sym_DASH2, @@ -366376,106 +350962,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [149327] = 23, - ACTIONS(47), 1, - anon_sym_DASH2, + [141520] = 23, ACTIONS(223), 1, aux_sym__val_number_token5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3426), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3510), 1, - aux_sym_expr_unary_token1, - ACTIONS(5888), 1, - anon_sym_LPAREN, - ACTIONS(6839), 1, - sym_identifier, - ACTIONS(6845), 1, - anon_sym_DOLLAR, - ACTIONS(6849), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, - aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, - sym__val_number, - STATE(2511), 1, - sym__expr_unary_minus, - STATE(3877), 1, - sym_expr_parenthesized, - STATE(3893), 1, - sym_comment, - STATE(4086), 1, - sym_val_number, - STATE(4489), 1, - sym__predicate, - STATE(4557), 1, - sym__binary_predicate, - ACTIONS(89), 2, - anon_sym_true, - anon_sym_false, - STATE(4550), 2, - sym_expr_unary, - sym_val_bool, - STATE(4721), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(225), 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, - [149404] = 23, - ACTIONS(47), 1, + ACTIONS(375), 1, anon_sym_DASH2, - ACTIONS(223), 1, - aux_sym__val_number_token5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3426), 1, + ACTIONS(3338), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3428), 1, + ACTIONS(3340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3510), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(5888), 1, - anon_sym_LPAREN, - ACTIONS(6839), 1, + ACTIONS(6783), 1, sym_identifier, - ACTIONS(6845), 1, + ACTIONS(6787), 1, + anon_sym_LPAREN, + ACTIONS(6789), 1, anon_sym_DOLLAR, - ACTIONS(6849), 1, + ACTIONS(6793), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6851), 1, + ACTIONS(6795), 1, aux_sym__val_number_decimal_token2, - STATE(1590), 1, - sym__val_number_decimal, - STATE(1591), 1, + STATE(1499), 1, sym__val_number, - STATE(2511), 1, + STATE(1518), 1, + sym__val_number_decimal, + STATE(2018), 1, sym__expr_unary_minus, - STATE(3877), 1, + STATE(3670), 1, sym_expr_parenthesized, - STATE(3894), 1, + STATE(3697), 1, sym_comment, - STATE(4086), 1, + STATE(3868), 1, sym_val_number, - STATE(4540), 1, + STATE(4151), 1, sym__binary_predicate, - STATE(4543), 1, + STATE(4165), 1, sym__predicate, - ACTIONS(89), 2, + ACTIONS(211), 2, anon_sym_true, anon_sym_false, - STATE(4550), 2, + STATE(4183), 2, sym_expr_unary, sym_val_bool, - STATE(4721), 2, + STATE(4357), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(225), 5, @@ -366484,29 +351016,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [149481] = 12, + [141597] = 12, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(1447), 1, aux_sym_unquoted_token2, - ACTIONS(4075), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(7003), 1, + ACTIONS(6947), 1, anon_sym_DOLLAR, - ACTIONS(7005), 1, + ACTIONS(6949), 1, anon_sym_DOT, - ACTIONS(7009), 1, + ACTIONS(6953), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7011), 1, + ACTIONS(6955), 1, aux_sym__immediate_decimal_token5, - STATE(3895), 1, + STATE(3698), 1, sym_comment, - STATE(3982), 1, + STATE(3797), 1, sym__immediate_decimal, - ACTIONS(7007), 2, + ACTIONS(6951), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4091), 2, + STATE(3885), 2, sym__expr_parenthesized_immediate, sym_val_variable, ACTIONS(1445), 16, @@ -366526,30 +351058,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [149535] = 11, + [141651] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4075), 1, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(4077), 1, - anon_sym_DOT, - ACTIONS(4081), 1, + ACTIONS(6947), 1, + anon_sym_DOLLAR, + ACTIONS(6959), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4083), 1, + ACTIONS(6961), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7003), 1, - anon_sym_DOLLAR, - STATE(3896), 1, + STATE(3699), 1, sym_comment, - STATE(4090), 1, + STATE(3906), 1, sym__immediate_decimal, - ACTIONS(4079), 2, + ACTIONS(6957), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4089), 2, + STATE(1773), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1482), 16, + ACTIONS(1445), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366566,33 +351098,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [149586] = 12, + [141702] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1447), 1, + ACTIONS(1477), 1, aux_sym_unquoted_token2, - ACTIONS(4501), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(7013), 1, + ACTIONS(6947), 1, anon_sym_DOLLAR, - ACTIONS(7015), 1, - anon_sym_DOT, - ACTIONS(7019), 1, + ACTIONS(6959), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7021), 1, + ACTIONS(6961), 1, aux_sym__immediate_decimal_token5, - STATE(3897), 1, + STATE(3700), 1, sym_comment, - STATE(4039), 1, + STATE(3924), 1, sym__immediate_decimal, - ACTIONS(7017), 2, + ACTIONS(6957), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4167), 2, + STATE(1823), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1445), 15, - ts_builtin_sym_end, + ACTIONS(1475), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366604,33 +351133,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, - [149639] = 11, + [141753] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - ACTIONS(4075), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(7003), 1, - anon_sym_DOLLAR, - ACTIONS(7025), 1, + ACTIONS(4033), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7027), 1, + ACTIONS(4035), 1, aux_sym__immediate_decimal_token5, - STATE(3898), 1, + ACTIONS(4172), 1, + anon_sym_DOT, + ACTIONS(6947), 1, + anon_sym_DOLLAR, + STATE(3701), 1, sym_comment, - STATE(4153), 1, + STATE(3884), 1, sym__immediate_decimal, - ACTIONS(7023), 2, + ACTIONS(4031), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1824), 2, + STATE(3883), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1468), 16, + ACTIONS(1489), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366647,59 +351178,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [149690] = 11, + [141804] = 12, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(1447), 1, aux_sym_unquoted_token2, - ACTIONS(4075), 1, + ACTIONS(4525), 1, anon_sym_LPAREN2, - ACTIONS(7003), 1, + ACTIONS(6963), 1, anon_sym_DOLLAR, - ACTIONS(7025), 1, + ACTIONS(6965), 1, + anon_sym_DOT, + ACTIONS(6969), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7027), 1, + ACTIONS(6971), 1, aux_sym__immediate_decimal_token5, - STATE(3899), 1, + STATE(3702), 1, sym_comment, - STATE(4150), 1, + STATE(3823), 1, sym__immediate_decimal, - ACTIONS(7023), 2, + ACTIONS(6967), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1804), 2, + STATE(3911), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1445), 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, - [149741] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(935), 1, - anon_sym_DOT_DOT2, - ACTIONS(7029), 1, - anon_sym_DOT2, - STATE(1450), 1, - sym_path, - STATE(3900), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(937), 21, + ACTIONS(1445), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366711,24 +351216,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_in2, - 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_COLON2, - [149781] = 4, + [141857] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5012), 1, + ACTIONS(4976), 1, anon_sym_DASH2, - STATE(3901), 1, + STATE(3703), 1, sym_comment, - ACTIONS(5010), 24, + ACTIONS(4974), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366753,61 +351251,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [149817] = 11, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(4501), 1, - anon_sym_LPAREN2, - ACTIONS(7013), 1, - anon_sym_DOLLAR, - ACTIONS(7034), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7036), 1, - aux_sym__immediate_decimal_token5, - STATE(3902), 1, - sym_comment, - STATE(4215), 1, - sym__immediate_decimal, - ACTIONS(7032), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2493), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1445), 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, - [149867] = 8, + [141893] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(925), 1, + ACTIONS(931), 1, anon_sym_DOT_DOT2, - ACTIONS(7038), 1, + ACTIONS(6973), 1, anon_sym_DOT2, - STATE(1450), 1, + STATE(1374), 1, sym_path, - STATE(3892), 1, - sym_cell_path, - STATE(3903), 1, + STATE(3704), 2, sym_comment, - STATE(3915), 1, aux_sym_cell_path_repeat1, - ACTIONS(927), 20, + ACTIONS(933), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366828,54 +351284,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [149911] = 4, + anon_sym_COLON2, + [141933] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5034), 1, - anon_sym_DASH2, - STATE(3904), 1, - sym_comment, - ACTIONS(5032), 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_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_as, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + ACTIONS(1477), 1, + aux_sym_unquoted_token2, + ACTIONS(4525), 1, anon_sym_LPAREN2, - [149947] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1698), 1, - anon_sym_DOT_DOT2, - ACTIONS(7038), 1, - anon_sym_DOT2, - STATE(1450), 1, - sym_path, - STATE(1482), 1, - sym_cell_path, - STATE(3905), 1, + ACTIONS(6963), 1, + anon_sym_DOLLAR, + ACTIONS(6978), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6980), 1, + aux_sym__immediate_decimal_token5, + STATE(3705), 1, sym_comment, - STATE(3915), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1700), 20, + STATE(3997), 1, + sym__immediate_decimal, + ACTIONS(6976), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2353), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1475), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366887,28 +351321,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_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_COLON2, - [149991] = 6, - ACTIONS(245), 1, + [141983] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7040), 1, + ACTIONS(1445), 1, + sym__space, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(2014), 1, + anon_sym_DOLLAR, + ACTIONS(6982), 1, + anon_sym_LPAREN2, + ACTIONS(6984), 1, + anon_sym_DOT, + ACTIONS(6986), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7042), 1, - aux_sym__immediate_decimal_token2, - STATE(3906), 1, + ACTIONS(6988), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6990), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6992), 1, + aux_sym__immediate_decimal_token5, + STATE(3706), 1, sym_comment, - ACTIONS(1484), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1486), 21, + STATE(3886), 1, + sym__immediate_decimal, + STATE(4030), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1431), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366922,30 +351366,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, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [150031] = 8, + [142039] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1711), 1, + ACTIONS(925), 1, anon_sym_DOT_DOT2, - ACTIONS(7038), 1, + ACTIONS(6994), 1, anon_sym_DOT2, - STATE(1450), 1, + STATE(1374), 1, sym_path, - STATE(1483), 1, + STATE(3696), 1, sym_cell_path, - STATE(3907), 1, + STATE(3707), 1, sym_comment, - STATE(3915), 1, + STATE(3715), 1, aux_sym_cell_path_repeat1, - ACTIONS(1713), 20, + ACTIONS(927), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366958,6 +351394,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_in2, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_and2, @@ -366965,20 +351402,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [150075] = 6, + [142083] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7044), 1, - anon_sym_DOT, - ACTIONS(7046), 1, + ACTIONS(6996), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6998), 1, aux_sym__immediate_decimal_token2, - STATE(3908), 1, + STATE(3708), 1, sym_comment, - ACTIONS(1492), 2, + ACTIONS(1491), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1494), 21, + ACTIONS(1493), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367000,30 +351436,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [150115] = 11, + [142123] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - ACTIONS(4501), 1, + ACTIONS(4525), 1, anon_sym_LPAREN2, - ACTIONS(7013), 1, - anon_sym_DOLLAR, - ACTIONS(7034), 1, + ACTIONS(4531), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7036), 1, + ACTIONS(4533), 1, aux_sym__immediate_decimal_token5, - STATE(3909), 1, + ACTIONS(4617), 1, + anon_sym_DOT, + ACTIONS(6963), 1, + anon_sym_DOLLAR, + STATE(3709), 1, sym_comment, - STATE(4233), 1, + STATE(3910), 1, sym__immediate_decimal, - ACTIONS(7032), 2, + ACTIONS(4529), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2503), 2, + STATE(3887), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1468), 15, + ACTIONS(1489), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -367039,28 +351475,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [150165] = 10, + [142173] = 6, ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4075), 1, - anon_sym_LPAREN2, - ACTIONS(4081), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4083), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7003), 1, - anon_sym_DOLLAR, - STATE(1802), 1, - sym__immediate_decimal, - STATE(3910), 1, + anon_sym_POUND, + ACTIONS(7000), 1, + anon_sym_DOT, + ACTIONS(7002), 1, + aux_sym__immediate_decimal_token2, + STATE(3710), 1, sym_comment, - ACTIONS(4486), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1801), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1482), 16, + ACTIONS(1499), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1501), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367077,28 +351504,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [150213] = 10, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [142213] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4075), 1, - anon_sym_LPAREN2, - ACTIONS(4081), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4083), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7003), 1, - anon_sym_DOLLAR, - STATE(1819), 1, - sym__immediate_decimal, - STATE(3911), 1, + ACTIONS(1668), 1, + anon_sym_DOT_DOT2, + ACTIONS(6994), 1, + anon_sym_DOT2, + STATE(1374), 1, + sym_path, + STATE(1448), 1, + sym_cell_path, + STATE(3711), 1, sym_comment, - ACTIONS(4486), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1818), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1646), 16, + STATE(3715), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1670), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367111,32 +351537,36 @@ 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, - [150261] = 10, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [142257] = 10, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4075), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(4081), 1, + ACTIONS(4033), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4083), 1, + ACTIONS(4035), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7003), 1, + ACTIONS(6947), 1, anon_sym_DOLLAR, - STATE(1821), 1, + STATE(1818), 1, sym__immediate_decimal, - STATE(3912), 1, + STATE(3712), 1, sym_comment, - ACTIONS(4486), 2, + ACTIONS(4424), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1820), 2, + STATE(1817), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1577), 16, + ACTIONS(1646), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367153,28 +351583,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [150309] = 10, + [142305] = 10, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4075), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(4081), 1, + ACTIONS(4033), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4083), 1, + ACTIONS(4035), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7003), 1, + ACTIONS(6947), 1, anon_sym_DOLLAR, - STATE(1823), 1, + STATE(1816), 1, sym__immediate_decimal, - STATE(3913), 1, + STATE(3713), 1, sym_comment, - ACTIONS(4486), 2, + ACTIONS(4424), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1822), 2, + STATE(1815), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1552), 16, + ACTIONS(1634), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367191,31 +351621,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [150357] = 11, + [142353] = 10, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4501), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(4507), 1, + ACTIONS(4033), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4509), 1, + ACTIONS(4035), 1, aux_sym__immediate_decimal_token5, - ACTIONS(4655), 1, - anon_sym_DOT, - ACTIONS(7013), 1, + ACTIONS(6947), 1, anon_sym_DOLLAR, - STATE(3914), 1, - sym_comment, - STATE(4166), 1, + STATE(1822), 1, sym__immediate_decimal, - ACTIONS(4505), 2, + STATE(3714), 1, + sym_comment, + ACTIONS(4424), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4165), 2, + STATE(1821), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1482), 15, - ts_builtin_sym_end, + ACTIONS(1546), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367227,23 +351654,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, - [150407] = 7, + [142401] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(931), 1, + ACTIONS(938), 1, anon_sym_DOT_DOT2, - ACTIONS(7038), 1, + ACTIONS(6994), 1, anon_sym_DOT2, - STATE(1450), 1, + STATE(1374), 1, sym_path, - STATE(3900), 1, + STATE(3704), 1, aux_sym_cell_path_repeat1, - STATE(3915), 1, + STATE(3715), 1, sym_comment, - ACTIONS(933), 21, + ACTIONS(940), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367265,35 +351694,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [150449] = 14, - ACTIONS(3), 1, + [142443] = 10, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1445), 1, - sym__space, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(2134), 1, - anon_sym_DOLLAR, - ACTIONS(7048), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(7050), 1, - anon_sym_DOT, - ACTIONS(7052), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7054), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7056), 1, + ACTIONS(4033), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7058), 1, + ACTIONS(4035), 1, aux_sym__immediate_decimal_token5, - STATE(3916), 1, - sym_comment, - STATE(4062), 1, + ACTIONS(6947), 1, + anon_sym_DOLLAR, + STATE(1771), 1, sym__immediate_decimal, - STATE(4239), 2, + STATE(3716), 1, + sym_comment, + ACTIONS(4424), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1770), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1431), 13, + ACTIONS(1489), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367307,20 +351729,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [150505] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [142491] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7060), 1, - anon_sym_DOT, - ACTIONS(7062), 1, - aux_sym__immediate_decimal_token2, - STATE(3917), 1, + ACTIONS(4968), 1, + anon_sym_DASH2, + STATE(3717), 1, sym_comment, - ACTIONS(1492), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1494), 20, - ts_builtin_sym_end, + ACTIONS(4966), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367332,36 +351751,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_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_as, 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, - [150544] = 10, + [142527] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4501), 1, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(4525), 1, anon_sym_LPAREN2, - ACTIONS(4507), 1, + ACTIONS(6963), 1, + anon_sym_DOLLAR, + ACTIONS(6978), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4509), 1, + ACTIONS(6980), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7013), 1, - anon_sym_DOLLAR, - STATE(2499), 1, - sym__immediate_decimal, - STATE(3918), 1, + STATE(3718), 1, sym_comment, - ACTIONS(4685), 2, + STATE(3971), 1, + sym__immediate_decimal, + ACTIONS(6976), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2498), 2, + STATE(2355), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1577), 15, + ACTIONS(1445), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -367377,73 +351803,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [150591] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1468), 1, - sym__space, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - ACTIONS(2134), 1, - anon_sym_DOLLAR, - ACTIONS(7048), 1, - anon_sym_LPAREN2, - ACTIONS(7064), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7066), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7068), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7070), 1, - aux_sym__immediate_decimal_token5, - STATE(3919), 1, - sym_comment, - STATE(4333), 1, - sym__immediate_decimal, - STATE(4578), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1466), 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, - [150644] = 13, - ACTIONS(3), 1, + [142577] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1482), 1, - sym__space, - ACTIONS(2134), 1, - anon_sym_DOLLAR, - ACTIONS(7048), 1, - anon_sym_LPAREN2, - ACTIONS(7052), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7054), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7056), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7058), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7072), 1, - anon_sym_DOT, - STATE(3920), 1, + ACTIONS(1674), 1, + anon_sym_DOT_DOT2, + ACTIONS(6994), 1, + anon_sym_DOT2, + STATE(1374), 1, + sym_path, + STATE(1451), 1, + sym_cell_path, + STATE(3715), 1, + aux_sym_cell_path_repeat1, + STATE(3719), 1, sym_comment, - STATE(4238), 1, - sym__immediate_decimal, - STATE(4237), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1472), 13, + ACTIONS(1676), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367456,65 +351831,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_LBRACE, anon_sym_RBRACE, - [150697] = 10, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4501), 1, - anon_sym_LPAREN2, - ACTIONS(4507), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4509), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7013), 1, - anon_sym_DOLLAR, - STATE(2501), 1, - sym__immediate_decimal, - STATE(3921), 1, - sym_comment, - ACTIONS(4685), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2500), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1552), 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, - [150744] = 10, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [142621] = 10, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - ACTIONS(7074), 1, + ACTIONS(7004), 1, anon_sym_DOT_DOT2, - ACTIONS(7078), 1, + ACTIONS(7008), 1, sym_filesize_unit, - ACTIONS(7080), 1, + ACTIONS(7010), 1, sym_duration_unit, - ACTIONS(7082), 1, + ACTIONS(7012), 1, aux_sym_unquoted_token2, - STATE(3922), 1, + STATE(3720), 1, sym_comment, - STATE(7446), 1, + STATE(6814), 1, sym__expr_parenthesized_immediate, - ACTIONS(7076), 2, + ACTIONS(7006), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1591), 16, + ACTIONS(1628), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367531,57 +351876,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [150791] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1445), 1, - sym__space, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(2134), 1, - anon_sym_DOLLAR, - ACTIONS(7048), 1, - anon_sym_LPAREN2, - ACTIONS(7064), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7066), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7068), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7070), 1, - aux_sym__immediate_decimal_token5, - STATE(3923), 1, - sym_comment, - STATE(4480), 1, - sym__immediate_decimal, - STATE(4733), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1431), 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, - [150844] = 5, + [142668] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7046), 1, + ACTIONS(7014), 1, aux_sym__immediate_decimal_token2, - STATE(3924), 1, + STATE(3721), 1, sym_comment, - ACTIONS(1492), 2, + ACTIONS(1579), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1494), 21, + ACTIONS(1581), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367603,19 +351908,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [150881] = 6, + [142705] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7084), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7086), 1, + ACTIONS(7016), 1, + anon_sym_DOT, + ACTIONS(7018), 1, aux_sym__immediate_decimal_token2, - STATE(3925), 1, + STATE(3722), 1, sym_comment, - ACTIONS(1484), 2, + ACTIONS(1499), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1486), 20, + ACTIONS(1501), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -367636,36 +351941,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [150920] = 14, + [142744] = 13, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1445), 1, + sym__space, ACTIONS(1447), 1, aux_sym_unquoted_token2, - ACTIONS(2228), 1, + ACTIONS(2014), 1, anon_sym_DOLLAR, - ACTIONS(7088), 1, + ACTIONS(6982), 1, anon_sym_LPAREN2, - ACTIONS(7090), 1, - anon_sym_DOT, - ACTIONS(7092), 1, + ACTIONS(7020), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7094), 1, + ACTIONS(7022), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7096), 1, + ACTIONS(7024), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7098), 1, + ACTIONS(7026), 1, aux_sym__immediate_decimal_token5, - STATE(3926), 1, + STATE(3723), 1, sym_comment, - STATE(4146), 1, + STATE(4162), 1, sym__immediate_decimal, - ACTIONS(1445), 2, - ts_builtin_sym_end, - sym__space, - STATE(4360), 2, + STATE(4399), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1431), 11, + ACTIONS(1431), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367677,66 +351979,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, - [150975] = 10, - ACTIONS(245), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [142797] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4501), 1, - anon_sym_LPAREN2, - ACTIONS(4507), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4509), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7013), 1, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(2178), 1, anon_sym_DOLLAR, - STATE(2497), 1, - sym__immediate_decimal, - STATE(3927), 1, - sym_comment, - ACTIONS(4685), 2, + ACTIONS(7028), 1, + anon_sym_LPAREN2, + ACTIONS(7030), 1, + anon_sym_DOT, + ACTIONS(7032), 1, aux_sym__immediate_decimal_token1, + ACTIONS(7034), 1, aux_sym__immediate_decimal_token3, - STATE(2496), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1646), 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, - [151022] = 10, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4501), 1, - anon_sym_LPAREN2, - ACTIONS(4507), 1, + ACTIONS(7036), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4509), 1, + ACTIONS(7038), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7013), 1, - anon_sym_DOLLAR, - STATE(2491), 1, - sym__immediate_decimal, - STATE(3928), 1, + STATE(3724), 1, sym_comment, - ACTIONS(4685), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2490), 2, + STATE(3951), 1, + sym__immediate_decimal, + ACTIONS(1445), 2, + ts_builtin_sym_end, + sym__space, + STATE(4138), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1482), 15, - ts_builtin_sym_end, + ACTIONS(1431), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367748,20 +352022,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, - [151069] = 5, + [142852] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7100), 1, + ACTIONS(7002), 1, aux_sym__immediate_decimal_token2, - STATE(3929), 1, + STATE(3725), 1, sym_comment, - ACTIONS(1538), 2, + ACTIONS(1499), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1540), 21, + ACTIONS(1501), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367783,63 +352054,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [151106] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7102), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7104), 1, - aux_sym__immediate_decimal_token2, - STATE(3930), 1, - sym_comment, - ACTIONS(1486), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1484), 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, - [151144] = 12, - ACTIONS(3), 1, + [142889] = 10, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1482), 1, - sym__space, - ACTIONS(2134), 1, - anon_sym_DOLLAR, - ACTIONS(7048), 1, + ACTIONS(4525), 1, anon_sym_LPAREN2, - ACTIONS(7056), 1, + ACTIONS(4531), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7058), 1, + ACTIONS(4533), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7106), 1, + ACTIONS(6963), 1, + anon_sym_DOLLAR, + STATE(2348), 1, + sym__immediate_decimal, + STATE(3726), 1, + sym_comment, + ACTIONS(4656), 2, aux_sym__immediate_decimal_token1, - ACTIONS(7108), 1, aux_sym__immediate_decimal_token3, - STATE(3931), 1, - sym_comment, - STATE(4732), 1, - sym__immediate_decimal, - STATE(4731), 2, + STATE(2347), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1472), 13, + ACTIONS(1489), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367851,33 +352088,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, - [151194] = 12, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [142936] = 10, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1646), 1, - sym__space, - ACTIONS(2134), 1, - anon_sym_DOLLAR, - ACTIONS(7048), 1, + ACTIONS(4525), 1, anon_sym_LPAREN2, - ACTIONS(7056), 1, + ACTIONS(4531), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7058), 1, + ACTIONS(4533), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7106), 1, + ACTIONS(6963), 1, + anon_sym_DOLLAR, + STATE(2388), 1, + sym__immediate_decimal, + STATE(3727), 1, + sym_comment, + ACTIONS(4656), 2, aux_sym__immediate_decimal_token1, - ACTIONS(7108), 1, aux_sym__immediate_decimal_token3, - STATE(3932), 1, - sym_comment, - STATE(4570), 1, - sym__immediate_decimal, - STATE(4569), 2, + STATE(2386), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1644), 13, + ACTIONS(1646), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367889,33 +352125,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, - anon_sym_RBRACE, - [151244] = 12, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [142983] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1577), 1, + ACTIONS(1475), 1, sym__space, - ACTIONS(2134), 1, + ACTIONS(1477), 1, + aux_sym_unquoted_token2, + ACTIONS(2014), 1, anon_sym_DOLLAR, - ACTIONS(7048), 1, + ACTIONS(6982), 1, anon_sym_LPAREN2, - ACTIONS(7056), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7058), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7106), 1, + ACTIONS(7020), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7108), 1, + ACTIONS(7022), 1, aux_sym__immediate_decimal_token3, - STATE(3933), 1, + ACTIONS(7024), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7026), 1, + aux_sym__immediate_decimal_token5, + STATE(3728), 1, sym_comment, - STATE(4575), 1, + STATE(4235), 1, sym__immediate_decimal, - STATE(4571), 2, + STATE(4474), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1575), 13, + ACTIONS(1473), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367929,31 +352168,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [151294] = 12, - ACTIONS(3), 1, + [143036] = 10, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1552), 1, - sym__space, - ACTIONS(2134), 1, - anon_sym_DOLLAR, - ACTIONS(7048), 1, + ACTIONS(4525), 1, anon_sym_LPAREN2, - ACTIONS(7056), 1, + ACTIONS(4531), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7058), 1, + ACTIONS(4533), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7106), 1, + ACTIONS(6963), 1, + anon_sym_DOLLAR, + STATE(2390), 1, + sym__immediate_decimal, + STATE(3729), 1, + sym_comment, + ACTIONS(4656), 2, aux_sym__immediate_decimal_token1, - ACTIONS(7108), 1, aux_sym__immediate_decimal_token3, - STATE(3934), 1, - sym_comment, - STATE(4577), 1, - sym__immediate_decimal, - STATE(4576), 2, + STATE(2389), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1544), 13, + ACTIONS(1546), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367965,19 +352202,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_RPAREN, - anon_sym_RBRACE, - [151344] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [143083] = 10, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7062), 1, - aux_sym__immediate_decimal_token2, - STATE(3935), 1, + ACTIONS(4525), 1, + anon_sym_LPAREN2, + ACTIONS(4531), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4533), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6963), 1, + anon_sym_DOLLAR, + STATE(2385), 1, + sym__immediate_decimal, + STATE(3730), 1, sym_comment, - ACTIONS(1492), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1494), 20, + ACTIONS(4656), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2383), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1634), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -367993,28 +352242,33 @@ 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, - [151380] = 6, + [143130] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7110), 1, - anon_sym_DOT, - ACTIONS(7112), 1, - aux_sym__immediate_decimal_token2, - STATE(3936), 1, - sym_comment, - ACTIONS(1494), 6, + ACTIONS(1489), 1, sym__space, + ACTIONS(2014), 1, + anon_sym_DOLLAR, + ACTIONS(6982), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1492), 15, + ACTIONS(6986), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6988), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6990), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6992), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7040), 1, + anon_sym_DOT, + STATE(3731), 1, + sym_comment, + STATE(4029), 1, + sym__immediate_decimal, + STATE(4028), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1479), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368028,19 +352282,19 @@ 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, - [151418] = 5, + [143183] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7114), 1, + ACTIONS(7042), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7044), 1, aux_sym__immediate_decimal_token2, - STATE(3937), 1, + STATE(3732), 1, sym_comment, - ACTIONS(1538), 2, + ACTIONS(1491), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1540), 20, + ACTIONS(1493), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -368061,49 +352315,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [151454] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3938), 1, - sym_comment, - ACTIONS(1484), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1486), 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, - [151488] = 6, + [143222] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7116), 1, - anon_sym_DOT, - ACTIONS(7118), 1, + ACTIONS(7046), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7048), 1, aux_sym__immediate_decimal_token2, - STATE(3939), 1, + STATE(3733), 1, sym_comment, - ACTIONS(1666), 2, + ACTIONS(1686), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1668), 19, + ACTIONS(1688), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368123,15 +352347,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [151526] = 4, + [143260] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3940), 1, + STATE(3734), 1, sym_comment, - ACTIONS(1538), 2, + ACTIONS(1579), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1540), 21, + ACTIONS(1581), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368153,15 +352377,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [151560] = 4, + [143294] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(3941), 1, + ACTIONS(7050), 1, + anon_sym_DOT, + ACTIONS(7052), 1, + aux_sym__immediate_decimal_token2, + STATE(3735), 1, sym_comment, - ACTIONS(1715), 2, + ACTIONS(1701), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1717), 21, + ACTIONS(1703), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368181,29 +352409,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [151594] = 10, + [143332] = 10, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - ACTIONS(7120), 1, + ACTIONS(7054), 1, anon_sym_DOT_DOT2, - ACTIONS(7124), 1, + ACTIONS(7058), 1, sym_filesize_unit, - ACTIONS(7126), 1, + ACTIONS(7060), 1, sym_duration_unit, - ACTIONS(7128), 1, + ACTIONS(7062), 1, aux_sym_unquoted_token2, - STATE(3942), 1, + STATE(3736), 1, sym_comment, - STATE(7374), 1, + STATE(6963), 1, sym__expr_parenthesized_immediate, - ACTIONS(7122), 2, + ACTIONS(7056), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1591), 15, + ACTIONS(1628), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -368219,144 +352445,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [151640] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7130), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7132), 1, - aux_sym__immediate_decimal_token2, - STATE(3943), 1, - sym_comment, - ACTIONS(1648), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1650), 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, - [151678] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - ACTIONS(2228), 1, - anon_sym_DOLLAR, - ACTIONS(7088), 1, - anon_sym_LPAREN2, - ACTIONS(7134), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7136), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7138), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7140), 1, - aux_sym__immediate_decimal_token5, - STATE(3944), 1, - sym_comment, - STATE(4508), 1, - sym__immediate_decimal, - ACTIONS(1468), 2, - ts_builtin_sym_end, - sym__space, - STATE(4906), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1466), 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, - [151730] = 13, + [143378] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1447), 1, + ACTIONS(1477), 1, aux_sym_unquoted_token2, - ACTIONS(2228), 1, - anon_sym_DOLLAR, - ACTIONS(7088), 1, - anon_sym_LPAREN2, - ACTIONS(7134), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7136), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7138), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7140), 1, - aux_sym__immediate_decimal_token5, - STATE(3945), 1, - sym_comment, - STATE(4519), 1, - sym__immediate_decimal, - ACTIONS(1445), 2, - ts_builtin_sym_end, - sym__space, - STATE(4884), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1431), 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, - [151782] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2228), 1, + ACTIONS(2178), 1, anon_sym_DOLLAR, - ACTIONS(7088), 1, + ACTIONS(7028), 1, anon_sym_LPAREN2, - ACTIONS(7092), 1, + ACTIONS(7064), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7094), 1, + ACTIONS(7066), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7096), 1, + ACTIONS(7068), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7098), 1, + ACTIONS(7070), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7142), 1, - anon_sym_DOT, - STATE(3946), 1, + STATE(3737), 1, sym_comment, - STATE(4359), 1, + STATE(4320), 1, sym__immediate_decimal, - ACTIONS(1482), 2, + ACTIONS(1475), 2, ts_builtin_sym_end, sym__space, - STATE(4358), 2, + STATE(4531), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1472), 11, + ACTIONS(1473), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368368,15 +352484,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, - [151834] = 4, + [143430] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3947), 1, + STATE(3738), 1, sym_comment, - ACTIONS(1492), 2, + ACTIONS(1499), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1494), 21, + ACTIONS(1501), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368398,66 +352514,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [151868] = 12, - ACTIONS(3), 1, + [143464] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2228), 1, - anon_sym_DOLLAR, - ACTIONS(7088), 1, - anon_sym_LPAREN2, - ACTIONS(7096), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7098), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7144), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7146), 1, - aux_sym__immediate_decimal_token3, - STATE(3948), 1, + STATE(3739), 1, sym_comment, - STATE(4905), 1, - sym__immediate_decimal, - ACTIONS(1552), 2, - ts_builtin_sym_end, - sym__space, - STATE(4904), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1544), 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, - [151917] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1591), 1, - sym__space, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - ACTIONS(7148), 1, + ACTIONS(1678), 2, anon_sym_DOT_DOT2, - ACTIONS(7152), 1, - sym_filesize_unit, - ACTIONS(7154), 1, - sym_duration_unit, - ACTIONS(7156), 1, aux_sym_unquoted_token2, - STATE(3949), 1, - sym_comment, - STATE(7519), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7150), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1579), 13, + ACTIONS(1680), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368471,21 +352536,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [151964] = 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, + [143498] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7158), 1, + ACTIONS(7072), 1, + anon_sym_DOT, + ACTIONS(7074), 1, aux_sym__immediate_decimal_token2, - STATE(3950), 1, + STATE(3740), 1, sym_comment, - ACTIONS(1540), 6, + ACTIONS(1501), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1538), 15, + ACTIONS(1499), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368501,16 +352576,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [151999] = 4, - ACTIONS(245), 1, + [143536] = 13, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3951), 1, - sym_comment, - ACTIONS(1492), 2, - anon_sym_DOT_DOT2, + ACTIONS(1447), 1, aux_sym_unquoted_token2, - ACTIONS(1494), 20, + ACTIONS(2178), 1, + anon_sym_DOLLAR, + ACTIONS(7028), 1, + anon_sym_LPAREN2, + ACTIONS(7064), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7066), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7068), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7070), 1, + aux_sym__immediate_decimal_token5, + STATE(3741), 1, + sym_comment, + STATE(4321), 1, + sym__immediate_decimal, + ACTIONS(1445), 2, ts_builtin_sym_end, + sym__space, + STATE(4512), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1431), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368522,40 +352615,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_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, - [152032] = 12, + [143588] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2228), 1, + ACTIONS(2178), 1, anon_sym_DOLLAR, - ACTIONS(7088), 1, + ACTIONS(7028), 1, anon_sym_LPAREN2, - ACTIONS(7096), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7098), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7144), 1, + ACTIONS(7032), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7146), 1, + ACTIONS(7034), 1, aux_sym__immediate_decimal_token3, - STATE(3952), 1, + ACTIONS(7036), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7038), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7076), 1, + anon_sym_DOT, + STATE(3742), 1, sym_comment, - STATE(4901), 1, + STATE(4049), 1, sym__immediate_decimal, - ACTIONS(1646), 2, + ACTIONS(1489), 2, ts_builtin_sym_end, sym__space, - STATE(4900), 2, + STATE(4158), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1644), 11, + ACTIONS(1479), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368567,15 +352654,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, - [152081] = 4, + [143640] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(3953), 1, + ACTIONS(7078), 1, + aux_sym__immediate_decimal_token2, + STATE(3743), 1, sym_comment, - ACTIONS(1484), 2, + ACTIONS(1579), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1486), 20, + ACTIONS(1581), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -368596,63 +352685,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [152114] = 14, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7160), 1, - anon_sym_DOLLAR, - ACTIONS(7162), 1, - anon_sym_LPAREN2, - ACTIONS(7164), 1, - anon_sym_DOT, - ACTIONS(7166), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7168), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7170), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7172), 1, - aux_sym__immediate_decimal_token5, - STATE(3954), 1, - sym_comment, - STATE(4219), 1, - sym__immediate_decimal, - ACTIONS(1431), 2, - sym_identifier, - anon_sym_DASH2, - STATE(4560), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1445), 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, - [152167] = 6, + [143676] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7174), 1, - anon_sym_DOT, - ACTIONS(7176), 1, + ACTIONS(7080), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7082), 1, aux_sym__immediate_decimal_token2, - STATE(3955), 1, + STATE(3744), 1, sym_comment, - ACTIONS(1494), 7, - ts_builtin_sym_end, + ACTIONS(1493), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1492), 13, + ACTIONS(1491), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368664,85 +352713,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_DOT_DOT2, aux_sym_unquoted_token2, - [152204] = 5, + [143714] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7112), 1, - aux_sym__immediate_decimal_token2, - STATE(3956), 1, - sym_comment, - ACTIONS(1494), 6, + ACTIONS(1489), 1, sym__space, + ACTIONS(2014), 1, + anon_sym_DOLLAR, + ACTIONS(6982), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1492), 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, - [152239] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(925), 1, - anon_sym_DOT_DOT2, - ACTIONS(4835), 1, - anon_sym_DOT2, - STATE(1452), 1, - sym_cell_path, - STATE(1628), 1, - aux_sym_cell_path_repeat1, - STATE(1858), 1, - sym_path, - STATE(3957), 1, - sym_comment, - ACTIONS(927), 17, - 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, - [152280] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7178), 1, + ACTIONS(6990), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6992), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7084), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7180), 1, - aux_sym__immediate_decimal_token2, - STATE(3958), 1, + ACTIONS(7086), 1, + aux_sym__immediate_decimal_token3, + STATE(3745), 1, sym_comment, - ACTIONS(1648), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1650), 18, - ts_builtin_sym_end, + STATE(4423), 1, + sym__immediate_decimal, + STATE(4418), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1479), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368754,51 +352753,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_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [152317] = 4, - ACTIONS(245), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [143764] = 12, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3959), 1, - sym_comment, - ACTIONS(1538), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1540), 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(1634), 1, + sym__space, + ACTIONS(2014), 1, + anon_sym_DOLLAR, + ACTIONS(6982), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [152350] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(3960), 1, + ACTIONS(6990), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6992), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7084), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7086), 1, + aux_sym__immediate_decimal_token3, + STATE(3746), 1, sym_comment, - ACTIONS(1715), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1717), 20, - ts_builtin_sym_end, + STATE(4436), 1, + sym__immediate_decimal, + STATE(4429), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1632), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368810,32 +352791,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_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [152383] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [143814] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7182), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7184), 1, - aux_sym__immediate_decimal_token2, - STATE(3961), 1, - sym_comment, - ACTIONS(1486), 7, - ts_builtin_sym_end, + ACTIONS(1646), 1, sym__space, + ACTIONS(2014), 1, + anon_sym_DOLLAR, + ACTIONS(6982), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1484), 13, + ACTIONS(6990), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6992), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7084), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7086), 1, + aux_sym__immediate_decimal_token3, + STATE(3747), 1, + sym_comment, + STATE(4466), 1, + sym__immediate_decimal, + STATE(4465), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1644), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368847,34 +352829,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_DOT_DOT2, - aux_sym_unquoted_token2, - [152420] = 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + [143864] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2228), 1, + ACTIONS(1546), 1, + sym__space, + ACTIONS(2014), 1, anon_sym_DOLLAR, - ACTIONS(7088), 1, + ACTIONS(6982), 1, anon_sym_LPAREN2, - ACTIONS(7096), 1, + ACTIONS(6990), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7098), 1, + ACTIONS(6992), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7144), 1, + ACTIONS(7084), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7146), 1, + ACTIONS(7086), 1, aux_sym__immediate_decimal_token3, - STATE(3962), 1, + STATE(3748), 1, sym_comment, - STATE(4903), 1, + STATE(4473), 1, sym__immediate_decimal, - ACTIONS(1577), 2, - ts_builtin_sym_end, - sym__space, - STATE(4902), 2, + STATE(4469), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1575), 11, + ACTIONS(1538), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368886,19 +352867,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, - [152469] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [143914] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7186), 1, - anon_sym_DOT, - ACTIONS(7188), 1, + ACTIONS(7018), 1, aux_sym__immediate_decimal_token2, - STATE(3963), 1, + STATE(3749), 1, sym_comment, - ACTIONS(1666), 2, + ACTIONS(1499), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1668), 18, + ACTIONS(1501), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -368917,17 +352898,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [152506] = 5, + sym_filesize_unit, + sym_duration_unit, + [143950] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7190), 1, - aux_sym__immediate_decimal_token2, - STATE(3964), 1, + STATE(3750), 1, sym_comment, - ACTIONS(1719), 2, + ACTIONS(1491), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1721), 19, + ACTIONS(1493), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368947,32 +352928,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [152541] = 12, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [143984] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2228), 1, - anon_sym_DOLLAR, ACTIONS(7088), 1, - anon_sym_LPAREN2, - ACTIONS(7096), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7098), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7144), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7146), 1, - aux_sym__immediate_decimal_token3, - STATE(3965), 1, + anon_sym_DOT, + ACTIONS(7090), 1, + aux_sym__immediate_decimal_token2, + STATE(3751), 1, sym_comment, - STATE(4883), 1, - sym__immediate_decimal, - ACTIONS(1482), 2, + ACTIONS(1701), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 18, ts_builtin_sym_end, - sym__space, - STATE(4882), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1472), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368984,47 +352955,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, - [152590] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7192), 1, - sym__newline, - STATE(3966), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1284), 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(1286), 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, - [152625] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [144021] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7118), 1, - aux_sym__immediate_decimal_token2, - STATE(3967), 1, + STATE(3752), 1, sym_comment, - ACTIONS(1666), 2, + ACTIONS(1491), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1668), 19, + ACTIONS(1493), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369036,27 +352982,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, - [152660] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3968), 1, - sym_comment, - ACTIONS(1486), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1484), 15, + [144054] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(3753), 1, + sym_comment, + ACTIONS(1579), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1581), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369068,24 +353011,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, - aux_sym_unquoted_token2, - [152692] = 7, + 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, + [144087] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7195), 1, - anon_sym_DOT2, - STATE(1450), 1, - sym_path, - STATE(1837), 1, - sym_cell_path, - STATE(3915), 1, - aux_sym_cell_path_repeat1, - STATE(3969), 1, + ACTIONS(7092), 1, + aux_sym__immediate_decimal_token2, + STATE(3754), 1, sym_comment, - ACTIONS(1947), 17, + ACTIONS(1760), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1762), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369098,25 +353042,27 @@ 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, - [152730] = 7, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [144122] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7195), 1, - anon_sym_DOT2, - STATE(1450), 1, - sym_path, - STATE(1838), 1, - sym_cell_path, - STATE(3915), 1, - aux_sym_cell_path_repeat1, - STATE(3970), 1, + ACTIONS(7094), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7096), 1, + aux_sym__immediate_decimal_token2, + STATE(3755), 1, sym_comment, - ACTIONS(1845), 17, + ACTIONS(1686), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1688), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369128,26 +353074,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_LBRACE, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [152768] = 7, - ACTIONS(245), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [144159] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7195), 1, - anon_sym_DOT2, - STATE(1450), 1, - sym_path, - STATE(1749), 1, - sym_cell_path, - STATE(3915), 1, - aux_sym_cell_path_repeat1, - STATE(3971), 1, + ACTIONS(7098), 1, + anon_sym_DOT, + ACTIONS(7100), 1, + aux_sym__immediate_decimal_token2, + STATE(3756), 1, sym_comment, - ACTIONS(1857), 17, + ACTIONS(1501), 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(1499), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369159,27 +353109,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_LBRACE, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [152806] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(1813), 1, - anon_sym_LPAREN2, - ACTIONS(7197), 1, anon_sym_DOT_DOT2, - STATE(3972), 1, + aux_sym_unquoted_token2, + [144196] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7074), 1, + aux_sym__immediate_decimal_token2, + STATE(3757), 1, sym_comment, - ACTIONS(7199), 2, + ACTIONS(1501), 6, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1819), 16, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1499), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369193,23 +353139,73 @@ 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, - [152844] = 7, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [144231] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7195), 1, - anon_sym_DOT2, - STATE(1450), 1, - sym_path, - STATE(1812), 1, - sym_cell_path, - STATE(3915), 1, - aux_sym_cell_path_repeat1, - STATE(3973), 1, + ACTIONS(1447), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7102), 1, + anon_sym_DOLLAR, + ACTIONS(7104), 1, + anon_sym_LPAREN2, + ACTIONS(7106), 1, + anon_sym_DOT, + ACTIONS(7108), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7110), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7112), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7114), 1, + aux_sym__immediate_decimal_token5, + STATE(3758), 1, sym_comment, - ACTIONS(1831), 17, + STATE(3967), 1, + sym__immediate_decimal, + ACTIONS(1431), 2, + sym_identifier, + anon_sym_DASH2, + STATE(4309), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1445), 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, + [144284] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2178), 1, + anon_sym_DOLLAR, + ACTIONS(7028), 1, + anon_sym_LPAREN2, + ACTIONS(7036), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7038), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7116), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7118), 1, + aux_sym__immediate_decimal_token3, + STATE(3759), 1, + sym_comment, + STATE(4511), 1, + sym__immediate_decimal, + ACTIONS(1489), 2, + ts_builtin_sym_end, + sym__space, + STATE(4510), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1479), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369221,26 +353217,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_LBRACE, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [152882] = 7, - ACTIONS(245), 1, + [144333] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7195), 1, - anon_sym_DOT2, - STATE(1450), 1, - sym_path, - STATE(2092), 1, - sym_cell_path, - STATE(3915), 1, - aux_sym_cell_path_repeat1, - STATE(3974), 1, + ACTIONS(2178), 1, + anon_sym_DOLLAR, + ACTIONS(7028), 1, + anon_sym_LPAREN2, + ACTIONS(7036), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7038), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7116), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7118), 1, + aux_sym__immediate_decimal_token3, + STATE(3760), 1, sym_comment, - ACTIONS(1841), 17, + STATE(4526), 1, + sym__immediate_decimal, + ACTIONS(1634), 2, + ts_builtin_sym_end, + sym__space, + STATE(4525), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1632), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369252,26 +353254,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_LBRACE, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [152920] = 7, - ACTIONS(245), 1, + [144382] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7195), 1, - anon_sym_DOT2, - STATE(1450), 1, - sym_path, - STATE(2099), 1, - sym_cell_path, - STATE(3915), 1, - aux_sym_cell_path_repeat1, - STATE(3975), 1, + ACTIONS(2178), 1, + anon_sym_DOLLAR, + ACTIONS(7028), 1, + anon_sym_LPAREN2, + ACTIONS(7036), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7038), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7116), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7118), 1, + aux_sym__immediate_decimal_token3, + STATE(3761), 1, sym_comment, - ACTIONS(1943), 17, + STATE(4528), 1, + sym__immediate_decimal, + ACTIONS(1646), 2, + ts_builtin_sym_end, + sym__space, + STATE(4527), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1644), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369283,26 +353291,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_LBRACE, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [152958] = 7, - ACTIONS(245), 1, + [144431] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7195), 1, - anon_sym_DOT2, - STATE(1450), 1, - sym_path, - STATE(1841), 1, - sym_cell_path, - STATE(3915), 1, - aux_sym_cell_path_repeat1, - STATE(3976), 1, + ACTIONS(2178), 1, + anon_sym_DOLLAR, + ACTIONS(7028), 1, + anon_sym_LPAREN2, + ACTIONS(7036), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7038), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7116), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7118), 1, + aux_sym__immediate_decimal_token3, + STATE(3762), 1, sym_comment, - ACTIONS(1885), 17, + STATE(4530), 1, + sym__immediate_decimal, + ACTIONS(1546), 2, + ts_builtin_sym_end, + sym__space, + STATE(4529), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1538), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369314,26 +353328,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, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [152996] = 7, + [144480] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7195), 1, - anon_sym_DOT2, - STATE(1450), 1, - sym_path, - STATE(1842), 1, - sym_cell_path, - STATE(3915), 1, - aux_sym_cell_path_repeat1, - STATE(3977), 1, + ACTIONS(7120), 1, + sym__newline, + STATE(3763), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1272), 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(1274), 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, + [144515] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7123), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7125), 1, + aux_sym__immediate_decimal_token2, + STATE(3764), 1, sym_comment, - ACTIONS(1893), 17, + ACTIONS(1493), 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(1491), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369345,26 +353387,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_LBRACE, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [153034] = 7, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [144552] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7195), 1, + ACTIONS(925), 1, + anon_sym_DOT_DOT2, + ACTIONS(4792), 1, anon_sym_DOT2, - STATE(1450), 1, - sym_path, - STATE(1843), 1, + STATE(1385), 1, sym_cell_path, - STATE(3915), 1, + STATE(1530), 1, aux_sym_cell_path_repeat1, - STATE(3978), 1, + STATE(1692), 1, + sym_path, + STATE(3765), 1, sym_comment, - ACTIONS(1925), 17, + ACTIONS(927), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369376,27 +353417,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_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [153072] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [144593] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7201), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7203), 1, + ACTIONS(7127), 1, aux_sym__immediate_decimal_token2, - STATE(3979), 1, + STATE(3766), 1, sym_comment, - ACTIONS(1650), 4, + ACTIONS(1581), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1648), 15, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1579), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369412,20 +353452,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [153108] = 7, + [144628] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7195), 1, - anon_sym_DOT2, - STATE(1450), 1, - sym_path, - STATE(1844), 1, - sym_cell_path, - STATE(3915), 1, - aux_sym_cell_path_repeat1, - STATE(3980), 1, + ACTIONS(7052), 1, + aux_sym__immediate_decimal_token2, + STATE(3767), 1, sym_comment, - ACTIONS(1933), 17, + ACTIONS(1701), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369438,25 +353475,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_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [153146] = 7, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [144663] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7195), 1, - anon_sym_DOT2, - STATE(1450), 1, - sym_path, - STATE(1845), 1, - sym_cell_path, - STATE(3915), 1, - aux_sym_cell_path_repeat1, - STATE(3981), 1, + STATE(3768), 1, sym_comment, - ACTIONS(1937), 17, + ACTIONS(1499), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1501), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369468,27 +353503,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_LBRACE, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [153184] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1780), 1, anon_sym_LPAREN2, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - ACTIONS(7205), 1, - anon_sym_DOT_DOT2, - STATE(3982), 1, - sym_comment, - ACTIONS(7207), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 16, + sym_filesize_unit, + sym_duration_unit, + [144696] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(3769), 1, + sym_comment, + ACTIONS(1678), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1680), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369500,65 +353532,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, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [153222] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7209), 1, - anon_sym_DOT, - ACTIONS(7211), 1, - aux_sym__immediate_decimal_token2, - STATE(3983), 1, - sym_comment, - ACTIONS(1668), 4, - sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1666), 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, - [153258] = 11, + sym_filesize_unit, + sym_duration_unit, + [144729] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(1628), 1, + sym__space, + ACTIONS(4208), 1, anon_sym_LPAREN2, - ACTIONS(7213), 1, + ACTIONS(7129), 1, anon_sym_DOT_DOT2, - ACTIONS(7217), 1, + ACTIONS(7133), 1, sym_filesize_unit, - ACTIONS(7219), 1, + ACTIONS(7135), 1, sym_duration_unit, - ACTIONS(7221), 1, + ACTIONS(7137), 1, aux_sym_unquoted_token2, - STATE(3984), 1, + STATE(3770), 1, sym_comment, - STATE(7510), 1, + STATE(6943), 1, sym__expr_parenthesized_immediate, - ACTIONS(1591), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7215), 2, + ACTIONS(7131), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1579), 11, + ACTIONS(1616), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369570,12 +353574,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, - [153304] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [144776] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(3985), 1, + STATE(3771), 1, sym_comment, - ACTIONS(1280), 10, + ACTIONS(1287), 10, sym_identifier, anon_sym_DASH2, anon_sym_true, @@ -369586,7 +353592,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - ACTIONS(1278), 11, + ACTIONS(1285), 11, anon_sym_EQ, sym__newline, anon_sym_COLON, @@ -369598,15 +353604,18 @@ 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, - [153336] = 4, + [144808] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(3986), 1, + ACTIONS(7090), 1, + aux_sym__immediate_decimal_token2, + STATE(3772), 1, sym_comment, - ACTIONS(1719), 2, + ACTIONS(1701), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1721), 19, + ACTIONS(1703), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369618,23 +353627,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, - [153368] = 4, + [144842] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(3987), 1, + ACTIONS(7139), 1, + aux_sym__immediate_decimal_token2, + STATE(3773), 1, sym_comment, - ACTIONS(1790), 2, + ACTIONS(1760), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1792), 19, + ACTIONS(1762), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369646,28 +353656,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_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, - [153400] = 7, + [144876] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7195), 1, + ACTIONS(7141), 1, anon_sym_DOT2, - STATE(1450), 1, + STATE(1374), 1, sym_path, - STATE(2124), 1, + STATE(1884), 1, sym_cell_path, - STATE(3915), 1, + STATE(3715), 1, aux_sym_cell_path_repeat1, - STATE(3988), 1, + STATE(3774), 1, sym_comment, - ACTIONS(1961), 17, + ACTIONS(1847), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369685,22 +353693,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [153438] = 5, + [144914] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7223), 1, - aux_sym__immediate_decimal_token2, - STATE(3989), 1, + ACTIONS(7143), 1, + anon_sym_DOT2, + STATE(3775), 1, sym_comment, - ACTIONS(1540), 7, - ts_builtin_sym_end, + STATE(3833), 1, + aux_sym_cell_path_repeat1, + STATE(3925), 1, + sym_path, + STATE(3980), 1, + sym_cell_path, + ACTIONS(1670), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1538), 13, + ACTIONS(1668), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369712,24 +353722,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, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [153472] = 5, + [144954] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7176), 1, - aux_sym__immediate_decimal_token2, - STATE(3990), 1, + STATE(3776), 1, sym_comment, - ACTIONS(1494), 7, - ts_builtin_sym_end, + ACTIONS(1501), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1492), 13, + ACTIONS(1499), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369741,22 +353749,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, - [153506] = 7, + [144986] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7195), 1, + ACTIONS(7141), 1, anon_sym_DOT2, - STATE(1450), 1, + STATE(1374), 1, sym_path, - STATE(1825), 1, + STATE(1904), 1, sym_cell_path, - STATE(3915), 1, + STATE(3715), 1, aux_sym_cell_path_repeat1, - STATE(3991), 1, + STATE(3777), 1, sym_comment, - ACTIONS(1837), 17, + ACTIONS(1917), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369774,52 +353784,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [153544] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3992), 1, - sym_comment, - ACTIONS(1540), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1538), 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, - [153576] = 8, - ACTIONS(3), 1, + [145024] = 7, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7225), 1, + ACTIONS(7141), 1, anon_sym_DOT2, - STATE(3993), 1, - sym_comment, - STATE(4047), 1, - aux_sym_cell_path_repeat1, - STATE(4106), 1, + STATE(1374), 1, sym_path, - STATE(4249), 1, + STATE(1824), 1, sym_cell_path, - ACTIONS(1700), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1698), 14, + STATE(3715), 1, + aux_sym_cell_path_repeat1, + STATE(3778), 1, + sym_comment, + ACTIONS(1835), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369832,26 +353810,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_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [153616] = 8, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [145062] = 7, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7225), 1, + ACTIONS(7141), 1, anon_sym_DOT2, - STATE(3994), 1, - sym_comment, - STATE(4047), 1, - aux_sym_cell_path_repeat1, - STATE(4106), 1, + STATE(1374), 1, sym_path, - STATE(4217), 1, + STATE(1825), 1, sym_cell_path, - ACTIONS(927), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(925), 14, + STATE(3715), 1, + aux_sym_cell_path_repeat1, + STATE(3779), 1, + sym_comment, + ACTIONS(1881), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369864,51 +353841,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_RBRACE, - anon_sym_DOT_DOT2, - [153656] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7227), 1, - anon_sym_QMARK2, - STATE(3995), 1, - sym_comment, - ACTIONS(948), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(950), 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_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [153690] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [145100] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7195), 1, + ACTIONS(7141), 1, anon_sym_DOT2, - STATE(1450), 1, + STATE(1374), 1, sym_path, - STATE(1826), 1, + STATE(1912), 1, sym_cell_path, - STATE(3915), 1, + STATE(3715), 1, aux_sym_cell_path_repeat1, - STATE(3996), 1, + STATE(3780), 1, sym_comment, - ACTIONS(1849), 17, + ACTIONS(1885), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369926,57 +353877,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [153728] = 13, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7160), 1, - anon_sym_DOLLAR, - ACTIONS(7162), 1, - anon_sym_LPAREN2, - ACTIONS(7229), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7231), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7233), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7235), 1, - aux_sym__immediate_decimal_token5, - STATE(3997), 1, - sym_comment, - STATE(4696), 1, - sym__immediate_decimal, - ACTIONS(1431), 2, - sym_identifier, - anon_sym_DASH2, - STATE(5018), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1445), 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, - [153778] = 7, + [145138] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7195), 1, + ACTIONS(7141), 1, anon_sym_DOT2, - STATE(1450), 1, + STATE(1374), 1, sym_path, - STATE(2108), 1, + STATE(1775), 1, sym_cell_path, - STATE(3915), 1, + STATE(3715), 1, aux_sym_cell_path_repeat1, - STATE(3998), 1, + STATE(3781), 1, sym_comment, - ACTIONS(1929), 17, + ACTIONS(1895), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369994,93 +353908,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [153816] = 6, - ACTIONS(245), 1, + [145176] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7237), 1, - anon_sym_DOT, - ACTIONS(7239), 1, - aux_sym__immediate_decimal_token2, - STATE(3999), 1, + ACTIONS(7143), 1, + anon_sym_DOT2, + STATE(3782), 1, sym_comment, - ACTIONS(1492), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_record_token2, - ACTIONS(1494), 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, + STATE(3833), 1, + aux_sym_cell_path_repeat1, + STATE(3925), 1, + sym_path, + STATE(3994), 1, + sym_cell_path, + ACTIONS(1676), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [153852] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7241), 1, - anon_sym_QMARK2, - STATE(4000), 1, - sym_comment, - ACTIONS(942), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(944), 17, - anon_sym_EQ, - sym_identifier, + ACTIONS(1674), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - 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, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [153886] = 13, + anon_sym_DOT_DOT2, + [145216] = 13, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1470), 1, + ACTIONS(1447), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(7160), 1, + ACTIONS(7102), 1, anon_sym_DOLLAR, - ACTIONS(7162), 1, + ACTIONS(7104), 1, anon_sym_LPAREN2, - ACTIONS(7229), 1, + ACTIONS(7145), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7231), 1, + ACTIONS(7147), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7233), 1, + ACTIONS(7149), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7235), 1, + ACTIONS(7151), 1, aux_sym__immediate_decimal_token5, - STATE(4001), 1, + STATE(3783), 1, sym_comment, - STATE(4711), 1, + STATE(4475), 1, sym__immediate_decimal, - ACTIONS(1466), 2, + ACTIONS(1431), 2, sym_identifier, anon_sym_DASH2, - STATE(5149), 2, + STATE(4813), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1468), 9, + ACTIONS(1445), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -370090,18 +353977,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [153936] = 5, + [145266] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7188), 1, - aux_sym__immediate_decimal_token2, - STATE(4002), 1, + ACTIONS(7141), 1, + anon_sym_DOT2, + STATE(1374), 1, + sym_path, + STATE(1930), 1, + sym_cell_path, + STATE(3715), 1, + aux_sym_cell_path_repeat1, + STATE(3784), 1, sym_comment, - ACTIONS(1666), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1668), 18, - ts_builtin_sym_end, + ACTIONS(1869), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370113,25 +354002,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_LBRACE, + 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, - [153970] = 4, + [145304] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4003), 1, + STATE(3785), 1, sym_comment, - ACTIONS(1717), 6, + ACTIONS(1493), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1715), 15, + ACTIONS(1491), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370147,18 +354036,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [154002] = 5, + [145336] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7243), 1, - aux_sym__immediate_decimal_token2, - STATE(4004), 1, - sym_comment, - ACTIONS(1719), 2, - anon_sym_DOT_DOT2, + ACTIONS(1447), 1, aux_sym_unquoted_token2, - ACTIONS(1721), 18, - ts_builtin_sym_end, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + ACTIONS(7153), 1, + anon_sym_DOT_DOT2, + STATE(3786), 1, + sym_comment, + ACTIONS(7155), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1813), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370170,25 +354062,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, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [154036] = 4, + [145374] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4005), 1, + ACTIONS(7157), 1, + aux_sym__immediate_decimal_token2, + STATE(3787), 1, sym_comment, - ACTIONS(1494), 6, + ACTIONS(1581), 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(1492), 15, + ACTIONS(1579), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370200,24 +354094,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, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [154068] = 7, + [145408] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7195), 1, + ACTIONS(7141), 1, anon_sym_DOT2, - STATE(1450), 1, + STATE(1374), 1, sym_path, - STATE(1828), 1, + STATE(1829), 1, sym_cell_path, - STATE(3915), 1, + STATE(3715), 1, aux_sym_cell_path_repeat1, - STATE(4006), 1, + STATE(3788), 1, sym_comment, - ACTIONS(1853), 17, + ACTIONS(1851), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370235,34 +354127,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [154106] = 13, + [145446] = 13, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7160), 1, + ACTIONS(7102), 1, anon_sym_DOLLAR, - ACTIONS(7162), 1, + ACTIONS(7104), 1, anon_sym_LPAREN2, - ACTIONS(7166), 1, + ACTIONS(7108), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7168), 1, + ACTIONS(7110), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7170), 1, + ACTIONS(7112), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7172), 1, + ACTIONS(7114), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7245), 1, + ACTIONS(7159), 1, anon_sym_DOT, - STATE(4007), 1, + STATE(3789), 1, sym_comment, - STATE(4538), 1, + STATE(4307), 1, sym__immediate_decimal, - ACTIONS(1472), 2, + ACTIONS(1479), 2, sym_identifier, anon_sym_DASH2, - STATE(4529), 2, + STATE(4302), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1482), 9, + ACTIONS(1489), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -370272,49 +354164,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [154156] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7195), 1, - anon_sym_DOT2, - STATE(1450), 1, - sym_path, - STATE(1829), 1, - sym_cell_path, - STATE(3915), 1, - aux_sym_cell_path_repeat1, - STATE(4008), 1, - sym_comment, - ACTIONS(1861), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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_LBRACE, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [154194] = 7, + [145496] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7195), 1, + ACTIONS(7141), 1, anon_sym_DOT2, - STATE(1450), 1, + STATE(1374), 1, sym_path, - STATE(1831), 1, + STATE(1834), 1, sym_cell_path, - STATE(3915), 1, + STATE(3715), 1, aux_sym_cell_path_repeat1, - STATE(4009), 1, + STATE(3790), 1, sym_comment, ACTIONS(1865), 17, sym__newline, @@ -370334,46 +354195,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [154232] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7195), 1, - anon_sym_DOT2, - STATE(1450), 1, - sym_path, - STATE(1832), 1, - sym_cell_path, - STATE(3915), 1, - aux_sym_cell_path_repeat1, - STATE(4010), 1, - sym_comment, - ACTIONS(1877), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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_LBRACE, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [154270] = 4, + [145534] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4011), 1, + STATE(3791), 1, sym_comment, - ACTIONS(1648), 2, + ACTIONS(1797), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1650), 19, + ACTIONS(1799), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370393,24 +354223,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [154302] = 8, + [145566] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7225), 1, - anon_sym_DOT2, - STATE(4012), 1, + ACTIONS(7161), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7163), 1, + aux_sym__immediate_decimal_token2, + STATE(3792), 1, sym_comment, - STATE(4047), 1, - aux_sym_cell_path_repeat1, - STATE(4106), 1, - sym_path, - STATE(4242), 1, - sym_cell_path, - ACTIONS(1713), 3, + ACTIONS(1688), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1711), 14, + ACTIONS(1686), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370425,51 +354252,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [154342] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7195), 1, - anon_sym_DOT2, - STATE(1450), 1, - sym_path, - STATE(1834), 1, - sym_cell_path, - STATE(3915), 1, - aux_sym_cell_path_repeat1, - STATE(4013), 1, - sym_comment, - ACTIONS(1881), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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_LBRACE, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [154380] = 7, + aux_sym_unquoted_token2, + [145602] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7195), 1, + ACTIONS(7141), 1, anon_sym_DOT2, - STATE(1450), 1, + STATE(1374), 1, sym_path, STATE(1835), 1, sym_cell_path, - STATE(3915), 1, + STATE(3715), 1, aux_sym_cell_path_repeat1, - STATE(4014), 1, + STATE(3793), 1, sym_comment, - ACTIONS(1897), 17, + ACTIONS(1909), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370487,15 +354284,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [154418] = 4, + [145640] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4015), 1, + STATE(3794), 1, sym_comment, - ACTIONS(1666), 2, + ACTIONS(1686), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1668), 19, + ACTIONS(1688), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370515,20 +354312,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [154450] = 7, - ACTIONS(245), 1, + [145672] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7195), 1, + ACTIONS(7143), 1, anon_sym_DOT2, - STATE(1450), 1, + STATE(3795), 1, + sym_comment, + STATE(3833), 1, + aux_sym_cell_path_repeat1, + STATE(3925), 1, sym_path, - STATE(1836), 1, + STATE(3998), 1, sym_cell_path, - STATE(3915), 1, - aux_sym_cell_path_repeat1, - STATE(4016), 1, - sym_comment, - ACTIONS(1915), 17, + ACTIONS(927), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(925), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370541,80 +354342,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_LBRACE, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [154488] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7247), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7249), 1, - aux_sym__immediate_decimal_token2, - STATE(4017), 1, - sym_comment, - ACTIONS(1484), 6, - sym_identifier, - anon_sym_DASH2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_record_token2, - ACTIONS(1486), 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, - [154524] = 4, + [145712] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(4018), 1, - sym_comment, - ACTIONS(970), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, + ACTIONS(7141), 1, anon_sym_DOT2, - ACTIONS(972), 17, - anon_sym_EQ, - sym_identifier, + STATE(1374), 1, + sym_path, + STATE(1837), 1, + sym_cell_path, + STATE(3715), 1, + aux_sym_cell_path_repeat1, + STATE(3796), 1, + sym_comment, + ACTIONS(1873), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - 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, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [154555] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [145750] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1666), 1, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1792), 1, aux_sym_unquoted_token2, - ACTIONS(7251), 1, - anon_sym_DOT, - ACTIONS(7253), 1, - aux_sym__immediate_decimal_token2, - STATE(4019), 1, + ACTIONS(7165), 1, + anon_sym_DOT_DOT2, + STATE(3797), 1, sym_comment, - ACTIONS(1668), 17, + ACTIONS(7167), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1790), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370631,16 +354406,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [154590] = 4, + [145788] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5012), 1, - anon_sym_DASH2, - STATE(4020), 1, + ACTIONS(7141), 1, + anon_sym_DOT2, + STATE(1374), 1, + sym_path, + STATE(1839), 1, + sym_cell_path, + STATE(3715), 1, + aux_sym_cell_path_repeat1, + STATE(3798), 1, sym_comment, - ACTIONS(5010), 19, - ts_builtin_sym_end, + ACTIONS(1831), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370652,32 +354431,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, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [154621] = 9, + [145826] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1591), 1, + STATE(3799), 1, + sym_comment, + ACTIONS(1680), 6, sym__space, - ACTIONS(4673), 1, - anon_sym_DOT_DOT2, - ACTIONS(7152), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, - ACTIONS(7154), 1, sym_duration_unit, - ACTIONS(7156), 1, + ACTIONS(1678), 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, - STATE(4021), 1, + [145858] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(3800), 1, sym_comment, - ACTIONS(4675), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1579), 13, + ACTIONS(1701), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370691,21 +354487,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [154662] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [145890] = 13, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7239), 1, - aux_sym__immediate_decimal_token2, - STATE(4022), 1, + ACTIONS(1477), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7102), 1, + anon_sym_DOLLAR, + ACTIONS(7104), 1, + anon_sym_LPAREN2, + ACTIONS(7145), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7147), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7149), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7151), 1, + aux_sym__immediate_decimal_token5, + STATE(3801), 1, sym_comment, - ACTIONS(1492), 6, + STATE(4449), 1, + sym__immediate_decimal, + ACTIONS(1473), 2, sym_identifier, anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_record_token2, - ACTIONS(1494), 13, + STATE(4828), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1475), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -370713,25 +354528,51 @@ 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, + [145940] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3802), 1, + sym_comment, + ACTIONS(1581), 6, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [154695] = 5, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1579), 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, + [145972] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7255), 1, + ACTIONS(7169), 1, + anon_sym_DOT, + ACTIONS(7171), 1, aux_sym__immediate_decimal_token2, - STATE(4023), 1, + STATE(3803), 1, sym_comment, - ACTIONS(1721), 4, + ACTIONS(1703), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1719), 15, + ACTIONS(1701), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370747,20 +354588,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [154728] = 4, + [146008] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(4024), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + ACTIONS(7173), 1, + anon_sym_DOT_DOT2, + ACTIONS(7177), 1, + sym_filesize_unit, + ACTIONS(7179), 1, + sym_duration_unit, + ACTIONS(7181), 1, + aux_sym_unquoted_token2, + STATE(3804), 1, sym_comment, - ACTIONS(1717), 7, + STATE(6901), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1628), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, + ACTIONS(7175), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1715), 13, + ACTIONS(1616), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370772,23 +354623,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_DOT_DOT2, - aux_sym_unquoted_token2, - [154759] = 5, + [146054] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7257), 1, + ACTIONS(7183), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7185), 1, aux_sym__immediate_decimal_token2, - STATE(4025), 1, + STATE(3805), 1, sym_comment, - ACTIONS(1538), 6, + ACTIONS(1491), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym__unquoted_in_record_token2, - ACTIONS(1540), 13, + ACTIONS(1493), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -370802,57 +354653,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [154792] = 12, + [146090] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7160), 1, - anon_sym_DOLLAR, - ACTIONS(7162), 1, - anon_sym_LPAREN2, - ACTIONS(7170), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7172), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7259), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7261), 1, - aux_sym__immediate_decimal_token3, - STATE(4026), 1, + ACTIONS(7187), 1, + anon_sym_QMARK2, + STATE(3806), 1, sym_comment, - STATE(5017), 1, - sym__immediate_decimal, - ACTIONS(1472), 2, - sym_identifier, + ACTIONS(964), 3, anon_sym_DASH2, - STATE(5015), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1482), 9, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(966), 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_RPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [154839] = 6, - ACTIONS(3), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [146124] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7263), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7265), 1, - aux_sym__immediate_decimal_token2, - STATE(4027), 1, + ACTIONS(7189), 1, + anon_sym_QMARK2, + STATE(3807), 1, sym_comment, - ACTIONS(1650), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, + ACTIONS(958), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(960), 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_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1648), 13, + [146158] = 7, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7141), 1, + anon_sym_DOT2, + STATE(1374), 1, + sym_path, + STATE(1807), 1, + sym_cell_path, + STATE(3715), 1, + aux_sym_cell_path_repeat1, + STATE(3808), 1, + sym_comment, + ACTIONS(1825), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370864,18 +354736,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_DOT_DOT2, - aux_sym_unquoted_token2, - [154874] = 4, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [146196] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4028), 1, + STATE(3809), 1, sym_comment, - ACTIONS(1666), 2, + ACTIONS(1760), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1668), 18, - ts_builtin_sym_end, + ACTIONS(1762), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370887,38 +354762,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_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, - [154905] = 12, + [146228] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7160), 1, - anon_sym_DOLLAR, - ACTIONS(7162), 1, - anon_sym_LPAREN2, - ACTIONS(7170), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7172), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7259), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7261), 1, - aux_sym__immediate_decimal_token3, - STATE(4029), 1, + ACTIONS(7191), 1, + anon_sym_DOT, + ACTIONS(7193), 1, + aux_sym__immediate_decimal_token2, + STATE(3810), 1, sym_comment, - STATE(5136), 1, - sym__immediate_decimal, - ACTIONS(1644), 2, + ACTIONS(1499), 6, sym_identifier, anon_sym_DASH2, - STATE(5135), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1646), 9, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1501), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -370926,18 +354794,28 @@ 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, - [154952] = 4, - ACTIONS(245), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [146264] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4030), 1, + ACTIONS(7100), 1, + aux_sym__immediate_decimal_token2, + STATE(3811), 1, sym_comment, - ACTIONS(1648), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1650), 18, + ACTIONS(1501), 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(1499), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370949,22 +354827,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, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [154983] = 4, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [146298] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4031), 1, + STATE(3812), 1, sym_comment, - ACTIONS(978), 3, + ACTIONS(974), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(980), 17, + ACTIONS(976), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -370982,49 +354856,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [155014] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(4032), 1, - sym_comment, - ACTIONS(1719), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1721), 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, - [155045] = 6, + [146329] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7267), 1, - anon_sym_DOT, - ACTIONS(7269), 1, + ACTIONS(7171), 1, aux_sym__immediate_decimal_token2, - STATE(4033), 1, + STATE(3813), 1, sym_comment, - ACTIONS(1668), 5, - ts_builtin_sym_end, + ACTIONS(1703), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1666), 13, + ACTIONS(1701), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371036,18 +354880,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, - [155080] = 4, + [146362] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4034), 1, + STATE(3814), 1, sym_comment, - ACTIONS(974), 3, + ACTIONS(978), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(976), 17, + ACTIONS(980), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -371065,16 +354911,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [155111] = 4, - ACTIONS(245), 1, + [146393] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4035), 1, + ACTIONS(7195), 1, + aux_sym__immediate_decimal_token2, + STATE(3815), 1, sym_comment, - ACTIONS(1790), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1792), 18, - ts_builtin_sym_end, + ACTIONS(1762), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1760), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371086,31 +354935,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [155142] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [146426] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7271), 1, - anon_sym_DOT2, - STATE(4036), 1, - sym_comment, - STATE(4074), 1, - aux_sym_cell_path_repeat1, - STATE(4230), 1, - sym_path, - STATE(4350), 1, - sym_cell_path, - ACTIONS(1700), 4, - ts_builtin_sym_end, + ACTIONS(1628), 1, sym__space, + ACTIONS(4581), 1, + anon_sym_DOT_DOT2, + ACTIONS(7133), 1, + sym_filesize_unit, + ACTIONS(7135), 1, + sym_duration_unit, + ACTIONS(7137), 1, + aux_sym_unquoted_token2, + STATE(3816), 1, + sym_comment, + ACTIONS(4583), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1698), 12, + ACTIONS(1616), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371122,15 +354969,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_RPAREN, + anon_sym_RBRACE, + [146467] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7197), 1, + aux_sym__immediate_decimal_token2, + STATE(3817), 1, + sym_comment, + ACTIONS(1579), 6, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - [155181] = 4, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1581), 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, + [146500] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5034), 1, + ACTIONS(7102), 1, + anon_sym_DOLLAR, + ACTIONS(7104), 1, + anon_sym_LPAREN2, + ACTIONS(7112), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7114), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7199), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7201), 1, + aux_sym__immediate_decimal_token3, + STATE(3818), 1, + sym_comment, + STATE(4825), 1, + sym__immediate_decimal, + ACTIONS(1644), 2, + sym_identifier, anon_sym_DASH2, - STATE(4037), 1, + STATE(4824), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1646), 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, + [146547] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(4968), 1, + anon_sym_DASH2, + STATE(3819), 1, sym_comment, - ACTIONS(5032), 19, + ACTIONS(4966), 19, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -371150,21 +355061,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [155212] = 6, + [146578] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7273), 1, + ACTIONS(7203), 1, anon_sym_DOT2, - STATE(4106), 1, + STATE(3925), 1, sym_path, - STATE(4038), 2, + STATE(3820), 2, sym_comment, aux_sym_cell_path_repeat1, - ACTIONS(937), 3, + ACTIONS(933), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(935), 14, + ACTIONS(931), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371179,42 +355090,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [155247] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - ACTIONS(7276), 1, - anon_sym_DOT_DOT2, - STATE(4039), 1, - sym_comment, - ACTIONS(7278), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 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, - [155284] = 4, + [146613] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4040), 1, + STATE(3821), 1, sym_comment, - ACTIONS(1486), 7, + ACTIONS(1501), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, @@ -371222,7 +355103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1484), 13, + ACTIONS(1499), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371236,19 +355117,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [155315] = 5, + [146644] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7211), 1, - aux_sym__immediate_decimal_token2, - STATE(4041), 1, + STATE(3822), 1, sym_comment, - ACTIONS(1668), 4, + ACTIONS(1493), 7, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1666), 15, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1491), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371260,118 +355142,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, - [155348] = 11, + [146675] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1581), 1, + ACTIONS(1784), 1, anon_sym_LPAREN2, - ACTIONS(7280), 1, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + ACTIONS(7206), 1, anon_sym_DOT_DOT2, - ACTIONS(7284), 1, - sym_filesize_unit, - ACTIONS(7286), 1, - sym_duration_unit, - ACTIONS(7288), 1, - aux_sym__unquoted_in_record_token2, - STATE(4042), 1, + STATE(3823), 1, sym_comment, - STATE(7491), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1579), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(7282), 2, + ACTIONS(7208), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1591), 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, - [155393] = 12, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7160), 1, - anon_sym_DOLLAR, - ACTIONS(7162), 1, - anon_sym_LPAREN2, - ACTIONS(7170), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7172), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7259), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7261), 1, - aux_sym__immediate_decimal_token3, - STATE(4043), 1, - sym_comment, - STATE(5146), 1, - sym__immediate_decimal, - ACTIONS(1575), 2, - sym_identifier, - anon_sym_DASH2, - STATE(4979), 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, - [155440] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4044), 1, - sym_comment, - ACTIONS(1494), 7, + ACTIONS(1790), 15, 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(1492), 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, - [155471] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1648), 1, - aux_sym_unquoted_token2, - ACTIONS(7290), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7292), 1, - aux_sym__immediate_decimal_token2, - STATE(4045), 1, - sym_comment, - ACTIONS(1650), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371383,38 +355171,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, - [155506] = 12, + [146712] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7160), 1, + ACTIONS(7102), 1, anon_sym_DOLLAR, - ACTIONS(7162), 1, + ACTIONS(7104), 1, anon_sym_LPAREN2, - ACTIONS(7170), 1, + ACTIONS(7112), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7172), 1, + ACTIONS(7114), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7259), 1, + ACTIONS(7199), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7261), 1, + ACTIONS(7201), 1, aux_sym__immediate_decimal_token3, - STATE(4046), 1, + STATE(3824), 1, sym_comment, - STATE(5148), 1, + STATE(4827), 1, sym__immediate_decimal, - ACTIONS(1544), 2, + ACTIONS(1538), 2, sym_identifier, anon_sym_DASH2, - STATE(5147), 2, + STATE(4826), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1552), 9, + ACTIONS(1546), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -371424,22 +355209,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [155553] = 7, + [146759] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7225), 1, - anon_sym_DOT2, - STATE(4038), 1, - aux_sym_cell_path_repeat1, - STATE(4047), 1, + ACTIONS(7210), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7212), 1, + aux_sym__immediate_decimal_token2, + STATE(3825), 1, sym_comment, - STATE(4106), 1, - sym_path, - ACTIONS(933), 3, + ACTIONS(1688), 5, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(931), 14, + ACTIONS(1686), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371451,25 +355236,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, - [155590] = 7, + aux_sym_unquoted_token2, + [146794] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1447), 1, + ACTIONS(1701), 1, aux_sym_unquoted_token2, - ACTIONS(1813), 1, - anon_sym_LPAREN2, - ACTIONS(7294), 1, - anon_sym_DOT_DOT2, - STATE(4048), 1, + ACTIONS(7214), 1, + anon_sym_DOT, + ACTIONS(7216), 1, + aux_sym__immediate_decimal_token2, + STATE(3826), 1, sym_comment, - ACTIONS(7296), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1819), 15, - ts_builtin_sym_end, + ACTIONS(1703), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371481,46 +355261,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_and2, anon_sym_xor2, anon_sym_or2, - [155627] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7271), 1, - anon_sym_DOT2, - STATE(4049), 1, - sym_comment, - STATE(4074), 1, - aux_sym_cell_path_repeat1, - STATE(4230), 1, - sym_path, - STATE(4363), 1, - sym_cell_path, - ACTIONS(1713), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1711), 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, - [155666] = 4, + anon_sym_LPAREN2, + [146829] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4050), 1, + STATE(3827), 1, sym_comment, - ACTIONS(1540), 7, + ACTIONS(1680), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, @@ -371528,7 +355280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1538), 13, + ACTIONS(1678), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371542,25 +355294,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [155697] = 8, + [146860] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7271), 1, + ACTIONS(7218), 1, anon_sym_DOT2, - STATE(4051), 1, + STATE(3828), 1, sym_comment, - STATE(4074), 1, + STATE(3870), 1, aux_sym_cell_path_repeat1, - STATE(4230), 1, + STATE(3996), 1, sym_path, - STATE(4468), 1, + STATE(4225), 1, sym_cell_path, - ACTIONS(927), 4, + ACTIONS(1670), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(925), 12, + ACTIONS(1668), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371573,17 +355325,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [155736] = 5, + [146899] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7298), 1, - anon_sym_DOT_DOT2, - STATE(4052), 1, + STATE(3829), 1, sym_comment, - ACTIONS(7300), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2039), 16, + ACTIONS(1686), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1688), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371595,61 +355346,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, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [155768] = 9, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4772), 1, - anon_sym_DOT2, - ACTIONS(7306), 1, - anon_sym_QMARK2, - STATE(1340), 1, - aux_sym_cell_path_repeat1, - STATE(1450), 1, - sym_path, - STATE(4053), 1, - sym_comment, - STATE(4586), 1, - sym_cell_path, - ACTIONS(7302), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7304), 12, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [155808] = 8, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [146930] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7308), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4054), 1, + ACTIONS(1618), 1, + anon_sym_LPAREN2, + ACTIONS(7220), 1, + anon_sym_DOT_DOT2, + ACTIONS(7224), 1, + sym_filesize_unit, + ACTIONS(7226), 1, + sym_duration_unit, + ACTIONS(7228), 1, + aux_sym__unquoted_in_record_token2, + STATE(3830), 1, sym_comment, - STATE(4107), 1, - aux_sym_cell_path_repeat1, - STATE(4496), 1, - sym_cell_path, - ACTIONS(1698), 2, + STATE(6875), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1616), 2, + sym_identifier, anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1700), 13, + ACTIONS(7222), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1628), 10, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -371659,107 +355386,60 @@ 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, - [155846] = 5, + [146975] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1666), 1, - aux_sym_unquoted_token2, - ACTIONS(7253), 1, - aux_sym__immediate_decimal_token2, - STATE(4055), 1, - sym_comment, - ACTIONS(1668), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, + ACTIONS(7102), 1, + anon_sym_DOLLAR, + ACTIONS(7104), 1, anon_sym_LPAREN2, - [155878] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4056), 1, + ACTIONS(7112), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7114), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7199), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7201), 1, + aux_sym__immediate_decimal_token3, + STATE(3831), 1, sym_comment, - ACTIONS(1650), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1648), 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, - [155908] = 14, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2606), 1, - anon_sym_COMMA, - ACTIONS(7312), 1, + STATE(4812), 1, + sym__immediate_decimal, + ACTIONS(1479), 2, + sym_identifier, + anon_sym_DASH2, + STATE(4811), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1489), 9, anon_sym_EQ, - ACTIONS(7314), 1, sym__newline, - ACTIONS(7316), 1, - anon_sym_COLON, - ACTIONS(7318), 1, - anon_sym_LPAREN, - ACTIONS(7320), 1, - anon_sym_DASH2, - STATE(4057), 1, - sym_comment, - STATE(4188), 1, - sym_flag_capsule, - STATE(4189), 1, - aux_sym_parameter_repeat1, - STATE(5165), 1, - aux_sym_parameter_repeat2, - STATE(6779), 1, - aux_sym_shebang_repeat1, - STATE(5019), 2, - sym_param_type, - sym_param_value, - ACTIONS(7310), 7, - sym_identifier, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_DOLLAR, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [155958] = 4, + [147022] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4058), 1, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(3832), 1, sym_comment, - ACTIONS(956), 3, + STATE(3870), 1, + aux_sym_cell_path_repeat1, + STATE(3996), 1, + sym_path, + STATE(4212), 1, + sym_cell_path, + ACTIONS(1676), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(954), 16, + ACTIONS(1674), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371771,31 +355451,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_QMARK2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - [155988] = 9, + [147061] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4673), 1, - anon_sym_DOT_DOT2, - ACTIONS(7217), 1, - sym_filesize_unit, - ACTIONS(7219), 1, - sym_duration_unit, - ACTIONS(7221), 1, - aux_sym_unquoted_token2, - STATE(4059), 1, + ACTIONS(7143), 1, + anon_sym_DOT2, + STATE(3820), 1, + aux_sym_cell_path_repeat1, + STATE(3833), 1, sym_comment, - ACTIONS(1591), 2, - ts_builtin_sym_end, + STATE(3925), 1, + sym_path, + ACTIONS(940), 3, sym__space, - ACTIONS(4675), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1579), 11, + ACTIONS(938), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371807,16 +355479,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, - [156028] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [147098] = 7, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4060), 1, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + ACTIONS(7230), 1, + anon_sym_DOT_DOT2, + STATE(3834), 1, sym_comment, - ACTIONS(968), 3, - sym__space, + ACTIONS(7232), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(966), 16, + ACTIONS(1813), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371828,58 +355509,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, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [156058] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [147135] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7308), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4061), 1, + STATE(3835), 1, sym_comment, - STATE(4107), 1, - aux_sym_cell_path_repeat1, - STATE(4524), 1, - sym_cell_path, - ACTIONS(925), 2, - anon_sym_DASH2, + ACTIONS(1701), 2, anon_sym_DOT_DOT2, - ACTIONS(927), 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, - [156096] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1786), 1, - sym__space, - ACTIONS(1788), 1, aux_sym_unquoted_token2, - ACTIONS(7322), 1, - anon_sym_DOT_DOT2, - STATE(4062), 1, - sym_comment, - ACTIONS(7324), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1778), 13, + ACTIONS(1703), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371891,19 +355533,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, - [156134] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [147166] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7328), 1, - anon_sym_DOT_DOT2, - STATE(4063), 1, + ACTIONS(1686), 1, + aux_sym_unquoted_token2, + ACTIONS(7234), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7236), 1, + aux_sym__immediate_decimal_token2, + STATE(3836), 1, sym_comment, - ACTIONS(7330), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7326), 16, + ACTIONS(1688), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371920,19 +355567,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [156166] = 4, + anon_sym_LPAREN2, + [147201] = 12, ACTIONS(245), 1, anon_sym_POUND, - STATE(4064), 1, + ACTIONS(7102), 1, + anon_sym_DOLLAR, + ACTIONS(7104), 1, + anon_sym_LPAREN2, + ACTIONS(7112), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7114), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7199), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7201), 1, + aux_sym__immediate_decimal_token3, + STATE(3837), 1, sym_comment, - ACTIONS(1492), 6, + STATE(4822), 1, + sym__immediate_decimal, + ACTIONS(1632), 2, sym_identifier, anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_record_token2, - ACTIONS(1494), 13, + STATE(4821), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1634), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -371940,25 +355601,23 @@ 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, - [156196] = 4, + [147248] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(4065), 1, + ACTIONS(7193), 1, + aux_sym__immediate_decimal_token2, + STATE(3838), 1, sym_comment, - ACTIONS(1538), 6, + ACTIONS(1499), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym__unquoted_in_record_token2, - ACTIONS(1540), 13, + ACTIONS(1501), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -371972,44 +355631,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [156226] = 4, + [147281] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4066), 1, - sym_comment, - ACTIONS(1715), 6, - sym_identifier, + ACTIONS(4976), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_record_token2, - ACTIONS(1717), 13, - anon_sym_EQ, + STATE(3839), 1, + sym_comment, + ACTIONS(4974), 19, + 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_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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_DASH_DASH, + anon_sym_as, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [156256] = 6, + [147312] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1648), 1, - aux_sym_unquoted_token2, - ACTIONS(7332), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7334), 1, - aux_sym__immediate_decimal_token2, - STATE(4067), 1, + STATE(3840), 1, sym_comment, - ACTIONS(1650), 16, + ACTIONS(1760), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1762), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -372026,17 +355683,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [156290] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [147343] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4068), 1, + ACTIONS(7238), 1, + anon_sym_DOT, + ACTIONS(7240), 1, + aux_sym__immediate_decimal_token2, + STATE(3841), 1, sym_comment, - ACTIONS(1792), 4, + ACTIONS(1703), 5, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1790), 15, + ACTIONS(1701), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372048,21 +355712,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, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [156320] = 5, + [147378] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7328), 1, - anon_sym_DOT_DOT2, - STATE(4069), 1, + STATE(3842), 1, sym_comment, - ACTIONS(7330), 2, + ACTIONS(970), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(972), 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_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7326), 16, + [147409] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(3843), 1, + sym_comment, + ACTIONS(1797), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1799), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372074,23 +355762,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_and2, anon_sym_xor2, anon_sym_or2, - [156352] = 5, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [147440] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(3844), 1, + sym_comment, + STATE(3870), 1, + aux_sym_cell_path_repeat1, + STATE(3996), 1, + sym_path, + STATE(4129), 1, + sym_cell_path, + ACTIONS(927), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(925), 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, + [147479] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7336), 1, - anon_sym_QMARK2, - STATE(4070), 1, + STATE(3845), 1, sym_comment, - ACTIONS(944), 3, + ACTIONS(1581), 7, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(942), 15, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1579), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372102,22 +355824,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, anon_sym_DOT_DOT2, - anon_sym_DOT2, - [156384] = 5, + aux_sym_unquoted_token2, + [147510] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7338), 1, - anon_sym_QMARK2, - STATE(4071), 1, + ACTIONS(7242), 1, + aux_sym__immediate_decimal_token2, + STATE(3846), 1, sym_comment, - ACTIONS(950), 3, + ACTIONS(1762), 5, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(948), 15, + ACTIONS(1760), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372129,20 +355851,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_DOT_DOT2, - anon_sym_DOT2, - [156416] = 5, + aux_sym_unquoted_token2, + [147542] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1719), 1, + ACTIONS(1760), 1, aux_sym_unquoted_token2, - ACTIONS(7340), 1, + ACTIONS(7244), 1, aux_sym__immediate_decimal_token2, - STATE(4072), 1, + STATE(3847), 1, sym_comment, - ACTIONS(1721), 17, + ACTIONS(1762), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372160,50 +355880,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [156448] = 5, + [147574] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7328), 1, - anon_sym_DOT_DOT2, - STATE(4073), 1, + STATE(3848), 1, sym_comment, - ACTIONS(7330), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7326), 16, + ACTIONS(1499), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1501), 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_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [156480] = 7, + 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, + [147604] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7271), 1, - anon_sym_DOT2, - STATE(4074), 1, + STATE(3849), 1, sym_comment, - STATE(4079), 1, - aux_sym_cell_path_repeat1, - STATE(4230), 1, - sym_path, - ACTIONS(933), 4, - ts_builtin_sym_end, + ACTIONS(952), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(931), 12, + ACTIONS(950), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372215,23 +355927,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_RBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT2, - [156516] = 6, + anon_sym_DOT2, + [147634] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7342), 1, - anon_sym_DOT, - ACTIONS(7344), 1, - aux_sym__immediate_decimal_token2, - STATE(4075), 1, + ACTIONS(7246), 1, + anon_sym_DOT2, + STATE(3842), 1, + sym_path, + STATE(3850), 1, sym_comment, - ACTIONS(1666), 4, - sym_identifier, + STATE(3903), 1, + aux_sym_cell_path_repeat1, + STATE(4259), 1, + sym_cell_path, + ACTIONS(1674), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1668), 13, + ACTIONS(1676), 13, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -372241,47 +355960,45 @@ 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, - [156550] = 6, - ACTIONS(245), 1, + [147672] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7346), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7348), 1, - aux_sym__immediate_decimal_token2, - STATE(4076), 1, + ACTIONS(7248), 1, + anon_sym_QMARK2, + STATE(3851), 1, sym_comment, - ACTIONS(1648), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1650), 13, - anon_sym_EQ, + ACTIONS(966), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(964), 15, 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_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [156584] = 4, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [147704] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4077), 1, + STATE(3852), 1, sym_comment, - ACTIONS(960), 3, + ACTIONS(944), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(958), 16, + ACTIONS(942), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372298,17 +356015,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT2, - [156614] = 4, + [147734] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4078), 1, + STATE(3853), 1, sym_comment, - ACTIONS(1668), 4, + ACTIONS(1703), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1666), 15, + ACTIONS(1701), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372324,22 +356041,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [156644] = 6, + [147764] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7350), 1, + ACTIONS(7250), 1, anon_sym_DOT2, - STATE(4230), 1, + STATE(3996), 1, sym_path, - STATE(4079), 2, + STATE(3854), 2, sym_comment, aux_sym_cell_path_repeat1, - ACTIONS(937), 4, + ACTIONS(933), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(935), 12, + ACTIONS(931), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372352,16 +356069,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [156678] = 4, + [147798] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4080), 1, + STATE(3855), 1, sym_comment, - ACTIONS(964), 3, + ACTIONS(956), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(962), 16, + ACTIONS(954), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372378,23 +356095,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT2, - [156708] = 8, - ACTIONS(3), 1, + [147828] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(1813), 1, - anon_sym_LPAREN2, - ACTIONS(1819), 1, - sym__space, - ACTIONS(7353), 1, + STATE(3856), 1, + sym_comment, + ACTIONS(1491), 6, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - STATE(4081), 1, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1493), 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, + [147858] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7253), 1, + anon_sym_QMARK2, + STATE(3857), 1, sym_comment, - ACTIONS(7355), 2, + ACTIONS(960), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1811), 13, + ACTIONS(958), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372408,19 +356146,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [156746] = 6, - ACTIONS(245), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [147890] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1666), 1, - aux_sym_unquoted_token2, - ACTIONS(7357), 1, - anon_sym_DOT, - ACTIONS(7359), 1, - aux_sym__immediate_decimal_token2, - STATE(4082), 1, + STATE(3858), 1, sym_comment, - ACTIONS(1668), 16, - ts_builtin_sym_end, + ACTIONS(948), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(946), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372432,29 +356169,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [156780] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [147920] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7308), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4083), 1, + ACTIONS(7255), 1, + anon_sym_DOT, + ACTIONS(7257), 1, + aux_sym__immediate_decimal_token2, + STATE(3859), 1, sym_comment, - STATE(4107), 1, - aux_sym_cell_path_repeat1, - STATE(4499), 1, - sym_cell_path, - ACTIONS(1711), 2, + ACTIONS(1701), 4, + sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1713), 13, + aux_sym__unquoted_in_record_token2, + ACTIONS(1703), 13, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -372464,21 +356199,24 @@ 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, - [156818] = 4, + [147954] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(4084), 1, + ACTIONS(7259), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7261), 1, + aux_sym__immediate_decimal_token2, + STATE(3860), 1, sym_comment, - ACTIONS(1484), 6, + ACTIONS(1686), 4, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, aux_sym__unquoted_in_record_token2, - ACTIONS(1486), 13, + ACTIONS(1688), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -372492,74 +356230,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [156848] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4085), 1, - sym_comment, - ACTIONS(1721), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1719), 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, - [156878] = 9, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4772), 1, - anon_sym_DOT2, - ACTIONS(7365), 1, - anon_sym_QMARK2, - STATE(1340), 1, - aux_sym_cell_path_repeat1, - STATE(1450), 1, - sym_path, - STATE(4086), 1, - sym_comment, - STATE(4583), 1, - sym_cell_path, - ACTIONS(7361), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7363), 12, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [156918] = 5, + [147988] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7328), 1, + ACTIONS(7265), 1, anon_sym_DOT_DOT2, - STATE(4087), 1, + STATE(3861), 1, sym_comment, - ACTIONS(7330), 2, + ACTIONS(7267), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(994), 16, + ACTIONS(7263), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372576,20 +356257,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [156950] = 5, + [148020] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7269), 1, + ACTIONS(7240), 1, aux_sym__immediate_decimal_token2, - STATE(4088), 1, + STATE(3862), 1, sym_comment, - ACTIONS(1668), 5, + ACTIONS(1703), 5, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1666), 13, + ACTIONS(1701), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372603,71 +356284,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [156982] = 5, + [148052] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7367), 1, - anon_sym_DOT_DOT2, - STATE(4089), 1, + STATE(3863), 1, sym_comment, - ACTIONS(7369), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2015), 16, + ACTIONS(1579), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1581), 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_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [157014] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7371), 1, - anon_sym_DOT_DOT2, - STATE(4090), 1, - sym_comment, - ACTIONS(7373), 2, + 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(2023), 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, - [157046] = 5, + [148082] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7375), 1, - anon_sym_DOT_DOT2, - STATE(4091), 1, + ACTIONS(1686), 1, + aux_sym_unquoted_token2, + ACTIONS(7269), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7271), 1, + aux_sym__immediate_decimal_token2, + STATE(3864), 1, sym_comment, - ACTIONS(7377), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2031), 16, + ACTIONS(1688), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372679,25 +356334,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, - [157078] = 5, + anon_sym_LPAREN2, + [148116] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7379), 1, - aux_sym__immediate_decimal_token2, - STATE(4092), 1, + STATE(3865), 1, sym_comment, - ACTIONS(1721), 5, - ts_builtin_sym_end, + ACTIONS(1688), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1719), 13, + ACTIONS(1686), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372709,19 +356360,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, - [157110] = 4, - ACTIONS(3), 1, + [148146] = 5, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4093), 1, + ACTIONS(7265), 1, + anon_sym_DOT_DOT2, + STATE(3866), 1, sym_comment, - ACTIONS(960), 4, - ts_builtin_sym_end, - sym__space, + ACTIONS(7267), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(958), 14, + ACTIONS(7263), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372733,26 +356386,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_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [157139] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [148178] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4772), 1, + ACTIONS(4722), 1, anon_sym_DOT2, - STATE(1340), 1, + ACTIONS(7277), 1, + anon_sym_QMARK2, + STATE(1284), 1, aux_sym_cell_path_repeat1, - STATE(1450), 1, + STATE(1374), 1, sym_path, - STATE(4094), 1, + STATE(3867), 1, sym_comment, - STATE(4707), 1, + STATE(4370), 1, sym_cell_path, - ACTIONS(7381), 2, + ACTIONS(7273), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(7383), 12, + ACTIONS(7275), 12, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, @@ -372765,51 +356422,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - [157176] = 8, - ACTIONS(3), 1, + [148218] = 9, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1841), 1, - sym__space, - ACTIONS(7225), 1, + ACTIONS(4722), 1, anon_sym_DOT2, - STATE(4047), 1, + ACTIONS(7283), 1, + anon_sym_QMARK2, + STATE(1284), 1, aux_sym_cell_path_repeat1, - STATE(4095), 1, - sym_comment, - STATE(4106), 1, + STATE(1374), 1, sym_path, - STATE(4603), 1, + STATE(3868), 1, + sym_comment, + STATE(4337), 1, sym_cell_path, - ACTIONS(1839), 13, + ACTIONS(7279), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7281), 12, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [148258] = 14, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(2488), 1, + anon_sym_COMMA, + ACTIONS(7287), 1, + anon_sym_EQ, + ACTIONS(7289), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(7291), 1, + anon_sym_COLON, + ACTIONS(7293), 1, + anon_sym_LPAREN, + ACTIONS(7295), 1, + anon_sym_DASH2, + STATE(3869), 1, + sym_comment, + STATE(4005), 1, + sym_flag_capsule, + STATE(4006), 1, + aux_sym_parameter_repeat1, + STATE(4921), 1, + aux_sym_parameter_repeat2, + STATE(5971), 1, + aux_sym_shebang_repeat1, + STATE(4777), 2, + sym_param_type, + sym_param_value, + ACTIONS(7285), 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, - [157213] = 8, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [148308] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1961), 1, - sym__space, - ACTIONS(7225), 1, + ACTIONS(7218), 1, anon_sym_DOT2, - STATE(4047), 1, + STATE(3854), 1, aux_sym_cell_path_repeat1, - STATE(4096), 1, + STATE(3870), 1, sym_comment, - STATE(4106), 1, + STATE(3996), 1, sym_path, - STATE(4719), 1, - sym_cell_path, - ACTIONS(1959), 13, + ACTIONS(940), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(938), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372821,20 +356517,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, + [148344] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(3871), 1, + sym_comment, + ACTIONS(1678), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1680), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [157250] = 4, + 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, + [148374] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4097), 1, + STATE(3872), 1, sym_comment, - ACTIONS(1668), 5, - ts_builtin_sym_end, + ACTIONS(1762), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1666), 13, + ACTIONS(1760), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372846,24 +356566,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_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [157279] = 8, + [148404] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1937), 1, - sym__space, - ACTIONS(7225), 1, - anon_sym_DOT2, - STATE(4047), 1, - aux_sym_cell_path_repeat1, - STATE(4098), 1, + ACTIONS(4581), 1, + anon_sym_DOT_DOT2, + ACTIONS(7177), 1, + sym_filesize_unit, + ACTIONS(7179), 1, + sym_duration_unit, + ACTIONS(7181), 1, + aux_sym_unquoted_token2, + STATE(3873), 1, sym_comment, - STATE(4106), 1, - sym_path, - STATE(4602), 1, - sym_cell_path, - ACTIONS(1935), 13, + ACTIONS(1628), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4583), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1616), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372875,78 +356601,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, - anon_sym_RPAREN, - anon_sym_RBRACE, - [157316] = 8, - ACTIONS(3), 1, + [148444] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1837), 1, - sym__space, - ACTIONS(7225), 1, + ACTIONS(7246), 1, anon_sym_DOT2, - STATE(4047), 1, - aux_sym_cell_path_repeat1, - STATE(4099), 1, - sym_comment, - STATE(4106), 1, + STATE(3842), 1, sym_path, - STATE(4582), 1, + STATE(3874), 1, + sym_comment, + STATE(3903), 1, + aux_sym_cell_path_repeat1, + STATE(4294), 1, sym_cell_path, - ACTIONS(1835), 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, - [157353] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5665), 1, + ACTIONS(1668), 2, anon_sym_DASH2, - STATE(4100), 1, - sym_comment, - ACTIONS(5667), 17, + anon_sym_DOT_DOT2, + ACTIONS(1670), 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, - [157382] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [148482] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1849), 1, - sym__space, - ACTIONS(7225), 1, - anon_sym_DOT2, - STATE(4047), 1, - aux_sym_cell_path_repeat1, - STATE(4101), 1, + STATE(3875), 1, sym_comment, - STATE(4106), 1, - sym_path, - STATE(4620), 1, - sym_cell_path, - ACTIONS(1847), 13, + ACTIONS(1799), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1797), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372960,20 +356655,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [157419] = 6, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [148512] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2091), 1, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(1807), 1, anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(4102), 1, + ACTIONS(1813), 1, + sym__space, + ACTIONS(7297), 1, + anon_sym_DOT_DOT2, + STATE(3876), 1, sym_comment, - ACTIONS(2202), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(2204), 13, + ACTIONS(7299), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1805), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372987,20 +356687,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [157452] = 6, - ACTIONS(3), 1, + [148550] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(4103), 1, + ACTIONS(7246), 1, + anon_sym_DOT2, + STATE(3842), 1, + sym_path, + STATE(3877), 1, sym_comment, - ACTIONS(2089), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(2093), 13, + STATE(3903), 1, + aux_sym_cell_path_repeat1, + STATE(4287), 1, + sym_cell_path, + ACTIONS(925), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(927), 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, + [148588] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1701), 1, + aux_sym_unquoted_token2, + ACTIONS(7301), 1, + anon_sym_DOT, + ACTIONS(7303), 1, + aux_sym__immediate_decimal_token2, + STATE(3878), 1, + sym_comment, + ACTIONS(1703), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373012,22 +356741,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, - [157485] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2190), 1, - anon_sym_LPAREN2, - ACTIONS(2192), 1, - aux_sym_unquoted_token4, - STATE(4104), 1, - sym_comment, - ACTIONS(998), 3, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(994), 13, + anon_sym_LPAREN2, + [148622] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1701), 1, + aux_sym_unquoted_token2, + ACTIONS(7216), 1, + aux_sym__immediate_decimal_token2, + STATE(3879), 1, + sym_comment, + ACTIONS(1703), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373041,18 +356768,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [157518] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [148654] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7385), 1, + ACTIONS(7265), 1, anon_sym_DOT_DOT2, - STATE(4105), 1, + STATE(3880), 1, sym_comment, - ACTIONS(7387), 2, + ACTIONS(7267), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7326), 15, - ts_builtin_sym_end, + ACTIONS(7263), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373064,19 +356794,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, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [157549] = 4, - ACTIONS(3), 1, + [148686] = 5, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4106), 1, + ACTIONS(7265), 1, + anon_sym_DOT_DOT2, + STATE(3881), 1, sym_comment, - ACTIONS(972), 3, - sym__space, + ACTIONS(7267), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(970), 15, + ACTIONS(994), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373090,48 +356823,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [157578] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7308), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4107), 1, - sym_comment, - STATE(4126), 1, - aux_sym_cell_path_repeat1, - ACTIONS(931), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(933), 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, - [157613] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [148718] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7385), 1, + ACTIONS(7305), 1, anon_sym_DOT_DOT2, - STATE(4108), 1, + STATE(3882), 1, sym_comment, - ACTIONS(7387), 2, + ACTIONS(7307), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7326), 15, - ts_builtin_sym_end, + ACTIONS(1979), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373143,22 +356848,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, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [157644] = 6, - ACTIONS(3), 1, + [148750] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7389), 1, - anon_sym_DOT, - ACTIONS(7391), 1, - aux_sym__immediate_decimal_token2, - STATE(4109), 1, + ACTIONS(7309), 1, + anon_sym_DOT_DOT2, + STATE(3883), 1, sym_comment, - ACTIONS(1668), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1666), 14, + ACTIONS(7311), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1955), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373172,17 +356877,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [157677] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [148782] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(4110), 1, + ACTIONS(7313), 1, + anon_sym_DOT_DOT2, + STATE(3884), 1, sym_comment, - STATE(7447), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7393), 16, + ACTIONS(7315), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1963), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373199,17 +356907,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [157708] = 5, + [148814] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1666), 1, - aux_sym_unquoted_token2, - ACTIONS(7359), 1, - aux_sym__immediate_decimal_token2, - STATE(4111), 1, + ACTIONS(7317), 1, + anon_sym_DOT_DOT2, + STATE(3885), 1, sym_comment, - ACTIONS(1668), 16, - ts_builtin_sym_end, + ACTIONS(7319), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1971), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373221,28 +356929,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, - [157739] = 8, + [148846] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(1813), 1, + ACTIONS(1784), 1, anon_sym_LPAREN2, - ACTIONS(7395), 1, + ACTIONS(1790), 1, + sym__space, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + ACTIONS(7321), 1, anon_sym_DOT_DOT2, - STATE(4112), 1, + STATE(3886), 1, sym_comment, - ACTIONS(1819), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7397), 2, + ACTIONS(7323), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1811), 11, + ACTIONS(1782), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373254,22 +356962,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, - [157776] = 8, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [148884] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1869), 1, - sym__space, - ACTIONS(7225), 1, - anon_sym_DOT2, - STATE(4047), 1, - aux_sym_cell_path_repeat1, - STATE(4106), 1, - sym_path, - STATE(4113), 1, + ACTIONS(7325), 1, + anon_sym_DOT_DOT2, + STATE(3887), 1, sym_comment, - STATE(4641), 1, - sym_cell_path, - ACTIONS(1867), 13, + ACTIONS(7327), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1955), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373281,49 +356987,78 @@ static const uint16_t ts_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, - [157813] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [148915] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5676), 1, + ACTIONS(7329), 1, + anon_sym_DOT2, + STATE(3842), 1, + sym_path, + ACTIONS(931), 2, anon_sym_DASH2, - STATE(4114), 1, + anon_sym_DOT_DOT2, + STATE(3888), 2, sym_comment, - ACTIONS(5678), 17, + aux_sym_cell_path_repeat1, + ACTIONS(933), 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, - [157842] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [148948] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7332), 1, + aux_sym__immediate_decimal_token2, + STATE(3889), 1, + sym_comment, + ACTIONS(1760), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1762), 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, + [148979] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1907), 1, + ACTIONS(1869), 1, sym__space, - ACTIONS(7225), 1, + ACTIONS(7143), 1, anon_sym_DOT2, - STATE(4047), 1, + STATE(3833), 1, aux_sym_cell_path_repeat1, - STATE(4106), 1, - sym_path, - STATE(4115), 1, + STATE(3890), 1, sym_comment, - STATE(4642), 1, + STATE(3925), 1, + sym_path, + STATE(4330), 1, sym_cell_path, - ACTIONS(1905), 13, + ACTIONS(1867), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373337,22 +357072,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [157879] = 8, + [149016] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7225), 1, - anon_sym_DOT2, - ACTIONS(7401), 1, + ACTIONS(7334), 1, + anon_sym_QMARK2, + STATE(3891), 1, + sym_comment, + ACTIONS(960), 4, + ts_builtin_sym_end, sym__space, - STATE(4047), 1, - aux_sym_cell_path_repeat1, - STATE(4106), 1, - sym_path, - STATE(4116), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(958), 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_DOT2, + [149047] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3892), 1, sym_comment, - STATE(4644), 1, - sym_cell_path, - ACTIONS(7399), 13, + ACTIONS(952), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(950), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373364,18 +357120,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, - [157916] = 5, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [149076] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(4117), 1, + STATE(3893), 1, sym_comment, - STATE(7447), 1, + STATE(6822), 1, sym__expr_parenthesized_immediate, - ACTIONS(7393), 16, + ACTIONS(7336), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373392,17 +357149,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [157947] = 5, - ACTIONS(245), 1, + [149107] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1719), 1, + ACTIONS(1447), 1, aux_sym_unquoted_token2, - ACTIONS(7403), 1, - aux_sym__immediate_decimal_token2, - STATE(4118), 1, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + ACTIONS(7338), 1, + anon_sym_DOT_DOT2, + STATE(3894), 1, sym_comment, - ACTIONS(1721), 16, + ACTIONS(1813), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(7340), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1805), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373414,45 +357178,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, - [157978] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5657), 1, - anon_sym_DASH2, - STATE(4119), 1, - sym_comment, - ACTIONS(5659), 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, - [158007] = 5, + [149144] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(4120), 1, + STATE(3895), 1, sym_comment, - STATE(7447), 1, + STATE(6822), 1, sym__expr_parenthesized_immediate, - ACTIONS(7393), 16, + ACTIONS(7336), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373469,41 +357204,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [158038] = 4, + [149175] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4121), 1, - sym_comment, - ACTIONS(980), 3, + ACTIONS(1843), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(978), 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, + ACTIONS(7143), 1, anon_sym_DOT2, - [158067] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4122), 1, + STATE(3833), 1, + aux_sym_cell_path_repeat1, + STATE(3896), 1, sym_comment, - ACTIONS(976), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(974), 15, + STATE(3925), 1, + sym_path, + STATE(4407), 1, + sym_cell_path, + ACTIONS(1841), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373517,19 +357233,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [158096] = 5, + [149212] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7385), 1, - anon_sym_DOT_DOT2, - STATE(4123), 1, + ACTIONS(1760), 1, + aux_sym_unquoted_token2, + ACTIONS(7342), 1, + aux_sym__immediate_decimal_token2, + STATE(3897), 1, sym_comment, - ACTIONS(7387), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7326), 15, + ACTIONS(1762), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -373545,47 +357258,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [158127] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5672), 1, - anon_sym_DASH2, - STATE(4124), 1, - sym_comment, - ACTIONS(5674), 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, - [158156] = 8, + anon_sym_LPAREN2, + [149243] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1929), 1, - sym__space, - ACTIONS(7225), 1, - anon_sym_DOT2, - STATE(4047), 1, - aux_sym_cell_path_repeat1, - STATE(4106), 1, - sym_path, - STATE(4125), 1, + ACTIONS(2104), 1, + anon_sym_LPAREN2, + ACTIONS(2106), 1, + aux_sym_unquoted_token4, + STATE(3898), 1, sym_comment, - STATE(4638), 1, - sym_cell_path, - ACTIONS(1927), 13, + ACTIONS(998), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(994), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373599,45 +357286,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158193] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7405), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - ACTIONS(935), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - STATE(4126), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(937), 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, - [158226] = 5, - ACTIONS(245), 1, + [149276] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7385), 1, - anon_sym_DOT_DOT2, - STATE(4127), 1, - sym_comment, - ACTIONS(7387), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(994), 15, - ts_builtin_sym_end, + ACTIONS(7344), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7346), 1, + aux_sym__immediate_decimal_token2, + STATE(3899), 1, + sym_comment, + ACTIONS(1688), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1686), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373649,26 +357310,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, - [158257] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [149309] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4772), 1, + ACTIONS(4722), 1, anon_sym_DOT2, - STATE(1340), 1, + STATE(1284), 1, aux_sym_cell_path_repeat1, - STATE(1352), 1, - sym_cell_path, - STATE(1450), 1, + STATE(1374), 1, sym_path, - STATE(4128), 1, + STATE(3900), 1, sym_comment, - ACTIONS(925), 2, + STATE(4377), 1, + sym_cell_path, + ACTIONS(7348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(927), 12, + ACTIONS(7350), 12, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, @@ -373681,17 +357342,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - [158294] = 4, - ACTIONS(3), 1, + [149346] = 5, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4129), 1, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + STATE(3901), 1, sym_comment, - ACTIONS(2045), 4, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - aux_sym_unquoted_token4, - ACTIONS(2047), 14, + ACTIONS(2136), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373705,23 +357365,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LPAREN2, - [158323] = 8, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [149377] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1853), 1, - sym__space, - ACTIONS(7225), 1, - anon_sym_DOT2, - STATE(4047), 1, - aux_sym_cell_path_repeat1, - STATE(4106), 1, - sym_path, - STATE(4130), 1, + ACTIONS(1686), 1, + aux_sym_unquoted_token2, + STATE(3902), 1, sym_comment, - STATE(4592), 1, - sym_cell_path, - ACTIONS(1851), 13, + ACTIONS(1688), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373735,22 +357389,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158360] = 8, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [149406] = 7, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1861), 1, - sym__space, - ACTIONS(7225), 1, + ACTIONS(7246), 1, anon_sym_DOT2, - STATE(4047), 1, - aux_sym_cell_path_repeat1, - STATE(4106), 1, + STATE(3842), 1, sym_path, - STATE(4131), 1, + STATE(3888), 1, + aux_sym_cell_path_repeat1, + STATE(3903), 1, sym_comment, - STATE(4662), 1, - sym_cell_path, - ACTIONS(1859), 13, + ACTIONS(938), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(940), 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, + [149441] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1701), 1, + aux_sym_unquoted_token2, + ACTIONS(7303), 1, + aux_sym__immediate_decimal_token2, + STATE(3904), 1, + sym_comment, + ACTIONS(1703), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373762,24 +357443,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, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [149472] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5626), 1, + anon_sym_DASH2, + STATE(3905), 1, + sym_comment, + ACTIONS(5628), 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, - [158397] = 8, - ACTIONS(3), 1, + [149501] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1865), 1, - sym__space, - ACTIONS(7225), 1, - anon_sym_DOT2, - STATE(4047), 1, - aux_sym_cell_path_repeat1, - STATE(4106), 1, - sym_path, - STATE(4132), 1, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + STATE(3906), 1, sym_comment, - STATE(4580), 1, - sym_cell_path, - ACTIONS(1863), 13, + ACTIONS(1790), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373793,14 +357495,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158434] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [149532] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1666), 1, + ACTIONS(1760), 1, aux_sym_unquoted_token2, - STATE(4133), 1, + STATE(3907), 1, sym_comment, - ACTIONS(1668), 17, + ACTIONS(1762), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373818,14 +357523,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [158463] = 4, + [149561] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1648), 1, - aux_sym_unquoted_token2, - STATE(4134), 1, + ACTIONS(7352), 1, + anon_sym_DOT_DOT2, + STATE(3908), 1, sym_comment, - ACTIONS(1650), 17, + ACTIONS(7354), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1979), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373837,20 +357546,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, - anon_sym_LPAREN2, - [158492] = 4, - ACTIONS(245), 1, + [149592] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1719), 1, - aux_sym_unquoted_token2, - STATE(4135), 1, + ACTIONS(1917), 1, + sym__space, + ACTIONS(7143), 1, + anon_sym_DOT2, + STATE(3833), 1, + aux_sym_cell_path_repeat1, + STATE(3909), 1, sym_comment, - ACTIONS(1721), 17, + STATE(3925), 1, + sym_path, + STATE(4451), 1, + sym_cell_path, + ACTIONS(1915), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373864,22 +357578,18 @@ 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, - [158521] = 4, - ACTIONS(3), 1, + [149629] = 5, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4136), 1, + ACTIONS(7356), 1, + anon_sym_DOT_DOT2, + STATE(3910), 1, sym_comment, - ACTIONS(1650), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, + ACTIONS(7358), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1648), 13, + ACTIONS(1963), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373891,22 +357601,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_DOT_DOT2, - aux_sym_unquoted_token2, - [158550] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2196), 1, - anon_sym_LPAREN2, - ACTIONS(2200), 1, - aux_sym_unquoted_token4, - STATE(4137), 1, - sym_comment, - ACTIONS(2194), 3, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(2198), 13, + [149660] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7360), 1, + anon_sym_DOT_DOT2, + STATE(3911), 1, + sym_comment, + ACTIONS(7362), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1971), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373918,24 +357627,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, - [158583] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [149691] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1877), 1, + ACTIONS(1925), 1, sym__space, - ACTIONS(7225), 1, + ACTIONS(7143), 1, anon_sym_DOT2, - STATE(4047), 1, + STATE(3833), 1, aux_sym_cell_path_repeat1, - STATE(4106), 1, - sym_path, - STATE(4138), 1, + STATE(3912), 1, sym_comment, - STATE(4591), 1, + STATE(3925), 1, + sym_path, + STATE(4409), 1, sym_cell_path, - ACTIONS(1875), 13, + ACTIONS(1923), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373949,48 +357659,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158620] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7344), 1, - aux_sym__immediate_decimal_token2, - STATE(4139), 1, - sym_comment, - ACTIONS(1666), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1668), 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, - [158651] = 8, + [149728] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1903), 1, - sym__space, - ACTIONS(7225), 1, + ACTIONS(7143), 1, anon_sym_DOT2, - STATE(4047), 1, + ACTIONS(7366), 1, + sym__space, + STATE(3833), 1, aux_sym_cell_path_repeat1, - STATE(4106), 1, - sym_path, - STATE(4140), 1, + STATE(3913), 1, sym_comment, - STATE(4674), 1, + STATE(3925), 1, + sym_path, + STATE(4414), 1, sym_cell_path, - ACTIONS(1901), 13, + ACTIONS(7364), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374004,45 +357688,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158688] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7408), 1, - aux_sym__immediate_decimal_token2, - STATE(4141), 1, - sym_comment, - ACTIONS(1719), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1721), 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, - [158719] = 5, + [149765] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7410), 1, - anon_sym_QMARK2, - STATE(4142), 1, + ACTIONS(2070), 1, + anon_sym_LPAREN2, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(3914), 1, sym_comment, - ACTIONS(944), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(942), 13, + ACTIONS(2128), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2130), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374054,21 +357713,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_DOT_DOT2, - anon_sym_DOT2, - [158750] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [149798] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7412), 1, - anon_sym_QMARK2, - STATE(4143), 1, + ACTIONS(2164), 1, + anon_sym_LPAREN2, + ACTIONS(2168), 1, + aux_sym_unquoted_token4, + STATE(3915), 1, sym_comment, - ACTIONS(950), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(948), 13, + ACTIONS(2162), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2166), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374080,24 +357740,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_DOT2, - [158781] = 8, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [149831] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7225), 1, + ACTIONS(4722), 1, anon_sym_DOT2, - ACTIONS(7416), 1, - sym__space, - STATE(4047), 1, + STATE(1284), 1, aux_sym_cell_path_repeat1, - STATE(4106), 1, + STATE(1374), 1, sym_path, - STATE(4144), 1, + STATE(3916), 1, sym_comment, - STATE(4675), 1, + STATE(4363), 1, sym_cell_path, - ACTIONS(7414), 13, + ACTIONS(7368), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7370), 12, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [149868] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2070), 1, + anon_sym_LPAREN2, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(3917), 1, + sym_comment, + ACTIONS(2068), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2072), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374111,16 +357798,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158818] = 5, + [149901] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1447), 1, + ACTIONS(1477), 1, aux_sym_unquoted_token2, - ACTIONS(1813), 1, + ACTIONS(2140), 1, anon_sym_LPAREN2, - STATE(4145), 1, + STATE(3918), 1, sym_comment, - ACTIONS(1819), 16, + ACTIONS(2142), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374137,24 +357824,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [158849] = 8, + [149932] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - ACTIONS(7418), 1, - anon_sym_DOT_DOT2, - STATE(4146), 1, - sym_comment, - ACTIONS(1786), 2, - ts_builtin_sym_end, + ACTIONS(1825), 1, sym__space, - ACTIONS(7420), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1778), 11, + ACTIONS(7143), 1, + anon_sym_DOT2, + STATE(3833), 1, + aux_sym_cell_path_repeat1, + STATE(3919), 1, + sym_comment, + STATE(3925), 1, + sym_path, + STATE(4371), 1, + sym_cell_path, + ACTIONS(1823), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374166,22 +357851,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, - [158886] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [149969] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1881), 1, + ACTIONS(1885), 1, sym__space, - ACTIONS(7225), 1, + ACTIONS(7143), 1, anon_sym_DOT2, - STATE(4047), 1, + STATE(3833), 1, aux_sym_cell_path_repeat1, - STATE(4106), 1, - sym_path, - STATE(4147), 1, + STATE(3920), 1, sym_comment, - STATE(4616), 1, + STATE(3925), 1, + sym_path, + STATE(4441), 1, sym_cell_path, - ACTIONS(1879), 13, + ACTIONS(1883), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374195,18 +357882,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158923] = 4, + [150006] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4148), 1, + ACTIONS(7372), 1, + anon_sym_QMARK2, + STATE(3921), 1, sym_comment, - ACTIONS(1721), 5, + ACTIONS(966), 4, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1719), 13, + ACTIONS(964), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374219,17 +357907,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [158952] = 5, + anon_sym_DOT2, + [150037] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - STATE(4149), 1, + ACTIONS(5622), 1, + anon_sym_DASH2, + STATE(3922), 1, + sym_comment, + ACTIONS(5624), 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, + [150066] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7374), 1, + anon_sym_DOT_DOT2, + STATE(3923), 1, sym_comment, - ACTIONS(2043), 16, + ACTIONS(7376), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7263), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374241,21 +357956,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, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [158983] = 5, + [150097] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1780), 1, + ACTIONS(2146), 1, anon_sym_LPAREN2, - ACTIONS(1788), 1, + ACTIONS(2150), 1, aux_sym_unquoted_token2, - STATE(4150), 1, + STATE(3924), 1, sym_comment, - ACTIONS(1786), 16, + ACTIONS(2148), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374272,16 +357985,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [159014] = 5, - ACTIONS(245), 1, + [150128] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - ACTIONS(2051), 1, - anon_sym_LPAREN2, - STATE(4151), 1, + STATE(3925), 1, sym_comment, - ACTIONS(2053), 16, + ACTIONS(972), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(970), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374295,17 +358008,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, - [159045] = 4, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [150157] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(5656), 1, anon_sym_DASH2, - STATE(4152), 1, + STATE(3926), 1, sym_comment, - ACTIONS(5690), 17, + ACTIONS(5658), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -374323,48 +358035,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [159074] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2061), 1, - anon_sym_LPAREN2, - ACTIONS(2065), 1, - aux_sym_unquoted_token2, - STATE(4153), 1, - sym_comment, - ACTIONS(2063), 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, - [159105] = 8, + [150186] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1897), 1, + ACTIONS(1895), 1, sym__space, - ACTIONS(7225), 1, + ACTIONS(7143), 1, anon_sym_DOT2, - STATE(4047), 1, + STATE(3833), 1, aux_sym_cell_path_repeat1, - STATE(4106), 1, + STATE(3925), 1, sym_path, - STATE(4154), 1, + STATE(3927), 1, sym_comment, - STATE(4617), 1, + STATE(4457), 1, sym_cell_path, - ACTIONS(1895), 13, + ACTIONS(1893), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374378,22 +358064,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159142] = 8, + [150223] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1915), 1, - sym__space, - ACTIONS(7225), 1, - anon_sym_DOT2, - STATE(4047), 1, - aux_sym_cell_path_repeat1, - STATE(4106), 1, - sym_path, - STATE(4155), 1, + STATE(3928), 1, sym_comment, - STATE(4621), 1, - sym_cell_path, - ACTIONS(1913), 13, + ACTIONS(1688), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1686), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374405,24 +358087,69 @@ static const uint16_t 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, + [150252] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5630), 1, + anon_sym_DASH2, + STATE(3929), 1, + sym_comment, + ACTIONS(5632), 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, - [159179] = 8, + [150281] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7257), 1, + aux_sym__immediate_decimal_token2, + STATE(3930), 1, + sym_comment, + ACTIONS(1701), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1703), 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, + [150312] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1943), 1, - sym__space, - ACTIONS(7225), 1, - anon_sym_DOT2, - STATE(4047), 1, - aux_sym_cell_path_repeat1, - STATE(4106), 1, - sym_path, - STATE(4156), 1, + STATE(3931), 1, sym_comment, - STATE(4725), 1, - sym_cell_path, - ACTIONS(1941), 13, + ACTIONS(976), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(974), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374436,51 +358163,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159216] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1947), 1, - sym__space, - ACTIONS(7225), 1, + anon_sym_DOT_DOT2, anon_sym_DOT2, - STATE(4047), 1, - aux_sym_cell_path_repeat1, - STATE(4106), 1, - sym_path, - STATE(4157), 1, + [150341] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5648), 1, + anon_sym_DASH2, + STATE(3932), 1, sym_comment, - STATE(4626), 1, - sym_cell_path, - ACTIONS(1945), 13, + ACTIONS(5650), 17, + 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_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, - [159253] = 8, + [150370] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1845), 1, + ACTIONS(1877), 1, sym__space, - ACTIONS(7225), 1, + ACTIONS(7143), 1, anon_sym_DOT2, - STATE(4047), 1, + STATE(3833), 1, aux_sym_cell_path_repeat1, - STATE(4106), 1, + STATE(3925), 1, sym_path, - STATE(4158), 1, + STATE(3933), 1, sym_comment, - STATE(4640), 1, + STATE(4459), 1, sym_cell_path, - ACTIONS(1843), 13, + ACTIONS(1875), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374494,22 +358219,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159290] = 8, + [150407] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1857), 1, - sym__space, - ACTIONS(7225), 1, - anon_sym_DOT2, - STATE(4047), 1, - aux_sym_cell_path_repeat1, - STATE(4106), 1, - sym_path, - STATE(4159), 1, + STATE(3934), 1, sym_comment, - STATE(4673), 1, - sym_cell_path, - ACTIONS(1855), 13, + ACTIONS(1703), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1701), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374521,21 +358242,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, - [159327] = 6, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [150436] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7422), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7424), 1, - aux_sym__immediate_decimal_token2, - STATE(4160), 1, + STATE(3935), 1, sym_comment, - ACTIONS(1650), 2, + ACTIONS(980), 3, sym__space, - anon_sym_LPAREN2, - ACTIONS(1648), 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(978), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374549,23 +358267,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [159360] = 8, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [150465] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1885), 1, + ACTIONS(1835), 1, sym__space, - ACTIONS(7225), 1, + ACTIONS(7143), 1, anon_sym_DOT2, - STATE(4047), 1, + STATE(3833), 1, aux_sym_cell_path_repeat1, - STATE(4106), 1, + STATE(3925), 1, sym_path, - STATE(4161), 1, + STATE(3936), 1, sym_comment, - STATE(4683), 1, + STATE(4476), 1, sym_cell_path, - ACTIONS(1883), 13, + ACTIONS(1833), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374579,22 +358298,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159397] = 8, + [150502] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1831), 1, + ACTIONS(1881), 1, sym__space, - ACTIONS(7225), 1, + ACTIONS(7143), 1, anon_sym_DOT2, - STATE(4047), 1, + STATE(3833), 1, aux_sym_cell_path_repeat1, - STATE(4106), 1, + STATE(3925), 1, sym_path, - STATE(4162), 1, + STATE(3937), 1, sym_comment, - STATE(4713), 1, + STATE(4477), 1, sym_cell_path, - ACTIONS(1829), 13, + ACTIONS(1879), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374608,17 +358327,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159434] = 5, + [150539] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7426), 1, + ACTIONS(7374), 1, anon_sym_DOT_DOT2, - STATE(4163), 1, + STATE(3938), 1, sym_comment, - ACTIONS(7428), 2, + ACTIONS(7376), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2039), 15, + ACTIONS(7263), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -374634,18 +358353,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [159465] = 4, + [150570] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4164), 1, - sym_comment, - ACTIONS(1792), 5, - ts_builtin_sym_end, + ACTIONS(1851), 1, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1790), 13, + ACTIONS(7143), 1, + anon_sym_DOT2, + STATE(3833), 1, + aux_sym_cell_path_repeat1, + STATE(3925), 1, + sym_path, + STATE(3939), 1, + sym_comment, + STATE(4352), 1, + sym_cell_path, + ACTIONS(1849), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374657,46 +358380,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, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [159494] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [150607] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7430), 1, - anon_sym_DOT_DOT2, - STATE(4165), 1, + ACTIONS(5634), 1, + anon_sym_DASH2, + STATE(3940), 1, sym_comment, - ACTIONS(7432), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2015), 15, - ts_builtin_sym_end, + ACTIONS(5636), 17, + 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_and2, - anon_sym_xor2, - anon_sym_or2, - [159525] = 5, - ACTIONS(245), 1, + 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, + [150636] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7434), 1, - anon_sym_DOT_DOT2, - STATE(4166), 1, + ACTIONS(1865), 1, + sym__space, + ACTIONS(7143), 1, + anon_sym_DOT2, + STATE(3833), 1, + aux_sym_cell_path_repeat1, + STATE(3925), 1, + sym_path, + STATE(3941), 1, sym_comment, - ACTIONS(7436), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2023), 15, - ts_builtin_sym_end, + STATE(4443), 1, + sym_cell_path, + ACTIONS(1863), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374708,21 +358434,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, - [159556] = 5, - ACTIONS(245), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [150673] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7438), 1, - anon_sym_DOT_DOT2, - STATE(4167), 1, + ACTIONS(7143), 1, + anon_sym_DOT2, + ACTIONS(7380), 1, + sym__space, + STATE(3833), 1, + aux_sym_cell_path_repeat1, + STATE(3925), 1, + sym_path, + STATE(3942), 1, sym_comment, - ACTIONS(7440), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2031), 15, - ts_builtin_sym_end, + STATE(4480), 1, + sym_cell_path, + ACTIONS(7378), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374734,25 +358463,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, - [159587] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [150710] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1893), 1, + ACTIONS(1909), 1, sym__space, - ACTIONS(7225), 1, + ACTIONS(7143), 1, anon_sym_DOT2, - STATE(4047), 1, + STATE(3833), 1, aux_sym_cell_path_repeat1, - STATE(4106), 1, + STATE(3925), 1, sym_path, - STATE(4168), 1, + STATE(3943), 1, sym_comment, - STATE(4727), 1, + STATE(4362), 1, sym_cell_path, - ACTIONS(1891), 13, + ACTIONS(1907), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374766,22 +358494,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159624] = 8, + [150747] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1925), 1, + ACTIONS(1873), 1, sym__space, - ACTIONS(7225), 1, + ACTIONS(7143), 1, anon_sym_DOT2, - STATE(4047), 1, + STATE(3833), 1, aux_sym_cell_path_repeat1, - STATE(4106), 1, + STATE(3925), 1, sym_path, - STATE(4169), 1, + STATE(3944), 1, sym_comment, - STATE(4581), 1, + STATE(4400), 1, sym_cell_path, - ACTIONS(1923), 13, + ACTIONS(1871), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374795,17 +358523,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159661] = 4, + [150784] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4170), 1, + STATE(3945), 1, sym_comment, - ACTIONS(956), 4, + ACTIONS(1762), 5, ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(954), 14, + ACTIONS(1760), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374817,20 +358546,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_DOT2, - [159690] = 4, + aux_sym_unquoted_token2, + [150813] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4171), 1, - sym_comment, - ACTIONS(964), 4, - ts_builtin_sym_end, + ACTIONS(1831), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(962), 14, + ACTIONS(7143), 1, + anon_sym_DOT2, + STATE(3833), 1, + aux_sym_cell_path_repeat1, + STATE(3925), 1, + sym_path, + STATE(3946), 1, + sym_comment, + STATE(4453), 1, + sym_cell_path, + ACTIONS(1829), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374842,23 +358575,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, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [159719] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [150850] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5807), 1, + ACTIONS(5745), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7442), 1, + ACTIONS(7382), 1, anon_sym_DOT, - STATE(4172), 1, + STATE(3947), 1, sym_comment, - ACTIONS(1492), 3, + ACTIONS(1499), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_DOT2, - ACTIONS(1494), 13, + ACTIONS(1501), 13, anon_sym_in2, anon_sym_QMARK2, anon_sym_not_DASHin2, @@ -374872,47 +358604,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - [159752] = 4, - ACTIONS(245), 1, + [150883] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5680), 1, - anon_sym_DASH2, - STATE(4173), 1, + ACTIONS(7384), 1, + anon_sym_DOT, + ACTIONS(7386), 1, + aux_sym__immediate_decimal_token2, + STATE(3948), 1, sym_comment, - ACTIONS(5682), 17, - anon_sym_EQ, - sym_identifier, + ACTIONS(1703), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1701), 14, 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, - [159781] = 8, + aux_sym_unquoted_token2, + [150916] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1933), 1, + ACTIONS(1847), 1, sym__space, - ACTIONS(7225), 1, + ACTIONS(7143), 1, anon_sym_DOT2, - STATE(4047), 1, + STATE(3833), 1, aux_sym_cell_path_repeat1, - STATE(4106), 1, + STATE(3925), 1, sym_path, - STATE(4174), 1, + STATE(3949), 1, sym_comment, - STATE(4589), 1, + STATE(4472), 1, sym_cell_path, - ACTIONS(1931), 13, + ACTIONS(1845), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374926,71 +358660,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159818] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5684), 1, - anon_sym_DASH2, - STATE(4175), 1, - sym_comment, - ACTIONS(5686), 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, - [159847] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4772), 1, - anon_sym_DOT2, - STATE(1340), 1, - aux_sym_cell_path_repeat1, - STATE(1450), 1, - sym_path, - STATE(4176), 1, - sym_comment, - STATE(4699), 1, - sym_cell_path, - ACTIONS(7444), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7446), 12, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [159884] = 4, + [150953] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4177), 1, + STATE(3950), 1, sym_comment, - ACTIONS(968), 4, + ACTIONS(1799), 5, ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(966), 14, + ACTIONS(1797), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375002,17 +358683,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_DOT2, - [159913] = 4, - ACTIONS(245), 1, + aux_sym_unquoted_token2, + [150982] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1790), 1, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1792), 1, aux_sym_unquoted_token2, - STATE(4178), 1, + ACTIONS(7388), 1, + anon_sym_DOT_DOT2, + STATE(3951), 1, sym_comment, - ACTIONS(1792), 17, + ACTIONS(1790), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7390), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1782), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375024,135 +358714,68 @@ static const uint16_t ts_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, + [151019] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3952), 1, + sym_comment, + ACTIONS(2076), 4, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [159942] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(4179), 1, - sym_comment, - ACTIONS(954), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(956), 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, - [159970] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(4180), 1, - sym_comment, - ACTIONS(1719), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1721), 14, - anon_sym_EQ, - sym_identifier, + aux_sym_unquoted_token4, + ACTIONS(2078), 14, 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_RBRACE, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [159998] = 4, + [151048] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4181), 1, + ACTIONS(1701), 1, + aux_sym_unquoted_token2, + STATE(3953), 1, sym_comment, - ACTIONS(1790), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1792), 14, - anon_sym_EQ, - sym_identifier, + ACTIONS(1703), 17, 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_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [160026] = 14, - 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, + [151077] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3506), 1, - anon_sym_DOLLAR, - ACTIONS(5888), 1, - anon_sym_LPAREN, - ACTIONS(7448), 1, - sym__unquoted_naive, - STATE(2418), 1, - sym__inter_double_quotes, - STATE(2515), 1, - sym__inter_single_quotes, - STATE(4182), 1, - sym_comment, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1634), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(5106), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [160074] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7271), 1, - anon_sym_DOT2, - STATE(4074), 1, - aux_sym_cell_path_repeat1, - STATE(4183), 1, + ACTIONS(7374), 1, + anon_sym_DOT_DOT2, + STATE(3954), 1, sym_comment, - STATE(4230), 1, - sym_path, - STATE(4931), 1, - sym_cell_path, - ACTIONS(1937), 2, + ACTIONS(7376), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(994), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1935), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375164,23 +358787,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, - [160110] = 8, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [151108] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7271), 1, + ACTIONS(4722), 1, anon_sym_DOT2, - STATE(4074), 1, + STATE(1284), 1, aux_sym_cell_path_repeat1, - STATE(4184), 1, - sym_comment, - STATE(4230), 1, - sym_path, - STATE(4917), 1, + STATE(1312), 1, sym_cell_path, - ACTIONS(1897), 2, + STATE(1374), 1, + sym_path, + STATE(3955), 1, + sym_comment, + ACTIONS(925), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(927), 12, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [151145] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3956), 1, + sym_comment, + ACTIONS(944), 4, ts_builtin_sym_end, sym__space, - ACTIONS(1895), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(942), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375192,23 +358841,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, - [160146] = 8, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [151174] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7271), 1, - anon_sym_DOT2, - STATE(4074), 1, - aux_sym_cell_path_repeat1, - STATE(4185), 1, + STATE(3957), 1, sym_comment, - STATE(4230), 1, - sym_path, - STATE(4919), 1, - sym_cell_path, - ACTIONS(1947), 2, + ACTIONS(948), 4, ts_builtin_sym_end, sym__space, - ACTIONS(1945), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(946), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375220,16 +358866,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, - [160182] = 5, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [151203] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(4186), 1, + ACTIONS(7374), 1, + anon_sym_DOT_DOT2, + STATE(3958), 1, sym_comment, - STATE(7375), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7393), 15, + ACTIONS(7376), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7263), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -375245,104 +358895,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [160212] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(4187), 1, - sym_comment, - ACTIONS(958), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(960), 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, - [160240] = 12, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2606), 1, - anon_sym_COMMA, - ACTIONS(7312), 1, - anon_sym_EQ, - ACTIONS(7314), 1, - sym__newline, - ACTIONS(7316), 1, - anon_sym_COLON, - ACTIONS(7452), 1, - anon_sym_DASH2, - STATE(4188), 1, - sym_comment, - STATE(4245), 1, - aux_sym_parameter_repeat1, - STATE(5205), 1, - aux_sym_parameter_repeat2, - STATE(6779), 1, - aux_sym_shebang_repeat1, - STATE(5019), 2, - sym_param_type, - sym_param_value, - ACTIONS(7450), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [160284] = 12, + [151234] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2606), 1, - anon_sym_COMMA, - ACTIONS(7312), 1, - anon_sym_EQ, - ACTIONS(7314), 1, - sym__newline, - ACTIONS(7316), 1, - anon_sym_COLON, - ACTIONS(7456), 1, - anon_sym_DASH2, - STATE(4189), 1, - sym_comment, - STATE(4458), 1, - aux_sym_parameter_repeat1, - STATE(5206), 1, - aux_sym_parameter_repeat2, - STATE(6779), 1, - aux_sym_shebang_repeat1, - STATE(5019), 2, - sym_param_type, - sym_param_value, - ACTIONS(7454), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [160328] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4190), 1, + ACTIONS(1797), 1, + aux_sym_unquoted_token2, + STATE(3959), 1, sym_comment, - ACTIONS(1969), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1967), 14, + ACTIONS(1799), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375356,24 +358916,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [160356] = 8, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [151263] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7271), 1, - anon_sym_DOT2, - STATE(4074), 1, - aux_sym_cell_path_repeat1, - STATE(4191), 1, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + STATE(3960), 1, sym_comment, - STATE(4230), 1, - sym_path, - STATE(4754), 1, - sym_cell_path, - ACTIONS(7416), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7414), 11, + ACTIONS(1813), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375385,23 +358941,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, - [160392] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [151294] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7271), 1, - anon_sym_DOT2, - STATE(4074), 1, - aux_sym_cell_path_repeat1, - STATE(4192), 1, + STATE(3961), 1, sym_comment, - STATE(4230), 1, - sym_path, - STATE(4911), 1, - sym_cell_path, - ACTIONS(1853), 2, + ACTIONS(956), 4, ts_builtin_sym_end, sym__space, - ACTIONS(1851), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(954), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375413,73 +358968,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, - [160428] = 14, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2134), 1, - anon_sym_DOLLAR, - ACTIONS(2186), 1, - sym_raw_string_begin, - ACTIONS(4333), 1, - anon_sym_DQUOTE, - ACTIONS(4337), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4339), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5120), 1, - anon_sym_LPAREN, - ACTIONS(7458), 1, - sym__unquoted_naive, - STATE(4193), 1, - sym_comment, - STATE(4625), 1, - sym__inter_single_quotes, - STATE(4629), 1, - sym__inter_double_quotes, - ACTIONS(4335), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4077), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4618), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [160476] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(4194), 1, - sym_comment, - ACTIONS(962), 3, - anon_sym_DASH2, + anon_sym_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(964), 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, - [160504] = 4, + [151323] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1648), 1, - aux_sym_unquoted_token2, - STATE(4195), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(3962), 1, sym_comment, - ACTIONS(1650), 16, - ts_builtin_sym_end, + STATE(6822), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7336), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375491,51 +358992,81 @@ static const uint16_t ts_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, - [160532] = 4, + [151354] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4196), 1, - sym_comment, - ACTIONS(966), 3, + ACTIONS(5652), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(968), 14, + STATE(3963), 1, + sym_comment, + ACTIONS(5654), 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_QMARK2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [151383] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1447), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1805), 1, + anon_sym_DASH2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + ACTIONS(7392), 1, + anon_sym_DOT_DOT2, + STATE(3964), 1, + sym_comment, + ACTIONS(7394), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [160560] = 8, + ACTIONS(1813), 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, + [151419] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7271), 1, + ACTIONS(7218), 1, anon_sym_DOT2, - STATE(4074), 1, + STATE(3870), 1, aux_sym_cell_path_repeat1, - STATE(4197), 1, + STATE(3965), 1, sym_comment, - STATE(4230), 1, + STATE(3996), 1, sym_path, - STATE(4914), 1, + STATE(4537), 1, sym_cell_path, - ACTIONS(1865), 2, + ACTIONS(1873), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1863), 11, + ACTIONS(1871), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375547,14 +359078,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, - [160596] = 4, - ACTIONS(245), 1, + [151455] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7082), 1, - aux_sym_unquoted_token2, - STATE(4198), 1, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(3870), 1, + aux_sym_cell_path_repeat1, + STATE(3966), 1, sym_comment, - ACTIONS(1591), 16, + STATE(3996), 1, + sym_path, + STATE(4538), 1, + sym_cell_path, + ACTIONS(1831), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1829), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375566,28 +359106,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, + [151491] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1782), 1, + anon_sym_DASH2, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1792), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7396), 1, + anon_sym_DOT_DOT2, + STATE(3967), 1, + sym_comment, + ACTIONS(7398), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1790), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [160624] = 8, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [151527] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7271), 1, - anon_sym_DOT2, - STATE(4074), 1, - aux_sym_cell_path_repeat1, - STATE(4199), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(3968), 1, sym_comment, - STATE(4230), 1, - sym_path, - STATE(4912), 1, - sym_cell_path, - ACTIONS(1861), 2, + STATE(6968), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7336), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1859), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375599,23 +359156,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, - [160660] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [151557] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7271), 1, - anon_sym_DOT2, - STATE(4074), 1, - aux_sym_cell_path_repeat1, - STATE(4200), 1, + ACTIONS(2164), 1, + anon_sym_LPAREN2, + ACTIONS(2168), 1, + aux_sym_unquoted_token4, + STATE(3969), 1, sym_comment, - STATE(4230), 1, - sym_path, - STATE(4930), 1, - sym_cell_path, - ACTIONS(1933), 2, + ACTIONS(2162), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2166), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(1931), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375627,23 +359185,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, - [160696] = 8, - ACTIONS(3), 1, + [151589] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7271), 1, - anon_sym_DOT2, - STATE(4074), 1, - aux_sym_cell_path_repeat1, - STATE(4201), 1, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + STATE(3970), 1, sym_comment, - STATE(4230), 1, - sym_path, - STATE(4920), 1, - sym_cell_path, - ACTIONS(1845), 2, + ACTIONS(2136), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1843), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375655,20 +359207,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, - [160732] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2190), 1, - anon_sym_LPAREN2, - ACTIONS(2192), 1, - aux_sym_unquoted_token4, - STATE(4202), 1, - sym_comment, - ACTIONS(998), 3, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(994), 12, + [151619] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + STATE(3971), 1, + sym_comment, + ACTIONS(1790), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -375681,23 +359232,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, - [160764] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [151649] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7271), 1, - anon_sym_DOT2, - STATE(4074), 1, - aux_sym_cell_path_repeat1, - STATE(4203), 1, + ACTIONS(7400), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7402), 1, + aux_sym__immediate_decimal_token2, + STATE(3972), 1, sym_comment, - STATE(4230), 1, - sym_path, - STATE(4918), 1, - sym_cell_path, - ACTIONS(1915), 2, + ACTIONS(1688), 3, ts_builtin_sym_end, sym__space, - ACTIONS(1913), 11, + anon_sym_LPAREN2, + ACTIONS(1686), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375709,17 +359260,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, - [160800] = 5, + aux_sym_unquoted_token2, + [151681] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7391), 1, + ACTIONS(7404), 1, aux_sym__immediate_decimal_token2, - STATE(4204), 1, + STATE(3973), 1, sym_comment, - ACTIONS(1668), 2, + ACTIONS(1762), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1666), 14, + ACTIONS(1760), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375734,17 +359286,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, aux_sym_unquoted_token2, - [160830] = 4, + [151711] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4205), 1, + STATE(3974), 1, sym_comment, - ACTIONS(980), 4, + ACTIONS(2076), 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + aux_sym_unquoted_token4, + ACTIONS(2078), 13, 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, @@ -375756,25 +359309,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_DOT_DOT2, - anon_sym_DOT2, - [160858] = 8, + anon_sym_LPAREN2, + [151739] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2070), 1, + anon_sym_LPAREN2, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(3975), 1, + sym_comment, + ACTIONS(2128), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2130), 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, + [151771] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1811), 1, + STATE(3976), 1, + sym_comment, + ACTIONS(1701), 3, anon_sym_DASH2, - ACTIONS(1813), 1, - anon_sym_LPAREN2, - ACTIONS(7460), 1, anon_sym_DOT_DOT2, - STATE(4206), 1, - sym_comment, - ACTIONS(7462), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1819), 11, + aux_sym__unquoted_in_record_token2, + ACTIONS(1703), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -375786,16 +359357,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [160894] = 5, - ACTIONS(245), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [151799] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(1813), 1, + ACTIONS(2070), 1, anon_sym_LPAREN2, - STATE(4207), 1, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(3977), 1, sym_comment, - ACTIONS(1819), 15, + ACTIONS(2068), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2072), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -375808,26 +359386,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, - [160924] = 8, + [151831] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7271), 1, + ACTIONS(7218), 1, anon_sym_DOT2, - STATE(4074), 1, + STATE(3870), 1, aux_sym_cell_path_repeat1, - STATE(4208), 1, + STATE(3978), 1, sym_comment, - STATE(4230), 1, + STATE(3996), 1, sym_path, - STATE(4921), 1, + STATE(4515), 1, sym_cell_path, - ACTIONS(1857), 2, + ACTIONS(1895), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1855), 11, + ACTIONS(1893), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375839,15 +359414,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, - [160960] = 4, + [151867] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1719), 1, - aux_sym_unquoted_token2, - STATE(4209), 1, + STATE(3979), 1, sym_comment, - ACTIONS(1721), 16, - ts_builtin_sym_end, + ACTIONS(1686), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1688), 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_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [151895] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3980), 1, + sym_comment, + ACTIONS(1676), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1674), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375859,78 +359459,164 @@ static const uint16_t 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_RBRACE, + anon_sym_DOT_DOT2, + [151923] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(3981), 1, + sym_comment, + ACTIONS(1760), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1762), 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_LPAREN2, - [160988] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [151951] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1790), 1, - aux_sym_unquoted_token2, - STATE(4210), 1, + STATE(3982), 1, sym_comment, - ACTIONS(1792), 16, - ts_builtin_sym_end, + ACTIONS(1797), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1799), 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_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, - [161016] = 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [151979] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2228), 1, + STATE(3983), 1, + sym_comment, + ACTIONS(950), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(952), 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, - ACTIONS(2278), 1, - sym_raw_string_begin, - ACTIONS(4067), 1, - anon_sym_DQUOTE, - ACTIONS(4071), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4073), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5133), 1, - anon_sym_LPAREN, - ACTIONS(7464), 1, - sym__unquoted_naive, - STATE(4211), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [152007] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(3984), 1, sym_comment, - STATE(4857), 1, - sym__inter_single_quotes, - STATE(4858), 1, - sym__inter_double_quotes, - ACTIONS(4069), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4093), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4869), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [161064] = 4, - ACTIONS(3), 1, + ACTIONS(942), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(944), 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, + [152035] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4212), 1, + STATE(3985), 1, sym_comment, - ACTIONS(1965), 3, - sym__space, + ACTIONS(954), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(956), 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, + [152063] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(3986), 1, + sym_comment, + ACTIONS(946), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(948), 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, - ACTIONS(1963), 14, + [152091] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(3987), 1, + sym_comment, + STATE(6968), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7336), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375942,20 +359628,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_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [161092] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [152121] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4213), 1, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(3870), 1, + aux_sym_cell_path_repeat1, + STATE(3988), 1, sym_comment, - ACTIONS(976), 4, + STATE(3996), 1, + sym_path, + STATE(4516), 1, + sym_cell_path, + ACTIONS(1869), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(974), 13, + ACTIONS(1867), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375967,19 +359659,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_DOT_DOT2, - anon_sym_DOT2, - [161120] = 5, - ACTIONS(245), 1, + [152157] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - STATE(4214), 1, + STATE(3989), 1, sym_comment, - ACTIONS(2043), 15, - ts_builtin_sym_end, + ACTIONS(1989), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1987), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375991,19 +359680,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, - [161150] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [152185] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1788), 1, + ACTIONS(1477), 1, aux_sym_unquoted_token2, - STATE(4215), 1, + ACTIONS(2140), 1, + anon_sym_LPAREN2, + STATE(3990), 1, sym_comment, - ACTIONS(1786), 15, + ACTIONS(2142), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -376019,23 +359708,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [161180] = 8, + [152215] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7271), 1, - anon_sym_DOT2, - STATE(4074), 1, - aux_sym_cell_path_repeat1, - STATE(4216), 1, + STATE(3991), 1, sym_comment, - STATE(4230), 1, - sym_path, - STATE(4916), 1, - sym_cell_path, - ACTIONS(1881), 2, + ACTIONS(976), 4, ts_builtin_sym_end, sym__space, - ACTIONS(1879), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(974), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376047,16 +359730,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, - [161216] = 4, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [152243] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4217), 1, + STATE(3992), 1, sym_comment, - ACTIONS(984), 3, + ACTIONS(980), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(982), 14, + ACTIONS(978), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376068,19 +359754,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_DOT_DOT2, - [161244] = 5, + anon_sym_DOT2, + [152271] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(4218), 1, + STATE(3993), 1, sym_comment, - STATE(7375), 1, + STATE(6968), 1, sym__expr_parenthesized_immediate, - ACTIONS(7393), 15, + ACTIONS(7336), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -376096,45 +359781,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [161274] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1778), 1, - anon_sym_DASH2, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1788), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7466), 1, - anon_sym_DOT_DOT2, - STATE(4219), 1, - sym_comment, - ACTIONS(7468), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 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, - [161310] = 5, + [152301] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7470), 1, - aux_sym__immediate_decimal_token2, - STATE(4220), 1, + STATE(3994), 1, sym_comment, - ACTIONS(1721), 2, + ACTIONS(1947), 3, sym__space, - anon_sym_LPAREN2, - ACTIONS(1719), 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1945), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376148,8 +359804,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [161340] = 14, + anon_sym_DOT_DOT2, + [152329] = 14, ACTIONS(237), 1, anon_sym_DOLLAR_SQUOTE, ACTIONS(239), 1, @@ -376162,44 +359818,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1266), 1, sym_raw_string_begin, - ACTIONS(3544), 1, + ACTIONS(3442), 1, anon_sym_DOLLAR, - ACTIONS(7472), 1, + ACTIONS(7406), 1, sym__unquoted_naive, - STATE(1848), 1, + STATE(1842), 1, sym__inter_single_quotes, - STATE(1849), 1, + STATE(1843), 1, sym__inter_double_quotes, - STATE(4221), 1, + STATE(3995), 1, sym_comment, ACTIONS(1264), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3801), 2, + STATE(3602), 2, sym__raw_str, sym__str_double_quotes, - STATE(4740), 4, + STATE(4593), 4, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - [161388] = 8, + [152377] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7271), 1, - anon_sym_DOT2, - STATE(4074), 1, - aux_sym_cell_path_repeat1, - STATE(4222), 1, + STATE(3996), 1, sym_comment, - STATE(4230), 1, - sym_path, - STATE(4915), 1, - sym_cell_path, - ACTIONS(1877), 2, + ACTIONS(972), 4, ts_builtin_sym_end, sym__space, - ACTIONS(1875), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(970), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376211,14 +359861,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, - [161424] = 4, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [152405] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1666), 1, + ACTIONS(2146), 1, + anon_sym_LPAREN2, + ACTIONS(2150), 1, aux_sym_unquoted_token2, - STATE(4223), 1, + STATE(3997), 1, sym_comment, - ACTIONS(1668), 16, + ACTIONS(2148), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -376234,56 +359888,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [161452] = 12, + [152435] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3998), 1, + sym_comment, + ACTIONS(984), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(982), 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, + [152463] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2606), 1, + ACTIONS(2488), 1, anon_sym_COMMA, - ACTIONS(7312), 1, + ACTIONS(7287), 1, anon_sym_EQ, - ACTIONS(7314), 1, + ACTIONS(7289), 1, sym__newline, - ACTIONS(7316), 1, + ACTIONS(7291), 1, anon_sym_COLON, - ACTIONS(7476), 1, + ACTIONS(7410), 1, anon_sym_DASH2, - STATE(4224), 1, + STATE(3999), 1, sym_comment, - STATE(4231), 1, + STATE(4037), 1, aux_sym_parameter_repeat1, - STATE(5203), 1, + STATE(4919), 1, aux_sym_parameter_repeat2, - STATE(6779), 1, + STATE(5971), 1, aux_sym_shebang_repeat1, - STATE(5019), 2, + STATE(4777), 2, sym_param_type, sym_param_value, - ACTIONS(7474), 7, + ACTIONS(7408), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [152507] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7412), 1, + anon_sym_LBRACK2, + STATE(4000), 1, + sym_comment, + ACTIONS(2230), 2, + anon_sym_LBRACK, + anon_sym_DASH2, + ACTIONS(2234), 14, + anon_sym_EQ, sym_identifier, + 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, - [161496] = 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + [152537] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7271), 1, + ACTIONS(7218), 1, anon_sym_DOT2, - STATE(4074), 1, + STATE(3870), 1, aux_sym_cell_path_repeat1, - STATE(4225), 1, - sym_comment, - STATE(4230), 1, + STATE(3996), 1, sym_path, - STATE(4821), 1, + STATE(4001), 1, + sym_comment, + STATE(4555), 1, sym_cell_path, - ACTIONS(1869), 2, + ACTIONS(1847), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1867), 11, + ACTIONS(1845), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376295,40 +359997,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, - [161532] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(4226), 1, - sym_comment, - ACTIONS(1666), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1668), 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_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [161560] = 5, + [152573] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1470), 1, + ACTIONS(1701), 1, aux_sym_unquoted_token2, - ACTIONS(2051), 1, - anon_sym_LPAREN2, - STATE(4227), 1, + STATE(4002), 1, sym_comment, - ACTIONS(2053), 15, + ACTIONS(1703), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -376344,23 +360020,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [161590] = 8, + anon_sym_LPAREN2, + [152601] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7271), 1, + ACTIONS(7218), 1, anon_sym_DOT2, - STATE(4074), 1, + STATE(3870), 1, aux_sym_cell_path_repeat1, - STATE(4228), 1, - sym_comment, - STATE(4230), 1, + STATE(3996), 1, sym_path, - STATE(4925), 1, + STATE(4003), 1, + sym_comment, + STATE(4577), 1, sym_cell_path, - ACTIONS(1885), 2, + ACTIONS(1843), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1883), 11, + ACTIONS(1841), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376372,23 +360049,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, - [161626] = 8, + [152637] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7271), 1, + ACTIONS(7218), 1, anon_sym_DOT2, - STATE(4074), 1, + STATE(3870), 1, aux_sym_cell_path_repeat1, - STATE(4229), 1, - sym_comment, - STATE(4230), 1, + STATE(3996), 1, sym_path, - STATE(4899), 1, + STATE(4004), 1, + sym_comment, + STATE(4536), 1, sym_cell_path, - ACTIONS(1831), 2, + ACTIONS(1909), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1829), 11, + ACTIONS(1907), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376400,75 +360077,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [161662] = 4, - ACTIONS(3), 1, + [152673] = 12, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4230), 1, - sym_comment, - ACTIONS(972), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(970), 13, + ACTIONS(2488), 1, + anon_sym_COMMA, + ACTIONS(7287), 1, + anon_sym_EQ, + ACTIONS(7289), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(7291), 1, + anon_sym_COLON, + ACTIONS(7416), 1, + anon_sym_DASH2, + STATE(4005), 1, + sym_comment, + STATE(4022), 1, + aux_sym_parameter_repeat1, + STATE(4893), 1, + aux_sym_parameter_repeat2, + STATE(5971), 1, + aux_sym_shebang_repeat1, + STATE(4777), 2, + sym_param_type, + sym_param_value, + ACTIONS(7414), 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_DOT_DOT2, - anon_sym_DOT2, - [161690] = 12, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [152717] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2606), 1, + ACTIONS(2488), 1, anon_sym_COMMA, - ACTIONS(7312), 1, + ACTIONS(7287), 1, anon_sym_EQ, - ACTIONS(7314), 1, + ACTIONS(7289), 1, sym__newline, - ACTIONS(7316), 1, + ACTIONS(7291), 1, anon_sym_COLON, - ACTIONS(7480), 1, + ACTIONS(7420), 1, anon_sym_DASH2, - STATE(4231), 1, + STATE(4006), 1, sym_comment, - STATE(4458), 1, + STATE(4181), 1, aux_sym_parameter_repeat1, - STATE(5204), 1, + STATE(4894), 1, aux_sym_parameter_repeat2, - STATE(6779), 1, + STATE(5971), 1, aux_sym_shebang_repeat1, - STATE(5019), 2, + STATE(4777), 2, sym_param_type, sym_param_value, - ACTIONS(7478), 7, + ACTIONS(7418), 7, sym_identifier, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [161734] = 6, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [152761] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(3870), 1, + aux_sym_cell_path_repeat1, + STATE(3996), 1, + sym_path, + STATE(4007), 1, + sym_comment, + STATE(4595), 1, + sym_cell_path, + ACTIONS(1877), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1875), 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, + [152797] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7484), 1, - sym__space, - ACTIONS(7486), 1, - anon_sym_DOT_DOT2, - STATE(4232), 1, + ACTIONS(7422), 1, + anon_sym_DOT, + ACTIONS(7424), 1, + aux_sym__immediate_decimal_token2, + STATE(4008), 1, sym_comment, - ACTIONS(7488), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7482), 13, + ACTIONS(1703), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1701), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376480,18 +360194,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, - [161766] = 5, + aux_sym_unquoted_token2, + [152829] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2061), 1, - anon_sym_LPAREN2, - ACTIONS(2065), 1, + ACTIONS(1686), 1, aux_sym_unquoted_token2, - STATE(4233), 1, + STATE(4009), 1, sym_comment, - ACTIONS(2063), 15, + ACTIONS(1688), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -376507,23 +360218,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [161796] = 8, + anon_sym_LPAREN2, + [152857] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7271), 1, + ACTIONS(7218), 1, anon_sym_DOT2, - STATE(4074), 1, + STATE(3870), 1, aux_sym_cell_path_repeat1, - STATE(4230), 1, + STATE(3996), 1, sym_path, - STATE(4234), 1, + STATE(4010), 1, sym_comment, - STATE(4907), 1, + STATE(4596), 1, sym_cell_path, - ACTIONS(1837), 2, + ACTIONS(7380), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1835), 11, + ACTIONS(7378), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376535,23 +360247,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, - [161832] = 8, + [152893] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7271), 1, + ACTIONS(7218), 1, anon_sym_DOT2, - STATE(4074), 1, + STATE(3870), 1, aux_sym_cell_path_repeat1, - STATE(4230), 1, + STATE(3996), 1, sym_path, - STATE(4235), 1, + STATE(4011), 1, sym_comment, - STATE(4908), 1, + STATE(4564), 1, sym_cell_path, - ACTIONS(1849), 2, + ACTIONS(1885), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1847), 11, + ACTIONS(1883), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376563,19 +360275,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, - [161868] = 6, - ACTIONS(3), 1, + [152929] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(994), 1, - sym__space, - ACTIONS(7486), 1, - anon_sym_DOT_DOT2, - STATE(4236), 1, + ACTIONS(1760), 1, + aux_sym_unquoted_token2, + STATE(4012), 1, sym_comment, - ACTIONS(7488), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(998), 13, + ACTIONS(1762), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376587,21 +360295,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, - [161900] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [152957] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2015), 1, - sym__space, - ACTIONS(7490), 1, - anon_sym_DOT_DOT2, - STATE(4237), 1, + ACTIONS(1797), 1, + aux_sym_unquoted_token2, + STATE(4013), 1, sym_comment, - ACTIONS(7492), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2009), 13, + ACTIONS(1799), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376613,21 +360319,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, - [161932] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [152985] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2023), 1, - sym__space, - ACTIONS(7494), 1, - anon_sym_DOT_DOT2, - STATE(4238), 1, + ACTIONS(7012), 1, + aux_sym_unquoted_token2, + STATE(4014), 1, sym_comment, - ACTIONS(7496), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2017), 13, + ACTIONS(1628), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376641,45 +360344,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [161964] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [153013] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2031), 1, - sym__space, - ACTIONS(7498), 1, - anon_sym_DOT_DOT2, - STATE(4239), 1, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(3870), 1, + aux_sym_cell_path_repeat1, + STATE(3996), 1, + sym_path, + STATE(4015), 1, sym_comment, - ACTIONS(7500), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2025), 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, - [161996] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2039), 1, + STATE(4578), 1, + sym_cell_path, + ACTIONS(1925), 2, + ts_builtin_sym_end, sym__space, - ACTIONS(7502), 1, - anon_sym_DOT_DOT2, - STATE(4240), 1, - sym_comment, - ACTIONS(7504), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2033), 13, + ACTIONS(1923), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376691,25 +360375,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, - [162028] = 8, + [153049] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7271), 1, + ACTIONS(7218), 1, anon_sym_DOT2, - STATE(4074), 1, + STATE(3870), 1, aux_sym_cell_path_repeat1, - STATE(4230), 1, + STATE(3996), 1, sym_path, - STATE(4241), 1, + STATE(4016), 1, sym_comment, - STATE(4753), 1, + STATE(4524), 1, sym_cell_path, - ACTIONS(1903), 2, + ACTIONS(1825), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1901), 11, + ACTIONS(1823), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376721,16 +360403,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, - [162064] = 4, + [153085] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4242), 1, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(3870), 1, + aux_sym_cell_path_repeat1, + STATE(3996), 1, + sym_path, + STATE(4017), 1, sym_comment, - ACTIONS(2003), 3, + STATE(4579), 1, + sym_cell_path, + ACTIONS(7366), 2, + ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2001), 14, + ACTIONS(7364), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376742,26 +360431,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, - [162092] = 8, + [153121] = 14, + 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(245), 1, + anon_sym_POUND, + ACTIONS(3470), 1, + anon_sym_DOLLAR, + ACTIONS(5822), 1, + anon_sym_LPAREN, + ACTIONS(7426), 1, + sym__unquoted_naive, + STATE(2351), 1, + sym__inter_single_quotes, + STATE(2352), 1, + sym__inter_double_quotes, + STATE(4018), 1, + sym_comment, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1532), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4719), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [153169] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7271), 1, + ACTIONS(7218), 1, anon_sym_DOT2, - STATE(4074), 1, + STATE(3870), 1, aux_sym_cell_path_repeat1, - STATE(4230), 1, + STATE(3996), 1, sym_path, - STATE(4243), 1, + STATE(4019), 1, sym_comment, - STATE(4873), 1, + STATE(4504), 1, sym_cell_path, - ACTIONS(1943), 2, + ACTIONS(1917), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1941), 11, + ACTIONS(1915), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376773,17 +360493,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, - [162128] = 5, + [153205] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(4244), 1, + ACTIONS(2178), 1, + anon_sym_DOLLAR, + ACTIONS(2228), 1, + sym_raw_string_begin, + ACTIONS(4294), 1, + anon_sym_DQUOTE, + ACTIONS(4298), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4300), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5109), 1, + anon_sym_LPAREN, + ACTIONS(7428), 1, + sym__unquoted_naive, + STATE(4020), 1, sym_comment, - STATE(7375), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7393), 15, - ts_builtin_sym_end, + STATE(4498), 1, + sym__inter_single_quotes, + STATE(4499), 1, + sym__inter_double_quotes, + ACTIONS(4296), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3892), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4633), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [153253] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4021), 1, + sym_comment, + ACTIONS(1995), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1993), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376795,34 +360548,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_and2, - anon_sym_xor2, - anon_sym_or2, - [162158] = 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [153281] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2606), 1, + ACTIONS(2488), 1, anon_sym_COMMA, - ACTIONS(7312), 1, + ACTIONS(7287), 1, anon_sym_EQ, - ACTIONS(7314), 1, + ACTIONS(7289), 1, sym__newline, - ACTIONS(7316), 1, + ACTIONS(7291), 1, anon_sym_COLON, - ACTIONS(7508), 1, + ACTIONS(7432), 1, anon_sym_DASH2, - STATE(4245), 1, + STATE(4022), 1, sym_comment, - STATE(4458), 1, + STATE(4181), 1, aux_sym_parameter_repeat1, - STATE(5162), 1, + STATE(4934), 1, aux_sym_parameter_repeat2, - STATE(6779), 1, + STATE(5971), 1, aux_sym_shebang_repeat1, - STATE(5019), 2, + STATE(4777), 2, sym_param_type, sym_param_value, - ACTIONS(7506), 7, + ACTIONS(7430), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -376830,49 +360583,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [162202] = 8, + [153325] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7271), 1, + ACTIONS(7218), 1, anon_sym_DOT2, - STATE(4074), 1, + STATE(3870), 1, aux_sym_cell_path_repeat1, - STATE(4230), 1, + STATE(3996), 1, sym_path, - STATE(4246), 1, + STATE(4023), 1, sym_comment, - STATE(4939), 1, + STATE(4532), 1, sym_cell_path, - ACTIONS(1907), 2, + ACTIONS(1835), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1905), 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, - [162238] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2196), 1, - anon_sym_LPAREN2, - ACTIONS(2200), 1, - aux_sym_unquoted_token4, - STATE(4247), 1, - sym_comment, - ACTIONS(2194), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(2198), 12, - ts_builtin_sym_end, + ACTIONS(1833), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376884,23 +360611,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, - [162270] = 8, + [153361] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7271), 1, + ACTIONS(7218), 1, anon_sym_DOT2, - STATE(4074), 1, + STATE(3870), 1, aux_sym_cell_path_repeat1, - STATE(4230), 1, + STATE(3996), 1, sym_path, - STATE(4248), 1, + STATE(4024), 1, sym_comment, - STATE(4749), 1, + STATE(4533), 1, sym_cell_path, - ACTIONS(7401), 2, + ACTIONS(1881), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7399), 11, + ACTIONS(1879), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376912,16 +360639,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, - [162306] = 4, + [153397] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4249), 1, - sym_comment, - ACTIONS(1713), 3, + ACTIONS(7436), 1, sym__space, + ACTIONS(7438), 1, + anon_sym_DOT_DOT2, + STATE(4025), 1, + sym_comment, + ACTIONS(7440), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1711), 14, + ACTIONS(7434), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376935,21 +360665,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [162334] = 6, + [153429] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7510), 1, - anon_sym_DOT, - ACTIONS(7512), 1, - aux_sym__immediate_decimal_token2, - STATE(4250), 1, + ACTIONS(7218), 1, + anon_sym_DOT2, + STATE(3870), 1, + aux_sym_cell_path_repeat1, + STATE(3996), 1, + sym_path, + STATE(4026), 1, sym_comment, - ACTIONS(1668), 3, + STATE(4534), 1, + sym_cell_path, + ACTIONS(1851), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1666), 12, + ACTIONS(1849), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376961,48 +360693,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, - aux_sym_unquoted_token2, - [162366] = 4, - ACTIONS(245), 1, + [153465] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4251), 1, - sym_comment, - ACTIONS(1648), 3, - anon_sym_DASH2, + ACTIONS(994), 1, + sym__space, + ACTIONS(7438), 1, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1650), 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_LPAREN2, + STATE(4027), 1, + sym_comment, + ACTIONS(7440), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [162394] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7271), 1, - anon_sym_DOT2, - STATE(4074), 1, - aux_sym_cell_path_repeat1, - STATE(4230), 1, - sym_path, - STATE(4252), 1, - sym_comment, - STATE(4895), 1, - sym_cell_path, - ACTIONS(1929), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1927), 11, + ACTIONS(998), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377014,23 +360717,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, - [162430] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [153497] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7271), 1, - anon_sym_DOT2, - STATE(4074), 1, - aux_sym_cell_path_repeat1, - STATE(4230), 1, - sym_path, - STATE(4253), 1, - sym_comment, - STATE(4889), 1, - sym_cell_path, - ACTIONS(1961), 2, - ts_builtin_sym_end, + ACTIONS(1955), 1, sym__space, - ACTIONS(1959), 11, + ACTIONS(7442), 1, + anon_sym_DOT_DOT2, + STATE(4028), 1, + sym_comment, + ACTIONS(7444), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1949), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377042,23 +360743,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, - [162466] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [153529] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7271), 1, - anon_sym_DOT2, - STATE(4074), 1, - aux_sym_cell_path_repeat1, - STATE(4230), 1, - sym_path, - STATE(4254), 1, - sym_comment, - STATE(4926), 1, - sym_cell_path, - ACTIONS(1893), 2, - ts_builtin_sym_end, + ACTIONS(1963), 1, sym__space, - ACTIONS(1891), 11, + ACTIONS(7446), 1, + anon_sym_DOT_DOT2, + STATE(4029), 1, + sym_comment, + ACTIONS(7448), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1957), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377070,23 +360769,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, - [162502] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [153561] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7271), 1, - anon_sym_DOT2, - STATE(4074), 1, - aux_sym_cell_path_repeat1, - STATE(4230), 1, - sym_path, - STATE(4255), 1, - sym_comment, - STATE(4927), 1, - sym_cell_path, - ACTIONS(1925), 2, - ts_builtin_sym_end, + ACTIONS(1971), 1, sym__space, - ACTIONS(1923), 11, + ACTIONS(7450), 1, + anon_sym_DOT_DOT2, + STATE(4030), 1, + sym_comment, + ACTIONS(7452), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1965), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377098,20 +360795,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, - [162538] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [153593] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7514), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7516), 1, - aux_sym__immediate_decimal_token2, - STATE(4256), 1, - sym_comment, - ACTIONS(1650), 3, - ts_builtin_sym_end, + ACTIONS(1979), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1648), 12, + ACTIONS(7454), 1, + anon_sym_DOT_DOT2, + STATE(4031), 1, + sym_comment, + ACTIONS(7456), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1973), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377123,18 +360821,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, - aux_sym_unquoted_token2, - [162570] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [153625] = 5, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4257), 1, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + STATE(4032), 1, sym_comment, - ACTIONS(2045), 4, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - aux_sym_unquoted_token4, - ACTIONS(2047), 13, + ACTIONS(1813), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -377147,46 +360845,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_LPAREN2, - [162598] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [153655] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7518), 1, - anon_sym_LBRACK2, - STATE(4258), 1, - sym_comment, - ACTIONS(2290), 2, - anon_sym_LBRACK, - anon_sym_DASH2, - ACTIONS(2294), 14, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2014), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [162628] = 6, + ACTIONS(2066), 1, + sym_raw_string_begin, + ACTIONS(4328), 1, + anon_sym_DQUOTE, + ACTIONS(4332), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4334), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5133), 1, + anon_sym_LPAREN, + ACTIONS(7458), 1, + sym__unquoted_naive, + STATE(4033), 1, + sym_comment, + STATE(4336), 1, + sym__inter_single_quotes, + STATE(4388), 1, + sym__inter_double_quotes, + ACTIONS(4330), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3849), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4344), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [153703] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2091), 1, + ACTIONS(2104), 1, anon_sym_LPAREN2, - ACTIONS(2095), 1, + ACTIONS(2106), 1, aux_sym_unquoted_token4, - STATE(4259), 1, + STATE(4034), 1, sym_comment, - ACTIONS(2202), 3, + ACTIONS(998), 3, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(2204), 12, + ACTIONS(994), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -377199,21 +360908,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, - [162660] = 6, + [153735] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(4260), 1, + ACTIONS(7386), 1, + aux_sym__immediate_decimal_token2, + STATE(4035), 1, sym_comment, - ACTIONS(2089), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(2093), 12, - ts_builtin_sym_end, + ACTIONS(1703), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1701), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377225,23 +360930,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, - [162692] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [153765] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7271), 1, + ACTIONS(7218), 1, anon_sym_DOT2, - STATE(4074), 1, + STATE(3870), 1, aux_sym_cell_path_repeat1, - STATE(4230), 1, + STATE(3996), 1, sym_path, - STATE(4261), 1, + STATE(4036), 1, sym_comment, - STATE(4949), 1, + STATE(4535), 1, sym_cell_path, - ACTIONS(1841), 2, + ACTIONS(1865), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1839), 11, + ACTIONS(1863), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377253,39 +360961,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, - [162728] = 4, + [153801] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2382), 1, + ACTIONS(2488), 1, + anon_sym_COMMA, + ACTIONS(7287), 1, + anon_sym_EQ, + ACTIONS(7289), 1, + sym__newline, + ACTIONS(7291), 1, + anon_sym_COLON, + ACTIONS(7462), 1, anon_sym_DASH2, - STATE(4262), 1, + STATE(4037), 1, sym_comment, - ACTIONS(2384), 15, - anon_sym_EQ, + STATE(4181), 1, + aux_sym_parameter_repeat1, + STATE(4892), 1, + aux_sym_parameter_repeat2, + STATE(5971), 1, + aux_sym_shebang_repeat1, + STATE(4777), 2, + sym_param_type, + sym_param_value, + ACTIONS(7460), 7, sym_identifier, - sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [162755] = 5, + [153845] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7522), 1, + ACTIONS(7466), 1, anon_sym_and2, - STATE(1653), 1, + ACTIONS(7468), 1, + anon_sym_xor2, + ACTIONS(7470), 1, + anon_sym_or2, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(4263), 1, + STATE(4038), 1, sym_comment, - ACTIONS(7520), 14, + ACTIONS(7464), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377298,21 +361019,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, - [162784] = 6, + [153878] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7526), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(7474), 1, anon_sym_and2, - ACTIONS(7528), 1, + ACTIONS(7476), 1, anon_sym_xor2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4264), 1, + STATE(4039), 1, sym_comment, - ACTIONS(7524), 13, - sym__newline, + STATE(4096), 1, + aux_sym_shebang_repeat1, + ACTIONS(7472), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377325,38 +361045,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [162815] = 4, + [153911] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2414), 1, - anon_sym_DASH2, - STATE(4265), 1, - sym_comment, - ACTIONS(2416), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(3756), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [162842] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(4266), 1, + ACTIONS(7478), 1, + anon_sym_and2, + ACTIONS(7480), 1, + anon_sym_xor2, + STATE(4040), 1, sym_comment, - STATE(4449), 1, + STATE(4097), 1, aux_sym_shebang_repeat1, - ACTIONS(7530), 15, - sym__newline, + ACTIONS(7472), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377368,17 +361070,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, - [162869] = 4, - ACTIONS(245), 1, + [153944] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4267), 1, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + ACTIONS(1813), 1, + sym__space, + STATE(4041), 1, sym_comment, - STATE(4459), 1, - aux_sym_shebang_repeat1, - ACTIONS(7530), 15, + ACTIONS(1805), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377391,19 +361095,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, - [162896] = 5, - ACTIONS(245), 1, + anon_sym_RBRACE, + [153975] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7526), 1, - anon_sym_and2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4268), 1, + STATE(4042), 1, sym_comment, - ACTIONS(7532), 14, + ACTIONS(1762), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1760), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377416,21 +361117,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_xor2, - anon_sym_or2, - [162925] = 6, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [154002] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7526), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(7478), 1, anon_sym_and2, - ACTIONS(7528), 1, + ACTIONS(7480), 1, anon_sym_xor2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4269), 1, + ACTIONS(7484), 1, + anon_sym_or2, + STATE(4043), 1, sym_comment, - ACTIONS(7520), 13, - sym__newline, + STATE(4187), 1, + aux_sym_shebang_repeat1, + ACTIONS(7482), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377442,19 +361146,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_or2, - [162956] = 6, + [154037] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7522), 1, - anon_sym_and2, - ACTIONS(7534), 1, - anon_sym_xor2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4270), 1, + STATE(4044), 1, sym_comment, - ACTIONS(7524), 13, + ACTIONS(7486), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377467,17 +361164,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, - [162987] = 5, - ACTIONS(245), 1, + [154062] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7522), 1, - anon_sym_and2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4271), 1, + ACTIONS(7488), 1, + aux_sym__immediate_decimal_token2, + STATE(4045), 1, sym_comment, - ACTIONS(7532), 14, + ACTIONS(1762), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1760), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377489,17 +361191,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_xor2, - anon_sym_or2, - [163016] = 4, + aux_sym_unquoted_token2, + [154091] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(4272), 1, + STATE(4046), 1, sym_comment, - ACTIONS(7536), 15, + ACTIONS(7490), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377515,12 +361215,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [163043] = 3, + [154118] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4273), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4047), 1, sym_comment, - ACTIONS(7538), 16, + ACTIONS(7490), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377533,16 +361235,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, - [163068] = 3, + [154145] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4274), 1, + STATE(4048), 1, sym_comment, - ACTIONS(7538), 16, + STATE(4055), 1, + aux_sym_shebang_repeat1, + ACTIONS(7492), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377555,20 +361258,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [163093] = 5, - ACTIONS(245), 1, + [154172] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7526), 1, - anon_sym_and2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4275), 1, + ACTIONS(7494), 1, + anon_sym_DOT_DOT2, + STATE(4049), 1, sym_comment, - ACTIONS(7524), 14, + ACTIONS(1963), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7496), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1957), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377580,21 +361286,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, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [163122] = 6, + [154203] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7540), 1, + ACTIONS(1883), 1, + anon_sym_DASH2, + ACTIONS(7246), 1, + anon_sym_DOT2, + STATE(3842), 1, + sym_path, + STATE(3903), 1, + aux_sym_cell_path_repeat1, + STATE(4050), 1, + sym_comment, + STATE(4059), 1, + sym_cell_path, + ACTIONS(1885), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(7543), 1, - anon_sym_and2, - STATE(4276), 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, + [154238] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(4051), 1, sym_comment, - STATE(4467), 1, + STATE(4208), 1, aux_sym_shebang_repeat1, - ACTIONS(7530), 13, + ACTIONS(7498), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377606,20 +361333,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, - [163153] = 6, + [154265] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7540), 1, - sym__newline, - ACTIONS(7545), 1, - anon_sym_and2, - STATE(4277), 1, + STATE(4052), 1, sym_comment, - STATE(4470), 1, + STATE(4058), 1, aux_sym_shebang_repeat1, - ACTIONS(7530), 13, + ACTIONS(7492), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377631,20 +361356,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, - [163184] = 6, + [154292] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7526), 1, - anon_sym_and2, - ACTIONS(7528), 1, - anon_sym_xor2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4278), 1, + STATE(4053), 1, sym_comment, - ACTIONS(7532), 13, + STATE(4101), 1, + aux_sym_shebang_repeat1, + ACTIONS(7492), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377657,19 +361379,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, - [163215] = 6, + [154319] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7522), 1, - anon_sym_and2, - ACTIONS(7534), 1, - anon_sym_xor2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4279), 1, + STATE(4054), 1, sym_comment, - ACTIONS(7532), 13, + STATE(4102), 1, + aux_sym_shebang_repeat1, + ACTIONS(7492), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377682,15 +361402,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, - [163246] = 4, + [154346] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(4280), 1, + STATE(4055), 1, sym_comment, - ACTIONS(7536), 15, + ACTIONS(7500), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377706,18 +361428,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [163273] = 6, - ACTIONS(3), 1, + [154373] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - ACTIONS(4928), 1, - sym__space, - STATE(4281), 1, + ACTIONS(7466), 1, + anon_sym_and2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4056), 1, sym_comment, - STATE(7809), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4930), 13, + ACTIONS(7490), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377730,19 +361450,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, - [163304] = 6, - ACTIONS(3), 1, + anon_sym_xor2, + anon_sym_or2, + [154402] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - ACTIONS(4932), 1, - sym__space, - STATE(4282), 1, + ACTIONS(7466), 1, + anon_sym_and2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4057), 1, sym_comment, - STATE(7809), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4934), 13, + ACTIONS(7490), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377755,21 +361474,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, - [163335] = 7, + anon_sym_xor2, + anon_sym_or2, + [154431] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(7543), 1, - anon_sym_and2, - ACTIONS(7547), 1, - anon_sym_xor2, - STATE(4264), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(4283), 1, + STATE(4058), 1, sym_comment, - ACTIONS(7530), 12, + ACTIONS(7500), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377781,21 +361496,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, - [163368] = 7, + [154458] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(2390), 1, + anon_sym_DASH2, + STATE(4059), 1, + sym_comment, + ACTIONS(2392), 15, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(7545), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [154485] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7502), 1, anon_sym_and2, - ACTIONS(7549), 1, - anon_sym_xor2, - STATE(4270), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(4284), 1, + STATE(4060), 1, sym_comment, - ACTIONS(7530), 12, + ACTIONS(7490), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377807,16 +361544,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, - [163401] = 4, + [154514] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(4272), 1, - aux_sym_shebang_repeat1, - STATE(4285), 1, - sym_comment, - ACTIONS(7551), 15, + ACTIONS(7474), 1, + anon_sym_and2, + ACTIONS(7504), 1, sym__newline, + STATE(4061), 1, + sym_comment, + STATE(4103), 1, + aux_sym_shebang_repeat1, + ACTIONS(7492), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377828,18 +361569,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, - [163428] = 4, + [154545] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(4286), 1, + ACTIONS(7478), 1, + anon_sym_and2, + ACTIONS(7504), 1, + sym__newline, + STATE(4062), 1, sym_comment, - STATE(4317), 1, + STATE(4104), 1, aux_sym_shebang_repeat1, - ACTIONS(7553), 15, - sym__newline, + ACTIONS(7492), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377851,17 +361594,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, - [163455] = 4, - ACTIONS(245), 1, + [154576] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4280), 1, - aux_sym_shebang_repeat1, - STATE(4287), 1, + STATE(4063), 1, sym_comment, - ACTIONS(7551), 15, + ACTIONS(2078), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2076), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377874,17 +361617,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, - [163482] = 4, + anon_sym_RBRACE, + aux_sym_unquoted_token4, + [154603] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7555), 1, + ACTIONS(7466), 1, anon_sym_and2, - STATE(4288), 1, + ACTIONS(7468), 1, + anon_sym_xor2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4064), 1, sym_comment, - ACTIONS(7538), 15, + ACTIONS(7490), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377897,19 +361643,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_xor2, anon_sym_or2, - [163509] = 5, + [154634] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7522), 1, - anon_sym_and2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4289), 1, + ACTIONS(7507), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7509), 1, + aux_sym__immediate_decimal_token2, + STATE(4065), 1, + sym_comment, + ACTIONS(1686), 3, + sym_identifier, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1688), 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, + [154665] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + ACTIONS(7513), 1, + sym__space, + STATE(4066), 1, sym_comment, - ACTIONS(7524), 14, + STATE(6945), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7511), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377922,20 +361693,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, - [163538] = 6, + anon_sym_RBRACE, + [154696] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7526), 1, + ACTIONS(7502), 1, anon_sym_and2, - ACTIONS(7528), 1, + ACTIONS(7515), 1, anon_sym_xor2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(4290), 1, + STATE(4067), 1, sym_comment, - ACTIONS(7524), 13, + ACTIONS(7490), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377949,18 +361719,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [163569] = 6, + [154727] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7543), 1, - anon_sym_and2, - ACTIONS(7557), 1, + ACTIONS(3756), 1, sym__newline, - STATE(4291), 1, + ACTIONS(7474), 1, + anon_sym_and2, + ACTIONS(7476), 1, + anon_sym_xor2, + STATE(4068), 1, sym_comment, - STATE(4302), 1, + STATE(4105), 1, aux_sym_shebang_repeat1, - ACTIONS(7551), 13, + ACTIONS(7492), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377972,20 +361744,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, - [163600] = 6, + [154760] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7545), 1, - anon_sym_and2, - ACTIONS(7557), 1, + ACTIONS(3756), 1, sym__newline, - STATE(4292), 1, + ACTIONS(7478), 1, + anon_sym_and2, + ACTIONS(7480), 1, + anon_sym_xor2, + STATE(4069), 1, sym_comment, - STATE(4306), 1, + STATE(4106), 1, aux_sym_shebang_repeat1, - ACTIONS(7551), 13, + ACTIONS(7492), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377997,18 +361770,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, - [163631] = 5, + [154793] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7522), 1, - anon_sym_and2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4293), 1, + STATE(4070), 1, sym_comment, - ACTIONS(7536), 14, + STATE(4112), 1, + aux_sym_shebang_repeat1, + ACTIONS(7472), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378021,22 +361791,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, - [163660] = 7, + [154820] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(7543), 1, + ACTIONS(7474), 1, anon_sym_and2, - ACTIONS(7547), 1, + ACTIONS(7476), 1, anon_sym_xor2, - STATE(4294), 1, + ACTIONS(7517), 1, + anon_sym_or2, + STATE(4071), 1, sym_comment, - STATE(4331), 1, + STATE(4144), 1, aux_sym_shebang_repeat1, - ACTIONS(7551), 12, + ACTIONS(7482), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378048,21 +361821,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_or2, - [163693] = 7, + [154855] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(7545), 1, - anon_sym_and2, - ACTIONS(7549), 1, - anon_sym_xor2, - STATE(4295), 1, + STATE(4072), 1, sym_comment, - STATE(4374), 1, + STATE(4113), 1, aux_sym_shebang_repeat1, - ACTIONS(7551), 12, + ACTIONS(7472), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378074,16 +361841,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, - [163726] = 4, + [154882] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7560), 1, + ACTIONS(7474), 1, anon_sym_and2, - STATE(4296), 1, - sym_comment, - ACTIONS(7538), 15, + ACTIONS(7519), 1, sym__newline, + STATE(4073), 1, + sym_comment, + STATE(4119), 1, + aux_sym_shebang_repeat1, + ACTIONS(7472), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378095,18 +361867,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, - [163753] = 4, + [154913] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(4297), 1, + ACTIONS(7478), 1, + anon_sym_and2, + ACTIONS(7519), 1, + sym__newline, + STATE(4074), 1, sym_comment, - STATE(4323), 1, + STATE(4120), 1, aux_sym_shebang_repeat1, - ACTIONS(7553), 15, - sym__newline, + ACTIONS(7472), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378118,21 +361892,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, - [163780] = 6, + [154944] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7543), 1, - anon_sym_and2, - ACTIONS(7562), 1, - sym__newline, - STATE(4298), 1, + STATE(4075), 1, sym_comment, - STATE(4308), 1, + STATE(4209), 1, aux_sym_shebang_repeat1, - ACTIONS(7553), 13, + ACTIONS(7498), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378144,21 +361914,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_and2, anon_sym_xor2, anon_sym_or2, - [163811] = 6, - ACTIONS(3), 1, + [154971] = 7, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - ACTIONS(4938), 1, - sym__space, - STATE(4299), 1, - sym_comment, - STATE(7809), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4940), 13, + ACTIONS(3756), 1, sym__newline, + ACTIONS(7474), 1, + anon_sym_and2, + ACTIONS(7476), 1, + anon_sym_xor2, + STATE(4076), 1, + sym_comment, + STATE(4123), 1, + aux_sym_shebang_repeat1, + ACTIONS(7472), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378170,20 +361942,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, - [163842] = 6, - ACTIONS(3), 1, + anon_sym_or2, + [155004] = 7, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - ACTIONS(4946), 1, - sym__space, - STATE(4300), 1, - sym_comment, - STATE(7809), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4948), 13, + ACTIONS(3756), 1, sym__newline, + ACTIONS(7478), 1, + anon_sym_and2, + ACTIONS(7480), 1, + anon_sym_xor2, + STATE(4077), 1, + sym_comment, + STATE(4124), 1, + aux_sym_shebang_repeat1, + ACTIONS(7472), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378195,40 +361968,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, - [163873] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2378), 1, - anon_sym_DASH2, - STATE(4301), 1, - sym_comment, - ACTIONS(2380), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [163900] = 5, + anon_sym_or2, + [155037] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7526), 1, + ACTIONS(7466), 1, anon_sym_and2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(4302), 1, + STATE(4078), 1, sym_comment, - ACTIONS(7536), 14, + ACTIONS(7500), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378243,17 +361993,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [163929] = 4, - ACTIONS(3), 1, + [155066] = 5, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4303), 1, + ACTIONS(7502), 1, + anon_sym_and2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4079), 1, sym_comment, - ACTIONS(1969), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1967), 12, + ACTIONS(7500), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378265,19 +362014,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_DOT_DOT2, - [163956] = 6, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [155095] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7522), 1, + ACTIONS(7466), 1, anon_sym_and2, - ACTIONS(7534), 1, + ACTIONS(7468), 1, anon_sym_xor2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(4304), 1, + STATE(4080), 1, sym_comment, - ACTIONS(7524), 13, + ACTIONS(7500), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378291,16 +362042,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [163987] = 5, + [155126] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7555), 1, + ACTIONS(7502), 1, anon_sym_and2, - ACTIONS(7565), 1, - anon_sym_xor2, - STATE(4305), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4081), 1, sym_comment, - ACTIONS(7538), 14, + ACTIONS(7490), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378313,19 +362064,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, - [164016] = 5, + [155155] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7522), 1, + ACTIONS(7474), 1, anon_sym_and2, - STATE(1653), 1, + ACTIONS(7504), 1, + sym__newline, + STATE(4078), 1, aux_sym_shebang_repeat1, - STATE(4306), 1, + STATE(4082), 1, sym_comment, - ACTIONS(7536), 14, - sym__newline, + ACTIONS(7492), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378339,21 +362091,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [164045] = 7, - ACTIONS(245), 1, + [155186] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7526), 1, - anon_sym_and2, + ACTIONS(7522), 1, + sym__newline, + ACTIONS(7524), 1, + sym__space, ACTIONS(7528), 1, - anon_sym_xor2, - ACTIONS(7569), 1, - anon_sym_or2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4307), 1, + anon_sym_COLON2, + STATE(4083), 1, sym_comment, - ACTIONS(7567), 12, - sym__newline, + STATE(4270), 1, + aux_sym_attribute_repeat1, + STATE(5910), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(7526), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378364,18 +362117,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, - [164078] = 5, + anon_sym_RBRACE, + [155221] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7526), 1, + ACTIONS(7474), 1, anon_sym_and2, - STATE(1653), 1, + ACTIONS(7530), 1, + sym__newline, + STATE(4056), 1, aux_sym_shebang_repeat1, - STATE(4308), 1, + STATE(4084), 1, sym_comment, - ACTIONS(7520), 14, - sym__newline, + ACTIONS(7498), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378389,18 +362143,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [164107] = 6, - ACTIONS(245), 1, + [155252] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7543), 1, - anon_sym_and2, - ACTIONS(7562), 1, - sym__newline, - STATE(4309), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + ACTIONS(4826), 1, + sym__space, + STATE(4085), 1, sym_comment, - STATE(4328), 1, - aux_sym_shebang_repeat1, - ACTIONS(7553), 13, + STATE(7173), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4828), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378412,20 +362167,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, - [164138] = 6, - ACTIONS(245), 1, + anon_sym_RBRACE, + [155283] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7522), 1, - anon_sym_and2, - ACTIONS(7534), 1, - anon_sym_xor2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4310), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + ACTIONS(4830), 1, + sym__space, + STATE(4086), 1, sym_comment, - ACTIONS(7520), 13, + STATE(7173), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4832), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378438,19 +362192,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_or2, - [164169] = 6, + anon_sym_RBRACE, + [155314] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7545), 1, + ACTIONS(7502), 1, anon_sym_and2, - ACTIONS(7562), 1, - sym__newline, - STATE(4263), 1, + ACTIONS(7515), 1, + anon_sym_xor2, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(4311), 1, + STATE(4087), 1, sym_comment, - ACTIONS(7553), 13, + ACTIONS(7500), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378462,16 +362217,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, - [164200] = 4, + [155345] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(4312), 1, + STATE(4088), 1, sym_comment, - ACTIONS(7536), 15, + ACTIONS(7533), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378487,37 +362241,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [164227] = 4, + [155372] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1579), 1, - anon_sym_DASH2, - STATE(4313), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4089), 1, sym_comment, - ACTIONS(1591), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(7533), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - 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, - anon_sym_RBRACE, - [164254] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [155399] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4314), 1, + STATE(4090), 1, sym_comment, - ACTIONS(7536), 15, + STATE(4227), 1, + aux_sym_shebang_repeat1, + ACTIONS(7535), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378533,14 +362287,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [164281] = 4, + [155426] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4315), 1, + STATE(4091), 1, sym_comment, - ACTIONS(7524), 15, + STATE(4228), 1, + aux_sym_shebang_repeat1, + ACTIONS(7535), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378556,12 +362310,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [164308] = 3, + [155453] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(4316), 1, + ACTIONS(7466), 1, + anon_sym_and2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4092), 1, sym_comment, - ACTIONS(7326), 16, + ACTIONS(7533), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378574,18 +362332,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, - [164333] = 4, + [155482] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + ACTIONS(7502), 1, + anon_sym_and2, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(4317), 1, + STATE(4093), 1, sym_comment, - ACTIONS(7520), 15, + ACTIONS(7533), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378598,46 +362356,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, - [164360] = 6, + [155511] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7571), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7573), 1, - aux_sym__immediate_decimal_token2, - STATE(4318), 1, - sym_comment, - ACTIONS(1648), 3, - sym_identifier, - anon_sym_DASH2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1650), 11, - anon_sym_EQ, + ACTIONS(7474), 1, + anon_sym_and2, + ACTIONS(7537), 1, sym__newline, + STATE(4094), 1, + sym_comment, + STATE(4230), 1, + aux_sym_shebang_repeat1, + ACTIONS(7535), 13, + 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_LPAREN2, - [164391] = 6, + anon_sym_xor2, + anon_sym_or2, + [155542] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7545), 1, + ACTIONS(7478), 1, anon_sym_and2, - ACTIONS(7562), 1, + ACTIONS(7537), 1, sym__newline, - STATE(4319), 1, + STATE(4095), 1, sym_comment, - STATE(4362), 1, + STATE(4231), 1, aux_sym_shebang_repeat1, - ACTIONS(7553), 13, + ACTIONS(7535), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378651,20 +362408,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [164422] = 7, + [155573] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7522), 1, + ACTIONS(7466), 1, anon_sym_and2, - ACTIONS(7534), 1, + ACTIONS(7468), 1, anon_sym_xor2, - ACTIONS(7575), 1, - anon_sym_or2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(4320), 1, + STATE(4096), 1, sym_comment, - ACTIONS(7567), 12, + ACTIONS(7533), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378677,22 +362432,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [164455] = 8, + anon_sym_or2, + [155604] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(7543), 1, + ACTIONS(7502), 1, anon_sym_and2, - ACTIONS(7547), 1, + ACTIONS(7515), 1, anon_sym_xor2, - ACTIONS(7579), 1, - anon_sym_or2, - STATE(4321), 1, - sym_comment, - STATE(4450), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(7577), 11, + STATE(4097), 1, + sym_comment, + ACTIONS(7533), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378704,37 +362457,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [164490] = 4, + anon_sym_or2, + [155635] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2418), 1, - anon_sym_DASH2, - STATE(4322), 1, - sym_comment, - ACTIONS(2420), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(3756), 1, sym__newline, + ACTIONS(7474), 1, + anon_sym_and2, + ACTIONS(7476), 1, + anon_sym_xor2, + STATE(4098), 1, + sym_comment, + STATE(4232), 1, + aux_sym_shebang_repeat1, + ACTIONS(7535), 12, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - 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, - anon_sym_RBRACE, - [164517] = 4, + anon_sym_or2, + [155668] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4323), 1, + STATE(4099), 1, sym_comment, - ACTIONS(7520), 15, + ACTIONS(7336), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378747,25 +362502,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [164544] = 8, + [155693] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(7545), 1, + ACTIONS(7478), 1, anon_sym_and2, - ACTIONS(7549), 1, + ACTIONS(7480), 1, anon_sym_xor2, - ACTIONS(7581), 1, - anon_sym_or2, - STATE(4324), 1, + STATE(4100), 1, sym_comment, - STATE(4452), 1, + STATE(4233), 1, aux_sym_shebang_repeat1, - ACTIONS(7577), 11, + ACTIONS(7535), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378777,16 +362531,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [164579] = 5, + anon_sym_or2, + [155726] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7560), 1, - anon_sym_and2, - ACTIONS(7583), 1, - anon_sym_xor2, - STATE(4325), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4101), 1, sym_comment, - ACTIONS(7538), 14, + ACTIONS(7500), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378799,14 +362552,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, - [164608] = 3, + [155753] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4326), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4102), 1, sym_comment, - ACTIONS(7393), 16, + ACTIONS(7500), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378819,43 +362575,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, - [164633] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2374), 1, - anon_sym_DASH2, - STATE(4327), 1, - sym_comment, - ACTIONS(2376), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [164660] = 5, + [155780] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7526), 1, + ACTIONS(7466), 1, anon_sym_and2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(4328), 1, + STATE(4103), 1, sym_comment, - ACTIONS(7520), 14, + ACTIONS(7500), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378870,12 +362602,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [164689] = 3, + [155809] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(4329), 1, + ACTIONS(7502), 1, + anon_sym_and2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4104), 1, sym_comment, - ACTIONS(7326), 16, + ACTIONS(7500), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378888,18 +362624,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, - [164714] = 4, + [155838] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + ACTIONS(7466), 1, + anon_sym_and2, + ACTIONS(7468), 1, + anon_sym_xor2, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(4330), 1, + STATE(4105), 1, sym_comment, - ACTIONS(7520), 15, + ACTIONS(7500), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378912,21 +362650,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, - [164741] = 6, + [155869] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7526), 1, + ACTIONS(7502), 1, anon_sym_and2, - ACTIONS(7528), 1, + ACTIONS(7515), 1, anon_sym_xor2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(4331), 1, + STATE(4106), 1, sym_comment, - ACTIONS(7536), 13, + ACTIONS(7500), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378940,41 +362676,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [164772] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(998), 1, - anon_sym_DASH2, - STATE(4332), 1, - sym_comment, - ACTIONS(994), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [164799] = 6, + [155900] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2061), 1, - anon_sym_LPAREN2, - ACTIONS(2063), 1, + ACTIONS(1703), 1, sym__space, - ACTIONS(2065), 1, - aux_sym_unquoted_token2, - STATE(4333), 1, + ACTIONS(7171), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7540), 1, + anon_sym_DOT, + STATE(4107), 1, sym_comment, - ACTIONS(2059), 13, + ACTIONS(1701), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378988,19 +362701,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [164830] = 6, + [155931] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7526), 1, + ACTIONS(7478), 1, anon_sym_and2, - ACTIONS(7528), 1, - anon_sym_xor2, - STATE(1653), 1, + ACTIONS(7504), 1, + sym__newline, + STATE(4079), 1, aux_sym_shebang_repeat1, - STATE(4334), 1, + STATE(4108), 1, sym_comment, - ACTIONS(7536), 13, - sym__newline, + ACTIONS(7492), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379012,15 +362724,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_xor2, anon_sym_or2, - [164861] = 4, + [155962] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4335), 1, + ACTIONS(7542), 1, + anon_sym_and2, + STATE(4109), 1, sym_comment, - ACTIONS(7524), 15, + ACTIONS(7486), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379033,46 +362746,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_and2, + anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [164888] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2398), 1, - anon_sym_DASH2, - STATE(4336), 1, - sym_comment, - ACTIONS(2400), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [164915] = 6, + [155989] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7585), 1, + ACTIONS(7544), 1, anon_sym_DOT_DOT2, - STATE(4337), 1, + STATE(4110), 1, sym_comment, - ACTIONS(7484), 2, + ACTIONS(7436), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7587), 2, + ACTIONS(7546), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7482), 11, + ACTIONS(7434), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379084,21 +362774,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, - [164946] = 6, - ACTIONS(3), 1, + [156020] = 7, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7585), 1, - anon_sym_DOT_DOT2, - STATE(4338), 1, - sym_comment, - ACTIONS(994), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7587), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(998), 11, + ACTIONS(3756), 1, sym__newline, + ACTIONS(7478), 1, + anon_sym_and2, + ACTIONS(7480), 1, + anon_sym_xor2, + STATE(4111), 1, + sym_comment, + STATE(4142), 1, + aux_sym_shebang_repeat1, + ACTIONS(7498), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379109,18 +362798,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, - [164977] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_or2, + [156053] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1668), 1, - sym__space, - ACTIONS(7211), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7589), 1, - anon_sym_DOT, - STATE(4339), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4112), 1, sym_comment, - ACTIONS(1666), 13, + ACTIONS(7533), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379133,15 +362820,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, - [165008] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [156080] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4340), 1, - sym_comment, - STATE(4399), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(7591), 15, + STATE(4113), 1, + sym_comment, + ACTIONS(7533), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379157,14 +362846,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [165035] = 4, + [156107] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4341), 1, + STATE(4114), 1, sym_comment, - STATE(4401), 1, + STATE(4234), 1, aux_sym_shebang_repeat1, - ACTIONS(7591), 15, + ACTIONS(7535), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379180,41 +362869,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [165062] = 4, + [156134] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2406), 1, - anon_sym_DASH2, - STATE(4342), 1, + ACTIONS(7466), 1, + anon_sym_and2, + ACTIONS(7468), 1, + anon_sym_xor2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4115), 1, sym_comment, - ACTIONS(2408), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(7548), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - 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, - anon_sym_RBRACE, - [165089] = 6, + anon_sym_or2, + [156165] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7522), 1, + ACTIONS(7550), 1, anon_sym_and2, - ACTIONS(7534), 1, - anon_sym_xor2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4343), 1, + STATE(4116), 1, sym_comment, - ACTIONS(7536), 13, + ACTIONS(7486), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379227,16 +362914,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, - [165120] = 4, - ACTIONS(3), 1, + [156192] = 5, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4344), 1, + ACTIONS(7542), 1, + anon_sym_and2, + ACTIONS(7552), 1, + anon_sym_xor2, + STATE(4117), 1, sym_comment, - ACTIONS(2047), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2045), 14, + ACTIONS(7486), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379250,13 +362940,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token4, - [165147] = 3, + anon_sym_or2, + [156221] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4345), 1, + STATE(4118), 1, sym_comment, - ACTIONS(7393), 16, + STATE(4236), 1, + aux_sym_shebang_repeat1, + ACTIONS(7535), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379269,19 +362961,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, - [165172] = 4, + [156248] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7128), 1, - aux_sym_unquoted_token2, - STATE(4346), 1, + ACTIONS(7466), 1, + anon_sym_and2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4119), 1, sym_comment, - ACTIONS(1591), 15, - ts_builtin_sym_end, + ACTIONS(7533), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379293,18 +362985,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_RPAREN, anon_sym_xor2, anon_sym_or2, - [165199] = 4, - ACTIONS(3), 1, + [156277] = 5, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4347), 1, + ACTIONS(7502), 1, + anon_sym_and2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4120), 1, sym_comment, - ACTIONS(1668), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1666), 14, + ACTIONS(7533), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379317,22 +363010,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_RBRACE, - aux_sym_unquoted_token2, - [165226] = 7, + anon_sym_xor2, + anon_sym_or2, + [156306] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(7543), 1, + ACTIONS(7474), 1, anon_sym_and2, - ACTIONS(7547), 1, - anon_sym_xor2, - STATE(4269), 1, + ACTIONS(7537), 1, + sym__newline, + STATE(4121), 1, + sym_comment, + STATE(4237), 1, aux_sym_shebang_repeat1, - STATE(4348), 1, + ACTIONS(7535), 13, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [156337] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7478), 1, + anon_sym_and2, + ACTIONS(7537), 1, + sym__newline, + STATE(4122), 1, sym_comment, - ACTIONS(7553), 12, + STATE(4238), 1, + aux_sym_shebang_repeat1, + ACTIONS(7535), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379344,15 +363060,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, - [165259] = 4, + [156368] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(4330), 1, + ACTIONS(7466), 1, + anon_sym_and2, + ACTIONS(7468), 1, + anon_sym_xor2, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(4349), 1, + STATE(4123), 1, sym_comment, - ACTIONS(7553), 15, + ACTIONS(7533), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379365,20 +363086,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, - [165286] = 4, - ACTIONS(3), 1, + [156399] = 6, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4350), 1, + ACTIONS(7502), 1, + anon_sym_and2, + ACTIONS(7515), 1, + anon_sym_xor2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4124), 1, sym_comment, - ACTIONS(1713), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1711), 12, + ACTIONS(7533), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379390,16 +363110,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_DOT_DOT2, - [165313] = 4, + anon_sym_RPAREN, + anon_sym_or2, + [156430] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(4351), 1, - sym_comment, - STATE(4355), 1, - aux_sym_shebang_repeat1, - ACTIONS(7553), 15, + ACTIONS(3756), 1, sym__newline, + ACTIONS(7474), 1, + anon_sym_and2, + ACTIONS(7476), 1, + anon_sym_xor2, + STATE(4115), 1, + aux_sym_shebang_repeat1, + STATE(4125), 1, + sym_comment, + ACTIONS(7535), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379411,17 +363137,41 @@ 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, + [156463] = 7, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(7478), 1, anon_sym_and2, + ACTIONS(7480), 1, anon_sym_xor2, + STATE(4126), 1, + sym_comment, + STATE(4205), 1, + aux_sym_shebang_repeat1, + ACTIONS(7535), 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, - [165340] = 4, + [156496] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2422), 1, + ACTIONS(2382), 1, anon_sym_DASH2, - STATE(4352), 1, + STATE(4127), 1, sym_comment, - ACTIONS(2424), 15, + ACTIONS(2384), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -379437,18 +363187,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [165367] = 5, + [156523] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7550), 1, + anon_sym_and2, + ACTIONS(7554), 1, + anon_sym_xor2, + STATE(4128), 1, + sym_comment, + ACTIONS(7486), 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_or2, + [156552] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7593), 1, - aux_sym__immediate_decimal_token2, - STATE(4353), 1, + STATE(4129), 1, sym_comment, - ACTIONS(1721), 3, + ACTIONS(984), 4, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1719), 12, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(982), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379460,13 +363233,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, - aux_sym_unquoted_token2, - [165396] = 3, + anon_sym_DOT_DOT2, + [156579] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(4354), 1, + STATE(4130), 1, sym_comment, - ACTIONS(7326), 16, + ACTIONS(7486), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379483,14 +363256,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [165421] = 4, - ACTIONS(245), 1, + [156604] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4355), 1, + STATE(4131), 1, sym_comment, - ACTIONS(7520), 15, + ACTIONS(1799), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1797), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379503,21 +363277,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_and2, - anon_sym_xor2, - anon_sym_or2, - [165448] = 6, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [156631] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1616), 1, + anon_sym_DASH2, + STATE(4132), 1, + sym_comment, + ACTIONS(1628), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [156658] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(998), 1, + anon_sym_DASH2, + STATE(4133), 1, + sym_comment, + ACTIONS(994), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [156685] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(2394), 1, + anon_sym_DASH2, + STATE(4134), 1, + sym_comment, + ACTIONS(2396), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [156712] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2196), 1, + ACTIONS(2164), 1, anon_sym_LPAREN2, - ACTIONS(2198), 1, + ACTIONS(2166), 1, sym__space, - ACTIONS(2200), 1, + ACTIONS(2168), 1, aux_sym_unquoted_token4, - STATE(4356), 1, + STATE(4135), 1, sym_comment, - ACTIONS(2194), 13, + ACTIONS(2162), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379531,16 +363373,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165479] = 6, + [156743] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(994), 1, sym__space, - ACTIONS(2190), 1, + ACTIONS(2104), 1, anon_sym_LPAREN2, - ACTIONS(2192), 1, + ACTIONS(2106), 1, aux_sym_unquoted_token4, - STATE(4357), 1, + STATE(4136), 1, sym_comment, ACTIONS(998), 13, sym__newline, @@ -379556,20 +363398,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165510] = 6, + [156774] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(2405), 1, + anon_sym_DASH2, + STATE(4137), 1, + sym_comment, + ACTIONS(2407), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [156801] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7595), 1, + ACTIONS(7556), 1, anon_sym_DOT_DOT2, - STATE(4358), 1, + STATE(4138), 1, sym_comment, - ACTIONS(2015), 2, + ACTIONS(1971), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7597), 2, + ACTIONS(7558), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2009), 11, + ACTIONS(1965), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379581,20 +363446,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, - [165541] = 6, + [156832] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7599), 1, - anon_sym_DOT_DOT2, - STATE(4359), 1, - sym_comment, - ACTIONS(2023), 2, - ts_builtin_sym_end, + ACTIONS(4815), 1, sym__space, - ACTIONS(7601), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2017), 11, + ACTIONS(7560), 1, + anon_sym_EQ2, + ACTIONS(7562), 1, + sym_short_flag_identifier, + STATE(4139), 1, + sym_comment, + ACTIONS(4817), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379606,20 +363469,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, - [165572] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [156863] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7603), 1, - anon_sym_DOT_DOT2, - STATE(4360), 1, + STATE(4140), 1, sym_comment, - ACTIONS(2031), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7605), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2025), 11, + ACTIONS(7336), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379631,18 +363488,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, - [165603] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [156888] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - ACTIONS(2051), 1, - anon_sym_LPAREN2, - ACTIONS(2053), 1, - sym__space, - STATE(4361), 1, + ACTIONS(7466), 1, + anon_sym_and2, + ACTIONS(7468), 1, + anon_sym_xor2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4141), 1, sym_comment, - ACTIONS(2049), 13, + ACTIONS(7490), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379655,17 +363517,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, - [165634] = 5, + anon_sym_or2, + [156919] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7522), 1, + ACTIONS(7502), 1, anon_sym_and2, - STATE(1653), 1, + ACTIONS(7515), 1, + anon_sym_xor2, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(4362), 1, + STATE(4142), 1, sym_comment, - ACTIONS(7520), 14, + ACTIONS(7490), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379678,19 +363542,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_xor2, anon_sym_or2, - [165663] = 4, - ACTIONS(3), 1, + [156950] = 3, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4363), 1, + STATE(4143), 1, sym_comment, - ACTIONS(2003), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2001), 12, + ACTIONS(7263), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379702,23 +363560,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, - [165690] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [156975] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(7543), 1, + ACTIONS(7466), 1, anon_sym_and2, - ACTIONS(7547), 1, + ACTIONS(7468), 1, anon_sym_xor2, - ACTIONS(7579), 1, + ACTIONS(7470), 1, anon_sym_or2, - STATE(4307), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(4364), 1, + STATE(4144), 1, sym_comment, - ACTIONS(7607), 11, + ACTIONS(7564), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379730,22 +363591,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [165725] = 8, + [157008] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + STATE(4145), 1, + sym_comment, + ACTIONS(7486), 16, sym__newline, - ACTIONS(7545), 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, anon_sym_and2, - ACTIONS(7549), 1, anon_sym_xor2, - ACTIONS(7581), 1, anon_sym_or2, - STATE(4320), 1, - aux_sym_shebang_repeat1, - STATE(4365), 1, + [157033] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(4146), 1, sym_comment, - ACTIONS(7607), 11, + ACTIONS(7486), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379757,41 +363631,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [165760] = 4, - ACTIONS(245), 1, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [157058] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1851), 1, - anon_sym_DASH2, - STATE(4366), 1, + ACTIONS(7424), 1, + aux_sym__immediate_decimal_token2, + STATE(4147), 1, sym_comment, - ACTIONS(1853), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(1703), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1701), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [165787] = 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, + aux_sym_unquoted_token2, + [157087] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2091), 1, + ACTIONS(2070), 1, anon_sym_LPAREN2, - ACTIONS(2095), 1, + ACTIONS(2074), 1, aux_sym_unquoted_token4, - ACTIONS(2204), 1, + ACTIONS(2130), 1, sym__space, - STATE(4367), 1, + STATE(4148), 1, sym_comment, - ACTIONS(2202), 13, + ACTIONS(2128), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379805,15 +363684,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165818] = 4, + [157118] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4368), 1, - sym_comment, - ACTIONS(1650), 2, - sym__space, + ACTIONS(2070), 1, anon_sym_LPAREN2, - ACTIONS(1648), 14, + ACTIONS(2072), 1, + sym__space, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(4149), 1, + sym_comment, + ACTIONS(2068), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379827,45 +363709,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [165845] = 6, + [157149] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7609), 1, - anon_sym_DOT, - ACTIONS(7611), 1, - aux_sym__immediate_decimal_token2, - STATE(4369), 1, - sym_comment, - ACTIONS(1666), 3, - sym_identifier, - anon_sym_DASH2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1668), 11, - anon_sym_EQ, + ACTIONS(3756), 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, - anon_sym_LPAREN2, - [165876] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7512), 1, - aux_sym__immediate_decimal_token2, - STATE(4370), 1, + ACTIONS(7474), 1, + anon_sym_and2, + ACTIONS(7476), 1, + anon_sym_xor2, + STATE(4141), 1, + aux_sym_shebang_repeat1, + STATE(4150), 1, sym_comment, - ACTIONS(1668), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1666), 12, - sym__newline, + ACTIONS(7498), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379876,19 +363733,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_token2, - [165905] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_or2, + [157182] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2093), 1, - sym__space, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(4371), 1, + ACTIONS(7542), 1, + anon_sym_and2, + STATE(4151), 1, sym_comment, - ACTIONS(2089), 13, + ACTIONS(7486), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379902,14 +363756,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165936] = 4, + anon_sym_xor2, + anon_sym_or2, + [157209] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2410), 1, + ACTIONS(1867), 1, anon_sym_DASH2, - STATE(4372), 1, + STATE(4152), 1, sym_comment, - ACTIONS(2412), 15, + ACTIONS(1869), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -379925,18 +363781,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [165963] = 6, + [157236] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7555), 1, - anon_sym_and2, - ACTIONS(7565), 1, - anon_sym_xor2, - ACTIONS(7615), 1, - anon_sym_or2, - STATE(4373), 1, + ACTIONS(2362), 1, + anon_sym_DASH2, + STATE(4153), 1, + sym_comment, + ACTIONS(2364), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [157263] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4154), 1, sym_comment, - ACTIONS(7613), 13, + ACTIONS(1989), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1987), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379948,21 +363826,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, - [165994] = 6, + anon_sym_DOT_DOT2, + [157290] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7522), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(7474), 1, anon_sym_and2, - ACTIONS(7534), 1, + ACTIONS(7476), 1, anon_sym_xor2, - STATE(1653), 1, + STATE(4080), 1, aux_sym_shebang_repeat1, - STATE(4374), 1, + STATE(4155), 1, sym_comment, - ACTIONS(7536), 13, - sym__newline, + ACTIONS(7492), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379975,19 +363853,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [166025] = 6, - ACTIONS(3), 1, + [157323] = 7, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - ACTIONS(7619), 1, - sym__space, - STATE(4375), 1, - sym_comment, - STATE(7520), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7617), 13, + ACTIONS(3756), 1, sym__newline, + ACTIONS(7478), 1, + anon_sym_and2, + ACTIONS(7480), 1, + anon_sym_xor2, + STATE(4087), 1, + aux_sym_shebang_repeat1, + STATE(4156), 1, + sym_comment, + ACTIONS(7492), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379999,38 +363878,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, - [166056] = 3, + anon_sym_or2, + [157356] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4376), 1, + ACTIONS(2409), 1, + anon_sym_DASH2, + STATE(4157), 1, sym_comment, - ACTIONS(7393), 16, + ACTIONS(2411), 15, + 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_LBRACK, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [166081] = 4, + [157383] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4377), 1, + ACTIONS(7566), 1, + anon_sym_DOT_DOT2, + STATE(4158), 1, sym_comment, - ACTIONS(1721), 2, + ACTIONS(1955), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1719), 14, + ACTIONS(7568), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1949), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380042,25 +363927,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, - aux_sym_unquoted_token2, - [166108] = 8, - ACTIONS(3), 1, + [157414] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7621), 1, - sym__newline, - ACTIONS(7623), 1, - sym__space, - ACTIONS(7627), 1, - anon_sym_COLON2, - STATE(4378), 1, + STATE(4047), 1, + aux_sym_shebang_repeat1, + STATE(4159), 1, sym_comment, - STATE(4482), 1, - aux_sym_attribute_repeat1, - STATE(6232), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(7625), 11, + ACTIONS(7498), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380071,23 +363946,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_RBRACE, - [166143] = 8, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [157441] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7621), 1, - sym__newline, - ACTIONS(7623), 1, - sym__space, - ACTIONS(7629), 1, - anon_sym_COLON2, - STATE(4379), 1, + ACTIONS(7570), 1, + anon_sym_DOT, + ACTIONS(7572), 1, + aux_sym__immediate_decimal_token2, + STATE(4160), 1, sym_comment, - STATE(4482), 1, - aux_sym_attribute_repeat1, - STATE(6335), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(7625), 11, + ACTIONS(1701), 3, + sym_identifier, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1703), 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, + [157472] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + ACTIONS(2136), 1, + sym__space, + STATE(4161), 1, + sym_comment, + ACTIONS(2134), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380098,21 +363998,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, - [166178] = 7, - ACTIONS(245), 1, + [157503] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(7545), 1, - anon_sym_and2, - ACTIONS(7549), 1, - anon_sym_xor2, - STATE(4310), 1, - aux_sym_shebang_repeat1, - STATE(4380), 1, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1790), 1, + sym__space, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + STATE(4162), 1, sym_comment, - ACTIONS(7553), 12, + ACTIONS(1782), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380124,40 +364024,61 @@ 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, - [166211] = 6, + anon_sym_RBRACE, + [157534] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7560), 1, - anon_sym_and2, - ACTIONS(7583), 1, - anon_sym_xor2, - ACTIONS(7631), 1, - anon_sym_or2, - STATE(4381), 1, + ACTIONS(2421), 1, + anon_sym_DASH2, + STATE(4163), 1, sym_comment, - ACTIONS(7613), 13, + ACTIONS(2423), 15, + 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_LBRACK, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - [166242] = 4, + [157561] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4382), 1, + ACTIONS(2370), 1, + anon_sym_DASH2, + STATE(4164), 1, + sym_comment, + ACTIONS(2372), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [157588] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7550), 1, + anon_sym_and2, + STATE(4165), 1, sym_comment, - ACTIONS(7532), 15, + ACTIONS(7486), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380170,23 +364091,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_RBRACE, anon_sym_xor2, anon_sym_or2, - [166269] = 7, + [157615] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(7543), 1, + ACTIONS(7542), 1, anon_sym_and2, - ACTIONS(7547), 1, + ACTIONS(7552), 1, anon_sym_xor2, - STATE(4383), 1, + STATE(4166), 1, sym_comment, - STATE(4442), 1, - aux_sym_shebang_repeat1, - ACTIONS(7553), 12, + ACTIONS(7486), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380198,21 +364116,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_or2, - [166302] = 7, + [157644] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(7545), 1, + ACTIONS(7474), 1, anon_sym_and2, - ACTIONS(7549), 1, - anon_sym_xor2, - STATE(4384), 1, - sym_comment, - STATE(4447), 1, + ACTIONS(7530), 1, + sym__newline, + STATE(4057), 1, aux_sym_shebang_repeat1, - ACTIONS(7553), 12, + STATE(4167), 1, + sym_comment, + ACTIONS(7498), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380224,15 +364141,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_xor2, anon_sym_or2, - [166335] = 4, + [157675] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1959), 1, + ACTIONS(2374), 1, anon_sym_DASH2, - STATE(4385), 1, + STATE(4168), 1, sym_comment, - ACTIONS(1961), 15, + ACTIONS(2376), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -380248,14 +364166,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [166362] = 4, + [157702] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2370), 1, + ACTIONS(2378), 1, anon_sym_DASH2, - STATE(4386), 1, + STATE(4169), 1, sym_comment, - ACTIONS(2372), 15, + ACTIONS(2380), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -380271,19 +364189,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [166389] = 6, - ACTIONS(3), 1, + [157729] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4881), 1, - sym__space, - ACTIONS(7633), 1, - anon_sym_EQ2, - ACTIONS(7635), 1, - sym_short_flag_identifier, - STATE(4387), 1, - sym_comment, - ACTIONS(4883), 13, + ACTIONS(7478), 1, + anon_sym_and2, + ACTIONS(7530), 1, sym__newline, + STATE(4060), 1, + aux_sym_shebang_repeat1, + STATE(4170), 1, + sym_comment, + ACTIONS(7498), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380295,18 +364212,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, - [166420] = 4, + anon_sym_xor2, + anon_sym_or2, + [157760] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4388), 1, + STATE(4171), 1, sym_comment, - ACTIONS(1965), 4, + ACTIONS(1995), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1963), 12, + ACTIONS(1993), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380319,41 +364237,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [166447] = 4, - ACTIONS(245), 1, + [157787] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2426), 1, - anon_sym_DASH2, - STATE(4389), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + ACTIONS(4859), 1, + sym__space, + STATE(4172), 1, sym_comment, - ACTIONS(2428), 15, - anon_sym_EQ, - sym_identifier, + STATE(7173), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4861), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - 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, anon_sym_RBRACE, - [166474] = 6, - ACTIONS(245), 1, + [157818] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7543), 1, - anon_sym_and2, - ACTIONS(7637), 1, - sym__newline, - STATE(4390), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + ACTIONS(4863), 1, + sym__space, + STATE(4173), 1, sym_comment, - STATE(4406), 1, - aux_sym_shebang_repeat1, - ACTIONS(7591), 13, + STATE(7173), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4865), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380365,18 +364286,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_xor2, - anon_sym_or2, - [166505] = 4, + anon_sym_RBRACE, + [157849] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4391), 1, - sym_comment, - ACTIONS(1792), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1790), 14, + ACTIONS(7522), 1, sym__newline, + ACTIONS(7524), 1, + sym__space, + ACTIONS(7574), 1, + anon_sym_COLON2, + STATE(4174), 1, + sym_comment, + STATE(4270), 1, + aux_sym_attribute_repeat1, + STATE(6083), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(7526), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380387,21 +364313,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_unquoted_token2, - [166532] = 6, + [157884] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7545), 1, - anon_sym_and2, - ACTIONS(7637), 1, - sym__newline, - STATE(4392), 1, - sym_comment, - STATE(4407), 1, + STATE(4088), 1, aux_sym_shebang_repeat1, - ACTIONS(7591), 13, + STATE(4175), 1, + sym_comment, + ACTIONS(7472), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380413,16 +364334,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, - [166563] = 4, + [157911] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2430), 1, + ACTIONS(1883), 1, anon_sym_DASH2, - STATE(4393), 1, + STATE(4176), 1, sym_comment, - ACTIONS(2432), 15, + ACTIONS(1885), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -380438,68 +364360,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [166590] = 3, + [157938] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4394), 1, + ACTIONS(2425), 1, + anon_sym_DASH2, + STATE(4177), 1, sym_comment, - ACTIONS(6973), 16, + ACTIONS(2427), 15, + 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_LBRACK, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [166615] = 7, - ACTIONS(245), 1, + [157965] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(7543), 1, - anon_sym_and2, - ACTIONS(7547), 1, - anon_sym_xor2, - STATE(4395), 1, + ACTIONS(7576), 1, + anon_sym_DOT_DOT2, + STATE(4178), 1, sym_comment, - STATE(4410), 1, - aux_sym_shebang_repeat1, - ACTIONS(7591), 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, - [166648] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(1979), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7578), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1973), 11, sym__newline, - ACTIONS(7545), 1, - anon_sym_and2, - ACTIONS(7549), 1, - anon_sym_xor2, - STATE(4396), 1, - sym_comment, - STATE(4460), 1, - aux_sym_shebang_repeat1, - ACTIONS(7591), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380510,16 +364408,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_or2, - [166681] = 4, + [157996] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1879), 1, + ACTIONS(1833), 1, anon_sym_DASH2, - STATE(4397), 1, + STATE(4179), 1, sym_comment, - ACTIONS(1881), 15, + ACTIONS(1835), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -380535,12 +364431,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [166708] = 3, - ACTIONS(245), 1, + [158023] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4398), 1, + ACTIONS(1477), 1, + aux_sym_unquoted_token2, + ACTIONS(2140), 1, + anon_sym_LPAREN2, + ACTIONS(2142), 1, + sym__space, + STATE(4180), 1, sym_comment, - ACTIONS(7538), 16, + ACTIONS(2138), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380554,17 +364456,43 @@ 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, - [166733] = 4, + [158054] = 9, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + ACTIONS(7582), 1, + anon_sym_EQ, + ACTIONS(7585), 1, + sym__newline, + ACTIONS(7588), 1, + anon_sym_COLON, + ACTIONS(7591), 1, + anon_sym_DASH2, + STATE(5971), 1, aux_sym_shebang_repeat1, - STATE(4399), 1, + STATE(4181), 2, + sym_comment, + aux_sym_parameter_repeat1, + STATE(4777), 2, + sym_param_type, + sym_param_value, + ACTIONS(7580), 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, + [158091] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4182), 1, sym_comment, - ACTIONS(7532), 15, + ACTIONS(1688), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1686), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380577,15 +364505,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_and2, - anon_sym_xor2, - anon_sym_or2, - [166760] = 3, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [158118] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(4400), 1, + STATE(4183), 1, sym_comment, - ACTIONS(7538), 16, + ACTIONS(6911), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380602,14 +364529,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [166785] = 4, - ACTIONS(245), 1, + [158143] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4401), 1, + ACTIONS(7544), 1, + anon_sym_DOT_DOT2, + STATE(4184), 1, sym_comment, - ACTIONS(7532), 15, + ACTIONS(994), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7546), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(998), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380621,18 +364554,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_and2, - anon_sym_xor2, - anon_sym_or2, - [166812] = 4, + [158174] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4315), 1, + STATE(4089), 1, aux_sym_shebang_repeat1, - STATE(4402), 1, + STATE(4185), 1, sym_comment, - ACTIONS(7530), 15, + ACTIONS(7472), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380648,15 +364577,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [166839] = 4, + [158201] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(4335), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(7474), 1, + anon_sym_and2, + ACTIONS(7476), 1, + anon_sym_xor2, + STATE(4064), 1, aux_sym_shebang_repeat1, - STATE(4403), 1, + STATE(4186), 1, sym_comment, - ACTIONS(7530), 15, - sym__newline, + ACTIONS(7498), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380668,66 +364602,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, - [166866] = 4, + [158234] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1913), 1, - anon_sym_DASH2, - STATE(4404), 1, + ACTIONS(7502), 1, + anon_sym_and2, + ACTIONS(7515), 1, + anon_sym_xor2, + ACTIONS(7593), 1, + anon_sym_or2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4187), 1, sym_comment, - ACTIONS(1915), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(7564), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - 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, - anon_sym_RBRACE, - [166893] = 4, + [158267] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1945), 1, - anon_sym_DASH2, - STATE(4405), 1, - sym_comment, - ACTIONS(1947), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(3756), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [166920] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7526), 1, + ACTIONS(7478), 1, anon_sym_and2, - STATE(1653), 1, + ACTIONS(7480), 1, + anon_sym_xor2, + STATE(4067), 1, aux_sym_shebang_repeat1, - STATE(4406), 1, + STATE(4188), 1, sym_comment, - ACTIONS(7532), 14, - sym__newline, + ACTIONS(7498), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380739,18 +364654,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_xor2, anon_sym_or2, - [166949] = 5, + [158300] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7522), 1, - anon_sym_and2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4407), 1, + STATE(4189), 1, sym_comment, - ACTIONS(7532), 14, + ACTIONS(7336), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380763,20 +364673,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, - [166978] = 6, + [158325] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7540), 1, - sym__newline, - ACTIONS(7543), 1, - anon_sym_and2, - STATE(4275), 1, - aux_sym_shebang_repeat1, - STATE(4408), 1, + STATE(4190), 1, sym_comment, - ACTIONS(7530), 13, + ACTIONS(7263), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380788,20 +364695,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, - [167009] = 6, + [158350] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7540), 1, - sym__newline, - ACTIONS(7545), 1, + ACTIONS(7474), 1, anon_sym_and2, - STATE(4289), 1, + ACTIONS(7519), 1, + sym__newline, + STATE(4092), 1, aux_sym_shebang_repeat1, - STATE(4409), 1, + STATE(4191), 1, sym_comment, - ACTIONS(7530), 13, + ACTIONS(7472), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380815,19 +364724,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [167040] = 6, + [158381] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7526), 1, + ACTIONS(7478), 1, anon_sym_and2, - ACTIONS(7528), 1, - anon_sym_xor2, - STATE(1653), 1, + ACTIONS(7519), 1, + sym__newline, + STATE(4093), 1, aux_sym_shebang_repeat1, - STATE(4410), 1, + STATE(4192), 1, sym_comment, - ACTIONS(7532), 13, - sym__newline, + ACTIONS(7472), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380839,104 +364747,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_xor2, anon_sym_or2, - [167071] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1941), 1, - anon_sym_DASH2, - ACTIONS(7308), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4107), 1, - aux_sym_cell_path_repeat1, - STATE(4385), 1, - sym_cell_path, - STATE(4411), 1, - sym_comment, - ACTIONS(1943), 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, - [167106] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1959), 1, - anon_sym_DASH2, - ACTIONS(7308), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4107), 1, - aux_sym_cell_path_repeat1, - STATE(4301), 1, - sym_cell_path, - STATE(4412), 1, - sym_comment, - ACTIONS(1961), 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, - [167141] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1829), 1, - anon_sym_DASH2, - ACTIONS(7308), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4107), 1, - aux_sym_cell_path_repeat1, - STATE(4352), 1, - sym_cell_path, - STATE(4413), 1, - sym_comment, - ACTIONS(1831), 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, - [167176] = 8, + [158412] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1835), 1, + ACTIONS(1915), 1, anon_sym_DASH2, - ACTIONS(7308), 1, + ACTIONS(7246), 1, anon_sym_DOT2, - STATE(4018), 1, + STATE(3842), 1, sym_path, - STATE(4107), 1, + STATE(3903), 1, aux_sym_cell_path_repeat1, - STATE(4366), 1, + STATE(4152), 1, sym_cell_path, - STATE(4414), 1, + STATE(4193), 1, sym_comment, - ACTIONS(1837), 11, + ACTIONS(1917), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -380948,22 +364776,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [167211] = 8, + [158447] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1847), 1, + ACTIONS(1893), 1, anon_sym_DASH2, - ACTIONS(7308), 1, + ACTIONS(7246), 1, anon_sym_DOT2, - STATE(4018), 1, + STATE(3842), 1, sym_path, - STATE(4107), 1, + STATE(3903), 1, aux_sym_cell_path_repeat1, - STATE(4389), 1, + STATE(4163), 1, sym_cell_path, - STATE(4415), 1, + STATE(4194), 1, sym_comment, - ACTIONS(1849), 11, + ACTIONS(1895), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -380975,22 +364803,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [167246] = 8, + [158482] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1851), 1, + ACTIONS(1867), 1, anon_sym_DASH2, - ACTIONS(7308), 1, + ACTIONS(7246), 1, anon_sym_DOT2, - STATE(4018), 1, + STATE(3842), 1, sym_path, - STATE(4107), 1, + STATE(3903), 1, aux_sym_cell_path_repeat1, - STATE(4393), 1, + STATE(4168), 1, sym_cell_path, - STATE(4416), 1, + STATE(4195), 1, sym_comment, - ACTIONS(1853), 11, + ACTIONS(1869), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -381002,22 +364830,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [167281] = 8, + [158517] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1859), 1, + ACTIONS(1823), 1, anon_sym_DASH2, - ACTIONS(7308), 1, + ACTIONS(7246), 1, anon_sym_DOT2, - STATE(4018), 1, + STATE(3842), 1, sym_path, - STATE(4107), 1, + STATE(3903), 1, aux_sym_cell_path_repeat1, - STATE(4397), 1, + STATE(4179), 1, sym_cell_path, - STATE(4417), 1, + STATE(4196), 1, sym_comment, - ACTIONS(1861), 11, + ACTIONS(1825), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -381029,49 +364857,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [167316] = 8, + [158552] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1863), 1, + ACTIONS(1833), 1, anon_sym_DASH2, - ACTIONS(7308), 1, + ACTIONS(7246), 1, anon_sym_DOT2, - STATE(4018), 1, + STATE(3842), 1, sym_path, - STATE(4107), 1, + STATE(3903), 1, aux_sym_cell_path_repeat1, - STATE(4404), 1, - sym_cell_path, - STATE(4418), 1, + STATE(4197), 1, sym_comment, - 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, - [167351] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1875), 1, - anon_sym_DASH2, - ACTIONS(7308), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4107), 1, - aux_sym_cell_path_repeat1, - STATE(4405), 1, + STATE(4215), 1, sym_cell_path, - STATE(4419), 1, - sym_comment, - ACTIONS(1877), 11, + ACTIONS(1835), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -381083,20 +364884,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [167386] = 8, + [158587] = 8, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(1879), 1, anon_sym_DASH2, - ACTIONS(7308), 1, + ACTIONS(7246), 1, anon_sym_DOT2, - STATE(4018), 1, + STATE(3842), 1, sym_path, - STATE(4107), 1, + STATE(3903), 1, aux_sym_cell_path_repeat1, - STATE(4420), 1, + STATE(4198), 1, sym_comment, - STATE(4434), 1, + STATE(4216), 1, sym_cell_path, ACTIONS(1881), 11, anon_sym_EQ, @@ -381110,22 +364911,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [167421] = 8, + [158622] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1895), 1, + ACTIONS(1849), 1, anon_sym_DASH2, - ACTIONS(7308), 1, + ACTIONS(7246), 1, anon_sym_DOT2, - STATE(4018), 1, + STATE(3842), 1, sym_path, - STATE(4107), 1, + STATE(3903), 1, aux_sym_cell_path_repeat1, - STATE(4421), 1, + STATE(4199), 1, sym_comment, - STATE(4435), 1, + STATE(4219), 1, sym_cell_path, - ACTIONS(1897), 11, + ACTIONS(1851), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -381137,22 +364938,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [167456] = 8, + [158657] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1913), 1, + ACTIONS(1863), 1, anon_sym_DASH2, - ACTIONS(7308), 1, + ACTIONS(7246), 1, anon_sym_DOT2, - STATE(4018), 1, + STATE(3842), 1, sym_path, - STATE(4107), 1, + STATE(3903), 1, aux_sym_cell_path_repeat1, - STATE(4422), 1, + STATE(4200), 1, sym_comment, - STATE(4436), 1, + STATE(4220), 1, sym_cell_path, - ACTIONS(1915), 11, + ACTIONS(1865), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -381164,22 +364965,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [167491] = 8, + [158692] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1945), 1, + ACTIONS(1907), 1, anon_sym_DASH2, - ACTIONS(7308), 1, + ACTIONS(7246), 1, anon_sym_DOT2, - STATE(4018), 1, + STATE(3842), 1, sym_path, - STATE(4107), 1, + STATE(3903), 1, aux_sym_cell_path_repeat1, - STATE(4423), 1, + STATE(4201), 1, sym_comment, - STATE(4437), 1, + STATE(4221), 1, sym_cell_path, - ACTIONS(1947), 11, + ACTIONS(1909), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -381191,22 +364992,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [167526] = 8, + [158727] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1843), 1, + ACTIONS(1871), 1, anon_sym_DASH2, - ACTIONS(7308), 1, + ACTIONS(7246), 1, anon_sym_DOT2, - STATE(4018), 1, + STATE(3842), 1, sym_path, - STATE(4107), 1, + STATE(3903), 1, aux_sym_cell_path_repeat1, - STATE(4424), 1, + STATE(4202), 1, sym_comment, - STATE(4438), 1, + STATE(4222), 1, sym_cell_path, - ACTIONS(1845), 11, + ACTIONS(1873), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -381218,22 +365019,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [167561] = 8, + [158762] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1855), 1, + ACTIONS(1829), 1, anon_sym_DASH2, - ACTIONS(7308), 1, + ACTIONS(7246), 1, anon_sym_DOT2, - STATE(4018), 1, + STATE(3842), 1, sym_path, - STATE(4107), 1, + STATE(3903), 1, aux_sym_cell_path_repeat1, - STATE(4425), 1, + STATE(4203), 1, sym_comment, - STATE(4440), 1, + STATE(4223), 1, sym_cell_path, - ACTIONS(1857), 11, + ACTIONS(1831), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -381245,49 +365046,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [167596] = 8, + [158797] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1883), 1, + ACTIONS(1845), 1, anon_sym_DASH2, - ACTIONS(7308), 1, + ACTIONS(7246), 1, anon_sym_DOT2, - STATE(4018), 1, + STATE(3842), 1, sym_path, - STATE(4107), 1, + STATE(3903), 1, aux_sym_cell_path_repeat1, - STATE(4426), 1, - sym_comment, - STATE(4445), 1, + STATE(4176), 1, sym_cell_path, - ACTIONS(1885), 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, - [167631] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1891), 1, - anon_sym_DASH2, - ACTIONS(7308), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4107), 1, - aux_sym_cell_path_repeat1, - STATE(4427), 1, + STATE(4204), 1, sym_comment, - STATE(4446), 1, - sym_cell_path, - ACTIONS(1893), 11, + ACTIONS(1847), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -381299,122 +365073,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [167666] = 8, + [158832] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1923), 1, - anon_sym_DASH2, - ACTIONS(7308), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4107), 1, - aux_sym_cell_path_repeat1, - STATE(4428), 1, + ACTIONS(7502), 1, + anon_sym_and2, + ACTIONS(7515), 1, + anon_sym_xor2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4205), 1, sym_comment, - STATE(4448), 1, - sym_cell_path, - ACTIONS(1925), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7548), 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, - [167701] = 8, + anon_sym_or2, + [158863] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1931), 1, - anon_sym_DASH2, - ACTIONS(7308), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4107), 1, - aux_sym_cell_path_repeat1, - STATE(4429), 1, + ACTIONS(7550), 1, + anon_sym_and2, + ACTIONS(7554), 1, + anon_sym_xor2, + STATE(4206), 1, sym_comment, - STATE(4456), 1, - sym_cell_path, - ACTIONS(1933), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7486), 14, 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, - [167736] = 8, + anon_sym_RBRACE, + anon_sym_or2, + [158892] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1935), 1, - anon_sym_DASH2, - ACTIONS(7308), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4107), 1, - aux_sym_cell_path_repeat1, - STATE(4430), 1, - sym_comment, - STATE(4457), 1, - sym_cell_path, - ACTIONS(1937), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(3756), 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, - [167771] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1839), 1, - anon_sym_DASH2, - ACTIONS(7308), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4107), 1, - aux_sym_cell_path_repeat1, - STATE(4431), 1, + ACTIONS(7474), 1, + anon_sym_and2, + ACTIONS(7476), 1, + anon_sym_xor2, + ACTIONS(7517), 1, + anon_sym_or2, + STATE(4038), 1, + aux_sym_shebang_repeat1, + STATE(4207), 1, sym_comment, - STATE(4451), 1, - sym_cell_path, - ACTIONS(1841), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + ACTIONS(7595), 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, - [167806] = 4, + [158927] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4432), 1, - sym_comment, - STATE(4477), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(7591), 15, + STATE(4208), 1, + sym_comment, + ACTIONS(7490), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381430,14 +365172,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [167833] = 4, + [158954] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4382), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(4433), 1, + STATE(4209), 1, sym_comment, - ACTIONS(7591), 15, + ACTIONS(7490), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381453,106 +365195,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [167860] = 4, + [158981] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2441), 1, - anon_sym_DASH2, - STATE(4434), 1, + ACTIONS(7542), 1, + anon_sym_and2, + ACTIONS(7552), 1, + anon_sym_xor2, + ACTIONS(7599), 1, + anon_sym_or2, + STATE(4210), 1, sym_comment, - ACTIONS(2443), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(7597), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - 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, anon_sym_RBRACE, - [167887] = 4, + [159012] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1883), 1, - anon_sym_DASH2, - STATE(4435), 1, - sym_comment, - ACTIONS(1885), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(3756), 1, sym__newline, + ACTIONS(7478), 1, + anon_sym_and2, + ACTIONS(7480), 1, + anon_sym_xor2, + ACTIONS(7484), 1, + anon_sym_or2, + STATE(4211), 1, + sym_comment, + STATE(4213), 1, + aux_sym_shebang_repeat1, + ACTIONS(7595), 11, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - 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, - anon_sym_RBRACE, - [167914] = 4, + [159047] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4212), 1, + sym_comment, + ACTIONS(1947), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1945), 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, + [159074] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2445), 1, - anon_sym_DASH2, - STATE(4436), 1, + ACTIONS(7502), 1, + anon_sym_and2, + ACTIONS(7515), 1, + anon_sym_xor2, + ACTIONS(7593), 1, + anon_sym_or2, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4213), 1, sym_comment, - ACTIONS(2447), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(7464), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - 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, - anon_sym_RBRACE, - [167941] = 4, + [159107] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2449), 1, - anon_sym_DASH2, - STATE(4437), 1, + ACTIONS(7550), 1, + anon_sym_and2, + ACTIONS(7554), 1, + anon_sym_xor2, + ACTIONS(7601), 1, + anon_sym_or2, + STATE(4214), 1, sym_comment, - ACTIONS(2451), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(7597), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - 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, anon_sym_RBRACE, - [167968] = 4, + [159138] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1891), 1, + ACTIONS(2260), 1, anon_sym_DASH2, - STATE(4438), 1, + STATE(4215), 1, sym_comment, - ACTIONS(1893), 15, + ACTIONS(2262), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -381568,39 +365344,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [167995] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7543), 1, - anon_sym_and2, - ACTIONS(7637), 1, - sym__newline, - STATE(4268), 1, - aux_sym_shebang_repeat1, - STATE(4439), 1, - sym_comment, - ACTIONS(7591), 13, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - [168026] = 4, + [159165] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1931), 1, + ACTIONS(1863), 1, anon_sym_DASH2, - STATE(4440), 1, + STATE(4216), 1, sym_comment, - ACTIONS(1933), 15, + ACTIONS(1865), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -381616,18 +365367,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [168053] = 6, + [159192] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7545), 1, - anon_sym_and2, - ACTIONS(7637), 1, - sym__newline, - STATE(4271), 1, - aux_sym_shebang_repeat1, - STATE(4441), 1, + ACTIONS(7062), 1, + aux_sym_unquoted_token2, + STATE(4217), 1, sym_comment, - ACTIONS(7591), 13, + ACTIONS(1628), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381638,21 +365387,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_and2, anon_sym_xor2, anon_sym_or2, - [168084] = 6, + [159219] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7526), 1, - anon_sym_and2, - ACTIONS(7528), 1, - anon_sym_xor2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4442), 1, + STATE(4218), 1, sym_comment, - ACTIONS(7520), 13, + ACTIONS(7263), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381665,67 +365408,41 @@ 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, - [168115] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(7543), 1, + anon_sym_RBRACE, anon_sym_and2, - ACTIONS(7547), 1, anon_sym_xor2, - STATE(4278), 1, - aux_sym_shebang_repeat1, - STATE(4443), 1, - sym_comment, - ACTIONS(7591), 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, - [168148] = 7, + [159244] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(7545), 1, - anon_sym_and2, - ACTIONS(7549), 1, - anon_sym_xor2, - STATE(4279), 1, - aux_sym_shebang_repeat1, - STATE(4444), 1, + ACTIONS(1871), 1, + anon_sym_DASH2, + STATE(4219), 1, sym_comment, - ACTIONS(7591), 12, + ACTIONS(1873), 15, + 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_LBRACK, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_or2, - [168181] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [159271] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2453), 1, + ACTIONS(2264), 1, anon_sym_DASH2, - STATE(4445), 1, + STATE(4220), 1, sym_comment, - ACTIONS(2455), 15, + ACTIONS(2266), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -381741,14 +365458,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [168208] = 4, + [159298] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2296), 1, + ACTIONS(1829), 1, anon_sym_DASH2, - STATE(4446), 1, + STATE(4221), 1, sym_comment, - ACTIONS(2298), 15, + ACTIONS(1831), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -381764,39 +365481,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [168235] = 6, + [159325] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7522), 1, - anon_sym_and2, - ACTIONS(7534), 1, - anon_sym_xor2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4447), 1, + ACTIONS(2270), 1, + anon_sym_DASH2, + STATE(4222), 1, sym_comment, - ACTIONS(7520), 13, + ACTIONS(2272), 15, + 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_LBRACK, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_or2, - [168266] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [159352] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1935), 1, + ACTIONS(2274), 1, anon_sym_DASH2, - STATE(4448), 1, + STATE(4223), 1, sym_comment, - ACTIONS(1937), 15, + ACTIONS(2276), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -381812,15 +365527,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [168293] = 4, + [159379] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + ACTIONS(7478), 1, + anon_sym_and2, + ACTIONS(7530), 1, + sym__newline, + STATE(4081), 1, aux_sym_shebang_repeat1, - STATE(4449), 1, + STATE(4224), 1, sym_comment, - ACTIONS(7524), 15, - sym__newline, + ACTIONS(7498), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381832,23 +365550,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, - [168320] = 7, - ACTIONS(245), 1, + [159410] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7526), 1, - anon_sym_and2, - ACTIONS(7528), 1, - anon_sym_xor2, - ACTIONS(7569), 1, - anon_sym_or2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4450), 1, + STATE(4225), 1, sym_comment, - ACTIONS(7640), 12, + ACTIONS(1676), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1674), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381860,44 +365574,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, - [168353] = 4, - ACTIONS(245), 1, + anon_sym_DOT_DOT2, + [159437] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1927), 1, - anon_sym_DASH2, - STATE(4451), 1, + STATE(4226), 1, sym_comment, - ACTIONS(1929), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(1703), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1701), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - 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, anon_sym_RBRACE, - [168380] = 7, + aux_sym_unquoted_token2, + [159464] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7522), 1, - anon_sym_and2, - ACTIONS(7534), 1, - anon_sym_xor2, - ACTIONS(7575), 1, - anon_sym_or2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(4452), 1, + STATE(4227), 1, sym_comment, - ACTIONS(7640), 12, + ACTIONS(7548), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381910,16 +365618,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [168413] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [159491] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7526), 1, - anon_sym_and2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(4453), 1, + STATE(4228), 1, sym_comment, - ACTIONS(7536), 14, + ACTIONS(7548), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381932,22 +365641,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, - [168442] = 6, + [159518] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7642), 1, - anon_sym_DOT_DOT2, - STATE(4454), 1, - sym_comment, - ACTIONS(2039), 2, - ts_builtin_sym_end, + ACTIONS(4848), 1, sym__space, - ACTIONS(7644), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2033), 11, + ACTIONS(7603), 1, + sym_long_flag_identifier, + ACTIONS(7605), 1, + anon_sym_EQ2, + STATE(4229), 1, + sym_comment, + ACTIONS(4850), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381959,14 +365667,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, - [168473] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [159549] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7555), 1, + ACTIONS(7466), 1, anon_sym_and2, - STATE(4455), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4230), 1, sym_comment, - ACTIONS(7538), 15, + ACTIONS(7548), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381979,91 +365691,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, - [168500] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2461), 1, - anon_sym_DASH2, - STATE(4456), 1, - sym_comment, - ACTIONS(2463), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [168527] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2465), 1, - anon_sym_DASH2, - STATE(4457), 1, - sym_comment, - ACTIONS(2467), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [168554] = 9, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7648), 1, - anon_sym_EQ, - ACTIONS(7651), 1, - sym__newline, - ACTIONS(7654), 1, - anon_sym_COLON, - ACTIONS(7657), 1, - anon_sym_DASH2, - STATE(6779), 1, - aux_sym_shebang_repeat1, - STATE(4458), 2, - sym_comment, - aux_sym_parameter_repeat1, - STATE(5019), 2, - sym_param_type, - sym_param_value, - ACTIONS(7646), 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, - [168591] = 4, + [159578] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(1653), 1, + ACTIONS(7502), 1, + anon_sym_and2, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(4459), 1, + STATE(4231), 1, sym_comment, - ACTIONS(7524), 15, + ACTIONS(7548), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382076,21 +365715,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, - [168618] = 6, + [159607] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7522), 1, + ACTIONS(7466), 1, anon_sym_and2, - ACTIONS(7534), 1, + ACTIONS(7468), 1, anon_sym_xor2, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(4460), 1, + STATE(4232), 1, sym_comment, - ACTIONS(7532), 13, + ACTIONS(7548), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382104,20 +365742,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [168649] = 7, + [159638] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(7543), 1, + ACTIONS(7502), 1, anon_sym_and2, - ACTIONS(7547), 1, + ACTIONS(7515), 1, anon_sym_xor2, - STATE(4290), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(4461), 1, + STATE(4233), 1, sym_comment, - ACTIONS(7530), 12, + ACTIONS(7548), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382130,20 +365767,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [168682] = 7, + [159669] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(7545), 1, - anon_sym_and2, - ACTIONS(7549), 1, - anon_sym_xor2, - STATE(4304), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(4462), 1, + STATE(4234), 1, sym_comment, - ACTIONS(7530), 12, + ACTIONS(7548), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382155,19 +365787,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, - [168715] = 6, + [159696] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(1813), 1, + ACTIONS(2146), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(2148), 1, sym__space, - STATE(4463), 1, + ACTIONS(2150), 1, + aux_sym_unquoted_token2, + STATE(4235), 1, sym_comment, - ACTIONS(1811), 13, + ACTIONS(2144), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382181,14 +365815,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [168746] = 4, + [159727] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4312), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(4464), 1, + STATE(4236), 1, sym_comment, - ACTIONS(7551), 15, + ACTIONS(7548), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382204,14 +365838,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [168773] = 4, + [159754] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(4314), 1, + ACTIONS(7466), 1, + anon_sym_and2, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(4465), 1, + STATE(4237), 1, sym_comment, - ACTIONS(7551), 15, + ACTIONS(7548), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382224,17 +365860,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, - [168800] = 4, + [159783] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7560), 1, + ACTIONS(7502), 1, anon_sym_and2, - STATE(4466), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4238), 1, sym_comment, - ACTIONS(7538), 15, + ACTIONS(7548), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382247,19 +365884,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_xor2, anon_sym_or2, - [168827] = 5, + [159812] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7526), 1, - anon_sym_and2, - STATE(1653), 1, + STATE(4046), 1, aux_sym_shebang_repeat1, - STATE(4467), 1, + STATE(4239), 1, sym_comment, - ACTIONS(7524), 14, + ACTIONS(7498), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382272,19 +365906,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, - [168856] = 4, + [159839] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4468), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(4240), 1, sym_comment, - ACTIONS(984), 4, + STATE(7173), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4830), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(982), 12, + ACTIONS(4832), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382296,19 +365933,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_DOT_DOT2, - [168883] = 6, + [159869] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7543), 1, - anon_sym_and2, - ACTIONS(7557), 1, + ACTIONS(998), 1, + anon_sym_DASH2, + ACTIONS(7607), 1, + anon_sym_DOT_DOT2, + STATE(4241), 1, + sym_comment, + ACTIONS(7609), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(994), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - STATE(4453), 1, - aux_sym_shebang_repeat1, - STATE(4469), 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, + [159899] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7613), 1, + sym__space, + STATE(4242), 1, sym_comment, - ACTIONS(7551), 13, + STATE(4290), 1, + aux_sym_attribute_repeat1, + ACTIONS(7611), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382320,18 +365979,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_xor2, - anon_sym_or2, - [168914] = 5, + anon_sym_RBRACE, + [159927] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2104), 1, + anon_sym_LPAREN2, + ACTIONS(2106), 1, + aux_sym_unquoted_token4, + STATE(4243), 1, + sym_comment, + ACTIONS(994), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(998), 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, + [159957] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7522), 1, - anon_sym_and2, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4470), 1, + STATE(4244), 1, sym_comment, - ACTIONS(7524), 14, + ACTIONS(5139), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382344,20 +366022,62 @@ 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, - [168943] = 6, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_catch, + [159981] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4245), 1, + sym_comment, + ACTIONS(2078), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2076), 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_token4, + [160007] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7545), 1, - anon_sym_and2, - ACTIONS(7557), 1, + ACTIONS(7615), 1, + aux_sym__immediate_decimal_token2, + STATE(4246), 1, + sym_comment, + ACTIONS(1760), 3, + sym_identifier, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1762), 11, + anon_sym_EQ, sym__newline, - STATE(4293), 1, - aux_sym_shebang_repeat1, - STATE(4471), 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, + anon_sym_LPAREN2, + [160035] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(4247), 1, sym_comment, - ACTIONS(7551), 13, + ACTIONS(7336), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382368,19 +366088,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, - [168974] = 5, + [160059] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7555), 1, + ACTIONS(7617), 1, anon_sym_and2, - ACTIONS(7565), 1, + ACTIONS(7619), 1, anon_sym_xor2, - STATE(4472), 1, + STATE(4248), 1, sym_comment, - ACTIONS(7538), 14, + ACTIONS(7486), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382392,23 +366113,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_or2, - [169003] = 7, - ACTIONS(245), 1, + [160087] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3854), 1, + STATE(4249), 1, + sym_comment, + ACTIONS(1703), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1701), 12, sym__newline, - ACTIONS(7543), 1, - anon_sym_and2, - ACTIONS(7547), 1, - anon_sym_xor2, - STATE(4334), 1, - aux_sym_shebang_repeat1, - STATE(4473), 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, + aux_sym_unquoted_token2, + [160113] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1628), 1, + sym__space, + ACTIONS(7137), 1, + aux_sym_unquoted_token2, + STATE(4250), 1, sym_comment, - ACTIONS(7551), 12, + ACTIONS(1616), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382420,48 +366158,51 @@ 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, - [169036] = 8, + anon_sym_RBRACE, + [160141] = 14, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1927), 1, + ACTIONS(7621), 1, + sym_identifier, + ACTIONS(7626), 1, + anon_sym_DOLLAR, + ACTIONS(7629), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7632), 1, + anon_sym_DASH_DASH, + ACTIONS(7635), 1, anon_sym_DASH2, - ACTIONS(7308), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4107), 1, - aux_sym_cell_path_repeat1, - STATE(4336), 1, - sym_cell_path, - STATE(4474), 1, + STATE(3869), 1, + sym_param_long_flag, + STATE(3999), 1, + sym__param_name, + STATE(4882), 1, + sym_param_rest, + STATE(4883), 1, + sym_param_opt, + STATE(4884), 1, + sym_param_short_flag, + STATE(5337), 1, + sym_parameter, + STATE(4251), 2, sym_comment, - ACTIONS(1929), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + aux_sym_parameter_parens_repeat1, + ACTIONS(7624), 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, - [169071] = 7, + [160187] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(7545), 1, + ACTIONS(7638), 1, anon_sym_and2, - ACTIONS(7549), 1, + ACTIONS(7640), 1, anon_sym_xor2, - STATE(4343), 1, - aux_sym_shebang_repeat1, - STATE(4475), 1, + STATE(4252), 1, sym_comment, - ACTIONS(7551), 12, + ACTIONS(7486), 13, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -382472,18 +366213,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_or2, - [169104] = 5, - ACTIONS(245), 1, + [160215] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7560), 1, - anon_sym_and2, - ACTIONS(7583), 1, - anon_sym_xor2, - STATE(4476), 1, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + STATE(4253), 1, sym_comment, - ACTIONS(7538), 14, + ACTIONS(1813), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1805), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382495,17 +366238,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, - anon_sym_or2, - [169133] = 4, - ACTIONS(245), 1, + [160245] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4477), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(4254), 1, sym_comment, - ACTIONS(7532), 15, + STATE(7173), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4826), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4828), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382517,22 +366262,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_and2, - anon_sym_xor2, - anon_sym_or2, - [169160] = 6, + [160275] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - ACTIONS(2043), 1, - sym__space, - STATE(4478), 1, + STATE(4255), 1, sym_comment, - ACTIONS(2041), 13, + ACTIONS(4974), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(4976), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382546,18 +366284,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169191] = 6, + [160301] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4873), 1, - sym__space, - ACTIONS(7659), 1, - sym_long_flag_identifier, - ACTIONS(7661), 1, - anon_sym_EQ2, - STATE(4479), 1, + STATE(4256), 1, sym_comment, - ACTIONS(4875), 13, + ACTIONS(4966), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(4968), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382571,18 +366306,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169222] = 6, - ACTIONS(3), 1, + [160327] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1786), 1, - sym__space, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - STATE(4480), 1, + ACTIONS(1973), 1, + anon_sym_DASH2, + ACTIONS(7642), 1, + anon_sym_DOT_DOT2, + STATE(4257), 1, + sym_comment, + ACTIONS(7644), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1979), 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, + [160357] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7638), 1, + anon_sym_and2, + ACTIONS(7640), 1, + anon_sym_xor2, + STATE(4258), 1, sym_comment, - ACTIONS(1778), 13, + ACTIONS(7486), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382594,41 +366352,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, - anon_sym_RPAREN, - anon_sym_RBRACE, - [169253] = 4, + anon_sym_or2, + [160385] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2392), 1, - anon_sym_DASH2, - STATE(4481), 1, + STATE(4259), 1, sym_comment, - ACTIONS(2394), 15, + ACTIONS(1945), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1947), 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_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [160411] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7646), 1, + anon_sym_DOT, + ACTIONS(7648), 1, + aux_sym__immediate_decimal_token2, + STATE(4260), 1, + sym_comment, + ACTIONS(1499), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1501), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [169280] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [160441] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7665), 1, + ACTIONS(7613), 1, sym__space, - STATE(4482), 1, + STATE(4261), 1, sym_comment, - STATE(4542), 1, + STATE(4270), 1, aux_sym_attribute_repeat1, - ACTIONS(7663), 13, + ACTIONS(7526), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382642,15 +366422,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169308] = 3, + [160469] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(4483), 1, + ACTIONS(7650), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7652), 1, + aux_sym__immediate_decimal_token2, + STATE(4262), 1, sym_comment, - ACTIONS(7326), 15, - ts_builtin_sym_end, + ACTIONS(1491), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1493), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [160499] = 7, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7654), 1, sym__newline, + STATE(752), 1, + aux_sym__pipe_separator, + STATE(4263), 1, + sym_comment, + STATE(4916), 1, + aux_sym_shebang_repeat1, + ACTIONS(7657), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2612), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -382660,47 +366471,112 @@ static const uint16_t 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, - [169332] = 14, + [160531] = 17, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7667), 1, + ACTIONS(7659), 1, sym_identifier, - ACTIONS(7672), 1, + ACTIONS(7661), 1, + sym__newline, + ACTIONS(7663), 1, + anon_sym_PIPE, + ACTIONS(7665), 1, anon_sym_DOLLAR, - ACTIONS(7675), 1, + ACTIONS(7667), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7678), 1, + ACTIONS(7669), 1, anon_sym_DASH_DASH, - ACTIONS(7681), 1, + ACTIONS(7671), 1, anon_sym_DASH2, - STATE(4057), 1, + STATE(3869), 1, sym_param_long_flag, - STATE(4224), 1, + STATE(3999), 1, sym__param_name, - STATE(5014), 1, + STATE(4264), 1, + sym_comment, + STATE(4278), 1, + aux_sym_shebang_repeat1, + STATE(4486), 1, + aux_sym_parameter_parens_repeat1, + STATE(4882), 1, sym_param_rest, - STATE(5016), 1, + STATE(4883), 1, sym_param_opt, - STATE(5021), 1, + STATE(4884), 1, sym_param_short_flag, - STATE(5582), 1, + STATE(5337), 1, sym_parameter, - STATE(4484), 2, + [160583] = 17, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7659), 1, + sym_identifier, + ACTIONS(7661), 1, + sym__newline, + ACTIONS(7665), 1, + anon_sym_DOLLAR, + ACTIONS(7667), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7669), 1, + anon_sym_DASH_DASH, + ACTIONS(7671), 1, + anon_sym_DASH2, + ACTIONS(7673), 1, + anon_sym_RBRACK, + STATE(3869), 1, + sym_param_long_flag, + STATE(3999), 1, + sym__param_name, + STATE(4265), 1, sym_comment, + STATE(4286), 1, + aux_sym_shebang_repeat1, + STATE(4581), 1, aux_sym_parameter_parens_repeat1, - ACTIONS(7670), 3, + STATE(4882), 1, + sym_param_rest, + STATE(4883), 1, + sym_param_opt, + STATE(4884), 1, + sym_param_short_flag, + STATE(5337), 1, + sym_parameter, + [160635] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7607), 1, + anon_sym_DOT_DOT2, + ACTIONS(7677), 1, + anon_sym_DASH2, + STATE(4266), 1, + sym_comment, + ACTIONS(7609), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7675), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, - [169378] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [160665] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(4485), 1, + ACTIONS(7617), 1, + anon_sym_and2, + ACTIONS(7619), 1, + anon_sym_xor2, + ACTIONS(7679), 1, + anon_sym_or2, + STATE(4267), 1, sym_comment, - ACTIONS(7393), 15, + ACTIONS(7597), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -382713,19 +366589,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, - [169402] = 5, + [160695] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5078), 1, - sym__space, - ACTIONS(7684), 1, + ACTIONS(7681), 1, anon_sym_EQ2, - STATE(4486), 1, + ACTIONS(7683), 1, + sym_short_flag_identifier, + STATE(4268), 1, sym_comment, - ACTIONS(5080), 13, + ACTIONS(4815), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4817), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382737,21 +366613,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, - [169430] = 6, - ACTIONS(3), 1, + [160725] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2196), 1, - anon_sym_LPAREN2, - ACTIONS(2200), 1, - aux_sym_unquoted_token4, - STATE(4487), 1, + STATE(4269), 1, sym_comment, - ACTIONS(2198), 2, + ACTIONS(7336), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(2194), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382763,13 +366631,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, - [169460] = 3, - ACTIONS(245), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [160749] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4488), 1, + ACTIONS(7613), 1, + sym__space, + STATE(4270), 1, sym_comment, - ACTIONS(7326), 15, - ts_builtin_sym_end, + STATE(4277), 1, + aux_sym_attribute_repeat1, + ACTIONS(7685), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382781,17 +366655,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_and2, - anon_sym_xor2, - anon_sym_or2, - [169484] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [160777] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7607), 1, + anon_sym_DOT_DOT2, + ACTIONS(7689), 1, + anon_sym_DASH2, + STATE(4271), 1, + sym_comment, + ACTIONS(7609), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + 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, + [160807] = 17, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7659), 1, + sym_identifier, + ACTIONS(7661), 1, + sym__newline, + ACTIONS(7665), 1, + anon_sym_DOLLAR, + ACTIONS(7667), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7669), 1, + anon_sym_DASH_DASH, + ACTIONS(7671), 1, + anon_sym_DASH2, + ACTIONS(7691), 1, + anon_sym_RBRACK, + STATE(3869), 1, + sym_param_long_flag, + STATE(3999), 1, + sym__param_name, + STATE(4272), 1, + sym_comment, + STATE(4280), 1, + aux_sym_shebang_repeat1, + STATE(4571), 1, + aux_sym_parameter_parens_repeat1, + STATE(4882), 1, + sym_param_rest, + STATE(4883), 1, + sym_param_opt, + STATE(4884), 1, + sym_param_short_flag, + STATE(5337), 1, + sym_parameter, + [160859] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7686), 1, + ACTIONS(7638), 1, anon_sym_and2, - STATE(4489), 1, + ACTIONS(7640), 1, + anon_sym_xor2, + ACTIONS(7693), 1, + anon_sym_or2, + STATE(4273), 1, sym_comment, - ACTIONS(7538), 14, + ACTIONS(7597), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -382804,21 +366740,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_xor2, - anon_sym_or2, - [169510] = 6, + [160889] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2190), 1, - anon_sym_LPAREN2, - ACTIONS(2192), 1, - aux_sym_unquoted_token4, - STATE(4490), 1, + STATE(4274), 1, sym_comment, - ACTIONS(994), 2, + ACTIONS(1688), 3, ts_builtin_sym_end, sym__space, - ACTIONS(998), 11, + anon_sym_LPAREN2, + ACTIONS(1686), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382830,42 +366761,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, - [169540] = 5, + aux_sym_unquoted_token2, + [160915] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7688), 1, - anon_sym_and2, - ACTIONS(7690), 1, - anon_sym_xor2, - STATE(4491), 1, + STATE(4275), 1, sym_comment, - ACTIONS(7538), 13, - ts_builtin_sym_end, + ACTIONS(1993), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1995), 13, + 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_or2, - [169568] = 6, - 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_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [160941] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7269), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7692), 1, - anon_sym_DOT, - STATE(4492), 1, + STATE(4276), 1, sym_comment, - ACTIONS(1668), 2, + ACTIONS(6911), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1666), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382877,17 +366802,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, - [169598] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7686), 1, anon_sym_and2, - ACTIONS(7694), 1, anon_sym_xor2, - STATE(4493), 1, + anon_sym_or2, + [160965] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7697), 1, + sym__space, + STATE(4277), 2, sym_comment, - ACTIONS(7538), 13, - ts_builtin_sym_end, + aux_sym_attribute_repeat1, + ACTIONS(7695), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382899,101 +366825,221 @@ static const uint16_t 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, - [169626] = 17, + anon_sym_RPAREN, + anon_sym_RBRACE, + [160991] = 17, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7696), 1, + ACTIONS(7659), 1, sym_identifier, - ACTIONS(7698), 1, + ACTIONS(7661), 1, sym__newline, - ACTIONS(7700), 1, - anon_sym_RPAREN, - ACTIONS(7702), 1, + ACTIONS(7665), 1, anon_sym_DOLLAR, - ACTIONS(7704), 1, + ACTIONS(7667), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7706), 1, + ACTIONS(7669), 1, anon_sym_DASH_DASH, - ACTIONS(7708), 1, + ACTIONS(7671), 1, anon_sym_DASH2, - STATE(4057), 1, + ACTIONS(7700), 1, + anon_sym_PIPE, + STATE(3869), 1, sym_param_long_flag, - STATE(4224), 1, + STATE(3999), 1, sym__param_name, - STATE(4494), 1, + STATE(4278), 1, sym_comment, - STATE(4738), 1, + STATE(4634), 1, aux_sym_parameter_parens_repeat1, - STATE(5014), 1, + STATE(4882), 1, sym_param_rest, - STATE(5016), 1, + STATE(4883), 1, sym_param_opt, - STATE(5021), 1, + STATE(4884), 1, sym_param_short_flag, - STATE(5333), 1, + STATE(5043), 1, aux_sym_shebang_repeat1, - STATE(5582), 1, + STATE(5337), 1, sym_parameter, - [169678] = 6, + [161043] = 17, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(998), 1, + ACTIONS(7659), 1, + sym_identifier, + ACTIONS(7661), 1, + sym__newline, + ACTIONS(7665), 1, + anon_sym_DOLLAR, + ACTIONS(7667), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7669), 1, + anon_sym_DASH_DASH, + ACTIONS(7671), 1, anon_sym_DASH2, - ACTIONS(7710), 1, - anon_sym_DOT_DOT2, - STATE(4495), 1, + ACTIONS(7702), 1, + anon_sym_RPAREN, + STATE(3869), 1, + sym_param_long_flag, + STATE(3999), 1, + sym__param_name, + STATE(4279), 1, sym_comment, - ACTIONS(7712), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(994), 11, - anon_sym_EQ, + STATE(4283), 1, + aux_sym_shebang_repeat1, + STATE(4572), 1, + aux_sym_parameter_parens_repeat1, + STATE(4882), 1, + sym_param_rest, + STATE(4883), 1, + sym_param_opt, + STATE(4884), 1, + sym_param_short_flag, + STATE(5337), 1, + sym_parameter, + [161095] = 17, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7659), 1, sym_identifier, + ACTIONS(7661), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(7665), 1, + anon_sym_DOLLAR, + ACTIONS(7667), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7669), 1, + anon_sym_DASH_DASH, + ACTIONS(7671), 1, + anon_sym_DASH2, + ACTIONS(7704), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(3869), 1, + sym_param_long_flag, + STATE(3999), 1, + sym__param_name, + STATE(4280), 1, + sym_comment, + STATE(4493), 1, + aux_sym_parameter_parens_repeat1, + STATE(4882), 1, + sym_param_rest, + STATE(4883), 1, + sym_param_opt, + STATE(4884), 1, + sym_param_short_flag, + STATE(5043), 1, + aux_sym_shebang_repeat1, + STATE(5337), 1, + sym_parameter, + [161147] = 17, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7659), 1, + sym_identifier, + ACTIONS(7661), 1, + sym__newline, + ACTIONS(7665), 1, anon_sym_DOLLAR, + ACTIONS(7667), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7669), 1, anon_sym_DASH_DASH, - [169708] = 4, + ACTIONS(7671), 1, + anon_sym_DASH2, + ACTIONS(7706), 1, + anon_sym_RPAREN, + STATE(3869), 1, + sym_param_long_flag, + STATE(3999), 1, + sym__param_name, + STATE(4281), 1, + sym_comment, + STATE(4289), 1, + aux_sym_shebang_repeat1, + STATE(4582), 1, + aux_sym_parameter_parens_repeat1, + STATE(4882), 1, + sym_param_rest, + STATE(4883), 1, + sym_param_opt, + STATE(4884), 1, + sym_param_short_flag, + STATE(5337), 1, + sym_parameter, + [161199] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(4496), 1, + ACTIONS(7708), 1, + sym__newline, + STATE(752), 1, + aux_sym__pipe_separator, + STATE(4282), 1, sym_comment, - ACTIONS(1711), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1713), 13, - anon_sym_EQ, + STATE(4916), 1, + aux_sym_shebang_repeat1, + ACTIONS(7711), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2612), 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, + [161231] = 17, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7659), 1, sym_identifier, + ACTIONS(7661), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7665), 1, anon_sym_DOLLAR, + ACTIONS(7667), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7669), 1, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [169734] = 6, + ACTIONS(7671), 1, + anon_sym_DASH2, + ACTIONS(7713), 1, + anon_sym_RPAREN, + STATE(3869), 1, + sym_param_long_flag, + STATE(3999), 1, + sym__param_name, + STATE(4283), 1, + sym_comment, + STATE(4494), 1, + aux_sym_parameter_parens_repeat1, + STATE(4882), 1, + sym_param_rest, + STATE(4883), 1, + sym_param_opt, + STATE(4884), 1, + sym_param_short_flag, + STATE(5043), 1, + aux_sym_shebang_repeat1, + STATE(5337), 1, + sym_parameter, + [161283] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2091), 1, + ACTIONS(2164), 1, anon_sym_LPAREN2, - ACTIONS(2095), 1, + ACTIONS(2168), 1, aux_sym_unquoted_token4, - STATE(4497), 1, + STATE(4284), 1, sym_comment, - ACTIONS(2204), 2, + ACTIONS(2166), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2202), 11, + ACTIONS(2162), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383005,19 +367051,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, - [169764] = 6, + [161313] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(1813), 1, - anon_sym_LPAREN2, - STATE(4498), 1, - sym_comment, - ACTIONS(1819), 2, - ts_builtin_sym_end, + ACTIONS(2234), 1, sym__space, - ACTIONS(1811), 11, + ACTIONS(7715), 1, + anon_sym_LBRACK2, + STATE(4285), 1, + sym_comment, + ACTIONS(2230), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383029,15 +367072,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, - [169794] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [161341] = 17, ACTIONS(245), 1, anon_sym_POUND, - STATE(4499), 1, + ACTIONS(7659), 1, + sym_identifier, + ACTIONS(7661), 1, + sym__newline, + ACTIONS(7665), 1, + anon_sym_DOLLAR, + ACTIONS(7667), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7669), 1, + anon_sym_DASH_DASH, + ACTIONS(7671), 1, + anon_sym_DASH2, + ACTIONS(7717), 1, + anon_sym_RBRACK, + STATE(3869), 1, + sym_param_long_flag, + STATE(3999), 1, + sym__param_name, + STATE(4286), 1, + sym_comment, + STATE(4589), 1, + aux_sym_parameter_parens_repeat1, + STATE(4882), 1, + sym_param_rest, + STATE(4883), 1, + sym_param_opt, + STATE(4884), 1, + sym_param_short_flag, + STATE(5043), 1, + aux_sym_shebang_repeat1, + STATE(5337), 1, + sym_parameter, + [161393] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(4287), 1, sym_comment, - ACTIONS(2001), 2, + ACTIONS(982), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(2003), 13, + ACTIONS(984), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -383051,19 +367131,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [169820] = 6, + [161419] = 6, ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(4500), 1, + anon_sym_POUND, + ACTIONS(7240), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7719), 1, + anon_sym_DOT, + STATE(4288), 1, sym_comment, - ACTIONS(2093), 2, + ACTIONS(1703), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2089), 11, + ACTIONS(1701), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383075,22 +367155,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, - [169850] = 7, + [161449] = 17, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7714), 1, + ACTIONS(7659), 1, + sym_identifier, + ACTIONS(7661), 1, sym__newline, - STATE(793), 1, - aux_sym__pipe_separator, - STATE(4501), 1, + ACTIONS(7665), 1, + anon_sym_DOLLAR, + ACTIONS(7667), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7669), 1, + anon_sym_DASH_DASH, + ACTIONS(7671), 1, + anon_sym_DASH2, + ACTIONS(7721), 1, + anon_sym_RPAREN, + STATE(3869), 1, + sym_param_long_flag, + STATE(3999), 1, + sym__param_name, + STATE(4289), 1, sym_comment, - STATE(5183), 1, + STATE(4590), 1, + aux_sym_parameter_parens_repeat1, + STATE(4882), 1, + sym_param_rest, + STATE(4883), 1, + sym_param_opt, + STATE(4884), 1, + sym_param_short_flag, + STATE(5043), 1, aux_sym_shebang_repeat1, - ACTIONS(7717), 3, + STATE(5337), 1, + sym_parameter, + [161501] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7613), 1, + sym__space, + STATE(4277), 1, + aux_sym_attribute_repeat1, + STATE(4290), 1, + sym_comment, + ACTIONS(7723), 13, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2592), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -383100,16 +367211,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, - [169882] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [161529] = 3, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4502), 1, + STATE(4291), 1, sym_comment, - ACTIONS(1650), 3, + ACTIONS(7263), 15, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1648), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383121,17 +367231,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, - aux_sym_unquoted_token2, - [169908] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [161553] = 5, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4503), 1, + ACTIONS(7617), 1, + anon_sym_and2, + ACTIONS(7619), 1, + anon_sym_xor2, + STATE(4292), 1, sym_comment, - ACTIONS(1668), 3, + ACTIONS(7486), 13, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1666), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383143,14 +367256,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, - aux_sym_unquoted_token2, - [169934] = 3, - ACTIONS(245), 1, + anon_sym_or2, + [161581] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4504), 1, + ACTIONS(4938), 1, + sym__space, + ACTIONS(7725), 1, + anon_sym_EQ2, + STATE(4293), 1, sym_comment, - ACTIONS(7393), 15, - ts_builtin_sym_end, + ACTIONS(4940), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383162,53 +367278,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, - [169958] = 17, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7696), 1, - sym_identifier, - ACTIONS(7698), 1, - sym__newline, - ACTIONS(7702), 1, - anon_sym_DOLLAR, - ACTIONS(7704), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7706), 1, - anon_sym_DASH_DASH, - ACTIONS(7708), 1, - anon_sym_DASH2, - ACTIONS(7719), 1, - anon_sym_PIPE, - STATE(4057), 1, - sym_param_long_flag, - STATE(4224), 1, - sym__param_name, - STATE(4505), 1, - sym_comment, - STATE(4530), 1, - aux_sym_shebang_repeat1, - STATE(4838), 1, - aux_sym_parameter_parens_repeat1, - STATE(5014), 1, - sym_param_rest, - STATE(5016), 1, - sym_param_opt, - STATE(5021), 1, - sym_param_short_flag, - STATE(5582), 1, - sym_parameter, - [170010] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [161609] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4506), 1, + STATE(4294), 1, sym_comment, - ACTIONS(1963), 2, + ACTIONS(1674), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1965), 13, + ACTIONS(1676), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -383222,16 +367302,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [170036] = 5, + [161635] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7665), 1, + ACTIONS(4906), 1, sym__space, - STATE(4482), 1, - aux_sym_attribute_repeat1, - STATE(4507), 1, + ACTIONS(7727), 1, + anon_sym_EQ2, + STATE(4295), 1, sym_comment, - ACTIONS(7625), 13, + ACTIONS(4908), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383245,19 +367325,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [170064] = 6, + [161663] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2061), 1, + ACTIONS(2070), 1, anon_sym_LPAREN2, - ACTIONS(2065), 1, - aux_sym_unquoted_token2, - STATE(4508), 1, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(4296), 1, sym_comment, - ACTIONS(2063), 2, + ACTIONS(2130), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2059), 11, + ACTIONS(2128), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383269,19 +367349,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, - [170094] = 6, + [161693] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - STATE(4509), 1, + STATE(4297), 1, sym_comment, - ACTIONS(2043), 2, + ACTIONS(1762), 3, ts_builtin_sym_end, sym__space, - ACTIONS(2041), 11, + anon_sym_LPAREN2, + ACTIONS(1760), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383293,54 +367370,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, - [170124] = 17, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7696), 1, - sym_identifier, - ACTIONS(7698), 1, - sym__newline, - ACTIONS(7702), 1, - anon_sym_DOLLAR, - ACTIONS(7704), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7706), 1, - anon_sym_DASH_DASH, - ACTIONS(7708), 1, - anon_sym_DASH2, - ACTIONS(7721), 1, - anon_sym_RBRACK, - STATE(4057), 1, - sym_param_long_flag, - STATE(4224), 1, - sym__param_name, - STATE(4510), 1, - sym_comment, - STATE(4512), 1, - aux_sym_shebang_repeat1, - STATE(4887), 1, - aux_sym_parameter_parens_repeat1, - STATE(5014), 1, - sym_param_rest, - STATE(5016), 1, - sym_param_opt, - STATE(5021), 1, - sym_param_short_flag, - STATE(5582), 1, - sym_parameter, - [170176] = 6, + aux_sym_unquoted_token2, + [161719] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(4511), 1, + STATE(4298), 1, sym_comment, - STATE(7809), 1, + STATE(7173), 1, sym__expr_parenthesized_immediate, - ACTIONS(4938), 2, + ACTIONS(4859), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4940), 11, + ACTIONS(4861), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383352,48 +367395,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, - [170206] = 17, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7696), 1, - sym_identifier, - ACTIONS(7698), 1, - sym__newline, - ACTIONS(7702), 1, - anon_sym_DOLLAR, - ACTIONS(7704), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7706), 1, - anon_sym_DASH_DASH, - ACTIONS(7708), 1, - anon_sym_DASH2, - ACTIONS(7723), 1, - anon_sym_RBRACK, - STATE(4057), 1, - sym_param_long_flag, - STATE(4224), 1, - sym__param_name, - STATE(4512), 1, - sym_comment, - STATE(4737), 1, - aux_sym_parameter_parens_repeat1, - STATE(5014), 1, - sym_param_rest, - STATE(5016), 1, - sym_param_opt, - STATE(5021), 1, - sym_param_short_flag, - STATE(5333), 1, - aux_sym_shebang_repeat1, - STATE(5582), 1, - sym_parameter, - [170258] = 3, - ACTIONS(245), 1, + [161749] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4513), 1, + ACTIONS(7729), 1, + sym_long_flag_identifier, + ACTIONS(7731), 1, + anon_sym_EQ2, + STATE(4299), 1, sym_comment, - ACTIONS(7393), 15, + ACTIONS(4848), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(4850), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383405,115 +367419,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_and2, - anon_sym_xor2, - anon_sym_or2, - [170282] = 17, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7696), 1, - sym_identifier, - ACTIONS(7698), 1, - sym__newline, - ACTIONS(7702), 1, - anon_sym_DOLLAR, - ACTIONS(7704), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7706), 1, - anon_sym_DASH_DASH, - ACTIONS(7708), 1, - anon_sym_DASH2, - ACTIONS(7725), 1, - anon_sym_RBRACK, - STATE(4057), 1, - sym_param_long_flag, - STATE(4224), 1, - sym__param_name, - STATE(4514), 1, - sym_comment, - STATE(4559), 1, - aux_sym_shebang_repeat1, - STATE(4944), 1, - aux_sym_parameter_parens_repeat1, - STATE(5014), 1, - sym_param_rest, - STATE(5016), 1, - sym_param_opt, - STATE(5021), 1, - sym_param_short_flag, - STATE(5582), 1, - sym_parameter, - [170334] = 17, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7696), 1, - sym_identifier, - ACTIONS(7698), 1, - sym__newline, - ACTIONS(7702), 1, - anon_sym_DOLLAR, - ACTIONS(7704), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7706), 1, - anon_sym_DASH_DASH, - ACTIONS(7708), 1, - anon_sym_DASH2, - ACTIONS(7727), 1, - anon_sym_RPAREN, - STATE(4057), 1, - sym_param_long_flag, - STATE(4224), 1, - sym__param_name, - STATE(4515), 1, - sym_comment, - STATE(4564), 1, - aux_sym_shebang_repeat1, - STATE(4947), 1, - aux_sym_parameter_parens_repeat1, - STATE(5014), 1, - sym_param_rest, - STATE(5016), 1, - sym_param_opt, - STATE(5021), 1, - sym_param_short_flag, - STATE(5582), 1, - sym_parameter, - [170386] = 5, + [161779] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7611), 1, - aux_sym__immediate_decimal_token2, - STATE(4516), 1, - sym_comment, - ACTIONS(1666), 3, - sym_identifier, - anon_sym_DASH2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1668), 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, - [170414] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7729), 1, - anon_sym_EQ2, - ACTIONS(7731), 1, - sym_short_flag_identifier, - STATE(4517), 1, + STATE(4300), 1, sym_comment, - ACTIONS(4881), 2, + ACTIONS(7486), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(4883), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383525,41 +367437,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, - [170444] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(4518), 1, - sym_comment, - ACTIONS(1967), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1969), 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, - [170470] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [161803] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - STATE(4519), 1, + STATE(4301), 1, sym_comment, - ACTIONS(1786), 2, + ACTIONS(1799), 3, ts_builtin_sym_end, sym__space, - ACTIONS(1778), 11, + anon_sym_LPAREN2, + ACTIONS(1797), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383571,19 +367461,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, - [170500] = 6, + aux_sym_unquoted_token2, + [161829] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2033), 1, + ACTIONS(1949), 1, anon_sym_DASH2, ACTIONS(7733), 1, anon_sym_DOT_DOT2, - STATE(4520), 1, + STATE(4302), 1, sym_comment, ACTIONS(7735), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2039), 11, + ACTIONS(1955), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -383595,22 +367486,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [170530] = 7, + [161859] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7737), 1, - sym__newline, - STATE(793), 1, - aux_sym__pipe_separator, - STATE(4521), 1, + STATE(4303), 1, sym_comment, - STATE(5183), 1, - aux_sym_shebang_repeat1, - ACTIONS(7740), 3, + ACTIONS(7486), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2592), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -383620,12 +367504,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, - [170562] = 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [161883] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(4522), 1, + STATE(4304), 1, sym_comment, - ACTIONS(7538), 15, + ACTIONS(7336), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -383641,19 +367528,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [170586] = 6, - ACTIONS(3), 1, + [161907] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - ACTIONS(2051), 1, - anon_sym_LPAREN2, - STATE(4523), 1, + ACTIONS(7617), 1, + anon_sym_and2, + STATE(4305), 1, sym_comment, - ACTIONS(2053), 2, + ACTIONS(7486), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(2049), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383665,34 +367548,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, - [170616] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(4524), 1, - sym_comment, - ACTIONS(982), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(984), 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, - [170642] = 3, + anon_sym_xor2, + anon_sym_or2, + [161933] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4525), 1, + ACTIONS(7638), 1, + anon_sym_and2, + STATE(4306), 1, sym_comment, - ACTIONS(7538), 15, + ACTIONS(7486), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -383705,22 +367570,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, - [170666] = 6, + [161959] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7710), 1, - anon_sym_DOT_DOT2, - ACTIONS(7744), 1, + ACTIONS(1957), 1, anon_sym_DASH2, - STATE(4526), 1, + ACTIONS(7737), 1, + anon_sym_DOT_DOT2, + STATE(4307), 1, sym_comment, - ACTIONS(7712), 2, + ACTIONS(7739), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7742), 11, + ACTIONS(1963), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -383732,65 +367596,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [170696] = 4, + [161989] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7688), 1, - anon_sym_and2, - STATE(4527), 1, - sym_comment, - ACTIONS(7538), 14, - 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, - [170722] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7746), 1, - sym_long_flag_identifier, - ACTIONS(7748), 1, - anon_sym_EQ2, - STATE(4528), 1, + STATE(4308), 1, sym_comment, - ACTIONS(4873), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4875), 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, - [170752] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2009), 1, + ACTIONS(1987), 2, anon_sym_DASH2, - ACTIONS(7750), 1, anon_sym_DOT_DOT2, - STATE(4529), 1, - sym_comment, - ACTIONS(7752), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2015), 11, + ACTIONS(1989), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -383802,78 +367616,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [170782] = 17, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [162015] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7696), 1, - sym_identifier, - ACTIONS(7698), 1, - sym__newline, - ACTIONS(7702), 1, - anon_sym_DOLLAR, - ACTIONS(7704), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7706), 1, - anon_sym_DASH_DASH, - ACTIONS(7708), 1, + ACTIONS(1965), 1, anon_sym_DASH2, - ACTIONS(7754), 1, - anon_sym_PIPE, - STATE(4057), 1, - sym_param_long_flag, - STATE(4224), 1, - sym__param_name, - STATE(4530), 1, - sym_comment, - STATE(4872), 1, - aux_sym_parameter_parens_repeat1, - STATE(5014), 1, - sym_param_rest, - STATE(5016), 1, - sym_param_opt, - STATE(5021), 1, - sym_param_short_flag, - STATE(5333), 1, - aux_sym_shebang_repeat1, - STATE(5582), 1, - sym_parameter, - [170834] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(4531), 1, - sym_comment, - STATE(7809), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4946), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4948), 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, - [170864] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7756), 1, - aux_sym__immediate_decimal_token2, - STATE(4532), 1, + ACTIONS(7741), 1, + anon_sym_DOT_DOT2, + STATE(4309), 1, sym_comment, - ACTIONS(1719), 3, - sym_identifier, - anon_sym_DASH2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1721), 11, + ACTIONS(7743), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1971), 11, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -383883,20 +367642,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [170892] = 6, + [162045] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7710), 1, + ACTIONS(7607), 1, anon_sym_DOT_DOT2, - ACTIONS(7760), 1, + ACTIONS(7747), 1, anon_sym_DASH2, - STATE(4533), 1, + STATE(4310), 1, sym_comment, - ACTIONS(7712), 2, + ACTIONS(7609), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7758), 11, + ACTIONS(7745), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -383908,13 +367666,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [170922] = 3, - ACTIONS(245), 1, + [162075] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4534), 1, + ACTIONS(2070), 1, + anon_sym_LPAREN2, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(4311), 1, sym_comment, - ACTIONS(7326), 15, + ACTIONS(2072), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2068), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383926,41 +367690,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, - [170946] = 4, - ACTIONS(245), 1, + [162105] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7686), 1, - anon_sym_and2, - STATE(4535), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(4312), 1, sym_comment, - ACTIONS(7538), 14, + STATE(6903), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7513), 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, - anon_sym_xor2, - anon_sym_or2, - [170972] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2294), 1, sym__space, - ACTIONS(7762), 1, - anon_sym_LBRACK2, - STATE(4536), 1, - sym_comment, - ACTIONS(2290), 13, + ACTIONS(7511), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383972,47 +367714,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, - [171000] = 6, + [162135] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7764), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7766), 1, + ACTIONS(7572), 1, aux_sym__immediate_decimal_token2, - STATE(4537), 1, + STATE(4313), 1, sym_comment, - ACTIONS(1484), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1486), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [171030] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2017), 1, + ACTIONS(1701), 3, + sym_identifier, anon_sym_DASH2, - ACTIONS(7768), 1, - anon_sym_DOT_DOT2, - STATE(4538), 1, - sym_comment, - ACTIONS(7770), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2023), 11, + aux_sym__unquoted_in_record_token2, + ACTIONS(1703), 11, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -384022,16 +367736,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [171060] = 5, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [162163] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1591), 1, - sym__space, - ACTIONS(7156), 1, - aux_sym_unquoted_token2, - STATE(4539), 1, + STATE(4314), 1, sym_comment, - ACTIONS(1579), 13, + ACTIONS(7486), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384043,18 +367755,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, - [171088] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [162187] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7688), 1, + ACTIONS(7617), 1, anon_sym_and2, - ACTIONS(7690), 1, - anon_sym_xor2, - STATE(4540), 1, + STATE(4315), 1, sym_comment, - ACTIONS(7538), 13, + ACTIONS(7486), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -384067,17 +367778,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_xor2, anon_sym_or2, - [171116] = 5, + [162213] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7665), 1, - sym__space, - STATE(4541), 1, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + STATE(4316), 1, sym_comment, - STATE(4542), 1, - aux_sym_attribute_repeat1, - ACTIONS(7772), 13, + ACTIONS(2136), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2134), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384089,17 +367804,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, - [171144] = 4, + [162243] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7776), 1, - sym__space, - STATE(4542), 2, + ACTIONS(1477), 1, + aux_sym_unquoted_token2, + ACTIONS(2140), 1, + anon_sym_LPAREN2, + STATE(4317), 1, sym_comment, - aux_sym_attribute_repeat1, - ACTIONS(7774), 13, + ACTIONS(2142), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2138), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384111,18 +367828,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, - [171170] = 5, + [162273] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7686), 1, - anon_sym_and2, - ACTIONS(7694), 1, - anon_sym_xor2, - STATE(4543), 1, + STATE(4318), 1, sym_comment, - ACTIONS(7538), 13, + ACTIONS(7263), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -384135,79 +367846,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_or2, - [171198] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7710), 1, - anon_sym_DOT_DOT2, - ACTIONS(7781), 1, - anon_sym_DASH2, - STATE(4544), 1, - sym_comment, - ACTIONS(7712), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7779), 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, - [171228] = 17, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7696), 1, - sym_identifier, - ACTIONS(7698), 1, - sym__newline, - ACTIONS(7702), 1, - anon_sym_DOLLAR, - ACTIONS(7704), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7706), 1, - anon_sym_DASH_DASH, - ACTIONS(7708), 1, - anon_sym_DASH2, - ACTIONS(7783), 1, - anon_sym_RPAREN, - STATE(4057), 1, - sym_param_long_flag, - STATE(4224), 1, - sym__param_name, - STATE(4494), 1, - aux_sym_shebang_repeat1, - STATE(4545), 1, - sym_comment, - STATE(4888), 1, - aux_sym_parameter_parens_repeat1, - STATE(5014), 1, - sym_param_rest, - STATE(5016), 1, - sym_param_opt, - STATE(5021), 1, - sym_param_short_flag, - STATE(5582), 1, - sym_parameter, - [171280] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7688), 1, anon_sym_and2, - ACTIONS(7690), 1, anon_sym_xor2, - ACTIONS(7785), 1, anon_sym_or2, - STATE(4546), 1, + [162297] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(4319), 1, sym_comment, - ACTIONS(7613), 12, + STATE(7173), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4863), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(4865), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384219,19 +367873,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, - [171310] = 6, + [162327] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(2146), 1, anon_sym_LPAREN2, - STATE(4547), 1, + ACTIONS(2150), 1, + aux_sym_unquoted_token2, + STATE(4320), 1, sym_comment, - STATE(7512), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7619), 2, + ACTIONS(2148), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7617), 11, + ACTIONS(2144), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384243,19 +367897,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, - [171340] = 6, - ACTIONS(245), 1, + [162357] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7686), 1, - anon_sym_and2, - ACTIONS(7694), 1, - anon_sym_xor2, - ACTIONS(7787), 1, - anon_sym_or2, - STATE(4548), 1, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + STATE(4321), 1, sym_comment, - ACTIONS(7613), 12, + ACTIONS(1790), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1782), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384267,12 +367921,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, - [171370] = 3, + [162387] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4549), 1, + ACTIONS(7638), 1, + anon_sym_and2, + STATE(4322), 1, sym_comment, - ACTIONS(7538), 15, + ACTIONS(7486), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -384285,15 +367941,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, - [171394] = 3, + [162413] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(4550), 1, + STATE(4323), 1, sym_comment, - ACTIONS(6973), 15, + ACTIONS(7263), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -384309,16 +367964,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [171418] = 5, - ACTIONS(3), 1, + [162437] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7665), 1, - sym__space, - STATE(4541), 1, - aux_sym_attribute_repeat1, - STATE(4551), 1, + STATE(4324), 1, sym_comment, - ACTIONS(7789), 13, + ACTIONS(7749), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384331,17 +367982,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_else, anon_sym_RBRACE, - [171446] = 4, - ACTIONS(3), 1, + anon_sym_catch, + [162461] = 3, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4552), 1, + STATE(4325), 1, sym_comment, - ACTIONS(1792), 3, + ACTIONS(7486), 15, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1790), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384353,14 +368003,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, - aux_sym_unquoted_token2, - [171472] = 3, - ACTIONS(245), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [162485] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4553), 1, + ACTIONS(2070), 1, + anon_sym_LPAREN2, + ACTIONS(2074), 1, + aux_sym__unquoted_in_record_token4, + STATE(4326), 1, sym_comment, - ACTIONS(7538), 15, + ACTIONS(2128), 6, + anon_sym_EQ, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH2, + ACTIONS(2130), 6, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + [162514] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7751), 1, ts_builtin_sym_end, + ACTIONS(7753), 1, + sym__space, + STATE(4327), 1, + sym_comment, + STATE(4454), 1, + aux_sym_attribute_repeat1, + ACTIONS(7723), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384372,19 +368052,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, - [171496] = 4, + [162543] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4554), 1, + STATE(4328), 1, sym_comment, - ACTIONS(5010), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(5012), 13, + ACTIONS(5630), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384395,14 +368070,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, - [171522] = 3, + anon_sym_COLON2, + [162566] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4555), 1, + ACTIONS(7757), 1, + anon_sym_catch, + STATE(4329), 1, sym_comment, - ACTIONS(7791), 15, + ACTIONS(7755), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384415,22 +368092,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_else, anon_sym_RBRACE, - anon_sym_catch, - [171546] = 6, + [162591] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(4556), 1, - sym_comment, - STATE(7809), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4928), 2, - ts_builtin_sym_end, + ACTIONS(2376), 1, sym__space, - ACTIONS(4930), 11, + STATE(4330), 1, + sym_comment, + ACTIONS(2374), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384442,15 +368112,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, - [171576] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [162616] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7688), 1, - anon_sym_and2, - STATE(4557), 1, + ACTIONS(1618), 1, + anon_sym_LPAREN2, + ACTIONS(7689), 1, + anon_sym_DASH2, + STATE(4331), 1, + sym_comment, + STATE(6876), 1, + sym__expr_parenthesized_immediate, + 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, + [162645] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7759), 1, + anon_sym_EQ2, + STATE(4332), 1, sym_comment, - ACTIONS(7538), 14, + ACTIONS(4938), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(4940), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384462,22 +368159,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_xor2, - anon_sym_or2, - [171602] = 6, - ACTIONS(3), 1, + [162672] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(4558), 1, - sym_comment, - STATE(7809), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4932), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4934), 11, + ACTIONS(7761), 1, sym__newline, + ACTIONS(7766), 1, + anon_sym_else, + STATE(4333), 1, + sym_comment, + STATE(4413), 1, + aux_sym_shebang_repeat1, + ACTIONS(7764), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384488,71 +368181,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, - [171632] = 17, + anon_sym_RPAREN, + [162701] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7696), 1, - sym_identifier, - ACTIONS(7698), 1, + ACTIONS(7768), 1, sym__newline, - ACTIONS(7702), 1, - anon_sym_DOLLAR, - ACTIONS(7704), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7706), 1, - anon_sym_DASH_DASH, - ACTIONS(7708), 1, - anon_sym_DASH2, - ACTIONS(7793), 1, - anon_sym_RBRACK, - STATE(4057), 1, - sym_param_long_flag, - STATE(4224), 1, - sym__param_name, - STATE(4559), 1, + ACTIONS(7773), 1, + anon_sym_else, + STATE(4334), 1, sym_comment, - STATE(4877), 1, - aux_sym_parameter_parens_repeat1, - STATE(5014), 1, - sym_param_rest, - STATE(5016), 1, - sym_param_opt, - STATE(5021), 1, - sym_param_short_flag, - STATE(5333), 1, + STATE(4348), 1, aux_sym_shebang_repeat1, - STATE(5582), 1, - sym_parameter, - [171684] = 6, - ACTIONS(245), 1, + ACTIONS(7771), 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, + [162730] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2025), 1, - anon_sym_DASH2, - ACTIONS(7795), 1, - anon_sym_DOT_DOT2, - STATE(4560), 1, + ACTIONS(2364), 1, + sym__space, + STATE(4335), 1, sym_comment, - ACTIONS(7797), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2031), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2362), 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, - [171714] = 3, - ACTIONS(245), 1, + anon_sym_RBRACE, + [162755] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4561), 1, + ACTIONS(2280), 1, + sym__space, + STATE(4336), 1, sym_comment, - ACTIONS(5155), 15, + ACTIONS(2278), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384565,19 +368246,36 @@ 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, - [171738] = 4, - ACTIONS(3), 1, + [162780] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4562), 1, + STATE(4337), 1, sym_comment, - ACTIONS(1721), 3, - ts_builtin_sym_end, + ACTIONS(7348), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7350), 12, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [162805] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2304), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1719), 12, + STATE(4338), 1, + sym_comment, + ACTIONS(2302), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384589,16 +368287,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_token2, - [171764] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [162830] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4563), 1, - sym_comment, - ACTIONS(5032), 2, + ACTIONS(2308), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(5034), 13, + STATE(4339), 1, + sym_comment, + ACTIONS(2306), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384612,52 +368310,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [171790] = 17, + [162855] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7696), 1, - sym_identifier, - ACTIONS(7698), 1, + ACTIONS(7775), 1, sym__newline, - ACTIONS(7702), 1, - anon_sym_DOLLAR, - ACTIONS(7704), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7706), 1, - anon_sym_DASH_DASH, - ACTIONS(7708), 1, - anon_sym_DASH2, - ACTIONS(7799), 1, - anon_sym_RPAREN, - STATE(4057), 1, - sym_param_long_flag, - STATE(4224), 1, - sym__param_name, - STATE(4564), 1, + ACTIONS(7780), 1, + anon_sym_catch, + STATE(4340), 1, sym_comment, - STATE(4928), 1, - aux_sym_parameter_parens_repeat1, - STATE(5014), 1, - sym_param_rest, - STATE(5016), 1, - sym_param_opt, - STATE(5021), 1, - sym_param_short_flag, - STATE(5333), 1, + STATE(4419), 1, aux_sym_shebang_repeat1, - STATE(5582), 1, - sym_parameter, - [171842] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5060), 1, - sym__space, - ACTIONS(7801), 1, - anon_sym_EQ2, - STATE(4565), 1, - sym_comment, - ACTIONS(5062), 13, - sym__newline, + ACTIONS(7778), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384669,42 +368333,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, - [171870] = 6, + [162884] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7803), 1, - anon_sym_DOT, - ACTIONS(7805), 1, - aux_sym__immediate_decimal_token2, - STATE(4566), 1, + STATE(4341), 1, sym_comment, - ACTIONS(1492), 3, + ACTIONS(1686), 2, anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1494), 10, + aux_sym__unquoted_in_record_token2, + ACTIONS(1688), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, + 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_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [171900] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4567), 1, - sym_comment, - ACTIONS(2047), 3, - ts_builtin_sym_end, - sym__space, anon_sym_LPAREN2, - ACTIONS(2045), 12, + [162909] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7782), 1, sym__newline, + ACTIONS(7787), 1, + anon_sym_catch, + STATE(4342), 1, + sym_comment, + STATE(4422), 1, + aux_sym_shebang_repeat1, + ACTIONS(7785), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384715,15 +368376,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, - aux_sym_unquoted_token4, - [171926] = 4, + anon_sym_RPAREN, + [162938] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2416), 1, + ACTIONS(2312), 1, sym__space, - STATE(4568), 1, + STATE(4343), 1, sym_comment, - ACTIONS(2414), 13, + ACTIONS(2310), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384737,14 +368398,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [171951] = 4, + [162963] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2344), 1, + ACTIONS(7791), 1, sym__space, - STATE(4569), 1, + STATE(4344), 1, sym_comment, - ACTIONS(2342), 13, + ACTIONS(7789), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384757,15 +368418,36 @@ 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, - [171976] = 4, + anon_sym_RBRACE, + [162988] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(4345), 1, + sym_comment, + ACTIONS(1760), 2, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1762), 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, + [163013] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2348), 1, + ACTIONS(5636), 1, sym__space, - STATE(4570), 1, + STATE(4346), 1, sym_comment, - ACTIONS(2346), 13, + ACTIONS(5634), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384779,15 +368461,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172001] = 4, + [163038] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2352), 1, + ACTIONS(7793), 1, + sym__newline, + ACTIONS(7795), 1, sym__space, - STATE(4571), 1, + STATE(4347), 1, sym_comment, - ACTIONS(2350), 13, - sym__newline, + STATE(4424), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(7797), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384799,19 +368484,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, - [172026] = 5, - ACTIONS(3), 1, + [163067] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7221), 1, - aux_sym_unquoted_token2, - STATE(4572), 1, - sym_comment, - ACTIONS(1591), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1579), 11, + ACTIONS(4854), 1, sym__newline, + ACTIONS(7799), 1, + anon_sym_else, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4348), 1, + sym_comment, + ACTIONS(1274), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384822,41 +368506,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, - [172053] = 6, + anon_sym_RPAREN, + [163096] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(4573), 1, + STATE(4349), 1, sym_comment, - ACTIONS(6975), 2, + ACTIONS(6939), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6981), 2, + ACTIONS(6945), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6979), 4, + ACTIONS(6943), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6977), 6, + ACTIONS(6941), 6, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [172082] = 6, - ACTIONS(245), 1, + [163125] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4953), 1, - sym__newline, - ACTIONS(7807), 1, - anon_sym_else, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4574), 1, + STATE(4350), 1, sym_comment, - ACTIONS(1286), 11, + ACTIONS(5622), 14, + sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384867,15 +368548,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, - [172111] = 4, + anon_sym_RBRACE, + anon_sym_COLON2, + [163148] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2356), 1, + ACTIONS(2427), 1, sym__space, - STATE(4575), 1, + STATE(4351), 1, sym_comment, - ACTIONS(2354), 13, + ACTIONS(2425), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384889,14 +368571,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172136] = 4, + [163173] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2360), 1, + ACTIONS(1873), 1, sym__space, - STATE(4576), 1, + STATE(4352), 1, sym_comment, - ACTIONS(2358), 13, + ACTIONS(1871), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384910,15 +368592,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172161] = 4, + [163198] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2364), 1, + ACTIONS(7793), 1, + sym__newline, + ACTIONS(7795), 1, sym__space, - STATE(4577), 1, + STATE(4353), 1, sym_comment, - ACTIONS(2362), 13, - sym__newline, + STATE(4394), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(7802), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384930,15 +368615,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, - [172186] = 4, + [163227] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7806), 1, + anon_sym_AT2, + ACTIONS(7808), 1, + anon_sym_DASH2, + STATE(4354), 1, + sym_comment, + STATE(4887), 1, + sym_param_cmd, + ACTIONS(7804), 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, + [163256] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2368), 1, + ACTIONS(2164), 1, + anon_sym_LPAREN2, + ACTIONS(2168), 1, + aux_sym__unquoted_in_record_token4, + STATE(4355), 1, + sym_comment, + ACTIONS(2162), 6, + anon_sym_EQ, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH2, + ACTIONS(2166), 6, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + [163285] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1979), 1, sym__space, - STATE(4578), 1, + STATE(4356), 1, sym_comment, - ACTIONS(2366), 13, + ACTIONS(1973), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384952,14 +368682,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172211] = 4, + [163310] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(4357), 1, + sym_comment, + ACTIONS(6913), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6919), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6917), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6915), 6, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [163339] = 7, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7654), 1, + sym__newline, + STATE(752), 1, + aux_sym__pipe_separator, + STATE(4358), 1, + sym_comment, + STATE(4916), 1, + aux_sym_shebang_repeat1, + ACTIONS(7657), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(2612), 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, + [163370] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5659), 1, + ACTIONS(5119), 1, sym__space, - STATE(4579), 1, + STATE(4359), 1, sym_comment, - ACTIONS(5657), 13, + ACTIONS(5121), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384973,14 +368750,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172236] = 4, + [163395] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1915), 1, + ACTIONS(5123), 1, sym__space, - STATE(4580), 1, + STATE(4360), 1, sym_comment, - ACTIONS(1913), 13, + ACTIONS(5125), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384994,14 +368771,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172261] = 4, + [163420] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1937), 1, - sym__space, - STATE(4581), 1, + ACTIONS(7810), 1, + anon_sym_LBRACK2, + STATE(4361), 1, sym_comment, - ACTIONS(1935), 13, + ACTIONS(2234), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2230), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385013,16 +368793,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, - [172286] = 4, + [163447] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1853), 1, + ACTIONS(1831), 1, sym__space, - STATE(4582), 1, + STATE(4362), 1, sym_comment, - ACTIONS(1851), 13, + ACTIONS(1829), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385036,15 +368814,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172311] = 4, + [163472] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4583), 1, + STATE(4363), 1, sym_comment, - ACTIONS(7444), 2, + ACTIONS(7812), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(7446), 12, + ACTIONS(7814), 12, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_has2, @@ -385057,21 +368835,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - [172336] = 7, - ACTIONS(245), 1, + [163497] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7714), 1, - sym__newline, - STATE(793), 1, - aux_sym__pipe_separator, - STATE(4584), 1, + ACTIONS(5658), 1, + sym__space, + STATE(4364), 1, sym_comment, - STATE(5183), 1, - aux_sym_shebang_repeat1, - ACTIONS(7717), 2, - ts_builtin_sym_end, + ACTIONS(5656), 13, + sym__newline, anon_sym_SEMI, - ACTIONS(2592), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -385081,62 +368854,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, - [172367] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1581), 1, - anon_sym_LPAREN2, - ACTIONS(7744), 1, - anon_sym_DASH2, - STATE(4585), 1, - sym_comment, - STATE(7497), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7742), 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, - [172396] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(4586), 1, - sym_comment, - ACTIONS(7381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7383), 12, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [172421] = 6, + anon_sym_RBRACE, + [163522] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7812), 1, - anon_sym_AT2, - ACTIONS(7814), 1, + ACTIONS(7818), 1, + anon_sym_LT, + ACTIONS(7820), 1, anon_sym_DASH2, - STATE(4587), 1, + STATE(4365), 1, sym_comment, - STATE(5073), 1, - sym_param_cmd, - ACTIONS(7810), 11, + ACTIONS(7816), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385146,20 +368875,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [172450] = 6, + [163549] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7812), 1, - anon_sym_AT2, - ACTIONS(7814), 1, + ACTIONS(7820), 1, anon_sym_DASH2, - STATE(4588), 1, + ACTIONS(7822), 1, + anon_sym_LT, + STATE(4366), 1, sym_comment, - STATE(5074), 1, - sym_param_cmd, - ACTIONS(7810), 11, + ACTIONS(7816), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385169,16 +368897,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [172479] = 4, + [163576] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2463), 1, + ACTIONS(2407), 1, sym__space, - STATE(4589), 1, + STATE(4367), 1, sym_comment, - ACTIONS(2461), 13, + ACTIONS(2405), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385192,14 +368921,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172504] = 4, - ACTIONS(3), 1, + [163601] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2376), 1, - sym__space, - STATE(4590), 1, + STATE(4368), 1, sym_comment, - ACTIONS(2374), 13, + ACTIONS(5139), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385211,17 +368939,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, - [172529] = 4, + anon_sym_else, + anon_sym_catch, + [163624] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1947), 1, - sym__space, - STATE(4591), 1, + STATE(4369), 1, sym_comment, - ACTIONS(1945), 13, + ACTIONS(5634), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385232,37 +368959,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, - [172554] = 4, - ACTIONS(3), 1, + anon_sym_COLON2, + [163647] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2432), 1, - sym__space, - STATE(4592), 1, + STATE(4370), 1, sym_comment, - ACTIONS(2430), 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, - [172579] = 4, + ACTIONS(7368), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7370), 12, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [163672] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2384), 1, + ACTIONS(1835), 1, sym__space, - STATE(4593), 1, + STATE(4371), 1, sym_comment, - ACTIONS(2382), 13, + ACTIONS(1833), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385276,60 +369003,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [172604] = 7, + [163697] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7737), 1, - sym__newline, - STATE(793), 1, - aux_sym__pipe_separator, - STATE(4594), 1, + ACTIONS(7648), 1, + aux_sym__immediate_decimal_token2, + STATE(4372), 1, sym_comment, - STATE(5183), 1, - aux_sym_shebang_repeat1, - ACTIONS(7740), 2, - ts_builtin_sym_end, + ACTIONS(1499), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1501), 10, + sym__newline, anon_sym_SEMI, - ACTIONS(2592), 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, - [172635] = 4, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [163724] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5667), 1, - sym__space, - STATE(4595), 1, + ACTIONS(2070), 1, + anon_sym_LPAREN2, + ACTIONS(2074), 1, + aux_sym__unquoted_in_record_token4, + STATE(4373), 1, sym_comment, - ACTIONS(5665), 13, + ACTIONS(2068), 6, + anon_sym_EQ, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH2, + ACTIONS(2072), 6, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - [172660] = 4, + anon_sym_COMMA, + [163753] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2302), 1, - sym__space, - STATE(4596), 1, + STATE(4374), 1, sym_comment, - ACTIONS(2300), 13, + ACTIONS(5656), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385340,20 +369066,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, - [172685] = 6, + anon_sym_COLON2, + [163776] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7816), 1, - ts_builtin_sym_end, - ACTIONS(7818), 1, + ACTIONS(2372), 1, sym__space, - STATE(4597), 1, + STATE(4375), 1, sym_comment, - STATE(4604), 1, - aux_sym_attribute_repeat1, - ACTIONS(7789), 11, + ACTIONS(2370), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385365,18 +369087,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, - [172714] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [163801] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7812), 1, + ACTIONS(7806), 1, anon_sym_AT2, - ACTIONS(7822), 1, + ACTIONS(7826), 1, anon_sym_DASH2, - STATE(4598), 1, + STATE(4376), 1, sym_comment, - STATE(5104), 1, + STATE(4878), 1, sym_param_cmd, - ACTIONS(7820), 11, + ACTIONS(7824), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -385388,14 +369112,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [172743] = 4, + [163830] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(4377), 1, + sym_comment, + ACTIONS(7828), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7830), 12, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [163855] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2459), 1, - sym__space, - STATE(4599), 1, + STATE(4378), 1, sym_comment, - ACTIONS(2457), 13, + ACTIONS(4974), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(4976), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385407,20 +369154,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, - [172768] = 6, - ACTIONS(245), 1, + [163880] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4953), 1, - sym__newline, - ACTIONS(7824), 1, - anon_sym_else, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4600), 1, + ACTIONS(2380), 1, + sym__space, + STATE(4379), 1, sym_comment, - ACTIONS(1286), 11, + ACTIONS(2378), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385432,91 +369174,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [172797] = 14, + anon_sym_RBRACE, + [163905] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3076), 1, + ACTIONS(3020), 1, anon_sym_DASH_DASH, - ACTIONS(3078), 1, + ACTIONS(3022), 1, anon_sym_DASH2, - ACTIONS(3993), 1, + ACTIONS(3947), 1, anon_sym_DOLLAR, - ACTIONS(7827), 1, + ACTIONS(7832), 1, sym__newline, - ACTIONS(7829), 1, + ACTIONS(7834), 1, sym__space, - ACTIONS(7831), 1, + ACTIONS(7836), 1, anon_sym_LBRACE, - STATE(1755), 1, + STATE(1689), 1, sym_block, - STATE(1761), 1, + STATE(1711), 1, sym_val_closure, - STATE(4601), 1, + STATE(4380), 1, sym_comment, - STATE(5697), 1, + STATE(5367), 1, aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7541), 1, + STATE(6813), 1, sym__flag, - STATE(818), 2, + STATE(777), 2, sym__blosure, sym_val_variable, - STATE(4663), 2, + STATE(4417), 2, sym_short_flag, sym_long_flag, - [172842] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2467), 1, - sym__space, - STATE(4602), 1, - sym_comment, - ACTIONS(2465), 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, - [172867] = 4, + [163950] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1929), 1, - sym__space, - STATE(4603), 1, + STATE(4381), 1, sym_comment, - ACTIONS(1927), 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, - [172892] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7818), 1, - sym__space, - ACTIONS(7833), 1, + ACTIONS(4966), 3, ts_builtin_sym_end, - STATE(4604), 1, - sym_comment, - STATE(4654), 1, - aux_sym_attribute_repeat1, - ACTIONS(7772), 11, + sym__space, + anon_sym_LPAREN2, + ACTIONS(4968), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385528,41 +369227,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, - [172921] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2196), 1, - anon_sym_LPAREN2, - ACTIONS(2200), 1, - aux_sym__unquoted_in_record_token4, - STATE(4605), 1, - sym_comment, - ACTIONS(2194), 6, - anon_sym_EQ, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH2, - ACTIONS(2198), 6, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - [172950] = 6, + [163975] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7835), 1, + ACTIONS(7838), 1, sym__newline, - ACTIONS(7840), 1, + ACTIONS(7843), 1, anon_sym_else, - STATE(4606), 1, + STATE(4382), 1, sym_comment, - STATE(4669), 1, + STATE(4455), 1, aux_sym_shebang_repeat1, - ACTIONS(7838), 11, + ACTIONS(7841), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385574,64 +369250,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [172979] = 6, + [164004] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym__unquoted_in_record_token4, - STATE(4607), 1, - sym_comment, - ACTIONS(2202), 6, - anon_sym_EQ, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH2, - ACTIONS(2204), 6, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - [173008] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym__unquoted_in_record_token4, - STATE(4608), 1, + ACTIONS(2384), 1, + sym__space, + STATE(4383), 1, sym_comment, - ACTIONS(2089), 6, - anon_sym_EQ, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH2, - ACTIONS(2093), 6, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - [173037] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7842), 1, + ACTIONS(2382), 13, sym__newline, - ACTIONS(7847), 1, - anon_sym_else, - STATE(4609), 1, - sym_comment, - STATE(4643), 1, - aux_sym_shebang_repeat1, - ACTIONS(7845), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385643,17 +369270,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [173066] = 5, + anon_sym_RBRACE, + [164029] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7849), 1, - anon_sym_EQ2, - STATE(4610), 1, - sym_comment, - ACTIONS(5060), 2, - ts_builtin_sym_end, + ACTIONS(5628), 1, sym__space, - ACTIONS(5062), 11, + STATE(4384), 1, + sym_comment, + ACTIONS(5626), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385665,18 +369290,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, - [173093] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [164054] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7851), 1, + ACTIONS(4854), 1, sym__newline, - ACTIONS(7856), 1, + ACTIONS(7845), 1, anon_sym_else, - STATE(4611), 1, - sym_comment, - STATE(4645), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(7854), 11, + STATE(4385), 1, + sym_comment, + ACTIONS(1274), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385688,58 +369315,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [173122] = 6, + [164083] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4953), 1, - sym__newline, - ACTIONS(7858), 1, - anon_sym_catch, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4612), 1, + ACTIONS(7848), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7850), 1, + aux_sym__immediate_decimal_token2, + STATE(4386), 1, sym_comment, - ACTIONS(1286), 11, + ACTIONS(1491), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1493), 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, - [173151] = 4, - ACTIONS(3), 1, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [164112] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5682), 1, - sym__space, - STATE(4613), 1, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1792), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2134), 1, + anon_sym_DASH2, + STATE(4387), 1, sym_comment, - ACTIONS(5680), 13, + ACTIONS(2136), 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, - [173176] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [164141] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5686), 1, + ACTIONS(2280), 1, sym__space, - STATE(4614), 1, + STATE(4388), 1, sym_comment, - ACTIONS(5684), 13, + ACTIONS(2278), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385753,14 +369382,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173201] = 4, + [164166] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2394), 1, - sym__space, - STATE(4615), 1, + ACTIONS(7181), 1, + aux_sym_unquoted_token2, + STATE(4389), 1, sym_comment, - ACTIONS(2392), 13, + ACTIONS(1628), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1616), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385772,16 +369404,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, - [173226] = 4, + [164193] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2443), 1, + ACTIONS(7513), 1, sym__space, - STATE(4616), 1, + STATE(4390), 1, sym_comment, - ACTIONS(2441), 13, + ACTIONS(7511), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385795,15 +369425,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173251] = 4, - ACTIONS(3), 1, + [164218] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1885), 1, - sym__space, - STATE(4617), 1, - sym_comment, - ACTIONS(1883), 13, + ACTIONS(7852), 1, sym__newline, + ACTIONS(7857), 1, + anon_sym_else, + STATE(4391), 1, + sym_comment, + STATE(4408), 1, + aux_sym_shebang_repeat1, + ACTIONS(7855), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385815,15 +369448,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, - [173276] = 4, + [164247] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7863), 1, + ACTIONS(2292), 1, sym__space, - STATE(4618), 1, + STATE(4392), 1, sym_comment, - ACTIONS(7861), 13, + ACTIONS(2290), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385837,14 +369469,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173301] = 4, + [164272] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5690), 1, + ACTIONS(2296), 1, sym__space, - STATE(4619), 1, + STATE(4393), 1, sym_comment, - ACTIONS(5688), 13, + ACTIONS(2294), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385858,15 +369490,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173326] = 4, + [164297] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2428), 1, + ACTIONS(7859), 1, + sym__newline, + ACTIONS(7862), 1, sym__space, - STATE(4620), 1, + STATE(4394), 2, sym_comment, - ACTIONS(2426), 13, - sym__newline, + aux_sym__command_parenthesized_repeat1, + ACTIONS(7865), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385878,15 +369512,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, - [173351] = 4, + [164324] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2447), 1, + ACTIONS(7869), 1, sym__space, - STATE(4621), 1, + STATE(4395), 1, sym_comment, - ACTIONS(2445), 13, + ACTIONS(7867), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385900,15 +369533,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173376] = 4, - ACTIONS(3), 1, + [164349] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2330), 1, - sym__space, - STATE(4622), 1, - sym_comment, - ACTIONS(2328), 13, + ACTIONS(7871), 1, sym__newline, + ACTIONS(7876), 1, + anon_sym_else, + STATE(4382), 1, + aux_sym_shebang_repeat1, + STATE(4396), 1, + sym_comment, + ACTIONS(7874), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -385920,38 +369556,36 @@ 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, - [173401] = 6, + [164378] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7865), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7867), 1, + ACTIONS(7878), 1, aux_sym__immediate_decimal_token2, - STATE(4623), 1, + STATE(4397), 1, sym_comment, - ACTIONS(1484), 3, + ACTIONS(1579), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1486), 9, - ts_builtin_sym_end, + ACTIONS(1581), 10, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [173430] = 4, + [164405] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2334), 1, + ACTIONS(7882), 1, sym__space, - STATE(4624), 1, + STATE(4398), 1, sym_comment, - ACTIONS(2332), 13, + ACTIONS(7880), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385965,14 +369599,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173455] = 4, + [164430] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2471), 1, + ACTIONS(1971), 1, sym__space, - STATE(4625), 1, + STATE(4399), 1, sym_comment, - ACTIONS(2469), 13, + ACTIONS(1965), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385986,14 +369620,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173480] = 4, + [164455] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2451), 1, + ACTIONS(2272), 1, sym__space, - STATE(4626), 1, + STATE(4400), 1, sym_comment, - ACTIONS(2449), 13, + ACTIONS(2270), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386007,59 +369641,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173505] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(7871), 1, - aux_sym__immediate_decimal_token2, - STATE(4627), 1, - sym_comment, - ACTIONS(1492), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1494), 9, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [173534] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7805), 1, - aux_sym__immediate_decimal_token2, - STATE(4628), 1, - sym_comment, - ACTIONS(1492), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1494), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [173561] = 4, + [164480] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2471), 1, + ACTIONS(5111), 1, sym__space, - STATE(4629), 1, + STATE(4401), 1, sym_comment, - ACTIONS(2469), 13, + ACTIONS(5113), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386073,18 +369662,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173586] = 6, - ACTIONS(245), 1, + [164505] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7873), 1, + ACTIONS(3020), 1, + anon_sym_DASH_DASH, + ACTIONS(3022), 1, + anon_sym_DASH2, + ACTIONS(3947), 1, + anon_sym_DOLLAR, + ACTIONS(7832), 1, sym__newline, - ACTIONS(7878), 1, - anon_sym_else, - STATE(4630), 1, + ACTIONS(7834), 1, + sym__space, + ACTIONS(7836), 1, + anon_sym_LBRACE, + STATE(1689), 1, + sym_block, + STATE(1711), 1, + sym_val_closure, + STATE(4402), 1, sym_comment, - STATE(4655), 1, + STATE(5367), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(6813), 1, + sym__flag, + STATE(780), 2, + sym__blosure, + sym_val_variable, + STATE(4417), 2, + sym_short_flag, + sym_long_flag, + [164550] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(4854), 1, + sym__newline, + ACTIONS(7884), 1, + anon_sym_catch, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(7876), 11, + STATE(4403), 1, + sym_comment, + ACTIONS(1274), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386096,18 +369716,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [173615] = 6, + [164579] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7880), 1, - sym__newline, - ACTIONS(7885), 1, - anon_sym_catch, - STATE(4631), 1, + STATE(4404), 1, sym_comment, - STATE(4661), 1, - aux_sym_shebang_repeat1, - ACTIONS(7883), 11, + ACTIONS(7749), 14, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386118,19 +369734,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, - [173644] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7887), 1, - sym__newline, - ACTIONS(7892), 1, + anon_sym_else, anon_sym_catch, - STATE(4632), 1, + [164602] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5115), 1, + sym__space, + STATE(4405), 1, sym_comment, - STATE(4664), 1, - aux_sym_shebang_repeat1, - ACTIONS(7890), 11, + ACTIONS(5117), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386142,57 +369756,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [173673] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7896), 1, - anon_sym_LT, - ACTIONS(7898), 1, - anon_sym_DASH2, - STATE(4633), 1, - sym_comment, - ACTIONS(7894), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [173700] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4634), 1, - sym_comment, - ACTIONS(2045), 7, - anon_sym_EQ, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH2, - aux_sym__unquoted_in_record_token4, - ACTIONS(2047), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_LPAREN2, - [173725] = 4, + anon_sym_RBRACE, + [164627] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2338), 1, + ACTIONS(994), 1, sym__space, - STATE(4635), 1, + STATE(4406), 1, sym_comment, - ACTIONS(2336), 13, + ACTIONS(998), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386206,58 +369778,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173750] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7900), 1, - aux_sym__immediate_decimal_token2, - STATE(4636), 1, - sym_comment, - ACTIONS(1538), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1540), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [173777] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7898), 1, - anon_sym_DASH2, - ACTIONS(7902), 1, - anon_sym_LT, - STATE(4637), 1, - sym_comment, - ACTIONS(7894), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [173804] = 4, + [164652] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2400), 1, + ACTIONS(1877), 1, sym__space, - STATE(4638), 1, + STATE(4407), 1, sym_comment, - ACTIONS(2398), 13, + ACTIONS(1875), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386271,15 +369799,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173829] = 4, - ACTIONS(3), 1, + [164677] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2420), 1, - sym__space, - STATE(4639), 1, - sym_comment, - ACTIONS(2418), 13, + ACTIONS(4854), 1, sym__newline, + ACTIONS(7887), 1, + anon_sym_else, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4408), 1, + sym_comment, + ACTIONS(1274), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386291,15 +369822,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, - [173854] = 4, + [164706] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1893), 1, + ACTIONS(2360), 1, sym__space, - STATE(4640), 1, + STATE(4409), 1, sym_comment, - ACTIONS(1891), 13, + ACTIONS(2358), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386313,14 +369843,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173879] = 4, + [164731] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1903), 1, + ACTIONS(5624), 1, sym__space, - STATE(4641), 1, + STATE(4410), 1, sym_comment, - ACTIONS(1901), 13, + ACTIONS(5622), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386334,14 +369864,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173904] = 4, + [164756] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2308), 1, + ACTIONS(2300), 1, sym__space, - STATE(4642), 1, + STATE(4411), 1, sym_comment, - ACTIONS(2306), 13, + ACTIONS(2298), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386355,18 +369885,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173929] = 6, + [164781] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2104), 1, + anon_sym_LPAREN2, + ACTIONS(2106), 1, + aux_sym__unquoted_in_record_token4, + STATE(4412), 1, + sym_comment, + ACTIONS(994), 6, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(998), 6, + anon_sym_EQ, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [164810] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4953), 1, + ACTIONS(7890), 1, sym__newline, - ACTIONS(7904), 1, + ACTIONS(7895), 1, anon_sym_else, - STATE(1653), 1, + STATE(4385), 1, aux_sym_shebang_repeat1, - STATE(4643), 1, + STATE(4413), 1, sym_comment, - ACTIONS(1286), 11, + ACTIONS(7893), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386378,14 +369931,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [173958] = 4, + [164839] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7416), 1, + ACTIONS(7380), 1, sym__space, - STATE(4644), 1, + STATE(4414), 1, sym_comment, - ACTIONS(7414), 13, + ACTIONS(7378), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386399,18 +369952,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173983] = 6, + [164864] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7907), 1, + ACTIONS(7897), 1, sym__newline, - ACTIONS(7912), 1, + ACTIONS(7902), 1, anon_sym_else, - STATE(4574), 1, + STATE(4334), 1, aux_sym_shebang_repeat1, - STATE(4645), 1, + STATE(4415), 1, sym_comment, - ACTIONS(7910), 11, + ACTIONS(7900), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386422,39 +369975,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [174012] = 4, + [164893] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(4646), 1, - sym_comment, - ACTIONS(1666), 2, - anon_sym_DASH2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1668), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7904), 1, sym__newline, + ACTIONS(7909), 1, + anon_sym_else, + STATE(4391), 1, + aux_sym_shebang_repeat1, + STATE(4416), 1, + sym_comment, + ACTIONS(7907), 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, - anon_sym_LPAREN2, - [174037] = 6, + [164922] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7818), 1, + ACTIONS(5101), 1, sym__space, - ACTIONS(7914), 1, - ts_builtin_sym_end, - STATE(4647), 1, + STATE(4417), 1, sym_comment, - STATE(4718), 1, - aux_sym_attribute_repeat1, - ACTIONS(7625), 11, + ACTIONS(5103), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386466,18 +370017,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, - [174066] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [164947] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7916), 1, - sym__newline, - ACTIONS(7918), 1, + ACTIONS(1955), 1, sym__space, - STATE(4648), 1, + STATE(4418), 1, sym_comment, - STATE(4658), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(7920), 11, + ACTIONS(1949), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386489,39 +370039,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [174095] = 4, + anon_sym_RBRACE, + [164972] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(4649), 1, - sym_comment, - ACTIONS(1648), 2, - anon_sym_DASH2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1650), 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, - [174120] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7916), 1, + ACTIONS(4854), 1, sym__newline, - ACTIONS(7918), 1, - sym__space, - STATE(4650), 1, + ACTIONS(7911), 1, + anon_sym_catch, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4419), 1, sym_comment, - STATE(4690), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(7922), 11, + ACTIONS(1274), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386533,14 +370063,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [174149] = 3, + [165001] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4651), 1, - sym_comment, - ACTIONS(5657), 14, + ACTIONS(7793), 1, sym__newline, + ACTIONS(7795), 1, sym__space, + STATE(4353), 1, + aux_sym__command_parenthesized_repeat1, + STATE(4420), 1, + sym_comment, + ACTIONS(7914), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386551,63 +370085,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_RBRACE, - anon_sym_COLON2, - [174172] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(4652), 1, - sym_comment, - ACTIONS(1719), 2, - anon_sym_DASH2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1721), 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, - [174197] = 4, + [165030] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(4653), 1, - sym_comment, - ACTIONS(1790), 2, - anon_sym_DASH2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1792), 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, - [174222] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7924), 1, - ts_builtin_sym_end, - ACTIONS(7926), 1, - sym__space, - STATE(4654), 2, - sym_comment, - aux_sym_attribute_repeat1, - ACTIONS(7774), 11, + ACTIONS(7916), 1, sym__newline, + STATE(756), 1, + aux_sym__pipe_separator, + STATE(4421), 1, + sym_comment, + STATE(4916), 1, + aux_sym_shebang_repeat1, + ACTIONS(7919), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2612), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -386617,18 +370110,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, - [174249] = 6, + [165061] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7929), 1, + ACTIONS(7921), 1, sym__newline, - ACTIONS(7934), 1, - anon_sym_else, - STATE(4600), 1, + ACTIONS(7926), 1, + anon_sym_catch, + STATE(4403), 1, aux_sym_shebang_repeat1, - STATE(4655), 1, + STATE(4422), 1, sym_comment, - ACTIONS(7932), 11, + ACTIONS(7924), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386640,14 +370133,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [174278] = 4, + [165090] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5191), 1, + ACTIONS(1963), 1, sym__space, - STATE(4656), 1, + STATE(4423), 1, sym_comment, - ACTIONS(5193), 13, + ACTIONS(1957), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386661,18 +370154,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174303] = 6, - ACTIONS(245), 1, + [165115] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7936), 1, + ACTIONS(7793), 1, sym__newline, - ACTIONS(7941), 1, - anon_sym_else, - STATE(4609), 1, - aux_sym_shebang_repeat1, - STATE(4657), 1, + ACTIONS(7795), 1, + sym__space, + STATE(4394), 1, + aux_sym__command_parenthesized_repeat1, + STATE(4424), 1, sym_comment, - ACTIONS(7939), 11, + ACTIONS(7928), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386684,17 +370177,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [174332] = 5, + [165144] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7943), 1, - sym__newline, - ACTIONS(7946), 1, + ACTIONS(7753), 1, sym__space, - STATE(4658), 2, + ACTIONS(7930), 1, + ts_builtin_sym_end, + STATE(4425), 1, sym_comment, - aux_sym__command_parenthesized_repeat1, - ACTIONS(7949), 11, + STATE(4452), 1, + aux_sym_attribute_repeat1, + ACTIONS(7526), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386705,19 +370200,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, - [174359] = 5, + [165173] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7951), 1, - anon_sym_LBRACK2, - STATE(4659), 1, + STATE(4426), 1, sym_comment, - ACTIONS(2294), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2290), 11, + ACTIONS(5626), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386728,47 +370218,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, - [174386] = 12, - ACTIONS(245), 1, + anon_sym_RBRACE, + anon_sym_COLON2, + [165196] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(3610), 1, - anon_sym_DOLLAR, - ACTIONS(4075), 1, - anon_sym_LPAREN2, - ACTIONS(7953), 1, - anon_sym_DOT, - ACTIONS(7957), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7959), 1, - aux_sym__immediate_decimal_token5, - STATE(4660), 1, + ACTIONS(7934), 1, + sym__space, + STATE(4427), 1, sym_comment, - STATE(5652), 1, - sym__immediate_decimal, - ACTIONS(7955), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5945), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1445), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [174427] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4953), 1, + ACTIONS(7932), 13, sym__newline, - ACTIONS(7961), 1, - anon_sym_catch, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4661), 1, - sym_comment, - ACTIONS(1286), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386780,14 +370240,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [174456] = 4, + anon_sym_RBRACE, + [165221] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1618), 1, + anon_sym_LPAREN2, + ACTIONS(7747), 1, + anon_sym_DASH2, + STATE(4428), 1, + sym_comment, + STATE(6876), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7745), 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, + [165250] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1881), 1, + ACTIONS(2320), 1, sym__space, - STATE(4662), 1, + STATE(4429), 1, sym_comment, - ACTIONS(1879), 13, + ACTIONS(2318), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386801,14 +370285,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174481] = 4, + [165275] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7255), 1, + anon_sym_DOT, + ACTIONS(7257), 1, + aux_sym__immediate_decimal_token2, + STATE(4430), 1, + sym_comment, + ACTIONS(1701), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(1703), 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, + [165304] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5163), 1, + ACTIONS(7436), 1, sym__space, - STATE(4663), 1, + STATE(4431), 1, sym_comment, - ACTIONS(5165), 13, + ACTIONS(7434), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386822,18 +370329,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174506] = 6, - ACTIONS(245), 1, + [165329] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7964), 1, - sym__newline, - ACTIONS(7969), 1, - anon_sym_catch, - STATE(4612), 1, - aux_sym_shebang_repeat1, - STATE(4664), 1, + ACTIONS(5143), 1, + sym__space, + STATE(4432), 1, sym_comment, - ACTIONS(7967), 11, + ACTIONS(5145), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386845,14 +370349,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [174535] = 3, + anon_sym_RBRACE, + [165354] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(4665), 1, - sym_comment, - ACTIONS(5155), 14, - ts_builtin_sym_end, + ACTIONS(7936), 1, sym__newline, + ACTIONS(7941), 1, + anon_sym_catch, + STATE(4340), 1, + aux_sym_shebang_repeat1, + STATE(4433), 1, + sym_comment, + ACTIONS(7939), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386863,16 +370372,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_else, - anon_sym_catch, - [174558] = 3, + anon_sym_RPAREN, + [165383] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4666), 1, + ACTIONS(7753), 1, + sym__space, + ACTIONS(7943), 1, + ts_builtin_sym_end, + STATE(4327), 1, + aux_sym_attribute_repeat1, + STATE(4434), 1, sym_comment, - ACTIONS(5665), 14, + ACTIONS(7611), 11, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -386883,23 +370396,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_RBRACE, - anon_sym_COLON2, - [174581] = 7, + [165412] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7971), 1, + STATE(4435), 1, + sym_comment, + ACTIONS(1701), 2, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1703), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - STATE(787), 1, - aux_sym__pipe_separator, - STATE(4667), 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, + anon_sym_LPAREN2, + [165437] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2324), 1, + sym__space, + STATE(4436), 1, sym_comment, - STATE(5183), 1, - aux_sym_shebang_repeat1, - ACTIONS(7974), 2, + ACTIONS(2322), 13, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2592), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -386909,18 +370436,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, - [174612] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [165462] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1581), 1, + ACTIONS(1618), 1, anon_sym_LPAREN2, - ACTIONS(7781), 1, + ACTIONS(2108), 1, anon_sym_DASH2, - STATE(4668), 1, + STATE(4437), 1, sym_comment, - STATE(7497), 1, + STATE(7374), 1, sym__expr_parenthesized_immediate, - ACTIONS(7779), 11, + ACTIONS(2110), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -386932,95 +370461,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [174641] = 6, + [165491] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4953), 1, - sym__newline, - ACTIONS(7976), 1, - anon_sym_else, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4669), 1, - sym_comment, - ACTIONS(1286), 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, - [174670] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1445), 1, - sym__space, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(2134), 1, - anon_sym_DOLLAR, - ACTIONS(7048), 1, + ACTIONS(1618), 1, anon_sym_LPAREN2, - ACTIONS(7979), 1, - anon_sym_DOT, - ACTIONS(7981), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7983), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7985), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7987), 1, - aux_sym__immediate_decimal_token5, - STATE(4670), 1, + ACTIONS(2112), 1, + anon_sym_DASH2, + STATE(4438), 1, sym_comment, - STATE(5629), 1, - sym__immediate_decimal, - ACTIONS(1431), 2, - sym__newline, - anon_sym_SEMI, - STATE(5828), 2, + STATE(7374), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - [174715] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2190), 1, - anon_sym_LPAREN2, - ACTIONS(2192), 1, - aux_sym__unquoted_in_record_token4, - STATE(4671), 1, - sym_comment, - ACTIONS(994), 6, + ACTIONS(2114), 11, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(998), 6, - anon_sym_EQ, - sym_identifier, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH2, - [174744] = 6, + [165520] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1447), 1, + ACTIONS(1477), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(1811), 1, + ACTIONS(2138), 1, anon_sym_DASH2, - ACTIONS(1813), 1, + ACTIONS(2140), 1, anon_sym_LPAREN2, - STATE(4672), 1, + STATE(4439), 1, sym_comment, - ACTIONS(1819), 11, + ACTIONS(2142), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387032,14 +370507,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [174773] = 4, + [165549] = 12, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(3550), 1, + anon_sym_DOLLAR, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(7945), 1, + anon_sym_DOT, + ACTIONS(7949), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7951), 1, + aux_sym__immediate_decimal_token5, + STATE(4440), 1, + sym_comment, + STATE(5423), 1, + sym__immediate_decimal, + ACTIONS(7947), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5560), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1445), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [165590] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1933), 1, + ACTIONS(2392), 1, sym__space, - STATE(4673), 1, + STATE(4441), 1, sym_comment, - ACTIONS(1931), 13, + ACTIONS(2390), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387053,35 +370557,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174798] = 4, + [165615] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2312), 1, - sym__space, - STATE(4674), 1, + STATE(4442), 1, sym_comment, - ACTIONS(2310), 13, + ACTIONS(2076), 7, + anon_sym_EQ, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token4, + ACTIONS(2078), 7, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - [174823] = 4, + anon_sym_COMMA, + anon_sym_LPAREN2, + [165640] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7991), 1, + ACTIONS(2266), 1, sym__space, - STATE(4675), 1, + STATE(4443), 1, sym_comment, - ACTIONS(7989), 13, + ACTIONS(2264), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387095,14 +370599,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174848] = 3, + [165665] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(4444), 1, + sym_comment, + ACTIONS(1797), 2, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1799), 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, + [165690] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(4676), 1, + ACTIONS(1445), 1, + sym__space, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(2014), 1, + anon_sym_DOLLAR, + ACTIONS(6982), 1, + anon_sym_LPAREN2, + ACTIONS(7953), 1, + anon_sym_DOT, + ACTIONS(7955), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7957), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7959), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7961), 1, + aux_sym__immediate_decimal_token5, + STATE(4445), 1, sym_comment, - ACTIONS(5680), 14, + STATE(5232), 1, + sym__immediate_decimal, + ACTIONS(1431), 2, sym__newline, + anon_sym_SEMI, + STATE(5581), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [165735] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2396), 1, sym__space, + STATE(4446), 1, + sym_comment, + ACTIONS(2394), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387113,16 +370670,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_COLON2, - [174871] = 3, - ACTIONS(3), 1, + [165760] = 6, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4677), 1, + ACTIONS(1618), 1, + anon_sym_LPAREN2, + ACTIONS(7677), 1, + anon_sym_DASH2, + STATE(4447), 1, sym_comment, - ACTIONS(5684), 14, + STATE(6876), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7675), 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, + [165789] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5048), 1, sym__space, + STATE(4448), 1, + sym_comment, + ACTIONS(5050), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387133,47 +370714,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_COLON2, - [174894] = 14, - ACTIONS(3), 1, + [165814] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3076), 1, - anon_sym_DASH_DASH, - ACTIONS(3078), 1, + ACTIONS(2144), 1, anon_sym_DASH2, - ACTIONS(3993), 1, - anon_sym_DOLLAR, - ACTIONS(7827), 1, - sym__newline, - ACTIONS(7829), 1, - sym__space, - ACTIONS(7831), 1, - anon_sym_LBRACE, - STATE(1755), 1, - sym_block, - STATE(1761), 1, - sym_val_closure, - STATE(4678), 1, + ACTIONS(2146), 1, + anon_sym_LPAREN2, + ACTIONS(2150), 1, + aux_sym__unquoted_in_record_token2, + STATE(4449), 1, sym_comment, - STATE(5697), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7541), 1, - sym__flag, - STATE(810), 2, - sym__blosure, - sym_val_variable, - STATE(4663), 2, - sym_short_flag, - sym_long_flag, - [174939] = 4, + ACTIONS(2148), 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, + [165843] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7995), 1, + ACTIONS(5060), 1, sym__space, - STATE(4679), 1, + STATE(4450), 1, sym_comment, - ACTIONS(7993), 13, + ACTIONS(5062), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387187,14 +370760,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174964] = 4, + [165868] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5167), 1, + ACTIONS(1869), 1, sym__space, - STATE(4680), 1, + STATE(4451), 1, sym_comment, - ACTIONS(5169), 13, + ACTIONS(1867), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387208,14 +370781,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [174989] = 4, + [165893] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5171), 1, + ACTIONS(7753), 1, sym__space, - STATE(4681), 1, + ACTIONS(7963), 1, + ts_builtin_sym_end, + STATE(4452), 1, sym_comment, - ACTIONS(5173), 13, + STATE(4454), 1, + aux_sym_attribute_repeat1, + ACTIONS(7685), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387227,20 +370804,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, - [175014] = 6, - ACTIONS(245), 1, + [165922] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7997), 1, - sym__newline, - ACTIONS(8002), 1, - anon_sym_catch, - STATE(4631), 1, - aux_sym_shebang_repeat1, - STATE(4682), 1, + ACTIONS(2276), 1, + sym__space, + STATE(4453), 1, sym_comment, - ACTIONS(8000), 11, + ACTIONS(2274), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387252,14 +370824,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [175043] = 4, + anon_sym_RBRACE, + [165947] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2455), 1, + ACTIONS(7965), 1, + ts_builtin_sym_end, + ACTIONS(7967), 1, sym__space, - STATE(4683), 1, + STATE(4454), 2, sym_comment, - ACTIONS(2453), 13, + aux_sym_attribute_repeat1, + ACTIONS(7695), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387271,20 +370847,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, - [175068] = 6, - ACTIONS(3), 1, + [165974] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7916), 1, + ACTIONS(4854), 1, sym__newline, - ACTIONS(7918), 1, - sym__space, - STATE(4648), 1, - aux_sym__command_parenthesized_repeat1, - STATE(4684), 1, + ACTIONS(7970), 1, + anon_sym_else, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4455), 1, sym_comment, - ACTIONS(8004), 11, + ACTIONS(1274), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387296,14 +370870,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [175097] = 3, + [166003] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4685), 1, + ACTIONS(1628), 1, + sym__space, + STATE(4456), 1, sym_comment, - ACTIONS(5688), 14, + ACTIONS(1616), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387314,16 +370889,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_COLON2, - [175120] = 4, + [166028] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7484), 1, + ACTIONS(2423), 1, sym__space, - STATE(4686), 1, + STATE(4457), 1, sym_comment, - ACTIONS(7482), 13, + ACTIONS(2421), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387337,14 +370912,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175145] = 4, + [166053] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1618), 1, + anon_sym_LPAREN2, + ACTIONS(2120), 1, + anon_sym_DASH2, + STATE(4458), 1, + sym_comment, + STATE(7374), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2122), 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, + [166082] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8008), 1, + ACTIONS(2368), 1, sym__space, - STATE(4687), 1, + STATE(4459), 1, sym_comment, - ACTIONS(8006), 13, + ACTIONS(2366), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387358,14 +370956,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175170] = 4, + [166107] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5175), 1, + ACTIONS(5147), 1, sym__space, - STATE(4688), 1, + STATE(4460), 1, sym_comment, - ACTIONS(5177), 13, + ACTIONS(5149), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387379,14 +370977,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175195] = 4, + [166132] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5179), 1, + ACTIONS(2284), 1, sym__space, - STATE(4689), 1, + STATE(4461), 1, sym_comment, - ACTIONS(5181), 13, + ACTIONS(2282), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387400,18 +370998,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175220] = 6, - ACTIONS(3), 1, + [166157] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7916), 1, + ACTIONS(1618), 1, + anon_sym_LPAREN2, + ACTIONS(2124), 1, + anon_sym_DASH2, + STATE(4462), 1, + sym_comment, + STATE(7374), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2126), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(7918), 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, + [166186] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5632), 1, sym__space, - STATE(4658), 1, - aux_sym__command_parenthesized_repeat1, - STATE(4690), 1, + STATE(4463), 1, sym_comment, - ACTIONS(8010), 11, + ACTIONS(5630), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -387423,16 +371041,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [175249] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [166211] = 7, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5195), 1, - sym__space, - STATE(4691), 1, - sym_comment, - ACTIONS(5197), 13, + ACTIONS(7708), 1, sym__newline, + STATE(752), 1, + aux_sym__pipe_separator, + STATE(4464), 1, + sym_comment, + STATE(4916), 1, + aux_sym_shebang_repeat1, + ACTIONS(7711), 2, + ts_builtin_sym_end, anon_sym_SEMI, + ACTIONS(2612), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -387442,16 +371066,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, - [175274] = 4, + [166242] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8014), 1, + ACTIONS(2328), 1, sym__space, - STATE(4692), 1, + STATE(4465), 1, sym_comment, - ACTIONS(8012), 13, + ACTIONS(2326), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387465,14 +371087,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175299] = 4, + [166267] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8018), 1, + ACTIONS(2332), 1, sym__space, - STATE(4693), 1, + STATE(4466), 1, sym_comment, - ACTIONS(8016), 13, + ACTIONS(2330), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387486,14 +371108,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175324] = 4, + [166292] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8022), 1, + ACTIONS(7975), 1, sym__space, - STATE(4694), 1, + STATE(4467), 1, sym_comment, - ACTIONS(8020), 13, + ACTIONS(7973), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387507,60 +371129,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175349] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1788), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2041), 1, - anon_sym_DASH2, - STATE(4695), 1, - sym_comment, - ACTIONS(2043), 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, - [175378] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1778), 1, - anon_sym_DASH2, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1788), 1, - aux_sym__unquoted_in_record_token2, - STATE(4696), 1, - sym_comment, - ACTIONS(1786), 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, - [175407] = 4, + [166317] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7619), 1, + ACTIONS(2411), 1, sym__space, - STATE(4697), 1, + STATE(4468), 1, sym_comment, - ACTIONS(7617), 13, + ACTIONS(2409), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387574,14 +371150,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175432] = 4, + [166342] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5199), 1, + ACTIONS(2336), 1, sym__space, - STATE(4698), 1, + STATE(4469), 1, sym_comment, - ACTIONS(5201), 13, + ACTIONS(2334), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387595,39 +371171,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175457] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(4699), 1, - sym_comment, - ACTIONS(8024), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(8026), 12, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [175482] = 6, + [166367] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2049), 1, + ACTIONS(7806), 1, + anon_sym_AT2, + ACTIONS(7979), 1, anon_sym_DASH2, - ACTIONS(2051), 1, - anon_sym_LPAREN2, - STATE(4700), 1, + STATE(4470), 1, sym_comment, - ACTIONS(2053), 11, + STATE(4852), 1, + sym_param_cmd, + ACTIONS(7977), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387639,18 +371194,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175511] = 6, + [166396] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1581), 1, - anon_sym_LPAREN2, - ACTIONS(2067), 1, + ACTIONS(7806), 1, + anon_sym_AT2, + ACTIONS(7979), 1, anon_sym_DASH2, - STATE(4701), 1, + STATE(4471), 1, sym_comment, - STATE(7742), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2069), 11, + STATE(4853), 1, + sym_param_cmd, + ACTIONS(7977), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387662,37 +371217,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175540] = 6, - ACTIONS(245), 1, + [166425] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7812), 1, - anon_sym_AT2, - ACTIONS(8030), 1, - anon_sym_DASH2, - STATE(4702), 1, + ACTIONS(1885), 1, + sym__space, + STATE(4472), 1, sym_comment, - STATE(5043), 1, - sym_param_cmd, - ACTIONS(8028), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1883), 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, - [175569] = 4, + anon_sym_RBRACE, + [166450] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2477), 1, + ACTIONS(2340), 1, sym__space, - STATE(4703), 1, + STATE(4473), 1, sym_comment, - ACTIONS(2475), 13, + ACTIONS(2338), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387706,14 +371259,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175594] = 4, + [166475] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1591), 1, + ACTIONS(2344), 1, sym__space, - STATE(4704), 1, + STATE(4474), 1, sym_comment, - ACTIONS(1579), 13, + ACTIONS(2342), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387727,18 +371280,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175619] = 6, + [166500] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1581), 1, - anon_sym_LPAREN2, - ACTIONS(2071), 1, + ACTIONS(1782), 1, anon_sym_DASH2, - STATE(4705), 1, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1792), 1, + aux_sym__unquoted_in_record_token2, + STATE(4475), 1, sym_comment, - STATE(7742), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2073), 11, + ACTIONS(1790), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387750,14 +371303,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175648] = 4, + [166529] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(994), 1, + ACTIONS(2262), 1, sym__space, - STATE(4706), 1, + STATE(4476), 1, sym_comment, - ACTIONS(998), 13, + ACTIONS(2260), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387771,42 +371324,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175673] = 4, - ACTIONS(245), 1, + [166554] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4707), 1, + ACTIONS(1865), 1, + sym__space, + STATE(4477), 1, sym_comment, - ACTIONS(8032), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(8034), 12, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [175698] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8036), 1, + ACTIONS(1863), 13, sym__newline, - STATE(787), 1, - aux_sym__pipe_separator, - STATE(4708), 1, - sym_comment, - STATE(5183), 1, - aux_sym_shebang_repeat1, - ACTIONS(8039), 2, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2592), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -387816,14 +371343,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, - [175729] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [166579] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2408), 1, + ACTIONS(2288), 1, sym__space, - STATE(4709), 1, + STATE(4478), 1, sym_comment, - ACTIONS(2406), 13, + ACTIONS(2286), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387837,14 +371366,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175754] = 4, + [166604] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2481), 1, + ACTIONS(7981), 1, + anon_sym_EQ2, + STATE(4479), 1, + sym_comment, + ACTIONS(4906), 2, + ts_builtin_sym_end, sym__space, - STATE(4710), 1, + ACTIONS(4908), 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, + [166631] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7985), 1, + sym__space, + STATE(4480), 1, sym_comment, - ACTIONS(2479), 13, + ACTIONS(7983), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387858,37 +371409,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175779] = 6, + [166656] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2059), 1, - anon_sym_DASH2, - ACTIONS(2061), 1, - anon_sym_LPAREN2, - ACTIONS(2065), 1, - aux_sym__unquoted_in_record_token2, - STATE(4711), 1, + ACTIONS(7987), 1, + anon_sym_DOT, + ACTIONS(7989), 1, + aux_sym__immediate_decimal_token2, + STATE(4481), 1, sym_comment, - ACTIONS(2063), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1499), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1501), 9, + ts_builtin_sym_end, 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_SEMI, + anon_sym_LBRACK, anon_sym_DASH_DASH, - [175808] = 4, - ACTIONS(245), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [166685] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8043), 1, - anon_sym_catch, - STATE(4712), 1, + ACTIONS(7993), 1, + sym__space, + STATE(4482), 1, sym_comment, - ACTIONS(8041), 13, + ACTIONS(7991), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387902,16 +371453,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [175833] = 4, - ACTIONS(3), 1, + [166710] = 7, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2424), 1, - sym__space, - STATE(4713), 1, - sym_comment, - ACTIONS(2422), 13, + ACTIONS(7995), 1, sym__newline, + STATE(756), 1, + aux_sym__pipe_separator, + STATE(4483), 1, + sym_comment, + STATE(4916), 1, + aux_sym_shebang_repeat1, + ACTIONS(7998), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2612), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -387921,20 +371477,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, - [175858] = 6, + [166741] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1581), 1, - anon_sym_LPAREN2, - ACTIONS(2075), 1, + ACTIONS(1447), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1805), 1, anon_sym_DASH2, - STATE(4714), 1, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + STATE(4484), 1, sym_comment, - STATE(7742), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2077), 11, + ACTIONS(1813), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387946,18 +371500,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175887] = 6, + [166770] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1581), 1, - anon_sym_LPAREN2, - ACTIONS(2079), 1, + ACTIONS(8002), 1, + anon_sym_QMARK, + ACTIONS(8004), 1, anon_sym_DASH2, - STATE(4715), 1, + STATE(4485), 1, sym_comment, - STATE(7742), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2081), 11, + ACTIONS(8000), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387969,16 +371521,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175916] = 4, + [166796] = 15, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7659), 1, + sym_identifier, + ACTIONS(7665), 1, + anon_sym_DOLLAR, + ACTIONS(7667), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7669), 1, + anon_sym_DASH_DASH, + ACTIONS(7671), 1, + anon_sym_DASH2, + ACTIONS(7700), 1, + anon_sym_PIPE, + STATE(3869), 1, + sym_param_long_flag, + STATE(3999), 1, + sym__param_name, + STATE(4251), 1, + aux_sym_parameter_parens_repeat1, + STATE(4486), 1, + sym_comment, + STATE(4882), 1, + sym_param_rest, + STATE(4883), 1, + sym_param_opt, + STATE(4884), 1, + sym_param_short_flag, + STATE(5337), 1, + sym_parameter, + [166842] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4716), 1, + STATE(4487), 1, sym_comment, - ACTIONS(5010), 3, + ACTIONS(5143), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(5012), 11, + ACTIONS(5145), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -387990,39 +371572,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, - [175941] = 4, + [166866] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2412), 1, - sym__space, - STATE(4717), 1, + STATE(4488), 1, sym_comment, - ACTIONS(2410), 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, - [175966] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7818), 1, - sym__space, - ACTIONS(8045), 1, + ACTIONS(5147), 2, ts_builtin_sym_end, - STATE(4654), 1, - aux_sym_attribute_repeat1, - STATE(4718), 1, - sym_comment, - ACTIONS(7663), 11, + sym__space, + ACTIONS(5149), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388034,14 +371592,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, - [175995] = 4, - ACTIONS(3), 1, + [166890] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2380), 1, - sym__space, - STATE(4719), 1, + ACTIONS(8006), 1, + anon_sym_catch, + STATE(4489), 1, sym_comment, - ACTIONS(2378), 13, + ACTIONS(7755), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388053,16 +371612,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, - [176020] = 4, + [166914] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2039), 1, - sym__space, - STATE(4720), 1, + STATE(4490), 1, sym_comment, - ACTIONS(2033), 13, + ACTIONS(5636), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5634), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388074,42 +371632,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, - [176045] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(4721), 1, - sym_comment, - ACTIONS(6987), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6993), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6991), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6989), 6, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [176074] = 5, + [166938] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8047), 1, - anon_sym_EQ2, - STATE(4722), 1, + STATE(4491), 1, sym_comment, - ACTIONS(5078), 2, + ACTIONS(5048), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5080), 11, + ACTIONS(5050), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388121,16 +371652,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, - [176101] = 4, + [166962] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4723), 1, + STATE(4492), 1, sym_comment, - ACTIONS(5032), 3, + ACTIONS(5060), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(5034), 11, + ACTIONS(5062), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388142,58 +371672,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [176126] = 6, + [166986] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1581), 1, - anon_sym_LPAREN2, - ACTIONS(7760), 1, + ACTIONS(7659), 1, + sym_identifier, + ACTIONS(7665), 1, + anon_sym_DOLLAR, + ACTIONS(7667), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7669), 1, + anon_sym_DASH_DASH, + ACTIONS(7671), 1, anon_sym_DASH2, - STATE(4724), 1, + ACTIONS(8008), 1, + anon_sym_RBRACK, + STATE(3869), 1, + sym_param_long_flag, + STATE(3999), 1, + sym__param_name, + STATE(4251), 1, + aux_sym_parameter_parens_repeat1, + STATE(4493), 1, sym_comment, - STATE(7497), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7758), 11, - anon_sym_EQ, + STATE(4882), 1, + sym_param_rest, + STATE(4883), 1, + sym_param_opt, + STATE(4884), 1, + sym_param_short_flag, + STATE(5337), 1, + sym_parameter, + [167032] = 15, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7659), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7665), 1, anon_sym_DOLLAR, + ACTIONS(7667), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7669), 1, anon_sym_DASH_DASH, - [176155] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1961), 1, - sym__space, - STATE(4725), 1, - sym_comment, - ACTIONS(1959), 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(7671), 1, + anon_sym_DASH2, + ACTIONS(8010), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - [176180] = 4, + STATE(3869), 1, + sym_param_long_flag, + STATE(3999), 1, + sym__param_name, + STATE(4251), 1, + aux_sym_parameter_parens_repeat1, + STATE(4494), 1, + sym_comment, + STATE(4882), 1, + sym_param_rest, + STATE(4883), 1, + sym_param_opt, + STATE(4884), 1, + sym_param_short_flag, + STATE(5337), 1, + sym_parameter, + [167078] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2372), 1, - sym__space, - STATE(4726), 1, + STATE(4495), 1, sym_comment, - ACTIONS(2370), 13, + ACTIONS(1628), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1616), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388205,16 +371754,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, - [176205] = 4, + [167102] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2298), 1, - sym__space, - STATE(4727), 1, + STATE(4496), 1, sym_comment, - ACTIONS(2296), 13, + ACTIONS(994), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(998), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388226,38 +371774,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, - [176230] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7342), 1, - anon_sym_DOT, - ACTIONS(7344), 1, - aux_sym__immediate_decimal_token2, - STATE(4728), 1, - sym_comment, - ACTIONS(1666), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(1668), 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, - [176259] = 3, - ACTIONS(245), 1, + [167126] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4729), 1, + STATE(4497), 1, sym_comment, - ACTIONS(7791), 14, + ACTIONS(2396), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2394), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388269,16 +371794,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_else, - anon_sym_catch, - [176282] = 4, + [167150] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2322), 1, - sym__space, - STATE(4730), 1, + STATE(4498), 1, sym_comment, - ACTIONS(2320), 13, + ACTIONS(2280), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2278), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388290,16 +371814,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, - [176307] = 4, + [167174] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2015), 1, - sym__space, - STATE(4731), 1, + STATE(4499), 1, sym_comment, - ACTIONS(2009), 13, + ACTIONS(2280), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2278), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388311,16 +371834,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, - [176332] = 4, + [167198] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2023), 1, - sym__space, - STATE(4732), 1, + STATE(4500), 1, sym_comment, - ACTIONS(2017), 13, + ACTIONS(1979), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1973), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388332,16 +371854,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, - [176357] = 4, + [167222] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2031), 1, - sym__space, - STATE(4733), 1, + STATE(4501), 1, sym_comment, - ACTIONS(2025), 13, + ACTIONS(2284), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2282), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388353,16 +371874,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, - [176382] = 4, + [167246] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5187), 1, - sym__space, - STATE(4734), 1, + STATE(4502), 1, sym_comment, - ACTIONS(5189), 13, + ACTIONS(2288), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2286), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388374,20 +371894,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, - anon_sym_RPAREN, - anon_sym_RBRACE, - [176407] = 6, - ACTIONS(245), 1, + [167270] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8049), 1, + ACTIONS(1445), 1, + sym__space, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(2014), 1, + anon_sym_DOLLAR, + ACTIONS(6982), 1, + anon_sym_LPAREN2, + ACTIONS(8012), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8014), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8016), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8018), 1, + aux_sym__immediate_decimal_token5, + STATE(4503), 1, + sym_comment, + STATE(5818), 1, + sym__immediate_decimal, + ACTIONS(1431), 2, sym__newline, - ACTIONS(8054), 1, - anon_sym_else, - STATE(4606), 1, - aux_sym_shebang_repeat1, - STATE(4735), 1, + anon_sym_SEMI, + STATE(4399), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [167312] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4504), 1, sym_comment, - ACTIONS(8052), 11, + ACTIONS(1869), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1867), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -388398,13 +371943,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, - [176436] = 3, - ACTIONS(245), 1, + [167336] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4736), 1, + STATE(4505), 1, sym_comment, - ACTIONS(8056), 13, + ACTIONS(2364), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2362), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388416,97 +371963,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, - [176458] = 15, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7696), 1, - sym_identifier, - ACTIONS(7702), 1, - anon_sym_DOLLAR, - ACTIONS(7704), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7706), 1, - anon_sym_DASH_DASH, - ACTIONS(7708), 1, - anon_sym_DASH2, - ACTIONS(8058), 1, - anon_sym_RBRACK, - STATE(4057), 1, - sym_param_long_flag, - STATE(4224), 1, - sym__param_name, - STATE(4484), 1, - aux_sym_parameter_parens_repeat1, - STATE(4737), 1, - sym_comment, - STATE(5014), 1, - sym_param_rest, - STATE(5016), 1, - sym_param_opt, - STATE(5021), 1, - sym_param_short_flag, - STATE(5582), 1, - sym_parameter, - [176504] = 15, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7696), 1, - sym_identifier, - ACTIONS(7702), 1, - anon_sym_DOLLAR, - ACTIONS(7704), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7706), 1, - anon_sym_DASH_DASH, - ACTIONS(7708), 1, - anon_sym_DASH2, - ACTIONS(8060), 1, - anon_sym_RPAREN, - STATE(4057), 1, - sym_param_long_flag, - STATE(4224), 1, - sym__param_name, - STATE(4484), 1, - aux_sym_parameter_parens_repeat1, - STATE(4738), 1, - sym_comment, - STATE(5014), 1, - sym_param_rest, - STATE(5016), 1, - sym_param_opt, - STATE(5021), 1, - sym_param_short_flag, - STATE(5582), 1, - sym_parameter, - [176550] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1579), 1, - anon_sym_DASH2, - ACTIONS(7288), 1, - aux_sym__unquoted_in_record_token2, - STATE(4739), 1, - sym_comment, - ACTIONS(1591), 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, - [176576] = 3, - ACTIONS(245), 1, + [167360] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4740), 1, + STATE(4506), 1, sym_comment, - ACTIONS(7863), 13, + ACTIONS(2411), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2409), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388518,178 +371983,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, - [176598] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2212), 1, - anon_sym_DASH2, - STATE(4741), 1, - sym_comment, - ACTIONS(2214), 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, - [176622] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8064), 1, - anon_sym_DASH2, - STATE(4742), 1, - sym_comment, - ACTIONS(8062), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [176646] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8068), 1, - anon_sym_DASH2, - STATE(4743), 1, - sym_comment, - ACTIONS(8066), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [176670] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8072), 1, - anon_sym_QMARK, - ACTIONS(8074), 1, - anon_sym_DASH2, - STATE(4744), 1, - sym_comment, - ACTIONS(8070), 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, - [176696] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8078), 1, - anon_sym_DASH2, - STATE(4745), 1, - sym_comment, - ACTIONS(8076), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [176720] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8082), 1, - anon_sym_DASH2, - STATE(4746), 1, - sym_comment, - ACTIONS(8080), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [176744] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8086), 1, - anon_sym_DASH2, - STATE(4747), 1, - sym_comment, - ACTIONS(8084), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [176768] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8090), 1, - anon_sym_DASH2, - STATE(4748), 1, - sym_comment, - ACTIONS(8088), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [176792] = 4, + [167384] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4749), 1, + STATE(4507), 1, sym_comment, - ACTIONS(7416), 2, + ACTIONS(2292), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7414), 11, + ACTIONS(2290), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388701,15 +372003,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, - [176816] = 4, + [167408] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4750), 1, + STATE(4508), 1, sym_comment, - ACTIONS(7995), 2, + ACTIONS(2296), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7993), 11, + ACTIONS(2294), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388721,35 +372023,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, - [176840] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8094), 1, - anon_sym_DASH2, - STATE(4751), 1, - sym_comment, - ACTIONS(8092), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [176864] = 4, + [167432] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4752), 1, + STATE(4509), 1, sym_comment, - ACTIONS(7484), 2, + ACTIONS(2300), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7482), 11, + ACTIONS(2298), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388761,15 +372043,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, - [176888] = 4, + [167456] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4753), 1, + STATE(4510), 1, sym_comment, - ACTIONS(2312), 2, + ACTIONS(1955), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2310), 11, + ACTIONS(1949), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388781,15 +372063,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, - [176912] = 4, + [167480] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4754), 1, + STATE(4511), 1, sym_comment, - ACTIONS(7991), 2, + ACTIONS(1963), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7989), 11, + ACTIONS(1957), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388801,15 +372083,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, - [176936] = 4, + [167504] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4755), 1, + STATE(4512), 1, sym_comment, - ACTIONS(8008), 2, + ACTIONS(1971), 2, ts_builtin_sym_end, sym__space, - ACTIONS(8006), 11, + ACTIONS(1965), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388821,15 +372103,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, - [176960] = 4, + [167528] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4756), 1, + STATE(4513), 1, sym_comment, - ACTIONS(2384), 2, + ACTIONS(5111), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2382), 11, + ACTIONS(5113), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388841,62 +372123,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, - [176984] = 14, + [167552] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1431), 1, - anon_sym_RBRACE, - ACTIONS(1445), 1, - sym__entry_separator, - ACTIONS(1447), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(3122), 1, - anon_sym_DOLLAR, - ACTIONS(8096), 1, - anon_sym_LPAREN2, - ACTIONS(8098), 1, - anon_sym_DOT, - ACTIONS(8100), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8102), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8104), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8106), 1, - aux_sym__immediate_decimal_token5, - STATE(4757), 1, - sym_comment, - STATE(5689), 1, - sym__immediate_decimal, - STATE(5785), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [177028] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8110), 1, - anon_sym_DASH2, - STATE(4758), 1, - sym_comment, - ACTIONS(8108), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [177052] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(4759), 1, + STATE(4514), 1, sym_comment, - ACTIONS(8112), 13, + ACTIONS(5115), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5117), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388908,17 +372143,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, - [177074] = 4, + [167576] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4760), 1, + STATE(4515), 1, sym_comment, - ACTIONS(8014), 2, + ACTIONS(2423), 2, ts_builtin_sym_end, sym__space, - ACTIONS(8012), 11, + ACTIONS(2421), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388930,12 +372163,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, - [177098] = 3, - ACTIONS(245), 1, + [167600] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4761), 1, + STATE(4516), 1, sym_comment, - ACTIONS(8114), 13, + ACTIONS(2376), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2374), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388947,17 +372183,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, - [177120] = 4, + [167624] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4762), 1, + STATE(4517), 1, sym_comment, - ACTIONS(8018), 2, + ACTIONS(2304), 2, ts_builtin_sym_end, sym__space, - ACTIONS(8016), 11, + ACTIONS(2302), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388969,40 +372203,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, - [177144] = 12, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(3610), 1, - anon_sym_DOLLAR, - ACTIONS(4075), 1, - anon_sym_LPAREN2, - ACTIONS(8116), 1, - anon_sym_DOT, - ACTIONS(8120), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8122), 1, - aux_sym__immediate_decimal_token5, - STATE(4763), 1, - sym_comment, - STATE(5762), 1, - sym__immediate_decimal, - ACTIONS(1445), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8118), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5945), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [177184] = 3, - ACTIONS(245), 1, + [167648] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4764), 1, + STATE(4518), 1, sym_comment, - ACTIONS(6959), 13, + ACTIONS(2308), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2306), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389014,14 +372223,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, - [177206] = 3, - ACTIONS(245), 1, + [167672] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4765), 1, + STATE(4519), 1, sym_comment, - ACTIONS(8124), 13, + ACTIONS(2312), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2310), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389033,14 +372243,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, - [177228] = 3, - ACTIONS(245), 1, + [167696] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4766), 1, + STATE(4520), 1, sym_comment, - ACTIONS(8126), 13, + ACTIONS(2427), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2425), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389052,17 +372263,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, - [177250] = 4, + [167720] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4767), 1, + STATE(4521), 1, sym_comment, - ACTIONS(5167), 2, + ACTIONS(5119), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5169), 11, + ACTIONS(5121), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389074,15 +372283,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, - [177274] = 4, + [167744] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4768), 1, + STATE(4522), 1, sym_comment, - ACTIONS(5171), 2, + ACTIONS(5123), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5173), 11, + ACTIONS(5125), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389094,627 +372303,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, - [177298] = 11, - ACTIONS(245), 1, + [167768] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3610), 1, + ACTIONS(1475), 1, + sym__space, + ACTIONS(1477), 1, + aux_sym_unquoted_token2, + ACTIONS(2014), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(6982), 1, anon_sym_LPAREN2, - ACTIONS(4077), 1, - anon_sym_DOT, - ACTIONS(7957), 1, + ACTIONS(8012), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8014), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8016), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7959), 1, + ACTIONS(8018), 1, aux_sym__immediate_decimal_token5, - STATE(4769), 1, + STATE(4523), 1, sym_comment, - STATE(5731), 1, + STATE(5656), 1, sym__immediate_decimal, - ACTIONS(7955), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5944), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1482), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [177336] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1839), 1, - anon_sym_DASH2, - ACTIONS(8128), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4451), 1, - sym_cell_path, - STATE(4770), 1, - sym_comment, - STATE(5051), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1841), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177368] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1941), 1, - anon_sym_DASH2, - ACTIONS(8128), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4385), 1, - sym_cell_path, - STATE(4771), 1, - sym_comment, - STATE(5051), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1943), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177400] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1927), 1, - anon_sym_DASH2, - ACTIONS(8128), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4336), 1, - sym_cell_path, - STATE(4772), 1, - sym_comment, - STATE(5051), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1929), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177432] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1959), 1, - anon_sym_DASH2, - ACTIONS(8128), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4301), 1, - sym_cell_path, - STATE(4773), 1, - sym_comment, - STATE(5051), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1961), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177464] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1829), 1, - anon_sym_DASH2, - ACTIONS(8128), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4352), 1, - sym_cell_path, - STATE(4774), 1, - sym_comment, - STATE(5051), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1831), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177496] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1835), 1, - anon_sym_DASH2, - ACTIONS(8128), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4366), 1, - sym_cell_path, - STATE(4775), 1, - sym_comment, - STATE(5051), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1837), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177528] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1847), 1, - anon_sym_DASH2, - ACTIONS(8128), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4389), 1, - sym_cell_path, - STATE(4776), 1, - sym_comment, - STATE(5051), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1849), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177560] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1851), 1, - anon_sym_DASH2, - ACTIONS(8128), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4393), 1, - sym_cell_path, - STATE(4777), 1, - sym_comment, - STATE(5051), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1853), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177592] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1859), 1, - anon_sym_DASH2, - ACTIONS(8128), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4397), 1, - sym_cell_path, - STATE(4778), 1, - sym_comment, - STATE(5051), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1861), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177624] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1863), 1, - anon_sym_DASH2, - ACTIONS(8128), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4404), 1, - sym_cell_path, - STATE(4779), 1, - sym_comment, - STATE(5051), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1865), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177656] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1875), 1, - anon_sym_DASH2, - ACTIONS(8128), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4405), 1, - sym_cell_path, - STATE(4780), 1, - sym_comment, - STATE(5051), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1877), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177688] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1879), 1, - anon_sym_DASH2, - ACTIONS(8128), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4434), 1, - sym_cell_path, - STATE(4781), 1, - sym_comment, - STATE(5051), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1881), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177720] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1895), 1, - anon_sym_DASH2, - ACTIONS(8128), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4435), 1, - sym_cell_path, - STATE(4782), 1, - sym_comment, - STATE(5051), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1897), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177752] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1913), 1, - anon_sym_DASH2, - ACTIONS(8128), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4436), 1, - sym_cell_path, - STATE(4783), 1, - sym_comment, - STATE(5051), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1915), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177784] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1945), 1, - anon_sym_DASH2, - ACTIONS(8128), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4437), 1, - sym_cell_path, - STATE(4784), 1, - sym_comment, - STATE(5051), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1947), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177816] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1843), 1, - anon_sym_DASH2, - ACTIONS(8128), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4438), 1, - sym_cell_path, - STATE(4785), 1, - sym_comment, - STATE(5051), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1845), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177848] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1855), 1, - anon_sym_DASH2, - ACTIONS(8128), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4440), 1, - sym_cell_path, - STATE(4786), 1, - sym_comment, - STATE(5051), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1857), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177880] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1883), 1, - anon_sym_DASH2, - ACTIONS(8128), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4445), 1, - sym_cell_path, - STATE(4787), 1, - sym_comment, - STATE(5051), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1885), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177912] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1891), 1, - anon_sym_DASH2, - ACTIONS(8128), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4446), 1, - sym_cell_path, - STATE(4788), 1, - sym_comment, - STATE(5051), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1893), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177944] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1923), 1, - anon_sym_DASH2, - ACTIONS(8128), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4448), 1, - sym_cell_path, - STATE(4789), 1, - sym_comment, - STATE(5051), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1925), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [177976] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1931), 1, - anon_sym_DASH2, - ACTIONS(8128), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4456), 1, - sym_cell_path, - STATE(4790), 1, - sym_comment, - STATE(5051), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1933), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [178008] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1935), 1, - anon_sym_DASH2, - ACTIONS(8128), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4457), 1, - sym_cell_path, - STATE(4791), 1, - sym_comment, - STATE(5051), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1937), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [178040] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8132), 1, - anon_sym_DASH2, - STATE(4792), 1, - sym_comment, - ACTIONS(8130), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [178064] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8136), 1, - anon_sym_DASH2, - STATE(4793), 1, - sym_comment, - ACTIONS(8134), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [178088] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8140), 1, - anon_sym_DASH2, - STATE(4794), 1, - sym_comment, - ACTIONS(8138), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [178112] = 3, - ACTIONS(245), 1, + ACTIONS(1473), 2, + sym__newline, + anon_sym_SEMI, + STATE(4474), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [167810] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4795), 1, + STATE(4524), 1, sym_comment, - ACTIONS(8142), 13, + ACTIONS(1835), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1833), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389726,34 +372352,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, - [178134] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8146), 1, - anon_sym_DASH2, - STATE(4796), 1, - sym_comment, - ACTIONS(8144), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [178158] = 3, - ACTIONS(245), 1, + [167834] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4797), 1, + STATE(4525), 1, sym_comment, - ACTIONS(8148), 13, + ACTIONS(2320), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2318), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389765,38 +372372,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, - [178180] = 5, - ACTIONS(245), 1, + [167858] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7871), 1, - aux_sym__immediate_decimal_token2, - STATE(4798), 1, + STATE(4526), 1, sym_comment, - ACTIONS(1492), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1494), 9, + ACTIONS(2324), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2322), 11, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [178206] = 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, + [167882] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4799), 1, + STATE(4527), 1, sym_comment, - ACTIONS(5175), 2, + ACTIONS(2328), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5177), 11, + ACTIONS(2326), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389808,15 +372412,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, - [178230] = 4, + [167906] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4800), 1, + STATE(4528), 1, sym_comment, - ACTIONS(5179), 2, + ACTIONS(2332), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5181), 11, + ACTIONS(2330), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389828,75 +372432,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, - [178254] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8152), 1, - anon_sym_DASH2, - STATE(4801), 1, - sym_comment, - ACTIONS(8150), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [178278] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8156), 1, - anon_sym_DASH2, - STATE(4802), 1, - sym_comment, - ACTIONS(8154), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [178302] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8160), 1, - anon_sym_DASH2, - STATE(4803), 1, - sym_comment, - ACTIONS(8158), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [178326] = 4, + [167930] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4804), 1, + STATE(4529), 1, sym_comment, - ACTIONS(5659), 2, + ACTIONS(2336), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5657), 11, + ACTIONS(2334), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389908,153 +372452,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [178350] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8164), 1, - anon_sym_DASH2, - STATE(4805), 1, - sym_comment, - ACTIONS(8162), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [178374] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8168), 1, - anon_sym_DASH2, - STATE(4806), 1, - sym_comment, - ACTIONS(8166), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [178398] = 5, - ACTIONS(245), 1, + [167954] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8170), 1, - aux_sym__immediate_decimal_token2, - STATE(4807), 1, + STATE(4530), 1, sym_comment, - ACTIONS(1538), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1540), 9, + ACTIONS(2340), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2338), 11, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [178424] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8174), 1, - anon_sym_DASH2, - STATE(4808), 1, - sym_comment, - ACTIONS(8172), 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, - [178448] = 4, - ACTIONS(245), 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, + [167978] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8178), 1, - anon_sym_DASH2, - STATE(4809), 1, + STATE(4531), 1, sym_comment, - ACTIONS(8176), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2344), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2342), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [178472] = 4, - ACTIONS(245), 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, + [168002] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8182), 1, - anon_sym_DASH2, - STATE(4810), 1, + STATE(4532), 1, sym_comment, - ACTIONS(8180), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2262), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2260), 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, - [178496] = 4, - ACTIONS(245), 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, + [168026] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4811), 1, + STATE(4533), 1, sym_comment, - ACTIONS(1492), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1494), 10, + ACTIONS(1865), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1863), 11, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [178520] = 3, - ACTIONS(245), 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, + [168050] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4812), 1, + STATE(4534), 1, sym_comment, - ACTIONS(8184), 13, + ACTIONS(1873), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1871), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390066,177 +372552,115 @@ static const uint16_t ts_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, - [178542] = 4, - ACTIONS(245), 1, + [168074] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4813), 1, + STATE(4535), 1, sym_comment, - ACTIONS(1484), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1486), 10, + ACTIONS(2266), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2264), 11, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [178566] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7898), 1, - anon_sym_DASH2, - STATE(4814), 1, - sym_comment, - ACTIONS(7894), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [178590] = 4, - ACTIONS(245), 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, + [168098] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8188), 1, - anon_sym_DASH2, - STATE(4815), 1, + STATE(4536), 1, sym_comment, - ACTIONS(8186), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(1831), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1829), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [178614] = 4, - ACTIONS(245), 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, + [168122] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4816), 1, + STATE(4537), 1, sym_comment, - ACTIONS(1538), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1540), 10, + ACTIONS(2272), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2270), 11, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [178638] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8192), 1, - anon_sym_DASH2, - STATE(4817), 1, - sym_comment, - ACTIONS(8190), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [178662] = 4, - ACTIONS(245), 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, + [168146] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4818), 1, + STATE(4538), 1, sym_comment, - ACTIONS(1715), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1717), 10, + ACTIONS(2276), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2274), 11, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [178686] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8196), 1, - anon_sym_DASH2, - STATE(4819), 1, - sym_comment, - ACTIONS(8194), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [178710] = 4, - ACTIONS(245), 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, + [168170] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8200), 1, - anon_sym_DASH2, - STATE(4820), 1, + STATE(4539), 1, sym_comment, - ACTIONS(8198), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2372), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2370), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [178734] = 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, + [168194] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4821), 1, + STATE(4540), 1, sym_comment, - ACTIONS(1903), 2, + ACTIONS(2380), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1901), 11, + ACTIONS(2378), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390248,59 +372672,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, - [178758] = 11, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - ACTIONS(3610), 1, - anon_sym_DOLLAR, - ACTIONS(4075), 1, - anon_sym_LPAREN2, - ACTIONS(8204), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8206), 1, - aux_sym__immediate_decimal_token5, - STATE(4822), 1, - sym_comment, - STATE(6376), 1, - sym__immediate_decimal, - ACTIONS(8202), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1824), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1468), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [178796] = 4, - ACTIONS(245), 1, + [168218] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8210), 1, - anon_sym_DASH2, - STATE(4823), 1, + STATE(4541), 1, sym_comment, - ACTIONS(8208), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2384), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2382), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [178820] = 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, + [168242] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(4824), 1, + STATE(4542), 1, sym_comment, - ACTIONS(8212), 13, + ACTIONS(8020), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390314,115 +372711,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178842] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2216), 1, - anon_sym_DASH2, - STATE(4825), 1, - sym_comment, - ACTIONS(2218), 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, - [178866] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8216), 1, - anon_sym_DASH2, - STATE(4826), 1, - sym_comment, - ACTIONS(8214), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [178890] = 4, + [168264] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8220), 1, - anon_sym_DASH2, - STATE(4827), 1, + STATE(4543), 1, sym_comment, - ACTIONS(8218), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8022), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [178914] = 4, - ACTIONS(245), 1, + anon_sym_RBRACE, + [168286] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8224), 1, - anon_sym_DASH2, - STATE(4828), 1, + STATE(4544), 1, sym_comment, - ACTIONS(8222), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7934), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7932), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [178938] = 4, - ACTIONS(245), 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, + [168310] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8228), 1, - anon_sym_DASH2, - STATE(4829), 1, + STATE(4545), 1, sym_comment, - ACTIONS(8226), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7436), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7434), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [178962] = 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, + [168334] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4830), 1, + STATE(4546), 1, sym_comment, - ACTIONS(8022), 2, + ACTIONS(7975), 2, ts_builtin_sym_end, sym__space, - ACTIONS(8020), 11, + ACTIONS(7973), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390434,15 +372790,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, - [178986] = 4, + [168358] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4831), 1, + STATE(4547), 1, sym_comment, - ACTIONS(7619), 2, + ACTIONS(7869), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7617), 11, + ACTIONS(7867), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390454,14 +372810,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, - [179010] = 4, - ACTIONS(245), 1, + [168382] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4832), 1, + STATE(4548), 1, sym_comment, - ACTIONS(8230), 12, + ACTIONS(7882), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7880), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390473,75 +372830,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_RPAREN, - [179034] = 4, - ACTIONS(245), 1, + [168406] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8234), 1, - anon_sym_DASH2, - STATE(4833), 1, + STATE(4549), 1, sym_comment, - ACTIONS(8232), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7993), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7991), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [179058] = 4, - ACTIONS(245), 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, + [168430] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8238), 1, - anon_sym_DASH2, - STATE(4834), 1, + STATE(4550), 1, sym_comment, - ACTIONS(8236), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7513), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7511), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [179082] = 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, + [168454] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8242), 1, - anon_sym_DASH2, - STATE(4835), 1, + STATE(4551), 1, sym_comment, - ACTIONS(8240), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8024), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [179106] = 4, + anon_sym_RBRACE, + [168476] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(4836), 1, + STATE(4552), 1, sym_comment, - STATE(4965), 1, - aux_sym_shebang_repeat1, - ACTIONS(8244), 12, + ACTIONS(8026), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390554,143 +372907,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [179130] = 4, + anon_sym_RBRACE, + [168498] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8248), 1, - anon_sym_DASH2, - STATE(4837), 1, + STATE(4553), 1, sym_comment, - ACTIONS(8246), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(6927), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [179154] = 15, - ACTIONS(245), 1, + anon_sym_RBRACE, + [168520] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7696), 1, - sym_identifier, - ACTIONS(7702), 1, + ACTIONS(1489), 1, + sym__space, + ACTIONS(2014), 1, anon_sym_DOLLAR, - ACTIONS(7704), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7706), 1, - anon_sym_DASH_DASH, - ACTIONS(7708), 1, - anon_sym_DASH2, - ACTIONS(7754), 1, - anon_sym_PIPE, - STATE(4057), 1, - sym_param_long_flag, - STATE(4224), 1, - sym__param_name, - STATE(4484), 1, - aux_sym_parameter_parens_repeat1, - STATE(4838), 1, - sym_comment, - STATE(5014), 1, - sym_param_rest, - STATE(5016), 1, - sym_param_opt, - STATE(5021), 1, - sym_param_short_flag, - STATE(5582), 1, - sym_parameter, - [179200] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8252), 1, - anon_sym_DASH2, - STATE(4839), 1, + ACTIONS(6982), 1, + anon_sym_LPAREN2, + ACTIONS(7040), 1, + anon_sym_DOT, + ACTIONS(7955), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7957), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7959), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7961), 1, + aux_sym__immediate_decimal_token5, + STATE(4554), 1, sym_comment, - ACTIONS(8250), 12, - anon_sym_EQ, - sym_identifier, + STATE(5569), 1, + sym__immediate_decimal, + ACTIONS(1479), 2, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [179224] = 4, - ACTIONS(245), 1, + anon_sym_SEMI, + STATE(5567), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [168562] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8256), 1, - anon_sym_DASH2, - STATE(4840), 1, + STATE(4555), 1, sym_comment, - ACTIONS(8254), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(1885), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1883), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [179248] = 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, + [168586] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8260), 1, - anon_sym_DASH2, - STATE(4841), 1, + ACTIONS(7989), 1, + aux_sym__immediate_decimal_token2, + STATE(4556), 1, sym_comment, - ACTIONS(8258), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [179272] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8264), 1, + ACTIONS(1499), 3, anon_sym_DASH2, - STATE(4842), 1, - sym_comment, - ACTIONS(8262), 12, - anon_sym_EQ, - sym_identifier, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1501), 9, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DASH_DASH, - [179296] = 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [168612] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4843), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4557), 1, sym_comment, - ACTIONS(8266), 13, + ACTIONS(8028), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390703,94 +373017,113 @@ 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, - [179318] = 3, + [168636] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(4844), 1, + ACTIONS(8030), 1, + aux_sym__immediate_decimal_token2, + STATE(4558), 1, sym_comment, - ACTIONS(8268), 13, + ACTIONS(1579), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1581), 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_LBRACK, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [168662] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(4559), 1, + sym_comment, + ACTIONS(1499), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1501), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [179340] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [168686] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8272), 1, - anon_sym_DASH2, - STATE(4845), 1, + STATE(4560), 1, sym_comment, - ACTIONS(8270), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(1491), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1493), 10, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [179364] = 4, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [168710] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8276), 1, - anon_sym_DASH2, - STATE(4846), 1, + STATE(4561), 1, sym_comment, - ACTIONS(8274), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(1579), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1581), 10, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [179388] = 4, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [168734] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8280), 1, - anon_sym_DASH2, - STATE(4847), 1, + STATE(4562), 1, sym_comment, - ACTIONS(8278), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(1678), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1680), 10, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_DASH_DASH, - [179412] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [168758] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8284), 1, - sym__space, - STATE(4848), 1, + STATE(4563), 1, sym_comment, - ACTIONS(8282), 12, + ACTIONS(8032), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390803,35 +373136,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [179436] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8288), 1, - anon_sym_DASH2, - STATE(4849), 1, - sym_comment, - ACTIONS(8286), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [179460] = 4, + anon_sym_RBRACE, + [168780] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4850), 1, + STATE(4564), 1, sym_comment, - ACTIONS(1591), 2, + ACTIONS(2392), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1579), 11, + ACTIONS(2390), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390843,15 +373157,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, - [179484] = 4, + [168804] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4851), 1, + STATE(4565), 1, sym_comment, - ACTIONS(994), 2, + ACTIONS(5628), 2, ts_builtin_sym_end, sym__space, - ACTIONS(998), 11, + ACTIONS(5626), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390863,14 +373177,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, - [179508] = 4, + [168828] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8292), 1, - anon_sym_else, - STATE(4852), 1, + STATE(4566), 1, sym_comment, - ACTIONS(8290), 12, + ACTIONS(8034), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390882,83 +373194,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_RBRACE, - [179532] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8296), 1, - anon_sym_DASH2, - STATE(4853), 1, - sym_comment, - ACTIONS(8294), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [179556] = 11, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(3610), 1, - anon_sym_DOLLAR, - ACTIONS(4075), 1, - anon_sym_LPAREN2, - ACTIONS(8204), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8206), 1, - aux_sym__immediate_decimal_token5, - STATE(4854), 1, - sym_comment, - STATE(6282), 1, - sym__immediate_decimal, - ACTIONS(8202), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1804), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1445), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [179594] = 4, + anon_sym_RBRACE, + [168850] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8300), 1, - anon_sym_DASH2, - STATE(4855), 1, + STATE(4567), 1, sym_comment, - ACTIONS(8298), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(6903), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [179618] = 4, + anon_sym_RBRACE, + [168872] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4856), 1, + STATE(4568), 1, sym_comment, - ACTIONS(2408), 2, + ACTIONS(5658), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2406), 11, + ACTIONS(5656), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390970,15 +373235,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, - [179642] = 4, + [168896] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4857), 1, + STATE(4569), 1, sym_comment, - ACTIONS(2471), 2, + ACTIONS(5632), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2469), 11, + ACTIONS(5630), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -390990,15 +373255,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [179666] = 4, + [168920] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(4858), 1, + ACTIONS(1489), 1, + sym__entry_separator, + ACTIONS(3048), 1, + anon_sym_DOLLAR, + ACTIONS(8036), 1, + anon_sym_LPAREN2, + ACTIONS(8038), 1, + anon_sym_DOT, + ACTIONS(8040), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8042), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8044), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8046), 1, + aux_sym__immediate_decimal_token5, + STATE(4570), 1, sym_comment, - ACTIONS(2471), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2469), 11, + STATE(5632), 1, + sym__immediate_decimal, + ACTIONS(1479), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(5630), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [168962] = 15, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7659), 1, + sym_identifier, + ACTIONS(7665), 1, + anon_sym_DOLLAR, + ACTIONS(7667), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7669), 1, + anon_sym_DASH_DASH, + ACTIONS(7671), 1, + anon_sym_DASH2, + ACTIONS(7704), 1, + anon_sym_RBRACK, + STATE(3869), 1, + sym_param_long_flag, + STATE(3999), 1, + sym__param_name, + STATE(4251), 1, + aux_sym_parameter_parens_repeat1, + STATE(4571), 1, + sym_comment, + STATE(4882), 1, + sym_param_rest, + STATE(4883), 1, + sym_param_opt, + STATE(4884), 1, + sym_param_short_flag, + STATE(5337), 1, + sym_parameter, + [169008] = 15, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7659), 1, + sym_identifier, + ACTIONS(7665), 1, + anon_sym_DOLLAR, + ACTIONS(7667), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7669), 1, + anon_sym_DASH_DASH, + ACTIONS(7671), 1, + anon_sym_DASH2, + ACTIONS(7713), 1, + anon_sym_RPAREN, + STATE(3869), 1, + sym_param_long_flag, + STATE(3999), 1, + sym__param_name, + STATE(4251), 1, + aux_sym_parameter_parens_repeat1, + STATE(4572), 1, + sym_comment, + STATE(4882), 1, + sym_param_rest, + STATE(4883), 1, + sym_param_opt, + STATE(4884), 1, + sym_param_short_flag, + STATE(5337), 1, + sym_parameter, + [169054] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(8050), 1, + anon_sym_else, + STATE(4573), 1, + sym_comment, + ACTIONS(8048), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391010,35 +373365,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, - [179690] = 4, + anon_sym_RBRACE, + [169078] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8304), 1, - anon_sym_DASH2, - STATE(4859), 1, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(3550), 1, + anon_sym_DOLLAR, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(8054), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8056), 1, + aux_sym__immediate_decimal_token5, + STATE(4574), 1, sym_comment, - ACTIONS(8302), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(6254), 1, + sym__immediate_decimal, + ACTIONS(8052), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1773), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1445), 3, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [179714] = 4, - ACTIONS(3), 1, + anon_sym_if, + anon_sym_EQ_GT, + [169116] = 3, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4860), 1, + STATE(4575), 1, sym_comment, - ACTIONS(5682), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5680), 11, + ACTIONS(8058), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391050,15 +373410,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, - [179738] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [169138] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(4861), 1, + ACTIONS(1431), 1, + anon_sym_RBRACE, + ACTIONS(1445), 1, + sym__entry_separator, + ACTIONS(1447), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(3048), 1, + anon_sym_DOLLAR, + ACTIONS(8036), 1, + anon_sym_LPAREN2, + ACTIONS(8060), 1, + anon_sym_DOT, + ACTIONS(8062), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8064), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8066), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8068), 1, + aux_sym__immediate_decimal_token5, + STATE(4576), 1, sym_comment, - ACTIONS(2412), 2, + STATE(5412), 1, + sym__immediate_decimal, + STATE(5636), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [169182] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4577), 1, + sym_comment, + ACTIONS(1877), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2410), 11, + ACTIONS(1875), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391070,15 +373462,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, - [179762] = 4, + [169206] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4862), 1, + STATE(4578), 1, sym_comment, - ACTIONS(2039), 2, + ACTIONS(2360), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2033), 11, + ACTIONS(2358), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391090,15 +373482,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, - [179786] = 4, + [169230] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4863), 1, + STATE(4579), 1, sym_comment, - ACTIONS(2477), 2, + ACTIONS(7380), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2475), 11, + ACTIONS(7378), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391110,15 +373502,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, - [179810] = 4, - ACTIONS(3), 1, + [169254] = 3, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4864), 1, + STATE(4580), 1, sym_comment, - ACTIONS(2481), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2479), 11, + ACTIONS(8070), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391130,32 +373519,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, - [179834] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [169276] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8308), 1, + ACTIONS(7659), 1, + sym_identifier, + ACTIONS(7665), 1, + anon_sym_DOLLAR, + ACTIONS(7667), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7669), 1, + anon_sym_DASH_DASH, + ACTIONS(7671), 1, anon_sym_DASH2, - STATE(4865), 1, + ACTIONS(7717), 1, + anon_sym_RBRACK, + STATE(3869), 1, + sym_param_long_flag, + STATE(3999), 1, + sym__param_name, + STATE(4251), 1, + aux_sym_parameter_parens_repeat1, + STATE(4581), 1, sym_comment, - ACTIONS(8306), 12, - anon_sym_EQ, + STATE(4882), 1, + sym_param_rest, + STATE(4883), 1, + sym_param_opt, + STATE(4884), 1, + sym_param_short_flag, + STATE(5337), 1, + sym_parameter, + [169322] = 15, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7659), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7665), 1, anon_sym_DOLLAR, - anon_sym_AT2, + ACTIONS(7667), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7669), 1, anon_sym_DASH_DASH, - [179858] = 3, + ACTIONS(7671), 1, + anon_sym_DASH2, + ACTIONS(7721), 1, + anon_sym_RPAREN, + STATE(3869), 1, + sym_param_long_flag, + STATE(3999), 1, + sym__param_name, + STATE(4251), 1, + aux_sym_parameter_parens_repeat1, + STATE(4582), 1, + sym_comment, + STATE(4882), 1, + sym_param_rest, + STATE(4883), 1, + sym_param_opt, + STATE(4884), 1, + sym_param_short_flag, + STATE(5337), 1, + sym_parameter, + [169368] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(4866), 1, + STATE(4583), 1, sym_comment, - ACTIONS(6965), 13, + ACTIONS(8072), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391169,15 +373602,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [179880] = 4, - ACTIONS(3), 1, + [169390] = 5, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4867), 1, + ACTIONS(1616), 1, + anon_sym_DASH2, + ACTIONS(7228), 1, + aux_sym__unquoted_in_record_token2, + STATE(4584), 1, sym_comment, - ACTIONS(5686), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5684), 11, + ACTIONS(1628), 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, + [169416] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(2244), 1, + anon_sym_DASH2, + STATE(4585), 1, + sym_comment, + ACTIONS(2246), 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, + [169440] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(4586), 1, + sym_comment, + ACTIONS(8074), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391189,14 +373660,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, - [179904] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [169462] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8312), 1, + ACTIONS(8078), 1, anon_sym_DASH2, - STATE(4868), 1, + STATE(4587), 1, sym_comment, - ACTIONS(8310), 12, + ACTIONS(8076), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -391206,18 +373679,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT2, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [179928] = 4, - ACTIONS(3), 1, + [169486] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4869), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4588), 1, sym_comment, - ACTIONS(7863), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7861), 11, + ACTIONS(8080), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391229,119 +373701,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [179952] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1445), 1, - sym__space, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(2134), 1, - anon_sym_DOLLAR, - ACTIONS(7048), 1, - anon_sym_LPAREN2, - ACTIONS(8314), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8316), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8318), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8320), 1, - aux_sym__immediate_decimal_token5, - STATE(4870), 1, - sym_comment, - STATE(6042), 1, - sym__immediate_decimal, - ACTIONS(1431), 2, - sym__newline, - anon_sym_SEMI, - STATE(4733), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [179994] = 8, + anon_sym_RPAREN, + [169510] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(925), 1, - anon_sym_DASH2, - ACTIONS(8128), 1, - anon_sym_DOT2, - STATE(3892), 1, - sym_cell_path, - STATE(4018), 1, - sym_path, - STATE(4871), 1, - sym_comment, - STATE(5051), 1, - aux_sym_cell_path_repeat1, - ACTIONS(927), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, + ACTIONS(7659), 1, + sym_identifier, + ACTIONS(7665), 1, anon_sym_DOLLAR, + ACTIONS(7667), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7669), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [180026] = 15, + ACTIONS(7671), 1, + anon_sym_DASH2, + ACTIONS(8082), 1, + anon_sym_RBRACK, + STATE(3869), 1, + sym_param_long_flag, + STATE(3999), 1, + sym__param_name, + STATE(4251), 1, + aux_sym_parameter_parens_repeat1, + STATE(4589), 1, + sym_comment, + STATE(4882), 1, + sym_param_rest, + STATE(4883), 1, + sym_param_opt, + STATE(4884), 1, + sym_param_short_flag, + STATE(5337), 1, + sym_parameter, + [169556] = 15, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7696), 1, + ACTIONS(7659), 1, sym_identifier, - ACTIONS(7702), 1, + ACTIONS(7665), 1, anon_sym_DOLLAR, - ACTIONS(7704), 1, + ACTIONS(7667), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7706), 1, + ACTIONS(7669), 1, anon_sym_DASH_DASH, - ACTIONS(7708), 1, + ACTIONS(7671), 1, anon_sym_DASH2, - ACTIONS(8322), 1, - anon_sym_PIPE, - STATE(4057), 1, + ACTIONS(8084), 1, + anon_sym_RPAREN, + STATE(3869), 1, sym_param_long_flag, - STATE(4224), 1, + STATE(3999), 1, sym__param_name, - STATE(4484), 1, + STATE(4251), 1, aux_sym_parameter_parens_repeat1, - STATE(4872), 1, + STATE(4590), 1, sym_comment, - STATE(5014), 1, + STATE(4882), 1, sym_param_rest, - STATE(5016), 1, + STATE(4883), 1, sym_param_opt, - STATE(5021), 1, + STATE(4884), 1, sym_param_short_flag, - STATE(5582), 1, + STATE(5337), 1, sym_parameter, - [180072] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4873), 1, - sym_comment, - ACTIONS(1961), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1959), 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, - [180096] = 4, - ACTIONS(3), 1, + [169602] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4874), 1, + STATE(4557), 1, + aux_sym_shebang_repeat1, + STATE(4591), 1, sym_comment, - ACTIONS(2372), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2370), 11, + ACTIONS(8086), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391353,7 +373783,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, - [180120] = 14, + anon_sym_RPAREN, + [169626] = 14, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1431), 1, @@ -391362,36 +373793,33 @@ static const uint16_t ts_small_parse_table[] = { sym__entry_separator, ACTIONS(1447), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(3122), 1, + ACTIONS(3048), 1, anon_sym_DOLLAR, - ACTIONS(8096), 1, + ACTIONS(8036), 1, anon_sym_LPAREN2, - ACTIONS(8324), 1, - anon_sym_DOT, - ACTIONS(8326), 1, + ACTIONS(8040), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8328), 1, + ACTIONS(8042), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8330), 1, + ACTIONS(8044), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8332), 1, + ACTIONS(8046), 1, aux_sym__immediate_decimal_token5, - STATE(4875), 1, + ACTIONS(8088), 1, + anon_sym_DOT, + STATE(4592), 1, sym_comment, - STATE(5694), 1, + STATE(5417), 1, sym__immediate_decimal, - STATE(5785), 2, + STATE(5636), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [180164] = 4, - ACTIONS(3), 1, + [169670] = 3, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4876), 1, + STATE(4593), 1, sym_comment, - ACTIONS(2416), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2414), 11, + ACTIONS(7791), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391403,46 +373831,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, - [180188] = 15, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7696), 1, - sym_identifier, - ACTIONS(7702), 1, - anon_sym_DOLLAR, - ACTIONS(7704), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7706), 1, - anon_sym_DASH_DASH, - ACTIONS(7708), 1, - anon_sym_DASH2, - ACTIONS(8334), 1, - anon_sym_RBRACK, - STATE(4057), 1, - sym_param_long_flag, - STATE(4224), 1, - sym__param_name, - STATE(4484), 1, - aux_sym_parameter_parens_repeat1, - STATE(4877), 1, - sym_comment, - STATE(5014), 1, - sym_param_rest, - STATE(5016), 1, - sym_param_opt, - STATE(5021), 1, - sym_param_short_flag, - STATE(5582), 1, - sym_parameter, - [180234] = 4, - ACTIONS(245), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [169692] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8336), 1, - anon_sym_catch, - STATE(4878), 1, + ACTIONS(8092), 1, + sym__space, + STATE(4594), 1, sym_comment, - ACTIONS(8041), 12, - ts_builtin_sym_end, + ACTIONS(8090), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391454,15 +373852,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, - [180258] = 4, + anon_sym_RPAREN, + [169716] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4879), 1, + STATE(4595), 1, sym_comment, - ACTIONS(2302), 2, + ACTIONS(2368), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2300), 11, + ACTIONS(2366), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391474,15 +373873,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, - [180282] = 4, + [169740] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4880), 1, + STATE(4596), 1, sym_comment, - ACTIONS(2459), 2, + ACTIONS(7985), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2457), 11, + ACTIONS(7983), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391494,15 +373893,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, - [180306] = 4, - ACTIONS(3), 1, + [169764] = 3, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4881), 1, + STATE(4597), 1, sym_comment, - ACTIONS(2322), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2320), 11, + ACTIONS(8094), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391514,15 +373910,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, - [180330] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [169786] = 3, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4882), 1, + STATE(4598), 1, sym_comment, - ACTIONS(2015), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2009), 11, + ACTIONS(8096), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391534,15 +373929,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, - [180354] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [169808] = 3, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4883), 1, + STATE(4599), 1, sym_comment, - ACTIONS(2023), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2017), 11, + ACTIONS(8098), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391554,15 +373948,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, - [180378] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [169830] = 11, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4884), 1, + ACTIONS(1477), 1, + aux_sym_unquoted_token2, + ACTIONS(3550), 1, + anon_sym_DOLLAR, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(8054), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8056), 1, + aux_sym__immediate_decimal_token5, + STATE(4600), 1, sym_comment, - ACTIONS(2031), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2025), 11, + STATE(6322), 1, + sym__immediate_decimal, + ACTIONS(8052), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1823), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1475), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [169868] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(4601), 1, + sym_comment, + ACTIONS(8100), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391574,15 +373994,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, - [180402] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [169890] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4885), 1, + ACTIONS(2248), 1, + anon_sym_DASH2, + STATE(4602), 1, sym_comment, - ACTIONS(5187), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5189), 11, + ACTIONS(2250), 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, + [169914] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(4603), 1, + sym_comment, + ACTIONS(8102), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391594,15 +374033,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, - [180426] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [169936] = 3, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4886), 1, + STATE(4604), 1, sym_comment, - ACTIONS(5191), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5193), 11, + ACTIONS(8104), 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, + [169958] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(4605), 1, + sym_comment, + ACTIONS(8106), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391614,77 +374071,372 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180450] = 15, + anon_sym_RPAREN, + anon_sym_RBRACE, + [169980] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7696), 1, - sym_identifier, - ACTIONS(7702), 1, + STATE(4606), 1, + sym_comment, + ACTIONS(8108), 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, + [170002] = 11, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(3550), 1, + anon_sym_DOLLAR, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(4172), 1, + anon_sym_DOT, + ACTIONS(7949), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7951), 1, + aux_sym__immediate_decimal_token5, + STATE(4607), 1, + sym_comment, + STATE(5559), 1, + sym__immediate_decimal, + ACTIONS(7947), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5558), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1489), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [170040] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1845), 1, + anon_sym_DASH2, + ACTIONS(8110), 1, + anon_sym_DOT2, + STATE(3842), 1, + sym_path, + STATE(4176), 1, + sym_cell_path, + STATE(4608), 1, + sym_comment, + STATE(4767), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1847), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, - ACTIONS(7704), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7706), 1, anon_sym_DASH_DASH, - ACTIONS(7708), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + [170072] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1915), 1, anon_sym_DASH2, - ACTIONS(7723), 1, - anon_sym_RBRACK, - STATE(4057), 1, - sym_param_long_flag, - STATE(4224), 1, - sym__param_name, - STATE(4484), 1, - aux_sym_parameter_parens_repeat1, - STATE(4887), 1, + ACTIONS(8110), 1, + anon_sym_DOT2, + STATE(3842), 1, + sym_path, + STATE(4152), 1, + sym_cell_path, + STATE(4609), 1, sym_comment, - STATE(5014), 1, - sym_param_rest, - STATE(5016), 1, - sym_param_opt, - STATE(5021), 1, - sym_param_short_flag, - STATE(5582), 1, - sym_parameter, - [180496] = 15, + STATE(4767), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1917), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [170104] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7696), 1, - sym_identifier, - ACTIONS(7700), 1, + ACTIONS(1883), 1, + anon_sym_DASH2, + ACTIONS(8110), 1, + anon_sym_DOT2, + STATE(3842), 1, + sym_path, + STATE(4059), 1, + sym_cell_path, + STATE(4610), 1, + sym_comment, + STATE(4767), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1885), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [170136] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1893), 1, + anon_sym_DASH2, + ACTIONS(8110), 1, + anon_sym_DOT2, + STATE(3842), 1, + sym_path, + STATE(4163), 1, + sym_cell_path, + STATE(4611), 1, + sym_comment, + STATE(4767), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1895), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [170168] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1867), 1, + anon_sym_DASH2, + ACTIONS(8110), 1, + anon_sym_DOT2, + STATE(3842), 1, + sym_path, + STATE(4168), 1, + sym_cell_path, + STATE(4612), 1, + sym_comment, + STATE(4767), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1869), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [170200] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1823), 1, + anon_sym_DASH2, + ACTIONS(8110), 1, + anon_sym_DOT2, + STATE(3842), 1, + sym_path, + STATE(4179), 1, + sym_cell_path, + STATE(4613), 1, + sym_comment, + STATE(4767), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1825), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [170232] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1833), 1, + anon_sym_DASH2, + ACTIONS(8110), 1, + anon_sym_DOT2, + STATE(3842), 1, + sym_path, + STATE(4215), 1, + sym_cell_path, + STATE(4614), 1, + sym_comment, + STATE(4767), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1835), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [170264] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1879), 1, + anon_sym_DASH2, + ACTIONS(8110), 1, + anon_sym_DOT2, + STATE(3842), 1, + sym_path, + STATE(4216), 1, + sym_cell_path, + STATE(4615), 1, + sym_comment, + STATE(4767), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1881), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [170296] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1849), 1, + anon_sym_DASH2, + ACTIONS(8110), 1, + anon_sym_DOT2, + STATE(3842), 1, + sym_path, + STATE(4219), 1, + sym_cell_path, + STATE(4616), 1, + sym_comment, + STATE(4767), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1851), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [170328] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1863), 1, + anon_sym_DASH2, + ACTIONS(8110), 1, + anon_sym_DOT2, + STATE(3842), 1, + sym_path, + STATE(4220), 1, + sym_cell_path, + STATE(4617), 1, + sym_comment, + STATE(4767), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1865), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [170360] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1907), 1, + anon_sym_DASH2, + ACTIONS(8110), 1, + anon_sym_DOT2, + STATE(3842), 1, + sym_path, + STATE(4221), 1, + sym_cell_path, + STATE(4618), 1, + sym_comment, + STATE(4767), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1909), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [170392] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1871), 1, + anon_sym_DASH2, + ACTIONS(8110), 1, + anon_sym_DOT2, + STATE(3842), 1, + sym_path, + STATE(4222), 1, + sym_cell_path, + STATE(4619), 1, + sym_comment, + STATE(4767), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1873), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [170424] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1829), 1, + anon_sym_DASH2, + ACTIONS(8110), 1, + anon_sym_DOT2, + STATE(3842), 1, + sym_path, + STATE(4223), 1, + sym_cell_path, + STATE(4620), 1, + sym_comment, + STATE(4767), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1831), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RPAREN, - ACTIONS(7702), 1, anon_sym_DOLLAR, - ACTIONS(7704), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7706), 1, anon_sym_DASH_DASH, - ACTIONS(7708), 1, - anon_sym_DASH2, - STATE(4057), 1, - sym_param_long_flag, - STATE(4224), 1, - sym__param_name, - STATE(4484), 1, - aux_sym_parameter_parens_repeat1, - STATE(4888), 1, - sym_comment, - STATE(5014), 1, - sym_param_rest, - STATE(5016), 1, - sym_param_opt, - STATE(5021), 1, - sym_param_short_flag, - STATE(5582), 1, - sym_parameter, - [180542] = 4, - ACTIONS(3), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + [170456] = 3, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4889), 1, + STATE(4621), 1, sym_comment, - ACTIONS(2380), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2378), 11, + ACTIONS(8112), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391696,15 +374448,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, - [180566] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [170478] = 3, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4890), 1, + STATE(4622), 1, sym_comment, - ACTIONS(2330), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2328), 11, + ACTIONS(8114), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391716,15 +374467,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, - [180590] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [170500] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4891), 1, + STATE(4623), 1, sym_comment, - ACTIONS(2334), 2, + ACTIONS(5624), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2332), 11, + ACTIONS(5622), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391736,15 +374489,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, - [180614] = 4, - ACTIONS(3), 1, + [170524] = 9, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4892), 1, + ACTIONS(1616), 1, + anon_sym_DASH2, + ACTIONS(4581), 1, + anon_sym_DOT_DOT2, + ACTIONS(7012), 1, + aux_sym_unquoted_token2, + ACTIONS(8116), 1, + sym_filesize_unit, + ACTIONS(8118), 1, + sym_duration_unit, + STATE(4624), 1, sym_comment, - ACTIONS(2338), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2336), 11, + ACTIONS(4583), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1628), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + [170558] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(4588), 1, + aux_sym_shebang_repeat1, + STATE(4625), 1, + sym_comment, + ACTIONS(8120), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391756,15 +374533,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, - [180638] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + [170582] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4893), 1, + ACTIONS(3342), 1, + anon_sym_COLON2, + STATE(4626), 1, sym_comment, - ACTIONS(2420), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2418), 11, + ACTIONS(8020), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391776,14 +374553,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, - [180662] = 4, + anon_sym_RBRACE, + [170606] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4832), 1, - aux_sym_shebang_repeat1, - STATE(4894), 1, + ACTIONS(3342), 1, + anon_sym_COLON2, + STATE(4627), 1, sym_comment, - ACTIONS(8338), 12, + ACTIONS(8022), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391795,36 +374573,129 @@ static const uint16_t 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, + [170630] = 13, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(3342), 1, + anon_sym_COLON2, + ACTIONS(8122), 1, + anon_sym_DOLLAR, + ACTIONS(8124), 1, + anon_sym_DASH_DASH, + ACTIONS(8126), 1, + anon_sym_DASH2, + ACTIONS(8128), 1, + anon_sym_LBRACE, + STATE(1689), 1, + sym_block, + STATE(1711), 1, + sym_val_closure, + STATE(4628), 1, + sym_comment, + STATE(4809), 1, + aux_sym_ctrl_do_repeat1, + STATE(5175), 1, + sym__flag, + STATE(768), 2, + sym__blosure, + sym_val_variable, + STATE(4957), 2, + sym_short_flag, + sym_long_flag, + [170672] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7820), 1, + anon_sym_DASH2, + STATE(4629), 1, + sym_comment, + ACTIONS(7816), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [180686] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [170696] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4895), 1, + ACTIONS(8132), 1, + anon_sym_DASH2, + STATE(4630), 1, sym_comment, - ACTIONS(2400), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2398), 11, + ACTIONS(8130), 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_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [170720] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(925), 1, + anon_sym_DASH2, + ACTIONS(8110), 1, + anon_sym_DOT2, + STATE(3696), 1, + sym_cell_path, + STATE(3842), 1, + sym_path, + STATE(4631), 1, + sym_comment, + STATE(4767), 1, + aux_sym_cell_path_repeat1, + ACTIONS(927), 8, sym__newline, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [170752] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(8136), 1, + anon_sym_DASH2, + STATE(4632), 1, + sym_comment, + ACTIONS(8134), 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, - [180710] = 4, + 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, + [170776] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4896), 1, + STATE(4633), 1, sym_comment, - ACTIONS(5195), 2, + ACTIONS(7791), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5197), 11, + ACTIONS(7789), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391836,15 +374707,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, - [180734] = 4, - ACTIONS(3), 1, + [170800] = 15, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4897), 1, + ACTIONS(7659), 1, + sym_identifier, + ACTIONS(7665), 1, + anon_sym_DOLLAR, + ACTIONS(7667), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7669), 1, + anon_sym_DASH_DASH, + ACTIONS(7671), 1, + anon_sym_DASH2, + ACTIONS(8138), 1, + anon_sym_PIPE, + STATE(3869), 1, + sym_param_long_flag, + STATE(3999), 1, + sym__param_name, + STATE(4251), 1, + aux_sym_parameter_parens_repeat1, + STATE(4634), 1, sym_comment, - ACTIONS(5199), 2, + STATE(4882), 1, + sym_param_rest, + STATE(4883), 1, + sym_param_opt, + STATE(4884), 1, + sym_param_short_flag, + STATE(5337), 1, + sym_parameter, + [170846] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(8140), 1, + anon_sym_else, + STATE(4635), 1, + sym_comment, + ACTIONS(8048), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(5201), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -391856,263 +374758,274 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180758] = 13, - ACTIONS(3), 1, + [170870] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1468), 1, - sym__space, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - ACTIONS(2134), 1, + ACTIONS(8144), 1, + anon_sym_DASH2, + STATE(4636), 1, + sym_comment, + ACTIONS(8142), 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(7048), 1, - anon_sym_LPAREN2, - ACTIONS(8314), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8316), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8318), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8320), 1, - aux_sym__immediate_decimal_token5, - STATE(4898), 1, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [170894] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(8148), 1, + anon_sym_DASH2, + STATE(4637), 1, sym_comment, - STATE(6061), 1, - sym__immediate_decimal, - ACTIONS(1466), 2, + ACTIONS(8146), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, - STATE(4578), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [180800] = 4, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [170918] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4899), 1, + ACTIONS(8152), 1, + anon_sym_DASH2, + STATE(4638), 1, sym_comment, - ACTIONS(2424), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2422), 11, + ACTIONS(8150), 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, - [180824] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [170942] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4900), 1, + ACTIONS(8156), 1, + anon_sym_DASH2, + STATE(4639), 1, sym_comment, - ACTIONS(2344), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2342), 11, + ACTIONS(8154), 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, - [180848] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [170966] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4901), 1, + ACTIONS(8160), 1, + anon_sym_DASH2, + STATE(4640), 1, sym_comment, - ACTIONS(2348), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2346), 11, + ACTIONS(8158), 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, - [180872] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [170990] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4902), 1, + ACTIONS(8164), 1, + anon_sym_DASH2, + STATE(4641), 1, sym_comment, - ACTIONS(2352), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2350), 11, + ACTIONS(8162), 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, - [180896] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171014] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4903), 1, + ACTIONS(8168), 1, + anon_sym_DASH2, + STATE(4642), 1, sym_comment, - ACTIONS(2356), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2354), 11, + ACTIONS(8166), 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, - [180920] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171038] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4904), 1, + ACTIONS(8172), 1, + anon_sym_DASH2, + STATE(4643), 1, sym_comment, - ACTIONS(2360), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2358), 11, + ACTIONS(8170), 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, - [180944] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171062] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4905), 1, + ACTIONS(8176), 1, + anon_sym_DASH2, + STATE(4644), 1, sym_comment, - ACTIONS(2364), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2362), 11, + ACTIONS(8174), 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, - [180968] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171086] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4906), 1, + ACTIONS(8180), 1, + anon_sym_DASH2, + STATE(4645), 1, sym_comment, - ACTIONS(2368), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2366), 11, + ACTIONS(8178), 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, - [180992] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171110] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4907), 1, + ACTIONS(8184), 1, + anon_sym_DASH2, + STATE(4646), 1, sym_comment, - ACTIONS(1853), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1851), 11, + ACTIONS(8182), 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, - [181016] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171134] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4908), 1, + ACTIONS(8188), 1, + anon_sym_DASH2, + STATE(4647), 1, sym_comment, - ACTIONS(2428), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2426), 11, + ACTIONS(8186), 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, - [181040] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171158] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3440), 1, - anon_sym_COLON2, - STATE(4909), 1, + ACTIONS(8192), 1, + anon_sym_DASH2, + STATE(4648), 1, sym_comment, - ACTIONS(8112), 12, + ACTIONS(8190), 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_RBRACE, - [181064] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171182] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3440), 1, + ACTIONS(3408), 1, anon_sym_COLON2, - STATE(4910), 1, + STATE(4649), 1, sym_comment, - ACTIONS(8114), 12, + ACTIONS(8020), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392125,15 +375038,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, - [181088] = 4, - ACTIONS(3), 1, + [171206] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4911), 1, + ACTIONS(3408), 1, + anon_sym_COLON2, + STATE(4650), 1, sym_comment, - ACTIONS(2432), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2430), 11, + ACTIONS(8022), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392145,800 +375057,784 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181112] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [171230] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4912), 1, + ACTIONS(8196), 1, + anon_sym_DASH2, + STATE(4651), 1, sym_comment, - ACTIONS(1881), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1879), 11, + ACTIONS(8194), 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, - [181136] = 13, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171254] = 13, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3440), 1, + ACTIONS(3408), 1, anon_sym_COLON2, - ACTIONS(8340), 1, + ACTIONS(8122), 1, anon_sym_DOLLAR, - ACTIONS(8342), 1, + ACTIONS(8124), 1, anon_sym_DASH_DASH, - ACTIONS(8344), 1, + ACTIONS(8126), 1, anon_sym_DASH2, - ACTIONS(8346), 1, + ACTIONS(8128), 1, anon_sym_LBRACE, - STATE(1755), 1, + STATE(1689), 1, sym_block, - STATE(1761), 1, + STATE(1711), 1, sym_val_closure, - STATE(4913), 1, + STATE(4652), 1, sym_comment, - STATE(5036), 1, + STATE(4809), 1, aux_sym_ctrl_do_repeat1, - STATE(5422), 1, + STATE(5175), 1, sym__flag, - STATE(819), 2, + STATE(768), 2, sym__blosure, sym_val_variable, - STATE(5217), 2, + STATE(4957), 2, sym_short_flag, sym_long_flag, - [181178] = 4, - ACTIONS(3), 1, + [171296] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4914), 1, + ACTIONS(8200), 1, + anon_sym_DASH2, + STATE(4653), 1, sym_comment, - ACTIONS(1915), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1913), 11, + ACTIONS(8198), 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, - [181202] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171320] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4915), 1, + ACTIONS(8204), 1, + anon_sym_DASH2, + STATE(4654), 1, sym_comment, - ACTIONS(1947), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1945), 11, + ACTIONS(8202), 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, - [181226] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171344] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4916), 1, + ACTIONS(8208), 1, + anon_sym_DASH2, + STATE(4655), 1, sym_comment, - ACTIONS(2443), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2441), 11, + ACTIONS(8206), 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, - [181250] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171368] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4917), 1, + ACTIONS(8212), 1, + anon_sym_DASH2, + STATE(4656), 1, sym_comment, - ACTIONS(1885), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1883), 11, + ACTIONS(8210), 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, - [181274] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171392] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4918), 1, + ACTIONS(8216), 1, + anon_sym_DASH2, + STATE(4657), 1, sym_comment, - ACTIONS(2447), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2445), 11, + ACTIONS(8214), 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, - [181298] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171416] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4919), 1, + ACTIONS(8220), 1, + anon_sym_DASH2, + STATE(4658), 1, sym_comment, - ACTIONS(2451), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2449), 11, + ACTIONS(8218), 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, - [181322] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171440] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4920), 1, + ACTIONS(8224), 1, + anon_sym_DASH2, + STATE(4659), 1, sym_comment, - ACTIONS(1893), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1891), 11, + ACTIONS(8222), 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, - [181346] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171464] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4921), 1, + ACTIONS(8228), 1, + anon_sym_DASH2, + STATE(4660), 1, sym_comment, - ACTIONS(1933), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1931), 11, + ACTIONS(8226), 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, - [181370] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171488] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_COLON2, - STATE(4922), 1, + ACTIONS(8232), 1, + anon_sym_DASH2, + STATE(4661), 1, sym_comment, - ACTIONS(8112), 12, + ACTIONS(8230), 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_RBRACE, - [181394] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171512] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_COLON2, - STATE(4923), 1, + ACTIONS(8236), 1, + anon_sym_DASH2, + STATE(4662), 1, sym_comment, - ACTIONS(8114), 12, + ACTIONS(8234), 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_RBRACE, - [181418] = 13, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_COLON2, - ACTIONS(8340), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(8342), 1, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - ACTIONS(8344), 1, + [171536] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(8240), 1, anon_sym_DASH2, - ACTIONS(8346), 1, - anon_sym_LBRACE, - STATE(1755), 1, - sym_block, - STATE(1761), 1, - sym_val_closure, - STATE(4924), 1, + STATE(4663), 1, sym_comment, - STATE(5036), 1, - aux_sym_ctrl_do_repeat1, - STATE(5422), 1, - sym__flag, - STATE(819), 2, - sym__blosure, - sym_val_variable, - STATE(5217), 2, - sym_short_flag, - sym_long_flag, - [181460] = 4, - ACTIONS(3), 1, + ACTIONS(8238), 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_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171560] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4925), 1, + ACTIONS(8244), 1, + anon_sym_DASH2, + STATE(4664), 1, sym_comment, - ACTIONS(2455), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2453), 11, + ACTIONS(8242), 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, - [181484] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171584] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4926), 1, + ACTIONS(8248), 1, + anon_sym_DASH2, + STATE(4665), 1, sym_comment, - ACTIONS(2298), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2296), 11, + ACTIONS(8246), 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, - [181508] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171608] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4927), 1, - sym_comment, - ACTIONS(1937), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1935), 11, + ACTIONS(8252), 1, + anon_sym_DASH2, + STATE(4666), 1, + sym_comment, + ACTIONS(8250), 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, - [181532] = 15, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171632] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7696), 1, + ACTIONS(8256), 1, + anon_sym_DASH2, + STATE(4667), 1, + sym_comment, + ACTIONS(8254), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(7702), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7704), 1, + anon_sym_AT2, anon_sym_DOT_DOT_DOT, - ACTIONS(7706), 1, anon_sym_DASH_DASH, - ACTIONS(7708), 1, + [171656] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(8260), 1, anon_sym_DASH2, - ACTIONS(8348), 1, - anon_sym_RPAREN, - STATE(4057), 1, - sym_param_long_flag, - STATE(4224), 1, - sym__param_name, - STATE(4484), 1, - aux_sym_parameter_parens_repeat1, - STATE(4928), 1, + STATE(4668), 1, sym_comment, - STATE(5014), 1, - sym_param_rest, - STATE(5016), 1, - sym_param_opt, - STATE(5021), 1, - sym_param_short_flag, - STATE(5582), 1, - sym_parameter, - [181578] = 3, + ACTIONS(8258), 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_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171680] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4929), 1, + ACTIONS(8264), 1, + anon_sym_DASH2, + STATE(4669), 1, sym_comment, - ACTIONS(8350), 13, + ACTIONS(8262), 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, - anon_sym_RBRACE, - [181600] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171704] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4930), 1, + ACTIONS(8268), 1, + anon_sym_DASH2, + STATE(4670), 1, sym_comment, - ACTIONS(2463), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2461), 11, + ACTIONS(8266), 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, - [181624] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171728] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4931), 1, + ACTIONS(8272), 1, + anon_sym_DASH2, + STATE(4671), 1, sym_comment, - ACTIONS(2467), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2465), 11, + ACTIONS(8270), 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, - [181648] = 3, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171752] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4932), 1, + ACTIONS(8276), 1, + anon_sym_DASH2, + STATE(4672), 1, sym_comment, - ACTIONS(8352), 13, + ACTIONS(8274), 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, - anon_sym_RBRACE, - [181670] = 9, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171776] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1579), 1, + ACTIONS(8280), 1, anon_sym_DASH2, - ACTIONS(4673), 1, - anon_sym_DOT_DOT2, - ACTIONS(7082), 1, - aux_sym_unquoted_token2, - ACTIONS(8354), 1, - sym_filesize_unit, - ACTIONS(8356), 1, - sym_duration_unit, - STATE(4933), 1, + STATE(4673), 1, sym_comment, - ACTIONS(4675), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1591), 6, + ACTIONS(8278), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - [181704] = 13, - ACTIONS(3), 1, + [171800] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1482), 1, - sym__entry_separator, - ACTIONS(3122), 1, - anon_sym_DOLLAR, - ACTIONS(8096), 1, - anon_sym_LPAREN2, - ACTIONS(8326), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8328), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8330), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8332), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8358), 1, - anon_sym_DOT, - STATE(4934), 1, + ACTIONS(8284), 1, + anon_sym_DASH2, + STATE(4674), 1, sym_comment, - STATE(5784), 1, - sym__immediate_decimal, - ACTIONS(1472), 2, + ACTIONS(8282), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(5782), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [181746] = 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171824] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8360), 1, - anon_sym_else, - STATE(4935), 1, + ACTIONS(8288), 1, + anon_sym_DASH2, + STATE(4675), 1, sym_comment, - ACTIONS(8290), 12, + ACTIONS(8286), 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, - [181770] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171848] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8362), 1, - anon_sym_else, - STATE(4936), 1, + ACTIONS(8292), 1, + anon_sym_DASH2, + STATE(4676), 1, sym_comment, ACTIONS(8290), 12, - ts_builtin_sym_end, + 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, - [181794] = 3, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171872] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4937), 1, + ACTIONS(8296), 1, + anon_sym_DASH2, + STATE(4677), 1, sym_comment, - ACTIONS(8364), 13, + ACTIONS(8294), 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, - anon_sym_RBRACE, - [181816] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - sym__space, - ACTIONS(2134), 1, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7048), 1, - anon_sym_LPAREN2, - ACTIONS(7072), 1, - anon_sym_DOT, - ACTIONS(7981), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7983), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7985), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7987), 1, - aux_sym__immediate_decimal_token5, - STATE(4938), 1, - sym_comment, - STATE(5827), 1, - sym__immediate_decimal, - ACTIONS(1472), 2, - sym__newline, - anon_sym_SEMI, - STATE(5826), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [181858] = 4, - ACTIONS(3), 1, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171896] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4939), 1, + ACTIONS(8300), 1, + anon_sym_DASH2, + STATE(4678), 1, sym_comment, - ACTIONS(2308), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2306), 11, + ACTIONS(8298), 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, - [181882] = 3, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171920] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4940), 1, + ACTIONS(8304), 1, + anon_sym_DASH2, + STATE(4679), 1, sym_comment, - ACTIONS(8366), 13, + ACTIONS(8302), 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, - anon_sym_RBRACE, - [181904] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171944] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4941), 1, + ACTIONS(8308), 1, + anon_sym_DASH2, + STATE(4680), 1, sym_comment, - ACTIONS(8368), 13, + ACTIONS(8306), 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, - anon_sym_RBRACE, - [181926] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171968] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4942), 1, + ACTIONS(8312), 1, + anon_sym_DASH2, + STATE(4681), 1, sym_comment, - ACTIONS(8370), 13, + ACTIONS(8310), 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, - anon_sym_RBRACE, - [181948] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171992] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4943), 1, + ACTIONS(8316), 1, + anon_sym_DASH2, + STATE(4682), 1, sym_comment, - ACTIONS(5690), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5688), 11, + ACTIONS(8314), 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, - [181972] = 15, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [172016] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7696), 1, + ACTIONS(8320), 1, + anon_sym_DASH2, + STATE(4683), 1, + sym_comment, + ACTIONS(8318), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(7702), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7704), 1, + anon_sym_AT2, anon_sym_DOT_DOT_DOT, - ACTIONS(7706), 1, anon_sym_DASH_DASH, - ACTIONS(7708), 1, + [172040] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(8324), 1, anon_sym_DASH2, - ACTIONS(7793), 1, - anon_sym_RBRACK, - STATE(4057), 1, - sym_param_long_flag, - STATE(4224), 1, - sym__param_name, - STATE(4484), 1, - aux_sym_parameter_parens_repeat1, - STATE(4944), 1, + STATE(4684), 1, sym_comment, - STATE(5014), 1, - sym_param_rest, - STATE(5016), 1, - sym_param_opt, - STATE(5021), 1, - sym_param_short_flag, - STATE(5582), 1, - sym_parameter, - [182018] = 3, + ACTIONS(8322), 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_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [172064] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4945), 1, + ACTIONS(8328), 1, + anon_sym_DASH2, + STATE(4685), 1, sym_comment, - ACTIONS(8372), 13, + ACTIONS(8326), 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, - anon_sym_RBRACE, - [182040] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [172088] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4946), 1, + ACTIONS(8332), 1, + anon_sym_DASH2, + STATE(4686), 1, sym_comment, - ACTIONS(8374), 13, + ACTIONS(8330), 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, - anon_sym_RBRACE, - [182062] = 15, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [172112] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7696), 1, + ACTIONS(8336), 1, + anon_sym_DASH2, + STATE(4687), 1, + sym_comment, + ACTIONS(8334), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(7702), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7704), 1, + anon_sym_AT2, anon_sym_DOT_DOT_DOT, - ACTIONS(7706), 1, anon_sym_DASH_DASH, - ACTIONS(7708), 1, + [172136] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(8340), 1, anon_sym_DASH2, - ACTIONS(7799), 1, - anon_sym_RPAREN, - STATE(4057), 1, - sym_param_long_flag, - STATE(4224), 1, - sym__param_name, - STATE(4484), 1, - aux_sym_parameter_parens_repeat1, - STATE(4947), 1, + STATE(4688), 1, sym_comment, - STATE(5014), 1, - sym_param_rest, - STATE(5016), 1, - sym_param_opt, - STATE(5021), 1, - sym_param_short_flag, - STATE(5582), 1, - sym_parameter, - [182108] = 4, + ACTIONS(8338), 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_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [172160] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8378), 1, + ACTIONS(8344), 1, anon_sym_DASH2, - STATE(4948), 1, + STATE(4689), 1, sym_comment, - ACTIONS(8376), 12, + ACTIONS(8342), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -392951,15 +375847,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182132] = 4, - ACTIONS(3), 1, + [172184] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(4949), 1, + ACTIONS(8346), 1, + anon_sym_else, + STATE(4690), 1, sym_comment, - ACTIONS(1929), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1927), 11, + ACTIONS(8048), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -392971,14 +375866,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, - [182156] = 4, + anon_sym_RPAREN, + [172208] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8382), 1, + ACTIONS(8350), 1, anon_sym_DASH2, - STATE(4950), 1, + STATE(4691), 1, sym_comment, - ACTIONS(8380), 12, + ACTIONS(8348), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -392991,40 +375887,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182180] = 6, + [172232] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7873), 1, - sym__newline, - ACTIONS(8384), 1, - anon_sym_else, - STATE(4951), 1, + ACTIONS(8354), 1, + anon_sym_DASH2, + STATE(4692), 1, sym_comment, - STATE(4952), 1, - aux_sym_shebang_repeat1, - ACTIONS(7876), 10, - anon_sym_SEMI, + ACTIONS(8352), 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, - [182208] = 6, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [172256] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7929), 1, - sym__newline, - ACTIONS(8386), 1, - anon_sym_else, - STATE(4952), 1, + STATE(4693), 1, sym_comment, - STATE(4955), 1, - aux_sym_shebang_repeat1, - ACTIONS(7932), 10, + ACTIONS(5056), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393035,18 +375924,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, - [182236] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [172278] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8049), 1, - sym__newline, - ACTIONS(8388), 1, - anon_sym_else, - STATE(4953), 1, + STATE(4694), 1, sym_comment, - STATE(4956), 1, - aux_sym_shebang_repeat1, - ACTIONS(8052), 10, + ACTIONS(5097), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393057,18 +375943,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, - [182264] = 6, - ACTIONS(245), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [172300] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7936), 1, - sym__newline, - ACTIONS(8390), 1, - anon_sym_else, - STATE(4954), 1, + STATE(4695), 1, sym_comment, - STATE(4957), 1, - aux_sym_shebang_repeat1, - ACTIONS(7939), 10, + ACTIONS(5101), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5103), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393079,18 +375965,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, - [182292] = 6, + [172324] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4953), 1, + ACTIONS(7761), 1, sym__newline, - ACTIONS(8392), 1, + ACTIONS(8356), 1, anon_sym_else, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4955), 1, + STATE(4696), 1, sym_comment, - ACTIONS(1286), 10, + STATE(4697), 1, + aux_sym_shebang_repeat1, + ACTIONS(7764), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393101,18 +375987,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, - [182320] = 6, + [172352] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7835), 1, + ACTIONS(7890), 1, sym__newline, - ACTIONS(8395), 1, + ACTIONS(8358), 1, anon_sym_else, - STATE(4956), 1, + STATE(4697), 1, sym_comment, - STATE(4959), 1, + STATE(4700), 1, aux_sym_shebang_repeat1, - ACTIONS(7838), 10, + ACTIONS(7893), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393123,18 +376009,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, - [182348] = 6, + [172380] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7842), 1, + ACTIONS(7897), 1, sym__newline, - ACTIONS(8397), 1, + ACTIONS(8360), 1, anon_sym_else, - STATE(4957), 1, + STATE(4698), 1, sym_comment, - STATE(4960), 1, + STATE(4701), 1, aux_sym_shebang_repeat1, - ACTIONS(7845), 10, + ACTIONS(7900), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393145,18 +376031,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, - [182376] = 6, + [172408] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7851), 1, + ACTIONS(7904), 1, sym__newline, - ACTIONS(8399), 1, + ACTIONS(8362), 1, anon_sym_else, - STATE(4958), 1, + STATE(4699), 1, sym_comment, - STATE(4961), 1, + STATE(4702), 1, aux_sym_shebang_repeat1, - ACTIONS(7854), 10, + ACTIONS(7907), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393167,18 +376053,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, - [182404] = 6, + [172436] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4953), 1, + ACTIONS(4854), 1, sym__newline, - ACTIONS(8401), 1, + ACTIONS(8364), 1, anon_sym_else, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(4959), 1, + STATE(4700), 1, sym_comment, - ACTIONS(1286), 10, + ACTIONS(1274), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393189,18 +376075,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, - [182432] = 6, + [172464] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4953), 1, + ACTIONS(7768), 1, sym__newline, - ACTIONS(8404), 1, + ACTIONS(8367), 1, anon_sym_else, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4960), 1, + STATE(4701), 1, sym_comment, - ACTIONS(1286), 10, + STATE(4704), 1, + aux_sym_shebang_repeat1, + ACTIONS(7771), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393211,18 +376097,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, - [182460] = 6, + [172492] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7907), 1, + ACTIONS(7852), 1, sym__newline, - ACTIONS(8407), 1, + ACTIONS(8369), 1, anon_sym_else, - STATE(4961), 1, + STATE(4702), 1, sym_comment, - STATE(4962), 1, + STATE(4705), 1, aux_sym_shebang_repeat1, - ACTIONS(7910), 10, + ACTIONS(7855), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393233,38 +376119,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, - [182488] = 6, + [172520] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4953), 1, + ACTIONS(7871), 1, sym__newline, - ACTIONS(8409), 1, + ACTIONS(8371), 1, anon_sym_else, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4962), 1, - sym_comment, - ACTIONS(1286), 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, - [182516] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4963), 1, + STATE(4703), 1, sym_comment, - ACTIONS(2376), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2374), 11, - sym__newline, + STATE(4706), 1, + aux_sym_shebang_repeat1, + ACTIONS(7874), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393275,34 +376141,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, - [182540] = 3, + [172548] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(4964), 1, - sym_comment, - ACTIONS(8412), 13, + ACTIONS(4854), 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, - [182562] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(1653), 1, + ACTIONS(8373), 1, + anon_sym_else, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(4965), 1, + STATE(4704), 1, sym_comment, - ACTIONS(8414), 12, - sym__newline, + ACTIONS(1274), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393313,34 +376163,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, - [182586] = 4, + [172576] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8418), 1, - anon_sym_DASH2, - STATE(4966), 1, - sym_comment, - ACTIONS(8416), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(4854), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [182610] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(4967), 1, + ACTIONS(8376), 1, + anon_sym_else, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4705), 1, sym_comment, - ACTIONS(5100), 13, - sym__newline, + ACTIONS(1274), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393351,37 +376185,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, - [182632] = 3, + [172604] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(4968), 1, - sym_comment, - ACTIONS(5104), 13, + ACTIONS(7838), 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, - [182654] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4969), 1, + ACTIONS(8379), 1, + anon_sym_else, + STATE(4706), 1, sym_comment, - ACTIONS(5163), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5165), 11, - sym__newline, + STATE(4707), 1, + aux_sym_shebang_repeat1, + ACTIONS(7841), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393392,96 +376207,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, - [182678] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8422), 1, - anon_sym_DASH2, - STATE(4970), 1, - sym_comment, - ACTIONS(8420), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [182702] = 4, + [172632] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8426), 1, - anon_sym_DASH2, - STATE(4971), 1, - sym_comment, - ACTIONS(8424), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [182726] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8430), 1, - anon_sym_DASH2, - STATE(4972), 1, - sym_comment, - ACTIONS(8428), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [182750] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8434), 1, - anon_sym_DASH2, - STATE(4973), 1, - sym_comment, - ACTIONS(8432), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(4854), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [182774] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4974), 1, + ACTIONS(8381), 1, + anon_sym_else, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4707), 1, sym_comment, - ACTIONS(2394), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2392), 11, - sym__newline, + ACTIONS(1274), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -393492,75 +376229,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, - [182798] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8438), 1, - anon_sym_DASH2, - STATE(4975), 1, - sym_comment, - ACTIONS(8436), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [182822] = 4, + [172660] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8442), 1, - anon_sym_DASH2, - STATE(4976), 1, - sym_comment, - ACTIONS(8440), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(3550), 1, anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [182846] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8446), 1, - anon_sym_DASH2, - STATE(4977), 1, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(8384), 1, + anon_sym_DOT, + ACTIONS(8388), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8390), 1, + aux_sym__immediate_decimal_token5, + STATE(4708), 1, sym_comment, - ACTIONS(8444), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(5572), 1, + sym__immediate_decimal, + ACTIONS(1445), 2, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [182870] = 4, + anon_sym_EQ_GT, + ACTIONS(8386), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5560), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [172700] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4978), 1, + STATE(4709), 1, sym_comment, - ACTIONS(5667), 2, + ACTIONS(2407), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5665), 11, + ACTIONS(2405), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393572,85 +376277,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [182894] = 4, + [172724] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2350), 1, - anon_sym_DASH2, - STATE(4979), 1, - sym_comment, - ACTIONS(2352), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(8122), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + ACTIONS(8124), 1, anon_sym_DASH_DASH, - [182917] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1646), 1, - sym__entry_separator, - ACTIONS(3122), 1, - anon_sym_DOLLAR, - ACTIONS(8096), 1, - anon_sym_LPAREN2, - ACTIONS(8330), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8332), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8448), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8450), 1, - aux_sym__immediate_decimal_token3, - STATE(4980), 1, + ACTIONS(8126), 1, + anon_sym_DASH2, + ACTIONS(8128), 1, + anon_sym_LBRACE, + STATE(1689), 1, + sym_block, + STATE(1711), 1, + sym_val_closure, + STATE(4710), 1, sym_comment, - STATE(7045), 1, - sym__immediate_decimal, - ACTIONS(1644), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(7043), 2, - sym__expr_parenthesized_immediate, + STATE(4809), 1, + aux_sym_ctrl_do_repeat1, + STATE(5175), 1, + sym__flag, + STATE(768), 2, + sym__blosure, sym_val_variable, - [182956] = 12, + STATE(4957), 2, + sym_short_flag, + sym_long_flag, + [172763] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1577), 1, - sym__entry_separator, - ACTIONS(3122), 1, - anon_sym_DOLLAR, - ACTIONS(8096), 1, + ACTIONS(5468), 1, anon_sym_LPAREN2, - ACTIONS(8330), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8332), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8448), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8450), 1, + ACTIONS(5472), 1, aux_sym__immediate_decimal_token3, - STATE(4981), 1, - sym_comment, - STATE(7054), 1, - sym__immediate_decimal, - ACTIONS(1575), 2, + ACTIONS(5474), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5760), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8392), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(7046), 2, + ACTIONS(8394), 1, + anon_sym_DOLLAR, + ACTIONS(8396), 1, + anon_sym_DOLLAR2, + ACTIONS(8398), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8400), 1, + aux_sym__immediate_decimal_token5, + STATE(2677), 1, + sym__immediate_decimal, + STATE(4711), 1, + sym_comment, + STATE(2780), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [182995] = 3, + [172804] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(4982), 1, + STATE(4712), 1, sym_comment, - ACTIONS(8452), 12, + ACTIONS(8402), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393663,12 +376350,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [183016] = 3, + [172825] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(4983), 1, + STATE(4713), 1, sym_comment, - ACTIONS(8454), 12, + ACTIONS(8404), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393681,12 +376368,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [183037] = 3, + [172846] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1489), 1, + sym__space, + ACTIONS(2014), 1, + anon_sym_DOLLAR, + ACTIONS(6982), 1, + anon_sym_LPAREN2, + ACTIONS(7959), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7961), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8406), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8408), 1, + aux_sym__immediate_decimal_token3, + STATE(4423), 1, + sym__immediate_decimal, + STATE(4714), 1, + sym_comment, + ACTIONS(1479), 2, + sym__newline, + anon_sym_SEMI, + STATE(4418), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [172885] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(4984), 1, + STATE(4715), 1, sym_comment, - ACTIONS(8456), 12, + ACTIONS(8108), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393698,78 +376413,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [183058] = 4, + [172906] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8460), 1, + ACTIONS(1616), 1, anon_sym_DASH2, - STATE(4985), 1, + ACTIONS(4581), 1, + anon_sym_DOT_DOT2, + ACTIONS(7062), 1, + aux_sym_unquoted_token2, + ACTIONS(8410), 1, + sym_filesize_unit, + ACTIONS(8412), 1, + sym_duration_unit, + STATE(4716), 1, sym_comment, - ACTIONS(8458), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(4583), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1628), 5, + ts_builtin_sym_end, 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_SEMI, + anon_sym_LBRACK, anon_sym_DASH_DASH, - [183081] = 4, + [172939] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8464), 1, - anon_sym_DASH2, - STATE(4986), 1, + STATE(4717), 1, sym_comment, - ACTIONS(8462), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8414), 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, - [183104] = 12, - ACTIONS(3), 1, + [172960] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1552), 1, - sym__entry_separator, - ACTIONS(3122), 1, - anon_sym_DOLLAR, - ACTIONS(8096), 1, - anon_sym_LPAREN2, - ACTIONS(8330), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8332), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8448), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8450), 1, - aux_sym__immediate_decimal_token3, - STATE(4987), 1, + STATE(4718), 1, sym_comment, - STATE(7060), 1, - sym__immediate_decimal, - ACTIONS(1544), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(7058), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [183143] = 3, + ACTIONS(1499), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1501), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [172983] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(4988), 1, + STATE(4719), 1, sym_comment, - ACTIONS(8466), 12, + ACTIONS(7791), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393781,13 +376492,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, - [183164] = 3, + [173004] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(4989), 1, + STATE(4720), 1, sym_comment, - ACTIONS(8468), 12, + ACTIONS(8416), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -393800,153 +376510,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [183185] = 12, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3152), 1, - anon_sym_DQUOTE, - ACTIONS(3158), 1, - sym_raw_string_begin, - ACTIONS(8470), 1, - sym_identifier, - ACTIONS(8472), 1, - sym__newline, - ACTIONS(8474), 1, - anon_sym_GT2, - STATE(4990), 1, - sym_comment, - STATE(5192), 1, - aux_sym_shebang_repeat1, - STATE(5409), 1, - aux_sym_collection_type_repeat1, - STATE(6359), 1, - sym_val_string, - ACTIONS(3154), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5281), 2, - sym__raw_str, - sym__str_double_quotes, - [183224] = 4, + [173025] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(4991), 1, + ACTIONS(8418), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8420), 1, + aux_sym__immediate_decimal_token2, + STATE(4721), 1, sym_comment, - ACTIONS(1492), 3, + ACTIONS(1491), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1494), 9, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(1493), 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, - [183247] = 4, + [173052] = 10, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2469), 1, - anon_sym_DASH2, - STATE(4992), 1, - sym_comment, - ACTIONS(2471), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3550), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [183270] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5493), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(5497), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5499), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5834), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8476), 1, - anon_sym_RBRACK, - ACTIONS(8478), 1, - anon_sym_DOLLAR, - ACTIONS(8480), 1, - anon_sym_DOLLAR2, - ACTIONS(8482), 1, + ACTIONS(7949), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8484), 1, + ACTIONS(7951), 1, aux_sym__immediate_decimal_token5, - STATE(2827), 1, + STATE(1771), 1, sym__immediate_decimal, - STATE(4993), 1, + STATE(4722), 1, sym_comment, - STATE(2965), 2, + ACTIONS(8422), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1770), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [183311] = 3, + ACTIONS(1489), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [173087] = 10, ACTIONS(245), 1, anon_sym_POUND, - STATE(4994), 1, + ACTIONS(3550), 1, + anon_sym_DOLLAR, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(7949), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7951), 1, + aux_sym__immediate_decimal_token5, + STATE(1816), 1, + sym__immediate_decimal, + STATE(4723), 1, sym_comment, - ACTIONS(8486), 12, - sym__newline, - anon_sym_SEMI, + ACTIONS(8422), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1815), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1634), 3, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - [183332] = 11, + anon_sym_if, + anon_sym_EQ_GT, + [173122] = 10, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - ACTIONS(3610), 1, + ACTIONS(3550), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(8490), 1, + ACTIONS(7949), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8492), 1, + ACTIONS(7951), 1, aux_sym__immediate_decimal_token5, - STATE(4995), 1, - sym_comment, - STATE(7253), 1, + STATE(1818), 1, sym__immediate_decimal, - ACTIONS(1468), 2, + STATE(4724), 1, + sym_comment, + ACTIONS(8422), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1817), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1646), 3, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, - ACTIONS(8488), 2, + [173157] = 10, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(3550), 1, + anon_sym_DOLLAR, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(7949), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7951), 1, + aux_sym__immediate_decimal_token5, + STATE(1822), 1, + sym__immediate_decimal, + STATE(4725), 1, + sym_comment, + ACTIONS(8422), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1824), 2, + STATE(1821), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [183369] = 4, + ACTIONS(1546), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [173192] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(4996), 1, + ACTIONS(5747), 1, + sym__newline, + ACTIONS(8424), 1, + anon_sym_DASH2, + STATE(4726), 1, + sym_comment, + ACTIONS(1285), 2, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5750), 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, + [173219] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(4727), 1, sym_comment, - ACTIONS(1484), 3, + ACTIONS(1491), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1486), 9, + ACTIONS(1493), 9, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -393956,16 +376671,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [183392] = 4, + [173242] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4997), 1, + ACTIONS(7677), 1, + anon_sym_DASH2, + STATE(4728), 1, + sym_comment, + ACTIONS(7675), 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, + [173265] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(4729), 1, sym_comment, - ACTIONS(1538), 3, + ACTIONS(1579), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1540), 9, + ACTIONS(1581), 9, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -393975,12 +376709,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [183415] = 3, + [173288] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(4998), 1, + STATE(4730), 1, sym_comment, - ACTIONS(8184), 12, + ACTIONS(6903), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -393993,12 +376727,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, - [183436] = 3, + [173309] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(4999), 1, + STATE(4731), 1, + sym_comment, + ACTIONS(1678), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1680), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [173332] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(4732), 1, sym_comment, - ACTIONS(8494), 12, + ACTIONS(8426), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394011,78 +376764,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [183457] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1466), 1, - anon_sym_RBRACK, - ACTIONS(1468), 1, - sym__entry_separator, - ACTIONS(1470), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(3122), 1, - anon_sym_DOLLAR, - ACTIONS(8096), 1, - anon_sym_LPAREN2, - ACTIONS(8496), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8498), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8500), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8502), 1, - aux_sym__immediate_decimal_token5, - STATE(5000), 1, - sym_comment, - STATE(6226), 1, - sym__immediate_decimal, - STATE(7062), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [183498] = 4, + [173353] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8506), 1, - anon_sym_DASH2, - STATE(5001), 1, + STATE(4733), 1, sym_comment, - ACTIONS(8504), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8428), 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, - [183521] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(5002), 1, - sym_comment, - ACTIONS(1715), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1717), 9, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [183544] = 3, + [173374] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5003), 1, + STATE(4734), 1, sym_comment, - ACTIONS(8508), 12, + ACTIONS(8430), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394095,13 +376800,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [183565] = 3, + [173395] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5004), 1, + STATE(4735), 1, sym_comment, - ACTIONS(6965), 12, - ts_builtin_sym_end, + ACTIONS(8432), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394113,33 +376817,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183586] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + [173416] = 12, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8510), 1, + ACTIONS(8124), 1, + anon_sym_DASH_DASH, + ACTIONS(8126), 1, + anon_sym_DASH2, + ACTIONS(8434), 1, + anon_sym_DOLLAR, + ACTIONS(8436), 1, + anon_sym_LBRACE, + STATE(1967), 1, + sym_block, + STATE(1989), 1, + sym_val_closure, + STATE(4736), 1, + sym_comment, + STATE(4744), 1, + aux_sym_ctrl_do_repeat1, + STATE(5175), 1, + sym__flag, + STATE(789), 2, + sym__blosure, + sym_val_variable, + STATE(4957), 2, + sym_short_flag, + sym_long_flag, + [173455] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(8438), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8512), 1, + ACTIONS(8440), 1, aux_sym__immediate_decimal_token2, - STATE(5005), 1, + STATE(4737), 1, sym_comment, - ACTIONS(1484), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1486), 6, - anon_sym_LPAREN2, + ACTIONS(1493), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1491), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, + aux_sym_unquoted_token2, + [173482] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1473), 1, + anon_sym_RBRACK, + ACTIONS(1475), 1, sym__entry_separator, - [183613] = 3, + ACTIONS(1477), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(3048), 1, + anon_sym_DOLLAR, + ACTIONS(8036), 1, + anon_sym_LPAREN2, + ACTIONS(8442), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8444), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8446), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8448), 1, + aux_sym__immediate_decimal_token5, + STATE(4738), 1, + sym_comment, + STATE(6354), 1, + sym__immediate_decimal, + STATE(6402), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [173523] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5006), 1, + STATE(4739), 1, sym_comment, - ACTIONS(8372), 12, + ACTIONS(8112), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -394152,40 +376912,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, - [183634] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1431), 1, - anon_sym_RBRACE, - ACTIONS(1445), 1, - sym__entry_separator, - ACTIONS(3122), 1, - anon_sym_DOLLAR, - ACTIONS(8096), 1, - anon_sym_LPAREN2, - ACTIONS(8326), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8328), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8330), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8332), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8514), 1, - anon_sym_DOT, - STATE(5007), 1, - sym_comment, - STATE(6157), 1, - sym__immediate_decimal, - STATE(5785), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [183675] = 3, + [173544] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5008), 1, + STATE(4740), 1, sym_comment, - ACTIONS(8374), 12, + ACTIONS(8024), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -394198,193 +376930,267 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183696] = 12, + [173565] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3152), 1, + ACTIONS(3078), 1, anon_sym_DQUOTE, - ACTIONS(3158), 1, + ACTIONS(3084), 1, sym_raw_string_begin, - ACTIONS(8472), 1, - sym__newline, - ACTIONS(8516), 1, + ACTIONS(8450), 1, sym_identifier, - ACTIONS(8518), 1, + ACTIONS(8452), 1, + sym__newline, + ACTIONS(8454), 1, anon_sym_GT2, - STATE(5009), 1, + STATE(4741), 1, sym_comment, - STATE(5188), 1, + STATE(4936), 1, aux_sym_shebang_repeat1, - STATE(5429), 1, + STATE(5164), 1, aux_sym_collection_type_repeat1, - STATE(6707), 1, + STATE(6310), 1, sym_val_string, - ACTIONS(3154), 2, + ACTIONS(3080), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5281), 2, + STATE(5052), 2, sym__raw_str, sym__str_double_quotes, - [183735] = 12, + [173604] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3152), 1, - anon_sym_DQUOTE, - ACTIONS(3158), 1, - sym_raw_string_begin, - ACTIONS(8472), 1, - sym__newline, - ACTIONS(8520), 1, - sym_identifier, - ACTIONS(8522), 1, - anon_sym_GT2, - STATE(5010), 1, + STATE(4742), 1, sym_comment, - STATE(5199), 1, - aux_sym_shebang_repeat1, - STATE(5428), 1, - aux_sym_collection_type_repeat1, - STATE(6274), 1, - sym_val_string, - ACTIONS(3154), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5281), 2, - sym__raw_str, - sym__str_double_quotes, - [183774] = 4, + ACTIONS(8456), 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, + [173625] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2320), 1, - anon_sym_DASH2, - STATE(5011), 1, + STATE(4743), 1, sym_comment, - ACTIONS(2322), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8458), 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, - [183797] = 13, - ACTIONS(3), 1, + [173646] = 12, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5493), 1, - anon_sym_LPAREN2, - ACTIONS(5497), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5499), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5834), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8478), 1, + ACTIONS(8124), 1, + anon_sym_DASH_DASH, + ACTIONS(8126), 1, + anon_sym_DASH2, + ACTIONS(8434), 1, anon_sym_DOLLAR, - ACTIONS(8480), 1, - anon_sym_DOLLAR2, - ACTIONS(8482), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8484), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8524), 1, - anon_sym_RBRACK, - STATE(2827), 1, - sym__immediate_decimal, - STATE(5012), 1, + ACTIONS(8436), 1, + anon_sym_LBRACE, + STATE(1967), 1, + sym_block, + STATE(1989), 1, + sym_val_closure, + STATE(4744), 1, sym_comment, - STATE(2965), 2, - sym__expr_parenthesized_immediate, + STATE(5175), 1, + sym__flag, + STATE(5186), 1, + aux_sym_ctrl_do_repeat1, + STATE(784), 2, + sym__blosure, sym_val_variable, - [183838] = 6, + STATE(4957), 2, + sym_short_flag, + sym_long_flag, + [173685] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8526), 1, - anon_sym_DOT, - ACTIONS(8528), 1, - aux_sym__immediate_decimal_token2, - STATE(5013), 1, + STATE(4745), 1, sym_comment, - ACTIONS(1494), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1492), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [183865] = 4, + ACTIONS(5056), 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, + [173706] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8532), 1, - anon_sym_DASH2, - STATE(5014), 1, + STATE(4746), 1, sym_comment, - ACTIONS(8530), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5097), 12, + 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_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [173727] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1634), 1, + sym__space, + ACTIONS(2014), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [183888] = 4, + ACTIONS(6982), 1, + anon_sym_LPAREN2, + ACTIONS(7959), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7961), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8406), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8408), 1, + aux_sym__immediate_decimal_token3, + STATE(4436), 1, + sym__immediate_decimal, + STATE(4747), 1, + sym_comment, + ACTIONS(1632), 2, + sym__newline, + anon_sym_SEMI, + STATE(4429), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [173766] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2009), 1, - anon_sym_DASH2, - STATE(5015), 1, + STATE(4748), 1, sym_comment, - ACTIONS(2015), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6931), 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, + [173787] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1431), 1, + anon_sym_RBRACE, + ACTIONS(1445), 1, + sym__entry_separator, + ACTIONS(3048), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [183911] = 4, - ACTIONS(245), 1, + ACTIONS(8036), 1, + anon_sym_LPAREN2, + ACTIONS(8040), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8042), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8044), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8046), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8460), 1, + anon_sym_DOT, + STATE(4749), 1, + sym_comment, + STATE(5726), 1, + sym__immediate_decimal, + STATE(5636), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [173828] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8536), 1, - anon_sym_DASH2, - STATE(5016), 1, + ACTIONS(1646), 1, + sym__space, + ACTIONS(2014), 1, + anon_sym_DOLLAR, + ACTIONS(6982), 1, + anon_sym_LPAREN2, + ACTIONS(7959), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7961), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8406), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8408), 1, + aux_sym__immediate_decimal_token3, + STATE(4466), 1, + sym__immediate_decimal, + STATE(4750), 1, sym_comment, - ACTIONS(8534), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1644), 2, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_SEMI, + STATE(4465), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [173867] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1546), 1, + sym__space, + ACTIONS(2014), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [183934] = 4, + ACTIONS(6982), 1, + anon_sym_LPAREN2, + ACTIONS(7959), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7961), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8406), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8408), 1, + aux_sym__immediate_decimal_token3, + STATE(4473), 1, + sym__immediate_decimal, + STATE(4751), 1, + sym_comment, + ACTIONS(1538), 2, + sym__newline, + anon_sym_SEMI, + STATE(4469), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [173906] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2017), 1, + ACTIONS(2278), 1, anon_sym_DASH2, - STATE(5017), 1, + STATE(4752), 1, sym_comment, - ACTIONS(2023), 11, + ACTIONS(2280), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -394396,14 +377202,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183957] = 4, + [173929] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2025), 1, + ACTIONS(2278), 1, anon_sym_DASH2, - STATE(5018), 1, + STATE(4753), 1, sym_comment, - ACTIONS(2031), 11, + ACTIONS(2280), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -394415,31 +377221,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183980] = 4, + [173952] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8540), 1, - anon_sym_DASH2, - STATE(5019), 1, + STATE(4754), 1, sym_comment, - ACTIONS(8538), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8020), 12, + 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, - [184003] = 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, + [173973] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5020), 1, + STATE(4755), 1, sym_comment, - ACTIONS(8542), 12, + ACTIONS(8026), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394451,32 +377257,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_RPAREN, - [184024] = 4, + [173994] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8546), 1, - anon_sym_DASH2, - STATE(5021), 1, + STATE(4756), 1, sym_comment, - ACTIONS(8544), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8462), 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, - [184047] = 3, + [174015] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5022), 1, + STATE(4757), 1, sym_comment, - ACTIONS(8548), 12, + ACTIONS(8022), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394488,15 +377293,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, - [184068] = 4, + [174036] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7781), 1, + ACTIONS(2282), 1, anon_sym_DASH2, - STATE(5023), 1, + STATE(4758), 1, sym_comment, - ACTIONS(7779), 11, + ACTIONS(2284), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -394508,35 +377312,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [184091] = 6, + [174059] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8550), 1, - anon_sym_DOT, - ACTIONS(8552), 1, - aux_sym__immediate_decimal_token2, - STATE(5024), 1, - sym_comment, - ACTIONS(1492), 3, + ACTIONS(2286), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1494), 7, + STATE(4759), 1, + sym_comment, + ACTIONS(2288), 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, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [184118] = 3, + [174082] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(5025), 1, - sym_comment, - ACTIONS(8554), 12, + ACTIONS(3756), 1, sym__newline, - anon_sym_SEMI, + STATE(756), 1, + aux_sym__pipe_separator, + STATE(4760), 1, + sym_comment, + STATE(4916), 1, + aux_sym_shebang_repeat1, + ACTIONS(2612), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -394546,13 +377352,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, - [184139] = 3, + [174109] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5026), 1, + STATE(4761), 1, sym_comment, - ACTIONS(8556), 12, + ACTIONS(8464), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394565,14 +377370,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [184160] = 4, + [174130] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2328), 1, + ACTIONS(2290), 1, anon_sym_DASH2, - STATE(5027), 1, + STATE(4762), 1, sym_comment, - ACTIONS(2330), 11, + ACTIONS(2292), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -394584,14 +377389,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [184183] = 4, + [174153] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2332), 1, + ACTIONS(2294), 1, anon_sym_DASH2, - STATE(5028), 1, + STATE(4763), 1, sym_comment, - ACTIONS(2334), 11, + ACTIONS(2296), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -394603,31 +377408,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [184206] = 4, + [174176] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2336), 1, - anon_sym_DASH2, - STATE(5029), 1, + STATE(4764), 1, sym_comment, - ACTIONS(2338), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8114), 12, + 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, - [184229] = 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, + [174197] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5030), 1, + STATE(4765), 1, sym_comment, - ACTIONS(8112), 12, + ACTIONS(8070), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -394640,36 +377444,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [184250] = 9, + [174218] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(4766), 1, + sym_comment, + ACTIONS(8466), 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, + [174239] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1579), 1, + ACTIONS(938), 1, anon_sym_DASH2, - ACTIONS(4673), 1, - anon_sym_DOT_DOT2, - ACTIONS(7128), 1, - aux_sym_unquoted_token2, - ACTIONS(8558), 1, - sym_filesize_unit, - ACTIONS(8560), 1, - sym_duration_unit, - STATE(5031), 1, + ACTIONS(8110), 1, + anon_sym_DOT2, + STATE(3842), 1, + sym_path, + STATE(4767), 1, sym_comment, - ACTIONS(4675), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1591), 5, - ts_builtin_sym_end, + STATE(4768), 1, + aux_sym_cell_path_repeat1, + ACTIONS(940), 8, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - [184283] = 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + [174268] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(5032), 1, + ACTIONS(931), 1, + anon_sym_DASH2, + ACTIONS(8468), 1, + anon_sym_DOT2, + STATE(3842), 1, + sym_path, + STATE(4768), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(933), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [174295] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(4769), 1, sym_comment, - ACTIONS(8562), 12, + ACTIONS(8072), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394681,13 +377523,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, - [184304] = 3, + [174316] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5033), 1, + STATE(4770), 1, sym_comment, - ACTIONS(8564), 12, + ACTIONS(8471), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394700,14 +377541,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [184325] = 4, + [174337] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8568), 1, + ACTIONS(8475), 1, anon_sym_DASH2, - STATE(5034), 1, + STATE(4771), 1, sym_comment, - ACTIONS(8566), 11, + ACTIONS(8473), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -394719,69 +377560,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [184348] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5493), 1, - anon_sym_LPAREN2, - ACTIONS(5497), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5499), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5834), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8478), 1, - anon_sym_DOLLAR, - ACTIONS(8480), 1, - anon_sym_DOLLAR2, - ACTIONS(8482), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8484), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8570), 1, - anon_sym_RBRACK, - STATE(2827), 1, - sym__immediate_decimal, - STATE(5035), 1, - sym_comment, - STATE(2965), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [184389] = 12, + [174360] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8340), 1, - anon_sym_DOLLAR, - ACTIONS(8342), 1, - anon_sym_DASH_DASH, - ACTIONS(8344), 1, + ACTIONS(8479), 1, anon_sym_DASH2, - ACTIONS(8346), 1, - anon_sym_LBRACE, - STATE(1755), 1, - sym_block, - STATE(1761), 1, - sym_val_closure, - STATE(5036), 1, + STATE(4772), 1, sym_comment, - STATE(5422), 1, - sym__flag, - STATE(5537), 1, - aux_sym_ctrl_do_repeat1, - STATE(801), 2, - sym__blosure, - sym_val_variable, - STATE(5217), 2, - sym_short_flag, - sym_long_flag, - [184428] = 4, + ACTIONS(8477), 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, + [174383] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2475), 1, + ACTIONS(8483), 1, anon_sym_DASH2, - STATE(5037), 1, + STATE(4773), 1, sym_comment, - ACTIONS(2477), 11, + ACTIONS(8481), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -394793,12 +377598,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [184451] = 3, + [174406] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5038), 1, + STATE(4774), 1, sym_comment, - ACTIONS(8572), 12, + ACTIONS(8485), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394811,38 +377616,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [184472] = 9, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8576), 1, - anon_sym_LBRACK, - ACTIONS(8578), 1, - anon_sym_DASH_DASH, - ACTIONS(8580), 1, - anon_sym_DASH2, - STATE(5039), 1, - sym_comment, - STATE(5062), 1, - aux_sym_overlay_hide_repeat1, - STATE(5217), 2, - sym_short_flag, - sym_long_flag, - STATE(5653), 2, - sym_val_list, - sym__flag, - ACTIONS(8574), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [184505] = 4, + [174427] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2479), 1, + ACTIONS(8489), 1, anon_sym_DASH2, - STATE(5040), 1, + STATE(4775), 1, sym_comment, - ACTIONS(2481), 11, + ACTIONS(8487), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -394854,56 +377635,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [184528] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(5041), 1, - sym_comment, - ACTIONS(8582), 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, - [184549] = 9, + [174450] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8576), 1, + ACTIONS(8491), 1, anon_sym_LBRACK, - ACTIONS(8578), 1, + ACTIONS(8494), 1, anon_sym_DASH_DASH, - ACTIONS(8580), 1, + ACTIONS(8497), 1, anon_sym_DASH2, - STATE(5042), 1, + STATE(4776), 2, sym_comment, - STATE(5049), 1, aux_sym_overlay_hide_repeat1, - STATE(5217), 2, + STATE(4957), 2, sym_short_flag, sym_long_flag, - STATE(5653), 2, + STATE(5362), 2, sym_val_list, sym__flag, - ACTIONS(8584), 4, + ACTIONS(6187), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [184582] = 4, + [174481] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8588), 1, + ACTIONS(8502), 1, anon_sym_DASH2, - STATE(5043), 1, + STATE(4777), 1, sym_comment, - ACTIONS(8586), 11, + ACTIONS(8500), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -394915,15 +377677,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [184605] = 3, + [174504] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1489), 1, + sym__entry_separator, + ACTIONS(3048), 1, + anon_sym_DOLLAR, + ACTIONS(8036), 1, + anon_sym_LPAREN2, + ACTIONS(8044), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8046), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8504), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8506), 1, + aux_sym__immediate_decimal_token3, + STATE(4778), 1, + sym_comment, + STATE(6399), 1, + sym__immediate_decimal, + ACTIONS(1479), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(6398), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [174543] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(5044), 1, - sym_comment, - ACTIONS(5104), 12, - ts_builtin_sym_end, + ACTIONS(3756), 1, sym__newline, - anon_sym_SEMI, + STATE(752), 1, + aux_sym__pipe_separator, + STATE(4779), 1, + sym_comment, + STATE(4916), 1, + aux_sym_shebang_repeat1, + ACTIONS(2612), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -394933,12 +377725,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, - [184626] = 3, + [174570] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2490), 1, + anon_sym_DOLLAR, + ACTIONS(5401), 1, + anon_sym_LPAREN2, + ACTIONS(5405), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5407), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5409), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5490), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8396), 1, + anon_sym_DOLLAR2, + ACTIONS(8508), 1, + anon_sym_RBRACK, + ACTIONS(8510), 1, + aux_sym__immediate_decimal_token1, + STATE(2571), 1, + sym__immediate_decimal, + STATE(4780), 1, + sym_comment, + STATE(2708), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [174611] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5045), 1, + STATE(4781), 1, sym_comment, - ACTIONS(6995), 12, + ACTIONS(8058), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394950,19 +377771,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, - [184647] = 6, + [174632] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - STATE(793), 1, - aux_sym__pipe_separator, - STATE(5046), 1, + ACTIONS(1445), 1, + anon_sym_LBRACE, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(6947), 1, + anon_sym_DOLLAR, + ACTIONS(8512), 1, + anon_sym_DOT, + ACTIONS(8516), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8518), 1, + aux_sym__immediate_decimal_token5, + STATE(4782), 1, sym_comment, - STATE(5183), 1, - aux_sym_shebang_repeat1, - ACTIONS(2592), 9, + STATE(5741), 1, + sym__immediate_decimal, + ACTIONS(8514), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5947), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [174671] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(4783), 1, + sym_comment, + ACTIONS(8520), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -394972,13 +377815,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, - [184674] = 3, + anon_sym_RPAREN, + [174692] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5047), 1, + STATE(4784), 1, sym_comment, - ACTIONS(8148), 12, - ts_builtin_sym_end, + ACTIONS(8522), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -394990,12 +377833,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, - [184695] = 3, + anon_sym_RPAREN, + [174713] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5468), 1, + anon_sym_LPAREN2, + ACTIONS(5472), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5474), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5760), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8394), 1, + anon_sym_DOLLAR, + ACTIONS(8396), 1, + anon_sym_DOLLAR2, + ACTIONS(8398), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8400), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8524), 1, + anon_sym_RBRACK, + STATE(2677), 1, + sym__immediate_decimal, + STATE(4785), 1, + sym_comment, + STATE(2780), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [174754] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5048), 1, + STATE(4786), 1, sym_comment, - ACTIONS(8056), 12, + ACTIONS(8074), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -395008,99 +377880,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, - [184716] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8590), 1, - anon_sym_LBRACK, - ACTIONS(8593), 1, - anon_sym_DASH_DASH, - ACTIONS(8596), 1, - anon_sym_DASH2, - STATE(5049), 2, - sym_comment, - aux_sym_overlay_hide_repeat1, - STATE(5217), 2, - sym_short_flag, - sym_long_flag, - STATE(5653), 2, - sym_val_list, - sym__flag, - ACTIONS(6273), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [184747] = 6, + [174775] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8599), 1, + ACTIONS(8526), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8601), 1, + ACTIONS(8528), 1, aux_sym__immediate_decimal_token2, - STATE(5050), 1, + STATE(4787), 1, sym_comment, - ACTIONS(1484), 4, + ACTIONS(1491), 4, sym__newline, anon_sym_SEMI, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1486), 6, + ACTIONS(1493), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [184774] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(931), 1, - anon_sym_DASH2, - ACTIONS(8128), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(5051), 1, - sym_comment, - STATE(5052), 1, - aux_sym_cell_path_repeat1, - ACTIONS(933), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [184803] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(935), 1, - anon_sym_DASH2, - ACTIONS(8603), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(5052), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(937), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [184830] = 3, + [174802] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5053), 1, + STATE(4788), 1, sym_comment, - ACTIONS(8366), 12, + ACTIONS(6927), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -395113,12 +377919,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, - [184851] = 3, + [174823] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5054), 1, + STATE(4789), 1, sym_comment, - ACTIONS(8606), 12, + ACTIONS(6933), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395131,13 +377937,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [184872] = 3, + [174844] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5055), 1, + STATE(4790), 1, sym_comment, - ACTIONS(8266), 12, - ts_builtin_sym_end, + ACTIONS(8530), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395149,13 +377954,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, - [184893] = 3, + anon_sym_RPAREN, + [174865] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5056), 1, + STATE(4791), 1, sym_comment, - ACTIONS(6959), 12, - ts_builtin_sym_end, + ACTIONS(8532), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395167,68 +377972,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, - [184914] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1431), 1, - anon_sym_RBRACK, - ACTIONS(1445), 1, - sym__entry_separator, - ACTIONS(1447), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(3122), 1, - anon_sym_DOLLAR, - ACTIONS(8096), 1, - anon_sym_LPAREN2, - ACTIONS(8496), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8498), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8500), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8502), 1, - aux_sym__immediate_decimal_token5, - STATE(5057), 1, - sym_comment, - STATE(6231), 1, - sym__immediate_decimal, - STATE(6868), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [184955] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1431), 1, - anon_sym_RBRACE, - ACTIONS(1445), 1, - sym__entry_separator, - ACTIONS(1447), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(3122), 1, - anon_sym_DOLLAR, - ACTIONS(8096), 1, - anon_sym_LPAREN2, - ACTIONS(8608), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8610), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8612), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8614), 1, - aux_sym__immediate_decimal_token5, - STATE(5058), 1, - sym_comment, - STATE(6399), 1, - sym__immediate_decimal, - STATE(6868), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [184996] = 3, + anon_sym_RPAREN, + [174886] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5059), 1, + STATE(4792), 1, sym_comment, - ACTIONS(8124), 12, + ACTIONS(8102), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -395241,13 +377991,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, - [185017] = 3, + [174907] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5060), 1, + STATE(4793), 1, sym_comment, - ACTIONS(8368), 12, - ts_builtin_sym_end, + ACTIONS(8534), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395259,87 +378008,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [185038] = 12, - ACTIONS(3), 1, + anon_sym_RPAREN, + [174928] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1646), 1, - sym__space, - ACTIONS(2134), 1, - anon_sym_DOLLAR, - ACTIONS(7048), 1, - anon_sym_LPAREN2, - ACTIONS(7985), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7987), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8616), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8618), 1, - aux_sym__immediate_decimal_token3, - STATE(4570), 1, - sym__immediate_decimal, - STATE(5061), 1, + STATE(4794), 1, sym_comment, - ACTIONS(1644), 2, + ACTIONS(8536), 12, sym__newline, anon_sym_SEMI, - STATE(4569), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [185077] = 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, + anon_sym_RPAREN, + [174949] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8576), 1, + ACTIONS(8540), 1, anon_sym_LBRACK, - ACTIONS(8578), 1, + ACTIONS(8542), 1, anon_sym_DASH_DASH, - ACTIONS(8580), 1, + ACTIONS(8544), 1, anon_sym_DASH2, - STATE(5049), 1, - aux_sym_overlay_hide_repeat1, - STATE(5062), 1, + STATE(4795), 1, sym_comment, - STATE(5217), 2, + STATE(4846), 1, + aux_sym_overlay_hide_repeat1, + STATE(4957), 2, sym_short_flag, sym_long_flag, - STATE(5653), 2, + STATE(5362), 2, sym_val_list, sym__flag, - ACTIONS(8620), 4, + ACTIONS(8538), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [185110] = 9, + [174982] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8576), 1, - anon_sym_LBRACK, - ACTIONS(8578), 1, - anon_sym_DASH_DASH, - ACTIONS(8580), 1, - anon_sym_DASH2, - STATE(5042), 1, - aux_sym_overlay_hide_repeat1, - STATE(5063), 1, + STATE(4796), 1, sym_comment, - STATE(5217), 2, - sym_short_flag, - sym_long_flag, - STATE(5653), 2, - sym_val_list, - sym__flag, - ACTIONS(8622), 4, + ACTIONS(8546), 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, - anon_sym_RBRACE, - [185143] = 3, + [175003] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5064), 1, + STATE(4797), 1, sym_comment, - ACTIONS(8364), 12, + ACTIONS(8094), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -395352,147 +378087,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, - [185164] = 12, + [175024] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8342), 1, - anon_sym_DASH_DASH, - ACTIONS(8344), 1, - anon_sym_DASH2, - ACTIONS(8624), 1, - anon_sym_DOLLAR, - ACTIONS(8626), 1, - anon_sym_LBRACE, - STATE(2094), 1, - sym_val_closure, - STATE(2116), 1, - sym_block, - STATE(5065), 1, - sym_comment, - STATE(5422), 1, - sym__flag, - STATE(5537), 1, - aux_sym_ctrl_do_repeat1, - STATE(822), 2, - sym__blosure, - sym_val_variable, - STATE(5217), 2, - sym_short_flag, - sym_long_flag, - [185203] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1577), 1, - sym__space, - ACTIONS(2134), 1, - anon_sym_DOLLAR, - ACTIONS(7048), 1, - anon_sym_LPAREN2, - ACTIONS(7985), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7987), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8616), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8618), 1, - aux_sym__immediate_decimal_token3, - STATE(4575), 1, - sym__immediate_decimal, - STATE(5066), 1, + STATE(4798), 1, sym_comment, - ACTIONS(1575), 2, + ACTIONS(8096), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - STATE(4571), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [185242] = 13, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [175045] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1466), 1, - anon_sym_RBRACE, - ACTIONS(1468), 1, - sym__entry_separator, - ACTIONS(1470), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(3122), 1, - anon_sym_DOLLAR, - ACTIONS(8096), 1, + ACTIONS(5468), 1, anon_sym_LPAREN2, - ACTIONS(8608), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8610), 1, + ACTIONS(5472), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8612), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8614), 1, - aux_sym__immediate_decimal_token5, - STATE(5067), 1, - sym_comment, - STATE(6469), 1, - sym__immediate_decimal, - STATE(7062), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [185283] = 11, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(3610), 1, - anon_sym_DOLLAR, - ACTIONS(4075), 1, - anon_sym_LPAREN2, - ACTIONS(8490), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8492), 1, - aux_sym__immediate_decimal_token5, - STATE(5068), 1, - sym_comment, - STATE(7142), 1, - sym__immediate_decimal, - ACTIONS(1445), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8488), 2, + ACTIONS(5474), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1804), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [185320] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1552), 1, - sym__space, - ACTIONS(2134), 1, + ACTIONS(5760), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8394), 1, anon_sym_DOLLAR, - ACTIONS(7048), 1, - anon_sym_LPAREN2, - ACTIONS(7985), 1, + ACTIONS(8396), 1, + anon_sym_DOLLAR2, + ACTIONS(8398), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7987), 1, + ACTIONS(8400), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8616), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8618), 1, - aux_sym__immediate_decimal_token3, - STATE(4577), 1, + ACTIONS(8548), 1, + anon_sym_RBRACK, + STATE(2677), 1, sym__immediate_decimal, - STATE(5069), 1, + STATE(4799), 1, sym_comment, - ACTIONS(1544), 2, - sym__newline, - anon_sym_SEMI, - STATE(4576), 2, + STATE(2780), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [185359] = 3, + [175086] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5070), 1, + STATE(4800), 1, sym_comment, - ACTIONS(8628), 12, + ACTIONS(8098), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395504,13 +378151,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, - [185380] = 3, + [175107] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5071), 1, + STATE(4801), 1, sym_comment, - ACTIONS(8630), 12, + ACTIONS(8100), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395522,33 +378169,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, - [185401] = 3, + [175128] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(5072), 1, + ACTIONS(1973), 1, + anon_sym_DASH2, + STATE(4802), 1, sym_comment, - ACTIONS(8632), 12, + ACTIONS(1979), 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, - [185422] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175151] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8636), 1, + ACTIONS(8552), 1, anon_sym_DASH2, - STATE(5073), 1, + STATE(4803), 1, sym_comment, - ACTIONS(8634), 11, + ACTIONS(8550), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -395560,14 +378207,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185445] = 4, + [175174] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8636), 1, + ACTIONS(7689), 1, anon_sym_DASH2, - STATE(5074), 1, + STATE(4804), 1, sym_comment, - ACTIONS(8634), 11, + ACTIONS(7687), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -395579,12 +378226,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185468] = 3, + [175197] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5075), 1, + STATE(4805), 1, sym_comment, - ACTIONS(8638), 12, + ACTIONS(8554), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395597,33 +378244,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [185489] = 6, - ACTIONS(3), 1, + [175218] = 9, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8640), 1, - anon_sym_DOT, - ACTIONS(8642), 1, - aux_sym__immediate_decimal_token2, - STATE(5076), 1, + ACTIONS(8540), 1, + anon_sym_LBRACK, + ACTIONS(8542), 1, + anon_sym_DASH_DASH, + ACTIONS(8544), 1, + anon_sym_DASH2, + STATE(4776), 1, + aux_sym_overlay_hide_repeat1, + STATE(4806), 1, sym_comment, - ACTIONS(1492), 4, - anon_sym_RBRACK, + STATE(4957), 2, + sym_short_flag, + sym_long_flag, + STATE(5362), 2, + sym_val_list, + sym__flag, + ACTIONS(8556), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1494), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [185516] = 3, + [175251] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5077), 1, + STATE(4807), 1, sym_comment, - ACTIONS(6997), 12, + ACTIONS(8558), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395636,91 +378286,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [185537] = 6, + [175272] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1431), 1, + anon_sym_RBRACE, + ACTIONS(1445), 1, + sym__entry_separator, + ACTIONS(1447), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(3048), 1, + anon_sym_DOLLAR, + ACTIONS(8036), 1, + anon_sym_LPAREN2, + ACTIONS(8560), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8562), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8564), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8566), 1, + aux_sym__immediate_decimal_token5, + STATE(4808), 1, + sym_comment, + STATE(6106), 1, + sym__immediate_decimal, + STATE(6406), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [175313] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5750), 1, - sym__newline, - ACTIONS(8644), 1, + ACTIONS(8122), 1, + anon_sym_DOLLAR, + ACTIONS(8124), 1, + anon_sym_DASH_DASH, + ACTIONS(8126), 1, anon_sym_DASH2, - STATE(5078), 1, + ACTIONS(8128), 1, + anon_sym_LBRACE, + STATE(1689), 1, + sym_block, + STATE(1711), 1, + sym_val_closure, + STATE(4809), 1, + sym_comment, + STATE(5175), 1, + sym__flag, + STATE(5186), 1, + aux_sym_ctrl_do_repeat1, + STATE(773), 2, + sym__blosure, + sym_val_variable, + STATE(4957), 2, + sym_short_flag, + sym_long_flag, + [175352] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(2298), 1, + anon_sym_DASH2, + STATE(4810), 1, sym_comment, - ACTIONS(1278), 2, + ACTIONS(2300), 11, anon_sym_EQ, - anon_sym_COLON, - ACTIONS(5753), 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, - [185564] = 3, + [175375] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(5079), 1, + ACTIONS(1949), 1, + anon_sym_DASH2, + STATE(4811), 1, sym_comment, - ACTIONS(8412), 12, - ts_builtin_sym_end, + ACTIONS(1955), 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, - [185585] = 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, + [175398] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(5080), 1, + ACTIONS(1957), 1, + anon_sym_DASH2, + STATE(4812), 1, sym_comment, - ACTIONS(8646), 12, + ACTIONS(1963), 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, - [185606] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175421] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8648), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8650), 1, - aux_sym__immediate_decimal_token2, - STATE(5081), 1, - sym_comment, - ACTIONS(1484), 3, + ACTIONS(1965), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1486), 7, + STATE(4813), 1, + sym_comment, + ACTIONS(1971), 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, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [185633] = 3, + [175444] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5082), 1, + STATE(4814), 1, sym_comment, - ACTIONS(5100), 12, - ts_builtin_sym_end, + ACTIONS(8568), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395732,12 +378434,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, - [185654] = 3, + anon_sym_RPAREN, + [175465] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5083), 1, + STATE(4815), 1, sym_comment, - ACTIONS(8652), 12, + ACTIONS(8570), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395750,12 +378453,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [185675] = 3, + [175486] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5084), 1, + STATE(4816), 1, sym_comment, - ACTIONS(8654), 12, + ACTIONS(8572), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395768,68 +378471,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [185696] = 3, + [175507] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(5085), 1, + ACTIONS(2302), 1, + anon_sym_DASH2, + STATE(4817), 1, sym_comment, - ACTIONS(8656), 12, + ACTIONS(2304), 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, - [185717] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175530] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(5086), 1, + ACTIONS(2306), 1, + anon_sym_DASH2, + STATE(4818), 1, sym_comment, - ACTIONS(8658), 12, + ACTIONS(2308), 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, - [185738] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175553] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(5087), 1, + ACTIONS(2310), 1, + anon_sym_DASH2, + STATE(4819), 1, sym_comment, - ACTIONS(8660), 12, + ACTIONS(2312), 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_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175576] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1473), 1, + anon_sym_RBRACE, + ACTIONS(1475), 1, + sym__entry_separator, + ACTIONS(1477), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(3048), 1, + anon_sym_DOLLAR, + ACTIONS(8036), 1, + anon_sym_LPAREN2, + ACTIONS(8560), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8562), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8564), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8566), 1, + aux_sym__immediate_decimal_token5, + STATE(4820), 1, + sym_comment, + STATE(6234), 1, + sym__immediate_decimal, + STATE(6402), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [175617] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(2318), 1, + anon_sym_DASH2, + STATE(4821), 1, + sym_comment, + ACTIONS(2320), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [185759] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175640] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2033), 1, + ACTIONS(2322), 1, anon_sym_DASH2, - STATE(5088), 1, + STATE(4822), 1, sym_comment, - ACTIONS(2039), 11, + ACTIONS(2324), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -395841,18 +378594,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185782] = 6, + [175663] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7873), 1, + ACTIONS(7761), 1, sym__newline, - ACTIONS(8662), 1, + ACTIONS(8574), 1, anon_sym_else, - STATE(5089), 1, + STATE(4823), 1, sym_comment, - STATE(5092), 1, + STATE(4829), 1, aux_sym_shebang_repeat1, - ACTIONS(7876), 9, + ACTIONS(7764), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -395862,42 +378615,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [185809] = 12, - ACTIONS(3), 1, + [175690] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1482), 1, - sym__entry_separator, - ACTIONS(3122), 1, + ACTIONS(2326), 1, + anon_sym_DASH2, + STATE(4824), 1, + sym_comment, + ACTIONS(2328), 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, - ACTIONS(8096), 1, - anon_sym_LPAREN2, - ACTIONS(8330), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8332), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8448), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8450), 1, - aux_sym__immediate_decimal_token3, - STATE(5090), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175713] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(2330), 1, + anon_sym_DASH2, + STATE(4825), 1, sym_comment, - STATE(6840), 1, - sym__immediate_decimal, - ACTIONS(1472), 2, + ACTIONS(2332), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(6836), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [185848] = 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [175736] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(5091), 1, + ACTIONS(2334), 1, + anon_sym_DASH2, + STATE(4826), 1, sym_comment, - ACTIONS(8114), 12, - ts_builtin_sym_end, + ACTIONS(2336), 11, + anon_sym_EQ, + sym_identifier, 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, + [175759] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(2338), 1, + anon_sym_DASH2, + STATE(4827), 1, + sym_comment, + ACTIONS(2340), 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, + [175782] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(2342), 1, + anon_sym_DASH2, + STATE(4828), 1, + sym_comment, + ACTIONS(2344), 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, + [175805] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7890), 1, + sym__newline, + ACTIONS(8576), 1, + anon_sym_else, + STATE(4829), 1, + sym_comment, + STATE(4834), 1, + aux_sym_shebang_repeat1, + ACTIONS(7893), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -395907,18 +378731,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, - [185869] = 6, + [175832] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7929), 1, + ACTIONS(7897), 1, sym__newline, - ACTIONS(8664), 1, + ACTIONS(8578), 1, anon_sym_else, - STATE(5092), 1, + STATE(4830), 1, sym_comment, - STATE(5096), 1, + STATE(4835), 1, aux_sym_shebang_repeat1, - ACTIONS(7932), 9, + ACTIONS(7900), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -395928,18 +378752,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, - [185896] = 6, + [175859] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8049), 1, + ACTIONS(7904), 1, sym__newline, - ACTIONS(8666), 1, + ACTIONS(8580), 1, anon_sym_else, - STATE(5093), 1, + STATE(4831), 1, sym_comment, - STATE(5097), 1, + STATE(4836), 1, aux_sym_shebang_repeat1, - ACTIONS(8052), 9, + ACTIONS(7907), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -395949,18 +378773,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, - [185923] = 6, + [175886] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7936), 1, - sym__newline, - ACTIONS(8668), 1, - anon_sym_else, - STATE(5094), 1, + STATE(4832), 1, sym_comment, - STATE(5098), 1, - aux_sym_shebang_repeat1, - ACTIONS(7939), 9, + ACTIONS(8582), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -395970,12 +378790,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, - [185950] = 3, + anon_sym_RPAREN, + [175907] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5095), 1, + STATE(4833), 1, sym_comment, - ACTIONS(8670), 12, + ACTIONS(8584), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -395988,18 +378809,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [185971] = 6, + [175928] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4953), 1, + ACTIONS(4854), 1, sym__newline, - ACTIONS(8672), 1, + ACTIONS(8586), 1, anon_sym_else, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(5096), 1, + STATE(4834), 1, sym_comment, - ACTIONS(1286), 9, + ACTIONS(1274), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -396009,18 +378830,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, - [185998] = 6, + [175955] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7835), 1, + ACTIONS(7768), 1, sym__newline, - ACTIONS(8675), 1, + ACTIONS(8589), 1, anon_sym_else, - STATE(5097), 1, + STATE(4835), 1, sym_comment, - STATE(5101), 1, + STATE(4840), 1, aux_sym_shebang_repeat1, - ACTIONS(7838), 9, + ACTIONS(7771), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -396030,18 +378851,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, - [186025] = 6, + [175982] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7842), 1, + ACTIONS(7852), 1, sym__newline, - ACTIONS(8677), 1, + ACTIONS(8591), 1, anon_sym_else, - STATE(5098), 1, + STATE(4836), 1, sym_comment, - STATE(5102), 1, + STATE(4841), 1, aux_sym_shebang_repeat1, - ACTIONS(7845), 9, + ACTIONS(7855), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -396051,18 +378872,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, - [186052] = 6, + [176009] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7851), 1, + ACTIONS(7871), 1, sym__newline, - ACTIONS(8679), 1, + ACTIONS(8593), 1, anon_sym_else, - STATE(5099), 1, + STATE(4837), 1, sym_comment, - STATE(5103), 1, + STATE(4842), 1, aux_sym_shebang_repeat1, - ACTIONS(7854), 9, + ACTIONS(7874), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -396072,12 +378893,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, - [186079] = 3, + [176036] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5100), 1, + STATE(4838), 1, sym_comment, - ACTIONS(8681), 12, + ACTIONS(8595), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396090,18 +378911,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [186100] = 6, + [176057] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4953), 1, - sym__newline, - ACTIONS(8683), 1, - anon_sym_else, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(5101), 1, + STATE(4839), 1, sym_comment, - ACTIONS(1286), 9, + ACTIONS(8597), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -396111,18 +378928,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, - [186127] = 6, + anon_sym_RPAREN, + [176078] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4953), 1, + ACTIONS(4854), 1, sym__newline, - ACTIONS(8686), 1, + ACTIONS(8599), 1, anon_sym_else, - STATE(1653), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(5102), 1, + STATE(4840), 1, sym_comment, - ACTIONS(1286), 9, + ACTIONS(1274), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -396132,18 +378950,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, - [186154] = 6, + [176105] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7907), 1, + ACTIONS(4854), 1, sym__newline, - ACTIONS(8689), 1, + ACTIONS(8602), 1, anon_sym_else, - STATE(5103), 1, - sym_comment, - STATE(5105), 1, + STATE(1554), 1, aux_sym_shebang_repeat1, - ACTIONS(7910), 9, + STATE(4841), 1, + sym_comment, + ACTIONS(1274), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -396153,37 +378971,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, - [186181] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8693), 1, - anon_sym_DASH2, - STATE(5104), 1, - sym_comment, - ACTIONS(8691), 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, - [186204] = 6, + [176132] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4953), 1, + ACTIONS(7838), 1, sym__newline, - ACTIONS(8695), 1, + ACTIONS(8605), 1, anon_sym_else, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(5105), 1, + STATE(4842), 1, sym_comment, - ACTIONS(1286), 9, + STATE(4847), 1, + aux_sym_shebang_repeat1, + ACTIONS(7841), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -396193,13 +378992,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, - [186231] = 3, + [176159] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5106), 1, + STATE(4843), 1, sym_comment, - ACTIONS(7863), 12, - ts_builtin_sym_end, + ACTIONS(8607), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396211,13 +379009,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, - [186252] = 3, + anon_sym_RPAREN, + [176180] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(5107), 1, + ACTIONS(8609), 1, + anon_sym_DOT, + ACTIONS(8611), 1, + aux_sym__immediate_decimal_token2, + STATE(4844), 1, sym_comment, - ACTIONS(8126), 12, - ts_builtin_sym_end, + ACTIONS(1499), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1501), 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, + [176207] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(4845), 1, + sym_comment, + ACTIONS(8613), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396229,60 +379048,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, - [186273] = 4, + anon_sym_RPAREN, + [176228] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2469), 1, - anon_sym_DASH2, - STATE(5108), 1, - sym_comment, - ACTIONS(2471), 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, + ACTIONS(8540), 1, + anon_sym_LBRACK, + ACTIONS(8542), 1, anon_sym_DASH_DASH, - [186296] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1482), 1, - sym__space, - ACTIONS(2134), 1, - anon_sym_DOLLAR, - ACTIONS(7048), 1, - anon_sym_LPAREN2, - ACTIONS(7985), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7987), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8616), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8618), 1, - aux_sym__immediate_decimal_token3, - STATE(4732), 1, - sym__immediate_decimal, - STATE(5109), 1, + ACTIONS(8544), 1, + anon_sym_DASH2, + STATE(4776), 1, + aux_sym_overlay_hide_repeat1, + STATE(4846), 1, sym_comment, - ACTIONS(1472), 2, + STATE(4957), 2, + sym_short_flag, + sym_long_flag, + STATE(5362), 2, + sym_val_list, + sym__flag, + ACTIONS(8615), 4, sym__newline, anon_sym_SEMI, - STATE(4731), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [186335] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [176261] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(5110), 1, - sym_comment, - ACTIONS(8698), 12, + ACTIONS(4854), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(8617), 1, + anon_sym_else, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4847), 1, + sym_comment, + ACTIONS(1274), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -396292,105 +379094,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, - [186356] = 13, + [176288] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5493), 1, - anon_sym_LPAREN2, - ACTIONS(5497), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5499), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5834), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8478), 1, - anon_sym_DOLLAR, - ACTIONS(8480), 1, - anon_sym_DOLLAR2, - ACTIONS(8482), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8484), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8700), 1, - anon_sym_RBRACK, - STATE(2827), 1, - sym__immediate_decimal, - STATE(5111), 1, - sym_comment, - STATE(2965), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [186397] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(5112), 1, + ACTIONS(8620), 1, + anon_sym_DOT, + ACTIONS(8622), 1, + aux_sym__immediate_decimal_token2, + STATE(4848), 1, sym_comment, - ACTIONS(8702), 12, + ACTIONS(1499), 4, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - [186418] = 12, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1445), 1, - anon_sym_LBRACE, - ACTIONS(1447), 1, + anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(4075), 1, + ACTIONS(1501), 6, + sym__space, anon_sym_LPAREN2, - ACTIONS(7003), 1, - anon_sym_DOLLAR, - ACTIONS(8704), 1, - anon_sym_DOT, - ACTIONS(8708), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8710), 1, - aux_sym__immediate_decimal_token5, - STATE(5113), 1, - sym_comment, - STATE(6135), 1, - sym__immediate_decimal, - ACTIONS(8706), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6751), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [186457] = 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [176315] = 9, ACTIONS(245), 1, anon_sym_POUND, - STATE(5114), 1, + ACTIONS(8540), 1, + anon_sym_LBRACK, + ACTIONS(8542), 1, + anon_sym_DASH_DASH, + ACTIONS(8544), 1, + anon_sym_DASH2, + STATE(4806), 1, + aux_sym_overlay_hide_repeat1, + STATE(4849), 1, sym_comment, - ACTIONS(8712), 12, + STATE(4957), 2, + sym_short_flag, + sym_long_flag, + STATE(5362), 2, + sym_val_list, + sym__flag, + ACTIONS(8624), 4, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_SEMI, anon_sym_RPAREN, - [186478] = 3, + anon_sym_RBRACE, + [176348] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5115), 1, + STATE(4850), 1, sym_comment, - ACTIONS(8350), 12, - ts_builtin_sym_end, + ACTIONS(8626), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396402,32 +379156,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, - [186499] = 3, + anon_sym_RPAREN, + [176369] = 12, ACTIONS(245), 1, anon_sym_POUND, - STATE(5116), 1, + ACTIONS(3078), 1, + anon_sym_DQUOTE, + ACTIONS(3084), 1, + sym_raw_string_begin, + ACTIONS(8452), 1, + sym__newline, + ACTIONS(8628), 1, + sym_identifier, + ACTIONS(8630), 1, + anon_sym_GT2, + STATE(4851), 1, sym_comment, - ACTIONS(8142), 12, - ts_builtin_sym_end, + STATE(4929), 1, + aux_sym_shebang_repeat1, + STATE(5145), 1, + aux_sym_collection_type_repeat1, + STATE(6173), 1, + sym_val_string, + ACTIONS(3080), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5052), 2, + sym__raw_str, + sym__str_double_quotes, + [176408] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(8634), 1, + anon_sym_DASH2, + STATE(4852), 1, + sym_comment, + ACTIONS(8632), 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, - [186520] = 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, + [176431] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7744), 1, + ACTIONS(8634), 1, anon_sym_DASH2, - STATE(5117), 1, + STATE(4853), 1, sym_comment, - ACTIONS(7742), 11, + ACTIONS(8632), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -396439,12 +379222,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [186543] = 3, + [176454] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5118), 1, + STATE(4854), 1, sym_comment, - ACTIONS(8714), 12, + ACTIONS(8636), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396457,39 +379240,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [186564] = 12, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8340), 1, - anon_sym_DOLLAR, - ACTIONS(8342), 1, - anon_sym_DASH_DASH, - ACTIONS(8344), 1, - anon_sym_DASH2, - ACTIONS(8346), 1, - anon_sym_LBRACE, - STATE(1755), 1, - sym_block, - STATE(1761), 1, - sym_val_closure, - STATE(5036), 1, - aux_sym_ctrl_do_repeat1, - STATE(5119), 1, - sym_comment, - STATE(5422), 1, - sym__flag, - STATE(819), 2, - sym__blosure, - sym_val_variable, - STATE(5217), 2, - sym_short_flag, - sym_long_flag, - [186603] = 3, + [176475] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5120), 1, + STATE(4855), 1, sym_comment, - ACTIONS(8716), 12, + ACTIONS(8638), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396502,12 +379258,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [186624] = 3, + [176496] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5121), 1, + STATE(4856), 1, sym_comment, - ACTIONS(8718), 12, + ACTIONS(8640), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396520,12 +379276,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [186645] = 3, + [176517] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8642), 1, + anon_sym_DOT, + ACTIONS(8644), 1, + aux_sym__immediate_decimal_token2, + STATE(4857), 1, + sym_comment, + ACTIONS(1499), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1501), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [176544] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5122), 1, + STATE(4858), 1, sym_comment, - ACTIONS(8720), 12, + ACTIONS(8104), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396537,15 +379315,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, - [186666] = 4, + [176565] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8724), 1, + ACTIONS(7747), 1, anon_sym_DASH2, - STATE(5123), 1, + STATE(4859), 1, sym_comment, - ACTIONS(8722), 11, + ACTIONS(7745), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -396557,76 +379334,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [186689] = 3, + [176588] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(5124), 1, + ACTIONS(8648), 1, + anon_sym_DASH2, + STATE(4860), 1, sym_comment, - ACTIONS(8726), 12, + ACTIONS(8646), 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, - [186710] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8728), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8730), 1, - aux_sym__immediate_decimal_token2, - STATE(5125), 1, - sym_comment, - ACTIONS(1486), 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, - ACTIONS(1484), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [186737] = 10, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3610), 1, - anon_sym_DOLLAR, - ACTIONS(4075), 1, - anon_sym_LPAREN2, - ACTIONS(7957), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7959), 1, - aux_sym__immediate_decimal_token5, - STATE(1802), 1, - sym__immediate_decimal, - STATE(5126), 1, - sym_comment, - ACTIONS(8732), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1801), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1482), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [186772] = 3, + [176611] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5127), 1, + STATE(4861), 1, sym_comment, - ACTIONS(8212), 12, + ACTIONS(8034), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -396639,12 +379371,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, - [186793] = 3, + [176632] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5128), 1, + STATE(4862), 1, sym_comment, - ACTIONS(8734), 12, + ACTIONS(8650), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396657,33 +379389,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [186814] = 6, - ACTIONS(245), 1, + [176653] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - STATE(787), 1, - aux_sym__pipe_separator, - STATE(5129), 1, + ACTIONS(1431), 1, + anon_sym_RBRACK, + ACTIONS(1445), 1, + sym__entry_separator, + ACTIONS(1447), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(3048), 1, + anon_sym_DOLLAR, + ACTIONS(8036), 1, + anon_sym_LPAREN2, + ACTIONS(8442), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8444), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8446), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8448), 1, + aux_sym__immediate_decimal_token5, + STATE(4863), 1, sym_comment, - STATE(5183), 1, - aux_sym_shebang_repeat1, - ACTIONS(2592), 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, - [186841] = 3, + STATE(5940), 1, + sym__immediate_decimal, + STATE(6406), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [176694] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5130), 1, + STATE(4864), 1, sym_comment, - ACTIONS(8352), 12, + ACTIONS(8032), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -396696,78 +379435,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [186862] = 3, - ACTIONS(245), 1, + [176715] = 12, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5131), 1, + ACTIONS(1634), 1, + sym__entry_separator, + ACTIONS(3048), 1, + anon_sym_DOLLAR, + ACTIONS(8036), 1, + anon_sym_LPAREN2, + ACTIONS(8044), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8046), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8504), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8506), 1, + aux_sym__immediate_decimal_token3, + STATE(4865), 1, sym_comment, - ACTIONS(8736), 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, - [186883] = 10, - ACTIONS(245), 1, + STATE(6774), 1, + sym__immediate_decimal, + ACTIONS(1632), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(6749), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [176754] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3610), 1, + ACTIONS(1646), 1, + sym__entry_separator, + ACTIONS(3048), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(8036), 1, anon_sym_LPAREN2, - ACTIONS(7957), 1, + ACTIONS(8044), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7959), 1, + ACTIONS(8046), 1, aux_sym__immediate_decimal_token5, - STATE(1819), 1, - sym__immediate_decimal, - STATE(5132), 1, - sym_comment, - ACTIONS(8732), 2, + ACTIONS(8504), 1, aux_sym__immediate_decimal_token1, + ACTIONS(8506), 1, aux_sym__immediate_decimal_token3, - STATE(1818), 2, + STATE(4866), 1, + sym_comment, + STATE(6395), 1, + sym__immediate_decimal, + ACTIONS(1644), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(6394), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1646), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [186918] = 6, + [176793] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8738), 1, + ACTIONS(1546), 1, + sym__entry_separator, + ACTIONS(3048), 1, + anon_sym_DOLLAR, + ACTIONS(8036), 1, + anon_sym_LPAREN2, + ACTIONS(8044), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8046), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8504), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8506), 1, + aux_sym__immediate_decimal_token3, + STATE(4867), 1, + sym_comment, + STATE(6400), 1, + sym__immediate_decimal, + ACTIONS(1538), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(6396), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [176832] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(8652), 1, anon_sym_DOT, - ACTIONS(8740), 1, + ACTIONS(8654), 1, aux_sym__immediate_decimal_token2, - STATE(5133), 1, + STATE(4868), 1, sym_comment, - ACTIONS(1492), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1494), 6, - sym__space, - anon_sym_LPAREN2, + ACTIONS(1501), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1499), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [186945] = 4, + aux_sym_unquoted_token2, + [176859] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8742), 1, - anon_sym_else, - STATE(5134), 1, + STATE(4869), 1, sym_comment, - ACTIONS(8290), 11, + ACTIONS(8656), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396779,100 +379554,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [186968] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2342), 1, - anon_sym_DASH2, - STATE(5135), 1, - sym_comment, - ACTIONS(2344), 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, - [186991] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2346), 1, - anon_sym_DASH2, - STATE(5136), 1, - sym_comment, - ACTIONS(2348), 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, - [187014] = 10, - ACTIONS(245), 1, + [176880] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3610), 1, - anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(5468), 1, anon_sym_LPAREN2, - ACTIONS(7957), 1, + ACTIONS(5472), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5474), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5760), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8394), 1, + anon_sym_DOLLAR, + ACTIONS(8396), 1, + anon_sym_DOLLAR2, + ACTIONS(8398), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7959), 1, + ACTIONS(8400), 1, aux_sym__immediate_decimal_token5, - STATE(1821), 1, + ACTIONS(8508), 1, + anon_sym_RBRACK, + STATE(2677), 1, sym__immediate_decimal, - STATE(5137), 1, + STATE(4870), 1, sym_comment, - ACTIONS(8732), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1820), 2, + STATE(2780), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1577), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [187049] = 10, + [176921] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3610), 1, + ACTIONS(1477), 1, + aux_sym_unquoted_token2, + ACTIONS(3550), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(7957), 1, + ACTIONS(8660), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7959), 1, + ACTIONS(8662), 1, aux_sym__immediate_decimal_token5, - STATE(1823), 1, - sym__immediate_decimal, - STATE(5138), 1, + STATE(4871), 1, sym_comment, - ACTIONS(8732), 2, + STATE(6571), 1, + sym__immediate_decimal, + ACTIONS(1475), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(8658), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1822), 2, + STATE(1823), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1552), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [187084] = 3, + [176958] = 12, ACTIONS(245), 1, anon_sym_POUND, - STATE(5139), 1, + ACTIONS(3078), 1, + anon_sym_DQUOTE, + ACTIONS(3084), 1, + sym_raw_string_begin, + ACTIONS(8452), 1, + sym__newline, + ACTIONS(8664), 1, + sym_identifier, + ACTIONS(8666), 1, + anon_sym_GT2, + STATE(4872), 1, + sym_comment, + STATE(4899), 1, + aux_sym_shebang_repeat1, + STATE(5154), 1, + aux_sym_collection_type_repeat1, + STATE(6263), 1, + sym_val_string, + ACTIONS(3080), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5052), 2, + sym__raw_str, + sym__str_double_quotes, + [176997] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(4873), 1, sym_comment, - ACTIONS(8744), 12, + ACTIONS(8668), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396885,12 +379654,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187105] = 3, + [177018] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5140), 1, + STATE(4874), 1, sym_comment, - ACTIONS(8746), 12, + ACTIONS(8670), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -396903,88 +379672,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187126] = 13, + [177039] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2608), 1, - anon_sym_DOLLAR, - ACTIONS(5429), 1, - anon_sym_LPAREN2, - ACTIONS(5433), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5435), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5437), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(5552), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8476), 1, - anon_sym_RBRACK, - ACTIONS(8480), 1, - anon_sym_DOLLAR2, - ACTIONS(8748), 1, + ACTIONS(8672), 1, aux_sym__immediate_decimal_token1, - STATE(2749), 1, - sym__immediate_decimal, - STATE(5141), 1, + ACTIONS(8674), 1, + aux_sym__immediate_decimal_token2, + STATE(4875), 1, sym_comment, - STATE(2854), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [187167] = 4, + ACTIONS(1491), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1493), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [177066] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8752), 1, - anon_sym_DASH2, - STATE(5142), 1, + STATE(4876), 1, sym_comment, - ACTIONS(8750), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8676), 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, - [187190] = 12, + [177087] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8342), 1, - anon_sym_DASH_DASH, - ACTIONS(8344), 1, - anon_sym_DASH2, - ACTIONS(8624), 1, - anon_sym_DOLLAR, - ACTIONS(8626), 1, - anon_sym_LBRACE, - STATE(2094), 1, - sym_val_closure, - STATE(2116), 1, - sym_block, - STATE(5065), 1, - aux_sym_ctrl_do_repeat1, - STATE(5143), 1, + ACTIONS(8678), 1, + anon_sym_else, + STATE(4877), 1, sym_comment, - STATE(5422), 1, - sym__flag, - STATE(824), 2, - sym__blosure, - sym_val_variable, - STATE(5217), 2, - sym_short_flag, - sym_long_flag, - [187229] = 4, + ACTIONS(8048), 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, + [177110] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7760), 1, + ACTIONS(8682), 1, anon_sym_DASH2, - STATE(5144), 1, + STATE(4878), 1, sym_comment, - ACTIONS(7758), 11, + ACTIONS(8680), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -396996,12 +379749,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [187252] = 3, + [177133] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5145), 1, + STATE(4879), 1, sym_comment, - ACTIONS(8754), 12, + ACTIONS(8684), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397014,33 +379767,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187273] = 4, + [177154] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2354), 1, - anon_sym_DASH2, - STATE(5146), 1, + STATE(4880), 1, sym_comment, - ACTIONS(2356), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8106), 12, + 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_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [177175] = 11, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(3550), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [187296] = 4, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(8660), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8662), 1, + aux_sym__immediate_decimal_token5, + STATE(4881), 1, + sym_comment, + STATE(6538), 1, + sym__immediate_decimal, + ACTIONS(1445), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(8658), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1773), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [177212] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2358), 1, + ACTIONS(8688), 1, anon_sym_DASH2, - STATE(5147), 1, + STATE(4882), 1, sym_comment, - ACTIONS(2360), 11, + ACTIONS(8686), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -397052,14 +379830,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [187319] = 4, + [177235] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2362), 1, + ACTIONS(8692), 1, anon_sym_DASH2, - STATE(5148), 1, + STATE(4883), 1, sym_comment, - ACTIONS(2364), 11, + ACTIONS(8690), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -397071,14 +379849,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [187342] = 4, + [177258] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2366), 1, + ACTIONS(8696), 1, anon_sym_DASH2, - STATE(5149), 1, + STATE(4884), 1, sym_comment, - ACTIONS(2368), 11, + ACTIONS(8694), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -397090,12 +379868,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [187365] = 3, + [177281] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5150), 1, + STATE(4885), 1, sym_comment, - ACTIONS(8756), 12, + ACTIONS(8698), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397108,13 +379886,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187386] = 3, + [177302] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5151), 1, + STATE(4886), 1, sym_comment, - ACTIONS(8370), 12, - ts_builtin_sym_end, + ACTIONS(8700), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397126,31 +379903,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, - [187407] = 3, + anon_sym_RPAREN, + [177323] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(5152), 1, + ACTIONS(8704), 1, + anon_sym_DASH2, + STATE(4887), 1, sym_comment, - ACTIONS(8758), 12, + ACTIONS(8702), 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, - [187428] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [177346] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5153), 1, + STATE(4888), 1, sym_comment, - ACTIONS(8268), 12, - ts_builtin_sym_end, + ACTIONS(8706), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397162,12 +379940,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, - [187449] = 3, + anon_sym_RPAREN, + [177367] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(5154), 1, + STATE(4889), 1, sym_comment, - ACTIONS(8760), 12, + ACTIONS(8708), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -397180,426 +379959,626 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [187470] = 3, - ACTIONS(245), 1, + [177388] = 11, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5155), 1, + ACTIONS(1628), 1, + sym__space, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + aux_sym_unquoted_token2, + ACTIONS(8710), 1, + anon_sym_DOT_DOT2, + ACTIONS(8714), 1, + sym_filesize_unit, + ACTIONS(8716), 1, + sym_duration_unit, + STATE(4890), 1, sym_comment, - ACTIONS(8762), 12, + STATE(6943), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1616), 2, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - [187491] = 4, + ACTIONS(8712), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [177424] = 9, + ACTIONS(201), 1, + aux_sym_expr_unary_token1, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2300), 1, + ACTIONS(3550), 1, + anon_sym_DOLLAR, + ACTIONS(6787), 1, + anon_sym_LPAREN, + ACTIONS(8718), 1, anon_sym_DASH2, - STATE(5156), 1, + STATE(2018), 1, + sym__expr_unary_minus, + STATE(4891), 1, sym_comment, - ACTIONS(2302), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(3332), 2, + anon_sym_true, + anon_sym_false, + STATE(1938), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [177456] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(8722), 1, + anon_sym_DASH2, + STATE(4892), 1, + sym_comment, + STATE(4906), 1, + aux_sym_parameter_repeat2, + ACTIONS(2488), 2, sym__newline, + anon_sym_COMMA, + ACTIONS(8720), 7, + sym_identifier, 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, - [187514] = 4, + [177482] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2457), 1, + ACTIONS(7432), 1, anon_sym_DASH2, - STATE(5157), 1, + STATE(4893), 1, sym_comment, - ACTIONS(2459), 11, - anon_sym_EQ, - sym_identifier, + STATE(4906), 1, + aux_sym_parameter_repeat2, + ACTIONS(2488), 2, sym__newline, + anon_sym_COMMA, + ACTIONS(7430), 7, + sym_identifier, 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, - [187537] = 3, + [177508] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(5158), 1, + ACTIONS(8726), 1, + anon_sym_DASH2, + STATE(4894), 1, sym_comment, - ACTIONS(8764), 12, + STATE(4906), 1, + aux_sym_parameter_repeat2, + ACTIONS(2488), 2, sym__newline, - anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(8724), 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, - [187558] = 9, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8766), 1, - anon_sym_LBRACK, - ACTIONS(8768), 1, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - ACTIONS(8770), 1, - anon_sym_DASH2, - STATE(5159), 1, - sym_comment, - STATE(5181), 1, - aux_sym_overlay_hide_repeat1, - STATE(5766), 2, - sym_val_list, - sym__flag, - STATE(5889), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8584), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [187590] = 11, + [177534] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1482), 1, - anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_LPAREN2, - ACTIONS(4077), 1, - anon_sym_DOT, - ACTIONS(7003), 1, - anon_sym_DOLLAR, - ACTIONS(8708), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8710), 1, - aux_sym__immediate_decimal_token5, - STATE(5160), 1, - sym_comment, - STATE(6749), 1, - sym__immediate_decimal, - ACTIONS(8706), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6748), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [187626] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8772), 1, + ACTIONS(8728), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8774), 1, + ACTIONS(8730), 1, aux_sym__immediate_decimal_token2, - STATE(5161), 1, + STATE(4895), 1, sym_comment, - ACTIONS(1484), 3, - anon_sym_RBRACE, + ACTIONS(1491), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1486), 6, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1493), 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, - sym__entry_separator, - [187652] = 6, + [177560] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8778), 1, - anon_sym_DASH2, - STATE(5162), 1, + ACTIONS(8654), 1, + aux_sym__immediate_decimal_token2, + STATE(4896), 1, sym_comment, - STATE(5177), 1, - aux_sym_parameter_repeat2, - ACTIONS(2606), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(8776), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(1501), 4, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [187678] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1499), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [177584] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(925), 1, + ACTIONS(8732), 1, + anon_sym_LBRACK, + ACTIONS(8734), 1, + anon_sym_DASH_DASH, + ACTIONS(8736), 1, anon_sym_DASH2, - ACTIONS(8780), 1, + STATE(4897), 1, + sym_comment, + STATE(4902), 1, + aux_sym_overlay_hide_repeat1, + STATE(5482), 2, + sym_short_flag, + sym_long_flag, + STATE(5574), 2, + sym_val_list, + sym__flag, + ACTIONS(8556), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [177616] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1668), 1, + anon_sym_DASH2, + ACTIONS(8738), 1, anon_sym_DOT2, - STATE(3892), 1, - sym_cell_path, - STATE(5163), 1, + STATE(4898), 1, sym_comment, - STATE(5319), 1, + STATE(5023), 1, aux_sym_cell_path_repeat1, - STATE(5626), 1, + STATE(5294), 1, sym_path, - ACTIONS(927), 6, + STATE(5429), 1, + sym_cell_path, + ACTIONS(1670), 6, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_DASH_DASH, - anon_sym_RBRACE, anon_sym_as, - [187708] = 9, + [177646] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8578), 1, + ACTIONS(3078), 1, + anon_sym_DQUOTE, + ACTIONS(3084), 1, + sym_raw_string_begin, + ACTIONS(8452), 1, + sym__newline, + ACTIONS(8740), 1, + sym_identifier, + STATE(4899), 1, + sym_comment, + STATE(5170), 1, + aux_sym_collection_type_repeat1, + STATE(5409), 1, + aux_sym_shebang_repeat1, + STATE(6313), 1, + sym_val_string, + ACTIONS(3080), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5052), 2, + sym__raw_str, + sym__str_double_quotes, + [177682] = 9, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(8542), 1, anon_sym_DASH_DASH, - ACTIONS(8580), 1, + ACTIONS(8544), 1, anon_sym_DASH2, - ACTIONS(8784), 1, + ACTIONS(8744), 1, anon_sym_as, - STATE(5164), 1, + STATE(4900), 1, sym_comment, - STATE(5318), 1, + STATE(5033), 1, aux_sym_ctrl_do_repeat1, - STATE(5422), 1, + STATE(5175), 1, sym__flag, - STATE(5217), 2, + STATE(4957), 2, sym_short_flag, sym_long_flag, - ACTIONS(8782), 4, + ACTIONS(8742), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [187740] = 6, + [177714] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7456), 1, - anon_sym_DASH2, - STATE(5165), 1, + ACTIONS(8611), 1, + aux_sym__immediate_decimal_token2, + STATE(4901), 1, sym_comment, - STATE(5177), 1, - aux_sym_parameter_repeat2, - ACTIONS(2606), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(7454), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(1499), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1501), 7, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [187766] = 9, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [177738] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8766), 1, + ACTIONS(8746), 1, anon_sym_LBRACK, - ACTIONS(8768), 1, + ACTIONS(8749), 1, anon_sym_DASH_DASH, - ACTIONS(8770), 1, + ACTIONS(8752), 1, anon_sym_DASH2, - STATE(5159), 1, - aux_sym_overlay_hide_repeat1, - STATE(5166), 1, + STATE(4902), 2, sym_comment, - STATE(5766), 2, - sym_val_list, - sym__flag, - STATE(5889), 2, + aux_sym_overlay_hide_repeat1, + STATE(5482), 2, sym_short_flag, sym_long_flag, - ACTIONS(8622), 3, + STATE(5574), 2, + sym_val_list, + sym__flag, + ACTIONS(6187), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [187798] = 5, - ACTIONS(3), 1, + [177768] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8740), 1, - aux_sym__immediate_decimal_token2, - STATE(5167), 1, + ACTIONS(1674), 1, + anon_sym_DASH2, + ACTIONS(8738), 1, + anon_sym_DOT2, + STATE(4903), 1, sym_comment, - ACTIONS(1492), 4, + STATE(5023), 1, + aux_sym_cell_path_repeat1, + STATE(5294), 1, + sym_path, + STATE(5424), 1, + sym_cell_path, + ACTIONS(1676), 6, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_as, + [177798] = 9, + ACTIONS(83), 1, + aux_sym_expr_unary_token1, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(4523), 1, + anon_sym_DOLLAR, + ACTIONS(5822), 1, + anon_sym_LPAREN, + ACTIONS(8755), 1, + anon_sym_DASH2, + STATE(2338), 1, + sym__expr_unary_minus, + STATE(4904), 1, + sym_comment, + ACTIONS(3420), 2, + anon_sym_true, + anon_sym_false, + STATE(2318), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [177830] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(8757), 1, + aux_sym__immediate_decimal_token2, + STATE(4905), 1, + sym_comment, + ACTIONS(1581), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1579), 6, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, aux_sym_unquoted_token2, - ACTIONS(1494), 6, - sym__space, - anon_sym_LPAREN2, + [177854] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(8764), 1, + anon_sym_DASH2, + ACTIONS(8761), 2, + sym__newline, + anon_sym_COMMA, + STATE(4906), 2, + sym_comment, + aux_sym_parameter_repeat2, + ACTIONS(8759), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [177878] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(8766), 1, + aux_sym__immediate_decimal_token2, + STATE(4907), 1, + sym_comment, + ACTIONS(1579), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1581), 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, - [187822] = 9, - ACTIONS(201), 1, - aux_sym_expr_unary_token1, + [177902] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3610), 1, - anon_sym_DOLLAR, - ACTIONS(6843), 1, + ACTIONS(1668), 1, + anon_sym_DASH2, + ACTIONS(8768), 1, + anon_sym_DOT2, + STATE(4908), 1, + sym_comment, + STATE(4943), 1, + aux_sym_cell_path_repeat1, + STATE(5229), 1, + sym_path, + STATE(5323), 1, + sym_cell_path, + ACTIONS(1670), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [177932] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1674), 1, + anon_sym_DASH2, + ACTIONS(8768), 1, + anon_sym_DOT2, + STATE(4909), 1, + sym_comment, + STATE(4943), 1, + aux_sym_cell_path_repeat1, + STATE(5229), 1, + sym_path, + STATE(5236), 1, + sym_cell_path, + ACTIONS(1676), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [177962] = 9, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(3474), 1, + aux_sym_expr_unary_token1, + ACTIONS(5822), 1, anon_sym_LPAREN, - ACTIONS(8786), 1, + ACTIONS(6963), 1, + anon_sym_DOLLAR, + ACTIONS(8755), 1, anon_sym_DASH2, - STATE(2104), 1, + STATE(2338), 1, sym__expr_unary_minus, - STATE(5168), 1, + STATE(4910), 1, sym_comment, ACTIONS(3420), 2, anon_sym_true, anon_sym_false, - STATE(2128), 4, + STATE(2318), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [187854] = 8, + [177994] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1431), 1, + anon_sym_RBRACE, + ACTIONS(1445), 1, + sym__entry_separator, + ACTIONS(3048), 1, + anon_sym_DOLLAR, + ACTIONS(8036), 1, + anon_sym_LPAREN2, + ACTIONS(8044), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8046), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8504), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8506), 1, + aux_sym__immediate_decimal_token3, + STATE(4911), 1, + sym_comment, + STATE(6861), 1, + sym__immediate_decimal, + STATE(6406), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [178032] = 8, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(925), 1, anon_sym_DASH2, - ACTIONS(8788), 1, + ACTIONS(8768), 1, anon_sym_DOT2, - STATE(5169), 1, + STATE(3696), 1, + sym_cell_path, + STATE(4912), 1, sym_comment, - STATE(5213), 1, + STATE(4943), 1, aux_sym_cell_path_repeat1, - STATE(5534), 1, + STATE(5229), 1, sym_path, - STATE(5725), 1, - sym_cell_path, ACTIONS(927), 6, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - [187884] = 8, + [178062] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1698), 1, + ACTIONS(1668), 1, anon_sym_DASH2, - ACTIONS(8128), 1, + ACTIONS(8110), 1, anon_sym_DOT2, - STATE(4018), 1, + STATE(3842), 1, sym_path, - STATE(5051), 1, + STATE(4767), 1, aux_sym_cell_path_repeat1, - STATE(5170), 1, + STATE(4913), 1, sym_comment, - STATE(5533), 1, + STATE(5323), 1, sym_cell_path, - ACTIONS(1700), 6, + ACTIONS(1670), 6, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, - [187914] = 8, + [178092] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8770), 1, + aux_sym__immediate_decimal_token2, + STATE(4914), 1, + sym_comment, + ACTIONS(1579), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1581), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [178116] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1711), 1, - anon_sym_DASH2, - ACTIONS(8128), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(5051), 1, - aux_sym_cell_path_repeat1, - STATE(5171), 1, + ACTIONS(8732), 1, + anon_sym_LBRACK, + ACTIONS(8734), 1, + anon_sym_DASH_DASH, + ACTIONS(8736), 1, + anon_sym_DASH2, + STATE(4915), 1, sym_comment, - STATE(5557), 1, - sym_cell_path, - ACTIONS(1713), 6, + STATE(4932), 1, + aux_sym_overlay_hide_repeat1, + STATE(5482), 2, + sym_short_flag, + sym_long_flag, + STATE(5574), 2, + sym_val_list, + sym__flag, + ACTIONS(8538), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - [187944] = 12, - ACTIONS(3), 1, + [178148] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1466), 1, - anon_sym_RBRACE, - ACTIONS(1468), 1, - sym__entry_separator, - ACTIONS(3122), 1, - anon_sym_DOLLAR, - ACTIONS(8096), 1, - anon_sym_LPAREN2, - ACTIONS(8330), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8332), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8448), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8450), 1, - aux_sym__immediate_decimal_token3, - STATE(5172), 1, + ACTIONS(3756), 1, + sym__newline, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4916), 1, sym_comment, - STATE(7441), 1, - sym__immediate_decimal, - STATE(7062), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [187982] = 9, + ACTIONS(2877), 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, + [178172] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8578), 1, + ACTIONS(3342), 1, + anon_sym_COLON2, + ACTIONS(6947), 1, + anon_sym_DOLLAR, + ACTIONS(8772), 1, + sym_identifier, + ACTIONS(8774), 1, anon_sym_DASH_DASH, - ACTIONS(8580), 1, + ACTIONS(8776), 1, anon_sym_DASH2, - ACTIONS(8792), 1, - anon_sym_as, - STATE(5173), 1, + STATE(4917), 1, sym_comment, - STATE(5286), 1, + STATE(5025), 1, aux_sym_ctrl_do_repeat1, - STATE(5422), 1, + STATE(5175), 1, sym__flag, - STATE(5217), 2, + STATE(5360), 1, + sym_val_variable, + STATE(6151), 1, + sym__variable_name, + STATE(4957), 2, sym_short_flag, sym_long_flag, - ACTIONS(8790), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [188014] = 6, + [178210] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8794), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8796), 1, + ACTIONS(8778), 1, + anon_sym_DOT, + ACTIONS(8780), 1, aux_sym__immediate_decimal_token2, - STATE(5174), 1, + STATE(4918), 1, sym_comment, - ACTIONS(1484), 2, + ACTIONS(1499), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1486), 7, + ACTIONS(1501), 7, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, @@ -397607,66 +380586,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [188040] = 11, - ACTIONS(3), 1, + [178236] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1591), 1, - sym__space, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - ACTIONS(7156), 1, - aux_sym_unquoted_token2, - ACTIONS(8798), 1, - anon_sym_DOT_DOT2, - ACTIONS(8802), 1, - sym_filesize_unit, - ACTIONS(8804), 1, - sym_duration_unit, - STATE(5175), 1, + ACTIONS(7462), 1, + anon_sym_DASH2, + STATE(4906), 1, + aux_sym_parameter_repeat2, + STATE(4919), 1, sym_comment, - STATE(7519), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1579), 2, + ACTIONS(2488), 2, sym__newline, - anon_sym_SEMI, - ACTIONS(8800), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [188076] = 9, - ACTIONS(245), 1, + anon_sym_COMMA, + ACTIONS(7460), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [178262] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3510), 1, - aux_sym_expr_unary_token1, - ACTIONS(5888), 1, - anon_sym_LPAREN, - ACTIONS(7013), 1, + ACTIONS(1473), 1, + anon_sym_RBRACE, + ACTIONS(1475), 1, + sym__entry_separator, + ACTIONS(3048), 1, anon_sym_DOLLAR, - ACTIONS(8806), 1, - anon_sym_DASH2, - STATE(2511), 1, - sym__expr_unary_minus, - STATE(5176), 1, + ACTIONS(8036), 1, + anon_sym_LPAREN2, + ACTIONS(8044), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8046), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8504), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8506), 1, + aux_sym__immediate_decimal_token3, + STATE(4920), 1, sym_comment, - ACTIONS(3488), 2, - anon_sym_true, - anon_sym_false, - STATE(2450), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, + STATE(6884), 1, + sym__immediate_decimal, + STATE(6402), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - [188108] = 5, + [178300] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8813), 1, + ACTIONS(7420), 1, anon_sym_DASH2, - ACTIONS(8810), 2, + STATE(4906), 1, + aux_sym_parameter_repeat2, + STATE(4921), 1, + sym_comment, + ACTIONS(2488), 2, sym__newline, anon_sym_COMMA, - STATE(5177), 2, - sym_comment, - aux_sym_parameter_repeat2, - ACTIONS(8808), 7, + ACTIONS(7418), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -397674,525 +380652,371 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [188132] = 5, - ACTIONS(245), 1, + [178326] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8552), 1, + ACTIONS(8622), 1, aux_sym__immediate_decimal_token2, - STATE(5178), 1, + STATE(4922), 1, sym_comment, - ACTIONS(1492), 3, - anon_sym_DASH2, + ACTIONS(1499), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1494), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(1501), 6, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [188156] = 9, + [178350] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8766), 1, - anon_sym_LBRACK, - ACTIONS(8768), 1, - anon_sym_DASH_DASH, - ACTIONS(8770), 1, - anon_sym_DASH2, - STATE(5179), 1, + ACTIONS(1445), 1, + anon_sym_LBRACE, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(6947), 1, + anon_sym_DOLLAR, + ACTIONS(8784), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8786), 1, + aux_sym__immediate_decimal_token5, + STATE(4923), 1, sym_comment, - STATE(5208), 1, - aux_sym_overlay_hide_repeat1, - STATE(5766), 2, - sym_val_list, - sym__flag, - STATE(5889), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8574), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [188188] = 8, + STATE(6929), 1, + sym__immediate_decimal, + ACTIONS(8782), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1773), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [178386] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1698), 1, + ACTIONS(925), 1, anon_sym_DASH2, - ACTIONS(8788), 1, + ACTIONS(8738), 1, anon_sym_DOT2, - STATE(5180), 1, + STATE(4924), 1, sym_comment, - STATE(5213), 1, + STATE(5023), 1, aux_sym_cell_path_repeat1, - STATE(5534), 1, + STATE(5294), 1, sym_path, - STATE(5715), 1, + STATE(5418), 1, sym_cell_path, - ACTIONS(1700), 6, + ACTIONS(927), 6, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, anon_sym_as, - [188218] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8815), 1, - anon_sym_LBRACK, - ACTIONS(8818), 1, - anon_sym_DASH_DASH, - ACTIONS(8821), 1, - anon_sym_DASH2, - STATE(5181), 2, - sym_comment, - aux_sym_overlay_hide_repeat1, - STATE(5766), 2, - sym_val_list, - sym__flag, - STATE(5889), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(6273), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [188248] = 5, + [178416] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8824), 1, + ACTIONS(8788), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8790), 1, aux_sym__immediate_decimal_token2, - STATE(5182), 1, + STATE(4925), 1, sym_comment, - ACTIONS(1538), 4, - anon_sym_RBRACK, + ACTIONS(1491), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1540), 6, + aux_sym__unquoted_in_record_token2, + ACTIONS(1493), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [188272] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(5183), 1, - sym_comment, - ACTIONS(2826), 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, - [188296] = 9, - ACTIONS(83), 1, - aux_sym_expr_unary_token1, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4499), 1, - anon_sym_DOLLAR, - ACTIONS(5888), 1, - anon_sym_LPAREN, - ACTIONS(8806), 1, - anon_sym_DASH2, - STATE(2511), 1, - sym__expr_unary_minus, - STATE(5184), 1, - sym_comment, - ACTIONS(3488), 2, - anon_sym_true, - anon_sym_false, - STATE(2450), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [188328] = 5, + [178442] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8642), 1, + ACTIONS(8792), 1, aux_sym__immediate_decimal_token2, - STATE(5185), 1, + STATE(4926), 1, sym_comment, - ACTIONS(1492), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1579), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1494), 6, + aux_sym_unquoted_token2, + ACTIONS(1581), 6, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [188352] = 12, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3440), 1, - anon_sym_COLON2, - ACTIONS(7003), 1, - anon_sym_DOLLAR, - ACTIONS(8826), 1, - sym_identifier, - ACTIONS(8828), 1, - anon_sym_DASH_DASH, - ACTIONS(8830), 1, - anon_sym_DASH2, - STATE(5186), 1, - sym_comment, - STATE(5302), 1, - aux_sym_ctrl_do_repeat1, - STATE(5422), 1, - sym__flag, - STATE(5713), 1, - sym_val_variable, - STATE(6406), 1, - sym__variable_name, - STATE(5217), 2, - sym_short_flag, - sym_long_flag, - [188390] = 12, + [178466] = 12, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3430), 1, + ACTIONS(3408), 1, anon_sym_COLON2, - ACTIONS(7003), 1, + ACTIONS(6947), 1, anon_sym_DOLLAR, - ACTIONS(8826), 1, + ACTIONS(8772), 1, sym_identifier, - ACTIONS(8828), 1, + ACTIONS(8774), 1, anon_sym_DASH_DASH, - ACTIONS(8830), 1, + ACTIONS(8776), 1, anon_sym_DASH2, - STATE(5187), 1, + STATE(4927), 1, sym_comment, - STATE(5302), 1, + STATE(5025), 1, aux_sym_ctrl_do_repeat1, - STATE(5422), 1, + STATE(5175), 1, sym__flag, - STATE(5713), 1, + STATE(5360), 1, sym_val_variable, - STATE(6406), 1, + STATE(6151), 1, sym__variable_name, - STATE(5217), 2, + STATE(4957), 2, sym_short_flag, sym_long_flag, - [188428] = 11, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3152), 1, - anon_sym_DQUOTE, - ACTIONS(3158), 1, - sym_raw_string_begin, - ACTIONS(8472), 1, - sym__newline, - ACTIONS(8832), 1, - sym_identifier, - STATE(5188), 1, - sym_comment, - STATE(5402), 1, - aux_sym_collection_type_repeat1, - STATE(5708), 1, - aux_sym_shebang_repeat1, - STATE(6272), 1, - sym_val_string, - ACTIONS(3154), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5281), 2, - sym__raw_str, - sym__str_double_quotes, - [188464] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8834), 1, - aux_sym__immediate_decimal_token2, - STATE(5189), 1, - sym_comment, - ACTIONS(1538), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1540), 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, - [188488] = 11, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1445), 1, - anon_sym_LBRACE, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(4075), 1, - anon_sym_LPAREN2, - ACTIONS(7003), 1, - anon_sym_DOLLAR, - ACTIONS(8838), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8840), 1, - aux_sym__immediate_decimal_token5, - STATE(5190), 1, - sym_comment, - STATE(7438), 1, - sym__immediate_decimal, - ACTIONS(8836), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1804), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [188524] = 6, + [178504] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8842), 1, + ACTIONS(8794), 1, anon_sym_DOT, - ACTIONS(8844), 1, + ACTIONS(8796), 1, aux_sym__immediate_decimal_token2, - STATE(5191), 1, + STATE(4928), 1, sym_comment, - ACTIONS(1492), 3, + ACTIONS(1499), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1494), 6, + ACTIONS(1501), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [188550] = 11, + [178530] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3152), 1, + ACTIONS(3078), 1, anon_sym_DQUOTE, - ACTIONS(3158), 1, + ACTIONS(3084), 1, sym_raw_string_begin, - ACTIONS(8472), 1, + ACTIONS(8452), 1, sym__newline, - ACTIONS(8846), 1, + ACTIONS(8798), 1, sym_identifier, - STATE(5192), 1, + STATE(4929), 1, sym_comment, - STATE(5412), 1, + STATE(5148), 1, aux_sym_collection_type_repeat1, - STATE(5708), 1, + STATE(5409), 1, aux_sym_shebang_repeat1, - STATE(6496), 1, + STATE(5962), 1, sym_val_string, - ACTIONS(3154), 2, + ACTIONS(3080), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5281), 2, + STATE(5052), 2, sym__raw_str, sym__str_double_quotes, - [188586] = 5, - ACTIONS(245), 1, + [178566] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8848), 1, + ACTIONS(8644), 1, aux_sym__immediate_decimal_token2, - STATE(5193), 1, + STATE(4930), 1, sym_comment, - ACTIONS(1540), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(1499), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1501), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1538), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [188610] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1431), 1, - anon_sym_RBRACE, - ACTIONS(1445), 1, sym__entry_separator, - ACTIONS(3122), 1, - anon_sym_DOLLAR, - ACTIONS(8096), 1, - anon_sym_LPAREN2, - ACTIONS(8330), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8332), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8448), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8450), 1, - aux_sym__immediate_decimal_token3, - STATE(5194), 1, - sym_comment, - STATE(7477), 1, - sym__immediate_decimal, - STATE(6868), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [188648] = 6, + [178590] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8850), 1, - anon_sym_DOT, - ACTIONS(8852), 1, - aux_sym__immediate_decimal_token2, - STATE(5195), 1, + ACTIONS(8542), 1, + anon_sym_DASH_DASH, + ACTIONS(8544), 1, + anon_sym_DASH2, + ACTIONS(8802), 1, + anon_sym_as, + STATE(4931), 1, sym_comment, - ACTIONS(1492), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1494), 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, - [188674] = 5, + STATE(4969), 1, + aux_sym_ctrl_do_repeat1, + STATE(5175), 1, + sym__flag, + STATE(4957), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8800), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [178622] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8528), 1, - aux_sym__immediate_decimal_token2, - STATE(5196), 1, - sym_comment, - ACTIONS(1494), 4, - anon_sym_DOLLAR, + ACTIONS(8732), 1, + anon_sym_LBRACK, + ACTIONS(8734), 1, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1492), 6, - sym_identifier, + ACTIONS(8736), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [188698] = 8, + STATE(4902), 1, + aux_sym_overlay_hide_repeat1, + STATE(4932), 1, + sym_comment, + STATE(5482), 2, + sym_short_flag, + sym_long_flag, + STATE(5574), 2, + sym_val_list, + sym__flag, + ACTIONS(8615), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [178654] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1711), 1, + ACTIONS(8732), 1, + anon_sym_LBRACK, + ACTIONS(8734), 1, + anon_sym_DASH_DASH, + ACTIONS(8736), 1, anon_sym_DASH2, - ACTIONS(8788), 1, - anon_sym_DOT2, - STATE(5197), 1, + STATE(4897), 1, + aux_sym_overlay_hide_repeat1, + STATE(4933), 1, sym_comment, - STATE(5213), 1, - aux_sym_cell_path_repeat1, - STATE(5534), 1, - sym_path, - STATE(5635), 1, - sym_cell_path, - ACTIONS(1713), 6, + STATE(5482), 2, + sym_short_flag, + sym_long_flag, + STATE(5574), 2, + sym_val_list, + sym__flag, + ACTIONS(8624), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, + [178686] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(8806), 1, + anon_sym_DASH2, + STATE(4906), 1, + aux_sym_parameter_repeat2, + STATE(4934), 1, + sym_comment, + ACTIONS(2488), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(8804), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_as, - [188728] = 9, + [178712] = 9, ACTIONS(245), 1, anon_sym_POUND, ACTIONS(1248), 1, anon_sym_LPAREN, - ACTIONS(3550), 1, + ACTIONS(3448), 1, aux_sym_expr_unary_token1, - ACTIONS(7003), 1, + ACTIONS(6947), 1, anon_sym_DOLLAR, - ACTIONS(8786), 1, + ACTIONS(8718), 1, anon_sym_DASH2, - STATE(2104), 1, + STATE(2018), 1, sym__expr_unary_minus, - STATE(5198), 1, + STATE(4935), 1, sym_comment, - ACTIONS(3420), 2, + ACTIONS(3332), 2, anon_sym_true, anon_sym_false, - STATE(2128), 4, + STATE(1938), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [188760] = 11, + [178744] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3152), 1, + ACTIONS(3078), 1, anon_sym_DQUOTE, - ACTIONS(3158), 1, + ACTIONS(3084), 1, sym_raw_string_begin, - ACTIONS(8472), 1, + ACTIONS(8452), 1, sym__newline, - ACTIONS(8854), 1, + ACTIONS(8808), 1, sym_identifier, - STATE(5199), 1, + STATE(4936), 1, sym_comment, - STATE(5430), 1, + STATE(5167), 1, aux_sym_collection_type_repeat1, - STATE(5708), 1, + STATE(5409), 1, aux_sym_shebang_repeat1, - STATE(6290), 1, + STATE(6335), 1, sym_val_string, - ACTIONS(3154), 2, + ACTIONS(3080), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5281), 2, + STATE(5052), 2, sym__raw_str, sym__str_double_quotes, - [188796] = 11, + [178780] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1468), 1, + ACTIONS(1489), 1, anon_sym_LBRACE, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - ACTIONS(4075), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(7003), 1, + ACTIONS(4172), 1, + anon_sym_DOT, + ACTIONS(6947), 1, anon_sym_DOLLAR, - ACTIONS(8838), 1, + ACTIONS(8516), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8840), 1, + ACTIONS(8518), 1, aux_sym__immediate_decimal_token5, - STATE(5200), 1, + STATE(4937), 1, sym_comment, - STATE(7409), 1, + STATE(5945), 1, sym__immediate_decimal, - ACTIONS(8836), 2, + ACTIONS(8514), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1824), 2, + STATE(5944), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [188832] = 4, + [178816] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8856), 1, + ACTIONS(8810), 1, anon_sym_else, - STATE(5201), 1, + STATE(4938), 1, sym_comment, - ACTIONS(8290), 10, + ACTIONS(8048), 10, sym__newline, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -398203,267 +381027,405 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [188854] = 8, + [178838] = 11, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1475), 1, + anon_sym_LBRACE, + ACTIONS(1477), 1, + aux_sym_unquoted_token2, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(6947), 1, + anon_sym_DOLLAR, + ACTIONS(8784), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8786), 1, + aux_sym__immediate_decimal_token5, + STATE(4939), 1, + sym_comment, + STATE(6909), 1, + sym__immediate_decimal, + ACTIONS(8782), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1823), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [178874] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1698), 1, + ACTIONS(1674), 1, anon_sym_DASH2, - ACTIONS(8780), 1, + ACTIONS(8110), 1, anon_sym_DOT2, - STATE(5202), 1, - sym_comment, - STATE(5319), 1, + STATE(3842), 1, + sym_path, + STATE(4767), 1, aux_sym_cell_path_repeat1, - STATE(5533), 1, + STATE(4940), 1, + sym_comment, + STATE(5236), 1, sym_cell_path, - STATE(5626), 1, - sym_path, - ACTIONS(1700), 6, + ACTIONS(1676), 6, sym__newline, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - [188884] = 6, + [178904] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7480), 1, + ACTIONS(1893), 1, anon_sym_DASH2, - STATE(5177), 1, - aux_sym_parameter_repeat2, - STATE(5203), 1, + ACTIONS(8738), 1, + anon_sym_DOT2, + STATE(4941), 1, sym_comment, - ACTIONS(2606), 2, + STATE(5023), 1, + aux_sym_cell_path_repeat1, + STATE(5294), 1, + sym_path, + STATE(5474), 1, + sym_cell_path, + ACTIONS(1895), 5, + ts_builtin_sym_end, sym__newline, - anon_sym_COMMA, - ACTIONS(7478), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DASH_DASH, - [188910] = 6, + [178933] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(8812), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8814), 1, + aux_sym__immediate_decimal_token2, + STATE(4942), 1, + sym_comment, + ACTIONS(1491), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1493), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [178958] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8860), 1, + ACTIONS(938), 1, anon_sym_DASH2, - STATE(5177), 1, - aux_sym_parameter_repeat2, - STATE(5204), 1, + ACTIONS(8768), 1, + anon_sym_DOT2, + STATE(4943), 1, sym_comment, - ACTIONS(2606), 2, + STATE(4944), 1, + aux_sym_cell_path_repeat1, + STATE(5229), 1, + sym_path, + ACTIONS(940), 6, sym__newline, - anon_sym_COMMA, - ACTIONS(8858), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [188936] = 6, + anon_sym_RBRACE, + anon_sym_as, + [178985] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7508), 1, + ACTIONS(931), 1, anon_sym_DASH2, - STATE(5177), 1, - aux_sym_parameter_repeat2, - STATE(5205), 1, + ACTIONS(8816), 1, + anon_sym_DOT2, + STATE(5229), 1, + sym_path, + STATE(4944), 2, sym_comment, - ACTIONS(2606), 2, + aux_sym_cell_path_repeat1, + ACTIONS(933), 6, sym__newline, - anon_sym_COMMA, - ACTIONS(7506), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [188962] = 6, + anon_sym_RBRACE, + anon_sym_as, + [179010] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8864), 1, + ACTIONS(5117), 1, anon_sym_DASH2, - STATE(5177), 1, - aux_sym_parameter_repeat2, - STATE(5206), 1, + STATE(4945), 1, sym_comment, - ACTIONS(2606), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(8862), 7, + ACTIONS(5115), 9, sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RPAREN, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [188988] = 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + [179031] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1012), 1, + anon_sym_DOLLAR, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(7012), 1, + aux_sym_unquoted_token3, + ACTIONS(8386), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8819), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8821), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8823), 1, + aux_sym__immediate_decimal_token5, + STATE(4946), 1, + sym_comment, + STATE(5621), 1, + sym__immediate_decimal, + STATE(5556), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [179066] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1012), 1, + anon_sym_DOLLAR, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(7012), 1, + aux_sym_unquoted_token3, + ACTIONS(8658), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8825), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8827), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8829), 1, + aux_sym__immediate_decimal_token5, + STATE(4947), 1, + sym_comment, + STATE(6763), 1, + sym__immediate_decimal, + STATE(1728), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [179101] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1711), 1, + ACTIONS(1915), 1, anon_sym_DASH2, - ACTIONS(8780), 1, + ACTIONS(8738), 1, anon_sym_DOT2, - STATE(5207), 1, + STATE(4948), 1, sym_comment, - STATE(5319), 1, + STATE(5023), 1, aux_sym_cell_path_repeat1, - STATE(5557), 1, - sym_cell_path, - STATE(5626), 1, + STATE(5294), 1, sym_path, - ACTIONS(1713), 6, + STATE(5514), 1, + sym_cell_path, + ACTIONS(1917), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [189018] = 9, + [179130] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2014), 1, + anon_sym_DOLLAR, + ACTIONS(6982), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + aux_sym_unquoted_token3, + ACTIONS(7955), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7957), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7959), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7961), 1, + aux_sym__immediate_decimal_token5, + STATE(4949), 1, + sym_comment, + STATE(5336), 1, + sym__immediate_decimal, + STATE(5485), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [179165] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1026), 1, + anon_sym_DOLLAR, + ACTIONS(4525), 1, + anon_sym_LPAREN2, + ACTIONS(4570), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4732), 1, + aux_sym_unquoted_token3, + ACTIONS(8831), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8833), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8835), 1, + aux_sym__immediate_decimal_token5, + STATE(2132), 1, + sym__immediate_decimal, + STATE(4950), 1, + sym_comment, + STATE(2321), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [179200] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8766), 1, - anon_sym_LBRACK, - ACTIONS(8768), 1, - anon_sym_DASH_DASH, - ACTIONS(8770), 1, + ACTIONS(1867), 1, anon_sym_DASH2, - STATE(5181), 1, - aux_sym_overlay_hide_repeat1, - STATE(5208), 1, + ACTIONS(8738), 1, + anon_sym_DOT2, + STATE(4951), 1, sym_comment, - STATE(5766), 2, - sym_val_list, - sym__flag, - STATE(5889), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8620), 3, + STATE(5023), 1, + aux_sym_cell_path_repeat1, + STATE(5294), 1, + sym_path, + STATE(5580), 1, + sym_cell_path, + ACTIONS(1869), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [189050] = 5, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [179229] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8866), 1, + ACTIONS(8837), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8839), 1, aux_sym__immediate_decimal_token2, - STATE(5209), 1, + STATE(4952), 1, sym_comment, - ACTIONS(1538), 4, + ACTIONS(1686), 4, sym__newline, anon_sym_SEMI, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1540), 6, + ACTIONS(1688), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [189074] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8868), 1, - anon_sym_DOT, - ACTIONS(8870), 1, - aux_sym__immediate_decimal_token2, - STATE(5210), 1, - sym_comment, - ACTIONS(1492), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1494), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [189099] = 11, + [179254] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1433), 1, + ACTIONS(1449), 1, anon_sym_DOLLAR, - ACTIONS(1435), 1, + ACTIONS(1451), 1, anon_sym_LPAREN2, - ACTIONS(1439), 1, + ACTIONS(1455), 1, aux_sym__immediate_decimal_token3, - ACTIONS(1441), 1, + ACTIONS(1457), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1717), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8841), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1443), 1, + ACTIONS(8843), 1, aux_sym__immediate_decimal_token5, - ACTIONS(1593), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(8872), 1, - aux_sym__immediate_decimal_token1, - STATE(386), 1, + STATE(391), 1, sym__immediate_decimal, - STATE(5211), 1, + STATE(4953), 1, sym_comment, - STATE(472), 2, + STATE(488), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [189134] = 11, + [179289] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1449), 1, + ACTIONS(1293), 1, anon_sym_DOLLAR, - ACTIONS(1451), 1, + ACTIONS(1548), 1, anon_sym_LPAREN2, - ACTIONS(1453), 1, + ACTIONS(1550), 1, aux_sym__immediate_decimal_token3, - ACTIONS(1455), 1, + ACTIONS(1552), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1717), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8845), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1457), 1, + ACTIONS(8847), 1, aux_sym__immediate_decimal_token5, - ACTIONS(1593), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(8874), 1, - aux_sym__immediate_decimal_token1, - STATE(541), 1, + STATE(564), 1, sym__immediate_decimal, - STATE(5212), 1, + STATE(4954), 1, sym_comment, - STATE(614), 2, + STATE(710), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [189169] = 7, + [179324] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(931), 1, + ACTIONS(8734), 1, + anon_sym_DASH_DASH, + ACTIONS(8736), 1, anon_sym_DASH2, - ACTIONS(8788), 1, - anon_sym_DOT2, - STATE(5213), 1, + ACTIONS(8849), 1, + anon_sym_as, + STATE(4955), 1, sym_comment, - STATE(5268), 1, - aux_sym_cell_path_repeat1, - STATE(5534), 1, - sym_path, - ACTIONS(933), 6, + STATE(5153), 1, + aux_sym_ctrl_do_repeat1, + STATE(5696), 1, + sym__flag, + STATE(5482), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8800), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_as, - [189196] = 4, + [179355] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8851), 1, + anon_sym_DOT2, + STATE(4956), 1, + sym_comment, + STATE(5081), 1, + aux_sym_cell_path_repeat1, + STATE(5358), 1, + sym_path, + STATE(5536), 1, + sym_cell_path, + ACTIONS(1668), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(1670), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [179384] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5181), 1, + ACTIONS(5103), 1, anon_sym_DASH2, - STATE(5214), 1, + STATE(4957), 1, sym_comment, - ACTIONS(5179), 9, + ACTIONS(5101), 9, sym_identifier, sym__newline, anon_sym_SEMI, @@ -398473,1792 +381435,1662 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [189217] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2134), 1, - anon_sym_DOLLAR, - ACTIONS(7048), 1, - anon_sym_LPAREN2, - ACTIONS(7156), 1, - aux_sym_unquoted_token3, - ACTIONS(7981), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7983), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7985), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7987), 1, - aux_sym__immediate_decimal_token5, - STATE(5215), 1, - sym_comment, - STATE(5518), 1, - sym__immediate_decimal, - STATE(5899), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [189252] = 6, + [179405] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8876), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8878), 1, + ACTIONS(8853), 1, + anon_sym_DOT, + ACTIONS(8855), 1, aux_sym__immediate_decimal_token2, - STATE(5216), 1, + STATE(4958), 1, sym_comment, - ACTIONS(1484), 2, + ACTIONS(1499), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1486), 6, + ACTIONS(1501), 6, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [189277] = 4, + [179430] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5165), 1, - anon_sym_DASH2, - STATE(5217), 1, + STATE(4959), 1, sym_comment, - ACTIONS(5163), 9, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, + ACTIONS(1579), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1581), 7, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - [189298] = 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [179451] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1028), 1, + ACTIONS(3442), 1, anon_sym_DOLLAR, - ACTIONS(4501), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(4615), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4768), 1, + ACTIONS(7012), 1, aux_sym_unquoted_token3, - ACTIONS(8880), 1, + ACTIONS(8514), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8857), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8882), 1, + ACTIONS(8859), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8884), 1, + ACTIONS(8861), 1, aux_sym__immediate_decimal_token5, - STATE(2194), 1, + STATE(4960), 1, + sym_comment, + STATE(5780), 1, sym__immediate_decimal, - STATE(5218), 1, + STATE(6300), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [179486] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3442), 1, + anon_sym_DOLLAR, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(7012), 1, + aux_sym_unquoted_token3, + ACTIONS(8782), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8863), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8865), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8867), 1, + aux_sym__immediate_decimal_token5, + STATE(4961), 1, sym_comment, - STATE(2451), 2, + STATE(6855), 1, + sym__immediate_decimal, + STATE(1728), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [189333] = 11, + [179521] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4962), 1, + sym_comment, + ACTIONS(1678), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1680), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [179542] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3122), 1, + ACTIONS(1012), 1, anon_sym_DOLLAR, - ACTIONS(8096), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(8326), 1, + ACTIONS(7012), 1, + aux_sym_unquoted_token3, + ACTIONS(7947), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8328), 1, + ACTIONS(8869), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8330), 1, + ACTIONS(8871), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8332), 1, + ACTIONS(8873), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8886), 1, - aux_sym__unquoted_in_list_token3, - STATE(5219), 1, + STATE(4963), 1, sym_comment, - STATE(5657), 1, + STATE(5399), 1, sym__immediate_decimal, - STATE(5752), 2, + STATE(5556), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [189368] = 8, + [179577] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1941), 1, + ACTIONS(1845), 1, anon_sym_DASH2, - ACTIONS(8788), 1, + ACTIONS(8738), 1, anon_sym_DOT2, - STATE(5213), 1, - aux_sym_cell_path_repeat1, - STATE(5220), 1, + STATE(4964), 1, sym_comment, - STATE(5534), 1, + STATE(5023), 1, + aux_sym_cell_path_repeat1, + STATE(5294), 1, sym_path, - STATE(5795), 1, + STATE(5562), 1, sym_cell_path, - ACTIONS(1943), 5, + ACTIONS(1847), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [189397] = 4, - ACTIONS(245), 1, + [179606] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5221), 1, + ACTIONS(8851), 1, + anon_sym_DOT2, + STATE(4965), 1, sym_comment, - ACTIONS(1717), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + STATE(5081), 1, + aux_sym_cell_path_repeat1, + STATE(5358), 1, + sym_path, + STATE(5542), 1, + sym_cell_path, + ACTIONS(1674), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(1676), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1715), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [189418] = 8, + sym__entry_separator, + [179635] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1835), 1, + ACTIONS(1883), 1, anon_sym_DASH2, - ACTIONS(8788), 1, + ACTIONS(8738), 1, anon_sym_DOT2, - STATE(5213), 1, - aux_sym_cell_path_repeat1, - STATE(5222), 1, + STATE(4966), 1, sym_comment, - STATE(5534), 1, + STATE(5023), 1, + aux_sym_cell_path_repeat1, + STATE(5294), 1, sym_path, - STATE(5884), 1, + STATE(5622), 1, sym_cell_path, - ACTIONS(1837), 5, + ACTIONS(1885), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [189447] = 11, - ACTIONS(3), 1, + [179664] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1012), 1, + ACTIONS(5145), 1, + anon_sym_DASH2, + STATE(4967), 1, + sym_comment, + ACTIONS(5143), 9, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, - ACTIONS(4075), 1, - anon_sym_LPAREN2, - ACTIONS(4079), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4715), 1, - aux_sym_unquoted_token3, - ACTIONS(8888), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8890), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8892), 1, - aux_sym__immediate_decimal_token5, - STATE(1613), 1, - sym__immediate_decimal, - STATE(5223), 1, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [179685] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5149), 1, + anon_sym_DASH2, + STATE(4968), 1, + sym_comment, + ACTIONS(5147), 9, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [179706] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(8542), 1, + anon_sym_DASH_DASH, + ACTIONS(8544), 1, + anon_sym_DASH2, + STATE(4969), 1, + sym_comment, + STATE(5037), 1, + aux_sym_ctrl_do_repeat1, + STATE(5175), 1, + sym__flag, + STATE(4957), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8875), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179735] = 9, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(4581), 1, + anon_sym_DOT_DOT2, + ACTIONS(8877), 1, + sym_filesize_unit, + ACTIONS(8879), 1, + sym_duration_unit, + ACTIONS(8881), 1, + aux_sym_unquoted_token2, + STATE(4970), 1, sym_comment, - STATE(1748), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [189482] = 11, + ACTIONS(1616), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(1628), 2, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + ACTIONS(4583), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [179766] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2134), 1, + ACTIONS(1012), 1, anon_sym_DOLLAR, - ACTIONS(7048), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(7064), 1, + ACTIONS(7012), 1, + aux_sym_unquoted_token3, + ACTIONS(8052), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7066), 1, + ACTIONS(8883), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7068), 1, + ACTIONS(8885), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7070), 1, + ACTIONS(8887), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7156), 1, - aux_sym_unquoted_token3, - STATE(4463), 1, - sym__immediate_decimal, - STATE(5224), 1, + STATE(4971), 1, sym_comment, - STATE(4720), 2, + STATE(6332), 1, + sym__immediate_decimal, + STATE(1728), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [189517] = 8, + [179801] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1913), 1, - anon_sym_DASH2, - ACTIONS(8788), 1, - anon_sym_DOT2, - STATE(5213), 1, - aux_sym_cell_path_repeat1, - STATE(5225), 1, + STATE(4972), 1, sym_comment, - STATE(5534), 1, - sym_path, - STATE(5903), 1, - sym_cell_path, - ACTIONS(1915), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [189546] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1945), 1, + ACTIONS(1499), 3, anon_sym_DASH2, - ACTIONS(8788), 1, - anon_sym_DOT2, - STATE(5213), 1, - aux_sym_cell_path_repeat1, - STATE(5226), 1, - sym_comment, - STATE(5534), 1, - sym_path, - STATE(5906), 1, - sym_cell_path, - ACTIONS(1947), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [189575] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5227), 1, - sym_comment, - ACTIONS(1484), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1486), 6, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1501), 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, - sym__entry_separator, - [189596] = 8, - ACTIONS(245), 1, + [179822] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1843), 1, - anon_sym_DASH2, - ACTIONS(8788), 1, - anon_sym_DOT2, - STATE(5213), 1, - aux_sym_cell_path_repeat1, - STATE(5228), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR, + ACTIONS(5439), 1, + anon_sym_LPAREN2, + ACTIONS(5441), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5443), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5445), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5490), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8889), 1, + aux_sym__immediate_decimal_token1, + STATE(2762), 1, + sym__immediate_decimal, + STATE(4973), 1, sym_comment, - STATE(5534), 1, - sym_path, - STATE(5908), 1, - sym_cell_path, - ACTIONS(1845), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [189625] = 11, + STATE(2925), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [179857] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3544), 1, + ACTIONS(3601), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(7104), 1, anon_sym_LPAREN2, - ACTIONS(7082), 1, - aux_sym_unquoted_token3, - ACTIONS(8706), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8894), 1, + ACTIONS(7108), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8896), 1, + ACTIONS(7110), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7228), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8891), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8898), 1, + ACTIONS(8893), 1, aux_sym__immediate_decimal_token5, - STATE(5229), 1, - sym_comment, - STATE(6071), 1, + STATE(3964), 1, sym__immediate_decimal, - STATE(6425), 2, + STATE(4974), 1, + sym_comment, + STATE(4257), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [189660] = 11, + [179892] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1012), 1, + ACTIONS(3601), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(7104), 1, anon_sym_LPAREN2, - ACTIONS(4715), 1, - aux_sym_unquoted_token3, - ACTIONS(6444), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8900), 1, + ACTIONS(7145), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8902), 1, + ACTIONS(7147), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7228), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8895), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8904), 1, + ACTIONS(8897), 1, aux_sym__immediate_decimal_token5, - STATE(3612), 1, + STATE(4484), 1, sym__immediate_decimal, - STATE(5230), 1, + STATE(4975), 1, sym_comment, - STATE(1748), 2, + STATE(4802), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [189695] = 11, + [179927] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1012), 1, + ACTIONS(2014), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(6982), 1, anon_sym_LPAREN2, - ACTIONS(4527), 1, + ACTIONS(6986), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4715), 1, - aux_sym_unquoted_token3, - ACTIONS(8906), 1, + ACTIONS(6988), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8908), 1, + ACTIONS(6990), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8910), 1, + ACTIONS(6992), 1, aux_sym__immediate_decimal_token5, - STATE(2096), 1, + ACTIONS(7137), 1, + aux_sym_unquoted_token3, + STATE(3876), 1, sym__immediate_decimal, - STATE(5231), 1, + STATE(4976), 1, sym_comment, - STATE(1790), 2, + STATE(4031), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [189730] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1855), 1, - anon_sym_DASH2, - ACTIONS(8788), 1, - anon_sym_DOT2, - STATE(5213), 1, - aux_sym_cell_path_repeat1, - STATE(5232), 1, - sym_comment, - STATE(5534), 1, - sym_path, - STATE(5909), 1, - sym_cell_path, - ACTIONS(1857), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [189759] = 11, + [179962] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3544), 1, + ACTIONS(2014), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(6982), 1, anon_sym_LPAREN2, - ACTIONS(7082), 1, + ACTIONS(7137), 1, aux_sym_unquoted_token3, - ACTIONS(8836), 1, + ACTIONS(8012), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8912), 1, + ACTIONS(8014), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8914), 1, + ACTIONS(8016), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8916), 1, + ACTIONS(8018), 1, aux_sym__immediate_decimal_token5, - STATE(5233), 1, + STATE(4977), 1, sym_comment, - STATE(7487), 1, + STATE(5664), 1, sym__immediate_decimal, - STATE(1790), 2, + STATE(4356), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [189794] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1883), 1, - anon_sym_DASH2, - ACTIONS(8788), 1, - anon_sym_DOT2, - STATE(5213), 1, - aux_sym_cell_path_repeat1, - STATE(5234), 1, - sym_comment, - STATE(5534), 1, - sym_path, - STATE(5913), 1, - sym_cell_path, - ACTIONS(1885), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [189823] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1891), 1, - anon_sym_DASH2, - ACTIONS(8788), 1, - anon_sym_DOT2, - STATE(5213), 1, - aux_sym_cell_path_repeat1, - STATE(5235), 1, - sym_comment, - STATE(5534), 1, - sym_path, - STATE(5915), 1, - sym_cell_path, - ACTIONS(1893), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [189852] = 11, + [179997] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2686), 1, + ACTIONS(1433), 1, anon_sym_DOLLAR, - ACTIONS(3981), 1, + ACTIONS(1435), 1, anon_sym_LPAREN2, - ACTIONS(3985), 1, + ACTIONS(1439), 1, aux_sym__immediate_decimal_token3, - ACTIONS(3987), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4472), 1, - aux_sym_unquoted_token3, - ACTIONS(8918), 1, + ACTIONS(1441), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8920), 1, + ACTIONS(1443), 1, aux_sym__immediate_decimal_token5, - STATE(1449), 1, + ACTIONS(1630), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8899), 1, + aux_sym__immediate_decimal_token1, + STATE(384), 1, sym__immediate_decimal, - STATE(5236), 1, + STATE(4978), 1, sym_comment, - STATE(1587), 2, + STATE(459), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [189887] = 11, + [180032] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1012), 1, + ACTIONS(1463), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(1465), 1, anon_sym_LPAREN2, - ACTIONS(4715), 1, - aux_sym_unquoted_token3, - ACTIONS(6452), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8922), 1, + ACTIONS(1467), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8924), 1, + ACTIONS(1469), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8926), 1, + ACTIONS(1471), 1, aux_sym__immediate_decimal_token5, - STATE(3671), 1, + ACTIONS(1630), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8901), 1, + aux_sym__immediate_decimal_token1, + STATE(497), 1, sym__immediate_decimal, - STATE(5237), 1, + STATE(4979), 1, sym_comment, - STATE(1790), 2, + STATE(590), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [189922] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1927), 1, - anon_sym_DASH2, - ACTIONS(8788), 1, - anon_sym_DOT2, - STATE(5213), 1, - aux_sym_cell_path_repeat1, - STATE(5238), 1, - sym_comment, - STATE(5534), 1, - sym_path, - STATE(5817), 1, - sym_cell_path, - ACTIONS(1929), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [189951] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1923), 1, - anon_sym_DASH2, - ACTIONS(8788), 1, - anon_sym_DOT2, - STATE(5213), 1, - aux_sym_cell_path_repeat1, - STATE(5239), 1, - sym_comment, - STATE(5534), 1, - sym_path, - STATE(5916), 1, - sym_cell_path, - ACTIONS(1925), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [189980] = 11, + [180067] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1028), 1, + ACTIONS(2178), 1, anon_sym_DOLLAR, - ACTIONS(4501), 1, + ACTIONS(7028), 1, anon_sym_LPAREN2, - ACTIONS(4768), 1, - aux_sym_unquoted_token3, - ACTIONS(5759), 1, + ACTIONS(7032), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8928), 1, + ACTIONS(7034), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8930), 1, + ACTIONS(7036), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8932), 1, + ACTIONS(7038), 1, aux_sym__immediate_decimal_token5, - STATE(3197), 1, + ACTIONS(7181), 1, + aux_sym_unquoted_token3, + STATE(3894), 1, sym__immediate_decimal, - STATE(5240), 1, + STATE(4980), 1, sym_comment, - STATE(2090), 2, + STATE(4178), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190015] = 11, + [180102] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3993), 1, + ACTIONS(3048), 1, anon_sym_DOLLAR, - ACTIONS(3995), 1, + ACTIONS(8036), 1, anon_sym_LPAREN2, - ACTIONS(3997), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(3999), 1, + ACTIONS(8062), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4472), 1, - aux_sym_unquoted_token3, - ACTIONS(8934), 1, + ACTIONS(8064), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8066), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8936), 1, + ACTIONS(8068), 1, aux_sym__immediate_decimal_token5, - STATE(1630), 1, - sym__immediate_decimal, - STATE(5241), 1, + ACTIONS(8903), 1, + aux_sym__unquoted_in_record_token3, + STATE(4981), 1, sym_comment, - STATE(1929), 2, + STATE(5371), 1, + sym__immediate_decimal, + STATE(5600), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190050] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2469), 1, - anon_sym_DASH2, - STATE(5242), 1, - sym_comment, - ACTIONS(2471), 9, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - [190071] = 6, + [180137] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8938), 1, + ACTIONS(3048), 1, + anon_sym_DOLLAR, + ACTIONS(8036), 1, + anon_sym_LPAREN2, + ACTIONS(8560), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8940), 1, - aux_sym__immediate_decimal_token2, - STATE(5243), 1, + ACTIONS(8562), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8564), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8566), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8903), 1, + aux_sym__unquoted_in_record_token3, + STATE(4982), 1, sym_comment, - ACTIONS(1648), 4, - anon_sym_RBRACK, + STATE(6011), 1, + sym__immediate_decimal, + STATE(6470), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [180172] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1616), 1, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1650), 4, + ACTIONS(1618), 1, anon_sym_LPAREN2, + ACTIONS(1628), 1, + sym__entry_separator, + ACTIONS(8903), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(8905), 1, + anon_sym_DOT_DOT2, + ACTIONS(8909), 1, + sym_filesize_unit, + ACTIONS(8911), 1, + sym_duration_unit, + STATE(4983), 1, + sym_comment, + STATE(6970), 1, + sym__expr_parenthesized_immediate, + ACTIONS(8907), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [190096] = 4, + [180207] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5244), 1, + ACTIONS(8796), 1, + aux_sym__immediate_decimal_token2, + STATE(4984), 1, sym_comment, - ACTIONS(1715), 4, - anon_sym_RBRACK, + ACTIONS(1499), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1717), 6, + aux_sym__unquoted_in_record_token2, + ACTIONS(1501), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [190117] = 11, + [180230] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3506), 1, + ACTIONS(2887), 1, anon_sym_DOLLAR, - ACTIONS(4501), 1, + ACTIONS(3967), 1, anon_sym_LPAREN2, - ACTIONS(7017), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7128), 1, - aux_sym_unquoted_token3, - ACTIONS(8942), 1, + ACTIONS(3971), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8944), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8946), 1, - aux_sym__immediate_decimal_token5, - STATE(4048), 1, - sym__immediate_decimal, - STATE(5245), 1, - sym_comment, - STATE(4163), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [190152] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1028), 1, - anon_sym_DOLLAR, - ACTIONS(4501), 1, - anon_sym_LPAREN2, - ACTIONS(4768), 1, - aux_sym_unquoted_token3, - ACTIONS(5897), 1, + ACTIONS(3973), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8948), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8950), 1, + ACTIONS(4521), 1, + aux_sym_unquoted_token3, + ACTIONS(8913), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8952), 1, + ACTIONS(8915), 1, aux_sym__immediate_decimal_token5, - STATE(3304), 1, + STATE(1418), 1, sym__immediate_decimal, - STATE(5246), 1, + STATE(4985), 1, sym_comment, - STATE(2451), 2, + STATE(1566), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190187] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2469), 1, - anon_sym_DASH2, - STATE(5247), 1, - sym_comment, - ACTIONS(2471), 9, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - [190208] = 4, + [180265] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5248), 1, + STATE(4986), 1, sym_comment, - ACTIONS(1492), 4, + ACTIONS(1579), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1494), 6, + ACTIONS(1581), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [190229] = 11, + [180286] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1012), 1, + ACTIONS(4043), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(4045), 1, anon_sym_LPAREN2, - ACTIONS(4715), 1, - aux_sym_unquoted_token3, - ACTIONS(5694), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8954), 1, + ACTIONS(4047), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8956), 1, + ACTIONS(4049), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4521), 1, + aux_sym_unquoted_token3, + ACTIONS(8917), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8958), 1, + ACTIONS(8919), 1, aux_sym__immediate_decimal_token5, - STATE(3092), 1, + STATE(1597), 1, sym__immediate_decimal, - STATE(5249), 1, + STATE(4987), 1, sym_comment, - STATE(1748), 2, + STATE(1986), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190264] = 11, + [180321] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3506), 1, + ACTIONS(2178), 1, anon_sym_DOLLAR, - ACTIONS(4501), 1, + ACTIONS(7028), 1, anon_sym_LPAREN2, - ACTIONS(7032), 1, + ACTIONS(7064), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7128), 1, - aux_sym_unquoted_token3, - ACTIONS(8960), 1, + ACTIONS(7066), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8962), 1, + ACTIONS(7068), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8964), 1, + ACTIONS(7070), 1, aux_sym__immediate_decimal_token5, - STATE(4207), 1, + ACTIONS(7181), 1, + aux_sym_unquoted_token3, + STATE(4253), 1, sym__immediate_decimal, - STATE(5250), 1, + STATE(4988), 1, sym_comment, - STATE(2451), 2, + STATE(4500), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190299] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1931), 1, - anon_sym_DASH2, - ACTIONS(8788), 1, - anon_sym_DOT2, - STATE(5213), 1, - aux_sym_cell_path_repeat1, - STATE(5251), 1, - sym_comment, - STATE(5534), 1, - sym_path, - STATE(5920), 1, - sym_cell_path, - ACTIONS(1933), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [190328] = 11, + [180356] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3544), 1, + ACTIONS(1012), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(7007), 1, + ACTIONS(4031), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7082), 1, + ACTIONS(4672), 1, aux_sym_unquoted_token3, - ACTIONS(8966), 1, + ACTIONS(8921), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8968), 1, + ACTIONS(8923), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8970), 1, + ACTIONS(8925), 1, aux_sym__immediate_decimal_token5, - STATE(3972), 1, + STATE(1577), 1, sym__immediate_decimal, - STATE(5252), 1, + STATE(4989), 1, sym_comment, - STATE(4052), 2, + STATE(1637), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190363] = 11, + [180391] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1012), 1, + ACTIONS(2014), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(6982), 1, anon_sym_LPAREN2, - ACTIONS(4715), 1, - aux_sym_unquoted_token3, - ACTIONS(5769), 1, + ACTIONS(7020), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8972), 1, + ACTIONS(7022), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8974), 1, + ACTIONS(7024), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8976), 1, + ACTIONS(7026), 1, aux_sym__immediate_decimal_token5, - STATE(3267), 1, + ACTIONS(7137), 1, + aux_sym_unquoted_token3, + STATE(4041), 1, sym__immediate_decimal, - STATE(5253), 1, + STATE(4990), 1, sym_comment, - STATE(1790), 2, + STATE(4356), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190398] = 11, - ACTIONS(3), 1, + [180426] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5121), 1, + anon_sym_DASH2, + STATE(4991), 1, + sym_comment, + ACTIONS(5119), 9, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [180447] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2943), 1, + ACTIONS(5125), 1, + anon_sym_DASH2, + STATE(4992), 1, + sym_comment, + ACTIONS(5123), 9, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, - ACTIONS(4005), 1, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [180468] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1616), 1, + anon_sym_RBRACK, + ACTIONS(1628), 1, + sym__entry_separator, + ACTIONS(5480), 1, anon_sym_LPAREN2, - ACTIONS(4009), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(4011), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4482), 1, - aux_sym_unquoted_token3, - ACTIONS(8978), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8980), 1, - aux_sym__immediate_decimal_token5, - STATE(1489), 1, - sym__immediate_decimal, - STATE(5254), 1, + ACTIONS(8927), 1, + anon_sym_DOT_DOT2, + ACTIONS(8931), 1, + sym_filesize_unit, + ACTIONS(8933), 1, + sym_duration_unit, + ACTIONS(8935), 1, + aux_sym__unquoted_in_list_token2, + STATE(4993), 1, sym_comment, - STATE(1658), 2, + STATE(6933), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - [190433] = 11, + ACTIONS(8929), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [180503] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1012), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(7082), 1, + ACTIONS(4672), 1, aux_sym_unquoted_token3, - ACTIONS(7955), 1, + ACTIONS(6384), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8982), 1, + ACTIONS(8937), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8984), 1, + ACTIONS(8939), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8986), 1, + ACTIONS(8941), 1, aux_sym__immediate_decimal_token5, - STATE(5255), 1, - sym_comment, - STATE(5709), 1, + STATE(3412), 1, sym__immediate_decimal, - STATE(5943), 2, + STATE(4994), 1, + sym_comment, + STATE(1637), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190468] = 11, + [180538] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1012), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(4715), 1, - aux_sym_unquoted_token3, - ACTIONS(6494), 1, + ACTIONS(4545), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8988), 1, + ACTIONS(4672), 1, + aux_sym_unquoted_token3, + ACTIONS(8943), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8990), 1, + ACTIONS(8945), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8992), 1, + ACTIONS(8947), 1, aux_sym__immediate_decimal_token5, - STATE(3620), 1, + STATE(1911), 1, sym__immediate_decimal, - STATE(5256), 1, + STATE(4995), 1, sym_comment, - STATE(3645), 2, + STATE(1728), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190503] = 11, + [180573] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1823), 1, + anon_sym_DASH2, + ACTIONS(8738), 1, + anon_sym_DOT2, + STATE(4996), 1, + sym_comment, + STATE(5023), 1, + aux_sym_cell_path_repeat1, + STATE(5294), 1, + sym_path, + STATE(5497), 1, + sym_cell_path, + ACTIONS(1825), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [180602] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3544), 1, + ACTIONS(2633), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(3922), 1, anon_sym_LPAREN2, - ACTIONS(7023), 1, + ACTIONS(3926), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(3928), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7082), 1, + ACTIONS(4218), 1, aux_sym_unquoted_token3, - ACTIONS(8994), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8996), 1, + ACTIONS(8949), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8998), 1, + ACTIONS(8951), 1, aux_sym__immediate_decimal_token5, - STATE(4145), 1, + STATE(1365), 1, sym__immediate_decimal, - STATE(5257), 1, + STATE(4997), 1, sym_comment, - STATE(1790), 2, + STATE(1466), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190538] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5258), 1, - sym_comment, - ACTIONS(1538), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1540), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [190559] = 11, + [180637] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1012), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(4715), 1, + ACTIONS(4672), 1, aux_sym_unquoted_token3, - ACTIONS(6514), 1, + ACTIONS(6438), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9000), 1, + ACTIONS(8953), 1, aux_sym__immediate_decimal_token3, - ACTIONS(9002), 1, + ACTIONS(8955), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9004), 1, + ACTIONS(8957), 1, aux_sym__immediate_decimal_token5, - STATE(3675), 1, + STATE(3453), 1, sym__immediate_decimal, - STATE(5259), 1, + STATE(4998), 1, sym_comment, - STATE(1790), 2, + STATE(1728), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190594] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5260), 1, - sym_comment, - ACTIONS(1538), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1540), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [190615] = 11, + [180672] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7013), 1, - anon_sym_DOLLAR, - ACTIONS(8828), 1, - anon_sym_DASH_DASH, - ACTIONS(8830), 1, + ACTIONS(1833), 1, anon_sym_DASH2, - ACTIONS(9006), 1, - sym_identifier, - STATE(5261), 1, - sym_comment, - STATE(5283), 1, - aux_sym_ctrl_do_repeat1, - STATE(5422), 1, - sym__flag, - STATE(6832), 1, - sym_val_variable, - STATE(7246), 1, - sym__variable_name, - STATE(5217), 2, - sym_short_flag, - sym_long_flag, - [190650] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5262), 1, - sym_comment, - ACTIONS(968), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(966), 7, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, + ACTIONS(8738), 1, anon_sym_DOT2, - [190671] = 8, + STATE(4999), 1, + sym_comment, + STATE(5023), 1, + aux_sym_cell_path_repeat1, + STATE(5294), 1, + sym_path, + STATE(5499), 1, + sym_cell_path, + ACTIONS(1835), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [180701] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1847), 1, + ACTIONS(1879), 1, anon_sym_DASH2, - ACTIONS(8788), 1, + ACTIONS(8738), 1, anon_sym_DOT2, - STATE(5213), 1, - aux_sym_cell_path_repeat1, - STATE(5263), 1, + STATE(5000), 1, sym_comment, - STATE(5534), 1, + STATE(5023), 1, + aux_sym_cell_path_repeat1, + STATE(5294), 1, sym_path, - STATE(5888), 1, + STATE(5500), 1, sym_cell_path, - ACTIONS(1849), 5, + ACTIONS(1881), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [190700] = 8, + [180730] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1851), 1, + ACTIONS(1849), 1, anon_sym_DASH2, - ACTIONS(8788), 1, + ACTIONS(8738), 1, anon_sym_DOT2, - STATE(5213), 1, - aux_sym_cell_path_repeat1, - STATE(5264), 1, + STATE(5001), 1, sym_comment, - STATE(5534), 1, + STATE(5023), 1, + aux_sym_cell_path_repeat1, + STATE(5294), 1, sym_path, - STATE(5890), 1, + STATE(5506), 1, sym_cell_path, - ACTIONS(1853), 5, + ACTIONS(1851), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [190729] = 8, + [180759] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9008), 1, - anon_sym_DOT2, - STATE(5265), 1, + ACTIONS(1026), 1, + anon_sym_DOLLAR, + ACTIONS(4525), 1, + anon_sym_LPAREN2, + ACTIONS(4732), 1, + aux_sym_unquoted_token3, + ACTIONS(5768), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8959), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8961), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8963), 1, + aux_sym__immediate_decimal_token5, + STATE(2986), 1, + sym__immediate_decimal, + STATE(5002), 1, sym_comment, - STATE(5432), 1, - aux_sym_cell_path_repeat1, - STATE(5636), 1, - sym_path, - STATE(5962), 1, - sym_cell_path, - ACTIONS(1711), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1713), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [190758] = 4, + STATE(1995), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [180794] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3947), 1, + anon_sym_DOLLAR, + ACTIONS(3949), 1, + anon_sym_LPAREN2, + ACTIONS(3951), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(3953), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4218), 1, + aux_sym_unquoted_token3, + ACTIONS(8965), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8967), 1, + aux_sym__immediate_decimal_token5, + STATE(1542), 1, + sym__immediate_decimal, + STATE(5003), 1, + sym_comment, + STATE(1733), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [180829] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8644), 1, + ACTIONS(1863), 1, anon_sym_DASH2, - STATE(5266), 1, + ACTIONS(8738), 1, + anon_sym_DOT2, + STATE(5004), 1, sym_comment, - ACTIONS(5753), 9, - sym_identifier, + STATE(5023), 1, + aux_sym_cell_path_repeat1, + STATE(5294), 1, + sym_path, + STATE(5509), 1, + sym_cell_path, + ACTIONS(1865), 5, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DASH_DASH, - [190779] = 8, + [180858] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1959), 1, + ACTIONS(1907), 1, anon_sym_DASH2, - ACTIONS(8788), 1, + ACTIONS(8738), 1, anon_sym_DOT2, - STATE(5213), 1, - aux_sym_cell_path_repeat1, - STATE(5267), 1, + STATE(5005), 1, sym_comment, - STATE(5534), 1, + STATE(5023), 1, + aux_sym_cell_path_repeat1, + STATE(5294), 1, sym_path, - STATE(5801), 1, + STATE(5515), 1, sym_cell_path, - ACTIONS(1961), 5, + ACTIONS(1909), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [190808] = 6, + [180887] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(935), 1, + ACTIONS(1871), 1, anon_sym_DASH2, - ACTIONS(9010), 1, + ACTIONS(8738), 1, anon_sym_DOT2, - STATE(5534), 1, - sym_path, - STATE(5268), 2, + STATE(5006), 1, sym_comment, + STATE(5023), 1, aux_sym_cell_path_repeat1, - ACTIONS(937), 6, + STATE(5294), 1, + sym_path, + STATE(5521), 1, + sym_cell_path, + ACTIONS(1873), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - anon_sym_as, - [190833] = 8, + [180916] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1859), 1, + ACTIONS(1829), 1, anon_sym_DASH2, - ACTIONS(8788), 1, + ACTIONS(8738), 1, anon_sym_DOT2, - STATE(5213), 1, - aux_sym_cell_path_repeat1, - STATE(5269), 1, + STATE(5007), 1, sym_comment, - STATE(5534), 1, + STATE(5023), 1, + aux_sym_cell_path_repeat1, + STATE(5294), 1, sym_path, - STATE(5892), 1, + STATE(5530), 1, sym_cell_path, - ACTIONS(1861), 5, + ACTIONS(1831), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [190862] = 11, - ACTIONS(3), 1, + [180945] = 10, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1500), 1, - anon_sym_DOLLAR, - ACTIONS(1502), 1, + ACTIONS(1634), 1, + anon_sym_LBRACE, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(1506), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1508), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1664), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(9013), 1, + ACTIONS(6947), 1, + anon_sym_DOLLAR, + ACTIONS(8516), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9015), 1, + ACTIONS(8518), 1, aux_sym__immediate_decimal_token5, - STATE(433), 1, + STATE(1816), 1, sym__immediate_decimal, - STATE(5270), 1, + STATE(5008), 1, sym_comment, - STATE(530), 2, + ACTIONS(8969), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1815), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190897] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9017), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9019), 1, - aux_sym__immediate_decimal_token2, - STATE(5271), 1, - sym_comment, - ACTIONS(1648), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1650), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [190922] = 11, + [180978] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1355), 1, + ACTIONS(3470), 1, anon_sym_DOLLAR, - ACTIONS(1565), 1, + ACTIONS(4525), 1, anon_sym_LPAREN2, - ACTIONS(1567), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1569), 1, + ACTIONS(6967), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1664), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(9021), 1, + ACTIONS(7062), 1, + aux_sym_unquoted_token3, + ACTIONS(8971), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8973), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9023), 1, + ACTIONS(8975), 1, aux_sym__immediate_decimal_token5, - STATE(575), 1, + STATE(3834), 1, sym__immediate_decimal, - STATE(5272), 1, + STATE(5009), 1, sym_comment, - STATE(742), 2, + STATE(3908), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190957] = 10, - ACTIONS(245), 1, + [181013] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1646), 1, - anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_LPAREN2, - ACTIONS(7003), 1, + ACTIONS(1026), 1, anon_sym_DOLLAR, - ACTIONS(8708), 1, + ACTIONS(4525), 1, + anon_sym_LPAREN2, + ACTIONS(4732), 1, + aux_sym_unquoted_token3, + ACTIONS(5816), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8977), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8979), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8710), 1, + ACTIONS(8981), 1, aux_sym__immediate_decimal_token5, - STATE(1819), 1, + STATE(3112), 1, sym__immediate_decimal, - STATE(5273), 1, + STATE(5010), 1, sym_comment, - ACTIONS(9025), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1818), 2, + STATE(2321), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [190990] = 4, + [181048] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5274), 1, + STATE(5011), 1, sym_comment, - ACTIONS(1715), 4, + ACTIONS(1499), 4, sym__newline, anon_sym_SEMI, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1717), 6, + ACTIONS(1501), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [191011] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9027), 1, - anon_sym_DOT, - ACTIONS(9029), 1, - aux_sym__immediate_decimal_token2, - STATE(5275), 1, - sym_comment, - ACTIONS(1666), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1668), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [191036] = 4, + [181069] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5193), 1, - anon_sym_DASH2, - STATE(5276), 1, - sym_comment, - ACTIONS(5191), 9, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, + ACTIONS(6963), 1, anon_sym_DOLLAR, + ACTIONS(8774), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [191057] = 8, + ACTIONS(8776), 1, + anon_sym_DASH2, + ACTIONS(8983), 1, + sym_identifier, + STATE(5012), 1, + sym_comment, + STATE(5042), 1, + aux_sym_ctrl_do_repeat1, + STATE(5175), 1, + sym__flag, + STATE(6415), 1, + sym_val_variable, + STATE(6535), 1, + sym__variable_name, + STATE(4957), 2, + sym_short_flag, + sym_long_flag, + [181104] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1935), 1, + ACTIONS(6947), 1, + anon_sym_DOLLAR, + ACTIONS(8772), 1, + sym_identifier, + ACTIONS(8774), 1, + anon_sym_DASH_DASH, + ACTIONS(8776), 1, anon_sym_DASH2, - ACTIONS(8788), 1, - anon_sym_DOT2, - STATE(5213), 1, - aux_sym_cell_path_repeat1, - STATE(5277), 1, + STATE(5013), 1, sym_comment, - STATE(5534), 1, - sym_path, - STATE(5922), 1, - sym_cell_path, - ACTIONS(1937), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [191086] = 11, + STATE(5025), 1, + aux_sym_ctrl_do_repeat1, + STATE(5175), 1, + sym__flag, + STATE(5360), 1, + sym_val_variable, + STATE(6151), 1, + sym__variable_name, + STATE(4957), 2, + sym_short_flag, + sym_long_flag, + [181139] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1012), 1, + ACTIONS(3470), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(4525), 1, anon_sym_LPAREN2, - ACTIONS(7082), 1, - aux_sym_unquoted_token3, - ACTIONS(8202), 1, + ACTIONS(6976), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9031), 1, + ACTIONS(7062), 1, + aux_sym_unquoted_token3, + ACTIONS(8985), 1, aux_sym__immediate_decimal_token3, - ACTIONS(9033), 1, + ACTIONS(8987), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9035), 1, + ACTIONS(8989), 1, aux_sym__immediate_decimal_token5, - STATE(5278), 1, - sym_comment, - STATE(6725), 1, + STATE(4032), 1, sym__immediate_decimal, - STATE(1790), 2, + STATE(5014), 1, + sym_comment, + STATE(2321), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191121] = 10, + [181174] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1577), 1, - anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_LPAREN2, - ACTIONS(7003), 1, + STATE(5015), 1, + sym_comment, + ACTIONS(1581), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1579), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [181195] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3442), 1, anon_sym_DOLLAR, - ACTIONS(8708), 1, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(6951), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7012), 1, + aux_sym_unquoted_token3, + ACTIONS(8991), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8993), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8710), 1, + ACTIONS(8995), 1, aux_sym__immediate_decimal_token5, - STATE(1821), 1, + STATE(3786), 1, sym__immediate_decimal, - STATE(5279), 1, + STATE(5016), 1, sym_comment, - ACTIONS(9025), 2, + STATE(3882), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [181230] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1012), 1, + anon_sym_DOLLAR, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(4672), 1, + aux_sym_unquoted_token3, + ACTIONS(5728), 1, aux_sym__immediate_decimal_token1, + ACTIONS(8997), 1, aux_sym__immediate_decimal_token3, - STATE(1820), 2, + ACTIONS(8999), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9001), 1, + aux_sym__immediate_decimal_token5, + STATE(3082), 1, + sym__immediate_decimal, + STATE(5017), 1, + sym_comment, + STATE(1728), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191154] = 7, + [181265] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9037), 1, - anon_sym_DASH_DASH, - ACTIONS(9040), 1, + ACTIONS(2278), 1, anon_sym_DASH2, - STATE(5422), 1, - sym__flag, - STATE(5217), 2, - sym_short_flag, - sym_long_flag, - STATE(5280), 2, + STATE(5018), 1, sym_comment, - aux_sym_ctrl_do_repeat1, - ACTIONS(6320), 4, + ACTIONS(2280), 9, sym__newline, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - [191181] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5281), 1, - sym_comment, - ACTIONS(960), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(958), 7, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [191202] = 11, + anon_sym_as, + [181286] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1012), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(7082), 1, + ACTIONS(4672), 1, aux_sym_unquoted_token3, - ACTIONS(8118), 1, + ACTIONS(6398), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9043), 1, + ACTIONS(9003), 1, aux_sym__immediate_decimal_token3, - ACTIONS(9045), 1, + ACTIONS(9005), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9047), 1, + ACTIONS(9007), 1, aux_sym__immediate_decimal_token5, - STATE(5282), 1, - sym_comment, - STATE(5756), 1, + STATE(3425), 1, sym__immediate_decimal, - STATE(5943), 2, + STATE(5019), 1, + sym_comment, + STATE(3470), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191237] = 11, - ACTIONS(245), 1, + [181321] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7013), 1, + ACTIONS(3442), 1, anon_sym_DOLLAR, - ACTIONS(8828), 1, - anon_sym_DASH_DASH, - ACTIONS(8830), 1, - anon_sym_DASH2, - ACTIONS(9006), 1, - sym_identifier, - STATE(5283), 1, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(6957), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7012), 1, + aux_sym_unquoted_token3, + ACTIONS(9009), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9011), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9013), 1, + aux_sym__immediate_decimal_token5, + STATE(3960), 1, + sym__immediate_decimal, + STATE(5020), 1, sym_comment, - STATE(5422), 1, - sym__flag, - STATE(5507), 1, - aux_sym_ctrl_do_repeat1, - STATE(6832), 1, + STATE(1728), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(7092), 1, - sym__variable_name, - STATE(5217), 2, - sym_short_flag, - sym_long_flag, - [191272] = 4, - ACTIONS(245), 1, + [181356] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5197), 1, - anon_sym_DASH2, - STATE(5284), 1, + STATE(5021), 1, sym_comment, - ACTIONS(5195), 9, - sym_identifier, + ACTIONS(1491), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [191293] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(5285), 1, - sym_comment, - ACTIONS(1715), 3, - anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1717), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(1493), 6, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [191314] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8578), 1, - anon_sym_DASH_DASH, - ACTIONS(8580), 1, - anon_sym_DASH2, - STATE(5280), 1, - aux_sym_ctrl_do_repeat1, - STATE(5286), 1, - sym_comment, - STATE(5422), 1, - sym__flag, - STATE(5217), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(9049), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [191343] = 11, + [181377] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1012), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(7082), 1, + ACTIONS(4672), 1, aux_sym_unquoted_token3, - ACTIONS(8488), 1, + ACTIONS(6448), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9051), 1, + ACTIONS(9015), 1, aux_sym__immediate_decimal_token3, - ACTIONS(9053), 1, + ACTIONS(9017), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9055), 1, + ACTIONS(9019), 1, aux_sym__immediate_decimal_token5, - STATE(5287), 1, - sym_comment, - STATE(6957), 1, + STATE(3537), 1, sym__immediate_decimal, - STATE(1790), 2, + STATE(5022), 1, + sym_comment, + STATE(1728), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191378] = 9, + [181412] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4673), 1, - anon_sym_DOT_DOT2, - ACTIONS(9057), 1, - sym_filesize_unit, - ACTIONS(9059), 1, - sym_duration_unit, - ACTIONS(9061), 1, - aux_sym_unquoted_token2, - STATE(5288), 1, - sym_comment, - ACTIONS(1579), 2, - sym_identifier, + ACTIONS(938), 1, anon_sym_DASH2, - ACTIONS(1591), 2, - anon_sym_DOLLAR, + ACTIONS(8738), 1, + anon_sym_DOT2, + STATE(5023), 1, + sym_comment, + STATE(5032), 1, + aux_sym_cell_path_repeat1, + STATE(5294), 1, + sym_path, + ACTIONS(940), 6, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DASH_DASH, - ACTIONS(4675), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [191409] = 8, + anon_sym_as, + [181439] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8578), 1, - anon_sym_DASH_DASH, - ACTIONS(8580), 1, + ACTIONS(2278), 1, anon_sym_DASH2, - STATE(5280), 1, - aux_sym_ctrl_do_repeat1, - STATE(5289), 1, + STATE(5024), 1, sym_comment, - STATE(5422), 1, - sym__flag, - STATE(5217), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(9063), 4, + ACTIONS(2280), 9, sym__newline, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - [191438] = 11, + anon_sym_as, + [181460] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7003), 1, + ACTIONS(6947), 1, anon_sym_DOLLAR, - ACTIONS(8826), 1, + ACTIONS(8772), 1, sym_identifier, - ACTIONS(8828), 1, + ACTIONS(8774), 1, anon_sym_DASH_DASH, - ACTIONS(8830), 1, + ACTIONS(8776), 1, anon_sym_DASH2, - STATE(5290), 1, + STATE(5025), 1, sym_comment, - STATE(5302), 1, - aux_sym_ctrl_do_repeat1, - STATE(5422), 1, + STATE(5175), 1, sym__flag, - STATE(5713), 1, + STATE(5285), 1, + aux_sym_ctrl_do_repeat1, + STATE(5360), 1, sym_val_variable, - STATE(6406), 1, + STATE(5907), 1, sym__variable_name, - STATE(5217), 2, + STATE(4957), 2, sym_short_flag, sym_long_flag, - [191473] = 4, + [181495] = 10, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5201), 1, - anon_sym_DASH2, - STATE(5291), 1, - sym_comment, - ACTIONS(5199), 9, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(1646), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - [191494] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1863), 1, - anon_sym_DASH2, - ACTIONS(8788), 1, - anon_sym_DOT2, - STATE(5213), 1, - aux_sym_cell_path_repeat1, - STATE(5292), 1, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(6947), 1, + anon_sym_DOLLAR, + ACTIONS(8516), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8518), 1, + aux_sym__immediate_decimal_token5, + STATE(1818), 1, + sym__immediate_decimal, + STATE(5026), 1, sym_comment, - STATE(5534), 1, - sym_path, - STATE(5893), 1, - sym_cell_path, - ACTIONS(1865), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [191523] = 4, + ACTIONS(8969), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1817), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [181528] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2300), 1, + ACTIONS(8542), 1, + anon_sym_DASH_DASH, + ACTIONS(8544), 1, anon_sym_DASH2, - STATE(5293), 1, + STATE(5027), 1, sym_comment, - ACTIONS(2302), 9, + STATE(5055), 1, + aux_sym_ctrl_do_repeat1, + STATE(5175), 1, + sym__flag, + STATE(4957), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(9021), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_as, - [191544] = 4, + [181557] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5294), 1, + STATE(5028), 1, sym_comment, - ACTIONS(1492), 4, + ACTIONS(1579), 4, sym__newline, anon_sym_SEMI, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1494), 6, + ACTIONS(1581), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [191565] = 10, + [181578] = 10, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1552), 1, + ACTIONS(1546), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(7003), 1, + ACTIONS(6947), 1, anon_sym_DOLLAR, - ACTIONS(8708), 1, + ACTIONS(8516), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8710), 1, + ACTIONS(8518), 1, aux_sym__immediate_decimal_token5, - STATE(1823), 1, + STATE(1822), 1, sym__immediate_decimal, - STATE(5295), 1, + STATE(5029), 1, sym_comment, - ACTIONS(9025), 2, + ACTIONS(8969), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1822), 2, + STATE(1821), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191598] = 4, + [181611] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2457), 1, - anon_sym_DASH2, - STATE(5296), 1, + STATE(5030), 1, sym_comment, - ACTIONS(2459), 9, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, + ACTIONS(1678), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1680), 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, + [181632] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9023), 1, + aux_sym__immediate_decimal_token2, + STATE(5031), 1, + sym_comment, + ACTIONS(1579), 3, anon_sym_RBRACE, - anon_sym_as, - [191619] = 8, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1581), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [181655] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1875), 1, + ACTIONS(931), 1, anon_sym_DASH2, - ACTIONS(8788), 1, + ACTIONS(9025), 1, anon_sym_DOT2, - STATE(5213), 1, - aux_sym_cell_path_repeat1, - STATE(5297), 1, - sym_comment, - STATE(5534), 1, + STATE(5294), 1, sym_path, - STATE(5895), 1, - sym_cell_path, - ACTIONS(1877), 5, + STATE(5032), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(933), 6, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [191648] = 8, + anon_sym_as, + [181680] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8578), 1, + ACTIONS(8542), 1, anon_sym_DASH_DASH, - ACTIONS(8580), 1, + ACTIONS(8544), 1, anon_sym_DASH2, - STATE(5298), 1, + STATE(5033), 1, sym_comment, - STATE(5309), 1, + STATE(5037), 1, aux_sym_ctrl_do_repeat1, - STATE(5422), 1, + STATE(5175), 1, sym__flag, - STATE(5217), 2, + STATE(4957), 2, sym_short_flag, sym_long_flag, - ACTIONS(9065), 4, + ACTIONS(9028), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [191677] = 4, + [181709] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(5299), 1, + STATE(5034), 1, sym_comment, - ACTIONS(1538), 3, + ACTIONS(1491), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1540), 7, + ACTIONS(1493), 7, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -400266,171 +383098,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [191698] = 4, - ACTIONS(245), 1, + [181730] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5189), 1, - anon_sym_DASH2, - STATE(5300), 1, - sym_comment, - ACTIONS(5187), 9, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, + ACTIONS(5468), 1, + anon_sym_LPAREN2, + ACTIONS(5472), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5474), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5760), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8394), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [191719] = 4, - ACTIONS(245), 1, + ACTIONS(8398), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8400), 1, + aux_sym__immediate_decimal_token5, + STATE(2677), 1, + sym__immediate_decimal, + STATE(5035), 1, + sym_comment, + STATE(2780), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [181765] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5301), 1, + STATE(5036), 1, sym_comment, - ACTIONS(1492), 3, - anon_sym_DASH2, + ACTIONS(1678), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1494), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(1680), 6, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [191740] = 11, + [181786] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7003), 1, - anon_sym_DOLLAR, - ACTIONS(8826), 1, - sym_identifier, - ACTIONS(8828), 1, + ACTIONS(9030), 1, anon_sym_DASH_DASH, - ACTIONS(8830), 1, + ACTIONS(9033), 1, anon_sym_DASH2, - STATE(5302), 1, - sym_comment, - STATE(5422), 1, + STATE(5175), 1, sym__flag, - STATE(5507), 1, - aux_sym_ctrl_do_repeat1, - STATE(5713), 1, - sym_val_variable, - STATE(6741), 1, - sym__variable_name, - STATE(5217), 2, + STATE(4957), 2, sym_short_flag, sym_long_flag, - [191775] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5173), 1, - anon_sym_DASH2, - STATE(5303), 1, + STATE(5037), 2, sym_comment, - ACTIONS(5171), 9, - sym_identifier, + aux_sym_ctrl_do_repeat1, + ACTIONS(6261), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - [191796] = 4, - ACTIONS(245), 1, + [181813] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5304), 1, + ACTIONS(9036), 1, + anon_sym_DOT, + ACTIONS(9038), 1, + aux_sym__immediate_decimal_token2, + STATE(5038), 1, sym_comment, - ACTIONS(1540), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(1701), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1703), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1538), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [191817] = 4, + sym__entry_separator, + [181838] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(5305), 1, + ACTIONS(8424), 1, + anon_sym_DASH2, + STATE(5039), 1, sym_comment, - ACTIONS(1494), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1492), 6, + ACTIONS(5750), 9, sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [191838] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5556), 1, - anon_sym_LPAREN2, - ACTIONS(5558), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5560), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5834), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(9067), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(9069), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9071), 1, - aux_sym__immediate_decimal_token5, - STATE(3097), 1, - sym__immediate_decimal, - STATE(5306), 1, - sym_comment, - STATE(3153), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [191873] = 11, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [181859] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3122), 1, + ACTIONS(3048), 1, anon_sym_DOLLAR, - ACTIONS(8096), 1, + ACTIONS(8036), 1, anon_sym_LPAREN2, - ACTIONS(8100), 1, + ACTIONS(8040), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8102), 1, + ACTIONS(8042), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8104), 1, + ACTIONS(8044), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8106), 1, + ACTIONS(8046), 1, aux_sym__immediate_decimal_token5, - ACTIONS(9073), 1, - aux_sym__unquoted_in_record_token3, - STATE(5307), 1, + ACTIONS(8935), 1, + aux_sym__unquoted_in_list_token3, + STATE(5040), 1, sym_comment, - STATE(5692), 1, + STATE(5415), 1, sym__immediate_decimal, - STATE(5752), 2, + STATE(5600), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [191908] = 4, + [181894] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2475), 1, + ACTIONS(2282), 1, anon_sym_DASH2, - STATE(5308), 1, + STATE(5041), 1, sym_comment, - ACTIONS(2477), 9, + ACTIONS(2284), 9, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, @@ -400440,293 +383236,321 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_as, - [191929] = 8, + [181915] = 11, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8578), 1, + ACTIONS(6963), 1, + anon_sym_DOLLAR, + ACTIONS(8774), 1, anon_sym_DASH_DASH, - ACTIONS(8580), 1, + ACTIONS(8776), 1, anon_sym_DASH2, - STATE(5280), 1, - aux_sym_ctrl_do_repeat1, - STATE(5309), 1, + ACTIONS(8983), 1, + sym_identifier, + STATE(5042), 1, sym_comment, - STATE(5422), 1, + STATE(5175), 1, sym__flag, - STATE(5217), 2, + STATE(5285), 1, + aux_sym_ctrl_do_repeat1, + STATE(6391), 1, + sym__variable_name, + STATE(6415), 1, + sym_val_variable, + STATE(4957), 2, sym_short_flag, sym_long_flag, - ACTIONS(9075), 4, + [181950] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1272), 1, + anon_sym_DASH2, + ACTIONS(9040), 1, sym__newline, - anon_sym_SEMI, + STATE(5043), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1274), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [191958] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5493), 1, - anon_sym_LPAREN2, - ACTIONS(5497), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5499), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5834), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8478), 1, anon_sym_DOLLAR, - ACTIONS(8482), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8484), 1, - aux_sym__immediate_decimal_token5, - STATE(2827), 1, - sym__immediate_decimal, - STATE(5310), 1, - sym_comment, - STATE(2965), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [191993] = 9, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [181973] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8768), 1, - anon_sym_DASH_DASH, - ACTIONS(8770), 1, + ACTIONS(2286), 1, anon_sym_DASH2, - ACTIONS(9077), 1, - anon_sym_as, - STATE(5311), 1, + STATE(5044), 1, sym_comment, - STATE(5448), 1, - aux_sym_ctrl_do_repeat1, - STATE(6110), 1, - sym__flag, - STATE(5889), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8782), 3, - ts_builtin_sym_end, + ACTIONS(2288), 9, sym__newline, anon_sym_SEMI, - [192024] = 10, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1482), 1, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_LPAREN2, - ACTIONS(7003), 1, + anon_sym_RBRACE, + anon_sym_as, + [181994] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5045), 1, + sym_comment, + ACTIONS(948), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(946), 7, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [182015] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1026), 1, anon_sym_DOLLAR, - ACTIONS(8708), 1, + ACTIONS(4525), 1, + anon_sym_LPAREN2, + ACTIONS(4529), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4732), 1, + aux_sym_unquoted_token3, + ACTIONS(9043), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(9045), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8710), 1, + ACTIONS(9047), 1, aux_sym__immediate_decimal_token5, - STATE(1802), 1, + STATE(1665), 1, sym__immediate_decimal, - STATE(5312), 1, + STATE(5046), 1, sym_comment, - ACTIONS(9025), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1801), 2, + STATE(1995), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192057] = 8, + [182050] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1839), 1, - anon_sym_DASH2, - ACTIONS(8788), 1, - anon_sym_DOT2, - STATE(5213), 1, - aux_sym_cell_path_repeat1, - STATE(5313), 1, + ACTIONS(8780), 1, + aux_sym__immediate_decimal_token2, + STATE(5047), 1, sym_comment, - STATE(5534), 1, - sym_path, - STATE(5812), 1, - sym_cell_path, - ACTIONS(1841), 5, - ts_builtin_sym_end, + ACTIONS(1499), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1501), 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, + [182073] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9049), 1, + anon_sym_DOT, + ACTIONS(9051), 1, + aux_sym__immediate_decimal_token2, + STATE(5048), 1, + sym_comment, + ACTIONS(1701), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [192086] = 4, - ACTIONS(245), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [182098] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5314), 1, + STATE(5049), 1, sym_comment, - ACTIONS(1484), 3, - anon_sym_DASH2, + ACTIONS(1499), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1486), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + aux_sym__unquoted_in_list_token2, + ACTIONS(1501), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [192107] = 9, + sym__entry_separator, + [182119] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1579), 1, + STATE(5050), 1, + sym_comment, + ACTIONS(1501), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1499), 6, + sym_identifier, anon_sym_DASH2, - ACTIONS(4673), 1, anon_sym_DOT_DOT2, - ACTIONS(7082), 1, - aux_sym_unquoted_token2, - ACTIONS(9079), 1, sym_filesize_unit, - ACTIONS(9081), 1, sym_duration_unit, - STATE(5315), 1, + aux_sym_unquoted_token2, + [182140] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(2290), 1, + anon_sym_DASH2, + STATE(5051), 1, sym_comment, - ACTIONS(4675), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1591), 3, + ACTIONS(2292), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [192138] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3122), 1, - anon_sym_DOLLAR, - ACTIONS(8096), 1, - anon_sym_LPAREN2, - ACTIONS(8608), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8610), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8612), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8614), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9073), 1, - aux_sym__unquoted_in_record_token3, - STATE(5316), 1, - sym_comment, - STATE(6308), 1, - sym__immediate_decimal, - STATE(6812), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [192173] = 11, + anon_sym_RBRACE, + anon_sym_as, + [182161] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1579), 1, - anon_sym_RBRACE, - ACTIONS(1581), 1, - anon_sym_LPAREN2, - ACTIONS(1591), 1, - sym__entry_separator, - ACTIONS(9073), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(9083), 1, - anon_sym_DOT_DOT2, - ACTIONS(9087), 1, - sym_filesize_unit, - ACTIONS(9089), 1, - sym_duration_unit, - STATE(5317), 1, + STATE(5052), 1, sym_comment, - STATE(7435), 1, - sym__expr_parenthesized_immediate, - ACTIONS(9085), 2, + ACTIONS(952), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [192208] = 8, + sym__entry_separator, + ACTIONS(950), 7, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [182182] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8578), 1, + ACTIONS(8734), 1, anon_sym_DASH_DASH, - ACTIONS(8580), 1, + ACTIONS(8736), 1, anon_sym_DASH2, - STATE(5280), 1, - aux_sym_ctrl_do_repeat1, - STATE(5318), 1, + ACTIONS(9053), 1, + anon_sym_as, + STATE(5053), 1, sym_comment, - STATE(5422), 1, + STATE(5079), 1, + aux_sym_ctrl_do_repeat1, + STATE(5696), 1, sym__flag, - STATE(5217), 2, + STATE(5482), 2, sym_short_flag, sym_long_flag, - ACTIONS(9091), 4, + ACTIONS(8742), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [192237] = 7, + [182213] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(931), 1, + ACTIONS(2294), 1, anon_sym_DASH2, - ACTIONS(8780), 1, - anon_sym_DOT2, - STATE(5319), 1, + STATE(5054), 1, sym_comment, - STATE(5321), 1, - aux_sym_cell_path_repeat1, - STATE(5626), 1, - sym_path, - ACTIONS(933), 6, + ACTIONS(2296), 9, sym__newline, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_as, - [192264] = 4, + [182234] = 8, ACTIONS(245), 1, anon_sym_POUND, - STATE(5320), 1, + ACTIONS(8542), 1, + anon_sym_DASH_DASH, + ACTIONS(8544), 1, + anon_sym_DASH2, + STATE(5037), 1, + aux_sym_ctrl_do_repeat1, + STATE(5055), 1, + sym_comment, + STATE(5175), 1, + sym__flag, + STATE(4957), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(9055), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [182263] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(5056), 1, sym_comment, - ACTIONS(1486), 4, + ACTIONS(1680), 4, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1484), 6, + ACTIONS(1678), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [192285] = 6, + [182284] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(935), 1, + ACTIONS(8542), 1, + anon_sym_DASH_DASH, + ACTIONS(8544), 1, anon_sym_DASH2, - ACTIONS(9093), 1, - anon_sym_DOT2, - STATE(5626), 1, - sym_path, - STATE(5321), 2, + STATE(5057), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(937), 6, + STATE(5059), 1, + aux_sym_ctrl_do_repeat1, + STATE(5175), 1, + sym__flag, + STATE(4957), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(9057), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - [192310] = 8, + [182313] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9008), 1, + ACTIONS(8851), 1, anon_sym_DOT2, - STATE(5322), 1, + STATE(5058), 1, sym_comment, - STATE(5432), 1, + STATE(5081), 1, aux_sym_cell_path_repeat1, - STATE(5636), 1, + STATE(5358), 1, sym_path, - STATE(5755), 1, + STATE(5618), 1, sym_cell_path, ACTIONS(925), 3, anon_sym_RBRACK, @@ -400736,53 +383560,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [192339] = 8, + [182342] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1879), 1, + ACTIONS(8542), 1, + anon_sym_DASH_DASH, + ACTIONS(8544), 1, anon_sym_DASH2, - ACTIONS(8788), 1, - anon_sym_DOT2, - STATE(5213), 1, - aux_sym_cell_path_repeat1, - STATE(5323), 1, + STATE(5037), 1, + aux_sym_ctrl_do_repeat1, + STATE(5059), 1, sym_comment, - STATE(5534), 1, - sym_path, - STATE(5900), 1, - sym_cell_path, - ACTIONS(1881), 5, - ts_builtin_sym_end, + STATE(5175), 1, + sym__flag, + STATE(4957), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(9059), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [192368] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [182371] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9096), 1, - aux_sym__immediate_decimal_token2, - STATE(5324), 1, + ACTIONS(5050), 1, + anon_sym_DASH2, + STATE(5060), 1, sym_comment, - ACTIONS(1538), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1540), 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, - [192391] = 4, + ACTIONS(5048), 9, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [182392] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5169), 1, + ACTIONS(5062), 1, anon_sym_DASH2, - STATE(5325), 1, + STATE(5061), 1, sym_comment, - ACTIONS(5167), 9, + ACTIONS(5060), 9, sym_identifier, sym__newline, anon_sym_SEMI, @@ -400792,96 +383615,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [192412] = 11, + [182413] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3122), 1, + ACTIONS(3048), 1, anon_sym_DOLLAR, - ACTIONS(8096), 1, + ACTIONS(8036), 1, anon_sym_LPAREN2, - ACTIONS(8496), 1, + ACTIONS(8442), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8498), 1, + ACTIONS(8444), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8500), 1, + ACTIONS(8446), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8502), 1, + ACTIONS(8448), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8886), 1, + ACTIONS(8935), 1, aux_sym__unquoted_in_list_token3, - STATE(5326), 1, + STATE(5062), 1, sym_comment, - STATE(6313), 1, + STATE(6252), 1, sym__immediate_decimal, - STATE(6812), 2, + STATE(6470), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192447] = 4, + [182448] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(5327), 1, - sym_comment, - ACTIONS(964), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(962), 7, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [192468] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1895), 1, - anon_sym_DASH2, - ACTIONS(8788), 1, - anon_sym_DOT2, - STATE(5213), 1, - aux_sym_cell_path_repeat1, - STATE(5328), 1, + ACTIONS(5505), 1, + anon_sym_LPAREN2, + ACTIONS(5507), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5509), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5760), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(9061), 1, + anon_sym_DOLLAR, + ACTIONS(9063), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9065), 1, + aux_sym__immediate_decimal_token5, + STATE(2933), 1, + sym__immediate_decimal, + STATE(5063), 1, sym_comment, - STATE(5534), 1, - sym_path, - STATE(5901), 1, - sym_cell_path, - ACTIONS(1897), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [192497] = 5, + STATE(2997), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182483] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9098), 1, - aux_sym__immediate_decimal_token2, - STATE(5329), 1, + STATE(5064), 1, sym_comment, - ACTIONS(1538), 3, + ACTIONS(1491), 4, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1540), 6, + aux_sym__unquoted_in_list_token2, + ACTIONS(1493), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [192520] = 4, + [182504] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5330), 1, + STATE(5065), 1, sym_comment, - ACTIONS(956), 3, + ACTIONS(944), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(954), 7, + ACTIONS(942), 7, anon_sym_COLON, anon_sym_RBRACK, anon_sym_GT2, @@ -400889,664 +383697,503 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT2, - [192541] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2228), 1, - anon_sym_DOLLAR, - ACTIONS(7088), 1, - anon_sym_LPAREN2, - ACTIONS(7092), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7094), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7096), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7098), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7221), 1, - aux_sym_unquoted_token3, - STATE(4112), 1, - sym__immediate_decimal, - STATE(5331), 1, - sym_comment, - STATE(4454), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [192576] = 6, - ACTIONS(3), 1, + [182525] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9100), 1, - anon_sym_DOT, - ACTIONS(9102), 1, + ACTIONS(9067), 1, aux_sym__immediate_decimal_token2, - STATE(5332), 1, + STATE(5066), 1, sym_comment, - ACTIONS(1666), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(1579), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1668), 4, - sym__space, - anon_sym_LPAREN2, + ACTIONS(1581), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [192601] = 5, + sym_filesize_unit, + sym_duration_unit, + [182548] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1284), 1, + ACTIONS(5113), 1, anon_sym_DASH2, - ACTIONS(9104), 1, - sym__newline, - STATE(5333), 2, + STATE(5067), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1286), 7, + ACTIONS(5111), 9, sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RPAREN, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [192624] = 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + [182569] = 10, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8852), 1, - aux_sym__immediate_decimal_token2, - STATE(5334), 1, + ACTIONS(1489), 1, + anon_sym_LBRACE, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(6947), 1, + anon_sym_DOLLAR, + ACTIONS(8516), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8518), 1, + aux_sym__immediate_decimal_token5, + STATE(1771), 1, + sym__immediate_decimal, + STATE(5068), 1, sym_comment, - ACTIONS(1492), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1494), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(8969), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1770), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [182602] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5069), 1, + sym_comment, + ACTIONS(956), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [192647] = 8, + sym__entry_separator, + ACTIONS(954), 7, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [182623] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1829), 1, + ACTIONS(1616), 1, anon_sym_DASH2, - ACTIONS(8788), 1, - anon_sym_DOT2, - STATE(5213), 1, - aux_sym_cell_path_repeat1, - STATE(5335), 1, + ACTIONS(4581), 1, + anon_sym_DOT_DOT2, + ACTIONS(7012), 1, + aux_sym_unquoted_token2, + ACTIONS(9069), 1, + sym_filesize_unit, + ACTIONS(9071), 1, + sym_duration_unit, + STATE(5070), 1, sym_comment, - STATE(5534), 1, - sym_path, - STATE(5882), 1, - sym_cell_path, - ACTIONS(1831), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(4583), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1628), 3, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - [192676] = 4, + anon_sym_LBRACE, + [182654] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5336), 1, + ACTIONS(9073), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9075), 1, + aux_sym__immediate_decimal_token2, + STATE(5071), 1, sym_comment, - ACTIONS(1484), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(1686), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1486), 6, - sym__space, + aux_sym__unquoted_in_list_token2, + ACTIONS(1688), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [182679] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(5072), 1, + sym_comment, + ACTIONS(1493), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1491), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - [192697] = 11, + aux_sym_unquoted_token2, + [182700] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4209), 1, + ACTIONS(1012), 1, anon_sym_DOLLAR, - ACTIONS(4293), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(4295), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(4297), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4482), 1, + ACTIONS(4672), 1, aux_sym_unquoted_token3, - ACTIONS(9107), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9109), 1, - aux_sym__immediate_decimal_token5, - STATE(1673), 1, - sym__immediate_decimal, - STATE(5337), 1, - sym_comment, - STATE(2007), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [192732] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5509), 1, - anon_sym_DOLLAR, - ACTIONS(5511), 1, - anon_sym_LPAREN2, - ACTIONS(5513), 1, + ACTIONS(5640), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9077), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5515), 1, + ACTIONS(9079), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5517), 1, + ACTIONS(9081), 1, aux_sym__immediate_decimal_token5, - ACTIONS(5552), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(9111), 1, - aux_sym__immediate_decimal_token1, - STATE(2910), 1, + STATE(2918), 1, sym__immediate_decimal, - STATE(5338), 1, + STATE(5073), 1, sym_comment, - STATE(3109), 2, + STATE(1637), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192767] = 11, - ACTIONS(3), 1, + [182735] = 9, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3655), 1, + ACTIONS(4523), 1, anon_sym_DOLLAR, - ACTIONS(7162), 1, + ACTIONS(4525), 1, anon_sym_LPAREN2, - ACTIONS(7166), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7168), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7288), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(9113), 1, + ACTIONS(4531), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9115), 1, + ACTIONS(4533), 1, aux_sym__immediate_decimal_token5, - STATE(4206), 1, + STATE(1998), 1, sym__immediate_decimal, - STATE(5339), 1, + STATE(5074), 1, sym_comment, - STATE(4520), 2, + ACTIONS(4529), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1995), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [192802] = 8, + [182765] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9008), 1, - anon_sym_DOT2, - STATE(5340), 1, + ACTIONS(9083), 1, + aux_sym__immediate_decimal_token2, + STATE(5075), 1, sym_comment, - STATE(5432), 1, - aux_sym_cell_path_repeat1, - STATE(5636), 1, - sym_path, - STATE(5948), 1, - sym_cell_path, - ACTIONS(1698), 3, + ACTIONS(1760), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - ACTIONS(1700), 3, + aux_sym__unquoted_in_list_token2, + ACTIONS(1762), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [192831] = 11, + [182787] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1028), 1, - anon_sym_DOLLAR, - ACTIONS(4501), 1, - anon_sym_LPAREN2, - ACTIONS(4505), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4768), 1, - aux_sym_unquoted_token3, - ACTIONS(9117), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(9119), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9121), 1, - aux_sym__immediate_decimal_token5, - STATE(1719), 1, - sym__immediate_decimal, - STATE(5341), 1, - sym_comment, - STATE(2090), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [192866] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5177), 1, - anon_sym_DASH2, - STATE(5342), 1, + ACTIONS(9085), 1, + aux_sym__immediate_decimal_token2, + STATE(5076), 1, sym_comment, - ACTIONS(5175), 9, - sym_identifier, + ACTIONS(1760), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [192887] = 9, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1762), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [182809] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8768), 1, - anon_sym_DASH_DASH, - ACTIONS(8770), 1, - anon_sym_DASH2, - ACTIONS(9123), 1, - anon_sym_as, - STATE(5343), 1, - sym_comment, - STATE(5399), 1, - aux_sym_ctrl_do_repeat1, - STATE(6110), 1, - sym__flag, - STATE(5889), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8790), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [192918] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2228), 1, - anon_sym_DOLLAR, - ACTIONS(7088), 1, - anon_sym_LPAREN2, - ACTIONS(7134), 1, + ACTIONS(9087), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7136), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7138), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7140), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7221), 1, - aux_sym_unquoted_token3, - STATE(4498), 1, - sym__immediate_decimal, - STATE(5344), 1, + ACTIONS(9089), 1, + aux_sym__immediate_decimal_token2, + STATE(5077), 1, sym_comment, - STATE(4862), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [192953] = 8, + ACTIONS(1491), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1493), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [182833] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8578), 1, - anon_sym_DASH_DASH, - ACTIONS(8580), 1, - anon_sym_DASH2, - STATE(5289), 1, - aux_sym_ctrl_do_repeat1, - STATE(5345), 1, - sym_comment, - STATE(5422), 1, - sym__flag, - STATE(5217), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(9125), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [192982] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3655), 1, - anon_sym_DOLLAR, - ACTIONS(7162), 1, - anon_sym_LPAREN2, - ACTIONS(7229), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7231), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7288), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(9127), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9129), 1, - aux_sym__immediate_decimal_token5, - STATE(4672), 1, - sym__immediate_decimal, - STATE(5346), 1, + STATE(5078), 1, sym_comment, - STATE(5088), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [193017] = 4, + ACTIONS(1678), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1680), 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, + [182853] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2479), 1, + ACTIONS(8734), 1, + anon_sym_DASH_DASH, + ACTIONS(8736), 1, anon_sym_DASH2, - STATE(5347), 1, + STATE(5079), 1, sym_comment, - ACTIONS(2481), 9, + STATE(5173), 1, + aux_sym_ctrl_do_repeat1, + STATE(5696), 1, + sym__flag, + STATE(5482), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(9028), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - [193038] = 11, + [182881] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2134), 1, - anon_sym_DOLLAR, - ACTIONS(7048), 1, - anon_sym_LPAREN2, - ACTIONS(7052), 1, + ACTIONS(9091), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7054), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7056), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7058), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7156), 1, - aux_sym_unquoted_token3, - STATE(4081), 1, - sym__immediate_decimal, - STATE(5348), 1, - sym_comment, - STATE(4240), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [193073] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8844), 1, + ACTIONS(9093), 1, aux_sym__immediate_decimal_token2, - STATE(5349), 1, + STATE(5080), 1, sym_comment, - ACTIONS(1492), 3, + ACTIONS(1686), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1494), 6, + ACTIONS(1688), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [193096] = 11, + [182905] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2134), 1, - anon_sym_DOLLAR, - ACTIONS(7048), 1, - anon_sym_LPAREN2, - ACTIONS(7156), 1, - aux_sym_unquoted_token3, - ACTIONS(8314), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8316), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8318), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8320), 1, - aux_sym__immediate_decimal_token5, - STATE(5350), 1, + ACTIONS(8851), 1, + anon_sym_DOT2, + STATE(5081), 1, sym_comment, - STATE(6019), 1, - sym__immediate_decimal, - STATE(4720), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [193131] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1579), 1, + STATE(5132), 1, + aux_sym_cell_path_repeat1, + STATE(5358), 1, + sym_path, + ACTIONS(938), 3, anon_sym_RBRACK, - ACTIONS(1591), 1, - sym__entry_separator, - ACTIONS(5542), 1, - anon_sym_LPAREN2, - ACTIONS(8886), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(9131), 1, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - ACTIONS(9135), 1, - sym_filesize_unit, - ACTIONS(9137), 1, - sym_duration_unit, - STATE(5351), 1, - sym_comment, - STATE(7475), 1, - sym__expr_parenthesized_immediate, - ACTIONS(9133), 2, + ACTIONS(940), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [193166] = 9, + sym__entry_separator, + [182931] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4075), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(7003), 1, + ACTIONS(6947), 1, anon_sym_DOLLAR, - ACTIONS(8708), 1, + ACTIONS(8516), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8710), 1, + ACTIONS(8518), 1, aux_sym__immediate_decimal_token5, - STATE(1809), 1, + STATE(1790), 1, sym__immediate_decimal, - STATE(5352), 1, + STATE(5082), 1, sym_comment, - ACTIONS(9025), 2, + ACTIONS(8969), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1808), 2, + STATE(1789), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193196] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(5353), 1, - sym_comment, - ACTIONS(1484), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1486), 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, - [193216] = 9, + [182961] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4501), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(4507), 1, + ACTIONS(6947), 1, + anon_sym_DOLLAR, + ACTIONS(8784), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4509), 1, + ACTIONS(8786), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7013), 1, - anon_sym_DOLLAR, - STATE(2430), 1, - sym__immediate_decimal, - STATE(5354), 1, + STATE(5083), 1, sym_comment, - ACTIONS(4685), 2, + STATE(6931), 1, + sym__immediate_decimal, + ACTIONS(8782), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2427), 2, + STATE(1792), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193246] = 9, + [182991] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7048), 1, + ACTIONS(4045), 1, anon_sym_LPAREN2, - ACTIONS(9139), 1, - anon_sym_DOLLAR, - ACTIONS(9141), 1, + ACTIONS(4505), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9143), 1, + ACTIONS(4507), 1, aux_sym__immediate_decimal_token5, - STATE(4361), 1, + ACTIONS(8434), 1, + anon_sym_DOLLAR, + STATE(1951), 1, sym__immediate_decimal, - STATE(5355), 1, + STATE(5084), 1, sym_comment, - ACTIONS(7064), 2, + ACTIONS(4503), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4635), 2, + STATE(2016), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193276] = 9, + [183021] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7048), 1, + ACTIONS(8036), 1, anon_sym_LPAREN2, - ACTIONS(9139), 1, + ACTIONS(9095), 1, anon_sym_DOLLAR, - ACTIONS(9145), 1, + ACTIONS(9097), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9147), 1, + ACTIONS(9099), 1, aux_sym__immediate_decimal_token5, - STATE(4624), 1, - sym__immediate_decimal, - STATE(5356), 1, + STATE(5085), 1, sym_comment, - ACTIONS(7106), 2, + STATE(6978), 1, + sym__immediate_decimal, + ACTIONS(8504), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4622), 2, + STATE(6680), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193306] = 9, + [183051] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3610), 1, - anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(8036), 1, anon_sym_LPAREN2, - ACTIONS(4081), 1, + ACTIONS(9095), 1, + anon_sym_DOLLAR, + ACTIONS(9097), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4083), 1, + ACTIONS(9099), 1, aux_sym__immediate_decimal_token5, - STATE(2068), 1, - sym__immediate_decimal, - STATE(5357), 1, + STATE(5086), 1, sym_comment, - ACTIONS(4486), 2, + STATE(5698), 1, + sym__immediate_decimal, + ACTIONS(8040), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1810), 2, + STATE(5600), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193336] = 9, + [183081] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3610), 1, - anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(8036), 1, anon_sym_LPAREN2, - ACTIONS(6496), 1, + ACTIONS(9095), 1, + anon_sym_DOLLAR, + ACTIONS(9097), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6498), 1, + ACTIONS(9099), 1, aux_sym__immediate_decimal_token5, - STATE(2129), 1, - sym__immediate_decimal, - STATE(5358), 1, + STATE(5087), 1, sym_comment, - ACTIONS(6538), 2, + STATE(6885), 1, + sym__immediate_decimal, + ACTIONS(8504), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1790), 2, + STATE(6470), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193366] = 4, + [183111] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(962), 1, + ACTIONS(964), 1, anon_sym_DASH2, - STATE(5359), 1, + ACTIONS(9101), 1, + anon_sym_QMARK2, + STATE(5088), 1, sym_comment, - ACTIONS(964), 8, - ts_builtin_sym_end, + ACTIONS(966), 7, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - anon_sym_QMARK2, anon_sym_DOT2, - [193386] = 9, + [183133] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3610), 1, + ACTIONS(4523), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(4525), 1, anon_sym_LPAREN2, - ACTIONS(4081), 1, + ACTIONS(4572), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4083), 1, + ACTIONS(4574), 1, aux_sym__immediate_decimal_token5, - STATE(1669), 1, + STATE(2117), 1, sym__immediate_decimal, - STATE(5360), 1, + STATE(5089), 1, sym_comment, - ACTIONS(4079), 2, + ACTIONS(4570), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1748), 2, + STATE(2393), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193416] = 9, + [183163] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3610), 1, + ACTIONS(3550), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(4529), 1, + ACTIONS(8660), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4531), 1, + ACTIONS(8662), 1, aux_sym__immediate_decimal_token5, - STATE(2106), 1, - sym__immediate_decimal, - STATE(5361), 1, + STATE(5090), 1, sym_comment, - ACTIONS(4527), 2, + STATE(6645), 1, + sym__immediate_decimal, + ACTIONS(8658), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1810), 2, + STATE(1792), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193446] = 4, + [183193] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(5362), 1, + STATE(5091), 1, sym_comment, - ACTIONS(1715), 2, + ACTIONS(1491), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1717), 7, + ACTIONS(1493), 7, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, @@ -401554,1105 +384201,697 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [193466] = 9, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3610), 1, - anon_sym_DOLLAR, - ACTIONS(4075), 1, - anon_sym_LPAREN2, - ACTIONS(7957), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7959), 1, - aux_sym__immediate_decimal_token5, - STATE(1809), 1, - sym__immediate_decimal, - STATE(5363), 1, - sym_comment, - ACTIONS(8732), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1808), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [193496] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5364), 1, - sym_comment, - ACTIONS(1484), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1486), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [193516] = 9, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3610), 1, - anon_sym_DOLLAR, - ACTIONS(4075), 1, - anon_sym_LPAREN2, - ACTIONS(6454), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6456), 1, - aux_sym__immediate_decimal_token5, - STATE(3647), 1, - sym__immediate_decimal, - STATE(5365), 1, - sym_comment, - ACTIONS(6452), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1810), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [193546] = 9, + [183213] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4293), 1, + ACTIONS(4045), 1, anon_sym_LPAREN2, - ACTIONS(4299), 1, + ACTIONS(4051), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4301), 1, + ACTIONS(4053), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8624), 1, + ACTIONS(8434), 1, anon_sym_DOLLAR, - STATE(1699), 1, + STATE(1668), 1, sym__immediate_decimal, - STATE(5366), 1, + STATE(5092), 1, sym_comment, - ACTIONS(4297), 2, + ACTIONS(4049), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2022), 2, + STATE(1982), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193576] = 9, + [183243] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3995), 1, - anon_sym_LPAREN2, - ACTIONS(4387), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4389), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8340), 1, + ACTIONS(3550), 1, anon_sym_DOLLAR, - STATE(1943), 1, - sym__immediate_decimal, - STATE(5367), 1, - sym_comment, - ACTIONS(4385), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1942), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [193606] = 9, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7088), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(9149), 1, - anon_sym_DOLLAR, - ACTIONS(9151), 1, + ACTIONS(4033), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9153), 1, + ACTIONS(4035), 1, aux_sym__immediate_decimal_token5, - STATE(4523), 1, + STATE(1586), 1, sym__immediate_decimal, - STATE(5368), 1, + STATE(5093), 1, sym_comment, - ACTIONS(7134), 2, + ACTIONS(4031), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4892), 2, + STATE(1637), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193636] = 9, + [183273] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8096), 1, + ACTIONS(7028), 1, anon_sym_LPAREN2, - ACTIONS(9155), 1, - anon_sym_DOLLAR, - ACTIONS(9157), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9159), 1, - aux_sym__immediate_decimal_token5, - STATE(5369), 1, - sym_comment, - STATE(6437), 1, - sym__immediate_decimal, - ACTIONS(8608), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6849), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [193666] = 9, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5554), 1, + ACTIONS(9103), 1, anon_sym_DOLLAR, - ACTIONS(5556), 1, - anon_sym_LPAREN2, - ACTIONS(5593), 1, + ACTIONS(9105), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5595), 1, + ACTIONS(9107), 1, aux_sym__immediate_decimal_token5, - STATE(3216), 1, + STATE(4518), 1, sym__immediate_decimal, - STATE(5370), 1, + STATE(5094), 1, sym_comment, - ACTIONS(5591), 2, + ACTIONS(7116), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3201), 2, + STATE(4517), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193696] = 8, + [183303] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8768), 1, - anon_sym_DASH_DASH, - ACTIONS(8770), 1, + ACTIONS(958), 1, anon_sym_DASH2, - STATE(5371), 1, + ACTIONS(9109), 1, + anon_sym_QMARK2, + STATE(5095), 1, sym_comment, - STATE(5453), 1, - aux_sym_ctrl_do_repeat1, - STATE(6110), 1, - sym__flag, - STATE(5889), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(9065), 3, - ts_builtin_sym_end, + ACTIONS(960), 7, sym__newline, anon_sym_SEMI, - [193724] = 4, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT2, + [183325] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5372), 1, + STATE(5096), 1, sym_comment, - ACTIONS(1715), 3, + ACTIONS(1499), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1717), 6, + ACTIONS(1501), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [193744] = 9, + [183345] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3995), 1, - anon_sym_LPAREN2, - ACTIONS(4001), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4003), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8340), 1, - anon_sym_DOLLAR, - STATE(1659), 1, - sym__immediate_decimal, - STATE(5373), 1, + ACTIONS(950), 1, + anon_sym_DASH2, + STATE(5097), 1, sym_comment, - ACTIONS(3999), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1945), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [193774] = 9, + ACTIONS(952), 8, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_DOT2, + [183365] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7160), 1, - anon_sym_DOLLAR, - ACTIONS(7162), 1, + ACTIONS(6982), 1, anon_sym_LPAREN2, - ACTIONS(7170), 1, + ACTIONS(9111), 1, + anon_sym_DOLLAR, + ACTIONS(9113), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7172), 1, + ACTIONS(9115), 1, aux_sym__immediate_decimal_token5, - STATE(5028), 1, - sym__immediate_decimal, - STATE(5374), 1, + STATE(5098), 1, sym_comment, - ACTIONS(7261), 2, + STATE(5646), 1, + sym__immediate_decimal, + ACTIONS(8012), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5027), 2, + STATE(4343), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193804] = 9, + [183395] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4293), 1, + ACTIONS(6982), 1, anon_sym_LPAREN2, - ACTIONS(4515), 1, + ACTIONS(9111), 1, + anon_sym_DOLLAR, + ACTIONS(9117), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4517), 1, + ACTIONS(9119), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8624), 1, - anon_sym_DOLLAR, - STATE(2021), 1, + STATE(4339), 1, sym__immediate_decimal, - STATE(5375), 1, + STATE(5099), 1, sym_comment, - ACTIONS(4513), 2, + ACTIONS(8406), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2020), 2, + STATE(4338), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193834] = 9, + [183425] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8096), 1, - anon_sym_LPAREN2, - ACTIONS(9155), 1, - anon_sym_DOLLAR, - ACTIONS(9161), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9163), 1, - aux_sym__immediate_decimal_token5, - STATE(5376), 1, + ACTIONS(964), 1, + anon_sym_DASH2, + ACTIONS(9121), 1, + anon_sym_QMARK2, + STATE(5100), 1, sym_comment, - STATE(7469), 1, - sym__immediate_decimal, - ACTIONS(8448), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6849), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [193864] = 9, + ACTIONS(966), 7, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT2, + [183447] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4499), 1, - anon_sym_DOLLAR, - ACTIONS(4501), 1, - anon_sym_LPAREN2, - ACTIONS(5899), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5901), 1, - aux_sym__immediate_decimal_token5, - STATE(3307), 1, - sym__immediate_decimal, - STATE(5377), 1, + ACTIONS(958), 1, + anon_sym_DASH2, + ACTIONS(9123), 1, + anon_sym_QMARK2, + STATE(5101), 1, sym_comment, - ACTIONS(5897), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2434), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [193894] = 9, + ACTIONS(960), 7, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT2, + [183469] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5511), 1, + ACTIONS(6982), 1, anon_sym_LPAREN2, - ACTIONS(9165), 1, + ACTIONS(9111), 1, anon_sym_DOLLAR, - ACTIONS(9169), 1, + ACTIONS(9125), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9171), 1, + ACTIONS(9127), 1, aux_sym__immediate_decimal_token5, - STATE(3102), 1, + STATE(4180), 1, sym__immediate_decimal, - STATE(5378), 1, + STATE(5102), 1, sym_comment, - ACTIONS(9167), 2, + ACTIONS(7020), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3101), 2, + STATE(4343), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193924] = 9, + [183499] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4075), 1, + ACTIONS(6982), 1, anon_sym_LPAREN2, - ACTIONS(7003), 1, + ACTIONS(9111), 1, anon_sym_DOLLAR, - ACTIONS(8838), 1, + ACTIONS(9129), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8840), 1, + ACTIONS(9131), 1, aux_sym__immediate_decimal_token5, - STATE(5379), 1, - sym_comment, - STATE(7410), 1, + STATE(4339), 1, sym__immediate_decimal, - ACTIONS(8836), 2, + STATE(5103), 1, + sym_comment, + ACTIONS(7084), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1810), 2, + STATE(4338), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193954] = 9, - ACTIONS(245), 1, + [183529] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4501), 1, + ACTIONS(9133), 1, + anon_sym_DOT, + ACTIONS(9135), 1, + aux_sym__immediate_decimal_token2, + STATE(5104), 1, + sym_comment, + ACTIONS(1701), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1703), 4, anon_sym_LPAREN2, - ACTIONS(7013), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [183553] = 9, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(3550), 1, anon_sym_DOLLAR, - ACTIONS(7034), 1, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(4547), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7036), 1, + ACTIONS(4549), 1, aux_sym__immediate_decimal_token5, - STATE(4227), 1, + STATE(1950), 1, sym__immediate_decimal, - STATE(5380), 1, + STATE(5105), 1, sym_comment, - ACTIONS(7032), 2, + ACTIONS(4545), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2434), 2, + STATE(1792), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193984] = 9, + [183583] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3610), 1, + ACTIONS(3550), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(6496), 1, + ACTIONS(7949), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6498), 1, + ACTIONS(7951), 1, aux_sym__immediate_decimal_token5, - STATE(1809), 1, + STATE(1790), 1, sym__immediate_decimal, - STATE(5381), 1, + STATE(5106), 1, sym_comment, - ACTIONS(6538), 2, + ACTIONS(8422), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1808), 2, + STATE(1789), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194014] = 9, + [183613] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3610), 1, + ACTIONS(3550), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(5771), 1, + ACTIONS(6440), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5773), 1, + ACTIONS(6442), 1, aux_sym__immediate_decimal_token5, - STATE(3263), 1, + STATE(3460), 1, sym__immediate_decimal, - STATE(5382), 1, + STATE(5107), 1, sym_comment, - ACTIONS(5769), 2, + ACTIONS(6438), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1810), 2, + STATE(1792), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194044] = 9, + [183643] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1565), 1, + ACTIONS(3949), 1, anon_sym_LPAREN2, - ACTIONS(1678), 1, + ACTIONS(4204), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1680), 1, + ACTIONS(4206), 1, aux_sym__immediate_decimal_token5, - ACTIONS(9173), 1, + ACTIONS(8122), 1, anon_sym_DOLLAR, - STATE(749), 1, + STATE(1804), 1, sym__immediate_decimal, - STATE(5383), 1, + STATE(5108), 1, sym_comment, - ACTIONS(1676), 2, + ACTIONS(4202), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(748), 2, + STATE(1803), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194074] = 9, + [183673] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4075), 1, + ACTIONS(8036), 1, anon_sym_LPAREN2, - ACTIONS(7003), 1, + ACTIONS(9095), 1, anon_sym_DOLLAR, - ACTIONS(7025), 1, + ACTIONS(9137), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7027), 1, + ACTIONS(9139), 1, aux_sym__immediate_decimal_token5, - STATE(4151), 1, - sym__immediate_decimal, - STATE(5384), 1, + STATE(5109), 1, sym_comment, - ACTIONS(7023), 2, + STATE(6157), 1, + sym__immediate_decimal, + ACTIONS(8560), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1810), 2, + STATE(6680), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194104] = 9, + [183703] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1451), 1, - anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(5503), 1, anon_sym_DOLLAR, - ACTIONS(9179), 1, + ACTIONS(5505), 1, + anon_sym_LPAREN2, + ACTIONS(5545), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9181), 1, + ACTIONS(5547), 1, aux_sym__immediate_decimal_token5, - STATE(621), 1, + STATE(3020), 1, sym__immediate_decimal, - STATE(5385), 1, + STATE(5110), 1, sym_comment, - ACTIONS(9177), 2, + ACTIONS(5543), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(620), 2, + STATE(3046), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194134] = 6, - ACTIONS(3), 1, + [183733] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9183), 1, - anon_sym_DOT2, - STATE(5636), 1, - sym_path, - STATE(5386), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(935), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(7012), 1, + aux_sym_unquoted_token2, + ACTIONS(9141), 1, anon_sym_DOT_DOT2, - ACTIONS(937), 3, + ACTIONS(9145), 1, + sym_filesize_unit, + ACTIONS(9147), 1, + sym_duration_unit, + STATE(5111), 1, + sym_comment, + ACTIONS(9143), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [194158] = 9, + ACTIONS(1628), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [183761] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7160), 1, - anon_sym_DOLLAR, - ACTIONS(7162), 1, + ACTIONS(3949), 1, anon_sym_LPAREN2, - ACTIONS(7233), 1, + ACTIONS(3955), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7235), 1, + ACTIONS(3957), 1, aux_sym__immediate_decimal_token5, - STATE(4700), 1, + ACTIONS(8122), 1, + anon_sym_DOLLAR, + STATE(1526), 1, sym__immediate_decimal, - STATE(5387), 1, + STATE(5112), 1, sym_comment, - ACTIONS(7231), 2, + ACTIONS(3953), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5029), 2, + STATE(1805), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194188] = 9, + [183791] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4499), 1, + ACTIONS(7102), 1, anon_sym_DOLLAR, - ACTIONS(4501), 1, + ACTIONS(7104), 1, anon_sym_LPAREN2, - ACTIONS(4507), 1, + ACTIONS(7112), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4509), 1, + ACTIONS(7114), 1, aux_sym__immediate_decimal_token5, - STATE(2452), 1, + STATE(4818), 1, sym__immediate_decimal, - STATE(5388), 1, + STATE(5113), 1, sym_comment, - ACTIONS(4685), 2, + ACTIONS(7201), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2451), 2, + STATE(4817), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194218] = 9, + [183821] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5511), 1, - anon_sym_LPAREN2, - ACTIONS(9165), 1, + ACTIONS(4523), 1, anon_sym_DOLLAR, - ACTIONS(9186), 1, + ACTIONS(4525), 1, + anon_sym_LPAREN2, + ACTIONS(4531), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9188), 1, + ACTIONS(4533), 1, aux_sym__immediate_decimal_token5, - STATE(2921), 1, + STATE(2323), 1, sym__immediate_decimal, - STATE(5389), 1, + STATE(5114), 1, sym_comment, - ACTIONS(9111), 2, + ACTIONS(4656), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3103), 2, + STATE(2321), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194248] = 9, - ACTIONS(3), 1, + [183851] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1591), 1, - sym__space, - ACTIONS(4673), 1, - anon_sym_DOT_DOT2, - ACTIONS(7156), 1, - aux_sym_unquoted_token2, - ACTIONS(8802), 1, - sym_filesize_unit, - ACTIONS(8804), 1, - sym_duration_unit, - STATE(5390), 1, + ACTIONS(942), 1, + anon_sym_DASH2, + STATE(5115), 1, sym_comment, - ACTIONS(1579), 2, + ACTIONS(944), 8, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - ACTIONS(4675), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [194278] = 9, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1565), 1, - anon_sym_LPAREN2, - ACTIONS(1571), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1573), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9173), 1, - anon_sym_DOLLAR, - STATE(550), 1, - sym__immediate_decimal, - STATE(5391), 1, - sym_comment, - ACTIONS(1569), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(750), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194308] = 9, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_DOT2, + [183871] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3610), 1, + ACTIONS(4523), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(4525), 1, anon_sym_LPAREN2, - ACTIONS(6516), 1, + ACTIONS(5818), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6518), 1, + ACTIONS(5820), 1, aux_sym__immediate_decimal_token5, - STATE(3678), 1, + STATE(3127), 1, sym__immediate_decimal, - STATE(5392), 1, + STATE(5116), 1, sym_comment, - ACTIONS(6514), 2, + ACTIONS(5816), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1810), 2, + STATE(2393), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194338] = 9, + [183901] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1451), 1, + ACTIONS(5439), 1, anon_sym_LPAREN2, - ACTIONS(9175), 1, + ACTIONS(9149), 1, anon_sym_DOLLAR, - ACTIONS(9190), 1, + ACTIONS(9153), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9192), 1, + ACTIONS(9155), 1, aux_sym__immediate_decimal_token5, - STATE(503), 1, + STATE(2958), 1, sym__immediate_decimal, - STATE(5393), 1, + STATE(5117), 1, sym_comment, - ACTIONS(8874), 2, + ACTIONS(9151), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(622), 2, + STATE(2957), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194368] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9194), 1, - aux_sym__immediate_decimal_token2, - STATE(5394), 1, - sym_comment, - ACTIONS(1538), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1540), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [194390] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9196), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9198), 1, - aux_sym__immediate_decimal_token2, - STATE(5395), 1, - sym_comment, - ACTIONS(1484), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1486), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [194414] = 9, + [183931] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5554), 1, + ACTIONS(3550), 1, anon_sym_DOLLAR, - ACTIONS(5556), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(5562), 1, + ACTIONS(4033), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5564), 1, + ACTIONS(4035), 1, aux_sym__immediate_decimal_token5, - STATE(3124), 1, + STATE(1940), 1, sym__immediate_decimal, - STATE(5396), 1, + STATE(5118), 1, sym_comment, - ACTIONS(5560), 2, + ACTIONS(4424), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3192), 2, + STATE(1728), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194444] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9200), 1, - anon_sym_EQ2, - ACTIONS(9202), 1, - sym_short_flag_identifier, - STATE(5397), 1, - sym_comment, - ACTIONS(4883), 2, - anon_sym_DASH_DASH, - anon_sym_DASH2, - ACTIONS(4881), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - [194468] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(948), 1, - anon_sym_DASH2, - ACTIONS(9204), 1, - anon_sym_QMARK2, - STATE(5398), 1, - sym_comment, - ACTIONS(950), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT2, - [194490] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8768), 1, - anon_sym_DASH_DASH, - ACTIONS(8770), 1, - anon_sym_DASH2, - STATE(5399), 1, - sym_comment, - STATE(5450), 1, - aux_sym_ctrl_do_repeat1, - STATE(6110), 1, - sym__flag, - STATE(5889), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(9049), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [194518] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8768), 1, - anon_sym_DASH_DASH, - ACTIONS(8770), 1, - anon_sym_DASH2, - STATE(5400), 1, - sym_comment, - STATE(5450), 1, - aux_sym_ctrl_do_repeat1, - STATE(6110), 1, - sym__flag, - STATE(5889), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(9063), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [194546] = 9, + [183961] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4499), 1, - anon_sym_DOLLAR, - ACTIONS(4501), 1, + ACTIONS(4525), 1, anon_sym_LPAREN2, - ACTIONS(4507), 1, + ACTIONS(6963), 1, + anon_sym_DOLLAR, + ACTIONS(6978), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4509), 1, + ACTIONS(6980), 1, aux_sym__immediate_decimal_token5, - STATE(2100), 1, + STATE(3990), 1, sym__immediate_decimal, - STATE(5401), 1, + STATE(5119), 1, sym_comment, - ACTIONS(4505), 2, + ACTIONS(6976), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2090), 2, + STATE(2393), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194576] = 9, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3152), 1, - anon_sym_DQUOTE, - ACTIONS(3158), 1, - sym_raw_string_begin, - ACTIONS(9206), 1, - sym_identifier, - STATE(5402), 1, - sym_comment, - STATE(5403), 1, - aux_sym_collection_type_repeat1, - STATE(6710), 1, - sym_val_string, - ACTIONS(3154), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5281), 2, - sym__raw_str, - sym__str_double_quotes, - [194606] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9208), 1, - sym_identifier, - ACTIONS(9211), 1, - anon_sym_DQUOTE, - ACTIONS(9217), 1, - sym_raw_string_begin, - STATE(7149), 1, - sym_val_string, - ACTIONS(9214), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5281), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(5403), 2, - sym_comment, - aux_sym_collection_type_repeat1, - [194634] = 9, + [183991] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3610), 1, + ACTIONS(3550), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(4081), 1, + ACTIONS(6400), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4083), 1, + ACTIONS(6402), 1, aux_sym__immediate_decimal_token5, - STATE(2129), 1, + STATE(1790), 1, sym__immediate_decimal, - STATE(5404), 1, + STATE(5120), 1, sym_comment, - ACTIONS(4486), 2, + ACTIONS(6490), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1790), 2, + STATE(1789), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194664] = 9, + [184021] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8096), 1, - anon_sym_LPAREN2, - ACTIONS(9155), 1, + ACTIONS(3550), 1, anon_sym_DOLLAR, - ACTIONS(9161), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9163), 1, - aux_sym__immediate_decimal_token5, - STATE(5405), 1, - sym_comment, - STATE(6117), 1, - sym__immediate_decimal, - ACTIONS(8326), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5752), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194694] = 9, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8096), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(9155), 1, - anon_sym_DOLLAR, - ACTIONS(9161), 1, + ACTIONS(4033), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9163), 1, + ACTIONS(4035), 1, aux_sym__immediate_decimal_token5, - STATE(5406), 1, - sym_comment, - STATE(7417), 1, + STATE(1790), 1, sym__immediate_decimal, - ACTIONS(8448), 2, + STATE(5121), 1, + sym_comment, + ACTIONS(4424), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6812), 2, + STATE(1789), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194724] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7082), 1, - aux_sym_unquoted_token2, - ACTIONS(9220), 1, - anon_sym_DOT_DOT2, - ACTIONS(9224), 1, - sym_filesize_unit, - ACTIONS(9226), 1, - sym_duration_unit, - STATE(5407), 1, - sym_comment, - ACTIONS(9222), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1591), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [194752] = 9, + [184051] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3610), 1, + ACTIONS(3550), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(6496), 1, + ACTIONS(5730), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6498), 1, + ACTIONS(5732), 1, aux_sym__immediate_decimal_token5, - STATE(3643), 1, + STATE(3071), 1, sym__immediate_decimal, - STATE(5408), 1, + STATE(5122), 1, sym_comment, - ACTIONS(6494), 2, + ACTIONS(5728), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3645), 2, + STATE(1792), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194782] = 9, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3152), 1, - anon_sym_DQUOTE, - ACTIONS(3158), 1, - sym_raw_string_begin, - ACTIONS(9228), 1, - sym_identifier, - STATE(5403), 1, - aux_sym_collection_type_repeat1, - STATE(5409), 1, - sym_comment, - STATE(6509), 1, - sym_val_string, - ACTIONS(3154), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5281), 2, - sym__raw_str, - sym__str_double_quotes, - [194812] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8870), 1, - aux_sym__immediate_decimal_token2, - STATE(5410), 1, - sym_comment, - ACTIONS(1492), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1494), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [194834] = 9, + [184081] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4499), 1, - anon_sym_DOLLAR, - ACTIONS(4501), 1, + ACTIONS(1548), 1, anon_sym_LPAREN2, - ACTIONS(4507), 1, + ACTIONS(1656), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4509), 1, + ACTIONS(1658), 1, aux_sym__immediate_decimal_token5, - STATE(2435), 1, + ACTIONS(9157), 1, + anon_sym_DOLLAR, + STATE(657), 1, sym__immediate_decimal, - STATE(5411), 1, + STATE(5123), 1, sym_comment, - ACTIONS(4685), 2, + ACTIONS(1654), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2434), 2, + STATE(656), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194864] = 9, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3152), 1, - anon_sym_DQUOTE, - ACTIONS(3158), 1, - sym_raw_string_begin, - ACTIONS(9230), 1, - sym_identifier, - STATE(5403), 1, - aux_sym_collection_type_repeat1, - STATE(5412), 1, - sym_comment, - STATE(6565), 1, - sym_val_string, - ACTIONS(3154), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5281), 2, - sym__raw_str, - sym__str_double_quotes, - [194894] = 9, + [184111] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4499), 1, - anon_sym_DOLLAR, - ACTIONS(4501), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(4617), 1, + ACTIONS(6947), 1, + anon_sym_DOLLAR, + ACTIONS(6959), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4619), 1, + ACTIONS(6961), 1, aux_sym__immediate_decimal_token5, - STATE(2275), 1, + STATE(3918), 1, sym__immediate_decimal, - STATE(5413), 1, + STATE(5124), 1, sym_comment, - ACTIONS(4615), 2, + ACTIONS(6957), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2434), 2, + STATE(1792), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194924] = 6, + [184141] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4875), 1, - anon_sym_DASH2, - ACTIONS(9232), 1, - sym_long_flag_identifier, - ACTIONS(9234), 1, - anon_sym_EQ2, - STATE(5414), 1, - sym_comment, - ACTIONS(4873), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - [194948] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9236), 1, - aux_sym__immediate_decimal_token2, - STATE(5415), 1, - sym_comment, - ACTIONS(1719), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1721), 4, - sym__space, + ACTIONS(1465), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [194970] = 9, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3610), 1, + ACTIONS(9159), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, - anon_sym_LPAREN2, - ACTIONS(8490), 1, + ACTIONS(9163), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8492), 1, + ACTIONS(9165), 1, aux_sym__immediate_decimal_token5, - STATE(5416), 1, - sym_comment, - STATE(7204), 1, + STATE(597), 1, sym__immediate_decimal, - ACTIONS(8488), 2, + STATE(5125), 1, + sym_comment, + ACTIONS(9161), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1810), 2, + STATE(596), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195000] = 4, + [184171] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(958), 1, + ACTIONS(946), 1, anon_sym_DASH2, - STATE(5417), 1, + STATE(5126), 1, sym_comment, - ACTIONS(960), 8, + ACTIONS(948), 8, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -402661,291 +384900,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_QMARK2, anon_sym_DOT2, - [195020] = 9, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3610), 1, - anon_sym_DOLLAR, - ACTIONS(4075), 1, - anon_sym_LPAREN2, - ACTIONS(4081), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4083), 1, - aux_sym__immediate_decimal_token5, - STATE(1809), 1, - sym__immediate_decimal, - STATE(5418), 1, - sym_comment, - ACTIONS(4486), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1808), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195050] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9238), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9240), 1, - aux_sym__immediate_decimal_token2, - STATE(5419), 1, - sym_comment, - ACTIONS(1648), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1650), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [195074] = 9, + [184191] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3610), 1, + ACTIONS(3550), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(6496), 1, + ACTIONS(6400), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6498), 1, + ACTIONS(6402), 1, aux_sym__immediate_decimal_token5, - STATE(2068), 1, + STATE(1977), 1, sym__immediate_decimal, - STATE(5420), 1, + STATE(5127), 1, sym_comment, - ACTIONS(6538), 2, + ACTIONS(6490), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1810), 2, + STATE(1792), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195104] = 9, + [184221] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8096), 1, + ACTIONS(5439), 1, anon_sym_LPAREN2, - ACTIONS(9155), 1, + ACTIONS(9149), 1, anon_sym_DOLLAR, - ACTIONS(9161), 1, + ACTIONS(9167), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9163), 1, + ACTIONS(9169), 1, aux_sym__immediate_decimal_token5, - STATE(5421), 1, - sym_comment, - STATE(6848), 1, + STATE(2766), 1, sym__immediate_decimal, - ACTIONS(8448), 2, + STATE(5128), 1, + sym_comment, + ACTIONS(8889), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6845), 2, + STATE(2959), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195134] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6530), 1, - anon_sym_DASH2, - STATE(5422), 1, - sym_comment, - ACTIONS(6528), 8, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [195154] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5423), 1, - sym_comment, - ACTIONS(1492), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1494), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [195174] = 9, + [184251] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4075), 1, + ACTIONS(1548), 1, anon_sym_LPAREN2, - ACTIONS(4081), 1, + ACTIONS(1554), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4083), 1, + ACTIONS(1556), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7003), 1, + ACTIONS(9157), 1, anon_sym_DOLLAR, - STATE(1809), 1, + STATE(537), 1, sym__immediate_decimal, - STATE(5424), 1, + STATE(5129), 1, sym_comment, - ACTIONS(4486), 2, + ACTIONS(1552), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1808), 2, + STATE(658), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195204] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(942), 1, - anon_sym_DASH2, - ACTIONS(9242), 1, - anon_sym_QMARK2, - STATE(5425), 1, - sym_comment, - ACTIONS(944), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT2, - [195226] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9244), 1, - anon_sym_DOT, - ACTIONS(9246), 1, - aux_sym__immediate_decimal_token2, - STATE(5426), 1, - sym_comment, - ACTIONS(1492), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1494), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [195250] = 9, + [184281] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7088), 1, - anon_sym_LPAREN2, - ACTIONS(9149), 1, + ACTIONS(3550), 1, anon_sym_DOLLAR, - ACTIONS(9248), 1, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(6450), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9250), 1, + ACTIONS(6452), 1, aux_sym__immediate_decimal_token5, - STATE(4891), 1, + STATE(3547), 1, sym__immediate_decimal, - STATE(5427), 1, + STATE(5130), 1, sym_comment, - ACTIONS(7144), 2, + ACTIONS(6448), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4890), 2, + STATE(1792), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195280] = 9, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3152), 1, - anon_sym_DQUOTE, - ACTIONS(3158), 1, - sym_raw_string_begin, - ACTIONS(9252), 1, - sym_identifier, - STATE(5403), 1, - aux_sym_collection_type_repeat1, - STATE(5428), 1, - sym_comment, - STATE(6292), 1, - sym_val_string, - ACTIONS(3154), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5281), 2, - sym__raw_str, - sym__str_double_quotes, - [195310] = 9, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3152), 1, - anon_sym_DQUOTE, - ACTIONS(3158), 1, - sym_raw_string_begin, - ACTIONS(9254), 1, - sym_identifier, - STATE(5403), 1, - aux_sym_collection_type_repeat1, - STATE(5429), 1, - sym_comment, - STATE(6279), 1, - sym_val_string, - ACTIONS(3154), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5281), 2, - sym__raw_str, - sym__str_double_quotes, - [195340] = 9, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3152), 1, - anon_sym_DQUOTE, - ACTIONS(3158), 1, - sym_raw_string_begin, - ACTIONS(9256), 1, - sym_identifier, - STATE(5403), 1, - aux_sym_collection_type_repeat1, - STATE(5430), 1, - sym_comment, - STATE(6304), 1, - sym_val_string, - ACTIONS(3154), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5281), 2, - sym__raw_str, - sym__str_double_quotes, - [195370] = 9, + [184311] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4499), 1, - anon_sym_DOLLAR, - ACTIONS(4501), 1, + ACTIONS(1465), 1, anon_sym_LPAREN2, - ACTIONS(4507), 1, + ACTIONS(9159), 1, + anon_sym_DOLLAR, + ACTIONS(9171), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4509), 1, + ACTIONS(9173), 1, aux_sym__immediate_decimal_token5, - STATE(2430), 1, + STATE(510), 1, sym__immediate_decimal, - STATE(5431), 1, + STATE(5131), 1, sym_comment, - ACTIONS(4685), 2, + ACTIONS(8901), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2427), 2, + STATE(598), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195400] = 7, + [184341] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9008), 1, + ACTIONS(9175), 1, anon_sym_DOT2, - STATE(5386), 1, - aux_sym_cell_path_repeat1, - STATE(5432), 1, - sym_comment, - STATE(5636), 1, + STATE(5358), 1, sym_path, + STATE(5132), 2, + sym_comment, + aux_sym_cell_path_repeat1, ACTIONS(931), 3, anon_sym_RBRACK, anon_sym_RBRACE, @@ -402954,188 +385023,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [195426] = 5, + [184365] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, - aux_sym__immediate_decimal_token2, - STATE(5433), 1, + STATE(5133), 1, sym_comment, - ACTIONS(1719), 4, - anon_sym_RBRACK, + ACTIONS(1491), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1721), 4, + aux_sym__unquoted_in_record_token2, + ACTIONS(1493), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [195448] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(5434), 1, - sym_comment, - ACTIONS(1538), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1540), 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, - [195468] = 4, + sym__entry_separator, + [184385] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(954), 1, - anon_sym_DASH2, - STATE(5435), 1, + ACTIONS(9178), 1, + anon_sym_EQ2, + ACTIONS(9180), 1, + sym_short_flag_identifier, + STATE(5134), 1, sym_comment, - ACTIONS(956), 8, - ts_builtin_sym_end, + ACTIONS(4817), 2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + ACTIONS(4815), 5, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT2, - [195488] = 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + [184409] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8096), 1, - anon_sym_LPAREN2, - ACTIONS(9155), 1, + ACTIONS(4523), 1, anon_sym_DOLLAR, - ACTIONS(9260), 1, + ACTIONS(4525), 1, + anon_sym_LPAREN2, + ACTIONS(4531), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9262), 1, + ACTIONS(4533), 1, aux_sym__immediate_decimal_token5, - STATE(5436), 1, - sym_comment, - STATE(6721), 1, + STATE(2392), 1, sym__immediate_decimal, - ACTIONS(8496), 2, + STATE(5135), 1, + sym_comment, + ACTIONS(4656), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6849), 2, + STATE(2391), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195518] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1280), 1, - anon_sym_DASH2, - STATE(5437), 1, - sym_comment, - ACTIONS(1278), 8, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195538] = 6, + [184439] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9264), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9266), 1, - aux_sym__immediate_decimal_token2, - STATE(5438), 1, + STATE(5136), 1, sym_comment, - ACTIONS(1648), 3, + ACTIONS(1579), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1650), 4, + ACTIONS(1581), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - [195562] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9102), 1, - aux_sym__immediate_decimal_token2, - STATE(5439), 1, - sym_comment, - ACTIONS(1666), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1668), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [195584] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(942), 1, - anon_sym_DASH2, - ACTIONS(9268), 1, - anon_sym_QMARK2, - STATE(5440), 1, - sym_comment, - ACTIONS(944), 7, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT2, - [195606] = 5, + [184459] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(948), 1, - anon_sym_DASH2, - ACTIONS(9270), 1, - anon_sym_QMARK2, - STATE(5441), 1, + ACTIONS(4523), 1, + anon_sym_DOLLAR, + ACTIONS(4525), 1, + anon_sym_LPAREN2, + ACTIONS(4531), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4533), 1, + aux_sym__immediate_decimal_token5, + STATE(2394), 1, + sym__immediate_decimal, + STATE(5137), 1, sym_comment, - ACTIONS(950), 7, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT2, - [195628] = 6, + ACTIONS(4656), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2393), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184489] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9272), 1, - anon_sym_DOT, - ACTIONS(9274), 1, - aux_sym__immediate_decimal_token2, - STATE(5442), 1, + STATE(5138), 1, sym_comment, - ACTIONS(1666), 3, + ACTIONS(1678), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1668), 4, + ACTIONS(1680), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - [195652] = 4, + [184509] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(5443), 1, + STATE(5139), 1, sym_comment, - ACTIONS(1492), 2, + ACTIONS(1579), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1494), 7, + ACTIONS(1581), 7, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, @@ -403143,41475 +385147,37689 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [195672] = 9, + [184529] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(9182), 1, + anon_sym_DOT, + ACTIONS(9184), 1, + aux_sym__immediate_decimal_token2, + STATE(5140), 1, + sym_comment, + ACTIONS(1701), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [184553] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3610), 1, + ACTIONS(3550), 1, anon_sym_DOLLAR, - ACTIONS(4075), 1, + ACTIONS(4027), 1, anon_sym_LPAREN2, - ACTIONS(8204), 1, + ACTIONS(8054), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8206), 1, + ACTIONS(8056), 1, aux_sym__immediate_decimal_token5, - STATE(5444), 1, + STATE(5141), 1, sym_comment, - STATE(6334), 1, + STATE(6304), 1, sym__immediate_decimal, - ACTIONS(8202), 2, + ACTIONS(8052), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1810), 2, + STATE(1792), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195702] = 4, + [184583] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(966), 1, - anon_sym_DASH2, - STATE(5445), 1, - sym_comment, - ACTIONS(968), 8, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT2, - [195722] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9029), 1, + ACTIONS(8855), 1, aux_sym__immediate_decimal_token2, - STATE(5446), 1, - sym_comment, - ACTIONS(1666), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1668), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [195744] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5447), 1, + STATE(5142), 1, sym_comment, - ACTIONS(1538), 3, - anon_sym_RBRACE, + ACTIONS(1499), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1540), 6, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1501), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [195764] = 8, + [184605] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8768), 1, - anon_sym_DASH_DASH, - ACTIONS(8770), 1, + ACTIONS(954), 1, anon_sym_DASH2, - STATE(5448), 1, + STATE(5143), 1, sym_comment, - STATE(5450), 1, - aux_sym_ctrl_do_repeat1, - STATE(6110), 1, - sym__flag, - STATE(5889), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(9091), 3, + ACTIONS(956), 8, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [195792] = 9, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7048), 1, - anon_sym_LPAREN2, - ACTIONS(9139), 1, - anon_sym_DOLLAR, - ACTIONS(9276), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9278), 1, - aux_sym__immediate_decimal_token5, - STATE(5449), 1, - sym_comment, - STATE(6055), 1, - sym__immediate_decimal, - ACTIONS(8314), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4635), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195822] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9280), 1, + anon_sym_LBRACK, anon_sym_DASH_DASH, - ACTIONS(9283), 1, - anon_sym_DASH2, - STATE(6110), 1, - sym__flag, - STATE(5450), 2, - sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(5889), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(6320), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [195848] = 9, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_DOT2, + [184625] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7048), 1, + ACTIONS(4525), 1, anon_sym_LPAREN2, - ACTIONS(9139), 1, - anon_sym_DOLLAR, - ACTIONS(9286), 1, + ACTIONS(4531), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9288), 1, + ACTIONS(4533), 1, aux_sym__immediate_decimal_token5, - STATE(4624), 1, + ACTIONS(6963), 1, + anon_sym_DOLLAR, + STATE(2392), 1, sym__immediate_decimal, - STATE(5451), 1, + STATE(5144), 1, sym_comment, - ACTIONS(8616), 2, + ACTIONS(4656), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4622), 2, + STATE(2391), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195878] = 8, + [184655] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8768), 1, - anon_sym_DASH_DASH, - ACTIONS(8770), 1, - anon_sym_DASH2, - STATE(5400), 1, - aux_sym_ctrl_do_repeat1, - STATE(5452), 1, + ACTIONS(3078), 1, + anon_sym_DQUOTE, + ACTIONS(3084), 1, + sym_raw_string_begin, + ACTIONS(9186), 1, + sym_identifier, + STATE(5145), 1, sym_comment, - STATE(6110), 1, - sym__flag, - STATE(5889), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(9125), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [195906] = 8, + STATE(5171), 1, + aux_sym_collection_type_repeat1, + STATE(5972), 1, + sym_val_string, + ACTIONS(3080), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5052), 2, + sym__raw_str, + sym__str_double_quotes, + [184685] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8768), 1, + ACTIONS(8734), 1, anon_sym_DASH_DASH, - ACTIONS(8770), 1, + ACTIONS(8736), 1, anon_sym_DASH2, - STATE(5450), 1, - aux_sym_ctrl_do_repeat1, - STATE(5453), 1, + STATE(5146), 1, sym_comment, - STATE(6110), 1, + STATE(5159), 1, + aux_sym_ctrl_do_repeat1, + STATE(5696), 1, sym__flag, - STATE(5889), 2, + STATE(5482), 2, sym_short_flag, sym_long_flag, - ACTIONS(9075), 3, + ACTIONS(9021), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [195934] = 6, + [184713] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9290), 1, - anon_sym_DOT, - ACTIONS(9292), 1, - aux_sym__immediate_decimal_token2, - STATE(5454), 1, + STATE(5147), 1, sym_comment, - ACTIONS(1666), 2, + ACTIONS(1499), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1668), 5, + ACTIONS(1501), 7, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [195958] = 7, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [184733] = 9, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9296), 1, - anon_sym_GT2, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9300), 1, - sym_raw_string_begin, - STATE(5455), 1, - sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9294), 4, - sym_identifier, + ACTIONS(3078), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [195983] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9304), 1, - anon_sym_GT2, - ACTIONS(9306), 1, + ACTIONS(3084), 1, sym_raw_string_begin, - STATE(5456), 1, - sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9302), 4, + ACTIONS(9188), 1, sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [196008] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9310), 1, - anon_sym_GT2, - ACTIONS(9312), 1, - sym_raw_string_begin, - STATE(5457), 1, + STATE(5148), 1, sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9308), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [196033] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4425), 1, - anon_sym_DQUOTE, - ACTIONS(4433), 1, - sym_raw_string_begin, - ACTIONS(9314), 1, - aux_sym_path_token1, - STATE(5441), 1, + STATE(5171), 1, + aux_sym_collection_type_repeat1, + STATE(6233), 1, sym_val_string, - STATE(5458), 1, - sym_comment, - ACTIONS(4427), 2, + ACTIONS(3080), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5417), 2, + STATE(5052), 2, sym__raw_str, sym__str_double_quotes, - [196060] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9318), 1, - anon_sym_GT2, - ACTIONS(9320), 1, - sym_raw_string_begin, - STATE(5459), 1, - sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9316), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [196085] = 8, + [184763] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1843), 1, + ACTIONS(1287), 1, anon_sym_DASH2, - ACTIONS(9322), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4438), 1, - sym_cell_path, - STATE(5460), 1, + STATE(5149), 1, sym_comment, - STATE(5659), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1845), 3, + ACTIONS(1285), 8, sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [196112] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9306), 1, - sym_raw_string_begin, - ACTIONS(9324), 1, - anon_sym_GT2, - STATE(5461), 1, - sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9302), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [196137] = 8, + [184783] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1913), 1, + ACTIONS(4850), 1, anon_sym_DASH2, - ACTIONS(9322), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4436), 1, - sym_cell_path, - STATE(5462), 1, + ACTIONS(9190), 1, + sym_long_flag_identifier, + ACTIONS(9192), 1, + anon_sym_EQ2, + STATE(5150), 1, sym_comment, - STATE(5659), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1915), 3, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(4848), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_DASH_DASH, - [196164] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9326), 1, - anon_sym_DQUOTE, - ACTIONS(9330), 1, - aux_sym_path_token1, - ACTIONS(9332), 1, - sym_raw_string_begin, - STATE(3317), 1, - sym_val_string, - STATE(5463), 1, - sym_comment, - ACTIONS(9328), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3320), 2, - sym__raw_str, - sym__str_double_quotes, - [196191] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5464), 1, - sym_comment, - ACTIONS(1790), 4, - anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1792), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [196210] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9336), 1, - anon_sym_GT2, - ACTIONS(9338), 1, - sym_raw_string_begin, - STATE(5465), 1, - sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9334), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [196235] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9340), 1, - anon_sym_DQUOTE, - ACTIONS(9344), 1, - aux_sym_path_token1, - ACTIONS(9346), 1, - sym_raw_string_begin, - STATE(2840), 1, - sym_val_string, - STATE(5466), 1, - sym_comment, - ACTIONS(9342), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2880), 2, - sym__raw_str, - sym__str_double_quotes, - [196262] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1847), 1, - anon_sym_DASH2, - ACTIONS(9322), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4389), 1, - sym_cell_path, - STATE(5467), 1, - sym_comment, - STATE(5659), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1849), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [196289] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9306), 1, - sym_raw_string_begin, - ACTIONS(9348), 1, - anon_sym_GT2, - STATE(5468), 1, - sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9302), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [196314] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9350), 1, - anon_sym_DQUOTE, - ACTIONS(9354), 1, - aux_sym_path_token1, - ACTIONS(9356), 1, - sym_raw_string_begin, - STATE(1419), 1, - sym_val_string, - STATE(5469), 1, - sym_comment, - ACTIONS(9352), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1421), 2, - sym__raw_str, - sym__str_double_quotes, - [196341] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9338), 1, - sym_raw_string_begin, - ACTIONS(9358), 1, - anon_sym_GT2, - STATE(5470), 1, - sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9334), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [196366] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4183), 1, - anon_sym_DQUOTE, - ACTIONS(4189), 1, - sym_raw_string_begin, - ACTIONS(9360), 1, - aux_sym_path_token1, - STATE(3995), 1, - sym_val_string, - STATE(5471), 1, - sym_comment, - ACTIONS(4185), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5633), 2, - sym__raw_str, - sym__str_double_quotes, - [196393] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9312), 1, - sym_raw_string_begin, - ACTIONS(9362), 1, - anon_sym_GT2, - STATE(5472), 1, - sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9308), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [196418] = 7, + [184807] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9366), 1, - anon_sym_GT2, - ACTIONS(9368), 1, - sym_raw_string_begin, - STATE(5473), 1, - sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9364), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [196443] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4183), 1, - anon_sym_DQUOTE, - ACTIONS(4189), 1, - sym_raw_string_begin, - ACTIONS(9370), 1, - aux_sym_path_token1, - STATE(5474), 1, - sym_comment, - STATE(6830), 1, - sym_val_string, - ACTIONS(4185), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5633), 2, - sym__raw_str, - sym__str_double_quotes, - [196470] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, - sym_raw_string_begin, - ACTIONS(9372), 1, - aux_sym_path_token1, - STATE(1405), 1, - sym_val_string, - STATE(5475), 1, - sym_comment, - ACTIONS(1264), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - [196497] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9374), 1, - anon_sym_DQUOTE, - ACTIONS(9378), 1, - aux_sym_path_token1, - ACTIONS(9380), 1, - sym_raw_string_begin, - STATE(2807), 1, - sym_val_string, - STATE(5476), 1, - sym_comment, - ACTIONS(9376), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2764), 2, - sym__raw_str, - sym__str_double_quotes, - [196524] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3152), 1, - anon_sym_DQUOTE, - ACTIONS(3158), 1, - sym_raw_string_begin, - ACTIONS(9382), 1, - aux_sym_path_token1, - STATE(5477), 1, - sym_comment, - STATE(5584), 1, - sym_val_string, - ACTIONS(3154), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5281), 2, - sym__raw_str, - sym__str_double_quotes, - [196551] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9384), 1, - anon_sym_DQUOTE, - ACTIONS(9388), 1, - aux_sym_path_token1, - ACTIONS(9390), 1, - sym_raw_string_begin, - STATE(3001), 1, - sym_val_string, - STATE(5478), 1, - sym_comment, - ACTIONS(9386), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3040), 2, - sym__raw_str, - sym__str_double_quotes, - [196578] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9392), 1, - anon_sym_DQUOTE, - ACTIONS(9396), 1, - aux_sym_path_token1, - ACTIONS(9398), 1, - sym_raw_string_begin, - STATE(516), 1, - sym_val_string, - STATE(5479), 1, - sym_comment, - ACTIONS(9394), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(544), 2, - sym__raw_str, - sym__str_double_quotes, - [196605] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9400), 1, - anon_sym_DQUOTE, - ACTIONS(9404), 1, - aux_sym_path_token1, - ACTIONS(9406), 1, - sym_raw_string_begin, - STATE(2758), 1, - sym_val_string, - STATE(5480), 1, - sym_comment, - ACTIONS(9402), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2759), 2, - sym__raw_str, - sym__str_double_quotes, - [196632] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9408), 1, - anon_sym_DQUOTE, - ACTIONS(9412), 1, - aux_sym_path_token1, - ACTIONS(9414), 1, - sym_raw_string_begin, - STATE(2942), 1, - sym_val_string, - STATE(5481), 1, - sym_comment, - ACTIONS(9410), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2932), 2, - sym__raw_str, - sym__str_double_quotes, - [196659] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9416), 1, - anon_sym_DQUOTE, - ACTIONS(9420), 1, - aux_sym_path_token1, - ACTIONS(9422), 1, - sym_raw_string_begin, - STATE(145), 1, - sym_val_string, - STATE(5482), 1, - sym_comment, - ACTIONS(9418), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(147), 2, - sym__raw_str, - sym__str_double_quotes, - [196686] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9424), 1, - anon_sym_DQUOTE, - ACTIONS(9428), 1, - aux_sym_path_token1, - ACTIONS(9430), 1, - sym_raw_string_begin, - STATE(533), 1, - sym_val_string, - STATE(5483), 1, - sym_comment, - ACTIONS(9426), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(499), 2, - sym__raw_str, - sym__str_double_quotes, - [196713] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9432), 1, - anon_sym_DQUOTE, - ACTIONS(9436), 1, - aux_sym_path_token1, - ACTIONS(9438), 1, - sym_raw_string_begin, - STATE(427), 1, - sym_val_string, - STATE(5484), 1, - sym_comment, - ACTIONS(9434), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(405), 2, - sym__raw_str, - sym__str_double_quotes, - [196740] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9440), 1, - anon_sym_DQUOTE, - ACTIONS(9444), 1, - aux_sym_path_token1, - ACTIONS(9446), 1, - sym_raw_string_begin, - STATE(375), 1, - sym_val_string, - STATE(5485), 1, - sym_comment, - ACTIONS(9442), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(373), 2, - sym__raw_str, - sym__str_double_quotes, - [196767] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1879), 1, - anon_sym_DASH2, - ACTIONS(9322), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4434), 1, - sym_cell_path, - STATE(5486), 1, - sym_comment, - STATE(5659), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1881), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [196794] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9448), 1, - anon_sym_DQUOTE, - ACTIONS(9452), 1, - aux_sym_path_token1, - ACTIONS(9454), 1, - sym_raw_string_begin, - STATE(1746), 1, - sym_val_string, - STATE(5487), 1, - sym_comment, - ACTIONS(9450), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1733), 2, - sym__raw_str, - sym__str_double_quotes, - [196821] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(5488), 1, - sym_comment, - ACTIONS(1538), 2, + ACTIONS(1628), 1, + sym__space, + ACTIONS(4581), 1, anon_sym_DOT_DOT2, + ACTIONS(7137), 1, aux_sym_unquoted_token2, - ACTIONS(1540), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(8714), 1, sym_filesize_unit, + ACTIONS(8716), 1, sym_duration_unit, - [196840] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9306), 1, - sym_raw_string_begin, - ACTIONS(9456), 1, - anon_sym_GT2, - STATE(5489), 1, - sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9302), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [196865] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9338), 1, - sym_raw_string_begin, - ACTIONS(9458), 1, - anon_sym_GT2, - STATE(5490), 1, - sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9334), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [196890] = 8, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(121), 1, - sym_raw_string_begin, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9460), 1, - aux_sym_path_token1, - STATE(1732), 1, - sym_val_string, - STATE(5491), 1, - sym_comment, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1634), 2, - sym__raw_str, - sym__str_double_quotes, - [196917] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1855), 1, - anon_sym_DASH2, - ACTIONS(9322), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4440), 1, - sym_cell_path, - STATE(5492), 1, + STATE(5151), 1, sym_comment, - STATE(5659), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1857), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [196944] = 8, + ACTIONS(1616), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(4583), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [184837] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1863), 1, - anon_sym_DASH2, - ACTIONS(9322), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4404), 1, - sym_cell_path, - STATE(5493), 1, - sym_comment, - STATE(5659), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1865), 3, - sym_identifier, + ACTIONS(8036), 1, + anon_sym_LPAREN2, + ACTIONS(9095), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [196971] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9306), 1, - sym_raw_string_begin, - ACTIONS(9462), 1, - anon_sym_GT2, - STATE(5494), 1, + ACTIONS(9097), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9099), 1, + aux_sym__immediate_decimal_token5, + STATE(5152), 1, sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9302), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [196996] = 8, + STATE(6679), 1, + sym__immediate_decimal, + ACTIONS(8504), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6677), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184867] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1959), 1, + ACTIONS(8734), 1, + anon_sym_DASH_DASH, + ACTIONS(8736), 1, anon_sym_DASH2, - ACTIONS(9322), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4301), 1, - sym_cell_path, - STATE(5495), 1, + STATE(5153), 1, sym_comment, - STATE(5659), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1961), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [197023] = 8, + STATE(5173), 1, + aux_sym_ctrl_do_repeat1, + STATE(5696), 1, + sym__flag, + STATE(5482), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8875), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [184895] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1262), 1, + ACTIONS(3078), 1, anon_sym_DQUOTE, - ACTIONS(1266), 1, + ACTIONS(3084), 1, sym_raw_string_begin, - ACTIONS(9360), 1, - aux_sym_path_token1, - STATE(3995), 1, - sym_val_string, - STATE(5496), 1, + ACTIONS(9194), 1, + sym_identifier, + STATE(5154), 1, sym_comment, - ACTIONS(1264), 2, + STATE(5171), 1, + aux_sym_collection_type_repeat1, + STATE(6317), 1, + sym_val_string, + ACTIONS(3080), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3801), 2, + STATE(5052), 2, sym__raw_str, sym__str_double_quotes, - [197050] = 8, + [184925] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1839), 1, - anon_sym_DASH2, - ACTIONS(9322), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4451), 1, - sym_cell_path, - STATE(5497), 1, - sym_comment, - STATE(5659), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1841), 3, - sym_identifier, + ACTIONS(3550), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [197077] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5498), 1, - sym_comment, - ACTIONS(1648), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1650), 4, - sym__space, + ACTIONS(4027), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [197096] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9306), 1, - sym_raw_string_begin, - ACTIONS(9464), 1, - anon_sym_GT2, - STATE(5499), 1, + ACTIONS(4033), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4035), 1, + aux_sym__immediate_decimal_token5, + STATE(1977), 1, + sym__immediate_decimal, + STATE(5155), 1, sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9302), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [197121] = 7, - ACTIONS(3), 1, + ACTIONS(4424), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1792), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184955] = 9, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9338), 1, - sym_raw_string_begin, - ACTIONS(9466), 1, - anon_sym_GT2, - STATE(5500), 1, + ACTIONS(3550), 1, + anon_sym_DOLLAR, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(6400), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6402), 1, + aux_sym__immediate_decimal_token5, + STATE(3464), 1, + sym__immediate_decimal, + STATE(5156), 1, sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9334), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [197146] = 5, + ACTIONS(6398), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3470), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184985] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9468), 1, - aux_sym__immediate_decimal_token2, - STATE(5501), 1, + ACTIONS(3550), 1, + anon_sym_DOLLAR, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(6400), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6402), 1, + aux_sym__immediate_decimal_token5, + STATE(1940), 1, + sym__immediate_decimal, + STATE(5157), 1, sym_comment, - ACTIONS(1719), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1721), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [197167] = 6, + ACTIONS(6490), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1728), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185015] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9470), 1, - anon_sym_EQ2, - ACTIONS(9472), 1, - sym_short_flag_identifier, - STATE(5502), 1, + ACTIONS(4027), 1, + anon_sym_LPAREN2, + ACTIONS(4033), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4035), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6947), 1, + anon_sym_DOLLAR, + STATE(1790), 1, + sym__immediate_decimal, + STATE(5158), 1, sym_comment, - ACTIONS(4883), 2, + ACTIONS(4424), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1789), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185045] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(8734), 1, anon_sym_DASH_DASH, + ACTIONS(8736), 1, anon_sym_DASH2, - ACTIONS(4881), 4, + STATE(5159), 1, + sym_comment, + STATE(5173), 1, + aux_sym_ctrl_do_repeat1, + STATE(5696), 1, + sym__flag, + STATE(5482), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(9055), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - [197190] = 5, - ACTIONS(3), 1, + [185073] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2200), 1, - aux_sym_unquoted_token4, - STATE(5503), 1, - sym_comment, - ACTIONS(2194), 2, + ACTIONS(8734), 1, anon_sym_DASH_DASH, + ACTIONS(8736), 1, anon_sym_DASH2, - ACTIONS(2198), 5, + STATE(5160), 1, + sym_comment, + STATE(5172), 1, + aux_sym_ctrl_do_repeat1, + STATE(5696), 1, + sym__flag, + STATE(5482), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(9057), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - [197211] = 4, + [185101] = 9, ACTIONS(245), 1, anon_sym_POUND, - STATE(5504), 1, - sym_comment, - ACTIONS(1715), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1717), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [197230] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(5505), 1, + ACTIONS(8036), 1, + anon_sym_LPAREN2, + ACTIONS(9095), 1, + anon_sym_DOLLAR, + ACTIONS(9196), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9198), 1, + aux_sym__immediate_decimal_token5, + STATE(5161), 1, sym_comment, - ACTIONS(2089), 2, - anon_sym_DASH_DASH, - anon_sym_DASH2, - ACTIONS(2093), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - [197251] = 4, + STATE(5909), 1, + sym__immediate_decimal, + ACTIONS(8442), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6680), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185131] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5506), 1, + ACTIONS(9038), 1, + aux_sym__immediate_decimal_token2, + STATE(5162), 1, sym_comment, - ACTIONS(1648), 4, + ACTIONS(1701), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1650), 4, + ACTIONS(1703), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [197270] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9474), 1, - anon_sym_DASH_DASH, - ACTIONS(9477), 1, - anon_sym_DASH2, - STATE(5422), 1, - sym__flag, - ACTIONS(6320), 2, - sym_identifier, - anon_sym_DOLLAR, - STATE(5217), 2, - sym_short_flag, - sym_long_flag, - STATE(5507), 2, - sym_comment, - aux_sym_ctrl_do_repeat1, - [197295] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9338), 1, - sym_raw_string_begin, - ACTIONS(9480), 1, - anon_sym_GT2, - STATE(5508), 1, - sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9334), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [197320] = 7, + [185153] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9338), 1, - sym_raw_string_begin, - ACTIONS(9482), 1, - anon_sym_GT2, - STATE(5509), 1, + ACTIONS(9051), 1, + aux_sym__immediate_decimal_token2, + STATE(5163), 1, sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9334), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [197345] = 8, + ACTIONS(1701), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [185175] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9484), 1, + ACTIONS(3078), 1, anon_sym_DQUOTE, - ACTIONS(9488), 1, - aux_sym_path_token1, - ACTIONS(9490), 1, + ACTIONS(3084), 1, sym_raw_string_begin, - STATE(1367), 1, - sym_val_string, - STATE(5510), 1, + ACTIONS(9200), 1, + sym_identifier, + STATE(5164), 1, sym_comment, - ACTIONS(9486), 2, + STATE(5171), 1, + aux_sym_collection_type_repeat1, + STATE(6337), 1, + sym_val_string, + ACTIONS(3080), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1339), 2, + STATE(5052), 2, sym__raw_str, sym__str_double_quotes, - [197372] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9320), 1, - sym_raw_string_begin, - ACTIONS(9492), 1, - anon_sym_GT2, - STATE(5511), 1, - sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9316), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [197397] = 7, - ACTIONS(3), 1, + [185205] = 9, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9368), 1, - sym_raw_string_begin, - ACTIONS(9494), 1, - anon_sym_GT2, - STATE(5512), 1, + ACTIONS(7028), 1, + anon_sym_LPAREN2, + ACTIONS(9103), 1, + anon_sym_DOLLAR, + ACTIONS(9202), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9204), 1, + aux_sym__immediate_decimal_token5, + STATE(4317), 1, + sym__immediate_decimal, + STATE(5165), 1, sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9364), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [197422] = 5, + ACTIONS(7064), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4519), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185235] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9496), 1, + ACTIONS(9206), 1, + anon_sym_DOT, + ACTIONS(9208), 1, aux_sym__immediate_decimal_token2, - STATE(5513), 1, + STATE(5166), 1, sym_comment, - ACTIONS(1538), 2, + ACTIONS(1499), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1540), 5, + ACTIONS(1501), 5, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [197443] = 7, - ACTIONS(3), 1, + [185259] = 9, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9338), 1, - sym_raw_string_begin, - ACTIONS(9498), 1, - anon_sym_GT2, - STATE(5514), 1, - sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9334), 4, - sym_identifier, + ACTIONS(3078), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [197468] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9338), 1, + ACTIONS(3084), 1, sym_raw_string_begin, - ACTIONS(9500), 1, - anon_sym_GT2, - STATE(5515), 1, - sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9334), 4, + ACTIONS(9210), 1, sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [197493] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9300), 1, - sym_raw_string_begin, - ACTIONS(9502), 1, - anon_sym_GT2, - STATE(5516), 1, + STATE(5167), 1, sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9294), 4, - sym_identifier, - anon_sym_DQUOTE, + STATE(5171), 1, + aux_sym_collection_type_repeat1, + STATE(5889), 1, + sym_val_string, + ACTIONS(3080), 2, sym__str_single_quotes, sym__str_back_ticks, - [197518] = 4, + STATE(5052), 2, + sym__raw_str, + sym__str_double_quotes, + [185289] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(5517), 1, + ACTIONS(9212), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9214), 1, + aux_sym__immediate_decimal_token2, + STATE(5168), 1, sym_comment, - ACTIONS(1492), 2, + ACTIONS(1686), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1494), 6, + ACTIONS(1688), 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, - [197537] = 8, - ACTIONS(3), 1, + [185313] = 9, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(1813), 1, + ACTIONS(5503), 1, + anon_sym_DOLLAR, + ACTIONS(5505), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, - sym__space, - ACTIONS(9504), 1, - anon_sym_DOT_DOT2, - STATE(5518), 1, + ACTIONS(5511), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5513), 1, + aux_sym__immediate_decimal_token5, + STATE(2952), 1, + sym__immediate_decimal, + STATE(5169), 1, sym_comment, - ACTIONS(1811), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(9506), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [197564] = 4, + ACTIONS(5509), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3021), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185343] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(974), 1, + ACTIONS(3078), 1, + anon_sym_DQUOTE, + ACTIONS(3084), 1, + sym_raw_string_begin, + ACTIONS(9216), 1, + sym_identifier, + STATE(5170), 1, + sym_comment, + STATE(5171), 1, + aux_sym_collection_type_repeat1, + STATE(5926), 1, + sym_val_string, + ACTIONS(3080), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5052), 2, + sym__raw_str, + sym__str_double_quotes, + [185373] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(9218), 1, + sym_identifier, + ACTIONS(9221), 1, + anon_sym_DQUOTE, + ACTIONS(9227), 1, + sym_raw_string_begin, + STATE(6488), 1, + sym_val_string, + ACTIONS(9224), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5052), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(5171), 2, + sym_comment, + aux_sym_collection_type_repeat1, + [185401] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(8734), 1, + anon_sym_DASH_DASH, + ACTIONS(8736), 1, anon_sym_DASH2, - STATE(5519), 1, + STATE(5172), 1, sym_comment, - ACTIONS(976), 7, + STATE(5173), 1, + aux_sym_ctrl_do_repeat1, + STATE(5696), 1, + sym__flag, + STATE(5482), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(9059), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT2, - [197583] = 9, - ACTIONS(3), 1, + [185429] = 7, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3076), 1, + ACTIONS(9230), 1, anon_sym_DASH_DASH, - ACTIONS(3078), 1, + ACTIONS(9233), 1, anon_sym_DASH2, - ACTIONS(7827), 1, - sym__newline, - ACTIONS(7829), 1, - sym__space, - STATE(5520), 1, - sym_comment, - STATE(5697), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7541), 1, + STATE(5696), 1, sym__flag, - STATE(4663), 2, + STATE(5173), 2, + sym_comment, + aux_sym_ctrl_do_repeat1, + STATE(5482), 2, sym_short_flag, sym_long_flag, - [197612] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9368), 1, - sym_raw_string_begin, - ACTIONS(9508), 1, - anon_sym_GT2, - STATE(5521), 1, - sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9364), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [197637] = 7, - ACTIONS(3), 1, + ACTIONS(6261), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [185455] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9312), 1, - sym_raw_string_begin, - ACTIONS(9510), 1, - anon_sym_GT2, - STATE(5522), 1, + ACTIONS(9236), 1, + aux_sym__immediate_decimal_token2, + STATE(5174), 1, sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9308), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [197662] = 7, - ACTIONS(3), 1, + ACTIONS(1579), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1581), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [185477] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9320), 1, - sym_raw_string_begin, - ACTIONS(9512), 1, - anon_sym_GT2, - STATE(5523), 1, + ACTIONS(6470), 1, + anon_sym_DASH2, + STATE(5175), 1, sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9316), 4, + ACTIONS(6468), 8, sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [197687] = 7, - ACTIONS(3), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [185497] = 9, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9320), 1, - sym_raw_string_begin, - ACTIONS(9514), 1, - anon_sym_GT2, - STATE(5524), 1, + ACTIONS(7102), 1, + anon_sym_DOLLAR, + ACTIONS(7104), 1, + anon_sym_LPAREN2, + ACTIONS(7149), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7151), 1, + aux_sym__immediate_decimal_token5, + STATE(4439), 1, + sym__immediate_decimal, + STATE(5176), 1, sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9316), 4, - sym_identifier, + ACTIONS(7147), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4819), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185527] = 8, + ACTIONS(233), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [197712] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2278), 1, + ACTIONS(247), 1, sym_raw_string_begin, - ACTIONS(4067), 1, - anon_sym_DQUOTE, - ACTIONS(9516), 1, + ACTIONS(9238), 1, aux_sym_path_token1, - STATE(4143), 1, + STATE(1324), 1, sym_val_string, - STATE(5525), 1, + STATE(5177), 1, sym_comment, - ACTIONS(4069), 2, + ACTIONS(235), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4093), 2, + STATE(1340), 2, sym__raw_str, sym__str_double_quotes, - [197739] = 7, + [185554] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9312), 1, - sym_raw_string_begin, - ACTIONS(9518), 1, + ACTIONS(9242), 1, anon_sym_GT2, - STATE(5526), 1, - sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9308), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [197764] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1883), 1, - anon_sym_DASH2, - ACTIONS(9322), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4445), 1, - sym_cell_path, - STATE(5527), 1, - sym_comment, - STATE(5659), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1885), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [197791] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9312), 1, + ACTIONS(9246), 1, sym_raw_string_begin, - ACTIONS(9520), 1, - anon_sym_GT2, - STATE(5528), 1, + STATE(5178), 1, sym_comment, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9308), 4, + ACTIONS(9240), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [197816] = 8, + [185579] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1927), 1, + ACTIONS(1849), 1, anon_sym_DASH2, - ACTIONS(9322), 1, + ACTIONS(9248), 1, anon_sym_DOT2, - STATE(4018), 1, + STATE(3842), 1, sym_path, - STATE(4336), 1, + STATE(4219), 1, sym_cell_path, - STATE(5529), 1, + STATE(5179), 1, sym_comment, - STATE(5659), 1, + STATE(5406), 1, aux_sym_cell_path_repeat1, - ACTIONS(1929), 3, + ACTIONS(1851), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [197843] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9300), 1, - sym_raw_string_begin, - ACTIONS(9522), 1, - anon_sym_GT2, - STATE(5530), 1, - sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9294), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [197868] = 5, + [185606] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2192), 1, + ACTIONS(2168), 1, aux_sym_unquoted_token4, - STATE(5531), 1, + STATE(5180), 1, sym_comment, - ACTIONS(998), 2, + ACTIONS(2162), 2, anon_sym_DASH_DASH, anon_sym_DASH2, - ACTIONS(994), 5, + ACTIONS(2166), 5, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, anon_sym_RBRACE, - [197889] = 7, + [185627] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(9250), 1, + anon_sym_DQUOTE, + ACTIONS(9254), 1, + aux_sym_path_token1, + ACTIONS(9256), 1, + sym_raw_string_begin, + STATE(1205), 1, + sym_val_string, + STATE(5181), 1, + sym_comment, + ACTIONS(9252), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1192), 2, + sym__raw_str, + sym__str_double_quotes, + [185654] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9368), 1, - sym_raw_string_begin, - ACTIONS(9524), 1, + ACTIONS(9260), 1, anon_sym_GT2, - STATE(5532), 1, + ACTIONS(9262), 1, + sym_raw_string_begin, + STATE(5182), 1, sym_comment, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9364), 4, + ACTIONS(9258), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [197914] = 4, + [185679] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1711), 1, - anon_sym_DASH2, - STATE(5533), 1, + ACTIONS(9264), 1, + anon_sym_EQ2, + ACTIONS(9266), 1, + sym_short_flag_identifier, + STATE(5183), 1, sym_comment, - ACTIONS(1713), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, + ACTIONS(4817), 2, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [197933] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(970), 1, anon_sym_DASH2, - STATE(5534), 1, - sym_comment, - ACTIONS(972), 7, + ACTIONS(4815), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT2, - [197952] = 7, + [185702] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9320), 1, - sym_raw_string_begin, - ACTIONS(9526), 1, + ACTIONS(9270), 1, anon_sym_GT2, - STATE(5535), 1, + ACTIONS(9272), 1, + sym_raw_string_begin, + STATE(5184), 1, sym_comment, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9316), 4, + ACTIONS(9268), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [197977] = 6, - ACTIONS(245), 1, + [185727] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9528), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9530), 1, - aux_sym__immediate_decimal_token2, - STATE(5536), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9276), 1, + anon_sym_GT2, + ACTIONS(9278), 1, + sym_raw_string_begin, + STATE(5185), 1, sym_comment, - ACTIONS(1648), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1650), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [198000] = 7, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9274), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [185752] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9532), 1, + ACTIONS(9280), 1, anon_sym_DASH_DASH, - ACTIONS(9535), 1, + ACTIONS(9283), 1, anon_sym_DASH2, - STATE(5422), 1, + STATE(5175), 1, sym__flag, - ACTIONS(6320), 2, + ACTIONS(6261), 2, anon_sym_DOLLAR, anon_sym_LBRACE, - STATE(5217), 2, + STATE(4957), 2, sym_short_flag, sym_long_flag, - STATE(5537), 2, + STATE(5186), 2, sym_comment, aux_sym_ctrl_do_repeat1, - [198025] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1895), 1, - anon_sym_DASH2, - ACTIONS(9322), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4435), 1, - sym_cell_path, - STATE(5538), 1, - sym_comment, - STATE(5659), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1897), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [198052] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1945), 1, - anon_sym_DASH2, - ACTIONS(9322), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4437), 1, - sym_cell_path, - STATE(5539), 1, - sym_comment, - STATE(5659), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1947), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [198079] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5540), 1, - sym_comment, - ACTIONS(1719), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1721), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [198098] = 7, + [185777] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9306), 1, + ACTIONS(9262), 1, sym_raw_string_begin, - ACTIONS(9538), 1, + ACTIONS(9286), 1, anon_sym_GT2, - STATE(5541), 1, + STATE(5187), 1, sym_comment, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9302), 4, + ACTIONS(9258), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198123] = 8, - ACTIONS(245), 1, + [185802] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1829), 1, - anon_sym_DASH2, - ACTIONS(9322), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4352), 1, - sym_cell_path, - STATE(5542), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9290), 1, + anon_sym_GT2, + ACTIONS(9292), 1, + sym_raw_string_begin, + STATE(5188), 1, sym_comment, - STATE(5659), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1831), 3, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9288), 4, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [198150] = 8, - ACTIONS(233), 1, anon_sym_DQUOTE, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(247), 1, - sym_raw_string_begin, - ACTIONS(9372), 1, - aux_sym_path_token1, - STATE(1405), 1, - sym_val_string, - STATE(5543), 1, - sym_comment, - ACTIONS(235), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1383), 2, - sym__raw_str, - sym__str_double_quotes, - [198177] = 7, + [185827] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9338), 1, + ACTIONS(9262), 1, sym_raw_string_begin, - ACTIONS(9540), 1, + ACTIONS(9294), 1, anon_sym_GT2, - STATE(5544), 1, + STATE(5189), 1, sym_comment, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9334), 4, + ACTIONS(9258), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198202] = 7, + [185852] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9312), 1, + ACTIONS(9292), 1, sym_raw_string_begin, - ACTIONS(9542), 1, + ACTIONS(9296), 1, anon_sym_GT2, - STATE(5545), 1, + STATE(5190), 1, sym_comment, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9308), 4, + ACTIONS(9288), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198227] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9274), 1, - aux_sym__immediate_decimal_token2, - STATE(5546), 1, - sym_comment, - ACTIONS(1666), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1668), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [198248] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1941), 1, - anon_sym_DASH2, - ACTIONS(9322), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4385), 1, - sym_cell_path, - STATE(5547), 1, - sym_comment, - STATE(5659), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1943), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [198275] = 7, + [185877] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9300), 1, + ACTIONS(9292), 1, sym_raw_string_begin, - ACTIONS(9544), 1, + ACTIONS(9298), 1, anon_sym_GT2, - STATE(5548), 1, + STATE(5191), 1, sym_comment, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9294), 4, + ACTIONS(9288), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198300] = 8, + [185902] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1891), 1, - anon_sym_DASH2, - ACTIONS(9322), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4446), 1, - sym_cell_path, - STATE(5549), 1, - sym_comment, - STATE(5659), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1893), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [198327] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5550), 1, + ACTIONS(9300), 1, + anon_sym_DQUOTE, + ACTIONS(9304), 1, + aux_sym_path_token1, + ACTIONS(9306), 1, + sym_raw_string_begin, + STATE(1594), 1, + sym_val_string, + STATE(5192), 1, sym_comment, - ACTIONS(1790), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1792), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [198346] = 7, + ACTIONS(9302), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1631), 2, + sym__raw_str, + sym__str_double_quotes, + [185929] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9320), 1, - sym_raw_string_begin, - ACTIONS(9546), 1, + ACTIONS(9310), 1, anon_sym_GT2, - STATE(5551), 1, + ACTIONS(9312), 1, + sym_raw_string_begin, + STATE(5193), 1, sym_comment, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9316), 4, + ACTIONS(9308), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198371] = 8, + [185954] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1851), 1, + ACTIONS(1915), 1, anon_sym_DASH2, - ACTIONS(9322), 1, + ACTIONS(9248), 1, anon_sym_DOT2, - STATE(4018), 1, + STATE(3842), 1, sym_path, - STATE(4393), 1, + STATE(4152), 1, sym_cell_path, - STATE(5552), 1, + STATE(5194), 1, sym_comment, - STATE(5659), 1, + STATE(5406), 1, aux_sym_cell_path_repeat1, - ACTIONS(1853), 3, + ACTIONS(1917), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [198398] = 7, + [185981] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9312), 1, + ACTIONS(9272), 1, sym_raw_string_begin, - ACTIONS(9548), 1, + ACTIONS(9314), 1, anon_sym_GT2, - STATE(5553), 1, + STATE(5195), 1, sym_comment, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9308), 4, + ACTIONS(9268), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198423] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5554), 1, - sym_comment, - ACTIONS(2045), 3, - anon_sym_DASH_DASH, - anon_sym_DASH2, - aux_sym_unquoted_token4, - ACTIONS(2047), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - [198442] = 7, + [186006] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9368), 1, + ACTIONS(9278), 1, sym_raw_string_begin, - ACTIONS(9550), 1, + ACTIONS(9316), 1, anon_sym_GT2, - STATE(5555), 1, + STATE(5196), 1, sym_comment, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9364), 4, + ACTIONS(9274), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198467] = 8, - ACTIONS(245), 1, + [186031] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9552), 1, - anon_sym_DQUOTE, - ACTIONS(9556), 1, - aux_sym_path_token1, - ACTIONS(9558), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9262), 1, sym_raw_string_begin, - STATE(2559), 1, - sym_val_string, - STATE(5556), 1, + ACTIONS(9318), 1, + anon_sym_GT2, + STATE(5197), 1, sym_comment, - ACTIONS(9554), 2, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9258), 4, + sym_identifier, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(2562), 2, - sym__raw_str, - sym__str_double_quotes, - [198494] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2001), 1, - anon_sym_DASH2, - STATE(5557), 1, - sym_comment, - ACTIONS(2003), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [198513] = 7, + [186056] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9368), 1, + ACTIONS(9292), 1, sym_raw_string_begin, - ACTIONS(9560), 1, + ACTIONS(9320), 1, anon_sym_GT2, - STATE(5558), 1, + STATE(5198), 1, sym_comment, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9364), 4, + ACTIONS(9288), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198538] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9562), 1, - anon_sym_QMARK2, - STATE(5559), 1, - sym_comment, - ACTIONS(944), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(942), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [198559] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5062), 1, - anon_sym_DASH2, - ACTIONS(9564), 1, - anon_sym_EQ2, - STATE(5560), 1, - sym_comment, - ACTIONS(5060), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - [198580] = 7, + [186081] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9320), 1, + ACTIONS(9246), 1, sym_raw_string_begin, - ACTIONS(9566), 1, + ACTIONS(9322), 1, anon_sym_GT2, - STATE(5561), 1, + STATE(5199), 1, sym_comment, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9316), 4, + ACTIONS(9240), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198605] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(5562), 1, - sym_comment, - ACTIONS(1484), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1486), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [198624] = 8, + [186106] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9568), 1, + ACTIONS(2228), 1, + sym_raw_string_begin, + ACTIONS(4294), 1, anon_sym_DQUOTE, - ACTIONS(9572), 1, + ACTIONS(9324), 1, aux_sym_path_token1, - ACTIONS(9574), 1, - sym_raw_string_begin, - STATE(2586), 1, + STATE(3891), 1, sym_val_string, - STATE(5563), 1, + STATE(5200), 1, sym_comment, - ACTIONS(9570), 2, + ACTIONS(4296), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2588), 2, + STATE(3892), 2, sym__raw_str, sym__str_double_quotes, - [198651] = 5, - ACTIONS(245), 1, + [186133] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1579), 1, - anon_sym_DASH2, - ACTIONS(7082), 1, - aux_sym_unquoted_token2, - STATE(5564), 1, + ACTIONS(9326), 1, + aux_sym__immediate_decimal_token2, + STATE(5201), 1, sym_comment, - ACTIONS(1591), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(1760), 3, anon_sym_RBRACE, - [198672] = 8, - ACTIONS(245), 1, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1762), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [186154] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3685), 1, - anon_sym_DQUOTE, - ACTIONS(3699), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9272), 1, sym_raw_string_begin, - ACTIONS(9360), 1, - aux_sym_path_token1, - STATE(3995), 1, - sym_val_string, - STATE(5565), 1, + ACTIONS(9328), 1, + anon_sym_GT2, + STATE(5202), 1, sym_comment, - ACTIONS(3687), 2, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9268), 4, + sym_identifier, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(4187), 2, - sym__raw_str, - sym__str_double_quotes, - [198699] = 7, + [186179] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9368), 1, + ACTIONS(9278), 1, sym_raw_string_begin, - ACTIONS(9576), 1, + ACTIONS(9330), 1, anon_sym_GT2, - STATE(5566), 1, + STATE(5203), 1, sym_comment, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9364), 4, + ACTIONS(9274), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198724] = 7, + [186204] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9300), 1, + ACTIONS(9272), 1, sym_raw_string_begin, - ACTIONS(9578), 1, + ACTIONS(9332), 1, anon_sym_GT2, - STATE(5567), 1, + STATE(5204), 1, sym_comment, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9294), 4, + ACTIONS(9268), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198749] = 7, + [186229] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9300), 1, + ACTIONS(9272), 1, sym_raw_string_begin, - ACTIONS(9580), 1, + ACTIONS(9334), 1, anon_sym_GT2, - STATE(5568), 1, + STATE(5205), 1, sym_comment, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9294), 4, + ACTIONS(9268), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198774] = 7, + [186254] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9312), 1, + ACTIONS(9278), 1, sym_raw_string_begin, - ACTIONS(9582), 1, + ACTIONS(9336), 1, anon_sym_GT2, - STATE(5569), 1, + STATE(5206), 1, sym_comment, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9308), 4, + ACTIONS(9274), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198799] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9292), 1, - aux_sym__immediate_decimal_token2, - STATE(5570), 1, - sym_comment, - ACTIONS(1666), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1668), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [198820] = 7, + [186279] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9306), 1, + ACTIONS(9278), 1, sym_raw_string_begin, - ACTIONS(9584), 1, + ACTIONS(9338), 1, anon_sym_GT2, - STATE(5571), 1, + STATE(5207), 1, sym_comment, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9302), 4, + ACTIONS(9274), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198845] = 5, + [186304] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9246), 1, - aux_sym__immediate_decimal_token2, - STATE(5572), 1, + ACTIONS(9340), 1, + anon_sym_DQUOTE, + ACTIONS(9344), 1, + aux_sym_path_token1, + ACTIONS(9346), 1, + sym_raw_string_begin, + STATE(2430), 1, + sym_val_string, + STATE(5208), 1, sym_comment, - ACTIONS(1492), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1494), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [198866] = 4, - ACTIONS(245), 1, + ACTIONS(9342), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2432), 2, + sym__raw_str, + sym__str_double_quotes, + [186331] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(974), 1, - anon_sym_DASH2, - STATE(5573), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9262), 1, + sym_raw_string_begin, + ACTIONS(9348), 1, + anon_sym_GT2, + STATE(5209), 1, sym_comment, - ACTIONS(976), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT2, - [198885] = 7, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9258), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [186356] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9300), 1, + ACTIONS(9278), 1, sym_raw_string_begin, - ACTIONS(9586), 1, + ACTIONS(9350), 1, anon_sym_GT2, - STATE(5574), 1, + STATE(5210), 1, sym_comment, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9294), 4, + ACTIONS(9274), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198910] = 8, - ACTIONS(245), 1, + [186381] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1923), 1, - anon_sym_DASH2, - ACTIONS(9322), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4448), 1, - sym_cell_path, - STATE(5575), 1, + STATE(5211), 1, sym_comment, - STATE(5659), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1925), 3, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(2076), 3, anon_sym_DASH_DASH, - [198937] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5080), 1, anon_sym_DASH2, - ACTIONS(9588), 1, - anon_sym_EQ2, - STATE(5576), 1, - sym_comment, - ACTIONS(5078), 6, + aux_sym_unquoted_token4, + ACTIONS(2078), 5, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_RBRACE, - [198958] = 7, + [186400] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9312), 1, + ACTIONS(9292), 1, sym_raw_string_begin, - ACTIONS(9590), 1, + ACTIONS(9352), 1, anon_sym_GT2, - STATE(5577), 1, + STATE(5212), 1, sym_comment, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9308), 4, + ACTIONS(9288), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [198983] = 8, - ACTIONS(245), 1, + [186425] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1262), 1, - anon_sym_DQUOTE, - ACTIONS(1266), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9262), 1, sym_raw_string_begin, - ACTIONS(9592), 1, - aux_sym_path_token1, - STATE(5398), 1, - sym_val_string, - STATE(5578), 1, + ACTIONS(9354), 1, + anon_sym_GT2, + STATE(5213), 1, sym_comment, - ACTIONS(1264), 2, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9258), 4, + sym_identifier, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(3801), 2, - sym__raw_str, - sym__str_double_quotes, - [199010] = 7, + [186450] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9320), 1, + ACTIONS(9292), 1, sym_raw_string_begin, - ACTIONS(9594), 1, + ACTIONS(9356), 1, anon_sym_GT2, - STATE(5579), 1, + STATE(5214), 1, sym_comment, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9316), 4, + ACTIONS(9288), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [199035] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1931), 1, - anon_sym_DASH2, - ACTIONS(9322), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4456), 1, - sym_cell_path, - STATE(5580), 1, - sym_comment, - STATE(5659), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1933), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [199062] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1875), 1, - anon_sym_DASH2, - ACTIONS(9322), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4405), 1, - sym_cell_path, - STATE(5581), 1, - sym_comment, - STATE(5659), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1877), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [199089] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9598), 1, - anon_sym_DASH2, - STATE(5582), 1, - sym_comment, - ACTIONS(9596), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [199108] = 8, + [186475] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2186), 1, + ACTIONS(2066), 1, sym_raw_string_begin, - ACTIONS(4333), 1, + ACTIONS(4328), 1, anon_sym_DQUOTE, - ACTIONS(9600), 1, + ACTIONS(9358), 1, aux_sym_path_token1, - STATE(4071), 1, + STATE(3857), 1, sym_val_string, - STATE(5583), 1, + STATE(5215), 1, sym_comment, - ACTIONS(4335), 2, + ACTIONS(4330), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4077), 2, + STATE(3849), 2, sym__raw_str, sym__str_double_quotes, - [199135] = 5, + [186502] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9602), 1, - anon_sym_QMARK2, - STATE(5584), 1, - sym_comment, - ACTIONS(950), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(948), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [199156] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1835), 1, - anon_sym_DASH2, - ACTIONS(9322), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4366), 1, - sym_cell_path, - STATE(5585), 1, + ACTIONS(9272), 1, + sym_raw_string_begin, + ACTIONS(9360), 1, + anon_sym_GT2, + STATE(5216), 1, sym_comment, - STATE(5659), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1837), 3, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9268), 4, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [199183] = 7, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [186527] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9300), 1, + ACTIONS(9278), 1, sym_raw_string_begin, - ACTIONS(9604), 1, + ACTIONS(9362), 1, anon_sym_GT2, - STATE(5586), 1, + STATE(5217), 1, sym_comment, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9294), 4, + ACTIONS(9274), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [199208] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5587), 1, - sym_comment, - ACTIONS(1666), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1668), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [199227] = 7, + [186552] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9300), 1, + ACTIONS(9312), 1, sym_raw_string_begin, - ACTIONS(9606), 1, + ACTIONS(9364), 1, anon_sym_GT2, - STATE(5588), 1, + STATE(5218), 1, sym_comment, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9294), 4, + ACTIONS(9308), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [199252] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1859), 1, - anon_sym_DASH2, - ACTIONS(9322), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(4397), 1, - sym_cell_path, - STATE(5589), 1, - sym_comment, - STATE(5659), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1861), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [199279] = 7, + [186577] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9320), 1, + ACTIONS(9262), 1, sym_raw_string_begin, - ACTIONS(9608), 1, + ACTIONS(9366), 1, anon_sym_GT2, - STATE(5590), 1, + STATE(5219), 1, sym_comment, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9316), 4, + ACTIONS(9258), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [199304] = 7, + [186602] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(9368), 1, + anon_sym_DQUOTE, + ACTIONS(9372), 1, + aux_sym_path_token1, + ACTIONS(9374), 1, + sym_raw_string_begin, + STATE(1406), 1, + sym_val_string, + STATE(5220), 1, + sym_comment, + ACTIONS(9370), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1453), 2, + sym__raw_str, + sym__str_double_quotes, + [186629] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9312), 1, + ACTIONS(9292), 1, sym_raw_string_begin, - ACTIONS(9610), 1, + ACTIONS(9376), 1, anon_sym_GT2, - STATE(5591), 1, + STATE(5221), 1, sym_comment, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9308), 4, + ACTIONS(9288), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [199329] = 6, + [186654] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9612), 1, - anon_sym_DOT, - ACTIONS(9614), 1, + ACTIONS(9378), 1, aux_sym__immediate_decimal_token2, - STATE(5592), 1, + STATE(5222), 1, sym_comment, - ACTIONS(1666), 2, + ACTIONS(1760), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1668), 4, + ACTIONS(1762), 5, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [199352] = 7, + [186675] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9368), 1, + ACTIONS(9272), 1, sym_raw_string_begin, - ACTIONS(9616), 1, + ACTIONS(9380), 1, anon_sym_GT2, - STATE(5593), 1, + STATE(5223), 1, sym_comment, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9364), 4, + ACTIONS(9268), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [199377] = 7, + [186700] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9368), 1, + ACTIONS(9278), 1, sym_raw_string_begin, - ACTIONS(9618), 1, + ACTIONS(9382), 1, anon_sym_GT2, - STATE(5594), 1, + STATE(5224), 1, sym_comment, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9364), 4, + ACTIONS(9274), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [199402] = 7, + [186725] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(9384), 1, + anon_sym_DQUOTE, + ACTIONS(9388), 1, + aux_sym_path_token1, + ACTIONS(9390), 1, + sym_raw_string_begin, + STATE(1555), 1, + sym_val_string, + STATE(5225), 1, + sym_comment, + ACTIONS(9386), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1525), 2, + sym__raw_str, + sym__str_double_quotes, + [186752] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9368), 1, + ACTIONS(9272), 1, sym_raw_string_begin, - ACTIONS(9620), 1, + ACTIONS(9392), 1, anon_sym_GT2, - STATE(5595), 1, + STATE(5226), 1, sym_comment, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9364), 4, + ACTIONS(9268), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [199427] = 7, + [186777] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9306), 1, + ACTIONS(9278), 1, sym_raw_string_begin, - ACTIONS(9622), 1, + ACTIONS(9394), 1, anon_sym_GT2, - STATE(5596), 1, + STATE(5227), 1, sym_comment, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9302), 4, + ACTIONS(9274), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [199452] = 8, + [186802] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(4384), 1, + anon_sym_DQUOTE, + ACTIONS(4392), 1, + sym_raw_string_begin, + ACTIONS(9396), 1, + aux_sym_path_token1, + STATE(5101), 1, + sym_val_string, + STATE(5228), 1, + sym_comment, + ACTIONS(4386), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5097), 2, + sym__raw_str, + sym__str_double_quotes, + [186829] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1935), 1, + ACTIONS(970), 1, anon_sym_DASH2, - ACTIONS(9322), 1, + STATE(5229), 1, + sym_comment, + ACTIONS(972), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, anon_sym_DOT2, - STATE(4018), 1, + [186848] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1823), 1, + anon_sym_DASH2, + ACTIONS(9248), 1, + anon_sym_DOT2, + STATE(3842), 1, sym_path, - STATE(4457), 1, + STATE(4179), 1, sym_cell_path, - STATE(5597), 1, + STATE(5230), 1, sym_comment, - STATE(5659), 1, + STATE(5406), 1, aux_sym_cell_path_repeat1, - ACTIONS(1937), 3, + ACTIONS(1825), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [199479] = 6, + [186875] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4875), 1, - anon_sym_DASH2, - ACTIONS(9624), 1, - sym_long_flag_identifier, - ACTIONS(9626), 1, - anon_sym_EQ2, - STATE(5598), 1, + ACTIONS(9398), 1, + anon_sym_DQUOTE, + ACTIONS(9402), 1, + aux_sym_path_token1, + ACTIONS(9404), 1, + sym_raw_string_begin, + STATE(3123), 1, + sym_val_string, + STATE(5231), 1, sym_comment, - ACTIONS(4873), 5, - ts_builtin_sym_end, + ACTIONS(9400), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3130), 2, + sym__raw_str, + sym__str_double_quotes, + [186902] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1790), 1, + sym__space, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + ACTIONS(9406), 1, + anon_sym_DOT_DOT2, + STATE(5232), 1, + sym_comment, + ACTIONS(1782), 2, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [199502] = 7, - ACTIONS(3), 1, + ACTIONS(9408), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [186929] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9306), 1, + ACTIONS(3631), 1, + anon_sym_DQUOTE, + ACTIONS(3645), 1, sym_raw_string_begin, - ACTIONS(9628), 1, - anon_sym_GT2, - STATE(5599), 1, + ACTIONS(9410), 1, + aux_sym_path_token1, + STATE(3807), 1, + sym_val_string, + STATE(5233), 1, sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9302), 4, - sym_identifier, + ACTIONS(3633), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3983), 2, + sym__raw_str, + sym__str_double_quotes, + [186956] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(9412), 1, anon_sym_DQUOTE, + ACTIONS(9416), 1, + aux_sym_path_token1, + ACTIONS(9418), 1, + sym_raw_string_begin, + STATE(2695), 1, + sym_val_string, + STATE(5234), 1, + sym_comment, + ACTIONS(9414), 2, sym__str_single_quotes, sym__str_back_ticks, - [199527] = 7, + STATE(2678), 2, + sym__raw_str, + sym__str_double_quotes, + [186983] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9338), 1, + ACTIONS(9262), 1, sym_raw_string_begin, - ACTIONS(9630), 1, + ACTIONS(9420), 1, anon_sym_GT2, - STATE(5600), 1, + STATE(5235), 1, sym_comment, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9334), 4, + ACTIONS(9258), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [199552] = 7, + [187008] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1945), 1, + anon_sym_DASH2, + STATE(5236), 1, + sym_comment, + ACTIONS(1947), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [187027] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(9422), 1, + anon_sym_DQUOTE, + ACTIONS(9426), 1, + aux_sym_path_token1, + ACTIONS(9428), 1, + sym_raw_string_begin, + STATE(1378), 1, + sym_val_string, + STATE(5237), 1, + sym_comment, + ACTIONS(9424), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1359), 2, + sym__raw_str, + sym__str_double_quotes, + [187054] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9430), 1, + anon_sym_QMARK2, + STATE(5238), 1, + sym_comment, + ACTIONS(966), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(9306), 1, + ACTIONS(964), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [187075] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9246), 1, sym_raw_string_begin, - ACTIONS(9632), 1, + ACTIONS(9432), 1, anon_sym_GT2, - STATE(5601), 1, + STATE(5239), 1, sym_comment, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9302), 4, + ACTIONS(9240), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [199577] = 8, + [187100] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(925), 1, + ACTIONS(4106), 1, + anon_sym_DQUOTE, + ACTIONS(4112), 1, + sym_raw_string_begin, + ACTIONS(9410), 1, + aux_sym_path_token1, + STATE(3807), 1, + sym_val_string, + STATE(5240), 1, + sym_comment, + ACTIONS(4108), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5384), 2, + sym__raw_str, + sym__str_double_quotes, + [187127] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9434), 1, + anon_sym_QMARK2, + STATE(5241), 1, + sym_comment, + ACTIONS(960), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(958), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [187148] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1863), 1, anon_sym_DASH2, - ACTIONS(9322), 1, + ACTIONS(9248), 1, anon_sym_DOT2, - STATE(4018), 1, + STATE(3842), 1, sym_path, - STATE(4524), 1, + STATE(4220), 1, sym_cell_path, - STATE(5602), 1, + STATE(5242), 1, sym_comment, - STATE(5659), 1, + STATE(5406), 1, aux_sym_cell_path_repeat1, - ACTIONS(927), 3, + ACTIONS(1865), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [199604] = 8, + [187175] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9634), 1, + ACTIONS(4106), 1, anon_sym_DQUOTE, - ACTIONS(9638), 1, + ACTIONS(4112), 1, + sym_raw_string_begin, + ACTIONS(9436), 1, aux_sym_path_token1, - ACTIONS(9640), 1, + STATE(5243), 1, + sym_comment, + STATE(6397), 1, + sym_val_string, + ACTIONS(4108), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5384), 2, + sym__raw_str, + sym__str_double_quotes, + [187202] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, sym_raw_string_begin, - STATE(1462), 1, + ACTIONS(9410), 1, + aux_sym_path_token1, + STATE(3807), 1, sym_val_string, - STATE(5603), 1, + STATE(5244), 1, sym_comment, - ACTIONS(9636), 2, + ACTIONS(1264), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1514), 2, + STATE(3602), 2, sym__raw_str, sym__str_double_quotes, - [199631] = 8, + [187229] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9642), 1, + ACTIONS(9438), 1, anon_sym_DQUOTE, - ACTIONS(9646), 1, + ACTIONS(9442), 1, aux_sym_path_token1, - ACTIONS(9648), 1, + ACTIONS(9444), 1, sym_raw_string_begin, - STATE(1257), 1, + STATE(2663), 1, sym_val_string, - STATE(5604), 1, + STATE(5245), 1, sym_comment, - ACTIONS(9644), 2, + ACTIONS(9440), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1248), 2, + STATE(2636), 2, sym__raw_str, sym__str_double_quotes, - [199658] = 4, - ACTIONS(3), 1, + [187256] = 8, + ACTIONS(245), 1, anon_sym_POUND, - STATE(5605), 1, + ACTIONS(9446), 1, + anon_sym_DQUOTE, + ACTIONS(9450), 1, + aux_sym_path_token1, + ACTIONS(9452), 1, + sym_raw_string_begin, + STATE(2837), 1, + sym_val_string, + STATE(5246), 1, sym_comment, - ACTIONS(1666), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1668), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [199677] = 7, - ACTIONS(3), 1, + ACTIONS(9448), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2878), 2, + sym__raw_str, + sym__str_double_quotes, + [187283] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9320), 1, + ACTIONS(9454), 1, + anon_sym_DQUOTE, + ACTIONS(9458), 1, + aux_sym_path_token1, + ACTIONS(9460), 1, sym_raw_string_begin, - ACTIONS(9650), 1, - anon_sym_GT2, - STATE(5606), 1, + STATE(523), 1, + sym_val_string, + STATE(5247), 1, sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9316), 4, - sym_identifier, - anon_sym_DQUOTE, + ACTIONS(9456), 2, sym__str_single_quotes, sym__str_back_ticks, - [199702] = 7, - ACTIONS(3), 1, + STATE(527), 2, + sym__raw_str, + sym__str_double_quotes, + [187310] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9312), 1, + ACTIONS(9462), 1, + anon_sym_DQUOTE, + ACTIONS(9466), 1, + aux_sym_path_token1, + ACTIONS(9468), 1, sym_raw_string_begin, - ACTIONS(9652), 1, - anon_sym_GT2, - STATE(5607), 1, + STATE(2570), 1, + sym_val_string, + STATE(5248), 1, sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9308), 4, - sym_identifier, - anon_sym_DQUOTE, + ACTIONS(9464), 2, sym__str_single_quotes, sym__str_back_ticks, - [199727] = 7, - ACTIONS(3), 1, + STATE(2580), 2, + sym__raw_str, + sym__str_double_quotes, + [187337] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9300), 1, + ACTIONS(9470), 1, + anon_sym_DQUOTE, + ACTIONS(9474), 1, + aux_sym_path_token1, + ACTIONS(9476), 1, sym_raw_string_begin, - ACTIONS(9654), 1, - anon_sym_GT2, - STATE(5608), 1, + STATE(2810), 1, + sym_val_string, + STATE(5249), 1, sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9294), 4, - sym_identifier, - anon_sym_DQUOTE, + ACTIONS(9472), 2, sym__str_single_quotes, sym__str_back_ticks, - [199752] = 7, - ACTIONS(3), 1, + STATE(2749), 2, + sym__raw_str, + sym__str_double_quotes, + [187364] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(9338), 1, + ACTIONS(9478), 1, + anon_sym_DQUOTE, + ACTIONS(9482), 1, + aux_sym_path_token1, + ACTIONS(9484), 1, sym_raw_string_begin, - ACTIONS(9656), 1, - anon_sym_GT2, - STATE(5609), 1, + STATE(148), 1, + sym_val_string, + STATE(5250), 1, sym_comment, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9334), 4, - sym_identifier, - anon_sym_DQUOTE, + ACTIONS(9480), 2, sym__str_single_quotes, sym__str_back_ticks, - [199777] = 8, + STATE(146), 2, + sym__raw_str, + sym__str_double_quotes, + [187391] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7082), 1, - aux_sym_unquoted_token2, - ACTIONS(9658), 1, - anon_sym_DOT_DOT2, - ACTIONS(9662), 1, - sym_filesize_unit, - ACTIONS(9664), 1, - sym_duration_unit, - STATE(5610), 1, + ACTIONS(9486), 1, + anon_sym_DQUOTE, + ACTIONS(9490), 1, + aux_sym_path_token1, + ACTIONS(9492), 1, + sym_raw_string_begin, + STATE(519), 1, + sym_val_string, + STATE(5251), 1, sym_comment, - ACTIONS(1591), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(9660), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [199804] = 5, - ACTIONS(3), 1, + ACTIONS(9488), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(481), 2, + sym__raw_str, + sym__str_double_quotes, + [187418] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9666), 1, - aux_sym__immediate_decimal_token2, - STATE(5611), 1, + ACTIONS(9494), 1, + anon_sym_DQUOTE, + ACTIONS(9498), 1, + aux_sym_path_token1, + ACTIONS(9500), 1, + sym_raw_string_begin, + STATE(400), 1, + sym_val_string, + STATE(5252), 1, sym_comment, - ACTIONS(1719), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1721), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [199825] = 5, - ACTIONS(3), 1, + ACTIONS(9496), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(422), 2, + sym__raw_str, + sym__str_double_quotes, + [187445] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2439), 1, + ACTIONS(9502), 1, + anon_sym_DQUOTE, + ACTIONS(9506), 1, + aux_sym_path_token1, + ACTIONS(9508), 1, sym_raw_string_begin, - ACTIONS(9668), 1, - sym__entry_separator, - STATE(5612), 2, + STATE(371), 1, + sym_val_string, + STATE(5253), 1, sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2434), 5, - sym_identifier, - anon_sym_GT2, - anon_sym_DQUOTE, + ACTIONS(9504), 2, sym__str_single_quotes, sym__str_back_ticks, - [199846] = 5, - ACTIONS(3), 1, + STATE(381), 2, + sym__raw_str, + sym__str_double_quotes, + [187472] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(5613), 1, + ACTIONS(1907), 1, + anon_sym_DASH2, + ACTIONS(9248), 1, + anon_sym_DOT2, + STATE(3842), 1, + sym_path, + STATE(4221), 1, + sym_cell_path, + STATE(5254), 1, sym_comment, - ACTIONS(2202), 2, + STATE(5406), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1909), 3, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH2, - ACTIONS(2204), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - [199867] = 7, + [187499] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9368), 1, + ACTIONS(9292), 1, sym_raw_string_begin, - ACTIONS(9671), 1, + ACTIONS(9510), 1, anon_sym_GT2, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - STATE(5614), 1, + STATE(5255), 1, sym_comment, - ACTIONS(9364), 4, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9288), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [199892] = 7, + [187524] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9368), 1, + ACTIONS(9272), 1, sym_raw_string_begin, - ACTIONS(9673), 1, + ACTIONS(9512), 1, anon_sym_GT2, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - STATE(5615), 1, + STATE(5256), 1, sym_comment, - ACTIONS(9364), 4, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9268), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [199917] = 7, + [187549] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9300), 1, + ACTIONS(9278), 1, sym_raw_string_begin, - ACTIONS(9675), 1, + ACTIONS(9514), 1, anon_sym_GT2, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - STATE(5616), 1, + STATE(5257), 1, sym_comment, - ACTIONS(9294), 4, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9274), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [199942] = 7, + [187574] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9338), 1, + ACTIONS(9246), 1, sym_raw_string_begin, - ACTIONS(9677), 1, + ACTIONS(9516), 1, anon_sym_GT2, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - STATE(5617), 1, + STATE(5258), 1, sym_comment, - ACTIONS(9334), 4, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9240), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [199967] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5618), 1, - sym_comment, - ACTIONS(1719), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1721), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [199986] = 7, + [187599] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9300), 1, + ACTIONS(9246), 1, sym_raw_string_begin, - ACTIONS(9679), 1, + ACTIONS(9518), 1, anon_sym_GT2, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - STATE(5619), 1, + STATE(5259), 1, sym_comment, - ACTIONS(9294), 4, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9240), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [200011] = 8, + [187624] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9681), 1, + ACTIONS(1262), 1, anon_sym_DQUOTE, - ACTIONS(9685), 1, - aux_sym_path_token1, - ACTIONS(9687), 1, + ACTIONS(1266), 1, sym_raw_string_begin, - STATE(5620), 1, - sym_comment, - STATE(6141), 1, + ACTIONS(9520), 1, + aux_sym_path_token1, + STATE(5095), 1, sym_val_string, - ACTIONS(9683), 2, + STATE(5260), 1, + sym_comment, + ACTIONS(1264), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6132), 2, + STATE(3602), 2, sym__raw_str, sym__str_double_quotes, - [200038] = 7, + [187651] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1871), 1, + anon_sym_DASH2, + ACTIONS(9248), 1, + anon_sym_DOT2, + STATE(3842), 1, + sym_path, + STATE(4222), 1, + sym_cell_path, + STATE(5261), 1, + sym_comment, + STATE(5406), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1873), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [187678] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + STATE(5262), 1, + sym_comment, + ACTIONS(1760), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1762), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(9320), 1, + [187697] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9272), 1, sym_raw_string_begin, - ACTIONS(9689), 1, + ACTIONS(9522), 1, anon_sym_GT2, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - STATE(5621), 1, + STATE(5263), 1, sym_comment, - ACTIONS(9316), 4, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9268), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [200063] = 7, + [187722] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1829), 1, + anon_sym_DASH2, + ACTIONS(9248), 1, + anon_sym_DOT2, + STATE(3842), 1, + sym_path, + STATE(4223), 1, + sym_cell_path, + STATE(5264), 1, + sym_comment, + STATE(5406), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1831), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [187749] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(978), 1, + anon_sym_DASH2, + STATE(5265), 1, + sym_comment, + ACTIONS(980), 7, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT2, + [187768] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9312), 1, + ACTIONS(9278), 1, sym_raw_string_begin, - ACTIONS(9691), 1, + ACTIONS(9524), 1, anon_sym_GT2, - STATE(5612), 1, - aux_sym__multiple_types_repeat1, - STATE(5622), 1, + STATE(5266), 1, sym_comment, - ACTIONS(9308), 4, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9274), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [200088] = 8, - ACTIONS(245), 1, + [187793] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9693), 1, + STATE(5267), 1, + sym_comment, + ACTIONS(1797), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1799), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [187812] = 8, + ACTIONS(109), 1, anon_sym_DQUOTE, - ACTIONS(9697), 1, - aux_sym_path_token1, - ACTIONS(9699), 1, + ACTIONS(121), 1, sym_raw_string_begin, - STATE(1619), 1, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(9526), 1, + aux_sym_path_token1, + STATE(1652), 1, sym_val_string, - STATE(5623), 1, + STATE(5268), 1, sym_comment, - ACTIONS(9695), 2, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1657), 2, + STATE(1532), 2, sym__raw_str, sym__str_double_quotes, - [200115] = 4, - ACTIONS(245), 1, + [187839] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(978), 1, - anon_sym_DASH2, - STATE(5624), 1, + ACTIONS(2403), 1, + sym_raw_string_begin, + ACTIONS(9528), 1, + sym__entry_separator, + STATE(5269), 2, 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_DOT2, - [200134] = 7, + aux_sym__multiple_types_repeat1, + ACTIONS(2398), 5, + sym_identifier, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [187860] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9320), 1, + ACTIONS(9272), 1, sym_raw_string_begin, - ACTIONS(9701), 1, + ACTIONS(9531), 1, anon_sym_GT2, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - STATE(5625), 1, + STATE(5270), 1, sym_comment, - ACTIONS(9316), 4, + ACTIONS(9268), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [200159] = 4, - ACTIONS(245), 1, + [187885] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(970), 1, - anon_sym_DASH2, - STATE(5626), 1, + ACTIONS(2106), 1, + aux_sym_unquoted_token4, + STATE(5271), 1, sym_comment, - ACTIONS(972), 7, + ACTIONS(998), 2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + ACTIONS(994), 5, sym__newline, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT2, - [200178] = 7, + [187906] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9306), 1, + ACTIONS(9312), 1, sym_raw_string_begin, - ACTIONS(9703), 1, + ACTIONS(9533), 1, anon_sym_GT2, - STATE(5612), 1, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - STATE(5627), 1, + STATE(5272), 1, sym_comment, - ACTIONS(9302), 4, + ACTIONS(9308), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [200203] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(978), 1, - anon_sym_DASH2, - STATE(5628), 1, - sym_comment, - ACTIONS(980), 7, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT2, - [200222] = 8, + [187931] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1786), 1, - sym__space, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - ACTIONS(9705), 1, - anon_sym_DOT_DOT2, - STATE(5629), 1, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(5273), 1, sym_comment, - ACTIONS(1778), 2, + ACTIONS(2068), 2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + ACTIONS(2072), 5, sym__newline, anon_sym_SEMI, - ACTIONS(9707), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [200249] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1841), 1, - sym__entry_separator, - ACTIONS(9008), 1, - anon_sym_DOT2, - STATE(5432), 1, - aux_sym_cell_path_repeat1, - STATE(5630), 1, - sym_comment, - STATE(5636), 1, - sym_path, - STATE(6873), 1, - sym_cell_path, - ACTIONS(1839), 2, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_RBRACE, - [200275] = 8, - ACTIONS(245), 1, + [187952] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9709), 1, + ACTIONS(3020), 1, anon_sym_DASH_DASH, - ACTIONS(9711), 1, + ACTIONS(3022), 1, anon_sym_DASH2, - ACTIONS(9713), 1, - anon_sym_LBRACE, - STATE(5631), 1, + ACTIONS(7832), 1, + sym__newline, + ACTIONS(7834), 1, + sym__space, + STATE(5274), 1, sym_comment, - STATE(6801), 1, - sym_val_record, - STATE(7452), 1, + STATE(5367), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(6813), 1, sym__flag, - STATE(5217), 2, + STATE(4417), 2, sym_short_flag, sym_long_flag, - [200301] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5080), 1, - anon_sym_DASH2, - ACTIONS(9715), 1, - anon_sym_EQ2, - STATE(5632), 1, - sym_comment, - ACTIONS(5078), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [200321] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(958), 1, - anon_sym_DASH2, - STATE(5633), 1, - sym_comment, - ACTIONS(960), 6, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - sym__table_head_separator, - anon_sym_DOT2, - [200339] = 4, + [187981] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(5634), 1, + STATE(5275), 1, sym_comment, - ACTIONS(1666), 2, + ACTIONS(1499), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1668), 5, + ACTIONS(1501), 6, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [200357] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2001), 1, - anon_sym_DASH2, - STATE(5635), 1, - sym_comment, - ACTIONS(2003), 6, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_as, - [200375] = 4, + sym_filesize_unit, + sym_duration_unit, + [188000] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5636), 1, - sym_comment, - ACTIONS(972), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(970), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [200393] = 8, - ACTIONS(3), 1, + ACTIONS(9292), 1, + sym_raw_string_begin, + ACTIONS(9535), 1, + anon_sym_GT2, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + STATE(5276), 1, + sym_comment, + ACTIONS(9288), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [188025] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1831), 1, - sym__entry_separator, - ACTIONS(9008), 1, - anon_sym_DOT2, - STATE(5432), 1, - aux_sym_cell_path_repeat1, - STATE(5636), 1, - sym_path, - STATE(5637), 1, + ACTIONS(9537), 1, + anon_sym_DQUOTE, + ACTIONS(9541), 1, + aux_sym_path_token1, + ACTIONS(9543), 1, + sym_raw_string_begin, + STATE(1300), 1, + sym_val_string, + STATE(5277), 1, sym_comment, - STATE(6980), 1, - sym_cell_path, - ACTIONS(1829), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [200419] = 4, + ACTIONS(9539), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1306), 2, + sym__raw_str, + sym__str_double_quotes, + [188052] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5638), 1, + ACTIONS(9135), 1, + aux_sym__immediate_decimal_token2, + STATE(5278), 1, sym_comment, - ACTIONS(1719), 3, + ACTIONS(1701), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1721), 4, + ACTIONS(1703), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [200437] = 8, + [188073] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1591), 1, - anon_sym_LBRACE, - ACTIONS(7082), 1, - aux_sym_unquoted_token2, - ACTIONS(9717), 1, - anon_sym_DOT_DOT2, - ACTIONS(9721), 1, - sym_filesize_unit, - ACTIONS(9723), 1, - sym_duration_unit, - STATE(5639), 1, + ACTIONS(1262), 1, + anon_sym_DQUOTE, + ACTIONS(1266), 1, + sym_raw_string_begin, + ACTIONS(9238), 1, + aux_sym_path_token1, + STATE(1324), 1, + sym_val_string, + STATE(5279), 1, sym_comment, - ACTIONS(9719), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [200463] = 5, + ACTIONS(1264), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3602), 2, + sym__raw_str, + sym__str_double_quotes, + [188100] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5062), 1, + ACTIONS(1616), 1, anon_sym_DASH2, - ACTIONS(9725), 1, - anon_sym_EQ2, - STATE(5640), 1, + ACTIONS(7012), 1, + aux_sym_unquoted_token2, + STATE(5280), 1, sym_comment, - ACTIONS(5060), 5, - ts_builtin_sym_end, + ACTIONS(1628), 6, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_DASH_DASH, - [200483] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1591), 1, - anon_sym_LBRACE, - ACTIONS(4673), 1, - anon_sym_DOT_DOT2, - ACTIONS(7082), 1, - aux_sym_unquoted_token2, - ACTIONS(9721), 1, - sym_filesize_unit, - ACTIONS(9723), 1, - sym_duration_unit, - STATE(5641), 1, - sym_comment, - ACTIONS(4675), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [200509] = 6, + anon_sym_RBRACE, + [188121] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9306), 1, + ACTIONS(9292), 1, sym_raw_string_begin, - STATE(5612), 1, + ACTIONS(9545), 1, + anon_sym_GT2, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - STATE(5642), 1, + STATE(5281), 1, sym_comment, - ACTIONS(9302), 4, + ACTIONS(9288), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [200531] = 4, + [188146] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(5643), 1, + ACTIONS(4850), 1, + anon_sym_DASH2, + ACTIONS(9547), 1, + sym_long_flag_identifier, + ACTIONS(9549), 1, + anon_sym_EQ2, + STATE(5282), 1, sym_comment, - ACTIONS(1492), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1494), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [200549] = 5, + ACTIONS(4848), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [188169] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9727), 1, - aux_sym__immediate_decimal_token2, - STATE(5644), 1, + STATE(5283), 1, sym_comment, - ACTIONS(1719), 2, + ACTIONS(1678), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1721), 4, + ACTIONS(1680), 6, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [200569] = 4, + sym_filesize_unit, + sym_duration_unit, + [188188] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(5645), 1, + STATE(5284), 1, sym_comment, - ACTIONS(1484), 2, + ACTIONS(1491), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1486), 5, - anon_sym_LBRACE, + ACTIONS(1493), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [200587] = 5, + [188207] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9729), 1, - anon_sym_LBRACK2, - STATE(5646), 1, + ACTIONS(9551), 1, + anon_sym_DASH_DASH, + ACTIONS(9554), 1, + anon_sym_DASH2, + STATE(5175), 1, + sym__flag, + ACTIONS(6261), 2, + sym_identifier, + anon_sym_DOLLAR, + STATE(4957), 2, + sym_short_flag, + sym_long_flag, + STATE(5285), 2, sym_comment, - ACTIONS(2290), 2, - anon_sym_LBRACK, + aux_sym_ctrl_do_repeat1, + [188232] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1833), 1, anon_sym_DASH2, - ACTIONS(2294), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(9248), 1, + anon_sym_DOT2, + STATE(3842), 1, + sym_path, + STATE(4215), 1, + sym_cell_path, + STATE(5286), 1, + sym_comment, + STATE(5406), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1835), 3, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - [200607] = 4, + [188259] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(5647), 1, + ACTIONS(9184), 1, + aux_sym__immediate_decimal_token2, + STATE(5287), 1, sym_comment, - ACTIONS(1790), 2, + ACTIONS(1701), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1792), 5, + ACTIONS(1703), 5, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [200625] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1897), 1, - sym__entry_separator, - ACTIONS(9008), 1, - anon_sym_DOT2, - STATE(5432), 1, - aux_sym_cell_path_repeat1, - STATE(5636), 1, - sym_path, - STATE(5648), 1, - sym_comment, - STATE(6867), 1, - sym_cell_path, - ACTIONS(1895), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [200651] = 4, - ACTIONS(3), 1, + [188280] = 8, + ACTIONS(245), 1, anon_sym_POUND, - STATE(5649), 1, + ACTIONS(9557), 1, + anon_sym_DQUOTE, + ACTIONS(9561), 1, + aux_sym_path_token1, + ACTIONS(9563), 1, + sym_raw_string_begin, + STATE(2464), 1, + sym_val_string, + STATE(5288), 1, sym_comment, - ACTIONS(976), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(974), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [200669] = 6, + ACTIONS(9559), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2445), 2, + sym__raw_str, + sym__str_double_quotes, + [188307] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9731), 1, + ACTIONS(9565), 1, aux_sym__immediate_decimal_token1, - ACTIONS(9733), 1, + ACTIONS(9567), 1, aux_sym__immediate_decimal_token2, - STATE(5650), 1, + STATE(5289), 1, sym_comment, - ACTIONS(1648), 2, + ACTIONS(1686), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1650), 3, - anon_sym_LBRACE, + ACTIONS(1688), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [200691] = 4, + [188330] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5651), 1, - sym_comment, - ACTIONS(1666), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1668), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(9244), 1, sym__entry_separator, - [200709] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - ACTIONS(9735), 1, - anon_sym_DOT_DOT2, - STATE(5652), 1, - sym_comment, - ACTIONS(9737), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [200731] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6460), 1, - anon_sym_DASH2, - STATE(5653), 1, - sym_comment, - ACTIONS(6458), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - [200749] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(954), 1, - anon_sym_DASH2, - STATE(5654), 1, - sym_comment, - ACTIONS(956), 6, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - sym__table_head_separator, - anon_sym_DOT2, - [200767] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(962), 1, - anon_sym_DASH2, - STATE(5655), 1, + ACTIONS(9312), 1, + sym_raw_string_begin, + ACTIONS(9569), 1, + anon_sym_GT2, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + STATE(5290), 1, sym_comment, - ACTIONS(964), 6, + ACTIONS(9308), 4, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - sym__table_head_separator, - anon_sym_DOT2, - [200785] = 8, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [188355] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1915), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9008), 1, - anon_sym_DOT2, - STATE(5432), 1, - aux_sym_cell_path_repeat1, - STATE(5636), 1, - sym_path, - STATE(5656), 1, + ACTIONS(9246), 1, + sym_raw_string_begin, + ACTIONS(9571), 1, + anon_sym_GT2, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + STATE(5291), 1, sym_comment, - STATE(6871), 1, - sym_cell_path, - ACTIONS(1913), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [200811] = 8, + ACTIONS(9240), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [188380] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1811), 1, - anon_sym_RBRACK, - ACTIONS(1813), 1, - anon_sym_LPAREN2, - ACTIONS(1819), 1, - sym__entry_separator, - ACTIONS(9739), 1, - anon_sym_DOT_DOT2, - STATE(5657), 1, - sym_comment, - ACTIONS(9741), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [200837] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2479), 1, - anon_sym_DASH2, - STATE(5658), 1, + STATE(5292), 1, sym_comment, - ACTIONS(2481), 6, - ts_builtin_sym_end, + ACTIONS(1760), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_as, - [200855] = 7, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1762), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [188399] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(931), 1, + ACTIONS(1879), 1, anon_sym_DASH2, - ACTIONS(9322), 1, + ACTIONS(9248), 1, anon_sym_DOT2, - STATE(4018), 1, + STATE(3842), 1, sym_path, - STATE(5659), 1, + STATE(4216), 1, + sym_cell_path, + STATE(5293), 1, sym_comment, - STATE(5660), 1, + STATE(5406), 1, aux_sym_cell_path_repeat1, - ACTIONS(933), 3, + ACTIONS(1881), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [200879] = 6, + [188426] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(935), 1, + ACTIONS(970), 1, anon_sym_DASH2, - ACTIONS(9743), 1, - anon_sym_DOT2, - STATE(4018), 1, - sym_path, - STATE(5660), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(937), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [200901] = 9, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_COLON2, - ACTIONS(9746), 1, - anon_sym_alias, - ACTIONS(9748), 1, - anon_sym_const, - ACTIONS(9750), 1, - anon_sym_def, - ACTIONS(9752), 1, - anon_sym_extern, - ACTIONS(9754), 1, - anon_sym_module, - ACTIONS(9756), 1, - anon_sym_use, - STATE(5661), 1, - sym_comment, - [200929] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(5662), 1, + STATE(5294), 1, sym_comment, - ACTIONS(2202), 2, - anon_sym_DASH_DASH, - anon_sym_DASH2, - ACTIONS(2204), 4, + ACTIONS(972), 7, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - [200949] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1929), 1, - sym__entry_separator, - ACTIONS(9008), 1, - anon_sym_DOT2, - STATE(5432), 1, - aux_sym_cell_path_repeat1, - STATE(5636), 1, - sym_path, - STATE(5663), 1, - sym_comment, - STATE(7126), 1, - sym_cell_path, - ACTIONS(1927), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [200975] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1947), 1, - sym__entry_separator, - ACTIONS(9008), 1, - anon_sym_DOT2, - STATE(5432), 1, - aux_sym_cell_path_repeat1, - STATE(5636), 1, - sym_path, - STATE(5664), 1, - sym_comment, - STATE(6874), 1, - sym_cell_path, - ACTIONS(1945), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [201001] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1845), 1, - sym__entry_separator, - ACTIONS(9008), 1, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_DOT2, - STATE(5432), 1, - aux_sym_cell_path_repeat1, - STATE(5636), 1, - sym_path, - STATE(5665), 1, - sym_comment, - STATE(6877), 1, - sym_cell_path, - ACTIONS(1843), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [201027] = 6, + [188445] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, ACTIONS(9312), 1, sym_raw_string_begin, - STATE(5612), 1, + ACTIONS(9573), 1, + anon_sym_GT2, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - STATE(5666), 1, + STATE(5295), 1, sym_comment, ACTIONS(9308), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [201049] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(5667), 1, - sym_comment, - ACTIONS(2089), 2, - anon_sym_DASH_DASH, - anon_sym_DASH2, - ACTIONS(2093), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - [201069] = 6, + [188470] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9320), 1, + ACTIONS(9246), 1, sym_raw_string_begin, - STATE(5612), 1, + ACTIONS(9575), 1, + anon_sym_GT2, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - STATE(5668), 1, + STATE(5296), 1, sym_comment, - ACTIONS(9316), 4, + ACTIONS(9240), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [201091] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1857), 1, - sym__entry_separator, - ACTIONS(9008), 1, - anon_sym_DOT2, - STATE(5432), 1, - aux_sym_cell_path_repeat1, - STATE(5636), 1, - sym_path, - STATE(5669), 1, - sym_comment, - STATE(6880), 1, - sym_cell_path, - ACTIONS(1855), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [201117] = 4, + [188495] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5670), 1, - sym_comment, - ACTIONS(1790), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1792), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(9244), 1, sym__entry_separator, - [201135] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9758), 1, - anon_sym_DOT2, - STATE(3892), 1, - sym_cell_path, - STATE(4018), 1, - sym_path, - STATE(4107), 1, - aux_sym_cell_path_repeat1, - STATE(5671), 1, + ACTIONS(9272), 1, + sym_raw_string_begin, + ACTIONS(9577), 1, + anon_sym_GT2, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + STATE(5297), 1, sym_comment, - ACTIONS(927), 3, - anon_sym_EQ, - sym__newline, - anon_sym_COLON, - [201159] = 6, + ACTIONS(9268), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [188520] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9338), 1, + ACTIONS(9312), 1, sym_raw_string_begin, - STATE(5612), 1, + ACTIONS(9579), 1, + anon_sym_GT2, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - STATE(5672), 1, + STATE(5298), 1, sym_comment, - ACTIONS(9334), 4, + ACTIONS(9308), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [201181] = 9, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3440), 1, - anon_sym_COLON2, - ACTIONS(9746), 1, - anon_sym_alias, - ACTIONS(9748), 1, - anon_sym_const, - ACTIONS(9750), 1, - anon_sym_def, - ACTIONS(9752), 1, - anon_sym_extern, - ACTIONS(9754), 1, - anon_sym_module, - ACTIONS(9756), 1, - anon_sym_use, - STATE(5673), 1, - sym_comment, - [201209] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9709), 1, - anon_sym_DASH_DASH, - ACTIONS(9711), 1, - anon_sym_DASH2, - ACTIONS(9760), 1, - anon_sym_LBRACE, - STATE(5674), 1, - sym_comment, - STATE(6713), 1, - sym_val_record, - STATE(7415), 1, - sym__flag, - STATE(5217), 2, - sym_short_flag, - sym_long_flag, - [201235] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(966), 1, - anon_sym_DASH2, - STATE(5675), 1, - sym_comment, - ACTIONS(968), 6, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - sym__table_head_separator, - anon_sym_DOT2, - [201253] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2469), 1, - anon_sym_DASH2, - STATE(5676), 1, - sym_comment, - ACTIONS(2471), 6, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_as, - [201271] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5677), 1, - sym_comment, - ACTIONS(1648), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1650), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [201289] = 4, + [188545] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2469), 1, + ACTIONS(925), 1, anon_sym_DASH2, - STATE(5678), 1, - sym_comment, - ACTIONS(2471), 6, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_as, - [201307] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1849), 1, - sym__entry_separator, - ACTIONS(9008), 1, - anon_sym_DOT2, - STATE(5432), 1, - aux_sym_cell_path_repeat1, - STATE(5636), 1, - sym_path, - STATE(5679), 1, - sym_comment, - STATE(7088), 1, - sym_cell_path, - ACTIONS(1847), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [201333] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5729), 1, + ACTIONS(9248), 1, anon_sym_DOT2, - STATE(5680), 1, - sym_comment, - STATE(5816), 1, - aux_sym_cell_path_repeat1, - STATE(6336), 1, + STATE(3842), 1, sym_path, - STATE(7083), 1, + STATE(4287), 1, sym_cell_path, - ACTIONS(1927), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [201357] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9614), 1, - aux_sym__immediate_decimal_token2, - STATE(5681), 1, + STATE(5299), 1, sym_comment, - ACTIONS(1666), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1668), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201377] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1881), 1, - sym__entry_separator, - ACTIONS(9008), 1, - anon_sym_DOT2, - STATE(5432), 1, + STATE(5406), 1, aux_sym_cell_path_repeat1, - STATE(5636), 1, - sym_path, - STATE(5682), 1, - sym_comment, - STATE(6866), 1, - sym_cell_path, - ACTIONS(1879), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [201403] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2475), 1, - anon_sym_DASH2, - STATE(5683), 1, - sym_comment, - ACTIONS(2477), 6, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(927), 3, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_as, - [201421] = 8, + [188572] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1837), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9008), 1, - anon_sym_DOT2, - STATE(5432), 1, - aux_sym_cell_path_repeat1, - STATE(5636), 1, - sym_path, - STATE(5684), 1, - sym_comment, - STATE(7085), 1, - sym_cell_path, - ACTIONS(1835), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [201447] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(5685), 1, - sym_comment, - ACTIONS(1719), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1721), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201465] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5686), 1, - sym_comment, - ACTIONS(2487), 2, + ACTIONS(9278), 1, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2485), 5, - sym_identifier, + ACTIONS(9581), 1, anon_sym_GT2, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + STATE(5300), 1, + sym_comment, + ACTIONS(9274), 4, + sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [201483] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1853), 1, - sym__entry_separator, - ACTIONS(9008), 1, - anon_sym_DOT2, - STATE(5432), 1, - aux_sym_cell_path_repeat1, - STATE(5636), 1, - sym_path, - STATE(5687), 1, - sym_comment, - STATE(6786), 1, - sym_cell_path, - ACTIONS(1851), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [201509] = 8, - ACTIONS(3), 1, + [188597] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1961), 1, - sym__entry_separator, - ACTIONS(9008), 1, + ACTIONS(1845), 1, + anon_sym_DASH2, + ACTIONS(9248), 1, anon_sym_DOT2, - STATE(5432), 1, - aux_sym_cell_path_repeat1, - STATE(5636), 1, + STATE(3842), 1, sym_path, - STATE(5688), 1, - sym_comment, - STATE(6826), 1, + STATE(4176), 1, sym_cell_path, - ACTIONS(1959), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [201535] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1778), 1, - anon_sym_RBRACE, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1786), 1, - sym__entry_separator, - ACTIONS(1788), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(9762), 1, - anon_sym_DOT_DOT2, - STATE(5689), 1, - sym_comment, - ACTIONS(9764), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201561] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1877), 1, - sym__entry_separator, - ACTIONS(9008), 1, - anon_sym_DOT2, - STATE(5432), 1, - aux_sym_cell_path_repeat1, - STATE(5636), 1, - sym_path, - STATE(5690), 1, + STATE(5301), 1, sym_comment, - STATE(6808), 1, - sym_cell_path, - ACTIONS(1875), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [201587] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1869), 1, - sym__entry_separator, - ACTIONS(9008), 1, - anon_sym_DOT2, - STATE(5432), 1, + STATE(5406), 1, aux_sym_cell_path_repeat1, - STATE(5636), 1, - sym_path, - STATE(5691), 1, - sym_comment, - STATE(7305), 1, - sym_cell_path, - ACTIONS(1867), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [201613] = 8, + ACTIONS(1847), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [188624] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1811), 1, - anon_sym_RBRACE, - ACTIONS(1813), 1, - anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9766), 1, - anon_sym_DOT_DOT2, - STATE(5692), 1, - sym_comment, - ACTIONS(9768), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201639] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(5693), 1, + ACTIONS(9262), 1, + sym_raw_string_begin, + ACTIONS(9583), 1, + anon_sym_GT2, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + STATE(5302), 1, sym_comment, - ACTIONS(1648), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1650), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201657] = 8, + ACTIONS(9258), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [188649] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1778), 1, - anon_sym_RBRACK, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1786), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(1788), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(9770), 1, - anon_sym_DOT_DOT2, - STATE(5694), 1, - sym_comment, - ACTIONS(9772), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201683] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2457), 1, - anon_sym_DASH2, - STATE(5695), 1, - sym_comment, - ACTIONS(2459), 6, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_as, - [201701] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5696), 1, - sym_comment, - ACTIONS(2045), 3, - anon_sym_DASH_DASH, - anon_sym_DASH2, - aux_sym_unquoted_token4, - ACTIONS(2047), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - [201719] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9774), 1, - sym__newline, - ACTIONS(9777), 1, - sym__space, - STATE(5697), 2, + ACTIONS(9292), 1, + sym_raw_string_begin, + ACTIONS(9585), 1, + anon_sym_GT2, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + STATE(5303), 1, sym_comment, - aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(3592), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_LBRACE, - [201739] = 8, + ACTIONS(9288), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [188674] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1885), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9008), 1, - anon_sym_DOT2, - STATE(5432), 1, - aux_sym_cell_path_repeat1, - STATE(5636), 1, - sym_path, - STATE(5698), 1, - sym_comment, - STATE(6915), 1, - sym_cell_path, - ACTIONS(1883), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [201765] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4772), 1, - anon_sym_DOT2, - STATE(1340), 1, - aux_sym_cell_path_repeat1, - STATE(1450), 1, - sym_path, - STATE(5699), 1, + ACTIONS(9262), 1, + sym_raw_string_begin, + ACTIONS(9587), 1, + anon_sym_GT2, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + STATE(5304), 1, sym_comment, - STATE(6963), 1, - sym_cell_path, - ACTIONS(5843), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [201789] = 8, + ACTIONS(9258), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [188699] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1893), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9008), 1, - anon_sym_DOT2, - STATE(5432), 1, - aux_sym_cell_path_repeat1, - STATE(5636), 1, - sym_path, - STATE(5700), 1, + ACTIONS(9312), 1, + sym_raw_string_begin, + ACTIONS(9589), 1, + anon_sym_GT2, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + STATE(5305), 1, sym_comment, - STATE(6916), 1, - sym_cell_path, - ACTIONS(1891), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [201815] = 8, + ACTIONS(9308), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [188724] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1925), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9008), 1, - anon_sym_DOT2, - STATE(5432), 1, - aux_sym_cell_path_repeat1, - STATE(5636), 1, - sym_path, - STATE(5701), 1, + ACTIONS(9246), 1, + sym_raw_string_begin, + ACTIONS(9591), 1, + anon_sym_GT2, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + STATE(5306), 1, sym_comment, - STATE(6917), 1, - sym_cell_path, - ACTIONS(1923), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [201841] = 6, + ACTIONS(9240), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [188749] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9780), 1, - anon_sym_DOT, - ACTIONS(9782), 1, - aux_sym__immediate_decimal_token2, - STATE(5702), 1, + STATE(5307), 1, sym_comment, - ACTIONS(1668), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1666), 3, + ACTIONS(1701), 4, sym__newline, anon_sym_SEMI, + anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [201863] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1861), 1, - sym__entry_separator, - ACTIONS(9008), 1, - anon_sym_DOT2, - STATE(5432), 1, - aux_sym_cell_path_repeat1, - STATE(5636), 1, - sym_path, - STATE(5703), 1, - sym_comment, - STATE(6789), 1, - sym_cell_path, - ACTIONS(1859), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [201889] = 8, + ACTIONS(1703), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [188768] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1933), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9008), 1, - anon_sym_DOT2, - STATE(5432), 1, - aux_sym_cell_path_repeat1, - STATE(5636), 1, - sym_path, - STATE(5704), 1, + ACTIONS(9312), 1, + sym_raw_string_begin, + ACTIONS(9593), 1, + anon_sym_GT2, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + STATE(5308), 1, sym_comment, - STATE(6920), 1, - sym_cell_path, - ACTIONS(1931), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [201915] = 6, + ACTIONS(9308), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [188793] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9368), 1, + ACTIONS(9246), 1, sym_raw_string_begin, - STATE(5612), 1, + ACTIONS(9595), 1, + anon_sym_GT2, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - STATE(5705), 1, + STATE(5309), 1, sym_comment, - ACTIONS(9364), 4, + ACTIONS(9240), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [201937] = 4, + [188818] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(5706), 1, + ACTIONS(4940), 1, + anon_sym_DASH2, + ACTIONS(9597), 1, + anon_sym_EQ2, + STATE(5310), 1, sym_comment, - ACTIONS(1538), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1540), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [201955] = 8, + ACTIONS(4938), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + [188839] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1579), 1, + STATE(5311), 1, + sym_comment, + ACTIONS(1701), 4, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(1591), 1, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1703), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(9784), 1, + [188858] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7012), 1, + aux_sym_unquoted_token2, + ACTIONS(9599), 1, anon_sym_DOT_DOT2, - ACTIONS(9788), 1, + ACTIONS(9603), 1, sym_filesize_unit, - ACTIONS(9790), 1, + ACTIONS(9605), 1, sym_duration_unit, - STATE(5707), 1, + STATE(5312), 1, sym_comment, - ACTIONS(9786), 2, + ACTIONS(1628), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(9601), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [201981] = 4, + [188885] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9792), 1, - sym__newline, - STATE(5708), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1286), 5, - sym_raw_string_begin, - sym_identifier, + ACTIONS(9607), 1, anon_sym_DQUOTE, + ACTIONS(9611), 1, + aux_sym_path_token1, + ACTIONS(9613), 1, + sym_raw_string_begin, + STATE(5313), 1, + sym_comment, + STATE(5882), 1, + sym_val_string, + ACTIONS(9609), 2, sym__str_single_quotes, sym__str_back_ticks, - [201999] = 6, + STATE(5784), 2, + sym__raw_str, + sym__str_double_quotes, + [188912] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(9795), 1, - anon_sym_DOT_DOT2, - STATE(5709), 1, + ACTIONS(9615), 1, + aux_sym__immediate_decimal_token2, + STATE(5314), 1, sym_comment, - ACTIONS(9797), 2, + ACTIONS(1579), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1581), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1819), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [202021] = 8, + sym_filesize_unit, + sym_duration_unit, + [188933] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1865), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9008), 1, - anon_sym_DOT2, - STATE(5432), 1, - aux_sym_cell_path_repeat1, - STATE(5636), 1, - sym_path, - STATE(5710), 1, + ACTIONS(9312), 1, + sym_raw_string_begin, + ACTIONS(9617), 1, + anon_sym_GT2, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + STATE(5315), 1, sym_comment, - STATE(6805), 1, - sym_cell_path, - ACTIONS(1863), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [202047] = 7, - ACTIONS(3), 1, + ACTIONS(9308), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [188958] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5729), 1, + ACTIONS(1883), 1, + anon_sym_DASH2, + ACTIONS(9248), 1, anon_sym_DOT2, - STATE(5711), 1, - sym_comment, - STATE(5816), 1, - aux_sym_cell_path_repeat1, - STATE(6336), 1, + STATE(3842), 1, sym_path, - STATE(7048), 1, + STATE(4059), 1, sym_cell_path, - ACTIONS(1839), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [202071] = 6, + STATE(5316), 1, + sym_comment, + STATE(5406), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1885), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [188985] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9300), 1, + ACTIONS(9246), 1, sym_raw_string_begin, - STATE(5612), 1, + ACTIONS(9619), 1, + anon_sym_GT2, + STATE(5269), 1, aux_sym__multiple_types_repeat1, - STATE(5712), 1, + STATE(5317), 1, sym_comment, - ACTIONS(9294), 4, + ACTIONS(9240), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [202093] = 3, + [189010] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(5713), 1, + ACTIONS(974), 1, + anon_sym_DASH2, + STATE(5318), 1, sym_comment, - ACTIONS(9799), 7, - anon_sym_EQ, + ACTIONS(976), 7, sym__newline, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RPAREN, - anon_sym_in2, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [202109] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4772), 1, + anon_sym_as, anon_sym_DOT2, - STATE(1340), 1, - aux_sym_cell_path_repeat1, - STATE(1450), 1, - sym_path, - STATE(5714), 1, - sym_comment, - STATE(6821), 1, - sym_cell_path, - ACTIONS(6006), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [202133] = 4, + [189029] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1711), 1, + ACTIONS(978), 1, anon_sym_DASH2, - STATE(5715), 1, - sym_comment, - ACTIONS(1713), 6, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_as, - [202151] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(5716), 1, + STATE(5319), 1, sym_comment, - ACTIONS(9801), 7, - anon_sym_EQ, + ACTIONS(980), 7, sym__newline, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RPAREN, - anon_sym_in2, - anon_sym_RBRACE, - [202167] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1937), 1, - sym__entry_separator, - ACTIONS(9008), 1, - anon_sym_DOT2, - STATE(5432), 1, - aux_sym_cell_path_repeat1, - STATE(5636), 1, - sym_path, - STATE(5717), 1, - sym_comment, - STATE(6973), 1, - sym_cell_path, - ACTIONS(1935), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [202193] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2200), 1, - aux_sym_unquoted_token4, - STATE(5718), 1, - sym_comment, - ACTIONS(2194), 2, - anon_sym_DASH_DASH, - anon_sym_DASH2, - ACTIONS(2198), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - [202213] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2192), 1, - aux_sym_unquoted_token4, - STATE(5719), 1, - sym_comment, - ACTIONS(998), 2, anon_sym_DASH_DASH, - anon_sym_DASH2, - ACTIONS(994), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - [202233] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1903), 1, - sym__entry_separator, - ACTIONS(9008), 1, - anon_sym_DOT2, - STATE(5432), 1, - aux_sym_cell_path_repeat1, - STATE(5636), 1, - sym_path, - STATE(5720), 1, - sym_comment, - STATE(7166), 1, - sym_cell_path, - ACTIONS(1901), 2, - anon_sym_RBRACK, anon_sym_RBRACE, - [202259] = 6, + anon_sym_as, + anon_sym_DOT2, + [189048] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9803), 1, - anon_sym_DOT, - ACTIONS(9805), 1, + ACTIONS(9208), 1, aux_sym__immediate_decimal_token2, - STATE(5721), 1, + STATE(5320), 1, sym_comment, - ACTIONS(1666), 2, + ACTIONS(1499), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1668), 3, + ACTIONS(1501), 5, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [202281] = 6, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [189069] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9807), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9809), 1, + ACTIONS(9621), 1, + anon_sym_DOT, + ACTIONS(9623), 1, aux_sym__immediate_decimal_token2, - STATE(5722), 1, + STATE(5321), 1, sym_comment, - ACTIONS(1650), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1648), 3, - sym__newline, - anon_sym_SEMI, + ACTIONS(1701), 2, + anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [202303] = 5, + ACTIONS(1703), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [189092] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1579), 1, + ACTIONS(1893), 1, anon_sym_DASH2, - ACTIONS(7128), 1, - aux_sym_unquoted_token2, - STATE(5723), 1, + ACTIONS(9248), 1, + anon_sym_DOT2, + STATE(3842), 1, + sym_path, + STATE(4163), 1, + sym_cell_path, + STATE(5322), 1, sym_comment, - ACTIONS(1591), 5, - ts_builtin_sym_end, + STATE(5406), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1895), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [189119] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1674), 1, + anon_sym_DASH2, + STATE(5323), 1, + sym_comment, + ACTIONS(1676), 7, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_DASH_DASH, - [202323] = 4, - ACTIONS(245), 1, + anon_sym_RBRACE, + anon_sym_as, + [189138] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5724), 1, + STATE(5324), 1, sym_comment, - ACTIONS(1715), 2, + ACTIONS(1686), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1717), 5, - anon_sym_LBRACE, + ACTIONS(1688), 4, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [202341] = 4, + [189157] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(982), 1, + ACTIONS(4908), 1, anon_sym_DASH2, - STATE(5725), 1, + ACTIONS(9625), 1, + anon_sym_EQ2, + STATE(5325), 1, sym_comment, - ACTIONS(984), 6, - ts_builtin_sym_end, + ACTIONS(4906), 6, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_as, - [202359] = 8, + anon_sym_RBRACE, + [189178] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1943), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9008), 1, - anon_sym_DOT2, - STATE(5432), 1, - aux_sym_cell_path_repeat1, - STATE(5636), 1, - sym_path, - STATE(5726), 1, + ACTIONS(9262), 1, + sym_raw_string_begin, + ACTIONS(9627), 1, + anon_sym_GT2, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + STATE(5326), 1, sym_comment, - STATE(7183), 1, - sym_cell_path, - ACTIONS(1941), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [202385] = 8, + ACTIONS(9258), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189203] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1907), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9008), 1, - anon_sym_DOT2, - STATE(5432), 1, - aux_sym_cell_path_repeat1, - STATE(5636), 1, - sym_path, - STATE(5727), 1, + ACTIONS(9262), 1, + sym_raw_string_begin, + ACTIONS(9629), 1, + anon_sym_GT2, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + STATE(5327), 1, sym_comment, - STATE(6804), 1, - sym_cell_path, - ACTIONS(1905), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [202411] = 4, - ACTIONS(245), 1, + ACTIONS(9258), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189228] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2300), 1, - anon_sym_DASH2, - STATE(5728), 1, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(5328), 1, sym_comment, - ACTIONS(2302), 6, - ts_builtin_sym_end, + ACTIONS(2128), 2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + ACTIONS(2130), 5, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_as, - [202429] = 8, - ACTIONS(245), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [189249] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(8708), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8710), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9811), 1, - anon_sym_DOT, - STATE(5729), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9312), 1, + sym_raw_string_begin, + ACTIONS(9631), 1, + anon_sym_GT2, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + STATE(5329), 1, sym_comment, - STATE(6763), 1, - sym__immediate_decimal, - ACTIONS(8706), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [202455] = 4, + ACTIONS(9308), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189274] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5730), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9246), 1, + sym_raw_string_begin, + ACTIONS(9633), 1, + anon_sym_GT2, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + STATE(5330), 1, sym_comment, - ACTIONS(980), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(9240), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189299] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(978), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [202473] = 5, - ACTIONS(245), 1, + ACTIONS(9292), 1, + sym_raw_string_begin, + ACTIONS(9635), 1, + anon_sym_GT2, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + STATE(5331), 1, + sym_comment, + ACTIONS(9288), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189324] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9813), 1, - anon_sym_DOT_DOT2, - STATE(5731), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9312), 1, + sym_raw_string_begin, + ACTIONS(9637), 1, + anon_sym_GT2, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + STATE(5332), 1, sym_comment, - ACTIONS(9815), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2023), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [202492] = 4, + ACTIONS(9308), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189349] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5189), 1, - anon_sym_DASH2, - STATE(5732), 1, + ACTIONS(3078), 1, + anon_sym_DQUOTE, + ACTIONS(3084), 1, + sym_raw_string_begin, + ACTIONS(9639), 1, + aux_sym_path_token1, + STATE(5241), 1, + sym_val_string, + STATE(5333), 1, sym_comment, - ACTIONS(5187), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [202509] = 4, - ACTIONS(245), 1, + ACTIONS(3080), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5052), 2, + sym__raw_str, + sym__str_double_quotes, + [189376] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5193), 1, - anon_sym_DASH2, - STATE(5733), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9246), 1, + sym_raw_string_begin, + ACTIONS(9641), 1, + anon_sym_GT2, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + STATE(5334), 1, sym_comment, - ACTIONS(5191), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [202526] = 4, + ACTIONS(9240), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189401] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(1867), 1, anon_sym_DASH2, - STATE(5734), 1, + ACTIONS(9248), 1, + anon_sym_DOT2, + STATE(3842), 1, + sym_path, + STATE(4168), 1, + sym_cell_path, + STATE(5335), 1, sym_comment, - ACTIONS(5690), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + STATE(5406), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1869), 3, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [202543] = 4, - ACTIONS(245), 1, + [189428] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5197), 1, - anon_sym_DASH2, - STATE(5735), 1, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + ACTIONS(1813), 1, + sym__space, + ACTIONS(9643), 1, + anon_sym_DOT_DOT2, + STATE(5336), 1, sym_comment, - ACTIONS(5195), 5, - ts_builtin_sym_end, + ACTIONS(1805), 2, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [202560] = 4, + ACTIONS(9645), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [189455] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5201), 1, + ACTIONS(9649), 1, anon_sym_DASH2, - STATE(5736), 1, + STATE(5337), 1, sym_comment, - ACTIONS(5199), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [202577] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - ACTIONS(9819), 1, + ACTIONS(9647), 7, + sym_identifier, + anon_sym_PIPE, anon_sym_RBRACK, - STATE(5737), 1, - sym_comment, - STATE(6113), 1, - aux_sym_shebang_repeat1, - STATE(6939), 1, - sym_val_list, - STATE(7147), 1, - aux_sym_val_table_repeat1, - [202602] = 8, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [189474] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1955), 1, - anon_sym_RBRACE, - ACTIONS(1957), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(9008), 1, - anon_sym_DOT2, - STATE(5432), 1, - aux_sym_cell_path_repeat1, - STATE(5636), 1, - sym_path, - STATE(5738), 1, + ACTIONS(9312), 1, + sym_raw_string_begin, + ACTIONS(9651), 1, + anon_sym_GT2, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + STATE(5338), 1, sym_comment, - STATE(7473), 1, - sym_cell_path, - [202627] = 8, + ACTIONS(9308), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189499] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6225), 1, - sym__entry_separator, - ACTIONS(9008), 1, - anon_sym_DOT2, - ACTIONS(9821), 1, - anon_sym_RBRACE, - STATE(5432), 1, - aux_sym_cell_path_repeat1, - STATE(5636), 1, - sym_path, - STATE(5739), 1, + STATE(5339), 1, sym_comment, - STATE(7183), 1, - sym_cell_path, - [202652] = 7, + ACTIONS(1686), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1688), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [189518] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(8838), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8840), 1, - aux_sym__immediate_decimal_token5, - STATE(5740), 1, + STATE(5340), 1, sym_comment, - STATE(7832), 1, - sym__immediate_decimal, - ACTIONS(8836), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [202675] = 4, + ACTIONS(1579), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1581), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [189537] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5672), 1, + ACTIONS(974), 1, anon_sym_DASH2, - STATE(5741), 1, + STATE(5341), 1, sym_comment, - ACTIONS(5674), 5, + ACTIONS(976), 7, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [202692] = 4, - ACTIONS(245), 1, + anon_sym_as, + anon_sym_DOT2, + [189556] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5676), 1, - anon_sym_DASH2, - STATE(5742), 1, + STATE(5342), 1, sym_comment, - ACTIONS(5678), 5, - ts_builtin_sym_end, + ACTIONS(1797), 4, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [202709] = 6, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1799), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [189575] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4875), 1, - anon_sym_DASH2, - ACTIONS(9824), 1, - sym_long_flag_identifier, - ACTIONS(9826), 1, - anon_sym_EQ2, - STATE(5743), 1, + STATE(5343), 1, sym_comment, - ACTIONS(4873), 3, - anon_sym_DOLLAR, + ACTIONS(1797), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1799), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [189593] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(9653), 1, anon_sym_DASH_DASH, + ACTIONS(9655), 1, + anon_sym_DASH2, + ACTIONS(9657), 1, anon_sym_LBRACE, - [202730] = 5, + STATE(5344), 1, + sym_comment, + STATE(6602), 1, + sym_val_record, + STATE(6853), 1, + sym__flag, + STATE(4957), 2, + sym_short_flag, + sym_long_flag, + [189619] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(5744), 1, + STATE(5345), 1, sym_comment, - STATE(6582), 1, - sym_block, - ACTIONS(9828), 4, + ACTIONS(9659), 7, + anon_sym_EQ, sym__newline, anon_sym_SEMI, + anon_sym_COLON, anon_sym_RPAREN, + anon_sym_in2, anon_sym_RBRACE, - [202749] = 8, + [189635] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7399), 1, - anon_sym_RBRACK, - ACTIONS(7401), 1, + ACTIONS(1835), 1, sym__entry_separator, - ACTIONS(9008), 1, + ACTIONS(8851), 1, anon_sym_DOT2, - STATE(5432), 1, + STATE(5081), 1, aux_sym_cell_path_repeat1, - STATE(5636), 1, - sym_path, - STATE(5745), 1, + STATE(5346), 1, sym_comment, - STATE(7430), 1, + STATE(5358), 1, + sym_path, + STATE(6554), 1, sym_cell_path, - [202774] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4881), 1, - anon_sym_DOLLAR, - ACTIONS(9830), 1, - anon_sym_EQ2, - ACTIONS(9832), 1, - sym_short_flag_identifier, - STATE(5746), 1, - sym_comment, - ACTIONS(4883), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [202795] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9834), 1, - anon_sym_LBRACE, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4967), 1, - sym_block, - STATE(4968), 1, - sym_val_closure, - STATE(5084), 1, - sym__blosure, - STATE(5747), 1, - sym_comment, - [202820] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9834), 1, - anon_sym_LBRACE, - STATE(4967), 1, - sym_block, - STATE(4968), 1, - sym_val_closure, - STATE(5084), 1, - sym__blosure, - STATE(5748), 1, - sym_comment, - STATE(5809), 1, - aux_sym_shebang_repeat1, - [202845] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9834), 1, - anon_sym_LBRACE, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4967), 1, - sym_block, - STATE(4968), 1, - sym_val_closure, - STATE(5100), 1, - sym__blosure, - STATE(5749), 1, - sym_comment, - [202870] = 8, - ACTIONS(245), 1, + ACTIONS(1833), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [189661] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9834), 1, - anon_sym_LBRACE, - STATE(4967), 1, - sym_block, - STATE(4968), 1, - sym_val_closure, - STATE(5100), 1, - sym__blosure, - STATE(5750), 1, + ACTIONS(1881), 1, + sym__entry_separator, + ACTIONS(8851), 1, + anon_sym_DOT2, + STATE(5081), 1, + aux_sym_cell_path_repeat1, + STATE(5347), 1, sym_comment, - STATE(5810), 1, - aux_sym_shebang_repeat1, - [202895] = 5, + STATE(5358), 1, + sym_path, + STATE(6558), 1, + sym_cell_path, + ACTIONS(1879), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [189687] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9805), 1, + ACTIONS(9661), 1, + anon_sym_DOT, + ACTIONS(9663), 1, aux_sym__immediate_decimal_token2, - STATE(5751), 1, + STATE(5348), 1, sym_comment, - ACTIONS(1666), 2, + ACTIONS(1701), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1668), 3, + ACTIONS(1703), 3, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [202914] = 6, + [189709] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2039), 1, + ACTIONS(1851), 1, sym__entry_separator, - ACTIONS(9836), 1, - anon_sym_DOT_DOT2, - STATE(5752), 1, + ACTIONS(8851), 1, + anon_sym_DOT2, + STATE(5081), 1, + aux_sym_cell_path_repeat1, + STATE(5349), 1, sym_comment, - ACTIONS(2033), 2, + STATE(5358), 1, + sym_path, + STATE(6569), 1, + sym_cell_path, + ACTIONS(1849), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(9838), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [202935] = 8, + [189735] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - ACTIONS(9840), 1, - anon_sym_RBRACK, - STATE(5753), 1, - sym_comment, - STATE(6014), 1, - aux_sym_shebang_repeat1, - STATE(6844), 1, - sym_val_list, - STATE(6891), 1, - aux_sym_val_table_repeat1, - [202960] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3638), 1, - sym__space, - STATE(5754), 1, - sym_comment, - ACTIONS(2180), 5, - sym__newline, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_LBRACE, - [202977] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5755), 1, + STATE(5350), 1, sym_comment, - ACTIONS(982), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1491), 2, anon_sym_DOT_DOT2, - ACTIONS(984), 3, + aux_sym_unquoted_token2, + ACTIONS(1493), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [202994] = 6, + sym_filesize_unit, + sym_duration_unit, + [189753] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1447), 1, + ACTIONS(1628), 1, + anon_sym_LBRACE, + ACTIONS(7012), 1, aux_sym_unquoted_token2, - ACTIONS(9842), 1, + ACTIONS(9665), 1, anon_sym_DOT_DOT2, - STATE(5756), 1, + ACTIONS(9669), 1, + sym_filesize_unit, + ACTIONS(9671), 1, + sym_duration_unit, + STATE(5351), 1, sym_comment, - ACTIONS(1819), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(9844), 2, + ACTIONS(9667), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [203015] = 5, + [189779] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(5757), 1, + ACTIONS(3342), 1, + anon_sym_COLON2, + ACTIONS(9673), 1, + anon_sym_alias, + ACTIONS(9675), 1, + anon_sym_const, + ACTIONS(9677), 1, + anon_sym_def, + ACTIONS(9679), 1, + anon_sym_extern, + ACTIONS(9681), 1, + anon_sym_module, + ACTIONS(9683), 1, + anon_sym_use, + STATE(5352), 1, sym_comment, - STATE(6247), 1, - sym_block, - ACTIONS(9846), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [203034] = 5, + [189807] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6315), 1, + ACTIONS(9653), 1, + anon_sym_DASH_DASH, + ACTIONS(9655), 1, + anon_sym_DASH2, + ACTIONS(9685), 1, anon_sym_LBRACE, - STATE(5758), 1, + STATE(5353), 1, sym_comment, - STATE(6266), 1, - sym_block, - ACTIONS(9848), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [203053] = 5, + STATE(6320), 1, + sym_val_record, + STATE(6962), 1, + sym__flag, + STATE(4957), 2, + sym_short_flag, + sym_long_flag, + [189833] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(5759), 1, + ACTIONS(9687), 1, + anon_sym_LBRACK2, + STATE(5354), 1, sym_comment, - STATE(6267), 1, - sym_block, - ACTIONS(9848), 4, + ACTIONS(2230), 2, + anon_sym_LBRACK, + anon_sym_DASH2, + ACTIONS(2234), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_DASH_DASH, + [189853] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1831), 1, + sym__entry_separator, + ACTIONS(8851), 1, + anon_sym_DOT2, + STATE(5081), 1, + aux_sym_cell_path_repeat1, + STATE(5355), 1, + sym_comment, + STATE(5358), 1, + sym_path, + STATE(6570), 1, + sym_cell_path, + ACTIONS(1829), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - [203072] = 4, - ACTIONS(245), 1, + [189879] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9850), 1, - anon_sym_LT, - STATE(5760), 1, + STATE(5356), 1, sym_comment, - ACTIONS(7894), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [203089] = 4, - ACTIONS(245), 1, + ACTIONS(1686), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1688), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [189897] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9852), 1, - anon_sym_LT, - STATE(5761), 1, + ACTIONS(1917), 1, + sym__entry_separator, + ACTIONS(8851), 1, + anon_sym_DOT2, + STATE(5081), 1, + aux_sym_cell_path_repeat1, + STATE(5357), 1, sym_comment, - ACTIONS(7894), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [203106] = 6, - ACTIONS(245), 1, + STATE(5358), 1, + sym_path, + STATE(6579), 1, + sym_cell_path, + ACTIONS(1915), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [189923] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - ACTIONS(9854), 1, - anon_sym_DOT_DOT2, - STATE(5762), 1, + STATE(5358), 1, sym_comment, - ACTIONS(1786), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(9856), 2, + ACTIONS(972), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [203127] = 6, + sym__entry_separator, + ACTIONS(970), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [189941] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(994), 1, - sym__entry_separator, - ACTIONS(9858), 1, - anon_sym_DOT_DOT2, - STATE(5763), 1, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(5359), 1, sym_comment, - ACTIONS(998), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9860), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [203148] = 7, + ACTIONS(2128), 2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + ACTIONS(2130), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + [189961] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - ACTIONS(8838), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8840), 1, - aux_sym__immediate_decimal_token5, - STATE(5764), 1, + STATE(5360), 1, sym_comment, - STATE(7900), 1, - sym__immediate_decimal, - ACTIONS(8836), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [203171] = 4, + ACTIONS(9689), 7, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_in2, + anon_sym_RBRACE, + [189977] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5765), 1, - sym_comment, - ACTIONS(1963), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1965), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(9244), 1, sym__entry_separator, - [203188] = 4, + ACTIONS(9312), 1, + sym_raw_string_begin, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + STATE(5361), 1, + sym_comment, + ACTIONS(9308), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189999] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6460), 1, + ACTIONS(6436), 1, anon_sym_DASH2, - STATE(5766), 1, + STATE(5362), 1, sym_comment, - ACTIONS(6458), 5, - ts_builtin_sym_end, + ACTIONS(6434), 6, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_DASH_DASH, - [203205] = 6, + anon_sym_RBRACE, + [190017] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1648), 1, - aux_sym_unquoted_token2, - ACTIONS(9862), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9864), 1, - aux_sym__immediate_decimal_token2, - STATE(5767), 1, + ACTIONS(4722), 1, + anon_sym_DOT2, + STATE(1284), 1, + aux_sym_cell_path_repeat1, + STATE(1374), 1, + sym_path, + STATE(5363), 1, sym_comment, - ACTIONS(1650), 3, + STATE(6702), 1, + sym_cell_path, + ACTIONS(5910), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [203226] = 6, + [190041] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7484), 1, - sym__space, - ACTIONS(9866), 1, - anon_sym_DOT_DOT2, - STATE(5768), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9262), 1, + sym_raw_string_begin, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + STATE(5364), 1, sym_comment, - ACTIONS(7482), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(9868), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [203247] = 8, - ACTIONS(245), 1, + ACTIONS(9258), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190063] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9750), 1, - anon_sym_def, - ACTIONS(9752), 1, - anon_sym_extern, - ACTIONS(9754), 1, - anon_sym_module, - ACTIONS(9756), 1, - anon_sym_use, - ACTIONS(9870), 1, - anon_sym_alias, - ACTIONS(9872), 1, - anon_sym_const, - STATE(5769), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9292), 1, + sym_raw_string_begin, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + STATE(5365), 1, sym_comment, - [203272] = 8, + ACTIONS(9288), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190085] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9834), 1, - anon_sym_LBRACE, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4967), 1, - sym_block, - STATE(4968), 1, - sym_val_closure, - STATE(5070), 1, - sym__blosure, - STATE(5770), 1, + STATE(5366), 1, sym_comment, - [203297] = 8, - ACTIONS(245), 1, + ACTIONS(1579), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1581), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [190103] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(9691), 1, sym__newline, - ACTIONS(9834), 1, + ACTIONS(9694), 1, + sym__space, + STATE(5367), 2, + sym_comment, + aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(3536), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, anon_sym_LBRACE, - STATE(4967), 1, - sym_block, - STATE(4968), 1, - sym_val_closure, - STATE(5070), 1, - sym__blosure, - STATE(5747), 1, - aux_sym_shebang_repeat1, - STATE(5771), 1, + [190123] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9697), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9699), 1, + aux_sym__immediate_decimal_token2, + STATE(5368), 1, sym_comment, - [203322] = 8, + ACTIONS(1688), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1686), 3, + sym__newline, + anon_sym_SEMI, + aux_sym_unquoted_token2, + [190145] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9834), 1, - anon_sym_LBRACE, - STATE(4967), 1, - sym_block, - STATE(4968), 1, - sym_val_closure, - STATE(5072), 1, - sym__blosure, - STATE(5749), 1, - aux_sym_shebang_repeat1, - STATE(5772), 1, + STATE(5369), 1, sym_comment, - [203347] = 7, + ACTIONS(1760), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1762), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [190163] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9874), 1, - anon_sym_LPAREN, - ACTIONS(9878), 1, - anon_sym_DQUOTE2, - STATE(5773), 1, + STATE(5370), 1, sym_comment, - STATE(5777), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6307), 1, - sym_expr_interpolated, - ACTIONS(9876), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [203370] = 8, + ACTIONS(2431), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2429), 5, + sym_identifier, + anon_sym_GT2, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190181] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8706), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8894), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8896), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8898), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9880), 1, - aux_sym_unquoted_token3, - STATE(5774), 1, + ACTIONS(1447), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1805), 1, + anon_sym_RBRACE, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + ACTIONS(1813), 1, + sym__entry_separator, + ACTIONS(9701), 1, + anon_sym_DOT_DOT2, + STATE(5371), 1, sym_comment, - STATE(6427), 1, - sym__immediate_decimal, - [203395] = 8, + ACTIONS(9703), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [190207] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8836), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8912), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8914), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8916), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9880), 1, - aux_sym_unquoted_token3, - STATE(5775), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9272), 1, + sym_raw_string_begin, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + STATE(5372), 1, sym_comment, - STATE(7666), 1, - sym__immediate_decimal, - [203420] = 6, - ACTIONS(245), 1, + ACTIONS(9268), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190229] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4673), 1, - anon_sym_DOT_DOT2, - ACTIONS(9880), 1, - aux_sym_unquoted_token2, - STATE(5776), 1, + STATE(5373), 1, sym_comment, - ACTIONS(4675), 2, + ACTIONS(1760), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1762), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(9882), 2, - sym_filesize_unit, - sym_duration_unit, - [203441] = 7, + sym__entry_separator, + [190247] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9874), 1, - anon_sym_LPAREN, - ACTIONS(9884), 1, - anon_sym_DQUOTE2, - STATE(5777), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9278), 1, + sym_raw_string_begin, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + STATE(5374), 1, sym_comment, - STATE(5950), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6307), 1, - sym_expr_interpolated, - ACTIONS(9876), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [203464] = 8, + ACTIONS(9274), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190269] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7414), 1, - anon_sym_RBRACK, - ACTIONS(7416), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(9246), 1, + sym_raw_string_begin, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, + STATE(5375), 1, + sym_comment, + ACTIONS(9240), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190291] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1825), 1, sym__entry_separator, - ACTIONS(9008), 1, + ACTIONS(8851), 1, anon_sym_DOT2, - STATE(5432), 1, + STATE(5081), 1, aux_sym_cell_path_repeat1, - STATE(5636), 1, + STATE(5358), 1, sym_path, - STATE(5778), 1, + STATE(5376), 1, sym_comment, - STATE(7424), 1, + STATE(6501), 1, sym_cell_path, - [203489] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - ACTIONS(9886), 1, + ACTIONS(1823), 2, anon_sym_RBRACK, - STATE(5779), 1, - sym_comment, - STATE(6146), 1, - aux_sym_shebang_repeat1, - STATE(7211), 1, - aux_sym_val_table_repeat1, - STATE(7231), 1, - sym_val_list, - [203514] = 6, + anon_sym_RBRACE, + [190317] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9888), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9890), 1, - aux_sym__immediate_decimal_token2, - STATE(5780), 1, + STATE(5377), 1, sym_comment, - ACTIONS(1648), 2, + ACTIONS(1701), 3, anon_sym_RBRACE, + anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1650), 2, + ACTIONS(1703), 4, anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - [203535] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - ACTIONS(9892), 1, - anon_sym_RBRACK, - STATE(5781), 1, - sym_comment, - STATE(6147), 1, - aux_sym_shebang_repeat1, - STATE(6969), 1, - sym_val_list, - STATE(7214), 1, - aux_sym_val_table_repeat1, - [203560] = 6, + [190335] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2015), 1, - sym__entry_separator, - ACTIONS(9894), 1, - anon_sym_DOT_DOT2, - STATE(5782), 1, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(5378), 1, sym_comment, - ACTIONS(2009), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9896), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [203581] = 4, + ACTIONS(2068), 2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + ACTIONS(2072), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + [190355] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(998), 1, + ACTIONS(2290), 1, anon_sym_DASH2, - STATE(5783), 1, + STATE(5379), 1, sym_comment, - ACTIONS(994), 5, + ACTIONS(2292), 6, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [203598] = 6, + anon_sym_as, + [190373] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2023), 1, + ACTIONS(1865), 1, sym__entry_separator, - ACTIONS(9898), 1, - anon_sym_DOT_DOT2, - STATE(5784), 1, + ACTIONS(8851), 1, + anon_sym_DOT2, + STATE(5081), 1, + aux_sym_cell_path_repeat1, + STATE(5358), 1, + sym_path, + STATE(5380), 1, sym_comment, - ACTIONS(2017), 2, + STATE(6449), 1, + sym_cell_path, + ACTIONS(1863), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(9900), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [203619] = 6, + [190399] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2031), 1, + ACTIONS(1909), 1, sym__entry_separator, - ACTIONS(9902), 1, - anon_sym_DOT_DOT2, - STATE(5785), 1, + ACTIONS(8851), 1, + anon_sym_DOT2, + STATE(5081), 1, + aux_sym_cell_path_repeat1, + STATE(5358), 1, + sym_path, + STATE(5381), 1, sym_comment, - ACTIONS(2025), 2, + STATE(6452), 1, + sym_cell_path, + ACTIONS(1907), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(9904), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [203640] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2198), 1, - anon_sym_LBRACE, - ACTIONS(2200), 1, - aux_sym_unquoted_token4, - STATE(5786), 1, - sym_comment, - ACTIONS(2194), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [203659] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(994), 1, - anon_sym_LBRACE, - ACTIONS(2192), 1, - aux_sym_unquoted_token4, - STATE(5787), 1, - sym_comment, - ACTIONS(998), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [203678] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(5788), 1, - sym_comment, - STATE(6319), 1, - sym_block, - ACTIONS(9906), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [203697] = 5, + [190425] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(5789), 1, + ACTIONS(2294), 1, + anon_sym_DASH2, + STATE(5382), 1, sym_comment, - STATE(6320), 1, - sym_block, - ACTIONS(9906), 4, + ACTIONS(2296), 6, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [203716] = 6, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_as, + [190443] = 9, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1666), 1, - aux_sym_unquoted_token2, - ACTIONS(9908), 1, - anon_sym_DOT, - ACTIONS(9910), 1, - aux_sym__immediate_decimal_token2, - STATE(5790), 1, + ACTIONS(3408), 1, + anon_sym_COLON2, + ACTIONS(9673), 1, + anon_sym_alias, + ACTIONS(9675), 1, + anon_sym_const, + ACTIONS(9677), 1, + anon_sym_def, + ACTIONS(9679), 1, + anon_sym_extern, + ACTIONS(9681), 1, + anon_sym_module, + ACTIONS(9683), 1, + anon_sym_use, + STATE(5383), 1, sym_comment, - ACTIONS(1668), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [203737] = 8, + [190471] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9912), 1, - sym__newline, - ACTIONS(9914), 1, - anon_sym_SEMI, - ACTIONS(9916), 1, - anon_sym_RPAREN, - STATE(277), 1, - aux_sym__parenthesized_body_repeat1, - STATE(5791), 1, - sym_comment, - STATE(6436), 1, - aux_sym__block_body_repeat1, - STATE(7165), 1, - aux_sym_shebang_repeat1, - [203762] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - ACTIONS(2204), 1, - anon_sym_LBRACE, - STATE(5792), 1, - sym_comment, - ACTIONS(2202), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(950), 1, anon_sym_DASH2, - [203781] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2093), 1, - anon_sym_LBRACE, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(5793), 1, + STATE(5384), 1, sym_comment, - ACTIONS(2089), 4, + ACTIONS(952), 6, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH2, - [203800] = 6, + anon_sym_QMARK2, + sym__table_head_separator, + anon_sym_DOT2, + [190489] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9918), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9920), 1, - aux_sym__immediate_decimal_token2, - STATE(5794), 1, + STATE(5385), 1, sym_comment, - ACTIONS(1648), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1650), 2, + ACTIONS(1797), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1799), 4, anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - [203821] = 4, + [190507] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1959), 1, + ACTIONS(942), 1, anon_sym_DASH2, - STATE(5795), 1, + STATE(5386), 1, sym_comment, - ACTIONS(1961), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(944), 6, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - [203838] = 4, + anon_sym_QMARK2, + sym__table_head_separator, + anon_sym_DOT2, + [190525] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2370), 1, + ACTIONS(954), 1, anon_sym_DASH2, - STATE(5796), 1, + STATE(5387), 1, sym_comment, - ACTIONS(2372), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(956), 6, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - [203855] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - ACTIONS(9922), 1, - anon_sym_RBRACK, - STATE(5797), 1, - sym_comment, - STATE(6217), 1, - aux_sym_shebang_repeat1, - STATE(7221), 1, - sym_val_list, - STATE(7228), 1, - aux_sym_val_table_repeat1, - [203880] = 7, + anon_sym_QMARK2, + sym__table_head_separator, + anon_sym_DOT2, + [190543] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9874), 1, - anon_sym_LPAREN, - ACTIONS(9924), 1, - anon_sym_DQUOTE2, - STATE(5798), 1, + ACTIONS(1847), 1, + sym__entry_separator, + ACTIONS(8851), 1, + anon_sym_DOT2, + STATE(5081), 1, + aux_sym_cell_path_repeat1, + STATE(5358), 1, + sym_path, + STATE(5388), 1, sym_comment, - STATE(5808), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6307), 1, - sym_expr_interpolated, - ACTIONS(9876), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [203903] = 8, - ACTIONS(245), 1, + STATE(6741), 1, + sym_cell_path, + ACTIONS(1845), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [190569] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(593), 1, - anon_sym_RPAREN, - ACTIONS(9912), 1, - sym__newline, - ACTIONS(9914), 1, - anon_sym_SEMI, - STATE(277), 1, - aux_sym__parenthesized_body_repeat1, - STATE(5799), 1, + ACTIONS(5724), 1, + anon_sym_DOT2, + STATE(5389), 1, sym_comment, - STATE(6720), 1, - aux_sym__block_body_repeat1, - STATE(7165), 1, - aux_sym_shebang_repeat1, - [203928] = 4, + STATE(5626), 1, + aux_sym_cell_path_repeat1, + STATE(5901), 1, + sym_path, + STATE(6473), 1, + sym_cell_path, + ACTIONS(1845), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [190593] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2374), 1, + ACTIONS(946), 1, anon_sym_DASH2, - STATE(5800), 1, + STATE(5390), 1, sym_comment, - ACTIONS(2376), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(948), 6, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - [203945] = 4, + anon_sym_QMARK2, + sym__table_head_separator, + anon_sym_DOT2, + [190611] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2378), 1, - anon_sym_DASH2, - STATE(5801), 1, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(8516), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8518), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9705), 1, + anon_sym_DOT, + STATE(5391), 1, sym_comment, - ACTIONS(2380), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [203962] = 4, + STATE(5917), 1, + sym__immediate_decimal, + ACTIONS(8514), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [190637] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5392), 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_DOT2, + [190655] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2382), 1, + ACTIONS(4908), 1, anon_sym_DASH2, - STATE(5802), 1, + ACTIONS(9707), 1, + anon_sym_EQ2, + STATE(5393), 1, sym_comment, - ACTIONS(2384), 5, + ACTIONS(4906), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [203979] = 4, + [190675] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2392), 1, + ACTIONS(1616), 1, anon_sym_DASH2, - STATE(5803), 1, + ACTIONS(7062), 1, + aux_sym_unquoted_token2, + STATE(5394), 1, sym_comment, - ACTIONS(2394), 5, + ACTIONS(1628), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [203996] = 6, + [190695] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9926), 1, - anon_sym_DOT, - ACTIONS(9928), 1, - aux_sym__immediate_decimal_token2, - STATE(5804), 1, + ACTIONS(5724), 1, + anon_sym_DOT2, + STATE(5395), 1, sym_comment, - ACTIONS(1666), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1668), 2, - anon_sym_LPAREN2, + STATE(5626), 1, + aux_sym_cell_path_repeat1, + STATE(5901), 1, + sym_path, + STATE(6573), 1, + sym_cell_path, + ACTIONS(1883), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [190719] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1895), 1, sym__entry_separator, - [204017] = 8, + ACTIONS(8851), 1, + anon_sym_DOT2, + STATE(5081), 1, + aux_sym_cell_path_repeat1, + STATE(5358), 1, + sym_path, + STATE(5396), 1, + sym_comment, + STATE(6580), 1, + sym_cell_path, + ACTIONS(1893), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [190745] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9834), 1, - anon_sym_LBRACE, - STATE(4967), 1, - sym_block, - STATE(4968), 1, - sym_val_closure, - STATE(5033), 1, - sym__blosure, - STATE(5770), 1, - aux_sym_shebang_repeat1, - STATE(5805), 1, + STATE(5397), 1, sym_comment, - [204042] = 4, + ACTIONS(1701), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [190763] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(5806), 1, + ACTIONS(1873), 1, + sym__entry_separator, + ACTIONS(8851), 1, + anon_sym_DOT2, + STATE(5081), 1, + aux_sym_cell_path_repeat1, + STATE(5358), 1, + sym_path, + STATE(5398), 1, sym_comment, - ACTIONS(1967), 3, + STATE(6462), 1, + sym_cell_path, + ACTIONS(1871), 2, anon_sym_RBRACK, anon_sym_RBRACE, + [190789] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(9709), 1, anon_sym_DOT_DOT2, - ACTIONS(1969), 3, + STATE(5399), 1, + sym_comment, + ACTIONS(9711), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [204059] = 5, + ACTIONS(1813), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [190811] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9930), 1, + ACTIONS(9623), 1, aux_sym__immediate_decimal_token2, - STATE(5807), 1, + STATE(5400), 1, sym_comment, - ACTIONS(1719), 2, + ACTIONS(1701), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1721), 3, - anon_sym_LBRACE, + ACTIONS(1703), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [204078] = 7, + [190831] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9874), 1, - anon_sym_LPAREN, - ACTIONS(9932), 1, - anon_sym_DQUOTE2, - STATE(5808), 1, + ACTIONS(1885), 1, + sym__entry_separator, + ACTIONS(8851), 1, + anon_sym_DOT2, + STATE(5081), 1, + aux_sym_cell_path_repeat1, + STATE(5358), 1, + sym_path, + STATE(5401), 1, sym_comment, - STATE(5950), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6307), 1, - sym_expr_interpolated, - ACTIONS(9876), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [204101] = 8, + STATE(6528), 1, + sym_cell_path, + ACTIONS(1883), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [190857] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9834), 1, - anon_sym_LBRACE, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4967), 1, - sym_block, - STATE(4968), 1, - sym_val_closure, - STATE(5022), 1, - sym__blosure, - STATE(5809), 1, + ACTIONS(9713), 1, + aux_sym__immediate_decimal_token2, + STATE(5402), 1, sym_comment, - [204126] = 8, - ACTIONS(245), 1, + ACTIONS(1760), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1762), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [190877] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9834), 1, - anon_sym_LBRACE, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4967), 1, - sym_block, - STATE(4968), 1, - sym_val_closure, - STATE(5120), 1, - sym__blosure, - STATE(5810), 1, + ACTIONS(1869), 1, + sym__entry_separator, + ACTIONS(8851), 1, + anon_sym_DOT2, + STATE(5081), 1, + aux_sym_cell_path_repeat1, + STATE(5358), 1, + sym_path, + STATE(5403), 1, sym_comment, - [204151] = 8, - ACTIONS(245), 1, + STATE(6673), 1, + sym_cell_path, + ACTIONS(1867), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [190903] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9834), 1, - anon_sym_LBRACE, - STATE(4967), 1, - sym_block, - STATE(4968), 1, - sym_val_closure, - STATE(5120), 1, - sym__blosure, - STATE(5811), 1, + ACTIONS(2106), 1, + aux_sym_unquoted_token4, + STATE(5404), 1, sym_comment, - STATE(5949), 1, - aux_sym_shebang_repeat1, - [204176] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1927), 1, + ACTIONS(998), 2, + anon_sym_DASH_DASH, anon_sym_DASH2, - STATE(5812), 1, - sym_comment, - ACTIONS(1929), 5, + ACTIONS(994), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DASH_DASH, - [204193] = 6, - ACTIONS(3), 1, + [190923] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(994), 1, - sym__space, - ACTIONS(9866), 1, - anon_sym_DOT_DOT2, - STATE(5813), 1, + ACTIONS(9715), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9717), 1, + aux_sym__immediate_decimal_token2, + STATE(5405), 1, sym_comment, - ACTIONS(998), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(9868), 2, + ACTIONS(1686), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1688), 3, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [204214] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9934), 1, - anon_sym_DOT, - ACTIONS(9936), 1, - aux_sym__immediate_decimal_token2, - STATE(5814), 1, - sym_comment, - ACTIONS(1666), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1668), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [204235] = 8, - ACTIONS(3), 1, + [190945] = 7, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1871), 1, - anon_sym_RBRACE, - ACTIONS(1873), 1, - sym__entry_separator, - ACTIONS(9008), 1, + ACTIONS(938), 1, + anon_sym_DASH2, + ACTIONS(9248), 1, anon_sym_DOT2, - STATE(5432), 1, - aux_sym_cell_path_repeat1, - STATE(5636), 1, + STATE(3842), 1, sym_path, - STATE(5815), 1, + STATE(5406), 1, sym_comment, - STATE(7502), 1, - sym_cell_path, - [204260] = 6, - ACTIONS(3), 1, + STATE(5407), 1, + aux_sym_cell_path_repeat1, + ACTIONS(940), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [190969] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5729), 1, + ACTIONS(931), 1, + anon_sym_DASH2, + ACTIONS(9719), 1, anon_sym_DOT2, - STATE(5816), 1, + STATE(3842), 1, + sym_path, + STATE(5407), 2, sym_comment, - STATE(5829), 1, aux_sym_cell_path_repeat1, - STATE(6336), 1, - sym_path, - ACTIONS(931), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [204281] = 4, + ACTIONS(933), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [190991] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(5408), 1, + sym_comment, + ACTIONS(1499), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1501), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [191009] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(9722), 1, + sym__newline, + STATE(5409), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1274), 5, + sym_raw_string_begin, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [191027] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2398), 1, + ACTIONS(4940), 1, anon_sym_DASH2, - STATE(5817), 1, + ACTIONS(9725), 1, + anon_sym_EQ2, + STATE(5410), 1, sym_comment, - ACTIONS(2400), 5, + ACTIONS(4938), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [204298] = 7, + [191047] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9874), 1, - anon_sym_LPAREN, - ACTIONS(9938), 1, - anon_sym_DQUOTE2, - STATE(5818), 1, - sym_comment, - STATE(5823), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6307), 1, - sym_expr_interpolated, - ACTIONS(9876), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [204321] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9940), 1, - anon_sym_EQ2, - ACTIONS(9942), 1, - sym_short_flag_identifier, - STATE(5819), 1, + STATE(5411), 1, sym_comment, - ACTIONS(4881), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - ACTIONS(4883), 2, + ACTIONS(2076), 3, anon_sym_DASH_DASH, anon_sym_DASH2, - [204342] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7082), 1, - aux_sym_unquoted_token3, - ACTIONS(8706), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8894), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8896), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8898), 1, - aux_sym__immediate_decimal_token5, - STATE(5820), 1, - sym_comment, - STATE(6427), 1, - sym__immediate_decimal, - [204367] = 8, + aux_sym_unquoted_token4, + ACTIONS(2078), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + [191065] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7082), 1, - aux_sym_unquoted_token3, - ACTIONS(8836), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8912), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8914), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8916), 1, - aux_sym__immediate_decimal_token5, - STATE(5821), 1, - sym_comment, - STATE(7666), 1, - sym__immediate_decimal, - [204392] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4673), 1, + ACTIONS(1782), 1, + anon_sym_RBRACE, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1790), 1, + sym__entry_separator, + ACTIONS(1792), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(9727), 1, anon_sym_DOT_DOT2, - ACTIONS(7082), 1, - aux_sym_unquoted_token2, - STATE(5822), 1, + STATE(5412), 1, sym_comment, - ACTIONS(4675), 2, + ACTIONS(9729), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(9882), 2, - sym_filesize_unit, - sym_duration_unit, - [204413] = 7, + [191091] = 7, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(9731), 1, + anon_sym_DOT2, + STATE(3696), 1, + sym_cell_path, + STATE(3842), 1, + sym_path, + STATE(3903), 1, + aux_sym_cell_path_repeat1, + STATE(5413), 1, + sym_comment, + ACTIONS(927), 3, + anon_sym_EQ, + sym__newline, + anon_sym_COLON, + [191115] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9874), 1, - anon_sym_LPAREN, - ACTIONS(9944), 1, - anon_sym_DQUOTE2, - STATE(5823), 1, + ACTIONS(1877), 1, + sym__entry_separator, + ACTIONS(8851), 1, + anon_sym_DOT2, + STATE(5081), 1, + aux_sym_cell_path_repeat1, + STATE(5358), 1, + sym_path, + STATE(5414), 1, sym_comment, - STATE(5950), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6307), 1, - sym_expr_interpolated, - ACTIONS(9876), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [204436] = 8, - ACTIONS(245), 1, + STATE(6498), 1, + sym_cell_path, + ACTIONS(1875), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [191141] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - ACTIONS(9946), 1, + ACTIONS(1447), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1805), 1, anon_sym_RBRACK, - STATE(5824), 1, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + ACTIONS(1813), 1, + sym__entry_separator, + ACTIONS(9733), 1, + anon_sym_DOT_DOT2, + STATE(5415), 1, sym_comment, - STATE(6169), 1, - aux_sym_shebang_repeat1, - STATE(7061), 1, - sym_val_list, - STATE(7244), 1, - aux_sym_val_table_repeat1, - [204461] = 8, + ACTIONS(9735), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [191167] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - ACTIONS(9948), 1, - anon_sym_RBRACK, - STATE(5825), 1, + STATE(5416), 1, sym_comment, - STATE(6170), 1, - aux_sym_shebang_repeat1, - STATE(7067), 1, - sym_val_list, - STATE(7247), 1, - aux_sym_val_table_repeat1, - [204486] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2015), 1, - sym__space, - ACTIONS(9950), 1, + ACTIONS(1678), 2, anon_sym_DOT_DOT2, - STATE(5826), 1, - sym_comment, - ACTIONS(2009), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(9952), 2, + aux_sym_unquoted_token2, + ACTIONS(1680), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [204507] = 6, + sym_filesize_unit, + sym_duration_unit, + [191185] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2023), 1, - sym__space, - ACTIONS(9954), 1, + ACTIONS(1782), 1, + anon_sym_RBRACK, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1790), 1, + sym__entry_separator, + ACTIONS(1792), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(9737), 1, anon_sym_DOT_DOT2, - STATE(5827), 1, + STATE(5417), 1, sym_comment, - ACTIONS(2017), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(9956), 2, + ACTIONS(9739), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [204528] = 6, - ACTIONS(3), 1, + [191211] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2031), 1, - sym__space, - ACTIONS(9958), 1, - anon_sym_DOT_DOT2, - STATE(5828), 1, + ACTIONS(982), 1, + anon_sym_DASH2, + STATE(5418), 1, sym_comment, - ACTIONS(2025), 2, + ACTIONS(984), 6, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - ACTIONS(9960), 2, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_as, + [191229] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(5419), 1, + sym_comment, + ACTIONS(1686), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1688), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [204549] = 5, + [191247] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9962), 1, + ACTIONS(1843), 1, + sym__entry_separator, + ACTIONS(8851), 1, anon_sym_DOT2, - STATE(6336), 1, + STATE(5081), 1, + aux_sym_cell_path_repeat1, + STATE(5358), 1, sym_path, - STATE(5829), 2, + STATE(5420), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(935), 3, + STATE(6636), 1, + sym_cell_path, + ACTIONS(1841), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [204568] = 8, + anon_sym_RBRACE, + [191273] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9965), 1, - anon_sym_alias, - ACTIONS(9967), 1, - anon_sym_const, - ACTIONS(9969), 1, - anon_sym_def, - ACTIONS(9971), 1, - anon_sym_extern, - ACTIONS(9973), 1, - anon_sym_module, - ACTIONS(9975), 1, - anon_sym_use, - STATE(5830), 1, - sym_comment, - [204593] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9874), 1, - anon_sym_LPAREN, - ACTIONS(9977), 1, - anon_sym_DQUOTE2, - STATE(5831), 1, - sym_comment, - STATE(5834), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6307), 1, - sym_expr_interpolated, - ACTIONS(9876), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [204616] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5605), 1, - aux_sym_unquoted_token3, - ACTIONS(8706), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8894), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8896), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8898), 1, - aux_sym__immediate_decimal_token5, - STATE(5832), 1, + ACTIONS(4722), 1, + anon_sym_DOT2, + STATE(1284), 1, + aux_sym_cell_path_repeat1, + STATE(1374), 1, + sym_path, + STATE(5421), 1, sym_comment, - STATE(6427), 1, - sym__immediate_decimal, - [204641] = 8, + STATE(6510), 1, + sym_cell_path, + ACTIONS(5787), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [191297] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5605), 1, - aux_sym_unquoted_token3, - ACTIONS(8836), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8912), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8914), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8916), 1, - aux_sym__immediate_decimal_token5, - STATE(5833), 1, + ACTIONS(1925), 1, + sym__entry_separator, + ACTIONS(8851), 1, + anon_sym_DOT2, + STATE(5081), 1, + aux_sym_cell_path_repeat1, + STATE(5358), 1, + sym_path, + STATE(5422), 1, sym_comment, - STATE(7666), 1, - sym__immediate_decimal, - [204666] = 7, - ACTIONS(3), 1, + STATE(6651), 1, + sym_cell_path, + ACTIONS(1923), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [191323] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9874), 1, - anon_sym_LPAREN, - ACTIONS(9979), 1, - anon_sym_DQUOTE2, - STATE(5834), 1, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + ACTIONS(9741), 1, + anon_sym_DOT_DOT2, + STATE(5423), 1, sym_comment, - STATE(5950), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6307), 1, - sym_expr_interpolated, - ACTIONS(9876), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [204689] = 8, + ACTIONS(9743), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1790), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [191345] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(1945), 1, + anon_sym_DASH2, + STATE(5424), 1, + sym_comment, + ACTIONS(1947), 6, + ts_builtin_sym_end, sym__newline, - ACTIONS(9817), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(9981), 1, - anon_sym_RBRACK, - STATE(5835), 1, - sym_comment, - STATE(6175), 1, - aux_sym_shebang_repeat1, - STATE(7191), 1, - sym_val_list, - STATE(7254), 1, - aux_sym_val_table_repeat1, - [204714] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2047), 1, - anon_sym_LBRACE, - STATE(5836), 1, - sym_comment, - ACTIONS(2045), 5, - sym_identifier, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH2, - aux_sym_unquoted_token4, - [204731] = 8, + anon_sym_as, + [191363] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(2278), 1, + anon_sym_DASH2, + STATE(5425), 1, + sym_comment, + ACTIONS(2280), 6, + ts_builtin_sym_end, sym__newline, - ACTIONS(9817), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(9983), 1, - anon_sym_RBRACK, - STATE(5837), 1, - sym_comment, - STATE(6176), 1, - aux_sym_shebang_repeat1, - STATE(7210), 1, - sym_val_list, - STATE(7256), 1, - aux_sym_val_table_repeat1, - [204756] = 4, + anon_sym_DASH_DASH, + anon_sym_as, + [191381] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1579), 1, + ACTIONS(2278), 1, anon_sym_DASH2, - STATE(5838), 1, + STATE(5426), 1, sym_comment, - ACTIONS(1591), 5, + ACTIONS(2280), 6, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [204773] = 7, + anon_sym_as, + [191399] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9874), 1, - anon_sym_LPAREN, - ACTIONS(9985), 1, - anon_sym_DQUOTE2, - STATE(5839), 1, + ACTIONS(9745), 1, + anon_sym_DOT, + ACTIONS(9747), 1, + aux_sym__immediate_decimal_token2, + STATE(5427), 1, sym_comment, - STATE(5843), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6307), 1, - sym_expr_interpolated, - ACTIONS(9876), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [204796] = 4, + ACTIONS(1703), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1701), 3, + sym__newline, + anon_sym_SEMI, + aux_sym_unquoted_token2, + [191421] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1616), 1, + anon_sym_RBRACE, + ACTIONS(1628), 1, + sym__entry_separator, + ACTIONS(9749), 1, + anon_sym_DOT_DOT2, + ACTIONS(9753), 1, + sym_filesize_unit, + ACTIONS(9755), 1, + sym_duration_unit, + STATE(5428), 1, + sym_comment, + ACTIONS(9751), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [191447] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2406), 1, + ACTIONS(1674), 1, anon_sym_DASH2, - STATE(5840), 1, + STATE(5429), 1, sym_comment, - ACTIONS(2408), 5, + ACTIONS(1676), 6, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [204813] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8706), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8894), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8896), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8898), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9061), 1, - aux_sym_unquoted_token3, - STATE(5841), 1, - sym_comment, - STATE(6427), 1, - sym__immediate_decimal, - [204838] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8836), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8912), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8914), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8916), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9061), 1, - aux_sym_unquoted_token3, - STATE(5842), 1, - sym_comment, - STATE(7666), 1, - sym__immediate_decimal, - [204863] = 7, + anon_sym_as, + [191465] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9874), 1, - anon_sym_LPAREN, - ACTIONS(9987), 1, - anon_sym_DQUOTE2, - STATE(5843), 1, + ACTIONS(2168), 1, + aux_sym_unquoted_token4, + STATE(5430), 1, sym_comment, - STATE(5950), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6307), 1, - sym_expr_interpolated, - ACTIONS(9876), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [204886] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(2162), 2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + ACTIONS(2166), 4, + ts_builtin_sym_end, sym__newline, - ACTIONS(9817), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(9989), 1, - anon_sym_RBRACK, - STATE(5844), 1, - sym_comment, - STATE(6178), 1, - aux_sym_shebang_repeat1, - STATE(6787), 1, - sym_val_list, - STATE(7260), 1, - aux_sym_val_table_repeat1, - [204911] = 4, + [191485] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2410), 1, + ACTIONS(2282), 1, anon_sym_DASH2, - STATE(5845), 1, + STATE(5431), 1, sym_comment, - ACTIONS(2412), 5, + ACTIONS(2284), 6, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [204928] = 8, + anon_sym_as, + [191503] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - ACTIONS(9991), 1, - anon_sym_RBRACK, - STATE(5846), 1, - sym_comment, - STATE(6179), 1, - aux_sym_shebang_repeat1, - STATE(6792), 1, - sym_val_list, - STATE(7262), 1, - aux_sym_val_table_repeat1, - [204953] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9782), 1, - aux_sym__immediate_decimal_token2, - STATE(5847), 1, + ACTIONS(2286), 1, + anon_sym_DASH2, + STATE(5432), 1, sym_comment, - ACTIONS(1668), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1666), 3, + ACTIONS(2288), 6, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - aux_sym_unquoted_token2, - [204972] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9874), 1, - anon_sym_LPAREN, - ACTIONS(9993), 1, - anon_sym_DQUOTE2, - STATE(5848), 1, - sym_comment, - STATE(5851), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6307), 1, - sym_expr_interpolated, - ACTIONS(9876), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [204995] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4691), 1, - aux_sym_unquoted_token3, - ACTIONS(8706), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8894), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8896), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8898), 1, - aux_sym__immediate_decimal_token5, - STATE(5849), 1, - sym_comment, - STATE(6427), 1, - sym__immediate_decimal, - [205020] = 8, - ACTIONS(3), 1, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_as, + [191521] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4691), 1, - aux_sym_unquoted_token3, - ACTIONS(8836), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8912), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8914), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8916), 1, - aux_sym__immediate_decimal_token5, - STATE(5850), 1, + ACTIONS(1628), 1, + anon_sym_LBRACE, + ACTIONS(4581), 1, + anon_sym_DOT_DOT2, + ACTIONS(7012), 1, + aux_sym_unquoted_token2, + ACTIONS(9669), 1, + sym_filesize_unit, + ACTIONS(9671), 1, + sym_duration_unit, + STATE(5433), 1, sym_comment, - STATE(7666), 1, - sym__immediate_decimal, - [205045] = 7, + ACTIONS(4583), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [191547] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9874), 1, - anon_sym_LPAREN, - ACTIONS(9995), 1, - anon_sym_DQUOTE2, - STATE(5851), 1, + STATE(5434), 1, sym_comment, - STATE(5950), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6307), 1, - sym_expr_interpolated, - ACTIONS(9876), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [205068] = 8, - ACTIONS(3), 1, + ACTIONS(976), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(974), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [191565] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8706), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8894), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8896), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8898), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9997), 1, - aux_sym_unquoted_token3, - STATE(5852), 1, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(5435), 1, sym_comment, - STATE(6427), 1, - sym__immediate_decimal, - [205093] = 8, + STATE(6107), 1, + sym_block, + ACTIONS(9757), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [191584] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - ACTIONS(9999), 1, - anon_sym_RBRACK, - STATE(5853), 1, - sym_comment, - STATE(6182), 1, + ACTIONS(9759), 1, + anon_sym_LBRACE, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(6819), 1, - sym_val_list, - STATE(7267), 1, - aux_sym_val_table_repeat1, - [205118] = 8, - ACTIONS(245), 1, + STATE(4693), 1, + sym_block, + STATE(4694), 1, + sym_val_closure, + STATE(4717), 1, + sym__blosure, + STATE(5436), 1, + sym_comment, + [191609] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - ACTIONS(10001), 1, - anon_sym_RBRACK, - STATE(5854), 1, + ACTIONS(6181), 1, + sym__entry_separator, + ACTIONS(8851), 1, + anon_sym_DOT2, + ACTIONS(9761), 1, + anon_sym_RBRACE, + STATE(5081), 1, + aux_sym_cell_path_repeat1, + STATE(5358), 1, + sym_path, + STATE(5437), 1, sym_comment, - STATE(6183), 1, - aux_sym_shebang_repeat1, - STATE(6824), 1, - sym_val_list, - STATE(7270), 1, - aux_sym_val_table_repeat1, - [205143] = 8, + STATE(6579), 1, + sym_cell_path, + [191634] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9912), 1, - sym__newline, - ACTIONS(9914), 1, - anon_sym_SEMI, - ACTIONS(10003), 1, - anon_sym_RPAREN, - STATE(277), 1, - aux_sym__parenthesized_body_repeat1, - STATE(5855), 1, + STATE(5438), 1, sym_comment, - STATE(6471), 1, - aux_sym__block_body_repeat1, - STATE(7165), 1, - aux_sym_shebang_repeat1, - [205168] = 7, + ACTIONS(1285), 6, + sym_raw_string_begin, + sym_identifier, + sym__newline, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [191649] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9874), 1, + ACTIONS(9764), 1, anon_sym_LPAREN, - ACTIONS(10005), 1, + ACTIONS(9768), 1, anon_sym_DQUOTE2, - STATE(5856), 1, + STATE(5439), 1, sym_comment, - STATE(5967), 1, + STATE(5441), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6307), 1, + STATE(6301), 1, sym_expr_interpolated, - ACTIONS(9876), 2, + ACTIONS(9766), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [205191] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6223), 1, - aux_sym_unquoted_token3, - ACTIONS(8706), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8894), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8896), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8898), 1, - aux_sym__immediate_decimal_token5, - STATE(5857), 1, - sym_comment, - STATE(6427), 1, - sym__immediate_decimal, - [205216] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6223), 1, - aux_sym_unquoted_token3, - ACTIONS(8836), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8912), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8914), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8916), 1, - aux_sym__immediate_decimal_token5, - STATE(5858), 1, - sym_comment, - STATE(7666), 1, - sym__immediate_decimal, - [205241] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - ACTIONS(10007), 1, - anon_sym_RBRACK, - STATE(5859), 1, - sym_comment, - STATE(6107), 1, - aux_sym_shebang_repeat1, - STATE(7143), 1, - aux_sym_val_table_repeat1, - STATE(7180), 1, - sym_val_list, - [205266] = 8, + [191672] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - ACTIONS(10009), 1, - anon_sym_RBRACK, - STATE(5860), 1, - sym_comment, - STATE(6184), 1, - aux_sym_shebang_repeat1, - STATE(6850), 1, - sym_val_list, - STATE(7274), 1, - aux_sym_val_table_repeat1, - [205291] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - ACTIONS(10011), 1, + ACTIONS(9772), 1, anon_sym_RBRACK, - STATE(5861), 1, + STATE(5440), 1, sym_comment, - STATE(6185), 1, + STATE(5873), 1, aux_sym_shebang_repeat1, - STATE(6855), 1, + STATE(6541), 1, sym_val_list, - STATE(7277), 1, + STATE(6778), 1, aux_sym_val_table_repeat1, - [205316] = 7, + [191697] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9874), 1, + ACTIONS(9764), 1, anon_sym_LPAREN, - ACTIONS(10013), 1, + ACTIONS(9774), 1, anon_sym_DQUOTE2, - STATE(5862), 1, + STATE(5441), 1, sym_comment, - STATE(5865), 1, + STATE(5606), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6307), 1, + STATE(6301), 1, sym_expr_interpolated, - ACTIONS(9876), 2, + ACTIONS(9766), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [205339] = 8, + [191720] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7221), 1, + ACTIONS(4678), 1, aux_sym_unquoted_token3, - ACTIONS(8706), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8894), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8896), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8898), 1, - aux_sym__immediate_decimal_token5, - STATE(5863), 1, - sym_comment, - STATE(6427), 1, - sym__immediate_decimal, - [205364] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7221), 1, - aux_sym_unquoted_token3, - ACTIONS(8836), 1, + ACTIONS(8514), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8912), 1, + ACTIONS(8857), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8914), 1, + ACTIONS(8859), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8916), 1, + ACTIONS(8861), 1, aux_sym__immediate_decimal_token5, - STATE(5864), 1, + STATE(5442), 1, sym_comment, - STATE(7666), 1, + STATE(5919), 1, sym__immediate_decimal, - [205389] = 7, - ACTIONS(3), 1, + [191745] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9874), 1, - anon_sym_LPAREN, - ACTIONS(10015), 1, - anon_sym_DQUOTE2, - STATE(5865), 1, + ACTIONS(3342), 1, + anon_sym_COLON2, + ACTIONS(8772), 1, + sym_identifier, + ACTIONS(9776), 1, + anon_sym_DOLLAR, + STATE(5360), 1, + sym_val_variable, + STATE(5443), 1, sym_comment, - STATE(5950), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6307), 1, - sym_expr_interpolated, - ACTIONS(9876), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [205412] = 4, + STATE(5776), 1, + sym__variable_name, + STATE(5900), 1, + sym__assignment_pattern, + [191770] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2414), 1, + ACTIONS(998), 1, anon_sym_DASH2, - STATE(5866), 1, + STATE(5444), 1, sym_comment, - ACTIONS(2416), 5, + ACTIONS(994), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [205429] = 8, - ACTIONS(245), 1, + [191787] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - ACTIONS(10017), 1, - anon_sym_RBRACK, - STATE(5867), 1, + ACTIONS(9764), 1, + anon_sym_LPAREN, + ACTIONS(9778), 1, + anon_sym_DQUOTE2, + STATE(5445), 1, sym_comment, - STATE(5968), 1, - aux_sym_shebang_repeat1, - STATE(6881), 1, - sym_val_list, - STATE(7283), 1, - aux_sym_val_table_repeat1, - [205454] = 8, + STATE(5447), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6301), 1, + sym_expr_interpolated, + ACTIONS(9766), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [191810] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - ACTIONS(10019), 1, + ACTIONS(9780), 1, anon_sym_RBRACK, - STATE(5868), 1, + STATE(5446), 1, sym_comment, - STATE(6187), 1, + STATE(5874), 1, aux_sym_shebang_repeat1, - STATE(6885), 1, + STATE(6552), 1, sym_val_list, - STATE(7285), 1, + STATE(6780), 1, aux_sym_val_table_repeat1, - [205479] = 7, + [191835] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9874), 1, + ACTIONS(9764), 1, anon_sym_LPAREN, - ACTIONS(10021), 1, + ACTIONS(9782), 1, anon_sym_DQUOTE2, - STATE(5869), 1, + STATE(5447), 1, sym_comment, - STATE(5872), 1, + STATE(5606), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6307), 1, + STATE(6301), 1, sym_expr_interpolated, - ACTIONS(9876), 2, + ACTIONS(9766), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [205502] = 8, - ACTIONS(3), 1, + [191858] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7156), 1, - aux_sym_unquoted_token3, - ACTIONS(8706), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8894), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8896), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8898), 1, - aux_sym__immediate_decimal_token5, - STATE(5870), 1, + ACTIONS(3342), 1, + anon_sym_COLON2, + ACTIONS(8772), 1, + sym_identifier, + ACTIONS(9776), 1, + anon_sym_DOLLAR, + STATE(5360), 1, + sym_val_variable, + STATE(5448), 1, sym_comment, - STATE(6427), 1, - sym__immediate_decimal, - [205527] = 8, - ACTIONS(3), 1, + STATE(5776), 1, + sym__variable_name, + STATE(6271), 1, + sym__assignment_pattern, + [191883] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7156), 1, - aux_sym_unquoted_token3, - ACTIONS(8836), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8912), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8914), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8916), 1, - aux_sym__immediate_decimal_token5, - STATE(5871), 1, + ACTIONS(3342), 1, + anon_sym_COLON2, + ACTIONS(8772), 1, + sym_identifier, + ACTIONS(9776), 1, + anon_sym_DOLLAR, + STATE(5360), 1, + sym_val_variable, + STATE(5449), 1, sym_comment, - STATE(7666), 1, - sym__immediate_decimal, - [205552] = 7, + STATE(5776), 1, + sym__variable_name, + STATE(6272), 1, + sym__assignment_pattern, + [191908] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9874), 1, + ACTIONS(9764), 1, anon_sym_LPAREN, - ACTIONS(10023), 1, + ACTIONS(9784), 1, anon_sym_DQUOTE2, - STATE(5872), 1, + STATE(5450), 1, sym_comment, - STATE(5950), 1, + STATE(5453), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6307), 1, + STATE(6301), 1, sym_expr_interpolated, - ACTIONS(9876), 2, + ACTIONS(9766), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [205575] = 8, + [191931] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - ACTIONS(10025), 1, + ACTIONS(9786), 1, anon_sym_RBRACK, - STATE(5873), 1, - sym_comment, - STATE(6189), 1, - aux_sym_shebang_repeat1, - STATE(6902), 1, - sym_val_list, - STATE(7291), 1, - aux_sym_val_table_repeat1, - [205600] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10027), 1, - aux_sym__immediate_decimal_token2, - STATE(5874), 1, + STATE(5451), 1, sym_comment, - ACTIONS(1721), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1719), 3, - sym__newline, - anon_sym_SEMI, - aux_sym_unquoted_token2, - [205619] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - ACTIONS(10029), 1, - anon_sym_RBRACK, STATE(5875), 1, - sym_comment, - STATE(6190), 1, aux_sym_shebang_repeat1, - STATE(6907), 1, + STATE(6563), 1, sym_val_list, - STATE(7293), 1, + STATE(6783), 1, aux_sym_val_table_repeat1, - [205644] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2418), 1, - anon_sym_DASH2, - STATE(5876), 1, - sym_comment, - ACTIONS(2420), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [205661] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9874), 1, - anon_sym_LPAREN, - ACTIONS(10031), 1, - anon_sym_DQUOTE2, - STATE(5877), 1, - sym_comment, - STATE(5880), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6307), 1, - sym_expr_interpolated, - ACTIONS(9876), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [205684] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4681), 1, - aux_sym_unquoted_token3, - ACTIONS(8706), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8894), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8896), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8898), 1, - aux_sym__immediate_decimal_token5, - STATE(5878), 1, - sym_comment, - STATE(6427), 1, - sym__immediate_decimal, - [205709] = 8, + [191956] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4681), 1, + ACTIONS(4678), 1, aux_sym_unquoted_token3, - ACTIONS(8836), 1, + ACTIONS(8782), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8912), 1, + ACTIONS(8863), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8914), 1, + ACTIONS(8865), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8916), 1, + ACTIONS(8867), 1, aux_sym__immediate_decimal_token5, - STATE(5879), 1, + STATE(5452), 1, sym_comment, - STATE(7666), 1, + STATE(7008), 1, sym__immediate_decimal, - [205734] = 7, + [191981] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9874), 1, + ACTIONS(9764), 1, anon_sym_LPAREN, - ACTIONS(10033), 1, + ACTIONS(9788), 1, anon_sym_DQUOTE2, - STATE(5880), 1, + STATE(5453), 1, sym_comment, - STATE(5950), 1, + STATE(5606), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6307), 1, + STATE(6301), 1, sym_expr_interpolated, - ACTIONS(9876), 2, + ACTIONS(9766), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [205757] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - ACTIONS(10035), 1, - anon_sym_RBRACK, - STATE(5881), 1, - sym_comment, - STATE(6193), 1, - aux_sym_shebang_repeat1, - STATE(6933), 1, - sym_val_list, - STATE(7300), 1, - aux_sym_val_table_repeat1, - [205782] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2422), 1, - anon_sym_DASH2, - STATE(5882), 1, - sym_comment, - ACTIONS(2424), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [205799] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - ACTIONS(10037), 1, - anon_sym_RBRACK, - STATE(5883), 1, - sym_comment, - STATE(6194), 1, - aux_sym_shebang_repeat1, - STATE(6936), 1, - sym_val_list, - STATE(7302), 1, - aux_sym_val_table_repeat1, - [205824] = 4, + [192004] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1851), 1, + ACTIONS(2409), 1, anon_sym_DASH2, - STATE(5884), 1, + STATE(5454), 1, sym_comment, - ACTIONS(1853), 5, + ACTIONS(2411), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [205841] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9874), 1, - anon_sym_LPAREN, - ACTIONS(10039), 1, - anon_sym_DQUOTE2, - STATE(5885), 1, - sym_comment, - STATE(5886), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6307), 1, - sym_expr_interpolated, - ACTIONS(9876), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [205864] = 7, + [192021] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9874), 1, - anon_sym_LPAREN, - ACTIONS(10041), 1, - anon_sym_DQUOTE2, - STATE(5886), 1, + ACTIONS(2078), 1, + anon_sym_LBRACE, + STATE(5455), 1, sym_comment, - STATE(5950), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6307), 1, - sym_expr_interpolated, - ACTIONS(9876), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [205887] = 8, + ACTIONS(2076), 5, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + aux_sym_unquoted_token4, + [192038] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - ACTIONS(10043), 1, + ACTIONS(9790), 1, anon_sym_RBRACK, - STATE(5887), 1, + STATE(5456), 1, sym_comment, - STATE(6197), 1, + STATE(5876), 1, aux_sym_shebang_repeat1, - STATE(6956), 1, + STATE(6574), 1, sym_val_list, - STATE(7309), 1, + STATE(6786), 1, aux_sym_val_table_repeat1, - [205912] = 4, + [192063] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2426), 1, + ACTIONS(1616), 1, anon_sym_DASH2, - STATE(5888), 1, + STATE(5457), 1, sym_comment, - ACTIONS(2428), 5, + ACTIONS(1628), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [205929] = 4, + [192080] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5165), 1, - anon_sym_DASH2, - STATE(5889), 1, - sym_comment, - ACTIONS(5163), 5, - ts_builtin_sym_end, + ACTIONS(3756), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(9770), 1, anon_sym_LBRACK, - anon_sym_DASH_DASH, - [205946] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2430), 1, - anon_sym_DASH2, - STATE(5890), 1, + ACTIONS(9792), 1, + anon_sym_RBRACK, + STATE(5458), 1, sym_comment, - ACTIONS(2432), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [205963] = 8, + STATE(5647), 1, + aux_sym_shebang_repeat1, + STATE(6409), 1, + aux_sym_val_table_repeat1, + STATE(6599), 1, + sym_val_list, + [192105] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - ACTIONS(10045), 1, + ACTIONS(9794), 1, anon_sym_RBRACK, - STATE(5891), 1, + STATE(5459), 1, sym_comment, - STATE(6198), 1, + STATE(5865), 1, aux_sym_shebang_repeat1, - STATE(6960), 1, + STATE(6427), 1, sym_val_list, - STATE(7311), 1, + STATE(6751), 1, aux_sym_val_table_repeat1, - [205988] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1879), 1, - anon_sym_DASH2, - STATE(5892), 1, - sym_comment, - ACTIONS(1881), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [206005] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1913), 1, - anon_sym_DASH2, - STATE(5893), 1, - sym_comment, - ACTIONS(1915), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [206022] = 7, + [192130] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9874), 1, + ACTIONS(9764), 1, anon_sym_LPAREN, - ACTIONS(10047), 1, + ACTIONS(9796), 1, anon_sym_DQUOTE2, - STATE(5894), 1, + STATE(5460), 1, sym_comment, - STATE(5896), 1, + STATE(5475), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6307), 1, + STATE(6301), 1, sym_expr_interpolated, - ACTIONS(9876), 2, + ACTIONS(9766), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [206045] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1945), 1, - anon_sym_DASH2, - STATE(5895), 1, - sym_comment, - ACTIONS(1947), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [206062] = 7, + [192153] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9874), 1, - anon_sym_LPAREN, - ACTIONS(10049), 1, - anon_sym_DQUOTE2, - STATE(5896), 1, - sym_comment, - STATE(5950), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6307), 1, - sym_expr_interpolated, - ACTIONS(9876), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [206085] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - ACTIONS(10051), 1, - anon_sym_RBRACK, - STATE(5897), 1, - sym_comment, - STATE(6202), 1, - aux_sym_shebang_repeat1, - STATE(6981), 1, - sym_val_list, - STATE(7322), 1, - aux_sym_val_table_repeat1, - [206110] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - ACTIONS(10053), 1, - anon_sym_RBRACK, - STATE(5898), 1, + ACTIONS(2166), 1, + anon_sym_LBRACE, + ACTIONS(2168), 1, + aux_sym_unquoted_token4, + STATE(5461), 1, sym_comment, - STATE(6203), 1, - aux_sym_shebang_repeat1, - STATE(6984), 1, - sym_val_list, - STATE(7324), 1, - aux_sym_val_table_repeat1, - [206135] = 6, + ACTIONS(2162), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [192172] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2039), 1, - sym__space, - ACTIONS(10055), 1, - anon_sym_DOT_DOT2, - STATE(5899), 1, - sym_comment, - ACTIONS(2033), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(10057), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [206156] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2441), 1, - anon_sym_DASH2, - STATE(5900), 1, + ACTIONS(994), 1, + anon_sym_LBRACE, + ACTIONS(2106), 1, + aux_sym_unquoted_token4, + STATE(5462), 1, sym_comment, - ACTIONS(2443), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(998), 4, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - [206173] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1883), 1, anon_sym_DASH2, - STATE(5901), 1, - sym_comment, - ACTIONS(1885), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [206190] = 7, + [192191] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9874), 1, + ACTIONS(9764), 1, anon_sym_LPAREN, - ACTIONS(10059), 1, + ACTIONS(9798), 1, anon_sym_DQUOTE2, - STATE(5902), 1, + STATE(5463), 1, sym_comment, - STATE(5904), 1, + STATE(5465), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6307), 1, + STATE(6301), 1, sym_expr_interpolated, - ACTIONS(9876), 2, + ACTIONS(9766), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [206213] = 4, - ACTIONS(245), 1, + [192214] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2445), 1, - anon_sym_DASH2, - STATE(5903), 1, + ACTIONS(9800), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9802), 1, + aux_sym__immediate_decimal_token2, + STATE(5464), 1, sym_comment, - ACTIONS(2447), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - [206230] = 7, + ACTIONS(1686), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1688), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [192235] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9874), 1, + ACTIONS(9764), 1, anon_sym_LPAREN, - ACTIONS(10061), 1, + ACTIONS(9804), 1, anon_sym_DQUOTE2, - STATE(5904), 1, + STATE(5465), 1, sym_comment, - STATE(5950), 1, + STATE(5606), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6307), 1, + STATE(6301), 1, sym_expr_interpolated, - ACTIONS(9876), 2, + ACTIONS(9766), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [206253] = 8, + [192258] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7181), 1, + aux_sym_unquoted_token3, + ACTIONS(8514), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8857), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8859), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8861), 1, + aux_sym__immediate_decimal_token5, + STATE(5466), 1, + sym_comment, + STATE(5919), 1, + sym__immediate_decimal, + [192283] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7181), 1, + aux_sym_unquoted_token3, + ACTIONS(8782), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8863), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8865), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8867), 1, + aux_sym__immediate_decimal_token5, + STATE(5467), 1, + sym_comment, + STATE(7008), 1, + sym__immediate_decimal, + [192308] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(8784), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8786), 1, + aux_sym__immediate_decimal_token5, + STATE(5468), 1, + sym_comment, + STATE(6994), 1, + sym__immediate_decimal, + ACTIONS(8782), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [192331] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(3756), 1, sym__newline, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - ACTIONS(10063), 1, + ACTIONS(9806), 1, anon_sym_RBRACK, - STATE(5905), 1, + STATE(5469), 1, sym_comment, - STATE(6204), 1, + STATE(5867), 1, aux_sym_shebang_repeat1, - STATE(6998), 1, + STATE(6469), 1, sym_val_list, - STATE(7328), 1, + STATE(6758), 1, aux_sym_val_table_repeat1, - [206278] = 4, - ACTIONS(245), 1, + [192356] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2449), 1, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + ACTIONS(2130), 1, + anon_sym_LBRACE, + STATE(5470), 1, + sym_comment, + ACTIONS(2128), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH2, - STATE(5906), 1, + [192375] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2072), 1, + anon_sym_LBRACE, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(5471), 1, sym_comment, - ACTIONS(2451), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(2068), 4, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - [206295] = 8, - ACTIONS(245), 1, + anon_sym_DASH2, + [192394] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - ACTIONS(10065), 1, - anon_sym_RBRACK, - STATE(5907), 1, + ACTIONS(9764), 1, + anon_sym_LPAREN, + ACTIONS(9808), 1, + anon_sym_DQUOTE2, + STATE(5472), 1, sym_comment, - STATE(6205), 1, - aux_sym_shebang_repeat1, - STATE(7003), 1, - sym_val_list, - STATE(7331), 1, - aux_sym_val_table_repeat1, - [206320] = 4, + STATE(5606), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6301), 1, + sym_expr_interpolated, + ACTIONS(9766), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [192417] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1891), 1, + ACTIONS(5656), 1, anon_sym_DASH2, - STATE(5908), 1, + STATE(5473), 1, sym_comment, - ACTIONS(1893), 5, + ACTIONS(5658), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DASH_DASH, - [206337] = 4, + anon_sym_LBRACE, + [192434] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1931), 1, + ACTIONS(2421), 1, anon_sym_DASH2, - STATE(5909), 1, + STATE(5474), 1, sym_comment, - ACTIONS(1933), 5, + ACTIONS(2423), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [206354] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9874), 1, - anon_sym_LPAREN, - ACTIONS(10067), 1, - anon_sym_DQUOTE2, - STATE(5910), 1, - sym_comment, - STATE(5911), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6307), 1, - sym_expr_interpolated, - ACTIONS(9876), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [206377] = 7, + [192451] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9874), 1, + ACTIONS(9764), 1, anon_sym_LPAREN, - ACTIONS(10069), 1, + ACTIONS(9810), 1, anon_sym_DQUOTE2, - STATE(5911), 1, + STATE(5475), 1, sym_comment, - STATE(5950), 1, + STATE(5606), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6307), 1, + STATE(6301), 1, sym_expr_interpolated, - ACTIONS(9876), 2, + ACTIONS(9766), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [206400] = 8, + [192474] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - ACTIONS(10071), 1, - anon_sym_RBRACK, - STATE(5912), 1, - sym_comment, - STATE(6206), 1, - aux_sym_shebang_repeat1, - STATE(7019), 1, - sym_val_list, - STATE(7335), 1, - aux_sym_val_table_repeat1, - [206425] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2453), 1, + ACTIONS(5630), 1, anon_sym_DASH2, - STATE(5913), 1, + STATE(5476), 1, sym_comment, - ACTIONS(2455), 5, + ACTIONS(5632), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DASH_DASH, - [206442] = 8, - ACTIONS(245), 1, + anon_sym_LBRACE, + [192491] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - ACTIONS(10073), 1, - anon_sym_RBRACK, - STATE(5914), 1, + ACTIONS(9812), 1, + aux_sym__immediate_decimal_token2, + STATE(5477), 1, sym_comment, - STATE(6207), 1, - aux_sym_shebang_repeat1, - STATE(7023), 1, - sym_val_list, - STATE(7337), 1, - aux_sym_val_table_repeat1, - [206467] = 4, + ACTIONS(1762), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1760), 3, + sym__newline, + anon_sym_SEMI, + aux_sym_unquoted_token2, + [192510] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2296), 1, + ACTIONS(5145), 1, anon_sym_DASH2, - STATE(5915), 1, + STATE(5478), 1, sym_comment, - ACTIONS(2298), 5, + ACTIONS(5143), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [206484] = 4, + [192527] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1935), 1, + ACTIONS(5149), 1, anon_sym_DASH2, - STATE(5916), 1, + STATE(5479), 1, sym_comment, - ACTIONS(1937), 5, + ACTIONS(5147), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [206501] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9874), 1, - anon_sym_LPAREN, - ACTIONS(10075), 1, - anon_sym_DQUOTE2, - STATE(5917), 1, - sym_comment, - STATE(5918), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6307), 1, - sym_expr_interpolated, - ACTIONS(9876), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [206524] = 7, + [192544] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9874), 1, - anon_sym_LPAREN, - ACTIONS(10077), 1, - anon_sym_DQUOTE2, - STATE(5918), 1, - sym_comment, - STATE(5950), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6307), 1, - sym_expr_interpolated, - ACTIONS(9876), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [206547] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - ACTIONS(10079), 1, - anon_sym_RBRACK, - STATE(5919), 1, + ACTIONS(9814), 1, + anon_sym_DOT, + ACTIONS(9816), 1, + aux_sym__immediate_decimal_token2, + STATE(5480), 1, sym_comment, - STATE(6208), 1, - aux_sym_shebang_repeat1, - STATE(7033), 1, - sym_val_list, - STATE(7341), 1, - aux_sym_val_table_repeat1, - [206572] = 4, + ACTIONS(1701), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1703), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [192565] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2461), 1, + ACTIONS(2425), 1, anon_sym_DASH2, - STATE(5920), 1, + STATE(5481), 1, sym_comment, - ACTIONS(2463), 5, + ACTIONS(2427), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [206589] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - ACTIONS(10081), 1, - anon_sym_RBRACK, - STATE(5921), 1, - sym_comment, - STATE(6209), 1, - aux_sym_shebang_repeat1, - STATE(7036), 1, - sym_val_list, - STATE(7343), 1, - aux_sym_val_table_repeat1, - [206614] = 4, + [192582] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2465), 1, + ACTIONS(5103), 1, anon_sym_DASH2, - STATE(5922), 1, + STATE(5482), 1, sym_comment, - ACTIONS(2467), 5, + ACTIONS(5101), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [206631] = 8, - ACTIONS(245), 1, + [192599] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - ACTIONS(10083), 1, - anon_sym_RBRACK, - STATE(5923), 1, + ACTIONS(994), 1, + sym__space, + ACTIONS(9818), 1, + anon_sym_DOT_DOT2, + STATE(5483), 1, sym_comment, - STATE(6210), 1, - aux_sym_shebang_repeat1, - STATE(7049), 1, - sym_val_list, - STATE(7348), 1, - aux_sym_val_table_repeat1, - [206656] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(998), 2, sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - ACTIONS(10085), 1, - anon_sym_RBRACK, - STATE(5924), 1, - sym_comment, - STATE(6211), 1, - aux_sym_shebang_repeat1, - STATE(7052), 1, - sym_val_list, - STATE(7351), 1, - aux_sym_val_table_repeat1, - [206681] = 4, + anon_sym_SEMI, + ACTIONS(9820), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [192620] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5657), 1, + ACTIONS(2394), 1, anon_sym_DASH2, - STATE(5925), 1, + STATE(5484), 1, sym_comment, - ACTIONS(5659), 5, + ACTIONS(2396), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [206698] = 8, + [192637] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8836), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8912), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8914), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8916), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9997), 1, - aux_sym_unquoted_token3, - STATE(5926), 1, + ACTIONS(1979), 1, + sym__space, + ACTIONS(9822), 1, + anon_sym_DOT_DOT2, + STATE(5485), 1, sym_comment, - STATE(7666), 1, - sym__immediate_decimal, - [206723] = 8, + ACTIONS(1973), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(9824), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [192658] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3430), 1, + ACTIONS(3408), 1, anon_sym_COLON2, - ACTIONS(8826), 1, + ACTIONS(8772), 1, sym_identifier, - ACTIONS(10087), 1, + ACTIONS(9776), 1, anon_sym_DOLLAR, - STATE(5713), 1, + STATE(5360), 1, sym_val_variable, - STATE(5927), 1, + STATE(5486), 1, sym_comment, - STATE(6168), 1, + STATE(5776), 1, sym__variable_name, - STATE(6285), 1, + STATE(5900), 1, sym__assignment_pattern, - [206748] = 8, + [192683] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3430), 1, + ACTIONS(3408), 1, anon_sym_COLON2, - ACTIONS(8826), 1, + ACTIONS(8772), 1, sym_identifier, - ACTIONS(10087), 1, + ACTIONS(9776), 1, anon_sym_DOLLAR, - STATE(5713), 1, + STATE(5360), 1, sym_val_variable, - STATE(5928), 1, + STATE(5487), 1, sym_comment, - STATE(6168), 1, + STATE(5776), 1, sym__variable_name, - STATE(6288), 1, + STATE(6271), 1, sym__assignment_pattern, - [206773] = 8, + [192708] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3430), 1, + ACTIONS(3408), 1, anon_sym_COLON2, - ACTIONS(8826), 1, + ACTIONS(8772), 1, sym_identifier, - ACTIONS(10087), 1, + ACTIONS(9776), 1, anon_sym_DOLLAR, - STATE(5713), 1, + STATE(5360), 1, sym_val_variable, - STATE(5929), 1, + STATE(5488), 1, sym_comment, - STATE(6168), 1, + STATE(5776), 1, sym__variable_name, - STATE(6296), 1, + STATE(6272), 1, sym__assignment_pattern, - [206798] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(5930), 1, - sym_comment, - ACTIONS(1666), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1668), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [206815] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(5931), 1, - sym_comment, - ACTIONS(1648), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1650), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [206832] = 4, - ACTIONS(245), 1, + [192733] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5932), 1, + ACTIONS(9764), 1, + anon_sym_LPAREN, + ACTIONS(9826), 1, + anon_sym_DQUOTE2, + STATE(5489), 1, sym_comment, - ACTIONS(1719), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1721), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [206849] = 6, + STATE(5523), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6301), 1, + sym_expr_interpolated, + ACTIONS(9766), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [192756] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(10089), 1, - sym_long_flag_identifier, - ACTIONS(10091), 1, - anon_sym_EQ2, - STATE(5933), 1, + ACTIONS(5648), 1, + anon_sym_DASH2, + STATE(5490), 1, sym_comment, - ACTIONS(4873), 2, - anon_sym_DOLLAR, + ACTIONS(5650), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - ACTIONS(4875), 2, - sym_identifier, - anon_sym_DASH2, - [206870] = 4, - ACTIONS(245), 1, + anon_sym_LBRACE, + [192773] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5934), 1, + STATE(5491), 1, sym_comment, - ACTIONS(1790), 2, + ACTIONS(1993), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1792), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1995), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [206887] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3440), 1, - anon_sym_COLON2, - ACTIONS(8826), 1, - sym_identifier, - ACTIONS(10087), 1, - anon_sym_DOLLAR, - STATE(5713), 1, - sym_val_variable, - STATE(5935), 1, - sym_comment, - STATE(6168), 1, - sym__variable_name, - STATE(6285), 1, - sym__assignment_pattern, - [206912] = 8, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3440), 1, - anon_sym_COLON2, - ACTIONS(8826), 1, - sym_identifier, - ACTIONS(10087), 1, - anon_sym_DOLLAR, - STATE(5713), 1, - sym_val_variable, - STATE(5936), 1, - sym_comment, - STATE(6168), 1, - sym__variable_name, - STATE(6288), 1, - sym__assignment_pattern, - [206937] = 4, + sym__entry_separator, + [192790] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5169), 1, + ACTIONS(2405), 1, anon_sym_DASH2, - STATE(5937), 1, + STATE(5492), 1, sym_comment, - ACTIONS(5167), 5, + ACTIONS(2407), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [206954] = 4, + [192807] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5173), 1, + ACTIONS(9828), 1, + sym__newline, + ACTIONS(9830), 1, + anon_sym_SEMI, + ACTIONS(9832), 1, + anon_sym_RPAREN, + STATE(312), 1, + aux_sym__parenthesized_body_repeat1, + STATE(5493), 1, + sym_comment, + STATE(6341), 1, + aux_sym__block_body_repeat1, + STATE(6482), 1, + aux_sym_shebang_repeat1, + [192832] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(5652), 1, anon_sym_DASH2, - STATE(5938), 1, + STATE(5494), 1, sym_comment, - ACTIONS(5171), 5, + ACTIONS(5654), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DASH_DASH, - [206971] = 4, + anon_sym_LBRACE, + [192849] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8514), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8857), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8859), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8861), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9834), 1, + aux_sym_unquoted_token3, + STATE(5495), 1, + sym_comment, + STATE(5919), 1, + sym__immediate_decimal, + [192874] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9764), 1, + anon_sym_LPAREN, + ACTIONS(9836), 1, + anon_sym_DQUOTE2, + STATE(5496), 1, + sym_comment, + STATE(5527), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6301), 1, + sym_expr_interpolated, + ACTIONS(9766), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [192897] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5665), 1, + ACTIONS(1833), 1, anon_sym_DASH2, - STATE(5939), 1, + STATE(5497), 1, sym_comment, - ACTIONS(5667), 5, + ACTIONS(1835), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [206988] = 8, + [192914] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3440), 1, - anon_sym_COLON2, - ACTIONS(8826), 1, - sym_identifier, - ACTIONS(10087), 1, - anon_sym_DOLLAR, - STATE(5713), 1, - sym_val_variable, - STATE(5940), 1, + ACTIONS(1477), 1, + aux_sym_unquoted_token2, + ACTIONS(8784), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8786), 1, + aux_sym__immediate_decimal_token5, + STATE(5498), 1, sym_comment, - STATE(6168), 1, - sym__variable_name, - STATE(6296), 1, - sym__assignment_pattern, - [207013] = 4, + STATE(7274), 1, + sym__immediate_decimal, + ACTIONS(8782), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [192937] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5177), 1, + ACTIONS(2260), 1, anon_sym_DASH2, - STATE(5941), 1, + STATE(5499), 1, sym_comment, - ACTIONS(5175), 5, + ACTIONS(2262), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [207030] = 4, + [192954] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5181), 1, + ACTIONS(1863), 1, anon_sym_DASH2, - STATE(5942), 1, + STATE(5500), 1, sym_comment, - ACTIONS(5179), 5, + ACTIONS(1865), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH_DASH, - [207047] = 5, - ACTIONS(245), 1, + [192971] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10093), 1, - anon_sym_DOT_DOT2, - STATE(5943), 1, + ACTIONS(9764), 1, + anon_sym_LPAREN, + ACTIONS(9838), 1, + anon_sym_DQUOTE2, + STATE(5501), 1, sym_comment, - ACTIONS(10095), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2039), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [207066] = 5, - ACTIONS(245), 1, + STATE(5606), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6301), 1, + sym_expr_interpolated, + ACTIONS(9766), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [192994] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10097), 1, - anon_sym_DOT_DOT2, - STATE(5944), 1, + ACTIONS(7137), 1, + aux_sym_unquoted_token3, + ACTIONS(8514), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8857), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8859), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8861), 1, + aux_sym__immediate_decimal_token5, + STATE(5502), 1, sym_comment, - ACTIONS(10099), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2015), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [207085] = 5, + STATE(5919), 1, + sym__immediate_decimal, + [193019] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(10101), 1, + ACTIONS(9840), 1, anon_sym_DOT_DOT2, - STATE(5945), 1, + STATE(5503), 1, sym_comment, - ACTIONS(10103), 2, + ACTIONS(9842), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2031), 3, + ACTIONS(5867), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [207104] = 5, + [193038] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8782), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8863), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8865), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8867), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9834), 1, + aux_sym_unquoted_token3, + STATE(5504), 1, + sym_comment, + STATE(7008), 1, + sym__immediate_decimal, + [193063] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(10105), 1, - anon_sym_DOT_DOT2, - STATE(5946), 1, + ACTIONS(5050), 1, + anon_sym_DASH2, + STATE(5505), 1, sym_comment, - ACTIONS(10107), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(6020), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [207123] = 5, + ACTIONS(5048), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [193080] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(10105), 1, - anon_sym_DOT_DOT2, - STATE(5947), 1, + ACTIONS(1871), 1, + anon_sym_DASH2, + STATE(5506), 1, sym_comment, - ACTIONS(10107), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(6027), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [207142] = 4, - ACTIONS(3), 1, + ACTIONS(1873), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [193097] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(5948), 1, + ACTIONS(5062), 1, + anon_sym_DASH2, + STATE(5507), 1, sym_comment, - ACTIONS(1711), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1713), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [207159] = 8, + ACTIONS(5060), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [193114] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(579), 1, + anon_sym_RPAREN, + ACTIONS(9828), 1, sym__newline, - ACTIONS(9834), 1, - anon_sym_LBRACE, - STATE(1653), 1, + ACTIONS(9830), 1, + anon_sym_SEMI, + STATE(312), 1, + aux_sym__parenthesized_body_repeat1, + STATE(5508), 1, + sym_comment, + STATE(6281), 1, + aux_sym__block_body_repeat1, + STATE(6482), 1, aux_sym_shebang_repeat1, - STATE(4967), 1, - sym_block, - STATE(4968), 1, - sym_val_closure, - STATE(4983), 1, - sym__blosure, - STATE(5949), 1, + [193139] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(2264), 1, + anon_sym_DASH2, + STATE(5509), 1, sym_comment, - [207184] = 6, - ACTIONS(3), 1, + ACTIONS(2266), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [193156] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(10109), 1, - anon_sym_LPAREN, - ACTIONS(10115), 1, - anon_sym_DQUOTE2, - STATE(6307), 1, - sym_expr_interpolated, - ACTIONS(10112), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - STATE(5950), 2, + ACTIONS(4581), 1, + anon_sym_DOT_DOT2, + ACTIONS(9834), 1, + aux_sym_unquoted_token2, + STATE(5510), 1, sym_comment, - aux_sym__inter_double_quotes_repeat1, - [207205] = 8, + ACTIONS(4583), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(9844), 2, + sym_filesize_unit, + sym_duration_unit, + [193177] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - ACTIONS(10117), 1, + ACTIONS(9846), 1, anon_sym_RBRACK, - STATE(5951), 1, + STATE(5511), 1, sym_comment, - STATE(6200), 1, + STATE(5851), 1, aux_sym_shebang_repeat1, - STATE(7189), 1, + STATE(6675), 1, sym_val_list, - STATE(7315), 1, + STATE(6712), 1, aux_sym_val_table_repeat1, - [207230] = 8, + [193202] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - ACTIONS(10119), 1, - anon_sym_RBRACK, - STATE(5952), 1, - sym_comment, - STATE(6201), 1, + ACTIONS(9759), 1, + anon_sym_LBRACE, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(7194), 1, - sym_val_list, - STATE(7317), 1, - aux_sym_val_table_repeat1, - [207255] = 3, + STATE(4693), 1, + sym_block, + STATE(4694), 1, + sym_val_closure, + STATE(4815), 1, + sym__blosure, + STATE(5512), 1, + sym_comment, + [193227] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(5953), 1, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(5513), 1, sym_comment, - ACTIONS(1278), 6, - sym_raw_string_begin, - sym_identifier, + STATE(6333), 1, + sym_block, + ACTIONS(9848), 4, sym__newline, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [207270] = 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [193246] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9746), 1, - anon_sym_alias, - ACTIONS(9748), 1, - anon_sym_const, - ACTIONS(9750), 1, - anon_sym_def, - ACTIONS(9752), 1, - anon_sym_extern, - ACTIONS(9754), 1, - anon_sym_module, - ACTIONS(9756), 1, - anon_sym_use, - STATE(5954), 1, + ACTIONS(1867), 1, + anon_sym_DASH2, + STATE(5514), 1, sym_comment, - [207295] = 4, + ACTIONS(1869), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [193263] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5680), 1, + ACTIONS(1829), 1, anon_sym_DASH2, - STATE(5955), 1, + STATE(5515), 1, sym_comment, - ACTIONS(5682), 5, + ACTIONS(1831), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [207312] = 7, - ACTIONS(3), 1, + [193280] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9874), 1, - anon_sym_LPAREN, - ACTIONS(10121), 1, - anon_sym_DQUOTE2, - STATE(5956), 1, + ACTIONS(9840), 1, + anon_sym_DOT_DOT2, + STATE(5516), 1, sym_comment, - STATE(5961), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6307), 1, - sym_expr_interpolated, - ACTIONS(9876), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [207335] = 4, + ACTIONS(9842), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5888), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [193299] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5684), 1, - anon_sym_DASH2, - STATE(5957), 1, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(5517), 1, sym_comment, - ACTIONS(5686), 5, - ts_builtin_sym_end, + STATE(6030), 1, + sym_block, + ACTIONS(9850), 4, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_RBRACE, + [193318] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6257), 1, anon_sym_LBRACE, - [207352] = 8, + STATE(5518), 1, + sym_comment, + STATE(6093), 1, + sym_block, + ACTIONS(9757), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [193337] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7128), 1, + ACTIONS(7137), 1, aux_sym_unquoted_token3, - ACTIONS(8706), 1, + ACTIONS(8782), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8894), 1, + ACTIONS(8863), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8896), 1, + ACTIONS(8865), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8898), 1, + ACTIONS(8867), 1, aux_sym__immediate_decimal_token5, - STATE(5958), 1, + STATE(5519), 1, sym_comment, - STATE(6427), 1, + STATE(7008), 1, sym__immediate_decimal, - [207377] = 8, - ACTIONS(3), 1, + [193362] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7128), 1, - aux_sym_unquoted_token3, - ACTIONS(8836), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8912), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8914), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8916), 1, - aux_sym__immediate_decimal_token5, - STATE(5959), 1, + ACTIONS(9852), 1, + anon_sym_LT, + STATE(5520), 1, sym_comment, - STATE(7666), 1, - sym__immediate_decimal, - [207402] = 6, + ACTIONS(7816), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [193379] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4673), 1, - anon_sym_DOT_DOT2, - ACTIONS(7128), 1, - aux_sym_unquoted_token2, - STATE(5960), 1, + ACTIONS(2270), 1, + anon_sym_DASH2, + STATE(5521), 1, sym_comment, - ACTIONS(4675), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(9882), 2, - sym_filesize_unit, - sym_duration_unit, - [207423] = 7, + ACTIONS(2272), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [193396] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(9854), 1, + anon_sym_LT, + STATE(5522), 1, + sym_comment, + ACTIONS(7816), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [193413] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9874), 1, + ACTIONS(9764), 1, anon_sym_LPAREN, - ACTIONS(10123), 1, + ACTIONS(9856), 1, anon_sym_DQUOTE2, - STATE(5950), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5961), 1, + STATE(5523), 1, sym_comment, - STATE(6307), 1, + STATE(5606), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6301), 1, sym_expr_interpolated, - ACTIONS(9876), 2, + ACTIONS(9766), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [207446] = 4, - ACTIONS(3), 1, + [193436] = 8, + ACTIONS(245), 1, anon_sym_POUND, - STATE(5962), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(9759), 1, + anon_sym_LBRACE, + STATE(4693), 1, + sym_block, + STATE(4694), 1, + sym_val_closure, + STATE(4874), 1, + sym__blosure, + STATE(5512), 1, + aux_sym_shebang_repeat1, + STATE(5524), 1, sym_comment, - ACTIONS(2001), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(2003), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [207463] = 8, + [193461] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9750), 1, - anon_sym_def, - ACTIONS(9752), 1, - anon_sym_extern, - ACTIONS(9754), 1, - anon_sym_module, - ACTIONS(9756), 1, - anon_sym_use, - ACTIONS(10125), 1, - anon_sym_alias, - ACTIONS(10127), 1, - anon_sym_const, - STATE(5963), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(9770), 1, + anon_sym_LBRACK, + ACTIONS(9858), 1, + anon_sym_RBRACK, + STATE(5525), 1, sym_comment, - [207488] = 8, + STATE(5868), 1, + aux_sym_shebang_repeat1, + STATE(6487), 1, + sym_val_list, + STATE(6760), 1, + aux_sym_val_table_repeat1, + [193486] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9750), 1, - anon_sym_def, - ACTIONS(9752), 1, - anon_sym_extern, - ACTIONS(9754), 1, - anon_sym_module, - ACTIONS(9756), 1, - anon_sym_use, - ACTIONS(10129), 1, - anon_sym_alias, - ACTIONS(10131), 1, - anon_sym_const, - STATE(5964), 1, + ACTIONS(2362), 1, + anon_sym_DASH2, + STATE(5526), 1, sym_comment, - [207513] = 6, - ACTIONS(245), 1, + ACTIONS(2364), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [193503] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4673), 1, - anon_sym_DOT_DOT2, - ACTIONS(9997), 1, - aux_sym_unquoted_token2, - STATE(5965), 1, + ACTIONS(9764), 1, + anon_sym_LPAREN, + ACTIONS(9860), 1, + anon_sym_DQUOTE2, + STATE(5527), 1, sym_comment, - ACTIONS(4675), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(9882), 2, - sym_filesize_unit, - sym_duration_unit, - [207534] = 8, + STATE(5606), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6301), 1, + sym_expr_interpolated, + ACTIONS(9766), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [193526] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9750), 1, + ACTIONS(9862), 1, + anon_sym_alias, + ACTIONS(9864), 1, + anon_sym_const, + ACTIONS(9866), 1, anon_sym_def, - ACTIONS(9752), 1, + ACTIONS(9868), 1, anon_sym_extern, - ACTIONS(9754), 1, + ACTIONS(9870), 1, anon_sym_module, - ACTIONS(9756), 1, + ACTIONS(9872), 1, anon_sym_use, - ACTIONS(10133), 1, - anon_sym_alias, - ACTIONS(10135), 1, - anon_sym_const, - STATE(5966), 1, + STATE(5528), 1, sym_comment, - [207559] = 7, + [193551] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9874), 1, + ACTIONS(9764), 1, anon_sym_LPAREN, - ACTIONS(10137), 1, + ACTIONS(9874), 1, anon_sym_DQUOTE2, - STATE(5950), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5967), 1, + STATE(5529), 1, sym_comment, - STATE(6307), 1, + STATE(5538), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6301), 1, sym_expr_interpolated, - ACTIONS(9876), 2, + ACTIONS(9766), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [207582] = 7, + [193574] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(2274), 1, + anon_sym_DASH2, + STATE(5530), 1, + sym_comment, + ACTIONS(2276), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(9817), 1, + anon_sym_SEMI, anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(5968), 1, - sym_comment, - STATE(6883), 1, - sym_val_list, - STATE(7284), 1, - aux_sym_val_table_repeat1, - [207604] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(5969), 1, - sym_comment, - ACTIONS(8254), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [207618] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(5970), 1, - sym_comment, - ACTIONS(8258), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [207632] = 3, + anon_sym_DASH_DASH, + [193591] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(5971), 1, + ACTIONS(2370), 1, + anon_sym_DASH2, + STATE(5531), 1, sym_comment, - ACTIONS(8262), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [207646] = 6, - ACTIONS(245), 1, + ACTIONS(2372), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [193608] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8838), 1, + ACTIONS(7012), 1, + aux_sym_unquoted_token3, + ACTIONS(8514), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8857), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8859), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8840), 1, + ACTIONS(8861), 1, aux_sym__immediate_decimal_token5, - STATE(5972), 1, + STATE(5532), 1, sym_comment, - STATE(7801), 1, + STATE(5919), 1, sym__immediate_decimal, - ACTIONS(8836), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [207666] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10139), 1, - anon_sym_LPAREN, - ACTIONS(10141), 1, - sym_unescaped_interpolated_content, - ACTIONS(10143), 1, - anon_sym_SQUOTE, - STATE(5973), 1, - sym_comment, - STATE(6125), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6878), 1, - sym_expr_interpolated, - [207688] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1929), 1, - sym__table_head_separator, - ACTIONS(10145), 1, - anon_sym_DOT2, - STATE(5974), 1, - sym_comment, - STATE(6301), 1, - aux_sym_cell_path_repeat1, - STATE(7513), 1, - sym_path, - STATE(7750), 1, - sym_cell_path, - [207710] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8826), 1, - sym_identifier, - ACTIONS(10087), 1, - anon_sym_DOLLAR, - STATE(5713), 1, - sym_val_variable, - STATE(5975), 1, - sym_comment, - STATE(6052), 1, - sym__variable_name, - STATE(6820), 1, - sym__assignment_pattern_parenthesized, - [207732] = 7, + [193633] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10139), 1, - anon_sym_LPAREN, - ACTIONS(10141), 1, - sym_unescaped_interpolated_content, - ACTIONS(10147), 1, - anon_sym_SQUOTE, - STATE(5976), 1, - sym_comment, - STATE(5988), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6878), 1, - sym_expr_interpolated, - [207754] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(5977), 1, - sym_comment, - ACTIONS(8270), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [207768] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(10151), 1, - anon_sym_AT, - STATE(7521), 1, - sym_attribute, - ACTIONS(10149), 2, - anon_sym_export, - anon_sym_def, - STATE(5978), 2, + ACTIONS(7012), 1, + aux_sym_unquoted_token3, + ACTIONS(8782), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8863), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8865), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8867), 1, + aux_sym__immediate_decimal_token5, + STATE(5533), 1, sym_comment, - aux_sym_attribute_list_repeat1, - [207786] = 4, + STATE(7008), 1, + sym__immediate_decimal, + [193658] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5979), 1, + ACTIONS(9747), 1, + aux_sym__immediate_decimal_token2, + STATE(5534), 1, sym_comment, - ACTIONS(1668), 2, + ACTIONS(1703), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1666), 3, + ACTIONS(1701), 3, sym__newline, anon_sym_SEMI, aux_sym_unquoted_token2, - [207802] = 7, + [193677] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8826), 1, - sym_identifier, - ACTIONS(10087), 1, - anon_sym_DOLLAR, - STATE(5713), 1, - sym_val_variable, - STATE(5980), 1, + ACTIONS(4581), 1, + anon_sym_DOT_DOT2, + ACTIONS(7012), 1, + aux_sym_unquoted_token2, + STATE(5535), 1, sym_comment, - STATE(6052), 1, - sym__variable_name, - STATE(6837), 1, - sym__assignment_pattern_parenthesized, - [207824] = 7, + ACTIONS(4583), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(9844), 2, + sym_filesize_unit, + sym_duration_unit, + [193698] = 4, ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10139), 1, - anon_sym_LPAREN, - ACTIONS(10141), 1, - sym_unescaped_interpolated_content, - ACTIONS(10154), 1, - anon_sym_SQUOTE, - STATE(5981), 1, + anon_sym_POUND, + STATE(5536), 1, sym_comment, - STATE(5985), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6878), 1, - sym_expr_interpolated, - [207846] = 7, + ACTIONS(1674), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(1676), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [193715] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(10156), 1, - anon_sym_EQ, - ACTIONS(10158), 1, - anon_sym_COLON, - STATE(5982), 1, + ACTIONS(9770), 1, + anon_sym_LBRACK, + ACTIONS(9876), 1, + anon_sym_RBRACK, + STATE(5537), 1, sym_comment, - STATE(7207), 1, + STATE(5859), 1, aux_sym_shebang_repeat1, - STATE(7668), 1, - sym_param_type, - [207868] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8826), 1, - sym_identifier, - ACTIONS(10087), 1, - anon_sym_DOLLAR, - STATE(5713), 1, - sym_val_variable, - STATE(5983), 1, - sym_comment, - STATE(6052), 1, - sym__variable_name, - STATE(6838), 1, - sym__assignment_pattern_parenthesized, - [207890] = 3, - ACTIONS(245), 1, + STATE(6711), 1, + sym_val_list, + STATE(6740), 1, + aux_sym_val_table_repeat1, + [193740] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5984), 1, + ACTIONS(9764), 1, + anon_sym_LPAREN, + ACTIONS(9878), 1, + anon_sym_DQUOTE2, + STATE(5538), 1, sym_comment, - ACTIONS(8274), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [207904] = 7, + STATE(5606), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6301), 1, + sym_expr_interpolated, + ACTIONS(9766), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [193763] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10139), 1, + ACTIONS(9764), 1, anon_sym_LPAREN, - ACTIONS(10141), 1, - sym_unescaped_interpolated_content, - ACTIONS(10160), 1, - anon_sym_SQUOTE, - STATE(5985), 1, + ACTIONS(9880), 1, + anon_sym_DQUOTE2, + STATE(5501), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(5539), 1, sym_comment, - STATE(6125), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6878), 1, + STATE(6301), 1, sym_expr_interpolated, - [207926] = 3, + ACTIONS(9766), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [193786] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(5986), 1, + STATE(5540), 1, sym_comment, - ACTIONS(8278), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [207940] = 3, + ACTIONS(1701), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [193803] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(5987), 1, + ACTIONS(9882), 1, + aux_sym__immediate_decimal_token2, + STATE(5541), 1, sym_comment, - ACTIONS(8286), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, + ACTIONS(1760), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1762), 3, anon_sym_LBRACE, - [207954] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [193822] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10139), 1, - anon_sym_LPAREN, - ACTIONS(10141), 1, - sym_unescaped_interpolated_content, - ACTIONS(10162), 1, - anon_sym_SQUOTE, - STATE(5988), 1, + STATE(5542), 1, sym_comment, - STATE(6125), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6878), 1, - sym_expr_interpolated, - [207976] = 3, + ACTIONS(1945), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(1947), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [193839] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(5989), 1, + ACTIONS(4850), 1, + anon_sym_DASH2, + ACTIONS(9884), 1, + sym_long_flag_identifier, + ACTIONS(9886), 1, + anon_sym_EQ2, + STATE(5543), 1, sym_comment, - ACTIONS(8298), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, + ACTIONS(4848), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - [207990] = 3, + [193860] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(5990), 1, - sym_comment, - ACTIONS(8302), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [208004] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10139), 1, - anon_sym_LPAREN, - ACTIONS(10141), 1, - sym_unescaped_interpolated_content, - ACTIONS(10164), 1, - anon_sym_SQUOTE, - STATE(5991), 1, + STATE(5544), 1, sym_comment, - STATE(5995), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6878), 1, - sym_expr_interpolated, - [208026] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1985), 1, - anon_sym_RBRACE, - ACTIONS(1987), 1, - sym__entry_separator, - ACTIONS(9858), 1, + ACTIONS(1686), 2, anon_sym_DOT_DOT2, - STATE(5992), 1, - sym_comment, - ACTIONS(9860), 2, + aux_sym_unquoted_token2, + ACTIONS(1688), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [208046] = 5, + [193877] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9928), 1, + ACTIONS(9888), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9890), 1, aux_sym__immediate_decimal_token2, - STATE(5993), 1, + STATE(5545), 1, sym_comment, - ACTIONS(1666), 2, + ACTIONS(1686), 2, anon_sym_RBRACE, aux_sym__unquoted_in_record_token2, - ACTIONS(1668), 2, + ACTIONS(1688), 2, anon_sym_LPAREN2, sym__entry_separator, - [208064] = 7, - ACTIONS(3), 1, + [193898] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7827), 1, - sym__newline, - ACTIONS(7829), 1, - sym__space, - STATE(4678), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(5994), 1, + STATE(5546), 1, sym_comment, - STATE(6057), 1, - aux_sym_ctrl_do_parenthesized_repeat1, - STATE(7381), 1, - sym__flags_parenthesized, - [208086] = 7, - ACTIONS(3), 1, + ACTIONS(1760), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1762), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [193915] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(10139), 1, - anon_sym_LPAREN, - ACTIONS(10141), 1, - sym_unescaped_interpolated_content, - ACTIONS(10166), 1, - anon_sym_SQUOTE, - STATE(5995), 1, + STATE(5547), 1, sym_comment, - STATE(6125), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6878), 1, - sym_expr_interpolated, - [208108] = 5, + ACTIONS(1797), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1799), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [193932] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(220), 1, - aux_sym__block_body_repeat1, - STATE(5996), 1, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(5548), 1, sym_comment, - ACTIONS(139), 2, + STATE(6248), 1, + sym_block, + ACTIONS(9892), 4, sym__newline, anon_sym_SEMI, - ACTIONS(591), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [208126] = 6, + [193951] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9858), 1, - anon_sym_DOT_DOT2, - ACTIONS(10168), 1, - anon_sym_RBRACE, - ACTIONS(10170), 1, - sym__entry_separator, - STATE(5997), 1, + STATE(5549), 1, sym_comment, - ACTIONS(9860), 2, + ACTIONS(1987), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(1989), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [208146] = 6, + sym__entry_separator, + [193968] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1668), 1, - sym__entry_separator, - ACTIONS(9029), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(10172), 1, - anon_sym_DOT, - STATE(5998), 1, + ACTIONS(9764), 1, + anon_sym_LPAREN, + ACTIONS(9894), 1, + anon_sym_DQUOTE2, + STATE(5550), 1, sym_comment, - ACTIONS(1666), 2, + STATE(5568), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6301), 1, + sym_expr_interpolated, + ACTIONS(9766), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [193991] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(9770), 1, + anon_sym_LBRACK, + ACTIONS(9896), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [208166] = 4, - ACTIONS(3), 1, + STATE(5551), 1, + sym_comment, + STATE(5832), 1, + aux_sym_shebang_repeat1, + STATE(6550), 1, + sym_val_list, + STATE(6649), 1, + aux_sym_val_table_repeat1, + [194016] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(5999), 1, + ACTIONS(5113), 1, + anon_sym_DASH2, + STATE(5552), 1, sym_comment, - ACTIONS(1650), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1648), 3, + ACTIONS(5111), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - aux_sym_unquoted_token2, - [208182] = 7, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [194033] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10139), 1, - anon_sym_LPAREN, - ACTIONS(10141), 1, - sym_unescaped_interpolated_content, - ACTIONS(10174), 1, - anon_sym_SQUOTE, - STATE(6000), 1, + ACTIONS(8514), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8857), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8859), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8861), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9898), 1, + aux_sym_unquoted_token3, + STATE(5553), 1, sym_comment, - STATE(6004), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6878), 1, - sym_expr_interpolated, - [208204] = 7, - ACTIONS(3), 1, + STATE(5919), 1, + sym__immediate_decimal, + [194058] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(10139), 1, - anon_sym_LPAREN, - ACTIONS(10141), 1, - sym_unescaped_interpolated_content, - ACTIONS(10176), 1, - anon_sym_SQUOTE, - STATE(6001), 1, + ACTIONS(5117), 1, + anon_sym_DASH2, + STATE(5554), 1, sym_comment, - STATE(6067), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6878), 1, - sym_expr_interpolated, - [208226] = 5, - ACTIONS(3), 1, + ACTIONS(5115), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [194075] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(10178), 1, - aux_sym__immediate_decimal_token2, - STATE(6002), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(9759), 1, + anon_sym_LBRACE, + STATE(4693), 1, + sym_block, + STATE(4694), 1, + sym_val_closure, + STATE(4770), 1, + sym__blosure, + STATE(5436), 1, + aux_sym_shebang_repeat1, + STATE(5555), 1, sym_comment, - ACTIONS(1719), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1721), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [208244] = 6, - ACTIONS(3), 1, + [194100] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9858), 1, + ACTIONS(9900), 1, anon_sym_DOT_DOT2, - ACTIONS(10180), 1, - anon_sym_RBRACE, - ACTIONS(10182), 1, - sym__entry_separator, - STATE(6003), 1, + STATE(5556), 1, sym_comment, - ACTIONS(9860), 2, + ACTIONS(9902), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [208264] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10139), 1, - anon_sym_LPAREN, - ACTIONS(10141), 1, - sym_unescaped_interpolated_content, - ACTIONS(10184), 1, - anon_sym_SQUOTE, - STATE(6004), 1, - sym_comment, - STATE(6125), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6878), 1, - sym_expr_interpolated, - [208286] = 5, - ACTIONS(3), 1, + ACTIONS(1979), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [194119] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9936), 1, - aux_sym__immediate_decimal_token2, - STATE(6005), 1, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(5557), 1, sym_comment, - ACTIONS(1666), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1668), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [208304] = 7, - ACTIONS(3), 1, + STATE(6339), 1, + sym_block, + ACTIONS(9848), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [194138] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(10186), 1, - anon_sym_GT2, - ACTIONS(10188), 1, - anon_sym_AT2, - STATE(5526), 1, - aux_sym__multiple_types_repeat1, - STATE(6006), 1, + ACTIONS(9904), 1, + anon_sym_DOT_DOT2, + STATE(5558), 1, sym_comment, - STATE(6952), 1, - sym_param_cmd, - [208326] = 3, + ACTIONS(9906), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1955), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [194157] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(6007), 1, + ACTIONS(9908), 1, + anon_sym_DOT_DOT2, + STATE(5559), 1, sym_comment, - ACTIONS(8138), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [208340] = 3, + ACTIONS(9910), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1963), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [194176] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(6008), 1, + ACTIONS(9912), 1, + anon_sym_DOT_DOT2, + STATE(5560), 1, sym_comment, - ACTIONS(8158), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [208354] = 7, + ACTIONS(9914), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1971), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [194195] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10139), 1, - anon_sym_LPAREN, - ACTIONS(10141), 1, - sym_unescaped_interpolated_content, - ACTIONS(10190), 1, - anon_sym_SQUOTE, - STATE(6009), 1, + ACTIONS(9916), 1, + anon_sym_DOT, + ACTIONS(9918), 1, + aux_sym__immediate_decimal_token2, + STATE(5561), 1, sym_comment, - STATE(6013), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6878), 1, - sym_expr_interpolated, - [208376] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(1701), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1703), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(10188), 1, - anon_sym_AT2, - ACTIONS(10192), 1, - anon_sym_GT2, - STATE(5535), 1, - aux_sym__multiple_types_repeat1, - STATE(6010), 1, - sym_comment, - STATE(6976), 1, - sym_param_cmd, - [208398] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6011), 1, - sym_comment, - ACTIONS(8162), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [208412] = 7, + [194216] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8826), 1, - sym_identifier, - ACTIONS(10087), 1, - anon_sym_DOLLAR, - STATE(5713), 1, - sym_val_variable, - STATE(6012), 1, + ACTIONS(1883), 1, + anon_sym_DASH2, + STATE(5562), 1, sym_comment, - STATE(6091), 1, - sym__variable_name, - STATE(6985), 1, - sym__assignment_pattern, - [208434] = 7, + ACTIONS(1885), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [194233] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10139), 1, - anon_sym_LPAREN, - ACTIONS(10141), 1, - sym_unescaped_interpolated_content, - ACTIONS(10194), 1, - anon_sym_SQUOTE, - STATE(6013), 1, + ACTIONS(4589), 1, + aux_sym_unquoted_token3, + ACTIONS(8782), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8863), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8865), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8867), 1, + aux_sym__immediate_decimal_token5, + STATE(5563), 1, sym_comment, - STATE(6125), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6878), 1, - sym_expr_interpolated, - [208456] = 7, + STATE(7008), 1, + sym__immediate_decimal, + [194258] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6014), 1, + ACTIONS(9920), 1, + anon_sym_RBRACK, + STATE(5564), 1, sym_comment, - STATE(7184), 1, + STATE(5869), 1, + aux_sym_shebang_repeat1, + STATE(6504), 1, sym_val_list, - STATE(7187), 1, + STATE(6764), 1, aux_sym_val_table_repeat1, - [208478] = 5, + [194283] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(218), 1, - aux_sym__block_body_repeat1, - STATE(6015), 1, + ACTIONS(5622), 1, + anon_sym_DASH2, + STATE(5565), 1, sym_comment, - ACTIONS(139), 2, + ACTIONS(5624), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - ACTIONS(1520), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [208496] = 7, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [194300] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8826), 1, - sym_identifier, - ACTIONS(10087), 1, - anon_sym_DOLLAR, - STATE(5713), 1, - sym_val_variable, - STATE(6016), 1, - sym_comment, - STATE(6091), 1, - sym__variable_name, - STATE(6991), 1, - sym__assignment_pattern, - [208518] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6017), 1, - sym_comment, - ACTIONS(1721), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1719), 3, + ACTIONS(3756), 1, sym__newline, - anon_sym_SEMI, - aux_sym_unquoted_token2, - [208534] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6018), 1, - sym_comment, - ACTIONS(8144), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, + ACTIONS(9759), 1, anon_sym_LBRACE, - [208548] = 6, + STATE(4693), 1, + sym_block, + STATE(4694), 1, + sym_val_closure, + STATE(4717), 1, + sym__blosure, + STATE(5566), 1, + sym_comment, + STATE(5576), 1, + aux_sym_shebang_repeat1, + [194325] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(1813), 1, - anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1955), 1, sym__space, - STATE(6019), 1, + ACTIONS(9922), 1, + anon_sym_DOT_DOT2, + STATE(5567), 1, sym_comment, - ACTIONS(1811), 2, + ACTIONS(1949), 2, sym__newline, anon_sym_SEMI, - [208568] = 7, + ACTIONS(9924), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [194346] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10139), 1, + ACTIONS(9764), 1, anon_sym_LPAREN, - ACTIONS(10141), 1, - sym_unescaped_interpolated_content, - ACTIONS(10196), 1, - anon_sym_SQUOTE, - STATE(6020), 1, + ACTIONS(9926), 1, + anon_sym_DQUOTE2, + STATE(5568), 1, sym_comment, - STATE(6024), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6878), 1, + STATE(5606), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6301), 1, sym_expr_interpolated, - [208590] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10198), 1, - anon_sym_LT, - STATE(6021), 1, - sym_comment, - ACTIONS(7894), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(7898), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [208608] = 5, + ACTIONS(9766), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [194369] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10200), 1, - anon_sym_LT, - STATE(6022), 1, + ACTIONS(1963), 1, + sym__space, + ACTIONS(9928), 1, + anon_sym_DOT_DOT2, + STATE(5569), 1, sym_comment, - ACTIONS(7894), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(7898), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [208626] = 3, + ACTIONS(1957), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(9930), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [194390] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(6023), 1, + ACTIONS(9663), 1, + aux_sym__immediate_decimal_token2, + STATE(5570), 1, sym_comment, - ACTIONS(8166), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, + ACTIONS(1701), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 3, anon_sym_LBRACE, - [208640] = 7, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [194409] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(10139), 1, - anon_sym_LPAREN, - ACTIONS(10141), 1, - sym_unescaped_interpolated_content, - ACTIONS(10202), 1, - anon_sym_SQUOTE, - STATE(6024), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(9759), 1, + anon_sym_LBRACE, + STATE(4693), 1, + sym_block, + STATE(4694), 1, + sym_val_closure, + STATE(4855), 1, + sym__blosure, + STATE(5571), 1, sym_comment, - STATE(6125), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6878), 1, - sym_expr_interpolated, - [208662] = 3, + STATE(5599), 1, + aux_sym_shebang_repeat1, + [194434] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(6025), 1, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + ACTIONS(9932), 1, + anon_sym_DOT_DOT2, + STATE(5572), 1, sym_comment, - ACTIONS(8176), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [208676] = 5, + ACTIONS(1790), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(9934), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [194455] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7062), 1, + aux_sym_unquoted_token3, + ACTIONS(8514), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8857), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8859), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8861), 1, + aux_sym__immediate_decimal_token5, + STATE(5573), 1, + sym_comment, + STATE(5919), 1, + sym__immediate_decimal, + [194480] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6313), 1, - anon_sym_LBRACE, - STATE(6026), 1, + ACTIONS(6436), 1, + anon_sym_DASH2, + STATE(5574), 1, sym_comment, - STATE(7296), 1, - sym_block, - ACTIONS(9848), 3, + ACTIONS(6434), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [208694] = 3, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [194497] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(6027), 1, + ACTIONS(4581), 1, + anon_sym_DOT_DOT2, + ACTIONS(9898), 1, + aux_sym_unquoted_token2, + STATE(5575), 1, sym_comment, - ACTIONS(8380), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [208708] = 5, + ACTIONS(4583), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(9844), 2, + sym_filesize_unit, + sym_duration_unit, + [194518] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6313), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(9759), 1, anon_sym_LBRACE, - STATE(6028), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4693), 1, + sym_block, + STATE(4694), 1, + sym_val_closure, + STATE(4805), 1, + sym__blosure, + STATE(5576), 1, sym_comment, - STATE(7299), 1, + [194543] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(9759), 1, + anon_sym_LBRACE, + STATE(4693), 1, sym_block, - ACTIONS(9848), 3, + STATE(4694), 1, + sym_val_closure, + STATE(4805), 1, + sym__blosure, + STATE(5577), 1, + sym_comment, + STATE(5582), 1, + aux_sym_shebang_repeat1, + [194568] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8782), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8863), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8865), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8867), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9898), 1, + aux_sym_unquoted_token3, + STATE(5578), 1, + sym_comment, + STATE(7008), 1, + sym__immediate_decimal, + [194593] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(9770), 1, + anon_sym_LBRACK, + ACTIONS(9936), 1, + anon_sym_RBRACK, + STATE(5579), 1, + sym_comment, + STATE(5871), 1, + aux_sym_shebang_repeat1, + STATE(6704), 1, + sym_val_list, + STATE(6772), 1, + aux_sym_val_table_repeat1, + [194618] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(2374), 1, + anon_sym_DASH2, + STATE(5580), 1, + sym_comment, + ACTIONS(2376), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [208726] = 4, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [194635] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6029), 1, - sym_comment, - ACTIONS(1792), 2, + ACTIONS(1971), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1790), 3, + ACTIONS(9938), 1, + anon_sym_DOT_DOT2, + STATE(5581), 1, + sym_comment, + ACTIONS(1965), 2, sym__newline, anon_sym_SEMI, - aux_sym_unquoted_token2, - [208742] = 4, + ACTIONS(9940), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [194656] = 8, ACTIONS(245), 1, anon_sym_POUND, - STATE(6030), 1, - sym_comment, - ACTIONS(1666), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1668), 3, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(9759), 1, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208758] = 7, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4693), 1, + sym_block, + STATE(4694), 1, + sym_val_closure, + STATE(4873), 1, + sym__blosure, + STATE(5582), 1, + sym_comment, + [194681] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10139), 1, + ACTIONS(9764), 1, anon_sym_LPAREN, - ACTIONS(10141), 1, - sym_unescaped_interpolated_content, - ACTIONS(10204), 1, - anon_sym_SQUOTE, - STATE(6031), 1, + ACTIONS(9942), 1, + anon_sym_DQUOTE2, + STATE(5583), 1, sym_comment, - STATE(6034), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6878), 1, + STATE(5598), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6301), 1, sym_expr_interpolated, - [208780] = 7, + ACTIONS(9766), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [194704] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3440), 1, - anon_sym_COLON2, - ACTIONS(7003), 1, - anon_sym_DOLLAR, - ACTIONS(8826), 1, - sym_identifier, - STATE(5713), 1, - sym_val_variable, - STATE(6032), 1, + ACTIONS(9828), 1, + sym__newline, + ACTIONS(9830), 1, + anon_sym_SEMI, + ACTIONS(9944), 1, + anon_sym_RPAREN, + STATE(312), 1, + aux_sym__parenthesized_body_repeat1, + STATE(5584), 1, sym_comment, - STATE(7903), 1, - sym__variable_name, - [208802] = 6, - ACTIONS(3), 1, + STATE(5932), 1, + aux_sym__block_body_repeat1, + STATE(6482), 1, + aux_sym_shebang_repeat1, + [194729] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4881), 1, - sym__space, - ACTIONS(10206), 1, - anon_sym_EQ2, - ACTIONS(10208), 1, - sym_short_flag_identifier, - STATE(6033), 1, + ACTIONS(5626), 1, + anon_sym_DASH2, + STATE(5585), 1, sym_comment, - ACTIONS(4883), 2, + ACTIONS(5628), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [208822] = 7, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [194746] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(994), 1, + sym__entry_separator, + ACTIONS(9946), 1, + anon_sym_DOT_DOT2, + STATE(5586), 1, + sym_comment, + ACTIONS(998), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9948), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [194767] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10139), 1, + ACTIONS(9764), 1, anon_sym_LPAREN, - ACTIONS(10141), 1, - sym_unescaped_interpolated_content, - ACTIONS(10210), 1, - anon_sym_SQUOTE, - STATE(6034), 1, + ACTIONS(9950), 1, + anon_sym_DQUOTE2, + STATE(5587), 1, sym_comment, - STATE(6125), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6878), 1, + STATE(5642), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6301), 1, sym_expr_interpolated, - [208844] = 3, + ACTIONS(9766), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [194790] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(6035), 1, + ACTIONS(5121), 1, + anon_sym_DASH2, + STATE(5588), 1, sym_comment, - ACTIONS(8186), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [208858] = 3, + ACTIONS(5119), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [194807] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(6036), 1, + ACTIONS(5125), 1, + anon_sym_DASH2, + STATE(5589), 1, sym_comment, - ACTIONS(8190), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [208872] = 6, - ACTIONS(27), 1, - anon_sym_AT, - ACTIONS(245), 1, + ACTIONS(5123), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [194824] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5978), 1, - aux_sym_attribute_list_repeat1, - STATE(6037), 1, + ACTIONS(7436), 1, + sym__space, + ACTIONS(9818), 1, + anon_sym_DOT_DOT2, + STATE(5590), 1, sym_comment, - STATE(7521), 1, - sym_attribute, - ACTIONS(10212), 2, - anon_sym_export, - anon_sym_def, - [208892] = 3, - ACTIONS(245), 1, + ACTIONS(7434), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(9820), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [194845] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6038), 1, + ACTIONS(7378), 1, + anon_sym_RBRACK, + ACTIONS(7380), 1, + sym__entry_separator, + ACTIONS(8851), 1, + anon_sym_DOT2, + STATE(5081), 1, + aux_sym_cell_path_repeat1, + STATE(5358), 1, + sym_path, + STATE(5591), 1, sym_comment, - ACTIONS(8420), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [208906] = 7, - ACTIONS(245), 1, + STATE(6829), 1, + sym_cell_path, + [194870] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3440), 1, - anon_sym_COLON2, - ACTIONS(10214), 1, - anon_sym_use, - ACTIONS(10216), 1, - anon_sym_list, - ACTIONS(10218), 1, - anon_sym_hide, - ACTIONS(10220), 1, - anon_sym_new, - STATE(6039), 1, + ACTIONS(5585), 1, + aux_sym_unquoted_token3, + ACTIONS(8514), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8857), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8859), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8861), 1, + aux_sym__immediate_decimal_token5, + STATE(5592), 1, sym_comment, - [208928] = 3, - ACTIONS(245), 1, + STATE(5919), 1, + sym__immediate_decimal, + [194895] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6040), 1, + ACTIONS(5585), 1, + aux_sym_unquoted_token3, + ACTIONS(8782), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8863), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8865), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8867), 1, + aux_sym__immediate_decimal_token5, + STATE(5593), 1, sym_comment, - ACTIONS(8424), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [208942] = 6, + STATE(7008), 1, + sym__immediate_decimal, + [194920] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - ACTIONS(2043), 1, - sym__space, - STATE(6041), 1, + ACTIONS(9764), 1, + anon_sym_LPAREN, + ACTIONS(9952), 1, + anon_sym_DQUOTE2, + STATE(5594), 1, sym_comment, - ACTIONS(2041), 2, - sym__newline, - anon_sym_SEMI, - [208962] = 6, - ACTIONS(3), 1, + STATE(5601), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6301), 1, + sym_expr_interpolated, + ACTIONS(9766), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [194943] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1786), 1, - sym__space, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - STATE(6042), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(9770), 1, + anon_sym_LBRACK, + ACTIONS(9954), 1, + anon_sym_RBRACK, + STATE(5595), 1, sym_comment, - ACTIONS(1778), 2, + STATE(5870), 1, + aux_sym_shebang_repeat1, + STATE(6367), 1, + aux_sym_val_table_repeat1, + STATE(6514), 1, + sym_val_list, + [194968] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(3756), 1, sym__newline, - anon_sym_SEMI, - [208982] = 7, + ACTIONS(9770), 1, + anon_sym_LBRACK, + ACTIONS(9956), 1, + anon_sym_RBRACK, + STATE(5596), 1, + sym_comment, + STATE(5861), 1, + aux_sym_shebang_repeat1, + STATE(6379), 1, + sym_val_list, + STATE(6744), 1, + aux_sym_val_table_repeat1, + [194993] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(4815), 1, + anon_sym_DOLLAR, + ACTIONS(9958), 1, + anon_sym_EQ2, + ACTIONS(9960), 1, + sym_short_flag_identifier, + STATE(5597), 1, + sym_comment, + ACTIONS(4817), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [195014] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10139), 1, + ACTIONS(9764), 1, anon_sym_LPAREN, - ACTIONS(10141), 1, - sym_unescaped_interpolated_content, - ACTIONS(10222), 1, - anon_sym_SQUOTE, - STATE(6043), 1, - sym_comment, - STATE(6046), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6878), 1, + ACTIONS(9962), 1, + anon_sym_DQUOTE2, + STATE(5598), 1, + sym_comment, + STATE(5606), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6301), 1, sym_expr_interpolated, - [209004] = 7, + ACTIONS(9766), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [195037] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8826), 1, - sym_identifier, - ACTIONS(10087), 1, - anon_sym_DOLLAR, - STATE(5713), 1, - sym_val_variable, - STATE(6044), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(9759), 1, + anon_sym_LBRACE, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4693), 1, + sym_block, + STATE(4694), 1, + sym_val_closure, + STATE(4874), 1, + sym__blosure, + STATE(5599), 1, sym_comment, - STATE(6091), 1, - sym__variable_name, - STATE(7007), 1, - sym__assignment_pattern, - [209026] = 6, + [195062] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6012), 1, - anon_sym_RBRACK, - ACTIONS(6018), 1, + ACTIONS(1979), 1, sym__entry_separator, - ACTIONS(9858), 1, + ACTIONS(9964), 1, anon_sym_DOT_DOT2, - STATE(6045), 1, + STATE(5600), 1, sym_comment, - ACTIONS(9860), 2, + ACTIONS(1973), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9966), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [209046] = 7, + [195083] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10139), 1, + ACTIONS(9764), 1, anon_sym_LPAREN, - ACTIONS(10141), 1, - sym_unescaped_interpolated_content, - ACTIONS(10224), 1, - anon_sym_SQUOTE, - STATE(6046), 1, + ACTIONS(9968), 1, + anon_sym_DQUOTE2, + STATE(5601), 1, sym_comment, - STATE(6125), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6878), 1, + STATE(5606), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6301), 1, sym_expr_interpolated, - [209068] = 7, - ACTIONS(245), 1, + ACTIONS(9766), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [195106] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8826), 1, - sym_identifier, - ACTIONS(10087), 1, - anon_sym_DOLLAR, - STATE(5713), 1, - sym_val_variable, - STATE(6047), 1, + ACTIONS(7062), 1, + aux_sym_unquoted_token3, + ACTIONS(8782), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8863), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8865), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8867), 1, + aux_sym__immediate_decimal_token5, + STATE(5602), 1, sym_comment, - STATE(6052), 1, - sym__variable_name, - STATE(7084), 1, - sym__assignment_pattern_parenthesized, - [209090] = 6, + STATE(7008), 1, + sym__immediate_decimal, + [195131] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10226), 1, - sym__newline, - ACTIONS(10229), 1, + ACTIONS(3578), 1, sym__space, - STATE(5520), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7381), 1, - sym__flags_parenthesized, - STATE(6048), 2, + STATE(5603), 1, sym_comment, - aux_sym_ctrl_do_parenthesized_repeat1, - [209110] = 3, + ACTIONS(2060), 5, + sym__newline, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_LBRACE, + [195148] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(6049), 1, + ACTIONS(9970), 1, + sym_long_flag_identifier, + ACTIONS(9972), 1, + anon_sym_EQ2, + STATE(5604), 1, sym_comment, - ACTIONS(8428), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [209124] = 3, + ACTIONS(4848), 2, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + ACTIONS(4850), 2, + sym_identifier, + anon_sym_DASH2, + [195169] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(6050), 1, + ACTIONS(2378), 1, + anon_sym_DASH2, + STATE(5605), 1, sym_comment, - ACTIONS(8432), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [209138] = 5, + ACTIONS(2380), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [195186] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10232), 1, - aux_sym__immediate_decimal_token2, - STATE(6051), 1, + ACTIONS(9974), 1, + anon_sym_LPAREN, + ACTIONS(9980), 1, + anon_sym_DQUOTE2, + STATE(6301), 1, + sym_expr_interpolated, + ACTIONS(9977), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + STATE(5606), 2, sym_comment, - ACTIONS(1719), 2, + aux_sym__inter_double_quotes_repeat1, + [195207] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7364), 1, anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1721), 2, - anon_sym_LPAREN2, + ACTIONS(7366), 1, sym__entry_separator, - [209156] = 7, + ACTIONS(8851), 1, + anon_sym_DOT2, + STATE(5081), 1, + aux_sym_cell_path_repeat1, + STATE(5358), 1, + sym_path, + STATE(5607), 1, + sym_comment, + STATE(6881), 1, + sym_cell_path, + [195232] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(10158), 1, - anon_sym_COLON, - ACTIONS(10234), 1, - anon_sym_EQ, - STATE(6052), 1, + ACTIONS(5634), 1, + anon_sym_DASH2, + STATE(5608), 1, sym_comment, - STATE(7207), 1, - aux_sym_shebang_repeat1, - STATE(7565), 1, - sym_param_type, - [209178] = 7, + ACTIONS(5636), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [195249] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10139), 1, - anon_sym_LPAREN, - ACTIONS(10141), 1, - sym_unescaped_interpolated_content, - ACTIONS(10236), 1, - anon_sym_SQUOTE, - STATE(6053), 1, + ACTIONS(6163), 1, + aux_sym_unquoted_token3, + ACTIONS(8514), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8857), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8859), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8861), 1, + aux_sym__immediate_decimal_token5, + STATE(5609), 1, sym_comment, - STATE(6056), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6878), 1, - sym_expr_interpolated, - [209200] = 3, + STATE(5919), 1, + sym__immediate_decimal, + [195274] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(6054), 1, - sym_comment, - ACTIONS(8198), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [209214] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1470), 1, + ACTIONS(1686), 1, aux_sym_unquoted_token2, - ACTIONS(2051), 1, - anon_sym_LPAREN2, - ACTIONS(2053), 1, - sym__space, - STATE(6055), 1, + ACTIONS(9982), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9984), 1, + aux_sym__immediate_decimal_token2, + STATE(5610), 1, sym_comment, - ACTIONS(2049), 2, - sym__newline, - anon_sym_SEMI, - [209234] = 7, + ACTIONS(1688), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [195295] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10139), 1, + ACTIONS(9764), 1, anon_sym_LPAREN, - ACTIONS(10141), 1, - sym_unescaped_interpolated_content, - ACTIONS(10238), 1, - anon_sym_SQUOTE, - STATE(6056), 1, + ACTIONS(9986), 1, + anon_sym_DQUOTE2, + STATE(5611), 1, sym_comment, - STATE(6125), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6878), 1, + STATE(5623), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6301), 1, sym_expr_interpolated, - [209256] = 7, - ACTIONS(3), 1, + ACTIONS(9766), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [195318] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7827), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(7829), 1, - sym__space, - STATE(4601), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(6048), 1, - aux_sym_ctrl_do_parenthesized_repeat1, - STATE(6057), 1, + ACTIONS(9759), 1, + anon_sym_LBRACE, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4693), 1, + sym_block, + STATE(4694), 1, + sym_val_closure, + STATE(4855), 1, + sym__blosure, + STATE(5612), 1, sym_comment, - STATE(7381), 1, - sym__flags_parenthesized, - [209278] = 3, + [195343] = 8, ACTIONS(245), 1, anon_sym_POUND, - STATE(6058), 1, - sym_comment, - ACTIONS(8150), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(9759), 1, anon_sym_LBRACE, - [209292] = 3, + STATE(4693), 1, + sym_block, + STATE(4694), 1, + sym_val_closure, + STATE(4720), 1, + sym__blosure, + STATE(5612), 1, + aux_sym_shebang_repeat1, + STATE(5613), 1, + sym_comment, + [195368] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(6059), 1, + ACTIONS(4581), 1, + anon_sym_DOT_DOT2, + ACTIONS(7062), 1, + aux_sym_unquoted_token2, + STATE(5614), 1, sym_comment, - ACTIONS(8154), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [209306] = 4, + ACTIONS(4583), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(9844), 2, + sym_filesize_unit, + sym_duration_unit, + [195389] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8514), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8857), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8859), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8861), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8881), 1, + aux_sym_unquoted_token3, + STATE(5615), 1, + sym_comment, + STATE(5919), 1, + sym__immediate_decimal, + [195414] = 8, ACTIONS(245), 1, anon_sym_POUND, - STATE(6060), 1, + ACTIONS(9677), 1, + anon_sym_def, + ACTIONS(9679), 1, + anon_sym_extern, + ACTIONS(9681), 1, + anon_sym_module, + ACTIONS(9683), 1, + anon_sym_use, + ACTIONS(9988), 1, + anon_sym_alias, + ACTIONS(9990), 1, + anon_sym_const, + STATE(5616), 1, + sym_comment, + [195439] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(2382), 1, + anon_sym_DASH2, + STATE(5617), 1, + sym_comment, + ACTIONS(2384), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + [195456] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5618), 1, sym_comment, - ACTIONS(1719), 2, + ACTIONS(982), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1721), 3, - anon_sym_LBRACE, + ACTIONS(984), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [209322] = 6, + sym__entry_separator, + [195473] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2061), 1, - anon_sym_LPAREN2, - ACTIONS(2063), 1, - sym__space, - ACTIONS(2065), 1, - aux_sym_unquoted_token2, - STATE(6061), 1, + ACTIONS(8782), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8863), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8865), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8867), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8881), 1, + aux_sym_unquoted_token3, + STATE(5619), 1, sym_comment, - ACTIONS(2059), 2, + STATE(7008), 1, + sym__immediate_decimal, + [195498] = 8, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(3756), 1, sym__newline, - anon_sym_SEMI, - [209342] = 5, + ACTIONS(9770), 1, + anon_sym_LBRACK, + ACTIONS(9992), 1, + anon_sym_RBRACK, + STATE(5620), 1, + sym_comment, + STATE(5862), 1, + aux_sym_shebang_repeat1, + STATE(6405), 1, + sym_val_list, + STATE(6748), 1, + aux_sym_val_table_repeat1, + [195523] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5062), 1, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(9994), 1, + anon_sym_DOT_DOT2, + STATE(5621), 1, + sym_comment, + ACTIONS(1813), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(9996), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [195544] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(2390), 1, anon_sym_DASH2, - ACTIONS(10240), 1, - anon_sym_EQ2, - STATE(6062), 1, + STATE(5622), 1, sym_comment, - ACTIONS(5060), 3, - anon_sym_DOLLAR, + ACTIONS(2392), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [209360] = 7, + [195561] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10139), 1, + ACTIONS(9764), 1, anon_sym_LPAREN, - ACTIONS(10141), 1, - sym_unescaped_interpolated_content, - ACTIONS(10242), 1, - anon_sym_SQUOTE, - STATE(6063), 1, + ACTIONS(9998), 1, + anon_sym_DQUOTE2, + STATE(5606), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(5623), 1, sym_comment, - STATE(6065), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6878), 1, + STATE(6301), 1, sym_expr_interpolated, - [209382] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(10188), 1, - anon_sym_AT2, - ACTIONS(10244), 1, - anon_sym_GT2, - STATE(5522), 1, - aux_sym__multiple_types_repeat1, - STATE(6064), 1, - sym_comment, - STATE(6895), 1, - sym_param_cmd, - [209404] = 7, + ACTIONS(9766), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [195584] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10139), 1, + ACTIONS(9764), 1, anon_sym_LPAREN, - ACTIONS(10141), 1, - sym_unescaped_interpolated_content, - ACTIONS(10246), 1, - anon_sym_SQUOTE, - STATE(6065), 1, + ACTIONS(10000), 1, + anon_sym_DQUOTE2, + STATE(5624), 1, sym_comment, - STATE(6125), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6878), 1, + STATE(5634), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6301), 1, sym_expr_interpolated, - [209426] = 7, + ACTIONS(9766), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [195607] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(10188), 1, - anon_sym_AT2, - ACTIONS(10248), 1, - anon_sym_GT2, - STATE(5524), 1, - aux_sym__multiple_types_repeat1, - STATE(6066), 1, + ACTIONS(10002), 1, + anon_sym_DOT2, + STATE(5901), 1, + sym_path, + STATE(5625), 2, sym_comment, - STATE(6896), 1, - sym_param_cmd, - [209448] = 7, + aux_sym_cell_path_repeat1, + ACTIONS(931), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [195626] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10139), 1, - anon_sym_LPAREN, - ACTIONS(10141), 1, - sym_unescaped_interpolated_content, - ACTIONS(10250), 1, - anon_sym_SQUOTE, - STATE(6067), 1, + ACTIONS(5724), 1, + anon_sym_DOT2, + STATE(5625), 1, + aux_sym_cell_path_repeat1, + STATE(5626), 1, sym_comment, - STATE(6125), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6878), 1, - sym_expr_interpolated, - [209470] = 5, + STATE(5901), 1, + sym_path, + ACTIONS(938), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [195647] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(219), 1, - aux_sym__block_body_repeat1, - STATE(6068), 1, + ACTIONS(10005), 1, + anon_sym_EQ2, + ACTIONS(10007), 1, + sym_short_flag_identifier, + STATE(5627), 1, sym_comment, - ACTIONS(139), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(1522), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [209488] = 7, + ACTIONS(4815), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + ACTIONS(4817), 2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [195668] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(1897), 1, + anon_sym_RBRACE, + ACTIONS(1899), 1, sym__entry_separator, - ACTIONS(10188), 1, - anon_sym_AT2, - ACTIONS(10252), 1, - anon_sym_GT2, - STATE(5577), 1, - aux_sym__multiple_types_repeat1, - STATE(6069), 1, + ACTIONS(8851), 1, + anon_sym_DOT2, + STATE(5081), 1, + aux_sym_cell_path_repeat1, + STATE(5358), 1, + sym_path, + STATE(5628), 1, sym_comment, - STATE(6910), 1, - sym_param_cmd, - [209510] = 7, - ACTIONS(3), 1, + STATE(6821), 1, + sym_cell_path, + [195693] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(10188), 1, - anon_sym_AT2, - ACTIONS(10254), 1, - anon_sym_GT2, - STATE(5579), 1, - aux_sym__multiple_types_repeat1, - STATE(6070), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(9770), 1, + anon_sym_LBRACK, + ACTIONS(10009), 1, + anon_sym_RBRACK, + STATE(5629), 1, sym_comment, - STATE(6913), 1, - sym_param_cmd, - [209532] = 6, - ACTIONS(245), 1, + STATE(5872), 1, + aux_sym_shebang_repeat1, + STATE(6525), 1, + sym_val_list, + STATE(6775), 1, + aux_sym_val_table_repeat1, + [195718] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(1819), 1, - anon_sym_LBRACE, - ACTIONS(10256), 1, + ACTIONS(1955), 1, + sym__entry_separator, + ACTIONS(10011), 1, anon_sym_DOT_DOT2, - STATE(6071), 1, + STATE(5630), 1, sym_comment, - ACTIONS(10258), 2, + ACTIONS(1949), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(10013), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [209552] = 7, + [195739] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10139), 1, - anon_sym_LPAREN, - ACTIONS(10141), 1, - sym_unescaped_interpolated_content, - ACTIONS(10260), 1, - anon_sym_SQUOTE, - STATE(6072), 1, + ACTIONS(6163), 1, + aux_sym_unquoted_token3, + ACTIONS(8782), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8863), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8865), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8867), 1, + aux_sym__immediate_decimal_token5, + STATE(5631), 1, sym_comment, - STATE(6074), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6878), 1, - sym_expr_interpolated, - [209574] = 7, + STATE(7008), 1, + sym__immediate_decimal, + [195764] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(1963), 1, sym__entry_separator, - ACTIONS(10188), 1, - anon_sym_AT2, - ACTIONS(10262), 1, - anon_sym_GT2, - STATE(5591), 1, - aux_sym__multiple_types_repeat1, - STATE(6073), 1, + ACTIONS(10015), 1, + anon_sym_DOT_DOT2, + STATE(5632), 1, sym_comment, - STATE(6919), 1, - sym_param_cmd, - [209596] = 7, + ACTIONS(1957), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(10017), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [195785] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10139), 1, + ACTIONS(9764), 1, anon_sym_LPAREN, - ACTIONS(10141), 1, - sym_unescaped_interpolated_content, - ACTIONS(10264), 1, - anon_sym_SQUOTE, - STATE(6074), 1, + ACTIONS(10019), 1, + anon_sym_DQUOTE2, + STATE(5472), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(5633), 1, sym_comment, - STATE(6125), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6878), 1, + STATE(6301), 1, sym_expr_interpolated, - [209618] = 7, + ACTIONS(9766), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [195808] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(10188), 1, - anon_sym_AT2, - ACTIONS(10266), 1, - anon_sym_GT2, + ACTIONS(9764), 1, + anon_sym_LPAREN, + ACTIONS(10021), 1, + anon_sym_DQUOTE2, STATE(5606), 1, - aux_sym__multiple_types_repeat1, - STATE(6075), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(5634), 1, sym_comment, - STATE(6922), 1, - sym_param_cmd, - [209640] = 5, + STATE(6301), 1, + sym_expr_interpolated, + ACTIONS(9766), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [195831] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6313), 1, - anon_sym_LBRACE, - STATE(6076), 1, - sym_comment, - STATE(6954), 1, - sym_block, - ACTIONS(9906), 3, - ts_builtin_sym_end, + ACTIONS(3756), 1, sym__newline, - anon_sym_SEMI, - [209658] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8826), 1, - sym_identifier, - ACTIONS(10087), 1, - anon_sym_DOLLAR, - STATE(5713), 1, - sym_val_variable, - STATE(6077), 1, - sym_comment, - STATE(6091), 1, - sym__variable_name, - STATE(6818), 1, - sym__assignment_pattern, - [209680] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(10188), 1, - anon_sym_AT2, - ACTIONS(10268), 1, - anon_sym_GT2, - STATE(5457), 1, - aux_sym__multiple_types_repeat1, - STATE(6078), 1, - sym_comment, - STATE(7016), 1, - sym_param_cmd, - [209702] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(10188), 1, - anon_sym_AT2, - ACTIONS(10270), 1, - anon_sym_GT2, - STATE(5459), 1, - aux_sym__multiple_types_repeat1, - STATE(6079), 1, - sym_comment, - STATE(7020), 1, - sym_param_cmd, - [209724] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(10188), 1, - anon_sym_AT2, - ACTIONS(10272), 1, - anon_sym_GT2, - STATE(5622), 1, - aux_sym__multiple_types_repeat1, - STATE(6080), 1, + ACTIONS(9770), 1, + anon_sym_LBRACK, + ACTIONS(10023), 1, + anon_sym_RBRACK, + STATE(5635), 1, sym_comment, - STATE(6927), 1, - sym_param_cmd, - [209746] = 7, + STATE(5866), 1, + aux_sym_shebang_repeat1, + STATE(6451), 1, + sym_val_list, + STATE(6754), 1, + aux_sym_val_table_repeat1, + [195856] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(1971), 1, sym__entry_separator, - ACTIONS(10188), 1, - anon_sym_AT2, - ACTIONS(10274), 1, - anon_sym_GT2, - STATE(5621), 1, - aux_sym__multiple_types_repeat1, - STATE(6081), 1, + ACTIONS(10025), 1, + anon_sym_DOT_DOT2, + STATE(5636), 1, sym_comment, - STATE(6928), 1, - sym_param_cmd, - [209768] = 7, + ACTIONS(1965), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(10027), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [195877] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(927), 1, - anon_sym_COLON2, - ACTIONS(7195), 1, - anon_sym_DOT2, - STATE(1352), 1, - sym_cell_path, - STATE(1450), 1, - sym_path, - STATE(3915), 1, - aux_sym_cell_path_repeat1, - STATE(6082), 1, + ACTIONS(9677), 1, + anon_sym_def, + ACTIONS(9679), 1, + anon_sym_extern, + ACTIONS(9681), 1, + anon_sym_module, + ACTIONS(9683), 1, + anon_sym_use, + ACTIONS(10029), 1, + anon_sym_alias, + ACTIONS(10031), 1, + anon_sym_const, + STATE(5637), 1, sym_comment, - [209790] = 5, + [195902] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9292), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(10276), 1, + ACTIONS(1701), 1, + aux_sym_unquoted_token2, + ACTIONS(10033), 1, anon_sym_DOT, - STATE(6083), 1, + ACTIONS(10035), 1, + aux_sym__immediate_decimal_token2, + STATE(5638), 1, sym_comment, - ACTIONS(1668), 3, + ACTIONS(1703), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [209808] = 5, + [195923] = 8, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1579), 1, - anon_sym_DASH2, - ACTIONS(9061), 1, - aux_sym_unquoted_token2, - STATE(6084), 1, + ACTIONS(9677), 1, + anon_sym_def, + ACTIONS(9679), 1, + anon_sym_extern, + ACTIONS(9681), 1, + anon_sym_module, + ACTIONS(9683), 1, + anon_sym_use, + ACTIONS(10037), 1, + anon_sym_alias, + ACTIONS(10039), 1, + anon_sym_const, + STATE(5639), 1, sym_comment, - ACTIONS(1591), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [209826] = 3, + [195948] = 8, ACTIONS(245), 1, anon_sym_POUND, - STATE(6085), 1, + ACTIONS(9673), 1, + anon_sym_alias, + ACTIONS(9675), 1, + anon_sym_const, + ACTIONS(9677), 1, + anon_sym_def, + ACTIONS(9679), 1, + anon_sym_extern, + ACTIONS(9681), 1, + anon_sym_module, + ACTIONS(9683), 1, + anon_sym_use, + STATE(5640), 1, sym_comment, - ACTIONS(8376), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [209840] = 6, - ACTIONS(3), 1, + [195973] = 8, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2196), 1, - anon_sym_LPAREN2, - ACTIONS(2198), 1, - sym__space, - ACTIONS(2200), 1, - aux_sym_unquoted_token4, - STATE(6086), 1, + ACTIONS(9677), 1, + anon_sym_def, + ACTIONS(9679), 1, + anon_sym_extern, + ACTIONS(9681), 1, + anon_sym_module, + ACTIONS(9683), 1, + anon_sym_use, + ACTIONS(10041), 1, + anon_sym_alias, + ACTIONS(10043), 1, + anon_sym_const, + STATE(5641), 1, sym_comment, - ACTIONS(2194), 2, - sym__newline, - anon_sym_SEMI, - [209860] = 6, + [195998] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(994), 1, - sym__space, - ACTIONS(2190), 1, - anon_sym_LPAREN2, - ACTIONS(2192), 1, - aux_sym_unquoted_token4, - STATE(6087), 1, + ACTIONS(9764), 1, + anon_sym_LPAREN, + ACTIONS(10045), 1, + anon_sym_DQUOTE2, + STATE(5606), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(5642), 1, sym_comment, - ACTIONS(998), 2, - sym__newline, - anon_sym_SEMI, - [209880] = 5, - ACTIONS(245), 1, + STATE(6301), 1, + sym_expr_interpolated, + ACTIONS(9766), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [196021] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6313), 1, - anon_sym_LBRACE, - STATE(6088), 1, + ACTIONS(1919), 1, + anon_sym_RBRACE, + ACTIONS(1921), 1, + sym__entry_separator, + ACTIONS(8851), 1, + anon_sym_DOT2, + STATE(5081), 1, + aux_sym_cell_path_repeat1, + STATE(5358), 1, + sym_path, + STATE(5643), 1, sym_comment, - STATE(6970), 1, - sym_block, - ACTIONS(9906), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [209898] = 5, - ACTIONS(245), 1, + STATE(6818), 1, + sym_cell_path, + [196046] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5080), 1, - anon_sym_DASH2, - ACTIONS(10278), 1, - anon_sym_EQ2, - STATE(6089), 1, + ACTIONS(4589), 1, + aux_sym_unquoted_token3, + ACTIONS(8514), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8857), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8859), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8861), 1, + aux_sym__immediate_decimal_token5, + STATE(5644), 1, sym_comment, - ACTIONS(5078), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [209916] = 3, - ACTIONS(245), 1, + STATE(5919), 1, + sym__immediate_decimal, + [196071] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6090), 1, - sym_comment, - ACTIONS(8208), 5, - anon_sym_EQ, - anon_sym_DASH_GT, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10047), 1, anon_sym_GT2, + ACTIONS(10049), 1, anon_sym_AT2, - anon_sym_LBRACE, - [209930] = 7, + STATE(5281), 1, + aux_sym__multiple_types_repeat1, + STATE(5645), 1, + sym_comment, + STATE(6421), 1, + sym_param_cmd, + [196093] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1477), 1, + aux_sym_unquoted_token2, + ACTIONS(2140), 1, + anon_sym_LPAREN2, + ACTIONS(2142), 1, + sym__space, + STATE(5646), 1, + sym_comment, + ACTIONS(2138), 2, + sym__newline, + anon_sym_SEMI, + [196113] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(10158), 1, - anon_sym_COLON, - ACTIONS(10280), 1, - anon_sym_EQ, - STATE(6091), 1, - sym_comment, - STATE(7207), 1, + ACTIONS(9770), 1, + anon_sym_LBRACK, + STATE(1554), 1, aux_sym_shebang_repeat1, - STATE(7596), 1, - sym_param_type, - [209952] = 7, + STATE(5647), 1, + sym_comment, + STATE(6792), 1, + sym_val_list, + STATE(6796), 1, + aux_sym_val_table_repeat1, + [196135] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_COLON2, - ACTIONS(7003), 1, - anon_sym_DOLLAR, - ACTIONS(8826), 1, - sym_identifier, - STATE(5713), 1, - sym_val_variable, - STATE(6092), 1, + STATE(5648), 1, sym_comment, - STATE(7903), 1, - sym__variable_name, - [209974] = 7, + ACTIONS(1797), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1799), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [196151] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10188), 1, + ACTIONS(10049), 1, anon_sym_AT2, - ACTIONS(10282), 1, + ACTIONS(10051), 1, anon_sym_GT2, - STATE(5472), 1, + STATE(5326), 1, aux_sym__multiple_types_repeat1, - STATE(6093), 1, + STATE(5649), 1, sym_comment, - STATE(7223), 1, + STATE(6622), 1, sym_param_cmd, - [209996] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6094), 1, - sym_comment, - ACTIONS(8214), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [210010] = 7, + [196173] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10188), 1, + ACTIONS(10049), 1, anon_sym_AT2, - ACTIONS(10284), 1, + ACTIONS(10053), 1, anon_sym_GT2, - STATE(5545), 1, + STATE(5331), 1, aux_sym__multiple_types_repeat1, - STATE(6095), 1, + STATE(5650), 1, sym_comment, - STATE(7077), 1, + STATE(6627), 1, sym_param_cmd, - [210032] = 6, + [196195] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - ACTIONS(2204), 1, + ACTIONS(1703), 1, sym__space, - STATE(6096), 1, + ACTIONS(9051), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(10055), 1, + anon_sym_DOT, + STATE(5651), 1, sym_comment, - ACTIONS(2202), 2, + ACTIONS(1701), 2, sym__newline, anon_sym_SEMI, - [210052] = 3, - ACTIONS(245), 1, + [196215] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6097), 1, - sym_comment, - ACTIONS(8436), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10049), 1, anon_sym_AT2, - anon_sym_LBRACE, - [210066] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_COLON2, - ACTIONS(10214), 1, - anon_sym_use, - ACTIONS(10216), 1, - anon_sym_list, - ACTIONS(10218), 1, - anon_sym_hide, - ACTIONS(10220), 1, - anon_sym_new, - STATE(6098), 1, + ACTIONS(10057), 1, + anon_sym_GT2, + STATE(5187), 1, + aux_sym__multiple_types_repeat1, + STATE(5652), 1, sym_comment, - [210088] = 6, - ACTIONS(245), 1, + STATE(6685), 1, + sym_param_cmd, + [196237] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1648), 1, - aux_sym_unquoted_token2, - ACTIONS(10286), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10288), 1, - aux_sym__immediate_decimal_token2, - STATE(6099), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10049), 1, + anon_sym_AT2, + ACTIONS(10059), 1, + anon_sym_GT2, + STATE(5188), 1, + aux_sym__multiple_types_repeat1, + STATE(5653), 1, sym_comment, - ACTIONS(1650), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [210108] = 7, - ACTIONS(245), 1, + STATE(6699), 1, + sym_param_cmd, + [196259] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(10158), 1, - anon_sym_COLON, - ACTIONS(10290), 1, - anon_sym_EQ, - STATE(6100), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10049), 1, + anon_sym_AT2, + ACTIONS(10061), 1, + anon_sym_GT2, + STATE(5189), 1, + aux_sym__multiple_types_repeat1, + STATE(5654), 1, sym_comment, - STATE(7207), 1, - aux_sym_shebang_repeat1, - STATE(7783), 1, - sym_param_type, - [210130] = 7, + STATE(6733), 1, + sym_param_cmd, + [196281] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10188), 1, + ACTIONS(10049), 1, anon_sym_AT2, - ACTIONS(10292), 1, + ACTIONS(10063), 1, anon_sym_GT2, - STATE(5523), 1, + STATE(5191), 1, aux_sym__multiple_types_repeat1, - STATE(6101), 1, + STATE(5655), 1, sym_comment, - STATE(7227), 1, + STATE(6739), 1, sym_param_cmd, - [210152] = 3, - ACTIONS(245), 1, + [196303] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6102), 1, + ACTIONS(2146), 1, + anon_sym_LPAREN2, + ACTIONS(2148), 1, + sym__space, + ACTIONS(2150), 1, + aux_sym_unquoted_token2, + STATE(5656), 1, sym_comment, - ACTIONS(8440), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [210166] = 5, - ACTIONS(245), 1, + ACTIONS(2144), 2, + sym__newline, + anon_sym_SEMI, + [196323] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5062), 1, - anon_sym_DASH2, - ACTIONS(10294), 1, - anon_sym_EQ2, - STATE(6103), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10049), 1, + anon_sym_AT2, + ACTIONS(10065), 1, + anon_sym_GT2, + STATE(5197), 1, + aux_sym__multiple_types_repeat1, + STATE(5657), 1, sym_comment, - ACTIONS(5060), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [210184] = 7, + STATE(6800), 1, + sym_param_cmd, + [196345] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10139), 1, - anon_sym_LPAREN, - ACTIONS(10141), 1, - sym_unescaped_interpolated_content, - ACTIONS(10296), 1, - anon_sym_SQUOTE, - STATE(5973), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6104), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10049), 1, + anon_sym_AT2, + ACTIONS(10067), 1, + anon_sym_GT2, + STATE(5198), 1, + aux_sym__multiple_types_repeat1, + STATE(5658), 1, sym_comment, - STATE(6878), 1, - sym_expr_interpolated, - [210206] = 3, + STATE(6375), 1, + sym_param_cmd, + [196367] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(6105), 1, + STATE(5659), 1, sym_comment, - ACTIONS(8310), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, + ACTIONS(1701), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1703), 3, anon_sym_LBRACE, - [210220] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [196383] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6313), 1, - anon_sym_LBRACE, - STATE(6106), 1, + ACTIONS(8772), 1, + sym_identifier, + ACTIONS(9776), 1, + anon_sym_DOLLAR, + STATE(5360), 1, + sym_val_variable, + STATE(5660), 1, sym_comment, - STATE(6999), 1, - sym_block, - ACTIONS(9846), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [210238] = 7, + STATE(5687), 1, + sym__variable_name, + STATE(6384), 1, + sym__assignment_pattern_parenthesized, + [196405] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6107), 1, + ACTIONS(8772), 1, + sym_identifier, + ACTIONS(9776), 1, + anon_sym_DOLLAR, + STATE(5360), 1, + sym_val_variable, + STATE(5661), 1, sym_comment, - STATE(6898), 1, - sym_val_list, - STATE(7146), 1, - aux_sym_val_table_repeat1, - [210260] = 7, - ACTIONS(3), 1, + STATE(5687), 1, + sym__variable_name, + STATE(6424), 1, + sym__assignment_pattern_parenthesized, + [196427] = 7, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(10139), 1, - anon_sym_LPAREN, - ACTIONS(10141), 1, - sym_unescaped_interpolated_content, - ACTIONS(10298), 1, - anon_sym_SQUOTE, - STATE(6108), 1, + ACTIONS(8772), 1, + sym_identifier, + ACTIONS(9776), 1, + anon_sym_DOLLAR, + STATE(5360), 1, + sym_val_variable, + STATE(5662), 1, sym_comment, - STATE(6124), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6878), 1, - sym_expr_interpolated, - [210282] = 3, + STATE(5687), 1, + sym__variable_name, + STATE(6434), 1, + sym__assignment_pattern_parenthesized, + [196449] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(6109), 1, + ACTIONS(8772), 1, + sym_identifier, + ACTIONS(9776), 1, + anon_sym_DOLLAR, + STATE(5360), 1, + sym_val_variable, + STATE(5663), 1, sym_comment, - ACTIONS(8416), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [210296] = 4, - ACTIONS(245), 1, + STATE(5687), 1, + sym__variable_name, + STATE(6435), 1, + sym__assignment_pattern_parenthesized, + [196471] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6530), 1, - anon_sym_DASH2, - STATE(6110), 1, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + ACTIONS(1813), 1, + sym__space, + STATE(5664), 1, sym_comment, - ACTIONS(6528), 4, - ts_builtin_sym_end, + ACTIONS(1805), 2, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - [210312] = 7, + [196491] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10188), 1, + ACTIONS(10049), 1, anon_sym_AT2, - ACTIONS(10300), 1, + ACTIONS(10069), 1, anon_sym_GT2, - STATE(5551), 1, + STATE(5327), 1, aux_sym__multiple_types_repeat1, - STATE(6111), 1, + STATE(5665), 1, sym_comment, - STATE(7101), 1, + STATE(6533), 1, sym_param_cmd, - [210334] = 3, + [196513] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7832), 1, + sym__newline, + ACTIONS(7834), 1, + sym__space, + STATE(4402), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(5666), 1, + sym_comment, + STATE(5693), 1, + aux_sym_ctrl_do_parenthesized_repeat1, + STATE(6826), 1, + sym__flags_parenthesized, + [196535] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6112), 1, + STATE(5667), 1, sym_comment, - ACTIONS(8294), 5, + ACTIONS(8194), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, - [210348] = 7, + [196549] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6113), 1, + STATE(5668), 1, sym_comment, - STATE(7139), 1, - sym_val_list, - STATE(7152), 1, - aux_sym_val_table_repeat1, - [210370] = 3, + ACTIONS(8166), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [196563] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6114), 1, + STATE(5669), 1, sym_comment, - ACTIONS(8306), 5, + ACTIONS(8198), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, - [210384] = 6, - ACTIONS(3), 1, + [196577] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2093), 1, - sym__space, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(6115), 1, + ACTIONS(10073), 1, + anon_sym_AT, + STATE(6891), 1, + sym_attribute, + ACTIONS(10071), 2, + anon_sym_export, + anon_sym_def, + STATE(5670), 2, sym_comment, - ACTIONS(2089), 2, - sym__newline, - anon_sym_SEMI, - [210404] = 7, + aux_sym_attribute_list_repeat1, + [196595] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10188), 1, + ACTIONS(10049), 1, anon_sym_AT2, - ACTIONS(10302), 1, + ACTIONS(10076), 1, anon_sym_GT2, - STATE(5553), 1, + STATE(5302), 1, aux_sym__multiple_types_repeat1, - STATE(6116), 1, + STATE(5671), 1, sym_comment, - STATE(7110), 1, + STATE(6701), 1, sym_param_cmd, - [210426] = 6, + [196617] = 7, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1885), 1, + sym__table_head_separator, + ACTIONS(10078), 1, + anon_sym_DOT2, + STATE(5672), 1, + sym_comment, + STATE(6034), 1, + aux_sym_cell_path_repeat1, + STATE(6948), 1, + sym_path, + STATE(7031), 1, + sym_cell_path, + [196639] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1811), 1, - anon_sym_RBRACE, - ACTIONS(1819), 1, - sym__entry_separator, - ACTIONS(10304), 1, - anon_sym_DOT_DOT2, - STATE(6117), 1, + ACTIONS(10080), 1, + anon_sym_LPAREN, + ACTIONS(10082), 1, + sym_unescaped_interpolated_content, + ACTIONS(10084), 1, + anon_sym_SQUOTE, + STATE(5673), 1, sym_comment, - ACTIONS(10306), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [210446] = 7, + STATE(5678), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6659), 1, + sym_expr_interpolated, + [196661] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(10158), 1, - anon_sym_COLON, - ACTIONS(10308), 1, + ACTIONS(10086), 1, anon_sym_EQ, - STATE(6118), 1, + ACTIONS(10088), 1, + anon_sym_COLON, + STATE(5674), 1, sym_comment, - STATE(7207), 1, + STATE(6483), 1, aux_sym_shebang_repeat1, - STATE(7777), 1, + STATE(7079), 1, sym_param_type, - [210468] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(10188), 1, - anon_sym_AT2, - ACTIONS(10310), 1, - anon_sym_GT2, - STATE(5561), 1, - aux_sym__multiple_types_repeat1, - STATE(6119), 1, - sym_comment, - STATE(7115), 1, - sym_param_cmd, - [210490] = 5, + [196683] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5080), 1, - anon_sym_DASH2, - ACTIONS(10312), 1, - anon_sym_EQ2, - STATE(6120), 1, - sym_comment, - ACTIONS(5078), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [210508] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6121), 1, - sym_comment, - ACTIONS(7894), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [210522] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6122), 1, + STATE(5675), 1, sym_comment, - ACTIONS(8218), 5, + ACTIONS(8202), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, - [210536] = 4, - ACTIONS(245), 1, + [196697] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6123), 1, + ACTIONS(2164), 1, + anon_sym_LPAREN2, + ACTIONS(2166), 1, + sym__space, + ACTIONS(2168), 1, + aux_sym_unquoted_token4, + STATE(5676), 1, sym_comment, - ACTIONS(1790), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1792), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [210552] = 7, + ACTIONS(2162), 2, + sym__newline, + anon_sym_SEMI, + [196717] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10139), 1, - anon_sym_LPAREN, - ACTIONS(10141), 1, - sym_unescaped_interpolated_content, - ACTIONS(10314), 1, - anon_sym_SQUOTE, - STATE(6124), 1, + ACTIONS(994), 1, + sym__space, + ACTIONS(2104), 1, + anon_sym_LPAREN2, + ACTIONS(2106), 1, + aux_sym_unquoted_token4, + STATE(5677), 1, sym_comment, - STATE(6125), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6878), 1, - sym_expr_interpolated, - [210574] = 6, + ACTIONS(998), 2, + sym__newline, + anon_sym_SEMI, + [196737] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10316), 1, + ACTIONS(10080), 1, anon_sym_LPAREN, - ACTIONS(10319), 1, + ACTIONS(10082), 1, sym_unescaped_interpolated_content, - ACTIONS(10322), 1, + ACTIONS(10090), 1, anon_sym_SQUOTE, - STATE(6878), 1, - sym_expr_interpolated, - STATE(6125), 2, + STATE(5678), 1, sym_comment, + STATE(5712), 1, aux_sym__inter_single_quotes_repeat1, - [210594] = 7, + STATE(6659), 1, + sym_expr_interpolated, + [196759] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10188), 1, + ACTIONS(10049), 1, anon_sym_AT2, - ACTIONS(10324), 1, + ACTIONS(10092), 1, anon_sym_GT2, - STATE(5569), 1, + STATE(5276), 1, aux_sym__multiple_types_repeat1, - STATE(6126), 1, + STATE(5679), 1, sym_comment, - STATE(7123), 1, + STATE(6559), 1, sym_param_cmd, - [210616] = 7, + [196781] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(10326), 1, - anon_sym_PIPE, - ACTIONS(10328), 1, - anon_sym_if, - ACTIONS(10330), 1, - anon_sym_EQ_GT, - STATE(6127), 1, + ACTIONS(6259), 1, + anon_sym_LBRACE, + STATE(5680), 1, sym_comment, - STATE(7171), 1, - aux_sym_match_pattern_repeat1, - STATE(7566), 1, - sym_match_guard, - [210638] = 7, + STATE(6425), 1, + sym_block, + ACTIONS(9850), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [196799] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10188), 1, + ACTIONS(10049), 1, anon_sym_AT2, - ACTIONS(10332), 1, + ACTIONS(10094), 1, anon_sym_GT2, - STATE(5590), 1, + STATE(5303), 1, aux_sym__multiple_types_repeat1, - STATE(6128), 1, + STATE(5681), 1, sym_comment, - STATE(7124), 1, + STATE(6790), 1, sym_param_cmd, - [210660] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6129), 1, - sym_comment, - ACTIONS(8222), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [210674] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1579), 1, - anon_sym_DASH2, - ACTIONS(7082), 1, - aux_sym_unquoted_token2, - STATE(6130), 1, - sym_comment, - ACTIONS(1591), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [210692] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1666), 1, - aux_sym_unquoted_token2, - ACTIONS(10334), 1, - anon_sym_DOT, - ACTIONS(10336), 1, - aux_sym__immediate_decimal_token2, - STATE(6131), 1, - sym_comment, - ACTIONS(1668), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [210712] = 3, + [196821] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6132), 1, + STATE(5682), 1, sym_comment, - ACTIONS(958), 5, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [210726] = 3, + ACTIONS(2078), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2076), 3, + sym__newline, + anon_sym_SEMI, + aux_sym_unquoted_token4, + [196837] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(6133), 1, + STATE(219), 1, + aux_sym__block_body_repeat1, + STATE(5683), 1, sym_comment, - ACTIONS(8226), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [210740] = 3, + ACTIONS(139), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(1511), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [196855] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6134), 1, + STATE(5684), 1, sym_comment, - ACTIONS(8232), 5, + ACTIONS(8206), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, - [210754] = 6, + [196869] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(6259), 1, anon_sym_LBRACE, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - ACTIONS(10338), 1, - anon_sym_DOT_DOT2, - STATE(6135), 1, + STATE(5685), 1, sym_comment, - ACTIONS(10340), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [210774] = 7, + STATE(6684), 1, + sym_block, + ACTIONS(9848), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [196887] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8826), 1, - sym_identifier, - ACTIONS(10087), 1, - anon_sym_DOLLAR, - STATE(5713), 1, - sym_val_variable, - STATE(5982), 1, - sym__variable_name, - STATE(6136), 1, + ACTIONS(6259), 1, + anon_sym_LBRACE, + STATE(5686), 1, sym_comment, - STATE(6285), 1, - sym__assignment_pattern, - [210796] = 7, + STATE(6709), 1, + sym_block, + ACTIONS(9848), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [196905] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8826), 1, - sym_identifier, - ACTIONS(10087), 1, - anon_sym_DOLLAR, - STATE(5713), 1, - sym_val_variable, - STATE(5982), 1, - sym__variable_name, - STATE(6137), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(10088), 1, + anon_sym_COLON, + ACTIONS(10096), 1, + anon_sym_EQ, + STATE(5687), 1, sym_comment, - STATE(6288), 1, - sym__assignment_pattern, - [210818] = 7, + STATE(6483), 1, + aux_sym_shebang_repeat1, + STATE(7088), 1, + sym_param_type, + [196927] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8826), 1, + ACTIONS(8772), 1, sym_identifier, - ACTIONS(10087), 1, + ACTIONS(9776), 1, anon_sym_DOLLAR, - STATE(5713), 1, + STATE(5360), 1, sym_val_variable, - STATE(5982), 1, - sym__variable_name, - STATE(6138), 1, + STATE(5688), 1, sym_comment, - STATE(6296), 1, - sym__assignment_pattern, - [210840] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8826), 1, - sym_identifier, - ACTIONS(10087), 1, - anon_sym_DOLLAR, - STATE(5713), 1, - sym_val_variable, - STATE(5982), 1, + STATE(5768), 1, sym__variable_name, - STATE(6139), 1, - sym_comment, - STATE(6562), 1, + STATE(6789), 1, sym__assignment_pattern, - [210862] = 4, + [196949] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10342), 1, - anon_sym_QMARK2, - STATE(6140), 1, - sym_comment, - ACTIONS(942), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [210878] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10344), 1, - anon_sym_QMARK2, - STATE(6141), 1, + ACTIONS(4848), 1, + sym__space, + ACTIONS(10098), 1, + sym_long_flag_identifier, + ACTIONS(10100), 1, + anon_sym_EQ2, + STATE(5689), 1, sym_comment, - ACTIONS(948), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [210894] = 3, - ACTIONS(3), 1, + ACTIONS(4850), 2, + sym__newline, + anon_sym_SEMI, + [196969] = 5, + ACTIONS(245), 1, anon_sym_POUND, - STATE(6142), 1, + ACTIONS(4908), 1, + anon_sym_DASH2, + ACTIONS(10102), 1, + anon_sym_EQ2, + STATE(5690), 1, sym_comment, - ACTIONS(954), 5, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [210908] = 3, + ACTIONS(4906), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [196987] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6143), 1, + STATE(5691), 1, sym_comment, - ACTIONS(8236), 5, + ACTIONS(7816), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, - [210922] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6144), 1, - sym_comment, - ACTIONS(962), 5, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [210936] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6145), 1, - sym_comment, - ACTIONS(2047), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2045), 3, - sym__newline, - anon_sym_SEMI, - aux_sym_unquoted_token4, - [210952] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6146), 1, - sym_comment, - STATE(6966), 1, - sym_val_list, - STATE(7213), 1, - aux_sym_val_table_repeat1, - [210974] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6147), 1, - sym_comment, - STATE(7218), 1, - aux_sym_val_table_repeat1, - STATE(7243), 1, - sym_val_list, - [210996] = 3, + [197001] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6148), 1, + STATE(5692), 1, sym_comment, - ACTIONS(8240), 5, + ACTIONS(8210), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, - [211010] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8826), 1, - sym_identifier, - ACTIONS(10087), 1, - anon_sym_DOLLAR, - STATE(5713), 1, - sym_val_variable, - STATE(6149), 1, - sym_comment, - STATE(6168), 1, - sym__variable_name, - STATE(6285), 1, - sym__assignment_pattern, - [211032] = 7, - ACTIONS(245), 1, + [197015] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8826), 1, - sym_identifier, - ACTIONS(10087), 1, - anon_sym_DOLLAR, - STATE(5713), 1, - sym_val_variable, - STATE(6150), 1, + ACTIONS(7832), 1, + sym__newline, + ACTIONS(7834), 1, + sym__space, + STATE(4380), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(5693), 1, sym_comment, - STATE(6168), 1, - sym__variable_name, - STATE(6288), 1, - sym__assignment_pattern, - [211054] = 7, + STATE(5790), 1, + aux_sym_ctrl_do_parenthesized_repeat1, + STATE(6826), 1, + sym__flags_parenthesized, + [197037] = 6, + ACTIONS(27), 1, + anon_sym_AT, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8826), 1, - sym_identifier, - ACTIONS(10087), 1, - anon_sym_DOLLAR, - STATE(5713), 1, - sym_val_variable, - STATE(6151), 1, + STATE(5670), 1, + aux_sym_attribute_list_repeat1, + STATE(5694), 1, sym_comment, - STATE(6168), 1, - sym__variable_name, - STATE(6296), 1, - sym__assignment_pattern, - [211076] = 3, + STATE(6891), 1, + sym_attribute, + ACTIONS(10104), 2, + anon_sym_export, + anon_sym_def, + [197057] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6152), 1, + STATE(5695), 1, sym_comment, - ACTIONS(8062), 5, + ACTIONS(8214), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, - [211090] = 3, + [197071] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(6153), 1, + ACTIONS(6470), 1, + anon_sym_DASH2, + STATE(5696), 1, + sym_comment, + ACTIONS(6468), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + [197087] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(5697), 1, sym_comment, - ACTIONS(8066), 5, + ACTIONS(8170), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, - [211104] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4873), 1, - sym__space, - ACTIONS(10346), 1, - sym_long_flag_identifier, - ACTIONS(10348), 1, - anon_sym_EQ2, - STATE(6154), 1, - sym_comment, - ACTIONS(4875), 2, - sym__newline, - anon_sym_SEMI, - [211124] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10139), 1, - anon_sym_LPAREN, - ACTIONS(10141), 1, - sym_unescaped_interpolated_content, - ACTIONS(10350), 1, - anon_sym_SQUOTE, - STATE(6155), 1, - sym_comment, - STATE(6177), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6878), 1, - sym_expr_interpolated, - [211146] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6156), 1, - sym_comment, - ACTIONS(966), 5, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [211160] = 6, + [197101] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1778), 1, + ACTIONS(1805), 1, anon_sym_RBRACE, - ACTIONS(1786), 1, + ACTIONS(1813), 1, sym__entry_separator, - ACTIONS(10352), 1, + ACTIONS(10106), 1, anon_sym_DOT_DOT2, - STATE(6157), 1, + STATE(5698), 1, sym_comment, - ACTIONS(10354), 2, + ACTIONS(10108), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [211180] = 7, + [197121] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10188), 1, + ACTIONS(10049), 1, anon_sym_AT2, - ACTIONS(10356), 1, + ACTIONS(10110), 1, anon_sym_GT2, - STATE(5607), 1, + STATE(5304), 1, aux_sym__multiple_types_repeat1, - STATE(6158), 1, + STATE(5699), 1, sym_comment, - STATE(6947), 1, + STATE(6392), 1, sym_param_cmd, - [211202] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10139), 1, - anon_sym_LPAREN, - ACTIONS(10141), 1, - sym_unescaped_interpolated_content, - ACTIONS(10358), 1, - anon_sym_SQUOTE, - STATE(6159), 1, - sym_comment, - STATE(6215), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6878), 1, - sym_expr_interpolated, - [211224] = 4, + [197143] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6160), 1, + STATE(5700), 1, sym_comment, - ACTIONS(1648), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1650), 3, + ACTIONS(8218), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [211240] = 7, + [197157] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8826), 1, - sym_identifier, - ACTIONS(10087), 1, - anon_sym_DOLLAR, - STATE(5713), 1, - sym_val_variable, - STATE(6118), 1, - sym__variable_name, - STATE(6161), 1, + STATE(5701), 1, sym_comment, - STATE(6285), 1, - sym__assignment_pattern, - [211262] = 7, + ACTIONS(8222), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [197171] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8826), 1, - sym_identifier, - ACTIONS(10087), 1, - anon_sym_DOLLAR, - STATE(5713), 1, - sym_val_variable, - STATE(6118), 1, - sym__variable_name, - STATE(6162), 1, + ACTIONS(1701), 1, + aux_sym_unquoted_token2, + ACTIONS(10035), 1, + aux_sym__immediate_decimal_token2, + STATE(5702), 1, sym_comment, - STATE(6288), 1, - sym__assignment_pattern, - [211284] = 7, + ACTIONS(1703), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [197189] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8826), 1, + ACTIONS(8772), 1, sym_identifier, - ACTIONS(10087), 1, + ACTIONS(9776), 1, anon_sym_DOLLAR, - STATE(5713), 1, + STATE(5360), 1, sym_val_variable, - STATE(6118), 1, - sym__variable_name, - STATE(6163), 1, + STATE(5703), 1, sym_comment, - STATE(6296), 1, + STATE(5768), 1, + sym__variable_name, + STATE(6597), 1, sym__assignment_pattern, - [211306] = 7, + [197211] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8826), 1, - sym_identifier, - ACTIONS(10087), 1, - anon_sym_DOLLAR, - STATE(5713), 1, - sym_val_variable, - STATE(6118), 1, - sym__variable_name, - STATE(6164), 1, + ACTIONS(9184), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(10112), 1, + anon_sym_DOT, + STATE(5704), 1, sym_comment, - STATE(6562), 1, - sym__assignment_pattern, - [211328] = 7, + ACTIONS(1703), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [197229] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8826), 1, - sym_identifier, - ACTIONS(10087), 1, + ACTIONS(3342), 1, + anon_sym_COLON2, + ACTIONS(6947), 1, anon_sym_DOLLAR, - STATE(5713), 1, + ACTIONS(8772), 1, + sym_identifier, + STATE(5360), 1, sym_val_variable, - STATE(6165), 1, + STATE(5705), 1, sym_comment, - STATE(6168), 1, + STATE(7355), 1, sym__variable_name, - STATE(6562), 1, - sym__assignment_pattern, - [211350] = 5, - ACTIONS(245), 1, + [197251] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6313), 1, - anon_sym_LBRACE, - STATE(6166), 1, + STATE(5706), 1, sym_comment, - STATE(6795), 1, - sym_block, - ACTIONS(9828), 3, - ts_builtin_sym_end, + ACTIONS(1703), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1701), 3, sym__newline, anon_sym_SEMI, - [211368] = 3, + aux_sym_unquoted_token2, + [197267] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6167), 1, + STATE(5707), 1, sym_comment, - ACTIONS(8076), 5, + ACTIONS(8174), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, - [211382] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(10158), 1, - anon_sym_COLON, - ACTIONS(10360), 1, - anon_sym_EQ, - STATE(6168), 1, - sym_comment, - STATE(7207), 1, - aux_sym_shebang_repeat1, - STATE(7940), 1, - sym_param_type, - [211404] = 7, + [197281] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6169), 1, + STATE(5708), 1, sym_comment, - STATE(7065), 1, - sym_val_list, - STATE(7245), 1, - aux_sym_val_table_repeat1, - [211426] = 7, - ACTIONS(245), 1, + ACTIONS(8178), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [197295] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6170), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10049), 1, + anon_sym_AT2, + ACTIONS(10114), 1, + anon_sym_GT2, + STATE(5182), 1, + aux_sym__multiple_types_repeat1, + STATE(5709), 1, sym_comment, - STATE(7070), 1, - sym_val_list, - STATE(7248), 1, - aux_sym_val_table_repeat1, - [211448] = 7, + STATE(6594), 1, + sym_param_cmd, + [197317] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10188), 1, + ACTIONS(10049), 1, anon_sym_AT2, - ACTIONS(10362), 1, + ACTIONS(10116), 1, anon_sym_GT2, - STATE(5625), 1, + STATE(5190), 1, aux_sym__multiple_types_repeat1, - STATE(6171), 1, + STATE(5710), 1, sym_comment, - STATE(7030), 1, + STATE(6595), 1, sym_param_cmd, - [211470] = 3, + [197339] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(6172), 1, - sym_comment, - ACTIONS(8080), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, + ACTIONS(6259), 1, anon_sym_LBRACE, - [211484] = 5, + STATE(5711), 1, + sym_comment, + STATE(6619), 1, + sym_block, + ACTIONS(9757), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [197357] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10118), 1, + anon_sym_LPAREN, + ACTIONS(10121), 1, + sym_unescaped_interpolated_content, + ACTIONS(10124), 1, + anon_sym_SQUOTE, + STATE(6659), 1, + sym_expr_interpolated, + STATE(5712), 2, + sym_comment, + aux_sym__inter_single_quotes_repeat1, + [197377] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5713), 1, + sym_comment, + ACTIONS(1688), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1686), 3, + sym__newline, + anon_sym_SEMI, + aux_sym_unquoted_token2, + [197393] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1666), 1, + ACTIONS(1686), 1, aux_sym_unquoted_token2, - ACTIONS(9910), 1, + ACTIONS(10126), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10128), 1, aux_sym__immediate_decimal_token2, - STATE(6173), 1, + STATE(5714), 1, sym_comment, - ACTIONS(1668), 3, + ACTIONS(1688), 2, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, - [211502] = 3, - ACTIONS(245), 1, + [197413] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6174), 1, - sym_comment, - ACTIONS(8246), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10049), 1, anon_sym_AT2, - anon_sym_LBRACE, - [211516] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6175), 1, + ACTIONS(10130), 1, + anon_sym_GT2, + STATE(5209), 1, + aux_sym__multiple_types_repeat1, + STATE(5715), 1, sym_comment, - STATE(7200), 1, - sym_val_list, - STATE(7255), 1, - aux_sym_val_table_repeat1, - [211538] = 7, - ACTIONS(245), 1, + STATE(6606), 1, + sym_param_cmd, + [197435] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6176), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10049), 1, + anon_sym_AT2, + ACTIONS(10132), 1, + anon_sym_GT2, + STATE(5212), 1, + aux_sym__multiple_types_repeat1, + STATE(5716), 1, sym_comment, - STATE(7225), 1, - sym_val_list, - STATE(7257), 1, - aux_sym_val_table_repeat1, - [211560] = 7, + STATE(6608), 1, + sym_param_cmd, + [197457] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10139), 1, - anon_sym_LPAREN, - ACTIONS(10141), 1, - sym_unescaped_interpolated_content, - ACTIONS(10364), 1, - anon_sym_SQUOTE, - STATE(6125), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6177), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10049), 1, + anon_sym_AT2, + ACTIONS(10134), 1, + anon_sym_GT2, + STATE(5213), 1, + aux_sym__multiple_types_repeat1, + STATE(5717), 1, sym_comment, - STATE(6878), 1, - sym_expr_interpolated, - [211582] = 7, - ACTIONS(245), 1, + STATE(6609), 1, + sym_param_cmd, + [197479] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6178), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10049), 1, + anon_sym_AT2, + ACTIONS(10136), 1, + anon_sym_GT2, + STATE(5214), 1, + aux_sym__multiple_types_repeat1, + STATE(5718), 1, sym_comment, - STATE(6790), 1, - sym_val_list, - STATE(7261), 1, - aux_sym_val_table_repeat1, - [211604] = 7, + STATE(6611), 1, + sym_param_cmd, + [197501] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6179), 1, + STATE(5719), 1, sym_comment, - STATE(6796), 1, - sym_val_list, - STATE(7263), 1, - aux_sym_val_table_repeat1, - [211626] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1989), 1, - anon_sym_RBRACE, - ACTIONS(1991), 1, - sym__entry_separator, - ACTIONS(9858), 1, + ACTIONS(1686), 2, anon_sym_DOT_DOT2, - STATE(6180), 1, - sym_comment, - ACTIONS(9860), 2, + aux_sym_unquoted_token2, + ACTIONS(1688), 3, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [211646] = 3, - ACTIONS(245), 1, + [197517] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6181), 1, - sym_comment, - ACTIONS(8084), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10049), 1, anon_sym_AT2, - anon_sym_LBRACE, - [211660] = 7, - ACTIONS(245), 1, + ACTIONS(10138), 1, + anon_sym_GT2, + STATE(5219), 1, + aux_sym__multiple_types_repeat1, + STATE(5720), 1, + sym_comment, + STATE(6614), 1, + sym_param_cmd, + [197539] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6182), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10049), 1, + anon_sym_AT2, + ACTIONS(10140), 1, + anon_sym_GT2, + STATE(5221), 1, + aux_sym__multiple_types_repeat1, + STATE(5721), 1, sym_comment, - STATE(6822), 1, - sym_val_list, - STATE(7268), 1, - aux_sym_val_table_repeat1, - [211682] = 7, + STATE(6615), 1, + sym_param_cmd, + [197561] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6183), 1, + ACTIONS(1760), 1, + aux_sym_unquoted_token2, + ACTIONS(10142), 1, + aux_sym__immediate_decimal_token2, + STATE(5722), 1, sym_comment, - STATE(6828), 1, - sym_val_list, - STATE(7271), 1, - aux_sym_val_table_repeat1, - [211704] = 7, - ACTIONS(245), 1, + ACTIONS(1762), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [197579] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(2070), 1, + anon_sym_LPAREN2, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + ACTIONS(2130), 1, + sym__space, + STATE(5723), 1, + sym_comment, + ACTIONS(2128), 2, sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6184), 1, + anon_sym_SEMI, + [197599] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2070), 1, + anon_sym_LPAREN2, + ACTIONS(2072), 1, + sym__space, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(5724), 1, sym_comment, - STATE(6853), 1, - sym_val_list, - STATE(7275), 1, - aux_sym_val_table_repeat1, - [211726] = 7, + ACTIONS(2068), 2, + sym__newline, + anon_sym_SEMI, + [197619] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6185), 1, + ACTIONS(8784), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8786), 1, + aux_sym__immediate_decimal_token5, + STATE(5725), 1, sym_comment, - STATE(6859), 1, - sym_val_list, - STATE(7278), 1, - aux_sym_val_table_repeat1, - [211748] = 3, - ACTIONS(245), 1, + STATE(7161), 1, + sym__immediate_decimal, + ACTIONS(8782), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [197639] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6186), 1, + ACTIONS(1782), 1, + anon_sym_RBRACE, + ACTIONS(1790), 1, + sym__entry_separator, + ACTIONS(10144), 1, + anon_sym_DOT_DOT2, + STATE(5726), 1, sym_comment, - ACTIONS(8130), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [211762] = 7, + ACTIONS(10146), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [197659] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(6259), 1, + anon_sym_LBRACE, + STATE(5727), 1, + sym_comment, + STATE(6621), 1, + sym_block, + ACTIONS(9757), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6187), 1, + anon_sym_SEMI, + [197677] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5728), 1, sym_comment, - STATE(6889), 1, - sym_val_list, - STATE(7286), 1, - aux_sym_val_table_repeat1, - [211784] = 3, + ACTIONS(1762), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1760), 3, + sym__newline, + anon_sym_SEMI, + aux_sym_unquoted_token2, + [197693] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6188), 1, + STATE(5729), 1, sym_comment, - ACTIONS(8088), 5, + ACTIONS(8226), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, - [211798] = 7, + [197707] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6189), 1, - sym_comment, - STATE(6905), 1, - sym_val_list, - STATE(7292), 1, - aux_sym_val_table_repeat1, - [211820] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6190), 1, + ACTIONS(10148), 1, + anon_sym_PIPE, + ACTIONS(10150), 1, + anon_sym_if, + ACTIONS(10152), 1, + anon_sym_EQ_GT, + STATE(5730), 1, sym_comment, - STATE(6911), 1, - sym_val_list, - STATE(7294), 1, - aux_sym_val_table_repeat1, - [211842] = 7, + STATE(6372), 1, + aux_sym_match_pattern_repeat1, + STATE(7379), 1, + sym_match_guard, + [197729] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(10188), 1, - anon_sym_AT2, - ACTIONS(10366), 1, - anon_sym_GT2, - STATE(5528), 1, - aux_sym__multiple_types_repeat1, - STATE(6191), 1, + STATE(5731), 1, sym_comment, - STATE(7120), 1, - sym_param_cmd, - [211864] = 3, + ACTIONS(1799), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1797), 3, + sym__newline, + anon_sym_SEMI, + aux_sym_unquoted_token2, + [197745] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6192), 1, + STATE(5732), 1, sym_comment, - ACTIONS(8092), 5, + ACTIONS(8230), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, - [211878] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6193), 1, - sym_comment, - STATE(6934), 1, - sym_val_list, - STATE(7301), 1, - aux_sym_val_table_repeat1, - [211900] = 7, + [197759] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6194), 1, + STATE(5733), 1, sym_comment, - STATE(6940), 1, - sym_val_list, - STATE(7303), 1, - aux_sym_val_table_repeat1, - [211922] = 7, + ACTIONS(8234), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [197773] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(10188), 1, - anon_sym_AT2, - ACTIONS(10368), 1, - anon_sym_GT2, - STATE(5511), 1, - aux_sym__multiple_types_repeat1, - STATE(6195), 1, + ACTIONS(10080), 1, + anon_sym_LPAREN, + ACTIONS(10082), 1, + sym_unescaped_interpolated_content, + ACTIONS(10154), 1, + anon_sym_SQUOTE, + STATE(5734), 1, sym_comment, - STATE(7188), 1, - sym_param_cmd, - [211944] = 3, + STATE(5740), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6659), 1, + sym_expr_interpolated, + [197795] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6196), 1, + STATE(5735), 1, sym_comment, - ACTIONS(8108), 5, + ACTIONS(8238), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, - [211958] = 7, + [197809] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6197), 1, + STATE(5736), 1, sym_comment, - STATE(6958), 1, - sym_val_list, - STATE(7310), 1, - aux_sym_val_table_repeat1, - [211980] = 7, + ACTIONS(8242), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [197823] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, + ACTIONS(3756), 1, sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6198), 1, - sym_comment, - STATE(6964), 1, - sym_val_list, - STATE(7312), 1, - aux_sym_val_table_repeat1, - [212002] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1977), 1, - anon_sym_RBRACE, - ACTIONS(1983), 1, - sym__entry_separator, - ACTIONS(9858), 1, - anon_sym_DOT_DOT2, - STATE(6199), 1, + ACTIONS(10088), 1, + anon_sym_COLON, + ACTIONS(10156), 1, + anon_sym_EQ, + STATE(5737), 1, sym_comment, - ACTIONS(9860), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [212022] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, + STATE(6483), 1, aux_sym_shebang_repeat1, - STATE(6200), 1, - sym_comment, - STATE(7192), 1, - sym_val_list, - STATE(7316), 1, - aux_sym_val_table_repeat1, - [212044] = 7, + STATE(7156), 1, + sym_param_type, + [197845] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6201), 1, + ACTIONS(8772), 1, + sym_identifier, + ACTIONS(9776), 1, + anon_sym_DOLLAR, + STATE(5360), 1, + sym_val_variable, + STATE(5738), 1, sym_comment, - STATE(7197), 1, - sym_val_list, - STATE(7318), 1, - aux_sym_val_table_repeat1, - [212066] = 7, + STATE(5768), 1, + sym__variable_name, + STATE(6418), 1, + sym__assignment_pattern, + [197867] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6202), 1, + ACTIONS(4940), 1, + anon_sym_DASH2, + ACTIONS(10158), 1, + anon_sym_EQ2, + STATE(5739), 1, sym_comment, - STATE(6982), 1, - sym_val_list, - STATE(7323), 1, - aux_sym_val_table_repeat1, - [212088] = 7, - ACTIONS(245), 1, + ACTIONS(4938), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [197885] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6203), 1, + ACTIONS(10080), 1, + anon_sym_LPAREN, + ACTIONS(10082), 1, + sym_unescaped_interpolated_content, + ACTIONS(10160), 1, + anon_sym_SQUOTE, + STATE(5712), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5740), 1, sym_comment, - STATE(6987), 1, - sym_val_list, - STATE(7325), 1, - aux_sym_val_table_repeat1, - [212110] = 7, + STATE(6659), 1, + sym_expr_interpolated, + [197907] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6204), 1, + ACTIONS(1790), 1, + anon_sym_LBRACE, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + ACTIONS(10162), 1, + anon_sym_DOT_DOT2, + STATE(5741), 1, sym_comment, - STATE(7001), 1, - sym_val_list, - STATE(7329), 1, - aux_sym_val_table_repeat1, - [212132] = 7, + ACTIONS(10164), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [197927] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6205), 1, + STATE(5742), 1, sym_comment, - STATE(7005), 1, - sym_val_list, - STATE(7332), 1, - aux_sym_val_table_repeat1, - [212154] = 7, + ACTIONS(8246), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [197941] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6206), 1, + ACTIONS(3342), 1, + anon_sym_COLON2, + ACTIONS(10166), 1, + anon_sym_use, + ACTIONS(10168), 1, + anon_sym_list, + ACTIONS(10170), 1, + anon_sym_hide, + ACTIONS(10172), 1, + anon_sym_new, + STATE(5743), 1, sym_comment, - STATE(7021), 1, - sym_val_list, - STATE(7336), 1, - aux_sym_val_table_repeat1, - [212176] = 7, + [197963] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6207), 1, + ACTIONS(927), 1, + anon_sym_COLON2, + ACTIONS(7141), 1, + anon_sym_DOT2, + STATE(1312), 1, + sym_cell_path, + STATE(1374), 1, + sym_path, + STATE(3715), 1, + aux_sym_cell_path_repeat1, + STATE(5744), 1, sym_comment, - STATE(7026), 1, - sym_val_list, - STATE(7338), 1, - aux_sym_val_table_repeat1, - [212198] = 7, + [197985] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6208), 1, + ACTIONS(1616), 1, + anon_sym_DASH2, + ACTIONS(8881), 1, + aux_sym_unquoted_token2, + STATE(5745), 1, sym_comment, - STATE(7034), 1, - sym_val_list, - STATE(7342), 1, - aux_sym_val_table_repeat1, - [212220] = 7, - ACTIONS(245), 1, + ACTIONS(1628), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [198003] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6209), 1, + ACTIONS(1997), 1, + anon_sym_RBRACE, + ACTIONS(1999), 1, + sym__entry_separator, + ACTIONS(9946), 1, + anon_sym_DOT_DOT2, + STATE(5746), 1, sym_comment, - STATE(7039), 1, - sym_val_list, - STATE(7344), 1, - aux_sym_val_table_repeat1, - [212242] = 7, + ACTIONS(9948), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [198023] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6210), 1, + ACTIONS(1701), 1, + aux_sym_unquoted_token2, + ACTIONS(10174), 1, + anon_sym_DOT, + ACTIONS(10176), 1, + aux_sym__immediate_decimal_token2, + STATE(5747), 1, sym_comment, - STATE(7050), 1, - sym_val_list, - STATE(7349), 1, - aux_sym_val_table_repeat1, - [212264] = 7, - ACTIONS(245), 1, + ACTIONS(1703), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [198043] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6211), 1, + ACTIONS(10080), 1, + anon_sym_LPAREN, + ACTIONS(10082), 1, + sym_unescaped_interpolated_content, + ACTIONS(10178), 1, + anon_sym_SQUOTE, + STATE(5748), 1, sym_comment, - STATE(7056), 1, - sym_val_list, - STATE(7352), 1, - aux_sym_val_table_repeat1, - [212286] = 7, - ACTIONS(245), 1, + STATE(5752), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6659), 1, + sym_expr_interpolated, + [198065] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8826), 1, - sym_identifier, - ACTIONS(10087), 1, - anon_sym_DOLLAR, - STATE(5713), 1, - sym_val_variable, - STATE(6100), 1, - sym__variable_name, - STATE(6212), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10049), 1, + anon_sym_AT2, + ACTIONS(10180), 1, + anon_sym_GT2, + STATE(5235), 1, + aux_sym__multiple_types_repeat1, + STATE(5749), 1, sym_comment, - STATE(6820), 1, - sym__assignment_pattern_parenthesized, - [212308] = 7, + STATE(6526), 1, + sym_param_cmd, + [198087] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8826), 1, - sym_identifier, - ACTIONS(10087), 1, - anon_sym_DOLLAR, - STATE(5713), 1, - sym_val_variable, - STATE(6100), 1, - sym__variable_name, - STATE(6213), 1, + STATE(5750), 1, sym_comment, - STATE(6837), 1, - sym__assignment_pattern_parenthesized, - [212330] = 7, - ACTIONS(245), 1, + ACTIONS(8250), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [198101] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8826), 1, - sym_identifier, - ACTIONS(10087), 1, - anon_sym_DOLLAR, - STATE(5713), 1, - sym_val_variable, - STATE(6100), 1, - sym__variable_name, - STATE(6214), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10049), 1, + anon_sym_AT2, + ACTIONS(10182), 1, + anon_sym_GT2, + STATE(5255), 1, + aux_sym__multiple_types_repeat1, + STATE(5751), 1, sym_comment, - STATE(6838), 1, - sym__assignment_pattern_parenthesized, - [212352] = 7, + STATE(6540), 1, + sym_param_cmd, + [198123] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10139), 1, + ACTIONS(10080), 1, anon_sym_LPAREN, - ACTIONS(10141), 1, + ACTIONS(10082), 1, sym_unescaped_interpolated_content, - ACTIONS(10370), 1, + ACTIONS(10184), 1, anon_sym_SQUOTE, - STATE(6125), 1, + STATE(5712), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6215), 1, + STATE(5752), 1, sym_comment, - STATE(6878), 1, + STATE(6659), 1, sym_expr_interpolated, - [212374] = 7, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(8826), 1, - sym_identifier, - ACTIONS(10087), 1, - anon_sym_DOLLAR, - STATE(5713), 1, - sym_val_variable, - STATE(6100), 1, - sym__variable_name, - STATE(6216), 1, - sym_comment, - STATE(7084), 1, - sym__assignment_pattern_parenthesized, - [212396] = 7, + [198145] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6217), 1, + STATE(5753), 1, sym_comment, - STATE(7074), 1, - sym_val_list, - STATE(7086), 1, - aux_sym_val_table_repeat1, - [212418] = 3, + ACTIONS(8254), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [198159] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6218), 1, + STATE(5754), 1, sym_comment, - ACTIONS(8134), 5, + ACTIONS(8258), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, - [212432] = 6, + [198173] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1668), 1, - sym__space, - ACTIONS(9102), 1, + ACTIONS(1703), 1, + sym__entry_separator, + ACTIONS(9038), 1, aux_sym__immediate_decimal_token2, - ACTIONS(10372), 1, + ACTIONS(10186), 1, anon_sym_DOT, - STATE(6219), 1, + STATE(5755), 1, sym_comment, - ACTIONS(1666), 2, - sym__newline, - anon_sym_SEMI, - [212452] = 5, - ACTIONS(245), 1, + ACTIONS(1701), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [198193] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1719), 1, - aux_sym_unquoted_token2, - ACTIONS(10374), 1, - aux_sym__immediate_decimal_token2, - STATE(6220), 1, + ACTIONS(10080), 1, + anon_sym_LPAREN, + ACTIONS(10082), 1, + sym_unescaped_interpolated_content, + ACTIONS(10188), 1, + anon_sym_SQUOTE, + STATE(5756), 1, sym_comment, - ACTIONS(1721), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [212470] = 7, - ACTIONS(245), 1, + STATE(5844), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6659), 1, + sym_expr_interpolated, + [198215] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1841), 1, - sym__table_head_separator, - ACTIONS(10145), 1, - anon_sym_DOT2, - STATE(6221), 1, + ACTIONS(10080), 1, + anon_sym_LPAREN, + ACTIONS(10082), 1, + sym_unescaped_interpolated_content, + ACTIONS(10190), 1, + anon_sym_SQUOTE, + STATE(5757), 1, sym_comment, - STATE(6301), 1, - aux_sym_cell_path_repeat1, - STATE(7513), 1, - sym_path, - STATE(7637), 1, - sym_cell_path, - [212492] = 3, + STATE(5760), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6659), 1, + sym_expr_interpolated, + [198237] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6222), 1, + STATE(5758), 1, sym_comment, - ACTIONS(8250), 5, + ACTIONS(8182), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, - [212506] = 3, + [198251] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6223), 1, + STATE(5759), 1, sym_comment, - ACTIONS(8444), 5, + ACTIONS(8262), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, - [212520] = 6, + [198265] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10378), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6224), 1, + ACTIONS(10080), 1, + anon_sym_LPAREN, + ACTIONS(10082), 1, + sym_unescaped_interpolated_content, + ACTIONS(10192), 1, + anon_sym_SQUOTE, + STATE(5712), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5760), 1, sym_comment, - [212539] = 5, - ACTIONS(3), 1, + STATE(6659), 1, + sym_expr_interpolated, + [198287] = 7, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(10380), 1, - anon_sym_DQUOTE, - STATE(6225), 1, + ACTIONS(8772), 1, + sym_identifier, + ACTIONS(9776), 1, + anon_sym_DOLLAR, + STATE(5360), 1, + sym_val_variable, + STATE(5761), 1, sym_comment, - STATE(6717), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, - sym__escaped_str_content, - sym_escape_sequence, - [212556] = 6, - ACTIONS(3), 1, + STATE(5776), 1, + sym__variable_name, + STATE(5900), 1, + sym__assignment_pattern, + [198309] = 7, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2059), 1, - anon_sym_RBRACK, - ACTIONS(2061), 1, - anon_sym_LPAREN2, - ACTIONS(2063), 1, - sym__entry_separator, - ACTIONS(2065), 1, - aux_sym__unquoted_in_list_token2, - STATE(6226), 1, + ACTIONS(8772), 1, + sym_identifier, + ACTIONS(9776), 1, + anon_sym_DOLLAR, + STATE(5360), 1, + sym_val_variable, + STATE(5762), 1, sym_comment, - [212575] = 6, - ACTIONS(3), 1, + STATE(5776), 1, + sym__variable_name, + STATE(6271), 1, + sym__assignment_pattern, + [198331] = 7, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_LPAREN2, - ACTIONS(10384), 1, - anon_sym_RBRACK, - ACTIONS(10386), 1, - sym__entry_separator, - STATE(6227), 1, + ACTIONS(8772), 1, + sym_identifier, + ACTIONS(9776), 1, + anon_sym_DOLLAR, + STATE(5360), 1, + sym_val_variable, + STATE(5763), 1, sym_comment, - STATE(7568), 1, - sym__expr_parenthesized_immediate, - [212594] = 4, + STATE(5776), 1, + sym__variable_name, + STATE(6272), 1, + sym__assignment_pattern, + [198353] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(6228), 1, + ACTIONS(10080), 1, + anon_sym_LPAREN, + ACTIONS(10082), 1, + sym_unescaped_interpolated_content, + ACTIONS(10194), 1, + anon_sym_SQUOTE, + STATE(5764), 1, sym_comment, - ACTIONS(1666), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1668), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [212609] = 6, + STATE(5767), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6659), 1, + sym_expr_interpolated, + [198375] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1788), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2041), 1, - anon_sym_RBRACK, - ACTIONS(2043), 1, + ACTIONS(2001), 1, + anon_sym_RBRACE, + ACTIONS(2003), 1, sym__entry_separator, - STATE(6229), 1, + ACTIONS(9946), 1, + anon_sym_DOT_DOT2, + STATE(5765), 1, sym_comment, - [212628] = 4, - ACTIONS(3), 1, + ACTIONS(9948), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [198395] = 5, + ACTIONS(245), 1, anon_sym_POUND, - STATE(6230), 1, + STATE(220), 1, + aux_sym__block_body_repeat1, + STATE(5766), 1, sym_comment, - ACTIONS(1648), 2, + ACTIONS(139), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(1520), 2, + anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1650), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [212643] = 6, + [198413] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1778), 1, - anon_sym_RBRACK, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1786), 1, - sym__entry_separator, - ACTIONS(1788), 1, - aux_sym__unquoted_in_list_token2, - STATE(6231), 1, + ACTIONS(10080), 1, + anon_sym_LPAREN, + ACTIONS(10082), 1, + sym_unescaped_interpolated_content, + ACTIONS(10196), 1, + anon_sym_SQUOTE, + STATE(5712), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5767), 1, sym_comment, - [212662] = 5, - ACTIONS(3), 1, + STATE(6659), 1, + sym_expr_interpolated, + [198435] = 7, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(10388), 1, - anon_sym_COLON2, - STATE(6232), 1, - sym_comment, - STATE(6771), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(7621), 2, + ACTIONS(3756), 1, sym__newline, - sym__space, - [212679] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2294), 1, - sym__entry_separator, - ACTIONS(10390), 1, - anon_sym_LBRACK2, - STATE(6233), 1, + ACTIONS(10088), 1, + anon_sym_COLON, + ACTIONS(10198), 1, + anon_sym_EQ, + STATE(5768), 1, sym_comment, - ACTIONS(2290), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [212696] = 6, + STATE(6483), 1, + aux_sym_shebang_repeat1, + STATE(7000), 1, + sym_param_type, + [198457] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1581), 1, - anon_sym_LPAREN2, - ACTIONS(1985), 1, - anon_sym_RBRACE, - ACTIONS(1987), 1, - sym__entry_separator, - STATE(6234), 1, + ACTIONS(10080), 1, + anon_sym_LPAREN, + ACTIONS(10082), 1, + sym_unescaped_interpolated_content, + ACTIONS(10200), 1, + anon_sym_SQUOTE, + STATE(5769), 1, sym_comment, - STATE(7436), 1, - sym__expr_parenthesized_immediate, - [212715] = 4, + STATE(5771), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6659), 1, + sym_expr_interpolated, + [198479] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(6235), 1, + ACTIONS(10080), 1, + anon_sym_LPAREN, + ACTIONS(10082), 1, + sym_unescaped_interpolated_content, + ACTIONS(10202), 1, + anon_sym_SQUOTE, + STATE(5770), 1, sym_comment, - ACTIONS(1719), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1721), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [212730] = 6, + STATE(5792), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6659), 1, + sym_expr_interpolated, + [198501] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10392), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6236), 1, + ACTIONS(10080), 1, + anon_sym_LPAREN, + ACTIONS(10082), 1, + sym_unescaped_interpolated_content, + ACTIONS(10204), 1, + anon_sym_SQUOTE, + STATE(5712), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5771), 1, sym_comment, - [212749] = 5, + STATE(6659), 1, + sym_expr_interpolated, + [198523] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1591), 1, - sym__space, - ACTIONS(7156), 1, - aux_sym_unquoted_token2, - STATE(6237), 1, + ACTIONS(10206), 1, + anon_sym_QMARK2, + STATE(5772), 1, sym_comment, - ACTIONS(1579), 2, - sym__newline, - anon_sym_SEMI, - [212766] = 4, + ACTIONS(964), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [198539] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6238), 1, + ACTIONS(10208), 1, + aux_sym__immediate_decimal_token2, + STATE(5773), 1, sym_comment, - ACTIONS(1790), 2, + ACTIONS(1760), 2, anon_sym_RBRACE, aux_sym__unquoted_in_record_token2, - ACTIONS(1792), 2, + ACTIONS(1762), 2, anon_sym_LPAREN2, sym__entry_separator, - [212781] = 4, - ACTIONS(3), 1, + [198557] = 7, + ACTIONS(245), 1, anon_sym_POUND, - STATE(6239), 1, + ACTIONS(8772), 1, + sym_identifier, + ACTIONS(9776), 1, + anon_sym_DOLLAR, + STATE(5360), 1, + sym_val_variable, + STATE(5774), 1, sym_comment, - ACTIONS(1666), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1668), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [212796] = 3, + STATE(5776), 1, + sym__variable_name, + STATE(6231), 1, + sym__assignment_pattern, + [198579] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6240), 1, + STATE(5775), 1, sym_comment, - ACTIONS(10394), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [212809] = 3, + ACTIONS(8186), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [198593] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(6241), 1, - sym_comment, - ACTIONS(10396), 4, + ACTIONS(3756), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [212822] = 3, - ACTIONS(245), 1, + ACTIONS(10088), 1, + anon_sym_COLON, + ACTIONS(10210), 1, + anon_sym_EQ, + STATE(5776), 1, + sym_comment, + STATE(6483), 1, + aux_sym_shebang_repeat1, + STATE(7298), 1, + sym_param_type, + [198615] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6242), 1, + ACTIONS(10080), 1, + anon_sym_LPAREN, + ACTIONS(10082), 1, + sym_unescaped_interpolated_content, + ACTIONS(10212), 1, + anon_sym_SQUOTE, + STATE(5777), 1, sym_comment, - ACTIONS(10398), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [212835] = 3, - ACTIONS(245), 1, + STATE(5778), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6659), 1, + sym_expr_interpolated, + [198637] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6243), 1, + ACTIONS(10080), 1, + anon_sym_LPAREN, + ACTIONS(10082), 1, + sym_unescaped_interpolated_content, + ACTIONS(10214), 1, + anon_sym_SQUOTE, + STATE(5712), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5778), 1, sym_comment, - ACTIONS(10400), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [212848] = 3, + STATE(6659), 1, + sym_expr_interpolated, + [198659] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6244), 1, + STATE(5779), 1, sym_comment, - ACTIONS(10402), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [212861] = 4, + ACTIONS(8266), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [198673] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7082), 1, + ACTIONS(1447), 1, aux_sym_unquoted_token2, - STATE(6245), 1, + ACTIONS(1813), 1, + anon_sym_LBRACE, + ACTIONS(10216), 1, + anon_sym_DOT_DOT2, + STATE(5780), 1, sym_comment, - ACTIONS(1591), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [212876] = 6, + ACTIONS(10218), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [198693] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(5781), 1, + sym_comment, + ACTIONS(8270), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [198707] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10404), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6246), 1, + ACTIONS(10080), 1, + anon_sym_LPAREN, + ACTIONS(10082), 1, + sym_unescaped_interpolated_content, + ACTIONS(10220), 1, + anon_sym_SQUOTE, + STATE(5782), 1, sym_comment, - [212895] = 3, + STATE(5785), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6659), 1, + sym_expr_interpolated, + [198729] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6247), 1, + STATE(5783), 1, sym_comment, - ACTIONS(10406), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [212908] = 3, - ACTIONS(245), 1, + ACTIONS(8274), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [198743] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6248), 1, + STATE(5784), 1, sym_comment, - ACTIONS(10408), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [212921] = 3, - ACTIONS(245), 1, + ACTIONS(950), 5, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [198757] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6249), 1, + ACTIONS(10080), 1, + anon_sym_LPAREN, + ACTIONS(10082), 1, + sym_unescaped_interpolated_content, + ACTIONS(10222), 1, + anon_sym_SQUOTE, + STATE(5712), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5785), 1, sym_comment, - ACTIONS(10410), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [212934] = 3, + STATE(6659), 1, + sym_expr_interpolated, + [198779] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10224), 1, + anon_sym_LT, + STATE(5786), 1, + sym_comment, + ACTIONS(7816), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(7820), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [198797] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6250), 1, + STATE(5787), 1, sym_comment, - ACTIONS(10412), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [212947] = 4, + ACTIONS(8190), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [198811] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6251), 1, + ACTIONS(10226), 1, + anon_sym_LT, + STATE(5788), 1, sym_comment, - ACTIONS(7894), 2, + ACTIONS(7816), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(7898), 2, + ACTIONS(7820), 2, anon_sym_RBRACK, anon_sym_GT2, - [212962] = 6, + [198829] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1581), 1, - anon_sym_LPAREN2, - ACTIONS(2067), 1, - anon_sym_RBRACE, - ACTIONS(2069), 1, - sym__entry_separator, - STATE(6252), 1, + ACTIONS(10080), 1, + anon_sym_LPAREN, + ACTIONS(10082), 1, + sym_unescaped_interpolated_content, + ACTIONS(10228), 1, + anon_sym_SQUOTE, + STATE(5789), 1, sym_comment, - STATE(7742), 1, - sym__expr_parenthesized_immediate, - [212981] = 6, + STATE(5791), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6659), 1, + sym_expr_interpolated, + [198851] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10414), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6253), 1, + ACTIONS(10230), 1, + sym__newline, + ACTIONS(10233), 1, + sym__space, + STATE(5274), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(6826), 1, + sym__flags_parenthesized, + STATE(5790), 2, sym_comment, - [213000] = 6, + aux_sym_ctrl_do_parenthesized_repeat1, + [198871] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1581), 1, - anon_sym_LPAREN2, - ACTIONS(2071), 1, - anon_sym_RBRACE, - ACTIONS(2073), 1, - sym__entry_separator, - STATE(6254), 1, + ACTIONS(10080), 1, + anon_sym_LPAREN, + ACTIONS(10082), 1, + sym_unescaped_interpolated_content, + ACTIONS(10236), 1, + anon_sym_SQUOTE, + STATE(5712), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5791), 1, sym_comment, - STATE(7742), 1, - sym__expr_parenthesized_immediate, - [213019] = 6, + STATE(6659), 1, + sym_expr_interpolated, + [198893] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10080), 1, + anon_sym_LPAREN, + ACTIONS(10082), 1, + sym_unescaped_interpolated_content, + ACTIONS(10238), 1, + anon_sym_SQUOTE, + STATE(5712), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5792), 1, + sym_comment, + STATE(6659), 1, + sym_expr_interpolated, + [198915] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(5793), 1, + sym_comment, + ACTIONS(8278), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [198929] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(5794), 1, + sym_comment, + ACTIONS(8282), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [198943] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10080), 1, + anon_sym_LPAREN, + ACTIONS(10082), 1, + sym_unescaped_interpolated_content, + ACTIONS(10240), 1, + anon_sym_SQUOTE, + STATE(5795), 1, + sym_comment, + STATE(5796), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6659), 1, + sym_expr_interpolated, + [198965] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10080), 1, + anon_sym_LPAREN, + ACTIONS(10082), 1, + sym_unescaped_interpolated_content, + ACTIONS(10242), 1, + anon_sym_SQUOTE, + STATE(5712), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5796), 1, + sym_comment, + STATE(6659), 1, + sym_expr_interpolated, + [198987] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(6315), 1, + STATE(5797), 1, + sym_comment, + ACTIONS(8286), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, anon_sym_LBRACE, - STATE(4682), 1, - sym_block, - STATE(6255), 1, + [199001] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(5798), 1, sym_comment, - STATE(6510), 1, - aux_sym_shebang_repeat1, - [213038] = 5, + ACTIONS(8290), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [199015] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5060), 1, - sym__space, - ACTIONS(10416), 1, - anon_sym_EQ2, - STATE(6256), 1, + STATE(5799), 1, sym_comment, - ACTIONS(5062), 2, - sym__newline, - anon_sym_SEMI, - [213055] = 3, - ACTIONS(245), 1, + ACTIONS(942), 5, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [199029] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6257), 1, + ACTIONS(10080), 1, + anon_sym_LPAREN, + ACTIONS(10082), 1, + sym_unescaped_interpolated_content, + ACTIONS(10244), 1, + anon_sym_SQUOTE, + STATE(5800), 1, sym_comment, - ACTIONS(10418), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [213068] = 6, + STATE(5801), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6659), 1, + sym_expr_interpolated, + [199051] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_LPAREN2, - ACTIONS(10420), 1, - anon_sym_RBRACK, - ACTIONS(10422), 1, - sym__entry_separator, - STATE(6258), 1, + ACTIONS(10080), 1, + anon_sym_LPAREN, + ACTIONS(10082), 1, + sym_unescaped_interpolated_content, + ACTIONS(10246), 1, + anon_sym_SQUOTE, + STATE(5712), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5801), 1, sym_comment, - STATE(7568), 1, - sym__expr_parenthesized_immediate, - [213087] = 3, - ACTIONS(245), 1, + STATE(6659), 1, + sym_expr_interpolated, + [199073] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6259), 1, + ACTIONS(10080), 1, + anon_sym_LPAREN, + ACTIONS(10082), 1, + sym_unescaped_interpolated_content, + ACTIONS(10248), 1, + anon_sym_SQUOTE, + STATE(5802), 1, sym_comment, - ACTIONS(6534), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [213100] = 3, + STATE(5804), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6659), 1, + sym_expr_interpolated, + [199095] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6260), 1, + STATE(5803), 1, sym_comment, - ACTIONS(6500), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(8294), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, anon_sym_LBRACE, - [213113] = 3, - ACTIONS(245), 1, + [199109] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6261), 1, + ACTIONS(10080), 1, + anon_sym_LPAREN, + ACTIONS(10082), 1, + sym_unescaped_interpolated_content, + ACTIONS(10250), 1, + anon_sym_SQUOTE, + STATE(5712), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5804), 1, sym_comment, - ACTIONS(10424), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [213126] = 3, - ACTIONS(245), 1, + STATE(6659), 1, + sym_expr_interpolated, + [199131] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6262), 1, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + ACTIONS(2136), 1, + sym__space, + STATE(5805), 1, sym_comment, - ACTIONS(10426), 4, + ACTIONS(2134), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [213139] = 4, + [199151] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(6263), 1, + STATE(5806), 1, sym_comment, - ACTIONS(1648), 2, + ACTIONS(954), 5, anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1650), 2, - anon_sym_LPAREN2, + anon_sym_QMARK2, sym__entry_separator, - [213154] = 3, - ACTIONS(245), 1, + sym__table_head_separator, + anon_sym_DOT2, + [199165] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6264), 1, + ACTIONS(10080), 1, + anon_sym_LPAREN, + ACTIONS(10082), 1, + sym_unescaped_interpolated_content, + ACTIONS(10252), 1, + anon_sym_SQUOTE, + STATE(5807), 1, sym_comment, - ACTIONS(10424), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [213167] = 3, + STATE(5809), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6659), 1, + sym_expr_interpolated, + [199187] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6265), 1, + STATE(5808), 1, sym_comment, - ACTIONS(10428), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [213180] = 3, - ACTIONS(245), 1, + ACTIONS(8298), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [199201] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6266), 1, + ACTIONS(10080), 1, + anon_sym_LPAREN, + ACTIONS(10082), 1, + sym_unescaped_interpolated_content, + ACTIONS(10254), 1, + anon_sym_SQUOTE, + STATE(5712), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5809), 1, sym_comment, - ACTIONS(10430), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [213193] = 3, + STATE(6659), 1, + sym_expr_interpolated, + [199223] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(6267), 1, + ACTIONS(6259), 1, + anon_sym_LBRACE, + STATE(5810), 1, sym_comment, - ACTIONS(10430), 4, + STATE(6625), 1, + sym_block, + ACTIONS(9892), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [213206] = 3, + [199241] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6268), 1, + STATE(5811), 1, sym_comment, - ACTIONS(10432), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [213219] = 6, + ACTIONS(8302), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [199255] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10434), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6269), 1, + ACTIONS(10080), 1, + anon_sym_LPAREN, + ACTIONS(10082), 1, + sym_unescaped_interpolated_content, + ACTIONS(10256), 1, + anon_sym_SQUOTE, + STATE(5812), 1, sym_comment, - [213238] = 3, + STATE(5815), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6659), 1, + sym_expr_interpolated, + [199277] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6270), 1, + STATE(5813), 1, sym_comment, - ACTIONS(10436), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [213251] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(10438), 1, - anon_sym_COLON, - ACTIONS(10440), 1, + ACTIONS(8306), 5, + anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_GT2, - STATE(5499), 1, - aux_sym__multiple_types_repeat1, - STATE(6271), 1, - sym_comment, - [213270] = 6, - ACTIONS(3), 1, + anon_sym_AT2, + anon_sym_LBRACE, + [199291] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(10442), 1, - anon_sym_COLON, - ACTIONS(10444), 1, - anon_sym_GT2, - STATE(5514), 1, - aux_sym__multiple_types_repeat1, - STATE(6272), 1, + STATE(5814), 1, sym_comment, - [213289] = 6, + ACTIONS(8310), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [199305] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(10446), 1, - anon_sym_COLON, - ACTIONS(10448), 1, - anon_sym_GT2, - STATE(5627), 1, - aux_sym__multiple_types_repeat1, - STATE(6273), 1, + ACTIONS(10080), 1, + anon_sym_LPAREN, + ACTIONS(10082), 1, + sym_unescaped_interpolated_content, + ACTIONS(10258), 1, + anon_sym_SQUOTE, + STATE(5712), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5815), 1, sym_comment, - [213308] = 6, + STATE(6659), 1, + sym_expr_interpolated, + [199327] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(1934), 1, + anon_sym_RBRACE, + ACTIONS(1940), 1, sym__entry_separator, - ACTIONS(10450), 1, - anon_sym_COLON, - ACTIONS(10452), 1, - anon_sym_GT2, - STATE(5470), 1, - aux_sym__multiple_types_repeat1, - STATE(6274), 1, + ACTIONS(9946), 1, + anon_sym_DOT_DOT2, + STATE(5816), 1, sym_comment, - [213327] = 6, + ACTIONS(9948), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [199347] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(9946), 1, + anon_sym_DOT_DOT2, + ACTIONS(10260), 1, + anon_sym_RBRACE, + ACTIONS(10262), 1, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10454), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6275), 1, + STATE(5817), 1, sym_comment, - [213346] = 6, + ACTIONS(9948), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [199367] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10456), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6276), 1, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1790), 1, + sym__space, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + STATE(5818), 1, sym_comment, - [213365] = 6, + ACTIONS(1782), 2, + sym__newline, + anon_sym_SEMI, + [199387] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(9946), 1, + anon_sym_DOT_DOT2, + ACTIONS(10264), 1, + anon_sym_RBRACE, + ACTIONS(10266), 1, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10458), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6277), 1, + STATE(5819), 1, sym_comment, - [213384] = 6, - ACTIONS(3), 1, + ACTIONS(9948), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [199407] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(10460), 1, - anon_sym_COLON, - ACTIONS(10462), 1, + STATE(5820), 1, + sym_comment, + ACTIONS(8314), 5, + anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_GT2, - STATE(5571), 1, - aux_sym__multiple_types_repeat1, - STATE(6278), 1, + anon_sym_AT2, + anon_sym_LBRACE, + [199421] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(5821), 1, sym_comment, - [213403] = 6, - ACTIONS(3), 1, + ACTIONS(8318), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [199435] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(10464), 1, - anon_sym_COLON, - ACTIONS(10466), 1, + STATE(5822), 1, + sym_comment, + ACTIONS(8322), 5, + anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_GT2, - STATE(5515), 1, - aux_sym__multiple_types_repeat1, - STATE(6279), 1, + anon_sym_AT2, + anon_sym_LBRACE, + [199449] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(5823), 1, sym_comment, - [213422] = 4, + ACTIONS(8326), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [199463] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(6280), 1, + STATE(5824), 1, sym_comment, - ACTIONS(1719), 2, + ACTIONS(946), 5, anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1721), 2, - anon_sym_LPAREN2, + anon_sym_QMARK2, sym__entry_separator, - [213437] = 4, + sym__table_head_separator, + anon_sym_DOT2, + [199477] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - STATE(6281), 1, + STATE(5825), 1, sym_comment, - ACTIONS(2043), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [213452] = 4, + ACTIONS(8330), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [199491] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - STATE(6282), 1, + ACTIONS(3408), 1, + anon_sym_COLON2, + ACTIONS(6947), 1, + anon_sym_DOLLAR, + ACTIONS(8772), 1, + sym_identifier, + STATE(5360), 1, + sym_val_variable, + STATE(5826), 1, sym_comment, - ACTIONS(1786), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [213467] = 6, + STATE(7355), 1, + sym__variable_name, + [199513] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4735), 1, - sym_block, - STATE(6283), 1, + STATE(5827), 1, sym_comment, - [213486] = 6, + ACTIONS(8334), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [199527] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(4657), 1, - sym_block, - STATE(6284), 1, + STATE(5828), 1, sym_comment, - STATE(6757), 1, - aux_sym_shebang_repeat1, - [213505] = 3, + ACTIONS(8338), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [199541] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(6285), 1, + ACTIONS(8772), 1, + sym_identifier, + ACTIONS(9776), 1, + anon_sym_DOLLAR, + STATE(5360), 1, + sym_val_variable, + STATE(5768), 1, + sym__variable_name, + STATE(5829), 1, sym_comment, - ACTIONS(10468), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [213518] = 6, - ACTIONS(3), 1, + STATE(6536), 1, + sym__assignment_pattern, + [199563] = 7, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10470), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6286), 1, + ACTIONS(3408), 1, + anon_sym_COLON2, + ACTIONS(10166), 1, + anon_sym_use, + ACTIONS(10168), 1, + anon_sym_list, + ACTIONS(10170), 1, + anon_sym_hide, + ACTIONS(10172), 1, + anon_sym_new, + STATE(5830), 1, sym_comment, - [213537] = 4, - ACTIONS(3), 1, + [199585] = 3, + ACTIONS(245), 1, anon_sym_POUND, - STATE(6287), 1, + STATE(5831), 1, sym_comment, - ACTIONS(1790), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1792), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [213552] = 3, + ACTIONS(8342), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [199599] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(6288), 1, - sym_comment, - ACTIONS(10472), 4, + ACTIONS(3756), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [213565] = 6, - ACTIONS(3), 1, + ACTIONS(9770), 1, + anon_sym_LBRACK, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(5832), 1, + sym_comment, + STATE(6655), 1, + sym_val_list, + STATE(6660), 1, + aux_sym_val_table_repeat1, + [199621] = 7, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(10474), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(10088), 1, anon_sym_COLON, - ACTIONS(10476), 1, - anon_sym_GT2, - STATE(5468), 1, - aux_sym__multiple_types_repeat1, - STATE(6289), 1, + ACTIONS(10268), 1, + anon_sym_EQ, + STATE(5833), 1, sym_comment, - [213584] = 6, - ACTIONS(3), 1, + STATE(6483), 1, + aux_sym_shebang_repeat1, + STATE(7065), 1, + sym_param_type, + [199643] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(10478), 1, - anon_sym_COLON, - ACTIONS(10480), 1, - anon_sym_GT2, - STATE(5490), 1, - aux_sym__multiple_types_repeat1, - STATE(6290), 1, + STATE(5834), 1, sym_comment, - [213603] = 6, - ACTIONS(3), 1, + ACTIONS(8348), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [199657] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(10482), 1, - anon_sym_COLON, - ACTIONS(10484), 1, + STATE(5835), 1, + sym_comment, + ACTIONS(8352), 5, + anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_GT2, - STATE(5494), 1, - aux_sym__multiple_types_repeat1, - STATE(6291), 1, + anon_sym_AT2, + anon_sym_LBRACE, + [199671] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(4940), 1, + anon_sym_DASH2, + ACTIONS(10270), 1, + anon_sym_EQ2, + STATE(5836), 1, sym_comment, - [213622] = 6, - ACTIONS(3), 1, + ACTIONS(4938), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [199689] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(10486), 1, - anon_sym_COLON, - ACTIONS(10488), 1, - anon_sym_GT2, - STATE(5500), 1, - aux_sym__multiple_types_repeat1, - STATE(6292), 1, + STATE(5837), 1, sym_comment, - [213641] = 6, + ACTIONS(8142), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [199703] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(9816), 1, + aux_sym__immediate_decimal_token2, + STATE(5838), 1, + sym_comment, + ACTIONS(1701), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1703), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10490), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6293), 1, + [199721] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1616), 1, + anon_sym_DASH2, + ACTIONS(7012), 1, + aux_sym_unquoted_token2, + STATE(5839), 1, sym_comment, - [213660] = 6, - ACTIONS(3), 1, + ACTIONS(1628), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [199739] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10492), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6294), 1, + STATE(5840), 1, sym_comment, - [213679] = 6, + ACTIONS(1760), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1762), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [199755] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10494), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6295), 1, + ACTIONS(10272), 1, + aux_sym__immediate_decimal_token2, + STATE(5841), 1, sym_comment, - [213698] = 3, + ACTIONS(1760), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1762), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [199773] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(6296), 1, + ACTIONS(4908), 1, + anon_sym_DASH2, + ACTIONS(10274), 1, + anon_sym_EQ2, + STATE(5842), 1, sym_comment, - ACTIONS(10496), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [213711] = 5, - ACTIONS(3), 1, + ACTIONS(4906), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [199791] = 7, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(10498), 1, - anon_sym_DQUOTE, - STATE(6297), 1, + ACTIONS(1847), 1, + sym__table_head_separator, + ACTIONS(10078), 1, + anon_sym_DOT2, + STATE(5843), 1, sym_comment, - STATE(6717), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, - sym__escaped_str_content, - sym_escape_sequence, - [213728] = 6, + STATE(6034), 1, + aux_sym_cell_path_repeat1, + STATE(6948), 1, + sym_path, + STATE(7310), 1, + sym_cell_path, + [199813] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10500), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6298), 1, + ACTIONS(10080), 1, + anon_sym_LPAREN, + ACTIONS(10082), 1, + sym_unescaped_interpolated_content, + ACTIONS(10276), 1, + anon_sym_SQUOTE, + STATE(5712), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5844), 1, sym_comment, - [213747] = 3, + STATE(6659), 1, + sym_expr_interpolated, + [199835] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(6299), 1, + STATE(217), 1, + aux_sym__block_body_repeat1, + STATE(5845), 1, sym_comment, - ACTIONS(10502), 4, + ACTIONS(139), 2, sym__newline, anon_sym_SEMI, + ACTIONS(593), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [213760] = 6, - ACTIONS(3), 1, + [199853] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10504), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6300), 1, + STATE(5846), 1, sym_comment, - [213779] = 6, + ACTIONS(8146), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [199867] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(933), 1, - sym__table_head_separator, - ACTIONS(10145), 1, - anon_sym_DOT2, - STATE(6301), 1, + ACTIONS(8772), 1, + sym_identifier, + ACTIONS(9776), 1, + anon_sym_DOLLAR, + STATE(5360), 1, + sym_val_variable, + STATE(5674), 1, + sym__variable_name, + STATE(5847), 1, sym_comment, - STATE(6309), 1, - aux_sym_cell_path_repeat1, - STATE(7513), 1, - sym_path, - [213798] = 6, + STATE(5900), 1, + sym__assignment_pattern, + [199889] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7003), 1, - anon_sym_DOLLAR, - ACTIONS(8826), 1, + ACTIONS(8772), 1, sym_identifier, - STATE(5713), 1, + ACTIONS(9776), 1, + anon_sym_DOLLAR, + STATE(5360), 1, sym_val_variable, - STATE(6302), 1, - sym_comment, - STATE(7609), 1, + STATE(5674), 1, sym__variable_name, - [213817] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(10506), 1, - anon_sym_COLON, - ACTIONS(10508), 1, - anon_sym_GT2, - STATE(5541), 1, - aux_sym__multiple_types_repeat1, - STATE(6303), 1, + STATE(5848), 1, sym_comment, - [213836] = 6, - ACTIONS(3), 1, + STATE(6271), 1, + sym__assignment_pattern, + [199911] = 7, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(10510), 1, - anon_sym_COLON, - ACTIONS(10512), 1, - anon_sym_GT2, - STATE(5544), 1, - aux_sym__multiple_types_repeat1, - STATE(6304), 1, + ACTIONS(8772), 1, + sym_identifier, + ACTIONS(9776), 1, + anon_sym_DOLLAR, + STATE(5360), 1, + sym_val_variable, + STATE(5674), 1, + sym__variable_name, + STATE(5849), 1, sym_comment, - [213855] = 4, - ACTIONS(3), 1, + STATE(6272), 1, + sym__assignment_pattern, + [199933] = 7, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(10514), 1, - anon_sym_LPAREN, - STATE(6305), 1, + ACTIONS(8772), 1, + sym_identifier, + ACTIONS(9776), 1, + anon_sym_DOLLAR, + STATE(5360), 1, + sym_val_variable, + STATE(5674), 1, + sym__variable_name, + STATE(5850), 1, sym_comment, - ACTIONS(10516), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [213870] = 6, - ACTIONS(3), 1, + STATE(6231), 1, + sym__assignment_pattern, + [199955] = 7, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(9770), 1, anon_sym_LBRACK, - ACTIONS(10518), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6306), 1, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(5851), 1, sym_comment, - [213889] = 4, + STATE(6376), 1, + sym_val_list, + STATE(6715), 1, + aux_sym_val_table_repeat1, + [199977] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10520), 1, - anon_sym_LPAREN, - STATE(6307), 1, + ACTIONS(9918), 1, + aux_sym__immediate_decimal_token2, + STATE(5852), 1, sym_comment, - ACTIONS(10522), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [213904] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1811), 1, - anon_sym_RBRACE, - ACTIONS(1813), 1, + ACTIONS(1701), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1703), 2, anon_sym_LPAREN2, - ACTIONS(1819), 1, sym__entry_separator, - STATE(6308), 1, - sym_comment, - [213923] = 5, + [199995] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(937), 1, - sym__table_head_separator, - ACTIONS(10524), 1, - anon_sym_DOT2, - STATE(7513), 1, - sym_path, - STATE(6309), 2, + ACTIONS(8772), 1, + sym_identifier, + ACTIONS(9776), 1, + anon_sym_DOLLAR, + STATE(5360), 1, + sym_val_variable, + STATE(5737), 1, + sym__variable_name, + STATE(5853), 1, sym_comment, - aux_sym_cell_path_repeat1, - [213940] = 3, + STATE(5900), 1, + sym__assignment_pattern, + [200017] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(6310), 1, - sym_comment, - ACTIONS(10527), 4, + ACTIONS(8772), 1, sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [213953] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2198), 1, - anon_sym_PIPE, - ACTIONS(2200), 1, - aux_sym_unquoted_token4, - STATE(6311), 1, - sym_comment, - ACTIONS(2194), 2, - anon_sym_if, - anon_sym_EQ_GT, - [213970] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(994), 1, - sym__entry_separator, - ACTIONS(998), 1, - anon_sym_RBRACE, - ACTIONS(2190), 1, - anon_sym_LPAREN2, - ACTIONS(2192), 1, - aux_sym__unquoted_in_record_token4, - STATE(6312), 1, - sym_comment, - [213989] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1811), 1, - anon_sym_RBRACK, - ACTIONS(1813), 1, - anon_sym_LPAREN2, - ACTIONS(1819), 1, - sym__entry_separator, - STATE(6313), 1, + ACTIONS(9776), 1, + anon_sym_DOLLAR, + STATE(5360), 1, + sym_val_variable, + STATE(5737), 1, + sym__variable_name, + STATE(5854), 1, sym_comment, - [214008] = 4, - ACTIONS(3), 1, + STATE(6271), 1, + sym__assignment_pattern, + [200039] = 7, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(10529), 1, - anon_sym_LPAREN, - STATE(6314), 1, + ACTIONS(8772), 1, + sym_identifier, + ACTIONS(9776), 1, + anon_sym_DOLLAR, + STATE(5360), 1, + sym_val_variable, + STATE(5737), 1, + sym__variable_name, + STATE(5855), 1, sym_comment, - ACTIONS(10531), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [214023] = 5, + STATE(6272), 1, + sym__assignment_pattern, + [200061] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(591), 1, - ts_builtin_sym_end, - STATE(247), 1, - aux_sym__block_body_repeat1, - STATE(6315), 1, + ACTIONS(8772), 1, + sym_identifier, + ACTIONS(9776), 1, + anon_sym_DOLLAR, + STATE(5360), 1, + sym_val_variable, + STATE(5737), 1, + sym__variable_name, + STATE(5856), 1, sym_comment, - ACTIONS(25), 2, - sym__newline, - anon_sym_SEMI, - [214040] = 3, + STATE(6231), 1, + sym__assignment_pattern, + [200083] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6316), 1, + STATE(5857), 1, sym_comment, - ACTIONS(10533), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214053] = 3, + ACTIONS(8150), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [200097] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6317), 1, + STATE(5858), 1, sym_comment, - ACTIONS(10535), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214066] = 3, + ACTIONS(8154), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [200111] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(6318), 1, - sym_comment, - ACTIONS(10535), 4, + ACTIONS(3756), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214079] = 3, - ACTIONS(245), 1, + ACTIONS(9770), 1, + anon_sym_LBRACK, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(5859), 1, + sym_comment, + STATE(6735), 1, + sym_val_list, + STATE(6742), 1, + aux_sym_val_table_repeat1, + [200133] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6319), 1, + ACTIONS(4815), 1, + sym__space, + ACTIONS(10278), 1, + anon_sym_EQ2, + ACTIONS(10280), 1, + sym_short_flag_identifier, + STATE(5860), 1, sym_comment, - ACTIONS(10537), 4, + ACTIONS(4817), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214092] = 3, + [200153] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(6320), 1, - sym_comment, - ACTIONS(10537), 4, + ACTIONS(3756), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214105] = 3, + ACTIONS(9770), 1, + anon_sym_LBRACK, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(5861), 1, + sym_comment, + STATE(6385), 1, + sym_val_list, + STATE(6746), 1, + aux_sym_val_table_repeat1, + [200175] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(6321), 1, - sym_comment, - ACTIONS(10539), 4, + ACTIONS(3756), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214118] = 3, + ACTIONS(9770), 1, + anon_sym_LBRACK, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(5862), 1, + sym_comment, + STATE(6410), 1, + sym_val_list, + STATE(6750), 1, + aux_sym_val_table_repeat1, + [200197] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6322), 1, + STATE(5863), 1, sym_comment, - ACTIONS(6520), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(8158), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, anon_sym_LBRACE, - [214131] = 3, + [200211] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6323), 1, + STATE(5864), 1, sym_comment, - ACTIONS(6526), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(8162), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, anon_sym_LBRACE, - [214144] = 3, + [200225] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(6324), 1, - sym_comment, - ACTIONS(10541), 4, + ACTIONS(3756), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214157] = 5, - ACTIONS(3), 1, + ACTIONS(9770), 1, + anon_sym_LBRACK, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(5865), 1, + sym_comment, + STATE(6432), 1, + sym_val_list, + STATE(6753), 1, + aux_sym_val_table_repeat1, + [200247] = 7, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - ACTIONS(2204), 1, - anon_sym_PIPE, - STATE(6325), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(9770), 1, + anon_sym_LBRACK, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(5866), 1, sym_comment, - ACTIONS(2202), 2, - anon_sym_if, - anon_sym_EQ_GT, - [214174] = 5, - ACTIONS(3), 1, + STATE(6458), 1, + sym_val_list, + STATE(6755), 1, + aux_sym_val_table_repeat1, + [200269] = 7, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2093), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(6326), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(9770), 1, + anon_sym_LBRACK, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(5867), 1, sym_comment, - ACTIONS(2089), 2, - anon_sym_if, - anon_sym_EQ_GT, - [214191] = 3, + STATE(6474), 1, + sym_val_list, + STATE(6759), 1, + aux_sym_val_table_repeat1, + [200291] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(6327), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(9770), 1, + anon_sym_LBRACK, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(5868), 1, sym_comment, - ACTIONS(10543), 4, + STATE(6491), 1, + sym_val_list, + STATE(6761), 1, + aux_sym_val_table_repeat1, + [200313] = 7, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(3756), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214204] = 3, + ACTIONS(9770), 1, + anon_sym_LBRACK, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(5869), 1, + sym_comment, + STATE(6507), 1, + sym_val_list, + STATE(6766), 1, + aux_sym_val_table_repeat1, + [200335] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(6328), 1, - sym_comment, - ACTIONS(10543), 4, + ACTIONS(3756), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214217] = 3, + ACTIONS(9770), 1, + anon_sym_LBRACK, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(5870), 1, + sym_comment, + STATE(6517), 1, + sym_val_list, + STATE(6768), 1, + aux_sym_val_table_repeat1, + [200357] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(6329), 1, - sym_comment, - ACTIONS(10535), 4, + ACTIONS(3756), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214230] = 3, + ACTIONS(9770), 1, + anon_sym_LBRACK, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(5871), 1, + sym_comment, + STATE(6705), 1, + sym_val_list, + STATE(6773), 1, + aux_sym_val_table_repeat1, + [200379] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(6330), 1, - sym_comment, - ACTIONS(10535), 4, + ACTIONS(3756), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214243] = 3, + ACTIONS(9770), 1, + anon_sym_LBRACK, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(5872), 1, + sym_comment, + STATE(6529), 1, + sym_val_list, + STATE(6776), 1, + aux_sym_val_table_repeat1, + [200401] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(6331), 1, - sym_comment, - ACTIONS(10545), 4, + ACTIONS(3756), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214256] = 3, + ACTIONS(9770), 1, + anon_sym_LBRACK, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(5873), 1, + sym_comment, + STATE(6543), 1, + sym_val_list, + STATE(6779), 1, + aux_sym_val_table_repeat1, + [200423] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(6332), 1, - sym_comment, - ACTIONS(10547), 4, + ACTIONS(3756), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214269] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7629), 1, - anon_sym_COLON2, - STATE(6333), 1, + ACTIONS(9770), 1, + anon_sym_LBRACK, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(5874), 1, sym_comment, - STATE(6335), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(7621), 2, - sym__newline, - sym__space, - [214286] = 4, + STATE(6555), 1, + sym_val_list, + STATE(6781), 1, + aux_sym_val_table_repeat1, + [200445] = 7, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - STATE(6334), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(9770), 1, + anon_sym_LBRACK, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(5875), 1, sym_comment, - ACTIONS(2053), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [214301] = 5, - ACTIONS(3), 1, + STATE(6566), 1, + sym_val_list, + STATE(6784), 1, + aux_sym_val_table_repeat1, + [200467] = 7, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(10549), 1, - anon_sym_COLON2, - STATE(6335), 1, - sym_comment, - STATE(6771), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(7621), 2, + ACTIONS(3756), 1, sym__newline, - sym__space, - [214318] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6336), 1, + ACTIONS(9770), 1, + anon_sym_LBRACK, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(5876), 1, sym_comment, - ACTIONS(970), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [214331] = 3, + STATE(6576), 1, + sym_val_list, + STATE(6787), 1, + aux_sym_val_table_repeat1, + [200489] = 7, ACTIONS(245), 1, anon_sym_POUND, - STATE(6337), 1, + ACTIONS(8772), 1, + sym_identifier, + ACTIONS(9776), 1, + anon_sym_DOLLAR, + STATE(5360), 1, + sym_val_variable, + STATE(5833), 1, + sym__variable_name, + STATE(5877), 1, sym_comment, - ACTIONS(10551), 4, + STATE(6424), 1, + sym__assignment_pattern_parenthesized, + [200511] = 7, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(8772), 1, sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [214344] = 5, - ACTIONS(3), 1, + ACTIONS(9776), 1, + anon_sym_DOLLAR, + STATE(5360), 1, + sym_val_variable, + STATE(5833), 1, + sym__variable_name, + STATE(5878), 1, + sym_comment, + STATE(6434), 1, + sym__assignment_pattern_parenthesized, + [200533] = 7, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(10553), 1, - anon_sym_DQUOTE, - STATE(6338), 1, + ACTIONS(8772), 1, + sym_identifier, + ACTIONS(9776), 1, + anon_sym_DOLLAR, + STATE(5360), 1, + sym_val_variable, + STATE(5833), 1, + sym__variable_name, + STATE(5879), 1, sym_comment, - STATE(6341), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, - sym__escaped_str_content, - sym_escape_sequence, - [214361] = 6, + STATE(6435), 1, + sym__assignment_pattern_parenthesized, + [200555] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2194), 1, + ACTIONS(5859), 1, anon_sym_RBRACK, - ACTIONS(2196), 1, - anon_sym_LPAREN2, - ACTIONS(2198), 1, + ACTIONS(5865), 1, sym__entry_separator, - ACTIONS(2200), 1, - aux_sym__unquoted_in_list_token4, - STATE(6339), 1, + ACTIONS(9946), 1, + anon_sym_DOT_DOT2, + STATE(5880), 1, sym_comment, - [214380] = 5, - ACTIONS(3), 1, + ACTIONS(9948), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [200575] = 7, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(10557), 1, - sym__space, - STATE(6340), 1, + ACTIONS(8772), 1, + sym_identifier, + ACTIONS(9776), 1, + anon_sym_DOLLAR, + STATE(5360), 1, + sym_val_variable, + STATE(5833), 1, + sym__variable_name, + STATE(5881), 1, sym_comment, - STATE(6738), 1, - aux_sym_attribute_repeat1, - ACTIONS(10555), 2, - sym__newline, - anon_sym_SEMI, - [214397] = 5, + STATE(6384), 1, + sym__assignment_pattern_parenthesized, + [200597] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10559), 1, - anon_sym_DQUOTE, - STATE(6341), 1, + ACTIONS(10282), 1, + anon_sym_QMARK2, + STATE(5882), 1, sym_comment, - STATE(6717), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, - sym__escaped_str_content, - sym_escape_sequence, - [214414] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(2202), 1, + ACTIONS(958), 4, anon_sym_RBRACK, - ACTIONS(2204), 1, sym__entry_separator, - STATE(6342), 1, - sym_comment, - [214433] = 6, + sym__table_head_separator, + anon_sym_DOT2, + [200613] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2089), 1, - anon_sym_RBRACK, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2093), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(2095), 1, - aux_sym__unquoted_in_list_token4, - STATE(6343), 1, + ACTIONS(10284), 1, + anon_sym_LBRACK, + ACTIONS(10286), 1, + anon_sym_RBRACK, + STATE(3382), 1, + aux_sym__multiple_types_repeat1, + STATE(5883), 1, sym_comment, - [214452] = 3, + [200632] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(6344), 1, + ACTIONS(1686), 1, + aux_sym_unquoted_token2, + ACTIONS(1688), 1, + anon_sym_LBRACE, + ACTIONS(10288), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10290), 1, + aux_sym__immediate_decimal_token2, + STATE(5884), 1, + sym_comment, + [200651] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(5885), 1, sym_comment, - ACTIONS(10561), 4, + ACTIONS(10292), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [214465] = 3, + [200664] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6345), 1, + STATE(5886), 1, sym_comment, - ACTIONS(10561), 4, + ACTIONS(10292), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [214478] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10563), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6346), 1, - sym_comment, - [214497] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10565), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6347), 1, - sym_comment, - [214516] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10567), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6348), 1, - sym_comment, - [214535] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10569), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6349), 1, - sym_comment, - [214554] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10571), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6350), 1, - sym_comment, - [214573] = 6, - ACTIONS(3), 1, + [200677] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10573), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6351), 1, + STATE(5887), 1, sym_comment, - [214592] = 6, + ACTIONS(10294), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [200690] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10575), 1, - anon_sym_RBRACK, - STATE(3597), 1, + ACTIONS(10296), 1, + anon_sym_COLON, + ACTIONS(10298), 1, + anon_sym_GT2, + STATE(5193), 1, aux_sym__multiple_types_repeat1, - STATE(6352), 1, + STATE(5888), 1, sym_comment, - [214611] = 6, + [200709] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10577), 1, - anon_sym_RBRACK, - STATE(3597), 1, + ACTIONS(10300), 1, + anon_sym_COLON, + ACTIONS(10302), 1, + anon_sym_GT2, + STATE(5199), 1, aux_sym__multiple_types_repeat1, - STATE(6353), 1, + STATE(5889), 1, sym_comment, - [214630] = 3, + [200728] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(6354), 1, + ACTIONS(1686), 1, + aux_sym_unquoted_token2, + STATE(5890), 1, sym_comment, - ACTIONS(10579), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214643] = 3, + ACTIONS(1688), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [200743] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6355), 1, + STATE(5891), 1, sym_comment, - ACTIONS(10579), 4, + ACTIONS(10294), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [214656] = 4, + [200756] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6356), 1, + STATE(5892), 1, sym_comment, - ACTIONS(8376), 2, + ACTIONS(8150), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(8378), 2, + ACTIONS(8152), 2, anon_sym_RBRACK, anon_sym_GT2, - [214671] = 6, + [200771] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1701), 1, + aux_sym_unquoted_token2, + ACTIONS(10176), 1, + aux_sym__immediate_decimal_token2, + STATE(5893), 1, + sym_comment, + ACTIONS(1703), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [200788] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + STATE(5894), 1, + sym_comment, + ACTIONS(8154), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(10581), 1, - anon_sym_COLON, - ACTIONS(10583), 1, + ACTIONS(8156), 2, + anon_sym_RBRACK, anon_sym_GT2, - STATE(5596), 1, - aux_sym__multiple_types_repeat1, - STATE(6357), 1, - sym_comment, - [214690] = 4, + [200803] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6358), 1, + STATE(5895), 1, sym_comment, - ACTIONS(8380), 2, + ACTIONS(8158), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(8382), 2, + ACTIONS(8160), 2, anon_sym_RBRACK, anon_sym_GT2, - [214705] = 6, + [200818] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + STATE(5896), 1, + sym_comment, + ACTIONS(8162), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(10585), 1, - anon_sym_COLON, - ACTIONS(10587), 1, + ACTIONS(8164), 2, + anon_sym_RBRACK, anon_sym_GT2, - STATE(5509), 1, - aux_sym__multiple_types_repeat1, - STATE(6359), 1, - sym_comment, - [214724] = 3, + [200833] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(6360), 1, + ACTIONS(1760), 1, + aux_sym_unquoted_token2, + ACTIONS(10304), 1, + aux_sym__immediate_decimal_token2, + STATE(5897), 1, sym_comment, - ACTIONS(6506), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [214737] = 3, + ACTIONS(1762), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [200850] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6361), 1, + STATE(5898), 1, sym_comment, - ACTIONS(6508), 4, - ts_builtin_sym_end, + ACTIONS(10306), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [214750] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [200863] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6362), 1, + STATE(5899), 1, sym_comment, - ACTIONS(10561), 4, + ACTIONS(10308), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [214763] = 3, + [200876] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6363), 1, + STATE(5900), 1, sym_comment, - ACTIONS(10561), 4, + ACTIONS(10310), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [214776] = 5, + [200889] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10589), 1, - anon_sym_COLON2, - STATE(6364), 1, - sym_comment, - STATE(6421), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(7621), 2, - sym__newline, - sym__space, - [214793] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6365), 1, + STATE(5901), 1, sym_comment, - ACTIONS(10591), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [214806] = 3, + ACTIONS(970), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [200902] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6366), 1, + STATE(5902), 1, sym_comment, - ACTIONS(10593), 4, + ACTIONS(10312), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [214819] = 3, + [200915] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6367), 1, + STATE(5903), 1, sym_comment, - ACTIONS(10595), 4, + ACTIONS(10314), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [214832] = 6, - ACTIONS(245), 1, + [200928] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10597), 1, - anon_sym_LBRACK, - ACTIONS(10599), 1, - anon_sym_LPAREN, - STATE(3261), 1, - sym_parameter_parens, - STATE(3262), 1, - sym_parameter_bracks, - STATE(6368), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10316), 1, + anon_sym_COLON, + ACTIONS(10318), 1, + anon_sym_GT2, + STATE(5218), 1, + aux_sym__multiple_types_repeat1, + STATE(5904), 1, sym_comment, - [214851] = 6, - ACTIONS(245), 1, + [200947] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10601), 1, - anon_sym_use, - ACTIONS(10603), 1, - anon_sym_list, - ACTIONS(10605), 1, - anon_sym_hide, - ACTIONS(10607), 1, - anon_sym_new, - STATE(6369), 1, + STATE(5905), 1, sym_comment, - [214870] = 6, + ACTIONS(1686), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1688), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [200962] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(10609), 1, - anon_sym_LBRACE, - STATE(5044), 1, - sym_val_closure, - STATE(5047), 1, - sym__blosure, - STATE(5082), 1, - sym_block, - STATE(6370), 1, + STATE(5906), 1, sym_comment, - [214889] = 3, + ACTIONS(10320), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [200975] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6371), 1, + STATE(5907), 1, sym_comment, - ACTIONS(10611), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [214902] = 5, + ACTIONS(10322), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [200988] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10613), 1, + ACTIONS(10324), 1, anon_sym_DQUOTE, - STATE(6372), 1, + STATE(5908), 1, sym_comment, - STATE(6377), 1, + STATE(5914), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [214919] = 6, - ACTIONS(245), 1, + [201005] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10615), 1, - anon_sym_LBRACK, - ACTIONS(10617), 1, - anon_sym_LPAREN, - STATE(6026), 1, - sym_parameter_parens, - STATE(6028), 1, - sym_parameter_bracks, - STATE(6373), 1, + ACTIONS(1477), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2138), 1, + anon_sym_RBRACK, + ACTIONS(2140), 1, + anon_sym_LPAREN2, + ACTIONS(2142), 1, + sym__entry_separator, + STATE(5909), 1, sym_comment, - [214938] = 6, + [201024] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10619), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6374), 1, + ACTIONS(10328), 1, + anon_sym_COLON2, + STATE(5910), 1, + sym_comment, + STATE(5946), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(7522), 2, + sym__newline, + sym__space, + [201041] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(5911), 1, sym_comment, - [214957] = 6, + ACTIONS(10330), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [201054] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10621), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6375), 1, + ACTIONS(10332), 1, + anon_sym_DQUOTE, + STATE(5908), 1, + aux_sym__str_double_quotes_repeat1, + STATE(5912), 1, sym_comment, - [214976] = 4, + ACTIONS(10326), 2, + sym__escaped_str_content, + sym_escape_sequence, + [201071] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2065), 1, + ACTIONS(7012), 1, aux_sym_unquoted_token2, - STATE(6376), 1, + STATE(5913), 1, sym_comment, - ACTIONS(2063), 3, + ACTIONS(1628), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [214991] = 5, + [201086] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10623), 1, + ACTIONS(10334), 1, anon_sym_DQUOTE, - STATE(6377), 1, - sym_comment, - STATE(6717), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + ACTIONS(10336), 2, sym__escaped_str_content, sym_escape_sequence, - [215008] = 6, - ACTIONS(3), 1, + STATE(5914), 2, + sym_comment, + aux_sym__str_double_quotes_repeat1, + [201101] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10625), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6378), 1, + STATE(5915), 1, sym_comment, - [215027] = 5, + ACTIONS(10294), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [201114] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1522), 1, - ts_builtin_sym_end, - STATE(280), 1, - aux_sym__block_body_repeat1, - STATE(6379), 1, + STATE(5916), 1, sym_comment, - ACTIONS(25), 2, + ACTIONS(10294), 4, sym__newline, anon_sym_SEMI, - [215044] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [201127] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(10627), 1, - anon_sym_LBRACE, - ACTIONS(10629), 1, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + ACTIONS(10339), 1, anon_sym_DOT_DOT2, - STATE(6380), 1, + STATE(5917), 1, sym_comment, - ACTIONS(10631), 2, + ACTIONS(10341), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [215061] = 3, + [201144] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6381), 1, + STATE(5918), 1, sym_comment, - ACTIONS(10579), 4, + ACTIONS(10343), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [215074] = 3, - ACTIONS(3), 1, + [201157] = 5, + ACTIONS(245), 1, anon_sym_POUND, - STATE(6382), 1, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + ACTIONS(10345), 1, + anon_sym_DOT_DOT2, + STATE(5919), 1, sym_comment, - ACTIONS(978), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [215087] = 3, - ACTIONS(3), 1, + ACTIONS(10347), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [201174] = 4, + ACTIONS(245), 1, anon_sym_POUND, - STATE(6383), 1, + ACTIONS(1760), 1, + aux_sym_unquoted_token2, + STATE(5920), 1, sym_comment, - ACTIONS(974), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [215100] = 6, + ACTIONS(1762), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [201189] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10633), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6384), 1, + ACTIONS(2106), 1, + aux_sym_unquoted_token4, + ACTIONS(5888), 1, + anon_sym_PIPE, + STATE(5921), 1, sym_comment, - [215119] = 6, - ACTIONS(3), 1, + ACTIONS(5883), 2, + anon_sym_if, + anon_sym_EQ_GT, + [201206] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10635), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6385), 1, + STATE(5922), 1, sym_comment, - [215138] = 6, + ACTIONS(10343), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [201219] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10637), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6386), 1, + STATE(5923), 1, sym_comment, - [215157] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(8166), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10639), 1, + ACTIONS(8168), 2, anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6387), 1, - sym_comment, - [215176] = 6, - ACTIONS(3), 1, + anon_sym_GT2, + [201234] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10641), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6388), 1, + STATE(5924), 1, sym_comment, - [215195] = 6, + ACTIONS(10349), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [201247] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10643), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6389), 1, + STATE(5925), 1, sym_comment, - [215214] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(8170), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10645), 1, + ACTIONS(8172), 2, anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6390), 1, - sym_comment, - [215233] = 6, + anon_sym_GT2, + [201262] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10647), 1, - anon_sym_RBRACK, - STATE(3597), 1, + ACTIONS(10351), 1, + anon_sym_COLON, + ACTIONS(10353), 1, + anon_sym_GT2, + STATE(5258), 1, aux_sym__multiple_types_repeat1, - STATE(6391), 1, + STATE(5926), 1, sym_comment, - [215252] = 3, + [201281] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(6392), 1, + ACTIONS(593), 1, + ts_builtin_sym_end, + STATE(225), 1, + aux_sym__block_body_repeat1, + STATE(5927), 1, sym_comment, - ACTIONS(10579), 4, + ACTIONS(25), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215265] = 6, + [201298] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1780), 1, + ACTIONS(5480), 1, anon_sym_LPAREN2, - ACTIONS(1788), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2041), 1, - anon_sym_RBRACE, - ACTIONS(2043), 1, + ACTIONS(10355), 1, + anon_sym_RBRACK, + ACTIONS(10357), 1, sym__entry_separator, - STATE(6393), 1, + STATE(5928), 1, sym_comment, - [215284] = 3, - ACTIONS(245), 1, + STATE(7210), 1, + sym__expr_parenthesized_immediate, + [201317] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6394), 1, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1792), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2134), 1, + anon_sym_RBRACK, + ACTIONS(2136), 1, + sym__entry_separator, + STATE(5929), 1, sym_comment, - ACTIONS(10649), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215297] = 3, + [201336] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(6395), 1, + ACTIONS(1797), 1, + aux_sym_unquoted_token2, + STATE(5930), 1, sym_comment, - ACTIONS(10649), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215310] = 3, + ACTIONS(1799), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [201351] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6396), 1, + STATE(5931), 1, sym_comment, - ACTIONS(10651), 4, + ACTIONS(10359), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [215323] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6397), 1, - sym_comment, - ACTIONS(8420), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(8422), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [215338] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10653), 1, - anon_sym_DQUOTE, - STATE(6398), 1, - sym_comment, - STATE(6405), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, - sym__escaped_str_content, - sym_escape_sequence, - [215355] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1778), 1, - anon_sym_RBRACE, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1786), 1, - sym__entry_separator, - ACTIONS(1788), 1, - aux_sym__unquoted_in_record_token2, - STATE(6399), 1, - sym_comment, - [215374] = 3, + [201364] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(6400), 1, + ACTIONS(10363), 1, + anon_sym_RPAREN, + STATE(5932), 1, sym_comment, - ACTIONS(10655), 4, + STATE(6307), 1, + aux_sym__block_body_repeat1, + ACTIONS(10361), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215387] = 4, + [201381] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6401), 1, - sym_comment, - ACTIONS(8424), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(8426), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [215402] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6402), 1, - sym_comment, - ACTIONS(10657), 4, + ACTIONS(10365), 1, + sym__space, + ACTIONS(7695), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215415] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(994), 1, - sym__entry_separator, - ACTIONS(998), 1, - anon_sym_RBRACK, - ACTIONS(2190), 1, - anon_sym_LPAREN2, - ACTIONS(2192), 1, - aux_sym__unquoted_in_list_token4, - STATE(6403), 1, - sym_comment, - [215434] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6404), 1, + STATE(5933), 2, sym_comment, - ACTIONS(8428), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(8430), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [215449] = 5, + aux_sym_attribute_repeat1, + [201396] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10659), 1, + ACTIONS(10368), 1, anon_sym_DQUOTE, - STATE(6405), 1, + STATE(5934), 1, sym_comment, - STATE(6717), 1, + STATE(5943), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [215466] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6406), 1, - sym_comment, - ACTIONS(10661), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215479] = 4, + [201413] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6407), 1, + STATE(5935), 1, sym_comment, - ACTIONS(8432), 2, + ACTIONS(8174), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(8434), 2, + ACTIONS(8176), 2, anon_sym_RBRACK, anon_sym_GT2, - [215494] = 3, + [201428] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(6408), 1, + ACTIONS(10370), 1, + anon_sym_LBRACK, + ACTIONS(10372), 1, + anon_sym_LPAREN, + STATE(5711), 1, + sym_parameter_parens, + STATE(5727), 1, + sym_parameter_bracks, + STATE(5936), 1, sym_comment, - ACTIONS(10663), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215507] = 3, + [201447] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6409), 1, + STATE(5937), 1, sym_comment, - ACTIONS(10665), 4, + ACTIONS(10349), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [215520] = 6, + [201460] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2194), 1, - anon_sym_RBRACE, - ACTIONS(2196), 1, - anon_sym_LPAREN2, - ACTIONS(2198), 1, - sym__entry_separator, - ACTIONS(2200), 1, - aux_sym__unquoted_in_record_token4, - STATE(6410), 1, - sym_comment, - [215539] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6411), 1, - sym_comment, - ACTIONS(10667), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215552] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6412), 1, + ACTIONS(2078), 1, + anon_sym_PIPE, + STATE(5938), 1, sym_comment, - ACTIONS(10669), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215565] = 6, + ACTIONS(2076), 3, + anon_sym_if, + anon_sym_EQ_GT, + aux_sym_unquoted_token4, + [201475] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10671), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6413), 1, + STATE(5939), 1, sym_comment, - [215584] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(8178), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10673), 1, + ACTIONS(8180), 2, anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6414), 1, - sym_comment, - [215603] = 6, + anon_sym_GT2, + [201490] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10675), 1, + ACTIONS(1782), 1, anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6415), 1, - sym_comment, - [215622] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1790), 1, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10677), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6416), 1, + ACTIONS(1792), 1, + aux_sym__unquoted_in_list_token2, + STATE(5940), 1, sym_comment, - [215641] = 6, + [201509] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10679), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6417), 1, + STATE(5941), 1, sym_comment, - [215660] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(8182), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10681), 1, + ACTIONS(8184), 2, anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6418), 1, - sym_comment, - [215679] = 6, + anon_sym_GT2, + [201524] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10683), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6419), 1, + STATE(5942), 1, sym_comment, - [215698] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(8186), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10685), 1, + ACTIONS(8188), 2, anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6420), 1, - sym_comment, - [215717] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10687), 1, - anon_sym_COLON2, - STATE(6421), 1, - sym_comment, - STATE(6771), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(7621), 2, - sym__newline, - sym__space, - [215734] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1666), 1, - aux_sym_unquoted_token2, - ACTIONS(1668), 1, - anon_sym_LBRACE, - ACTIONS(10689), 1, - anon_sym_DOT, - ACTIONS(10691), 1, - aux_sym__immediate_decimal_token2, - STATE(6422), 1, - sym_comment, - [215753] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6423), 1, - sym_comment, - ACTIONS(10693), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [215766] = 5, + anon_sym_GT2, + [201539] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10695), 1, + ACTIONS(10374), 1, anon_sym_DQUOTE, - STATE(6424), 1, - sym_comment, - STATE(6426), 1, + STATE(5914), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + STATE(5943), 1, + sym_comment, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [215783] = 5, + [201556] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2039), 1, + ACTIONS(1955), 1, anon_sym_LBRACE, - ACTIONS(10697), 1, + ACTIONS(10376), 1, anon_sym_DOT_DOT2, - STATE(6425), 1, + STATE(5944), 1, sym_comment, - ACTIONS(10699), 2, + ACTIONS(10378), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [215800] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10701), 1, - anon_sym_DQUOTE, - STATE(6426), 1, - sym_comment, - STATE(6717), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, - sym__escaped_str_content, - sym_escape_sequence, - [215817] = 5, + [201573] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(10703), 1, + ACTIONS(1963), 1, + anon_sym_LBRACE, + ACTIONS(10380), 1, anon_sym_DOT_DOT2, - STATE(6427), 1, + STATE(5945), 1, sym_comment, - ACTIONS(10705), 2, + ACTIONS(10382), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [215834] = 6, + [201590] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10707), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6428), 1, + ACTIONS(3536), 1, + anon_sym_COLON2, + ACTIONS(10384), 2, + sym__newline, + sym__space, + STATE(5946), 2, sym_comment, - [215853] = 6, - ACTIONS(3), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + [201605] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10709), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6429), 1, + ACTIONS(1971), 1, + anon_sym_LBRACE, + ACTIONS(10387), 1, + anon_sym_DOT_DOT2, + STATE(5947), 1, sym_comment, - [215872] = 6, + ACTIONS(10389), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [201622] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10711), 1, + ACTIONS(10391), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6430), 1, + STATE(5948), 1, sym_comment, - [215891] = 6, - ACTIONS(3), 1, + [201641] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10713), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6431), 1, + ACTIONS(4968), 1, + anon_sym_DASH2, + STATE(5949), 1, sym_comment, - [215910] = 6, + ACTIONS(4966), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [201656] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10715), 1, + ACTIONS(10393), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6432), 1, + STATE(5950), 1, sym_comment, - [215929] = 6, + [201675] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10717), 1, + ACTIONS(10395), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6433), 1, + STATE(5951), 1, sym_comment, - [215948] = 6, + [201694] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10719), 1, + ACTIONS(10397), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6434), 1, + STATE(5952), 1, sym_comment, - [215967] = 6, + [201713] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10721), 1, + ACTIONS(10399), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6435), 1, + STATE(5953), 1, sym_comment, - [215986] = 5, + [201732] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(10003), 1, + STATE(5954), 1, + sym_comment, + ACTIONS(10292), 4, + sym__newline, + anon_sym_SEMI, anon_sym_RPAREN, - STATE(6436), 1, + anon_sym_RBRACE, + [201745] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(4433), 1, + sym_block, + STATE(5955), 1, sym_comment, - STATE(6718), 1, + STATE(6260), 1, + aux_sym_shebang_repeat1, + [201764] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1511), 1, + ts_builtin_sym_end, + STATE(232), 1, aux_sym__block_body_repeat1, - ACTIONS(10723), 2, + STATE(5956), 1, + sym_comment, + ACTIONS(25), 2, sym__newline, anon_sym_SEMI, - [216003] = 6, + [201781] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2049), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10401), 1, + anon_sym_COLON, + ACTIONS(10403), 1, + anon_sym_GT2, + STATE(5305), 1, + aux_sym__multiple_types_repeat1, + STATE(5957), 1, + sym_comment, + [201800] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(10405), 1, + anon_sym_LBRACK, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(5958), 1, + sym_comment, + STATE(7083), 1, + sym_val_list, + [201819] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1618), 1, + anon_sym_LPAREN2, + ACTIONS(1997), 1, anon_sym_RBRACE, - ACTIONS(2051), 1, + ACTIONS(1999), 1, + sym__entry_separator, + STATE(5959), 1, + sym_comment, + STATE(6805), 1, + sym__expr_parenthesized_immediate, + [201838] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(4976), 1, + anon_sym_DASH2, + STATE(5960), 1, + sym_comment, + ACTIONS(4974), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [201853] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5480), 1, anon_sym_LPAREN2, - ACTIONS(2053), 1, + ACTIONS(10407), 1, + anon_sym_RBRACK, + ACTIONS(10409), 1, sym__entry_separator, - STATE(6437), 1, + STATE(5961), 1, + sym_comment, + STATE(7210), 1, + sym__expr_parenthesized_immediate, + [201872] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10411), 1, + anon_sym_COLON, + ACTIONS(10413), 1, + anon_sym_GT2, + STATE(5306), 1, + aux_sym__multiple_types_repeat1, + STATE(5962), 1, sym_comment, - [216022] = 3, + [201891] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6438), 1, + STATE(5963), 1, + sym_comment, + ACTIONS(10415), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [201904] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10417), 1, + anon_sym_DQUOTE, + STATE(5964), 1, + sym_comment, + STATE(5969), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10326), 2, + sym__escaped_str_content, + sym_escape_sequence, + [201921] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5965), 1, + sym_comment, + ACTIONS(8190), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(8192), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [201936] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10419), 1, + anon_sym_COLON, + ACTIONS(10421), 1, + anon_sym_GT2, + STATE(5308), 1, + aux_sym__multiple_types_repeat1, + STATE(5966), 1, + sym_comment, + [201955] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(5967), 1, sym_comment, - ACTIONS(10649), 4, + ACTIONS(10423), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216035] = 3, + [201968] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6439), 1, + STATE(5968), 1, sym_comment, - ACTIONS(10649), 4, + ACTIONS(10425), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216048] = 3, - ACTIONS(245), 1, + [201981] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6440), 1, + ACTIONS(10427), 1, + anon_sym_DQUOTE, + STATE(5914), 1, + aux_sym__str_double_quotes_repeat1, + STATE(5969), 1, sym_comment, - ACTIONS(10725), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [216061] = 3, + ACTIONS(10326), 2, + sym__escaped_str_content, + sym_escape_sequence, + [201998] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6441), 1, + STATE(5970), 1, sym_comment, - ACTIONS(10727), 4, + ACTIONS(10425), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216074] = 5, + [202011] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6785), 1, + sym__newline, + ACTIONS(10429), 1, + anon_sym_EQ, + ACTIONS(10431), 1, + anon_sym_COLON, + STATE(3763), 1, + aux_sym_shebang_repeat1, + STATE(5971), 1, + sym_comment, + [202030] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10729), 1, - anon_sym_DQUOTE, - STATE(6442), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10433), 1, + anon_sym_COLON, + ACTIONS(10435), 1, + anon_sym_GT2, + STATE(5309), 1, + aux_sym__multiple_types_repeat1, + STATE(5972), 1, sym_comment, - STATE(6445), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, - sym__escaped_str_content, - sym_escape_sequence, - [216091] = 3, + [202049] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6443), 1, + STATE(5973), 1, sym_comment, - ACTIONS(10727), 4, + ACTIONS(10292), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [216104] = 4, + [202062] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6444), 1, + STATE(5974), 1, sym_comment, - ACTIONS(8436), 2, + ACTIONS(8194), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(8438), 2, + ACTIONS(8196), 2, anon_sym_RBRACK, anon_sym_GT2, - [216119] = 5, + [202077] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10731), 1, - anon_sym_DQUOTE, - STATE(6445), 1, + ACTIONS(6558), 1, + sym__entry_separator, + ACTIONS(10284), 1, + anon_sym_LBRACK, + ACTIONS(10437), 1, + anon_sym_RBRACK, + STATE(3382), 1, + aux_sym__multiple_types_repeat1, + STATE(5975), 1, sym_comment, - STATE(6717), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, - sym__escaped_str_content, - sym_escape_sequence, - [216136] = 6, + [202096] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10733), 1, - anon_sym_COLON, - ACTIONS(10735), 1, - anon_sym_GT2, - STATE(5489), 1, + ACTIONS(10284), 1, + anon_sym_LBRACK, + ACTIONS(10439), 1, + anon_sym_RBRACK, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6446), 1, + STATE(5976), 1, sym_comment, - [216155] = 6, + [202115] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2095), 1, - aux_sym__unquoted_in_record_token4, - ACTIONS(2202), 1, - anon_sym_RBRACE, - ACTIONS(2204), 1, + ACTIONS(6558), 1, sym__entry_separator, - STATE(6447), 1, + ACTIONS(10284), 1, + anon_sym_LBRACK, + ACTIONS(10441), 1, + anon_sym_RBRACK, + STATE(3382), 1, + aux_sym__multiple_types_repeat1, + STATE(5977), 1, sym_comment, - [216174] = 6, + [202134] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2089), 1, - anon_sym_RBRACE, - ACTIONS(2091), 1, - anon_sym_LPAREN2, - ACTIONS(2093), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(2095), 1, - aux_sym__unquoted_in_record_token4, - STATE(6448), 1, + ACTIONS(10284), 1, + anon_sym_LBRACK, + ACTIONS(10443), 1, + anon_sym_RBRACK, + STATE(3382), 1, + aux_sym__multiple_types_repeat1, + STATE(5978), 1, + sym_comment, + [202153] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(5979), 1, sym_comment, - [216193] = 4, + ACTIONS(10445), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [202166] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6449), 1, + STATE(5980), 1, sym_comment, - ACTIONS(8440), 2, + ACTIONS(8198), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(8442), 2, + ACTIONS(8200), 2, anon_sym_RBRACK, anon_sym_GT2, - [216208] = 4, + [202181] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6450), 1, + ACTIONS(10447), 1, + anon_sym_DQUOTE, + STATE(5981), 1, sym_comment, - ACTIONS(8444), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(8446), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [216223] = 4, + STATE(5986), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10326), 2, + sym__escaped_str_content, + sym_escape_sequence, + [202198] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(5982), 1, + sym_comment, + ACTIONS(10449), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [202211] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6451), 1, + STATE(5983), 1, sym_comment, - ACTIONS(8310), 2, + ACTIONS(8202), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(8312), 2, + ACTIONS(8204), 2, anon_sym_RBRACK, anon_sym_GT2, - [216238] = 4, + [202226] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6452), 1, + ACTIONS(10451), 1, + anon_sym_DQUOTE, + STATE(5984), 1, sym_comment, - ACTIONS(8416), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(8418), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [216253] = 4, + STATE(6028), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10326), 2, + sym__escaped_str_content, + sym_escape_sequence, + [202243] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(5985), 1, + sym_comment, + ACTIONS(10453), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [202256] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6453), 1, + ACTIONS(10455), 1, + anon_sym_DQUOTE, + STATE(5914), 1, + aux_sym__str_double_quotes_repeat1, + STATE(5986), 1, sym_comment, - ACTIONS(8294), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(8296), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [216268] = 4, + ACTIONS(10326), 2, + sym__escaped_str_content, + sym_escape_sequence, + [202273] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6454), 1, + STATE(5987), 1, sym_comment, - ACTIONS(8306), 2, + ACTIONS(8142), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(8308), 2, + ACTIONS(8144), 2, anon_sym_RBRACK, anon_sym_GT2, - [216283] = 6, + [202288] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10737), 1, + ACTIONS(10457), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6455), 1, + STATE(5988), 1, sym_comment, - [216302] = 6, + [202307] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10739), 1, + ACTIONS(10459), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6456), 1, + STATE(5989), 1, sym_comment, - [216321] = 6, + [202326] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10741), 1, + ACTIONS(10461), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6457), 1, + STATE(5990), 1, sym_comment, - [216340] = 6, + [202345] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10743), 1, + ACTIONS(10463), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6458), 1, + STATE(5991), 1, sym_comment, - [216359] = 6, - ACTIONS(3), 1, + [202364] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10465), 1, anon_sym_LBRACK, - ACTIONS(10745), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6459), 1, + ACTIONS(10467), 1, + anon_sym_LPAREN, + STATE(3097), 1, + sym_parameter_parens, + STATE(3105), 1, + sym_parameter_bracks, + STATE(5992), 1, sym_comment, - [216378] = 6, + [202383] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10747), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6460), 1, + STATE(5993), 1, sym_comment, - [216397] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(8206), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10749), 1, + ACTIONS(8208), 2, anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6461), 1, - sym_comment, - [216416] = 6, + anon_sym_GT2, + [202398] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + STATE(5994), 1, + sym_comment, + ACTIONS(8210), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10751), 1, + ACTIONS(8212), 2, anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6462), 1, - sym_comment, - [216435] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6463), 1, - sym_comment, - ACTIONS(10753), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216448] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(10597), 1, - anon_sym_LBRACK, - ACTIONS(10599), 1, - anon_sym_LPAREN, - STATE(3259), 1, - sym_parameter_bracks, - STATE(3273), 1, - sym_parameter_parens, - STATE(6464), 1, - sym_comment, - [216467] = 3, + anon_sym_GT2, + [202413] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6465), 1, + STATE(5995), 1, sym_comment, - ACTIONS(10755), 4, + ACTIONS(10469), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [216480] = 5, + [202426] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10757), 1, + ACTIONS(10471), 1, anon_sym_DQUOTE, - STATE(6466), 1, + STATE(5996), 1, sym_comment, - STATE(6468), 1, + STATE(6001), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [216497] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(10597), 1, - anon_sym_LBRACK, - ACTIONS(10599), 1, - anon_sym_LPAREN, - STATE(3272), 1, - sym_parameter_bracks, - STATE(3292), 1, - sym_parameter_parens, - STATE(6467), 1, - sym_comment, - [216516] = 5, + [202443] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10759), 1, - anon_sym_DQUOTE, - STATE(6468), 1, + STATE(5997), 1, sym_comment, - STATE(6717), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, - sym__escaped_str_content, - sym_escape_sequence, - [216533] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2059), 1, - anon_sym_RBRACE, - ACTIONS(2061), 1, - anon_sym_LPAREN2, - ACTIONS(2063), 1, + ACTIONS(8146), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(2065), 1, - aux_sym__unquoted_in_record_token2, - STATE(6469), 1, - sym_comment, - [216552] = 6, - ACTIONS(245), 1, + ACTIONS(8148), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [202458] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1601), 1, - anon_sym_SEMI, - ACTIONS(3854), 1, - sym__newline, - STATE(277), 1, - aux_sym__parenthesized_body_repeat1, - STATE(6470), 1, + STATE(5998), 1, sym_comment, - STATE(7165), 1, - aux_sym_shebang_repeat1, - [216571] = 5, + ACTIONS(8214), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(8216), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [202473] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(10761), 1, - anon_sym_RPAREN, - STATE(6471), 1, + STATE(5999), 1, sym_comment, - STATE(6718), 1, - aux_sym__block_body_repeat1, - ACTIONS(10723), 2, + ACTIONS(6444), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [216588] = 6, + anon_sym_LBRACE, + [202486] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1581), 1, + ACTIONS(1618), 1, anon_sym_LPAREN2, - ACTIONS(2075), 1, + ACTIONS(2001), 1, anon_sym_RBRACE, - ACTIONS(2077), 1, + ACTIONS(2003), 1, sym__entry_separator, - STATE(6472), 1, + STATE(6000), 1, sym_comment, - STATE(7742), 1, + STATE(6805), 1, sym__expr_parenthesized_immediate, - [216607] = 6, + [202505] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10763), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6473), 1, + ACTIONS(10473), 1, + anon_sym_DQUOTE, + STATE(5914), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6001), 1, sym_comment, - [216626] = 6, + ACTIONS(10326), 2, + sym__escaped_str_content, + sym_escape_sequence, + [202522] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + STATE(6002), 1, + sym_comment, + ACTIONS(8218), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10765), 1, + ACTIONS(8220), 2, anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6474), 1, + anon_sym_GT2, + [202537] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6003), 1, sym_comment, - [216645] = 6, + ACTIONS(10475), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [202550] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10767), 1, - anon_sym_RBRACK, - STATE(3597), 1, + ACTIONS(10049), 1, + anon_sym_AT2, + STATE(5364), 1, aux_sym__multiple_types_repeat1, - STATE(6475), 1, + STATE(6004), 1, sym_comment, - [216664] = 6, + STATE(6828), 1, + sym_param_cmd, + [202569] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10769), 1, + ACTIONS(10477), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6476), 1, + STATE(6005), 1, sym_comment, - [216683] = 6, + [202588] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + STATE(6006), 1, + sym_comment, + ACTIONS(8222), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10771), 1, + ACTIONS(8224), 2, anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6477), 1, - sym_comment, - [216702] = 6, + anon_sym_GT2, + [202603] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10773), 1, + ACTIONS(10479), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6478), 1, + STATE(6007), 1, sym_comment, - [216721] = 6, + [202622] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10775), 1, + ACTIONS(10481), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6479), 1, + STATE(6008), 1, sym_comment, - [216740] = 6, + [202641] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10777), 1, + ACTIONS(10483), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6480), 1, - sym_comment, - [216759] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6481), 1, + STATE(6009), 1, sym_comment, - ACTIONS(10779), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216772] = 3, - ACTIONS(245), 1, + [202660] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6482), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10049), 1, + anon_sym_AT2, + STATE(5365), 1, + aux_sym__multiple_types_repeat1, + STATE(6010), 1, sym_comment, - ACTIONS(10779), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [216785] = 4, + STATE(6843), 1, + sym_param_cmd, + [202679] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6483), 1, - sym_comment, - ACTIONS(8062), 2, - anon_sym_AT2, + ACTIONS(1447), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1805), 1, + anon_sym_RBRACE, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + ACTIONS(1813), 1, sym__entry_separator, - ACTIONS(8064), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [216800] = 3, + STATE(6011), 1, + sym_comment, + [202698] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6484), 1, + STATE(6012), 1, sym_comment, - ACTIONS(10781), 4, + ACTIONS(10485), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [216813] = 4, - ACTIONS(3), 1, + [202711] = 6, + ACTIONS(245), 1, anon_sym_POUND, - STATE(6485), 1, + ACTIONS(10166), 1, + anon_sym_use, + ACTIONS(10168), 1, + anon_sym_list, + ACTIONS(10170), 1, + anon_sym_hide, + ACTIONS(10172), 1, + anon_sym_new, + STATE(6013), 1, sym_comment, - ACTIONS(8066), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(8068), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [216828] = 5, + [202730] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10783), 1, + ACTIONS(10487), 1, anon_sym_DQUOTE, - STATE(6486), 1, + STATE(6014), 1, sym_comment, - STATE(6489), 1, + STATE(6018), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [216845] = 4, + [202747] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6015), 1, + sym_comment, + ACTIONS(6446), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [202760] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6487), 1, + ACTIONS(10489), 1, + anon_sym_DQUOTE, + STATE(6016), 1, sym_comment, - ACTIONS(8076), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(8078), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [216860] = 4, + STATE(6070), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10326), 2, + sym__escaped_str_content, + sym_escape_sequence, + [202777] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6488), 1, + STATE(6017), 1, sym_comment, - ACTIONS(8080), 2, + ACTIONS(8226), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(8082), 2, + ACTIONS(8228), 2, anon_sym_RBRACK, anon_sym_GT2, - [216875] = 5, + [202792] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10785), 1, + ACTIONS(10491), 1, anon_sym_DQUOTE, - STATE(6489), 1, - sym_comment, - STATE(6717), 1, + STATE(5914), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + STATE(6018), 1, + sym_comment, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [216892] = 4, + [202809] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6490), 1, + STATE(6019), 1, sym_comment, - ACTIONS(8084), 2, + ACTIONS(8230), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(8086), 2, + ACTIONS(8232), 2, anon_sym_RBRACK, anon_sym_GT2, - [216907] = 6, + [202824] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(4630), 1, - sym_block, - STATE(6283), 1, - aux_sym_shebang_repeat1, - STATE(6491), 1, - sym_comment, - [216926] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6492), 1, + STATE(6020), 1, sym_comment, - ACTIONS(8088), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(8090), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [216941] = 4, - ACTIONS(3), 1, + ACTIONS(10349), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [202837] = 6, + ACTIONS(245), 1, anon_sym_POUND, - STATE(6493), 1, + ACTIONS(10370), 1, + anon_sym_LBRACK, + ACTIONS(10372), 1, + anon_sym_LPAREN, + STATE(5685), 1, + sym_parameter_parens, + STATE(5686), 1, + sym_parameter_bracks, + STATE(6021), 1, sym_comment, - ACTIONS(8092), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(8094), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [216956] = 4, + [202856] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6494), 1, + STATE(6022), 1, sym_comment, - ACTIONS(8108), 2, + ACTIONS(8234), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(8110), 2, + ACTIONS(8236), 2, anon_sym_RBRACK, anon_sym_GT2, - [216971] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(10787), 1, - anon_sym_COLON, - ACTIONS(10789), 1, - anon_sym_GT2, - STATE(5599), 1, - aux_sym__multiple_types_repeat1, - STATE(6495), 1, - sym_comment, - [216990] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(10791), 1, - anon_sym_COLON, - ACTIONS(10793), 1, - anon_sym_GT2, - STATE(5600), 1, - aux_sym__multiple_types_repeat1, - STATE(6496), 1, - sym_comment, - [217009] = 6, + [202871] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10795), 1, + ACTIONS(10493), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6497), 1, + STATE(6023), 1, sym_comment, - [217028] = 6, + [202890] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10797), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6498), 1, + STATE(6024), 1, sym_comment, - [217047] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(8238), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10799), 1, + ACTIONS(8240), 2, anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6499), 1, - sym_comment, - [217066] = 6, + anon_sym_GT2, + [202905] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10801), 1, + ACTIONS(10495), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6500), 1, + STATE(6025), 1, sym_comment, - [217085] = 6, + [202924] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10803), 1, + ACTIONS(10497), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6501), 1, + STATE(6026), 1, sym_comment, - [217104] = 6, + [202943] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10805), 1, + ACTIONS(10499), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6502), 1, + STATE(6027), 1, sym_comment, - [217123] = 6, + [202962] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10807), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6503), 1, + ACTIONS(10501), 1, + anon_sym_DQUOTE, + STATE(5914), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6028), 1, sym_comment, - [217142] = 6, - ACTIONS(3), 1, + ACTIONS(10326), 2, + sym__escaped_str_content, + sym_escape_sequence, + [202979] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10465), 1, anon_sym_LBRACK, - ACTIONS(10809), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6504), 1, + ACTIONS(10467), 1, + anon_sym_LPAREN, + STATE(5435), 1, + sym_parameter_bracks, + STATE(5518), 1, + sym_parameter_parens, + STATE(6029), 1, sym_comment, - [217161] = 6, - ACTIONS(3), 1, + [202998] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1581), 1, - anon_sym_LPAREN2, - ACTIONS(2079), 1, - anon_sym_RBRACE, - ACTIONS(2081), 1, - sym__entry_separator, - STATE(6505), 1, + STATE(6030), 1, sym_comment, - STATE(7742), 1, - sym__expr_parenthesized_immediate, - [217180] = 3, + ACTIONS(10503), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [203011] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6506), 1, + STATE(6031), 1, sym_comment, - ACTIONS(10811), 4, + ACTIONS(10505), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [217193] = 5, + [203024] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10813), 1, + ACTIONS(10507), 1, anon_sym_DQUOTE, - STATE(6507), 1, + STATE(6032), 1, sym_comment, - STATE(6512), 1, + STATE(6035), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [217210] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(10815), 1, - anon_sym_COLON, - ACTIONS(10817), 1, - anon_sym_GT2, - STATE(5601), 1, - aux_sym__multiple_types_repeat1, - STATE(6508), 1, - sym_comment, - [217229] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(10819), 1, - anon_sym_COLON, - ACTIONS(10821), 1, - anon_sym_GT2, - STATE(5609), 1, - aux_sym__multiple_types_repeat1, - STATE(6509), 1, - sym_comment, - [217248] = 6, + [203041] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4632), 1, - sym_block, - STATE(6510), 1, + STATE(6033), 1, sym_comment, - [217267] = 4, - ACTIONS(3), 1, + ACTIONS(10349), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [203054] = 6, + ACTIONS(245), 1, anon_sym_POUND, - STATE(6511), 1, + ACTIONS(940), 1, + sym__table_head_separator, + ACTIONS(10078), 1, + anon_sym_DOT2, + STATE(6034), 1, sym_comment, - ACTIONS(8130), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(8132), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [217282] = 5, + STATE(6067), 1, + aux_sym_cell_path_repeat1, + STATE(6948), 1, + sym_path, + [203073] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10823), 1, + ACTIONS(10509), 1, anon_sym_DQUOTE, - STATE(6512), 1, - sym_comment, - STATE(6717), 1, + STATE(5914), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + STATE(6035), 1, + sym_comment, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [217299] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10825), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6513), 1, - sym_comment, - [217318] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10827), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6514), 1, - sym_comment, - [217337] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6515), 1, - sym_comment, - ACTIONS(8134), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(8136), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [217352] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10829), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6516), 1, - sym_comment, - [217371] = 4, - ACTIONS(3), 1, + [203090] = 3, + ACTIONS(245), 1, anon_sym_POUND, - STATE(6517), 1, + STATE(6036), 1, sym_comment, - ACTIONS(8138), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(8140), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [217386] = 4, + ACTIONS(10511), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [203103] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6518), 1, + STATE(6037), 1, sym_comment, - ACTIONS(8144), 2, + ACTIONS(8242), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(8146), 2, + ACTIONS(8244), 2, anon_sym_RBRACK, anon_sym_GT2, - [217401] = 4, + [203118] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6519), 1, + STATE(6038), 1, sym_comment, - ACTIONS(8150), 2, + ACTIONS(8246), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(8152), 2, + ACTIONS(8248), 2, anon_sym_RBRACK, anon_sym_GT2, - [217416] = 5, + [203133] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1520), 1, - ts_builtin_sym_end, - STATE(282), 1, - aux_sym__block_body_repeat1, - STATE(6520), 1, + STATE(6039), 1, sym_comment, - ACTIONS(25), 2, + ACTIONS(10513), 4, sym__newline, anon_sym_SEMI, - [217433] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [203146] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10831), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6521), 1, + STATE(6040), 1, sym_comment, - [217452] = 6, + ACTIONS(2076), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token4, + ACTIONS(2078), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [203161] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10833), 1, + ACTIONS(10515), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6522), 1, + STATE(6041), 1, sym_comment, - [217471] = 6, + [203180] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10835), 1, + ACTIONS(10517), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6523), 1, + STATE(6042), 1, sym_comment, - [217490] = 6, + [203199] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10837), 1, + ACTIONS(10519), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6524), 1, + STATE(6043), 1, sym_comment, - [217509] = 6, + [203218] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10839), 1, + ACTIONS(10521), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6525), 1, + STATE(6044), 1, sym_comment, - [217528] = 6, + [203237] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + STATE(6045), 1, + sym_comment, + ACTIONS(8250), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10841), 1, + ACTIONS(8252), 2, anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6526), 1, + anon_sym_GT2, + [203252] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6046), 1, sym_comment, - [217547] = 6, + ACTIONS(10523), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [203265] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10843), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6527), 1, + ACTIONS(10525), 1, + anon_sym_DQUOTE, + STATE(6047), 1, sym_comment, - [217566] = 6, + STATE(6054), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10326), 2, + sym__escaped_str_content, + sym_escape_sequence, + [203282] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + STATE(6048), 1, + sym_comment, + ACTIONS(8254), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10845), 1, + ACTIONS(8256), 2, anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6528), 1, + anon_sym_GT2, + [203297] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6049), 1, + sym_comment, + ACTIONS(10527), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [203310] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6050), 1, sym_comment, - [217585] = 4, + ACTIONS(10529), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [203323] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6529), 1, + STATE(6051), 1, sym_comment, - ACTIONS(8154), 2, + ACTIONS(7816), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(8156), 2, + ACTIONS(7820), 2, anon_sym_RBRACK, anon_sym_GT2, - [217600] = 4, + [203338] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6530), 1, + STATE(6052), 1, sym_comment, - ACTIONS(8158), 2, + ACTIONS(8258), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(8160), 2, + ACTIONS(8260), 2, anon_sym_RBRACK, anon_sym_GT2, - [217615] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6531), 1, - sym_comment, - ACTIONS(10847), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [217628] = 4, + [203353] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6532), 1, + STATE(6053), 1, sym_comment, - ACTIONS(8162), 2, + ACTIONS(8262), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(8164), 2, + ACTIONS(8264), 2, anon_sym_RBRACK, anon_sym_GT2, - [217643] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10849), 1, - anon_sym_DQUOTE, - STATE(6533), 1, - sym_comment, - STATE(6534), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, - sym__escaped_str_content, - sym_escape_sequence, - [217660] = 5, + [203368] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10851), 1, + ACTIONS(10531), 1, anon_sym_DQUOTE, - STATE(6534), 1, - sym_comment, - STATE(6717), 1, + STATE(5914), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + STATE(6054), 1, + sym_comment, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [217677] = 6, + [203385] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + STATE(6055), 1, + sym_comment, + ACTIONS(8266), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10853), 1, + ACTIONS(8268), 2, anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6535), 1, - sym_comment, - [217696] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(7003), 1, - anon_sym_DOLLAR, - ACTIONS(8826), 1, - sym_identifier, - STATE(5713), 1, - sym_val_variable, - STATE(6536), 1, - sym_comment, - STATE(7903), 1, - sym__variable_name, - [217715] = 6, + anon_sym_GT2, + [203400] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + STATE(6056), 1, + sym_comment, + ACTIONS(8270), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10855), 1, + ACTIONS(8272), 2, anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6537), 1, - sym_comment, - [217734] = 6, + anon_sym_GT2, + [203415] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10857), 1, + ACTIONS(10533), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6538), 1, + STATE(6057), 1, sym_comment, - [217753] = 6, - ACTIONS(3), 1, + [203434] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10859), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6539), 1, + STATE(6058), 1, sym_comment, - [217772] = 6, + ACTIONS(10535), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [203447] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10861), 1, + ACTIONS(10537), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6540), 1, + STATE(6059), 1, sym_comment, - [217791] = 6, + [203466] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10863), 1, + ACTIONS(10539), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6541), 1, + STATE(6060), 1, sym_comment, - [217810] = 6, + [203485] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10865), 1, + ACTIONS(10541), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6542), 1, - sym_comment, - [217829] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6543), 1, + STATE(6061), 1, sym_comment, - ACTIONS(8166), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(8168), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [217844] = 4, + [203504] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6544), 1, + ACTIONS(2166), 1, + anon_sym_PIPE, + ACTIONS(2168), 1, + aux_sym_unquoted_token4, + STATE(6062), 1, sym_comment, - ACTIONS(8176), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(8178), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [217859] = 3, + ACTIONS(2162), 2, + anon_sym_if, + anon_sym_EQ_GT, + [203521] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6545), 1, + STATE(6063), 1, sym_comment, - ACTIONS(10867), 4, + ACTIONS(10543), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [217872] = 5, + [203534] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10869), 1, + ACTIONS(10545), 1, anon_sym_DQUOTE, - STATE(6546), 1, + STATE(6064), 1, sym_comment, - STATE(6548), 1, + STATE(6068), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [217889] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(10597), 1, - anon_sym_LBRACK, - ACTIONS(10599), 1, - anon_sym_LPAREN, - STATE(3255), 1, - sym_parameter_parens, - STATE(3268), 1, - sym_parameter_bracks, - STATE(6547), 1, - sym_comment, - [217908] = 5, + [203551] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10871), 1, - anon_sym_DQUOTE, - STATE(6548), 1, + ACTIONS(994), 1, + sym__entry_separator, + ACTIONS(998), 1, + anon_sym_RBRACE, + ACTIONS(2104), 1, + anon_sym_LPAREN2, + ACTIONS(2106), 1, + aux_sym__unquoted_in_record_token4, + STATE(6065), 1, sym_comment, - STATE(6717), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, - sym__escaped_str_content, - sym_escape_sequence, - [217925] = 4, + [203570] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6549), 1, + STATE(6066), 1, sym_comment, - ACTIONS(8186), 2, + ACTIONS(8274), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(8188), 2, + ACTIONS(8276), 2, anon_sym_RBRACK, anon_sym_GT2, - [217940] = 4, + [203585] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(933), 1, + sym__table_head_separator, + ACTIONS(10547), 1, + anon_sym_DOT2, + STATE(6948), 1, + sym_path, + STATE(6067), 2, + sym_comment, + aux_sym_cell_path_repeat1, + [203602] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6550), 1, + ACTIONS(10550), 1, + anon_sym_DQUOTE, + STATE(5914), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6068), 1, sym_comment, - ACTIONS(8190), 2, + ACTIONS(10326), 2, + sym__escaped_str_content, + sym_escape_sequence, + [203619] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6069), 1, + sym_comment, + ACTIONS(8278), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(8192), 2, + ACTIONS(8280), 2, anon_sym_RBRACK, anon_sym_GT2, - [217955] = 6, + [203634] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10873), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6551), 1, + ACTIONS(10552), 1, + anon_sym_DQUOTE, + STATE(5914), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6070), 1, sym_comment, - [217974] = 6, + ACTIONS(10326), 2, + sym__escaped_str_content, + sym_escape_sequence, + [203651] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10875), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6552), 1, + STATE(6071), 1, sym_comment, - [217993] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(8282), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10877), 1, + ACTIONS(8284), 2, anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6553), 1, - sym_comment, - [218012] = 6, + anon_sym_GT2, + [203666] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + STATE(6072), 1, + sym_comment, + ACTIONS(8286), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10879), 1, + ACTIONS(8288), 2, anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6554), 1, + anon_sym_GT2, + [203681] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1520), 1, + ts_builtin_sym_end, + STATE(258), 1, + aux_sym__block_body_repeat1, + STATE(6073), 1, sym_comment, - [218031] = 6, + ACTIONS(25), 2, + sym__newline, + anon_sym_SEMI, + [203698] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10881), 1, + ACTIONS(10554), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6555), 1, + STATE(6074), 1, sym_comment, - [218050] = 6, + [203717] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10883), 1, + ACTIONS(10556), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6556), 1, + STATE(6075), 1, sym_comment, - [218069] = 6, + [203736] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10885), 1, + ACTIONS(10558), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6557), 1, + STATE(6076), 1, sym_comment, - [218088] = 6, + [203755] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10887), 1, + ACTIONS(10560), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6558), 1, + STATE(6077), 1, sym_comment, - [218107] = 3, + [203774] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6559), 1, + STATE(6078), 1, sym_comment, - ACTIONS(10889), 4, + ACTIONS(10562), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [218120] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6560), 1, - sym_comment, - ACTIONS(8198), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(8200), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [218135] = 5, + [203787] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10891), 1, + ACTIONS(10564), 1, anon_sym_DQUOTE, - STATE(6561), 1, + STATE(6079), 1, sym_comment, - STATE(6564), 1, + STATE(6082), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [218152] = 3, + [203804] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6562), 1, + STATE(6080), 1, sym_comment, - ACTIONS(10893), 4, + ACTIONS(10566), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [218165] = 6, - ACTIONS(3), 1, + [203817] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(10895), 1, - anon_sym_COLON, - ACTIONS(10897), 1, - anon_sym_GT2, - STATE(5461), 1, - aux_sym__multiple_types_repeat1, - STATE(6563), 1, + STATE(6081), 1, sym_comment, - [218184] = 5, + ACTIONS(6464), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [203830] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10899), 1, + ACTIONS(10568), 1, anon_sym_DQUOTE, - STATE(6564), 1, - sym_comment, - STATE(6717), 1, + STATE(5914), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + STATE(6082), 1, + sym_comment, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [218201] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(10901), 1, - anon_sym_COLON, - ACTIONS(10903), 1, - anon_sym_GT2, - STATE(5465), 1, - aux_sym__multiple_types_repeat1, - STATE(6565), 1, - sym_comment, - [218220] = 6, + [203847] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10905), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6566), 1, + ACTIONS(10570), 1, + anon_sym_COLON2, + STATE(5946), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(6083), 1, sym_comment, - [218239] = 6, + ACTIONS(7522), 2, + sym__newline, + sym__space, + [203864] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(1618), 1, + anon_sym_LPAREN2, + ACTIONS(2120), 1, + anon_sym_RBRACE, + ACTIONS(2122), 1, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10907), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6567), 1, + STATE(6084), 1, sym_comment, - [218258] = 6, - ACTIONS(3), 1, + STATE(7374), 1, + sym__expr_parenthesized_immediate, + [203883] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10909), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6568), 1, + STATE(6085), 1, sym_comment, - [218277] = 6, + ACTIONS(6474), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [203896] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10911), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6569), 1, + STATE(6086), 1, sym_comment, - [218296] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(8290), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10913), 1, + ACTIONS(8292), 2, anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6570), 1, - sym_comment, - [218315] = 6, + anon_sym_GT2, + [203911] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10915), 1, + ACTIONS(10572), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6571), 1, + STATE(6087), 1, sym_comment, - [218334] = 6, + [203930] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10917), 1, + ACTIONS(10574), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6572), 1, + STATE(6088), 1, sym_comment, - [218353] = 6, + [203949] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10919), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6573), 1, + ACTIONS(7528), 1, + anon_sym_COLON2, + STATE(5910), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(6089), 1, sym_comment, - [218372] = 6, + ACTIONS(7522), 2, + sym__newline, + sym__space, + [203966] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10921), 1, + ACTIONS(10576), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6574), 1, + STATE(6090), 1, sym_comment, - [218391] = 6, + [203985] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9834), 1, - anon_sym_LBRACE, - STATE(4797), 1, - sym__blosure, - STATE(4967), 1, - sym_block, - STATE(4968), 1, - sym_val_closure, - STATE(6575), 1, + STATE(6091), 1, sym_comment, - [218410] = 4, - ACTIONS(3), 1, + ACTIONS(10578), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [203998] = 3, + ACTIONS(245), 1, anon_sym_POUND, - STATE(6576), 1, + STATE(6092), 1, sym_comment, - ACTIONS(8208), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(8210), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [218425] = 4, - ACTIONS(3), 1, + ACTIONS(10578), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204011] = 3, + ACTIONS(245), 1, anon_sym_POUND, - STATE(6577), 1, + STATE(6093), 1, sym_comment, - ACTIONS(8214), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(8216), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [218440] = 3, + ACTIONS(10580), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204024] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6578), 1, + STATE(6094), 1, sym_comment, - ACTIONS(10923), 4, + ACTIONS(10582), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [218453] = 5, + [204037] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10925), 1, + ACTIONS(6558), 1, + sym__entry_separator, + ACTIONS(10284), 1, + anon_sym_LBRACK, + ACTIONS(10584), 1, + anon_sym_RBRACK, + STATE(3382), 1, + aux_sym__multiple_types_repeat1, + STATE(6095), 1, + sym_comment, + [204056] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10586), 1, anon_sym_DQUOTE, - STATE(6579), 1, + STATE(6096), 1, sym_comment, - STATE(6581), 1, + STATE(6099), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [218470] = 4, + [204073] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6580), 1, + STATE(6097), 1, sym_comment, - ACTIONS(8218), 2, + ACTIONS(8294), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(8220), 2, + ACTIONS(8296), 2, anon_sym_RBRACK, anon_sym_GT2, - [218485] = 5, + [204088] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(10465), 1, + anon_sym_LBRACK, + ACTIONS(10467), 1, + anon_sym_LPAREN, + STATE(5513), 1, + sym_parameter_parens, + STATE(5557), 1, + sym_parameter_bracks, + STATE(6098), 1, + sym_comment, + [204107] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10927), 1, + ACTIONS(10588), 1, anon_sym_DQUOTE, - STATE(6581), 1, - sym_comment, - STATE(6717), 1, + STATE(5914), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + STATE(6099), 1, + sym_comment, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [218502] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6582), 1, - sym_comment, - ACTIONS(10929), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218515] = 6, + [204124] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + STATE(6100), 1, + sym_comment, + ACTIONS(8298), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10931), 1, + ACTIONS(8300), 2, anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6583), 1, - sym_comment, - [218534] = 6, + anon_sym_GT2, + [204139] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1792), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2134), 1, + anon_sym_RBRACE, + ACTIONS(2136), 1, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10933), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6584), 1, + STATE(6101), 1, sym_comment, - [218553] = 6, + [204158] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10935), 1, + ACTIONS(10590), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6585), 1, + STATE(6102), 1, sym_comment, - [218572] = 6, + [204177] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10937), 1, + ACTIONS(10592), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6586), 1, + STATE(6103), 1, sym_comment, - [218591] = 6, + [204196] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10939), 1, + ACTIONS(10594), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6587), 1, + STATE(6104), 1, sym_comment, - [218610] = 6, + [204215] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10941), 1, + ACTIONS(10596), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6588), 1, + STATE(6105), 1, sym_comment, - [218629] = 6, + [204234] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(1782), 1, + anon_sym_RBRACE, + ACTIONS(1784), 1, + anon_sym_LPAREN2, + ACTIONS(1790), 1, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10943), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6589), 1, + ACTIONS(1792), 1, + aux_sym__unquoted_in_record_token2, + STATE(6106), 1, sym_comment, - [218648] = 6, - ACTIONS(3), 1, + [204253] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10945), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6590), 1, + STATE(6107), 1, sym_comment, - [218667] = 3, + ACTIONS(10580), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204266] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6591), 1, + STATE(6108), 1, sym_comment, - ACTIONS(10947), 4, + ACTIONS(10598), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [218680] = 3, + [204279] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6592), 1, + STATE(6109), 1, sym_comment, - ACTIONS(10949), 4, + ACTIONS(10600), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [218693] = 5, + [204292] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10951), 1, + ACTIONS(6558), 1, + sym__entry_separator, + ACTIONS(10284), 1, + anon_sym_LBRACK, + ACTIONS(10602), 1, + anon_sym_RBRACK, + STATE(3382), 1, + aux_sym__multiple_types_repeat1, + STATE(6110), 1, + sym_comment, + [204311] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10604), 1, anon_sym_DQUOTE, - STATE(6593), 1, + STATE(6111), 1, sym_comment, - STATE(6596), 1, + STATE(6114), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [218710] = 3, - ACTIONS(245), 1, + [204328] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6594), 1, + STATE(6112), 1, sym_comment, - ACTIONS(10953), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218723] = 4, + ACTIONS(8302), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(8304), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [204343] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6595), 1, + STATE(6113), 1, sym_comment, - ACTIONS(8222), 2, + ACTIONS(8306), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(8224), 2, + ACTIONS(8308), 2, anon_sym_RBRACK, anon_sym_GT2, - [218738] = 5, + [204358] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10955), 1, + ACTIONS(10606), 1, anon_sym_DQUOTE, - STATE(6596), 1, - sym_comment, - STATE(6717), 1, + STATE(5914), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + STATE(6114), 1, + sym_comment, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [218755] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6597), 1, - sym_comment, - ACTIONS(10957), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218768] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6598), 1, - sym_comment, - ACTIONS(10959), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218781] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6599), 1, - sym_comment, - ACTIONS(10961), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [218794] = 6, + [204375] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10963), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6600), 1, + STATE(6115), 1, sym_comment, - [218813] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(8310), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10965), 1, + ACTIONS(8312), 2, anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6601), 1, - sym_comment, - [218832] = 6, + anon_sym_GT2, + [204390] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10967), 1, + ACTIONS(10608), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6602), 1, + STATE(6116), 1, sym_comment, - [218851] = 6, + [204409] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10969), 1, + ACTIONS(10610), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6603), 1, + STATE(6117), 1, sym_comment, - [218870] = 6, + [204428] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10971), 1, + ACTIONS(10612), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6604), 1, + STATE(6118), 1, sym_comment, - [218889] = 6, + [204447] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10973), 1, + ACTIONS(10614), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6605), 1, + STATE(6119), 1, sym_comment, - [218908] = 6, + [204466] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + STATE(6120), 1, + sym_comment, + ACTIONS(8314), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10975), 1, + ACTIONS(8316), 2, anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6606), 1, - sym_comment, - [218927] = 6, + anon_sym_GT2, + [204481] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + STATE(6121), 1, + sym_comment, + ACTIONS(8318), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10977), 1, + ACTIONS(8320), 2, anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6607), 1, - sym_comment, - [218946] = 3, + anon_sym_GT2, + [204496] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6608), 1, + STATE(6122), 1, sym_comment, - ACTIONS(10979), 4, + ACTIONS(10616), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [218959] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10981), 1, - anon_sym_DQUOTE, - STATE(6609), 1, - sym_comment, - STATE(6611), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, - sym__escaped_str_content, - sym_escape_sequence, - [218976] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2047), 1, - anon_sym_PIPE, - STATE(6610), 1, - sym_comment, - ACTIONS(2045), 3, - anon_sym_if, - anon_sym_EQ_GT, - aux_sym_unquoted_token4, - [218991] = 5, + [204509] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10983), 1, + ACTIONS(10618), 1, anon_sym_DQUOTE, - STATE(6611), 1, + STATE(6123), 1, sym_comment, - STATE(6717), 1, + STATE(6126), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [219008] = 4, + [204526] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6612), 1, + STATE(6124), 1, sym_comment, - ACTIONS(8226), 2, + ACTIONS(8322), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(8228), 2, + ACTIONS(8324), 2, anon_sym_RBRACK, anon_sym_GT2, - [219023] = 6, + [204541] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + STATE(6125), 1, + sym_comment, + ACTIONS(8326), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10985), 1, + ACTIONS(8328), 2, anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6613), 1, - sym_comment, - [219042] = 6, + anon_sym_GT2, + [204556] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10987), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6614), 1, + ACTIONS(10620), 1, + anon_sym_DQUOTE, + STATE(5914), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6126), 1, sym_comment, - [219061] = 6, + ACTIONS(10326), 2, + sym__escaped_str_content, + sym_escape_sequence, + [204573] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + STATE(6127), 1, + sym_comment, + ACTIONS(8330), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10989), 1, + ACTIONS(8332), 2, anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6615), 1, - sym_comment, - [219080] = 6, + anon_sym_GT2, + [204588] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + STATE(6128), 1, + sym_comment, + ACTIONS(8334), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(10991), 1, + ACTIONS(8336), 2, anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6616), 1, - sym_comment, - [219099] = 6, + anon_sym_GT2, + [204603] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10993), 1, + ACTIONS(10622), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6617), 1, + STATE(6129), 1, sym_comment, - [219118] = 6, + [204622] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10995), 1, + ACTIONS(10624), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6618), 1, + STATE(6130), 1, sym_comment, - [219137] = 6, + [204641] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10997), 1, + ACTIONS(10626), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6619), 1, + STATE(6131), 1, sym_comment, - [219156] = 6, + [204660] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - ACTIONS(10999), 1, + ACTIONS(10628), 1, anon_sym_RBRACK, - STATE(3597), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6620), 1, + STATE(6132), 1, sym_comment, - [219175] = 4, + [204679] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6621), 1, + STATE(6133), 1, sym_comment, - ACTIONS(8232), 2, + ACTIONS(8338), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(8234), 2, + ACTIONS(8340), 2, anon_sym_RBRACK, anon_sym_GT2, - [219190] = 3, + [204694] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6622), 1, + STATE(6134), 1, sym_comment, - ACTIONS(11001), 4, + ACTIONS(10630), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [219203] = 5, + [204707] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11003), 1, + ACTIONS(10632), 1, anon_sym_DQUOTE, - STATE(6623), 1, + STATE(6135), 1, sym_comment, - STATE(6625), 1, + STATE(6139), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [219220] = 4, + [204724] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6624), 1, + STATE(6136), 1, sym_comment, - ACTIONS(8236), 2, + ACTIONS(8342), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(8238), 2, + ACTIONS(8344), 2, anon_sym_RBRACK, anon_sym_GT2, - [219235] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11005), 1, - anon_sym_DQUOTE, - STATE(6625), 1, - sym_comment, - STATE(6717), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, - sym__escaped_str_content, - sym_escape_sequence, - [219252] = 4, + [204739] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6626), 1, + STATE(6137), 1, sym_comment, - ACTIONS(8240), 2, + ACTIONS(8348), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(8242), 2, + ACTIONS(8350), 2, anon_sym_RBRACK, anon_sym_GT2, - [219267] = 4, + [204754] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6627), 1, + STATE(6138), 1, sym_comment, - ACTIONS(8246), 2, + ACTIONS(8352), 2, anon_sym_AT2, sym__entry_separator, - ACTIONS(8248), 2, + ACTIONS(8354), 2, anon_sym_RBRACK, anon_sym_GT2, - [219282] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6628), 1, - sym_comment, - ACTIONS(11007), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [219295] = 5, + [204769] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11009), 1, + ACTIONS(10634), 1, anon_sym_DQUOTE, - STATE(6629), 1, - sym_comment, - STATE(6631), 1, + STATE(5914), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + STATE(6139), 1, + sym_comment, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [219312] = 4, + [204786] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6630), 1, - sym_comment, - ACTIONS(8250), 2, - anon_sym_AT2, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(8252), 2, - anon_sym_RBRACK, + ACTIONS(10636), 1, + anon_sym_COLON, + ACTIONS(10638), 1, anon_sym_GT2, - [219327] = 5, + STATE(5295), 1, + aux_sym__multiple_types_repeat1, + STATE(6140), 1, + sym_comment, + [204805] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11011), 1, - anon_sym_DQUOTE, - STATE(6631), 1, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + ACTIONS(2130), 1, + anon_sym_PIPE, + STATE(6141), 1, sym_comment, - STATE(6717), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, - sym__escaped_str_content, - sym_escape_sequence, - [219344] = 4, + ACTIONS(2128), 2, + anon_sym_if, + anon_sym_EQ_GT, + [204822] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6632), 1, - sym_comment, - ACTIONS(8254), 2, - anon_sym_AT2, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(8256), 2, + ACTIONS(10284), 1, + anon_sym_LBRACK, + ACTIONS(10640), 1, anon_sym_RBRACK, - anon_sym_GT2, - [219359] = 4, + STATE(3382), 1, + aux_sym__multiple_types_repeat1, + STATE(6142), 1, + sym_comment, + [204841] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6633), 1, - sym_comment, - ACTIONS(8258), 2, - anon_sym_AT2, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(8260), 2, + ACTIONS(10284), 1, + anon_sym_LBRACK, + ACTIONS(10642), 1, anon_sym_RBRACK, - anon_sym_GT2, - [219374] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6634), 1, + STATE(3382), 1, + aux_sym__multiple_types_repeat1, + STATE(6143), 1, sym_comment, - ACTIONS(11013), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [219387] = 5, + [204860] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11015), 1, - anon_sym_DQUOTE, - STATE(6635), 1, + ACTIONS(6558), 1, + sym__entry_separator, + ACTIONS(10284), 1, + anon_sym_LBRACK, + ACTIONS(10644), 1, + anon_sym_RBRACK, + STATE(3382), 1, + aux_sym__multiple_types_repeat1, + STATE(6144), 1, sym_comment, - STATE(6637), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, - sym__escaped_str_content, - sym_escape_sequence, - [219404] = 4, + [204879] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6636), 1, - sym_comment, - ACTIONS(8262), 2, - anon_sym_AT2, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(8264), 2, + ACTIONS(10284), 1, + anon_sym_LBRACK, + ACTIONS(10646), 1, anon_sym_RBRACK, - anon_sym_GT2, - [219419] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11017), 1, - anon_sym_DQUOTE, - STATE(6637), 1, - sym_comment, - STATE(6717), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, - sym__escaped_str_content, - sym_escape_sequence, - [219436] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5012), 1, - anon_sym_DASH2, - STATE(6638), 1, + STATE(3382), 1, + aux_sym__multiple_types_repeat1, + STATE(6145), 1, sym_comment, - ACTIONS(5010), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [219451] = 3, + [204898] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6639), 1, + STATE(6146), 1, sym_comment, - ACTIONS(11019), 4, + ACTIONS(10648), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [219464] = 5, + [204911] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11021), 1, + ACTIONS(10650), 1, anon_sym_DQUOTE, - STATE(6640), 1, + STATE(6147), 1, sym_comment, - STATE(6642), 1, + STATE(6149), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [219481] = 5, + [204928] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5078), 1, - sym__space, - ACTIONS(11023), 1, - anon_sym_EQ2, - STATE(6641), 1, + ACTIONS(1618), 1, + anon_sym_LPAREN2, + ACTIONS(1934), 1, + anon_sym_RBRACE, + ACTIONS(1940), 1, + sym__entry_separator, + STATE(6148), 1, sym_comment, - ACTIONS(5080), 2, - sym__newline, - anon_sym_SEMI, - [219498] = 5, + STATE(6805), 1, + sym__expr_parenthesized_immediate, + [204947] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11025), 1, + ACTIONS(10652), 1, anon_sym_DQUOTE, - STATE(6642), 1, - sym_comment, - STATE(6717), 1, + STATE(5914), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + STATE(6149), 1, + sym_comment, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [219515] = 4, + [204964] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6643), 1, - sym_comment, - ACTIONS(8270), 2, - anon_sym_AT2, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(8272), 2, + ACTIONS(10284), 1, + anon_sym_LBRACK, + ACTIONS(10654), 1, anon_sym_RBRACK, - anon_sym_GT2, - [219530] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6644), 1, + STATE(3382), 1, + aux_sym__multiple_types_repeat1, + STATE(6150), 1, sym_comment, - ACTIONS(11027), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [219543] = 5, - ACTIONS(3), 1, + [204983] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11029), 1, - anon_sym_DQUOTE, - STATE(6645), 1, + STATE(6151), 1, sym_comment, - STATE(6646), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, - sym__escaped_str_content, - sym_escape_sequence, - [219560] = 5, + ACTIONS(10656), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204996] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11031), 1, - anon_sym_DQUOTE, - STATE(6646), 1, + ACTIONS(6558), 1, + sym__entry_separator, + ACTIONS(10284), 1, + anon_sym_LBRACK, + ACTIONS(10658), 1, + anon_sym_RBRACK, + STATE(3382), 1, + aux_sym__multiple_types_repeat1, + STATE(6152), 1, sym_comment, - STATE(6717), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, - sym__escaped_str_content, - sym_escape_sequence, - [219577] = 4, + [205015] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6647), 1, - sym_comment, - ACTIONS(8274), 2, - anon_sym_AT2, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(8276), 2, + ACTIONS(10284), 1, + anon_sym_LBRACK, + ACTIONS(10660), 1, anon_sym_RBRACK, - anon_sym_GT2, - [219592] = 3, + STATE(3382), 1, + aux_sym__multiple_types_repeat1, + STATE(6153), 1, + sym_comment, + [205034] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6648), 1, + STATE(6154), 1, sym_comment, - ACTIONS(11033), 4, + ACTIONS(10662), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [219605] = 5, + [205047] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11035), 1, + ACTIONS(10664), 1, anon_sym_DQUOTE, - STATE(6649), 1, + STATE(6155), 1, sym_comment, - STATE(6650), 1, + STATE(6156), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [219622] = 5, + [205064] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11037), 1, + ACTIONS(10666), 1, anon_sym_DQUOTE, - STATE(6650), 1, - sym_comment, - STATE(6717), 1, + STATE(5914), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + STATE(6156), 1, + sym_comment, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [219639] = 4, + [205081] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6651), 1, - sym_comment, - ACTIONS(8278), 2, - anon_sym_AT2, + ACTIONS(1477), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2138), 1, + anon_sym_RBRACE, + ACTIONS(2140), 1, + anon_sym_LPAREN2, + ACTIONS(2142), 1, sym__entry_separator, - ACTIONS(8280), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [219654] = 3, + STATE(6157), 1, + sym_comment, + [205100] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6652), 1, + STATE(6158), 1, sym_comment, - ACTIONS(11039), 4, + ACTIONS(10668), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [219667] = 5, + [205113] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11041), 1, + ACTIONS(10670), 1, anon_sym_DQUOTE, - STATE(6653), 1, + STATE(6159), 1, sym_comment, - STATE(6654), 1, + STATE(6160), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [219684] = 5, + [205130] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11043), 1, + ACTIONS(10672), 1, anon_sym_DQUOTE, - STATE(6654), 1, - sym_comment, - STATE(6717), 1, + STATE(5914), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + STATE(6160), 1, + sym_comment, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [219701] = 4, + [205147] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(6655), 1, + STATE(6161), 1, sym_comment, - ACTIONS(8286), 2, - anon_sym_AT2, + ACTIONS(974), 4, + anon_sym_RBRACK, sym__entry_separator, - ACTIONS(8288), 2, + sym__table_head_separator, + anon_sym_DOT2, + [205160] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6162), 1, + sym_comment, + ACTIONS(978), 4, anon_sym_RBRACK, - anon_sym_GT2, - [219716] = 3, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [205173] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6656), 1, + STATE(6163), 1, sym_comment, - ACTIONS(11045), 4, + ACTIONS(10674), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [219729] = 5, + [205186] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11047), 1, + ACTIONS(10676), 1, anon_sym_DQUOTE, - STATE(6657), 1, + STATE(6164), 1, sym_comment, - STATE(6658), 1, + STATE(6165), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [219746] = 5, + [205203] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11049), 1, + ACTIONS(10678), 1, anon_sym_DQUOTE, - STATE(6658), 1, - sym_comment, - STATE(6717), 1, + STATE(5914), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + STATE(6165), 1, + sym_comment, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [219763] = 3, + [205220] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6659), 1, + STATE(6166), 1, sym_comment, - ACTIONS(11051), 4, + ACTIONS(10680), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [219776] = 5, + [205233] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11053), 1, + ACTIONS(10682), 1, anon_sym_DQUOTE, - STATE(6660), 1, + STATE(6167), 1, sym_comment, - STATE(6661), 1, + STATE(6169), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [219793] = 5, + [205250] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11055), 1, - anon_sym_DQUOTE, - STATE(6661), 1, + ACTIONS(2072), 1, + anon_sym_PIPE, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(6168), 1, sym_comment, - STATE(6717), 1, + ACTIONS(2068), 2, + anon_sym_if, + anon_sym_EQ_GT, + [205267] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10684), 1, + anon_sym_DQUOTE, + STATE(5914), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + STATE(6169), 1, + sym_comment, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [219810] = 3, + [205284] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6662), 1, + STATE(6170), 1, sym_comment, - ACTIONS(11057), 4, + ACTIONS(10686), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [219823] = 5, + [205297] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11059), 1, + ACTIONS(10688), 1, anon_sym_DQUOTE, - STATE(6663), 1, + STATE(6171), 1, sym_comment, - STATE(6664), 1, + STATE(6172), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [219840] = 5, + [205314] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11061), 1, + ACTIONS(10690), 1, anon_sym_DQUOTE, - STATE(6664), 1, - sym_comment, - STATE(6717), 1, + STATE(5914), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + STATE(6172), 1, + sym_comment, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [219857] = 3, + [205331] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10692), 1, + anon_sym_COLON, + ACTIONS(10694), 1, + anon_sym_GT2, + STATE(5296), 1, + aux_sym__multiple_types_repeat1, + STATE(6173), 1, + sym_comment, + [205350] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6665), 1, + STATE(6174), 1, sym_comment, - ACTIONS(11063), 4, + ACTIONS(10696), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [219870] = 5, + [205363] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11065), 1, + ACTIONS(10698), 1, anon_sym_DQUOTE, - STATE(6666), 1, + STATE(6175), 1, sym_comment, - STATE(6667), 1, + STATE(6176), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [219887] = 5, + [205380] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11067), 1, + ACTIONS(10700), 1, anon_sym_DQUOTE, - STATE(6667), 1, - sym_comment, - STATE(6717), 1, + STATE(5914), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + STATE(6176), 1, + sym_comment, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [219904] = 4, + [205397] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6668), 1, + ACTIONS(10702), 1, + anon_sym_COLON2, + STATE(6177), 1, sym_comment, - ACTIONS(8298), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(8300), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [219919] = 3, + STATE(6184), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(7522), 2, + sym__newline, + sym__space, + [205414] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6669), 1, + STATE(6178), 1, sym_comment, - ACTIONS(11069), 4, + ACTIONS(10704), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [219932] = 5, + [205427] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11071), 1, + ACTIONS(10706), 1, anon_sym_DQUOTE, - STATE(6670), 1, + STATE(6179), 1, sym_comment, - STATE(6671), 1, + STATE(6180), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [219949] = 5, + [205444] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11073), 1, + ACTIONS(10708), 1, anon_sym_DQUOTE, - STATE(6671), 1, - sym_comment, - STATE(6717), 1, + STATE(5914), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + STATE(6180), 1, + sym_comment, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [219966] = 3, + [205461] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6672), 1, + STATE(6181), 1, sym_comment, - ACTIONS(11075), 4, + ACTIONS(10710), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [219979] = 5, + [205474] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11077), 1, + ACTIONS(10712), 1, anon_sym_DQUOTE, - STATE(6673), 1, + STATE(6182), 1, sym_comment, - STATE(6674), 1, + STATE(6183), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [219996] = 5, + [205491] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11079), 1, + ACTIONS(10714), 1, anon_sym_DQUOTE, - STATE(6674), 1, - sym_comment, - STATE(6717), 1, + STATE(5914), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + STATE(6183), 1, + sym_comment, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [220013] = 3, + [205508] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10716), 1, + anon_sym_COLON2, + STATE(5946), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(6184), 1, + sym_comment, + ACTIONS(7522), 2, + sym__newline, + sym__space, + [205525] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6675), 1, + STATE(6185), 1, sym_comment, - ACTIONS(11081), 4, + ACTIONS(10718), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [220026] = 5, + [205538] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11083), 1, + ACTIONS(10720), 1, anon_sym_DQUOTE, - STATE(6676), 1, + STATE(6186), 1, sym_comment, - STATE(6677), 1, + STATE(6187), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [220043] = 5, + [205555] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11085), 1, + ACTIONS(10722), 1, anon_sym_DQUOTE, - STATE(6677), 1, - sym_comment, - STATE(6717), 1, + STATE(5914), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + STATE(6187), 1, + sym_comment, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [220060] = 3, + [205572] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6678), 1, + STATE(6188), 1, sym_comment, - ACTIONS(11087), 4, + ACTIONS(10724), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [220073] = 5, + [205585] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11089), 1, + ACTIONS(10726), 1, anon_sym_DQUOTE, - STATE(6679), 1, + STATE(6189), 1, sym_comment, - STATE(6680), 1, + STATE(6190), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [220090] = 5, + [205602] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11091), 1, + ACTIONS(10728), 1, anon_sym_DQUOTE, - STATE(6680), 1, - sym_comment, - STATE(6717), 1, + STATE(5914), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + STATE(6190), 1, + sym_comment, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [220107] = 5, - ACTIONS(3), 1, + [205619] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11093), 1, - anon_sym_DQUOTE, - STATE(6681), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4415), 1, + sym_block, + STATE(6191), 1, sym_comment, - STATE(6682), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220124] = 5, + [205638] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6192), 1, + sym_comment, + ACTIONS(10730), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [205651] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11095), 1, + ACTIONS(10732), 1, anon_sym_DQUOTE, - STATE(6682), 1, + STATE(6193), 1, sym_comment, - STATE(6717), 1, + STATE(6194), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [220141] = 5, + [205668] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11097), 1, + ACTIONS(10734), 1, anon_sym_DQUOTE, - STATE(6683), 1, - sym_comment, - STATE(6684), 1, + STATE(5914), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + STATE(6194), 1, + sym_comment, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [220158] = 5, + [205685] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6195), 1, + sym_comment, + ACTIONS(10736), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [205698] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11099), 1, + ACTIONS(10738), 1, anon_sym_DQUOTE, - STATE(6684), 1, + STATE(6196), 1, sym_comment, - STATE(6717), 1, + STATE(6197), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [220175] = 5, + [205715] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11101), 1, + ACTIONS(10740), 1, anon_sym_DQUOTE, - STATE(6685), 1, - sym_comment, - STATE(6686), 1, + STATE(5914), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + STATE(6197), 1, + sym_comment, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [220192] = 5, + [205732] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6198), 1, + sym_comment, + ACTIONS(10742), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [205745] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11103), 1, + ACTIONS(10744), 1, anon_sym_DQUOTE, - STATE(6686), 1, + STATE(6199), 1, sym_comment, - STATE(6717), 1, + STATE(6200), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [220209] = 5, + [205762] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11105), 1, + ACTIONS(10746), 1, anon_sym_DQUOTE, - STATE(6687), 1, - sym_comment, - STATE(6688), 1, + STATE(5914), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + STATE(6200), 1, + sym_comment, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [220226] = 5, + [205779] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6201), 1, + sym_comment, + ACTIONS(10748), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [205792] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11107), 1, + ACTIONS(10750), 1, anon_sym_DQUOTE, - STATE(6688), 1, + STATE(6202), 1, sym_comment, - STATE(6717), 1, + STATE(6203), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [220243] = 5, + [205809] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11109), 1, + ACTIONS(10752), 1, anon_sym_DQUOTE, - STATE(6689), 1, - sym_comment, - STATE(6690), 1, + STATE(5914), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + STATE(6203), 1, + sym_comment, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [220260] = 5, + [205826] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6204), 1, + sym_comment, + ACTIONS(10754), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [205839] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11111), 1, + ACTIONS(10756), 1, anon_sym_DQUOTE, - STATE(6690), 1, + STATE(6205), 1, sym_comment, - STATE(6717), 1, + STATE(6206), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [220277] = 5, + [205856] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11113), 1, + ACTIONS(10758), 1, anon_sym_DQUOTE, - STATE(6691), 1, - sym_comment, - STATE(6692), 1, + STATE(5914), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + STATE(6206), 1, + sym_comment, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [220294] = 5, + [205873] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11115), 1, + ACTIONS(10760), 1, anon_sym_DQUOTE, - STATE(6692), 1, + STATE(6207), 1, sym_comment, - STATE(6717), 1, + STATE(6208), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [220311] = 5, + [205890] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11117), 1, + ACTIONS(10762), 1, anon_sym_DQUOTE, - STATE(6693), 1, - sym_comment, - STATE(6694), 1, + STATE(5914), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + STATE(6208), 1, + sym_comment, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [220328] = 5, + [205907] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11119), 1, + ACTIONS(10764), 1, anon_sym_DQUOTE, - STATE(6694), 1, + STATE(6209), 1, sym_comment, - STATE(6717), 1, + STATE(6210), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [220345] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6695), 1, - sym_comment, - ACTIONS(8302), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(8304), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [220360] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6696), 1, - sym_comment, - ACTIONS(11121), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [220373] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6697), 1, - sym_comment, - ACTIONS(2045), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token4, - ACTIONS(2047), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [220388] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(10597), 1, - anon_sym_LBRACK, - ACTIONS(10599), 1, - anon_sym_LPAREN, - STATE(3286), 1, - sym_parameter_parens, - STATE(3289), 1, - sym_parameter_bracks, - STATE(6698), 1, - sym_comment, - [220407] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5034), 1, - anon_sym_DASH2, - STATE(6699), 1, - sym_comment, - ACTIONS(5032), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [220422] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(10629), 1, - anon_sym_DOT_DOT2, - ACTIONS(11123), 1, - anon_sym_LBRACE, - STATE(6700), 1, - sym_comment, - ACTIONS(10631), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [220439] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6701), 1, - sym_comment, - ACTIONS(8194), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_AT2, - anon_sym_LBRACE, - [220452] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1666), 1, - aux_sym_unquoted_token2, - ACTIONS(10336), 1, - aux_sym__immediate_decimal_token2, - STATE(6702), 1, - sym_comment, - ACTIONS(1668), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [220469] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1719), 1, - aux_sym_unquoted_token2, - ACTIONS(11125), 1, - aux_sym__immediate_decimal_token2, - STATE(6703), 1, - sym_comment, - ACTIONS(1721), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [220486] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(10597), 1, - anon_sym_LBRACK, - ACTIONS(10599), 1, - anon_sym_LPAREN, - STATE(3260), 1, - sym_parameter_parens, - STATE(3264), 1, - sym_parameter_bracks, - STATE(6704), 1, - sym_comment, - [220505] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(10597), 1, - anon_sym_LBRACK, - ACTIONS(10599), 1, - anon_sym_LPAREN, - STATE(3269), 1, - sym_parameter_parens, - STATE(3270), 1, - sym_parameter_bracks, - STATE(6705), 1, - sym_comment, - [220524] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(10615), 1, - anon_sym_LBRACK, - ACTIONS(10617), 1, - anon_sym_LPAREN, - STATE(6076), 1, - sym_parameter_parens, - STATE(6088), 1, - sym_parameter_bracks, - STATE(6706), 1, - sym_comment, - [220543] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(11127), 1, - anon_sym_COLON, - ACTIONS(11129), 1, - anon_sym_GT2, - STATE(5508), 1, - aux_sym__multiple_types_repeat1, - STATE(6707), 1, - sym_comment, - [220562] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(10597), 1, - anon_sym_LBRACK, - ACTIONS(10599), 1, - anon_sym_LPAREN, - STATE(3281), 1, - sym_parameter_parens, - STATE(3283), 1, - sym_parameter_bracks, - STATE(6708), 1, - sym_comment, - [220581] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(11131), 1, - anon_sym_COLON, - ACTIONS(11133), 1, - anon_sym_GT2, - STATE(5456), 1, - aux_sym__multiple_types_repeat1, - STATE(6709), 1, - sym_comment, - [220600] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(11135), 1, - anon_sym_COLON, - ACTIONS(11137), 1, - anon_sym_GT2, - STATE(5617), 1, - aux_sym__multiple_types_repeat1, - STATE(6710), 1, - sym_comment, - [220619] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(994), 1, - anon_sym_LBRACE, - ACTIONS(10629), 1, - anon_sym_DOT_DOT2, - STATE(6711), 1, - sym_comment, - ACTIONS(10631), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [220636] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(10597), 1, - anon_sym_LBRACK, - ACTIONS(10599), 1, - anon_sym_LPAREN, - STATE(3294), 1, - sym_parameter_parens, - STATE(3295), 1, - sym_parameter_bracks, - STATE(6712), 1, - sym_comment, - [220655] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6713), 1, - sym_comment, - ACTIONS(11139), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [220668] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(10597), 1, - anon_sym_LBRACK, - ACTIONS(10599), 1, - anon_sym_LPAREN, - STATE(3256), 1, - sym_parameter_bracks, - STATE(3298), 1, - sym_parameter_parens, - STATE(6714), 1, - sym_comment, - [220687] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6715), 1, - sym_comment, - ACTIONS(11141), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [220700] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(11143), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6716), 1, - sym_comment, - STATE(7683), 1, - sym_val_list, - [220719] = 4, + [205924] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11145), 1, + ACTIONS(10766), 1, anon_sym_DQUOTE, - ACTIONS(11147), 2, - sym__escaped_str_content, - sym_escape_sequence, - STATE(6717), 2, - sym_comment, + STATE(5914), 1, aux_sym__str_double_quotes_repeat1, - [220734] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1461), 1, - anon_sym_RPAREN, - ACTIONS(11150), 2, - sym__newline, - anon_sym_SEMI, - STATE(6718), 2, - sym_comment, - aux_sym__block_body_repeat1, - [220749] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(11153), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6719), 1, - sym_comment, - [220768] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9916), 1, - anon_sym_RPAREN, - STATE(6718), 1, - aux_sym__block_body_repeat1, - STATE(6720), 1, - sym_comment, - ACTIONS(10723), 2, - sym__newline, - anon_sym_SEMI, - [220785] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2049), 1, - anon_sym_RBRACK, - ACTIONS(2051), 1, - anon_sym_LPAREN2, - ACTIONS(2053), 1, - sym__entry_separator, - STATE(6721), 1, - sym_comment, - [220804] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2192), 1, - aux_sym_unquoted_token4, - ACTIONS(6027), 1, - anon_sym_PIPE, - STATE(6722), 1, - sym_comment, - ACTIONS(6022), 2, - anon_sym_if, - anon_sym_EQ_GT, - [220821] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_LPAREN2, - ACTIONS(11155), 1, - anon_sym_RBRACK, - ACTIONS(11157), 1, - sym__entry_separator, - STATE(6723), 1, - sym_comment, - STATE(7568), 1, - sym__expr_parenthesized_immediate, - [220840] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6724), 1, - sym_comment, - ACTIONS(2045), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token4, - ACTIONS(2047), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [220855] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - STATE(6725), 1, - sym_comment, - ACTIONS(1819), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [220870] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(11159), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6726), 1, - sym_comment, - [220889] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1648), 1, - aux_sym_unquoted_token2, - ACTIONS(1650), 1, - anon_sym_LBRACE, - ACTIONS(11161), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(11163), 1, - aux_sym__immediate_decimal_token2, - STATE(6727), 1, - sym_comment, - [220908] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(11165), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6728), 1, - sym_comment, - [220927] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(11167), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6729), 1, - sym_comment, - [220946] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(11169), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6730), 1, - sym_comment, - [220965] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(11171), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6731), 1, - sym_comment, - [220984] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(11173), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6732), 1, - sym_comment, - [221003] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(11175), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6733), 1, - sym_comment, - [221022] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(11177), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6734), 1, - sym_comment, - [221041] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, - anon_sym_LBRACK, - ACTIONS(11179), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6735), 1, - sym_comment, - [221060] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6736), 1, - sym_comment, - ACTIONS(11181), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [221073] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_LPAREN2, - ACTIONS(11183), 1, - anon_sym_RBRACK, - ACTIONS(11185), 1, - sym__entry_separator, - STATE(6737), 1, - sym_comment, - STATE(7568), 1, - sym__expr_parenthesized_immediate, - [221092] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10557), 1, - sym__space, - STATE(6738), 1, - sym_comment, - STATE(6759), 1, - aux_sym_attribute_repeat1, - ACTIONS(11187), 2, - sym__newline, - anon_sym_SEMI, - [221109] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1666), 1, - aux_sym_unquoted_token2, - STATE(6739), 1, - sym_comment, - ACTIONS(1668), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [221124] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6740), 1, - sym_comment, - ACTIONS(11189), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221137] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6741), 1, - sym_comment, - ACTIONS(11191), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221150] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(10188), 1, - anon_sym_AT2, - STATE(5666), 1, - aux_sym__multiple_types_repeat1, - STATE(6742), 1, - sym_comment, - STATE(7499), 1, - sym_param_cmd, - [221169] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6743), 1, - sym_comment, - ACTIONS(11193), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [221182] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6744), 1, - sym_comment, - ACTIONS(11195), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221195] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(10188), 1, - anon_sym_AT2, - STATE(5668), 1, - aux_sym__multiple_types_repeat1, - STATE(6745), 1, - sym_comment, - STATE(7503), 1, - sym_param_cmd, - [221214] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(10214), 1, - anon_sym_use, - ACTIONS(10216), 1, - anon_sym_list, - ACTIONS(10218), 1, - anon_sym_hide, - ACTIONS(10220), 1, - anon_sym_new, - STATE(6746), 1, - sym_comment, - [221233] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_LPAREN2, - ACTIONS(6012), 1, - anon_sym_RBRACK, - ACTIONS(6018), 1, - sym__entry_separator, - STATE(6747), 1, - sym_comment, - STATE(7537), 1, - sym__expr_parenthesized_immediate, - [221252] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2015), 1, - anon_sym_LBRACE, - ACTIONS(11197), 1, - anon_sym_DOT_DOT2, - STATE(6748), 1, - sym_comment, - ACTIONS(11199), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [221269] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2023), 1, - anon_sym_LBRACE, - ACTIONS(11201), 1, - anon_sym_DOT_DOT2, - STATE(6749), 1, + STATE(6210), 1, sym_comment, - ACTIONS(11203), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [221286] = 5, + ACTIONS(10326), 2, + sym__escaped_str_content, + sym_escape_sequence, + [205941] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11205), 1, + ACTIONS(10768), 1, anon_sym_DQUOTE, - STATE(6750), 1, + STATE(6211), 1, sym_comment, - STATE(6764), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [221303] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(2031), 1, - anon_sym_LBRACE, - ACTIONS(11207), 1, - anon_sym_DOT_DOT2, - STATE(6751), 1, - sym_comment, - ACTIONS(11209), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [221320] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1648), 1, - aux_sym_unquoted_token2, - STATE(6752), 1, - sym_comment, - ACTIONS(1650), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [221335] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1719), 1, - aux_sym_unquoted_token2, - STATE(6753), 1, - sym_comment, - ACTIONS(1721), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [221350] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(11211), 1, - anon_sym_RBRACK, - STATE(5177), 1, - aux_sym_parameter_repeat2, - STATE(6754), 1, - sym_comment, - ACTIONS(2606), 2, - sym__newline, - anon_sym_COMMA, - [221367] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(10597), 1, - anon_sym_LBRACK, - ACTIONS(10599), 1, - anon_sym_LPAREN, - STATE(5758), 1, - sym_parameter_parens, - STATE(5759), 1, - sym_parameter_bracks, - STATE(6755), 1, - sym_comment, - [221386] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1790), 1, - aux_sym_unquoted_token2, - STATE(6756), 1, - sym_comment, - ACTIONS(1792), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [221401] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4611), 1, - sym_block, - STATE(6757), 1, - sym_comment, - [221420] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1581), 1, - anon_sym_LPAREN2, - ACTIONS(1989), 1, - anon_sym_RBRACE, - ACTIONS(1991), 1, - sym__entry_separator, - STATE(6758), 1, - sym_comment, - STATE(7436), 1, - sym__expr_parenthesized_immediate, - [221439] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11213), 1, - sym__space, - ACTIONS(7774), 2, - sym__newline, - anon_sym_SEMI, - STATE(6759), 2, - sym_comment, - aux_sym_attribute_repeat1, - [221454] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6760), 1, - sym_comment, - ACTIONS(11216), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [221467] = 5, + [205958] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11218), 1, + ACTIONS(10770), 1, anon_sym_DQUOTE, - STATE(6297), 1, + STATE(5914), 1, aux_sym__str_double_quotes_repeat1, - STATE(6761), 1, + STATE(6212), 1, sym_comment, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [221484] = 5, + [205975] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11220), 1, + ACTIONS(10772), 1, anon_sym_DQUOTE, - STATE(6225), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6762), 1, + STATE(6213), 1, sym_comment, - ACTIONS(10382), 2, + STATE(6214), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [221501] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - ACTIONS(11222), 1, - anon_sym_DOT_DOT2, - STATE(6763), 1, - sym_comment, - ACTIONS(11224), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [221518] = 5, + [205992] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11226), 1, + ACTIONS(10774), 1, anon_sym_DQUOTE, - STATE(6717), 1, + STATE(5914), 1, aux_sym__str_double_quotes_repeat1, - STATE(6764), 1, + STATE(6214), 1, sym_comment, - ACTIONS(10382), 2, + ACTIONS(10326), 2, sym__escaped_str_content, sym_escape_sequence, - [221535] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(5089), 1, - sym_block, - STATE(6765), 1, - sym_comment, - STATE(6766), 1, - aux_sym_shebang_repeat1, - [221554] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(5093), 1, - sym_block, - STATE(6766), 1, - sym_comment, - [221573] = 6, - ACTIONS(245), 1, + [206009] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(5094), 1, - sym_block, - STATE(6767), 1, + ACTIONS(10776), 1, + anon_sym_DQUOTE, + STATE(6215), 1, sym_comment, - STATE(6768), 1, - aux_sym_shebang_repeat1, - [221592] = 6, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(5099), 1, - sym_block, - STATE(6768), 1, + STATE(6216), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10326), 2, + sym__escaped_str_content, + sym_escape_sequence, + [206026] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10778), 1, + anon_sym_DQUOTE, + STATE(5914), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6216), 1, sym_comment, - [221611] = 6, - ACTIONS(245), 1, + ACTIONS(10326), 2, + sym__escaped_str_content, + sym_escape_sequence, + [206043] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(11143), 1, - anon_sym_LBRACK, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(6769), 1, + ACTIONS(10780), 1, + anon_sym_DQUOTE, + STATE(6217), 1, sym_comment, - STATE(7906), 1, - sym_val_list, - [221630] = 6, + STATE(6218), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10326), 2, + sym__escaped_str_content, + sym_escape_sequence, + [206060] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1581), 1, - anon_sym_LPAREN2, - ACTIONS(1977), 1, - anon_sym_RBRACE, - ACTIONS(1983), 1, - sym__entry_separator, - STATE(6770), 1, + ACTIONS(10782), 1, + anon_sym_DQUOTE, + STATE(5914), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6218), 1, sym_comment, - STATE(7436), 1, - sym__expr_parenthesized_immediate, - [221649] = 4, + ACTIONS(10326), 2, + sym__escaped_str_content, + sym_escape_sequence, + [206077] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3592), 1, - anon_sym_COLON2, - ACTIONS(11228), 2, - sym__newline, - sym__space, - STATE(6771), 2, + ACTIONS(10784), 1, + anon_sym_DQUOTE, + STATE(6219), 1, sym_comment, - aux_sym_ctrl_do_parenthesized_repeat2, - [221664] = 6, - ACTIONS(245), 1, + STATE(6220), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10326), 2, + sym__escaped_str_content, + sym_escape_sequence, + [206094] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(4951), 1, - sym_block, - STATE(6772), 1, + ACTIONS(10786), 1, + anon_sym_DQUOTE, + STATE(5914), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6220), 1, sym_comment, - STATE(6773), 1, - aux_sym_shebang_repeat1, - [221683] = 6, + ACTIONS(10326), 2, + sym__escaped_str_content, + sym_escape_sequence, + [206111] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4953), 1, - sym_block, - STATE(6773), 1, + STATE(6221), 1, sym_comment, - [221702] = 6, - ACTIONS(245), 1, + ACTIONS(10788), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [206124] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(4954), 1, - sym_block, - STATE(6774), 1, + STATE(6222), 1, sym_comment, - STATE(6775), 1, - aux_sym_shebang_repeat1, - [221721] = 6, + ACTIONS(2076), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token4, + ACTIONS(2078), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [206139] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(6315), 1, + ACTIONS(9759), 1, anon_sym_LBRACE, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(4958), 1, + STATE(4586), 1, + sym__blosure, + STATE(4693), 1, sym_block, - STATE(6775), 1, + STATE(4694), 1, + sym_val_closure, + STATE(6223), 1, sym_comment, - [221740] = 6, + [206158] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(10597), 1, + ACTIONS(10465), 1, anon_sym_LBRACK, - ACTIONS(10599), 1, + ACTIONS(10467), 1, anon_sym_LPAREN, - STATE(3291), 1, + STATE(3087), 1, sym_parameter_parens, - STATE(3293), 1, + STATE(3111), 1, sym_parameter_bracks, - STATE(6776), 1, + STATE(6224), 1, sym_comment, - [221759] = 6, + [206177] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(10597), 1, - anon_sym_LBRACK, - ACTIONS(10599), 1, - anon_sym_LPAREN, - STATE(3275), 1, - sym_parameter_bracks, - STATE(3297), 1, - sym_parameter_parens, - STATE(6777), 1, + STATE(6225), 1, sym_comment, - [221778] = 6, + ACTIONS(10790), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [206190] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(10597), 1, - anon_sym_LBRACK, - ACTIONS(10599), 1, - anon_sym_LPAREN, - STATE(5788), 1, - sym_parameter_parens, - STATE(5789), 1, - sym_parameter_bracks, - STATE(6778), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(4416), 1, + sym_block, + STATE(6226), 1, sym_comment, - [221797] = 6, + STATE(6259), 1, + aux_sym_shebang_repeat1, + [206209] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6841), 1, - sym__newline, - ACTIONS(11231), 1, - anon_sym_EQ, - ACTIONS(11233), 1, - anon_sym_COLON, - STATE(3966), 1, - aux_sym_shebang_repeat1, - STATE(6779), 1, + ACTIONS(10792), 1, + anon_sym_LBRACE, + ACTIONS(10794), 1, + anon_sym_DOT_DOT2, + STATE(6227), 1, sym_comment, - [221816] = 6, - ACTIONS(3), 1, + ACTIONS(10796), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [206226] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10465), 1, anon_sym_LBRACK, - ACTIONS(11235), 1, - anon_sym_RBRACK, - STATE(3597), 1, - aux_sym__multiple_types_repeat1, - STATE(6780), 1, + ACTIONS(10467), 1, + anon_sym_LPAREN, + STATE(3081), 1, + sym_parameter_bracks, + STATE(3108), 1, + sym_parameter_parens, + STATE(6228), 1, sym_comment, - [221835] = 4, + [206245] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2384), 1, - sym__entry_separator, - STATE(6781), 1, + STATE(6229), 1, sym_comment, - ACTIONS(2382), 2, + ACTIONS(1797), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [221849] = 4, + aux_sym__unquoted_in_list_token2, + ACTIONS(1799), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [206260] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5686), 1, + ACTIONS(9244), 1, sym__entry_separator, - STATE(6782), 1, - sym_comment, - ACTIONS(5684), 2, - anon_sym_RBRACK, + ACTIONS(10798), 1, + anon_sym_COLON, + ACTIONS(10800), 1, anon_sym_GT2, - [221863] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - ACTIONS(4472), 1, - aux_sym_unquoted_token4, - STATE(6783), 1, + STATE(5338), 1, + aux_sym__multiple_types_repeat1, + STATE(6230), 1, sym_comment, - STATE(7524), 1, - sym__expr_parenthesized_immediate, - [221879] = 5, + [206279] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11237), 1, - anon_sym_RBRACK, - ACTIONS(11239), 1, - sym_hex_digit, - STATE(6784), 1, - sym_comment, - STATE(6869), 1, - aux_sym_val_binary_repeat1, - [221895] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11241), 1, - sym__table_head_separator, - STATE(6785), 1, - sym_comment, - ACTIONS(998), 2, - anon_sym_RBRACK, - sym__entry_separator, - [221909] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2432), 1, - sym__entry_separator, - STATE(6786), 1, + STATE(6231), 1, sym_comment, - ACTIONS(2430), 2, - anon_sym_RBRACK, + ACTIONS(10802), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - [221923] = 5, + [206292] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11243), 1, + ACTIONS(2162), 1, anon_sym_RBRACK, - STATE(6413), 1, - aux_sym__multiple_types_repeat1, - STATE(6787), 1, + ACTIONS(2164), 1, + anon_sym_LPAREN2, + ACTIONS(2166), 1, + sym__entry_separator, + ACTIONS(2168), 1, + aux_sym__unquoted_in_list_token4, + STATE(6232), 1, sym_comment, - [221939] = 5, + [206311] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5744), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11245), 1, - anon_sym_RBRACK, - STATE(2688), 1, + ACTIONS(10804), 1, + anon_sym_COLON, + ACTIONS(10806), 1, + anon_sym_GT2, + STATE(5178), 1, aux_sym__multiple_types_repeat1, - STATE(6788), 1, + STATE(6233), 1, sym_comment, - [221955] = 4, + [206330] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1881), 1, - sym__entry_separator, - STATE(6789), 1, - sym_comment, - ACTIONS(1879), 2, - anon_sym_RBRACK, + ACTIONS(2144), 1, anon_sym_RBRACE, - [221969] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(2146), 1, + anon_sym_LPAREN2, + ACTIONS(2148), 1, sym__entry_separator, - ACTIONS(11247), 1, - anon_sym_RBRACK, - STATE(6414), 1, - aux_sym__multiple_types_repeat1, - STATE(6790), 1, + ACTIONS(2150), 1, + aux_sym__unquoted_in_record_token2, + STATE(6234), 1, sym_comment, - [221985] = 5, + [206349] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(1618), 1, + anon_sym_LPAREN2, + ACTIONS(2124), 1, + anon_sym_RBRACE, + ACTIONS(2126), 1, sym__entry_separator, - ACTIONS(11249), 1, - anon_sym_RBRACK, - STATE(6415), 1, - aux_sym__multiple_types_repeat1, - STATE(6791), 1, + STATE(6235), 1, sym_comment, - [222001] = 5, - ACTIONS(3), 1, + STATE(7374), 1, + sym__expr_parenthesized_immediate, + [206368] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11251), 1, - anon_sym_RBRACK, - STATE(6416), 1, - aux_sym__multiple_types_repeat1, - STATE(6792), 1, + STATE(6236), 1, sym_comment, - [222017] = 3, + ACTIONS(10808), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [206381] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6793), 1, + STATE(6237), 1, sym_comment, - ACTIONS(11253), 3, + ACTIONS(10810), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [222029] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + [206394] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11255), 1, - anon_sym_RBRACK, - STATE(6417), 1, - aux_sym__multiple_types_repeat1, - STATE(6794), 1, + ACTIONS(10812), 1, + anon_sym_use, + ACTIONS(10814), 1, + anon_sym_list, + ACTIONS(10816), 1, + anon_sym_hide, + ACTIONS(10818), 1, + anon_sym_new, + STATE(6238), 1, sym_comment, - [222045] = 3, + [206413] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(6795), 1, + ACTIONS(10820), 1, + anon_sym_LBRACE, + STATE(4745), 1, + sym_block, + STATE(4746), 1, + sym_val_closure, + STATE(4786), 1, + sym__blosure, + STATE(6239), 1, sym_comment, - ACTIONS(10929), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [222057] = 5, + [206432] = 6, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(10465), 1, + anon_sym_LBRACK, + ACTIONS(10467), 1, + anon_sym_LPAREN, + STATE(3084), 1, + sym_parameter_parens, + STATE(3085), 1, + sym_parameter_bracks, + STATE(6240), 1, + sym_comment, + [206451] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11257), 1, + ACTIONS(5480), 1, + anon_sym_LPAREN2, + ACTIONS(10822), 1, anon_sym_RBRACK, - STATE(6418), 1, - aux_sym__multiple_types_repeat1, - STATE(6796), 1, + ACTIONS(10824), 1, + sym__entry_separator, + STATE(6241), 1, sym_comment, - [222073] = 5, + STATE(7210), 1, + sym__expr_parenthesized_immediate, + [206470] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11259), 1, + ACTIONS(10284), 1, + anon_sym_LBRACK, + ACTIONS(10826), 1, anon_sym_RBRACK, - STATE(6419), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6797), 1, + STATE(6242), 1, sym_comment, - [222089] = 3, + [206489] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(6798), 1, + ACTIONS(10465), 1, + anon_sym_LBRACK, + ACTIONS(10467), 1, + anon_sym_LPAREN, + STATE(3107), 1, + sym_parameter_parens, + STATE(3110), 1, + sym_parameter_bracks, + STATE(6243), 1, sym_comment, - ACTIONS(10663), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [222101] = 3, + [206508] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(6799), 1, + ACTIONS(10465), 1, + anon_sym_LBRACK, + ACTIONS(10467), 1, + anon_sym_LPAREN, + STATE(3067), 1, + sym_parameter_parens, + STATE(3068), 1, + sym_parameter_bracks, + STATE(6244), 1, sym_comment, - ACTIONS(10667), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [222113] = 5, + [206527] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11261), 1, + ACTIONS(10284), 1, + anon_sym_LBRACK, + ACTIONS(10828), 1, anon_sym_RBRACK, - STATE(6420), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6800), 1, + STATE(6245), 1, sym_comment, - [222129] = 3, - ACTIONS(245), 1, + [206546] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6801), 1, + ACTIONS(6558), 1, + sym__entry_separator, + ACTIONS(10284), 1, + anon_sym_LBRACK, + ACTIONS(10830), 1, + anon_sym_RBRACK, + STATE(3382), 1, + aux_sym__multiple_types_repeat1, + STATE(6246), 1, sym_comment, - ACTIONS(11139), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [222141] = 3, + [206565] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(6802), 1, - sym_comment, - ACTIONS(10669), 3, - ts_builtin_sym_end, + ACTIONS(3756), 1, sym__newline, - anon_sym_SEMI, - [222153] = 3, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(4333), 1, + sym_block, + STATE(6191), 1, + aux_sym_shebang_repeat1, + STATE(6247), 1, + sym_comment, + [206584] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6803), 1, + STATE(6248), 1, sym_comment, - ACTIONS(9801), 3, - ts_builtin_sym_end, + ACTIONS(10832), 4, sym__newline, anon_sym_SEMI, - [222165] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2308), 1, - sym__entry_separator, - STATE(6804), 1, - sym_comment, - ACTIONS(2306), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [222179] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1915), 1, - sym__entry_separator, - STATE(6805), 1, - sym_comment, - ACTIONS(1913), 2, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_RBRACE, - [222193] = 5, + [206597] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5744), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11263), 1, + ACTIONS(10284), 1, + anon_sym_LBRACK, + ACTIONS(10834), 1, anon_sym_RBRACK, - STATE(2689), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6806), 1, - sym_comment, - [222209] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6189), 1, - anon_sym_RBRACK, - STATE(6807), 1, + STATE(6249), 1, sym_comment, - ACTIONS(6191), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [222223] = 4, + [206616] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1947), 1, + ACTIONS(6558), 1, sym__entry_separator, - STATE(6808), 1, - sym_comment, - ACTIONS(1945), 2, + ACTIONS(10284), 1, + anon_sym_LBRACK, + ACTIONS(10836), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [222237] = 5, + STATE(3382), 1, + aux_sym__multiple_types_repeat1, + STATE(6250), 1, + sym_comment, + [206635] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11239), 1, - sym_hex_digit, - ACTIONS(11265), 1, - anon_sym_RBRACK, - STATE(6809), 1, + ACTIONS(10465), 1, + anon_sym_LBRACK, + ACTIONS(10467), 1, + anon_sym_LPAREN, + STATE(3069), 1, + sym_parameter_parens, + STATE(3070), 1, + sym_parameter_bracks, + STATE(6251), 1, sym_comment, - STATE(6816), 1, - aux_sym_val_binary_repeat1, - [222253] = 4, + [206654] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2376), 1, + ACTIONS(1447), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1805), 1, + anon_sym_RBRACK, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + ACTIONS(1813), 1, sym__entry_separator, - STATE(6810), 1, + STATE(6252), 1, sym_comment, - ACTIONS(2374), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [222267] = 4, + [206673] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7082), 1, + ACTIONS(1792), 1, aux_sym_unquoted_token2, - STATE(6811), 1, + STATE(6253), 1, sym_comment, - ACTIONS(1591), 2, + ACTIONS(2136), 3, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, - [222281] = 4, - ACTIONS(3), 1, + [206688] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2039), 1, - sym__entry_separator, - STATE(6812), 1, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + STATE(6254), 1, sym_comment, - ACTIONS(2033), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [222295] = 3, + ACTIONS(1790), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [206703] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(6813), 1, + ACTIONS(10465), 1, + anon_sym_LBRACK, + ACTIONS(10467), 1, + anon_sym_LPAREN, + STATE(3074), 1, + sym_parameter_parens, + STATE(3075), 1, + sym_parameter_bracks, + STATE(6255), 1, sym_comment, - ACTIONS(11267), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [222307] = 3, + [206722] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(6814), 1, + ACTIONS(10465), 1, + anon_sym_LBRACK, + ACTIONS(10467), 1, + anon_sym_LPAREN, + STATE(3077), 1, + sym_parameter_parens, + STATE(3078), 1, + sym_parameter_bracks, + STATE(6256), 1, sym_comment, - ACTIONS(6232), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [222319] = 5, + [206741] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - ACTIONS(7128), 1, - aux_sym_unquoted_token4, - STATE(6815), 1, + STATE(6257), 1, sym_comment, - STATE(7374), 1, - sym__expr_parenthesized_immediate, - [222335] = 5, - ACTIONS(245), 1, + ACTIONS(1701), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1703), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [206756] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11239), 1, - sym_hex_digit, - ACTIONS(11269), 1, - anon_sym_RBRACK, - STATE(6816), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(10838), 1, + anon_sym_COLON, + ACTIONS(10840), 1, + anon_sym_GT2, + STATE(5329), 1, + aux_sym__multiple_types_repeat1, + STATE(6258), 1, sym_comment, - STATE(6869), 1, - aux_sym_val_binary_repeat1, - [222351] = 3, + [206775] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(6817), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4396), 1, + sym_block, + STATE(6259), 1, sym_comment, - ACTIONS(6232), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [222363] = 3, + [206794] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(6818), 1, - sym_comment, - ACTIONS(10893), 3, - ts_builtin_sym_end, + ACTIONS(3756), 1, sym__newline, - anon_sym_SEMI, - [222375] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11271), 1, - anon_sym_RBRACK, - STATE(6428), 1, - aux_sym__multiple_types_repeat1, - STATE(6819), 1, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4342), 1, + sym_block, + STATE(6260), 1, sym_comment, - [222391] = 3, + [206813] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6820), 1, + STATE(6261), 1, sym_comment, - ACTIONS(11273), 3, + ACTIONS(10842), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [222403] = 3, + anon_sym_RBRACE, + [206826] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(6821), 1, - sym_comment, - ACTIONS(6228), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [222415] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11275), 1, - anon_sym_RBRACK, - STATE(6429), 1, - aux_sym__multiple_types_repeat1, - STATE(6822), 1, + ACTIONS(10465), 1, + anon_sym_LBRACK, + ACTIONS(10467), 1, + anon_sym_LPAREN, + STATE(3086), 1, + sym_parameter_parens, + STATE(3088), 1, + sym_parameter_bracks, + STATE(6262), 1, sym_comment, - [222431] = 5, + [206845] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11277), 1, - anon_sym_RBRACK, - STATE(6430), 1, + ACTIONS(10844), 1, + anon_sym_COLON, + ACTIONS(10846), 1, + anon_sym_GT2, + STATE(5330), 1, aux_sym__multiple_types_repeat1, - STATE(6823), 1, + STATE(6263), 1, sym_comment, - [222447] = 5, + [206864] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11279), 1, + ACTIONS(10284), 1, + anon_sym_LBRACK, + ACTIONS(10848), 1, anon_sym_RBRACK, - STATE(6431), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6824), 1, + STATE(6264), 1, sym_comment, - [222463] = 5, - ACTIONS(3), 1, + [206883] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11281), 1, - anon_sym_RBRACK, - STATE(6432), 1, - aux_sym__multiple_types_repeat1, - STATE(6825), 1, + STATE(6265), 1, sym_comment, - [222479] = 4, + ACTIONS(10850), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [206896] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2380), 1, + ACTIONS(2234), 1, sym__entry_separator, - STATE(6826), 1, + ACTIONS(10852), 1, + anon_sym_LBRACK2, + STATE(6266), 1, sym_comment, - ACTIONS(2378), 2, + ACTIONS(2230), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [222493] = 4, + [206913] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11283), 1, - anon_sym_QMARK2, - STATE(6827), 1, + STATE(6267), 1, sym_comment, - ACTIONS(944), 2, - sym__table_head_separator, - anon_sym_DOT2, - [222507] = 5, + ACTIONS(10854), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [206926] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11285), 1, - anon_sym_RBRACK, - STATE(6433), 1, - aux_sym__multiple_types_repeat1, - STATE(6828), 1, + STATE(6268), 1, sym_comment, - [222523] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11287), 1, + ACTIONS(1760), 2, anon_sym_RBRACK, - STATE(6434), 1, - aux_sym__multiple_types_repeat1, - STATE(6829), 1, - sym_comment, - [222539] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(11289), 1, - anon_sym_QMARK2, - STATE(6830), 1, - sym_comment, - ACTIONS(950), 2, - sym__table_head_separator, - anon_sym_DOT2, - [222553] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1762), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(11291), 1, - anon_sym_RBRACK, - STATE(6435), 1, - aux_sym__multiple_types_repeat1, - STATE(6831), 1, - sym_comment, - [222569] = 3, + [206941] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6832), 1, + STATE(6269), 1, sym_comment, - ACTIONS(9799), 3, - ts_builtin_sym_end, + ACTIONS(10856), 4, sym__newline, anon_sym_SEMI, - [222581] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2322), 1, - sym__entry_separator, - STATE(6833), 1, - sym_comment, - ACTIONS(2320), 2, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_RBRACE, - [222595] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2194), 1, - anon_sym_EQ_GT, - ACTIONS(2198), 1, - anon_sym_PIPE, - ACTIONS(2200), 1, - aux_sym_unquoted_token4, - STATE(6834), 1, - sym_comment, - [222611] = 3, + [206954] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6835), 1, + STATE(6270), 1, sym_comment, - ACTIONS(10400), 3, - ts_builtin_sym_end, + ACTIONS(10858), 4, sym__newline, anon_sym_SEMI, - [222623] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [206967] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2015), 1, - sym__entry_separator, - STATE(6836), 1, + STATE(6271), 1, sym_comment, - ACTIONS(2009), 2, - anon_sym_RBRACK, + ACTIONS(10860), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - [222637] = 3, + [206980] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6837), 1, + STATE(6272), 1, sym_comment, - ACTIONS(11293), 3, + ACTIONS(10862), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [222649] = 3, + anon_sym_RBRACE, + [206993] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6838), 1, + STATE(6273), 1, sym_comment, - ACTIONS(11295), 3, + ACTIONS(10864), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [222661] = 5, + anon_sym_RBRACE, + [207006] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11239), 1, - sym_hex_digit, - ACTIONS(11297), 1, - anon_sym_RBRACK, - STATE(6839), 1, + STATE(6274), 1, sym_comment, - STATE(6847), 1, - aux_sym_val_binary_repeat1, - [222677] = 4, - ACTIONS(3), 1, + ACTIONS(10866), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [207019] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2023), 1, - sym__entry_separator, - STATE(6840), 1, + STATE(6275), 1, sym_comment, - ACTIONS(2017), 2, - anon_sym_RBRACK, + ACTIONS(10868), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - [222691] = 5, + [207032] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6512), 1, - anon_sym_AT2, - ACTIONS(11299), 1, - anon_sym_GT2, - STATE(6841), 1, + STATE(6276), 1, sym_comment, - STATE(7839), 1, - sym_param_cmd, - [222707] = 5, + ACTIONS(8130), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_AT2, + anon_sym_LBRACE, + [207045] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(1618), 1, + anon_sym_LPAREN2, + ACTIONS(2108), 1, + anon_sym_RBRACE, + ACTIONS(2110), 1, sym__entry_separator, - ACTIONS(11301), 1, - anon_sym_RBRACK, - STATE(6306), 1, - aux_sym__multiple_types_repeat1, - STATE(6842), 1, - sym_comment, - [222723] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(11303), 1, - anon_sym_PIPE, - ACTIONS(11306), 1, - anon_sym_EQ_GT, - STATE(6843), 2, + STATE(6277), 1, sym_comment, - aux_sym_match_pattern_repeat1, - [222737] = 5, + STATE(7374), 1, + sym__expr_parenthesized_immediate, + [207064] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(1618), 1, + anon_sym_LPAREN2, + ACTIONS(2112), 1, + anon_sym_RBRACE, + ACTIONS(2114), 1, sym__entry_separator, - ACTIONS(11308), 1, - anon_sym_RBRACK, - STATE(6726), 1, - aux_sym__multiple_types_repeat1, - STATE(6844), 1, + STATE(6278), 1, sym_comment, - [222753] = 4, + STATE(7374), 1, + sym__expr_parenthesized_immediate, + [207083] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2330), 1, - sym__entry_separator, - STATE(6845), 1, + ACTIONS(1628), 1, + sym__space, + ACTIONS(7137), 1, + aux_sym_unquoted_token2, + STATE(6279), 1, sym_comment, - ACTIONS(2328), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [222767] = 5, + ACTIONS(1616), 2, + sym__newline, + anon_sym_SEMI, + [207100] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(5480), 1, anon_sym_LPAREN2, - ACTIONS(7082), 1, - aux_sym_unquoted_token4, - STATE(6846), 1, + ACTIONS(5859), 1, + anon_sym_RBRACK, + ACTIONS(5865), 1, + sym__entry_separator, + STATE(6280), 1, sym_comment, - STATE(7446), 1, + STATE(6807), 1, sym__expr_parenthesized_immediate, - [222783] = 5, + [207119] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11239), 1, - sym_hex_digit, - ACTIONS(11310), 1, - anon_sym_RBRACK, - STATE(6847), 1, + ACTIONS(9832), 1, + anon_sym_RPAREN, + STATE(6281), 1, sym_comment, - STATE(6869), 1, - aux_sym_val_binary_repeat1, - [222799] = 4, - ACTIONS(3), 1, + STATE(6307), 1, + aux_sym__block_body_repeat1, + ACTIONS(10361), 2, + sym__newline, + anon_sym_SEMI, + [207136] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2334), 1, - sym__entry_separator, - STATE(6848), 1, + STATE(6282), 1, sym_comment, - ACTIONS(2332), 2, - anon_sym_RBRACK, + ACTIONS(10870), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - [222813] = 4, - ACTIONS(3), 1, + [207149] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2338), 1, - sym__entry_separator, - STATE(6849), 1, + STATE(6283), 1, sym_comment, - ACTIONS(2336), 2, - anon_sym_RBRACK, + ACTIONS(10872), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - [222827] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11312), 1, - anon_sym_RBRACK, - STATE(6455), 1, - aux_sym__multiple_types_repeat1, - STATE(6850), 1, - sym_comment, - [222843] = 4, + [207162] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11314), 1, - anon_sym_DQUOTE, - STATE(6851), 1, - sym_comment, - ACTIONS(11316), 2, - sym__escaped_str_content, - sym_escape_sequence, - [222857] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6852), 1, + ACTIONS(10876), 1, + sym__space, + STATE(5933), 1, + aux_sym_attribute_repeat1, + STATE(6284), 1, sym_comment, - ACTIONS(11141), 3, - ts_builtin_sym_end, + ACTIONS(10874), 2, sym__newline, anon_sym_SEMI, - [222869] = 5, + [207179] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11318), 1, - anon_sym_RBRACK, - STATE(6456), 1, - aux_sym__multiple_types_repeat1, - STATE(6853), 1, + STATE(6285), 1, sym_comment, - [222885] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(1686), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1688), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(11320), 1, - anon_sym_RBRACK, - STATE(6457), 1, - aux_sym__multiple_types_repeat1, - STATE(6854), 1, - sym_comment, - [222901] = 5, + [207194] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11322), 1, + ACTIONS(10284), 1, + anon_sym_LBRACK, + ACTIONS(10878), 1, anon_sym_RBRACK, - STATE(6458), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6855), 1, - sym_comment, - [222917] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6856), 1, + STATE(6286), 1, sym_comment, - ACTIONS(10579), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [222929] = 5, + [207213] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11324), 1, + ACTIONS(10284), 1, + anon_sym_LBRACK, + ACTIONS(10880), 1, anon_sym_RBRACK, - STATE(6459), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6857), 1, + STATE(6287), 1, sym_comment, - [222945] = 5, + [207232] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(10376), 1, + ACTIONS(10284), 1, anon_sym_LBRACK, - STATE(3597), 1, + ACTIONS(10882), 1, + anon_sym_RBRACK, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6858), 1, + STATE(6288), 1, sym_comment, - [222961] = 5, + [207251] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11326), 1, + ACTIONS(10284), 1, + anon_sym_LBRACK, + ACTIONS(10884), 1, anon_sym_RBRACK, - STATE(6460), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6859), 1, + STATE(6289), 1, sym_comment, - [222977] = 5, - ACTIONS(3), 1, + [207270] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11328), 1, - anon_sym_RBRACK, - STATE(6461), 1, - aux_sym__multiple_types_repeat1, - STATE(6860), 1, + STATE(6290), 1, sym_comment, - [222993] = 3, + ACTIONS(10886), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [207283] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6861), 1, + STATE(6291), 1, sym_comment, - ACTIONS(11330), 3, + ACTIONS(10888), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [223005] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [207296] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11332), 1, - anon_sym_LPAREN, - STATE(6862), 1, + ACTIONS(10794), 1, + anon_sym_DOT_DOT2, + ACTIONS(10890), 1, + anon_sym_LBRACE, + STATE(6292), 1, sym_comment, - ACTIONS(11334), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [223019] = 5, - ACTIONS(3), 1, + ACTIONS(10796), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [207313] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11336), 1, - anon_sym_RBRACK, - STATE(6462), 1, - aux_sym__multiple_types_repeat1, - STATE(6863), 1, + ACTIONS(1701), 1, + aux_sym_unquoted_token2, + ACTIONS(1703), 1, + anon_sym_LBRACE, + ACTIONS(10892), 1, + anon_sym_DOT, + ACTIONS(10894), 1, + aux_sym__immediate_decimal_token2, + STATE(6293), 1, sym_comment, - [223035] = 5, + [207332] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6119), 1, - sym__entry_separator, - ACTIONS(6152), 1, - anon_sym_RBRACE, - STATE(2981), 1, - aux_sym__multiple_types_repeat1, - STATE(6864), 1, + ACTIONS(10896), 1, + anon_sym_LPAREN, + STATE(6294), 1, sym_comment, - [223051] = 5, + ACTIONS(10898), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [207347] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11338), 1, + ACTIONS(10284), 1, + anon_sym_LBRACK, + ACTIONS(10900), 1, anon_sym_RBRACK, - STATE(6719), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6865), 1, - sym_comment, - [223067] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2443), 1, - sym__entry_separator, - STATE(6866), 1, + STATE(6295), 1, sym_comment, - ACTIONS(2441), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [223081] = 4, + [207366] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1885), 1, + ACTIONS(6558), 1, sym__entry_separator, - STATE(6867), 1, - sym_comment, - ACTIONS(1883), 2, + ACTIONS(10284), 1, + anon_sym_LBRACK, + ACTIONS(10902), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [223095] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2031), 1, - sym__entry_separator, - STATE(6868), 1, + STATE(3382), 1, + aux_sym__multiple_types_repeat1, + STATE(6296), 1, sym_comment, - ACTIONS(2025), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [223109] = 4, + [207385] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11340), 1, - anon_sym_RBRACK, - ACTIONS(11342), 1, - sym_hex_digit, - STATE(6869), 2, - sym_comment, - aux_sym_val_binary_repeat1, - [223123] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10529), 1, - anon_sym_LPAREN, - STATE(6870), 1, - sym_comment, - ACTIONS(10531), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [223137] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2447), 1, - sym__entry_separator, - STATE(6871), 1, + STATE(6297), 1, sym_comment, - ACTIONS(2445), 2, - anon_sym_RBRACK, + ACTIONS(10904), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - [223151] = 3, + [207398] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6872), 1, + STATE(6298), 1, sym_comment, - ACTIONS(11345), 3, + ACTIONS(10906), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [223163] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1929), 1, - sym__entry_separator, - STATE(6873), 1, - sym_comment, - ACTIONS(1927), 2, - anon_sym_RBRACK, anon_sym_RBRACE, - [223177] = 4, + [207411] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2451), 1, - sym__entry_separator, - STATE(6874), 1, + STATE(6299), 1, sym_comment, - ACTIONS(2449), 2, + ACTIONS(1701), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [223191] = 5, + aux_sym__unquoted_in_list_token2, + ACTIONS(1703), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [207426] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11239), 1, - sym_hex_digit, - ACTIONS(11347), 1, - anon_sym_RBRACK, - STATE(6875), 1, + ACTIONS(1979), 1, + anon_sym_LBRACE, + ACTIONS(10908), 1, + anon_sym_DOT_DOT2, + STATE(6300), 1, sym_comment, - STATE(6879), 1, - aux_sym_val_binary_repeat1, - [223207] = 5, + ACTIONS(10910), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [207443] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6117), 1, - anon_sym_RBRACE, - ACTIONS(6119), 1, - sym__entry_separator, - STATE(2972), 1, - aux_sym__multiple_types_repeat1, - STATE(6876), 1, + ACTIONS(10912), 1, + anon_sym_LPAREN, + STATE(6301), 1, sym_comment, - [223223] = 4, + ACTIONS(10914), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [207458] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1893), 1, - sym__entry_separator, - STATE(6877), 1, + ACTIONS(4906), 1, + sym__space, + ACTIONS(10916), 1, + anon_sym_EQ2, + STATE(6302), 1, sym_comment, - ACTIONS(1891), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [223237] = 4, + ACTIONS(4908), 2, + sym__newline, + anon_sym_SEMI, + [207475] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11349), 1, - anon_sym_LPAREN, - STATE(6878), 1, - sym_comment, - ACTIONS(11351), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [223251] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(11239), 1, - sym_hex_digit, - ACTIONS(11353), 1, + ACTIONS(994), 1, + sym__entry_separator, + ACTIONS(998), 1, anon_sym_RBRACK, - STATE(6869), 1, - aux_sym_val_binary_repeat1, - STATE(6879), 1, + ACTIONS(2104), 1, + anon_sym_LPAREN2, + ACTIONS(2106), 1, + aux_sym__unquoted_in_list_token4, + STATE(6303), 1, sym_comment, - [223267] = 4, - ACTIONS(3), 1, + [207494] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1933), 1, - sym__entry_separator, - STATE(6880), 1, + ACTIONS(1477), 1, + aux_sym_unquoted_token2, + STATE(6304), 1, sym_comment, - ACTIONS(1931), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [223281] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11355), 1, - anon_sym_RBRACK, - STATE(6473), 1, - aux_sym__multiple_types_repeat1, - STATE(6881), 1, + ACTIONS(2142), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [207509] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6305), 1, sym_comment, - [223297] = 3, + ACTIONS(10918), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [207522] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(6882), 1, + ACTIONS(1701), 1, + aux_sym_unquoted_token2, + STATE(6306), 1, sym_comment, - ACTIONS(6240), 3, + ACTIONS(1703), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [223309] = 5, - ACTIONS(3), 1, + [207537] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11357), 1, - anon_sym_RBRACK, - STATE(6474), 1, - aux_sym__multiple_types_repeat1, - STATE(6883), 1, + ACTIONS(1515), 1, + anon_sym_RPAREN, + ACTIONS(10920), 2, + sym__newline, + anon_sym_SEMI, + STATE(6307), 2, sym_comment, - [223325] = 5, - ACTIONS(3), 1, + aux_sym__block_body_repeat1, + [207552] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11359), 1, + ACTIONS(10923), 1, anon_sym_RBRACK, - STATE(6475), 1, - aux_sym__multiple_types_repeat1, - STATE(6884), 1, + STATE(4906), 1, + aux_sym_parameter_repeat2, + STATE(6308), 1, sym_comment, - [223341] = 5, + ACTIONS(2488), 2, + sym__newline, + anon_sym_COMMA, + [207569] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11361), 1, - anon_sym_RBRACK, - STATE(6476), 1, + ACTIONS(10925), 1, + anon_sym_COLON, + ACTIONS(10927), 1, + anon_sym_GT2, + STATE(5290), 1, aux_sym__multiple_types_repeat1, - STATE(6885), 1, + STATE(6309), 1, sym_comment, - [223357] = 5, + [207588] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5921), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11363), 1, - anon_sym_RBRACK, - STATE(2846), 1, + ACTIONS(10929), 1, + anon_sym_COLON, + ACTIONS(10931), 1, + anon_sym_GT2, + STATE(5291), 1, aux_sym__multiple_types_repeat1, - STATE(6886), 1, + STATE(6310), 1, sym_comment, - [223373] = 5, + [207607] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11365), 1, - anon_sym_RBRACK, - STATE(6477), 1, - aux_sym__multiple_types_repeat1, - STATE(6887), 1, + ACTIONS(10933), 1, + anon_sym_LPAREN, + STATE(6311), 1, sym_comment, - [223389] = 5, + ACTIONS(10935), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [207622] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5921), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11367), 1, - anon_sym_RBRACK, - STATE(2847), 1, + ACTIONS(10937), 1, + anon_sym_COLON, + ACTIONS(10939), 1, + anon_sym_GT2, + STATE(5298), 1, aux_sym__multiple_types_repeat1, - STATE(6888), 1, + STATE(6312), 1, sym_comment, - [223405] = 5, + [207641] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11369), 1, - anon_sym_RBRACK, - STATE(6478), 1, + ACTIONS(10941), 1, + anon_sym_COLON, + ACTIONS(10943), 1, + anon_sym_GT2, + STATE(5259), 1, aux_sym__multiple_types_repeat1, - STATE(6889), 1, + STATE(6313), 1, sym_comment, - [223421] = 5, + [207660] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11371), 1, + ACTIONS(10284), 1, + anon_sym_LBRACK, + ACTIONS(10945), 1, anon_sym_RBRACK, - STATE(6479), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6890), 1, + STATE(6314), 1, sym_comment, - [223437] = 5, - ACTIONS(245), 1, + [207679] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(6891), 1, + STATE(6315), 1, sym_comment, - STATE(7190), 1, - sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - [223453] = 5, + ACTIONS(1797), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1799), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [207694] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11373), 1, - anon_sym_RBRACK, - STATE(6480), 1, + ACTIONS(10947), 1, + anon_sym_COLON, + ACTIONS(10949), 1, + anon_sym_GT2, + STATE(5272), 1, aux_sym__multiple_types_repeat1, - STATE(6892), 1, + STATE(6316), 1, sym_comment, - [223469] = 5, + [207713] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6119), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(6148), 1, - anon_sym_RBRACE, - STATE(2997), 1, + ACTIONS(10951), 1, + anon_sym_COLON, + ACTIONS(10953), 1, + anon_sym_GT2, + STATE(5239), 1, aux_sym__multiple_types_repeat1, - STATE(6893), 1, + STATE(6317), 1, sym_comment, - [223485] = 5, + [207732] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(5480), 1, anon_sym_LPAREN2, - ACTIONS(4482), 1, - aux_sym_unquoted_token4, - STATE(6894), 1, + ACTIONS(10955), 1, + anon_sym_RBRACK, + ACTIONS(10957), 1, + sym__entry_separator, + STATE(6318), 1, sym_comment, - STATE(7414), 1, + STATE(7210), 1, sym__expr_parenthesized_immediate, - [223501] = 5, - ACTIONS(3), 1, + [207751] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(11375), 1, - anon_sym_GT2, - STATE(5555), 1, - aux_sym__multiple_types_repeat1, - STATE(6895), 1, + STATE(6319), 1, sym_comment, - [223517] = 5, - ACTIONS(3), 1, + ACTIONS(10959), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [207764] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(11377), 1, - anon_sym_GT2, - STATE(5568), 1, - aux_sym__multiple_types_repeat1, - STATE(6896), 1, + STATE(6320), 1, sym_comment, - [223533] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6119), 1, - sym__entry_separator, - ACTIONS(6123), 1, + ACTIONS(10961), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - STATE(2973), 1, - aux_sym__multiple_types_repeat1, - STATE(6897), 1, + [207777] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6321), 1, sym_comment, - [223549] = 5, - ACTIONS(3), 1, + ACTIONS(10963), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [207790] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11379), 1, - anon_sym_RBRACK, - STATE(6374), 1, - aux_sym__multiple_types_repeat1, - STATE(6898), 1, + ACTIONS(2150), 1, + aux_sym_unquoted_token2, + STATE(6322), 1, sym_comment, - [223565] = 5, + ACTIONS(2148), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [207805] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11239), 1, - sym_hex_digit, - ACTIONS(11381), 1, - anon_sym_RBRACK, - STATE(6899), 1, + ACTIONS(10465), 1, + anon_sym_LBRACK, + ACTIONS(10467), 1, + anon_sym_LPAREN, + STATE(3096), 1, + sym_parameter_parens, + STATE(3100), 1, + sym_parameter_bracks, + STATE(6323), 1, sym_comment, - STATE(6901), 1, - aux_sym_val_binary_repeat1, - [223581] = 4, + [207824] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6175), 1, - anon_sym_RBRACK, - STATE(6900), 1, - sym_comment, - ACTIONS(6177), 2, + ACTIONS(2070), 1, anon_sym_LPAREN2, + ACTIONS(2074), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(2128), 1, + anon_sym_RBRACK, + ACTIONS(2130), 1, sym__entry_separator, - [223595] = 5, + STATE(6324), 1, + sym_comment, + [207843] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11239), 1, - sym_hex_digit, - ACTIONS(11383), 1, - anon_sym_RBRACK, - STATE(6869), 1, - aux_sym_val_binary_repeat1, - STATE(6901), 1, + STATE(6325), 1, sym_comment, - [223611] = 5, + ACTIONS(10965), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [207856] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(2162), 1, + anon_sym_RBRACE, + ACTIONS(2164), 1, + anon_sym_LPAREN2, + ACTIONS(2166), 1, sym__entry_separator, - ACTIONS(11385), 1, - anon_sym_RBRACK, - STATE(6497), 1, - aux_sym__multiple_types_repeat1, - STATE(6902), 1, + ACTIONS(2168), 1, + aux_sym__unquoted_in_record_token4, + STATE(6326), 1, sym_comment, - [223627] = 5, - ACTIONS(3), 1, + [207875] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - ACTIONS(7221), 1, - aux_sym_unquoted_token4, - STATE(6903), 1, + STATE(6327), 1, sym_comment, - STATE(7510), 1, - sym__expr_parenthesized_immediate, - [223643] = 3, + ACTIONS(10967), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [207888] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6904), 1, + STATE(6328), 1, sym_comment, - ACTIONS(6266), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [223655] = 5, - ACTIONS(3), 1, + ACTIONS(10969), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [207901] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11387), 1, - anon_sym_RBRACK, - STATE(6498), 1, - aux_sym__multiple_types_repeat1, - STATE(6905), 1, + ACTIONS(994), 1, + anon_sym_LBRACE, + ACTIONS(10794), 1, + anon_sym_DOT_DOT2, + STATE(6329), 1, sym_comment, - [223671] = 5, - ACTIONS(3), 1, + ACTIONS(10796), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [207918] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11389), 1, - anon_sym_RBRACK, - STATE(6499), 1, - aux_sym__multiple_types_repeat1, - STATE(6906), 1, + STATE(6330), 1, sym_comment, - [223687] = 5, + ACTIONS(10969), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [207931] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11391), 1, - anon_sym_RBRACK, - STATE(6500), 1, - aux_sym__multiple_types_repeat1, - STATE(6907), 1, + STATE(6331), 1, sym_comment, - [223703] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(1760), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1762), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(11393), 1, - anon_sym_RBRACK, - STATE(6501), 1, - aux_sym__multiple_types_repeat1, - STATE(6908), 1, + [207946] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + STATE(6332), 1, sym_comment, - [223719] = 5, + ACTIONS(1813), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [207961] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3440), 1, - anon_sym_COLON2, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(4712), 1, - sym_block, - STATE(6909), 1, + STATE(6333), 1, sym_comment, - [223735] = 5, + ACTIONS(10971), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [207974] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11395), 1, + ACTIONS(10973), 1, + anon_sym_COLON, + ACTIONS(10975), 1, anon_sym_GT2, - STATE(5615), 1, + STATE(5315), 1, aux_sym__multiple_types_repeat1, - STATE(6910), 1, + STATE(6334), 1, sym_comment, - [223751] = 5, + [207993] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11397), 1, - anon_sym_RBRACK, - STATE(6502), 1, + ACTIONS(10977), 1, + anon_sym_COLON, + ACTIONS(10979), 1, + anon_sym_GT2, + STATE(5317), 1, aux_sym__multiple_types_repeat1, - STATE(6911), 1, + STATE(6335), 1, sym_comment, - [223767] = 5, + [208012] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11399), 1, - anon_sym_RBRACK, - STATE(6503), 1, + ACTIONS(10981), 1, + anon_sym_COLON, + ACTIONS(10983), 1, + anon_sym_GT2, + STATE(5332), 1, aux_sym__multiple_types_repeat1, - STATE(6912), 1, + STATE(6336), 1, sym_comment, - [223783] = 5, + [208031] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11401), 1, + ACTIONS(10985), 1, + anon_sym_COLON, + ACTIONS(10987), 1, anon_sym_GT2, - STATE(5616), 1, + STATE(5334), 1, aux_sym__multiple_types_repeat1, - STATE(6913), 1, + STATE(6337), 1, sym_comment, - [223799] = 5, - ACTIONS(3), 1, + [208050] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11403), 1, - anon_sym_RBRACK, - STATE(6504), 1, - aux_sym__multiple_types_repeat1, - STATE(6914), 1, + ACTIONS(6947), 1, + anon_sym_DOLLAR, + ACTIONS(8772), 1, + sym_identifier, + STATE(5360), 1, + sym_val_variable, + STATE(6338), 1, sym_comment, - [223815] = 4, - ACTIONS(3), 1, + STATE(7192), 1, + sym__variable_name, + [208069] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2455), 1, - sym__entry_separator, - STATE(6915), 1, + STATE(6339), 1, sym_comment, - ACTIONS(2453), 2, - anon_sym_RBRACK, + ACTIONS(10971), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - [223829] = 4, - ACTIONS(3), 1, + [208082] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2298), 1, - sym__entry_separator, - STATE(6916), 1, + STATE(6340), 1, sym_comment, - ACTIONS(2296), 2, - anon_sym_RBRACK, + ACTIONS(10989), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - [223843] = 4, - ACTIONS(3), 1, + [208095] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1937), 1, - sym__entry_separator, - STATE(6917), 1, + ACTIONS(9944), 1, + anon_sym_RPAREN, + STATE(6307), 1, + aux_sym__block_body_repeat1, + STATE(6341), 1, sym_comment, - ACTIONS(1935), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [223857] = 4, + ACTIONS(10361), 2, + sym__newline, + anon_sym_SEMI, + [208112] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2412), 1, - sym__entry_separator, - STATE(6918), 1, + ACTIONS(4938), 1, + sym__space, + ACTIONS(10991), 1, + anon_sym_EQ2, + STATE(6342), 1, sym_comment, - ACTIONS(2410), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [223871] = 5, - ACTIONS(3), 1, + ACTIONS(4940), 2, + sym__newline, + anon_sym_SEMI, + [208129] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(11405), 1, - anon_sym_GT2, - STATE(5521), 1, - aux_sym__multiple_types_repeat1, - STATE(6919), 1, + ACTIONS(1642), 1, + anon_sym_SEMI, + ACTIONS(3756), 1, + sym__newline, + STATE(312), 1, + aux_sym__parenthesized_body_repeat1, + STATE(6343), 1, sym_comment, - [223887] = 4, + STATE(6482), 1, + aux_sym_shebang_repeat1, + [208148] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2463), 1, + ACTIONS(2070), 1, + anon_sym_LPAREN2, + ACTIONS(2074), 1, + aux_sym__unquoted_in_record_token4, + ACTIONS(2128), 1, + anon_sym_RBRACE, + ACTIONS(2130), 1, sym__entry_separator, - STATE(6920), 1, + STATE(6344), 1, sym_comment, - ACTIONS(2461), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [223901] = 4, + [208167] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2420), 1, + ACTIONS(2068), 1, + anon_sym_RBRACE, + ACTIONS(2070), 1, + anon_sym_LPAREN2, + ACTIONS(2072), 1, sym__entry_separator, - STATE(6921), 1, + ACTIONS(2074), 1, + aux_sym__unquoted_in_record_token4, + STATE(6345), 1, sym_comment, - ACTIONS(2418), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [223915] = 5, - ACTIONS(3), 1, + [208186] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(11407), 1, - anon_sym_GT2, - STATE(5548), 1, - aux_sym__multiple_types_repeat1, - STATE(6922), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(4823), 1, + sym_block, + STATE(6346), 1, sym_comment, - [223931] = 5, - ACTIONS(3), 1, + STATE(6347), 1, + aux_sym_shebang_repeat1, + [208205] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11409), 1, - anon_sym_RBRACK, - STATE(6375), 1, - aux_sym__multiple_types_repeat1, - STATE(6923), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4830), 1, + sym_block, + STATE(6347), 1, sym_comment, - [223947] = 5, + [208224] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1668), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(6257), 1, anon_sym_LBRACE, - ACTIONS(9805), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(11411), 1, - anon_sym_DOT, - STATE(6924), 1, + STATE(4831), 1, + sym_block, + STATE(6348), 1, + sym_comment, + STATE(6350), 1, + aux_sym_shebang_repeat1, + [208243] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10876), 1, + sym__space, + STATE(6284), 1, + aux_sym_attribute_repeat1, + STATE(6349), 1, sym_comment, - [223963] = 3, + ACTIONS(10993), 2, + sym__newline, + anon_sym_SEMI, + [208260] = 6, ACTIONS(245), 1, anon_sym_POUND, - STATE(6925), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4837), 1, + sym_block, + STATE(6350), 1, sym_comment, - ACTIONS(10149), 3, - anon_sym_export, - anon_sym_AT, - anon_sym_def, - [223975] = 5, + [208279] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11239), 1, - sym_hex_digit, - ACTIONS(11413), 1, - anon_sym_RBRACK, - STATE(6926), 1, + STATE(6351), 1, sym_comment, - STATE(6932), 1, - aux_sym_val_binary_repeat1, - [223991] = 5, - ACTIONS(3), 1, + ACTIONS(6462), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [208292] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(11415), 1, - anon_sym_GT2, - STATE(5558), 1, - aux_sym__multiple_types_repeat1, - STATE(6927), 1, + STATE(6352), 1, sym_comment, - [224007] = 5, - ACTIONS(3), 1, + ACTIONS(6472), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [208305] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(11417), 1, - anon_sym_GT2, - STATE(5588), 1, - aux_sym__multiple_types_repeat1, - STATE(6928), 1, + STATE(6353), 1, sym_comment, - [224023] = 5, + ACTIONS(10995), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [208318] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11419), 1, + ACTIONS(2144), 1, anon_sym_RBRACK, - STATE(6566), 1, - aux_sym__multiple_types_repeat1, - STATE(6929), 1, + ACTIONS(2146), 1, + anon_sym_LPAREN2, + ACTIONS(2148), 1, + sym__entry_separator, + ACTIONS(2150), 1, + aux_sym__unquoted_in_list_token2, + STATE(6354), 1, sym_comment, - [224039] = 3, + [208337] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6930), 1, + STATE(6355), 1, sym_comment, - ACTIONS(10394), 3, - ts_builtin_sym_end, + ACTIONS(10995), 4, sym__newline, anon_sym_SEMI, - [224051] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [208350] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6931), 1, + STATE(6356), 1, sym_comment, - ACTIONS(10396), 3, - ts_builtin_sym_end, + ACTIONS(10969), 4, sym__newline, anon_sym_SEMI, - [224063] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [208363] = 6, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11239), 1, - sym_hex_digit, - ACTIONS(11421), 1, - anon_sym_RBRACK, - STATE(6869), 1, - aux_sym_val_binary_repeat1, - STATE(6932), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(4696), 1, + sym_block, + STATE(6357), 1, sym_comment, - [224079] = 5, - ACTIONS(3), 1, + STATE(6358), 1, + aux_sym_shebang_repeat1, + [208382] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11423), 1, - anon_sym_RBRACK, - STATE(6521), 1, - aux_sym__multiple_types_repeat1, - STATE(6933), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4698), 1, + sym_block, + STATE(6358), 1, sym_comment, - [224095] = 5, - ACTIONS(3), 1, + [208401] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11425), 1, - anon_sym_RBRACK, - STATE(6522), 1, - aux_sym__multiple_types_repeat1, - STATE(6934), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(4699), 1, + sym_block, + STATE(6359), 1, sym_comment, - [224111] = 5, - ACTIONS(3), 1, + STATE(6360), 1, + aux_sym_shebang_repeat1, + [208420] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11427), 1, - anon_sym_RBRACK, - STATE(6523), 1, - aux_sym__multiple_types_repeat1, - STATE(6935), 1, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(4703), 1, + sym_block, + STATE(6360), 1, sym_comment, - [224127] = 5, - ACTIONS(3), 1, + [208439] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11429), 1, - anon_sym_RBRACK, - STATE(6524), 1, - aux_sym__multiple_types_repeat1, - STATE(6936), 1, + STATE(6361), 1, sym_comment, - [224143] = 4, - ACTIONS(3), 1, + ACTIONS(10969), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [208452] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5674), 1, - sym__entry_separator, - STATE(6937), 1, + STATE(6362), 1, sym_comment, - ACTIONS(5672), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [224157] = 5, + ACTIONS(10997), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [208465] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11431), 1, + ACTIONS(2068), 1, anon_sym_RBRACK, - STATE(6525), 1, - aux_sym__multiple_types_repeat1, - STATE(6938), 1, + ACTIONS(2070), 1, + anon_sym_LPAREN2, + ACTIONS(2072), 1, + sym__entry_separator, + ACTIONS(2074), 1, + aux_sym__unquoted_in_list_token4, + STATE(6363), 1, sym_comment, - [224173] = 5, - ACTIONS(3), 1, + [208484] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11433), 1, - anon_sym_RBRACK, - STATE(6378), 1, - aux_sym__multiple_types_repeat1, - STATE(6939), 1, + ACTIONS(6947), 1, + anon_sym_DOLLAR, + ACTIONS(8772), 1, + sym_identifier, + STATE(5360), 1, + sym_val_variable, + STATE(6364), 1, sym_comment, - [224189] = 5, - ACTIONS(3), 1, + STATE(7355), 1, + sym__variable_name, + [208503] = 6, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11435), 1, - anon_sym_RBRACK, - STATE(6526), 1, - aux_sym__multiple_types_repeat1, - STATE(6940), 1, + ACTIONS(10465), 1, + anon_sym_LBRACK, + ACTIONS(10467), 1, + anon_sym_LPAREN, + STATE(3083), 1, + sym_parameter_parens, + STATE(3089), 1, + sym_parameter_bracks, + STATE(6365), 1, sym_comment, - [224205] = 5, + [208522] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11437), 1, + ACTIONS(10284), 1, + anon_sym_LBRACK, + ACTIONS(10999), 1, anon_sym_RBRACK, - STATE(6527), 1, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(6941), 1, + STATE(6366), 1, sym_comment, - [224221] = 5, - ACTIONS(3), 1, + [208541] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11439), 1, - anon_sym_RBRACK, - STATE(6528), 1, - aux_sym__multiple_types_repeat1, - STATE(6942), 1, + ACTIONS(9770), 1, + anon_sym_LBRACK, + STATE(6367), 1, sym_comment, - [224237] = 4, + STATE(6518), 1, + sym_val_list, + STATE(6798), 1, + aux_sym_val_table_repeat1, + [208557] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(329), 1, - aux_sym__block_body_repeat1, - STATE(6943), 1, + STATE(6368), 1, sym_comment, - ACTIONS(139), 2, + ACTIONS(11001), 3, sym__newline, anon_sym_SEMI, - [224251] = 3, + anon_sym_RPAREN, + [208569] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6944), 1, + STATE(6369), 1, sym_comment, - ACTIONS(10533), 3, - ts_builtin_sym_end, + ACTIONS(11003), 3, sym__newline, - anon_sym_SEMI, - [224263] = 5, - ACTIONS(3), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + [208581] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1581), 1, - anon_sym_LPAREN2, - ACTIONS(1664), 1, - aux_sym__unquoted_in_record_token4, - STATE(6945), 1, + STATE(6370), 1, sym_comment, - STATE(7448), 1, - sym__expr_parenthesized_immediate, - [224279] = 5, + ACTIONS(10856), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [208593] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(5684), 1, sym__entry_separator, - ACTIONS(11441), 1, + ACTIONS(11005), 1, anon_sym_RBRACK, - STATE(6286), 1, + STATE(2566), 1, aux_sym__multiple_types_repeat1, - STATE(6946), 1, + STATE(6371), 1, + sym_comment, + [208609] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(10148), 1, + anon_sym_PIPE, + ACTIONS(11007), 1, + anon_sym_EQ_GT, + STATE(6372), 1, sym_comment, - [224295] = 5, + STATE(6686), 1, + aux_sym_match_pattern_repeat1, + [208625] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(6059), 1, + anon_sym_RBRACE, + ACTIONS(6061), 1, sym__entry_separator, - ACTIONS(11443), 1, - anon_sym_GT2, - STATE(5593), 1, + STATE(2828), 1, aux_sym__multiple_types_repeat1, - STATE(6947), 1, - sym_comment, - [224311] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(6948), 1, + STATE(6373), 1, sym_comment, - ACTIONS(10535), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [224323] = 5, + [208641] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11239), 1, - sym_hex_digit, - ACTIONS(11445), 1, + ACTIONS(11009), 1, anon_sym_RBRACK, - STATE(6949), 1, + ACTIONS(11011), 1, + sym_hex_digit, + STATE(6374), 1, sym_comment, - STATE(6955), 1, + STATE(6382), 1, aux_sym_val_binary_repeat1, - [224339] = 4, + [208657] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5690), 1, + ACTIONS(9244), 1, sym__entry_separator, - STATE(6950), 1, + ACTIONS(11013), 1, + anon_sym_GT2, + STATE(5206), 1, + aux_sym__multiple_types_repeat1, + STATE(6375), 1, sym_comment, - ACTIONS(5688), 2, + [208673] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6558), 1, + sym__entry_separator, + ACTIONS(11015), 1, anon_sym_RBRACK, - anon_sym_GT2, - [224353] = 3, + STATE(6242), 1, + aux_sym__multiple_types_repeat1, + STATE(6376), 1, + sym_comment, + [208689] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6951), 1, + STATE(6377), 1, sym_comment, - ACTIONS(10535), 3, + ACTIONS(10858), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [224365] = 5, + [208701] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11447), 1, - anon_sym_GT2, - STATE(5594), 1, + ACTIONS(11017), 1, + anon_sym_RBRACK, + STATE(6245), 1, aux_sym__multiple_types_repeat1, - STATE(6952), 1, + STATE(6378), 1, sym_comment, - [224381] = 5, + [208717] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2208), 1, - anon_sym_RBRACE, - ACTIONS(2210), 1, + ACTIONS(6558), 1, sym__entry_separator, - STATE(639), 1, + ACTIONS(11019), 1, + anon_sym_RBRACK, + STATE(5975), 1, aux_sym__multiple_types_repeat1, - STATE(6953), 1, + STATE(6379), 1, sym_comment, - [224397] = 3, - ACTIONS(245), 1, + [208733] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6954), 1, + ACTIONS(6061), 1, + sym__entry_separator, + ACTIONS(6116), 1, + anon_sym_RBRACE, + STATE(2839), 1, + aux_sym__multiple_types_repeat1, + STATE(6380), 1, sym_comment, - ACTIONS(10537), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [224409] = 5, + [208749] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + ACTIONS(4672), 1, + aux_sym_unquoted_token4, + STATE(6381), 1, + sym_comment, + STATE(6814), 1, + sym__expr_parenthesized_immediate, + [208765] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11239), 1, + ACTIONS(11011), 1, sym_hex_digit, - ACTIONS(11449), 1, + ACTIONS(11021), 1, anon_sym_RBRACK, - STATE(6869), 1, - aux_sym_val_binary_repeat1, - STATE(6955), 1, + STATE(6382), 1, sym_comment, - [224425] = 5, - ACTIONS(3), 1, + STATE(6456), 1, + aux_sym_val_binary_repeat1, + [208781] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11451), 1, - anon_sym_RBRACK, - STATE(6535), 1, - aux_sym__multiple_types_repeat1, - STATE(6956), 1, + STATE(6383), 1, sym_comment, - [224441] = 4, + ACTIONS(10343), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [208793] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - STATE(6957), 1, + STATE(6384), 1, sym_comment, - ACTIONS(1819), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [224455] = 5, + ACTIONS(11023), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [208805] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11453), 1, + ACTIONS(11025), 1, anon_sym_RBRACK, - STATE(6780), 1, + STATE(5976), 1, aux_sym__multiple_types_repeat1, - STATE(6958), 1, + STATE(6385), 1, sym_comment, - [224471] = 5, + [208821] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11455), 1, + ACTIONS(11027), 1, anon_sym_RBRACK, - STATE(6537), 1, + STATE(5977), 1, aux_sym__multiple_types_repeat1, - STATE(6959), 1, + STATE(6386), 1, sym_comment, - [224487] = 5, + [208837] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(2300), 1, sym__entry_separator, - ACTIONS(11457), 1, - anon_sym_RBRACK, - STATE(6538), 1, - aux_sym__multiple_types_repeat1, - STATE(6960), 1, + STATE(6387), 1, sym_comment, - [224503] = 4, + ACTIONS(2298), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [208851] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5678), 1, - sym__entry_separator, - STATE(6961), 1, + ACTIONS(11029), 1, + anon_sym_DQUOTE, + STATE(6388), 1, sym_comment, - ACTIONS(5676), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [224517] = 5, + ACTIONS(11031), 2, + sym__escaped_str_content, + sym_escape_sequence, + [208865] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11459), 1, + ACTIONS(11033), 1, anon_sym_RBRACK, - STATE(6539), 1, + STATE(5978), 1, aux_sym__multiple_types_repeat1, - STATE(6962), 1, + STATE(6389), 1, sym_comment, - [224533] = 3, + [208881] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(6963), 1, + ACTIONS(11037), 1, + anon_sym_COMMA, + STATE(6390), 1, sym_comment, - ACTIONS(6215), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [224545] = 5, + ACTIONS(11035), 2, + anon_sym_RBRACK, + sym_hex_digit, + [208895] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6391), 1, + sym_comment, + ACTIONS(10322), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [208907] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11461), 1, - anon_sym_RBRACK, - STATE(6540), 1, + ACTIONS(11039), 1, + anon_sym_GT2, + STATE(5256), 1, aux_sym__multiple_types_repeat1, - STATE(6964), 1, + STATE(6392), 1, + sym_comment, + [208923] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(11041), 1, + anon_sym_QMARK2, + STATE(6393), 1, sym_comment, - [224561] = 5, + ACTIONS(966), 2, + sym__table_head_separator, + anon_sym_DOT2, + [208937] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(2328), 1, sym__entry_separator, - ACTIONS(11463), 1, - anon_sym_RBRACK, - STATE(6541), 1, - aux_sym__multiple_types_repeat1, - STATE(6965), 1, + STATE(6394), 1, sym_comment, - [224577] = 5, + ACTIONS(2326), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [208951] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(2332), 1, sym__entry_separator, - ACTIONS(11465), 1, - anon_sym_RBRACK, - STATE(6275), 1, - aux_sym__multiple_types_repeat1, - STATE(6966), 1, + STATE(6395), 1, sym_comment, - [224593] = 5, + ACTIONS(2330), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [208965] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(2336), 1, sym__entry_separator, - ACTIONS(11467), 1, + STATE(6396), 1, + sym_comment, + ACTIONS(2334), 2, anon_sym_RBRACK, - STATE(6276), 1, - aux_sym__multiple_types_repeat1, - STATE(6967), 1, + anon_sym_RBRACE, + [208979] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(11043), 1, + anon_sym_QMARK2, + STATE(6397), 1, sym_comment, - [224609] = 5, + ACTIONS(960), 2, + sym__table_head_separator, + anon_sym_DOT2, + [208993] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(1955), 1, sym__entry_separator, - ACTIONS(11469), 1, - anon_sym_RBRACK, - STATE(6542), 1, - aux_sym__multiple_types_repeat1, - STATE(6968), 1, + STATE(6398), 1, sym_comment, - [224625] = 5, + ACTIONS(1949), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [209007] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(1963), 1, sym__entry_separator, - ACTIONS(11471), 1, - anon_sym_RBRACK, - STATE(6277), 1, - aux_sym__multiple_types_repeat1, - STATE(6969), 1, + STATE(6399), 1, sym_comment, - [224641] = 3, - ACTIONS(245), 1, + ACTIONS(1957), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [209021] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6970), 1, + ACTIONS(2340), 1, + sym__entry_separator, + STATE(6400), 1, sym_comment, - ACTIONS(10537), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [224653] = 3, + ACTIONS(2338), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [209035] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6971), 1, + STATE(6401), 1, sym_comment, - ACTIONS(10398), 3, + ACTIONS(10906), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [224665] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3582), 1, - sym__newline, - ACTIONS(3584), 1, - sym__space, - STATE(1175), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(6972), 1, - sym_comment, - [224681] = 4, + [209047] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2467), 1, + ACTIONS(2344), 1, sym__entry_separator, - STATE(6973), 1, + STATE(6402), 1, sym_comment, - ACTIONS(2465), 2, + ACTIONS(2342), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [224695] = 3, - ACTIONS(245), 1, + [209061] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6974), 1, + ACTIONS(2248), 1, + anon_sym_RBRACE, + STATE(6403), 1, sym_comment, - ACTIONS(10402), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [224707] = 5, + ACTIONS(2250), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [209075] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11239), 1, + ACTIONS(11011), 1, sym_hex_digit, - ACTIONS(11473), 1, + ACTIONS(11045), 1, anon_sym_RBRACK, - STATE(6975), 1, + STATE(6404), 1, sym_comment, - STATE(6979), 1, + STATE(6408), 1, aux_sym_val_binary_repeat1, - [224723] = 5, + [209091] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11475), 1, - anon_sym_GT2, - STATE(5530), 1, + ACTIONS(11047), 1, + anon_sym_RBRACK, + STATE(5988), 1, aux_sym__multiple_types_repeat1, - STATE(6976), 1, + STATE(6405), 1, sym_comment, - [224739] = 5, - ACTIONS(245), 1, + [209107] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - anon_sym_AT2, - ACTIONS(7810), 1, - anon_sym_EQ, - STATE(5073), 1, - sym_param_cmd, - STATE(6977), 1, + ACTIONS(1971), 1, + sym__entry_separator, + STATE(6406), 1, sym_comment, - [224755] = 3, - ACTIONS(245), 1, + ACTIONS(1965), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [209121] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6978), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + ACTIONS(4218), 1, + aux_sym_unquoted_token4, + STATE(6407), 1, sym_comment, - ACTIONS(10539), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [224767] = 5, + STATE(6831), 1, + sym__expr_parenthesized_immediate, + [209137] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11239), 1, + ACTIONS(11011), 1, sym_hex_digit, - ACTIONS(11477), 1, + ACTIONS(11049), 1, anon_sym_RBRACK, - STATE(6869), 1, - aux_sym_val_binary_repeat1, - STATE(6979), 1, + STATE(6408), 1, sym_comment, - [224783] = 4, - ACTIONS(3), 1, + STATE(6456), 1, + aux_sym_val_binary_repeat1, + [209153] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2424), 1, - sym__entry_separator, - STATE(6980), 1, + ACTIONS(9770), 1, + anon_sym_LBRACK, + STATE(6409), 1, sym_comment, - ACTIONS(2422), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [224797] = 5, + STATE(6797), 1, + sym_val_list, + STATE(6798), 1, + aux_sym_val_table_repeat1, + [209169] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11479), 1, + ACTIONS(11051), 1, anon_sym_RBRACK, - STATE(6551), 1, + STATE(5989), 1, aux_sym__multiple_types_repeat1, - STATE(6981), 1, + STATE(6410), 1, sym_comment, - [224813] = 5, + [209185] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11481), 1, + ACTIONS(11053), 1, anon_sym_RBRACK, - STATE(6552), 1, + STATE(5990), 1, aux_sym__multiple_types_repeat1, - STATE(6982), 1, + STATE(6411), 1, + sym_comment, + [209201] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1289), 1, + anon_sym_RPAREN, + STATE(6412), 1, sym_comment, - [224829] = 5, + ACTIONS(1282), 2, + sym__newline, + anon_sym_SEMI, + [209215] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11483), 1, + ACTIONS(11055), 1, anon_sym_RBRACK, - STATE(6553), 1, + STATE(5991), 1, aux_sym__multiple_types_repeat1, - STATE(6983), 1, + STATE(6413), 1, + sym_comment, + [209231] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6414), 1, + sym_comment, + ACTIONS(1289), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [209243] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6415), 1, + sym_comment, + ACTIONS(9689), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [209255] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6416), 1, sym_comment, - [224845] = 5, + ACTIONS(10071), 3, + anon_sym_export, + anon_sym_AT, + anon_sym_def, + [209267] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6061), 1, sym__entry_separator, - ACTIONS(11485), 1, - anon_sym_RBRACK, - STATE(6554), 1, + ACTIONS(6133), 1, + anon_sym_RBRACE, + STATE(2829), 1, aux_sym__multiple_types_repeat1, - STATE(6984), 1, + STATE(6417), 1, sym_comment, - [224861] = 3, + [209283] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6985), 1, + STATE(6418), 1, sym_comment, - ACTIONS(10468), 3, + ACTIONS(10310), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [224873] = 5, + [209295] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6061), 1, sym__entry_separator, - ACTIONS(11487), 1, - anon_sym_RBRACK, - STATE(6555), 1, + ACTIONS(6122), 1, + anon_sym_RBRACE, + STATE(2892), 1, aux_sym__multiple_types_repeat1, - STATE(6986), 1, + STATE(6419), 1, sym_comment, - [224889] = 5, + [209311] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6061), 1, sym__entry_separator, - ACTIONS(11489), 1, - anon_sym_RBRACK, - STATE(6556), 1, + ACTIONS(6135), 1, + anon_sym_RBRACE, + STATE(2858), 1, aux_sym__multiple_types_repeat1, - STATE(6987), 1, + STATE(6420), 1, sym_comment, - [224905] = 5, + [209327] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11491), 1, - anon_sym_RBRACK, - STATE(6557), 1, + ACTIONS(11057), 1, + anon_sym_GT2, + STATE(5257), 1, aux_sym__multiple_types_repeat1, - STATE(6988), 1, + STATE(6421), 1, sym_comment, - [224921] = 5, + [209343] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(5873), 1, sym__entry_separator, - ACTIONS(11493), 1, + ACTIONS(11059), 1, anon_sym_RBRACK, - STATE(6558), 1, + STATE(2718), 1, aux_sym__multiple_types_repeat1, - STATE(6989), 1, + STATE(6422), 1, sym_comment, - [224937] = 5, - ACTIONS(3), 1, + [209359] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - ACTIONS(2202), 1, - anon_sym_EQ_GT, - ACTIONS(2204), 1, - anon_sym_PIPE, - STATE(6990), 1, + ACTIONS(11011), 1, + sym_hex_digit, + ACTIONS(11061), 1, + anon_sym_RBRACK, + STATE(6423), 1, sym_comment, - [224953] = 3, + STATE(6431), 1, + aux_sym_val_binary_repeat1, + [209375] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6991), 1, + STATE(6424), 1, sym_comment, - ACTIONS(10472), 3, - ts_builtin_sym_end, + ACTIONS(11063), 3, sym__newline, anon_sym_SEMI, - [224965] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1719), 1, - aux_sym_unquoted_token2, - ACTIONS(1721), 1, - anon_sym_LBRACE, - ACTIONS(11495), 1, - aux_sym__immediate_decimal_token2, - STATE(6992), 1, - sym_comment, - [224981] = 3, + anon_sym_RPAREN, + [209387] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6993), 1, + STATE(6425), 1, sym_comment, - ACTIONS(10957), 3, + ACTIONS(10503), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [224993] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(11239), 1, - sym_hex_digit, - ACTIONS(11497), 1, - anon_sym_RBRACK, - STATE(6994), 1, - sym_comment, - STATE(6997), 1, - aux_sym_val_binary_repeat1, - [225009] = 5, + [209399] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2089), 1, - anon_sym_EQ_GT, - ACTIONS(2093), 1, - anon_sym_PIPE, - ACTIONS(2095), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + ACTIONS(4521), 1, aux_sym_unquoted_token4, - STATE(6995), 1, - sym_comment, - [225025] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6512), 1, - anon_sym_AT2, - ACTIONS(7810), 1, - anon_sym_EQ, - STATE(5074), 1, - sym_param_cmd, - STATE(6996), 1, - sym_comment, - [225041] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(11239), 1, - sym_hex_digit, - ACTIONS(11499), 1, - anon_sym_RBRACK, - STATE(6869), 1, - aux_sym_val_binary_repeat1, - STATE(6997), 1, + STATE(6426), 1, sym_comment, - [225057] = 5, + STATE(6857), 1, + sym__expr_parenthesized_immediate, + [209415] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11501), 1, + ACTIONS(11065), 1, anon_sym_RBRACK, - STATE(6567), 1, + STATE(6005), 1, aux_sym__multiple_types_repeat1, - STATE(6998), 1, + STATE(6427), 1, sym_comment, - [225073] = 3, + [209431] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(6999), 1, + STATE(6428), 1, sym_comment, - ACTIONS(10406), 3, + ACTIONS(10969), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [225085] = 3, + [209443] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7000), 1, + STATE(6429), 1, sym_comment, - ACTIONS(10541), 3, + ACTIONS(10513), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [225097] = 5, + [209455] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11503), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + ACTIONS(7062), 1, + aux_sym_unquoted_token4, + STATE(6430), 1, + sym_comment, + STATE(6963), 1, + sym__expr_parenthesized_immediate, + [209471] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(11011), 1, + sym_hex_digit, + ACTIONS(11067), 1, anon_sym_RBRACK, - STATE(6568), 1, - aux_sym__multiple_types_repeat1, - STATE(7001), 1, + STATE(6431), 1, sym_comment, - [225113] = 5, + STATE(6456), 1, + aux_sym_val_binary_repeat1, + [209487] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11505), 1, + ACTIONS(11069), 1, anon_sym_RBRACK, - STATE(6569), 1, + STATE(6007), 1, aux_sym__multiple_types_repeat1, - STATE(7002), 1, + STATE(6432), 1, sym_comment, - [225129] = 5, + [209503] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11507), 1, + ACTIONS(11071), 1, anon_sym_RBRACK, - STATE(6570), 1, + STATE(6008), 1, aux_sym__multiple_types_repeat1, - STATE(7003), 1, + STATE(6433), 1, + sym_comment, + [209519] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6434), 1, + sym_comment, + ACTIONS(11073), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [209531] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6435), 1, sym_comment, - [225145] = 5, + ACTIONS(11075), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [209543] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11509), 1, + ACTIONS(11077), 1, anon_sym_RBRACK, - STATE(6571), 1, + STATE(6009), 1, aux_sym__multiple_types_repeat1, - STATE(7004), 1, + STATE(6436), 1, sym_comment, - [225161] = 5, + [209559] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(2280), 1, sym__entry_separator, - ACTIONS(11511), 1, - anon_sym_RBRACK, - STATE(6572), 1, - aux_sym__multiple_types_repeat1, - STATE(7005), 1, + STATE(6437), 1, sym_comment, - [225177] = 5, + ACTIONS(2278), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [209573] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(2280), 1, sym__entry_separator, - ACTIONS(11513), 1, + STATE(6438), 1, + sym_comment, + ACTIONS(2278), 2, anon_sym_RBRACK, - STATE(6573), 1, - aux_sym__multiple_types_repeat1, - STATE(7006), 1, + anon_sym_RBRACE, + [209587] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(11011), 1, + sym_hex_digit, + ACTIONS(11079), 1, + anon_sym_RBRACK, + STATE(6439), 1, sym_comment, - [225193] = 3, + STATE(6456), 1, + aux_sym_val_binary_repeat1, + [209603] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7007), 1, + STATE(6440), 1, sym_comment, - ACTIONS(10496), 3, + ACTIONS(10864), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [225205] = 5, + [209615] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(5873), 1, sym__entry_separator, - ACTIONS(11515), 1, + ACTIONS(11081), 1, anon_sym_RBRACK, - STATE(6574), 1, + STATE(2683), 1, aux_sym__multiple_types_repeat1, - STATE(7008), 1, + STATE(6441), 1, sym_comment, - [225221] = 3, + [209631] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7009), 1, + STATE(6442), 1, sym_comment, - ACTIONS(10408), 3, + ACTIONS(10527), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [225233] = 3, + [209643] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7010), 1, + STATE(6443), 1, + sym_comment, + ACTIONS(10969), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [209655] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6444), 1, sym_comment, - ACTIONS(10410), 3, + ACTIONS(10330), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [225245] = 4, + [209667] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5682), 1, + ACTIONS(5873), 1, sym__entry_separator, - STATE(7011), 1, - sym_comment, - ACTIONS(5680), 2, + ACTIONS(11083), 1, anon_sym_RBRACK, - anon_sym_GT2, - [225259] = 5, + STATE(2719), 1, + aux_sym__multiple_types_repeat1, + STATE(6445), 1, + sym_comment, + [209683] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1618), 1, + anon_sym_LPAREN2, + ACTIONS(1717), 1, + aux_sym__unquoted_in_record_token4, + STATE(6446), 1, + sym_comment, + STATE(6927), 1, + sym__expr_parenthesized_immediate, + [209699] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11239), 1, + ACTIONS(11011), 1, sym_hex_digit, - ACTIONS(11517), 1, + ACTIONS(11085), 1, anon_sym_RBRACK, - STATE(7012), 1, + STATE(6447), 1, sym_comment, - STATE(7017), 1, + STATE(6455), 1, aux_sym_val_binary_repeat1, - [225275] = 5, + [209715] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6448), 1, + sym_comment, + ACTIONS(10529), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [209727] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6119), 1, + ACTIONS(2266), 1, sym__entry_separator, - ACTIONS(6179), 1, + STATE(6449), 1, + sym_comment, + ACTIONS(2264), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - STATE(2968), 1, + [209741] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2256), 1, + sym__entry_separator, + ACTIONS(11087), 1, + anon_sym_RBRACE, + STATE(624), 1, aux_sym__multiple_types_repeat1, - STATE(7013), 1, + STATE(6450), 1, sym_comment, - [225291] = 5, + [209757] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11519), 1, + ACTIONS(11089), 1, anon_sym_RBRACK, - STATE(3609), 1, + STATE(6023), 1, aux_sym__multiple_types_repeat1, - STATE(7014), 1, + STATE(6451), 1, sym_comment, - [225307] = 5, + [209773] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2210), 1, + ACTIONS(1831), 1, sym__entry_separator, - ACTIONS(11521), 1, - anon_sym_RBRACE, - STATE(623), 1, - aux_sym__multiple_types_repeat1, - STATE(7015), 1, + STATE(6452), 1, sym_comment, - [225323] = 5, + ACTIONS(1829), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [209787] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(2256), 1, sym__entry_separator, - ACTIONS(11523), 1, - anon_sym_GT2, - STATE(5512), 1, + ACTIONS(11091), 1, + anon_sym_RBRACE, + STATE(609), 1, aux_sym__multiple_types_repeat1, - STATE(7016), 1, + STATE(6453), 1, + sym_comment, + [209803] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + ACTIONS(7012), 1, + aux_sym_unquoted_token4, + STATE(6454), 1, sym_comment, - [225339] = 5, + STATE(6814), 1, + sym__expr_parenthesized_immediate, + [209819] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11239), 1, + ACTIONS(11011), 1, sym_hex_digit, - ACTIONS(11525), 1, + ACTIONS(11093), 1, anon_sym_RBRACK, - STATE(6869), 1, - aux_sym_val_binary_repeat1, - STATE(7017), 1, + STATE(6455), 1, sym_comment, - [225355] = 3, + STATE(6456), 1, + aux_sym_val_binary_repeat1, + [209835] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(7018), 1, + ACTIONS(11095), 1, + anon_sym_RBRACK, + ACTIONS(11097), 1, + sym_hex_digit, + STATE(6456), 2, sym_comment, - ACTIONS(10412), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [225367] = 5, + aux_sym_val_binary_repeat1, + [209849] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11527), 1, + ACTIONS(11100), 1, anon_sym_RBRACK, - STATE(6583), 1, + STATE(6314), 1, aux_sym__multiple_types_repeat1, - STATE(7019), 1, + STATE(6457), 1, sym_comment, - [225383] = 5, + [209865] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11529), 1, - anon_sym_GT2, - STATE(5516), 1, + ACTIONS(11102), 1, + anon_sym_RBRACK, + STATE(6025), 1, aux_sym__multiple_types_repeat1, - STATE(7020), 1, + STATE(6458), 1, sym_comment, - [225399] = 5, + [209881] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11531), 1, + ACTIONS(11104), 1, anon_sym_RBRACK, - STATE(6584), 1, + STATE(6026), 1, aux_sym__multiple_types_repeat1, - STATE(7021), 1, + STATE(6459), 1, sym_comment, - [225415] = 5, + [209897] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11533), 1, + ACTIONS(11106), 1, anon_sym_RBRACK, - STATE(6585), 1, + STATE(6027), 1, aux_sym__multiple_types_repeat1, - STATE(7022), 1, + STATE(6460), 1, + sym_comment, + [209913] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7012), 1, + aux_sym_unquoted_token2, + STATE(6461), 1, sym_comment, - [225431] = 5, + ACTIONS(1628), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [209927] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(2272), 1, sym__entry_separator, - ACTIONS(11535), 1, + STATE(6462), 1, + sym_comment, + ACTIONS(2270), 2, anon_sym_RBRACK, - STATE(6586), 1, - aux_sym__multiple_types_repeat1, - STATE(7023), 1, + anon_sym_RBRACE, + [209941] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6463), 1, sym_comment, - [225447] = 5, + ACTIONS(11108), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [209953] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6119), 1, + ACTIONS(6061), 1, sym__entry_separator, - ACTIONS(6181), 1, + ACTIONS(6124), 1, anon_sym_RBRACE, - STATE(2969), 1, + STATE(2893), 1, aux_sym__multiple_types_repeat1, - STATE(7024), 1, + STATE(6464), 1, sym_comment, - [225463] = 5, + [209969] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11537), 1, - anon_sym_RBRACK, - STATE(6587), 1, + ACTIONS(11110), 1, + anon_sym_COLON, + STATE(5361), 1, aux_sym__multiple_types_repeat1, - STATE(7025), 1, + STATE(6465), 1, sym_comment, - [225479] = 5, - ACTIONS(3), 1, + [209985] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11539), 1, + ACTIONS(11011), 1, + sym_hex_digit, + ACTIONS(11112), 1, anon_sym_RBRACK, - STATE(6588), 1, - aux_sym__multiple_types_repeat1, - STATE(7026), 1, + STATE(6466), 1, sym_comment, - [225495] = 5, - ACTIONS(3), 1, + STATE(6472), 1, + aux_sym_val_binary_repeat1, + [210001] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11541), 1, - anon_sym_RBRACK, - STATE(6589), 1, - aux_sym__multiple_types_repeat1, - STATE(7027), 1, + STATE(6467), 1, sym_comment, - [225511] = 4, + ACTIONS(10343), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [210013] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2394), 1, + ACTIONS(5650), 1, sym__entry_separator, - STATE(7028), 1, + STATE(6468), 1, sym_comment, - ACTIONS(2392), 2, + ACTIONS(5648), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [225525] = 5, + anon_sym_GT2, + [210027] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11543), 1, + ACTIONS(11114), 1, anon_sym_RBRACK, - STATE(6590), 1, + STATE(6041), 1, aux_sym__multiple_types_repeat1, - STATE(7029), 1, + STATE(6469), 1, sym_comment, - [225541] = 5, + [210043] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(1979), 1, sym__entry_separator, - ACTIONS(11545), 1, - anon_sym_GT2, - STATE(5455), 1, - aux_sym__multiple_types_repeat1, - STATE(7030), 1, + STATE(6470), 1, sym_comment, - [225557] = 5, + ACTIONS(1973), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [210057] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11239), 1, + ACTIONS(4815), 1, + anon_sym_LBRACE, + ACTIONS(11116), 1, + anon_sym_EQ2, + ACTIONS(11118), 1, + sym_short_flag_identifier, + STATE(6471), 1, + sym_comment, + [210073] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(11011), 1, sym_hex_digit, - ACTIONS(11547), 1, + ACTIONS(11120), 1, anon_sym_RBRACK, - STATE(7031), 1, - sym_comment, - STATE(7055), 1, + STATE(6456), 1, aux_sym_val_binary_repeat1, - [225573] = 5, + STATE(6472), 1, + sym_comment, + [210089] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1579), 1, + STATE(6473), 1, + sym_comment, + ACTIONS(1883), 3, anon_sym_RBRACK, - ACTIONS(1591), 1, sym__entry_separator, - ACTIONS(8886), 1, - aux_sym__unquoted_in_list_token2, - STATE(7032), 1, - sym_comment, - [225589] = 5, + sym__table_head_separator, + [210101] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11549), 1, + ACTIONS(11122), 1, anon_sym_RBRACK, - STATE(6600), 1, + STATE(6042), 1, aux_sym__multiple_types_repeat1, - STATE(7033), 1, + STATE(6474), 1, sym_comment, - [225605] = 5, + [210117] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11551), 1, + ACTIONS(11124), 1, anon_sym_RBRACK, - STATE(6601), 1, + STATE(6043), 1, aux_sym__multiple_types_repeat1, - STATE(7034), 1, + STATE(6475), 1, sym_comment, - [225621] = 5, + [210133] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11553), 1, + ACTIONS(11126), 1, anon_sym_RBRACK, - STATE(6602), 1, + STATE(6044), 1, aux_sym__multiple_types_repeat1, - STATE(7035), 1, + STATE(6476), 1, sym_comment, - [225637] = 5, + [210149] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11555), 1, - anon_sym_RBRACK, - STATE(6603), 1, - aux_sym__multiple_types_repeat1, - STATE(7036), 1, + ACTIONS(2078), 1, + anon_sym_PIPE, + STATE(6477), 1, + sym_comment, + ACTIONS(2076), 2, + anon_sym_EQ_GT, + aux_sym_unquoted_token4, + [210163] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6456), 1, + anon_sym_AT2, + ACTIONS(7804), 1, + anon_sym_EQ, + STATE(4887), 1, + sym_param_cmd, + STATE(6478), 1, + sym_comment, + [210179] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5480), 1, + anon_sym_LPAREN2, + ACTIONS(5490), 1, + aux_sym__unquoted_in_list_token4, + STATE(6479), 1, sym_comment, - [225653] = 5, + STATE(6933), 1, + sym__expr_parenthesized_immediate, + [210195] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11557), 1, + ACTIONS(11128), 1, anon_sym_RBRACK, - STATE(6604), 1, + STATE(3413), 1, aux_sym__multiple_types_repeat1, - STATE(7037), 1, + STATE(6480), 1, sym_comment, - [225669] = 5, + [210211] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2210), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11559), 1, - anon_sym_RBRACE, - STATE(674), 1, + ACTIONS(10284), 1, + anon_sym_LBRACK, + STATE(3382), 1, aux_sym__multiple_types_repeat1, - STATE(7038), 1, + STATE(6481), 1, sym_comment, - [225685] = 5, - ACTIONS(3), 1, + [210227] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11561), 1, + ACTIONS(1664), 1, + anon_sym_SEMI, + ACTIONS(3756), 1, + sym__newline, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(6482), 1, + sym_comment, + [210243] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(3756), 1, + sym__newline, + ACTIONS(11130), 1, + anon_sym_COLON, + STATE(1554), 1, + aux_sym_shebang_repeat1, + STATE(6483), 1, + sym_comment, + [210259] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1701), 1, + aux_sym_unquoted_token2, + ACTIONS(1703), 1, + anon_sym_LBRACE, + ACTIONS(10894), 1, + aux_sym__immediate_decimal_token2, + STATE(6484), 1, + sym_comment, + [210275] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(11011), 1, + sym_hex_digit, + ACTIONS(11132), 1, anon_sym_RBRACK, - STATE(6605), 1, - aux_sym__multiple_types_repeat1, - STATE(7039), 1, + STATE(6485), 1, + sym_comment, + STATE(6489), 1, + aux_sym_val_binary_repeat1, + [210291] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6486), 1, sym_comment, - [225701] = 5, + ACTIONS(6201), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [210303] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11563), 1, + ACTIONS(11134), 1, anon_sym_RBRACK, - STATE(6606), 1, + STATE(6057), 1, aux_sym__multiple_types_repeat1, - STATE(7040), 1, + STATE(6487), 1, sym_comment, - [225717] = 5, + [210319] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11565), 1, - anon_sym_RBRACK, - STATE(6607), 1, + ACTIONS(11136), 1, + anon_sym_COLON, + STATE(5375), 1, aux_sym__multiple_types_repeat1, - STATE(7041), 1, + STATE(6488), 1, sym_comment, - [225733] = 5, - ACTIONS(3), 1, + [210335] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - ACTIONS(4768), 1, - aux_sym_unquoted_token4, - STATE(7042), 1, + ACTIONS(11011), 1, + sym_hex_digit, + ACTIONS(11138), 1, + anon_sym_RBRACK, + STATE(6456), 1, + aux_sym_val_binary_repeat1, + STATE(6489), 1, sym_comment, - STATE(7374), 1, - sym__expr_parenthesized_immediate, - [225749] = 4, + [210351] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2344), 1, + ACTIONS(5654), 1, sym__entry_separator, - STATE(7043), 1, + STATE(6490), 1, sym_comment, - ACTIONS(2342), 2, + ACTIONS(5652), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [225763] = 5, + anon_sym_GT2, + [210365] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11567), 1, + ACTIONS(11140), 1, anon_sym_RBRACK, - STATE(3611), 1, + STATE(6059), 1, aux_sym__multiple_types_repeat1, - STATE(7044), 1, - sym_comment, - [225779] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2348), 1, - sym__entry_separator, - STATE(7045), 1, + STATE(6491), 1, sym_comment, - ACTIONS(2346), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [225793] = 4, + [210381] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2352), 1, + ACTIONS(6558), 1, sym__entry_separator, - STATE(7046), 1, - sym_comment, - ACTIONS(2350), 2, + ACTIONS(11142), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [225807] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - ACTIONS(7156), 1, - aux_sym_unquoted_token4, - STATE(7047), 1, + STATE(6060), 1, + aux_sym__multiple_types_repeat1, + STATE(6492), 1, sym_comment, - STATE(7519), 1, - sym__expr_parenthesized_immediate, - [225823] = 3, + [210397] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7048), 1, + ACTIONS(11144), 1, + anon_sym_GT2, + STATE(6493), 1, sym_comment, - ACTIONS(1927), 3, - anon_sym_RBRACK, + ACTIONS(11146), 2, + anon_sym_AT2, sym__entry_separator, - sym__table_head_separator, - [225835] = 5, + [210411] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11569), 1, + ACTIONS(11148), 1, anon_sym_RBRACK, - STATE(6613), 1, + STATE(6061), 1, aux_sym__multiple_types_repeat1, - STATE(7049), 1, + STATE(6494), 1, sym_comment, - [225851] = 5, + [210427] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(2284), 1, sym__entry_separator, - ACTIONS(11571), 1, - anon_sym_RBRACK, - STATE(6614), 1, - aux_sym__multiple_types_repeat1, - STATE(7050), 1, + STATE(6495), 1, sym_comment, - [225867] = 5, + ACTIONS(2282), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [210441] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(2288), 1, sym__entry_separator, - ACTIONS(11573), 1, - anon_sym_RBRACK, - STATE(6615), 1, - aux_sym__multiple_types_repeat1, - STATE(7051), 1, + STATE(6496), 1, sym_comment, - [225883] = 5, + ACTIONS(2286), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [210455] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(5628), 1, sym__entry_separator, - ACTIONS(11575), 1, - anon_sym_RBRACK, - STATE(6616), 1, - aux_sym__multiple_types_repeat1, - STATE(7052), 1, + STATE(6497), 1, sym_comment, - [225899] = 5, + ACTIONS(5626), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [210469] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(2368), 1, sym__entry_separator, - ACTIONS(11577), 1, + STATE(6498), 1, + sym_comment, + ACTIONS(2366), 2, anon_sym_RBRACK, - STATE(6617), 1, - aux_sym__multiple_types_repeat1, - STATE(7053), 1, + anon_sym_RBRACE, + [210483] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6499), 1, + sym_comment, + ACTIONS(6205), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [210495] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(11011), 1, + sym_hex_digit, + ACTIONS(11150), 1, + anon_sym_RBRACK, + STATE(6500), 1, sym_comment, - [225915] = 4, + STATE(6505), 1, + aux_sym_val_binary_repeat1, + [210511] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2356), 1, + ACTIONS(1835), 1, sym__entry_separator, - STATE(7054), 1, + STATE(6501), 1, sym_comment, - ACTIONS(2354), 2, + ACTIONS(1833), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [225929] = 5, + [210525] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11239), 1, + ACTIONS(11011), 1, sym_hex_digit, - ACTIONS(11579), 1, + ACTIONS(11152), 1, anon_sym_RBRACK, - STATE(6869), 1, - aux_sym_val_binary_repeat1, - STATE(7055), 1, + STATE(6502), 1, sym_comment, - [225945] = 5, + STATE(6629), 1, + aux_sym_val_binary_repeat1, + [210541] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(2256), 1, sym__entry_separator, - ACTIONS(11581), 1, - anon_sym_RBRACK, - STATE(6618), 1, + ACTIONS(11154), 1, + anon_sym_RBRACE, + STATE(610), 1, aux_sym__multiple_types_repeat1, - STATE(7056), 1, + STATE(6503), 1, sym_comment, - [225961] = 5, + [210557] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11583), 1, + ACTIONS(11156), 1, anon_sym_RBRACK, - STATE(6619), 1, + STATE(6074), 1, aux_sym__multiple_types_repeat1, - STATE(7057), 1, + STATE(6504), 1, sym_comment, - [225977] = 4, - ACTIONS(3), 1, + [210573] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2360), 1, - sym__entry_separator, - STATE(7058), 1, - sym_comment, - ACTIONS(2358), 2, + ACTIONS(11011), 1, + sym_hex_digit, + ACTIONS(11158), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [225991] = 5, + STATE(6456), 1, + aux_sym_val_binary_repeat1, + STATE(6505), 1, + sym_comment, + [210589] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6506), 1, + sym_comment, + ACTIONS(10308), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [210601] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11585), 1, + ACTIONS(11160), 1, anon_sym_RBRACK, - STATE(6620), 1, + STATE(6075), 1, aux_sym__multiple_types_repeat1, - STATE(7059), 1, + STATE(6507), 1, sym_comment, - [226007] = 4, + [210617] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2364), 1, + ACTIONS(6558), 1, sym__entry_separator, - STATE(7060), 1, - sym_comment, - ACTIONS(2362), 2, + ACTIONS(11162), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [226021] = 5, + STATE(6076), 1, + aux_sym__multiple_types_repeat1, + STATE(6508), 1, + sym_comment, + [210633] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11587), 1, + ACTIONS(11164), 1, anon_sym_RBRACK, - STATE(6346), 1, + STATE(6077), 1, aux_sym__multiple_types_repeat1, - STATE(7061), 1, + STATE(6509), 1, sym_comment, - [226037] = 4, - ACTIONS(3), 1, + [210649] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2368), 1, - sym__entry_separator, - STATE(7062), 1, + STATE(6510), 1, sym_comment, - ACTIONS(2366), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [226051] = 5, - ACTIONS(3), 1, + ACTIONS(6157), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [210661] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1581), 1, - anon_sym_LPAREN2, - ACTIONS(1593), 1, - aux_sym__unquoted_in_record_token4, - STATE(7063), 1, + STATE(6511), 1, sym_comment, - STATE(7527), 1, - sym__expr_parenthesized_immediate, - [226067] = 5, + ACTIONS(11166), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [210673] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11239), 1, + ACTIONS(11011), 1, sym_hex_digit, - ACTIONS(11589), 1, + ACTIONS(11168), 1, anon_sym_RBRACK, - STATE(7064), 1, + STATE(6512), 1, sym_comment, - STATE(7090), 1, + STATE(6516), 1, aux_sym_val_binary_repeat1, - [226083] = 5, + [210689] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6456), 1, + anon_sym_AT2, + ACTIONS(11170), 1, + anon_sym_GT2, + STATE(6513), 1, + sym_comment, + STATE(7078), 1, + sym_param_cmd, + [210705] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11591), 1, + ACTIONS(11172), 1, anon_sym_RBRACK, - STATE(6347), 1, + STATE(6087), 1, aux_sym__multiple_types_repeat1, - STATE(7065), 1, + STATE(6514), 1, + sym_comment, + [210721] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6515), 1, + sym_comment, + ACTIONS(11174), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [210733] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(11011), 1, + sym_hex_digit, + ACTIONS(11176), 1, + anon_sym_RBRACK, + STATE(6456), 1, + aux_sym_val_binary_repeat1, + STATE(6516), 1, sym_comment, - [226099] = 5, + [210749] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11593), 1, + ACTIONS(11178), 1, anon_sym_RBRACK, - STATE(6348), 1, + STATE(6088), 1, aux_sym__multiple_types_repeat1, - STATE(7066), 1, + STATE(6517), 1, sym_comment, - [226115] = 5, + [210765] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11595), 1, + ACTIONS(11180), 1, anon_sym_RBRACK, - STATE(6349), 1, + STATE(5883), 1, aux_sym__multiple_types_repeat1, - STATE(7067), 1, + STATE(6518), 1, + sym_comment, + [210781] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6519), 1, sym_comment, - [226131] = 5, + ACTIONS(10425), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [210793] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11597), 1, + ACTIONS(11182), 1, anon_sym_RBRACK, - STATE(6350), 1, + STATE(6090), 1, aux_sym__multiple_types_repeat1, - STATE(7068), 1, + STATE(6520), 1, sym_comment, - [226147] = 3, + [210809] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(7069), 1, + ACTIONS(3342), 1, + anon_sym_COLON2, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(6282), 1, + sym_block, + STATE(6521), 1, sym_comment, - ACTIONS(10959), 3, + [210825] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6522), 1, + sym_comment, + ACTIONS(10425), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [226159] = 5, + [210837] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(11011), 1, + sym_hex_digit, + ACTIONS(11184), 1, + anon_sym_RBRACK, + STATE(6523), 1, + sym_comment, + STATE(6527), 1, + aux_sym_val_binary_repeat1, + [210853] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1274), 1, + anon_sym_POUND_BANG, + ACTIONS(11186), 1, + sym__newline, + STATE(6524), 2, + sym_comment, + aux_sym_shebang_repeat1, + [210867] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11599), 1, + ACTIONS(11189), 1, anon_sym_RBRACK, - STATE(6351), 1, + STATE(6102), 1, aux_sym__multiple_types_repeat1, - STATE(7070), 1, + STATE(6525), 1, sym_comment, - [226175] = 5, + [210883] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11601), 1, - anon_sym_RBRACK, - STATE(6352), 1, + ACTIONS(11191), 1, + anon_sym_GT2, + STATE(5263), 1, aux_sym__multiple_types_repeat1, - STATE(7071), 1, + STATE(6526), 1, + sym_comment, + [210899] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(11011), 1, + sym_hex_digit, + ACTIONS(11193), 1, + anon_sym_RBRACK, + STATE(6456), 1, + aux_sym_val_binary_repeat1, + STATE(6527), 1, sym_comment, - [226191] = 5, + [210915] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(2392), 1, sym__entry_separator, - ACTIONS(11603), 1, - anon_sym_RBRACK, - STATE(6353), 1, - aux_sym__multiple_types_repeat1, - STATE(7072), 1, + STATE(6528), 1, sym_comment, - [226207] = 5, + ACTIONS(2390), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [210929] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5744), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11605), 1, + ACTIONS(11195), 1, anon_sym_RBRACK, - STATE(2735), 1, + STATE(6103), 1, aux_sym__multiple_types_repeat1, - STATE(7073), 1, + STATE(6529), 1, sym_comment, - [226223] = 5, + [210945] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11607), 1, + ACTIONS(11197), 1, anon_sym_RBRACK, - STATE(6298), 1, + STATE(6104), 1, aux_sym__multiple_types_repeat1, - STATE(7074), 1, + STATE(6530), 1, sym_comment, - [226239] = 3, + [210961] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7075), 1, + STATE(6531), 1, sym_comment, - ACTIONS(10579), 3, + ACTIONS(10888), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [226251] = 4, + [210973] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11609), 1, - anon_sym_GT2, - STATE(7076), 1, - sym_comment, - ACTIONS(11611), 2, - anon_sym_AT2, + ACTIONS(6558), 1, sym__entry_separator, - [226265] = 5, + ACTIONS(11199), 1, + anon_sym_RBRACK, + STATE(6105), 1, + aux_sym__multiple_types_repeat1, + STATE(6532), 1, + sym_comment, + [210989] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11613), 1, + ACTIONS(11201), 1, anon_sym_GT2, - STATE(5566), 1, + STATE(5297), 1, aux_sym__multiple_types_repeat1, - STATE(7077), 1, + STATE(6533), 1, sym_comment, - [226281] = 3, + [211005] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(7078), 1, + ACTIONS(3342), 1, + anon_sym_COLON2, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(6236), 1, + sym_block, + STATE(6534), 1, + sym_comment, + [211021] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6535), 1, sym_comment, - ACTIONS(10579), 3, + ACTIONS(10656), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [226293] = 4, - ACTIONS(3), 1, + [211033] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2047), 1, - anon_sym_PIPE, - STATE(7079), 1, + STATE(6536), 1, sym_comment, - ACTIONS(2045), 2, - anon_sym_EQ_GT, - aux_sym_unquoted_token4, - [226307] = 5, + ACTIONS(10860), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [211045] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6512), 1, - anon_sym_AT2, - ACTIONS(11615), 1, - anon_sym_GT2, - STATE(7080), 1, + ACTIONS(11011), 1, + sym_hex_digit, + ACTIONS(11203), 1, + anon_sym_RBRACK, + STATE(6537), 1, sym_comment, - STATE(7817), 1, - sym_param_cmd, - [226323] = 3, + STATE(6542), 1, + aux_sym_val_binary_repeat1, + [211061] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(7081), 1, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + STATE(6538), 1, sym_comment, - ACTIONS(10649), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226335] = 3, + ACTIONS(1790), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [211075] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7082), 1, + STATE(6539), 1, sym_comment, - ACTIONS(10649), 3, + ACTIONS(10578), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [226347] = 3, + [211087] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(7083), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(11205), 1, + anon_sym_GT2, + STATE(5266), 1, + aux_sym__multiple_types_repeat1, + STATE(6540), 1, sym_comment, - ACTIONS(2398), 3, - anon_sym_RBRACK, + [211103] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6558), 1, sym__entry_separator, - sym__table_head_separator, - [226359] = 3, + ACTIONS(11207), 1, + anon_sym_RBRACK, + STATE(6116), 1, + aux_sym__multiple_types_repeat1, + STATE(6541), 1, + sym_comment, + [211119] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(7084), 1, + ACTIONS(11011), 1, + sym_hex_digit, + ACTIONS(11209), 1, + anon_sym_RBRACK, + STATE(6456), 1, + aux_sym_val_binary_repeat1, + STATE(6542), 1, sym_comment, - ACTIONS(11617), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [226371] = 4, + [211135] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1853), 1, + ACTIONS(6558), 1, sym__entry_separator, - STATE(7085), 1, + ACTIONS(11211), 1, + anon_sym_RBRACK, + STATE(6117), 1, + aux_sym__multiple_types_repeat1, + STATE(6543), 1, sym_comment, - ACTIONS(1851), 2, + [211151] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6558), 1, + sym__entry_separator, + ACTIONS(11213), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [226385] = 5, - ACTIONS(245), 1, + STATE(6118), 1, + aux_sym__multiple_types_repeat1, + STATE(6544), 1, + sym_comment, + [211167] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(6865), 1, - sym_val_list, - STATE(7086), 1, + STATE(6545), 1, sym_comment, - STATE(7206), 1, - aux_sym_val_table_repeat1, - [226401] = 3, + ACTIONS(2060), 3, + sym__newline, + sym__space, + anon_sym_COLON2, + [211179] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6558), 1, + sym__entry_separator, + ACTIONS(11215), 1, + anon_sym_RBRACK, + STATE(6119), 1, + aux_sym__multiple_types_repeat1, + STATE(6546), 1, + sym_comment, + [211195] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7087), 1, + STATE(6547), 1, sym_comment, - ACTIONS(10418), 3, + ACTIONS(10578), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [226413] = 4, + [211207] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2428), 1, - sym__entry_separator, - STATE(7088), 1, + ACTIONS(3528), 1, + sym__newline, + ACTIONS(3530), 1, + sym__space, + STATE(1128), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(6548), 1, sym_comment, - ACTIONS(2426), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [226427] = 5, + [211223] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6549), 1, + sym_comment, + ACTIONS(10995), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [211235] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5921), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11619), 1, + ACTIONS(11217), 1, anon_sym_RBRACK, - STATE(2842), 1, + STATE(6250), 1, aux_sym__multiple_types_repeat1, - STATE(7089), 1, + STATE(6550), 1, sym_comment, - [226443] = 5, + [211251] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11239), 1, + ACTIONS(11011), 1, sym_hex_digit, - ACTIONS(11621), 1, + ACTIONS(11219), 1, anon_sym_RBRACK, - STATE(6869), 1, - aux_sym_val_binary_repeat1, - STATE(7090), 1, - sym_comment, - [226459] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(7091), 1, + STATE(6551), 1, sym_comment, - ACTIONS(11189), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226471] = 3, - ACTIONS(245), 1, + STATE(6553), 1, + aux_sym_val_binary_repeat1, + [211267] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7092), 1, + ACTIONS(6558), 1, + sym__entry_separator, + ACTIONS(11221), 1, + anon_sym_RBRACK, + STATE(6129), 1, + aux_sym__multiple_types_repeat1, + STATE(6552), 1, sym_comment, - ACTIONS(11191), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226483] = 3, + [211283] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(7093), 1, + ACTIONS(11011), 1, + sym_hex_digit, + ACTIONS(11223), 1, + anon_sym_RBRACK, + STATE(6456), 1, + aux_sym_val_binary_repeat1, + STATE(6553), 1, sym_comment, - ACTIONS(10502), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226495] = 5, + [211299] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(2262), 1, sym__entry_separator, - ACTIONS(11623), 1, - anon_sym_RBRACK, - STATE(6300), 1, - aux_sym__multiple_types_repeat1, - STATE(7094), 1, + STATE(6554), 1, sym_comment, - [226511] = 5, + ACTIONS(2260), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [211313] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5921), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11625), 1, + ACTIONS(11225), 1, anon_sym_RBRACK, - STATE(2848), 1, + STATE(6130), 1, aux_sym__multiple_types_repeat1, - STATE(7095), 1, - sym_comment, - [226527] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4873), 1, - anon_sym_LBRACE, - ACTIONS(11627), 1, - sym_long_flag_identifier, - ACTIONS(11629), 1, - anon_sym_EQ2, - STATE(7096), 1, + STATE(6555), 1, sym_comment, - [226543] = 4, + [211329] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1286), 1, - anon_sym_POUND_BANG, - ACTIONS(11631), 1, - sym__newline, - STATE(7097), 2, - sym_comment, - aux_sym_shebang_repeat1, - [226557] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(7098), 1, + ACTIONS(6558), 1, + sym__entry_separator, + ACTIONS(11227), 1, + anon_sym_RBRACK, + STATE(6131), 1, + aux_sym__multiple_types_repeat1, + STATE(6556), 1, sym_comment, - ACTIONS(11634), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [226569] = 5, + [211345] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11636), 1, + ACTIONS(11229), 1, anon_sym_RBRACK, - STATE(6513), 1, + STATE(6132), 1, aux_sym__multiple_types_repeat1, - STATE(7099), 1, + STATE(6557), 1, sym_comment, - [226585] = 4, + [211361] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2408), 1, + ACTIONS(1865), 1, sym__entry_separator, - STATE(7100), 1, + STATE(6558), 1, sym_comment, - ACTIONS(2406), 2, + ACTIONS(1863), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [226599] = 5, + [211375] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11638), 1, + ACTIONS(11231), 1, anon_sym_GT2, - STATE(5567), 1, + STATE(5300), 1, aux_sym__multiple_types_repeat1, - STATE(7101), 1, + STATE(6559), 1, sym_comment, - [226615] = 4, + [211391] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1282), 1, - anon_sym_RPAREN, - STATE(7102), 1, + STATE(6560), 1, sym_comment, - ACTIONS(1275), 2, + ACTIONS(11233), 3, sym__newline, anon_sym_SEMI, - [226629] = 3, + anon_sym_RPAREN, + [211403] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7103), 1, + STATE(6561), 1, sym_comment, - ACTIONS(1282), 3, + ACTIONS(10904), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [226641] = 3, + [211415] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(7104), 1, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + STATE(6562), 1, sym_comment, - ACTIONS(10547), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226653] = 4, + ACTIONS(2136), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [211429] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11640), 1, - sym__table_head_separator, - STATE(7105), 1, - sym_comment, - ACTIONS(998), 2, - anon_sym_RBRACK, + ACTIONS(6558), 1, sym__entry_separator, - [226667] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(7106), 1, + ACTIONS(11235), 1, + anon_sym_RBRACK, + STATE(6142), 1, + aux_sym__multiple_types_repeat1, + STATE(6563), 1, sym_comment, - ACTIONS(10436), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226679] = 3, + [211445] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7107), 1, + STATE(6564), 1, sym_comment, - ACTIONS(10649), 3, + ACTIONS(10790), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [226691] = 3, + [211457] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(7108), 1, + ACTIONS(3342), 1, + anon_sym_COLON2, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(4329), 1, + sym_block, + STATE(6565), 1, sym_comment, - ACTIONS(10649), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226703] = 5, - ACTIONS(245), 1, + [211473] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11239), 1, - sym_hex_digit, - ACTIONS(11642), 1, + ACTIONS(6558), 1, + sym__entry_separator, + ACTIONS(11237), 1, anon_sym_RBRACK, - STATE(6869), 1, - aux_sym_val_binary_repeat1, - STATE(7109), 1, + STATE(6143), 1, + aux_sym__multiple_types_repeat1, + STATE(6566), 1, sym_comment, - [226719] = 5, + [211489] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11644), 1, - anon_sym_GT2, - STATE(5595), 1, + ACTIONS(11239), 1, + anon_sym_RBRACK, + STATE(6144), 1, aux_sym__multiple_types_repeat1, - STATE(7110), 1, + STATE(6567), 1, sym_comment, - [226735] = 5, + [211505] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11646), 1, + ACTIONS(11241), 1, anon_sym_RBRACK, - STATE(3618), 1, + STATE(6145), 1, aux_sym__multiple_types_repeat1, - STATE(7111), 1, - sym_comment, - [226751] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_COLON2, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(6299), 1, - sym_block, - STATE(7112), 1, - sym_comment, - [226767] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(7113), 1, + STATE(6568), 1, sym_comment, - ACTIONS(10579), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [226779] = 4, + [211521] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2471), 1, + ACTIONS(1873), 1, sym__entry_separator, - STATE(7114), 1, + STATE(6569), 1, sym_comment, - ACTIONS(2469), 2, + ACTIONS(1871), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [226793] = 5, + [211535] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(2276), 1, sym__entry_separator, - ACTIONS(11648), 1, - anon_sym_GT2, - STATE(5608), 1, - aux_sym__multiple_types_repeat1, - STATE(7115), 1, + STATE(6570), 1, sym_comment, - [226809] = 5, + ACTIONS(2274), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [211549] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_COLON2, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(6324), 1, - sym_block, - STATE(7116), 1, - sym_comment, - [226825] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2471), 1, - sym__entry_separator, - STATE(7117), 1, + ACTIONS(2150), 1, + aux_sym_unquoted_token2, + STATE(6571), 1, sym_comment, - ACTIONS(2469), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [226839] = 3, + ACTIONS(2148), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [211563] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7118), 1, + STATE(6572), 1, sym_comment, - ACTIONS(10727), 3, + ACTIONS(10453), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [226851] = 5, - ACTIONS(245), 1, + [211575] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - anon_sym_AT2, - ACTIONS(8028), 1, - anon_sym_EQ, - STATE(5043), 1, - sym_param_cmd, - STATE(7119), 1, + STATE(6573), 1, sym_comment, - [226867] = 5, + ACTIONS(2390), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [211587] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11650), 1, - anon_sym_GT2, - STATE(5532), 1, + ACTIONS(11243), 1, + anon_sym_RBRACK, + STATE(6150), 1, aux_sym__multiple_types_repeat1, - STATE(7120), 1, - sym_comment, - [226883] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_COLON2, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(4712), 1, - sym_block, - STATE(7121), 1, + STATE(6574), 1, sym_comment, - [226899] = 3, + [211603] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7122), 1, + STATE(6575), 1, sym_comment, - ACTIONS(10543), 3, + ACTIONS(10995), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [226911] = 5, + [211615] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11652), 1, - anon_sym_GT2, - STATE(5614), 1, + ACTIONS(11245), 1, + anon_sym_RBRACK, + STATE(6366), 1, aux_sym__multiple_types_repeat1, - STATE(7123), 1, + STATE(6576), 1, sym_comment, - [226927] = 5, + [211631] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11654), 1, - anon_sym_GT2, - STATE(5619), 1, + ACTIONS(11247), 1, + anon_sym_RBRACK, + STATE(6152), 1, aux_sym__multiple_types_repeat1, - STATE(7124), 1, + STATE(6577), 1, sym_comment, - [226943] = 4, - ACTIONS(245), 1, + [211647] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1666), 1, - aux_sym_unquoted_token2, - STATE(7125), 1, + ACTIONS(6558), 1, + sym__entry_separator, + ACTIONS(11249), 1, + anon_sym_RBRACK, + STATE(6153), 1, + aux_sym__multiple_types_repeat1, + STATE(6578), 1, sym_comment, - ACTIONS(1668), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [226957] = 4, + [211663] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2400), 1, + ACTIONS(1869), 1, sym__entry_separator, - STATE(7126), 1, + STATE(6579), 1, sym_comment, - ACTIONS(2398), 2, + ACTIONS(1867), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [226971] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1648), 1, - aux_sym_unquoted_token2, - STATE(7127), 1, - sym_comment, - ACTIONS(1650), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [226985] = 4, - ACTIONS(245), 1, + [211677] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1719), 1, - aux_sym_unquoted_token2, - STATE(7128), 1, + ACTIONS(2423), 1, + sym__entry_separator, + STATE(6580), 1, sym_comment, - ACTIONS(1721), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [226999] = 4, + ACTIONS(2421), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [211691] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1790), 1, - aux_sym_unquoted_token2, - STATE(7129), 1, + STATE(6581), 1, sym_comment, - ACTIONS(1792), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [227013] = 3, + ACTIONS(10866), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [211703] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7130), 1, + STATE(6582), 1, sym_comment, - ACTIONS(11195), 3, + ACTIONS(10969), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [227025] = 5, + [211715] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11239), 1, - sym_hex_digit, - ACTIONS(11656), 1, - anon_sym_RBRACK, - STATE(7131), 1, + STATE(6583), 1, sym_comment, - STATE(7175), 1, - aux_sym_val_binary_repeat1, - [227041] = 4, + ACTIONS(11251), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [211727] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11658), 1, - sym__table_head_separator, - STATE(7132), 1, + ACTIONS(2407), 1, + sym__entry_separator, + STATE(6584), 1, sym_comment, - ACTIONS(998), 2, + ACTIONS(2405), 2, anon_sym_RBRACK, + anon_sym_RBRACE, + [211741] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2364), 1, sym__entry_separator, - [227055] = 3, + STATE(6585), 1, + sym_comment, + ACTIONS(2362), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [211755] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7133), 1, + STATE(6586), 1, sym_comment, - ACTIONS(10543), 3, + ACTIONS(10967), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [227067] = 3, + [211767] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7134), 1, + STATE(6587), 1, sym_comment, - ACTIONS(10535), 3, + ACTIONS(10868), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [227079] = 3, + [211779] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(7135), 1, + ACTIONS(1701), 1, + aux_sym_unquoted_token2, + STATE(6588), 1, sym_comment, - ACTIONS(11660), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [227091] = 5, + ACTIONS(1703), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [211793] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2196), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - ACTIONS(2200), 1, + ACTIONS(7181), 1, aux_sym_unquoted_token4, - ACTIONS(11662), 1, - sym__space, - STATE(7136), 1, - sym_comment, - [227107] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - STATE(7137), 1, + STATE(6589), 1, sym_comment, - ACTIONS(2043), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [227121] = 3, + STATE(6901), 1, + sym__expr_parenthesized_immediate, + [211809] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7138), 1, + STATE(6590), 1, sym_comment, - ACTIONS(10961), 3, + ACTIONS(10808), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [227133] = 5, + [211821] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10933), 1, + anon_sym_LPAREN, + STATE(6591), 1, + sym_comment, + ACTIONS(10935), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [211835] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(2292), 1, sym__entry_separator, - ACTIONS(11664), 1, + STATE(6592), 1, + sym_comment, + ACTIONS(2290), 2, anon_sym_RBRACK, - STATE(6514), 1, + anon_sym_RBRACE, + [211849] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2296), 1, + sym__entry_separator, + STATE(6593), 1, + sym_comment, + ACTIONS(2294), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [211863] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(11253), 1, + anon_sym_GT2, + STATE(5204), 1, aux_sym__multiple_types_repeat1, - STATE(7139), 1, + STATE(6594), 1, sym_comment, - [227149] = 5, + [211879] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2210), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11666), 1, - anon_sym_RBRACE, - STATE(611), 1, + ACTIONS(11255), 1, + anon_sym_GT2, + STATE(5207), 1, aux_sym__multiple_types_repeat1, - STATE(7140), 1, + STATE(6595), 1, sym_comment, - [227165] = 5, + [211895] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4881), 1, - anon_sym_LBRACE, - ACTIONS(11668), 1, - anon_sym_EQ2, - ACTIONS(11670), 1, - sym_short_flag_identifier, - STATE(7141), 1, + STATE(6596), 1, + sym_comment, + ACTIONS(11257), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [211907] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6597), 1, sym_comment, - [227181] = 4, + ACTIONS(10802), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [211919] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1788), 1, + ACTIONS(1686), 1, aux_sym_unquoted_token2, - STATE(7142), 1, + STATE(6598), 1, sym_comment, - ACTIONS(1786), 2, + ACTIONS(1688), 2, anon_sym_PIPE, anon_sym_EQ_GT, - [227195] = 5, - ACTIONS(245), 1, + [211933] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(6923), 1, - sym_val_list, - STATE(7143), 1, + ACTIONS(6558), 1, + sym__entry_separator, + ACTIONS(11259), 1, + anon_sym_RBRACK, + STATE(5953), 1, + aux_sym__multiple_types_repeat1, + STATE(6599), 1, sym_comment, - STATE(7206), 1, - aux_sym_val_table_repeat1, - [227211] = 3, + [211949] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7144), 1, + STATE(6600), 1, sym_comment, - ACTIONS(10535), 3, + ACTIONS(10870), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [227223] = 3, + [211961] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(7145), 1, + ACTIONS(1760), 1, + aux_sym_unquoted_token2, + STATE(6601), 1, + sym_comment, + ACTIONS(1762), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [211975] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6602), 1, sym_comment, - ACTIONS(10545), 3, + ACTIONS(10961), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [227235] = 5, + [211987] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(7099), 1, - sym_val_list, - STATE(7146), 1, + ACTIONS(1797), 1, + aux_sym_unquoted_token2, + STATE(6603), 1, sym_comment, - STATE(7206), 1, - aux_sym_val_table_repeat1, - [227251] = 5, + ACTIONS(1799), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [212001] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5658), 1, + sym__entry_separator, + STATE(6604), 1, + sym_comment, + ACTIONS(5656), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [212015] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(7147), 1, + STATE(6605), 1, sym_comment, - STATE(7150), 1, - sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - [227267] = 5, + ACTIONS(10959), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [212027] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11672), 1, - anon_sym_COLON, - STATE(5642), 1, + ACTIONS(11261), 1, + anon_sym_GT2, + STATE(5216), 1, aux_sym__multiple_types_repeat1, - STATE(7148), 1, + STATE(6606), 1, + sym_comment, + [212043] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(11011), 1, + sym_hex_digit, + ACTIONS(11263), 1, + anon_sym_RBRACK, + STATE(6439), 1, + aux_sym_val_binary_repeat1, + STATE(6607), 1, sym_comment, - [227283] = 5, + [212059] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11674), 1, - anon_sym_COLON, - STATE(5672), 1, + ACTIONS(11265), 1, + anon_sym_GT2, + STATE(5217), 1, aux_sym__multiple_types_repeat1, - STATE(7149), 1, + STATE(6608), 1, sym_comment, - [227299] = 5, + [212075] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11676), 1, - anon_sym_RBRACK, - STATE(6516), 1, + ACTIONS(11267), 1, + anon_sym_GT2, + STATE(5223), 1, aux_sym__multiple_types_repeat1, - STATE(7150), 1, + STATE(6609), 1, sym_comment, - [227315] = 4, + [212091] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1591), 1, + ACTIONS(2384), 1, sym__entry_separator, - STATE(7151), 1, + STATE(6610), 1, sym_comment, - ACTIONS(1579), 2, + ACTIONS(2382), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [227329] = 5, - ACTIONS(245), 1, + [212105] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(6929), 1, - sym_val_list, - STATE(7152), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(11269), 1, + anon_sym_GT2, + STATE(5224), 1, + aux_sym__multiple_types_repeat1, + STATE(6611), 1, sym_comment, - STATE(7206), 1, - aux_sym_val_table_repeat1, - [227345] = 5, + [212121] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1666), 1, - aux_sym_unquoted_token2, - ACTIONS(1668), 1, - anon_sym_LBRACE, - ACTIONS(10691), 1, - aux_sym__immediate_decimal_token2, - STATE(7153), 1, + STATE(6612), 1, + sym_comment, + ACTIONS(9659), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [212133] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11271), 1, + anon_sym_LPAREN, + STATE(6613), 1, sym_comment, - [227361] = 5, + ACTIONS(11273), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [212147] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5921), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11678), 1, - anon_sym_RBRACK, - STATE(2838), 1, + ACTIONS(11275), 1, + anon_sym_GT2, + STATE(5226), 1, aux_sym__multiple_types_repeat1, - STATE(7154), 1, + STATE(6614), 1, sym_comment, - [227377] = 3, - ACTIONS(245), 1, + [212163] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7155), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(11277), 1, + anon_sym_GT2, + STATE(5227), 1, + aux_sym__multiple_types_repeat1, + STATE(6615), 1, sym_comment, - ACTIONS(5731), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [227389] = 4, + [212179] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2477), 1, - sym__entry_separator, - STATE(7156), 1, + ACTIONS(11279), 1, + sym__table_head_separator, + STATE(6616), 1, sym_comment, - ACTIONS(2475), 2, + ACTIONS(998), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [227403] = 4, + sym__entry_separator, + [212193] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6617), 1, + sym_comment, + ACTIONS(11281), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [212205] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2481), 1, + ACTIONS(5684), 1, sym__entry_separator, - STATE(7157), 1, - sym_comment, - ACTIONS(2479), 2, + ACTIONS(11283), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [227417] = 3, + STATE(2581), 1, + aux_sym__multiple_types_repeat1, + STATE(6618), 1, + sym_comment, + [212221] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7158), 1, + STATE(6619), 1, sym_comment, - ACTIONS(10753), 3, + ACTIONS(10580), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [227429] = 4, + [212233] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11682), 1, - anon_sym_COMMA, - STATE(7159), 1, + STATE(6620), 1, sym_comment, - ACTIONS(11680), 2, - anon_sym_RBRACK, - sym_hex_digit, - [227443] = 5, + ACTIONS(10963), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [212245] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11239), 1, - sym_hex_digit, - ACTIONS(11684), 1, - anon_sym_RBRACK, - STATE(6869), 1, - aux_sym_val_binary_repeat1, - STATE(7160), 1, + STATE(6621), 1, + sym_comment, + ACTIONS(10580), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [212257] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(11285), 1, + anon_sym_GT2, + STATE(5184), 1, + aux_sym__multiple_types_repeat1, + STATE(6622), 1, sym_comment, - [227459] = 3, + [212273] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7161), 1, + STATE(6623), 1, sym_comment, - ACTIONS(10561), 3, + ACTIONS(10598), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [227471] = 5, + [212285] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5921), 1, + ACTIONS(5873), 1, sym__entry_separator, - ACTIONS(11686), 1, + ACTIONS(11287), 1, anon_sym_RBRACK, - STATE(2839), 1, + STATE(2717), 1, aux_sym__multiple_types_repeat1, - STATE(7162), 1, + STATE(6624), 1, sym_comment, - [227487] = 5, + [212301] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6512), 1, - anon_sym_AT2, - ACTIONS(7820), 1, - anon_sym_EQ, - STATE(5104), 1, - sym_param_cmd, - STATE(7163), 1, + STATE(6625), 1, + sym_comment, + ACTIONS(10832), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [212313] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6626), 1, sym_comment, - [227503] = 5, + ACTIONS(10423), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [212325] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - ACTIONS(4715), 1, - aux_sym_unquoted_token4, - STATE(7164), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(11289), 1, + anon_sym_GT2, + STATE(5185), 1, + aux_sym__multiple_types_repeat1, + STATE(6627), 1, sym_comment, - STATE(7446), 1, - sym__expr_parenthesized_immediate, - [227519] = 5, + [212341] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11291), 1, + sym__table_head_separator, + STATE(6628), 1, + sym_comment, + ACTIONS(998), 2, + anon_sym_RBRACK, + sym__entry_separator, + [212355] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1696), 1, - anon_sym_SEMI, - ACTIONS(3854), 1, - sym__newline, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(7165), 1, + ACTIONS(11011), 1, + sym_hex_digit, + ACTIONS(11293), 1, + anon_sym_RBRACK, + STATE(6456), 1, + aux_sym_val_binary_repeat1, + STATE(6629), 1, sym_comment, - [227535] = 4, + [212371] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2312), 1, + ACTIONS(2411), 1, sym__entry_separator, - STATE(7166), 1, + STATE(6630), 1, sym_comment, - ACTIONS(2310), 2, + ACTIONS(2409), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [227549] = 5, + [212385] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(10328), 1, + ACTIONS(10150), 1, anon_sym_if, - ACTIONS(11688), 1, + ACTIONS(11295), 1, anon_sym_EQ_GT, - STATE(7167), 1, + STATE(6631), 1, sym_comment, - STATE(7566), 1, + STATE(7379), 1, sym_match_guard, - [227565] = 5, + [212401] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6119), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11690), 1, - anon_sym_RBRACE, - STATE(3046), 1, + ACTIONS(11297), 1, + anon_sym_RBRACK, + STATE(6246), 1, aux_sym__multiple_types_repeat1, - STATE(7168), 1, + STATE(6632), 1, sym_comment, - [227581] = 3, + [212417] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(7169), 1, + ACTIONS(6456), 1, + anon_sym_AT2, + ACTIONS(7977), 1, + anon_sym_EQ, + STATE(4852), 1, + sym_param_cmd, + STATE(6633), 1, sym_comment, - ACTIONS(11692), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [227593] = 3, - ACTIONS(245), 1, + [212433] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7170), 1, + ACTIONS(6061), 1, + sym__entry_separator, + ACTIONS(11299), 1, + anon_sym_RBRACE, + STATE(2820), 1, + aux_sym__multiple_types_repeat1, + STATE(6634), 1, sym_comment, - ACTIONS(6020), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [227605] = 5, + [212449] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(10326), 1, - anon_sym_PIPE, - ACTIONS(11694), 1, - anon_sym_EQ_GT, - STATE(6843), 1, - aux_sym_match_pattern_repeat1, - STATE(7171), 1, + ACTIONS(3408), 1, + anon_sym_COLON2, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(6282), 1, + sym_block, + STATE(6635), 1, sym_comment, - [227621] = 5, + [212465] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6119), 1, + ACTIONS(1877), 1, sym__entry_separator, - ACTIONS(6169), 1, + STATE(6636), 1, + sym_comment, + ACTIONS(1875), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - STATE(3023), 1, - aux_sym__multiple_types_repeat1, - STATE(7172), 1, + [212479] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(3408), 1, + anon_sym_COLON2, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(6236), 1, + sym_block, + STATE(6637), 1, sym_comment, - [227637] = 3, + [212495] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7173), 1, + STATE(6638), 1, sym_comment, - ACTIONS(6258), 3, + ACTIONS(11301), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [227649] = 3, + [212507] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7174), 1, + STATE(6639), 1, sym_comment, - ACTIONS(6262), 3, + ACTIONS(5867), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [227661] = 5, + [212519] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11239), 1, - sym_hex_digit, - ACTIONS(11696), 1, - anon_sym_RBRACK, - STATE(6869), 1, - aux_sym_val_binary_repeat1, - STATE(7175), 1, + ACTIONS(3408), 1, + anon_sym_COLON2, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(4329), 1, + sym_block, + STATE(6640), 1, sym_comment, - [227677] = 3, + [212535] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7176), 1, + STATE(6641), 1, sym_comment, - ACTIONS(6027), 3, + ACTIONS(6223), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [227689] = 3, - ACTIONS(3), 1, + [212547] = 3, + ACTIONS(245), 1, anon_sym_POUND, - STATE(7177), 1, + STATE(6642), 1, sym_comment, - ACTIONS(2180), 3, + ACTIONS(10969), 3, + ts_builtin_sym_end, sym__newline, - sym__space, - anon_sym_COLON2, - [227701] = 5, + anon_sym_SEMI, + [212559] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6119), 1, + ACTIONS(5636), 1, sym__entry_separator, - ACTIONS(6193), 1, - anon_sym_RBRACE, - STATE(3004), 1, - aux_sym__multiple_types_repeat1, - STATE(7178), 1, - sym_comment, - [227717] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11698), 1, - sym__table_head_separator, - STATE(7179), 1, + STATE(6643), 1, sym_comment, - ACTIONS(998), 2, + ACTIONS(5634), 2, anon_sym_RBRACK, - sym__entry_separator, - [227731] = 5, - ACTIONS(3), 1, + anon_sym_GT2, + [212573] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11700), 1, - anon_sym_RBRACK, - STATE(6246), 1, - aux_sym__multiple_types_repeat1, - STATE(7180), 1, + STATE(6644), 1, sym_comment, - [227747] = 3, + ACTIONS(6227), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [212585] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(7181), 1, + ACTIONS(1477), 1, + aux_sym_unquoted_token2, + STATE(6645), 1, sym_comment, - ACTIONS(11702), 3, + ACTIONS(2142), 2, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, - [227759] = 4, + [212599] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2216), 1, - anon_sym_RBRACE, - STATE(7182), 1, + ACTIONS(6073), 1, + anon_sym_RBRACK, + STATE(6646), 1, sym_comment, - ACTIONS(2218), 2, + ACTIONS(6075), 2, anon_sym_LPAREN2, sym__entry_separator, - [227773] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1961), 1, - sym__entry_separator, - STATE(7183), 1, - sym_comment, - ACTIONS(1959), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [227787] = 5, + [212613] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(5684), 1, sym__entry_separator, - ACTIONS(11704), 1, + ACTIONS(11303), 1, anon_sym_RBRACK, - STATE(6236), 1, + STATE(2588), 1, aux_sym__multiple_types_repeat1, - STATE(7184), 1, + STATE(6647), 1, sym_comment, - [227803] = 4, - ACTIONS(3), 1, + [212629] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2372), 1, - sym__entry_separator, - STATE(7185), 1, - sym_comment, - ACTIONS(2370), 2, + ACTIONS(11011), 1, + sym_hex_digit, + ACTIONS(11305), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [227817] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6119), 1, - sym__entry_separator, - ACTIONS(11706), 1, - anon_sym_RBRACE, - STATE(3059), 1, - aux_sym__multiple_types_repeat1, - STATE(7186), 1, + STATE(6648), 1, sym_comment, - [227833] = 5, + STATE(6801), 1, + aux_sym_val_binary_repeat1, + [212645] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(6946), 1, - sym_val_list, - STATE(7187), 1, + STATE(6649), 1, sym_comment, - STATE(7206), 1, + STATE(6656), 1, + sym_val_list, + STATE(6798), 1, aux_sym_val_table_repeat1, - [227849] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - ACTIONS(11708), 1, - anon_sym_GT2, - STATE(5586), 1, - aux_sym__multiple_types_repeat1, - STATE(7188), 1, - sym_comment, - [227865] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11710), 1, - anon_sym_RBRACK, - STATE(6728), 1, - aux_sym__multiple_types_repeat1, - STATE(7189), 1, - sym_comment, - [227881] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11712), 1, - anon_sym_RBRACK, - STATE(6224), 1, - aux_sym__multiple_types_repeat1, - STATE(7190), 1, - sym_comment, - [227897] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11714), 1, - anon_sym_RBRACK, - STATE(6384), 1, - aux_sym__multiple_types_repeat1, - STATE(7191), 1, - sym_comment, - [227913] = 5, - ACTIONS(3), 1, + [212661] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11716), 1, - anon_sym_RBRACK, - STATE(6729), 1, - aux_sym__multiple_types_repeat1, - STATE(7192), 1, + STATE(6650), 1, sym_comment, - [227929] = 5, + ACTIONS(5888), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [212673] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(2360), 1, sym__entry_separator, - ACTIONS(11718), 1, - anon_sym_RBRACK, - STATE(6730), 1, - aux_sym__multiple_types_repeat1, - STATE(7193), 1, + STATE(6651), 1, sym_comment, - [227945] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11720), 1, + ACTIONS(2358), 2, anon_sym_RBRACK, - STATE(6731), 1, - aux_sym__multiple_types_repeat1, - STATE(7194), 1, - sym_comment, - [227961] = 5, + anon_sym_RBRACE, + [212687] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(5873), 1, sym__entry_separator, - ACTIONS(11722), 1, + ACTIONS(11307), 1, anon_sym_RBRACK, - STATE(6732), 1, + STATE(2739), 1, aux_sym__multiple_types_repeat1, - STATE(7195), 1, + STATE(6652), 1, sym_comment, - [227977] = 5, + [212703] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3440), 1, - anon_sym_COLON2, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(6324), 1, - sym_block, - STATE(7196), 1, + STATE(6653), 1, sym_comment, - [227993] = 5, + ACTIONS(11309), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [212715] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11724), 1, - anon_sym_RBRACK, - STATE(6733), 1, - aux_sym__multiple_types_repeat1, - STATE(7197), 1, + ACTIONS(2164), 1, + anon_sym_LPAREN2, + ACTIONS(2168), 1, + aux_sym_unquoted_token4, + ACTIONS(11311), 1, + sym__space, + STATE(6654), 1, sym_comment, - [228009] = 5, + [212731] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11726), 1, + ACTIONS(11313), 1, anon_sym_RBRACK, - STATE(6734), 1, + STATE(6295), 1, aux_sym__multiple_types_repeat1, - STATE(7198), 1, + STATE(6655), 1, sym_comment, - [228025] = 5, + [212747] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11728), 1, + ACTIONS(11315), 1, anon_sym_RBRACK, - STATE(6735), 1, + STATE(6296), 1, aux_sym__multiple_types_repeat1, - STATE(7199), 1, + STATE(6656), 1, sym_comment, - [228041] = 5, + [212763] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11730), 1, - anon_sym_RBRACK, - STATE(6385), 1, - aux_sym__multiple_types_repeat1, - STATE(7200), 1, - sym_comment, - [228057] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(7201), 1, - sym_comment, - ACTIONS(10561), 3, - ts_builtin_sym_end, + ACTIONS(11317), 1, + anon_sym_POUND_BANG, + ACTIONS(11319), 1, sym__newline, - anon_sym_SEMI, - [228069] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11732), 1, - anon_sym_RBRACK, - STATE(6386), 1, - aux_sym__multiple_types_repeat1, - STATE(7202), 1, + STATE(6524), 1, + aux_sym_shebang_repeat1, + STATE(6657), 1, sym_comment, - [228085] = 5, + [212779] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2196), 1, + ACTIONS(2164), 1, anon_sym_LPAREN2, - ACTIONS(2200), 1, + ACTIONS(2168), 1, aux_sym_unquoted_token4, - ACTIONS(11734), 1, + ACTIONS(11321), 1, sym__space, - STATE(7203), 1, - sym_comment, - [228101] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - STATE(7204), 1, + STATE(6658), 1, sym_comment, - ACTIONS(2053), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [228115] = 4, + [212795] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11736), 1, - sym__table_head_separator, - STATE(7205), 1, + ACTIONS(11323), 1, + anon_sym_LPAREN, + STATE(6659), 1, sym_comment, - ACTIONS(998), 2, - anon_sym_RBRACK, - sym__entry_separator, - [228129] = 4, + ACTIONS(11325), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [212809] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11738), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(7501), 1, - sym_val_list, - STATE(7206), 2, + STATE(6660), 1, sym_comment, + STATE(6716), 1, + sym_val_list, + STATE(6798), 1, aux_sym_val_table_repeat1, - [228143] = 5, - ACTIONS(245), 1, + [212825] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3854), 1, - sym__newline, - ACTIONS(11741), 1, - anon_sym_COLON, - STATE(1653), 1, - aux_sym_shebang_repeat1, - STATE(7207), 1, + ACTIONS(2162), 1, + anon_sym_EQ_GT, + ACTIONS(2166), 1, + anon_sym_PIPE, + ACTIONS(2168), 1, + aux_sym_unquoted_token4, + STATE(6661), 1, sym_comment, - [228159] = 4, - ACTIONS(3), 1, + [212841] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11743), 1, - sym__table_head_separator, - STATE(7208), 1, + STATE(6662), 1, sym_comment, - ACTIONS(998), 2, - anon_sym_RBRACK, - sym__entry_separator, - [228173] = 4, - ACTIONS(3), 1, + ACTIONS(6215), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [212853] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5659), 1, - sym__entry_separator, - STATE(7209), 1, + STATE(6663), 1, sym_comment, - ACTIONS(5657), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [228187] = 5, - ACTIONS(3), 1, + ACTIONS(10965), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [212865] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11745), 1, - anon_sym_RBRACK, - STATE(6387), 1, - aux_sym__multiple_types_repeat1, - STATE(7210), 1, + STATE(6664), 1, sym_comment, - [228203] = 5, + ACTIONS(6215), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [212877] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(6967), 1, - sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7211), 1, + STATE(6665), 1, sym_comment, - [228219] = 5, + ACTIONS(10349), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [212889] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3440), 1, - anon_sym_COLON2, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(6299), 1, - sym_block, - STATE(7212), 1, + STATE(6666), 1, sym_comment, - [228235] = 5, + ACTIONS(10349), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [212901] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7213), 1, + STATE(6667), 1, sym_comment, - STATE(7232), 1, - sym_val_list, - [228251] = 5, + ACTIONS(10292), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [212913] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7214), 1, + STATE(6668), 1, sym_comment, - STATE(7249), 1, - sym_val_list, - [228267] = 4, + ACTIONS(10292), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [212925] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2302), 1, + ACTIONS(2372), 1, sym__entry_separator, - STATE(7215), 1, + STATE(6669), 1, sym_comment, - ACTIONS(2300), 2, + ACTIONS(2370), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [228281] = 4, + [212939] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6670), 1, + sym_comment, + ACTIONS(10810), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [212951] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2459), 1, + ACTIONS(5684), 1, sym__entry_separator, - STATE(7216), 1, - sym_comment, - ACTIONS(2457), 2, + ACTIONS(11327), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [228295] = 3, + STATE(2596), 1, + aux_sym__multiple_types_repeat1, + STATE(6671), 1, + sym_comment, + [212967] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7217), 1, + STATE(6672), 1, sym_comment, - ACTIONS(10779), 3, + ACTIONS(10320), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228307] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(6842), 1, - sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7218), 1, - sym_comment, - [228323] = 5, + [212979] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(2376), 1, sym__entry_separator, - ACTIONS(11747), 1, - anon_sym_RBRACK, - STATE(6388), 1, - aux_sym__multiple_types_repeat1, - STATE(7219), 1, + STATE(6673), 1, sym_comment, - [228339] = 5, + ACTIONS(2374), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [212993] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5744), 1, + ACTIONS(2380), 1, sym__entry_separator, - ACTIONS(11749), 1, - anon_sym_RBRACK, - STATE(2704), 1, - aux_sym__multiple_types_repeat1, - STATE(7220), 1, + STATE(6674), 1, sym_comment, - [228355] = 5, + ACTIONS(2378), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [213007] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11751), 1, + ACTIONS(11329), 1, anon_sym_RBRACK, - STATE(6269), 1, + STATE(6095), 1, aux_sym__multiple_types_repeat1, - STATE(7221), 1, + STATE(6675), 1, sym_comment, - [228371] = 3, + [213023] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7222), 1, + STATE(6676), 1, sym_comment, - ACTIONS(10779), 3, + ACTIONS(10989), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228383] = 5, + [213035] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(2304), 1, sym__entry_separator, - ACTIONS(11753), 1, - anon_sym_GT2, - STATE(5473), 1, - aux_sym__multiple_types_repeat1, - STATE(7223), 1, + STATE(6677), 1, sym_comment, - [228399] = 5, + ACTIONS(2302), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [213049] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1579), 1, + ACTIONS(1628), 1, + sym__entry_separator, + STATE(6678), 1, + sym_comment, + ACTIONS(1616), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(1591), 1, + [213063] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2308), 1, sym__entry_separator, - ACTIONS(9073), 1, - aux_sym__unquoted_in_record_token2, - STATE(7224), 1, + STATE(6679), 1, sym_comment, - [228415] = 5, + ACTIONS(2306), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [213077] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(2312), 1, sym__entry_separator, - ACTIONS(11755), 1, + STATE(6680), 1, + sym_comment, + ACTIONS(2310), 2, anon_sym_RBRACK, - STATE(6389), 1, - aux_sym__multiple_types_repeat1, - STATE(7225), 1, + anon_sym_RBRACE, + [213091] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6681), 1, + sym_comment, + ACTIONS(11331), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [213103] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6456), 1, + anon_sym_AT2, + ACTIONS(7977), 1, + anon_sym_EQ, + STATE(4853), 1, + sym_param_cmd, + STATE(6682), 1, sym_comment, - [228431] = 5, + [213119] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(994), 1, sym__entry_separator, - ACTIONS(11757), 1, + STATE(6683), 1, + sym_comment, + ACTIONS(998), 2, anon_sym_RBRACK, - STATE(6390), 1, - aux_sym__multiple_types_repeat1, - STATE(7226), 1, + anon_sym_RBRACE, + [213133] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6684), 1, sym_comment, - [228447] = 5, + ACTIONS(10971), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [213145] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11759), 1, + ACTIONS(11333), 1, anon_sym_GT2, - STATE(5574), 1, + STATE(5195), 1, aux_sym__multiple_types_repeat1, - STATE(7227), 1, + STATE(6685), 1, sym_comment, - [228463] = 5, + [213161] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(7094), 1, - sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7228), 1, + ACTIONS(11335), 1, + anon_sym_PIPE, + ACTIONS(11338), 1, + anon_sym_EQ_GT, + STATE(6686), 2, sym_comment, - [228479] = 5, - ACTIONS(245), 1, + aux_sym_match_pattern_repeat1, + [213175] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6512), 1, - anon_sym_AT2, - ACTIONS(11761), 1, - anon_sym_GT2, - STATE(7229), 1, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + ACTIONS(2128), 1, + anon_sym_EQ_GT, + ACTIONS(2130), 1, + anon_sym_PIPE, + STATE(6687), 1, sym_comment, - STATE(7608), 1, - sym_param_cmd, - [228495] = 5, + [213191] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11763), 1, - anon_sym_RBRACK, - STATE(6391), 1, - aux_sym__multiple_types_repeat1, - STATE(7230), 1, + ACTIONS(2068), 1, + anon_sym_EQ_GT, + ACTIONS(2072), 1, + anon_sym_PIPE, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(6688), 1, sym_comment, - [228511] = 5, + [213207] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6061), 1, sym__entry_separator, - ACTIONS(11765), 1, - anon_sym_RBRACK, - STATE(6253), 1, + ACTIONS(6069), 1, + anon_sym_RBRACE, + STATE(2843), 1, aux_sym__multiple_types_repeat1, - STATE(7231), 1, + STATE(6689), 1, sym_comment, - [228527] = 5, + [213223] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6061), 1, sym__entry_separator, - ACTIONS(11767), 1, - anon_sym_RBRACK, - STATE(6293), 1, + ACTIONS(11340), 1, + anon_sym_RBRACE, + STATE(2868), 1, aux_sym__multiple_types_repeat1, - STATE(7232), 1, - sym_comment, - [228543] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(7233), 1, + STATE(6690), 1, sym_comment, - ACTIONS(10591), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [228555] = 4, + [213239] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(994), 1, + ACTIONS(6061), 1, sym__entry_separator, - STATE(7234), 1, - sym_comment, - ACTIONS(998), 2, - anon_sym_RBRACK, + ACTIONS(11342), 1, anon_sym_RBRACE, - [228569] = 5, + STATE(2870), 1, + aux_sym__multiple_types_repeat1, + STATE(6691), 1, + sym_comment, + [213255] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5542), 1, + ACTIONS(1618), 1, anon_sym_LPAREN2, - ACTIONS(8886), 1, - aux_sym__unquoted_in_list_token4, - STATE(7235), 1, + ACTIONS(7228), 1, + aux_sym__unquoted_in_record_token4, + STATE(6692), 1, sym_comment, - STATE(7475), 1, + STATE(6875), 1, sym__expr_parenthesized_immediate, - [228585] = 3, + [213271] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7236), 1, + STATE(6693), 1, sym_comment, - ACTIONS(10655), 3, + ACTIONS(10842), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228597] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(7237), 1, - sym_comment, - ACTIONS(11769), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [228609] = 3, + [213283] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(7238), 1, + ACTIONS(6456), 1, + anon_sym_AT2, + ACTIONS(11344), 1, + anon_sym_GT2, + STATE(6694), 1, sym_comment, - ACTIONS(11771), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [228621] = 4, + STATE(7249), 1, + sym_param_cmd, + [213299] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11773), 1, - sym__table_head_separator, - STATE(7239), 1, - sym_comment, - ACTIONS(998), 2, - anon_sym_RBRACK, + ACTIONS(6061), 1, sym__entry_separator, - [228635] = 3, + ACTIONS(6085), 1, + anon_sym_RBRACE, + STATE(2847), 1, + aux_sym__multiple_types_repeat1, + STATE(6695), 1, + sym_comment, + [213315] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7240), 1, + STATE(6696), 1, sym_comment, - ACTIONS(10657), 3, + ACTIONS(10294), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228647] = 4, - ACTIONS(3), 1, + [213327] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11775), 1, - sym__table_head_separator, - STATE(7241), 1, + ACTIONS(4848), 1, + anon_sym_LBRACE, + ACTIONS(11346), 1, + sym_long_flag_identifier, + ACTIONS(11348), 1, + anon_sym_EQ2, + STATE(6697), 1, sym_comment, - ACTIONS(998), 2, - anon_sym_RBRACK, - sym__entry_separator, - [228661] = 3, + [213343] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(7242), 1, + ACTIONS(11011), 1, + sym_hex_digit, + ACTIONS(11350), 1, + anon_sym_RBRACK, + STATE(6698), 1, sym_comment, - ACTIONS(10593), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [228673] = 5, + STATE(6721), 1, + aux_sym_val_binary_repeat1, + [213359] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(9244), 1, sym__entry_separator, - ACTIONS(11777), 1, - anon_sym_RBRACK, - STATE(6294), 1, + ACTIONS(11352), 1, + anon_sym_GT2, + STATE(5196), 1, aux_sym__multiple_types_repeat1, - STATE(7243), 1, - sym_comment, - [228689] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(7066), 1, - sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7244), 1, - sym_comment, - [228705] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(7068), 1, - sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7245), 1, + STATE(6699), 1, sym_comment, - [228721] = 3, + [213375] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7246), 1, + STATE(6700), 1, sym_comment, - ACTIONS(10661), 3, + ACTIONS(10294), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228733] = 5, + [213387] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(11354), 1, + anon_sym_GT2, + STATE(5270), 1, + aux_sym__multiple_types_repeat1, + STATE(6701), 1, + sym_comment, + [213403] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(7071), 1, - sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7247), 1, + STATE(6702), 1, sym_comment, - [228749] = 5, + ACTIONS(6219), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [213415] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(7072), 1, - sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7248), 1, + ACTIONS(6456), 1, + anon_sym_AT2, + ACTIONS(7824), 1, + anon_sym_EQ, + STATE(4878), 1, + sym_param_cmd, + STATE(6703), 1, sym_comment, - [228765] = 5, + [213431] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11779), 1, + ACTIONS(11356), 1, anon_sym_RBRACK, - STATE(6295), 1, + STATE(6286), 1, aux_sym__multiple_types_repeat1, - STATE(7249), 1, + STATE(6704), 1, sym_comment, - [228781] = 4, + [213447] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11781), 1, - sym__table_head_separator, - STATE(7250), 1, - sym_comment, - ACTIONS(998), 2, - anon_sym_RBRACK, + ACTIONS(6558), 1, sym__entry_separator, - [228795] = 4, + ACTIONS(11358), 1, + anon_sym_RBRACK, + STATE(6287), 1, + aux_sym__multiple_types_repeat1, + STATE(6705), 1, + sym_comment, + [213463] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11783), 1, - sym__table_head_separator, - STATE(7251), 1, - sym_comment, - ACTIONS(998), 2, - anon_sym_RBRACK, + ACTIONS(6558), 1, sym__entry_separator, - [228809] = 4, + ACTIONS(11360), 1, + anon_sym_RBRACK, + STATE(6288), 1, + aux_sym__multiple_types_repeat1, + STATE(6706), 1, + sym_comment, + [213479] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2416), 1, + ACTIONS(6558), 1, sym__entry_separator, - STATE(7252), 1, - sym_comment, - ACTIONS(2414), 2, + ACTIONS(11362), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [228823] = 4, + STATE(6289), 1, + aux_sym__multiple_types_repeat1, + STATE(6707), 1, + sym_comment, + [213495] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2065), 1, - aux_sym_unquoted_token2, - STATE(7253), 1, + ACTIONS(6456), 1, + anon_sym_AT2, + ACTIONS(11364), 1, + anon_sym_GT2, + STATE(6708), 1, sym_comment, - ACTIONS(2063), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [228837] = 5, + STATE(7251), 1, + sym_param_cmd, + [213511] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(7202), 1, - sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7254), 1, + STATE(6709), 1, sym_comment, - [228853] = 5, + ACTIONS(10971), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [213523] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7219), 1, - sym_val_list, - STATE(7255), 1, + STATE(6710), 1, sym_comment, - [228869] = 5, - ACTIONS(245), 1, + ACTIONS(10292), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [213535] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7226), 1, - sym_val_list, - STATE(7256), 1, + ACTIONS(6558), 1, + sym__entry_separator, + ACTIONS(11366), 1, + anon_sym_RBRACK, + STATE(5948), 1, + aux_sym__multiple_types_repeat1, + STATE(6711), 1, sym_comment, - [228885] = 5, + [213551] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7230), 1, + STATE(6378), 1, sym_val_list, - STATE(7257), 1, + STATE(6712), 1, sym_comment, - [228901] = 4, + STATE(6798), 1, + aux_sym_val_table_repeat1, + [213567] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11785), 1, - sym__table_head_separator, - STATE(7258), 1, - sym_comment, - ACTIONS(998), 2, - anon_sym_RBRACK, + ACTIONS(5873), 1, sym__entry_separator, - [228915] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11787), 1, - sym__table_head_separator, - STATE(7259), 1, - sym_comment, - ACTIONS(998), 2, + ACTIONS(11368), 1, anon_sym_RBRACK, - sym__entry_separator, - [228929] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(6791), 1, - sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7260), 1, + STATE(2680), 1, + aux_sym__multiple_types_repeat1, + STATE(6713), 1, sym_comment, - [228945] = 5, - ACTIONS(245), 1, + [213583] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(6794), 1, - sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7261), 1, + ACTIONS(5873), 1, + sym__entry_separator, + ACTIONS(11370), 1, + anon_sym_RBRACK, + STATE(2681), 1, + aux_sym__multiple_types_repeat1, + STATE(6714), 1, sym_comment, - [228961] = 5, + [213599] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(6797), 1, + STATE(6457), 1, sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7262), 1, + STATE(6715), 1, sym_comment, - [228977] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(6800), 1, - sym_val_list, - STATE(7206), 1, + STATE(6798), 1, aux_sym_val_table_repeat1, - STATE(7263), 1, - sym_comment, - [228993] = 4, + [213615] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11789), 1, - sym__table_head_separator, - STATE(7264), 1, - sym_comment, - ACTIONS(998), 2, - anon_sym_RBRACK, + ACTIONS(6558), 1, sym__entry_separator, - [229007] = 3, + ACTIONS(11372), 1, + anon_sym_RBRACK, + STATE(6249), 1, + aux_sym__multiple_types_repeat1, + STATE(6716), 1, + sym_comment, + [213631] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7265), 1, + STATE(6717), 1, sym_comment, - ACTIONS(10424), 3, + ACTIONS(10850), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [229019] = 4, + [213643] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11791), 1, - sym__table_head_separator, - STATE(7266), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + aux_sym_unquoted_token4, + STATE(6718), 1, sym_comment, - ACTIONS(998), 2, + STATE(6943), 1, + sym__expr_parenthesized_immediate, + [213659] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6558), 1, + sym__entry_separator, + ACTIONS(11374), 1, + anon_sym_RBRACK, + STATE(3419), 1, + aux_sym__multiple_types_repeat1, + STATE(6719), 1, + sym_comment, + [213675] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1616), 1, anon_sym_RBRACK, + ACTIONS(1628), 1, sym__entry_separator, - [229033] = 5, + ACTIONS(8935), 1, + aux_sym__unquoted_in_list_token2, + STATE(6720), 1, + sym_comment, + [213691] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(6823), 1, - sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7267), 1, + ACTIONS(11011), 1, + sym_hex_digit, + ACTIONS(11376), 1, + anon_sym_RBRACK, + STATE(6456), 1, + aux_sym_val_binary_repeat1, + STATE(6721), 1, sym_comment, - [229049] = 5, - ACTIONS(245), 1, + [213707] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(6825), 1, - sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7268), 1, + ACTIONS(6558), 1, + sym__entry_separator, + ACTIONS(11378), 1, + anon_sym_RBRACK, + STATE(3410), 1, + aux_sym__multiple_types_repeat1, + STATE(6722), 1, sym_comment, - [229065] = 3, + [213723] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7269), 1, + STATE(6723), 1, sym_comment, - ACTIONS(10424), 3, + ACTIONS(10349), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [229077] = 5, + [213735] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(6829), 1, - sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7270), 1, + STATE(6724), 1, sym_comment, - [229093] = 5, + ACTIONS(10292), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [213747] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(6831), 1, - sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7271), 1, - sym_comment, - [229109] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11793), 1, - sym__table_head_separator, - STATE(7272), 1, + STATE(6725), 1, sym_comment, - ACTIONS(998), 2, - anon_sym_RBRACK, - sym__entry_separator, - [229123] = 4, + ACTIONS(10349), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [213759] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11795), 1, - sym__table_head_separator, - STATE(7273), 1, - sym_comment, - ACTIONS(998), 2, - anon_sym_RBRACK, + ACTIONS(2254), 1, + anon_sym_RBRACE, + ACTIONS(2256), 1, sym__entry_separator, - [229137] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(6854), 1, - sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7274), 1, - sym_comment, - [229153] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(6857), 1, - sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7275), 1, + STATE(611), 1, + aux_sym__multiple_types_repeat1, + STATE(6726), 1, sym_comment, - [229169] = 3, + [213775] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7276), 1, + STATE(6727), 1, sym_comment, - ACTIONS(10665), 3, + ACTIONS(10511), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [229181] = 5, + [213787] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(6860), 1, - sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7277), 1, + STATE(6728), 1, sym_comment, - [229197] = 5, + ACTIONS(10535), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [213799] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(6863), 1, - sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7278), 1, + STATE(6729), 1, sym_comment, - [229213] = 4, + ACTIONS(5726), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [213811] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11797), 1, - sym__table_head_separator, - STATE(7279), 1, - sym_comment, - ACTIONS(998), 2, - anon_sym_RBRACK, + ACTIONS(5873), 1, sym__entry_separator, - [229227] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_LPAREN2, - ACTIONS(5552), 1, - aux_sym__unquoted_in_list_token4, - STATE(7280), 1, - sym_comment, - STATE(7475), 1, - sym__expr_parenthesized_immediate, - [229243] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11799), 1, - sym__table_head_separator, - STATE(7281), 1, - sym_comment, - ACTIONS(998), 2, + ACTIONS(11380), 1, anon_sym_RBRACK, - sym__entry_separator, - [229257] = 3, + STATE(2696), 1, + aux_sym__multiple_types_repeat1, + STATE(6730), 1, + sym_comment, + [213827] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7282), 1, + STATE(6731), 1, sym_comment, - ACTIONS(11801), 3, + ACTIONS(10294), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [229269] = 5, + [213839] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(6884), 1, - sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7283), 1, + STATE(6732), 1, sym_comment, - [229285] = 5, - ACTIONS(245), 1, + ACTIONS(10294), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [213851] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(6887), 1, - sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7284), 1, + ACTIONS(9244), 1, + sym__entry_separator, + ACTIONS(11382), 1, + anon_sym_GT2, + STATE(5202), 1, + aux_sym__multiple_types_repeat1, + STATE(6733), 1, sym_comment, - [229301] = 5, - ACTIONS(245), 1, + [213867] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(6890), 1, - sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7285), 1, + ACTIONS(5480), 1, + anon_sym_LPAREN2, + ACTIONS(8935), 1, + aux_sym__unquoted_in_list_token4, + STATE(6734), 1, sym_comment, - [229317] = 5, - ACTIONS(245), 1, + STATE(6933), 1, + sym__expr_parenthesized_immediate, + [213883] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(6892), 1, - sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7286), 1, + ACTIONS(6558), 1, + sym__entry_separator, + ACTIONS(11384), 1, + anon_sym_RBRACK, + STATE(5950), 1, + aux_sym__multiple_types_repeat1, + STATE(6735), 1, sym_comment, - [229333] = 4, + [213899] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11803), 1, - sym__table_head_separator, - STATE(7287), 1, - sym_comment, - ACTIONS(998), 2, - anon_sym_RBRACK, + ACTIONS(6558), 1, sym__entry_separator, - [229347] = 3, + ACTIONS(11386), 1, + anon_sym_RBRACK, + STATE(5951), 1, + aux_sym__multiple_types_repeat1, + STATE(6736), 1, + sym_comment, + [213915] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7288), 1, + STATE(6737), 1, sym_comment, - ACTIONS(10947), 3, + ACTIONS(10566), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [229359] = 4, + [213927] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11805), 1, - sym__table_head_separator, - STATE(7289), 1, + ACTIONS(2427), 1, + sym__entry_separator, + STATE(6738), 1, sym_comment, - ACTIONS(998), 2, + ACTIONS(2425), 2, anon_sym_RBRACK, - sym__entry_separator, - [229373] = 4, + anon_sym_RBRACE, + [213941] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2212), 1, - anon_sym_RBRACE, - STATE(7290), 1, - sym_comment, - ACTIONS(2214), 2, - anon_sym_LPAREN2, + ACTIONS(9244), 1, sym__entry_separator, - [229387] = 5, + ACTIONS(11388), 1, + anon_sym_GT2, + STATE(5203), 1, + aux_sym__multiple_types_repeat1, + STATE(6739), 1, + sym_comment, + [213957] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(6906), 1, + STATE(6736), 1, sym_val_list, - STATE(7206), 1, + STATE(6740), 1, + sym_comment, + STATE(6798), 1, aux_sym_val_table_repeat1, - STATE(7291), 1, + [213973] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1885), 1, + sym__entry_separator, + STATE(6741), 1, sym_comment, - [229403] = 5, + ACTIONS(1883), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [213987] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(6908), 1, + STATE(6742), 1, + sym_comment, + STATE(6747), 1, sym_val_list, - STATE(7206), 1, + STATE(6798), 1, aux_sym_val_table_repeat1, - STATE(7292), 1, - sym_comment, - [229419] = 5, + [214003] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(6912), 1, - sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7293), 1, + STATE(6743), 1, sym_comment, - [229435] = 5, + ACTIONS(10854), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [214015] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(6914), 1, + STATE(6386), 1, sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7294), 1, + STATE(6744), 1, sym_comment, - [229451] = 4, + STATE(6798), 1, + aux_sym_val_table_repeat1, + [214031] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11807), 1, - sym__table_head_separator, - STATE(7295), 1, + ACTIONS(1618), 1, + anon_sym_LPAREN2, + ACTIONS(1630), 1, + aux_sym__unquoted_in_record_token4, + STATE(6745), 1, sym_comment, - ACTIONS(998), 2, - anon_sym_RBRACK, - sym__entry_separator, - [229465] = 3, + STATE(6956), 1, + sym__expr_parenthesized_immediate, + [214047] = 5, ACTIONS(245), 1, anon_sym_POUND, - STATE(7296), 1, - sym_comment, - ACTIONS(10430), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [229477] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11809), 1, - sym__table_head_separator, - STATE(7297), 1, + ACTIONS(9770), 1, + anon_sym_LBRACK, + STATE(6389), 1, + sym_val_list, + STATE(6746), 1, sym_comment, - ACTIONS(998), 2, - anon_sym_RBRACK, - sym__entry_separator, - [229491] = 5, + STATE(6798), 1, + aux_sym_val_table_repeat1, + [214063] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5921), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11811), 1, + ACTIONS(11390), 1, anon_sym_RBRACK, - STATE(2825), 1, + STATE(5952), 1, aux_sym__multiple_types_repeat1, - STATE(7298), 1, - sym_comment, - [229507] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(7299), 1, + STATE(6747), 1, sym_comment, - ACTIONS(10430), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [229519] = 5, + [214079] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(6935), 1, + STATE(6411), 1, sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7300), 1, + STATE(6748), 1, sym_comment, - [229535] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(6938), 1, - sym_val_list, - STATE(7206), 1, + STATE(6798), 1, aux_sym_val_table_repeat1, - STATE(7301), 1, + [214095] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2320), 1, + sym__entry_separator, + STATE(6749), 1, sym_comment, - [229551] = 5, + ACTIONS(2318), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [214109] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(6941), 1, + STATE(6413), 1, sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7302), 1, + STATE(6750), 1, sym_comment, - [229567] = 5, + STATE(6798), 1, + aux_sym_val_table_repeat1, + [214125] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(6942), 1, + STATE(6433), 1, sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7303), 1, - sym_comment, - [229583] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11813), 1, - sym__table_head_separator, - STATE(7304), 1, + STATE(6751), 1, sym_comment, - ACTIONS(998), 2, - anon_sym_RBRACK, - sym__entry_separator, - [229597] = 4, + STATE(6798), 1, + aux_sym_val_table_repeat1, + [214141] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1903), 1, + ACTIONS(2396), 1, sym__entry_separator, - STATE(7305), 1, + STATE(6752), 1, sym_comment, - ACTIONS(1901), 2, + ACTIONS(2394), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [229611] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(7306), 1, - sym_comment, - ACTIONS(10432), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [229623] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11815), 1, - sym__table_head_separator, - STATE(7307), 1, - sym_comment, - ACTIONS(998), 2, - anon_sym_RBRACK, - sym__entry_separator, - [229637] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5921), 1, - sym__entry_separator, - ACTIONS(11817), 1, - anon_sym_RBRACK, - STATE(2868), 1, - aux_sym__multiple_types_repeat1, - STATE(7308), 1, - sym_comment, - [229653] = 5, + [214155] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(6959), 1, + STATE(6436), 1, sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7309), 1, + STATE(6753), 1, sym_comment, - [229669] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(6962), 1, - sym_val_list, - STATE(7206), 1, + STATE(6798), 1, aux_sym_val_table_repeat1, - STATE(7310), 1, - sym_comment, - [229685] = 5, + [214171] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(6965), 1, + STATE(6459), 1, sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7311), 1, + STATE(6754), 1, sym_comment, - [229701] = 5, + STATE(6798), 1, + aux_sym_val_table_repeat1, + [214187] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(6968), 1, + STATE(6460), 1, sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7312), 1, + STATE(6755), 1, sym_comment, - [229717] = 4, + STATE(6798), 1, + aux_sym_val_table_repeat1, + [214203] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11819), 1, - sym__table_head_separator, - STATE(7313), 1, - sym_comment, - ACTIONS(998), 2, - anon_sym_RBRACK, + ACTIONS(6558), 1, sym__entry_separator, - [229731] = 4, - ACTIONS(3), 1, + ACTIONS(11392), 1, + anon_sym_RBRACK, + STATE(3418), 1, + aux_sym__multiple_types_repeat1, + STATE(6756), 1, + sym_comment, + [214219] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11821), 1, - sym__table_head_separator, - STATE(7314), 1, + ACTIONS(1703), 1, + anon_sym_LBRACE, + ACTIONS(9663), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(11394), 1, + anon_sym_DOT, + STATE(6757), 1, sym_comment, - ACTIONS(998), 2, - anon_sym_RBRACK, - sym__entry_separator, - [229745] = 5, + [214235] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(7193), 1, + STATE(6475), 1, sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7315), 1, + STATE(6758), 1, sym_comment, - [229761] = 5, + STATE(6798), 1, + aux_sym_val_table_repeat1, + [214251] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(7195), 1, + STATE(6476), 1, sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7316), 1, + STATE(6759), 1, sym_comment, - [229777] = 5, + STATE(6798), 1, + aux_sym_val_table_repeat1, + [214267] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(7198), 1, + STATE(6492), 1, sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7317), 1, + STATE(6760), 1, sym_comment, - [229793] = 5, + STATE(6798), 1, + aux_sym_val_table_repeat1, + [214283] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(7199), 1, + STATE(6494), 1, sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7318), 1, + STATE(6761), 1, sym_comment, - [229809] = 4, + STATE(6798), 1, + aux_sym_val_table_repeat1, + [214299] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11823), 1, - sym__table_head_separator, - STATE(7319), 1, - sym_comment, - ACTIONS(998), 2, - anon_sym_RBRACK, + ACTIONS(6061), 1, sym__entry_separator, - [229823] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11825), 1, - sym__table_head_separator, - STATE(7320), 1, + ACTIONS(11396), 1, + anon_sym_RBRACE, + STATE(2859), 1, + aux_sym__multiple_types_repeat1, + STATE(6762), 1, sym_comment, - ACTIONS(998), 2, - anon_sym_RBRACK, - sym__entry_separator, - [229837] = 3, + [214315] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(7321), 1, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + STATE(6763), 1, sym_comment, - ACTIONS(10595), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [229849] = 5, + ACTIONS(1813), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [214329] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(6983), 1, + STATE(6508), 1, sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7322), 1, + STATE(6764), 1, sym_comment, - [229865] = 5, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(6986), 1, - sym_val_list, - STATE(7206), 1, + STATE(6798), 1, aux_sym_val_table_repeat1, - STATE(7323), 1, - sym_comment, - [229881] = 5, - ACTIONS(245), 1, + [214345] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(6988), 1, - sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7324), 1, + ACTIONS(2106), 1, + aux_sym_unquoted_token4, + ACTIONS(5883), 1, + anon_sym_EQ_GT, + ACTIONS(5888), 1, + anon_sym_PIPE, + STATE(6765), 1, sym_comment, - [229897] = 5, + [214361] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(6989), 1, + STATE(6509), 1, sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7325), 1, + STATE(6766), 1, sym_comment, - [229913] = 4, + STATE(6798), 1, + aux_sym_val_table_repeat1, + [214377] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11827), 1, - sym__table_head_separator, - STATE(7326), 1, - sym_comment, - ACTIONS(998), 2, + ACTIONS(6095), 1, anon_sym_RBRACK, - sym__entry_separator, - [229927] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11829), 1, - sym__table_head_separator, - STATE(7327), 1, + STATE(6767), 1, sym_comment, - ACTIONS(998), 2, - anon_sym_RBRACK, + ACTIONS(6097), 2, + anon_sym_LPAREN2, sym__entry_separator, - [229941] = 5, + [214391] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(7002), 1, + STATE(6520), 1, sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7328), 1, + STATE(6768), 1, sym_comment, - [229957] = 5, + STATE(6798), 1, + aux_sym_val_table_repeat1, + [214407] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(7004), 1, - sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7329), 1, + STATE(6769), 1, sym_comment, - [229973] = 3, + ACTIONS(10306), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [214419] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7330), 1, + STATE(6770), 1, sym_comment, - ACTIONS(10953), 3, + ACTIONS(10312), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [229985] = 5, + [214431] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, + STATE(321), 1, + aux_sym__block_body_repeat1, + STATE(6771), 1, + sym_comment, + ACTIONS(139), 2, + sym__newline, + anon_sym_SEMI, + [214445] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(7006), 1, + STATE(6706), 1, sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7331), 1, + STATE(6772), 1, sym_comment, - [230001] = 5, + STATE(6798), 1, + aux_sym_val_table_repeat1, + [214461] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(7008), 1, + STATE(6707), 1, sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7332), 1, + STATE(6773), 1, sym_comment, - [230017] = 4, + STATE(6798), 1, + aux_sym_val_table_repeat1, + [214477] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11831), 1, - sym__table_head_separator, - STATE(7333), 1, - sym_comment, - ACTIONS(998), 2, - anon_sym_RBRACK, + ACTIONS(2324), 1, sym__entry_separator, - [230031] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11833), 1, - sym__table_head_separator, - STATE(7334), 1, + STATE(6774), 1, sym_comment, - ACTIONS(998), 2, + ACTIONS(2322), 2, anon_sym_RBRACK, - sym__entry_separator, - [230045] = 5, + anon_sym_RBRACE, + [214491] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(7022), 1, + STATE(6530), 1, sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7335), 1, + STATE(6775), 1, sym_comment, - [230061] = 5, + STATE(6798), 1, + aux_sym_val_table_repeat1, + [214507] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(7025), 1, + STATE(6532), 1, sym_val_list, - STATE(7206), 1, + STATE(6776), 1, + sym_comment, + STATE(6798), 1, aux_sym_val_table_repeat1, - STATE(7336), 1, + [214523] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + ACTIONS(4732), 1, + aux_sym_unquoted_token4, + STATE(6777), 1, sym_comment, - [230077] = 5, + STATE(6963), 1, + sym__expr_parenthesized_immediate, + [214539] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(7027), 1, + STATE(6544), 1, sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7337), 1, + STATE(6778), 1, sym_comment, - [230093] = 5, + STATE(6798), 1, + aux_sym_val_table_repeat1, + [214555] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(7029), 1, + STATE(6546), 1, sym_val_list, - STATE(7206), 1, + STATE(6779), 1, + sym_comment, + STATE(6798), 1, aux_sym_val_table_repeat1, - STATE(7338), 1, + [214571] = 5, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(9770), 1, + anon_sym_LBRACK, + STATE(6556), 1, + sym_val_list, + STATE(6780), 1, sym_comment, - [230109] = 4, - ACTIONS(3), 1, + STATE(6798), 1, + aux_sym_val_table_repeat1, + [214587] = 5, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11835), 1, - sym__table_head_separator, - STATE(7339), 1, + ACTIONS(9770), 1, + anon_sym_LBRACK, + STATE(6557), 1, + sym_val_list, + STATE(6781), 1, sym_comment, - ACTIONS(998), 2, - anon_sym_RBRACK, - sym__entry_separator, - [230123] = 4, + STATE(6798), 1, + aux_sym_val_table_repeat1, + [214603] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11837), 1, - sym__table_head_separator, - STATE(7340), 1, - sym_comment, - ACTIONS(998), 2, - anon_sym_RBRACK, + ACTIONS(1616), 1, + anon_sym_RBRACE, + ACTIONS(1628), 1, sym__entry_separator, - [230137] = 5, + ACTIONS(8903), 1, + aux_sym__unquoted_in_record_token2, + STATE(6782), 1, + sym_comment, + [214619] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(7035), 1, + STATE(6567), 1, sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7341), 1, + STATE(6783), 1, sym_comment, - [230153] = 5, + STATE(6798), 1, + aux_sym_val_table_repeat1, + [214635] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(7037), 1, + STATE(6568), 1, sym_val_list, - STATE(7206), 1, + STATE(6784), 1, + sym_comment, + STATE(6798), 1, aux_sym_val_table_repeat1, - STATE(7342), 1, + [214651] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2244), 1, + anon_sym_RBRACE, + STATE(6785), 1, sym_comment, - [230169] = 5, + ACTIONS(2246), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [214665] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(7040), 1, + STATE(6577), 1, sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7343), 1, + STATE(6786), 1, sym_comment, - [230185] = 5, + STATE(6798), 1, + aux_sym_val_table_repeat1, + [214681] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(7041), 1, + STATE(6578), 1, sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7344), 1, + STATE(6787), 1, sym_comment, - [230201] = 4, + STATE(6798), 1, + aux_sym_val_table_repeat1, + [214697] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11839), 1, - sym__table_head_separator, - STATE(7345), 1, + ACTIONS(5624), 1, + sym__entry_separator, + STATE(6788), 1, sym_comment, - ACTIONS(998), 2, + ACTIONS(5622), 2, anon_sym_RBRACK, - sym__entry_separator, - [230215] = 4, - ACTIONS(3), 1, + anon_sym_GT2, + [214711] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11841), 1, - sym__table_head_separator, - STATE(7346), 1, + STATE(6789), 1, sym_comment, - ACTIONS(998), 2, - anon_sym_RBRACK, + ACTIONS(10862), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [214723] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9244), 1, sym__entry_separator, - [230229] = 5, + ACTIONS(11398), 1, + anon_sym_GT2, + STATE(5210), 1, + aux_sym__multiple_types_repeat1, + STATE(6790), 1, + sym_comment, + [214739] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6791), 1, + sym_comment, + ACTIONS(10314), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [214751] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6119), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11843), 1, - anon_sym_RBRACE, - STATE(3051), 1, + ACTIONS(11400), 1, + anon_sym_RBRACK, + STATE(6110), 1, aux_sym__multiple_types_repeat1, - STATE(7347), 1, + STATE(6792), 1, sym_comment, - [230245] = 5, + [214767] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(7051), 1, - sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7348), 1, + STATE(6793), 1, + sym_comment, + ACTIONS(10872), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [214779] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1618), 1, + anon_sym_LPAREN2, + ACTIONS(8903), 1, + aux_sym__unquoted_in_record_token4, + STATE(6794), 1, + sym_comment, + STATE(6970), 1, + sym__expr_parenthesized_immediate, + [214795] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6795), 1, sym_comment, - [230261] = 5, + ACTIONS(10997), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [214807] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, + ACTIONS(9770), 1, anon_sym_LBRACK, - STATE(7053), 1, + STATE(6632), 1, sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7349), 1, + STATE(6796), 1, sym_comment, - [230277] = 5, + STATE(6798), 1, + aux_sym_val_table_repeat1, + [214823] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6119), 1, + ACTIONS(6558), 1, sym__entry_separator, - ACTIONS(11845), 1, - anon_sym_RBRACE, - STATE(3052), 1, + ACTIONS(11402), 1, + anon_sym_RBRACK, + STATE(6264), 1, aux_sym__multiple_types_repeat1, - STATE(7350), 1, + STATE(6797), 1, sym_comment, - [230293] = 5, + [214839] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, + ACTIONS(11404), 1, anon_sym_LBRACK, - STATE(7057), 1, + STATE(6897), 1, sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7351), 1, + STATE(6798), 2, sym_comment, - [230309] = 5, + aux_sym_val_table_repeat1, + [214853] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_LBRACK, - STATE(7059), 1, - sym_val_list, - STATE(7206), 1, - aux_sym_val_table_repeat1, - STATE(7352), 1, + ACTIONS(1760), 1, + aux_sym_unquoted_token2, + ACTIONS(1762), 1, + anon_sym_LBRACE, + ACTIONS(11407), 1, + aux_sym__immediate_decimal_token2, + STATE(6799), 1, sym_comment, - [230325] = 4, + [214869] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5667), 1, + ACTIONS(9244), 1, sym__entry_separator, - STATE(7353), 1, - sym_comment, - ACTIONS(5665), 2, - anon_sym_RBRACK, + ACTIONS(11409), 1, anon_sym_GT2, - [230339] = 5, + STATE(5205), 1, + aux_sym__multiple_types_repeat1, + STATE(6800), 1, + sym_comment, + [214885] = 5, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11239), 1, + ACTIONS(11011), 1, sym_hex_digit, - ACTIONS(11847), 1, + ACTIONS(11411), 1, anon_sym_RBRACK, - STATE(7109), 1, + STATE(6456), 1, aux_sym_val_binary_repeat1, - STATE(7354), 1, + STATE(6801), 1, sym_comment, - [230355] = 5, + [214901] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11239), 1, - sym_hex_digit, - ACTIONS(11849), 1, - anon_sym_RBRACK, - STATE(7160), 1, - aux_sym_val_binary_repeat1, - STATE(7355), 1, + STATE(6802), 1, sym_comment, - [230371] = 5, + ACTIONS(11413), 3, + sym__newline, + anon_sym_LBRACK, + anon_sym_RBRACK, + [214913] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1581), 1, - anon_sym_LPAREN2, - ACTIONS(7288), 1, - aux_sym__unquoted_in_record_token4, - STATE(7356), 1, + ACTIONS(5632), 1, + sym__entry_separator, + STATE(6803), 1, sym_comment, - STATE(7491), 1, - sym__expr_parenthesized_immediate, - [230387] = 5, + ACTIONS(5630), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [214927] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(6282), 1, + sym_block, + STATE(6804), 1, + sym_comment, + [214940] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1581), 1, - anon_sym_LPAREN2, - ACTIONS(9073), 1, - aux_sym__unquoted_in_record_token4, - STATE(7357), 1, + ACTIONS(11415), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(6805), 1, sym_comment, - STATE(7435), 1, - sym__expr_parenthesized_immediate, - [230403] = 3, - ACTIONS(245), 1, + STATE(6911), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [214953] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7358), 1, + ACTIONS(5684), 1, + sym__entry_separator, + STATE(2641), 1, + aux_sym__multiple_types_repeat1, + STATE(6806), 1, sym_comment, - ACTIONS(10426), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230415] = 3, - ACTIONS(245), 1, + [214966] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7359), 1, + ACTIONS(11417), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(6807), 1, sym_comment, - ACTIONS(10428), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230427] = 5, - ACTIONS(245), 1, + STATE(6977), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [214979] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11239), 1, - sym_hex_digit, - ACTIONS(11851), 1, - anon_sym_RBRACK, - STATE(6784), 1, - aux_sym_val_binary_repeat1, - STATE(7360), 1, + ACTIONS(2413), 1, + anon_sym_RBRACE, + ACTIONS(2415), 1, + sym__entry_separator, + STATE(6808), 1, sym_comment, - [230443] = 5, + [214992] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11853), 1, - anon_sym_POUND_BANG, - ACTIONS(11855), 1, - sym__newline, - STATE(7097), 1, - aux_sym_shebang_repeat1, - STATE(7361), 1, + ACTIONS(2128), 1, + anon_sym_RBRACE, + ACTIONS(2130), 1, + sym__entry_separator, + STATE(6809), 1, sym_comment, - [230459] = 5, + [215005] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2192), 1, - aux_sym_unquoted_token4, - ACTIONS(6022), 1, - anon_sym_EQ_GT, - ACTIONS(6027), 1, - anon_sym_PIPE, - STATE(7362), 1, + ACTIONS(2068), 1, + anon_sym_RBRACE, + ACTIONS(2072), 1, + sym__entry_separator, + STATE(6810), 1, sym_comment, - [230475] = 3, - ACTIONS(245), 1, + [215018] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7363), 1, + ACTIONS(11419), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(6811), 1, sym_comment, - ACTIONS(10561), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230487] = 3, - ACTIONS(245), 1, + STATE(6819), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [215031] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7364), 1, + ACTIONS(11421), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(6812), 1, sym_comment, - ACTIONS(10561), 3, - ts_builtin_sym_end, + STATE(6819), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [215044] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11423), 1, sym__newline, - anon_sym_SEMI, - [230499] = 5, + ACTIONS(11425), 1, + sym__space, + STATE(6813), 1, + sym_comment, + [215057] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - ACTIONS(11857), 1, - anon_sym_RBRACK, - STATE(3616), 1, - aux_sym__multiple_types_repeat1, - STATE(7365), 1, + ACTIONS(11427), 1, + aux_sym__unquoted_with_expr_token1, + STATE(6814), 1, sym_comment, - [230515] = 3, - ACTIONS(245), 1, + STATE(6845), 1, + aux_sym__unquoted_with_expr_repeat1, + [215070] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7366), 1, + STATE(6815), 1, sym_comment, - ACTIONS(10727), 3, - ts_builtin_sym_end, + ACTIONS(1285), 2, + anon_sym_POUND_BANG, sym__newline, - anon_sym_SEMI, - [230527] = 4, + [215081] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11429), 1, + anon_sym_RBRACE, + ACTIONS(11431), 1, + sym__entry_separator, + STATE(6816), 1, + sym_comment, + [215094] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(4852), 1, - sym_block, - STATE(7367), 1, + STATE(6817), 1, sym_comment, - [230540] = 4, + ACTIONS(11433), 2, + anon_sym_RBRACK, + sym_hex_digit, + [215105] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11859), 1, + ACTIONS(1897), 1, anon_sym_RBRACE, - ACTIONS(11861), 1, + ACTIONS(1899), 1, sym__entry_separator, - STATE(7368), 1, + STATE(6818), 1, sym_comment, - [230553] = 4, - ACTIONS(245), 1, + [215118] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(6395), 1, - sym_block, - STATE(7369), 1, + ACTIONS(11435), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(6819), 2, sym_comment, - [230566] = 4, - ACTIONS(245), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [215129] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6313), 1, - anon_sym_LBRACE, - STATE(7107), 1, - sym_block, - STATE(7370), 1, + ACTIONS(11438), 1, + anon_sym_RBRACK, + ACTIONS(11440), 1, + sym__entry_separator, + STATE(6820), 1, sym_comment, - [230579] = 4, - ACTIONS(245), 1, + [215142] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11863), 1, - sym_identifier, - ACTIONS(11865), 1, - anon_sym_DOLLAR, - STATE(7371), 1, + ACTIONS(2314), 1, + anon_sym_RBRACE, + ACTIONS(2316), 1, + sym__entry_separator, + STATE(6821), 1, sym_comment, - [230592] = 4, + [215155] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8180), 1, - sym__entry_separator, - ACTIONS(8182), 1, - anon_sym_GT2, - STATE(7372), 1, + ACTIONS(11442), 1, + aux_sym__unquoted_with_expr_token1, + STATE(6822), 1, sym_comment, - [230605] = 4, + STATE(6850), 1, + aux_sym__unquoted_with_expr_repeat1, + [215168] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6313), 1, + ACTIONS(6259), 1, anon_sym_LBRACE, - STATE(7108), 1, + STATE(6670), 1, sym_block, - STATE(7373), 1, + STATE(6823), 1, sym_comment, - [230618] = 4, + [215181] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11867), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7374), 1, + ACTIONS(2164), 1, + anon_sym_LPAREN2, + ACTIONS(2168), 1, + aux_sym__unquoted_in_record_token4, + STATE(6824), 1, sym_comment, - STATE(7425), 1, - aux_sym__unquoted_with_expr_repeat1, - [230631] = 4, + [215194] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11869), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7375), 1, + ACTIONS(1934), 1, + anon_sym_RBRACE, + ACTIONS(1940), 1, + sym__entry_separator, + STATE(6825), 1, sym_comment, - STATE(7443), 1, - aux_sym__unquoted_with_expr_repeat1, - [230644] = 4, + [215207] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11871), 1, - anon_sym_RBRACK, - ACTIONS(11873), 1, - sym__entry_separator, - STATE(7376), 1, + ACTIONS(11444), 1, + sym__newline, + ACTIONS(11446), 1, + sym__space, + STATE(6826), 1, + sym_comment, + [215220] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1686), 1, + aux_sym_unquoted_token2, + ACTIONS(1688), 1, + anon_sym_LBRACE, + STATE(6827), 1, sym_comment, - [230657] = 4, + [215233] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5744), 1, + ACTIONS(9244), 1, sym__entry_separator, - STATE(2790), 1, + STATE(5372), 1, aux_sym__multiple_types_repeat1, - STATE(7377), 1, + STATE(6828), 1, sym_comment, - [230670] = 4, + [215246] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7983), 1, + anon_sym_RBRACK, + ACTIONS(7985), 1, + sym__entry_separator, + STATE(6829), 1, + sym_comment, + [215259] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(6363), 1, - sym_block, - STATE(7378), 1, + STATE(6830), 1, sym_comment, - [230683] = 4, + ACTIONS(976), 2, + sym__table_head_separator, + anon_sym_DOT2, + [215270] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11875), 1, + ACTIONS(11448), 1, aux_sym__unquoted_with_expr_token1, - STATE(7379), 1, + STATE(6831), 1, sym_comment, - STATE(7511), 1, + STATE(6846), 1, aux_sym__unquoted_with_expr_repeat1, - [230696] = 3, + [215283] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(7380), 1, - sym_comment, - ACTIONS(11306), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [230707] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11877), 1, - sym__newline, - ACTIONS(11879), 1, - sym__space, - STATE(7381), 1, + ACTIONS(6259), 1, + anon_sym_LBRACE, + STATE(6723), 1, + sym_block, + STATE(6832), 1, sym_comment, - [230720] = 4, + [215296] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2045), 1, - anon_sym_RBRACE, - ACTIONS(2047), 1, + ACTIONS(2256), 1, sym__entry_separator, - STATE(7382), 1, + STATE(677), 1, + aux_sym__multiple_types_repeat1, + STATE(6833), 1, sym_comment, - [230733] = 4, + [215309] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6313), 1, + ACTIONS(6257), 1, anon_sym_LBRACE, - STATE(4936), 1, + STATE(5968), 1, sym_block, - STATE(7383), 1, + STATE(6834), 1, sym_comment, - [230746] = 4, + [215322] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6313), 1, + ACTIONS(6257), 1, anon_sym_LBRACE, - STATE(7363), 1, + STATE(5970), 1, sym_block, - STATE(7384), 1, + STATE(6835), 1, sym_comment, - [230759] = 4, + [215335] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2194), 1, - anon_sym_RBRACE, - ACTIONS(2198), 1, - sym__entry_separator, - STATE(7385), 1, + ACTIONS(11450), 1, + aux_sym__unquoted_with_expr_token1, + STATE(6836), 1, sym_comment, - [230772] = 4, + STATE(6847), 1, + aux_sym__unquoted_with_expr_repeat1, + [215348] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6313), 1, + ACTIONS(1797), 1, + aux_sym_unquoted_token2, + ACTIONS(1799), 1, anon_sym_LBRACE, - STATE(7104), 1, - sym_block, - STATE(7386), 1, + STATE(6837), 1, sym_comment, - [230785] = 4, + [215361] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6313), 1, + ACTIONS(4938), 1, anon_sym_LBRACE, - STATE(7217), 1, - sym_block, - STATE(7387), 1, + ACTIONS(11452), 1, + anon_sym_EQ2, + STATE(6838), 1, sym_comment, - [230798] = 4, + [215374] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6313), 1, + ACTIONS(6257), 1, anon_sym_LBRACE, - STATE(7364), 1, + STATE(5891), 1, sym_block, - STATE(7388), 1, + STATE(6839), 1, sym_comment, - [230811] = 4, + [215387] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6313), 1, + ACTIONS(6259), 1, anon_sym_LBRACE, - STATE(7222), 1, + STATE(6665), 1, sym_block, - STATE(7389), 1, + STATE(6840), 1, sym_comment, - [230824] = 4, + [215400] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_COLON2, - ACTIONS(11881), 1, - anon_sym_make, - STATE(7390), 1, + ACTIONS(9866), 1, + anon_sym_def, + ACTIONS(11454), 1, + anon_sym_export, + STATE(6841), 1, sym_comment, - [230837] = 3, + [215413] = 4, ACTIONS(245), 1, anon_sym_POUND, - STATE(7391), 1, + ACTIONS(6259), 1, + anon_sym_LBRACE, + STATE(6620), 1, + sym_block, + STATE(6842), 1, sym_comment, - ACTIONS(11611), 2, - anon_sym_GT2, - anon_sym_AT2, - [230848] = 4, + [215426] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11883), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7392), 1, + ACTIONS(9244), 1, + sym__entry_separator, + STATE(5374), 1, + aux_sym__multiple_types_repeat1, + STATE(6843), 1, sym_comment, - STATE(7434), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [230861] = 4, + [215439] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2196), 1, - anon_sym_LPAREN2, - ACTIONS(2200), 1, - aux_sym__unquoted_in_list_token4, - STATE(7393), 1, + ACTIONS(3662), 1, + sym__space, + STATE(1149), 1, + aux_sym_pipe_element_repeat1, + STATE(6844), 1, sym_comment, - [230874] = 4, + [215452] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2196), 1, - anon_sym_LPAREN2, - ACTIONS(2200), 1, - aux_sym__unquoted_in_record_token4, - STATE(7394), 1, + ACTIONS(11456), 1, + aux_sym__unquoted_with_expr_token1, + STATE(6845), 1, sym_comment, - [230887] = 4, + STATE(6964), 1, + aux_sym__unquoted_with_expr_repeat1, + [215465] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8194), 1, - sym__entry_separator, - ACTIONS(8196), 1, - anon_sym_RBRACK, - STATE(7395), 1, + ACTIONS(11458), 1, + aux_sym__unquoted_with_expr_token1, + STATE(6846), 1, sym_comment, - [230900] = 4, + STATE(6964), 1, + aux_sym__unquoted_with_expr_repeat1, + [215478] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11885), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7396), 1, - sym_comment, - STATE(7434), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [230913] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(7397), 1, + ACTIONS(11460), 1, + aux_sym__unquoted_with_expr_token1, + STATE(6847), 1, sym_comment, - ACTIONS(980), 2, - sym__table_head_separator, - anon_sym_DOT2, - [230924] = 4, + STATE(6964), 1, + aux_sym__unquoted_with_expr_repeat1, + [215491] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6119), 1, + ACTIONS(5859), 1, + anon_sym_RBRACK, + ACTIONS(5865), 1, sym__entry_separator, - STATE(3095), 1, - aux_sym__multiple_types_repeat1, - STATE(7398), 1, - sym_comment, - [230937] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - ACTIONS(2204), 1, - anon_sym_LBRACE, - STATE(7399), 1, + STATE(6848), 1, sym_comment, - [230950] = 4, + [215504] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2093), 1, + ACTIONS(994), 1, anon_sym_LBRACE, - ACTIONS(2095), 1, + ACTIONS(2106), 1, aux_sym_unquoted_token4, - STATE(7400), 1, - sym_comment, - [230963] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6313), 1, - anon_sym_LBRACE, - STATE(7161), 1, - sym_block, - STATE(7401), 1, - sym_comment, - [230976] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11887), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7402), 1, - sym_comment, - STATE(7515), 1, - aux_sym__unquoted_with_expr_repeat1, - [230989] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(7403), 1, + STATE(6849), 1, sym_comment, - STATE(7510), 1, - sym__expr_parenthesized_immediate, - [231002] = 4, + [215517] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11889), 1, + ACTIONS(11462), 1, aux_sym__unquoted_with_expr_token1, - STATE(7404), 1, + STATE(6850), 1, sym_comment, - STATE(7515), 1, + STATE(6964), 1, aux_sym__unquoted_with_expr_repeat1, - [231015] = 4, + [215530] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11891), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7405), 1, + ACTIONS(2162), 1, + anon_sym_RBRACE, + ACTIONS(2166), 1, + sym__entry_separator, + STATE(6851), 1, sym_comment, - STATE(7434), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [231028] = 4, + [215543] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6315), 1, + ACTIONS(6259), 1, anon_sym_LBRACE, - STATE(6327), 1, + STATE(6725), 1, sym_block, - STATE(7406), 1, + STATE(6852), 1, sym_comment, - [231041] = 4, + [215556] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1591), 1, + ACTIONS(9657), 1, anon_sym_LBRACE, - ACTIONS(7082), 1, - aux_sym_unquoted_token2, - STATE(7407), 1, + STATE(6564), 1, + sym_val_record, + STATE(6853), 1, sym_comment, - [231054] = 4, + [215569] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6313), 1, + ACTIONS(6259), 1, anon_sym_LBRACE, - STATE(7201), 1, + STATE(6519), 1, sym_block, - STATE(7408), 1, + STATE(6854), 1, sym_comment, - [231067] = 4, + [215582] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2063), 1, - anon_sym_LBRACE, - ACTIONS(2065), 1, + ACTIONS(1447), 1, aux_sym_unquoted_token2, - STATE(7409), 1, + ACTIONS(1813), 1, + anon_sym_LBRACE, + STATE(6855), 1, sym_comment, - [231080] = 4, + [215595] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - ACTIONS(2053), 1, + ACTIONS(6259), 1, anon_sym_LBRACE, - STATE(7410), 1, + STATE(4635), 1, + sym_block, + STATE(6856), 1, + sym_comment, + [215608] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11464), 1, + aux_sym__unquoted_with_expr_token1, + STATE(6857), 1, + sym_comment, + STATE(6898), 1, + aux_sym__unquoted_with_expr_repeat1, + [215621] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11466), 1, + aux_sym__unquoted_with_expr_token1, + STATE(6858), 1, sym_comment, - [231093] = 4, + STATE(6904), 1, + aux_sym__unquoted_with_expr_repeat1, + [215634] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1581), 1, - anon_sym_LPAREN2, - STATE(7411), 1, + ACTIONS(11468), 1, + anon_sym_DASH2, + STATE(6859), 1, sym_comment, - STATE(7491), 1, - sym__expr_parenthesized_immediate, - [231106] = 4, + STATE(7236), 1, + sym_param_short_flag, + [215647] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11893), 1, - anon_sym_RBRACK, - ACTIONS(11895), 1, + ACTIONS(2134), 1, + anon_sym_RBRACE, + ACTIONS(2136), 1, sym__entry_separator, - STATE(7412), 1, + STATE(6860), 1, sym_comment, - [231119] = 4, - ACTIONS(245), 1, + [215660] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_LPAREN2, - STATE(7413), 1, + ACTIONS(1782), 1, + anon_sym_RBRACE, + ACTIONS(1790), 1, + sym__entry_separator, + STATE(6861), 1, sym_comment, - STATE(7475), 1, - sym__expr_parenthesized_immediate, - [231132] = 4, + [215673] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11897), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7402), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7414), 1, + ACTIONS(2417), 1, + anon_sym_RBRACE, + ACTIONS(2419), 1, + sym__entry_separator, + STATE(6862), 1, sym_comment, - [231145] = 4, - ACTIONS(245), 1, + [215686] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9760), 1, - anon_sym_LBRACE, - STATE(6270), 1, - sym_val_record, - STATE(7415), 1, + ACTIONS(10260), 1, + anon_sym_RBRACE, + ACTIONS(10262), 1, + sym__entry_separator, + STATE(6863), 1, sym_comment, - [231158] = 4, + [215699] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1666), 1, - aux_sym_unquoted_token2, - ACTIONS(1668), 1, - anon_sym_LBRACE, - STATE(7416), 1, + STATE(6864), 1, + sym_comment, + ACTIONS(980), 2, + sym__table_head_separator, + anon_sym_DOT2, + [215710] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11470), 1, + anon_sym_RBRACE, + ACTIONS(11472), 1, + sym__entry_separator, + STATE(6865), 1, sym_comment, - [231171] = 4, + [215723] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1811), 1, + ACTIONS(10264), 1, anon_sym_RBRACE, - ACTIONS(1819), 1, + ACTIONS(10266), 1, sym__entry_separator, - STATE(7417), 1, + STATE(6866), 1, sym_comment, - [231184] = 4, + [215736] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1790), 1, - aux_sym_unquoted_token2, - ACTIONS(1792), 1, + ACTIONS(6259), 1, anon_sym_LBRACE, - STATE(7418), 1, + STATE(6590), 1, + sym_block, + STATE(6867), 1, sym_comment, - [231197] = 4, + [215749] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11899), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7404), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7419), 1, + ACTIONS(11474), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(6819), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(6868), 1, sym_comment, - [231210] = 4, - ACTIONS(245), 1, + [215762] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(7420), 1, + ACTIONS(2001), 1, + anon_sym_RBRACE, + ACTIONS(2003), 1, + sym__entry_separator, + STATE(6869), 1, sym_comment, - STATE(7809), 1, - sym__expr_parenthesized_immediate, - [231223] = 4, + [215775] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1719), 1, + ACTIONS(1701), 1, aux_sym_unquoted_token2, - ACTIONS(1721), 1, + ACTIONS(1703), 1, anon_sym_LBRACE, - STATE(7421), 1, + STATE(6870), 1, sym_comment, - [231236] = 4, + [215788] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2164), 1, + anon_sym_LPAREN2, + ACTIONS(2168), 1, + aux_sym__unquoted_in_list_token4, + STATE(6871), 1, + sym_comment, + [215801] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5078), 1, + ACTIONS(6257), 1, anon_sym_LBRACE, - ACTIONS(11901), 1, - anon_sym_EQ2, - STATE(7422), 1, + STATE(6321), 1, + sym_block, + STATE(6872), 1, sym_comment, - [231249] = 4, - ACTIONS(3), 1, + [215814] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2196), 1, - anon_sym_LPAREN2, - ACTIONS(2200), 1, - aux_sym_unquoted_token4, - STATE(7423), 1, + STATE(6873), 1, sym_comment, - [231262] = 4, + ACTIONS(11338), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [215825] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(3408), 1, + anon_sym_COLON2, + ACTIONS(11476), 1, + anon_sym_make, + STATE(6874), 1, + sym_comment, + [215838] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7989), 1, - anon_sym_RBRACK, - ACTIONS(7991), 1, - sym__entry_separator, - STATE(7424), 1, + ACTIONS(11478), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(6868), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(6875), 1, sym_comment, - [231275] = 4, + [215851] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11903), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7425), 1, + ACTIONS(11480), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(6876), 1, sym_comment, - STATE(7515), 1, - aux_sym__unquoted_with_expr_repeat1, - [231288] = 4, + STATE(6882), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [215864] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6315), 1, + ACTIONS(1628), 1, anon_sym_LBRACE, - STATE(6481), 1, - sym_block, - STATE(7426), 1, + ACTIONS(7012), 1, + aux_sym_unquoted_token2, + STATE(6877), 1, sym_comment, - [231301] = 4, + [215877] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(7414), 1, - sym__expr_parenthesized_immediate, - STATE(7427), 1, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(6353), 1, + sym_block, + STATE(6878), 1, sym_comment, - [231314] = 3, - ACTIONS(3), 1, + [215890] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11905), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7428), 2, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(6355), 1, + sym_block, + STATE(6879), 1, sym_comment, - aux_sym__unquoted_in_list_with_expr_repeat1, - [231325] = 4, - ACTIONS(3), 1, + [215903] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11908), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7429), 1, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(4573), 1, + sym_block, + STATE(6880), 1, sym_comment, - STATE(7515), 1, - aux_sym__unquoted_with_expr_repeat1, - [231338] = 4, + [215916] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7414), 1, + ACTIONS(7378), 1, anon_sym_RBRACK, - ACTIONS(7416), 1, + ACTIONS(7380), 1, sym__entry_separator, - STATE(7430), 1, + STATE(6881), 1, sym_comment, - [231351] = 4, + [215929] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11910), 1, + ACTIONS(11482), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(7431), 1, - sym_comment, - STATE(7434), 1, + STATE(6819), 1, aux_sym__unquoted_in_record_with_expr_repeat1, - [231364] = 4, + STATE(6882), 1, + sym_comment, + [215942] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(6883), 1, + sym_comment, + STATE(6901), 1, + sym__expr_parenthesized_immediate, + [215955] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2202), 1, + ACTIONS(2144), 1, anon_sym_RBRACE, - ACTIONS(2204), 1, + ACTIONS(2148), 1, sym__entry_separator, - STATE(7432), 1, + STATE(6884), 1, sym_comment, - [231377] = 4, + [215968] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2089), 1, + ACTIONS(1805), 1, anon_sym_RBRACE, - ACTIONS(2093), 1, + ACTIONS(1813), 1, sym__entry_separator, - STATE(7433), 1, + STATE(6885), 1, sym_comment, - [231390] = 3, + [215981] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11912), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7434), 2, + ACTIONS(11484), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(6886), 1, sym_comment, - aux_sym__unquoted_in_record_with_expr_repeat1, - [231401] = 4, + STATE(6906), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [215994] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11915), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7405), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7435), 1, + ACTIONS(8076), 1, + sym__entry_separator, + ACTIONS(8078), 1, + anon_sym_GT2, + STATE(6887), 1, sym_comment, - [231414] = 4, + [216007] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11917), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7431), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7436), 1, + ACTIONS(5078), 1, + sym__entry_separator, + ACTIONS(5081), 1, + anon_sym_RBRACE, + STATE(6888), 1, sym_comment, - [231427] = 4, + [216020] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - ACTIONS(2043), 1, - anon_sym_LBRACE, - STATE(7437), 1, + ACTIONS(1618), 1, + anon_sym_LPAREN2, + STATE(6875), 1, + sym__expr_parenthesized_immediate, + STATE(6889), 1, sym_comment, - [231440] = 4, + [216033] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(6257), 1, anon_sym_LBRACE, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - STATE(7438), 1, + STATE(5915), 1, + sym_block, + STATE(6890), 1, + sym_comment, + [216046] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + STATE(6891), 1, sym_comment, - [231453] = 4, + ACTIONS(11486), 2, + sym__newline, + anon_sym_SEMI, + [216057] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11919), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7439), 1, + ACTIONS(2076), 1, + aux_sym_unquoted_token4, + ACTIONS(2078), 1, + anon_sym_LBRACE, + STATE(6892), 1, sym_comment, - STATE(7515), 1, - aux_sym__unquoted_with_expr_repeat1, - [231466] = 4, + [216070] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6315), 1, + ACTIONS(6259), 1, anon_sym_LBRACE, - STATE(6482), 1, + STATE(6731), 1, sym_block, - STATE(7440), 1, + STATE(6893), 1, sym_comment, - [231479] = 4, + [216083] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2059), 1, - anon_sym_RBRACE, - ACTIONS(2063), 1, + ACTIONS(8130), 1, sym__entry_separator, - STATE(7441), 1, + ACTIONS(8132), 1, + anon_sym_RBRACK, + STATE(6894), 1, sym_comment, - [231492] = 4, + [216096] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6315), 1, + ACTIONS(6259), 1, anon_sym_LBRACE, - STATE(4935), 1, + STATE(6732), 1, sym_block, - STATE(7442), 1, + STATE(6895), 1, + sym_comment, + [216109] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + ACTIONS(2130), 1, + anon_sym_LBRACE, + STATE(6896), 1, + sym_comment, + [216122] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6558), 1, + sym__entry_separator, + STATE(6481), 1, + aux_sym__multiple_types_repeat1, + STATE(6897), 1, sym_comment, - [231505] = 4, + [216135] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11921), 1, + ACTIONS(11488), 1, aux_sym__unquoted_with_expr_token1, - STATE(7443), 1, + STATE(6898), 1, sym_comment, - STATE(7515), 1, + STATE(6964), 1, aux_sym__unquoted_with_expr_repeat1, - [231518] = 4, + [216148] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9969), 1, - anon_sym_def, - ACTIONS(11923), 1, - anon_sym_export, - STATE(7444), 1, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(6236), 1, + sym_block, + STATE(6899), 1, sym_comment, - [231531] = 4, + [216161] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11925), 1, - sym__newline, - ACTIONS(11927), 1, - sym__space, - STATE(7445), 1, + ACTIONS(11490), 1, + aux_sym__unquoted_with_expr_token1, + STATE(6900), 1, + sym_comment, + STATE(6964), 1, + aux_sym__unquoted_with_expr_repeat1, + [216174] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11492), 1, + aux_sym__unquoted_with_expr_token1, + STATE(6900), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(6901), 1, + sym_comment, + [216187] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2072), 1, + anon_sym_LBRACE, + ACTIONS(2074), 1, + aux_sym_unquoted_token4, + STATE(6902), 1, sym_comment, - [231544] = 4, + [216200] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11929), 1, + ACTIONS(11494), 1, aux_sym__unquoted_with_expr_token1, - STATE(7446), 1, + STATE(6903), 1, sym_comment, - STATE(7456), 1, + STATE(6966), 1, aux_sym__unquoted_with_expr_repeat1, - [231557] = 4, + [216213] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11931), 1, + ACTIONS(11496), 1, aux_sym__unquoted_with_expr_token1, - STATE(7447), 1, + STATE(6904), 1, sym_comment, - STATE(7457), 1, + STATE(6964), 1, aux_sym__unquoted_with_expr_repeat1, - [231570] = 4, + [216226] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6259), 1, + anon_sym_LBRACE, + STATE(6666), 1, + sym_block, + STATE(6905), 1, + sym_comment, + [216239] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11933), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7392), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7448), 1, + ACTIONS(11498), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(6906), 2, sym_comment, - [231583] = 4, + aux_sym__unquoted_in_list_with_expr_repeat1, + [216250] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2386), 1, - anon_sym_RBRACE, - ACTIONS(2388), 1, + ACTIONS(11501), 1, + anon_sym_RBRACK, + ACTIONS(11503), 1, + sym__entry_separator, + STATE(6907), 1, + sym_comment, + [216263] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6061), 1, sym__entry_separator, - STATE(7449), 1, + STATE(2964), 1, + aux_sym__multiple_types_repeat1, + STATE(6908), 1, sym_comment, - [231596] = 4, + [216276] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1648), 1, - aux_sym_unquoted_token2, - ACTIONS(1650), 1, + ACTIONS(2148), 1, anon_sym_LBRACE, - STATE(7450), 1, + ACTIONS(2150), 1, + aux_sym_unquoted_token2, + STATE(6909), 1, sym_comment, - [231609] = 4, + [216289] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11935), 1, + ACTIONS(11505), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(7434), 1, + STATE(6819), 1, aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7451), 1, - sym_comment, - [231622] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9713), 1, - anon_sym_LBRACE, - STATE(7106), 1, - sym_val_record, - STATE(7452), 1, + STATE(6910), 1, sym_comment, - [231635] = 4, + [216302] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11937), 1, + ACTIONS(11507), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(7434), 1, + STATE(6819), 1, aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7453), 1, + STATE(6911), 1, sym_comment, - [231648] = 4, + [216315] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6315), 1, + STATE(6912), 1, + sym_comment, + ACTIONS(11146), 2, + anon_sym_GT2, + anon_sym_AT2, + [216326] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6257), 1, anon_sym_LBRACE, - STATE(6438), 1, + STATE(5924), 1, sym_block, - STATE(7454), 1, + STATE(6913), 1, + sym_comment, + [216339] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(5937), 1, + sym_block, + STATE(6914), 1, sym_comment, - [231661] = 4, + [216352] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + ACTIONS(2136), 1, + anon_sym_LBRACE, + STATE(6915), 1, + sym_comment, + [216365] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(1618), 1, anon_sym_LPAREN2, + STATE(6916), 1, + sym_comment, STATE(7374), 1, sym__expr_parenthesized_immediate, - STATE(7455), 1, + [216378] = 4, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(4690), 1, + sym_block, + STATE(6917), 1, sym_comment, - [231674] = 4, + [216391] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11939), 1, + ACTIONS(11509), 1, aux_sym__unquoted_with_expr_token1, - STATE(7456), 1, + STATE(6918), 1, sym_comment, - STATE(7515), 1, + STATE(6964), 1, aux_sym__unquoted_with_expr_repeat1, - [231687] = 4, + [216404] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11941), 1, + ACTIONS(11511), 1, aux_sym__unquoted_with_expr_token1, - STATE(7457), 1, + STATE(6919), 1, sym_comment, - STATE(7515), 1, + STATE(6964), 1, aux_sym__unquoted_with_expr_repeat1, - [231700] = 4, - ACTIONS(245), 1, + [216417] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1581), 1, - anon_sym_LPAREN2, - STATE(7448), 1, - sym__expr_parenthesized_immediate, - STATE(7458), 1, + ACTIONS(11513), 1, + anon_sym_RBRACK, + ACTIONS(11515), 1, + sym__entry_separator, + STATE(6920), 1, sym_comment, - [231713] = 4, - ACTIONS(245), 1, + [216430] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6313), 1, - anon_sym_LBRACE, - STATE(6852), 1, - sym_block, - STATE(7459), 1, + ACTIONS(2164), 1, + anon_sym_LPAREN2, + ACTIONS(2168), 1, + aux_sym_unquoted_token4, + STATE(6921), 1, sym_comment, - [231726] = 4, - ACTIONS(245), 1, + [216443] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5060), 1, + ACTIONS(2166), 1, anon_sym_LBRACE, - ACTIONS(11943), 1, - anon_sym_EQ2, - STATE(7460), 1, + ACTIONS(2168), 1, + aux_sym_unquoted_token4, + STATE(6922), 1, sym_comment, - [231739] = 4, + [216456] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1581), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(7461), 1, + STATE(6923), 1, sym_comment, - STATE(7742), 1, + STATE(7173), 1, sym__expr_parenthesized_immediate, - [231752] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(6344), 1, - sym_block, - STATE(7462), 1, - sym_comment, - [231765] = 4, + [216469] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6313), 1, + ACTIONS(6257), 1, anon_sym_LBRACE, - STATE(7082), 1, + STATE(6020), 1, sym_block, - STATE(7463), 1, + STATE(6924), 1, sym_comment, - [231778] = 4, + [216482] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6313), 1, + ACTIONS(6257), 1, anon_sym_LBRACE, - STATE(7000), 1, + STATE(6033), 1, sym_block, - STATE(7464), 1, + STATE(6925), 1, sym_comment, - [231791] = 4, + [216495] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6315), 1, + ACTIONS(6259), 1, anon_sym_LBRACE, - STATE(6299), 1, + STATE(6696), 1, sym_block, - STATE(7465), 1, + STATE(6926), 1, sym_comment, - [231804] = 4, - ACTIONS(245), 1, + [216508] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(6328), 1, - sym_block, - STATE(7466), 1, + ACTIONS(11517), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(6811), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(6927), 1, sym_comment, - [231817] = 4, + [216521] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10168), 1, - anon_sym_RBRACE, - ACTIONS(10170), 1, - sym__entry_separator, - STATE(7467), 1, + ACTIONS(11519), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(6812), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(6928), 1, sym_comment, - [231830] = 4, + [216534] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6315), 1, + ACTIONS(1790), 1, anon_sym_LBRACE, - STATE(6324), 1, - sym_block, - STATE(7468), 1, - sym_comment, - [231843] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2049), 1, - anon_sym_RBRACE, - ACTIONS(2053), 1, - sym__entry_separator, - STATE(7469), 1, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + STATE(6929), 1, sym_comment, - [231856] = 4, + [216547] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(6345), 1, - sym_block, - STATE(7470), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(6930), 1, sym_comment, - [231869] = 4, + STATE(6963), 1, + sym__expr_parenthesized_immediate, + [216560] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6315), 1, + ACTIONS(1477), 1, + aux_sym_unquoted_token2, + ACTIONS(2142), 1, anon_sym_LBRACE, - STATE(4712), 1, - sym_block, - STATE(7471), 1, + STATE(6931), 1, sym_comment, - [231882] = 4, - ACTIONS(3), 1, + [216573] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2041), 1, - anon_sym_RBRACE, - ACTIONS(2043), 1, - sym__entry_separator, - STATE(7472), 1, + ACTIONS(1618), 1, + anon_sym_LPAREN2, + STATE(6927), 1, + sym__expr_parenthesized_immediate, + STATE(6932), 1, sym_comment, - [231895] = 4, + [216586] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2324), 1, - anon_sym_RBRACE, - ACTIONS(2326), 1, - sym__entry_separator, - STATE(7473), 1, + ACTIONS(11521), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(6886), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + STATE(6933), 1, sym_comment, - [231908] = 4, + [216599] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6315), 1, + ACTIONS(6259), 1, anon_sym_LBRACE, - STATE(6439), 1, + STATE(6700), 1, sym_block, - STATE(7474), 1, - sym_comment, - [231921] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11945), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7475), 1, + STATE(6934), 1, sym_comment, - STATE(7523), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [231934] = 4, + [216612] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6315), 1, + ACTIONS(6257), 1, anon_sym_LBRACE, - STATE(5201), 1, + STATE(5887), 1, sym_block, - STATE(7476), 1, - sym_comment, - [231947] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1778), 1, - anon_sym_RBRACE, - ACTIONS(1786), 1, - sym__entry_separator, - STATE(7477), 1, + STATE(6935), 1, sym_comment, - [231960] = 4, + [216625] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2402), 1, - anon_sym_RBRACE, - ACTIONS(2404), 1, - sym__entry_separator, - STATE(7478), 1, + ACTIONS(11523), 1, + sym__newline, + ACTIONS(11525), 1, + sym__space, + STATE(6936), 1, sym_comment, - [231973] = 4, + [216638] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6313), 1, + ACTIONS(6257), 1, anon_sym_LBRACE, - STATE(7093), 1, + STATE(4329), 1, sym_block, - STATE(7479), 1, + STATE(6937), 1, sym_comment, - [231986] = 4, - ACTIONS(3), 1, + [216651] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2198), 1, + ACTIONS(6257), 1, anon_sym_LBRACE, - ACTIONS(2200), 1, - aux_sym_unquoted_token4, - STATE(7480), 1, + STATE(5916), 1, + sym_block, + STATE(6938), 1, sym_comment, - [231999] = 4, + [216664] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, - anon_sym_LPAREN2, - STATE(7481), 1, - sym_comment, - STATE(7519), 1, - sym__expr_parenthesized_immediate, - [232012] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11947), 1, - anon_sym_RBRACK, - ACTIONS(11949), 1, - sym__entry_separator, - STATE(7482), 1, + ACTIONS(4906), 1, + anon_sym_LBRACE, + ACTIONS(11527), 1, + anon_sym_EQ2, + STATE(6939), 1, sym_comment, - [232025] = 4, + [216677] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1581), 1, - anon_sym_LPAREN2, - STATE(7483), 1, + ACTIONS(11529), 1, + sym_identifier, + ACTIONS(11531), 1, + anon_sym_DOLLAR, + STATE(6940), 1, sym_comment, - STATE(7527), 1, - sym__expr_parenthesized_immediate, - [232038] = 4, + [216690] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6315), 1, + ACTIONS(6259), 1, anon_sym_LBRACE, - STATE(5134), 1, + STATE(4489), 1, sym_block, - STATE(7484), 1, - sym_comment, - [232051] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6012), 1, - anon_sym_RBRACK, - ACTIONS(6018), 1, - sym__entry_separator, - STATE(7485), 1, + STATE(6941), 1, sym_comment, - [232064] = 4, - ACTIONS(3), 1, + [216703] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2045), 1, - aux_sym_unquoted_token4, - ACTIONS(2047), 1, + ACTIONS(6257), 1, anon_sym_LBRACE, - STATE(7486), 1, + STATE(4938), 1, + sym_block, + STATE(6942), 1, sym_comment, - [232077] = 4, - ACTIONS(245), 1, + [216716] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - ACTIONS(1819), 1, - anon_sym_LBRACE, - STATE(7487), 1, + ACTIONS(11533), 1, + aux_sym__unquoted_with_expr_token1, + STATE(6943), 1, sym_comment, - [232090] = 4, + STATE(6954), 1, + aux_sym__unquoted_with_expr_repeat1, + [216729] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(7446), 1, + STATE(6943), 1, sym__expr_parenthesized_immediate, - STATE(7488), 1, - sym_comment, - [232103] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(7489), 1, + STATE(6944), 1, sym_comment, - ACTIONS(11951), 2, - anon_sym_RBRACK, - sym_hex_digit, - [232114] = 4, + [216742] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(994), 1, - anon_sym_LBRACE, - ACTIONS(2192), 1, - aux_sym_unquoted_token4, - STATE(7490), 1, + ACTIONS(11535), 1, + aux_sym__unquoted_with_expr_token1, + STATE(6945), 1, sym_comment, - [232127] = 4, - ACTIONS(3), 1, + STATE(6955), 1, + aux_sym__unquoted_with_expr_repeat1, + [216755] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11953), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7451), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7491), 1, + ACTIONS(1618), 1, + anon_sym_LPAREN2, + STATE(6946), 1, sym_comment, - [232140] = 4, + STATE(6956), 1, + sym__expr_parenthesized_immediate, + [216768] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6313), 1, + ACTIONS(6257), 1, anon_sym_LBRACE, - STATE(7122), 1, + STATE(4877), 1, sym_block, - STATE(7492), 1, + STATE(6947), 1, sym_comment, - [232153] = 3, + [216781] = 3, ACTIONS(245), 1, anon_sym_POUND, - STATE(7493), 1, + STATE(6948), 1, sym_comment, - ACTIONS(976), 2, + ACTIONS(972), 2, sym__table_head_separator, anon_sym_DOT2, - [232164] = 4, + [216792] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4462), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(7494), 1, - sym_comment, - STATE(7524), 1, + STATE(6814), 1, sym__expr_parenthesized_immediate, - [232177] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11955), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7495), 1, - sym_comment, - STATE(7515), 1, - aux_sym__unquoted_with_expr_repeat1, - [232190] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(11957), 1, - anon_sym_DASH2, - STATE(7496), 1, - sym_comment, - STATE(7632), 1, - sym_param_short_flag, - [232203] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11959), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7453), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7497), 1, + STATE(6949), 1, sym_comment, - [232216] = 4, + [216805] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6313), 1, + ACTIONS(6259), 1, anon_sym_LBRACE, - STATE(7133), 1, + STATE(6600), 1, sym_block, - STATE(7498), 1, + STATE(6950), 1, sym_comment, - [232229] = 4, - ACTIONS(3), 1, + [216818] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - STATE(5705), 1, - aux_sym__multiple_types_repeat1, - STATE(7499), 1, + ACTIONS(3342), 1, + anon_sym_COLON2, + ACTIONS(11476), 1, + anon_sym_make, + STATE(6951), 1, sym_comment, - [232242] = 4, + [216831] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6313), 1, - anon_sym_LBRACE, - STATE(4878), 1, - sym_block, - STATE(7500), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(6831), 1, + sym__expr_parenthesized_immediate, + STATE(6952), 1, sym_comment, - [232255] = 4, + [216844] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - STATE(6858), 1, - aux_sym__multiple_types_repeat1, - STATE(7501), 1, + ACTIONS(11537), 1, + anon_sym_LPAREN2, + ACTIONS(11539), 1, + aux_sym__record_key_token1, + STATE(6953), 1, sym_comment, - [232268] = 4, + [216857] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1955), 1, - anon_sym_RBRACE, - ACTIONS(1957), 1, - sym__entry_separator, - STATE(7502), 1, + ACTIONS(11541), 1, + aux_sym__unquoted_with_expr_token1, + STATE(6954), 1, sym_comment, - [232281] = 4, + STATE(6964), 1, + aux_sym__unquoted_with_expr_repeat1, + [216870] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, - sym__entry_separator, - STATE(5712), 1, - aux_sym__multiple_types_repeat1, - STATE(7503), 1, + ACTIONS(11543), 1, + aux_sym__unquoted_with_expr_token1, + STATE(6955), 1, sym_comment, - [232294] = 4, + STATE(6964), 1, + aux_sym__unquoted_with_expr_repeat1, + [216883] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1985), 1, - anon_sym_RBRACE, - ACTIONS(1987), 1, - sym__entry_separator, - STATE(7504), 1, + ACTIONS(11545), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(6956), 1, sym_comment, - [232307] = 4, + STATE(6960), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [216896] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1989), 1, - anon_sym_RBRACE, - ACTIONS(1991), 1, - sym__entry_separator, - STATE(7505), 1, + ACTIONS(11547), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(6957), 1, sym_comment, - [232320] = 4, + STATE(6961), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [216909] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5112), 1, + ACTIONS(5873), 1, sym__entry_separator, - ACTIONS(5115), 1, - anon_sym_RBRACE, - STATE(7506), 1, - sym_comment, - [232333] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(6332), 1, - sym_block, - STATE(7507), 1, + STATE(2764), 1, + aux_sym__multiple_types_repeat1, + STATE(6958), 1, sym_comment, - [232346] = 4, + [216922] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(6715), 1, - sym_block, - STATE(7508), 1, + ACTIONS(5480), 1, + anon_sym_LPAREN2, + STATE(6933), 1, + sym__expr_parenthesized_immediate, + STATE(6959), 1, sym_comment, - [232359] = 3, + [216935] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7509), 1, + ACTIONS(11549), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(6819), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(6960), 1, sym_comment, - ACTIONS(1278), 2, - anon_sym_POUND_BANG, - sym__newline, - [232370] = 4, + [216948] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11961), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7429), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7510), 1, + ACTIONS(11551), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(6819), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(6961), 1, sym_comment, - [232383] = 4, - ACTIONS(3), 1, + [216961] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11963), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7511), 1, + ACTIONS(9685), 1, + anon_sym_LBRACE, + STATE(6225), 1, + sym_val_record, + STATE(6962), 1, sym_comment, - STATE(7515), 1, - aux_sym__unquoted_with_expr_repeat1, - [232396] = 4, + [216974] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11965), 1, + ACTIONS(11553), 1, aux_sym__unquoted_with_expr_token1, - STATE(7439), 1, + STATE(6918), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(7512), 1, - sym_comment, - [232409] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(7513), 1, - sym_comment, - ACTIONS(972), 2, - sym__table_head_separator, - anon_sym_DOT2, - [232420] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2210), 1, - sym__entry_separator, - STATE(744), 1, - aux_sym__multiple_types_repeat1, - STATE(7514), 1, + STATE(6963), 1, sym_comment, - [232433] = 3, + [216987] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11967), 1, + ACTIONS(11555), 1, aux_sym__unquoted_with_expr_token1, - STATE(7515), 2, + STATE(6964), 2, sym_comment, aux_sym__unquoted_with_expr_repeat1, - [232444] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10180), 1, - anon_sym_RBRACE, - ACTIONS(10182), 1, - sym__entry_separator, - STATE(7516), 1, - sym_comment, - [232457] = 4, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(6315), 1, - anon_sym_LBRACE, - STATE(6394), 1, - sym_block, - STATE(7517), 1, - sym_comment, - [232470] = 4, + [216998] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6315), 1, + ACTIONS(6259), 1, anon_sym_LBRACE, - STATE(6362), 1, + STATE(6522), 1, sym_block, - STATE(7518), 1, - sym_comment, - [232483] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11970), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7519), 1, + STATE(6965), 1, sym_comment, - STATE(7525), 1, - aux_sym__unquoted_with_expr_repeat1, - [232496] = 4, + [217011] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11972), 1, + ACTIONS(11558), 1, aux_sym__unquoted_with_expr_token1, - STATE(7520), 1, - sym_comment, - STATE(7526), 1, + STATE(6964), 1, aux_sym__unquoted_with_expr_repeat1, - [232509] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - STATE(7521), 1, + STATE(6966), 1, sym_comment, - ACTIONS(11974), 2, - sym__newline, - anon_sym_SEMI, - [232520] = 4, + [217024] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5921), 1, + ACTIONS(6558), 1, sym__entry_separator, - STATE(2904), 1, + STATE(3434), 1, aux_sym__multiple_types_repeat1, - STATE(7522), 1, - sym_comment, - [232533] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11976), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7428), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - STATE(7523), 1, + STATE(6967), 1, sym_comment, - [232546] = 4, + [217037] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11978), 1, + ACTIONS(11560), 1, aux_sym__unquoted_with_expr_token1, - STATE(7495), 1, + STATE(6919), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(7524), 1, + STATE(6968), 1, sym_comment, - [232559] = 4, + [217050] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11980), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7515), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7525), 1, + ACTIONS(2076), 1, + anon_sym_RBRACE, + ACTIONS(2078), 1, + sym__entry_separator, + STATE(6969), 1, sym_comment, - [232572] = 4, + [217063] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11982), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7515), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7526), 1, + ACTIONS(11562), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(6910), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(6970), 1, sym_comment, - [232585] = 4, - ACTIONS(3), 1, + [217076] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11984), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7527), 1, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(6857), 1, + sym__expr_parenthesized_immediate, + STATE(6971), 1, sym_comment, - STATE(7535), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [232598] = 4, - ACTIONS(3), 1, + [217089] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11986), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7528), 1, + ACTIONS(6259), 1, + anon_sym_LBRACE, + STATE(6549), 1, + sym_block, + STATE(6972), 1, sym_comment, - STATE(7538), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [232611] = 4, + [217102] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1977), 1, + ACTIONS(1997), 1, anon_sym_RBRACE, - ACTIONS(1983), 1, + ACTIONS(1999), 1, sym__entry_separator, - STATE(7529), 1, + STATE(6973), 1, sym_comment, - [232624] = 4, - ACTIONS(3), 1, + [217115] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6614), 1, - sym__entry_separator, - STATE(3628), 1, - aux_sym__multiple_types_repeat1, - STATE(7530), 1, + ACTIONS(5480), 1, + anon_sym_LPAREN2, + STATE(6974), 1, sym_comment, - [232637] = 4, + STATE(7210), 1, + sym__expr_parenthesized_immediate, + [217128] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1581), 1, + ACTIONS(1618), 1, anon_sym_LPAREN2, - STATE(7435), 1, + STATE(6970), 1, sym__expr_parenthesized_immediate, - STATE(7531), 1, + STATE(6975), 1, sym_comment, - [232650] = 4, + [217141] = 4, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_LPAREN2, - STATE(7532), 1, + ACTIONS(1760), 1, + aux_sym_unquoted_token2, + ACTIONS(1762), 1, + anon_sym_LBRACE, + STATE(6976), 1, sym_comment, - STATE(7568), 1, - sym__expr_parenthesized_immediate, - [232663] = 4, + [217154] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11988), 1, + ACTIONS(11564), 1, aux_sym__unquoted_in_list_with_expr_token1, - STATE(7428), 1, + STATE(6906), 1, aux_sym__unquoted_in_list_with_expr_repeat1, - STATE(7533), 1, + STATE(6977), 1, sym_comment, - [232676] = 4, + [217167] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3708), 1, - sym__space, - STATE(1197), 1, - aux_sym_pipe_element_repeat1, - STATE(7534), 1, + ACTIONS(2138), 1, + anon_sym_RBRACE, + ACTIONS(2142), 1, + sym__entry_separator, + STATE(6978), 1, sym_comment, - [232689] = 4, - ACTIONS(3), 1, + [217180] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11990), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7434), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7535), 1, + ACTIONS(9677), 1, + anon_sym_def, + ACTIONS(11566), 1, + anon_sym_export, + STATE(6979), 1, sym_comment, - [232702] = 4, - ACTIONS(3), 1, + [217193] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11992), 1, - anon_sym_RBRACE, - ACTIONS(11994), 1, - sym__entry_separator, - STATE(7536), 1, + ACTIONS(6259), 1, + anon_sym_LBRACE, + STATE(6575), 1, + sym_block, + STATE(6980), 1, sym_comment, - [232715] = 4, - ACTIONS(3), 1, + [217206] = 4, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11996), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7533), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - STATE(7537), 1, + ACTIONS(6257), 1, + anon_sym_LBRACE, + STATE(6237), 1, + sym_block, + STATE(6981), 1, sym_comment, - [232728] = 4, - ACTIONS(3), 1, + [217219] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11998), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7434), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7538), 1, + ACTIONS(4986), 1, + anon_sym_LBRACK2, + STATE(6982), 1, sym_comment, - [232741] = 4, + [217229] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3440), 1, - anon_sym_COLON2, - ACTIONS(11881), 1, - anon_sym_make, - STATE(7539), 1, + ACTIONS(11568), 1, + sym_raw_string_end, + STATE(6983), 1, sym_comment, - [232754] = 4, - ACTIONS(3), 1, + [217239] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12000), 1, - anon_sym_LPAREN2, - ACTIONS(12002), 1, - aux_sym__record_key_token1, - STATE(7540), 1, + ACTIONS(11570), 1, + anon_sym_RBRACE, + STATE(6984), 1, sym_comment, - [232767] = 4, - ACTIONS(3), 1, + [217249] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12004), 1, - sym__newline, - ACTIONS(12006), 1, - sym__space, - STATE(7541), 1, + ACTIONS(11572), 1, + anon_sym_RBRACK, + STATE(6985), 1, sym_comment, - [232780] = 4, + [217259] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6313), 1, - anon_sym_LBRACE, - STATE(7081), 1, - sym_block, - STATE(7542), 1, + ACTIONS(11574), 1, + sym_raw_string_end, + STATE(6986), 1, sym_comment, - [232793] = 4, + [217269] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9750), 1, - anon_sym_def, - ACTIONS(12008), 1, - anon_sym_export, - STATE(7543), 1, + ACTIONS(11576), 1, + anon_sym_RBRACE, + STATE(6987), 1, sym_comment, - [232806] = 4, - ACTIONS(3), 1, + [217279] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12010), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7396), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7544), 1, + ACTIONS(11578), 1, + sym_raw_string_content, + STATE(6988), 1, sym_comment, - [232819] = 3, - ACTIONS(3), 1, + [217289] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2095), 1, - aux_sym_unquoted_token4, - STATE(7545), 1, + ACTIONS(11580), 1, + anon_sym_RBRACK, + STATE(6989), 1, sym_comment, - [232829] = 3, + [217299] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12012), 1, - anon_sym_LPAREN2, - STATE(7546), 1, + ACTIONS(11582), 1, + anon_sym_RPAREN, + STATE(6990), 1, sym_comment, - [232839] = 3, + [217309] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12014), 1, - anon_sym_RBRACE, - STATE(7547), 1, + ACTIONS(11584), 1, + anon_sym_LBRACE, + STATE(6991), 1, sym_comment, - [232849] = 3, + [217319] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12016), 1, - sym__table_head_separator, - STATE(7548), 1, + ACTIONS(11476), 1, + anon_sym_make, + STATE(6992), 1, sym_comment, - [232859] = 3, + [217329] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5834), 1, - aux_sym__unquoted_in_list_token4, - STATE(7549), 1, + ACTIONS(1987), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(6993), 1, sym_comment, - [232869] = 3, + [217339] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12018), 1, - anon_sym_RBRACE, - STATE(7550), 1, + ACTIONS(1792), 1, + aux_sym_unquoted_token2, + STATE(6994), 1, sym_comment, - [232879] = 3, + [217349] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(10627), 1, - anon_sym_LBRACE, - STATE(7551), 1, + ACTIONS(10852), 1, + anon_sym_LBRACK2, + STATE(6995), 1, sym_comment, - [232889] = 3, + [217359] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12020), 1, - anon_sym_RPAREN, - STATE(7552), 1, + ACTIONS(11586), 1, + sym_raw_string_end, + STATE(6996), 1, sym_comment, - [232899] = 3, + [217369] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(503), 1, - anon_sym_RPAREN2, - STATE(7553), 1, + ACTIONS(11588), 1, + sym_raw_string_end, + STATE(6997), 1, sym_comment, - [232909] = 3, + [217379] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12022), 1, - anon_sym_RBRACE, - STATE(7554), 1, + ACTIONS(11590), 1, + anon_sym_RBRACK, + STATE(6998), 1, sym_comment, - [232919] = 3, + [217389] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12024), 1, - sym_raw_string_end, - STATE(7555), 1, + ACTIONS(11592), 1, + anon_sym_RPAREN, + STATE(6999), 1, sym_comment, - [232929] = 3, + [217399] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12026), 1, - anon_sym_RBRACE, - STATE(7556), 1, + ACTIONS(11594), 1, + anon_sym_EQ, + STATE(7000), 1, sym_comment, - [232939] = 3, + [217409] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12028), 1, - anon_sym_RBRACK, - STATE(7557), 1, + ACTIONS(11596), 1, + sym_raw_string_end, + STATE(7001), 1, sym_comment, - [232949] = 3, + [217419] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12030), 1, - anon_sym_RPAREN2, - STATE(7558), 1, + ACTIONS(11598), 1, + ts_builtin_sym_end, + STATE(7002), 1, sym_comment, - [232959] = 3, + [217429] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12032), 1, + ACTIONS(11600), 1, anon_sym_RPAREN, - STATE(7559), 1, + STATE(7003), 1, sym_comment, - [232969] = 3, + [217439] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12034), 1, - sym_raw_string_end, - STATE(7560), 1, + ACTIONS(9898), 1, + aux_sym_unquoted_token2, + STATE(7004), 1, sym_comment, - [232979] = 3, + [217449] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12036), 1, + ACTIONS(11602), 1, anon_sym_RPAREN, - STATE(7561), 1, + STATE(7005), 1, sym_comment, - [232989] = 3, + [217459] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12038), 1, - sym_raw_string_end, - STATE(7562), 1, + ACTIONS(10792), 1, + anon_sym_LBRACE, + STATE(7006), 1, sym_comment, - [232999] = 3, + [217469] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7156), 1, - aux_sym_unquoted_token2, - STATE(7563), 1, + ACTIONS(11604), 1, + anon_sym_LBRACE, + STATE(7007), 1, sym_comment, - [233009] = 3, + [217479] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12040), 1, - anon_sym_RBRACE, - STATE(7564), 1, + ACTIONS(1447), 1, + aux_sym_unquoted_token2, + STATE(7008), 1, sym_comment, - [233019] = 3, + [217489] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12042), 1, - anon_sym_EQ, - STATE(7565), 1, + ACTIONS(11606), 1, + anon_sym_LBRACE, + STATE(7009), 1, sym_comment, - [233029] = 3, + [217499] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11694), 1, + ACTIONS(11608), 1, anon_sym_EQ_GT, - STATE(7566), 1, + STATE(7010), 1, sym_comment, - [233039] = 3, + [217509] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12044), 1, - anon_sym_EQ_GT, - STATE(7567), 1, + ACTIONS(4672), 1, + aux_sym_unquoted_token2, + STATE(7011), 1, sym_comment, - [233049] = 3, + [217519] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12046), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7568), 1, + ACTIONS(7137), 1, + aux_sym_unquoted_token4, + STATE(7012), 1, sym_comment, - [233059] = 3, + [217529] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12048), 1, - anon_sym_RBRACE, - STATE(7569), 1, + ACTIONS(11610), 1, + anon_sym_RBRACK, + STATE(7013), 1, sym_comment, - [233069] = 3, + [217539] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12050), 1, - anon_sym_COLON2, - STATE(7570), 1, + ACTIONS(11612), 1, + anon_sym_RPAREN, + STATE(7014), 1, sym_comment, - [233079] = 3, + [217549] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6223), 1, + ACTIONS(2106), 1, aux_sym_unquoted_token4, - STATE(7571), 1, - sym_comment, - [233089] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(12052), 1, - anon_sym_RBRACK, - STATE(7572), 1, + STATE(7015), 1, sym_comment, - [233099] = 3, + [217559] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12054), 1, - sym_raw_string_end, - STATE(7573), 1, + ACTIONS(11614), 1, + anon_sym_RPAREN, + STATE(7016), 1, sym_comment, - [233109] = 3, + [217569] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12056), 1, + ACTIONS(11616), 1, anon_sym_RPAREN, - STATE(7574), 1, + STATE(7017), 1, sym_comment, - [233119] = 3, + [217579] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12058), 1, + ACTIONS(11618), 1, anon_sym_RBRACE, - STATE(7575), 1, + STATE(7018), 1, sym_comment, - [233129] = 3, - ACTIONS(3), 1, + [217589] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12060), 1, - aux_sym_cmd_identifier_token41, - STATE(7576), 1, + ACTIONS(11620), 1, + anon_sym_EQ_GT, + STATE(7019), 1, sym_comment, - [233139] = 3, + [217599] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12062), 1, - anon_sym_RBRACE, - STATE(7577), 1, + ACTIONS(11622), 1, + anon_sym_RBRACK, + STATE(7020), 1, sym_comment, - [233149] = 3, + [217609] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12064), 1, - anon_sym_RPAREN, - STATE(7578), 1, + ACTIONS(11624), 1, + anon_sym_RBRACK, + STATE(7021), 1, sym_comment, - [233159] = 3, + [217619] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12066), 1, - sym_raw_string_content, - STATE(7579), 1, + ACTIONS(11626), 1, + anon_sym_COLON2, + STATE(7022), 1, sym_comment, - [233169] = 3, + [217629] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12068), 1, - sym_raw_string_content, - STATE(7580), 1, + ACTIONS(11628), 1, + anon_sym_RBRACE, + STATE(7023), 1, sym_comment, - [233179] = 3, + [217639] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12070), 1, + ACTIONS(11630), 1, anon_sym_RBRACE, - STATE(7581), 1, + STATE(7024), 1, sym_comment, - [233189] = 3, + [217649] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5605), 1, + ACTIONS(4521), 1, aux_sym_unquoted_token2, - STATE(7582), 1, + STATE(7025), 1, sym_comment, - [233199] = 3, - ACTIONS(245), 1, + [217659] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12072), 1, - sym_raw_string_end, - STATE(7583), 1, + ACTIONS(11632), 1, + aux_sym_cmd_identifier_token41, + STATE(7026), 1, sym_comment, - [233209] = 3, + [217669] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4657), 1, - anon_sym_COLON2, - STATE(7584), 1, + ACTIONS(11634), 1, + anon_sym_RBRACE, + STATE(7027), 1, sym_comment, - [233219] = 3, + [217679] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4482), 1, - aux_sym_unquoted_token2, - STATE(7585), 1, + ACTIONS(11636), 1, + sym_identifier, + STATE(7028), 1, sym_comment, - [233229] = 3, + [217689] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11881), 1, - anon_sym_make, - STATE(7586), 1, + ACTIONS(11638), 1, + anon_sym_RPAREN, + STATE(7029), 1, sym_comment, - [233239] = 3, + [217699] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12074), 1, - anon_sym_RBRACK, - STATE(7587), 1, + ACTIONS(11640), 1, + sym_raw_string_end, + STATE(7030), 1, sym_comment, - [233249] = 3, - ACTIONS(3), 1, + [217709] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7221), 1, - aux_sym_unquoted_token4, - STATE(7588), 1, + ACTIONS(2392), 1, + sym__table_head_separator, + STATE(7031), 1, sym_comment, - [233259] = 3, + [217719] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12076), 1, - sym_raw_string_end, - STATE(7589), 1, + ACTIONS(473), 1, + anon_sym_RPAREN2, + STATE(7032), 1, sym_comment, - [233269] = 3, + [217729] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(10390), 1, - anon_sym_LBRACK2, - STATE(7590), 1, + ACTIONS(11642), 1, + anon_sym_RPAREN, + STATE(7033), 1, sym_comment, - [233279] = 3, + [217739] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9997), 1, + ACTIONS(4732), 1, aux_sym_unquoted_token2, - STATE(7591), 1, + STATE(7034), 1, sym_comment, - [233289] = 3, + [217749] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1963), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7592), 1, - sym_comment, - [233299] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(12078), 1, - anon_sym_LBRACE, - STATE(7593), 1, + ACTIONS(4678), 1, + aux_sym_unquoted_token4, + STATE(7035), 1, sym_comment, - [233309] = 3, + [217759] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12080), 1, - anon_sym_RPAREN2, - STATE(7594), 1, + ACTIONS(11644), 1, + sym_identifier, + STATE(7036), 1, sym_comment, - [233319] = 3, + [217769] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5605), 1, + ACTIONS(9898), 1, aux_sym_unquoted_token4, - STATE(7595), 1, + STATE(7037), 1, sym_comment, - [233329] = 3, + [217779] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12082), 1, - anon_sym_EQ, - STATE(7596), 1, + ACTIONS(11646), 1, + sym_attribute_identifier, + STATE(7038), 1, sym_comment, - [233339] = 3, + [217789] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9061), 1, - aux_sym_unquoted_token2, - STATE(7597), 1, + ACTIONS(11648), 1, + anon_sym_DASH_GT, + STATE(7039), 1, sym_comment, - [233349] = 3, + [217799] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12084), 1, + ACTIONS(11650), 1, anon_sym_RBRACE, - STATE(7598), 1, - sym_comment, - [233359] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12086), 1, - aux_sym_cmd_identifier_token41, - STATE(7599), 1, + STATE(7040), 1, sym_comment, - [233369] = 3, + [217809] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12088), 1, - anon_sym_LBRACE, - STATE(7600), 1, + ACTIONS(11652), 1, + anon_sym_RBRACE, + STATE(7041), 1, sym_comment, - [233379] = 3, + [217819] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12090), 1, + ACTIONS(11654), 1, anon_sym_RBRACK, - STATE(7601), 1, + STATE(7042), 1, sym_comment, - [233389] = 3, - ACTIONS(245), 1, + [217829] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12092), 1, - anon_sym_RPAREN, - STATE(7602), 1, + ACTIONS(1993), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7043), 1, sym_comment, - [233399] = 3, - ACTIONS(3), 1, + [217839] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1963), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7603), 1, + ACTIONS(11656), 1, + anon_sym_RBRACE, + STATE(7044), 1, sym_comment, - [233409] = 3, + [217849] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12094), 1, - anon_sym_LBRACE, - STATE(7604), 1, + ACTIONS(11658), 1, + anon_sym_EQ, + STATE(7045), 1, sym_comment, - [233419] = 3, + [217859] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12096), 1, + ACTIONS(11660), 1, anon_sym_RBRACE, - STATE(7605), 1, + STATE(7046), 1, sym_comment, - [233429] = 3, + [217869] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12078), 1, - anon_sym_LBRACE, - STATE(7606), 1, + ACTIONS(11662), 1, + anon_sym_RPAREN, + STATE(7047), 1, sym_comment, - [233439] = 3, + [217879] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12098), 1, + ACTIONS(11664), 1, anon_sym_RBRACE, - STATE(7607), 1, + STATE(7048), 1, sym_comment, - [233449] = 3, + [217889] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12100), 1, - anon_sym_GT2, - STATE(7608), 1, + ACTIONS(8935), 1, + aux_sym__unquoted_in_list_token2, + STATE(7049), 1, sym_comment, - [233459] = 3, + [217899] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12102), 1, - anon_sym_in2, - STATE(7609), 1, + ACTIONS(11666), 1, + anon_sym_RBRACK, + STATE(7050), 1, sym_comment, - [233469] = 3, + [217909] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12104), 1, - sym_raw_string_end, - STATE(7610), 1, + ACTIONS(5341), 1, + anon_sym_LBRACK2, + STATE(7051), 1, sym_comment, - [233479] = 3, + [217919] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12106), 1, - sym_raw_string_end, - STATE(7611), 1, + ACTIONS(11668), 1, + sym_identifier, + STATE(7052), 1, sym_comment, - [233489] = 3, + [217929] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6223), 1, - aux_sym_unquoted_token2, - STATE(7612), 1, + ACTIONS(2356), 1, + anon_sym_COLON2, + STATE(7053), 1, sym_comment, - [233499] = 3, + [217939] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12108), 1, + ACTIONS(11670), 1, anon_sym_RBRACE, - STATE(7613), 1, - sym_comment, - [233509] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(12110), 1, - anon_sym_RBRACK, - STATE(7614), 1, + STATE(7054), 1, sym_comment, - [233519] = 3, + [217949] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12112), 1, + ACTIONS(11672), 1, anon_sym_RPAREN, - STATE(7615), 1, + STATE(7055), 1, sym_comment, - [233529] = 3, + [217959] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12114), 1, - sym_identifier, - STATE(7616), 1, + ACTIONS(11674), 1, + sym_raw_string_end, + STATE(7056), 1, sym_comment, - [233539] = 3, + [217969] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12116), 1, + ACTIONS(11676), 1, anon_sym_RBRACE, - STATE(7617), 1, + STATE(7057), 1, sym_comment, - [233549] = 3, + [217979] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12118), 1, + ACTIONS(11678), 1, anon_sym_RPAREN, - STATE(7618), 1, + STATE(7058), 1, sym_comment, - [233559] = 3, + [217989] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12120), 1, + ACTIONS(11680), 1, anon_sym_RBRACK, - STATE(7619), 1, + STATE(7059), 1, sym_comment, - [233569] = 3, + [217999] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12122), 1, + ACTIONS(11682), 1, anon_sym_RBRACE, - STATE(7620), 1, + STATE(7060), 1, sym_comment, - [233579] = 3, + [218009] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12124), 1, - ts_builtin_sym_end, - STATE(7621), 1, + ACTIONS(11684), 1, + anon_sym_RPAREN2, + STATE(7061), 1, sym_comment, - [233589] = 3, + [218019] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11123), 1, - anon_sym_LBRACE, - STATE(7622), 1, + ACTIONS(11686), 1, + anon_sym_RBRACE, + STATE(7062), 1, sym_comment, - [233599] = 3, + [218029] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12126), 1, - anon_sym_RBRACE, - STATE(7623), 1, + ACTIONS(11688), 1, + anon_sym_EQ, + STATE(7063), 1, + sym_comment, + [218039] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(11690), 1, + anon_sym_EQ, + STATE(7064), 1, + sym_comment, + [218049] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(11692), 1, + anon_sym_EQ, + STATE(7065), 1, sym_comment, - [233609] = 3, + [218059] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12128), 1, + ACTIONS(11694), 1, aux_sym_cmd_identifier_token41, - STATE(7624), 1, + STATE(7066), 1, sym_comment, - [233619] = 3, + [218069] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12130), 1, - anon_sym_LBRACE, - STATE(7625), 1, + ACTIONS(11696), 1, + anon_sym_RBRACE, + STATE(7067), 1, sym_comment, - [233629] = 3, + [218079] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12132), 1, - sym_raw_string_content, - STATE(7626), 1, + ACTIONS(11698), 1, + anon_sym_EQ, + STATE(7068), 1, sym_comment, - [233639] = 3, + [218089] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12134), 1, - anon_sym_RBRACE, - STATE(7627), 1, + ACTIONS(11700), 1, + anon_sym_RPAREN, + STATE(7069), 1, sym_comment, - [233649] = 3, + [218099] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3440), 1, - anon_sym_COLON2, - STATE(7628), 1, + ACTIONS(11702), 1, + anon_sym_RPAREN, + STATE(7070), 1, sym_comment, - [233659] = 3, + [218109] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5008), 1, - anon_sym_LBRACK2, - STATE(7629), 1, + ACTIONS(11704), 1, + sym_raw_string_end, + STATE(7071), 1, sym_comment, - [233669] = 3, + [218119] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12136), 1, + ACTIONS(11706), 1, anon_sym_RPAREN, - STATE(7630), 1, + STATE(7072), 1, sym_comment, - [233679] = 3, + [218129] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12138), 1, + ACTIONS(11708), 1, anon_sym_LBRACE, - STATE(7631), 1, + STATE(7073), 1, sym_comment, - [233689] = 3, + [218139] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12140), 1, + ACTIONS(11710), 1, anon_sym_RPAREN, - STATE(7632), 1, + STATE(7074), 1, sym_comment, - [233699] = 3, + [218149] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_COLON2, - STATE(7633), 1, + ACTIONS(11712), 1, + anon_sym_RBRACK, + STATE(7075), 1, sym_comment, - [233709] = 3, + [218159] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12142), 1, - anon_sym_DASH_GT, - STATE(7634), 1, + ACTIONS(11714), 1, + anon_sym_RBRACE, + STATE(7076), 1, sym_comment, - [233719] = 3, + [218169] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12144), 1, - sym_raw_string_end, - STATE(7635), 1, + ACTIONS(11716), 1, + anon_sym_RBRACE, + STATE(7077), 1, sym_comment, - [233729] = 3, + [218179] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12146), 1, + ACTIONS(11718), 1, + anon_sym_GT2, + STATE(7078), 1, + sym_comment, + [218189] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(11720), 1, anon_sym_EQ, - STATE(7636), 1, + STATE(7079), 1, sym_comment, - [233739] = 3, + [218199] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1929), 1, - sym__table_head_separator, - STATE(7637), 1, + ACTIONS(4625), 1, + anon_sym_COLON2, + STATE(7080), 1, + sym_comment, + [218209] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(11722), 1, + sym_raw_string_end, + STATE(7081), 1, sym_comment, - [233749] = 3, + [218219] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(11873), 1, + ACTIONS(10890), 1, anon_sym_LBRACE, - STATE(7638), 1, + STATE(7082), 1, sym_comment, - [233759] = 3, + [218229] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12148), 1, - anon_sym_RBRACK, - STATE(7639), 1, + ACTIONS(11724), 1, + sym__table_head_separator, + STATE(7083), 1, sym_comment, - [233769] = 3, + [218239] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12150), 1, + ACTIONS(11726), 1, + anon_sym_RBRACE, + STATE(7084), 1, + sym_comment, + [218249] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11728), 1, + aux_sym_cmd_identifier_token41, + STATE(7085), 1, + sym_comment, + [218259] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(11730), 1, anon_sym_RPAREN, - STATE(7640), 1, + STATE(7086), 1, sym_comment, - [233779] = 3, + [218269] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12152), 1, - anon_sym_RBRACE, - STATE(7641), 1, + ACTIONS(11732), 1, + anon_sym_RBRACK, + STATE(7087), 1, sym_comment, - [233789] = 3, + [218279] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12154), 1, - anon_sym_RBRACE, - STATE(7642), 1, + ACTIONS(11734), 1, + anon_sym_EQ, + STATE(7088), 1, sym_comment, - [233799] = 3, + [218289] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4715), 1, - aux_sym_unquoted_token2, - STATE(7643), 1, + ACTIONS(11736), 1, + sym_raw_string_end, + STATE(7089), 1, + sym_comment, + [218299] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(11738), 1, + anon_sym_EQ, + STATE(7090), 1, + sym_comment, + [218309] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(11740), 1, + sym_raw_string_end, + STATE(7091), 1, + sym_comment, + [218319] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(11742), 1, + anon_sym_RBRACE, + STATE(7092), 1, sym_comment, - [233809] = 3, + [218329] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7156), 1, + ACTIONS(2074), 1, aux_sym_unquoted_token4, - STATE(7644), 1, + STATE(7093), 1, sym_comment, - [233819] = 3, + [218339] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(7012), 1, + aux_sym_unquoted_token2, + STATE(7094), 1, + sym_comment, + [218349] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(4218), 1, + aux_sym_unquoted_token2, + STATE(7095), 1, + sym_comment, + [218359] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1963), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7645), 1, + ACTIONS(4589), 1, + aux_sym_unquoted_token4, + STATE(7096), 1, sym_comment, - [233829] = 3, + [218369] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12156), 1, - sym_raw_string_end, - STATE(7646), 1, + ACTIONS(11744), 1, + anon_sym_RBRACK, + STATE(7097), 1, sym_comment, - [233839] = 3, + [218379] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12158), 1, - sym_raw_string_end, - STATE(7647), 1, + ACTIONS(11746), 1, + anon_sym_LBRACE, + STATE(7098), 1, sym_comment, - [233849] = 3, + [218389] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12160), 1, - anon_sym_RBRACK, - STATE(7648), 1, + ACTIONS(11748), 1, + anon_sym_RPAREN, + STATE(7099), 1, sym_comment, - [233859] = 3, + [218399] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12162), 1, + ACTIONS(11750), 1, anon_sym_RBRACE, - STATE(7649), 1, + STATE(7100), 1, sym_comment, - [233869] = 3, + [218409] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12164), 1, - anon_sym_RBRACK, - STATE(7650), 1, + ACTIONS(11752), 1, + anon_sym_RBRACE, + STATE(7101), 1, sym_comment, - [233879] = 3, + [218419] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12166), 1, - anon_sym_GT2, - STATE(7651), 1, + ACTIONS(11754), 1, + anon_sym_RPAREN, + STATE(7102), 1, sym_comment, - [233889] = 3, + [218429] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12168), 1, - anon_sym_RPAREN, - STATE(7652), 1, + ACTIONS(11756), 1, + sym_raw_string_end, + STATE(7103), 1, sym_comment, - [233899] = 3, + [218439] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12170), 1, - anon_sym_RPAREN, - STATE(7653), 1, + ACTIONS(9834), 1, + aux_sym_unquoted_token2, + STATE(7104), 1, sym_comment, - [233909] = 3, + [218449] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12172), 1, - anon_sym_RBRACE, - STATE(7654), 1, + ACTIONS(5585), 1, + aux_sym_unquoted_token2, + STATE(7105), 1, sym_comment, - [233919] = 3, + [218459] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12174), 1, - anon_sym_RBRACE, - STATE(7655), 1, + ACTIONS(11758), 1, + anon_sym_RPAREN, + STATE(7106), 1, sym_comment, - [233929] = 3, + [218469] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12176), 1, + ACTIONS(11760), 1, anon_sym_RBRACE, - STATE(7656), 1, + STATE(7107), 1, + sym_comment, + [218479] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9834), 1, + aux_sym_unquoted_token4, + STATE(7108), 1, + sym_comment, + [218489] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7181), 1, + aux_sym_unquoted_token4, + STATE(7109), 1, sym_comment, - [233939] = 3, + [218499] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12178), 1, - anon_sym_COLON2, - STATE(7657), 1, + ACTIONS(11762), 1, + anon_sym_RBRACK, + STATE(7110), 1, sym_comment, - [233949] = 3, + [218509] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12180), 1, + ACTIONS(11764), 1, sym_raw_string_end, - STATE(7658), 1, + STATE(7111), 1, sym_comment, - [233959] = 3, + [218519] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12182), 1, + ACTIONS(11766), 1, anon_sym_RBRACE, - STATE(7659), 1, + STATE(7112), 1, sym_comment, - [233969] = 3, + [218529] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(447), 1, - anon_sym_RPAREN2, - STATE(7660), 1, + ACTIONS(11768), 1, + anon_sym_RBRACK, + STATE(7113), 1, + sym_comment, + [218539] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11770), 1, + aux_sym_cmd_identifier_token41, + STATE(7114), 1, sym_comment, - [233979] = 3, + [218549] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12184), 1, - anon_sym_RBRACE, - STATE(7661), 1, + ACTIONS(11772), 1, + anon_sym_RPAREN, + STATE(7115), 1, sym_comment, - [233989] = 3, + [218559] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12186), 1, - anon_sym_RBRACK, - STATE(7662), 1, + ACTIONS(11774), 1, + anon_sym_RPAREN, + STATE(7116), 1, sym_comment, - [233999] = 3, + [218569] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12188), 1, + ACTIONS(11776), 1, anon_sym_RBRACE, - STATE(7663), 1, + STATE(7117), 1, sym_comment, - [234009] = 3, + [218579] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12190), 1, - anon_sym_RPAREN, - STATE(7664), 1, + ACTIONS(11778), 1, + sym_identifier, + STATE(7118), 1, sym_comment, - [234019] = 3, + [218589] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(477), 1, - anon_sym_RPAREN2, - STATE(7665), 1, + ACTIONS(11780), 1, + anon_sym_RBRACK, + STATE(7119), 1, sym_comment, - [234029] = 3, + [218599] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1447), 1, - aux_sym_unquoted_token2, - STATE(7666), 1, + ACTIONS(7228), 1, + aux_sym__unquoted_in_record_token2, + STATE(7120), 1, sym_comment, - [234039] = 3, + [218609] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12192), 1, - sym_raw_string_end, - STATE(7667), 1, + ACTIONS(11782), 1, + anon_sym_RBRACE, + STATE(7121), 1, sym_comment, - [234049] = 3, + [218619] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12194), 1, - anon_sym_EQ, - STATE(7668), 1, + ACTIONS(11784), 1, + anon_sym_RBRACE, + STATE(7122), 1, sym_comment, - [234059] = 3, + [218629] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12196), 1, - aux_sym_cmd_identifier_token41, - STATE(7669), 1, - sym_comment, - [234069] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(12198), 1, - anon_sym_RBRACK, - STATE(7670), 1, + ACTIONS(7012), 1, + aux_sym_unquoted_token4, + STATE(7123), 1, sym_comment, - [234079] = 3, + [218639] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12200), 1, - sym_raw_string_end, - STATE(7671), 1, + ACTIONS(11786), 1, + anon_sym_RBRACE, + STATE(7124), 1, sym_comment, - [234089] = 3, + [218649] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12202), 1, - anon_sym_EQ, - STATE(7672), 1, + ACTIONS(11788), 1, + anon_sym_RBRACE, + STATE(7125), 1, sym_comment, - [234099] = 3, + [218659] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12204), 1, - anon_sym_GT2, - STATE(7673), 1, - sym_comment, - [234109] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12206), 1, - aux_sym_comment_token1, - STATE(7674), 1, + ACTIONS(11790), 1, + anon_sym_RPAREN, + STATE(7126), 1, sym_comment, - [234119] = 3, + [218669] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12208), 1, + ACTIONS(11792), 1, anon_sym_RPAREN, - STATE(7675), 1, + STATE(7127), 1, sym_comment, - [234129] = 3, - ACTIONS(245), 1, + [218679] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12210), 1, - sym_raw_string_end, - STATE(7676), 1, + ACTIONS(5585), 1, + aux_sym_unquoted_token4, + STATE(7128), 1, sym_comment, - [234139] = 3, + [218689] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12212), 1, - aux_sym_shebang_token1, - STATE(7677), 1, + ACTIONS(11794), 1, + sym__space, + STATE(7129), 1, sym_comment, - [234149] = 3, + [218699] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4681), 1, - aux_sym_unquoted_token2, - STATE(7678), 1, + ACTIONS(11796), 1, + sym_raw_string_end, + STATE(7130), 1, sym_comment, - [234159] = 3, + [218709] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12214), 1, - anon_sym_RBRACK, - STATE(7679), 1, + ACTIONS(11798), 1, + anon_sym_RBRACE, + STATE(7131), 1, sym_comment, - [234169] = 3, - ACTIONS(245), 1, + [218719] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12216), 1, - anon_sym_RPAREN, - STATE(7680), 1, + ACTIONS(11800), 1, + aux_sym_cmd_identifier_token41, + STATE(7132), 1, sym_comment, - [234179] = 3, + [218729] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12218), 1, + ACTIONS(11802), 1, anon_sym_RBRACE, - STATE(7681), 1, + STATE(7133), 1, sym_comment, - [234189] = 3, - ACTIONS(245), 1, + [218739] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12220), 1, - anon_sym_RBRACE, - STATE(7682), 1, + ACTIONS(11804), 1, + aux_sym_cmd_identifier_token41, + STATE(7134), 1, sym_comment, - [234199] = 3, + [218749] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12222), 1, - sym__table_head_separator, - STATE(7683), 1, + ACTIONS(11806), 1, + anon_sym_RPAREN, + STATE(7135), 1, sym_comment, - [234209] = 3, + [218759] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12224), 1, - sym_raw_string_content, - STATE(7684), 1, + ACTIONS(11808), 1, + sym_raw_string_end, + STATE(7136), 1, sym_comment, - [234219] = 3, + [218769] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12226), 1, + ACTIONS(11810), 1, anon_sym_RBRACE, - STATE(7685), 1, + STATE(7137), 1, sym_comment, - [234229] = 3, + [218779] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12228), 1, - sym_raw_string_end, - STATE(7686), 1, + ACTIONS(11812), 1, + anon_sym_GT2, + STATE(7138), 1, sym_comment, - [234239] = 3, + [218789] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5151), 1, - anon_sym_LBRACK2, - STATE(7687), 1, + ACTIONS(11814), 1, + anon_sym_RBRACE, + STATE(7139), 1, sym_comment, - [234249] = 3, + [218799] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12230), 1, - anon_sym_RBRACE, - STATE(7688), 1, + ACTIONS(4589), 1, + aux_sym_unquoted_token2, + STATE(7140), 1, sym_comment, - [234259] = 3, + [218809] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12232), 1, - ts_builtin_sym_end, - STATE(7689), 1, + ACTIONS(11816), 1, + anon_sym_RPAREN, + STATE(7141), 1, sym_comment, - [234269] = 3, + [218819] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12234), 1, + ACTIONS(11818), 1, anon_sym_RBRACE, - STATE(7690), 1, + STATE(7142), 1, sym_comment, - [234279] = 3, + [218829] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12236), 1, - anon_sym_EQ, - STATE(7691), 1, + ACTIONS(11820), 1, + anon_sym_RPAREN, + STATE(7143), 1, sym_comment, - [234289] = 3, + [218839] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12238), 1, + ACTIONS(11822), 1, anon_sym_RBRACE, - STATE(7692), 1, - sym_comment, - [234299] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(5419), 1, - anon_sym_LBRACK2, - STATE(7693), 1, + STATE(7144), 1, sym_comment, - [234309] = 3, + [218849] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12240), 1, - anon_sym_RBRACE, - STATE(7694), 1, + ACTIONS(11824), 1, + sym_raw_string_end, + STATE(7145), 1, sym_comment, - [234319] = 3, + [218859] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12242), 1, + ACTIONS(11826), 1, anon_sym_EQ, - STATE(7695), 1, + STATE(7146), 1, sym_comment, - [234329] = 3, - ACTIONS(245), 1, + [218869] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12244), 1, - anon_sym_RPAREN, - STATE(7696), 1, + ACTIONS(11828), 1, + aux_sym_cmd_identifier_token41, + STATE(7147), 1, sym_comment, - [234339] = 3, + [218879] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12246), 1, - anon_sym_RPAREN, - STATE(7697), 1, + ACTIONS(7181), 1, + aux_sym_unquoted_token2, + STATE(7148), 1, sym_comment, - [234349] = 3, + [218889] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12248), 1, - sym_raw_string_end, - STATE(7698), 1, + ACTIONS(11830), 1, + anon_sym_RBRACE, + STATE(7149), 1, sym_comment, - [234359] = 3, + [218899] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12250), 1, + ACTIONS(11832), 1, anon_sym_RBRACE, - STATE(7699), 1, + STATE(7150), 1, sym_comment, - [234369] = 3, + [218909] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12252), 1, - anon_sym_RBRACE, - STATE(7700), 1, + ACTIONS(11834), 1, + anon_sym_EQ, + STATE(7151), 1, sym_comment, - [234379] = 3, + [218919] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12254), 1, - anon_sym_RPAREN, - STATE(7701), 1, + ACTIONS(11836), 1, + sym_raw_string_end, + STATE(7152), 1, sym_comment, - [234389] = 3, + [218929] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12256), 1, - sym_identifier, - STATE(7702), 1, + ACTIONS(11838), 1, + anon_sym_RBRACK, + STATE(7153), 1, sym_comment, - [234399] = 3, + [218939] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12258), 1, - anon_sym_EQ, - STATE(7703), 1, + ACTIONS(11840), 1, + sym_raw_string_end, + STATE(7154), 1, sym_comment, - [234409] = 3, + [218949] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12260), 1, - anon_sym_RBRACE, - STATE(7704), 1, + ACTIONS(465), 1, + anon_sym_RPAREN2, + STATE(7155), 1, sym_comment, - [234419] = 3, + [218959] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12262), 1, - sym_raw_string_content, - STATE(7705), 1, + ACTIONS(11842), 1, + anon_sym_EQ, + STATE(7156), 1, sym_comment, - [234429] = 3, + [218969] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12264), 1, - anon_sym_RBRACE, - STATE(7706), 1, + ACTIONS(11844), 1, + anon_sym_RBRACK, + STATE(7157), 1, sym_comment, - [234439] = 3, + [218979] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7951), 1, - anon_sym_LBRACK2, - STATE(7707), 1, + ACTIONS(11846), 1, + anon_sym_LBRACE, + STATE(7158), 1, sym_comment, - [234449] = 3, + [218989] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12266), 1, + ACTIONS(11848), 1, anon_sym_RPAREN, - STATE(7708), 1, + STATE(7159), 1, sym_comment, - [234459] = 3, - ACTIONS(3), 1, + [218999] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1967), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7709), 1, + ACTIONS(11850), 1, + sym_raw_string_content, + STATE(7160), 1, sym_comment, - [234469] = 3, + [219009] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12268), 1, - anon_sym_EQ, - STATE(7710), 1, + ACTIONS(1477), 1, + aux_sym_unquoted_token2, + STATE(7161), 1, sym_comment, - [234479] = 3, + [219019] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12270), 1, - anon_sym_RBRACE, - STATE(7711), 1, + ACTIONS(11852), 1, + aux_sym_env_var_token2, + STATE(7162), 1, sym_comment, - [234489] = 3, + [219029] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12272), 1, - sym_raw_string_end, - STATE(7712), 1, + ACTIONS(477), 1, + anon_sym_RPAREN2, + STATE(7163), 1, sym_comment, - [234499] = 3, + [219039] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12274), 1, - anon_sym_RBRACE, - STATE(7713), 1, + ACTIONS(11854), 1, + anon_sym_RPAREN, + STATE(7164), 1, sym_comment, - [234509] = 3, + [219049] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12276), 1, - aux_sym_env_var_token2, - STATE(7714), 1, + ACTIONS(11856), 1, + sym_identifier, + STATE(7165), 1, sym_comment, - [234519] = 3, + [219059] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9880), 1, - aux_sym_unquoted_token2, - STATE(7715), 1, + ACTIONS(3408), 1, + anon_sym_COLON2, + STATE(7166), 1, sym_comment, - [234529] = 3, + [219069] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12278), 1, - sym_raw_string_end, - STATE(7716), 1, + ACTIONS(11858), 1, + anon_sym_RBRACK, + STATE(7167), 1, sym_comment, - [234539] = 3, + [219079] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12280), 1, - anon_sym_RBRACE, - STATE(7717), 1, + ACTIONS(11860), 1, + sym_raw_string_end, + STATE(7168), 1, sym_comment, - [234549] = 3, - ACTIONS(245), 1, + [219089] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12282), 1, - anon_sym_RPAREN, - STATE(7718), 1, + ACTIONS(11862), 1, + aux_sym_cmd_identifier_token41, + STATE(7169), 1, sym_comment, - [234559] = 3, + [219099] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12284), 1, + ACTIONS(11864), 1, anon_sym_RBRACE, - STATE(7719), 1, + STATE(7170), 1, sym_comment, - [234569] = 3, + [219109] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12286), 1, - sym_raw_string_content, - STATE(7720), 1, + ACTIONS(11866), 1, + anon_sym_RBRACE, + STATE(7171), 1, sym_comment, - [234579] = 3, + [219119] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7762), 1, - anon_sym_LBRACK2, - STATE(7721), 1, + ACTIONS(11868), 1, + anon_sym_RBRACE, + STATE(7172), 1, sym_comment, - [234589] = 3, + [219129] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9880), 1, - aux_sym_unquoted_token4, - STATE(7722), 1, + ACTIONS(11870), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7173), 1, sym_comment, - [234599] = 3, + [219139] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7082), 1, - aux_sym_unquoted_token2, - STATE(7723), 1, + ACTIONS(11872), 1, + anon_sym_RBRACE, + STATE(7174), 1, sym_comment, - [234609] = 3, + [219149] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12288), 1, + ACTIONS(11874), 1, anon_sym_LBRACE, - STATE(7724), 1, + STATE(7175), 1, sym_comment, - [234619] = 3, + [219159] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12290), 1, - anon_sym_RBRACE, - STATE(7725), 1, + ACTIONS(11876), 1, + sym_raw_string_end, + STATE(7176), 1, sym_comment, - [234629] = 3, + [219169] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2473), 1, - anon_sym_COLON2, - STATE(7726), 1, + ACTIONS(11878), 1, + anon_sym_RPAREN, + STATE(7177), 1, sym_comment, - [234639] = 3, - ACTIONS(3), 1, + [219179] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7082), 1, - aux_sym_unquoted_token4, - STATE(7727), 1, + ACTIONS(11880), 1, + sym_raw_string_end, + STATE(7178), 1, sym_comment, - [234649] = 3, + [219189] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12288), 1, - anon_sym_LBRACE, - STATE(7728), 1, + ACTIONS(8881), 1, + aux_sym_unquoted_token2, + STATE(7179), 1, sym_comment, - [234659] = 3, + [219199] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12292), 1, + ACTIONS(11882), 1, anon_sym_RBRACK, - STATE(7729), 1, + STATE(7180), 1, sym_comment, - [234669] = 3, + [219209] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12294), 1, - sym_identifier, - STATE(7730), 1, + ACTIONS(11884), 1, + anon_sym_RPAREN, + STATE(7181), 1, sym_comment, - [234679] = 3, + [219219] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12296), 1, - anon_sym_DASH_GT, - STATE(7731), 1, + ACTIONS(11886), 1, + anon_sym_RBRACE, + STATE(7182), 1, sym_comment, - [234689] = 3, + [219229] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12298), 1, - anon_sym_RBRACK, - STATE(7732), 1, + ACTIONS(11888), 1, + anon_sym_RBRACE, + STATE(7183), 1, sym_comment, - [234699] = 3, + [219239] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12300), 1, - anon_sym_RPAREN, - STATE(7733), 1, + ACTIONS(11890), 1, + anon_sym_LBRACE, + STATE(7184), 1, sym_comment, - [234709] = 3, - ACTIONS(245), 1, + [219249] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12302), 1, - sym_raw_string_content, - STATE(7734), 1, + ACTIONS(1987), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7185), 1, sym_comment, - [234719] = 3, + [219259] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6069), 1, - anon_sym_LBRACK2, - STATE(7735), 1, + ACTIONS(11892), 1, + anon_sym_RPAREN, + STATE(7186), 1, sym_comment, - [234729] = 3, + [219269] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12304), 1, + ACTIONS(11894), 1, anon_sym_RBRACE, - STATE(7736), 1, + STATE(7187), 1, sym_comment, - [234739] = 3, + [219279] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12306), 1, + ACTIONS(11896), 1, anon_sym_RPAREN, - STATE(7737), 1, + STATE(7188), 1, sym_comment, - [234749] = 3, + [219289] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4768), 1, - aux_sym_unquoted_token2, - STATE(7738), 1, + ACTIONS(11898), 1, + anon_sym_RBRACK, + STATE(7189), 1, + sym_comment, + [219299] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1987), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7190), 1, sym_comment, - [234759] = 3, + [219309] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12308), 1, + ACTIONS(11900), 1, anon_sym_RBRACE, - STATE(7739), 1, + STATE(7191), 1, sym_comment, - [234769] = 3, + [219319] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12310), 1, - sym_identifier, - STATE(7740), 1, + ACTIONS(11902), 1, + anon_sym_in2, + STATE(7192), 1, + sym_comment, + [219329] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11904), 1, + aux_sym_cmd_identifier_token41, + STATE(7193), 1, sym_comment, - [234779] = 3, + [219339] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12312), 1, - anon_sym_RPAREN2, - STATE(7741), 1, + ACTIONS(11503), 1, + anon_sym_LBRACE, + STATE(7194), 1, sym_comment, - [234789] = 3, - ACTIONS(3), 1, + [219349] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12314), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7742), 1, + ACTIONS(503), 1, + anon_sym_RPAREN2, + STATE(7195), 1, sym_comment, - [234799] = 3, + [219359] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12316), 1, - anon_sym_RBRACE, - STATE(7743), 1, + ACTIONS(11906), 1, + anon_sym_RPAREN2, + STATE(7196), 1, sym_comment, - [234809] = 3, + [219369] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12318), 1, + ACTIONS(11908), 1, sym_raw_string_end, - STATE(7744), 1, + STATE(7197), 1, sym_comment, - [234819] = 3, + [219379] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12320), 1, - anon_sym_RBRACK, - STATE(7745), 1, + ACTIONS(11910), 1, + anon_sym_GT2, + STATE(7198), 1, sym_comment, - [234829] = 3, + [219389] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12322), 1, - anon_sym_RPAREN, - STATE(7746), 1, + ACTIONS(11912), 1, + anon_sym_LBRACE, + STATE(7199), 1, sym_comment, - [234839] = 3, + [219399] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12324), 1, - sym_raw_string_content, - STATE(7747), 1, + ACTIONS(11914), 1, + sym_identifier, + STATE(7200), 1, sym_comment, - [234849] = 3, + [219409] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7518), 1, - anon_sym_LBRACK2, - STATE(7748), 1, + ACTIONS(11916), 1, + sym_raw_string_end, + STATE(7201), 1, sym_comment, - [234859] = 3, - ACTIONS(245), 1, + [219419] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12326), 1, - anon_sym_RPAREN, - STATE(7749), 1, + ACTIONS(8881), 1, + aux_sym_unquoted_token4, + STATE(7202), 1, sym_comment, - [234869] = 3, + [219429] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2400), 1, - sym__table_head_separator, - STATE(7750), 1, + ACTIONS(11918), 1, + anon_sym_RBRACE, + STATE(7203), 1, sym_comment, - [234879] = 3, + [219439] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5834), 1, - aux_sym__unquoted_in_list_token2, - STATE(7751), 1, + ACTIONS(11920), 1, + anon_sym_RBRACE, + STATE(7204), 1, sym_comment, - [234889] = 3, + [219449] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12328), 1, + ACTIONS(11922), 1, anon_sym_RBRACE, - STATE(7752), 1, + STATE(7205), 1, sym_comment, - [234899] = 3, + [219459] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12330), 1, - anon_sym_RBRACK, - STATE(7753), 1, + ACTIONS(11924), 1, + anon_sym_RBRACE, + STATE(7206), 1, sym_comment, - [234909] = 3, + [219469] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1664), 1, - aux_sym__unquoted_in_record_token2, - STATE(7754), 1, + ACTIONS(11926), 1, + anon_sym_EQ, + STATE(7207), 1, sym_comment, - [234919] = 3, - ACTIONS(3), 1, + [219479] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12332), 1, - aux_sym_cmd_identifier_token41, - STATE(7755), 1, + ACTIONS(499), 1, + anon_sym_RPAREN2, + STATE(7208), 1, sym_comment, - [234929] = 3, + [219489] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12334), 1, + ACTIONS(11928), 1, anon_sym_RBRACK, - STATE(7756), 1, + STATE(7209), 1, sym_comment, - [234939] = 3, + [219499] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12336), 1, - aux_sym_cmd_identifier_token41, - STATE(7757), 1, + ACTIONS(11930), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7210), 1, sym_comment, - [234949] = 3, + [219509] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12338), 1, - anon_sym_RPAREN, - STATE(7758), 1, + ACTIONS(11932), 1, + sym_raw_string_end, + STATE(7211), 1, sym_comment, - [234959] = 3, + [219519] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12340), 1, - sym_raw_string_end, - STATE(7759), 1, + ACTIONS(11934), 1, + sym_raw_string_content, + STATE(7212), 1, sym_comment, - [234969] = 3, + [219529] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12342), 1, - sym_raw_string_content, - STATE(7760), 1, + ACTIONS(11936), 1, + anon_sym_RPAREN2, + STATE(7213), 1, + sym_comment, + [219539] = 3, + ACTIONS(245), 1, + anon_sym_POUND, + ACTIONS(11938), 1, + anon_sym_RBRACE, + STATE(7214), 1, sym_comment, - [234979] = 3, + [219549] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5018), 1, + ACTIONS(5131), 1, anon_sym_LBRACK2, - STATE(7761), 1, + STATE(7215), 1, sym_comment, - [234989] = 3, + [219559] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12344), 1, + ACTIONS(11940), 1, anon_sym_RBRACE, - STATE(7762), 1, + STATE(7216), 1, sym_comment, - [234999] = 3, + [219569] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12346), 1, - anon_sym_RBRACE, - STATE(7763), 1, + ACTIONS(11942), 1, + sym_long_flag_identifier, + STATE(7217), 1, sym_comment, - [235009] = 3, + [219579] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12348), 1, + ACTIONS(11944), 1, anon_sym_RPAREN, - STATE(7764), 1, + STATE(7218), 1, sym_comment, - [235019] = 3, - ACTIONS(3), 1, + [219589] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12350), 1, - aux_sym_cmd_identifier_token41, - STATE(7765), 1, + ACTIONS(5760), 1, + aux_sym__unquoted_in_list_token2, + STATE(7219), 1, sym_comment, - [235029] = 3, + [219599] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(8886), 1, - aux_sym__unquoted_in_list_token2, - STATE(7766), 1, + ACTIONS(11946), 1, + anon_sym_RBRACE, + STATE(7220), 1, sym_comment, - [235039] = 3, + [219609] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12352), 1, - anon_sym_RPAREN, - STATE(7767), 1, + ACTIONS(11948), 1, + sym_raw_string_end, + STATE(7221), 1, sym_comment, - [235049] = 3, + [219619] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12354), 1, + ACTIONS(11950), 1, anon_sym_RBRACE, - STATE(7768), 1, + STATE(7222), 1, sym_comment, - [235059] = 3, + [219629] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12356), 1, + ACTIONS(11952), 1, aux_sym_cmd_identifier_token41, - STATE(7769), 1, + STATE(7223), 1, sym_comment, - [235069] = 3, + [219639] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12358), 1, + ACTIONS(11954), 1, anon_sym_RBRACE, - STATE(7770), 1, + STATE(7224), 1, sym_comment, - [235079] = 3, + [219649] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12360), 1, - anon_sym_EQ, - STATE(7771), 1, + ACTIONS(11956), 1, + anon_sym_RPAREN, + STATE(7225), 1, sym_comment, - [235089] = 3, + [219659] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12362), 1, - anon_sym_RBRACE, - STATE(7772), 1, + ACTIONS(11958), 1, + ts_builtin_sym_end, + STATE(7226), 1, sym_comment, - [235099] = 3, + [219669] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12364), 1, - sym_raw_string_content, - STATE(7773), 1, + ACTIONS(11960), 1, + sym_raw_string_end, + STATE(7227), 1, sym_comment, - [235109] = 3, + [219679] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6217), 1, - anon_sym_LBRACK2, - STATE(7774), 1, + ACTIONS(11962), 1, + sym_raw_string_content, + STATE(7228), 1, sym_comment, - [235119] = 3, + [219689] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12366), 1, - anon_sym_RPAREN, - STATE(7775), 1, + ACTIONS(11964), 1, + anon_sym_EQ, + STATE(7229), 1, sym_comment, - [235129] = 3, - ACTIONS(3), 1, + [219699] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12002), 1, - aux_sym__record_key_token1, - STATE(7776), 1, + ACTIONS(7810), 1, + anon_sym_LBRACK2, + STATE(7230), 1, sym_comment, - [235139] = 3, + [219709] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12368), 1, - anon_sym_EQ, - STATE(7777), 1, + ACTIONS(11966), 1, + anon_sym_make, + STATE(7231), 1, sym_comment, - [235149] = 3, + [219719] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(465), 1, - anon_sym_RPAREN2, - STATE(7778), 1, + ACTIONS(11968), 1, + anon_sym_RBRACK, + STATE(7232), 1, sym_comment, - [235159] = 3, + [219729] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12370), 1, - anon_sym_RBRACE, - STATE(7779), 1, + ACTIONS(1630), 1, + aux_sym__unquoted_in_record_token2, + STATE(7233), 1, sym_comment, - [235169] = 3, + [219739] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12372), 1, - anon_sym_EQ, - STATE(7780), 1, + ACTIONS(11970), 1, + anon_sym_LPAREN2, + STATE(7234), 1, sym_comment, - [235179] = 3, - ACTIONS(3), 1, + [219749] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12374), 1, - aux_sym_cmd_identifier_token41, - STATE(7781), 1, + ACTIONS(11972), 1, + anon_sym_RBRACE, + STATE(7235), 1, sym_comment, - [235189] = 3, + [219759] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12376), 1, + ACTIONS(11974), 1, anon_sym_RPAREN, - STATE(7782), 1, + STATE(7236), 1, sym_comment, - [235199] = 3, + [219769] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12378), 1, - anon_sym_EQ, - STATE(7783), 1, + ACTIONS(11976), 1, + anon_sym_RPAREN, + STATE(7237), 1, sym_comment, - [235209] = 3, + [219779] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12380), 1, - anon_sym_def, - STATE(7784), 1, + ACTIONS(11978), 1, + sym_raw_string_content, + STATE(7238), 1, sym_comment, - [235219] = 3, + [219789] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12382), 1, - anon_sym_RBRACK, - STATE(7785), 1, + ACTIONS(7715), 1, + anon_sym_LBRACK2, + STATE(7239), 1, sym_comment, - [235229] = 3, + [219799] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12384), 1, - sym_raw_string_content, - STATE(7786), 1, + ACTIONS(11980), 1, + anon_sym_RBRACE, + STATE(7240), 1, sym_comment, - [235239] = 3, - ACTIONS(245), 1, + [219809] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6440), 1, - anon_sym_LBRACK2, - STATE(7787), 1, + ACTIONS(11982), 1, + aux_sym_shebang_token1, + STATE(7241), 1, sym_comment, - [235249] = 3, + [219819] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12386), 1, + ACTIONS(11984), 1, anon_sym_RPAREN, - STATE(7788), 1, + STATE(7242), 1, sym_comment, - [235259] = 3, + [219829] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12388), 1, - sym_long_flag_identifier, - STATE(7789), 1, + ACTIONS(461), 1, + anon_sym_RPAREN2, + STATE(7243), 1, sym_comment, - [235269] = 3, - ACTIONS(3), 1, + [219839] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4691), 1, - aux_sym_unquoted_token4, - STATE(7790), 1, + ACTIONS(11986), 1, + sym_raw_string_end, + STATE(7244), 1, sym_comment, - [235279] = 3, + [219849] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12390), 1, + ACTIONS(11988), 1, anon_sym_RBRACE, - STATE(7791), 1, + STATE(7245), 1, sym_comment, - [235289] = 3, + [219859] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12392), 1, - sym_attribute_identifier, - STATE(7792), 1, + ACTIONS(11990), 1, + anon_sym_RPAREN, + STATE(7246), 1, sym_comment, - [235299] = 3, + [219869] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12394), 1, - sym_raw_string_end, - STATE(7793), 1, + ACTIONS(11992), 1, + sym_raw_string_content, + STATE(7247), 1, sym_comment, - [235309] = 3, + [219879] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12396), 1, - anon_sym_RBRACK, - STATE(7794), 1, + ACTIONS(5985), 1, + anon_sym_LBRACK2, + STATE(7248), 1, sym_comment, - [235319] = 3, + [219889] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12398), 1, - anon_sym_RPAREN, - STATE(7795), 1, + ACTIONS(11994), 1, + anon_sym_GT2, + STATE(7249), 1, sym_comment, - [235329] = 3, - ACTIONS(245), 1, + [219899] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12400), 1, - sym_raw_string_end, - STATE(7796), 1, + ACTIONS(11996), 1, + aux_sym_cmd_identifier_token41, + STATE(7250), 1, sym_comment, - [235339] = 3, + [219909] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12402), 1, - anon_sym_RBRACE, - STATE(7797), 1, + ACTIONS(11998), 1, + anon_sym_GT2, + STATE(7251), 1, sym_comment, - [235349] = 3, + [219919] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12404), 1, + ACTIONS(12000), 1, aux_sym_cmd_identifier_token41, - STATE(7798), 1, + STATE(7252), 1, sym_comment, - [235359] = 3, + [219929] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12406), 1, - sym_raw_string_content, - STATE(7799), 1, + ACTIONS(12002), 1, + sym_raw_string_end, + STATE(7253), 1, sym_comment, - [235369] = 3, + [219939] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(6183), 1, - anon_sym_LBRACK2, - STATE(7800), 1, + ACTIONS(4678), 1, + aux_sym_unquoted_token2, + STATE(7254), 1, sym_comment, - [235379] = 3, + [219949] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1470), 1, - aux_sym_unquoted_token2, - STATE(7801), 1, + ACTIONS(12004), 1, + sym_raw_string_content, + STATE(7255), 1, sym_comment, - [235389] = 3, + [219959] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12408), 1, - anon_sym_RPAREN, - STATE(7802), 1, + ACTIONS(7412), 1, + anon_sym_LBRACK2, + STATE(7256), 1, sym_comment, - [235399] = 3, + [219969] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12410), 1, - anon_sym_RBRACE, - STATE(7803), 1, + ACTIONS(12006), 1, + anon_sym_LBRACE, + STATE(7257), 1, sym_comment, - [235409] = 3, + [219979] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(461), 1, - anon_sym_RPAREN2, - STATE(7804), 1, + ACTIONS(12008), 1, + anon_sym_LBRACE, + STATE(7258), 1, sym_comment, - [235419] = 3, + [219989] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12412), 1, - sym_param_short_flag_identifier, - STATE(7805), 1, + ACTIONS(12010), 1, + sym_raw_string_end, + STATE(7259), 1, sym_comment, - [235429] = 3, + [219999] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12414), 1, - anon_sym_RPAREN, - STATE(7806), 1, + ACTIONS(12012), 1, + anon_sym_RBRACK, + STATE(7260), 1, sym_comment, - [235439] = 3, + [220009] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12416), 1, - anon_sym_RBRACE, - STATE(7807), 1, + ACTIONS(12014), 1, + sym_param_short_flag_identifier, + STATE(7261), 1, sym_comment, - [235449] = 3, - ACTIONS(3), 1, + [220019] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1967), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7808), 1, + ACTIONS(12016), 1, + anon_sym_EQ, + STATE(7262), 1, sym_comment, - [235459] = 3, - ACTIONS(3), 1, + [220029] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12418), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7809), 1, + ACTIONS(12018), 1, + sym_raw_string_content, + STATE(7263), 1, sym_comment, - [235469] = 3, - ACTIONS(3), 1, + [220039] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12420), 1, - aux_sym_cmd_identifier_token41, - STATE(7810), 1, + ACTIONS(4964), 1, + anon_sym_LBRACK2, + STATE(7264), 1, sym_comment, - [235479] = 3, + [220049] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12422), 1, - sym_raw_string_end, - STATE(7811), 1, + ACTIONS(12020), 1, + anon_sym_RBRACE, + STATE(7265), 1, sym_comment, - [235489] = 3, + [220059] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12424), 1, - sym_raw_string_content, - STATE(7812), 1, + ACTIONS(12022), 1, + anon_sym_RPAREN, + STATE(7266), 1, sym_comment, - [235499] = 3, + [220069] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9729), 1, - anon_sym_LBRACK2, - STATE(7813), 1, + ACTIONS(12024), 1, + anon_sym_RBRACE, + STATE(7267), 1, sym_comment, - [235509] = 3, + [220079] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12426), 1, - anon_sym_RPAREN, - STATE(7814), 1, + ACTIONS(12026), 1, + anon_sym_RBRACE, + STATE(7268), 1, sym_comment, - [235519] = 3, + [220089] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12428), 1, - sym_raw_string_end, - STATE(7815), 1, + ACTIONS(7062), 1, + aux_sym_unquoted_token2, + STATE(7269), 1, sym_comment, - [235529] = 3, + [220099] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12430), 1, - anon_sym_RBRACE, - STATE(7816), 1, + ACTIONS(12028), 1, + anon_sym_EQ, + STATE(7270), 1, sym_comment, - [235539] = 3, + [220109] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12432), 1, - anon_sym_GT2, - STATE(7817), 1, + ACTIONS(12030), 1, + sym_raw_string_content, + STATE(7271), 1, sym_comment, - [235549] = 3, + [220119] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12434), 1, - anon_sym_RBRACE, - STATE(7818), 1, + ACTIONS(6165), 1, + anon_sym_LBRACK2, + STATE(7272), 1, sym_comment, - [235559] = 3, + [220129] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12436), 1, - anon_sym_RPAREN, - STATE(7819), 1, + ACTIONS(12032), 1, + anon_sym_LBRACE, + STATE(7273), 1, sym_comment, - [235569] = 3, + [220139] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12438), 1, - anon_sym_RBRACE, - STATE(7820), 1, + ACTIONS(2150), 1, + aux_sym_unquoted_token2, + STATE(7274), 1, sym_comment, - [235579] = 3, + [220149] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4472), 1, - aux_sym_unquoted_token2, - STATE(7821), 1, + ACTIONS(12034), 1, + sym_raw_string_end, + STATE(7275), 1, sym_comment, - [235589] = 3, + [220159] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12440), 1, - anon_sym_RBRACE, - STATE(7822), 1, + ACTIONS(12036), 1, + anon_sym_GT2, + STATE(7276), 1, sym_comment, - [235599] = 3, + [220169] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4681), 1, + ACTIONS(7062), 1, aux_sym_unquoted_token4, - STATE(7823), 1, + STATE(7277), 1, sym_comment, - [235609] = 3, + [220179] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12442), 1, - anon_sym_RBRACK, - STATE(7824), 1, + ACTIONS(12038), 1, + sym_raw_string_content, + STATE(7278), 1, sym_comment, - [235619] = 3, + [220189] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12444), 1, + ACTIONS(12040), 1, sym_raw_string_content, - STATE(7825), 1, + STATE(7279), 1, sym_comment, - [235629] = 3, + [220199] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2396), 1, + ACTIONS(6390), 1, anon_sym_LBRACK2, - STATE(7826), 1, + STATE(7280), 1, sym_comment, - [235639] = 3, + [220209] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12446), 1, - aux_sym_cmd_identifier_token41, - STATE(7827), 1, + ACTIONS(12042), 1, + aux_sym_shebang_token1, + STATE(7281), 1, sym_comment, - [235649] = 3, + [220219] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12448), 1, - anon_sym_RPAREN, - STATE(7828), 1, + ACTIONS(12044), 1, + anon_sym_RBRACE, + STATE(7282), 1, sym_comment, - [235659] = 3, + [220229] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12450), 1, + ACTIONS(12046), 1, anon_sym_RBRACE, - STATE(7829), 1, + STATE(7283), 1, sym_comment, - [235669] = 3, + [220239] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(499), 1, - anon_sym_RPAREN2, - STATE(7830), 1, + ACTIONS(12048), 1, + sym_raw_string_end, + STATE(7284), 1, sym_comment, - [235679] = 3, - ACTIONS(245), 1, + [220249] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12452), 1, - anon_sym_RBRACE, - STATE(7831), 1, + ACTIONS(12050), 1, + aux_sym_cmd_identifier_token41, + STATE(7285), 1, sym_comment, - [235689] = 3, + [220259] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1788), 1, - aux_sym_unquoted_token2, - STATE(7832), 1, + ACTIONS(12052), 1, + anon_sym_RBRACE, + STATE(7286), 1, sym_comment, - [235699] = 3, + [220269] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12454), 1, - anon_sym_EQ, - STATE(7833), 1, + ACTIONS(12054), 1, + sym_raw_string_content, + STATE(7287), 1, sym_comment, - [235709] = 3, + [220279] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12456), 1, - sym_raw_string_end, - STATE(7834), 1, + ACTIONS(6112), 1, + anon_sym_LBRACK2, + STATE(7288), 1, sym_comment, - [235719] = 3, + [220289] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12458), 1, - sym_raw_string_content, - STATE(7835), 1, + ACTIONS(535), 1, + ts_builtin_sym_end, + STATE(7289), 1, sym_comment, - [235729] = 3, + [220299] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2292), 1, - anon_sym_LBRACK2, - STATE(7836), 1, + ACTIONS(12056), 1, + anon_sym_RBRACE, + STATE(7290), 1, sym_comment, - [235739] = 3, + [220309] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12460), 1, - sym_identifier, - STATE(7837), 1, + ACTIONS(12058), 1, + anon_sym_RBRACE, + STATE(7291), 1, sym_comment, - [235749] = 3, + [220319] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12462), 1, - sym_raw_string_end, - STATE(7838), 1, + ACTIONS(12060), 1, + anon_sym_RBRACK, + STATE(7292), 1, sym_comment, - [235759] = 3, + [220329] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12464), 1, - anon_sym_GT2, - STATE(7839), 1, + ACTIONS(12062), 1, + sym_raw_string_end, + STATE(7293), 1, sym_comment, - [235769] = 3, + [220339] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12466), 1, - anon_sym_RBRACK, - STATE(7840), 1, + ACTIONS(12064), 1, + anon_sym_RPAREN, + STATE(7294), 1, sym_comment, - [235779] = 3, + [220349] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12468), 1, - anon_sym_RPAREN, - STATE(7841), 1, + ACTIONS(12066), 1, + sym_raw_string_content, + STATE(7295), 1, sym_comment, - [235789] = 3, + [220359] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12470), 1, - anon_sym_GT2, - STATE(7842), 1, + ACTIONS(9687), 1, + anon_sym_LBRACK2, + STATE(7296), 1, sym_comment, - [235799] = 3, + [220369] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12472), 1, + ACTIONS(12068), 1, anon_sym_RPAREN, - STATE(7843), 1, + STATE(7297), 1, sym_comment, - [235809] = 3, + [220379] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12474), 1, - anon_sym_RPAREN, - STATE(7844), 1, + ACTIONS(12070), 1, + anon_sym_EQ, + STATE(7298), 1, sym_comment, - [235819] = 3, + [220389] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12476), 1, - sym_raw_string_content, - STATE(7845), 1, + ACTIONS(12072), 1, + sym_identifier, + STATE(7299), 1, sym_comment, - [235829] = 3, + [220399] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12478), 1, + ACTIONS(12074), 1, sym_raw_string_end, - STATE(7846), 1, + STATE(7300), 1, sym_comment, - [235839] = 3, + [220409] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12480), 1, - sym_identifier, - STATE(7847), 1, + ACTIONS(12076), 1, + sym__table_head_separator, + STATE(7301), 1, + sym_comment, + [220419] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(12078), 1, + sym__space, + STATE(7302), 1, sym_comment, - [235849] = 3, + [220429] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12482), 1, - sym__table_head_separator, - STATE(7848), 1, + ACTIONS(12080), 1, + sym_raw_string_content, + STATE(7303), 1, sym_comment, - [235859] = 3, + [220439] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12484), 1, - anon_sym_RBRACE, - STATE(7849), 1, + ACTIONS(2388), 1, + anon_sym_LBRACK2, + STATE(7304), 1, sym_comment, - [235869] = 3, + [220449] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(1593), 1, - aux_sym__unquoted_in_record_token2, - STATE(7850), 1, + ACTIONS(12082), 1, + anon_sym_RBRACE, + STATE(7305), 1, sym_comment, - [235879] = 3, + [220459] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12486), 1, + ACTIONS(12084), 1, aux_sym_cmd_identifier_token41, - STATE(7851), 1, + STATE(7306), 1, sym_comment, - [235889] = 3, + [220469] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12488), 1, + ACTIONS(12086), 1, sym_raw_string_end, - STATE(7852), 1, - sym_comment, - [235899] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(12490), 1, - anon_sym_make, - STATE(7853), 1, + STATE(7307), 1, sym_comment, - [235909] = 3, + [220479] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12492), 1, + ACTIONS(12088), 1, sym_raw_string_content, - STATE(7854), 1, + STATE(7308), 1, sym_comment, - [235919] = 3, + [220489] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12494), 1, - anon_sym_RBRACE, - STATE(7855), 1, + ACTIONS(2232), 1, + anon_sym_LBRACK2, + STATE(7309), 1, sym_comment, - [235929] = 3, + [220499] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12496), 1, - anon_sym_RPAREN, - STATE(7856), 1, + ACTIONS(1885), 1, + sym__table_head_separator, + STATE(7310), 1, sym_comment, - [235939] = 3, - ACTIONS(245), 1, + [220509] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12498), 1, - sym_raw_string_end, - STATE(7857), 1, + ACTIONS(12090), 1, + aux_sym_comment_token1, + STATE(7311), 1, sym_comment, - [235949] = 3, + [220519] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12500), 1, - anon_sym_RBRACE, - STATE(7858), 1, + ACTIONS(11708), 1, + anon_sym_LBRACE, + STATE(7312), 1, sym_comment, - [235959] = 3, + [220529] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(4691), 1, - aux_sym_unquoted_token2, - STATE(7859), 1, + ACTIONS(12092), 1, + sym_raw_string_content, + STATE(7313), 1, sym_comment, - [235969] = 3, - ACTIONS(245), 1, + [220539] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12502), 1, - anon_sym_EQ, - STATE(7860), 1, + ACTIONS(5760), 1, + aux_sym__unquoted_in_list_token4, + STATE(7314), 1, sym_comment, - [235979] = 3, + [220549] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12504), 1, - anon_sym_RPAREN, - STATE(7861), 1, + ACTIONS(3342), 1, + anon_sym_COLON2, + STATE(7315), 1, sym_comment, - [235989] = 3, + [220559] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12506), 1, - sym_raw_string_end, - STATE(7862), 1, + ACTIONS(12094), 1, + anon_sym_RBRACE, + STATE(7316), 1, sym_comment, - [235999] = 3, + [220569] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12508), 1, + ACTIONS(12096), 1, sym_raw_string_content, - STATE(7863), 1, + STATE(7317), 1, sym_comment, - [236009] = 3, - ACTIONS(245), 1, + [220579] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12510), 1, - sym_raw_string_end, - STATE(7864), 1, + ACTIONS(11539), 1, + aux_sym__record_key_token1, + STATE(7318), 1, sym_comment, - [236019] = 3, + [220589] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12512), 1, - anon_sym_RBRACK, - STATE(7865), 1, + ACTIONS(1717), 1, + aux_sym__unquoted_in_record_token2, + STATE(7319), 1, sym_comment, - [236029] = 3, + [220599] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12514), 1, - anon_sym_RBRACE, - STATE(7866), 1, + ACTIONS(12098), 1, + anon_sym_LBRACE, + STATE(7320), 1, sym_comment, - [236039] = 3, + [220609] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12516), 1, - anon_sym_RPAREN, - STATE(7867), 1, - sym_comment, - [236049] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12518), 1, - aux_sym_shebang_token1, - STATE(7868), 1, + ACTIONS(12100), 1, + sym_raw_string_content, + STATE(7321), 1, sym_comment, - [236059] = 3, + [220619] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12520), 1, - anon_sym_RPAREN, - STATE(7869), 1, + ACTIONS(12098), 1, + anon_sym_LBRACE, + STATE(7322), 1, sym_comment, - [236069] = 3, + [220629] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12522), 1, - anon_sym_RBRACE, - STATE(7870), 1, + ACTIONS(12102), 1, + anon_sym_DASH_GT, + STATE(7323), 1, sym_comment, - [236079] = 3, + [220639] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12524), 1, + ACTIONS(12104), 1, sym_raw_string_end, - STATE(7871), 1, + STATE(7324), 1, sym_comment, - [236089] = 3, + [220649] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12526), 1, + ACTIONS(12106), 1, sym_raw_string_content, - STATE(7872), 1, + STATE(7325), 1, sym_comment, - [236099] = 3, + [220659] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12528), 1, + ACTIONS(12108), 1, sym_raw_string_content, - STATE(7873), 1, + STATE(7326), 1, sym_comment, - [236109] = 3, + [220669] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12530), 1, + ACTIONS(12110), 1, sym_raw_string_content, - STATE(7874), 1, + STATE(7327), 1, sym_comment, - [236119] = 3, + [220679] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12532), 1, + ACTIONS(12112), 1, sym_raw_string_content, - STATE(7875), 1, + STATE(7328), 1, sym_comment, - [236129] = 3, + [220689] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12534), 1, + ACTIONS(12114), 1, sym_raw_string_content, - STATE(7876), 1, + STATE(7329), 1, sym_comment, - [236139] = 3, + [220699] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12536), 1, + ACTIONS(12116), 1, sym_raw_string_content, - STATE(7877), 1, + STATE(7330), 1, sym_comment, - [236149] = 3, + [220709] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12538), 1, + ACTIONS(12118), 1, sym_raw_string_content, - STATE(7878), 1, + STATE(7331), 1, sym_comment, - [236159] = 3, + [220719] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12540), 1, + ACTIONS(12120), 1, sym_raw_string_content, - STATE(7879), 1, + STATE(7332), 1, sym_comment, - [236169] = 3, + [220729] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12542), 1, + ACTIONS(12122), 1, sym_raw_string_content, - STATE(7880), 1, + STATE(7333), 1, sym_comment, - [236179] = 3, + [220739] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12544), 1, + ACTIONS(12124), 1, sym_raw_string_content, - STATE(7881), 1, + STATE(7334), 1, sym_comment, - [236189] = 3, + [220749] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12546), 1, + ACTIONS(12126), 1, sym_raw_string_content, - STATE(7882), 1, + STATE(7335), 1, sym_comment, - [236199] = 3, + [220759] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12548), 1, + ACTIONS(12128), 1, sym_raw_string_content, - STATE(7883), 1, + STATE(7336), 1, sym_comment, - [236209] = 3, + [220769] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12550), 1, + ACTIONS(12130), 1, sym_raw_string_content, - STATE(7884), 1, + STATE(7337), 1, sym_comment, - [236219] = 3, + [220779] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12552), 1, + ACTIONS(12132), 1, sym_raw_string_content, - STATE(7885), 1, + STATE(7338), 1, sym_comment, - [236229] = 3, + [220789] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12554), 1, + ACTIONS(12134), 1, sym_raw_string_content, - STATE(7886), 1, + STATE(7339), 1, sym_comment, - [236239] = 3, + [220799] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12556), 1, + ACTIONS(12136), 1, sym_raw_string_content, - STATE(7887), 1, + STATE(7340), 1, sym_comment, - [236249] = 3, + [220809] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12558), 1, + ACTIONS(12138), 1, sym_raw_string_content, - STATE(7888), 1, + STATE(7341), 1, sym_comment, - [236259] = 3, + [220819] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12560), 1, + ACTIONS(12140), 1, sym_raw_string_content, - STATE(7889), 1, + STATE(7342), 1, sym_comment, - [236269] = 3, + [220829] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12562), 1, + ACTIONS(12142), 1, sym_raw_string_content, - STATE(7890), 1, + STATE(7343), 1, sym_comment, - [236279] = 3, + [220839] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12564), 1, + ACTIONS(12144), 1, sym_raw_string_content, - STATE(7891), 1, + STATE(7344), 1, sym_comment, - [236289] = 3, + [220849] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12566), 1, + ACTIONS(12146), 1, sym_raw_string_content, - STATE(7892), 1, + STATE(7345), 1, sym_comment, - [236299] = 3, + [220859] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12568), 1, - anon_sym_RBRACE, - STATE(7893), 1, + ACTIONS(6163), 1, + aux_sym_unquoted_token2, + STATE(7346), 1, sym_comment, - [236309] = 3, + [220869] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12000), 1, + ACTIONS(11537), 1, anon_sym_LPAREN2, - STATE(7894), 1, - sym_comment, - [236319] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(9073), 1, - aux_sym__unquoted_in_record_token2, - STATE(7895), 1, + STATE(7347), 1, sym_comment, - [236329] = 3, + [220879] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12570), 1, - anon_sym_LBRACE, - STATE(7896), 1, + ACTIONS(12148), 1, + sym_raw_string_end, + STATE(7348), 1, sym_comment, - [236339] = 3, + [220889] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1967), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7897), 1, + ACTIONS(1993), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7349), 1, sym_comment, - [236349] = 3, + [220899] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12572), 1, - anon_sym_LBRACE, - STATE(7898), 1, + ACTIONS(12150), 1, + anon_sym_RBRACK, + STATE(7350), 1, sym_comment, - [236359] = 3, + [220909] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12574), 1, - sym_raw_string_end, - STATE(7899), 1, + ACTIONS(12152), 1, + anon_sym_RPAREN, + STATE(7351), 1, sym_comment, - [236369] = 3, + [220919] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(2065), 1, - aux_sym_unquoted_token2, - STATE(7900), 1, + ACTIONS(8903), 1, + aux_sym__unquoted_in_record_token2, + STATE(7352), 1, sym_comment, - [236379] = 3, + [220929] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12576), 1, + ACTIONS(12154), 1, anon_sym_RBRACE, - STATE(7901), 1, + STATE(7353), 1, sym_comment, - [236389] = 3, + [220939] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7288), 1, - aux_sym__unquoted_in_record_token2, - STATE(7902), 1, + ACTIONS(12156), 1, + anon_sym_RBRACE, + STATE(7354), 1, sym_comment, - [236399] = 3, + [220949] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12578), 1, + ACTIONS(12158), 1, anon_sym_in2, - STATE(7903), 1, + STATE(7355), 1, sym_comment, - [236409] = 3, + [220959] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12580), 1, + ACTIONS(12160), 1, anon_sym_RPAREN, - STATE(7904), 1, + STATE(7356), 1, sym_comment, - [236419] = 3, + [220969] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7128), 1, - aux_sym_unquoted_token2, - STATE(7905), 1, + ACTIONS(12162), 1, + anon_sym_RBRACE, + STATE(7357), 1, sym_comment, - [236429] = 3, + [220979] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12582), 1, - sym__table_head_separator, - STATE(7906), 1, + ACTIONS(12164), 1, + anon_sym_RBRACE, + STATE(7358), 1, sym_comment, - [236439] = 3, + [220989] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7221), 1, + ACTIONS(7137), 1, aux_sym_unquoted_token2, - STATE(7907), 1, + STATE(7359), 1, sym_comment, - [236449] = 3, - ACTIONS(3), 1, + [220999] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(7128), 1, - aux_sym_unquoted_token4, - STATE(7908), 1, + ACTIONS(12166), 1, + anon_sym_def, + STATE(7360), 1, sym_comment, - [236459] = 3, + [221009] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9061), 1, + ACTIONS(6163), 1, aux_sym_unquoted_token4, - STATE(7909), 1, + STATE(7361), 1, sym_comment, - [236469] = 3, + [221019] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12584), 1, + ACTIONS(12168), 1, anon_sym_RBRACK, - STATE(7910), 1, + STATE(7362), 1, sym_comment, - [236479] = 3, + [221029] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12586), 1, - sym__space, - STATE(7911), 1, - sym_comment, - [236489] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(12588), 1, - anon_sym_RPAREN, - STATE(7912), 1, + ACTIONS(12170), 1, + aux_sym_cmd_identifier_token41, + STATE(7363), 1, sym_comment, - [236499] = 3, + [221039] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12590), 1, + ACTIONS(12172), 1, anon_sym_RBRACE, - STATE(7913), 1, - sym_comment, - [236509] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2192), 1, - aux_sym_unquoted_token4, - STATE(7914), 1, + STATE(7364), 1, sym_comment, - [236519] = 3, + [221049] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12592), 1, - anon_sym_RBRACE, - STATE(7915), 1, + ACTIONS(12174), 1, + anon_sym_RPAREN, + STATE(7365), 1, sym_comment, - [236529] = 3, + [221059] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12594), 1, + ACTIONS(12176), 1, anon_sym_RBRACE, - STATE(7916), 1, - sym_comment, - [236539] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(12596), 1, - anon_sym_EQ, - STATE(7917), 1, - sym_comment, - [236549] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(12598), 1, - anon_sym_LBRACE, - STATE(7918), 1, + STATE(7366), 1, sym_comment, - [236559] = 3, + [221069] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12600), 1, - anon_sym_RBRACE, - STATE(7919), 1, + ACTIONS(12178), 1, + sym_identifier, + STATE(7367), 1, sym_comment, - [236569] = 3, - ACTIONS(245), 1, + [221079] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12602), 1, - sym_identifier, - STATE(7920), 1, + ACTIONS(1993), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7368), 1, sym_comment, - [236579] = 3, + [221089] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12604), 1, - sym_raw_string_end, - STATE(7921), 1, + ACTIONS(12180), 1, + anon_sym_RPAREN, + STATE(7369), 1, sym_comment, - [236589] = 3, + [221099] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12606), 1, - sym_raw_string_end, - STATE(7922), 1, + ACTIONS(12182), 1, + anon_sym_COLON2, + STATE(7370), 1, sym_comment, - [236599] = 3, + [221109] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12608), 1, + ACTIONS(12184), 1, sym_raw_string_end, - STATE(7923), 1, + STATE(7371), 1, sym_comment, - [236609] = 3, + [221119] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12610), 1, - anon_sym_LBRACE, - STATE(7924), 1, + ACTIONS(12186), 1, + anon_sym_RBRACE, + STATE(7372), 1, sym_comment, - [236619] = 3, + [221129] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12612), 1, - anon_sym_LBRACE, - STATE(7925), 1, - sym_comment, - [236629] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12614), 1, - aux_sym_cmd_identifier_token41, - STATE(7926), 1, + ACTIONS(12188), 1, + anon_sym_RBRACE, + STATE(7373), 1, sym_comment, - [236639] = 3, + [221139] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12616), 1, - sym__space, - STATE(7927), 1, - sym_comment, - [236649] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(12618), 1, - anon_sym_EQ_GT, - STATE(7928), 1, - sym_comment, - [236659] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(12620), 1, - anon_sym_RBRACK, - STATE(7929), 1, - sym_comment, - [236669] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(12622), 1, - sym_identifier, - STATE(7930), 1, - sym_comment, - [236679] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(523), 1, - ts_builtin_sym_end, - STATE(7931), 1, + ACTIONS(12190), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7374), 1, sym_comment, - [236689] = 3, + [221149] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12624), 1, - anon_sym_LBRACE, - STATE(7932), 1, + ACTIONS(12192), 1, + anon_sym_RPAREN, + STATE(7375), 1, sym_comment, - [236699] = 3, + [221159] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(5552), 1, + ACTIONS(5490), 1, aux_sym__unquoted_in_list_token2, - STATE(7933), 1, + STATE(7376), 1, sym_comment, - [236709] = 3, - ACTIONS(3), 1, + [221169] = 3, + ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(9997), 1, - aux_sym_unquoted_token4, - STATE(7934), 1, + ACTIONS(12194), 1, + anon_sym_RPAREN, + STATE(7377), 1, sym_comment, - [236719] = 3, + [221179] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12626), 1, + ACTIONS(12196), 1, aux_sym_cmd_identifier_token41, - STATE(7935), 1, + STATE(7378), 1, sym_comment, - [236729] = 3, + [221189] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12628), 1, - anon_sym_EQ, - STATE(7936), 1, + ACTIONS(11007), 1, + anon_sym_EQ_GT, + STATE(7379), 1, sym_comment, - [236739] = 3, + [221199] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12630), 1, + ACTIONS(12198), 1, sym_raw_string_end, - STATE(7937), 1, - sym_comment, - [236749] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12632), 1, - aux_sym_cmd_identifier_token41, - STATE(7938), 1, - sym_comment, - [236759] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(12634), 1, - anon_sym_RBRACE, - STATE(7939), 1, + STATE(7380), 1, sym_comment, - [236769] = 3, + [221209] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12636), 1, + ACTIONS(12200), 1, anon_sym_EQ, - STATE(7940), 1, - sym_comment, - [236779] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(12638), 1, - anon_sym_RBRACE, - STATE(7941), 1, - sym_comment, - [236789] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(12640), 1, - sym_raw_string_end, - STATE(7942), 1, + STATE(7381), 1, sym_comment, - [236799] = 3, + [221219] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12642), 1, + ACTIONS(12202), 1, anon_sym_RBRACE, - STATE(7943), 1, - sym_comment, - [236809] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(12644), 1, - anon_sym_RPAREN, - STATE(7944), 1, - sym_comment, - [236819] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(12646), 1, - anon_sym_LBRACE, - STATE(7945), 1, - sym_comment, - [236829] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(12648), 1, - anon_sym_RBRACK, - STATE(7946), 1, - sym_comment, - [236839] = 3, - ACTIONS(245), 1, - anon_sym_POUND, - ACTIONS(12650), 1, - anon_sym_RPAREN, - STATE(7947), 1, + STATE(7382), 1, sym_comment, - [236849] = 3, + [221229] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12652), 1, + ACTIONS(12204), 1, anon_sym_def, - STATE(7948), 1, + STATE(7383), 1, sym_comment, - [236859] = 3, + [221239] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12654), 1, - anon_sym_RPAREN, - STATE(7949), 1, + ACTIONS(12206), 1, + anon_sym_RBRACE, + STATE(7384), 1, sym_comment, - [236869] = 3, + [221249] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12656), 1, + ACTIONS(12208), 1, anon_sym_RBRACE, - STATE(7950), 1, + STATE(7385), 1, sym_comment, - [236879] = 3, + [221259] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12658), 1, - anon_sym_RBRACK, - STATE(7951), 1, + ACTIONS(12210), 1, + sym_raw_string_end, + STATE(7386), 1, sym_comment, - [236889] = 3, + [221269] = 3, ACTIONS(245), 1, anon_sym_POUND, - ACTIONS(12660), 1, - anon_sym_RBRACE, - STATE(7952), 1, + ACTIONS(12212), 1, + anon_sym_RPAREN, + STATE(7387), 1, sym_comment, - [236899] = 1, - ACTIONS(12662), 1, + [221279] = 1, + ACTIONS(12214), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1749)] = 0, - [SMALL_STATE(1750)] = 73, - [SMALL_STATE(1751)] = 152, - [SMALL_STATE(1752)] = 231, - [SMALL_STATE(1753)] = 304, - [SMALL_STATE(1754)] = 377, - [SMALL_STATE(1755)] = 450, - [SMALL_STATE(1756)] = 523, - [SMALL_STATE(1757)] = 596, - [SMALL_STATE(1758)] = 669, - [SMALL_STATE(1759)] = 742, - [SMALL_STATE(1760)] = 815, - [SMALL_STATE(1761)] = 888, - [SMALL_STATE(1762)] = 961, - [SMALL_STATE(1763)] = 1034, - [SMALL_STATE(1764)] = 1107, - [SMALL_STATE(1765)] = 1182, - [SMALL_STATE(1766)] = 1261, - [SMALL_STATE(1767)] = 1334, - [SMALL_STATE(1768)] = 1407, - [SMALL_STATE(1769)] = 1480, - [SMALL_STATE(1770)] = 1553, - [SMALL_STATE(1771)] = 1626, - [SMALL_STATE(1772)] = 1707, - [SMALL_STATE(1773)] = 1786, - [SMALL_STATE(1774)] = 1859, - [SMALL_STATE(1775)] = 1962, - [SMALL_STATE(1776)] = 2045, - [SMALL_STATE(1777)] = 2122, - [SMALL_STATE(1778)] = 2203, - [SMALL_STATE(1779)] = 2284, - [SMALL_STATE(1780)] = 2365, - [SMALL_STATE(1781)] = 2444, - [SMALL_STATE(1782)] = 2517, - [SMALL_STATE(1783)] = 2598, - [SMALL_STATE(1784)] = 2677, - [SMALL_STATE(1785)] = 2750, - [SMALL_STATE(1786)] = 2823, - [SMALL_STATE(1787)] = 2896, - [SMALL_STATE(1788)] = 2969, - [SMALL_STATE(1789)] = 3048, - [SMALL_STATE(1790)] = 3127, - [SMALL_STATE(1791)] = 3200, - [SMALL_STATE(1792)] = 3273, - [SMALL_STATE(1793)] = 3354, - [SMALL_STATE(1794)] = 3427, - [SMALL_STATE(1795)] = 3506, - [SMALL_STATE(1796)] = 3609, - [SMALL_STATE(1797)] = 3682, - [SMALL_STATE(1798)] = 3755, - [SMALL_STATE(1799)] = 3828, - [SMALL_STATE(1800)] = 3907, - [SMALL_STATE(1801)] = 3986, - [SMALL_STATE(1802)] = 4059, - [SMALL_STATE(1803)] = 4132, - [SMALL_STATE(1804)] = 4235, - [SMALL_STATE(1805)] = 4308, - [SMALL_STATE(1806)] = 4381, - [SMALL_STATE(1807)] = 4460, - [SMALL_STATE(1808)] = 4567, - [SMALL_STATE(1809)] = 4640, - [SMALL_STATE(1810)] = 4713, - [SMALL_STATE(1811)] = 4786, - [SMALL_STATE(1812)] = 4859, - [SMALL_STATE(1813)] = 4932, - [SMALL_STATE(1814)] = 5005, - [SMALL_STATE(1815)] = 5078, - [SMALL_STATE(1816)] = 5159, - [SMALL_STATE(1817)] = 5240, - [SMALL_STATE(1818)] = 5323, - [SMALL_STATE(1819)] = 5396, - [SMALL_STATE(1820)] = 5469, - [SMALL_STATE(1821)] = 5542, - [SMALL_STATE(1822)] = 5615, - [SMALL_STATE(1823)] = 5688, - [SMALL_STATE(1824)] = 5761, - [SMALL_STATE(1825)] = 5834, - [SMALL_STATE(1826)] = 5907, - [SMALL_STATE(1827)] = 5980, - [SMALL_STATE(1828)] = 6087, - [SMALL_STATE(1829)] = 6160, - [SMALL_STATE(1830)] = 6233, - [SMALL_STATE(1831)] = 6312, - [SMALL_STATE(1832)] = 6385, - [SMALL_STATE(1833)] = 6458, - [SMALL_STATE(1834)] = 6535, - [SMALL_STATE(1835)] = 6608, - [SMALL_STATE(1836)] = 6681, - [SMALL_STATE(1837)] = 6754, - [SMALL_STATE(1838)] = 6827, - [SMALL_STATE(1839)] = 6900, - [SMALL_STATE(1840)] = 6979, - [SMALL_STATE(1841)] = 7052, - [SMALL_STATE(1842)] = 7125, - [SMALL_STATE(1843)] = 7198, - [SMALL_STATE(1844)] = 7271, - [SMALL_STATE(1845)] = 7344, - [SMALL_STATE(1846)] = 7417, - [SMALL_STATE(1847)] = 7490, - [SMALL_STATE(1848)] = 7565, - [SMALL_STATE(1849)] = 7638, - [SMALL_STATE(1850)] = 7711, - [SMALL_STATE(1851)] = 7790, - [SMALL_STATE(1852)] = 7869, - [SMALL_STATE(1853)] = 7942, - [SMALL_STATE(1854)] = 8015, - [SMALL_STATE(1855)] = 8090, - [SMALL_STATE(1856)] = 8165, - [SMALL_STATE(1857)] = 8238, - [SMALL_STATE(1858)] = 8317, - [SMALL_STATE(1859)] = 8390, - [SMALL_STATE(1860)] = 8469, - [SMALL_STATE(1861)] = 8542, - [SMALL_STATE(1862)] = 8615, - [SMALL_STATE(1863)] = 8694, - [SMALL_STATE(1864)] = 8773, - [SMALL_STATE(1865)] = 8846, - [SMALL_STATE(1866)] = 8925, - [SMALL_STATE(1867)] = 9004, - [SMALL_STATE(1868)] = 9083, - [SMALL_STATE(1869)] = 9162, - [SMALL_STATE(1870)] = 9241, - [SMALL_STATE(1871)] = 9320, - [SMALL_STATE(1872)] = 9393, - [SMALL_STATE(1873)] = 9472, - [SMALL_STATE(1874)] = 9551, - [SMALL_STATE(1875)] = 9624, - [SMALL_STATE(1876)] = 9703, - [SMALL_STATE(1877)] = 9782, - [SMALL_STATE(1878)] = 9863, - [SMALL_STATE(1879)] = 9936, - [SMALL_STATE(1880)] = 10009, - [SMALL_STATE(1881)] = 10088, - [SMALL_STATE(1882)] = 10161, - [SMALL_STATE(1883)] = 10234, - [SMALL_STATE(1884)] = 10313, - [SMALL_STATE(1885)] = 10392, - [SMALL_STATE(1886)] = 10465, - [SMALL_STATE(1887)] = 10544, - [SMALL_STATE(1888)] = 10619, - [SMALL_STATE(1889)] = 10698, - [SMALL_STATE(1890)] = 10773, - [SMALL_STATE(1891)] = 10846, - [SMALL_STATE(1892)] = 10925, - [SMALL_STATE(1893)] = 10998, - [SMALL_STATE(1894)] = 11073, - [SMALL_STATE(1895)] = 11152, - [SMALL_STATE(1896)] = 11225, - [SMALL_STATE(1897)] = 11298, - [SMALL_STATE(1898)] = 11371, - [SMALL_STATE(1899)] = 11450, - [SMALL_STATE(1900)] = 11523, - [SMALL_STATE(1901)] = 11602, - [SMALL_STATE(1902)] = 11675, - [SMALL_STATE(1903)] = 11748, - [SMALL_STATE(1904)] = 11829, - [SMALL_STATE(1905)] = 11910, - [SMALL_STATE(1906)] = 11983, - [SMALL_STATE(1907)] = 12064, - [SMALL_STATE(1908)] = 12145, - [SMALL_STATE(1909)] = 12218, - [SMALL_STATE(1910)] = 12299, - [SMALL_STATE(1911)] = 12380, - [SMALL_STATE(1912)] = 12453, - [SMALL_STATE(1913)] = 12534, - [SMALL_STATE(1914)] = 12607, - [SMALL_STATE(1915)] = 12680, - [SMALL_STATE(1916)] = 12753, - [SMALL_STATE(1917)] = 12832, - [SMALL_STATE(1918)] = 12911, - [SMALL_STATE(1919)] = 12984, - [SMALL_STATE(1920)] = 13091, - [SMALL_STATE(1921)] = 13172, - [SMALL_STATE(1922)] = 13253, - [SMALL_STATE(1923)] = 13332, - [SMALL_STATE(1924)] = 13405, - [SMALL_STATE(1925)] = 13478, - [SMALL_STATE(1926)] = 13551, - [SMALL_STATE(1927)] = 13624, - [SMALL_STATE(1928)] = 13699, - [SMALL_STATE(1929)] = 13772, - [SMALL_STATE(1930)] = 13845, - [SMALL_STATE(1931)] = 13922, - [SMALL_STATE(1932)] = 13997, - [SMALL_STATE(1933)] = 14076, - [SMALL_STATE(1934)] = 14151, - [SMALL_STATE(1935)] = 14226, - [SMALL_STATE(1936)] = 14299, - [SMALL_STATE(1937)] = 14372, - [SMALL_STATE(1938)] = 14445, - [SMALL_STATE(1939)] = 14518, - [SMALL_STATE(1940)] = 14591, - [SMALL_STATE(1941)] = 14664, - [SMALL_STATE(1942)] = 14743, - [SMALL_STATE(1943)] = 14816, - [SMALL_STATE(1944)] = 14889, - [SMALL_STATE(1945)] = 14972, - [SMALL_STATE(1946)] = 15045, - [SMALL_STATE(1947)] = 15118, - [SMALL_STATE(1948)] = 15191, - [SMALL_STATE(1949)] = 15270, - [SMALL_STATE(1950)] = 15343, - [SMALL_STATE(1951)] = 15416, - [SMALL_STATE(1952)] = 15489, - [SMALL_STATE(1953)] = 15562, - [SMALL_STATE(1954)] = 15635, - [SMALL_STATE(1955)] = 15708, - [SMALL_STATE(1956)] = 15781, - [SMALL_STATE(1957)] = 15854, - [SMALL_STATE(1958)] = 15929, - [SMALL_STATE(1959)] = 16002, - [SMALL_STATE(1960)] = 16079, - [SMALL_STATE(1961)] = 16158, - [SMALL_STATE(1962)] = 16233, - [SMALL_STATE(1963)] = 16314, - [SMALL_STATE(1964)] = 16387, - [SMALL_STATE(1965)] = 16460, - [SMALL_STATE(1966)] = 16533, - [SMALL_STATE(1967)] = 16612, - [SMALL_STATE(1968)] = 16693, - [SMALL_STATE(1969)] = 16766, - [SMALL_STATE(1970)] = 16839, - [SMALL_STATE(1971)] = 16918, - [SMALL_STATE(1972)] = 16991, - [SMALL_STATE(1973)] = 17064, - [SMALL_STATE(1974)] = 17143, - [SMALL_STATE(1975)] = 17224, - [SMALL_STATE(1976)] = 17305, - [SMALL_STATE(1977)] = 17378, - [SMALL_STATE(1978)] = 17451, - [SMALL_STATE(1979)] = 17530, - [SMALL_STATE(1980)] = 17609, - [SMALL_STATE(1981)] = 17682, - [SMALL_STATE(1982)] = 17755, - [SMALL_STATE(1983)] = 17834, - [SMALL_STATE(1984)] = 17906, - [SMALL_STATE(1985)] = 17978, - [SMALL_STATE(1986)] = 18050, - [SMALL_STATE(1987)] = 18122, - [SMALL_STATE(1988)] = 18194, - [SMALL_STATE(1989)] = 18266, - [SMALL_STATE(1990)] = 18338, - [SMALL_STATE(1991)] = 18410, - [SMALL_STATE(1992)] = 18482, - [SMALL_STATE(1993)] = 18554, - [SMALL_STATE(1994)] = 18626, - [SMALL_STATE(1995)] = 18698, - [SMALL_STATE(1996)] = 18770, - [SMALL_STATE(1997)] = 18842, - [SMALL_STATE(1998)] = 18914, - [SMALL_STATE(1999)] = 18986, - [SMALL_STATE(2000)] = 19058, - [SMALL_STATE(2001)] = 19130, - [SMALL_STATE(2002)] = 19202, - [SMALL_STATE(2003)] = 19274, - [SMALL_STATE(2004)] = 19346, - [SMALL_STATE(2005)] = 19418, - [SMALL_STATE(2006)] = 19490, - [SMALL_STATE(2007)] = 19562, - [SMALL_STATE(2008)] = 19634, - [SMALL_STATE(2009)] = 19710, - [SMALL_STATE(2010)] = 19782, - [SMALL_STATE(2011)] = 19854, - [SMALL_STATE(2012)] = 19926, - [SMALL_STATE(2013)] = 19998, - [SMALL_STATE(2014)] = 20070, - [SMALL_STATE(2015)] = 20142, - [SMALL_STATE(2016)] = 20214, - [SMALL_STATE(2017)] = 20286, - [SMALL_STATE(2018)] = 20358, - [SMALL_STATE(2019)] = 20430, - [SMALL_STATE(2020)] = 20502, - [SMALL_STATE(2021)] = 20574, - [SMALL_STATE(2022)] = 20646, - [SMALL_STATE(2023)] = 20718, - [SMALL_STATE(2024)] = 20790, - [SMALL_STATE(2025)] = 20862, - [SMALL_STATE(2026)] = 21004, - [SMALL_STATE(2027)] = 21076, - [SMALL_STATE(2028)] = 21148, - [SMALL_STATE(2029)] = 21220, - [SMALL_STATE(2030)] = 21292, - [SMALL_STATE(2031)] = 21364, - [SMALL_STATE(2032)] = 21436, - [SMALL_STATE(2033)] = 21508, - [SMALL_STATE(2034)] = 21580, - [SMALL_STATE(2035)] = 21652, - [SMALL_STATE(2036)] = 21724, - [SMALL_STATE(2037)] = 21796, - [SMALL_STATE(2038)] = 21868, - [SMALL_STATE(2039)] = 21940, - [SMALL_STATE(2040)] = 22012, - [SMALL_STATE(2041)] = 22084, - [SMALL_STATE(2042)] = 22156, - [SMALL_STATE(2043)] = 22228, - [SMALL_STATE(2044)] = 22300, - [SMALL_STATE(2045)] = 22372, - [SMALL_STATE(2046)] = 22444, - [SMALL_STATE(2047)] = 22516, - [SMALL_STATE(2048)] = 22588, - [SMALL_STATE(2049)] = 22660, - [SMALL_STATE(2050)] = 22732, - [SMALL_STATE(2051)] = 22804, - [SMALL_STATE(2052)] = 22876, - [SMALL_STATE(2053)] = 22948, - [SMALL_STATE(2054)] = 23020, - [SMALL_STATE(2055)] = 23092, - [SMALL_STATE(2056)] = 23164, - [SMALL_STATE(2057)] = 23236, - [SMALL_STATE(2058)] = 23308, - [SMALL_STATE(2059)] = 23380, - [SMALL_STATE(2060)] = 23452, - [SMALL_STATE(2061)] = 23524, - [SMALL_STATE(2062)] = 23596, - [SMALL_STATE(2063)] = 23738, - [SMALL_STATE(2064)] = 23814, - [SMALL_STATE(2065)] = 23890, - [SMALL_STATE(2066)] = 23962, - [SMALL_STATE(2067)] = 24034, - [SMALL_STATE(2068)] = 24176, - [SMALL_STATE(2069)] = 24248, - [SMALL_STATE(2070)] = 24320, - [SMALL_STATE(2071)] = 24396, - [SMALL_STATE(2072)] = 24468, - [SMALL_STATE(2073)] = 24544, - [SMALL_STATE(2074)] = 24616, - [SMALL_STATE(2075)] = 24692, - [SMALL_STATE(2076)] = 24768, - [SMALL_STATE(2077)] = 24840, - [SMALL_STATE(2078)] = 24912, - [SMALL_STATE(2079)] = 24984, - [SMALL_STATE(2080)] = 25056, - [SMALL_STATE(2081)] = 25128, - [SMALL_STATE(2082)] = 25200, - [SMALL_STATE(2083)] = 25272, - [SMALL_STATE(2084)] = 25348, - [SMALL_STATE(2085)] = 25424, - [SMALL_STATE(2086)] = 25496, - [SMALL_STATE(2087)] = 25570, - [SMALL_STATE(2088)] = 25642, - [SMALL_STATE(2089)] = 25714, - [SMALL_STATE(2090)] = 25786, - [SMALL_STATE(2091)] = 25862, - [SMALL_STATE(2092)] = 25934, - [SMALL_STATE(2093)] = 26006, - [SMALL_STATE(2094)] = 26148, - [SMALL_STATE(2095)] = 26220, - [SMALL_STATE(2096)] = 26296, - [SMALL_STATE(2097)] = 26372, - [SMALL_STATE(2098)] = 26444, - [SMALL_STATE(2099)] = 26524, - [SMALL_STATE(2100)] = 26596, - [SMALL_STATE(2101)] = 26672, - [SMALL_STATE(2102)] = 26744, - [SMALL_STATE(2103)] = 26820, - [SMALL_STATE(2104)] = 26896, - [SMALL_STATE(2105)] = 26968, - [SMALL_STATE(2106)] = 27040, - [SMALL_STATE(2107)] = 27116, - [SMALL_STATE(2108)] = 27188, - [SMALL_STATE(2109)] = 27260, - [SMALL_STATE(2110)] = 27332, - [SMALL_STATE(2111)] = 27404, - [SMALL_STATE(2112)] = 27480, - [SMALL_STATE(2113)] = 27552, - [SMALL_STATE(2114)] = 27624, - [SMALL_STATE(2115)] = 27696, - [SMALL_STATE(2116)] = 27768, - [SMALL_STATE(2117)] = 27840, - [SMALL_STATE(2118)] = 27912, - [SMALL_STATE(2119)] = 27984, - [SMALL_STATE(2120)] = 28056, - [SMALL_STATE(2121)] = 28128, - [SMALL_STATE(2122)] = 28200, - [SMALL_STATE(2123)] = 28272, - [SMALL_STATE(2124)] = 28344, - [SMALL_STATE(2125)] = 28416, - [SMALL_STATE(2126)] = 28488, - [SMALL_STATE(2127)] = 28560, - [SMALL_STATE(2128)] = 28632, - [SMALL_STATE(2129)] = 28704, - [SMALL_STATE(2130)] = 28776, - [SMALL_STATE(2131)] = 28848, - [SMALL_STATE(2132)] = 28924, - [SMALL_STATE(2133)] = 28998, - [SMALL_STATE(2134)] = 29070, - [SMALL_STATE(2135)] = 29142, - [SMALL_STATE(2136)] = 29214, - [SMALL_STATE(2137)] = 29356, - [SMALL_STATE(2138)] = 29498, - [SMALL_STATE(2139)] = 29570, - [SMALL_STATE(2140)] = 29643, - [SMALL_STATE(2141)] = 29716, - [SMALL_STATE(2142)] = 29789, - [SMALL_STATE(2143)] = 29862, - [SMALL_STATE(2144)] = 29935, - [SMALL_STATE(2145)] = 30008, - [SMALL_STATE(2146)] = 30081, - [SMALL_STATE(2147)] = 30154, - [SMALL_STATE(2148)] = 30227, - [SMALL_STATE(2149)] = 30302, - [SMALL_STATE(2150)] = 30377, - [SMALL_STATE(2151)] = 30450, - [SMALL_STATE(2152)] = 30523, - [SMALL_STATE(2153)] = 30596, - [SMALL_STATE(2154)] = 30671, - [SMALL_STATE(2155)] = 30744, - [SMALL_STATE(2156)] = 30817, - [SMALL_STATE(2157)] = 30890, - [SMALL_STATE(2158)] = 30963, - [SMALL_STATE(2159)] = 31038, - [SMALL_STATE(2160)] = 31113, - [SMALL_STATE(2161)] = 31188, - [SMALL_STATE(2162)] = 31261, - [SMALL_STATE(2163)] = 31400, - [SMALL_STATE(2164)] = 31473, - [SMALL_STATE(2165)] = 31546, - [SMALL_STATE(2166)] = 31619, - [SMALL_STATE(2167)] = 31692, - [SMALL_STATE(2168)] = 31765, - [SMALL_STATE(2169)] = 31838, - [SMALL_STATE(2170)] = 31911, - [SMALL_STATE(2171)] = 31986, - [SMALL_STATE(2172)] = 32061, - [SMALL_STATE(2173)] = 32134, - [SMALL_STATE(2174)] = 32207, - [SMALL_STATE(2175)] = 32280, - [SMALL_STATE(2176)] = 32353, - [SMALL_STATE(2177)] = 32426, - [SMALL_STATE(2178)] = 32499, - [SMALL_STATE(2179)] = 32572, - [SMALL_STATE(2180)] = 32645, - [SMALL_STATE(2181)] = 32718, - [SMALL_STATE(2182)] = 32791, - [SMALL_STATE(2183)] = 32866, - [SMALL_STATE(2184)] = 32939, - [SMALL_STATE(2185)] = 33012, - [SMALL_STATE(2186)] = 33085, - [SMALL_STATE(2187)] = 33158, - [SMALL_STATE(2188)] = 33233, - [SMALL_STATE(2189)] = 33308, - [SMALL_STATE(2190)] = 33441, - [SMALL_STATE(2191)] = 33514, - [SMALL_STATE(2192)] = 33587, - [SMALL_STATE(2193)] = 33660, - [SMALL_STATE(2194)] = 33733, - [SMALL_STATE(2195)] = 33808, - [SMALL_STATE(2196)] = 33881, - [SMALL_STATE(2197)] = 33954, - [SMALL_STATE(2198)] = 34027, - [SMALL_STATE(2199)] = 34100, - [SMALL_STATE(2200)] = 34173, - [SMALL_STATE(2201)] = 34246, - [SMALL_STATE(2202)] = 34321, - [SMALL_STATE(2203)] = 34396, - [SMALL_STATE(2204)] = 34469, - [SMALL_STATE(2205)] = 34542, - [SMALL_STATE(2206)] = 34615, - [SMALL_STATE(2207)] = 34688, - [SMALL_STATE(2208)] = 34763, - [SMALL_STATE(2209)] = 34834, - [SMALL_STATE(2210)] = 34909, - [SMALL_STATE(2211)] = 35042, - [SMALL_STATE(2212)] = 35115, - [SMALL_STATE(2213)] = 35188, - [SMALL_STATE(2214)] = 35261, - [SMALL_STATE(2215)] = 35334, - [SMALL_STATE(2216)] = 35405, - [SMALL_STATE(2217)] = 35480, - [SMALL_STATE(2218)] = 35553, - [SMALL_STATE(2219)] = 35626, - [SMALL_STATE(2220)] = 35697, - [SMALL_STATE(2221)] = 35770, - [SMALL_STATE(2222)] = 35845, - [SMALL_STATE(2223)] = 35918, - [SMALL_STATE(2224)] = 35993, - [SMALL_STATE(2225)] = 36066, - [SMALL_STATE(2226)] = 36139, - [SMALL_STATE(2227)] = 36212, - [SMALL_STATE(2228)] = 36285, - [SMALL_STATE(2229)] = 36358, - [SMALL_STATE(2230)] = 36429, - [SMALL_STATE(2231)] = 36502, - [SMALL_STATE(2232)] = 36575, - [SMALL_STATE(2233)] = 36648, - [SMALL_STATE(2234)] = 36781, - [SMALL_STATE(2235)] = 36854, - [SMALL_STATE(2236)] = 36927, - [SMALL_STATE(2237)] = 37000, - [SMALL_STATE(2238)] = 37073, - [SMALL_STATE(2239)] = 37146, - [SMALL_STATE(2240)] = 37219, - [SMALL_STATE(2241)] = 37292, - [SMALL_STATE(2242)] = 37367, - [SMALL_STATE(2243)] = 37440, - [SMALL_STATE(2244)] = 37513, - [SMALL_STATE(2245)] = 37586, - [SMALL_STATE(2246)] = 37659, - [SMALL_STATE(2247)] = 37798, - [SMALL_STATE(2248)] = 37937, - [SMALL_STATE(2249)] = 38012, - [SMALL_STATE(2250)] = 38085, - [SMALL_STATE(2251)] = 38158, - [SMALL_STATE(2252)] = 38231, - [SMALL_STATE(2253)] = 38306, - [SMALL_STATE(2254)] = 38379, - [SMALL_STATE(2255)] = 38452, - [SMALL_STATE(2256)] = 38525, - [SMALL_STATE(2257)] = 38598, - [SMALL_STATE(2258)] = 38731, - [SMALL_STATE(2259)] = 38804, - [SMALL_STATE(2260)] = 38877, - [SMALL_STATE(2261)] = 38952, - [SMALL_STATE(2262)] = 39025, - [SMALL_STATE(2263)] = 39098, - [SMALL_STATE(2264)] = 39171, - [SMALL_STATE(2265)] = 39244, - [SMALL_STATE(2266)] = 39319, - [SMALL_STATE(2267)] = 39392, - [SMALL_STATE(2268)] = 39465, - [SMALL_STATE(2269)] = 39538, - [SMALL_STATE(2270)] = 39677, - [SMALL_STATE(2271)] = 39750, - [SMALL_STATE(2272)] = 39823, - [SMALL_STATE(2273)] = 39896, - [SMALL_STATE(2274)] = 39969, - [SMALL_STATE(2275)] = 40042, - [SMALL_STATE(2276)] = 40117, - [SMALL_STATE(2277)] = 40190, - [SMALL_STATE(2278)] = 40263, - [SMALL_STATE(2279)] = 40336, - [SMALL_STATE(2280)] = 40411, - [SMALL_STATE(2281)] = 40486, - [SMALL_STATE(2282)] = 40559, - [SMALL_STATE(2283)] = 40630, - [SMALL_STATE(2284)] = 40703, - [SMALL_STATE(2285)] = 40776, - [SMALL_STATE(2286)] = 40849, - [SMALL_STATE(2287)] = 40922, - [SMALL_STATE(2288)] = 40995, - [SMALL_STATE(2289)] = 41068, - [SMALL_STATE(2290)] = 41141, - [SMALL_STATE(2291)] = 41214, - [SMALL_STATE(2292)] = 41287, - [SMALL_STATE(2293)] = 41377, - [SMALL_STATE(2294)] = 41469, - [SMALL_STATE(2295)] = 41559, - [SMALL_STATE(2296)] = 41643, - [SMALL_STATE(2297)] = 41735, - [SMALL_STATE(2298)] = 41827, - [SMALL_STATE(2299)] = 41921, - [SMALL_STATE(2300)] = 42019, - [SMALL_STATE(2301)] = 42115, - [SMALL_STATE(2302)] = 42251, - [SMALL_STATE(2303)] = 42327, - [SMALL_STATE(2304)] = 42427, - [SMALL_STATE(2305)] = 42523, - [SMALL_STATE(2306)] = 42623, - [SMALL_STATE(2307)] = 42707, - [SMALL_STATE(2308)] = 42803, - [SMALL_STATE(2309)] = 42905, - [SMALL_STATE(2310)] = 43005, - [SMALL_STATE(2311)] = 43103, - [SMALL_STATE(2312)] = 43197, - [SMALL_STATE(2313)] = 43299, - [SMALL_STATE(2314)] = 43383, - [SMALL_STATE(2315)] = 43453, - [SMALL_STATE(2316)] = 43529, - [SMALL_STATE(2317)] = 43619, - [SMALL_STATE(2318)] = 43703, - [SMALL_STATE(2319)] = 43803, - [SMALL_STATE(2320)] = 43879, - [SMALL_STATE(2321)] = 43977, - [SMALL_STATE(2322)] = 44061, - [SMALL_STATE(2323)] = 44163, - [SMALL_STATE(2324)] = 44265, - [SMALL_STATE(2325)] = 44335, - [SMALL_STATE(2326)] = 44423, - [SMALL_STATE(2327)] = 44495, - [SMALL_STATE(2328)] = 44593, - [SMALL_STATE(2329)] = 44729, - [SMALL_STATE(2330)] = 44865, - [SMALL_STATE(2331)] = 44969, - [SMALL_STATE(2332)] = 45051, - [SMALL_STATE(2333)] = 45125, - [SMALL_STATE(2334)] = 45215, - [SMALL_STATE(2335)] = 45291, - [SMALL_STATE(2336)] = 45377, - [SMALL_STATE(2337)] = 45457, - [SMALL_STATE(2338)] = 45549, - [SMALL_STATE(2339)] = 45621, - [SMALL_STATE(2340)] = 45707, - [SMALL_STATE(2341)] = 45805, - [SMALL_STATE(2342)] = 45941, - [SMALL_STATE(2343)] = 46039, - [SMALL_STATE(2344)] = 46129, - [SMALL_STATE(2345)] = 46229, - [SMALL_STATE(2346)] = 46313, - [SMALL_STATE(2347)] = 46449, - [SMALL_STATE(2348)] = 46541, - [SMALL_STATE(2349)] = 46627, - [SMALL_STATE(2350)] = 46721, - [SMALL_STATE(2351)] = 46817, - [SMALL_STATE(2352)] = 46911, - [SMALL_STATE(2353)] = 46987, - [SMALL_STATE(2354)] = 47069, - [SMALL_STATE(2355)] = 47205, - [SMALL_STATE(2356)] = 47283, - [SMALL_STATE(2357)] = 47357, - [SMALL_STATE(2358)] = 47457, - [SMALL_STATE(2359)] = 47545, - [SMALL_STATE(2360)] = 47647, - [SMALL_STATE(2361)] = 47783, - [SMALL_STATE(2362)] = 47855, - [SMALL_STATE(2363)] = 47933, - [SMALL_STATE(2364)] = 48037, - [SMALL_STATE(2365)] = 48131, - [SMALL_STATE(2366)] = 48267, - [SMALL_STATE(2367)] = 48355, - [SMALL_STATE(2368)] = 48431, - [SMALL_STATE(2369)] = 48511, - [SMALL_STATE(2370)] = 48597, - [SMALL_STATE(2371)] = 48691, - [SMALL_STATE(2372)] = 48763, - [SMALL_STATE(2373)] = 48899, - [SMALL_STATE(2374)] = 48973, - [SMALL_STATE(2375)] = 49059, - [SMALL_STATE(2376)] = 49155, - [SMALL_STATE(2377)] = 49229, - [SMALL_STATE(2378)] = 49301, - [SMALL_STATE(2379)] = 49397, - [SMALL_STATE(2380)] = 49487, - [SMALL_STATE(2381)] = 49585, - [SMALL_STATE(2382)] = 49677, - [SMALL_STATE(2383)] = 49813, - [SMALL_STATE(2384)] = 49911, - [SMALL_STATE(2385)] = 50003, - [SMALL_STATE(2386)] = 50087, - [SMALL_STATE(2387)] = 50177, - [SMALL_STATE(2388)] = 50259, - [SMALL_STATE(2389)] = 50359, - [SMALL_STATE(2390)] = 50439, - [SMALL_STATE(2391)] = 50543, - [SMALL_STATE(2392)] = 50645, - [SMALL_STATE(2393)] = 50723, - [SMALL_STATE(2394)] = 50823, - [SMALL_STATE(2395)] = 50927, - [SMALL_STATE(2396)] = 51019, - [SMALL_STATE(2397)] = 51113, - [SMALL_STATE(2398)] = 51197, - [SMALL_STATE(2399)] = 51267, - [SMALL_STATE(2400)] = 51363, - [SMALL_STATE(2401)] = 51445, - [SMALL_STATE(2402)] = 51539, - [SMALL_STATE(2403)] = 51617, - [SMALL_STATE(2404)] = 51719, - [SMALL_STATE(2405)] = 51815, - [SMALL_STATE(2406)] = 51903, - [SMALL_STATE(2407)] = 52005, - [SMALL_STATE(2408)] = 52097, - [SMALL_STATE(2409)] = 52193, - [SMALL_STATE(2410)] = 52281, - [SMALL_STATE(2411)] = 52381, - [SMALL_STATE(2412)] = 52461, - [SMALL_STATE(2413)] = 52543, - [SMALL_STATE(2414)] = 52623, - [SMALL_STATE(2415)] = 52713, - [SMALL_STATE(2416)] = 52811, - [SMALL_STATE(2417)] = 52905, - [SMALL_STATE(2418)] = 52995, - [SMALL_STATE(2419)] = 53064, - [SMALL_STATE(2420)] = 53141, - [SMALL_STATE(2421)] = 53210, - [SMALL_STATE(2422)] = 53279, - [SMALL_STATE(2423)] = 53356, - [SMALL_STATE(2424)] = 53425, - [SMALL_STATE(2425)] = 53494, - [SMALL_STATE(2426)] = 53563, - [SMALL_STATE(2427)] = 53632, - [SMALL_STATE(2428)] = 53701, - [SMALL_STATE(2429)] = 53770, - [SMALL_STATE(2430)] = 53839, - [SMALL_STATE(2431)] = 53908, - [SMALL_STATE(2432)] = 53977, - [SMALL_STATE(2433)] = 54046, - [SMALL_STATE(2434)] = 54115, - [SMALL_STATE(2435)] = 54184, - [SMALL_STATE(2436)] = 54253, - [SMALL_STATE(2437)] = 54322, - [SMALL_STATE(2438)] = 54399, - [SMALL_STATE(2439)] = 54468, - [SMALL_STATE(2440)] = 54537, - [SMALL_STATE(2441)] = 54606, - [SMALL_STATE(2442)] = 54675, - [SMALL_STATE(2443)] = 54744, - [SMALL_STATE(2444)] = 54813, - [SMALL_STATE(2445)] = 54942, - [SMALL_STATE(2446)] = 55011, - [SMALL_STATE(2447)] = 55080, - [SMALL_STATE(2448)] = 55149, - [SMALL_STATE(2449)] = 55218, - [SMALL_STATE(2450)] = 55305, - [SMALL_STATE(2451)] = 55374, - [SMALL_STATE(2452)] = 55443, - [SMALL_STATE(2453)] = 55512, - [SMALL_STATE(2454)] = 55641, - [SMALL_STATE(2455)] = 55710, - [SMALL_STATE(2456)] = 55779, - [SMALL_STATE(2457)] = 55848, - [SMALL_STATE(2458)] = 55917, - [SMALL_STATE(2459)] = 55986, - [SMALL_STATE(2460)] = 56055, - [SMALL_STATE(2461)] = 56124, - [SMALL_STATE(2462)] = 56205, - [SMALL_STATE(2463)] = 56274, - [SMALL_STATE(2464)] = 56349, - [SMALL_STATE(2465)] = 56418, - [SMALL_STATE(2466)] = 56503, - [SMALL_STATE(2467)] = 56572, - [SMALL_STATE(2468)] = 56643, - [SMALL_STATE(2469)] = 56712, - [SMALL_STATE(2470)] = 56807, - [SMALL_STATE(2471)] = 56876, - [SMALL_STATE(2472)] = 56945, - [SMALL_STATE(2473)] = 57042, - [SMALL_STATE(2474)] = 57111, - [SMALL_STATE(2475)] = 57210, - [SMALL_STATE(2476)] = 57279, - [SMALL_STATE(2477)] = 57366, - [SMALL_STATE(2478)] = 57435, - [SMALL_STATE(2479)] = 57504, - [SMALL_STATE(2480)] = 57573, - [SMALL_STATE(2481)] = 57652, - [SMALL_STATE(2482)] = 57721, - [SMALL_STATE(2483)] = 57810, - [SMALL_STATE(2484)] = 57879, - [SMALL_STATE(2485)] = 57970, - [SMALL_STATE(2486)] = 58039, - [SMALL_STATE(2487)] = 58132, - [SMALL_STATE(2488)] = 58201, - [SMALL_STATE(2489)] = 58270, - [SMALL_STATE(2490)] = 58339, - [SMALL_STATE(2491)] = 58408, - [SMALL_STATE(2492)] = 58477, - [SMALL_STATE(2493)] = 58546, - [SMALL_STATE(2494)] = 58615, - [SMALL_STATE(2495)] = 58684, - [SMALL_STATE(2496)] = 58753, - [SMALL_STATE(2497)] = 58822, - [SMALL_STATE(2498)] = 58891, - [SMALL_STATE(2499)] = 58960, - [SMALL_STATE(2500)] = 59029, - [SMALL_STATE(2501)] = 59098, - [SMALL_STATE(2502)] = 59167, - [SMALL_STATE(2503)] = 59296, - [SMALL_STATE(2504)] = 59365, - [SMALL_STATE(2505)] = 59434, - [SMALL_STATE(2506)] = 59533, - [SMALL_STATE(2507)] = 59662, - [SMALL_STATE(2508)] = 59731, - [SMALL_STATE(2509)] = 59800, - [SMALL_STATE(2510)] = 59869, - [SMALL_STATE(2511)] = 59942, - [SMALL_STATE(2512)] = 60011, - [SMALL_STATE(2513)] = 60110, - [SMALL_STATE(2514)] = 60179, - [SMALL_STATE(2515)] = 60248, - [SMALL_STATE(2516)] = 60317, - [SMALL_STATE(2517)] = 60416, - [SMALL_STATE(2518)] = 60515, - [SMALL_STATE(2519)] = 60584, - [SMALL_STATE(2520)] = 60653, - [SMALL_STATE(2521)] = 60722, - [SMALL_STATE(2522)] = 60818, - [SMALL_STATE(2523)] = 60914, - [SMALL_STATE(2524)] = 60986, - [SMALL_STATE(2525)] = 61058, - [SMALL_STATE(2526)] = 61146, - [SMALL_STATE(2527)] = 61242, - [SMALL_STATE(2528)] = 61314, - [SMALL_STATE(2529)] = 61398, - [SMALL_STATE(2530)] = 61482, - [SMALL_STATE(2531)] = 61554, - [SMALL_STATE(2532)] = 61650, - [SMALL_STATE(2533)] = 61734, - [SMALL_STATE(2534)] = 61810, - [SMALL_STATE(2535)] = 61882, - [SMALL_STATE(2536)] = 61978, - [SMALL_STATE(2537)] = 62054, - [SMALL_STATE(2538)] = 62130, - [SMALL_STATE(2539)] = 62226, - [SMALL_STATE(2540)] = 62322, - [SMALL_STATE(2541)] = 62418, - [SMALL_STATE(2542)] = 62514, - [SMALL_STATE(2543)] = 62610, - [SMALL_STATE(2544)] = 62706, - [SMALL_STATE(2545)] = 62802, - [SMALL_STATE(2546)] = 62898, - [SMALL_STATE(2547)] = 62994, - [SMALL_STATE(2548)] = 63068, - [SMALL_STATE(2549)] = 63137, - [SMALL_STATE(2550)] = 63218, - [SMALL_STATE(2551)] = 63299, - [SMALL_STATE(2552)] = 63380, - [SMALL_STATE(2553)] = 63461, - [SMALL_STATE(2554)] = 63546, - [SMALL_STATE(2555)] = 63631, - [SMALL_STATE(2556)] = 63700, - [SMALL_STATE(2557)] = 63769, - [SMALL_STATE(2558)] = 63850, - [SMALL_STATE(2559)] = 63923, - [SMALL_STATE(2560)] = 63992, - [SMALL_STATE(2561)] = 64063, - [SMALL_STATE(2562)] = 64148, - [SMALL_STATE(2563)] = 64215, - [SMALL_STATE(2564)] = 64282, - [SMALL_STATE(2565)] = 64349, - [SMALL_STATE(2566)] = 64416, - [SMALL_STATE(2567)] = 64485, - [SMALL_STATE(2568)] = 64554, - [SMALL_STATE(2569)] = 64644, - [SMALL_STATE(2570)] = 64718, - [SMALL_STATE(2571)] = 64792, - [SMALL_STATE(2572)] = 64858, - [SMALL_STATE(2573)] = 64924, - [SMALL_STATE(2574)] = 64990, - [SMALL_STATE(2575)] = 65056, - [SMALL_STATE(2576)] = 65122, - [SMALL_STATE(2577)] = 65188, - [SMALL_STATE(2578)] = 65270, - [SMALL_STATE(2579)] = 65340, - [SMALL_STATE(2580)] = 65416, - [SMALL_STATE(2581)] = 65498, - [SMALL_STATE(2582)] = 65568, - [SMALL_STATE(2583)] = 65638, - [SMALL_STATE(2584)] = 65704, - [SMALL_STATE(2585)] = 65770, - [SMALL_STATE(2586)] = 65838, - [SMALL_STATE(2587)] = 65906, - [SMALL_STATE(2588)] = 65972, - [SMALL_STATE(2589)] = 66038, - [SMALL_STATE(2590)] = 66128, - [SMALL_STATE(2591)] = 66218, - [SMALL_STATE(2592)] = 66308, - [SMALL_STATE(2593)] = 66398, - [SMALL_STATE(2594)] = 66488, - [SMALL_STATE(2595)] = 66578, - [SMALL_STATE(2596)] = 66668, - [SMALL_STATE(2597)] = 66758, - [SMALL_STATE(2598)] = 66828, - [SMALL_STATE(2599)] = 66918, - [SMALL_STATE(2600)] = 66992, - [SMALL_STATE(2601)] = 67082, - [SMALL_STATE(2602)] = 67164, - [SMALL_STATE(2603)] = 67252, - [SMALL_STATE(2604)] = 67334, - [SMALL_STATE(2605)] = 67400, - [SMALL_STATE(2606)] = 67466, - [SMALL_STATE(2607)] = 67532, - [SMALL_STATE(2608)] = 67598, - [SMALL_STATE(2609)] = 67664, - [SMALL_STATE(2610)] = 67754, - [SMALL_STATE(2611)] = 67841, - [SMALL_STATE(2612)] = 67928, - [SMALL_STATE(2613)] = 67993, - [SMALL_STATE(2614)] = 68058, - [SMALL_STATE(2615)] = 68123, - [SMALL_STATE(2616)] = 68210, - [SMALL_STATE(2617)] = 68277, - [SMALL_STATE(2618)] = 68344, - [SMALL_STATE(2619)] = 68409, - [SMALL_STATE(2620)] = 68496, - [SMALL_STATE(2621)] = 68569, - [SMALL_STATE(2622)] = 68634, - [SMALL_STATE(2623)] = 68721, - [SMALL_STATE(2624)] = 68808, - [SMALL_STATE(2625)] = 68881, - [SMALL_STATE(2626)] = 68968, - [SMALL_STATE(2627)] = 69055, - [SMALL_STATE(2628)] = 69142, - [SMALL_STATE(2629)] = 69215, - [SMALL_STATE(2630)] = 69302, - [SMALL_STATE(2631)] = 69373, - [SMALL_STATE(2632)] = 69442, - [SMALL_STATE(2633)] = 69507, - [SMALL_STATE(2634)] = 69572, - [SMALL_STATE(2635)] = 69637, - [SMALL_STATE(2636)] = 69702, - [SMALL_STATE(2637)] = 69789, - [SMALL_STATE(2638)] = 69876, - [SMALL_STATE(2639)] = 69941, - [SMALL_STATE(2640)] = 70006, - [SMALL_STATE(2641)] = 70093, - [SMALL_STATE(2642)] = 70180, - [SMALL_STATE(2643)] = 70245, - [SMALL_STATE(2644)] = 70310, - [SMALL_STATE(2645)] = 70397, - [SMALL_STATE(2646)] = 70462, - [SMALL_STATE(2647)] = 70527, - [SMALL_STATE(2648)] = 70592, - [SMALL_STATE(2649)] = 70679, - [SMALL_STATE(2650)] = 70766, - [SMALL_STATE(2651)] = 70831, - [SMALL_STATE(2652)] = 70896, - [SMALL_STATE(2653)] = 70979, - [SMALL_STATE(2654)] = 71046, - [SMALL_STATE(2655)] = 71133, - [SMALL_STATE(2656)] = 71220, - [SMALL_STATE(2657)] = 71307, - [SMALL_STATE(2658)] = 71394, - [SMALL_STATE(2659)] = 71481, - [SMALL_STATE(2660)] = 71568, - [SMALL_STATE(2661)] = 71633, - [SMALL_STATE(2662)] = 71698, - [SMALL_STATE(2663)] = 71763, - [SMALL_STATE(2664)] = 71850, - [SMALL_STATE(2665)] = 71937, - [SMALL_STATE(2666)] = 72024, - [SMALL_STATE(2667)] = 72111, - [SMALL_STATE(2668)] = 72180, - [SMALL_STATE(2669)] = 72245, - [SMALL_STATE(2670)] = 72310, - [SMALL_STATE(2671)] = 72375, - [SMALL_STATE(2672)] = 72462, - [SMALL_STATE(2673)] = 72549, - [SMALL_STATE(2674)] = 72636, - [SMALL_STATE(2675)] = 72723, - [SMALL_STATE(2676)] = 72788, - [SMALL_STATE(2677)] = 72855, - [SMALL_STATE(2678)] = 72921, - [SMALL_STATE(2679)] = 72993, - [SMALL_STATE(2680)] = 73065, - [SMALL_STATE(2681)] = 73133, - [SMALL_STATE(2682)] = 73205, - [SMALL_STATE(2683)] = 73277, - [SMALL_STATE(2684)] = 73353, - [SMALL_STATE(2685)] = 73425, - [SMALL_STATE(2686)] = 73497, - [SMALL_STATE(2687)] = 73569, - [SMALL_STATE(2688)] = 73635, - [SMALL_STATE(2689)] = 73705, - [SMALL_STATE(2690)] = 73775, - [SMALL_STATE(2691)] = 73847, - [SMALL_STATE(2692)] = 73911, - [SMALL_STATE(2693)] = 73975, - [SMALL_STATE(2694)] = 74039, - [SMALL_STATE(2695)] = 74103, - [SMALL_STATE(2696)] = 74171, - [SMALL_STATE(2697)] = 74235, - [SMALL_STATE(2698)] = 74299, - [SMALL_STATE(2699)] = 74363, - [SMALL_STATE(2700)] = 74427, - [SMALL_STATE(2701)] = 74491, - [SMALL_STATE(2702)] = 74555, - [SMALL_STATE(2703)] = 74619, - [SMALL_STATE(2704)] = 74683, - [SMALL_STATE(2705)] = 74753, - [SMALL_STATE(2706)] = 74825, - [SMALL_STATE(2707)] = 74907, - [SMALL_STATE(2708)] = 74971, - [SMALL_STATE(2709)] = 75035, - [SMALL_STATE(2710)] = 75099, - [SMALL_STATE(2711)] = 75163, - [SMALL_STATE(2712)] = 75227, - [SMALL_STATE(2713)] = 75295, - [SMALL_STATE(2714)] = 75375, - [SMALL_STATE(2715)] = 75443, - [SMALL_STATE(2716)] = 75559, - [SMALL_STATE(2717)] = 75623, - [SMALL_STATE(2718)] = 75741, - [SMALL_STATE(2719)] = 75805, - [SMALL_STATE(2720)] = 75869, - [SMALL_STATE(2721)] = 75941, - [SMALL_STATE(2722)] = 76013, - [SMALL_STATE(2723)] = 76135, - [SMALL_STATE(2724)] = 76207, - [SMALL_STATE(2725)] = 76271, - [SMALL_STATE(2726)] = 76335, - [SMALL_STATE(2727)] = 76407, - [SMALL_STATE(2728)] = 76523, - [SMALL_STATE(2729)] = 76645, - [SMALL_STATE(2730)] = 76763, - [SMALL_STATE(2731)] = 76835, - [SMALL_STATE(2732)] = 76899, - [SMALL_STATE(2733)] = 76965, - [SMALL_STATE(2734)] = 77045, - [SMALL_STATE(2735)] = 77117, - [SMALL_STATE(2736)] = 77187, - [SMALL_STATE(2737)] = 77251, - [SMALL_STATE(2738)] = 77321, - [SMALL_STATE(2739)] = 77389, - [SMALL_STATE(2740)] = 77461, - [SMALL_STATE(2741)] = 77533, - [SMALL_STATE(2742)] = 77597, - [SMALL_STATE(2743)] = 77665, - [SMALL_STATE(2744)] = 77737, - [SMALL_STATE(2745)] = 77809, - [SMALL_STATE(2746)] = 77873, - [SMALL_STATE(2747)] = 77937, - [SMALL_STATE(2748)] = 78001, - [SMALL_STATE(2749)] = 78073, - [SMALL_STATE(2750)] = 78145, - [SMALL_STATE(2751)] = 78217, - [SMALL_STATE(2752)] = 78289, - [SMALL_STATE(2753)] = 78361, - [SMALL_STATE(2754)] = 78425, - [SMALL_STATE(2755)] = 78491, - [SMALL_STATE(2756)] = 78563, - [SMALL_STATE(2757)] = 78627, - [SMALL_STATE(2758)] = 78691, - [SMALL_STATE(2759)] = 78757, - [SMALL_STATE(2760)] = 78821, - [SMALL_STATE(2761)] = 78885, - [SMALL_STATE(2762)] = 78949, - [SMALL_STATE(2763)] = 79023, - [SMALL_STATE(2764)] = 79086, - [SMALL_STATE(2765)] = 79149, - [SMALL_STATE(2766)] = 79212, - [SMALL_STATE(2767)] = 79275, - [SMALL_STATE(2768)] = 79350, - [SMALL_STATE(2769)] = 79415, - [SMALL_STATE(2770)] = 79486, - [SMALL_STATE(2771)] = 79599, - [SMALL_STATE(2772)] = 79670, - [SMALL_STATE(2773)] = 79741, - [SMALL_STATE(2774)] = 79812, - [SMALL_STATE(2775)] = 79883, - [SMALL_STATE(2776)] = 79954, - [SMALL_STATE(2777)] = 80025, - [SMALL_STATE(2778)] = 80096, - [SMALL_STATE(2779)] = 80161, - [SMALL_STATE(2780)] = 80232, - [SMALL_STATE(2781)] = 80303, - [SMALL_STATE(2782)] = 80374, - [SMALL_STATE(2783)] = 80439, - [SMALL_STATE(2784)] = 80510, - [SMALL_STATE(2785)] = 80581, - [SMALL_STATE(2786)] = 80652, - [SMALL_STATE(2787)] = 80723, - [SMALL_STATE(2788)] = 80794, - [SMALL_STATE(2789)] = 80865, - [SMALL_STATE(2790)] = 80936, - [SMALL_STATE(2791)] = 81003, - [SMALL_STATE(2792)] = 81066, - [SMALL_STATE(2793)] = 81133, - [SMALL_STATE(2794)] = 81200, - [SMALL_STATE(2795)] = 81267, - [SMALL_STATE(2796)] = 81332, - [SMALL_STATE(2797)] = 81397, - [SMALL_STATE(2798)] = 81464, - [SMALL_STATE(2799)] = 81531, - [SMALL_STATE(2800)] = 81644, - [SMALL_STATE(2801)] = 81759, - [SMALL_STATE(2802)] = 81872, - [SMALL_STATE(2803)] = 81987, - [SMALL_STATE(2804)] = 82056, - [SMALL_STATE(2805)] = 82123, - [SMALL_STATE(2806)] = 82186, - [SMALL_STATE(2807)] = 82251, - [SMALL_STATE(2808)] = 82316, - [SMALL_STATE(2809)] = 82395, - [SMALL_STATE(2810)] = 82458, - [SMALL_STATE(2811)] = 82571, - [SMALL_STATE(2812)] = 82634, - [SMALL_STATE(2813)] = 82697, - [SMALL_STATE(2814)] = 82760, - [SMALL_STATE(2815)] = 82823, - [SMALL_STATE(2816)] = 82896, - [SMALL_STATE(2817)] = 82967, - [SMALL_STATE(2818)] = 83030, - [SMALL_STATE(2819)] = 83109, - [SMALL_STATE(2820)] = 83176, - [SMALL_STATE(2821)] = 83238, - [SMALL_STATE(2822)] = 83300, - [SMALL_STATE(2823)] = 83366, - [SMALL_STATE(2824)] = 83432, - [SMALL_STATE(2825)] = 83494, - [SMALL_STATE(2826)] = 83562, - [SMALL_STATE(2827)] = 83624, - [SMALL_STATE(2828)] = 83692, - [SMALL_STATE(2829)] = 83754, - [SMALL_STATE(2830)] = 83816, - [SMALL_STATE(2831)] = 83878, - [SMALL_STATE(2832)] = 83940, - [SMALL_STATE(2833)] = 84002, - [SMALL_STATE(2834)] = 84064, - [SMALL_STATE(2835)] = 84134, - [SMALL_STATE(2836)] = 84204, - [SMALL_STATE(2837)] = 84266, - [SMALL_STATE(2838)] = 84330, - [SMALL_STATE(2839)] = 84398, - [SMALL_STATE(2840)] = 84466, - [SMALL_STATE(2841)] = 84530, - [SMALL_STATE(2842)] = 84592, - [SMALL_STATE(2843)] = 84660, - [SMALL_STATE(2844)] = 84726, - [SMALL_STATE(2845)] = 84792, - [SMALL_STATE(2846)] = 84858, - [SMALL_STATE(2847)] = 84926, - [SMALL_STATE(2848)] = 84994, - [SMALL_STATE(2849)] = 85062, - [SMALL_STATE(2850)] = 85132, - [SMALL_STATE(2851)] = 85198, - [SMALL_STATE(2852)] = 85268, - [SMALL_STATE(2853)] = 85332, - [SMALL_STATE(2854)] = 85396, - [SMALL_STATE(2855)] = 85462, - [SMALL_STATE(2856)] = 85530, - [SMALL_STATE(2857)] = 85592, - [SMALL_STATE(2858)] = 85658, - [SMALL_STATE(2859)] = 85728, - [SMALL_STATE(2860)] = 85790, - [SMALL_STATE(2861)] = 85860, - [SMALL_STATE(2862)] = 85922, - [SMALL_STATE(2863)] = 85984, - [SMALL_STATE(2864)] = 86060, - [SMALL_STATE(2865)] = 86124, - [SMALL_STATE(2866)] = 86186, - [SMALL_STATE(2867)] = 86256, - [SMALL_STATE(2868)] = 86320, - [SMALL_STATE(2869)] = 86388, - [SMALL_STATE(2870)] = 86458, - [SMALL_STATE(2871)] = 86528, - [SMALL_STATE(2872)] = 86594, - [SMALL_STATE(2873)] = 86658, - [SMALL_STATE(2874)] = 86722, - [SMALL_STATE(2875)] = 86790, - [SMALL_STATE(2876)] = 86856, - [SMALL_STATE(2877)] = 86920, - [SMALL_STATE(2878)] = 86990, - [SMALL_STATE(2879)] = 87060, - [SMALL_STATE(2880)] = 87124, - [SMALL_STATE(2881)] = 87186, - [SMALL_STATE(2882)] = 87256, - [SMALL_STATE(2883)] = 87326, - [SMALL_STATE(2884)] = 87396, - [SMALL_STATE(2885)] = 87458, - [SMALL_STATE(2886)] = 87520, - [SMALL_STATE(2887)] = 87590, - [SMALL_STATE(2888)] = 87660, - [SMALL_STATE(2889)] = 87730, - [SMALL_STATE(2890)] = 87800, - [SMALL_STATE(2891)] = 87870, - [SMALL_STATE(2892)] = 87940, - [SMALL_STATE(2893)] = 88010, - [SMALL_STATE(2894)] = 88074, - [SMALL_STATE(2895)] = 88144, - [SMALL_STATE(2896)] = 88214, - [SMALL_STATE(2897)] = 88276, - [SMALL_STATE(2898)] = 88337, - [SMALL_STATE(2899)] = 88400, - [SMALL_STATE(2900)] = 88461, - [SMALL_STATE(2901)] = 88522, - [SMALL_STATE(2902)] = 88597, - [SMALL_STATE(2903)] = 88658, - [SMALL_STATE(2904)] = 88723, - [SMALL_STATE(2905)] = 88788, - [SMALL_STATE(2906)] = 88853, - [SMALL_STATE(2907)] = 88918, - [SMALL_STATE(2908)] = 88979, - [SMALL_STATE(2909)] = 89044, - [SMALL_STATE(2910)] = 89105, - [SMALL_STATE(2911)] = 89170, - [SMALL_STATE(2912)] = 89235, - [SMALL_STATE(2913)] = 89300, - [SMALL_STATE(2914)] = 89363, - [SMALL_STATE(2915)] = 89428, - [SMALL_STATE(2916)] = 89491, - [SMALL_STATE(2917)] = 89556, - [SMALL_STATE(2918)] = 89621, - [SMALL_STATE(2919)] = 89682, - [SMALL_STATE(2920)] = 89743, - [SMALL_STATE(2921)] = 89804, - [SMALL_STATE(2922)] = 89869, - [SMALL_STATE(2923)] = 89934, - [SMALL_STATE(2924)] = 89999, - [SMALL_STATE(2925)] = 90062, - [SMALL_STATE(2926)] = 90125, - [SMALL_STATE(2927)] = 90188, - [SMALL_STATE(2928)] = 90253, - [SMALL_STATE(2929)] = 90318, - [SMALL_STATE(2930)] = 90379, - [SMALL_STATE(2931)] = 90440, - [SMALL_STATE(2932)] = 90505, - [SMALL_STATE(2933)] = 90566, - [SMALL_STATE(2934)] = 90629, - [SMALL_STATE(2935)] = 90692, - [SMALL_STATE(2936)] = 90755, - [SMALL_STATE(2937)] = 90822, - [SMALL_STATE(2938)] = 90887, - [SMALL_STATE(2939)] = 90948, - [SMALL_STATE(2940)] = 91013, - [SMALL_STATE(2941)] = 91074, - [SMALL_STATE(2942)] = 91137, - [SMALL_STATE(2943)] = 91200, - [SMALL_STATE(2944)] = 91261, - [SMALL_STATE(2945)] = 91326, - [SMALL_STATE(2946)] = 91387, - [SMALL_STATE(2947)] = 91452, - [SMALL_STATE(2948)] = 91517, - [SMALL_STATE(2949)] = 91578, - [SMALL_STATE(2950)] = 91641, - [SMALL_STATE(2951)] = 91702, - [SMALL_STATE(2952)] = 91763, - [SMALL_STATE(2953)] = 91828, - [SMALL_STATE(2954)] = 91889, - [SMALL_STATE(2955)] = 91950, - [SMALL_STATE(2956)] = 92019, - [SMALL_STATE(2957)] = 92080, - [SMALL_STATE(2958)] = 92141, - [SMALL_STATE(2959)] = 92202, - [SMALL_STATE(2960)] = 92263, - [SMALL_STATE(2961)] = 92324, - [SMALL_STATE(2962)] = 92385, - [SMALL_STATE(2963)] = 92446, - [SMALL_STATE(2964)] = 92507, - [SMALL_STATE(2965)] = 92578, - [SMALL_STATE(2966)] = 92643, - [SMALL_STATE(2967)] = 92703, - [SMALL_STATE(2968)] = 92765, - [SMALL_STATE(2969)] = 92831, - [SMALL_STATE(2970)] = 92897, - [SMALL_STATE(2971)] = 92957, - [SMALL_STATE(2972)] = 93017, - [SMALL_STATE(2973)] = 93083, - [SMALL_STATE(2974)] = 93149, - [SMALL_STATE(2975)] = 93209, - [SMALL_STATE(2976)] = 93269, - [SMALL_STATE(2977)] = 93329, - [SMALL_STATE(2978)] = 93397, - [SMALL_STATE(2979)] = 93457, - [SMALL_STATE(2980)] = 93517, - [SMALL_STATE(2981)] = 93577, - [SMALL_STATE(2982)] = 93643, - [SMALL_STATE(2983)] = 93703, - [SMALL_STATE(2984)] = 93763, - [SMALL_STATE(2985)] = 93823, - [SMALL_STATE(2986)] = 93883, - [SMALL_STATE(2987)] = 93943, - [SMALL_STATE(2988)] = 94003, - [SMALL_STATE(2989)] = 94063, - [SMALL_STATE(2990)] = 94127, - [SMALL_STATE(2991)] = 94189, - [SMALL_STATE(2992)] = 94249, - [SMALL_STATE(2993)] = 94309, - [SMALL_STATE(2994)] = 94369, - [SMALL_STATE(2995)] = 94429, - [SMALL_STATE(2996)] = 94489, - [SMALL_STATE(2997)] = 94551, - [SMALL_STATE(2998)] = 94617, - [SMALL_STATE(2999)] = 94677, - [SMALL_STATE(3000)] = 94739, - [SMALL_STATE(3001)] = 94801, - [SMALL_STATE(3002)] = 94863, - [SMALL_STATE(3003)] = 94923, - [SMALL_STATE(3004)] = 94983, - [SMALL_STATE(3005)] = 95049, - [SMALL_STATE(3006)] = 95109, - [SMALL_STATE(3007)] = 95169, - [SMALL_STATE(3008)] = 95229, - [SMALL_STATE(3009)] = 95289, - [SMALL_STATE(3010)] = 95349, - [SMALL_STATE(3011)] = 95409, - [SMALL_STATE(3012)] = 95469, - [SMALL_STATE(3013)] = 95531, - [SMALL_STATE(3014)] = 95591, - [SMALL_STATE(3015)] = 95651, - [SMALL_STATE(3016)] = 95711, - [SMALL_STATE(3017)] = 95771, - [SMALL_STATE(3018)] = 95831, - [SMALL_STATE(3019)] = 95891, - [SMALL_STATE(3020)] = 95951, - [SMALL_STATE(3021)] = 96011, - [SMALL_STATE(3022)] = 96071, - [SMALL_STATE(3023)] = 96131, - [SMALL_STATE(3024)] = 96197, - [SMALL_STATE(3025)] = 96257, - [SMALL_STATE(3026)] = 96317, - [SMALL_STATE(3027)] = 96377, - [SMALL_STATE(3028)] = 96437, - [SMALL_STATE(3029)] = 96497, - [SMALL_STATE(3030)] = 96559, - [SMALL_STATE(3031)] = 96619, - [SMALL_STATE(3032)] = 96679, - [SMALL_STATE(3033)] = 96741, - [SMALL_STATE(3034)] = 96801, - [SMALL_STATE(3035)] = 96861, - [SMALL_STATE(3036)] = 96921, - [SMALL_STATE(3037)] = 96981, - [SMALL_STATE(3038)] = 97043, - [SMALL_STATE(3039)] = 97103, - [SMALL_STATE(3040)] = 97163, - [SMALL_STATE(3041)] = 97223, - [SMALL_STATE(3042)] = 97287, - [SMALL_STATE(3043)] = 97347, - [SMALL_STATE(3044)] = 97407, - [SMALL_STATE(3045)] = 97469, - [SMALL_STATE(3046)] = 97529, - [SMALL_STATE(3047)] = 97595, - [SMALL_STATE(3048)] = 97655, - [SMALL_STATE(3049)] = 97715, - [SMALL_STATE(3050)] = 97779, - [SMALL_STATE(3051)] = 97839, - [SMALL_STATE(3052)] = 97905, - [SMALL_STATE(3053)] = 97971, - [SMALL_STATE(3054)] = 98033, - [SMALL_STATE(3055)] = 98095, - [SMALL_STATE(3056)] = 98159, - [SMALL_STATE(3057)] = 98221, - [SMALL_STATE(3058)] = 98281, - [SMALL_STATE(3059)] = 98341, - [SMALL_STATE(3060)] = 98407, - [SMALL_STATE(3061)] = 98467, - [SMALL_STATE(3062)] = 98526, - [SMALL_STATE(3063)] = 98587, - [SMALL_STATE(3064)] = 98646, - [SMALL_STATE(3065)] = 98705, - [SMALL_STATE(3066)] = 98764, - [SMALL_STATE(3067)] = 98825, - [SMALL_STATE(3068)] = 98884, - [SMALL_STATE(3069)] = 98943, - [SMALL_STATE(3070)] = 99002, - [SMALL_STATE(3071)] = 99063, - [SMALL_STATE(3072)] = 99122, - [SMALL_STATE(3073)] = 99181, - [SMALL_STATE(3074)] = 99240, - [SMALL_STATE(3075)] = 99299, - [SMALL_STATE(3076)] = 99358, - [SMALL_STATE(3077)] = 99417, - [SMALL_STATE(3078)] = 99476, - [SMALL_STATE(3079)] = 99535, - [SMALL_STATE(3080)] = 99594, - [SMALL_STATE(3081)] = 99653, - [SMALL_STATE(3082)] = 99712, - [SMALL_STATE(3083)] = 99771, - [SMALL_STATE(3084)] = 99830, - [SMALL_STATE(3085)] = 99889, - [SMALL_STATE(3086)] = 99948, - [SMALL_STATE(3087)] = 100007, - [SMALL_STATE(3088)] = 100066, - [SMALL_STATE(3089)] = 100125, - [SMALL_STATE(3090)] = 100186, - [SMALL_STATE(3091)] = 100245, - [SMALL_STATE(3092)] = 100304, - [SMALL_STATE(3093)] = 100371, - [SMALL_STATE(3094)] = 100430, - [SMALL_STATE(3095)] = 100489, - [SMALL_STATE(3096)] = 100552, - [SMALL_STATE(3097)] = 100611, - [SMALL_STATE(3098)] = 100672, - [SMALL_STATE(3099)] = 100731, - [SMALL_STATE(3100)] = 100790, - [SMALL_STATE(3101)] = 100857, - [SMALL_STATE(3102)] = 100916, - [SMALL_STATE(3103)] = 100975, - [SMALL_STATE(3104)] = 101034, - [SMALL_STATE(3105)] = 101093, - [SMALL_STATE(3106)] = 101152, - [SMALL_STATE(3107)] = 101211, - [SMALL_STATE(3108)] = 101270, - [SMALL_STATE(3109)] = 101329, - [SMALL_STATE(3110)] = 101388, - [SMALL_STATE(3111)] = 101447, - [SMALL_STATE(3112)] = 101506, - [SMALL_STATE(3113)] = 101565, - [SMALL_STATE(3114)] = 101624, - [SMALL_STATE(3115)] = 101683, - [SMALL_STATE(3116)] = 101744, - [SMALL_STATE(3117)] = 101805, - [SMALL_STATE(3118)] = 101864, - [SMALL_STATE(3119)] = 101925, - [SMALL_STATE(3120)] = 101986, - [SMALL_STATE(3121)] = 102045, - [SMALL_STATE(3122)] = 102104, - [SMALL_STATE(3123)] = 102163, - [SMALL_STATE(3124)] = 102222, - [SMALL_STATE(3125)] = 102283, - [SMALL_STATE(3126)] = 102344, - [SMALL_STATE(3127)] = 102405, - [SMALL_STATE(3128)] = 102464, - [SMALL_STATE(3129)] = 102523, - [SMALL_STATE(3130)] = 102586, - [SMALL_STATE(3131)] = 102645, - [SMALL_STATE(3132)] = 102704, - [SMALL_STATE(3133)] = 102763, - [SMALL_STATE(3134)] = 102822, - [SMALL_STATE(3135)] = 102883, - [SMALL_STATE(3136)] = 102944, - [SMALL_STATE(3137)] = 103005, - [SMALL_STATE(3138)] = 103066, - [SMALL_STATE(3139)] = 103125, - [SMALL_STATE(3140)] = 103194, - [SMALL_STATE(3141)] = 103253, - [SMALL_STATE(3142)] = 103312, - [SMALL_STATE(3143)] = 103371, - [SMALL_STATE(3144)] = 103430, - [SMALL_STATE(3145)] = 103493, - [SMALL_STATE(3146)] = 103556, - [SMALL_STATE(3147)] = 103615, - [SMALL_STATE(3148)] = 103674, - [SMALL_STATE(3149)] = 103733, - [SMALL_STATE(3150)] = 103792, - [SMALL_STATE(3151)] = 103851, - [SMALL_STATE(3152)] = 103909, - [SMALL_STATE(3153)] = 103977, - [SMALL_STATE(3154)] = 104035, - [SMALL_STATE(3155)] = 104093, - [SMALL_STATE(3156)] = 104151, - [SMALL_STATE(3157)] = 104209, - [SMALL_STATE(3158)] = 104267, - [SMALL_STATE(3159)] = 104325, - [SMALL_STATE(3160)] = 104383, - [SMALL_STATE(3161)] = 104441, - [SMALL_STATE(3162)] = 104499, - [SMALL_STATE(3163)] = 104557, - [SMALL_STATE(3164)] = 104615, - [SMALL_STATE(3165)] = 104673, - [SMALL_STATE(3166)] = 104735, - [SMALL_STATE(3167)] = 104793, - [SMALL_STATE(3168)] = 104851, - [SMALL_STATE(3169)] = 104909, - [SMALL_STATE(3170)] = 104967, - [SMALL_STATE(3171)] = 105025, - [SMALL_STATE(3172)] = 105083, - [SMALL_STATE(3173)] = 105141, - [SMALL_STATE(3174)] = 105199, - [SMALL_STATE(3175)] = 105257, - [SMALL_STATE(3176)] = 105315, - [SMALL_STATE(3177)] = 105373, - [SMALL_STATE(3178)] = 105431, - [SMALL_STATE(3179)] = 105489, - [SMALL_STATE(3180)] = 105547, - [SMALL_STATE(3181)] = 105605, - [SMALL_STATE(3182)] = 105663, - [SMALL_STATE(3183)] = 105721, - [SMALL_STATE(3184)] = 105779, - [SMALL_STATE(3185)] = 105837, - [SMALL_STATE(3186)] = 105895, - [SMALL_STATE(3187)] = 105961, - [SMALL_STATE(3188)] = 106019, - [SMALL_STATE(3189)] = 106077, - [SMALL_STATE(3190)] = 106135, - [SMALL_STATE(3191)] = 106193, - [SMALL_STATE(3192)] = 106251, - [SMALL_STATE(3193)] = 106309, - [SMALL_STATE(3194)] = 106369, - [SMALL_STATE(3195)] = 106427, - [SMALL_STATE(3196)] = 106485, - [SMALL_STATE(3197)] = 106543, - [SMALL_STATE(3198)] = 106609, - [SMALL_STATE(3199)] = 106667, - [SMALL_STATE(3200)] = 106725, - [SMALL_STATE(3201)] = 106791, - [SMALL_STATE(3202)] = 106849, - [SMALL_STATE(3203)] = 106907, - [SMALL_STATE(3204)] = 106965, - [SMALL_STATE(3205)] = 107023, - [SMALL_STATE(3206)] = 107081, - [SMALL_STATE(3207)] = 107139, - [SMALL_STATE(3208)] = 107197, - [SMALL_STATE(3209)] = 107255, - [SMALL_STATE(3210)] = 107313, - [SMALL_STATE(3211)] = 107371, - [SMALL_STATE(3212)] = 107429, - [SMALL_STATE(3213)] = 107487, - [SMALL_STATE(3214)] = 107555, - [SMALL_STATE(3215)] = 107613, - [SMALL_STATE(3216)] = 107671, - [SMALL_STATE(3217)] = 107729, - [SMALL_STATE(3218)] = 107787, - [SMALL_STATE(3219)] = 107845, - [SMALL_STATE(3220)] = 107903, - [SMALL_STATE(3221)] = 107961, - [SMALL_STATE(3222)] = 108019, - [SMALL_STATE(3223)] = 108081, - [SMALL_STATE(3224)] = 108139, - [SMALL_STATE(3225)] = 108197, - [SMALL_STATE(3226)] = 108255, - [SMALL_STATE(3227)] = 108316, - [SMALL_STATE(3228)] = 108381, - [SMALL_STATE(3229)] = 108446, - [SMALL_STATE(3230)] = 108511, - [SMALL_STATE(3231)] = 108576, - [SMALL_STATE(3232)] = 108641, - [SMALL_STATE(3233)] = 108706, - [SMALL_STATE(3234)] = 108771, - [SMALL_STATE(3235)] = 108836, - [SMALL_STATE(3236)] = 108901, - [SMALL_STATE(3237)] = 108966, - [SMALL_STATE(3238)] = 109031, - [SMALL_STATE(3239)] = 109096, - [SMALL_STATE(3240)] = 109161, - [SMALL_STATE(3241)] = 109222, - [SMALL_STATE(3242)] = 109287, - [SMALL_STATE(3243)] = 109346, - [SMALL_STATE(3244)] = 109411, - [SMALL_STATE(3245)] = 109476, - [SMALL_STATE(3246)] = 109541, - [SMALL_STATE(3247)] = 109606, - [SMALL_STATE(3248)] = 109665, - [SMALL_STATE(3249)] = 109732, - [SMALL_STATE(3250)] = 109797, - [SMALL_STATE(3251)] = 109862, - [SMALL_STATE(3252)] = 109927, - [SMALL_STATE(3253)] = 109992, - [SMALL_STATE(3254)] = 110057, - [SMALL_STATE(3255)] = 110114, - [SMALL_STATE(3256)] = 110190, - [SMALL_STATE(3257)] = 110266, - [SMALL_STATE(3258)] = 110328, - [SMALL_STATE(3259)] = 110388, - [SMALL_STATE(3260)] = 110464, - [SMALL_STATE(3261)] = 110540, - [SMALL_STATE(3262)] = 110616, - [SMALL_STATE(3263)] = 110692, - [SMALL_STATE(3264)] = 110752, - [SMALL_STATE(3265)] = 110828, - [SMALL_STATE(3266)] = 110888, - [SMALL_STATE(3267)] = 110944, - [SMALL_STATE(3268)] = 111004, - [SMALL_STATE(3269)] = 111080, - [SMALL_STATE(3270)] = 111156, - [SMALL_STATE(3271)] = 111232, - [SMALL_STATE(3272)] = 111288, - [SMALL_STATE(3273)] = 111364, - [SMALL_STATE(3274)] = 111440, - [SMALL_STATE(3275)] = 111496, - [SMALL_STATE(3276)] = 111572, - [SMALL_STATE(3277)] = 111632, - [SMALL_STATE(3278)] = 111692, - [SMALL_STATE(3279)] = 111748, - [SMALL_STATE(3280)] = 111808, - [SMALL_STATE(3281)] = 111868, - [SMALL_STATE(3282)] = 111944, - [SMALL_STATE(3283)] = 112000, - [SMALL_STATE(3284)] = 112076, - [SMALL_STATE(3285)] = 112132, - [SMALL_STATE(3286)] = 112188, - [SMALL_STATE(3287)] = 112264, - [SMALL_STATE(3288)] = 112322, - [SMALL_STATE(3289)] = 112386, - [SMALL_STATE(3290)] = 112462, - [SMALL_STATE(3291)] = 112520, - [SMALL_STATE(3292)] = 112596, - [SMALL_STATE(3293)] = 112672, - [SMALL_STATE(3294)] = 112748, - [SMALL_STATE(3295)] = 112824, - [SMALL_STATE(3296)] = 112900, - [SMALL_STATE(3297)] = 112960, - [SMALL_STATE(3298)] = 113036, - [SMALL_STATE(3299)] = 113112, - [SMALL_STATE(3300)] = 113172, - [SMALL_STATE(3301)] = 113231, - [SMALL_STATE(3302)] = 113286, - [SMALL_STATE(3303)] = 113345, - [SMALL_STATE(3304)] = 113404, - [SMALL_STATE(3305)] = 113463, - [SMALL_STATE(3306)] = 113522, - [SMALL_STATE(3307)] = 113581, - [SMALL_STATE(3308)] = 113640, - [SMALL_STATE(3309)] = 113697, - [SMALL_STATE(3310)] = 113756, - [SMALL_STATE(3311)] = 113815, - [SMALL_STATE(3312)] = 113872, - [SMALL_STATE(3313)] = 113931, - [SMALL_STATE(3314)] = 113986, - [SMALL_STATE(3315)] = 114045, - [SMALL_STATE(3316)] = 114100, - [SMALL_STATE(3317)] = 114155, - [SMALL_STATE(3318)] = 114212, - [SMALL_STATE(3319)] = 114267, - [SMALL_STATE(3320)] = 114322, - [SMALL_STATE(3321)] = 114377, - [SMALL_STATE(3322)] = 114432, - [SMALL_STATE(3323)] = 114487, - [SMALL_STATE(3324)] = 114553, - [SMALL_STATE(3325)] = 114617, - [SMALL_STATE(3326)] = 114689, - [SMALL_STATE(3327)] = 114749, - [SMALL_STATE(3328)] = 114831, - [SMALL_STATE(3329)] = 114915, - [SMALL_STATE(3330)] = 115001, - [SMALL_STATE(3331)] = 115075, - [SMALL_STATE(3332)] = 115143, - [SMALL_STATE(3333)] = 115219, - [SMALL_STATE(3334)] = 115297, - [SMALL_STATE(3335)] = 115377, - [SMALL_STATE(3336)] = 115445, - [SMALL_STATE(3337)] = 115507, - [SMALL_STATE(3338)] = 115577, - [SMALL_STATE(3339)] = 115635, - [SMALL_STATE(3340)] = 115715, - [SMALL_STATE(3341)] = 115797, - [SMALL_STATE(3342)] = 115881, - [SMALL_STATE(3343)] = 115953, - [SMALL_STATE(3344)] = 116019, - [SMALL_STATE(3345)] = 116093, - [SMALL_STATE(3346)] = 116169, - [SMALL_STATE(3347)] = 116247, - [SMALL_STATE(3348)] = 116315, - [SMALL_STATE(3349)] = 116385, - [SMALL_STATE(3350)] = 116447, - [SMALL_STATE(3351)] = 116511, - [SMALL_STATE(3352)] = 116581, - [SMALL_STATE(3353)] = 116653, - [SMALL_STATE(3354)] = 116711, - [SMALL_STATE(3355)] = 116771, - [SMALL_STATE(3356)] = 116851, - [SMALL_STATE(3357)] = 116933, - [SMALL_STATE(3358)] = 117015, - [SMALL_STATE(3359)] = 117099, - [SMALL_STATE(3360)] = 117183, - [SMALL_STATE(3361)] = 117269, - [SMALL_STATE(3362)] = 117341, - [SMALL_STATE(3363)] = 117415, - [SMALL_STATE(3364)] = 117481, - [SMALL_STATE(3365)] = 117549, - [SMALL_STATE(3366)] = 117623, - [SMALL_STATE(3367)] = 117699, - [SMALL_STATE(3368)] = 117775, - [SMALL_STATE(3369)] = 117853, - [SMALL_STATE(3370)] = 117931, - [SMALL_STATE(3371)] = 118011, - [SMALL_STATE(3372)] = 118075, - [SMALL_STATE(3373)] = 118143, - [SMALL_STATE(3374)] = 118205, - [SMALL_STATE(3375)] = 118275, - [SMALL_STATE(3376)] = 118333, - [SMALL_STATE(3377)] = 118413, - [SMALL_STATE(3378)] = 118495, - [SMALL_STATE(3379)] = 118579, - [SMALL_STATE(3380)] = 118651, - [SMALL_STATE(3381)] = 118721, - [SMALL_STATE(3382)] = 118795, - [SMALL_STATE(3383)] = 118871, - [SMALL_STATE(3384)] = 118949, - [SMALL_STATE(3385)] = 119003, - [SMALL_STATE(3386)] = 119073, - [SMALL_STATE(3387)] = 119145, - [SMALL_STATE(3388)] = 119207, - [SMALL_STATE(3389)] = 119265, - [SMALL_STATE(3390)] = 119325, - [SMALL_STATE(3391)] = 119391, - [SMALL_STATE(3392)] = 119451, - [SMALL_STATE(3393)] = 119519, - [SMALL_STATE(3394)] = 119575, - [SMALL_STATE(3395)] = 119653, - [SMALL_STATE(3396)] = 119733, - [SMALL_STATE(3397)] = 119815, - [SMALL_STATE(3398)] = 119885, - [SMALL_STATE(3399)] = 119949, - [SMALL_STATE(3400)] = 120021, - [SMALL_STATE(3401)] = 120095, - [SMALL_STATE(3402)] = 120171, - [SMALL_STATE(3403)] = 120227, - [SMALL_STATE(3404)] = 120307, - [SMALL_STATE(3405)] = 120377, - [SMALL_STATE(3406)] = 120459, - [SMALL_STATE(3407)] = 120513, - [SMALL_STATE(3408)] = 120595, - [SMALL_STATE(3409)] = 120679, - [SMALL_STATE(3410)] = 120735, - [SMALL_STATE(3411)] = 120819, - [SMALL_STATE(3412)] = 120875, - [SMALL_STATE(3413)] = 120961, - [SMALL_STATE(3414)] = 121033, - [SMALL_STATE(3415)] = 121107, - [SMALL_STATE(3416)] = 121179, - [SMALL_STATE(3417)] = 121245, - [SMALL_STATE(3418)] = 121313, - [SMALL_STATE(3419)] = 121369, - [SMALL_STATE(3420)] = 121443, - [SMALL_STATE(3421)] = 121519, - [SMALL_STATE(3422)] = 121575, - [SMALL_STATE(3423)] = 121651, - [SMALL_STATE(3424)] = 121707, - [SMALL_STATE(3425)] = 121763, - [SMALL_STATE(3426)] = 121819, - [SMALL_STATE(3427)] = 121889, - [SMALL_STATE(3428)] = 121945, - [SMALL_STATE(3429)] = 122001, - [SMALL_STATE(3430)] = 122065, - [SMALL_STATE(3431)] = 122137, - [SMALL_STATE(3432)] = 122197, - [SMALL_STATE(3433)] = 122279, - [SMALL_STATE(3434)] = 122363, - [SMALL_STATE(3435)] = 122449, - [SMALL_STATE(3436)] = 122523, - [SMALL_STATE(3437)] = 122591, - [SMALL_STATE(3438)] = 122645, - [SMALL_STATE(3439)] = 122723, - [SMALL_STATE(3440)] = 122799, - [SMALL_STATE(3441)] = 122877, - [SMALL_STATE(3442)] = 122955, - [SMALL_STATE(3443)] = 123035, - [SMALL_STATE(3444)] = 123105, - [SMALL_STATE(3445)] = 123185, - [SMALL_STATE(3446)] = 123253, - [SMALL_STATE(3447)] = 123307, - [SMALL_STATE(3448)] = 123360, - [SMALL_STATE(3449)] = 123427, - [SMALL_STATE(3450)] = 123480, - [SMALL_STATE(3451)] = 123533, - [SMALL_STATE(3452)] = 123586, - [SMALL_STATE(3453)] = 123639, - [SMALL_STATE(3454)] = 123692, - [SMALL_STATE(3455)] = 123761, - [SMALL_STATE(3456)] = 123814, - [SMALL_STATE(3457)] = 123867, - [SMALL_STATE(3458)] = 123920, - [SMALL_STATE(3459)] = 123973, - [SMALL_STATE(3460)] = 124026, - [SMALL_STATE(3461)] = 124079, - [SMALL_STATE(3462)] = 124132, - [SMALL_STATE(3463)] = 124185, - [SMALL_STATE(3464)] = 124254, - [SMALL_STATE(3465)] = 124307, - [SMALL_STATE(3466)] = 124372, - [SMALL_STATE(3467)] = 124431, - [SMALL_STATE(3468)] = 124498, - [SMALL_STATE(3469)] = 124553, - [SMALL_STATE(3470)] = 124630, - [SMALL_STATE(3471)] = 124709, - [SMALL_STATE(3472)] = 124790, - [SMALL_STATE(3473)] = 124859, - [SMALL_STATE(3474)] = 124922, - [SMALL_STATE(3475)] = 124993, - [SMALL_STATE(3476)] = 125066, - [SMALL_STATE(3477)] = 125141, - [SMALL_STATE(3478)] = 125194, - [SMALL_STATE(3479)] = 125247, - [SMALL_STATE(3480)] = 125300, - [SMALL_STATE(3481)] = 125353, - [SMALL_STATE(3482)] = 125406, - [SMALL_STATE(3483)] = 125459, - [SMALL_STATE(3484)] = 125514, - [SMALL_STATE(3485)] = 125567, - [SMALL_STATE(3486)] = 125620, - [SMALL_STATE(3487)] = 125673, - [SMALL_STATE(3488)] = 125726, - [SMALL_STATE(3489)] = 125779, - [SMALL_STATE(3490)] = 125832, - [SMALL_STATE(3491)] = 125885, - [SMALL_STATE(3492)] = 125938, - [SMALL_STATE(3493)] = 125991, - [SMALL_STATE(3494)] = 126044, - [SMALL_STATE(3495)] = 126097, - [SMALL_STATE(3496)] = 126150, - [SMALL_STATE(3497)] = 126203, - [SMALL_STATE(3498)] = 126256, - [SMALL_STATE(3499)] = 126309, - [SMALL_STATE(3500)] = 126362, - [SMALL_STATE(3501)] = 126415, - [SMALL_STATE(3502)] = 126468, - [SMALL_STATE(3503)] = 126521, - [SMALL_STATE(3504)] = 126574, - [SMALL_STATE(3505)] = 126627, - [SMALL_STATE(3506)] = 126680, - [SMALL_STATE(3507)] = 126733, - [SMALL_STATE(3508)] = 126786, - [SMALL_STATE(3509)] = 126839, - [SMALL_STATE(3510)] = 126892, - [SMALL_STATE(3511)] = 126945, - [SMALL_STATE(3512)] = 126998, - [SMALL_STATE(3513)] = 127051, - [SMALL_STATE(3514)] = 127104, - [SMALL_STATE(3515)] = 127157, - [SMALL_STATE(3516)] = 127210, - [SMALL_STATE(3517)] = 127263, - [SMALL_STATE(3518)] = 127316, - [SMALL_STATE(3519)] = 127369, - [SMALL_STATE(3520)] = 127440, - [SMALL_STATE(3521)] = 127493, - [SMALL_STATE(3522)] = 127543, - [SMALL_STATE(3523)] = 127607, - [SMALL_STATE(3524)] = 127663, - [SMALL_STATE(3525)] = 127713, - [SMALL_STATE(3526)] = 127763, - [SMALL_STATE(3527)] = 127827, - [SMALL_STATE(3528)] = 127895, - [SMALL_STATE(3529)] = 127963, - [SMALL_STATE(3530)] = 128013, - [SMALL_STATE(3531)] = 128081, - [SMALL_STATE(3532)] = 128137, - [SMALL_STATE(3533)] = 128187, - [SMALL_STATE(3534)] = 128239, - [SMALL_STATE(3535)] = 128303, - [SMALL_STATE(3536)] = 128353, - [SMALL_STATE(3537)] = 128417, - [SMALL_STATE(3538)] = 128485, - [SMALL_STATE(3539)] = 128550, - [SMALL_STATE(3540)] = 128615, - [SMALL_STATE(3541)] = 128680, - [SMALL_STATE(3542)] = 128741, - [SMALL_STATE(3543)] = 128802, - [SMALL_STATE(3544)] = 128863, - [SMALL_STATE(3545)] = 128916, - [SMALL_STATE(3546)] = 128977, - [SMALL_STATE(3547)] = 129038, - [SMALL_STATE(3548)] = 129097, - [SMALL_STATE(3549)] = 129152, - [SMALL_STATE(3550)] = 129205, - [SMALL_STATE(3551)] = 129260, - [SMALL_STATE(3552)] = 129321, - [SMALL_STATE(3553)] = 129386, - [SMALL_STATE(3554)] = 129447, - [SMALL_STATE(3555)] = 129512, - [SMALL_STATE(3556)] = 129573, - [SMALL_STATE(3557)] = 129638, - [SMALL_STATE(3558)] = 129699, - [SMALL_STATE(3559)] = 129760, - [SMALL_STATE(3560)] = 129825, - [SMALL_STATE(3561)] = 129875, - [SMALL_STATE(3562)] = 129927, - [SMALL_STATE(3563)] = 129977, - [SMALL_STATE(3564)] = 130031, - [SMALL_STATE(3565)] = 130083, - [SMALL_STATE(3566)] = 130133, - [SMALL_STATE(3567)] = 130197, - [SMALL_STATE(3568)] = 130247, - [SMALL_STATE(3569)] = 130301, - [SMALL_STATE(3570)] = 130356, - [SMALL_STATE(3571)] = 130411, - [SMALL_STATE(3572)] = 130466, - [SMALL_STATE(3573)] = 130517, - [SMALL_STATE(3574)] = 130566, - [SMALL_STATE(3575)] = 130615, - [SMALL_STATE(3576)] = 130670, - [SMALL_STATE(3577)] = 130725, - [SMALL_STATE(3578)] = 130774, - [SMALL_STATE(3579)] = 130829, - [SMALL_STATE(3580)] = 130882, - [SMALL_STATE(3581)] = 130937, - [SMALL_STATE(3582)] = 130992, - [SMALL_STATE(3583)] = 131047, - [SMALL_STATE(3584)] = 131102, - [SMALL_STATE(3585)] = 131157, - [SMALL_STATE(3586)] = 131206, - [SMALL_STATE(3587)] = 131261, - [SMALL_STATE(3588)] = 131316, - [SMALL_STATE(3589)] = 131371, - [SMALL_STATE(3590)] = 131426, - [SMALL_STATE(3591)] = 131481, - [SMALL_STATE(3592)] = 131536, - [SMALL_STATE(3593)] = 131591, - [SMALL_STATE(3594)] = 131646, - [SMALL_STATE(3595)] = 131701, - [SMALL_STATE(3596)] = 131756, - [SMALL_STATE(3597)] = 131811, - [SMALL_STATE(3598)] = 131860, - [SMALL_STATE(3599)] = 131911, - [SMALL_STATE(3600)] = 131966, - [SMALL_STATE(3601)] = 132019, - [SMALL_STATE(3602)] = 132074, - [SMALL_STATE(3603)] = 132127, - [SMALL_STATE(3604)] = 132182, - [SMALL_STATE(3605)] = 132237, - [SMALL_STATE(3606)] = 132292, - [SMALL_STATE(3607)] = 132347, - [SMALL_STATE(3608)] = 132395, - [SMALL_STATE(3609)] = 132443, - [SMALL_STATE(3610)] = 132495, - [SMALL_STATE(3611)] = 132545, - [SMALL_STATE(3612)] = 132597, - [SMALL_STATE(3613)] = 132653, - [SMALL_STATE(3614)] = 132703, - [SMALL_STATE(3615)] = 132751, - [SMALL_STATE(3616)] = 132799, - [SMALL_STATE(3617)] = 132851, - [SMALL_STATE(3618)] = 132899, - [SMALL_STATE(3619)] = 132951, - [SMALL_STATE(3620)] = 133007, - [SMALL_STATE(3621)] = 133062, - [SMALL_STATE(3622)] = 133117, - [SMALL_STATE(3623)] = 133172, - [SMALL_STATE(3624)] = 133219, - [SMALL_STATE(3625)] = 133266, - [SMALL_STATE(3626)] = 133317, - [SMALL_STATE(3627)] = 133368, - [SMALL_STATE(3628)] = 133415, - [SMALL_STATE(3629)] = 133464, - [SMALL_STATE(3630)] = 133511, - [SMALL_STATE(3631)] = 133562, - [SMALL_STATE(3632)] = 133609, - [SMALL_STATE(3633)] = 133660, - [SMALL_STATE(3634)] = 133708, - [SMALL_STATE(3635)] = 133758, - [SMALL_STATE(3636)] = 133806, - [SMALL_STATE(3637)] = 133854, - [SMALL_STATE(3638)] = 133898, - [SMALL_STATE(3639)] = 133948, - [SMALL_STATE(3640)] = 133998, - [SMALL_STATE(3641)] = 134048, - [SMALL_STATE(3642)] = 134096, - [SMALL_STATE(3643)] = 134143, - [SMALL_STATE(3644)] = 134192, - [SMALL_STATE(3645)] = 134241, - [SMALL_STATE(3646)] = 134290, - [SMALL_STATE(3647)] = 134339, - [SMALL_STATE(3648)] = 134388, - [SMALL_STATE(3649)] = 134435, - [SMALL_STATE(3650)] = 134484, - [SMALL_STATE(3651)] = 134533, - [SMALL_STATE(3652)] = 134578, - [SMALL_STATE(3653)] = 134627, - [SMALL_STATE(3654)] = 134676, - [SMALL_STATE(3655)] = 134725, - [SMALL_STATE(3656)] = 134774, - [SMALL_STATE(3657)] = 134823, - [SMALL_STATE(3658)] = 134868, - [SMALL_STATE(3659)] = 134913, - [SMALL_STATE(3660)] = 134962, - [SMALL_STATE(3661)] = 135013, - [SMALL_STATE(3662)] = 135066, - [SMALL_STATE(3663)] = 135115, - [SMALL_STATE(3664)] = 135160, - [SMALL_STATE(3665)] = 135205, - [SMALL_STATE(3666)] = 135254, - [SMALL_STATE(3667)] = 135303, - [SMALL_STATE(3668)] = 135350, - [SMALL_STATE(3669)] = 135397, - [SMALL_STATE(3670)] = 135442, - [SMALL_STATE(3671)] = 135487, - [SMALL_STATE(3672)] = 135536, - [SMALL_STATE(3673)] = 135581, - [SMALL_STATE(3674)] = 135626, - [SMALL_STATE(3675)] = 135672, - [SMALL_STATE(3676)] = 135720, - [SMALL_STATE(3677)] = 135768, - [SMALL_STATE(3678)] = 135816, - [SMALL_STATE(3679)] = 135864, - [SMALL_STATE(3680)] = 135912, - [SMALL_STATE(3681)] = 135956, - [SMALL_STATE(3682)] = 136002, - [SMALL_STATE(3683)] = 136048, - [SMALL_STATE(3684)] = 136094, - [SMALL_STATE(3685)] = 136140, - [SMALL_STATE(3686)] = 136184, - [SMALL_STATE(3687)] = 136228, - [SMALL_STATE(3688)] = 136272, - [SMALL_STATE(3689)] = 136320, - [SMALL_STATE(3690)] = 136364, - [SMALL_STATE(3691)] = 136408, - [SMALL_STATE(3692)] = 136452, - [SMALL_STATE(3693)] = 136496, - [SMALL_STATE(3694)] = 136546, - [SMALL_STATE(3695)] = 136606, - [SMALL_STATE(3696)] = 136660, - [SMALL_STATE(3697)] = 136722, - [SMALL_STATE(3698)] = 136772, - [SMALL_STATE(3699)] = 136844, - [SMALL_STATE(3700)] = 136918, - [SMALL_STATE(3701)] = 136994, - [SMALL_STATE(3702)] = 137058, - [SMALL_STATE(3703)] = 137116, - [SMALL_STATE(3704)] = 137182, - [SMALL_STATE(3705)] = 137250, - [SMALL_STATE(3706)] = 137320, - [SMALL_STATE(3707)] = 137378, - [SMALL_STATE(3708)] = 137438, - [SMALL_STATE(3709)] = 137490, - [SMALL_STATE(3710)] = 137544, - [SMALL_STATE(3711)] = 137604, - [SMALL_STATE(3712)] = 137666, - [SMALL_STATE(3713)] = 137714, - [SMALL_STATE(3714)] = 137764, - [SMALL_STATE(3715)] = 137834, - [SMALL_STATE(3716)] = 137906, - [SMALL_STATE(3717)] = 137978, - [SMALL_STATE(3718)] = 138052, - [SMALL_STATE(3719)] = 138126, - [SMALL_STATE(3720)] = 138202, - [SMALL_STATE(3721)] = 138264, - [SMALL_STATE(3722)] = 138328, - [SMALL_STATE(3723)] = 138384, - [SMALL_STATE(3724)] = 138442, - [SMALL_STATE(3725)] = 138506, - [SMALL_STATE(3726)] = 138572, - [SMALL_STATE(3727)] = 138638, - [SMALL_STATE(3728)] = 138706, - [SMALL_STATE(3729)] = 138774, - [SMALL_STATE(3730)] = 138844, - [SMALL_STATE(3731)] = 138904, - [SMALL_STATE(3732)] = 138958, - [SMALL_STATE(3733)] = 139020, - [SMALL_STATE(3734)] = 139070, - [SMALL_STATE(3735)] = 139142, - [SMALL_STATE(3736)] = 139216, - [SMALL_STATE(3737)] = 139292, - [SMALL_STATE(3738)] = 139356, - [SMALL_STATE(3739)] = 139414, - [SMALL_STATE(3740)] = 139480, - [SMALL_STATE(3741)] = 139548, - [SMALL_STATE(3742)] = 139606, - [SMALL_STATE(3743)] = 139658, - [SMALL_STATE(3744)] = 139718, - [SMALL_STATE(3745)] = 139766, - [SMALL_STATE(3746)] = 139836, - [SMALL_STATE(3747)] = 139908, - [SMALL_STATE(3748)] = 139982, - [SMALL_STATE(3749)] = 140044, - [SMALL_STATE(3750)] = 140100, - [SMALL_STATE(3751)] = 140164, - [SMALL_STATE(3752)] = 140230, - [SMALL_STATE(3753)] = 140298, - [SMALL_STATE(3754)] = 140356, - [SMALL_STATE(3755)] = 140416, - [SMALL_STATE(3756)] = 140468, - [SMALL_STATE(3757)] = 140522, - [SMALL_STATE(3758)] = 140582, - [SMALL_STATE(3759)] = 140644, - [SMALL_STATE(3760)] = 140692, - [SMALL_STATE(3761)] = 140742, - [SMALL_STATE(3762)] = 140812, - [SMALL_STATE(3763)] = 140884, - [SMALL_STATE(3764)] = 140956, - [SMALL_STATE(3765)] = 141030, - [SMALL_STATE(3766)] = 141104, - [SMALL_STATE(3767)] = 141180, - [SMALL_STATE(3768)] = 141242, - [SMALL_STATE(3769)] = 141306, - [SMALL_STATE(3770)] = 141362, - [SMALL_STATE(3771)] = 141420, - [SMALL_STATE(3772)] = 141484, - [SMALL_STATE(3773)] = 141550, - [SMALL_STATE(3774)] = 141616, - [SMALL_STATE(3775)] = 141684, - [SMALL_STATE(3776)] = 141752, - [SMALL_STATE(3777)] = 141822, - [SMALL_STATE(3778)] = 141880, - [SMALL_STATE(3779)] = 141932, - [SMALL_STATE(3780)] = 141992, - [SMALL_STATE(3781)] = 142040, - [SMALL_STATE(3782)] = 142110, - [SMALL_STATE(3783)] = 142182, - [SMALL_STATE(3784)] = 142256, - [SMALL_STATE(3785)] = 142318, - [SMALL_STATE(3786)] = 142374, - [SMALL_STATE(3787)] = 142438, - [SMALL_STATE(3788)] = 142504, - [SMALL_STATE(3789)] = 142572, - [SMALL_STATE(3790)] = 142622, - [SMALL_STATE(3791)] = 142672, - [SMALL_STATE(3792)] = 142716, - [SMALL_STATE(3793)] = 142766, - [SMALL_STATE(3794)] = 142816, - [SMALL_STATE(3795)] = 142866, - [SMALL_STATE(3796)] = 142916, - [SMALL_STATE(3797)] = 142986, - [SMALL_STATE(3798)] = 143029, - [SMALL_STATE(3799)] = 143074, - [SMALL_STATE(3800)] = 143117, - [SMALL_STATE(3801)] = 143160, - [SMALL_STATE(3802)] = 143203, - [SMALL_STATE(3803)] = 143292, - [SMALL_STATE(3804)] = 143367, - [SMALL_STATE(3805)] = 143442, - [SMALL_STATE(3806)] = 143531, - [SMALL_STATE(3807)] = 143606, - [SMALL_STATE(3808)] = 143681, - [SMALL_STATE(3809)] = 143756, - [SMALL_STATE(3810)] = 143831, - [SMALL_STATE(3811)] = 143899, - [SMALL_STATE(3812)] = 143963, - [SMALL_STATE(3813)] = 144007, - [SMALL_STATE(3814)] = 144051, - [SMALL_STATE(3815)] = 144095, - [SMALL_STATE(3816)] = 144139, - [SMALL_STATE(3817)] = 144193, - [SMALL_STATE(3818)] = 144241, - [SMALL_STATE(3819)] = 144297, - [SMALL_STATE(3820)] = 144341, - [SMALL_STATE(3821)] = 144409, - [SMALL_STATE(3822)] = 144479, - [SMALL_STATE(3823)] = 144537, - [SMALL_STATE(3824)] = 144589, - [SMALL_STATE(3825)] = 144649, - [SMALL_STATE(3826)] = 144711, - [SMALL_STATE(3827)] = 144775, - [SMALL_STATE(3828)] = 144819, - [SMALL_STATE(3829)] = 144863, - [SMALL_STATE(3830)] = 144907, - [SMALL_STATE(3831)] = 144951, - [SMALL_STATE(3832)] = 145005, - [SMALL_STATE(3833)] = 145053, - [SMALL_STATE(3834)] = 145109, - [SMALL_STATE(3835)] = 145153, - [SMALL_STATE(3836)] = 145219, - [SMALL_STATE(3837)] = 145289, - [SMALL_STATE(3838)] = 145347, - [SMALL_STATE(3839)] = 145399, - [SMALL_STATE(3840)] = 145459, - [SMALL_STATE(3841)] = 145521, - [SMALL_STATE(3842)] = 145587, - [SMALL_STATE(3843)] = 145670, - [SMALL_STATE(3844)] = 145739, - [SMALL_STATE(3845)] = 145808, - [SMALL_STATE(3846)] = 145853, - [SMALL_STATE(3847)] = 145898, - [SMALL_STATE(3848)] = 145981, - [SMALL_STATE(3849)] = 146064, - [SMALL_STATE(3850)] = 146147, - [SMALL_STATE(3851)] = 146216, - [SMALL_STATE(3852)] = 146285, - [SMALL_STATE(3853)] = 146354, - [SMALL_STATE(3854)] = 146437, - [SMALL_STATE(3855)] = 146520, - [SMALL_STATE(3856)] = 146567, - [SMALL_STATE(3857)] = 146650, - [SMALL_STATE(3858)] = 146719, - [SMALL_STATE(3859)] = 146802, - [SMALL_STATE(3860)] = 146885, - [SMALL_STATE(3861)] = 146968, - [SMALL_STATE(3862)] = 147051, - [SMALL_STATE(3863)] = 147134, - [SMALL_STATE(3864)] = 147217, - [SMALL_STATE(3865)] = 147300, - [SMALL_STATE(3866)] = 147383, - [SMALL_STATE(3867)] = 147466, - [SMALL_STATE(3868)] = 147549, - [SMALL_STATE(3869)] = 147632, - [SMALL_STATE(3870)] = 147715, - [SMALL_STATE(3871)] = 147798, - [SMALL_STATE(3872)] = 147881, - [SMALL_STATE(3873)] = 147964, - [SMALL_STATE(3874)] = 148047, - [SMALL_STATE(3875)] = 148130, - [SMALL_STATE(3876)] = 148213, - [SMALL_STATE(3877)] = 148296, - [SMALL_STATE(3878)] = 148342, - [SMALL_STATE(3879)] = 148386, - [SMALL_STATE(3880)] = 148430, - [SMALL_STATE(3881)] = 148474, - [SMALL_STATE(3882)] = 148518, - [SMALL_STATE(3883)] = 148595, - [SMALL_STATE(3884)] = 148672, - [SMALL_STATE(3885)] = 148749, - [SMALL_STATE(3886)] = 148826, - [SMALL_STATE(3887)] = 148903, - [SMALL_STATE(3888)] = 148980, - [SMALL_STATE(3889)] = 149057, - [SMALL_STATE(3890)] = 149134, - [SMALL_STATE(3891)] = 149211, - [SMALL_STATE(3892)] = 149288, - [SMALL_STATE(3893)] = 149327, - [SMALL_STATE(3894)] = 149404, - [SMALL_STATE(3895)] = 149481, - [SMALL_STATE(3896)] = 149535, - [SMALL_STATE(3897)] = 149586, - [SMALL_STATE(3898)] = 149639, - [SMALL_STATE(3899)] = 149690, - [SMALL_STATE(3900)] = 149741, - [SMALL_STATE(3901)] = 149781, - [SMALL_STATE(3902)] = 149817, - [SMALL_STATE(3903)] = 149867, - [SMALL_STATE(3904)] = 149911, - [SMALL_STATE(3905)] = 149947, - [SMALL_STATE(3906)] = 149991, - [SMALL_STATE(3907)] = 150031, - [SMALL_STATE(3908)] = 150075, - [SMALL_STATE(3909)] = 150115, - [SMALL_STATE(3910)] = 150165, - [SMALL_STATE(3911)] = 150213, - [SMALL_STATE(3912)] = 150261, - [SMALL_STATE(3913)] = 150309, - [SMALL_STATE(3914)] = 150357, - [SMALL_STATE(3915)] = 150407, - [SMALL_STATE(3916)] = 150449, - [SMALL_STATE(3917)] = 150505, - [SMALL_STATE(3918)] = 150544, - [SMALL_STATE(3919)] = 150591, - [SMALL_STATE(3920)] = 150644, - [SMALL_STATE(3921)] = 150697, - [SMALL_STATE(3922)] = 150744, - [SMALL_STATE(3923)] = 150791, - [SMALL_STATE(3924)] = 150844, - [SMALL_STATE(3925)] = 150881, - [SMALL_STATE(3926)] = 150920, - [SMALL_STATE(3927)] = 150975, - [SMALL_STATE(3928)] = 151022, - [SMALL_STATE(3929)] = 151069, - [SMALL_STATE(3930)] = 151106, - [SMALL_STATE(3931)] = 151144, - [SMALL_STATE(3932)] = 151194, - [SMALL_STATE(3933)] = 151244, - [SMALL_STATE(3934)] = 151294, - [SMALL_STATE(3935)] = 151344, - [SMALL_STATE(3936)] = 151380, - [SMALL_STATE(3937)] = 151418, - [SMALL_STATE(3938)] = 151454, - [SMALL_STATE(3939)] = 151488, - [SMALL_STATE(3940)] = 151526, - [SMALL_STATE(3941)] = 151560, - [SMALL_STATE(3942)] = 151594, - [SMALL_STATE(3943)] = 151640, - [SMALL_STATE(3944)] = 151678, - [SMALL_STATE(3945)] = 151730, - [SMALL_STATE(3946)] = 151782, - [SMALL_STATE(3947)] = 151834, - [SMALL_STATE(3948)] = 151868, - [SMALL_STATE(3949)] = 151917, - [SMALL_STATE(3950)] = 151964, - [SMALL_STATE(3951)] = 151999, - [SMALL_STATE(3952)] = 152032, - [SMALL_STATE(3953)] = 152081, - [SMALL_STATE(3954)] = 152114, - [SMALL_STATE(3955)] = 152167, - [SMALL_STATE(3956)] = 152204, - [SMALL_STATE(3957)] = 152239, - [SMALL_STATE(3958)] = 152280, - [SMALL_STATE(3959)] = 152317, - [SMALL_STATE(3960)] = 152350, - [SMALL_STATE(3961)] = 152383, - [SMALL_STATE(3962)] = 152420, - [SMALL_STATE(3963)] = 152469, - [SMALL_STATE(3964)] = 152506, - [SMALL_STATE(3965)] = 152541, - [SMALL_STATE(3966)] = 152590, - [SMALL_STATE(3967)] = 152625, - [SMALL_STATE(3968)] = 152660, - [SMALL_STATE(3969)] = 152692, - [SMALL_STATE(3970)] = 152730, - [SMALL_STATE(3971)] = 152768, - [SMALL_STATE(3972)] = 152806, - [SMALL_STATE(3973)] = 152844, - [SMALL_STATE(3974)] = 152882, - [SMALL_STATE(3975)] = 152920, - [SMALL_STATE(3976)] = 152958, - [SMALL_STATE(3977)] = 152996, - [SMALL_STATE(3978)] = 153034, - [SMALL_STATE(3979)] = 153072, - [SMALL_STATE(3980)] = 153108, - [SMALL_STATE(3981)] = 153146, - [SMALL_STATE(3982)] = 153184, - [SMALL_STATE(3983)] = 153222, - [SMALL_STATE(3984)] = 153258, - [SMALL_STATE(3985)] = 153304, - [SMALL_STATE(3986)] = 153336, - [SMALL_STATE(3987)] = 153368, - [SMALL_STATE(3988)] = 153400, - [SMALL_STATE(3989)] = 153438, - [SMALL_STATE(3990)] = 153472, - [SMALL_STATE(3991)] = 153506, - [SMALL_STATE(3992)] = 153544, - [SMALL_STATE(3993)] = 153576, - [SMALL_STATE(3994)] = 153616, - [SMALL_STATE(3995)] = 153656, - [SMALL_STATE(3996)] = 153690, - [SMALL_STATE(3997)] = 153728, - [SMALL_STATE(3998)] = 153778, - [SMALL_STATE(3999)] = 153816, - [SMALL_STATE(4000)] = 153852, - [SMALL_STATE(4001)] = 153886, - [SMALL_STATE(4002)] = 153936, - [SMALL_STATE(4003)] = 153970, - [SMALL_STATE(4004)] = 154002, - [SMALL_STATE(4005)] = 154036, - [SMALL_STATE(4006)] = 154068, - [SMALL_STATE(4007)] = 154106, - [SMALL_STATE(4008)] = 154156, - [SMALL_STATE(4009)] = 154194, - [SMALL_STATE(4010)] = 154232, - [SMALL_STATE(4011)] = 154270, - [SMALL_STATE(4012)] = 154302, - [SMALL_STATE(4013)] = 154342, - [SMALL_STATE(4014)] = 154380, - [SMALL_STATE(4015)] = 154418, - [SMALL_STATE(4016)] = 154450, - [SMALL_STATE(4017)] = 154488, - [SMALL_STATE(4018)] = 154524, - [SMALL_STATE(4019)] = 154555, - [SMALL_STATE(4020)] = 154590, - [SMALL_STATE(4021)] = 154621, - [SMALL_STATE(4022)] = 154662, - [SMALL_STATE(4023)] = 154695, - [SMALL_STATE(4024)] = 154728, - [SMALL_STATE(4025)] = 154759, - [SMALL_STATE(4026)] = 154792, - [SMALL_STATE(4027)] = 154839, - [SMALL_STATE(4028)] = 154874, - [SMALL_STATE(4029)] = 154905, - [SMALL_STATE(4030)] = 154952, - [SMALL_STATE(4031)] = 154983, - [SMALL_STATE(4032)] = 155014, - [SMALL_STATE(4033)] = 155045, - [SMALL_STATE(4034)] = 155080, - [SMALL_STATE(4035)] = 155111, - [SMALL_STATE(4036)] = 155142, - [SMALL_STATE(4037)] = 155181, - [SMALL_STATE(4038)] = 155212, - [SMALL_STATE(4039)] = 155247, - [SMALL_STATE(4040)] = 155284, - [SMALL_STATE(4041)] = 155315, - [SMALL_STATE(4042)] = 155348, - [SMALL_STATE(4043)] = 155393, - [SMALL_STATE(4044)] = 155440, - [SMALL_STATE(4045)] = 155471, - [SMALL_STATE(4046)] = 155506, - [SMALL_STATE(4047)] = 155553, - [SMALL_STATE(4048)] = 155590, - [SMALL_STATE(4049)] = 155627, - [SMALL_STATE(4050)] = 155666, - [SMALL_STATE(4051)] = 155697, - [SMALL_STATE(4052)] = 155736, - [SMALL_STATE(4053)] = 155768, - [SMALL_STATE(4054)] = 155808, - [SMALL_STATE(4055)] = 155846, - [SMALL_STATE(4056)] = 155878, - [SMALL_STATE(4057)] = 155908, - [SMALL_STATE(4058)] = 155958, - [SMALL_STATE(4059)] = 155988, - [SMALL_STATE(4060)] = 156028, - [SMALL_STATE(4061)] = 156058, - [SMALL_STATE(4062)] = 156096, - [SMALL_STATE(4063)] = 156134, - [SMALL_STATE(4064)] = 156166, - [SMALL_STATE(4065)] = 156196, - [SMALL_STATE(4066)] = 156226, - [SMALL_STATE(4067)] = 156256, - [SMALL_STATE(4068)] = 156290, - [SMALL_STATE(4069)] = 156320, - [SMALL_STATE(4070)] = 156352, - [SMALL_STATE(4071)] = 156384, - [SMALL_STATE(4072)] = 156416, - [SMALL_STATE(4073)] = 156448, - [SMALL_STATE(4074)] = 156480, - [SMALL_STATE(4075)] = 156516, - [SMALL_STATE(4076)] = 156550, - [SMALL_STATE(4077)] = 156584, - [SMALL_STATE(4078)] = 156614, - [SMALL_STATE(4079)] = 156644, - [SMALL_STATE(4080)] = 156678, - [SMALL_STATE(4081)] = 156708, - [SMALL_STATE(4082)] = 156746, - [SMALL_STATE(4083)] = 156780, - [SMALL_STATE(4084)] = 156818, - [SMALL_STATE(4085)] = 156848, - [SMALL_STATE(4086)] = 156878, - [SMALL_STATE(4087)] = 156918, - [SMALL_STATE(4088)] = 156950, - [SMALL_STATE(4089)] = 156982, - [SMALL_STATE(4090)] = 157014, - [SMALL_STATE(4091)] = 157046, - [SMALL_STATE(4092)] = 157078, - [SMALL_STATE(4093)] = 157110, - [SMALL_STATE(4094)] = 157139, - [SMALL_STATE(4095)] = 157176, - [SMALL_STATE(4096)] = 157213, - [SMALL_STATE(4097)] = 157250, - [SMALL_STATE(4098)] = 157279, - [SMALL_STATE(4099)] = 157316, - [SMALL_STATE(4100)] = 157353, - [SMALL_STATE(4101)] = 157382, - [SMALL_STATE(4102)] = 157419, - [SMALL_STATE(4103)] = 157452, - [SMALL_STATE(4104)] = 157485, - [SMALL_STATE(4105)] = 157518, - [SMALL_STATE(4106)] = 157549, - [SMALL_STATE(4107)] = 157578, - [SMALL_STATE(4108)] = 157613, - [SMALL_STATE(4109)] = 157644, - [SMALL_STATE(4110)] = 157677, - [SMALL_STATE(4111)] = 157708, - [SMALL_STATE(4112)] = 157739, - [SMALL_STATE(4113)] = 157776, - [SMALL_STATE(4114)] = 157813, - [SMALL_STATE(4115)] = 157842, - [SMALL_STATE(4116)] = 157879, - [SMALL_STATE(4117)] = 157916, - [SMALL_STATE(4118)] = 157947, - [SMALL_STATE(4119)] = 157978, - [SMALL_STATE(4120)] = 158007, - [SMALL_STATE(4121)] = 158038, - [SMALL_STATE(4122)] = 158067, - [SMALL_STATE(4123)] = 158096, - [SMALL_STATE(4124)] = 158127, - [SMALL_STATE(4125)] = 158156, - [SMALL_STATE(4126)] = 158193, - [SMALL_STATE(4127)] = 158226, - [SMALL_STATE(4128)] = 158257, - [SMALL_STATE(4129)] = 158294, - [SMALL_STATE(4130)] = 158323, - [SMALL_STATE(4131)] = 158360, - [SMALL_STATE(4132)] = 158397, - [SMALL_STATE(4133)] = 158434, - [SMALL_STATE(4134)] = 158463, - [SMALL_STATE(4135)] = 158492, - [SMALL_STATE(4136)] = 158521, - [SMALL_STATE(4137)] = 158550, - [SMALL_STATE(4138)] = 158583, - [SMALL_STATE(4139)] = 158620, - [SMALL_STATE(4140)] = 158651, - [SMALL_STATE(4141)] = 158688, - [SMALL_STATE(4142)] = 158719, - [SMALL_STATE(4143)] = 158750, - [SMALL_STATE(4144)] = 158781, - [SMALL_STATE(4145)] = 158818, - [SMALL_STATE(4146)] = 158849, - [SMALL_STATE(4147)] = 158886, - [SMALL_STATE(4148)] = 158923, - [SMALL_STATE(4149)] = 158952, - [SMALL_STATE(4150)] = 158983, - [SMALL_STATE(4151)] = 159014, - [SMALL_STATE(4152)] = 159045, - [SMALL_STATE(4153)] = 159074, - [SMALL_STATE(4154)] = 159105, - [SMALL_STATE(4155)] = 159142, - [SMALL_STATE(4156)] = 159179, - [SMALL_STATE(4157)] = 159216, - [SMALL_STATE(4158)] = 159253, - [SMALL_STATE(4159)] = 159290, - [SMALL_STATE(4160)] = 159327, - [SMALL_STATE(4161)] = 159360, - [SMALL_STATE(4162)] = 159397, - [SMALL_STATE(4163)] = 159434, - [SMALL_STATE(4164)] = 159465, - [SMALL_STATE(4165)] = 159494, - [SMALL_STATE(4166)] = 159525, - [SMALL_STATE(4167)] = 159556, - [SMALL_STATE(4168)] = 159587, - [SMALL_STATE(4169)] = 159624, - [SMALL_STATE(4170)] = 159661, - [SMALL_STATE(4171)] = 159690, - [SMALL_STATE(4172)] = 159719, - [SMALL_STATE(4173)] = 159752, - [SMALL_STATE(4174)] = 159781, - [SMALL_STATE(4175)] = 159818, - [SMALL_STATE(4176)] = 159847, - [SMALL_STATE(4177)] = 159884, - [SMALL_STATE(4178)] = 159913, - [SMALL_STATE(4179)] = 159942, - [SMALL_STATE(4180)] = 159970, - [SMALL_STATE(4181)] = 159998, - [SMALL_STATE(4182)] = 160026, - [SMALL_STATE(4183)] = 160074, - [SMALL_STATE(4184)] = 160110, - [SMALL_STATE(4185)] = 160146, - [SMALL_STATE(4186)] = 160182, - [SMALL_STATE(4187)] = 160212, - [SMALL_STATE(4188)] = 160240, - [SMALL_STATE(4189)] = 160284, - [SMALL_STATE(4190)] = 160328, - [SMALL_STATE(4191)] = 160356, - [SMALL_STATE(4192)] = 160392, - [SMALL_STATE(4193)] = 160428, - [SMALL_STATE(4194)] = 160476, - [SMALL_STATE(4195)] = 160504, - [SMALL_STATE(4196)] = 160532, - [SMALL_STATE(4197)] = 160560, - [SMALL_STATE(4198)] = 160596, - [SMALL_STATE(4199)] = 160624, - [SMALL_STATE(4200)] = 160660, - [SMALL_STATE(4201)] = 160696, - [SMALL_STATE(4202)] = 160732, - [SMALL_STATE(4203)] = 160764, - [SMALL_STATE(4204)] = 160800, - [SMALL_STATE(4205)] = 160830, - [SMALL_STATE(4206)] = 160858, - [SMALL_STATE(4207)] = 160894, - [SMALL_STATE(4208)] = 160924, - [SMALL_STATE(4209)] = 160960, - [SMALL_STATE(4210)] = 160988, - [SMALL_STATE(4211)] = 161016, - [SMALL_STATE(4212)] = 161064, - [SMALL_STATE(4213)] = 161092, - [SMALL_STATE(4214)] = 161120, - [SMALL_STATE(4215)] = 161150, - [SMALL_STATE(4216)] = 161180, - [SMALL_STATE(4217)] = 161216, - [SMALL_STATE(4218)] = 161244, - [SMALL_STATE(4219)] = 161274, - [SMALL_STATE(4220)] = 161310, - [SMALL_STATE(4221)] = 161340, - [SMALL_STATE(4222)] = 161388, - [SMALL_STATE(4223)] = 161424, - [SMALL_STATE(4224)] = 161452, - [SMALL_STATE(4225)] = 161496, - [SMALL_STATE(4226)] = 161532, - [SMALL_STATE(4227)] = 161560, - [SMALL_STATE(4228)] = 161590, - [SMALL_STATE(4229)] = 161626, - [SMALL_STATE(4230)] = 161662, - [SMALL_STATE(4231)] = 161690, - [SMALL_STATE(4232)] = 161734, - [SMALL_STATE(4233)] = 161766, - [SMALL_STATE(4234)] = 161796, - [SMALL_STATE(4235)] = 161832, - [SMALL_STATE(4236)] = 161868, - [SMALL_STATE(4237)] = 161900, - [SMALL_STATE(4238)] = 161932, - [SMALL_STATE(4239)] = 161964, - [SMALL_STATE(4240)] = 161996, - [SMALL_STATE(4241)] = 162028, - [SMALL_STATE(4242)] = 162064, - [SMALL_STATE(4243)] = 162092, - [SMALL_STATE(4244)] = 162128, - [SMALL_STATE(4245)] = 162158, - [SMALL_STATE(4246)] = 162202, - [SMALL_STATE(4247)] = 162238, - [SMALL_STATE(4248)] = 162270, - [SMALL_STATE(4249)] = 162306, - [SMALL_STATE(4250)] = 162334, - [SMALL_STATE(4251)] = 162366, - [SMALL_STATE(4252)] = 162394, - [SMALL_STATE(4253)] = 162430, - [SMALL_STATE(4254)] = 162466, - [SMALL_STATE(4255)] = 162502, - [SMALL_STATE(4256)] = 162538, - [SMALL_STATE(4257)] = 162570, - [SMALL_STATE(4258)] = 162598, - [SMALL_STATE(4259)] = 162628, - [SMALL_STATE(4260)] = 162660, - [SMALL_STATE(4261)] = 162692, - [SMALL_STATE(4262)] = 162728, - [SMALL_STATE(4263)] = 162755, - [SMALL_STATE(4264)] = 162784, - [SMALL_STATE(4265)] = 162815, - [SMALL_STATE(4266)] = 162842, - [SMALL_STATE(4267)] = 162869, - [SMALL_STATE(4268)] = 162896, - [SMALL_STATE(4269)] = 162925, - [SMALL_STATE(4270)] = 162956, - [SMALL_STATE(4271)] = 162987, - [SMALL_STATE(4272)] = 163016, - [SMALL_STATE(4273)] = 163043, - [SMALL_STATE(4274)] = 163068, - [SMALL_STATE(4275)] = 163093, - [SMALL_STATE(4276)] = 163122, - [SMALL_STATE(4277)] = 163153, - [SMALL_STATE(4278)] = 163184, - [SMALL_STATE(4279)] = 163215, - [SMALL_STATE(4280)] = 163246, - [SMALL_STATE(4281)] = 163273, - [SMALL_STATE(4282)] = 163304, - [SMALL_STATE(4283)] = 163335, - [SMALL_STATE(4284)] = 163368, - [SMALL_STATE(4285)] = 163401, - [SMALL_STATE(4286)] = 163428, - [SMALL_STATE(4287)] = 163455, - [SMALL_STATE(4288)] = 163482, - [SMALL_STATE(4289)] = 163509, - [SMALL_STATE(4290)] = 163538, - [SMALL_STATE(4291)] = 163569, - [SMALL_STATE(4292)] = 163600, - [SMALL_STATE(4293)] = 163631, - [SMALL_STATE(4294)] = 163660, - [SMALL_STATE(4295)] = 163693, - [SMALL_STATE(4296)] = 163726, - [SMALL_STATE(4297)] = 163753, - [SMALL_STATE(4298)] = 163780, - [SMALL_STATE(4299)] = 163811, - [SMALL_STATE(4300)] = 163842, - [SMALL_STATE(4301)] = 163873, - [SMALL_STATE(4302)] = 163900, - [SMALL_STATE(4303)] = 163929, - [SMALL_STATE(4304)] = 163956, - [SMALL_STATE(4305)] = 163987, - [SMALL_STATE(4306)] = 164016, - [SMALL_STATE(4307)] = 164045, - [SMALL_STATE(4308)] = 164078, - [SMALL_STATE(4309)] = 164107, - [SMALL_STATE(4310)] = 164138, - [SMALL_STATE(4311)] = 164169, - [SMALL_STATE(4312)] = 164200, - [SMALL_STATE(4313)] = 164227, - [SMALL_STATE(4314)] = 164254, - [SMALL_STATE(4315)] = 164281, - [SMALL_STATE(4316)] = 164308, - [SMALL_STATE(4317)] = 164333, - [SMALL_STATE(4318)] = 164360, - [SMALL_STATE(4319)] = 164391, - [SMALL_STATE(4320)] = 164422, - [SMALL_STATE(4321)] = 164455, - [SMALL_STATE(4322)] = 164490, - [SMALL_STATE(4323)] = 164517, - [SMALL_STATE(4324)] = 164544, - [SMALL_STATE(4325)] = 164579, - [SMALL_STATE(4326)] = 164608, - [SMALL_STATE(4327)] = 164633, - [SMALL_STATE(4328)] = 164660, - [SMALL_STATE(4329)] = 164689, - [SMALL_STATE(4330)] = 164714, - [SMALL_STATE(4331)] = 164741, - [SMALL_STATE(4332)] = 164772, - [SMALL_STATE(4333)] = 164799, - [SMALL_STATE(4334)] = 164830, - [SMALL_STATE(4335)] = 164861, - [SMALL_STATE(4336)] = 164888, - [SMALL_STATE(4337)] = 164915, - [SMALL_STATE(4338)] = 164946, - [SMALL_STATE(4339)] = 164977, - [SMALL_STATE(4340)] = 165008, - [SMALL_STATE(4341)] = 165035, - [SMALL_STATE(4342)] = 165062, - [SMALL_STATE(4343)] = 165089, - [SMALL_STATE(4344)] = 165120, - [SMALL_STATE(4345)] = 165147, - [SMALL_STATE(4346)] = 165172, - [SMALL_STATE(4347)] = 165199, - [SMALL_STATE(4348)] = 165226, - [SMALL_STATE(4349)] = 165259, - [SMALL_STATE(4350)] = 165286, - [SMALL_STATE(4351)] = 165313, - [SMALL_STATE(4352)] = 165340, - [SMALL_STATE(4353)] = 165367, - [SMALL_STATE(4354)] = 165396, - [SMALL_STATE(4355)] = 165421, - [SMALL_STATE(4356)] = 165448, - [SMALL_STATE(4357)] = 165479, - [SMALL_STATE(4358)] = 165510, - [SMALL_STATE(4359)] = 165541, - [SMALL_STATE(4360)] = 165572, - [SMALL_STATE(4361)] = 165603, - [SMALL_STATE(4362)] = 165634, - [SMALL_STATE(4363)] = 165663, - [SMALL_STATE(4364)] = 165690, - [SMALL_STATE(4365)] = 165725, - [SMALL_STATE(4366)] = 165760, - [SMALL_STATE(4367)] = 165787, - [SMALL_STATE(4368)] = 165818, - [SMALL_STATE(4369)] = 165845, - [SMALL_STATE(4370)] = 165876, - [SMALL_STATE(4371)] = 165905, - [SMALL_STATE(4372)] = 165936, - [SMALL_STATE(4373)] = 165963, - [SMALL_STATE(4374)] = 165994, - [SMALL_STATE(4375)] = 166025, - [SMALL_STATE(4376)] = 166056, - [SMALL_STATE(4377)] = 166081, - [SMALL_STATE(4378)] = 166108, - [SMALL_STATE(4379)] = 166143, - [SMALL_STATE(4380)] = 166178, - [SMALL_STATE(4381)] = 166211, - [SMALL_STATE(4382)] = 166242, - [SMALL_STATE(4383)] = 166269, - [SMALL_STATE(4384)] = 166302, - [SMALL_STATE(4385)] = 166335, - [SMALL_STATE(4386)] = 166362, - [SMALL_STATE(4387)] = 166389, - [SMALL_STATE(4388)] = 166420, - [SMALL_STATE(4389)] = 166447, - [SMALL_STATE(4390)] = 166474, - [SMALL_STATE(4391)] = 166505, - [SMALL_STATE(4392)] = 166532, - [SMALL_STATE(4393)] = 166563, - [SMALL_STATE(4394)] = 166590, - [SMALL_STATE(4395)] = 166615, - [SMALL_STATE(4396)] = 166648, - [SMALL_STATE(4397)] = 166681, - [SMALL_STATE(4398)] = 166708, - [SMALL_STATE(4399)] = 166733, - [SMALL_STATE(4400)] = 166760, - [SMALL_STATE(4401)] = 166785, - [SMALL_STATE(4402)] = 166812, - [SMALL_STATE(4403)] = 166839, - [SMALL_STATE(4404)] = 166866, - [SMALL_STATE(4405)] = 166893, - [SMALL_STATE(4406)] = 166920, - [SMALL_STATE(4407)] = 166949, - [SMALL_STATE(4408)] = 166978, - [SMALL_STATE(4409)] = 167009, - [SMALL_STATE(4410)] = 167040, - [SMALL_STATE(4411)] = 167071, - [SMALL_STATE(4412)] = 167106, - [SMALL_STATE(4413)] = 167141, - [SMALL_STATE(4414)] = 167176, - [SMALL_STATE(4415)] = 167211, - [SMALL_STATE(4416)] = 167246, - [SMALL_STATE(4417)] = 167281, - [SMALL_STATE(4418)] = 167316, - [SMALL_STATE(4419)] = 167351, - [SMALL_STATE(4420)] = 167386, - [SMALL_STATE(4421)] = 167421, - [SMALL_STATE(4422)] = 167456, - [SMALL_STATE(4423)] = 167491, - [SMALL_STATE(4424)] = 167526, - [SMALL_STATE(4425)] = 167561, - [SMALL_STATE(4426)] = 167596, - [SMALL_STATE(4427)] = 167631, - [SMALL_STATE(4428)] = 167666, - [SMALL_STATE(4429)] = 167701, - [SMALL_STATE(4430)] = 167736, - [SMALL_STATE(4431)] = 167771, - [SMALL_STATE(4432)] = 167806, - [SMALL_STATE(4433)] = 167833, - [SMALL_STATE(4434)] = 167860, - [SMALL_STATE(4435)] = 167887, - [SMALL_STATE(4436)] = 167914, - [SMALL_STATE(4437)] = 167941, - [SMALL_STATE(4438)] = 167968, - [SMALL_STATE(4439)] = 167995, - [SMALL_STATE(4440)] = 168026, - [SMALL_STATE(4441)] = 168053, - [SMALL_STATE(4442)] = 168084, - [SMALL_STATE(4443)] = 168115, - [SMALL_STATE(4444)] = 168148, - [SMALL_STATE(4445)] = 168181, - [SMALL_STATE(4446)] = 168208, - [SMALL_STATE(4447)] = 168235, - [SMALL_STATE(4448)] = 168266, - [SMALL_STATE(4449)] = 168293, - [SMALL_STATE(4450)] = 168320, - [SMALL_STATE(4451)] = 168353, - [SMALL_STATE(4452)] = 168380, - [SMALL_STATE(4453)] = 168413, - [SMALL_STATE(4454)] = 168442, - [SMALL_STATE(4455)] = 168473, - [SMALL_STATE(4456)] = 168500, - [SMALL_STATE(4457)] = 168527, - [SMALL_STATE(4458)] = 168554, - [SMALL_STATE(4459)] = 168591, - [SMALL_STATE(4460)] = 168618, - [SMALL_STATE(4461)] = 168649, - [SMALL_STATE(4462)] = 168682, - [SMALL_STATE(4463)] = 168715, - [SMALL_STATE(4464)] = 168746, - [SMALL_STATE(4465)] = 168773, - [SMALL_STATE(4466)] = 168800, - [SMALL_STATE(4467)] = 168827, - [SMALL_STATE(4468)] = 168856, - [SMALL_STATE(4469)] = 168883, - [SMALL_STATE(4470)] = 168914, - [SMALL_STATE(4471)] = 168943, - [SMALL_STATE(4472)] = 168974, - [SMALL_STATE(4473)] = 169003, - [SMALL_STATE(4474)] = 169036, - [SMALL_STATE(4475)] = 169071, - [SMALL_STATE(4476)] = 169104, - [SMALL_STATE(4477)] = 169133, - [SMALL_STATE(4478)] = 169160, - [SMALL_STATE(4479)] = 169191, - [SMALL_STATE(4480)] = 169222, - [SMALL_STATE(4481)] = 169253, - [SMALL_STATE(4482)] = 169280, - [SMALL_STATE(4483)] = 169308, - [SMALL_STATE(4484)] = 169332, - [SMALL_STATE(4485)] = 169378, - [SMALL_STATE(4486)] = 169402, - [SMALL_STATE(4487)] = 169430, - [SMALL_STATE(4488)] = 169460, - [SMALL_STATE(4489)] = 169484, - [SMALL_STATE(4490)] = 169510, - [SMALL_STATE(4491)] = 169540, - [SMALL_STATE(4492)] = 169568, - [SMALL_STATE(4493)] = 169598, - [SMALL_STATE(4494)] = 169626, - [SMALL_STATE(4495)] = 169678, - [SMALL_STATE(4496)] = 169708, - [SMALL_STATE(4497)] = 169734, - [SMALL_STATE(4498)] = 169764, - [SMALL_STATE(4499)] = 169794, - [SMALL_STATE(4500)] = 169820, - [SMALL_STATE(4501)] = 169850, - [SMALL_STATE(4502)] = 169882, - [SMALL_STATE(4503)] = 169908, - [SMALL_STATE(4504)] = 169934, - [SMALL_STATE(4505)] = 169958, - [SMALL_STATE(4506)] = 170010, - [SMALL_STATE(4507)] = 170036, - [SMALL_STATE(4508)] = 170064, - [SMALL_STATE(4509)] = 170094, - [SMALL_STATE(4510)] = 170124, - [SMALL_STATE(4511)] = 170176, - [SMALL_STATE(4512)] = 170206, - [SMALL_STATE(4513)] = 170258, - [SMALL_STATE(4514)] = 170282, - [SMALL_STATE(4515)] = 170334, - [SMALL_STATE(4516)] = 170386, - [SMALL_STATE(4517)] = 170414, - [SMALL_STATE(4518)] = 170444, - [SMALL_STATE(4519)] = 170470, - [SMALL_STATE(4520)] = 170500, - [SMALL_STATE(4521)] = 170530, - [SMALL_STATE(4522)] = 170562, - [SMALL_STATE(4523)] = 170586, - [SMALL_STATE(4524)] = 170616, - [SMALL_STATE(4525)] = 170642, - [SMALL_STATE(4526)] = 170666, - [SMALL_STATE(4527)] = 170696, - [SMALL_STATE(4528)] = 170722, - [SMALL_STATE(4529)] = 170752, - [SMALL_STATE(4530)] = 170782, - [SMALL_STATE(4531)] = 170834, - [SMALL_STATE(4532)] = 170864, - [SMALL_STATE(4533)] = 170892, - [SMALL_STATE(4534)] = 170922, - [SMALL_STATE(4535)] = 170946, - [SMALL_STATE(4536)] = 170972, - [SMALL_STATE(4537)] = 171000, - [SMALL_STATE(4538)] = 171030, - [SMALL_STATE(4539)] = 171060, - [SMALL_STATE(4540)] = 171088, - [SMALL_STATE(4541)] = 171116, - [SMALL_STATE(4542)] = 171144, - [SMALL_STATE(4543)] = 171170, - [SMALL_STATE(4544)] = 171198, - [SMALL_STATE(4545)] = 171228, - [SMALL_STATE(4546)] = 171280, - [SMALL_STATE(4547)] = 171310, - [SMALL_STATE(4548)] = 171340, - [SMALL_STATE(4549)] = 171370, - [SMALL_STATE(4550)] = 171394, - [SMALL_STATE(4551)] = 171418, - [SMALL_STATE(4552)] = 171446, - [SMALL_STATE(4553)] = 171472, - [SMALL_STATE(4554)] = 171496, - [SMALL_STATE(4555)] = 171522, - [SMALL_STATE(4556)] = 171546, - [SMALL_STATE(4557)] = 171576, - [SMALL_STATE(4558)] = 171602, - [SMALL_STATE(4559)] = 171632, - [SMALL_STATE(4560)] = 171684, - [SMALL_STATE(4561)] = 171714, - [SMALL_STATE(4562)] = 171738, - [SMALL_STATE(4563)] = 171764, - [SMALL_STATE(4564)] = 171790, - [SMALL_STATE(4565)] = 171842, - [SMALL_STATE(4566)] = 171870, - [SMALL_STATE(4567)] = 171900, - [SMALL_STATE(4568)] = 171926, - [SMALL_STATE(4569)] = 171951, - [SMALL_STATE(4570)] = 171976, - [SMALL_STATE(4571)] = 172001, - [SMALL_STATE(4572)] = 172026, - [SMALL_STATE(4573)] = 172053, - [SMALL_STATE(4574)] = 172082, - [SMALL_STATE(4575)] = 172111, - [SMALL_STATE(4576)] = 172136, - [SMALL_STATE(4577)] = 172161, - [SMALL_STATE(4578)] = 172186, - [SMALL_STATE(4579)] = 172211, - [SMALL_STATE(4580)] = 172236, - [SMALL_STATE(4581)] = 172261, - [SMALL_STATE(4582)] = 172286, - [SMALL_STATE(4583)] = 172311, - [SMALL_STATE(4584)] = 172336, - [SMALL_STATE(4585)] = 172367, - [SMALL_STATE(4586)] = 172396, - [SMALL_STATE(4587)] = 172421, - [SMALL_STATE(4588)] = 172450, - [SMALL_STATE(4589)] = 172479, - [SMALL_STATE(4590)] = 172504, - [SMALL_STATE(4591)] = 172529, - [SMALL_STATE(4592)] = 172554, - [SMALL_STATE(4593)] = 172579, - [SMALL_STATE(4594)] = 172604, - [SMALL_STATE(4595)] = 172635, - [SMALL_STATE(4596)] = 172660, - [SMALL_STATE(4597)] = 172685, - [SMALL_STATE(4598)] = 172714, - [SMALL_STATE(4599)] = 172743, - [SMALL_STATE(4600)] = 172768, - [SMALL_STATE(4601)] = 172797, - [SMALL_STATE(4602)] = 172842, - [SMALL_STATE(4603)] = 172867, - [SMALL_STATE(4604)] = 172892, - [SMALL_STATE(4605)] = 172921, - [SMALL_STATE(4606)] = 172950, - [SMALL_STATE(4607)] = 172979, - [SMALL_STATE(4608)] = 173008, - [SMALL_STATE(4609)] = 173037, - [SMALL_STATE(4610)] = 173066, - [SMALL_STATE(4611)] = 173093, - [SMALL_STATE(4612)] = 173122, - [SMALL_STATE(4613)] = 173151, - [SMALL_STATE(4614)] = 173176, - [SMALL_STATE(4615)] = 173201, - [SMALL_STATE(4616)] = 173226, - [SMALL_STATE(4617)] = 173251, - [SMALL_STATE(4618)] = 173276, - [SMALL_STATE(4619)] = 173301, - [SMALL_STATE(4620)] = 173326, - [SMALL_STATE(4621)] = 173351, - [SMALL_STATE(4622)] = 173376, - [SMALL_STATE(4623)] = 173401, - [SMALL_STATE(4624)] = 173430, - [SMALL_STATE(4625)] = 173455, - [SMALL_STATE(4626)] = 173480, - [SMALL_STATE(4627)] = 173505, - [SMALL_STATE(4628)] = 173534, - [SMALL_STATE(4629)] = 173561, - [SMALL_STATE(4630)] = 173586, - [SMALL_STATE(4631)] = 173615, - [SMALL_STATE(4632)] = 173644, - [SMALL_STATE(4633)] = 173673, - [SMALL_STATE(4634)] = 173700, - [SMALL_STATE(4635)] = 173725, - [SMALL_STATE(4636)] = 173750, - [SMALL_STATE(4637)] = 173777, - [SMALL_STATE(4638)] = 173804, - [SMALL_STATE(4639)] = 173829, - [SMALL_STATE(4640)] = 173854, - [SMALL_STATE(4641)] = 173879, - [SMALL_STATE(4642)] = 173904, - [SMALL_STATE(4643)] = 173929, - [SMALL_STATE(4644)] = 173958, - [SMALL_STATE(4645)] = 173983, - [SMALL_STATE(4646)] = 174012, - [SMALL_STATE(4647)] = 174037, - [SMALL_STATE(4648)] = 174066, - [SMALL_STATE(4649)] = 174095, - [SMALL_STATE(4650)] = 174120, - [SMALL_STATE(4651)] = 174149, - [SMALL_STATE(4652)] = 174172, - [SMALL_STATE(4653)] = 174197, - [SMALL_STATE(4654)] = 174222, - [SMALL_STATE(4655)] = 174249, - [SMALL_STATE(4656)] = 174278, - [SMALL_STATE(4657)] = 174303, - [SMALL_STATE(4658)] = 174332, - [SMALL_STATE(4659)] = 174359, - [SMALL_STATE(4660)] = 174386, - [SMALL_STATE(4661)] = 174427, - [SMALL_STATE(4662)] = 174456, - [SMALL_STATE(4663)] = 174481, - [SMALL_STATE(4664)] = 174506, - [SMALL_STATE(4665)] = 174535, - [SMALL_STATE(4666)] = 174558, - [SMALL_STATE(4667)] = 174581, - [SMALL_STATE(4668)] = 174612, - [SMALL_STATE(4669)] = 174641, - [SMALL_STATE(4670)] = 174670, - [SMALL_STATE(4671)] = 174715, - [SMALL_STATE(4672)] = 174744, - [SMALL_STATE(4673)] = 174773, - [SMALL_STATE(4674)] = 174798, - [SMALL_STATE(4675)] = 174823, - [SMALL_STATE(4676)] = 174848, - [SMALL_STATE(4677)] = 174871, - [SMALL_STATE(4678)] = 174894, - [SMALL_STATE(4679)] = 174939, - [SMALL_STATE(4680)] = 174964, - [SMALL_STATE(4681)] = 174989, - [SMALL_STATE(4682)] = 175014, - [SMALL_STATE(4683)] = 175043, - [SMALL_STATE(4684)] = 175068, - [SMALL_STATE(4685)] = 175097, - [SMALL_STATE(4686)] = 175120, - [SMALL_STATE(4687)] = 175145, - [SMALL_STATE(4688)] = 175170, - [SMALL_STATE(4689)] = 175195, - [SMALL_STATE(4690)] = 175220, - [SMALL_STATE(4691)] = 175249, - [SMALL_STATE(4692)] = 175274, - [SMALL_STATE(4693)] = 175299, - [SMALL_STATE(4694)] = 175324, - [SMALL_STATE(4695)] = 175349, - [SMALL_STATE(4696)] = 175378, - [SMALL_STATE(4697)] = 175407, - [SMALL_STATE(4698)] = 175432, - [SMALL_STATE(4699)] = 175457, - [SMALL_STATE(4700)] = 175482, - [SMALL_STATE(4701)] = 175511, - [SMALL_STATE(4702)] = 175540, - [SMALL_STATE(4703)] = 175569, - [SMALL_STATE(4704)] = 175594, - [SMALL_STATE(4705)] = 175619, - [SMALL_STATE(4706)] = 175648, - [SMALL_STATE(4707)] = 175673, - [SMALL_STATE(4708)] = 175698, - [SMALL_STATE(4709)] = 175729, - [SMALL_STATE(4710)] = 175754, - [SMALL_STATE(4711)] = 175779, - [SMALL_STATE(4712)] = 175808, - [SMALL_STATE(4713)] = 175833, - [SMALL_STATE(4714)] = 175858, - [SMALL_STATE(4715)] = 175887, - [SMALL_STATE(4716)] = 175916, - [SMALL_STATE(4717)] = 175941, - [SMALL_STATE(4718)] = 175966, - [SMALL_STATE(4719)] = 175995, - [SMALL_STATE(4720)] = 176020, - [SMALL_STATE(4721)] = 176045, - [SMALL_STATE(4722)] = 176074, - [SMALL_STATE(4723)] = 176101, - [SMALL_STATE(4724)] = 176126, - [SMALL_STATE(4725)] = 176155, - [SMALL_STATE(4726)] = 176180, - [SMALL_STATE(4727)] = 176205, - [SMALL_STATE(4728)] = 176230, - [SMALL_STATE(4729)] = 176259, - [SMALL_STATE(4730)] = 176282, - [SMALL_STATE(4731)] = 176307, - [SMALL_STATE(4732)] = 176332, - [SMALL_STATE(4733)] = 176357, - [SMALL_STATE(4734)] = 176382, - [SMALL_STATE(4735)] = 176407, - [SMALL_STATE(4736)] = 176436, - [SMALL_STATE(4737)] = 176458, - [SMALL_STATE(4738)] = 176504, - [SMALL_STATE(4739)] = 176550, - [SMALL_STATE(4740)] = 176576, - [SMALL_STATE(4741)] = 176598, - [SMALL_STATE(4742)] = 176622, - [SMALL_STATE(4743)] = 176646, - [SMALL_STATE(4744)] = 176670, - [SMALL_STATE(4745)] = 176696, - [SMALL_STATE(4746)] = 176720, - [SMALL_STATE(4747)] = 176744, - [SMALL_STATE(4748)] = 176768, - [SMALL_STATE(4749)] = 176792, - [SMALL_STATE(4750)] = 176816, - [SMALL_STATE(4751)] = 176840, - [SMALL_STATE(4752)] = 176864, - [SMALL_STATE(4753)] = 176888, - [SMALL_STATE(4754)] = 176912, - [SMALL_STATE(4755)] = 176936, - [SMALL_STATE(4756)] = 176960, - [SMALL_STATE(4757)] = 176984, - [SMALL_STATE(4758)] = 177028, - [SMALL_STATE(4759)] = 177052, - [SMALL_STATE(4760)] = 177074, - [SMALL_STATE(4761)] = 177098, - [SMALL_STATE(4762)] = 177120, - [SMALL_STATE(4763)] = 177144, - [SMALL_STATE(4764)] = 177184, - [SMALL_STATE(4765)] = 177206, - [SMALL_STATE(4766)] = 177228, - [SMALL_STATE(4767)] = 177250, - [SMALL_STATE(4768)] = 177274, - [SMALL_STATE(4769)] = 177298, - [SMALL_STATE(4770)] = 177336, - [SMALL_STATE(4771)] = 177368, - [SMALL_STATE(4772)] = 177400, - [SMALL_STATE(4773)] = 177432, - [SMALL_STATE(4774)] = 177464, - [SMALL_STATE(4775)] = 177496, - [SMALL_STATE(4776)] = 177528, - [SMALL_STATE(4777)] = 177560, - [SMALL_STATE(4778)] = 177592, - [SMALL_STATE(4779)] = 177624, - [SMALL_STATE(4780)] = 177656, - [SMALL_STATE(4781)] = 177688, - [SMALL_STATE(4782)] = 177720, - [SMALL_STATE(4783)] = 177752, - [SMALL_STATE(4784)] = 177784, - [SMALL_STATE(4785)] = 177816, - [SMALL_STATE(4786)] = 177848, - [SMALL_STATE(4787)] = 177880, - [SMALL_STATE(4788)] = 177912, - [SMALL_STATE(4789)] = 177944, - [SMALL_STATE(4790)] = 177976, - [SMALL_STATE(4791)] = 178008, - [SMALL_STATE(4792)] = 178040, - [SMALL_STATE(4793)] = 178064, - [SMALL_STATE(4794)] = 178088, - [SMALL_STATE(4795)] = 178112, - [SMALL_STATE(4796)] = 178134, - [SMALL_STATE(4797)] = 178158, - [SMALL_STATE(4798)] = 178180, - [SMALL_STATE(4799)] = 178206, - [SMALL_STATE(4800)] = 178230, - [SMALL_STATE(4801)] = 178254, - [SMALL_STATE(4802)] = 178278, - [SMALL_STATE(4803)] = 178302, - [SMALL_STATE(4804)] = 178326, - [SMALL_STATE(4805)] = 178350, - [SMALL_STATE(4806)] = 178374, - [SMALL_STATE(4807)] = 178398, - [SMALL_STATE(4808)] = 178424, - [SMALL_STATE(4809)] = 178448, - [SMALL_STATE(4810)] = 178472, - [SMALL_STATE(4811)] = 178496, - [SMALL_STATE(4812)] = 178520, - [SMALL_STATE(4813)] = 178542, - [SMALL_STATE(4814)] = 178566, - [SMALL_STATE(4815)] = 178590, - [SMALL_STATE(4816)] = 178614, - [SMALL_STATE(4817)] = 178638, - [SMALL_STATE(4818)] = 178662, - [SMALL_STATE(4819)] = 178686, - [SMALL_STATE(4820)] = 178710, - [SMALL_STATE(4821)] = 178734, - [SMALL_STATE(4822)] = 178758, - [SMALL_STATE(4823)] = 178796, - [SMALL_STATE(4824)] = 178820, - [SMALL_STATE(4825)] = 178842, - [SMALL_STATE(4826)] = 178866, - [SMALL_STATE(4827)] = 178890, - [SMALL_STATE(4828)] = 178914, - [SMALL_STATE(4829)] = 178938, - [SMALL_STATE(4830)] = 178962, - [SMALL_STATE(4831)] = 178986, - [SMALL_STATE(4832)] = 179010, - [SMALL_STATE(4833)] = 179034, - [SMALL_STATE(4834)] = 179058, - [SMALL_STATE(4835)] = 179082, - [SMALL_STATE(4836)] = 179106, - [SMALL_STATE(4837)] = 179130, - [SMALL_STATE(4838)] = 179154, - [SMALL_STATE(4839)] = 179200, - [SMALL_STATE(4840)] = 179224, - [SMALL_STATE(4841)] = 179248, - [SMALL_STATE(4842)] = 179272, - [SMALL_STATE(4843)] = 179296, - [SMALL_STATE(4844)] = 179318, - [SMALL_STATE(4845)] = 179340, - [SMALL_STATE(4846)] = 179364, - [SMALL_STATE(4847)] = 179388, - [SMALL_STATE(4848)] = 179412, - [SMALL_STATE(4849)] = 179436, - [SMALL_STATE(4850)] = 179460, - [SMALL_STATE(4851)] = 179484, - [SMALL_STATE(4852)] = 179508, - [SMALL_STATE(4853)] = 179532, - [SMALL_STATE(4854)] = 179556, - [SMALL_STATE(4855)] = 179594, - [SMALL_STATE(4856)] = 179618, - [SMALL_STATE(4857)] = 179642, - [SMALL_STATE(4858)] = 179666, - [SMALL_STATE(4859)] = 179690, - [SMALL_STATE(4860)] = 179714, - [SMALL_STATE(4861)] = 179738, - [SMALL_STATE(4862)] = 179762, - [SMALL_STATE(4863)] = 179786, - [SMALL_STATE(4864)] = 179810, - [SMALL_STATE(4865)] = 179834, - [SMALL_STATE(4866)] = 179858, - [SMALL_STATE(4867)] = 179880, - [SMALL_STATE(4868)] = 179904, - [SMALL_STATE(4869)] = 179928, - [SMALL_STATE(4870)] = 179952, - [SMALL_STATE(4871)] = 179994, - [SMALL_STATE(4872)] = 180026, - [SMALL_STATE(4873)] = 180072, - [SMALL_STATE(4874)] = 180096, - [SMALL_STATE(4875)] = 180120, - [SMALL_STATE(4876)] = 180164, - [SMALL_STATE(4877)] = 180188, - [SMALL_STATE(4878)] = 180234, - [SMALL_STATE(4879)] = 180258, - [SMALL_STATE(4880)] = 180282, - [SMALL_STATE(4881)] = 180306, - [SMALL_STATE(4882)] = 180330, - [SMALL_STATE(4883)] = 180354, - [SMALL_STATE(4884)] = 180378, - [SMALL_STATE(4885)] = 180402, - [SMALL_STATE(4886)] = 180426, - [SMALL_STATE(4887)] = 180450, - [SMALL_STATE(4888)] = 180496, - [SMALL_STATE(4889)] = 180542, - [SMALL_STATE(4890)] = 180566, - [SMALL_STATE(4891)] = 180590, - [SMALL_STATE(4892)] = 180614, - [SMALL_STATE(4893)] = 180638, - [SMALL_STATE(4894)] = 180662, - [SMALL_STATE(4895)] = 180686, - [SMALL_STATE(4896)] = 180710, - [SMALL_STATE(4897)] = 180734, - [SMALL_STATE(4898)] = 180758, - [SMALL_STATE(4899)] = 180800, - [SMALL_STATE(4900)] = 180824, - [SMALL_STATE(4901)] = 180848, - [SMALL_STATE(4902)] = 180872, - [SMALL_STATE(4903)] = 180896, - [SMALL_STATE(4904)] = 180920, - [SMALL_STATE(4905)] = 180944, - [SMALL_STATE(4906)] = 180968, - [SMALL_STATE(4907)] = 180992, - [SMALL_STATE(4908)] = 181016, - [SMALL_STATE(4909)] = 181040, - [SMALL_STATE(4910)] = 181064, - [SMALL_STATE(4911)] = 181088, - [SMALL_STATE(4912)] = 181112, - [SMALL_STATE(4913)] = 181136, - [SMALL_STATE(4914)] = 181178, - [SMALL_STATE(4915)] = 181202, - [SMALL_STATE(4916)] = 181226, - [SMALL_STATE(4917)] = 181250, - [SMALL_STATE(4918)] = 181274, - [SMALL_STATE(4919)] = 181298, - [SMALL_STATE(4920)] = 181322, - [SMALL_STATE(4921)] = 181346, - [SMALL_STATE(4922)] = 181370, - [SMALL_STATE(4923)] = 181394, - [SMALL_STATE(4924)] = 181418, - [SMALL_STATE(4925)] = 181460, - [SMALL_STATE(4926)] = 181484, - [SMALL_STATE(4927)] = 181508, - [SMALL_STATE(4928)] = 181532, - [SMALL_STATE(4929)] = 181578, - [SMALL_STATE(4930)] = 181600, - [SMALL_STATE(4931)] = 181624, - [SMALL_STATE(4932)] = 181648, - [SMALL_STATE(4933)] = 181670, - [SMALL_STATE(4934)] = 181704, - [SMALL_STATE(4935)] = 181746, - [SMALL_STATE(4936)] = 181770, - [SMALL_STATE(4937)] = 181794, - [SMALL_STATE(4938)] = 181816, - [SMALL_STATE(4939)] = 181858, - [SMALL_STATE(4940)] = 181882, - [SMALL_STATE(4941)] = 181904, - [SMALL_STATE(4942)] = 181926, - [SMALL_STATE(4943)] = 181948, - [SMALL_STATE(4944)] = 181972, - [SMALL_STATE(4945)] = 182018, - [SMALL_STATE(4946)] = 182040, - [SMALL_STATE(4947)] = 182062, - [SMALL_STATE(4948)] = 182108, - [SMALL_STATE(4949)] = 182132, - [SMALL_STATE(4950)] = 182156, - [SMALL_STATE(4951)] = 182180, - [SMALL_STATE(4952)] = 182208, - [SMALL_STATE(4953)] = 182236, - [SMALL_STATE(4954)] = 182264, - [SMALL_STATE(4955)] = 182292, - [SMALL_STATE(4956)] = 182320, - [SMALL_STATE(4957)] = 182348, - [SMALL_STATE(4958)] = 182376, - [SMALL_STATE(4959)] = 182404, - [SMALL_STATE(4960)] = 182432, - [SMALL_STATE(4961)] = 182460, - [SMALL_STATE(4962)] = 182488, - [SMALL_STATE(4963)] = 182516, - [SMALL_STATE(4964)] = 182540, - [SMALL_STATE(4965)] = 182562, - [SMALL_STATE(4966)] = 182586, - [SMALL_STATE(4967)] = 182610, - [SMALL_STATE(4968)] = 182632, - [SMALL_STATE(4969)] = 182654, - [SMALL_STATE(4970)] = 182678, - [SMALL_STATE(4971)] = 182702, - [SMALL_STATE(4972)] = 182726, - [SMALL_STATE(4973)] = 182750, - [SMALL_STATE(4974)] = 182774, - [SMALL_STATE(4975)] = 182798, - [SMALL_STATE(4976)] = 182822, - [SMALL_STATE(4977)] = 182846, - [SMALL_STATE(4978)] = 182870, - [SMALL_STATE(4979)] = 182894, - [SMALL_STATE(4980)] = 182917, - [SMALL_STATE(4981)] = 182956, - [SMALL_STATE(4982)] = 182995, - [SMALL_STATE(4983)] = 183016, - [SMALL_STATE(4984)] = 183037, - [SMALL_STATE(4985)] = 183058, - [SMALL_STATE(4986)] = 183081, - [SMALL_STATE(4987)] = 183104, - [SMALL_STATE(4988)] = 183143, - [SMALL_STATE(4989)] = 183164, - [SMALL_STATE(4990)] = 183185, - [SMALL_STATE(4991)] = 183224, - [SMALL_STATE(4992)] = 183247, - [SMALL_STATE(4993)] = 183270, - [SMALL_STATE(4994)] = 183311, - [SMALL_STATE(4995)] = 183332, - [SMALL_STATE(4996)] = 183369, - [SMALL_STATE(4997)] = 183392, - [SMALL_STATE(4998)] = 183415, - [SMALL_STATE(4999)] = 183436, - [SMALL_STATE(5000)] = 183457, - [SMALL_STATE(5001)] = 183498, - [SMALL_STATE(5002)] = 183521, - [SMALL_STATE(5003)] = 183544, - [SMALL_STATE(5004)] = 183565, - [SMALL_STATE(5005)] = 183586, - [SMALL_STATE(5006)] = 183613, - [SMALL_STATE(5007)] = 183634, - [SMALL_STATE(5008)] = 183675, - [SMALL_STATE(5009)] = 183696, - [SMALL_STATE(5010)] = 183735, - [SMALL_STATE(5011)] = 183774, - [SMALL_STATE(5012)] = 183797, - [SMALL_STATE(5013)] = 183838, - [SMALL_STATE(5014)] = 183865, - [SMALL_STATE(5015)] = 183888, - [SMALL_STATE(5016)] = 183911, - [SMALL_STATE(5017)] = 183934, - [SMALL_STATE(5018)] = 183957, - [SMALL_STATE(5019)] = 183980, - [SMALL_STATE(5020)] = 184003, - [SMALL_STATE(5021)] = 184024, - [SMALL_STATE(5022)] = 184047, - [SMALL_STATE(5023)] = 184068, - [SMALL_STATE(5024)] = 184091, - [SMALL_STATE(5025)] = 184118, - [SMALL_STATE(5026)] = 184139, - [SMALL_STATE(5027)] = 184160, - [SMALL_STATE(5028)] = 184183, - [SMALL_STATE(5029)] = 184206, - [SMALL_STATE(5030)] = 184229, - [SMALL_STATE(5031)] = 184250, - [SMALL_STATE(5032)] = 184283, - [SMALL_STATE(5033)] = 184304, - [SMALL_STATE(5034)] = 184325, - [SMALL_STATE(5035)] = 184348, - [SMALL_STATE(5036)] = 184389, - [SMALL_STATE(5037)] = 184428, - [SMALL_STATE(5038)] = 184451, - [SMALL_STATE(5039)] = 184472, - [SMALL_STATE(5040)] = 184505, - [SMALL_STATE(5041)] = 184528, - [SMALL_STATE(5042)] = 184549, - [SMALL_STATE(5043)] = 184582, - [SMALL_STATE(5044)] = 184605, - [SMALL_STATE(5045)] = 184626, - [SMALL_STATE(5046)] = 184647, - [SMALL_STATE(5047)] = 184674, - [SMALL_STATE(5048)] = 184695, - [SMALL_STATE(5049)] = 184716, - [SMALL_STATE(5050)] = 184747, - [SMALL_STATE(5051)] = 184774, - [SMALL_STATE(5052)] = 184803, - [SMALL_STATE(5053)] = 184830, - [SMALL_STATE(5054)] = 184851, - [SMALL_STATE(5055)] = 184872, - [SMALL_STATE(5056)] = 184893, - [SMALL_STATE(5057)] = 184914, - [SMALL_STATE(5058)] = 184955, - [SMALL_STATE(5059)] = 184996, - [SMALL_STATE(5060)] = 185017, - [SMALL_STATE(5061)] = 185038, - [SMALL_STATE(5062)] = 185077, - [SMALL_STATE(5063)] = 185110, - [SMALL_STATE(5064)] = 185143, - [SMALL_STATE(5065)] = 185164, - [SMALL_STATE(5066)] = 185203, - [SMALL_STATE(5067)] = 185242, - [SMALL_STATE(5068)] = 185283, - [SMALL_STATE(5069)] = 185320, - [SMALL_STATE(5070)] = 185359, - [SMALL_STATE(5071)] = 185380, - [SMALL_STATE(5072)] = 185401, - [SMALL_STATE(5073)] = 185422, - [SMALL_STATE(5074)] = 185445, - [SMALL_STATE(5075)] = 185468, - [SMALL_STATE(5076)] = 185489, - [SMALL_STATE(5077)] = 185516, - [SMALL_STATE(5078)] = 185537, - [SMALL_STATE(5079)] = 185564, - [SMALL_STATE(5080)] = 185585, - [SMALL_STATE(5081)] = 185606, - [SMALL_STATE(5082)] = 185633, - [SMALL_STATE(5083)] = 185654, - [SMALL_STATE(5084)] = 185675, - [SMALL_STATE(5085)] = 185696, - [SMALL_STATE(5086)] = 185717, - [SMALL_STATE(5087)] = 185738, - [SMALL_STATE(5088)] = 185759, - [SMALL_STATE(5089)] = 185782, - [SMALL_STATE(5090)] = 185809, - [SMALL_STATE(5091)] = 185848, - [SMALL_STATE(5092)] = 185869, - [SMALL_STATE(5093)] = 185896, - [SMALL_STATE(5094)] = 185923, - [SMALL_STATE(5095)] = 185950, - [SMALL_STATE(5096)] = 185971, - [SMALL_STATE(5097)] = 185998, - [SMALL_STATE(5098)] = 186025, - [SMALL_STATE(5099)] = 186052, - [SMALL_STATE(5100)] = 186079, - [SMALL_STATE(5101)] = 186100, - [SMALL_STATE(5102)] = 186127, - [SMALL_STATE(5103)] = 186154, - [SMALL_STATE(5104)] = 186181, - [SMALL_STATE(5105)] = 186204, - [SMALL_STATE(5106)] = 186231, - [SMALL_STATE(5107)] = 186252, - [SMALL_STATE(5108)] = 186273, - [SMALL_STATE(5109)] = 186296, - [SMALL_STATE(5110)] = 186335, - [SMALL_STATE(5111)] = 186356, - [SMALL_STATE(5112)] = 186397, - [SMALL_STATE(5113)] = 186418, - [SMALL_STATE(5114)] = 186457, - [SMALL_STATE(5115)] = 186478, - [SMALL_STATE(5116)] = 186499, - [SMALL_STATE(5117)] = 186520, - [SMALL_STATE(5118)] = 186543, - [SMALL_STATE(5119)] = 186564, - [SMALL_STATE(5120)] = 186603, - [SMALL_STATE(5121)] = 186624, - [SMALL_STATE(5122)] = 186645, - [SMALL_STATE(5123)] = 186666, - [SMALL_STATE(5124)] = 186689, - [SMALL_STATE(5125)] = 186710, - [SMALL_STATE(5126)] = 186737, - [SMALL_STATE(5127)] = 186772, - [SMALL_STATE(5128)] = 186793, - [SMALL_STATE(5129)] = 186814, - [SMALL_STATE(5130)] = 186841, - [SMALL_STATE(5131)] = 186862, - [SMALL_STATE(5132)] = 186883, - [SMALL_STATE(5133)] = 186918, - [SMALL_STATE(5134)] = 186945, - [SMALL_STATE(5135)] = 186968, - [SMALL_STATE(5136)] = 186991, - [SMALL_STATE(5137)] = 187014, - [SMALL_STATE(5138)] = 187049, - [SMALL_STATE(5139)] = 187084, - [SMALL_STATE(5140)] = 187105, - [SMALL_STATE(5141)] = 187126, - [SMALL_STATE(5142)] = 187167, - [SMALL_STATE(5143)] = 187190, - [SMALL_STATE(5144)] = 187229, - [SMALL_STATE(5145)] = 187252, - [SMALL_STATE(5146)] = 187273, - [SMALL_STATE(5147)] = 187296, - [SMALL_STATE(5148)] = 187319, - [SMALL_STATE(5149)] = 187342, - [SMALL_STATE(5150)] = 187365, - [SMALL_STATE(5151)] = 187386, - [SMALL_STATE(5152)] = 187407, - [SMALL_STATE(5153)] = 187428, - [SMALL_STATE(5154)] = 187449, - [SMALL_STATE(5155)] = 187470, - [SMALL_STATE(5156)] = 187491, - [SMALL_STATE(5157)] = 187514, - [SMALL_STATE(5158)] = 187537, - [SMALL_STATE(5159)] = 187558, - [SMALL_STATE(5160)] = 187590, - [SMALL_STATE(5161)] = 187626, - [SMALL_STATE(5162)] = 187652, - [SMALL_STATE(5163)] = 187678, - [SMALL_STATE(5164)] = 187708, - [SMALL_STATE(5165)] = 187740, - [SMALL_STATE(5166)] = 187766, - [SMALL_STATE(5167)] = 187798, - [SMALL_STATE(5168)] = 187822, - [SMALL_STATE(5169)] = 187854, - [SMALL_STATE(5170)] = 187884, - [SMALL_STATE(5171)] = 187914, - [SMALL_STATE(5172)] = 187944, - [SMALL_STATE(5173)] = 187982, - [SMALL_STATE(5174)] = 188014, - [SMALL_STATE(5175)] = 188040, - [SMALL_STATE(5176)] = 188076, - [SMALL_STATE(5177)] = 188108, - [SMALL_STATE(5178)] = 188132, - [SMALL_STATE(5179)] = 188156, - [SMALL_STATE(5180)] = 188188, - [SMALL_STATE(5181)] = 188218, - [SMALL_STATE(5182)] = 188248, - [SMALL_STATE(5183)] = 188272, - [SMALL_STATE(5184)] = 188296, - [SMALL_STATE(5185)] = 188328, - [SMALL_STATE(5186)] = 188352, - [SMALL_STATE(5187)] = 188390, - [SMALL_STATE(5188)] = 188428, - [SMALL_STATE(5189)] = 188464, - [SMALL_STATE(5190)] = 188488, - [SMALL_STATE(5191)] = 188524, - [SMALL_STATE(5192)] = 188550, - [SMALL_STATE(5193)] = 188586, - [SMALL_STATE(5194)] = 188610, - [SMALL_STATE(5195)] = 188648, - [SMALL_STATE(5196)] = 188674, - [SMALL_STATE(5197)] = 188698, - [SMALL_STATE(5198)] = 188728, - [SMALL_STATE(5199)] = 188760, - [SMALL_STATE(5200)] = 188796, - [SMALL_STATE(5201)] = 188832, - [SMALL_STATE(5202)] = 188854, - [SMALL_STATE(5203)] = 188884, - [SMALL_STATE(5204)] = 188910, - [SMALL_STATE(5205)] = 188936, - [SMALL_STATE(5206)] = 188962, - [SMALL_STATE(5207)] = 188988, - [SMALL_STATE(5208)] = 189018, - [SMALL_STATE(5209)] = 189050, - [SMALL_STATE(5210)] = 189074, - [SMALL_STATE(5211)] = 189099, - [SMALL_STATE(5212)] = 189134, - [SMALL_STATE(5213)] = 189169, - [SMALL_STATE(5214)] = 189196, - [SMALL_STATE(5215)] = 189217, - [SMALL_STATE(5216)] = 189252, - [SMALL_STATE(5217)] = 189277, - [SMALL_STATE(5218)] = 189298, - [SMALL_STATE(5219)] = 189333, - [SMALL_STATE(5220)] = 189368, - [SMALL_STATE(5221)] = 189397, - [SMALL_STATE(5222)] = 189418, - [SMALL_STATE(5223)] = 189447, - [SMALL_STATE(5224)] = 189482, - [SMALL_STATE(5225)] = 189517, - [SMALL_STATE(5226)] = 189546, - [SMALL_STATE(5227)] = 189575, - [SMALL_STATE(5228)] = 189596, - [SMALL_STATE(5229)] = 189625, - [SMALL_STATE(5230)] = 189660, - [SMALL_STATE(5231)] = 189695, - [SMALL_STATE(5232)] = 189730, - [SMALL_STATE(5233)] = 189759, - [SMALL_STATE(5234)] = 189794, - [SMALL_STATE(5235)] = 189823, - [SMALL_STATE(5236)] = 189852, - [SMALL_STATE(5237)] = 189887, - [SMALL_STATE(5238)] = 189922, - [SMALL_STATE(5239)] = 189951, - [SMALL_STATE(5240)] = 189980, - [SMALL_STATE(5241)] = 190015, - [SMALL_STATE(5242)] = 190050, - [SMALL_STATE(5243)] = 190071, - [SMALL_STATE(5244)] = 190096, - [SMALL_STATE(5245)] = 190117, - [SMALL_STATE(5246)] = 190152, - [SMALL_STATE(5247)] = 190187, - [SMALL_STATE(5248)] = 190208, - [SMALL_STATE(5249)] = 190229, - [SMALL_STATE(5250)] = 190264, - [SMALL_STATE(5251)] = 190299, - [SMALL_STATE(5252)] = 190328, - [SMALL_STATE(5253)] = 190363, - [SMALL_STATE(5254)] = 190398, - [SMALL_STATE(5255)] = 190433, - [SMALL_STATE(5256)] = 190468, - [SMALL_STATE(5257)] = 190503, - [SMALL_STATE(5258)] = 190538, - [SMALL_STATE(5259)] = 190559, - [SMALL_STATE(5260)] = 190594, - [SMALL_STATE(5261)] = 190615, - [SMALL_STATE(5262)] = 190650, - [SMALL_STATE(5263)] = 190671, - [SMALL_STATE(5264)] = 190700, - [SMALL_STATE(5265)] = 190729, - [SMALL_STATE(5266)] = 190758, - [SMALL_STATE(5267)] = 190779, - [SMALL_STATE(5268)] = 190808, - [SMALL_STATE(5269)] = 190833, - [SMALL_STATE(5270)] = 190862, - [SMALL_STATE(5271)] = 190897, - [SMALL_STATE(5272)] = 190922, - [SMALL_STATE(5273)] = 190957, - [SMALL_STATE(5274)] = 190990, - [SMALL_STATE(5275)] = 191011, - [SMALL_STATE(5276)] = 191036, - [SMALL_STATE(5277)] = 191057, - [SMALL_STATE(5278)] = 191086, - [SMALL_STATE(5279)] = 191121, - [SMALL_STATE(5280)] = 191154, - [SMALL_STATE(5281)] = 191181, - [SMALL_STATE(5282)] = 191202, - [SMALL_STATE(5283)] = 191237, - [SMALL_STATE(5284)] = 191272, - [SMALL_STATE(5285)] = 191293, - [SMALL_STATE(5286)] = 191314, - [SMALL_STATE(5287)] = 191343, - [SMALL_STATE(5288)] = 191378, - [SMALL_STATE(5289)] = 191409, - [SMALL_STATE(5290)] = 191438, - [SMALL_STATE(5291)] = 191473, - [SMALL_STATE(5292)] = 191494, - [SMALL_STATE(5293)] = 191523, - [SMALL_STATE(5294)] = 191544, - [SMALL_STATE(5295)] = 191565, - [SMALL_STATE(5296)] = 191598, - [SMALL_STATE(5297)] = 191619, - [SMALL_STATE(5298)] = 191648, - [SMALL_STATE(5299)] = 191677, - [SMALL_STATE(5300)] = 191698, - [SMALL_STATE(5301)] = 191719, - [SMALL_STATE(5302)] = 191740, - [SMALL_STATE(5303)] = 191775, - [SMALL_STATE(5304)] = 191796, - [SMALL_STATE(5305)] = 191817, - [SMALL_STATE(5306)] = 191838, - [SMALL_STATE(5307)] = 191873, - [SMALL_STATE(5308)] = 191908, - [SMALL_STATE(5309)] = 191929, - [SMALL_STATE(5310)] = 191958, - [SMALL_STATE(5311)] = 191993, - [SMALL_STATE(5312)] = 192024, - [SMALL_STATE(5313)] = 192057, - [SMALL_STATE(5314)] = 192086, - [SMALL_STATE(5315)] = 192107, - [SMALL_STATE(5316)] = 192138, - [SMALL_STATE(5317)] = 192173, - [SMALL_STATE(5318)] = 192208, - [SMALL_STATE(5319)] = 192237, - [SMALL_STATE(5320)] = 192264, - [SMALL_STATE(5321)] = 192285, - [SMALL_STATE(5322)] = 192310, - [SMALL_STATE(5323)] = 192339, - [SMALL_STATE(5324)] = 192368, - [SMALL_STATE(5325)] = 192391, - [SMALL_STATE(5326)] = 192412, - [SMALL_STATE(5327)] = 192447, - [SMALL_STATE(5328)] = 192468, - [SMALL_STATE(5329)] = 192497, - [SMALL_STATE(5330)] = 192520, - [SMALL_STATE(5331)] = 192541, - [SMALL_STATE(5332)] = 192576, - [SMALL_STATE(5333)] = 192601, - [SMALL_STATE(5334)] = 192624, - [SMALL_STATE(5335)] = 192647, - [SMALL_STATE(5336)] = 192676, - [SMALL_STATE(5337)] = 192697, - [SMALL_STATE(5338)] = 192732, - [SMALL_STATE(5339)] = 192767, - [SMALL_STATE(5340)] = 192802, - [SMALL_STATE(5341)] = 192831, - [SMALL_STATE(5342)] = 192866, - [SMALL_STATE(5343)] = 192887, - [SMALL_STATE(5344)] = 192918, - [SMALL_STATE(5345)] = 192953, - [SMALL_STATE(5346)] = 192982, - [SMALL_STATE(5347)] = 193017, - [SMALL_STATE(5348)] = 193038, - [SMALL_STATE(5349)] = 193073, - [SMALL_STATE(5350)] = 193096, - [SMALL_STATE(5351)] = 193131, - [SMALL_STATE(5352)] = 193166, - [SMALL_STATE(5353)] = 193196, - [SMALL_STATE(5354)] = 193216, - [SMALL_STATE(5355)] = 193246, - [SMALL_STATE(5356)] = 193276, - [SMALL_STATE(5357)] = 193306, - [SMALL_STATE(5358)] = 193336, - [SMALL_STATE(5359)] = 193366, - [SMALL_STATE(5360)] = 193386, - [SMALL_STATE(5361)] = 193416, - [SMALL_STATE(5362)] = 193446, - [SMALL_STATE(5363)] = 193466, - [SMALL_STATE(5364)] = 193496, - [SMALL_STATE(5365)] = 193516, - [SMALL_STATE(5366)] = 193546, - [SMALL_STATE(5367)] = 193576, - [SMALL_STATE(5368)] = 193606, - [SMALL_STATE(5369)] = 193636, - [SMALL_STATE(5370)] = 193666, - [SMALL_STATE(5371)] = 193696, - [SMALL_STATE(5372)] = 193724, - [SMALL_STATE(5373)] = 193744, - [SMALL_STATE(5374)] = 193774, - [SMALL_STATE(5375)] = 193804, - [SMALL_STATE(5376)] = 193834, - [SMALL_STATE(5377)] = 193864, - [SMALL_STATE(5378)] = 193894, - [SMALL_STATE(5379)] = 193924, - [SMALL_STATE(5380)] = 193954, - [SMALL_STATE(5381)] = 193984, - [SMALL_STATE(5382)] = 194014, - [SMALL_STATE(5383)] = 194044, - [SMALL_STATE(5384)] = 194074, - [SMALL_STATE(5385)] = 194104, - [SMALL_STATE(5386)] = 194134, - [SMALL_STATE(5387)] = 194158, - [SMALL_STATE(5388)] = 194188, - [SMALL_STATE(5389)] = 194218, - [SMALL_STATE(5390)] = 194248, - [SMALL_STATE(5391)] = 194278, - [SMALL_STATE(5392)] = 194308, - [SMALL_STATE(5393)] = 194338, - [SMALL_STATE(5394)] = 194368, - [SMALL_STATE(5395)] = 194390, - [SMALL_STATE(5396)] = 194414, - [SMALL_STATE(5397)] = 194444, - [SMALL_STATE(5398)] = 194468, - [SMALL_STATE(5399)] = 194490, - [SMALL_STATE(5400)] = 194518, - [SMALL_STATE(5401)] = 194546, - [SMALL_STATE(5402)] = 194576, - [SMALL_STATE(5403)] = 194606, - [SMALL_STATE(5404)] = 194634, - [SMALL_STATE(5405)] = 194664, - [SMALL_STATE(5406)] = 194694, - [SMALL_STATE(5407)] = 194724, - [SMALL_STATE(5408)] = 194752, - [SMALL_STATE(5409)] = 194782, - [SMALL_STATE(5410)] = 194812, - [SMALL_STATE(5411)] = 194834, - [SMALL_STATE(5412)] = 194864, - [SMALL_STATE(5413)] = 194894, - [SMALL_STATE(5414)] = 194924, - [SMALL_STATE(5415)] = 194948, - [SMALL_STATE(5416)] = 194970, - [SMALL_STATE(5417)] = 195000, - [SMALL_STATE(5418)] = 195020, - [SMALL_STATE(5419)] = 195050, - [SMALL_STATE(5420)] = 195074, - [SMALL_STATE(5421)] = 195104, - [SMALL_STATE(5422)] = 195134, - [SMALL_STATE(5423)] = 195154, - [SMALL_STATE(5424)] = 195174, - [SMALL_STATE(5425)] = 195204, - [SMALL_STATE(5426)] = 195226, - [SMALL_STATE(5427)] = 195250, - [SMALL_STATE(5428)] = 195280, - [SMALL_STATE(5429)] = 195310, - [SMALL_STATE(5430)] = 195340, - [SMALL_STATE(5431)] = 195370, - [SMALL_STATE(5432)] = 195400, - [SMALL_STATE(5433)] = 195426, - [SMALL_STATE(5434)] = 195448, - [SMALL_STATE(5435)] = 195468, - [SMALL_STATE(5436)] = 195488, - [SMALL_STATE(5437)] = 195518, - [SMALL_STATE(5438)] = 195538, - [SMALL_STATE(5439)] = 195562, - [SMALL_STATE(5440)] = 195584, - [SMALL_STATE(5441)] = 195606, - [SMALL_STATE(5442)] = 195628, - [SMALL_STATE(5443)] = 195652, - [SMALL_STATE(5444)] = 195672, - [SMALL_STATE(5445)] = 195702, - [SMALL_STATE(5446)] = 195722, - [SMALL_STATE(5447)] = 195744, - [SMALL_STATE(5448)] = 195764, - [SMALL_STATE(5449)] = 195792, - [SMALL_STATE(5450)] = 195822, - [SMALL_STATE(5451)] = 195848, - [SMALL_STATE(5452)] = 195878, - [SMALL_STATE(5453)] = 195906, - [SMALL_STATE(5454)] = 195934, - [SMALL_STATE(5455)] = 195958, - [SMALL_STATE(5456)] = 195983, - [SMALL_STATE(5457)] = 196008, - [SMALL_STATE(5458)] = 196033, - [SMALL_STATE(5459)] = 196060, - [SMALL_STATE(5460)] = 196085, - [SMALL_STATE(5461)] = 196112, - [SMALL_STATE(5462)] = 196137, - [SMALL_STATE(5463)] = 196164, - [SMALL_STATE(5464)] = 196191, - [SMALL_STATE(5465)] = 196210, - [SMALL_STATE(5466)] = 196235, - [SMALL_STATE(5467)] = 196262, - [SMALL_STATE(5468)] = 196289, - [SMALL_STATE(5469)] = 196314, - [SMALL_STATE(5470)] = 196341, - [SMALL_STATE(5471)] = 196366, - [SMALL_STATE(5472)] = 196393, - [SMALL_STATE(5473)] = 196418, - [SMALL_STATE(5474)] = 196443, - [SMALL_STATE(5475)] = 196470, - [SMALL_STATE(5476)] = 196497, - [SMALL_STATE(5477)] = 196524, - [SMALL_STATE(5478)] = 196551, - [SMALL_STATE(5479)] = 196578, - [SMALL_STATE(5480)] = 196605, - [SMALL_STATE(5481)] = 196632, - [SMALL_STATE(5482)] = 196659, - [SMALL_STATE(5483)] = 196686, - [SMALL_STATE(5484)] = 196713, - [SMALL_STATE(5485)] = 196740, - [SMALL_STATE(5486)] = 196767, - [SMALL_STATE(5487)] = 196794, - [SMALL_STATE(5488)] = 196821, - [SMALL_STATE(5489)] = 196840, - [SMALL_STATE(5490)] = 196865, - [SMALL_STATE(5491)] = 196890, - [SMALL_STATE(5492)] = 196917, - [SMALL_STATE(5493)] = 196944, - [SMALL_STATE(5494)] = 196971, - [SMALL_STATE(5495)] = 196996, - [SMALL_STATE(5496)] = 197023, - [SMALL_STATE(5497)] = 197050, - [SMALL_STATE(5498)] = 197077, - [SMALL_STATE(5499)] = 197096, - [SMALL_STATE(5500)] = 197121, - [SMALL_STATE(5501)] = 197146, - [SMALL_STATE(5502)] = 197167, - [SMALL_STATE(5503)] = 197190, - [SMALL_STATE(5504)] = 197211, - [SMALL_STATE(5505)] = 197230, - [SMALL_STATE(5506)] = 197251, - [SMALL_STATE(5507)] = 197270, - [SMALL_STATE(5508)] = 197295, - [SMALL_STATE(5509)] = 197320, - [SMALL_STATE(5510)] = 197345, - [SMALL_STATE(5511)] = 197372, - [SMALL_STATE(5512)] = 197397, - [SMALL_STATE(5513)] = 197422, - [SMALL_STATE(5514)] = 197443, - [SMALL_STATE(5515)] = 197468, - [SMALL_STATE(5516)] = 197493, - [SMALL_STATE(5517)] = 197518, - [SMALL_STATE(5518)] = 197537, - [SMALL_STATE(5519)] = 197564, - [SMALL_STATE(5520)] = 197583, - [SMALL_STATE(5521)] = 197612, - [SMALL_STATE(5522)] = 197637, - [SMALL_STATE(5523)] = 197662, - [SMALL_STATE(5524)] = 197687, - [SMALL_STATE(5525)] = 197712, - [SMALL_STATE(5526)] = 197739, - [SMALL_STATE(5527)] = 197764, - [SMALL_STATE(5528)] = 197791, - [SMALL_STATE(5529)] = 197816, - [SMALL_STATE(5530)] = 197843, - [SMALL_STATE(5531)] = 197868, - [SMALL_STATE(5532)] = 197889, - [SMALL_STATE(5533)] = 197914, - [SMALL_STATE(5534)] = 197933, - [SMALL_STATE(5535)] = 197952, - [SMALL_STATE(5536)] = 197977, - [SMALL_STATE(5537)] = 198000, - [SMALL_STATE(5538)] = 198025, - [SMALL_STATE(5539)] = 198052, - [SMALL_STATE(5540)] = 198079, - [SMALL_STATE(5541)] = 198098, - [SMALL_STATE(5542)] = 198123, - [SMALL_STATE(5543)] = 198150, - [SMALL_STATE(5544)] = 198177, - [SMALL_STATE(5545)] = 198202, - [SMALL_STATE(5546)] = 198227, - [SMALL_STATE(5547)] = 198248, - [SMALL_STATE(5548)] = 198275, - [SMALL_STATE(5549)] = 198300, - [SMALL_STATE(5550)] = 198327, - [SMALL_STATE(5551)] = 198346, - [SMALL_STATE(5552)] = 198371, - [SMALL_STATE(5553)] = 198398, - [SMALL_STATE(5554)] = 198423, - [SMALL_STATE(5555)] = 198442, - [SMALL_STATE(5556)] = 198467, - [SMALL_STATE(5557)] = 198494, - [SMALL_STATE(5558)] = 198513, - [SMALL_STATE(5559)] = 198538, - [SMALL_STATE(5560)] = 198559, - [SMALL_STATE(5561)] = 198580, - [SMALL_STATE(5562)] = 198605, - [SMALL_STATE(5563)] = 198624, - [SMALL_STATE(5564)] = 198651, - [SMALL_STATE(5565)] = 198672, - [SMALL_STATE(5566)] = 198699, - [SMALL_STATE(5567)] = 198724, - [SMALL_STATE(5568)] = 198749, - [SMALL_STATE(5569)] = 198774, - [SMALL_STATE(5570)] = 198799, - [SMALL_STATE(5571)] = 198820, - [SMALL_STATE(5572)] = 198845, - [SMALL_STATE(5573)] = 198866, - [SMALL_STATE(5574)] = 198885, - [SMALL_STATE(5575)] = 198910, - [SMALL_STATE(5576)] = 198937, - [SMALL_STATE(5577)] = 198958, - [SMALL_STATE(5578)] = 198983, - [SMALL_STATE(5579)] = 199010, - [SMALL_STATE(5580)] = 199035, - [SMALL_STATE(5581)] = 199062, - [SMALL_STATE(5582)] = 199089, - [SMALL_STATE(5583)] = 199108, - [SMALL_STATE(5584)] = 199135, - [SMALL_STATE(5585)] = 199156, - [SMALL_STATE(5586)] = 199183, - [SMALL_STATE(5587)] = 199208, - [SMALL_STATE(5588)] = 199227, - [SMALL_STATE(5589)] = 199252, - [SMALL_STATE(5590)] = 199279, - [SMALL_STATE(5591)] = 199304, - [SMALL_STATE(5592)] = 199329, - [SMALL_STATE(5593)] = 199352, - [SMALL_STATE(5594)] = 199377, - [SMALL_STATE(5595)] = 199402, - [SMALL_STATE(5596)] = 199427, - [SMALL_STATE(5597)] = 199452, - [SMALL_STATE(5598)] = 199479, - [SMALL_STATE(5599)] = 199502, - [SMALL_STATE(5600)] = 199527, - [SMALL_STATE(5601)] = 199552, - [SMALL_STATE(5602)] = 199577, - [SMALL_STATE(5603)] = 199604, - [SMALL_STATE(5604)] = 199631, - [SMALL_STATE(5605)] = 199658, - [SMALL_STATE(5606)] = 199677, - [SMALL_STATE(5607)] = 199702, - [SMALL_STATE(5608)] = 199727, - [SMALL_STATE(5609)] = 199752, - [SMALL_STATE(5610)] = 199777, - [SMALL_STATE(5611)] = 199804, - [SMALL_STATE(5612)] = 199825, - [SMALL_STATE(5613)] = 199846, - [SMALL_STATE(5614)] = 199867, - [SMALL_STATE(5615)] = 199892, - [SMALL_STATE(5616)] = 199917, - [SMALL_STATE(5617)] = 199942, - [SMALL_STATE(5618)] = 199967, - [SMALL_STATE(5619)] = 199986, - [SMALL_STATE(5620)] = 200011, - [SMALL_STATE(5621)] = 200038, - [SMALL_STATE(5622)] = 200063, - [SMALL_STATE(5623)] = 200088, - [SMALL_STATE(5624)] = 200115, - [SMALL_STATE(5625)] = 200134, - [SMALL_STATE(5626)] = 200159, - [SMALL_STATE(5627)] = 200178, - [SMALL_STATE(5628)] = 200203, - [SMALL_STATE(5629)] = 200222, - [SMALL_STATE(5630)] = 200249, - [SMALL_STATE(5631)] = 200275, - [SMALL_STATE(5632)] = 200301, - [SMALL_STATE(5633)] = 200321, - [SMALL_STATE(5634)] = 200339, - [SMALL_STATE(5635)] = 200357, - [SMALL_STATE(5636)] = 200375, - [SMALL_STATE(5637)] = 200393, - [SMALL_STATE(5638)] = 200419, - [SMALL_STATE(5639)] = 200437, - [SMALL_STATE(5640)] = 200463, - [SMALL_STATE(5641)] = 200483, - [SMALL_STATE(5642)] = 200509, - [SMALL_STATE(5643)] = 200531, - [SMALL_STATE(5644)] = 200549, - [SMALL_STATE(5645)] = 200569, - [SMALL_STATE(5646)] = 200587, - [SMALL_STATE(5647)] = 200607, - [SMALL_STATE(5648)] = 200625, - [SMALL_STATE(5649)] = 200651, - [SMALL_STATE(5650)] = 200669, - [SMALL_STATE(5651)] = 200691, - [SMALL_STATE(5652)] = 200709, - [SMALL_STATE(5653)] = 200731, - [SMALL_STATE(5654)] = 200749, - [SMALL_STATE(5655)] = 200767, - [SMALL_STATE(5656)] = 200785, - [SMALL_STATE(5657)] = 200811, - [SMALL_STATE(5658)] = 200837, - [SMALL_STATE(5659)] = 200855, - [SMALL_STATE(5660)] = 200879, - [SMALL_STATE(5661)] = 200901, - [SMALL_STATE(5662)] = 200929, - [SMALL_STATE(5663)] = 200949, - [SMALL_STATE(5664)] = 200975, - [SMALL_STATE(5665)] = 201001, - [SMALL_STATE(5666)] = 201027, - [SMALL_STATE(5667)] = 201049, - [SMALL_STATE(5668)] = 201069, - [SMALL_STATE(5669)] = 201091, - [SMALL_STATE(5670)] = 201117, - [SMALL_STATE(5671)] = 201135, - [SMALL_STATE(5672)] = 201159, - [SMALL_STATE(5673)] = 201181, - [SMALL_STATE(5674)] = 201209, - [SMALL_STATE(5675)] = 201235, - [SMALL_STATE(5676)] = 201253, - [SMALL_STATE(5677)] = 201271, - [SMALL_STATE(5678)] = 201289, - [SMALL_STATE(5679)] = 201307, - [SMALL_STATE(5680)] = 201333, - [SMALL_STATE(5681)] = 201357, - [SMALL_STATE(5682)] = 201377, - [SMALL_STATE(5683)] = 201403, - [SMALL_STATE(5684)] = 201421, - [SMALL_STATE(5685)] = 201447, - [SMALL_STATE(5686)] = 201465, - [SMALL_STATE(5687)] = 201483, - [SMALL_STATE(5688)] = 201509, - [SMALL_STATE(5689)] = 201535, - [SMALL_STATE(5690)] = 201561, - [SMALL_STATE(5691)] = 201587, - [SMALL_STATE(5692)] = 201613, - [SMALL_STATE(5693)] = 201639, - [SMALL_STATE(5694)] = 201657, - [SMALL_STATE(5695)] = 201683, - [SMALL_STATE(5696)] = 201701, - [SMALL_STATE(5697)] = 201719, - [SMALL_STATE(5698)] = 201739, - [SMALL_STATE(5699)] = 201765, - [SMALL_STATE(5700)] = 201789, - [SMALL_STATE(5701)] = 201815, - [SMALL_STATE(5702)] = 201841, - [SMALL_STATE(5703)] = 201863, - [SMALL_STATE(5704)] = 201889, - [SMALL_STATE(5705)] = 201915, - [SMALL_STATE(5706)] = 201937, - [SMALL_STATE(5707)] = 201955, - [SMALL_STATE(5708)] = 201981, - [SMALL_STATE(5709)] = 201999, - [SMALL_STATE(5710)] = 202021, - [SMALL_STATE(5711)] = 202047, - [SMALL_STATE(5712)] = 202071, - [SMALL_STATE(5713)] = 202093, - [SMALL_STATE(5714)] = 202109, - [SMALL_STATE(5715)] = 202133, - [SMALL_STATE(5716)] = 202151, - [SMALL_STATE(5717)] = 202167, - [SMALL_STATE(5718)] = 202193, - [SMALL_STATE(5719)] = 202213, - [SMALL_STATE(5720)] = 202233, - [SMALL_STATE(5721)] = 202259, - [SMALL_STATE(5722)] = 202281, - [SMALL_STATE(5723)] = 202303, - [SMALL_STATE(5724)] = 202323, - [SMALL_STATE(5725)] = 202341, - [SMALL_STATE(5726)] = 202359, - [SMALL_STATE(5727)] = 202385, - [SMALL_STATE(5728)] = 202411, - [SMALL_STATE(5729)] = 202429, - [SMALL_STATE(5730)] = 202455, - [SMALL_STATE(5731)] = 202473, - [SMALL_STATE(5732)] = 202492, - [SMALL_STATE(5733)] = 202509, - [SMALL_STATE(5734)] = 202526, - [SMALL_STATE(5735)] = 202543, - [SMALL_STATE(5736)] = 202560, - [SMALL_STATE(5737)] = 202577, - [SMALL_STATE(5738)] = 202602, - [SMALL_STATE(5739)] = 202627, - [SMALL_STATE(5740)] = 202652, - [SMALL_STATE(5741)] = 202675, - [SMALL_STATE(5742)] = 202692, - [SMALL_STATE(5743)] = 202709, - [SMALL_STATE(5744)] = 202730, - [SMALL_STATE(5745)] = 202749, - [SMALL_STATE(5746)] = 202774, - [SMALL_STATE(5747)] = 202795, - [SMALL_STATE(5748)] = 202820, - [SMALL_STATE(5749)] = 202845, - [SMALL_STATE(5750)] = 202870, - [SMALL_STATE(5751)] = 202895, - [SMALL_STATE(5752)] = 202914, - [SMALL_STATE(5753)] = 202935, - [SMALL_STATE(5754)] = 202960, - [SMALL_STATE(5755)] = 202977, - [SMALL_STATE(5756)] = 202994, - [SMALL_STATE(5757)] = 203015, - [SMALL_STATE(5758)] = 203034, - [SMALL_STATE(5759)] = 203053, - [SMALL_STATE(5760)] = 203072, - [SMALL_STATE(5761)] = 203089, - [SMALL_STATE(5762)] = 203106, - [SMALL_STATE(5763)] = 203127, - [SMALL_STATE(5764)] = 203148, - [SMALL_STATE(5765)] = 203171, - [SMALL_STATE(5766)] = 203188, - [SMALL_STATE(5767)] = 203205, - [SMALL_STATE(5768)] = 203226, - [SMALL_STATE(5769)] = 203247, - [SMALL_STATE(5770)] = 203272, - [SMALL_STATE(5771)] = 203297, - [SMALL_STATE(5772)] = 203322, - [SMALL_STATE(5773)] = 203347, - [SMALL_STATE(5774)] = 203370, - [SMALL_STATE(5775)] = 203395, - [SMALL_STATE(5776)] = 203420, - [SMALL_STATE(5777)] = 203441, - [SMALL_STATE(5778)] = 203464, - [SMALL_STATE(5779)] = 203489, - [SMALL_STATE(5780)] = 203514, - [SMALL_STATE(5781)] = 203535, - [SMALL_STATE(5782)] = 203560, - [SMALL_STATE(5783)] = 203581, - [SMALL_STATE(5784)] = 203598, - [SMALL_STATE(5785)] = 203619, - [SMALL_STATE(5786)] = 203640, - [SMALL_STATE(5787)] = 203659, - [SMALL_STATE(5788)] = 203678, - [SMALL_STATE(5789)] = 203697, - [SMALL_STATE(5790)] = 203716, - [SMALL_STATE(5791)] = 203737, - [SMALL_STATE(5792)] = 203762, - [SMALL_STATE(5793)] = 203781, - [SMALL_STATE(5794)] = 203800, - [SMALL_STATE(5795)] = 203821, - [SMALL_STATE(5796)] = 203838, - [SMALL_STATE(5797)] = 203855, - [SMALL_STATE(5798)] = 203880, - [SMALL_STATE(5799)] = 203903, - [SMALL_STATE(5800)] = 203928, - [SMALL_STATE(5801)] = 203945, - [SMALL_STATE(5802)] = 203962, - [SMALL_STATE(5803)] = 203979, - [SMALL_STATE(5804)] = 203996, - [SMALL_STATE(5805)] = 204017, - [SMALL_STATE(5806)] = 204042, - [SMALL_STATE(5807)] = 204059, - [SMALL_STATE(5808)] = 204078, - [SMALL_STATE(5809)] = 204101, - [SMALL_STATE(5810)] = 204126, - [SMALL_STATE(5811)] = 204151, - [SMALL_STATE(5812)] = 204176, - [SMALL_STATE(5813)] = 204193, - [SMALL_STATE(5814)] = 204214, - [SMALL_STATE(5815)] = 204235, - [SMALL_STATE(5816)] = 204260, - [SMALL_STATE(5817)] = 204281, - [SMALL_STATE(5818)] = 204298, - [SMALL_STATE(5819)] = 204321, - [SMALL_STATE(5820)] = 204342, - [SMALL_STATE(5821)] = 204367, - [SMALL_STATE(5822)] = 204392, - [SMALL_STATE(5823)] = 204413, - [SMALL_STATE(5824)] = 204436, - [SMALL_STATE(5825)] = 204461, - [SMALL_STATE(5826)] = 204486, - [SMALL_STATE(5827)] = 204507, - [SMALL_STATE(5828)] = 204528, - [SMALL_STATE(5829)] = 204549, - [SMALL_STATE(5830)] = 204568, - [SMALL_STATE(5831)] = 204593, - [SMALL_STATE(5832)] = 204616, - [SMALL_STATE(5833)] = 204641, - [SMALL_STATE(5834)] = 204666, - [SMALL_STATE(5835)] = 204689, - [SMALL_STATE(5836)] = 204714, - [SMALL_STATE(5837)] = 204731, - [SMALL_STATE(5838)] = 204756, - [SMALL_STATE(5839)] = 204773, - [SMALL_STATE(5840)] = 204796, - [SMALL_STATE(5841)] = 204813, - [SMALL_STATE(5842)] = 204838, - [SMALL_STATE(5843)] = 204863, - [SMALL_STATE(5844)] = 204886, - [SMALL_STATE(5845)] = 204911, - [SMALL_STATE(5846)] = 204928, - [SMALL_STATE(5847)] = 204953, - [SMALL_STATE(5848)] = 204972, - [SMALL_STATE(5849)] = 204995, - [SMALL_STATE(5850)] = 205020, - [SMALL_STATE(5851)] = 205045, - [SMALL_STATE(5852)] = 205068, - [SMALL_STATE(5853)] = 205093, - [SMALL_STATE(5854)] = 205118, - [SMALL_STATE(5855)] = 205143, - [SMALL_STATE(5856)] = 205168, - [SMALL_STATE(5857)] = 205191, - [SMALL_STATE(5858)] = 205216, - [SMALL_STATE(5859)] = 205241, - [SMALL_STATE(5860)] = 205266, - [SMALL_STATE(5861)] = 205291, - [SMALL_STATE(5862)] = 205316, - [SMALL_STATE(5863)] = 205339, - [SMALL_STATE(5864)] = 205364, - [SMALL_STATE(5865)] = 205389, - [SMALL_STATE(5866)] = 205412, - [SMALL_STATE(5867)] = 205429, - [SMALL_STATE(5868)] = 205454, - [SMALL_STATE(5869)] = 205479, - [SMALL_STATE(5870)] = 205502, - [SMALL_STATE(5871)] = 205527, - [SMALL_STATE(5872)] = 205552, - [SMALL_STATE(5873)] = 205575, - [SMALL_STATE(5874)] = 205600, - [SMALL_STATE(5875)] = 205619, - [SMALL_STATE(5876)] = 205644, - [SMALL_STATE(5877)] = 205661, - [SMALL_STATE(5878)] = 205684, - [SMALL_STATE(5879)] = 205709, - [SMALL_STATE(5880)] = 205734, - [SMALL_STATE(5881)] = 205757, - [SMALL_STATE(5882)] = 205782, - [SMALL_STATE(5883)] = 205799, - [SMALL_STATE(5884)] = 205824, - [SMALL_STATE(5885)] = 205841, - [SMALL_STATE(5886)] = 205864, - [SMALL_STATE(5887)] = 205887, - [SMALL_STATE(5888)] = 205912, - [SMALL_STATE(5889)] = 205929, - [SMALL_STATE(5890)] = 205946, - [SMALL_STATE(5891)] = 205963, - [SMALL_STATE(5892)] = 205988, - [SMALL_STATE(5893)] = 206005, - [SMALL_STATE(5894)] = 206022, - [SMALL_STATE(5895)] = 206045, - [SMALL_STATE(5896)] = 206062, - [SMALL_STATE(5897)] = 206085, - [SMALL_STATE(5898)] = 206110, - [SMALL_STATE(5899)] = 206135, - [SMALL_STATE(5900)] = 206156, - [SMALL_STATE(5901)] = 206173, - [SMALL_STATE(5902)] = 206190, - [SMALL_STATE(5903)] = 206213, - [SMALL_STATE(5904)] = 206230, - [SMALL_STATE(5905)] = 206253, - [SMALL_STATE(5906)] = 206278, - [SMALL_STATE(5907)] = 206295, - [SMALL_STATE(5908)] = 206320, - [SMALL_STATE(5909)] = 206337, - [SMALL_STATE(5910)] = 206354, - [SMALL_STATE(5911)] = 206377, - [SMALL_STATE(5912)] = 206400, - [SMALL_STATE(5913)] = 206425, - [SMALL_STATE(5914)] = 206442, - [SMALL_STATE(5915)] = 206467, - [SMALL_STATE(5916)] = 206484, - [SMALL_STATE(5917)] = 206501, - [SMALL_STATE(5918)] = 206524, - [SMALL_STATE(5919)] = 206547, - [SMALL_STATE(5920)] = 206572, - [SMALL_STATE(5921)] = 206589, - [SMALL_STATE(5922)] = 206614, - [SMALL_STATE(5923)] = 206631, - [SMALL_STATE(5924)] = 206656, - [SMALL_STATE(5925)] = 206681, - [SMALL_STATE(5926)] = 206698, - [SMALL_STATE(5927)] = 206723, - [SMALL_STATE(5928)] = 206748, - [SMALL_STATE(5929)] = 206773, - [SMALL_STATE(5930)] = 206798, - [SMALL_STATE(5931)] = 206815, - [SMALL_STATE(5932)] = 206832, - [SMALL_STATE(5933)] = 206849, - [SMALL_STATE(5934)] = 206870, - [SMALL_STATE(5935)] = 206887, - [SMALL_STATE(5936)] = 206912, - [SMALL_STATE(5937)] = 206937, - [SMALL_STATE(5938)] = 206954, - [SMALL_STATE(5939)] = 206971, - [SMALL_STATE(5940)] = 206988, - [SMALL_STATE(5941)] = 207013, - [SMALL_STATE(5942)] = 207030, - [SMALL_STATE(5943)] = 207047, - [SMALL_STATE(5944)] = 207066, - [SMALL_STATE(5945)] = 207085, - [SMALL_STATE(5946)] = 207104, - [SMALL_STATE(5947)] = 207123, - [SMALL_STATE(5948)] = 207142, - [SMALL_STATE(5949)] = 207159, - [SMALL_STATE(5950)] = 207184, - [SMALL_STATE(5951)] = 207205, - [SMALL_STATE(5952)] = 207230, - [SMALL_STATE(5953)] = 207255, - [SMALL_STATE(5954)] = 207270, - [SMALL_STATE(5955)] = 207295, - [SMALL_STATE(5956)] = 207312, - [SMALL_STATE(5957)] = 207335, - [SMALL_STATE(5958)] = 207352, - [SMALL_STATE(5959)] = 207377, - [SMALL_STATE(5960)] = 207402, - [SMALL_STATE(5961)] = 207423, - [SMALL_STATE(5962)] = 207446, - [SMALL_STATE(5963)] = 207463, - [SMALL_STATE(5964)] = 207488, - [SMALL_STATE(5965)] = 207513, - [SMALL_STATE(5966)] = 207534, - [SMALL_STATE(5967)] = 207559, - [SMALL_STATE(5968)] = 207582, - [SMALL_STATE(5969)] = 207604, - [SMALL_STATE(5970)] = 207618, - [SMALL_STATE(5971)] = 207632, - [SMALL_STATE(5972)] = 207646, - [SMALL_STATE(5973)] = 207666, - [SMALL_STATE(5974)] = 207688, - [SMALL_STATE(5975)] = 207710, - [SMALL_STATE(5976)] = 207732, - [SMALL_STATE(5977)] = 207754, - [SMALL_STATE(5978)] = 207768, - [SMALL_STATE(5979)] = 207786, - [SMALL_STATE(5980)] = 207802, - [SMALL_STATE(5981)] = 207824, - [SMALL_STATE(5982)] = 207846, - [SMALL_STATE(5983)] = 207868, - [SMALL_STATE(5984)] = 207890, - [SMALL_STATE(5985)] = 207904, - [SMALL_STATE(5986)] = 207926, - [SMALL_STATE(5987)] = 207940, - [SMALL_STATE(5988)] = 207954, - [SMALL_STATE(5989)] = 207976, - [SMALL_STATE(5990)] = 207990, - [SMALL_STATE(5991)] = 208004, - [SMALL_STATE(5992)] = 208026, - [SMALL_STATE(5993)] = 208046, - [SMALL_STATE(5994)] = 208064, - [SMALL_STATE(5995)] = 208086, - [SMALL_STATE(5996)] = 208108, - [SMALL_STATE(5997)] = 208126, - [SMALL_STATE(5998)] = 208146, - [SMALL_STATE(5999)] = 208166, - [SMALL_STATE(6000)] = 208182, - [SMALL_STATE(6001)] = 208204, - [SMALL_STATE(6002)] = 208226, - [SMALL_STATE(6003)] = 208244, - [SMALL_STATE(6004)] = 208264, - [SMALL_STATE(6005)] = 208286, - [SMALL_STATE(6006)] = 208304, - [SMALL_STATE(6007)] = 208326, - [SMALL_STATE(6008)] = 208340, - [SMALL_STATE(6009)] = 208354, - [SMALL_STATE(6010)] = 208376, - [SMALL_STATE(6011)] = 208398, - [SMALL_STATE(6012)] = 208412, - [SMALL_STATE(6013)] = 208434, - [SMALL_STATE(6014)] = 208456, - [SMALL_STATE(6015)] = 208478, - [SMALL_STATE(6016)] = 208496, - [SMALL_STATE(6017)] = 208518, - [SMALL_STATE(6018)] = 208534, - [SMALL_STATE(6019)] = 208548, - [SMALL_STATE(6020)] = 208568, - [SMALL_STATE(6021)] = 208590, - [SMALL_STATE(6022)] = 208608, - [SMALL_STATE(6023)] = 208626, - [SMALL_STATE(6024)] = 208640, - [SMALL_STATE(6025)] = 208662, - [SMALL_STATE(6026)] = 208676, - [SMALL_STATE(6027)] = 208694, - [SMALL_STATE(6028)] = 208708, - [SMALL_STATE(6029)] = 208726, - [SMALL_STATE(6030)] = 208742, - [SMALL_STATE(6031)] = 208758, - [SMALL_STATE(6032)] = 208780, - [SMALL_STATE(6033)] = 208802, - [SMALL_STATE(6034)] = 208822, - [SMALL_STATE(6035)] = 208844, - [SMALL_STATE(6036)] = 208858, - [SMALL_STATE(6037)] = 208872, - [SMALL_STATE(6038)] = 208892, - [SMALL_STATE(6039)] = 208906, - [SMALL_STATE(6040)] = 208928, - [SMALL_STATE(6041)] = 208942, - [SMALL_STATE(6042)] = 208962, - [SMALL_STATE(6043)] = 208982, - [SMALL_STATE(6044)] = 209004, - [SMALL_STATE(6045)] = 209026, - [SMALL_STATE(6046)] = 209046, - [SMALL_STATE(6047)] = 209068, - [SMALL_STATE(6048)] = 209090, - [SMALL_STATE(6049)] = 209110, - [SMALL_STATE(6050)] = 209124, - [SMALL_STATE(6051)] = 209138, - [SMALL_STATE(6052)] = 209156, - [SMALL_STATE(6053)] = 209178, - [SMALL_STATE(6054)] = 209200, - [SMALL_STATE(6055)] = 209214, - [SMALL_STATE(6056)] = 209234, - [SMALL_STATE(6057)] = 209256, - [SMALL_STATE(6058)] = 209278, - [SMALL_STATE(6059)] = 209292, - [SMALL_STATE(6060)] = 209306, - [SMALL_STATE(6061)] = 209322, - [SMALL_STATE(6062)] = 209342, - [SMALL_STATE(6063)] = 209360, - [SMALL_STATE(6064)] = 209382, - [SMALL_STATE(6065)] = 209404, - [SMALL_STATE(6066)] = 209426, - [SMALL_STATE(6067)] = 209448, - [SMALL_STATE(6068)] = 209470, - [SMALL_STATE(6069)] = 209488, - [SMALL_STATE(6070)] = 209510, - [SMALL_STATE(6071)] = 209532, - [SMALL_STATE(6072)] = 209552, - [SMALL_STATE(6073)] = 209574, - [SMALL_STATE(6074)] = 209596, - [SMALL_STATE(6075)] = 209618, - [SMALL_STATE(6076)] = 209640, - [SMALL_STATE(6077)] = 209658, - [SMALL_STATE(6078)] = 209680, - [SMALL_STATE(6079)] = 209702, - [SMALL_STATE(6080)] = 209724, - [SMALL_STATE(6081)] = 209746, - [SMALL_STATE(6082)] = 209768, - [SMALL_STATE(6083)] = 209790, - [SMALL_STATE(6084)] = 209808, - [SMALL_STATE(6085)] = 209826, - [SMALL_STATE(6086)] = 209840, - [SMALL_STATE(6087)] = 209860, - [SMALL_STATE(6088)] = 209880, - [SMALL_STATE(6089)] = 209898, - [SMALL_STATE(6090)] = 209916, - [SMALL_STATE(6091)] = 209930, - [SMALL_STATE(6092)] = 209952, - [SMALL_STATE(6093)] = 209974, - [SMALL_STATE(6094)] = 209996, - [SMALL_STATE(6095)] = 210010, - [SMALL_STATE(6096)] = 210032, - [SMALL_STATE(6097)] = 210052, - [SMALL_STATE(6098)] = 210066, - [SMALL_STATE(6099)] = 210088, - [SMALL_STATE(6100)] = 210108, - [SMALL_STATE(6101)] = 210130, - [SMALL_STATE(6102)] = 210152, - [SMALL_STATE(6103)] = 210166, - [SMALL_STATE(6104)] = 210184, - [SMALL_STATE(6105)] = 210206, - [SMALL_STATE(6106)] = 210220, - [SMALL_STATE(6107)] = 210238, - [SMALL_STATE(6108)] = 210260, - [SMALL_STATE(6109)] = 210282, - [SMALL_STATE(6110)] = 210296, - [SMALL_STATE(6111)] = 210312, - [SMALL_STATE(6112)] = 210334, - [SMALL_STATE(6113)] = 210348, - [SMALL_STATE(6114)] = 210370, - [SMALL_STATE(6115)] = 210384, - [SMALL_STATE(6116)] = 210404, - [SMALL_STATE(6117)] = 210426, - [SMALL_STATE(6118)] = 210446, - [SMALL_STATE(6119)] = 210468, - [SMALL_STATE(6120)] = 210490, - [SMALL_STATE(6121)] = 210508, - [SMALL_STATE(6122)] = 210522, - [SMALL_STATE(6123)] = 210536, - [SMALL_STATE(6124)] = 210552, - [SMALL_STATE(6125)] = 210574, - [SMALL_STATE(6126)] = 210594, - [SMALL_STATE(6127)] = 210616, - [SMALL_STATE(6128)] = 210638, - [SMALL_STATE(6129)] = 210660, - [SMALL_STATE(6130)] = 210674, - [SMALL_STATE(6131)] = 210692, - [SMALL_STATE(6132)] = 210712, - [SMALL_STATE(6133)] = 210726, - [SMALL_STATE(6134)] = 210740, - [SMALL_STATE(6135)] = 210754, - [SMALL_STATE(6136)] = 210774, - [SMALL_STATE(6137)] = 210796, - [SMALL_STATE(6138)] = 210818, - [SMALL_STATE(6139)] = 210840, - [SMALL_STATE(6140)] = 210862, - [SMALL_STATE(6141)] = 210878, - [SMALL_STATE(6142)] = 210894, - [SMALL_STATE(6143)] = 210908, - [SMALL_STATE(6144)] = 210922, - [SMALL_STATE(6145)] = 210936, - [SMALL_STATE(6146)] = 210952, - [SMALL_STATE(6147)] = 210974, - [SMALL_STATE(6148)] = 210996, - [SMALL_STATE(6149)] = 211010, - [SMALL_STATE(6150)] = 211032, - [SMALL_STATE(6151)] = 211054, - [SMALL_STATE(6152)] = 211076, - [SMALL_STATE(6153)] = 211090, - [SMALL_STATE(6154)] = 211104, - [SMALL_STATE(6155)] = 211124, - [SMALL_STATE(6156)] = 211146, - [SMALL_STATE(6157)] = 211160, - [SMALL_STATE(6158)] = 211180, - [SMALL_STATE(6159)] = 211202, - [SMALL_STATE(6160)] = 211224, - [SMALL_STATE(6161)] = 211240, - [SMALL_STATE(6162)] = 211262, - [SMALL_STATE(6163)] = 211284, - [SMALL_STATE(6164)] = 211306, - [SMALL_STATE(6165)] = 211328, - [SMALL_STATE(6166)] = 211350, - [SMALL_STATE(6167)] = 211368, - [SMALL_STATE(6168)] = 211382, - [SMALL_STATE(6169)] = 211404, - [SMALL_STATE(6170)] = 211426, - [SMALL_STATE(6171)] = 211448, - [SMALL_STATE(6172)] = 211470, - [SMALL_STATE(6173)] = 211484, - [SMALL_STATE(6174)] = 211502, - [SMALL_STATE(6175)] = 211516, - [SMALL_STATE(6176)] = 211538, - [SMALL_STATE(6177)] = 211560, - [SMALL_STATE(6178)] = 211582, - [SMALL_STATE(6179)] = 211604, - [SMALL_STATE(6180)] = 211626, - [SMALL_STATE(6181)] = 211646, - [SMALL_STATE(6182)] = 211660, - [SMALL_STATE(6183)] = 211682, - [SMALL_STATE(6184)] = 211704, - [SMALL_STATE(6185)] = 211726, - [SMALL_STATE(6186)] = 211748, - [SMALL_STATE(6187)] = 211762, - [SMALL_STATE(6188)] = 211784, - [SMALL_STATE(6189)] = 211798, - [SMALL_STATE(6190)] = 211820, - [SMALL_STATE(6191)] = 211842, - [SMALL_STATE(6192)] = 211864, - [SMALL_STATE(6193)] = 211878, - [SMALL_STATE(6194)] = 211900, - [SMALL_STATE(6195)] = 211922, - [SMALL_STATE(6196)] = 211944, - [SMALL_STATE(6197)] = 211958, - [SMALL_STATE(6198)] = 211980, - [SMALL_STATE(6199)] = 212002, - [SMALL_STATE(6200)] = 212022, - [SMALL_STATE(6201)] = 212044, - [SMALL_STATE(6202)] = 212066, - [SMALL_STATE(6203)] = 212088, - [SMALL_STATE(6204)] = 212110, - [SMALL_STATE(6205)] = 212132, - [SMALL_STATE(6206)] = 212154, - [SMALL_STATE(6207)] = 212176, - [SMALL_STATE(6208)] = 212198, - [SMALL_STATE(6209)] = 212220, - [SMALL_STATE(6210)] = 212242, - [SMALL_STATE(6211)] = 212264, - [SMALL_STATE(6212)] = 212286, - [SMALL_STATE(6213)] = 212308, - [SMALL_STATE(6214)] = 212330, - [SMALL_STATE(6215)] = 212352, - [SMALL_STATE(6216)] = 212374, - [SMALL_STATE(6217)] = 212396, - [SMALL_STATE(6218)] = 212418, - [SMALL_STATE(6219)] = 212432, - [SMALL_STATE(6220)] = 212452, - [SMALL_STATE(6221)] = 212470, - [SMALL_STATE(6222)] = 212492, - [SMALL_STATE(6223)] = 212506, - [SMALL_STATE(6224)] = 212520, - [SMALL_STATE(6225)] = 212539, - [SMALL_STATE(6226)] = 212556, - [SMALL_STATE(6227)] = 212575, - [SMALL_STATE(6228)] = 212594, - [SMALL_STATE(6229)] = 212609, - [SMALL_STATE(6230)] = 212628, - [SMALL_STATE(6231)] = 212643, - [SMALL_STATE(6232)] = 212662, - [SMALL_STATE(6233)] = 212679, - [SMALL_STATE(6234)] = 212696, - [SMALL_STATE(6235)] = 212715, - [SMALL_STATE(6236)] = 212730, - [SMALL_STATE(6237)] = 212749, - [SMALL_STATE(6238)] = 212766, - [SMALL_STATE(6239)] = 212781, - [SMALL_STATE(6240)] = 212796, - [SMALL_STATE(6241)] = 212809, - [SMALL_STATE(6242)] = 212822, - [SMALL_STATE(6243)] = 212835, - [SMALL_STATE(6244)] = 212848, - [SMALL_STATE(6245)] = 212861, - [SMALL_STATE(6246)] = 212876, - [SMALL_STATE(6247)] = 212895, - [SMALL_STATE(6248)] = 212908, - [SMALL_STATE(6249)] = 212921, - [SMALL_STATE(6250)] = 212934, - [SMALL_STATE(6251)] = 212947, - [SMALL_STATE(6252)] = 212962, - [SMALL_STATE(6253)] = 212981, - [SMALL_STATE(6254)] = 213000, - [SMALL_STATE(6255)] = 213019, - [SMALL_STATE(6256)] = 213038, - [SMALL_STATE(6257)] = 213055, - [SMALL_STATE(6258)] = 213068, - [SMALL_STATE(6259)] = 213087, - [SMALL_STATE(6260)] = 213100, - [SMALL_STATE(6261)] = 213113, - [SMALL_STATE(6262)] = 213126, - [SMALL_STATE(6263)] = 213139, - [SMALL_STATE(6264)] = 213154, - [SMALL_STATE(6265)] = 213167, - [SMALL_STATE(6266)] = 213180, - [SMALL_STATE(6267)] = 213193, - [SMALL_STATE(6268)] = 213206, - [SMALL_STATE(6269)] = 213219, - [SMALL_STATE(6270)] = 213238, - [SMALL_STATE(6271)] = 213251, - [SMALL_STATE(6272)] = 213270, - [SMALL_STATE(6273)] = 213289, - [SMALL_STATE(6274)] = 213308, - [SMALL_STATE(6275)] = 213327, - [SMALL_STATE(6276)] = 213346, - [SMALL_STATE(6277)] = 213365, - [SMALL_STATE(6278)] = 213384, - [SMALL_STATE(6279)] = 213403, - [SMALL_STATE(6280)] = 213422, - [SMALL_STATE(6281)] = 213437, - [SMALL_STATE(6282)] = 213452, - [SMALL_STATE(6283)] = 213467, - [SMALL_STATE(6284)] = 213486, - [SMALL_STATE(6285)] = 213505, - [SMALL_STATE(6286)] = 213518, - [SMALL_STATE(6287)] = 213537, - [SMALL_STATE(6288)] = 213552, - [SMALL_STATE(6289)] = 213565, - [SMALL_STATE(6290)] = 213584, - [SMALL_STATE(6291)] = 213603, - [SMALL_STATE(6292)] = 213622, - [SMALL_STATE(6293)] = 213641, - [SMALL_STATE(6294)] = 213660, - [SMALL_STATE(6295)] = 213679, - [SMALL_STATE(6296)] = 213698, - [SMALL_STATE(6297)] = 213711, - [SMALL_STATE(6298)] = 213728, - [SMALL_STATE(6299)] = 213747, - [SMALL_STATE(6300)] = 213760, - [SMALL_STATE(6301)] = 213779, - [SMALL_STATE(6302)] = 213798, - [SMALL_STATE(6303)] = 213817, - [SMALL_STATE(6304)] = 213836, - [SMALL_STATE(6305)] = 213855, - [SMALL_STATE(6306)] = 213870, - [SMALL_STATE(6307)] = 213889, - [SMALL_STATE(6308)] = 213904, - [SMALL_STATE(6309)] = 213923, - [SMALL_STATE(6310)] = 213940, - [SMALL_STATE(6311)] = 213953, - [SMALL_STATE(6312)] = 213970, - [SMALL_STATE(6313)] = 213989, - [SMALL_STATE(6314)] = 214008, - [SMALL_STATE(6315)] = 214023, - [SMALL_STATE(6316)] = 214040, - [SMALL_STATE(6317)] = 214053, - [SMALL_STATE(6318)] = 214066, - [SMALL_STATE(6319)] = 214079, - [SMALL_STATE(6320)] = 214092, - [SMALL_STATE(6321)] = 214105, - [SMALL_STATE(6322)] = 214118, - [SMALL_STATE(6323)] = 214131, - [SMALL_STATE(6324)] = 214144, - [SMALL_STATE(6325)] = 214157, - [SMALL_STATE(6326)] = 214174, - [SMALL_STATE(6327)] = 214191, - [SMALL_STATE(6328)] = 214204, - [SMALL_STATE(6329)] = 214217, - [SMALL_STATE(6330)] = 214230, - [SMALL_STATE(6331)] = 214243, - [SMALL_STATE(6332)] = 214256, - [SMALL_STATE(6333)] = 214269, - [SMALL_STATE(6334)] = 214286, - [SMALL_STATE(6335)] = 214301, - [SMALL_STATE(6336)] = 214318, - [SMALL_STATE(6337)] = 214331, - [SMALL_STATE(6338)] = 214344, - [SMALL_STATE(6339)] = 214361, - [SMALL_STATE(6340)] = 214380, - [SMALL_STATE(6341)] = 214397, - [SMALL_STATE(6342)] = 214414, - [SMALL_STATE(6343)] = 214433, - [SMALL_STATE(6344)] = 214452, - [SMALL_STATE(6345)] = 214465, - [SMALL_STATE(6346)] = 214478, - [SMALL_STATE(6347)] = 214497, - [SMALL_STATE(6348)] = 214516, - [SMALL_STATE(6349)] = 214535, - [SMALL_STATE(6350)] = 214554, - [SMALL_STATE(6351)] = 214573, - [SMALL_STATE(6352)] = 214592, - [SMALL_STATE(6353)] = 214611, - [SMALL_STATE(6354)] = 214630, - [SMALL_STATE(6355)] = 214643, - [SMALL_STATE(6356)] = 214656, - [SMALL_STATE(6357)] = 214671, - [SMALL_STATE(6358)] = 214690, - [SMALL_STATE(6359)] = 214705, - [SMALL_STATE(6360)] = 214724, - [SMALL_STATE(6361)] = 214737, - [SMALL_STATE(6362)] = 214750, - [SMALL_STATE(6363)] = 214763, - [SMALL_STATE(6364)] = 214776, - [SMALL_STATE(6365)] = 214793, - [SMALL_STATE(6366)] = 214806, - [SMALL_STATE(6367)] = 214819, - [SMALL_STATE(6368)] = 214832, - [SMALL_STATE(6369)] = 214851, - [SMALL_STATE(6370)] = 214870, - [SMALL_STATE(6371)] = 214889, - [SMALL_STATE(6372)] = 214902, - [SMALL_STATE(6373)] = 214919, - [SMALL_STATE(6374)] = 214938, - [SMALL_STATE(6375)] = 214957, - [SMALL_STATE(6376)] = 214976, - [SMALL_STATE(6377)] = 214991, - [SMALL_STATE(6378)] = 215008, - [SMALL_STATE(6379)] = 215027, - [SMALL_STATE(6380)] = 215044, - [SMALL_STATE(6381)] = 215061, - [SMALL_STATE(6382)] = 215074, - [SMALL_STATE(6383)] = 215087, - [SMALL_STATE(6384)] = 215100, - [SMALL_STATE(6385)] = 215119, - [SMALL_STATE(6386)] = 215138, - [SMALL_STATE(6387)] = 215157, - [SMALL_STATE(6388)] = 215176, - [SMALL_STATE(6389)] = 215195, - [SMALL_STATE(6390)] = 215214, - [SMALL_STATE(6391)] = 215233, - [SMALL_STATE(6392)] = 215252, - [SMALL_STATE(6393)] = 215265, - [SMALL_STATE(6394)] = 215284, - [SMALL_STATE(6395)] = 215297, - [SMALL_STATE(6396)] = 215310, - [SMALL_STATE(6397)] = 215323, - [SMALL_STATE(6398)] = 215338, - [SMALL_STATE(6399)] = 215355, - [SMALL_STATE(6400)] = 215374, - [SMALL_STATE(6401)] = 215387, - [SMALL_STATE(6402)] = 215402, - [SMALL_STATE(6403)] = 215415, - [SMALL_STATE(6404)] = 215434, - [SMALL_STATE(6405)] = 215449, - [SMALL_STATE(6406)] = 215466, - [SMALL_STATE(6407)] = 215479, - [SMALL_STATE(6408)] = 215494, - [SMALL_STATE(6409)] = 215507, - [SMALL_STATE(6410)] = 215520, - [SMALL_STATE(6411)] = 215539, - [SMALL_STATE(6412)] = 215552, - [SMALL_STATE(6413)] = 215565, - [SMALL_STATE(6414)] = 215584, - [SMALL_STATE(6415)] = 215603, - [SMALL_STATE(6416)] = 215622, - [SMALL_STATE(6417)] = 215641, - [SMALL_STATE(6418)] = 215660, - [SMALL_STATE(6419)] = 215679, - [SMALL_STATE(6420)] = 215698, - [SMALL_STATE(6421)] = 215717, - [SMALL_STATE(6422)] = 215734, - [SMALL_STATE(6423)] = 215753, - [SMALL_STATE(6424)] = 215766, - [SMALL_STATE(6425)] = 215783, - [SMALL_STATE(6426)] = 215800, - [SMALL_STATE(6427)] = 215817, - [SMALL_STATE(6428)] = 215834, - [SMALL_STATE(6429)] = 215853, - [SMALL_STATE(6430)] = 215872, - [SMALL_STATE(6431)] = 215891, - [SMALL_STATE(6432)] = 215910, - [SMALL_STATE(6433)] = 215929, - [SMALL_STATE(6434)] = 215948, - [SMALL_STATE(6435)] = 215967, - [SMALL_STATE(6436)] = 215986, - [SMALL_STATE(6437)] = 216003, - [SMALL_STATE(6438)] = 216022, - [SMALL_STATE(6439)] = 216035, - [SMALL_STATE(6440)] = 216048, - [SMALL_STATE(6441)] = 216061, - [SMALL_STATE(6442)] = 216074, - [SMALL_STATE(6443)] = 216091, - [SMALL_STATE(6444)] = 216104, - [SMALL_STATE(6445)] = 216119, - [SMALL_STATE(6446)] = 216136, - [SMALL_STATE(6447)] = 216155, - [SMALL_STATE(6448)] = 216174, - [SMALL_STATE(6449)] = 216193, - [SMALL_STATE(6450)] = 216208, - [SMALL_STATE(6451)] = 216223, - [SMALL_STATE(6452)] = 216238, - [SMALL_STATE(6453)] = 216253, - [SMALL_STATE(6454)] = 216268, - [SMALL_STATE(6455)] = 216283, - [SMALL_STATE(6456)] = 216302, - [SMALL_STATE(6457)] = 216321, - [SMALL_STATE(6458)] = 216340, - [SMALL_STATE(6459)] = 216359, - [SMALL_STATE(6460)] = 216378, - [SMALL_STATE(6461)] = 216397, - [SMALL_STATE(6462)] = 216416, - [SMALL_STATE(6463)] = 216435, - [SMALL_STATE(6464)] = 216448, - [SMALL_STATE(6465)] = 216467, - [SMALL_STATE(6466)] = 216480, - [SMALL_STATE(6467)] = 216497, - [SMALL_STATE(6468)] = 216516, - [SMALL_STATE(6469)] = 216533, - [SMALL_STATE(6470)] = 216552, - [SMALL_STATE(6471)] = 216571, - [SMALL_STATE(6472)] = 216588, - [SMALL_STATE(6473)] = 216607, - [SMALL_STATE(6474)] = 216626, - [SMALL_STATE(6475)] = 216645, - [SMALL_STATE(6476)] = 216664, - [SMALL_STATE(6477)] = 216683, - [SMALL_STATE(6478)] = 216702, - [SMALL_STATE(6479)] = 216721, - [SMALL_STATE(6480)] = 216740, - [SMALL_STATE(6481)] = 216759, - [SMALL_STATE(6482)] = 216772, - [SMALL_STATE(6483)] = 216785, - [SMALL_STATE(6484)] = 216800, - [SMALL_STATE(6485)] = 216813, - [SMALL_STATE(6486)] = 216828, - [SMALL_STATE(6487)] = 216845, - [SMALL_STATE(6488)] = 216860, - [SMALL_STATE(6489)] = 216875, - [SMALL_STATE(6490)] = 216892, - [SMALL_STATE(6491)] = 216907, - [SMALL_STATE(6492)] = 216926, - [SMALL_STATE(6493)] = 216941, - [SMALL_STATE(6494)] = 216956, - [SMALL_STATE(6495)] = 216971, - [SMALL_STATE(6496)] = 216990, - [SMALL_STATE(6497)] = 217009, - [SMALL_STATE(6498)] = 217028, - [SMALL_STATE(6499)] = 217047, - [SMALL_STATE(6500)] = 217066, - [SMALL_STATE(6501)] = 217085, - [SMALL_STATE(6502)] = 217104, - [SMALL_STATE(6503)] = 217123, - [SMALL_STATE(6504)] = 217142, - [SMALL_STATE(6505)] = 217161, - [SMALL_STATE(6506)] = 217180, - [SMALL_STATE(6507)] = 217193, - [SMALL_STATE(6508)] = 217210, - [SMALL_STATE(6509)] = 217229, - [SMALL_STATE(6510)] = 217248, - [SMALL_STATE(6511)] = 217267, - [SMALL_STATE(6512)] = 217282, - [SMALL_STATE(6513)] = 217299, - [SMALL_STATE(6514)] = 217318, - [SMALL_STATE(6515)] = 217337, - [SMALL_STATE(6516)] = 217352, - [SMALL_STATE(6517)] = 217371, - [SMALL_STATE(6518)] = 217386, - [SMALL_STATE(6519)] = 217401, - [SMALL_STATE(6520)] = 217416, - [SMALL_STATE(6521)] = 217433, - [SMALL_STATE(6522)] = 217452, - [SMALL_STATE(6523)] = 217471, - [SMALL_STATE(6524)] = 217490, - [SMALL_STATE(6525)] = 217509, - [SMALL_STATE(6526)] = 217528, - [SMALL_STATE(6527)] = 217547, - [SMALL_STATE(6528)] = 217566, - [SMALL_STATE(6529)] = 217585, - [SMALL_STATE(6530)] = 217600, - [SMALL_STATE(6531)] = 217615, - [SMALL_STATE(6532)] = 217628, - [SMALL_STATE(6533)] = 217643, - [SMALL_STATE(6534)] = 217660, - [SMALL_STATE(6535)] = 217677, - [SMALL_STATE(6536)] = 217696, - [SMALL_STATE(6537)] = 217715, - [SMALL_STATE(6538)] = 217734, - [SMALL_STATE(6539)] = 217753, - [SMALL_STATE(6540)] = 217772, - [SMALL_STATE(6541)] = 217791, - [SMALL_STATE(6542)] = 217810, - [SMALL_STATE(6543)] = 217829, - [SMALL_STATE(6544)] = 217844, - [SMALL_STATE(6545)] = 217859, - [SMALL_STATE(6546)] = 217872, - [SMALL_STATE(6547)] = 217889, - [SMALL_STATE(6548)] = 217908, - [SMALL_STATE(6549)] = 217925, - [SMALL_STATE(6550)] = 217940, - [SMALL_STATE(6551)] = 217955, - [SMALL_STATE(6552)] = 217974, - [SMALL_STATE(6553)] = 217993, - [SMALL_STATE(6554)] = 218012, - [SMALL_STATE(6555)] = 218031, - [SMALL_STATE(6556)] = 218050, - [SMALL_STATE(6557)] = 218069, - [SMALL_STATE(6558)] = 218088, - [SMALL_STATE(6559)] = 218107, - [SMALL_STATE(6560)] = 218120, - [SMALL_STATE(6561)] = 218135, - [SMALL_STATE(6562)] = 218152, - [SMALL_STATE(6563)] = 218165, - [SMALL_STATE(6564)] = 218184, - [SMALL_STATE(6565)] = 218201, - [SMALL_STATE(6566)] = 218220, - [SMALL_STATE(6567)] = 218239, - [SMALL_STATE(6568)] = 218258, - [SMALL_STATE(6569)] = 218277, - [SMALL_STATE(6570)] = 218296, - [SMALL_STATE(6571)] = 218315, - [SMALL_STATE(6572)] = 218334, - [SMALL_STATE(6573)] = 218353, - [SMALL_STATE(6574)] = 218372, - [SMALL_STATE(6575)] = 218391, - [SMALL_STATE(6576)] = 218410, - [SMALL_STATE(6577)] = 218425, - [SMALL_STATE(6578)] = 218440, - [SMALL_STATE(6579)] = 218453, - [SMALL_STATE(6580)] = 218470, - [SMALL_STATE(6581)] = 218485, - [SMALL_STATE(6582)] = 218502, - [SMALL_STATE(6583)] = 218515, - [SMALL_STATE(6584)] = 218534, - [SMALL_STATE(6585)] = 218553, - [SMALL_STATE(6586)] = 218572, - [SMALL_STATE(6587)] = 218591, - [SMALL_STATE(6588)] = 218610, - [SMALL_STATE(6589)] = 218629, - [SMALL_STATE(6590)] = 218648, - [SMALL_STATE(6591)] = 218667, - [SMALL_STATE(6592)] = 218680, - [SMALL_STATE(6593)] = 218693, - [SMALL_STATE(6594)] = 218710, - [SMALL_STATE(6595)] = 218723, - [SMALL_STATE(6596)] = 218738, - [SMALL_STATE(6597)] = 218755, - [SMALL_STATE(6598)] = 218768, - [SMALL_STATE(6599)] = 218781, - [SMALL_STATE(6600)] = 218794, - [SMALL_STATE(6601)] = 218813, - [SMALL_STATE(6602)] = 218832, - [SMALL_STATE(6603)] = 218851, - [SMALL_STATE(6604)] = 218870, - [SMALL_STATE(6605)] = 218889, - [SMALL_STATE(6606)] = 218908, - [SMALL_STATE(6607)] = 218927, - [SMALL_STATE(6608)] = 218946, - [SMALL_STATE(6609)] = 218959, - [SMALL_STATE(6610)] = 218976, - [SMALL_STATE(6611)] = 218991, - [SMALL_STATE(6612)] = 219008, - [SMALL_STATE(6613)] = 219023, - [SMALL_STATE(6614)] = 219042, - [SMALL_STATE(6615)] = 219061, - [SMALL_STATE(6616)] = 219080, - [SMALL_STATE(6617)] = 219099, - [SMALL_STATE(6618)] = 219118, - [SMALL_STATE(6619)] = 219137, - [SMALL_STATE(6620)] = 219156, - [SMALL_STATE(6621)] = 219175, - [SMALL_STATE(6622)] = 219190, - [SMALL_STATE(6623)] = 219203, - [SMALL_STATE(6624)] = 219220, - [SMALL_STATE(6625)] = 219235, - [SMALL_STATE(6626)] = 219252, - [SMALL_STATE(6627)] = 219267, - [SMALL_STATE(6628)] = 219282, - [SMALL_STATE(6629)] = 219295, - [SMALL_STATE(6630)] = 219312, - [SMALL_STATE(6631)] = 219327, - [SMALL_STATE(6632)] = 219344, - [SMALL_STATE(6633)] = 219359, - [SMALL_STATE(6634)] = 219374, - [SMALL_STATE(6635)] = 219387, - [SMALL_STATE(6636)] = 219404, - [SMALL_STATE(6637)] = 219419, - [SMALL_STATE(6638)] = 219436, - [SMALL_STATE(6639)] = 219451, - [SMALL_STATE(6640)] = 219464, - [SMALL_STATE(6641)] = 219481, - [SMALL_STATE(6642)] = 219498, - [SMALL_STATE(6643)] = 219515, - [SMALL_STATE(6644)] = 219530, - [SMALL_STATE(6645)] = 219543, - [SMALL_STATE(6646)] = 219560, - [SMALL_STATE(6647)] = 219577, - [SMALL_STATE(6648)] = 219592, - [SMALL_STATE(6649)] = 219605, - [SMALL_STATE(6650)] = 219622, - [SMALL_STATE(6651)] = 219639, - [SMALL_STATE(6652)] = 219654, - [SMALL_STATE(6653)] = 219667, - [SMALL_STATE(6654)] = 219684, - [SMALL_STATE(6655)] = 219701, - [SMALL_STATE(6656)] = 219716, - [SMALL_STATE(6657)] = 219729, - [SMALL_STATE(6658)] = 219746, - [SMALL_STATE(6659)] = 219763, - [SMALL_STATE(6660)] = 219776, - [SMALL_STATE(6661)] = 219793, - [SMALL_STATE(6662)] = 219810, - [SMALL_STATE(6663)] = 219823, - [SMALL_STATE(6664)] = 219840, - [SMALL_STATE(6665)] = 219857, - [SMALL_STATE(6666)] = 219870, - [SMALL_STATE(6667)] = 219887, - [SMALL_STATE(6668)] = 219904, - [SMALL_STATE(6669)] = 219919, - [SMALL_STATE(6670)] = 219932, - [SMALL_STATE(6671)] = 219949, - [SMALL_STATE(6672)] = 219966, - [SMALL_STATE(6673)] = 219979, - [SMALL_STATE(6674)] = 219996, - [SMALL_STATE(6675)] = 220013, - [SMALL_STATE(6676)] = 220026, - [SMALL_STATE(6677)] = 220043, - [SMALL_STATE(6678)] = 220060, - [SMALL_STATE(6679)] = 220073, - [SMALL_STATE(6680)] = 220090, - [SMALL_STATE(6681)] = 220107, - [SMALL_STATE(6682)] = 220124, - [SMALL_STATE(6683)] = 220141, - [SMALL_STATE(6684)] = 220158, - [SMALL_STATE(6685)] = 220175, - [SMALL_STATE(6686)] = 220192, - [SMALL_STATE(6687)] = 220209, - [SMALL_STATE(6688)] = 220226, - [SMALL_STATE(6689)] = 220243, - [SMALL_STATE(6690)] = 220260, - [SMALL_STATE(6691)] = 220277, - [SMALL_STATE(6692)] = 220294, - [SMALL_STATE(6693)] = 220311, - [SMALL_STATE(6694)] = 220328, - [SMALL_STATE(6695)] = 220345, - [SMALL_STATE(6696)] = 220360, - [SMALL_STATE(6697)] = 220373, - [SMALL_STATE(6698)] = 220388, - [SMALL_STATE(6699)] = 220407, - [SMALL_STATE(6700)] = 220422, - [SMALL_STATE(6701)] = 220439, - [SMALL_STATE(6702)] = 220452, - [SMALL_STATE(6703)] = 220469, - [SMALL_STATE(6704)] = 220486, - [SMALL_STATE(6705)] = 220505, - [SMALL_STATE(6706)] = 220524, - [SMALL_STATE(6707)] = 220543, - [SMALL_STATE(6708)] = 220562, - [SMALL_STATE(6709)] = 220581, - [SMALL_STATE(6710)] = 220600, - [SMALL_STATE(6711)] = 220619, - [SMALL_STATE(6712)] = 220636, - [SMALL_STATE(6713)] = 220655, - [SMALL_STATE(6714)] = 220668, - [SMALL_STATE(6715)] = 220687, - [SMALL_STATE(6716)] = 220700, - [SMALL_STATE(6717)] = 220719, - [SMALL_STATE(6718)] = 220734, - [SMALL_STATE(6719)] = 220749, - [SMALL_STATE(6720)] = 220768, - [SMALL_STATE(6721)] = 220785, - [SMALL_STATE(6722)] = 220804, - [SMALL_STATE(6723)] = 220821, - [SMALL_STATE(6724)] = 220840, - [SMALL_STATE(6725)] = 220855, - [SMALL_STATE(6726)] = 220870, - [SMALL_STATE(6727)] = 220889, - [SMALL_STATE(6728)] = 220908, - [SMALL_STATE(6729)] = 220927, - [SMALL_STATE(6730)] = 220946, - [SMALL_STATE(6731)] = 220965, - [SMALL_STATE(6732)] = 220984, - [SMALL_STATE(6733)] = 221003, - [SMALL_STATE(6734)] = 221022, - [SMALL_STATE(6735)] = 221041, - [SMALL_STATE(6736)] = 221060, - [SMALL_STATE(6737)] = 221073, - [SMALL_STATE(6738)] = 221092, - [SMALL_STATE(6739)] = 221109, - [SMALL_STATE(6740)] = 221124, - [SMALL_STATE(6741)] = 221137, - [SMALL_STATE(6742)] = 221150, - [SMALL_STATE(6743)] = 221169, - [SMALL_STATE(6744)] = 221182, - [SMALL_STATE(6745)] = 221195, - [SMALL_STATE(6746)] = 221214, - [SMALL_STATE(6747)] = 221233, - [SMALL_STATE(6748)] = 221252, - [SMALL_STATE(6749)] = 221269, - [SMALL_STATE(6750)] = 221286, - [SMALL_STATE(6751)] = 221303, - [SMALL_STATE(6752)] = 221320, - [SMALL_STATE(6753)] = 221335, - [SMALL_STATE(6754)] = 221350, - [SMALL_STATE(6755)] = 221367, - [SMALL_STATE(6756)] = 221386, - [SMALL_STATE(6757)] = 221401, - [SMALL_STATE(6758)] = 221420, - [SMALL_STATE(6759)] = 221439, - [SMALL_STATE(6760)] = 221454, - [SMALL_STATE(6761)] = 221467, - [SMALL_STATE(6762)] = 221484, - [SMALL_STATE(6763)] = 221501, - [SMALL_STATE(6764)] = 221518, - [SMALL_STATE(6765)] = 221535, - [SMALL_STATE(6766)] = 221554, - [SMALL_STATE(6767)] = 221573, - [SMALL_STATE(6768)] = 221592, - [SMALL_STATE(6769)] = 221611, - [SMALL_STATE(6770)] = 221630, - [SMALL_STATE(6771)] = 221649, - [SMALL_STATE(6772)] = 221664, - [SMALL_STATE(6773)] = 221683, - [SMALL_STATE(6774)] = 221702, - [SMALL_STATE(6775)] = 221721, - [SMALL_STATE(6776)] = 221740, - [SMALL_STATE(6777)] = 221759, - [SMALL_STATE(6778)] = 221778, - [SMALL_STATE(6779)] = 221797, - [SMALL_STATE(6780)] = 221816, - [SMALL_STATE(6781)] = 221835, - [SMALL_STATE(6782)] = 221849, - [SMALL_STATE(6783)] = 221863, - [SMALL_STATE(6784)] = 221879, - [SMALL_STATE(6785)] = 221895, - [SMALL_STATE(6786)] = 221909, - [SMALL_STATE(6787)] = 221923, - [SMALL_STATE(6788)] = 221939, - [SMALL_STATE(6789)] = 221955, - [SMALL_STATE(6790)] = 221969, - [SMALL_STATE(6791)] = 221985, - [SMALL_STATE(6792)] = 222001, - [SMALL_STATE(6793)] = 222017, - [SMALL_STATE(6794)] = 222029, - [SMALL_STATE(6795)] = 222045, - [SMALL_STATE(6796)] = 222057, - [SMALL_STATE(6797)] = 222073, - [SMALL_STATE(6798)] = 222089, - [SMALL_STATE(6799)] = 222101, - [SMALL_STATE(6800)] = 222113, - [SMALL_STATE(6801)] = 222129, - [SMALL_STATE(6802)] = 222141, - [SMALL_STATE(6803)] = 222153, - [SMALL_STATE(6804)] = 222165, - [SMALL_STATE(6805)] = 222179, - [SMALL_STATE(6806)] = 222193, - [SMALL_STATE(6807)] = 222209, - [SMALL_STATE(6808)] = 222223, - [SMALL_STATE(6809)] = 222237, - [SMALL_STATE(6810)] = 222253, - [SMALL_STATE(6811)] = 222267, - [SMALL_STATE(6812)] = 222281, - [SMALL_STATE(6813)] = 222295, - [SMALL_STATE(6814)] = 222307, - [SMALL_STATE(6815)] = 222319, - [SMALL_STATE(6816)] = 222335, - [SMALL_STATE(6817)] = 222351, - [SMALL_STATE(6818)] = 222363, - [SMALL_STATE(6819)] = 222375, - [SMALL_STATE(6820)] = 222391, - [SMALL_STATE(6821)] = 222403, - [SMALL_STATE(6822)] = 222415, - [SMALL_STATE(6823)] = 222431, - [SMALL_STATE(6824)] = 222447, - [SMALL_STATE(6825)] = 222463, - [SMALL_STATE(6826)] = 222479, - [SMALL_STATE(6827)] = 222493, - [SMALL_STATE(6828)] = 222507, - [SMALL_STATE(6829)] = 222523, - [SMALL_STATE(6830)] = 222539, - [SMALL_STATE(6831)] = 222553, - [SMALL_STATE(6832)] = 222569, - [SMALL_STATE(6833)] = 222581, - [SMALL_STATE(6834)] = 222595, - [SMALL_STATE(6835)] = 222611, - [SMALL_STATE(6836)] = 222623, - [SMALL_STATE(6837)] = 222637, - [SMALL_STATE(6838)] = 222649, - [SMALL_STATE(6839)] = 222661, - [SMALL_STATE(6840)] = 222677, - [SMALL_STATE(6841)] = 222691, - [SMALL_STATE(6842)] = 222707, - [SMALL_STATE(6843)] = 222723, - [SMALL_STATE(6844)] = 222737, - [SMALL_STATE(6845)] = 222753, - [SMALL_STATE(6846)] = 222767, - [SMALL_STATE(6847)] = 222783, - [SMALL_STATE(6848)] = 222799, - [SMALL_STATE(6849)] = 222813, - [SMALL_STATE(6850)] = 222827, - [SMALL_STATE(6851)] = 222843, - [SMALL_STATE(6852)] = 222857, - [SMALL_STATE(6853)] = 222869, - [SMALL_STATE(6854)] = 222885, - [SMALL_STATE(6855)] = 222901, - [SMALL_STATE(6856)] = 222917, - [SMALL_STATE(6857)] = 222929, - [SMALL_STATE(6858)] = 222945, - [SMALL_STATE(6859)] = 222961, - [SMALL_STATE(6860)] = 222977, - [SMALL_STATE(6861)] = 222993, - [SMALL_STATE(6862)] = 223005, - [SMALL_STATE(6863)] = 223019, - [SMALL_STATE(6864)] = 223035, - [SMALL_STATE(6865)] = 223051, - [SMALL_STATE(6866)] = 223067, - [SMALL_STATE(6867)] = 223081, - [SMALL_STATE(6868)] = 223095, - [SMALL_STATE(6869)] = 223109, - [SMALL_STATE(6870)] = 223123, - [SMALL_STATE(6871)] = 223137, - [SMALL_STATE(6872)] = 223151, - [SMALL_STATE(6873)] = 223163, - [SMALL_STATE(6874)] = 223177, - [SMALL_STATE(6875)] = 223191, - [SMALL_STATE(6876)] = 223207, - [SMALL_STATE(6877)] = 223223, - [SMALL_STATE(6878)] = 223237, - [SMALL_STATE(6879)] = 223251, - [SMALL_STATE(6880)] = 223267, - [SMALL_STATE(6881)] = 223281, - [SMALL_STATE(6882)] = 223297, - [SMALL_STATE(6883)] = 223309, - [SMALL_STATE(6884)] = 223325, - [SMALL_STATE(6885)] = 223341, - [SMALL_STATE(6886)] = 223357, - [SMALL_STATE(6887)] = 223373, - [SMALL_STATE(6888)] = 223389, - [SMALL_STATE(6889)] = 223405, - [SMALL_STATE(6890)] = 223421, - [SMALL_STATE(6891)] = 223437, - [SMALL_STATE(6892)] = 223453, - [SMALL_STATE(6893)] = 223469, - [SMALL_STATE(6894)] = 223485, - [SMALL_STATE(6895)] = 223501, - [SMALL_STATE(6896)] = 223517, - [SMALL_STATE(6897)] = 223533, - [SMALL_STATE(6898)] = 223549, - [SMALL_STATE(6899)] = 223565, - [SMALL_STATE(6900)] = 223581, - [SMALL_STATE(6901)] = 223595, - [SMALL_STATE(6902)] = 223611, - [SMALL_STATE(6903)] = 223627, - [SMALL_STATE(6904)] = 223643, - [SMALL_STATE(6905)] = 223655, - [SMALL_STATE(6906)] = 223671, - [SMALL_STATE(6907)] = 223687, - [SMALL_STATE(6908)] = 223703, - [SMALL_STATE(6909)] = 223719, - [SMALL_STATE(6910)] = 223735, - [SMALL_STATE(6911)] = 223751, - [SMALL_STATE(6912)] = 223767, - [SMALL_STATE(6913)] = 223783, - [SMALL_STATE(6914)] = 223799, - [SMALL_STATE(6915)] = 223815, - [SMALL_STATE(6916)] = 223829, - [SMALL_STATE(6917)] = 223843, - [SMALL_STATE(6918)] = 223857, - [SMALL_STATE(6919)] = 223871, - [SMALL_STATE(6920)] = 223887, - [SMALL_STATE(6921)] = 223901, - [SMALL_STATE(6922)] = 223915, - [SMALL_STATE(6923)] = 223931, - [SMALL_STATE(6924)] = 223947, - [SMALL_STATE(6925)] = 223963, - [SMALL_STATE(6926)] = 223975, - [SMALL_STATE(6927)] = 223991, - [SMALL_STATE(6928)] = 224007, - [SMALL_STATE(6929)] = 224023, - [SMALL_STATE(6930)] = 224039, - [SMALL_STATE(6931)] = 224051, - [SMALL_STATE(6932)] = 224063, - [SMALL_STATE(6933)] = 224079, - [SMALL_STATE(6934)] = 224095, - [SMALL_STATE(6935)] = 224111, - [SMALL_STATE(6936)] = 224127, - [SMALL_STATE(6937)] = 224143, - [SMALL_STATE(6938)] = 224157, - [SMALL_STATE(6939)] = 224173, - [SMALL_STATE(6940)] = 224189, - [SMALL_STATE(6941)] = 224205, - [SMALL_STATE(6942)] = 224221, - [SMALL_STATE(6943)] = 224237, - [SMALL_STATE(6944)] = 224251, - [SMALL_STATE(6945)] = 224263, - [SMALL_STATE(6946)] = 224279, - [SMALL_STATE(6947)] = 224295, - [SMALL_STATE(6948)] = 224311, - [SMALL_STATE(6949)] = 224323, - [SMALL_STATE(6950)] = 224339, - [SMALL_STATE(6951)] = 224353, - [SMALL_STATE(6952)] = 224365, - [SMALL_STATE(6953)] = 224381, - [SMALL_STATE(6954)] = 224397, - [SMALL_STATE(6955)] = 224409, - [SMALL_STATE(6956)] = 224425, - [SMALL_STATE(6957)] = 224441, - [SMALL_STATE(6958)] = 224455, - [SMALL_STATE(6959)] = 224471, - [SMALL_STATE(6960)] = 224487, - [SMALL_STATE(6961)] = 224503, - [SMALL_STATE(6962)] = 224517, - [SMALL_STATE(6963)] = 224533, - [SMALL_STATE(6964)] = 224545, - [SMALL_STATE(6965)] = 224561, - [SMALL_STATE(6966)] = 224577, - [SMALL_STATE(6967)] = 224593, - [SMALL_STATE(6968)] = 224609, - [SMALL_STATE(6969)] = 224625, - [SMALL_STATE(6970)] = 224641, - [SMALL_STATE(6971)] = 224653, - [SMALL_STATE(6972)] = 224665, - [SMALL_STATE(6973)] = 224681, - [SMALL_STATE(6974)] = 224695, - [SMALL_STATE(6975)] = 224707, - [SMALL_STATE(6976)] = 224723, - [SMALL_STATE(6977)] = 224739, - [SMALL_STATE(6978)] = 224755, - [SMALL_STATE(6979)] = 224767, - [SMALL_STATE(6980)] = 224783, - [SMALL_STATE(6981)] = 224797, - [SMALL_STATE(6982)] = 224813, - [SMALL_STATE(6983)] = 224829, - [SMALL_STATE(6984)] = 224845, - [SMALL_STATE(6985)] = 224861, - [SMALL_STATE(6986)] = 224873, - [SMALL_STATE(6987)] = 224889, - [SMALL_STATE(6988)] = 224905, - [SMALL_STATE(6989)] = 224921, - [SMALL_STATE(6990)] = 224937, - [SMALL_STATE(6991)] = 224953, - [SMALL_STATE(6992)] = 224965, - [SMALL_STATE(6993)] = 224981, - [SMALL_STATE(6994)] = 224993, - [SMALL_STATE(6995)] = 225009, - [SMALL_STATE(6996)] = 225025, - [SMALL_STATE(6997)] = 225041, - [SMALL_STATE(6998)] = 225057, - [SMALL_STATE(6999)] = 225073, - [SMALL_STATE(7000)] = 225085, - [SMALL_STATE(7001)] = 225097, - [SMALL_STATE(7002)] = 225113, - [SMALL_STATE(7003)] = 225129, - [SMALL_STATE(7004)] = 225145, - [SMALL_STATE(7005)] = 225161, - [SMALL_STATE(7006)] = 225177, - [SMALL_STATE(7007)] = 225193, - [SMALL_STATE(7008)] = 225205, - [SMALL_STATE(7009)] = 225221, - [SMALL_STATE(7010)] = 225233, - [SMALL_STATE(7011)] = 225245, - [SMALL_STATE(7012)] = 225259, - [SMALL_STATE(7013)] = 225275, - [SMALL_STATE(7014)] = 225291, - [SMALL_STATE(7015)] = 225307, - [SMALL_STATE(7016)] = 225323, - [SMALL_STATE(7017)] = 225339, - [SMALL_STATE(7018)] = 225355, - [SMALL_STATE(7019)] = 225367, - [SMALL_STATE(7020)] = 225383, - [SMALL_STATE(7021)] = 225399, - [SMALL_STATE(7022)] = 225415, - [SMALL_STATE(7023)] = 225431, - [SMALL_STATE(7024)] = 225447, - [SMALL_STATE(7025)] = 225463, - [SMALL_STATE(7026)] = 225479, - [SMALL_STATE(7027)] = 225495, - [SMALL_STATE(7028)] = 225511, - [SMALL_STATE(7029)] = 225525, - [SMALL_STATE(7030)] = 225541, - [SMALL_STATE(7031)] = 225557, - [SMALL_STATE(7032)] = 225573, - [SMALL_STATE(7033)] = 225589, - [SMALL_STATE(7034)] = 225605, - [SMALL_STATE(7035)] = 225621, - [SMALL_STATE(7036)] = 225637, - [SMALL_STATE(7037)] = 225653, - [SMALL_STATE(7038)] = 225669, - [SMALL_STATE(7039)] = 225685, - [SMALL_STATE(7040)] = 225701, - [SMALL_STATE(7041)] = 225717, - [SMALL_STATE(7042)] = 225733, - [SMALL_STATE(7043)] = 225749, - [SMALL_STATE(7044)] = 225763, - [SMALL_STATE(7045)] = 225779, - [SMALL_STATE(7046)] = 225793, - [SMALL_STATE(7047)] = 225807, - [SMALL_STATE(7048)] = 225823, - [SMALL_STATE(7049)] = 225835, - [SMALL_STATE(7050)] = 225851, - [SMALL_STATE(7051)] = 225867, - [SMALL_STATE(7052)] = 225883, - [SMALL_STATE(7053)] = 225899, - [SMALL_STATE(7054)] = 225915, - [SMALL_STATE(7055)] = 225929, - [SMALL_STATE(7056)] = 225945, - [SMALL_STATE(7057)] = 225961, - [SMALL_STATE(7058)] = 225977, - [SMALL_STATE(7059)] = 225991, - [SMALL_STATE(7060)] = 226007, - [SMALL_STATE(7061)] = 226021, - [SMALL_STATE(7062)] = 226037, - [SMALL_STATE(7063)] = 226051, - [SMALL_STATE(7064)] = 226067, - [SMALL_STATE(7065)] = 226083, - [SMALL_STATE(7066)] = 226099, - [SMALL_STATE(7067)] = 226115, - [SMALL_STATE(7068)] = 226131, - [SMALL_STATE(7069)] = 226147, - [SMALL_STATE(7070)] = 226159, - [SMALL_STATE(7071)] = 226175, - [SMALL_STATE(7072)] = 226191, - [SMALL_STATE(7073)] = 226207, - [SMALL_STATE(7074)] = 226223, - [SMALL_STATE(7075)] = 226239, - [SMALL_STATE(7076)] = 226251, - [SMALL_STATE(7077)] = 226265, - [SMALL_STATE(7078)] = 226281, - [SMALL_STATE(7079)] = 226293, - [SMALL_STATE(7080)] = 226307, - [SMALL_STATE(7081)] = 226323, - [SMALL_STATE(7082)] = 226335, - [SMALL_STATE(7083)] = 226347, - [SMALL_STATE(7084)] = 226359, - [SMALL_STATE(7085)] = 226371, - [SMALL_STATE(7086)] = 226385, - [SMALL_STATE(7087)] = 226401, - [SMALL_STATE(7088)] = 226413, - [SMALL_STATE(7089)] = 226427, - [SMALL_STATE(7090)] = 226443, - [SMALL_STATE(7091)] = 226459, - [SMALL_STATE(7092)] = 226471, - [SMALL_STATE(7093)] = 226483, - [SMALL_STATE(7094)] = 226495, - [SMALL_STATE(7095)] = 226511, - [SMALL_STATE(7096)] = 226527, - [SMALL_STATE(7097)] = 226543, - [SMALL_STATE(7098)] = 226557, - [SMALL_STATE(7099)] = 226569, - [SMALL_STATE(7100)] = 226585, - [SMALL_STATE(7101)] = 226599, - [SMALL_STATE(7102)] = 226615, - [SMALL_STATE(7103)] = 226629, - [SMALL_STATE(7104)] = 226641, - [SMALL_STATE(7105)] = 226653, - [SMALL_STATE(7106)] = 226667, - [SMALL_STATE(7107)] = 226679, - [SMALL_STATE(7108)] = 226691, - [SMALL_STATE(7109)] = 226703, - [SMALL_STATE(7110)] = 226719, - [SMALL_STATE(7111)] = 226735, - [SMALL_STATE(7112)] = 226751, - [SMALL_STATE(7113)] = 226767, - [SMALL_STATE(7114)] = 226779, - [SMALL_STATE(7115)] = 226793, - [SMALL_STATE(7116)] = 226809, - [SMALL_STATE(7117)] = 226825, - [SMALL_STATE(7118)] = 226839, - [SMALL_STATE(7119)] = 226851, - [SMALL_STATE(7120)] = 226867, - [SMALL_STATE(7121)] = 226883, - [SMALL_STATE(7122)] = 226899, - [SMALL_STATE(7123)] = 226911, - [SMALL_STATE(7124)] = 226927, - [SMALL_STATE(7125)] = 226943, - [SMALL_STATE(7126)] = 226957, - [SMALL_STATE(7127)] = 226971, - [SMALL_STATE(7128)] = 226985, - [SMALL_STATE(7129)] = 226999, - [SMALL_STATE(7130)] = 227013, - [SMALL_STATE(7131)] = 227025, - [SMALL_STATE(7132)] = 227041, - [SMALL_STATE(7133)] = 227055, - [SMALL_STATE(7134)] = 227067, - [SMALL_STATE(7135)] = 227079, - [SMALL_STATE(7136)] = 227091, - [SMALL_STATE(7137)] = 227107, - [SMALL_STATE(7138)] = 227121, - [SMALL_STATE(7139)] = 227133, - [SMALL_STATE(7140)] = 227149, - [SMALL_STATE(7141)] = 227165, - [SMALL_STATE(7142)] = 227181, - [SMALL_STATE(7143)] = 227195, - [SMALL_STATE(7144)] = 227211, - [SMALL_STATE(7145)] = 227223, - [SMALL_STATE(7146)] = 227235, - [SMALL_STATE(7147)] = 227251, - [SMALL_STATE(7148)] = 227267, - [SMALL_STATE(7149)] = 227283, - [SMALL_STATE(7150)] = 227299, - [SMALL_STATE(7151)] = 227315, - [SMALL_STATE(7152)] = 227329, - [SMALL_STATE(7153)] = 227345, - [SMALL_STATE(7154)] = 227361, - [SMALL_STATE(7155)] = 227377, - [SMALL_STATE(7156)] = 227389, - [SMALL_STATE(7157)] = 227403, - [SMALL_STATE(7158)] = 227417, - [SMALL_STATE(7159)] = 227429, - [SMALL_STATE(7160)] = 227443, - [SMALL_STATE(7161)] = 227459, - [SMALL_STATE(7162)] = 227471, - [SMALL_STATE(7163)] = 227487, - [SMALL_STATE(7164)] = 227503, - [SMALL_STATE(7165)] = 227519, - [SMALL_STATE(7166)] = 227535, - [SMALL_STATE(7167)] = 227549, - [SMALL_STATE(7168)] = 227565, - [SMALL_STATE(7169)] = 227581, - [SMALL_STATE(7170)] = 227593, - [SMALL_STATE(7171)] = 227605, - [SMALL_STATE(7172)] = 227621, - [SMALL_STATE(7173)] = 227637, - [SMALL_STATE(7174)] = 227649, - [SMALL_STATE(7175)] = 227661, - [SMALL_STATE(7176)] = 227677, - [SMALL_STATE(7177)] = 227689, - [SMALL_STATE(7178)] = 227701, - [SMALL_STATE(7179)] = 227717, - [SMALL_STATE(7180)] = 227731, - [SMALL_STATE(7181)] = 227747, - [SMALL_STATE(7182)] = 227759, - [SMALL_STATE(7183)] = 227773, - [SMALL_STATE(7184)] = 227787, - [SMALL_STATE(7185)] = 227803, - [SMALL_STATE(7186)] = 227817, - [SMALL_STATE(7187)] = 227833, - [SMALL_STATE(7188)] = 227849, - [SMALL_STATE(7189)] = 227865, - [SMALL_STATE(7190)] = 227881, - [SMALL_STATE(7191)] = 227897, - [SMALL_STATE(7192)] = 227913, - [SMALL_STATE(7193)] = 227929, - [SMALL_STATE(7194)] = 227945, - [SMALL_STATE(7195)] = 227961, - [SMALL_STATE(7196)] = 227977, - [SMALL_STATE(7197)] = 227993, - [SMALL_STATE(7198)] = 228009, - [SMALL_STATE(7199)] = 228025, - [SMALL_STATE(7200)] = 228041, - [SMALL_STATE(7201)] = 228057, - [SMALL_STATE(7202)] = 228069, - [SMALL_STATE(7203)] = 228085, - [SMALL_STATE(7204)] = 228101, - [SMALL_STATE(7205)] = 228115, - [SMALL_STATE(7206)] = 228129, - [SMALL_STATE(7207)] = 228143, - [SMALL_STATE(7208)] = 228159, - [SMALL_STATE(7209)] = 228173, - [SMALL_STATE(7210)] = 228187, - [SMALL_STATE(7211)] = 228203, - [SMALL_STATE(7212)] = 228219, - [SMALL_STATE(7213)] = 228235, - [SMALL_STATE(7214)] = 228251, - [SMALL_STATE(7215)] = 228267, - [SMALL_STATE(7216)] = 228281, - [SMALL_STATE(7217)] = 228295, - [SMALL_STATE(7218)] = 228307, - [SMALL_STATE(7219)] = 228323, - [SMALL_STATE(7220)] = 228339, - [SMALL_STATE(7221)] = 228355, - [SMALL_STATE(7222)] = 228371, - [SMALL_STATE(7223)] = 228383, - [SMALL_STATE(7224)] = 228399, - [SMALL_STATE(7225)] = 228415, - [SMALL_STATE(7226)] = 228431, - [SMALL_STATE(7227)] = 228447, - [SMALL_STATE(7228)] = 228463, - [SMALL_STATE(7229)] = 228479, - [SMALL_STATE(7230)] = 228495, - [SMALL_STATE(7231)] = 228511, - [SMALL_STATE(7232)] = 228527, - [SMALL_STATE(7233)] = 228543, - [SMALL_STATE(7234)] = 228555, - [SMALL_STATE(7235)] = 228569, - [SMALL_STATE(7236)] = 228585, - [SMALL_STATE(7237)] = 228597, - [SMALL_STATE(7238)] = 228609, - [SMALL_STATE(7239)] = 228621, - [SMALL_STATE(7240)] = 228635, - [SMALL_STATE(7241)] = 228647, - [SMALL_STATE(7242)] = 228661, - [SMALL_STATE(7243)] = 228673, - [SMALL_STATE(7244)] = 228689, - [SMALL_STATE(7245)] = 228705, - [SMALL_STATE(7246)] = 228721, - [SMALL_STATE(7247)] = 228733, - [SMALL_STATE(7248)] = 228749, - [SMALL_STATE(7249)] = 228765, - [SMALL_STATE(7250)] = 228781, - [SMALL_STATE(7251)] = 228795, - [SMALL_STATE(7252)] = 228809, - [SMALL_STATE(7253)] = 228823, - [SMALL_STATE(7254)] = 228837, - [SMALL_STATE(7255)] = 228853, - [SMALL_STATE(7256)] = 228869, - [SMALL_STATE(7257)] = 228885, - [SMALL_STATE(7258)] = 228901, - [SMALL_STATE(7259)] = 228915, - [SMALL_STATE(7260)] = 228929, - [SMALL_STATE(7261)] = 228945, - [SMALL_STATE(7262)] = 228961, - [SMALL_STATE(7263)] = 228977, - [SMALL_STATE(7264)] = 228993, - [SMALL_STATE(7265)] = 229007, - [SMALL_STATE(7266)] = 229019, - [SMALL_STATE(7267)] = 229033, - [SMALL_STATE(7268)] = 229049, - [SMALL_STATE(7269)] = 229065, - [SMALL_STATE(7270)] = 229077, - [SMALL_STATE(7271)] = 229093, - [SMALL_STATE(7272)] = 229109, - [SMALL_STATE(7273)] = 229123, - [SMALL_STATE(7274)] = 229137, - [SMALL_STATE(7275)] = 229153, - [SMALL_STATE(7276)] = 229169, - [SMALL_STATE(7277)] = 229181, - [SMALL_STATE(7278)] = 229197, - [SMALL_STATE(7279)] = 229213, - [SMALL_STATE(7280)] = 229227, - [SMALL_STATE(7281)] = 229243, - [SMALL_STATE(7282)] = 229257, - [SMALL_STATE(7283)] = 229269, - [SMALL_STATE(7284)] = 229285, - [SMALL_STATE(7285)] = 229301, - [SMALL_STATE(7286)] = 229317, - [SMALL_STATE(7287)] = 229333, - [SMALL_STATE(7288)] = 229347, - [SMALL_STATE(7289)] = 229359, - [SMALL_STATE(7290)] = 229373, - [SMALL_STATE(7291)] = 229387, - [SMALL_STATE(7292)] = 229403, - [SMALL_STATE(7293)] = 229419, - [SMALL_STATE(7294)] = 229435, - [SMALL_STATE(7295)] = 229451, - [SMALL_STATE(7296)] = 229465, - [SMALL_STATE(7297)] = 229477, - [SMALL_STATE(7298)] = 229491, - [SMALL_STATE(7299)] = 229507, - [SMALL_STATE(7300)] = 229519, - [SMALL_STATE(7301)] = 229535, - [SMALL_STATE(7302)] = 229551, - [SMALL_STATE(7303)] = 229567, - [SMALL_STATE(7304)] = 229583, - [SMALL_STATE(7305)] = 229597, - [SMALL_STATE(7306)] = 229611, - [SMALL_STATE(7307)] = 229623, - [SMALL_STATE(7308)] = 229637, - [SMALL_STATE(7309)] = 229653, - [SMALL_STATE(7310)] = 229669, - [SMALL_STATE(7311)] = 229685, - [SMALL_STATE(7312)] = 229701, - [SMALL_STATE(7313)] = 229717, - [SMALL_STATE(7314)] = 229731, - [SMALL_STATE(7315)] = 229745, - [SMALL_STATE(7316)] = 229761, - [SMALL_STATE(7317)] = 229777, - [SMALL_STATE(7318)] = 229793, - [SMALL_STATE(7319)] = 229809, - [SMALL_STATE(7320)] = 229823, - [SMALL_STATE(7321)] = 229837, - [SMALL_STATE(7322)] = 229849, - [SMALL_STATE(7323)] = 229865, - [SMALL_STATE(7324)] = 229881, - [SMALL_STATE(7325)] = 229897, - [SMALL_STATE(7326)] = 229913, - [SMALL_STATE(7327)] = 229927, - [SMALL_STATE(7328)] = 229941, - [SMALL_STATE(7329)] = 229957, - [SMALL_STATE(7330)] = 229973, - [SMALL_STATE(7331)] = 229985, - [SMALL_STATE(7332)] = 230001, - [SMALL_STATE(7333)] = 230017, - [SMALL_STATE(7334)] = 230031, - [SMALL_STATE(7335)] = 230045, - [SMALL_STATE(7336)] = 230061, - [SMALL_STATE(7337)] = 230077, - [SMALL_STATE(7338)] = 230093, - [SMALL_STATE(7339)] = 230109, - [SMALL_STATE(7340)] = 230123, - [SMALL_STATE(7341)] = 230137, - [SMALL_STATE(7342)] = 230153, - [SMALL_STATE(7343)] = 230169, - [SMALL_STATE(7344)] = 230185, - [SMALL_STATE(7345)] = 230201, - [SMALL_STATE(7346)] = 230215, - [SMALL_STATE(7347)] = 230229, - [SMALL_STATE(7348)] = 230245, - [SMALL_STATE(7349)] = 230261, - [SMALL_STATE(7350)] = 230277, - [SMALL_STATE(7351)] = 230293, - [SMALL_STATE(7352)] = 230309, - [SMALL_STATE(7353)] = 230325, - [SMALL_STATE(7354)] = 230339, - [SMALL_STATE(7355)] = 230355, - [SMALL_STATE(7356)] = 230371, - [SMALL_STATE(7357)] = 230387, - [SMALL_STATE(7358)] = 230403, - [SMALL_STATE(7359)] = 230415, - [SMALL_STATE(7360)] = 230427, - [SMALL_STATE(7361)] = 230443, - [SMALL_STATE(7362)] = 230459, - [SMALL_STATE(7363)] = 230475, - [SMALL_STATE(7364)] = 230487, - [SMALL_STATE(7365)] = 230499, - [SMALL_STATE(7366)] = 230515, - [SMALL_STATE(7367)] = 230527, - [SMALL_STATE(7368)] = 230540, - [SMALL_STATE(7369)] = 230553, - [SMALL_STATE(7370)] = 230566, - [SMALL_STATE(7371)] = 230579, - [SMALL_STATE(7372)] = 230592, - [SMALL_STATE(7373)] = 230605, - [SMALL_STATE(7374)] = 230618, - [SMALL_STATE(7375)] = 230631, - [SMALL_STATE(7376)] = 230644, - [SMALL_STATE(7377)] = 230657, - [SMALL_STATE(7378)] = 230670, - [SMALL_STATE(7379)] = 230683, - [SMALL_STATE(7380)] = 230696, - [SMALL_STATE(7381)] = 230707, - [SMALL_STATE(7382)] = 230720, - [SMALL_STATE(7383)] = 230733, - [SMALL_STATE(7384)] = 230746, - [SMALL_STATE(7385)] = 230759, - [SMALL_STATE(7386)] = 230772, - [SMALL_STATE(7387)] = 230785, - [SMALL_STATE(7388)] = 230798, - [SMALL_STATE(7389)] = 230811, - [SMALL_STATE(7390)] = 230824, - [SMALL_STATE(7391)] = 230837, - [SMALL_STATE(7392)] = 230848, - [SMALL_STATE(7393)] = 230861, - [SMALL_STATE(7394)] = 230874, - [SMALL_STATE(7395)] = 230887, - [SMALL_STATE(7396)] = 230900, - [SMALL_STATE(7397)] = 230913, - [SMALL_STATE(7398)] = 230924, - [SMALL_STATE(7399)] = 230937, - [SMALL_STATE(7400)] = 230950, - [SMALL_STATE(7401)] = 230963, - [SMALL_STATE(7402)] = 230976, - [SMALL_STATE(7403)] = 230989, - [SMALL_STATE(7404)] = 231002, - [SMALL_STATE(7405)] = 231015, - [SMALL_STATE(7406)] = 231028, - [SMALL_STATE(7407)] = 231041, - [SMALL_STATE(7408)] = 231054, - [SMALL_STATE(7409)] = 231067, - [SMALL_STATE(7410)] = 231080, - [SMALL_STATE(7411)] = 231093, - [SMALL_STATE(7412)] = 231106, - [SMALL_STATE(7413)] = 231119, - [SMALL_STATE(7414)] = 231132, - [SMALL_STATE(7415)] = 231145, - [SMALL_STATE(7416)] = 231158, - [SMALL_STATE(7417)] = 231171, - [SMALL_STATE(7418)] = 231184, - [SMALL_STATE(7419)] = 231197, - [SMALL_STATE(7420)] = 231210, - [SMALL_STATE(7421)] = 231223, - [SMALL_STATE(7422)] = 231236, - [SMALL_STATE(7423)] = 231249, - [SMALL_STATE(7424)] = 231262, - [SMALL_STATE(7425)] = 231275, - [SMALL_STATE(7426)] = 231288, - [SMALL_STATE(7427)] = 231301, - [SMALL_STATE(7428)] = 231314, - [SMALL_STATE(7429)] = 231325, - [SMALL_STATE(7430)] = 231338, - [SMALL_STATE(7431)] = 231351, - [SMALL_STATE(7432)] = 231364, - [SMALL_STATE(7433)] = 231377, - [SMALL_STATE(7434)] = 231390, - [SMALL_STATE(7435)] = 231401, - [SMALL_STATE(7436)] = 231414, - [SMALL_STATE(7437)] = 231427, - [SMALL_STATE(7438)] = 231440, - [SMALL_STATE(7439)] = 231453, - [SMALL_STATE(7440)] = 231466, - [SMALL_STATE(7441)] = 231479, - [SMALL_STATE(7442)] = 231492, - [SMALL_STATE(7443)] = 231505, - [SMALL_STATE(7444)] = 231518, - [SMALL_STATE(7445)] = 231531, - [SMALL_STATE(7446)] = 231544, - [SMALL_STATE(7447)] = 231557, - [SMALL_STATE(7448)] = 231570, - [SMALL_STATE(7449)] = 231583, - [SMALL_STATE(7450)] = 231596, - [SMALL_STATE(7451)] = 231609, - [SMALL_STATE(7452)] = 231622, - [SMALL_STATE(7453)] = 231635, - [SMALL_STATE(7454)] = 231648, - [SMALL_STATE(7455)] = 231661, - [SMALL_STATE(7456)] = 231674, - [SMALL_STATE(7457)] = 231687, - [SMALL_STATE(7458)] = 231700, - [SMALL_STATE(7459)] = 231713, - [SMALL_STATE(7460)] = 231726, - [SMALL_STATE(7461)] = 231739, - [SMALL_STATE(7462)] = 231752, - [SMALL_STATE(7463)] = 231765, - [SMALL_STATE(7464)] = 231778, - [SMALL_STATE(7465)] = 231791, - [SMALL_STATE(7466)] = 231804, - [SMALL_STATE(7467)] = 231817, - [SMALL_STATE(7468)] = 231830, - [SMALL_STATE(7469)] = 231843, - [SMALL_STATE(7470)] = 231856, - [SMALL_STATE(7471)] = 231869, - [SMALL_STATE(7472)] = 231882, - [SMALL_STATE(7473)] = 231895, - [SMALL_STATE(7474)] = 231908, - [SMALL_STATE(7475)] = 231921, - [SMALL_STATE(7476)] = 231934, - [SMALL_STATE(7477)] = 231947, - [SMALL_STATE(7478)] = 231960, - [SMALL_STATE(7479)] = 231973, - [SMALL_STATE(7480)] = 231986, - [SMALL_STATE(7481)] = 231999, - [SMALL_STATE(7482)] = 232012, - [SMALL_STATE(7483)] = 232025, - [SMALL_STATE(7484)] = 232038, - [SMALL_STATE(7485)] = 232051, - [SMALL_STATE(7486)] = 232064, - [SMALL_STATE(7487)] = 232077, - [SMALL_STATE(7488)] = 232090, - [SMALL_STATE(7489)] = 232103, - [SMALL_STATE(7490)] = 232114, - [SMALL_STATE(7491)] = 232127, - [SMALL_STATE(7492)] = 232140, - [SMALL_STATE(7493)] = 232153, - [SMALL_STATE(7494)] = 232164, - [SMALL_STATE(7495)] = 232177, - [SMALL_STATE(7496)] = 232190, - [SMALL_STATE(7497)] = 232203, - [SMALL_STATE(7498)] = 232216, - [SMALL_STATE(7499)] = 232229, - [SMALL_STATE(7500)] = 232242, - [SMALL_STATE(7501)] = 232255, - [SMALL_STATE(7502)] = 232268, - [SMALL_STATE(7503)] = 232281, - [SMALL_STATE(7504)] = 232294, - [SMALL_STATE(7505)] = 232307, - [SMALL_STATE(7506)] = 232320, - [SMALL_STATE(7507)] = 232333, - [SMALL_STATE(7508)] = 232346, - [SMALL_STATE(7509)] = 232359, - [SMALL_STATE(7510)] = 232370, - [SMALL_STATE(7511)] = 232383, - [SMALL_STATE(7512)] = 232396, - [SMALL_STATE(7513)] = 232409, - [SMALL_STATE(7514)] = 232420, - [SMALL_STATE(7515)] = 232433, - [SMALL_STATE(7516)] = 232444, - [SMALL_STATE(7517)] = 232457, - [SMALL_STATE(7518)] = 232470, - [SMALL_STATE(7519)] = 232483, - [SMALL_STATE(7520)] = 232496, - [SMALL_STATE(7521)] = 232509, - [SMALL_STATE(7522)] = 232520, - [SMALL_STATE(7523)] = 232533, - [SMALL_STATE(7524)] = 232546, - [SMALL_STATE(7525)] = 232559, - [SMALL_STATE(7526)] = 232572, - [SMALL_STATE(7527)] = 232585, - [SMALL_STATE(7528)] = 232598, - [SMALL_STATE(7529)] = 232611, - [SMALL_STATE(7530)] = 232624, - [SMALL_STATE(7531)] = 232637, - [SMALL_STATE(7532)] = 232650, - [SMALL_STATE(7533)] = 232663, - [SMALL_STATE(7534)] = 232676, - [SMALL_STATE(7535)] = 232689, - [SMALL_STATE(7536)] = 232702, - [SMALL_STATE(7537)] = 232715, - [SMALL_STATE(7538)] = 232728, - [SMALL_STATE(7539)] = 232741, - [SMALL_STATE(7540)] = 232754, - [SMALL_STATE(7541)] = 232767, - [SMALL_STATE(7542)] = 232780, - [SMALL_STATE(7543)] = 232793, - [SMALL_STATE(7544)] = 232806, - [SMALL_STATE(7545)] = 232819, - [SMALL_STATE(7546)] = 232829, - [SMALL_STATE(7547)] = 232839, - [SMALL_STATE(7548)] = 232849, - [SMALL_STATE(7549)] = 232859, - [SMALL_STATE(7550)] = 232869, - [SMALL_STATE(7551)] = 232879, - [SMALL_STATE(7552)] = 232889, - [SMALL_STATE(7553)] = 232899, - [SMALL_STATE(7554)] = 232909, - [SMALL_STATE(7555)] = 232919, - [SMALL_STATE(7556)] = 232929, - [SMALL_STATE(7557)] = 232939, - [SMALL_STATE(7558)] = 232949, - [SMALL_STATE(7559)] = 232959, - [SMALL_STATE(7560)] = 232969, - [SMALL_STATE(7561)] = 232979, - [SMALL_STATE(7562)] = 232989, - [SMALL_STATE(7563)] = 232999, - [SMALL_STATE(7564)] = 233009, - [SMALL_STATE(7565)] = 233019, - [SMALL_STATE(7566)] = 233029, - [SMALL_STATE(7567)] = 233039, - [SMALL_STATE(7568)] = 233049, - [SMALL_STATE(7569)] = 233059, - [SMALL_STATE(7570)] = 233069, - [SMALL_STATE(7571)] = 233079, - [SMALL_STATE(7572)] = 233089, - [SMALL_STATE(7573)] = 233099, - [SMALL_STATE(7574)] = 233109, - [SMALL_STATE(7575)] = 233119, - [SMALL_STATE(7576)] = 233129, - [SMALL_STATE(7577)] = 233139, - [SMALL_STATE(7578)] = 233149, - [SMALL_STATE(7579)] = 233159, - [SMALL_STATE(7580)] = 233169, - [SMALL_STATE(7581)] = 233179, - [SMALL_STATE(7582)] = 233189, - [SMALL_STATE(7583)] = 233199, - [SMALL_STATE(7584)] = 233209, - [SMALL_STATE(7585)] = 233219, - [SMALL_STATE(7586)] = 233229, - [SMALL_STATE(7587)] = 233239, - [SMALL_STATE(7588)] = 233249, - [SMALL_STATE(7589)] = 233259, - [SMALL_STATE(7590)] = 233269, - [SMALL_STATE(7591)] = 233279, - [SMALL_STATE(7592)] = 233289, - [SMALL_STATE(7593)] = 233299, - [SMALL_STATE(7594)] = 233309, - [SMALL_STATE(7595)] = 233319, - [SMALL_STATE(7596)] = 233329, - [SMALL_STATE(7597)] = 233339, - [SMALL_STATE(7598)] = 233349, - [SMALL_STATE(7599)] = 233359, - [SMALL_STATE(7600)] = 233369, - [SMALL_STATE(7601)] = 233379, - [SMALL_STATE(7602)] = 233389, - [SMALL_STATE(7603)] = 233399, - [SMALL_STATE(7604)] = 233409, - [SMALL_STATE(7605)] = 233419, - [SMALL_STATE(7606)] = 233429, - [SMALL_STATE(7607)] = 233439, - [SMALL_STATE(7608)] = 233449, - [SMALL_STATE(7609)] = 233459, - [SMALL_STATE(7610)] = 233469, - [SMALL_STATE(7611)] = 233479, - [SMALL_STATE(7612)] = 233489, - [SMALL_STATE(7613)] = 233499, - [SMALL_STATE(7614)] = 233509, - [SMALL_STATE(7615)] = 233519, - [SMALL_STATE(7616)] = 233529, - [SMALL_STATE(7617)] = 233539, - [SMALL_STATE(7618)] = 233549, - [SMALL_STATE(7619)] = 233559, - [SMALL_STATE(7620)] = 233569, - [SMALL_STATE(7621)] = 233579, - [SMALL_STATE(7622)] = 233589, - [SMALL_STATE(7623)] = 233599, - [SMALL_STATE(7624)] = 233609, - [SMALL_STATE(7625)] = 233619, - [SMALL_STATE(7626)] = 233629, - [SMALL_STATE(7627)] = 233639, - [SMALL_STATE(7628)] = 233649, - [SMALL_STATE(7629)] = 233659, - [SMALL_STATE(7630)] = 233669, - [SMALL_STATE(7631)] = 233679, - [SMALL_STATE(7632)] = 233689, - [SMALL_STATE(7633)] = 233699, - [SMALL_STATE(7634)] = 233709, - [SMALL_STATE(7635)] = 233719, - [SMALL_STATE(7636)] = 233729, - [SMALL_STATE(7637)] = 233739, - [SMALL_STATE(7638)] = 233749, - [SMALL_STATE(7639)] = 233759, - [SMALL_STATE(7640)] = 233769, - [SMALL_STATE(7641)] = 233779, - [SMALL_STATE(7642)] = 233789, - [SMALL_STATE(7643)] = 233799, - [SMALL_STATE(7644)] = 233809, - [SMALL_STATE(7645)] = 233819, - [SMALL_STATE(7646)] = 233829, - [SMALL_STATE(7647)] = 233839, - [SMALL_STATE(7648)] = 233849, - [SMALL_STATE(7649)] = 233859, - [SMALL_STATE(7650)] = 233869, - [SMALL_STATE(7651)] = 233879, - [SMALL_STATE(7652)] = 233889, - [SMALL_STATE(7653)] = 233899, - [SMALL_STATE(7654)] = 233909, - [SMALL_STATE(7655)] = 233919, - [SMALL_STATE(7656)] = 233929, - [SMALL_STATE(7657)] = 233939, - [SMALL_STATE(7658)] = 233949, - [SMALL_STATE(7659)] = 233959, - [SMALL_STATE(7660)] = 233969, - [SMALL_STATE(7661)] = 233979, - [SMALL_STATE(7662)] = 233989, - [SMALL_STATE(7663)] = 233999, - [SMALL_STATE(7664)] = 234009, - [SMALL_STATE(7665)] = 234019, - [SMALL_STATE(7666)] = 234029, - [SMALL_STATE(7667)] = 234039, - [SMALL_STATE(7668)] = 234049, - [SMALL_STATE(7669)] = 234059, - [SMALL_STATE(7670)] = 234069, - [SMALL_STATE(7671)] = 234079, - [SMALL_STATE(7672)] = 234089, - [SMALL_STATE(7673)] = 234099, - [SMALL_STATE(7674)] = 234109, - [SMALL_STATE(7675)] = 234119, - [SMALL_STATE(7676)] = 234129, - [SMALL_STATE(7677)] = 234139, - [SMALL_STATE(7678)] = 234149, - [SMALL_STATE(7679)] = 234159, - [SMALL_STATE(7680)] = 234169, - [SMALL_STATE(7681)] = 234179, - [SMALL_STATE(7682)] = 234189, - [SMALL_STATE(7683)] = 234199, - [SMALL_STATE(7684)] = 234209, - [SMALL_STATE(7685)] = 234219, - [SMALL_STATE(7686)] = 234229, - [SMALL_STATE(7687)] = 234239, - [SMALL_STATE(7688)] = 234249, - [SMALL_STATE(7689)] = 234259, - [SMALL_STATE(7690)] = 234269, - [SMALL_STATE(7691)] = 234279, - [SMALL_STATE(7692)] = 234289, - [SMALL_STATE(7693)] = 234299, - [SMALL_STATE(7694)] = 234309, - [SMALL_STATE(7695)] = 234319, - [SMALL_STATE(7696)] = 234329, - [SMALL_STATE(7697)] = 234339, - [SMALL_STATE(7698)] = 234349, - [SMALL_STATE(7699)] = 234359, - [SMALL_STATE(7700)] = 234369, - [SMALL_STATE(7701)] = 234379, - [SMALL_STATE(7702)] = 234389, - [SMALL_STATE(7703)] = 234399, - [SMALL_STATE(7704)] = 234409, - [SMALL_STATE(7705)] = 234419, - [SMALL_STATE(7706)] = 234429, - [SMALL_STATE(7707)] = 234439, - [SMALL_STATE(7708)] = 234449, - [SMALL_STATE(7709)] = 234459, - [SMALL_STATE(7710)] = 234469, - [SMALL_STATE(7711)] = 234479, - [SMALL_STATE(7712)] = 234489, - [SMALL_STATE(7713)] = 234499, - [SMALL_STATE(7714)] = 234509, - [SMALL_STATE(7715)] = 234519, - [SMALL_STATE(7716)] = 234529, - [SMALL_STATE(7717)] = 234539, - [SMALL_STATE(7718)] = 234549, - [SMALL_STATE(7719)] = 234559, - [SMALL_STATE(7720)] = 234569, - [SMALL_STATE(7721)] = 234579, - [SMALL_STATE(7722)] = 234589, - [SMALL_STATE(7723)] = 234599, - [SMALL_STATE(7724)] = 234609, - [SMALL_STATE(7725)] = 234619, - [SMALL_STATE(7726)] = 234629, - [SMALL_STATE(7727)] = 234639, - [SMALL_STATE(7728)] = 234649, - [SMALL_STATE(7729)] = 234659, - [SMALL_STATE(7730)] = 234669, - [SMALL_STATE(7731)] = 234679, - [SMALL_STATE(7732)] = 234689, - [SMALL_STATE(7733)] = 234699, - [SMALL_STATE(7734)] = 234709, - [SMALL_STATE(7735)] = 234719, - [SMALL_STATE(7736)] = 234729, - [SMALL_STATE(7737)] = 234739, - [SMALL_STATE(7738)] = 234749, - [SMALL_STATE(7739)] = 234759, - [SMALL_STATE(7740)] = 234769, - [SMALL_STATE(7741)] = 234779, - [SMALL_STATE(7742)] = 234789, - [SMALL_STATE(7743)] = 234799, - [SMALL_STATE(7744)] = 234809, - [SMALL_STATE(7745)] = 234819, - [SMALL_STATE(7746)] = 234829, - [SMALL_STATE(7747)] = 234839, - [SMALL_STATE(7748)] = 234849, - [SMALL_STATE(7749)] = 234859, - [SMALL_STATE(7750)] = 234869, - [SMALL_STATE(7751)] = 234879, - [SMALL_STATE(7752)] = 234889, - [SMALL_STATE(7753)] = 234899, - [SMALL_STATE(7754)] = 234909, - [SMALL_STATE(7755)] = 234919, - [SMALL_STATE(7756)] = 234929, - [SMALL_STATE(7757)] = 234939, - [SMALL_STATE(7758)] = 234949, - [SMALL_STATE(7759)] = 234959, - [SMALL_STATE(7760)] = 234969, - [SMALL_STATE(7761)] = 234979, - [SMALL_STATE(7762)] = 234989, - [SMALL_STATE(7763)] = 234999, - [SMALL_STATE(7764)] = 235009, - [SMALL_STATE(7765)] = 235019, - [SMALL_STATE(7766)] = 235029, - [SMALL_STATE(7767)] = 235039, - [SMALL_STATE(7768)] = 235049, - [SMALL_STATE(7769)] = 235059, - [SMALL_STATE(7770)] = 235069, - [SMALL_STATE(7771)] = 235079, - [SMALL_STATE(7772)] = 235089, - [SMALL_STATE(7773)] = 235099, - [SMALL_STATE(7774)] = 235109, - [SMALL_STATE(7775)] = 235119, - [SMALL_STATE(7776)] = 235129, - [SMALL_STATE(7777)] = 235139, - [SMALL_STATE(7778)] = 235149, - [SMALL_STATE(7779)] = 235159, - [SMALL_STATE(7780)] = 235169, - [SMALL_STATE(7781)] = 235179, - [SMALL_STATE(7782)] = 235189, - [SMALL_STATE(7783)] = 235199, - [SMALL_STATE(7784)] = 235209, - [SMALL_STATE(7785)] = 235219, - [SMALL_STATE(7786)] = 235229, - [SMALL_STATE(7787)] = 235239, - [SMALL_STATE(7788)] = 235249, - [SMALL_STATE(7789)] = 235259, - [SMALL_STATE(7790)] = 235269, - [SMALL_STATE(7791)] = 235279, - [SMALL_STATE(7792)] = 235289, - [SMALL_STATE(7793)] = 235299, - [SMALL_STATE(7794)] = 235309, - [SMALL_STATE(7795)] = 235319, - [SMALL_STATE(7796)] = 235329, - [SMALL_STATE(7797)] = 235339, - [SMALL_STATE(7798)] = 235349, - [SMALL_STATE(7799)] = 235359, - [SMALL_STATE(7800)] = 235369, - [SMALL_STATE(7801)] = 235379, - [SMALL_STATE(7802)] = 235389, - [SMALL_STATE(7803)] = 235399, - [SMALL_STATE(7804)] = 235409, - [SMALL_STATE(7805)] = 235419, - [SMALL_STATE(7806)] = 235429, - [SMALL_STATE(7807)] = 235439, - [SMALL_STATE(7808)] = 235449, - [SMALL_STATE(7809)] = 235459, - [SMALL_STATE(7810)] = 235469, - [SMALL_STATE(7811)] = 235479, - [SMALL_STATE(7812)] = 235489, - [SMALL_STATE(7813)] = 235499, - [SMALL_STATE(7814)] = 235509, - [SMALL_STATE(7815)] = 235519, - [SMALL_STATE(7816)] = 235529, - [SMALL_STATE(7817)] = 235539, - [SMALL_STATE(7818)] = 235549, - [SMALL_STATE(7819)] = 235559, - [SMALL_STATE(7820)] = 235569, - [SMALL_STATE(7821)] = 235579, - [SMALL_STATE(7822)] = 235589, - [SMALL_STATE(7823)] = 235599, - [SMALL_STATE(7824)] = 235609, - [SMALL_STATE(7825)] = 235619, - [SMALL_STATE(7826)] = 235629, - [SMALL_STATE(7827)] = 235639, - [SMALL_STATE(7828)] = 235649, - [SMALL_STATE(7829)] = 235659, - [SMALL_STATE(7830)] = 235669, - [SMALL_STATE(7831)] = 235679, - [SMALL_STATE(7832)] = 235689, - [SMALL_STATE(7833)] = 235699, - [SMALL_STATE(7834)] = 235709, - [SMALL_STATE(7835)] = 235719, - [SMALL_STATE(7836)] = 235729, - [SMALL_STATE(7837)] = 235739, - [SMALL_STATE(7838)] = 235749, - [SMALL_STATE(7839)] = 235759, - [SMALL_STATE(7840)] = 235769, - [SMALL_STATE(7841)] = 235779, - [SMALL_STATE(7842)] = 235789, - [SMALL_STATE(7843)] = 235799, - [SMALL_STATE(7844)] = 235809, - [SMALL_STATE(7845)] = 235819, - [SMALL_STATE(7846)] = 235829, - [SMALL_STATE(7847)] = 235839, - [SMALL_STATE(7848)] = 235849, - [SMALL_STATE(7849)] = 235859, - [SMALL_STATE(7850)] = 235869, - [SMALL_STATE(7851)] = 235879, - [SMALL_STATE(7852)] = 235889, - [SMALL_STATE(7853)] = 235899, - [SMALL_STATE(7854)] = 235909, - [SMALL_STATE(7855)] = 235919, - [SMALL_STATE(7856)] = 235929, - [SMALL_STATE(7857)] = 235939, - [SMALL_STATE(7858)] = 235949, - [SMALL_STATE(7859)] = 235959, - [SMALL_STATE(7860)] = 235969, - [SMALL_STATE(7861)] = 235979, - [SMALL_STATE(7862)] = 235989, - [SMALL_STATE(7863)] = 235999, - [SMALL_STATE(7864)] = 236009, - [SMALL_STATE(7865)] = 236019, - [SMALL_STATE(7866)] = 236029, - [SMALL_STATE(7867)] = 236039, - [SMALL_STATE(7868)] = 236049, - [SMALL_STATE(7869)] = 236059, - [SMALL_STATE(7870)] = 236069, - [SMALL_STATE(7871)] = 236079, - [SMALL_STATE(7872)] = 236089, - [SMALL_STATE(7873)] = 236099, - [SMALL_STATE(7874)] = 236109, - [SMALL_STATE(7875)] = 236119, - [SMALL_STATE(7876)] = 236129, - [SMALL_STATE(7877)] = 236139, - [SMALL_STATE(7878)] = 236149, - [SMALL_STATE(7879)] = 236159, - [SMALL_STATE(7880)] = 236169, - [SMALL_STATE(7881)] = 236179, - [SMALL_STATE(7882)] = 236189, - [SMALL_STATE(7883)] = 236199, - [SMALL_STATE(7884)] = 236209, - [SMALL_STATE(7885)] = 236219, - [SMALL_STATE(7886)] = 236229, - [SMALL_STATE(7887)] = 236239, - [SMALL_STATE(7888)] = 236249, - [SMALL_STATE(7889)] = 236259, - [SMALL_STATE(7890)] = 236269, - [SMALL_STATE(7891)] = 236279, - [SMALL_STATE(7892)] = 236289, - [SMALL_STATE(7893)] = 236299, - [SMALL_STATE(7894)] = 236309, - [SMALL_STATE(7895)] = 236319, - [SMALL_STATE(7896)] = 236329, - [SMALL_STATE(7897)] = 236339, - [SMALL_STATE(7898)] = 236349, - [SMALL_STATE(7899)] = 236359, - [SMALL_STATE(7900)] = 236369, - [SMALL_STATE(7901)] = 236379, - [SMALL_STATE(7902)] = 236389, - [SMALL_STATE(7903)] = 236399, - [SMALL_STATE(7904)] = 236409, - [SMALL_STATE(7905)] = 236419, - [SMALL_STATE(7906)] = 236429, - [SMALL_STATE(7907)] = 236439, - [SMALL_STATE(7908)] = 236449, - [SMALL_STATE(7909)] = 236459, - [SMALL_STATE(7910)] = 236469, - [SMALL_STATE(7911)] = 236479, - [SMALL_STATE(7912)] = 236489, - [SMALL_STATE(7913)] = 236499, - [SMALL_STATE(7914)] = 236509, - [SMALL_STATE(7915)] = 236519, - [SMALL_STATE(7916)] = 236529, - [SMALL_STATE(7917)] = 236539, - [SMALL_STATE(7918)] = 236549, - [SMALL_STATE(7919)] = 236559, - [SMALL_STATE(7920)] = 236569, - [SMALL_STATE(7921)] = 236579, - [SMALL_STATE(7922)] = 236589, - [SMALL_STATE(7923)] = 236599, - [SMALL_STATE(7924)] = 236609, - [SMALL_STATE(7925)] = 236619, - [SMALL_STATE(7926)] = 236629, - [SMALL_STATE(7927)] = 236639, - [SMALL_STATE(7928)] = 236649, - [SMALL_STATE(7929)] = 236659, - [SMALL_STATE(7930)] = 236669, - [SMALL_STATE(7931)] = 236679, - [SMALL_STATE(7932)] = 236689, - [SMALL_STATE(7933)] = 236699, - [SMALL_STATE(7934)] = 236709, - [SMALL_STATE(7935)] = 236719, - [SMALL_STATE(7936)] = 236729, - [SMALL_STATE(7937)] = 236739, - [SMALL_STATE(7938)] = 236749, - [SMALL_STATE(7939)] = 236759, - [SMALL_STATE(7940)] = 236769, - [SMALL_STATE(7941)] = 236779, - [SMALL_STATE(7942)] = 236789, - [SMALL_STATE(7943)] = 236799, - [SMALL_STATE(7944)] = 236809, - [SMALL_STATE(7945)] = 236819, - [SMALL_STATE(7946)] = 236829, - [SMALL_STATE(7947)] = 236839, - [SMALL_STATE(7948)] = 236849, - [SMALL_STATE(7949)] = 236859, - [SMALL_STATE(7950)] = 236869, - [SMALL_STATE(7951)] = 236879, - [SMALL_STATE(7952)] = 236889, - [SMALL_STATE(7953)] = 236899, + [SMALL_STATE(1669)] = 0, + [SMALL_STATE(1670)] = 79, + [SMALL_STATE(1671)] = 152, + [SMALL_STATE(1672)] = 231, + [SMALL_STATE(1673)] = 304, + [SMALL_STATE(1674)] = 383, + [SMALL_STATE(1675)] = 462, + [SMALL_STATE(1676)] = 541, + [SMALL_STATE(1677)] = 614, + [SMALL_STATE(1678)] = 693, + [SMALL_STATE(1679)] = 766, + [SMALL_STATE(1680)] = 845, + [SMALL_STATE(1681)] = 918, + [SMALL_STATE(1682)] = 997, + [SMALL_STATE(1683)] = 1076, + [SMALL_STATE(1684)] = 1149, + [SMALL_STATE(1685)] = 1228, + [SMALL_STATE(1686)] = 1305, + [SMALL_STATE(1687)] = 1378, + [SMALL_STATE(1688)] = 1457, + [SMALL_STATE(1689)] = 1530, + [SMALL_STATE(1690)] = 1603, + [SMALL_STATE(1691)] = 1676, + [SMALL_STATE(1692)] = 1749, + [SMALL_STATE(1693)] = 1822, + [SMALL_STATE(1694)] = 1895, + [SMALL_STATE(1695)] = 1968, + [SMALL_STATE(1696)] = 2049, + [SMALL_STATE(1697)] = 2130, + [SMALL_STATE(1698)] = 2209, + [SMALL_STATE(1699)] = 2290, + [SMALL_STATE(1700)] = 2371, + [SMALL_STATE(1701)] = 2452, + [SMALL_STATE(1702)] = 2531, + [SMALL_STATE(1703)] = 2604, + [SMALL_STATE(1704)] = 2711, + [SMALL_STATE(1705)] = 2786, + [SMALL_STATE(1706)] = 2859, + [SMALL_STATE(1707)] = 2942, + [SMALL_STATE(1708)] = 3025, + [SMALL_STATE(1709)] = 3098, + [SMALL_STATE(1710)] = 3179, + [SMALL_STATE(1711)] = 3254, + [SMALL_STATE(1712)] = 3327, + [SMALL_STATE(1713)] = 3406, + [SMALL_STATE(1714)] = 3485, + [SMALL_STATE(1715)] = 3560, + [SMALL_STATE(1716)] = 3635, + [SMALL_STATE(1717)] = 3708, + [SMALL_STATE(1718)] = 3789, + [SMALL_STATE(1719)] = 3868, + [SMALL_STATE(1720)] = 3947, + [SMALL_STATE(1721)] = 4020, + [SMALL_STATE(1722)] = 4099, + [SMALL_STATE(1723)] = 4172, + [SMALL_STATE(1724)] = 4245, + [SMALL_STATE(1725)] = 4352, + [SMALL_STATE(1726)] = 4425, + [SMALL_STATE(1727)] = 4504, + [SMALL_STATE(1728)] = 4583, + [SMALL_STATE(1729)] = 4656, + [SMALL_STATE(1730)] = 4735, + [SMALL_STATE(1731)] = 4810, + [SMALL_STATE(1732)] = 4883, + [SMALL_STATE(1733)] = 4990, + [SMALL_STATE(1734)] = 5063, + [SMALL_STATE(1735)] = 5142, + [SMALL_STATE(1736)] = 5217, + [SMALL_STATE(1737)] = 5290, + [SMALL_STATE(1738)] = 5369, + [SMALL_STATE(1739)] = 5444, + [SMALL_STATE(1740)] = 5519, + [SMALL_STATE(1741)] = 5598, + [SMALL_STATE(1742)] = 5671, + [SMALL_STATE(1743)] = 5744, + [SMALL_STATE(1744)] = 5823, + [SMALL_STATE(1745)] = 5902, + [SMALL_STATE(1746)] = 5981, + [SMALL_STATE(1747)] = 6060, + [SMALL_STATE(1748)] = 6135, + [SMALL_STATE(1749)] = 6210, + [SMALL_STATE(1750)] = 6283, + [SMALL_STATE(1751)] = 6362, + [SMALL_STATE(1752)] = 6437, + [SMALL_STATE(1753)] = 6518, + [SMALL_STATE(1754)] = 6591, + [SMALL_STATE(1755)] = 6664, + [SMALL_STATE(1756)] = 6737, + [SMALL_STATE(1757)] = 6810, + [SMALL_STATE(1758)] = 6891, + [SMALL_STATE(1759)] = 6970, + [SMALL_STATE(1760)] = 7043, + [SMALL_STATE(1761)] = 7116, + [SMALL_STATE(1762)] = 7189, + [SMALL_STATE(1763)] = 7262, + [SMALL_STATE(1764)] = 7341, + [SMALL_STATE(1765)] = 7414, + [SMALL_STATE(1766)] = 7517, + [SMALL_STATE(1767)] = 7590, + [SMALL_STATE(1768)] = 7663, + [SMALL_STATE(1769)] = 7742, + [SMALL_STATE(1770)] = 7815, + [SMALL_STATE(1771)] = 7888, + [SMALL_STATE(1772)] = 7961, + [SMALL_STATE(1773)] = 8040, + [SMALL_STATE(1774)] = 8113, + [SMALL_STATE(1775)] = 8192, + [SMALL_STATE(1776)] = 8265, + [SMALL_STATE(1777)] = 8338, + [SMALL_STATE(1778)] = 8417, + [SMALL_STATE(1779)] = 8496, + [SMALL_STATE(1780)] = 8577, + [SMALL_STATE(1781)] = 8650, + [SMALL_STATE(1782)] = 8723, + [SMALL_STATE(1783)] = 8802, + [SMALL_STATE(1784)] = 8883, + [SMALL_STATE(1785)] = 8956, + [SMALL_STATE(1786)] = 9035, + [SMALL_STATE(1787)] = 9114, + [SMALL_STATE(1788)] = 9193, + [SMALL_STATE(1789)] = 9274, + [SMALL_STATE(1790)] = 9347, + [SMALL_STATE(1791)] = 9420, + [SMALL_STATE(1792)] = 9499, + [SMALL_STATE(1793)] = 9572, + [SMALL_STATE(1794)] = 9645, + [SMALL_STATE(1795)] = 9718, + [SMALL_STATE(1796)] = 9797, + [SMALL_STATE(1797)] = 9870, + [SMALL_STATE(1798)] = 9943, + [SMALL_STATE(1799)] = 10016, + [SMALL_STATE(1800)] = 10089, + [SMALL_STATE(1801)] = 10162, + [SMALL_STATE(1802)] = 10235, + [SMALL_STATE(1803)] = 10314, + [SMALL_STATE(1804)] = 10387, + [SMALL_STATE(1805)] = 10460, + [SMALL_STATE(1806)] = 10533, + [SMALL_STATE(1807)] = 10612, + [SMALL_STATE(1808)] = 10685, + [SMALL_STATE(1809)] = 10758, + [SMALL_STATE(1810)] = 10831, + [SMALL_STATE(1811)] = 10904, + [SMALL_STATE(1812)] = 10977, + [SMALL_STATE(1813)] = 11050, + [SMALL_STATE(1814)] = 11123, + [SMALL_STATE(1815)] = 11196, + [SMALL_STATE(1816)] = 11269, + [SMALL_STATE(1817)] = 11342, + [SMALL_STATE(1818)] = 11415, + [SMALL_STATE(1819)] = 11488, + [SMALL_STATE(1820)] = 11561, + [SMALL_STATE(1821)] = 11638, + [SMALL_STATE(1822)] = 11711, + [SMALL_STATE(1823)] = 11784, + [SMALL_STATE(1824)] = 11857, + [SMALL_STATE(1825)] = 11930, + [SMALL_STATE(1826)] = 12003, + [SMALL_STATE(1827)] = 12076, + [SMALL_STATE(1828)] = 12149, + [SMALL_STATE(1829)] = 12222, + [SMALL_STATE(1830)] = 12295, + [SMALL_STATE(1831)] = 12374, + [SMALL_STATE(1832)] = 12447, + [SMALL_STATE(1833)] = 12520, + [SMALL_STATE(1834)] = 12593, + [SMALL_STATE(1835)] = 12666, + [SMALL_STATE(1836)] = 12739, + [SMALL_STATE(1837)] = 12812, + [SMALL_STATE(1838)] = 12885, + [SMALL_STATE(1839)] = 12962, + [SMALL_STATE(1840)] = 13035, + [SMALL_STATE(1841)] = 13114, + [SMALL_STATE(1842)] = 13189, + [SMALL_STATE(1843)] = 13262, + [SMALL_STATE(1844)] = 13335, + [SMALL_STATE(1845)] = 13438, + [SMALL_STATE(1846)] = 13511, + [SMALL_STATE(1847)] = 13584, + [SMALL_STATE(1848)] = 13657, + [SMALL_STATE(1849)] = 13736, + [SMALL_STATE(1850)] = 13815, + [SMALL_STATE(1851)] = 13898, + [SMALL_STATE(1852)] = 13977, + [SMALL_STATE(1853)] = 14054, + [SMALL_STATE(1854)] = 14129, + [SMALL_STATE(1855)] = 14202, + [SMALL_STATE(1856)] = 14275, + [SMALL_STATE(1857)] = 14354, + [SMALL_STATE(1858)] = 14427, + [SMALL_STATE(1859)] = 14500, + [SMALL_STATE(1860)] = 14573, + [SMALL_STATE(1861)] = 14646, + [SMALL_STATE(1862)] = 14719, + [SMALL_STATE(1863)] = 14792, + [SMALL_STATE(1864)] = 14865, + [SMALL_STATE(1865)] = 14938, + [SMALL_STATE(1866)] = 15011, + [SMALL_STATE(1867)] = 15084, + [SMALL_STATE(1868)] = 15163, + [SMALL_STATE(1869)] = 15236, + [SMALL_STATE(1870)] = 15309, + [SMALL_STATE(1871)] = 15388, + [SMALL_STATE(1872)] = 15461, + [SMALL_STATE(1873)] = 15564, + [SMALL_STATE(1874)] = 15637, + [SMALL_STATE(1875)] = 15718, + [SMALL_STATE(1876)] = 15791, + [SMALL_STATE(1877)] = 15863, + [SMALL_STATE(1878)] = 15939, + [SMALL_STATE(1879)] = 16011, + [SMALL_STATE(1880)] = 16083, + [SMALL_STATE(1881)] = 16155, + [SMALL_STATE(1882)] = 16227, + [SMALL_STATE(1883)] = 16303, + [SMALL_STATE(1884)] = 16379, + [SMALL_STATE(1885)] = 16451, + [SMALL_STATE(1886)] = 16523, + [SMALL_STATE(1887)] = 16595, + [SMALL_STATE(1888)] = 16667, + [SMALL_STATE(1889)] = 16739, + [SMALL_STATE(1890)] = 16811, + [SMALL_STATE(1891)] = 16883, + [SMALL_STATE(1892)] = 17025, + [SMALL_STATE(1893)] = 17097, + [SMALL_STATE(1894)] = 17169, + [SMALL_STATE(1895)] = 17241, + [SMALL_STATE(1896)] = 17313, + [SMALL_STATE(1897)] = 17385, + [SMALL_STATE(1898)] = 17457, + [SMALL_STATE(1899)] = 17529, + [SMALL_STATE(1900)] = 17601, + [SMALL_STATE(1901)] = 17673, + [SMALL_STATE(1902)] = 17745, + [SMALL_STATE(1903)] = 17817, + [SMALL_STATE(1904)] = 17889, + [SMALL_STATE(1905)] = 17961, + [SMALL_STATE(1906)] = 18037, + [SMALL_STATE(1907)] = 18109, + [SMALL_STATE(1908)] = 18181, + [SMALL_STATE(1909)] = 18253, + [SMALL_STATE(1910)] = 18325, + [SMALL_STATE(1911)] = 18397, + [SMALL_STATE(1912)] = 18473, + [SMALL_STATE(1913)] = 18545, + [SMALL_STATE(1914)] = 18617, + [SMALL_STATE(1915)] = 18693, + [SMALL_STATE(1916)] = 18765, + [SMALL_STATE(1917)] = 18837, + [SMALL_STATE(1918)] = 18909, + [SMALL_STATE(1919)] = 18981, + [SMALL_STATE(1920)] = 19053, + [SMALL_STATE(1921)] = 19195, + [SMALL_STATE(1922)] = 19267, + [SMALL_STATE(1923)] = 19343, + [SMALL_STATE(1924)] = 19419, + [SMALL_STATE(1925)] = 19491, + [SMALL_STATE(1926)] = 19563, + [SMALL_STATE(1927)] = 19635, + [SMALL_STATE(1928)] = 19707, + [SMALL_STATE(1929)] = 19779, + [SMALL_STATE(1930)] = 19859, + [SMALL_STATE(1931)] = 19931, + [SMALL_STATE(1932)] = 20003, + [SMALL_STATE(1933)] = 20075, + [SMALL_STATE(1934)] = 20147, + [SMALL_STATE(1935)] = 20219, + [SMALL_STATE(1936)] = 20291, + [SMALL_STATE(1937)] = 20363, + [SMALL_STATE(1938)] = 20435, + [SMALL_STATE(1939)] = 20507, + [SMALL_STATE(1940)] = 20583, + [SMALL_STATE(1941)] = 20655, + [SMALL_STATE(1942)] = 20731, + [SMALL_STATE(1943)] = 20803, + [SMALL_STATE(1944)] = 20875, + [SMALL_STATE(1945)] = 20947, + [SMALL_STATE(1946)] = 21019, + [SMALL_STATE(1947)] = 21091, + [SMALL_STATE(1948)] = 21163, + [SMALL_STATE(1949)] = 21235, + [SMALL_STATE(1950)] = 21307, + [SMALL_STATE(1951)] = 21383, + [SMALL_STATE(1952)] = 21455, + [SMALL_STATE(1953)] = 21529, + [SMALL_STATE(1954)] = 21601, + [SMALL_STATE(1955)] = 21673, + [SMALL_STATE(1956)] = 21745, + [SMALL_STATE(1957)] = 21817, + [SMALL_STATE(1958)] = 21889, + [SMALL_STATE(1959)] = 22031, + [SMALL_STATE(1960)] = 22107, + [SMALL_STATE(1961)] = 22183, + [SMALL_STATE(1962)] = 22255, + [SMALL_STATE(1963)] = 22327, + [SMALL_STATE(1964)] = 22399, + [SMALL_STATE(1965)] = 22471, + [SMALL_STATE(1966)] = 22543, + [SMALL_STATE(1967)] = 22615, + [SMALL_STATE(1968)] = 22687, + [SMALL_STATE(1969)] = 22763, + [SMALL_STATE(1970)] = 22835, + [SMALL_STATE(1971)] = 22907, + [SMALL_STATE(1972)] = 22979, + [SMALL_STATE(1973)] = 23051, + [SMALL_STATE(1974)] = 23125, + [SMALL_STATE(1975)] = 23197, + [SMALL_STATE(1976)] = 23269, + [SMALL_STATE(1977)] = 23345, + [SMALL_STATE(1978)] = 23417, + [SMALL_STATE(1979)] = 23489, + [SMALL_STATE(1980)] = 23561, + [SMALL_STATE(1981)] = 23633, + [SMALL_STATE(1982)] = 23705, + [SMALL_STATE(1983)] = 23777, + [SMALL_STATE(1984)] = 23849, + [SMALL_STATE(1985)] = 23921, + [SMALL_STATE(1986)] = 23993, + [SMALL_STATE(1987)] = 24065, + [SMALL_STATE(1988)] = 24137, + [SMALL_STATE(1989)] = 24209, + [SMALL_STATE(1990)] = 24281, + [SMALL_STATE(1991)] = 24353, + [SMALL_STATE(1992)] = 24425, + [SMALL_STATE(1993)] = 24497, + [SMALL_STATE(1994)] = 24569, + [SMALL_STATE(1995)] = 24641, + [SMALL_STATE(1996)] = 24717, + [SMALL_STATE(1997)] = 24789, + [SMALL_STATE(1998)] = 24861, + [SMALL_STATE(1999)] = 24937, + [SMALL_STATE(2000)] = 25009, + [SMALL_STATE(2001)] = 25081, + [SMALL_STATE(2002)] = 25153, + [SMALL_STATE(2003)] = 25225, + [SMALL_STATE(2004)] = 25297, + [SMALL_STATE(2005)] = 25369, + [SMALL_STATE(2006)] = 25441, + [SMALL_STATE(2007)] = 25513, + [SMALL_STATE(2008)] = 25585, + [SMALL_STATE(2009)] = 25657, + [SMALL_STATE(2010)] = 25729, + [SMALL_STATE(2011)] = 25801, + [SMALL_STATE(2012)] = 25873, + [SMALL_STATE(2013)] = 25945, + [SMALL_STATE(2014)] = 26017, + [SMALL_STATE(2015)] = 26089, + [SMALL_STATE(2016)] = 26161, + [SMALL_STATE(2017)] = 26233, + [SMALL_STATE(2018)] = 26309, + [SMALL_STATE(2019)] = 26381, + [SMALL_STATE(2020)] = 26523, + [SMALL_STATE(2021)] = 26665, + [SMALL_STATE(2022)] = 26807, + [SMALL_STATE(2023)] = 26879, + [SMALL_STATE(2024)] = 26952, + [SMALL_STATE(2025)] = 27025, + [SMALL_STATE(2026)] = 27098, + [SMALL_STATE(2027)] = 27171, + [SMALL_STATE(2028)] = 27244, + [SMALL_STATE(2029)] = 27317, + [SMALL_STATE(2030)] = 27450, + [SMALL_STATE(2031)] = 27523, + [SMALL_STATE(2032)] = 27596, + [SMALL_STATE(2033)] = 27669, + [SMALL_STATE(2034)] = 27742, + [SMALL_STATE(2035)] = 27815, + [SMALL_STATE(2036)] = 27888, + [SMALL_STATE(2037)] = 27961, + [SMALL_STATE(2038)] = 28034, + [SMALL_STATE(2039)] = 28107, + [SMALL_STATE(2040)] = 28180, + [SMALL_STATE(2041)] = 28253, + [SMALL_STATE(2042)] = 28326, + [SMALL_STATE(2043)] = 28401, + [SMALL_STATE(2044)] = 28476, + [SMALL_STATE(2045)] = 28549, + [SMALL_STATE(2046)] = 28620, + [SMALL_STATE(2047)] = 28693, + [SMALL_STATE(2048)] = 28766, + [SMALL_STATE(2049)] = 28839, + [SMALL_STATE(2050)] = 28912, + [SMALL_STATE(2051)] = 28985, + [SMALL_STATE(2052)] = 29058, + [SMALL_STATE(2053)] = 29131, + [SMALL_STATE(2054)] = 29204, + [SMALL_STATE(2055)] = 29277, + [SMALL_STATE(2056)] = 29350, + [SMALL_STATE(2057)] = 29425, + [SMALL_STATE(2058)] = 29498, + [SMALL_STATE(2059)] = 29571, + [SMALL_STATE(2060)] = 29646, + [SMALL_STATE(2061)] = 29719, + [SMALL_STATE(2062)] = 29792, + [SMALL_STATE(2063)] = 29925, + [SMALL_STATE(2064)] = 29998, + [SMALL_STATE(2065)] = 30071, + [SMALL_STATE(2066)] = 30144, + [SMALL_STATE(2067)] = 30217, + [SMALL_STATE(2068)] = 30290, + [SMALL_STATE(2069)] = 30363, + [SMALL_STATE(2070)] = 30436, + [SMALL_STATE(2071)] = 30509, + [SMALL_STATE(2072)] = 30580, + [SMALL_STATE(2073)] = 30653, + [SMALL_STATE(2074)] = 30726, + [SMALL_STATE(2075)] = 30799, + [SMALL_STATE(2076)] = 30872, + [SMALL_STATE(2077)] = 30945, + [SMALL_STATE(2078)] = 31018, + [SMALL_STATE(2079)] = 31091, + [SMALL_STATE(2080)] = 31166, + [SMALL_STATE(2081)] = 31239, + [SMALL_STATE(2082)] = 31312, + [SMALL_STATE(2083)] = 31385, + [SMALL_STATE(2084)] = 31458, + [SMALL_STATE(2085)] = 31533, + [SMALL_STATE(2086)] = 31606, + [SMALL_STATE(2087)] = 31677, + [SMALL_STATE(2088)] = 31750, + [SMALL_STATE(2089)] = 31823, + [SMALL_STATE(2090)] = 31896, + [SMALL_STATE(2091)] = 31969, + [SMALL_STATE(2092)] = 32042, + [SMALL_STATE(2093)] = 32117, + [SMALL_STATE(2094)] = 32188, + [SMALL_STATE(2095)] = 32263, + [SMALL_STATE(2096)] = 32338, + [SMALL_STATE(2097)] = 32413, + [SMALL_STATE(2098)] = 32486, + [SMALL_STATE(2099)] = 32559, + [SMALL_STATE(2100)] = 32632, + [SMALL_STATE(2101)] = 32705, + [SMALL_STATE(2102)] = 32778, + [SMALL_STATE(2103)] = 32911, + [SMALL_STATE(2104)] = 32986, + [SMALL_STATE(2105)] = 33059, + [SMALL_STATE(2106)] = 33132, + [SMALL_STATE(2107)] = 33205, + [SMALL_STATE(2108)] = 33278, + [SMALL_STATE(2109)] = 33351, + [SMALL_STATE(2110)] = 33426, + [SMALL_STATE(2111)] = 33499, + [SMALL_STATE(2112)] = 33572, + [SMALL_STATE(2113)] = 33705, + [SMALL_STATE(2114)] = 33844, + [SMALL_STATE(2115)] = 33983, + [SMALL_STATE(2116)] = 34056, + [SMALL_STATE(2117)] = 34131, + [SMALL_STATE(2118)] = 34206, + [SMALL_STATE(2119)] = 34281, + [SMALL_STATE(2120)] = 34356, + [SMALL_STATE(2121)] = 34431, + [SMALL_STATE(2122)] = 34506, + [SMALL_STATE(2123)] = 34579, + [SMALL_STATE(2124)] = 34652, + [SMALL_STATE(2125)] = 34725, + [SMALL_STATE(2126)] = 34798, + [SMALL_STATE(2127)] = 34871, + [SMALL_STATE(2128)] = 34946, + [SMALL_STATE(2129)] = 35021, + [SMALL_STATE(2130)] = 35094, + [SMALL_STATE(2131)] = 35167, + [SMALL_STATE(2132)] = 35240, + [SMALL_STATE(2133)] = 35315, + [SMALL_STATE(2134)] = 35388, + [SMALL_STATE(2135)] = 35463, + [SMALL_STATE(2136)] = 35536, + [SMALL_STATE(2137)] = 35675, + [SMALL_STATE(2138)] = 35748, + [SMALL_STATE(2139)] = 35887, + [SMALL_STATE(2140)] = 35960, + [SMALL_STATE(2141)] = 36033, + [SMALL_STATE(2142)] = 36106, + [SMALL_STATE(2143)] = 36181, + [SMALL_STATE(2144)] = 36254, + [SMALL_STATE(2145)] = 36327, + [SMALL_STATE(2146)] = 36400, + [SMALL_STATE(2147)] = 36473, + [SMALL_STATE(2148)] = 36546, + [SMALL_STATE(2149)] = 36619, + [SMALL_STATE(2150)] = 36692, + [SMALL_STATE(2151)] = 36765, + [SMALL_STATE(2152)] = 36838, + [SMALL_STATE(2153)] = 36911, + [SMALL_STATE(2154)] = 36984, + [SMALL_STATE(2155)] = 37057, + [SMALL_STATE(2156)] = 37132, + [SMALL_STATE(2157)] = 37205, + [SMALL_STATE(2158)] = 37280, + [SMALL_STATE(2159)] = 37355, + [SMALL_STATE(2160)] = 37428, + [SMALL_STATE(2161)] = 37501, + [SMALL_STATE(2162)] = 37574, + [SMALL_STATE(2163)] = 37647, + [SMALL_STATE(2164)] = 37718, + [SMALL_STATE(2165)] = 37791, + [SMALL_STATE(2166)] = 37864, + [SMALL_STATE(2167)] = 37937, + [SMALL_STATE(2168)] = 38010, + [SMALL_STATE(2169)] = 38083, + [SMALL_STATE(2170)] = 38156, + [SMALL_STATE(2171)] = 38229, + [SMALL_STATE(2172)] = 38302, + [SMALL_STATE(2173)] = 38377, + [SMALL_STATE(2174)] = 38450, + [SMALL_STATE(2175)] = 38523, + [SMALL_STATE(2176)] = 38596, + [SMALL_STATE(2177)] = 38682, + [SMALL_STATE(2178)] = 38818, + [SMALL_STATE(2179)] = 38902, + [SMALL_STATE(2180)] = 38988, + [SMALL_STATE(2181)] = 39066, + [SMALL_STATE(2182)] = 39146, + [SMALL_STATE(2183)] = 39234, + [SMALL_STATE(2184)] = 39324, + [SMALL_STATE(2185)] = 39398, + [SMALL_STATE(2186)] = 39474, + [SMALL_STATE(2187)] = 39572, + [SMALL_STATE(2188)] = 39672, + [SMALL_STATE(2189)] = 39772, + [SMALL_STATE(2190)] = 39874, + [SMALL_STATE(2191)] = 39976, + [SMALL_STATE(2192)] = 40080, + [SMALL_STATE(2193)] = 40170, + [SMALL_STATE(2194)] = 40262, + [SMALL_STATE(2195)] = 40332, + [SMALL_STATE(2196)] = 40402, + [SMALL_STATE(2197)] = 40484, + [SMALL_STATE(2198)] = 40568, + [SMALL_STATE(2199)] = 40660, + [SMALL_STATE(2200)] = 40754, + [SMALL_STATE(2201)] = 40848, + [SMALL_STATE(2202)] = 40944, + [SMALL_STATE(2203)] = 41040, + [SMALL_STATE(2204)] = 41138, + [SMALL_STATE(2205)] = 41224, + [SMALL_STATE(2206)] = 41304, + [SMALL_STATE(2207)] = 41376, + [SMALL_STATE(2208)] = 41466, + [SMALL_STATE(2209)] = 41542, + [SMALL_STATE(2210)] = 41642, + [SMALL_STATE(2211)] = 41744, + [SMALL_STATE(2212)] = 41816, + [SMALL_STATE(2213)] = 41920, + [SMALL_STATE(2214)] = 42012, + [SMALL_STATE(2215)] = 42096, + [SMALL_STATE(2216)] = 42190, + [SMALL_STATE(2217)] = 42286, + [SMALL_STATE(2218)] = 42384, + [SMALL_STATE(2219)] = 42520, + [SMALL_STATE(2220)] = 42590, + [SMALL_STATE(2221)] = 42676, + [SMALL_STATE(2222)] = 42748, + [SMALL_STATE(2223)] = 42828, + [SMALL_STATE(2224)] = 42912, + [SMALL_STATE(2225)] = 42990, + [SMALL_STATE(2226)] = 43078, + [SMALL_STATE(2227)] = 43152, + [SMALL_STATE(2228)] = 43242, + [SMALL_STATE(2229)] = 43340, + [SMALL_STATE(2230)] = 43440, + [SMALL_STATE(2231)] = 43530, + [SMALL_STATE(2232)] = 43606, + [SMALL_STATE(2233)] = 43688, + [SMALL_STATE(2234)] = 43780, + [SMALL_STATE(2235)] = 43880, + [SMALL_STATE(2236)] = 43974, + [SMALL_STATE(2237)] = 44070, + [SMALL_STATE(2238)] = 44154, + [SMALL_STATE(2239)] = 44240, + [SMALL_STATE(2240)] = 44342, + [SMALL_STATE(2241)] = 44420, + [SMALL_STATE(2242)] = 44500, + [SMALL_STATE(2243)] = 44604, + [SMALL_STATE(2244)] = 44692, + [SMALL_STATE(2245)] = 44782, + [SMALL_STATE(2246)] = 44856, + [SMALL_STATE(2247)] = 44948, + [SMALL_STATE(2248)] = 45024, + [SMALL_STATE(2249)] = 45122, + [SMALL_STATE(2250)] = 45222, + [SMALL_STATE(2251)] = 45322, + [SMALL_STATE(2252)] = 45424, + [SMALL_STATE(2253)] = 45560, + [SMALL_STATE(2254)] = 45644, + [SMALL_STATE(2255)] = 45746, + [SMALL_STATE(2256)] = 45850, + [SMALL_STATE(2257)] = 45940, + [SMALL_STATE(2258)] = 46034, + [SMALL_STATE(2259)] = 46126, + [SMALL_STATE(2260)] = 46222, + [SMALL_STATE(2261)] = 46298, + [SMALL_STATE(2262)] = 46380, + [SMALL_STATE(2263)] = 46478, + [SMALL_STATE(2264)] = 46562, + [SMALL_STATE(2265)] = 46654, + [SMALL_STATE(2266)] = 46748, + [SMALL_STATE(2267)] = 46842, + [SMALL_STATE(2268)] = 46938, + [SMALL_STATE(2269)] = 47034, + [SMALL_STATE(2270)] = 47132, + [SMALL_STATE(2271)] = 47214, + [SMALL_STATE(2272)] = 47290, + [SMALL_STATE(2273)] = 47362, + [SMALL_STATE(2274)] = 47458, + [SMALL_STATE(2275)] = 47556, + [SMALL_STATE(2276)] = 47656, + [SMALL_STATE(2277)] = 47744, + [SMALL_STATE(2278)] = 47824, + [SMALL_STATE(2279)] = 47914, + [SMALL_STATE(2280)] = 48006, + [SMALL_STATE(2281)] = 48100, + [SMALL_STATE(2282)] = 48236, + [SMALL_STATE(2283)] = 48372, + [SMALL_STATE(2284)] = 48456, + [SMALL_STATE(2285)] = 48534, + [SMALL_STATE(2286)] = 48622, + [SMALL_STATE(2287)] = 48696, + [SMALL_STATE(2288)] = 48794, + [SMALL_STATE(2289)] = 48894, + [SMALL_STATE(2290)] = 48996, + [SMALL_STATE(2291)] = 49086, + [SMALL_STATE(2292)] = 49168, + [SMALL_STATE(2293)] = 49260, + [SMALL_STATE(2294)] = 49354, + [SMALL_STATE(2295)] = 49450, + [SMALL_STATE(2296)] = 49586, + [SMALL_STATE(2297)] = 49722, + [SMALL_STATE(2298)] = 49794, + [SMALL_STATE(2299)] = 49930, + [SMALL_STATE(2300)] = 50066, + [SMALL_STATE(2301)] = 50202, + [SMALL_STATE(2302)] = 50304, + [SMALL_STATE(2303)] = 50373, + [SMALL_STATE(2304)] = 50442, + [SMALL_STATE(2305)] = 50511, + [SMALL_STATE(2306)] = 50580, + [SMALL_STATE(2307)] = 50649, + [SMALL_STATE(2308)] = 50746, + [SMALL_STATE(2309)] = 50815, + [SMALL_STATE(2310)] = 50944, + [SMALL_STATE(2311)] = 51013, + [SMALL_STATE(2312)] = 51112, + [SMALL_STATE(2313)] = 51181, + [SMALL_STATE(2314)] = 51250, + [SMALL_STATE(2315)] = 51319, + [SMALL_STATE(2316)] = 51406, + [SMALL_STATE(2317)] = 51475, + [SMALL_STATE(2318)] = 51544, + [SMALL_STATE(2319)] = 51613, + [SMALL_STATE(2320)] = 51682, + [SMALL_STATE(2321)] = 51761, + [SMALL_STATE(2322)] = 51830, + [SMALL_STATE(2323)] = 51899, + [SMALL_STATE(2324)] = 51968, + [SMALL_STATE(2325)] = 52057, + [SMALL_STATE(2326)] = 52126, + [SMALL_STATE(2327)] = 52195, + [SMALL_STATE(2328)] = 52276, + [SMALL_STATE(2329)] = 52349, + [SMALL_STATE(2330)] = 52440, + [SMALL_STATE(2331)] = 52509, + [SMALL_STATE(2332)] = 52596, + [SMALL_STATE(2333)] = 52665, + [SMALL_STATE(2334)] = 52734, + [SMALL_STATE(2335)] = 52803, + [SMALL_STATE(2336)] = 52896, + [SMALL_STATE(2337)] = 52973, + [SMALL_STATE(2338)] = 53072, + [SMALL_STATE(2339)] = 53141, + [SMALL_STATE(2340)] = 53210, + [SMALL_STATE(2341)] = 53279, + [SMALL_STATE(2342)] = 53408, + [SMALL_STATE(2343)] = 53477, + [SMALL_STATE(2344)] = 53552, + [SMALL_STATE(2345)] = 53621, + [SMALL_STATE(2346)] = 53690, + [SMALL_STATE(2347)] = 53789, + [SMALL_STATE(2348)] = 53858, + [SMALL_STATE(2349)] = 53927, + [SMALL_STATE(2350)] = 53996, + [SMALL_STATE(2351)] = 54065, + [SMALL_STATE(2352)] = 54134, + [SMALL_STATE(2353)] = 54203, + [SMALL_STATE(2354)] = 54272, + [SMALL_STATE(2355)] = 54401, + [SMALL_STATE(2356)] = 54470, + [SMALL_STATE(2357)] = 54555, + [SMALL_STATE(2358)] = 54624, + [SMALL_STATE(2359)] = 54693, + [SMALL_STATE(2360)] = 54762, + [SMALL_STATE(2361)] = 54831, + [SMALL_STATE(2362)] = 54900, + [SMALL_STATE(2363)] = 54969, + [SMALL_STATE(2364)] = 55038, + [SMALL_STATE(2365)] = 55115, + [SMALL_STATE(2366)] = 55184, + [SMALL_STATE(2367)] = 55253, + [SMALL_STATE(2368)] = 55324, + [SMALL_STATE(2369)] = 55393, + [SMALL_STATE(2370)] = 55492, + [SMALL_STATE(2371)] = 55621, + [SMALL_STATE(2372)] = 55698, + [SMALL_STATE(2373)] = 55767, + [SMALL_STATE(2374)] = 55836, + [SMALL_STATE(2375)] = 55931, + [SMALL_STATE(2376)] = 56000, + [SMALL_STATE(2377)] = 56069, + [SMALL_STATE(2378)] = 56138, + [SMALL_STATE(2379)] = 56207, + [SMALL_STATE(2380)] = 56276, + [SMALL_STATE(2381)] = 56345, + [SMALL_STATE(2382)] = 56414, + [SMALL_STATE(2383)] = 56483, + [SMALL_STATE(2384)] = 56552, + [SMALL_STATE(2385)] = 56651, + [SMALL_STATE(2386)] = 56720, + [SMALL_STATE(2387)] = 56789, + [SMALL_STATE(2388)] = 56858, + [SMALL_STATE(2389)] = 56927, + [SMALL_STATE(2390)] = 56996, + [SMALL_STATE(2391)] = 57065, + [SMALL_STATE(2392)] = 57134, + [SMALL_STATE(2393)] = 57203, + [SMALL_STATE(2394)] = 57272, + [SMALL_STATE(2395)] = 57341, + [SMALL_STATE(2396)] = 57410, + [SMALL_STATE(2397)] = 57506, + [SMALL_STATE(2398)] = 57578, + [SMALL_STATE(2399)] = 57674, + [SMALL_STATE(2400)] = 57746, + [SMALL_STATE(2401)] = 57842, + [SMALL_STATE(2402)] = 57926, + [SMALL_STATE(2403)] = 58002, + [SMALL_STATE(2404)] = 58078, + [SMALL_STATE(2405)] = 58162, + [SMALL_STATE(2406)] = 58258, + [SMALL_STATE(2407)] = 58334, + [SMALL_STATE(2408)] = 58430, + [SMALL_STATE(2409)] = 58526, + [SMALL_STATE(2410)] = 58600, + [SMALL_STATE(2411)] = 58684, + [SMALL_STATE(2412)] = 58780, + [SMALL_STATE(2413)] = 58852, + [SMALL_STATE(2414)] = 58924, + [SMALL_STATE(2415)] = 59020, + [SMALL_STATE(2416)] = 59116, + [SMALL_STATE(2417)] = 59188, + [SMALL_STATE(2418)] = 59276, + [SMALL_STATE(2419)] = 59372, + [SMALL_STATE(2420)] = 59468, + [SMALL_STATE(2421)] = 59564, + [SMALL_STATE(2422)] = 59660, + [SMALL_STATE(2423)] = 59756, + [SMALL_STATE(2424)] = 59837, + [SMALL_STATE(2425)] = 59904, + [SMALL_STATE(2426)] = 59975, + [SMALL_STATE(2427)] = 60056, + [SMALL_STATE(2428)] = 60125, + [SMALL_STATE(2429)] = 60198, + [SMALL_STATE(2430)] = 60283, + [SMALL_STATE(2431)] = 60352, + [SMALL_STATE(2432)] = 60421, + [SMALL_STATE(2433)] = 60488, + [SMALL_STATE(2434)] = 60569, + [SMALL_STATE(2435)] = 60636, + [SMALL_STATE(2436)] = 60703, + [SMALL_STATE(2437)] = 60772, + [SMALL_STATE(2438)] = 60841, + [SMALL_STATE(2439)] = 60922, + [SMALL_STATE(2440)] = 60991, + [SMALL_STATE(2441)] = 61076, + [SMALL_STATE(2442)] = 61157, + [SMALL_STATE(2443)] = 61242, + [SMALL_STATE(2444)] = 61308, + [SMALL_STATE(2445)] = 61398, + [SMALL_STATE(2446)] = 61464, + [SMALL_STATE(2447)] = 61538, + [SMALL_STATE(2448)] = 61604, + [SMALL_STATE(2449)] = 61674, + [SMALL_STATE(2450)] = 61740, + [SMALL_STATE(2451)] = 61810, + [SMALL_STATE(2452)] = 61884, + [SMALL_STATE(2453)] = 61950, + [SMALL_STATE(2454)] = 62016, + [SMALL_STATE(2455)] = 62082, + [SMALL_STATE(2456)] = 62148, + [SMALL_STATE(2457)] = 62230, + [SMALL_STATE(2458)] = 62300, + [SMALL_STATE(2459)] = 62370, + [SMALL_STATE(2460)] = 62460, + [SMALL_STATE(2461)] = 62548, + [SMALL_STATE(2462)] = 62614, + [SMALL_STATE(2463)] = 62680, + [SMALL_STATE(2464)] = 62756, + [SMALL_STATE(2465)] = 62824, + [SMALL_STATE(2466)] = 62890, + [SMALL_STATE(2467)] = 62956, + [SMALL_STATE(2468)] = 63038, + [SMALL_STATE(2469)] = 63128, + [SMALL_STATE(2470)] = 63194, + [SMALL_STATE(2471)] = 63284, + [SMALL_STATE(2472)] = 63374, + [SMALL_STATE(2473)] = 63464, + [SMALL_STATE(2474)] = 63538, + [SMALL_STATE(2475)] = 63628, + [SMALL_STATE(2476)] = 63718, + [SMALL_STATE(2477)] = 63808, + [SMALL_STATE(2478)] = 63898, + [SMALL_STATE(2479)] = 63988, + [SMALL_STATE(2480)] = 64078, + [SMALL_STATE(2481)] = 64144, + [SMALL_STATE(2482)] = 64226, + [SMALL_STATE(2483)] = 64308, + [SMALL_STATE(2484)] = 64374, + [SMALL_STATE(2485)] = 64442, + [SMALL_STATE(2486)] = 64529, + [SMALL_STATE(2487)] = 64616, + [SMALL_STATE(2488)] = 64681, + [SMALL_STATE(2489)] = 64746, + [SMALL_STATE(2490)] = 64813, + [SMALL_STATE(2491)] = 64900, + [SMALL_STATE(2492)] = 64987, + [SMALL_STATE(2493)] = 65052, + [SMALL_STATE(2494)] = 65117, + [SMALL_STATE(2495)] = 65184, + [SMALL_STATE(2496)] = 65257, + [SMALL_STATE(2497)] = 65326, + [SMALL_STATE(2498)] = 65391, + [SMALL_STATE(2499)] = 65456, + [SMALL_STATE(2500)] = 65543, + [SMALL_STATE(2501)] = 65630, + [SMALL_STATE(2502)] = 65695, + [SMALL_STATE(2503)] = 65782, + [SMALL_STATE(2504)] = 65847, + [SMALL_STATE(2505)] = 65912, + [SMALL_STATE(2506)] = 65977, + [SMALL_STATE(2507)] = 66064, + [SMALL_STATE(2508)] = 66133, + [SMALL_STATE(2509)] = 66220, + [SMALL_STATE(2510)] = 66293, + [SMALL_STATE(2511)] = 66358, + [SMALL_STATE(2512)] = 66423, + [SMALL_STATE(2513)] = 66496, + [SMALL_STATE(2514)] = 66561, + [SMALL_STATE(2515)] = 66626, + [SMALL_STATE(2516)] = 66691, + [SMALL_STATE(2517)] = 66758, + [SMALL_STATE(2518)] = 66845, + [SMALL_STATE(2519)] = 66932, + [SMALL_STATE(2520)] = 66997, + [SMALL_STATE(2521)] = 67062, + [SMALL_STATE(2522)] = 67133, + [SMALL_STATE(2523)] = 67198, + [SMALL_STATE(2524)] = 67263, + [SMALL_STATE(2525)] = 67346, + [SMALL_STATE(2526)] = 67433, + [SMALL_STATE(2527)] = 67520, + [SMALL_STATE(2528)] = 67585, + [SMALL_STATE(2529)] = 67672, + [SMALL_STATE(2530)] = 67739, + [SMALL_STATE(2531)] = 67826, + [SMALL_STATE(2532)] = 67913, + [SMALL_STATE(2533)] = 68000, + [SMALL_STATE(2534)] = 68087, + [SMALL_STATE(2535)] = 68174, + [SMALL_STATE(2536)] = 68261, + [SMALL_STATE(2537)] = 68326, + [SMALL_STATE(2538)] = 68391, + [SMALL_STATE(2539)] = 68478, + [SMALL_STATE(2540)] = 68543, + [SMALL_STATE(2541)] = 68630, + [SMALL_STATE(2542)] = 68717, + [SMALL_STATE(2543)] = 68804, + [SMALL_STATE(2544)] = 68891, + [SMALL_STATE(2545)] = 68956, + [SMALL_STATE(2546)] = 69043, + [SMALL_STATE(2547)] = 69130, + [SMALL_STATE(2548)] = 69217, + [SMALL_STATE(2549)] = 69304, + [SMALL_STATE(2550)] = 69391, + [SMALL_STATE(2551)] = 69478, + [SMALL_STATE(2552)] = 69543, + [SMALL_STATE(2553)] = 69615, + [SMALL_STATE(2554)] = 69679, + [SMALL_STATE(2555)] = 69747, + [SMALL_STATE(2556)] = 69811, + [SMALL_STATE(2557)] = 69933, + [SMALL_STATE(2558)] = 69997, + [SMALL_STATE(2559)] = 70061, + [SMALL_STATE(2560)] = 70125, + [SMALL_STATE(2561)] = 70189, + [SMALL_STATE(2562)] = 70261, + [SMALL_STATE(2563)] = 70327, + [SMALL_STATE(2564)] = 70391, + [SMALL_STATE(2565)] = 70455, + [SMALL_STATE(2566)] = 70527, + [SMALL_STATE(2567)] = 70597, + [SMALL_STATE(2568)] = 70661, + [SMALL_STATE(2569)] = 70725, + [SMALL_STATE(2570)] = 70797, + [SMALL_STATE(2571)] = 70863, + [SMALL_STATE(2572)] = 70935, + [SMALL_STATE(2573)] = 70999, + [SMALL_STATE(2574)] = 71067, + [SMALL_STATE(2575)] = 71131, + [SMALL_STATE(2576)] = 71249, + [SMALL_STATE(2577)] = 71365, + [SMALL_STATE(2578)] = 71429, + [SMALL_STATE(2579)] = 71493, + [SMALL_STATE(2580)] = 71559, + [SMALL_STATE(2581)] = 71623, + [SMALL_STATE(2582)] = 71693, + [SMALL_STATE(2583)] = 71769, + [SMALL_STATE(2584)] = 71849, + [SMALL_STATE(2585)] = 71921, + [SMALL_STATE(2586)] = 71991, + [SMALL_STATE(2587)] = 72063, + [SMALL_STATE(2588)] = 72127, + [SMALL_STATE(2589)] = 72197, + [SMALL_STATE(2590)] = 72261, + [SMALL_STATE(2591)] = 72333, + [SMALL_STATE(2592)] = 72401, + [SMALL_STATE(2593)] = 72481, + [SMALL_STATE(2594)] = 72545, + [SMALL_STATE(2595)] = 72609, + [SMALL_STATE(2596)] = 72681, + [SMALL_STATE(2597)] = 72751, + [SMALL_STATE(2598)] = 72815, + [SMALL_STATE(2599)] = 72879, + [SMALL_STATE(2600)] = 72945, + [SMALL_STATE(2601)] = 73009, + [SMALL_STATE(2602)] = 73073, + [SMALL_STATE(2603)] = 73141, + [SMALL_STATE(2604)] = 73205, + [SMALL_STATE(2605)] = 73321, + [SMALL_STATE(2606)] = 73439, + [SMALL_STATE(2607)] = 73513, + [SMALL_STATE(2608)] = 73581, + [SMALL_STATE(2609)] = 73645, + [SMALL_STATE(2610)] = 73717, + [SMALL_STATE(2611)] = 73789, + [SMALL_STATE(2612)] = 73861, + [SMALL_STATE(2613)] = 73943, + [SMALL_STATE(2614)] = 74007, + [SMALL_STATE(2615)] = 74071, + [SMALL_STATE(2616)] = 74135, + [SMALL_STATE(2617)] = 74207, + [SMALL_STATE(2618)] = 74279, + [SMALL_STATE(2619)] = 74401, + [SMALL_STATE(2620)] = 74473, + [SMALL_STATE(2621)] = 74537, + [SMALL_STATE(2622)] = 74601, + [SMALL_STATE(2623)] = 74665, + [SMALL_STATE(2624)] = 74731, + [SMALL_STATE(2625)] = 74795, + [SMALL_STATE(2626)] = 74863, + [SMALL_STATE(2627)] = 74927, + [SMALL_STATE(2628)] = 74991, + [SMALL_STATE(2629)] = 75063, + [SMALL_STATE(2630)] = 75138, + [SMALL_STATE(2631)] = 75205, + [SMALL_STATE(2632)] = 75318, + [SMALL_STATE(2633)] = 75383, + [SMALL_STATE(2634)] = 75450, + [SMALL_STATE(2635)] = 75521, + [SMALL_STATE(2636)] = 75584, + [SMALL_STATE(2637)] = 75647, + [SMALL_STATE(2638)] = 75726, + [SMALL_STATE(2639)] = 75789, + [SMALL_STATE(2640)] = 75852, + [SMALL_STATE(2641)] = 75965, + [SMALL_STATE(2642)] = 76032, + [SMALL_STATE(2643)] = 76095, + [SMALL_STATE(2644)] = 76208, + [SMALL_STATE(2645)] = 76323, + [SMALL_STATE(2646)] = 76436, + [SMALL_STATE(2647)] = 76551, + [SMALL_STATE(2648)] = 76622, + [SMALL_STATE(2649)] = 76685, + [SMALL_STATE(2650)] = 76756, + [SMALL_STATE(2651)] = 76819, + [SMALL_STATE(2652)] = 76892, + [SMALL_STATE(2653)] = 76961, + [SMALL_STATE(2654)] = 77024, + [SMALL_STATE(2655)] = 77095, + [SMALL_STATE(2656)] = 77158, + [SMALL_STATE(2657)] = 77225, + [SMALL_STATE(2658)] = 77290, + [SMALL_STATE(2659)] = 77355, + [SMALL_STATE(2660)] = 77418, + [SMALL_STATE(2661)] = 77483, + [SMALL_STATE(2662)] = 77554, + [SMALL_STATE(2663)] = 77633, + [SMALL_STATE(2664)] = 77698, + [SMALL_STATE(2665)] = 77761, + [SMALL_STATE(2666)] = 77832, + [SMALL_STATE(2667)] = 77895, + [SMALL_STATE(2668)] = 77966, + [SMALL_STATE(2669)] = 78037, + [SMALL_STATE(2670)] = 78104, + [SMALL_STATE(2671)] = 78171, + [SMALL_STATE(2672)] = 78238, + [SMALL_STATE(2673)] = 78309, + [SMALL_STATE(2674)] = 78376, + [SMALL_STATE(2675)] = 78441, + [SMALL_STATE(2676)] = 78506, + [SMALL_STATE(2677)] = 78577, + [SMALL_STATE(2678)] = 78645, + [SMALL_STATE(2679)] = 78707, + [SMALL_STATE(2680)] = 78777, + [SMALL_STATE(2681)] = 78845, + [SMALL_STATE(2682)] = 78913, + [SMALL_STATE(2683)] = 78983, + [SMALL_STATE(2684)] = 79051, + [SMALL_STATE(2685)] = 79113, + [SMALL_STATE(2686)] = 79183, + [SMALL_STATE(2687)] = 79249, + [SMALL_STATE(2688)] = 79319, + [SMALL_STATE(2689)] = 79389, + [SMALL_STATE(2690)] = 79451, + [SMALL_STATE(2691)] = 79513, + [SMALL_STATE(2692)] = 79581, + [SMALL_STATE(2693)] = 79647, + [SMALL_STATE(2694)] = 79709, + [SMALL_STATE(2695)] = 79773, + [SMALL_STATE(2696)] = 79837, + [SMALL_STATE(2697)] = 79905, + [SMALL_STATE(2698)] = 79967, + [SMALL_STATE(2699)] = 80029, + [SMALL_STATE(2700)] = 80091, + [SMALL_STATE(2701)] = 80153, + [SMALL_STATE(2702)] = 80217, + [SMALL_STATE(2703)] = 80287, + [SMALL_STATE(2704)] = 80349, + [SMALL_STATE(2705)] = 80419, + [SMALL_STATE(2706)] = 80489, + [SMALL_STATE(2707)] = 80551, + [SMALL_STATE(2708)] = 80621, + [SMALL_STATE(2709)] = 80687, + [SMALL_STATE(2710)] = 80763, + [SMALL_STATE(2711)] = 80825, + [SMALL_STATE(2712)] = 80887, + [SMALL_STATE(2713)] = 80957, + [SMALL_STATE(2714)] = 81021, + [SMALL_STATE(2715)] = 81091, + [SMALL_STATE(2716)] = 81157, + [SMALL_STATE(2717)] = 81227, + [SMALL_STATE(2718)] = 81295, + [SMALL_STATE(2719)] = 81363, + [SMALL_STATE(2720)] = 81431, + [SMALL_STATE(2721)] = 81495, + [SMALL_STATE(2722)] = 81557, + [SMALL_STATE(2723)] = 81621, + [SMALL_STATE(2724)] = 81685, + [SMALL_STATE(2725)] = 81749, + [SMALL_STATE(2726)] = 81815, + [SMALL_STATE(2727)] = 81885, + [SMALL_STATE(2728)] = 81951, + [SMALL_STATE(2729)] = 82017, + [SMALL_STATE(2730)] = 82079, + [SMALL_STATE(2731)] = 82143, + [SMALL_STATE(2732)] = 82205, + [SMALL_STATE(2733)] = 82269, + [SMALL_STATE(2734)] = 82331, + [SMALL_STATE(2735)] = 82393, + [SMALL_STATE(2736)] = 82459, + [SMALL_STATE(2737)] = 82525, + [SMALL_STATE(2738)] = 82591, + [SMALL_STATE(2739)] = 82653, + [SMALL_STATE(2740)] = 82721, + [SMALL_STATE(2741)] = 82785, + [SMALL_STATE(2742)] = 82847, + [SMALL_STATE(2743)] = 82915, + [SMALL_STATE(2744)] = 82977, + [SMALL_STATE(2745)] = 83047, + [SMALL_STATE(2746)] = 83110, + [SMALL_STATE(2747)] = 83171, + [SMALL_STATE(2748)] = 83242, + [SMALL_STATE(2749)] = 83307, + [SMALL_STATE(2750)] = 83368, + [SMALL_STATE(2751)] = 83429, + [SMALL_STATE(2752)] = 83490, + [SMALL_STATE(2753)] = 83551, + [SMALL_STATE(2754)] = 83612, + [SMALL_STATE(2755)] = 83673, + [SMALL_STATE(2756)] = 83738, + [SMALL_STATE(2757)] = 83799, + [SMALL_STATE(2758)] = 83860, + [SMALL_STATE(2759)] = 83925, + [SMALL_STATE(2760)] = 83988, + [SMALL_STATE(2761)] = 84051, + [SMALL_STATE(2762)] = 84112, + [SMALL_STATE(2763)] = 84177, + [SMALL_STATE(2764)] = 84242, + [SMALL_STATE(2765)] = 84307, + [SMALL_STATE(2766)] = 84368, + [SMALL_STATE(2767)] = 84433, + [SMALL_STATE(2768)] = 84494, + [SMALL_STATE(2769)] = 84559, + [SMALL_STATE(2770)] = 84624, + [SMALL_STATE(2771)] = 84689, + [SMALL_STATE(2772)] = 84754, + [SMALL_STATE(2773)] = 84819, + [SMALL_STATE(2774)] = 84882, + [SMALL_STATE(2775)] = 84945, + [SMALL_STATE(2776)] = 85006, + [SMALL_STATE(2777)] = 85071, + [SMALL_STATE(2778)] = 85136, + [SMALL_STATE(2779)] = 85199, + [SMALL_STATE(2780)] = 85260, + [SMALL_STATE(2781)] = 85325, + [SMALL_STATE(2782)] = 85388, + [SMALL_STATE(2783)] = 85451, + [SMALL_STATE(2784)] = 85512, + [SMALL_STATE(2785)] = 85573, + [SMALL_STATE(2786)] = 85634, + [SMALL_STATE(2787)] = 85699, + [SMALL_STATE(2788)] = 85764, + [SMALL_STATE(2789)] = 85829, + [SMALL_STATE(2790)] = 85890, + [SMALL_STATE(2791)] = 85951, + [SMALL_STATE(2792)] = 86012, + [SMALL_STATE(2793)] = 86077, + [SMALL_STATE(2794)] = 86138, + [SMALL_STATE(2795)] = 86213, + [SMALL_STATE(2796)] = 86274, + [SMALL_STATE(2797)] = 86335, + [SMALL_STATE(2798)] = 86404, + [SMALL_STATE(2799)] = 86465, + [SMALL_STATE(2800)] = 86526, + [SMALL_STATE(2801)] = 86587, + [SMALL_STATE(2802)] = 86648, + [SMALL_STATE(2803)] = 86715, + [SMALL_STATE(2804)] = 86780, + [SMALL_STATE(2805)] = 86843, + [SMALL_STATE(2806)] = 86908, + [SMALL_STATE(2807)] = 86971, + [SMALL_STATE(2808)] = 87032, + [SMALL_STATE(2809)] = 87093, + [SMALL_STATE(2810)] = 87158, + [SMALL_STATE(2811)] = 87221, + [SMALL_STATE(2812)] = 87286, + [SMALL_STATE(2813)] = 87351, + [SMALL_STATE(2814)] = 87414, + [SMALL_STATE(2815)] = 87474, + [SMALL_STATE(2816)] = 87534, + [SMALL_STATE(2817)] = 87594, + [SMALL_STATE(2818)] = 87654, + [SMALL_STATE(2819)] = 87714, + [SMALL_STATE(2820)] = 87774, + [SMALL_STATE(2821)] = 87840, + [SMALL_STATE(2822)] = 87900, + [SMALL_STATE(2823)] = 87960, + [SMALL_STATE(2824)] = 88020, + [SMALL_STATE(2825)] = 88080, + [SMALL_STATE(2826)] = 88142, + [SMALL_STATE(2827)] = 88202, + [SMALL_STATE(2828)] = 88262, + [SMALL_STATE(2829)] = 88328, + [SMALL_STATE(2830)] = 88394, + [SMALL_STATE(2831)] = 88454, + [SMALL_STATE(2832)] = 88514, + [SMALL_STATE(2833)] = 88574, + [SMALL_STATE(2834)] = 88634, + [SMALL_STATE(2835)] = 88694, + [SMALL_STATE(2836)] = 88756, + [SMALL_STATE(2837)] = 88820, + [SMALL_STATE(2838)] = 88882, + [SMALL_STATE(2839)] = 88944, + [SMALL_STATE(2840)] = 89010, + [SMALL_STATE(2841)] = 89072, + [SMALL_STATE(2842)] = 89132, + [SMALL_STATE(2843)] = 89194, + [SMALL_STATE(2844)] = 89260, + [SMALL_STATE(2845)] = 89322, + [SMALL_STATE(2846)] = 89384, + [SMALL_STATE(2847)] = 89444, + [SMALL_STATE(2848)] = 89510, + [SMALL_STATE(2849)] = 89578, + [SMALL_STATE(2850)] = 89638, + [SMALL_STATE(2851)] = 89698, + [SMALL_STATE(2852)] = 89762, + [SMALL_STATE(2853)] = 89822, + [SMALL_STATE(2854)] = 89882, + [SMALL_STATE(2855)] = 89942, + [SMALL_STATE(2856)] = 90004, + [SMALL_STATE(2857)] = 90064, + [SMALL_STATE(2858)] = 90126, + [SMALL_STATE(2859)] = 90192, + [SMALL_STATE(2860)] = 90258, + [SMALL_STATE(2861)] = 90318, + [SMALL_STATE(2862)] = 90378, + [SMALL_STATE(2863)] = 90438, + [SMALL_STATE(2864)] = 90498, + [SMALL_STATE(2865)] = 90558, + [SMALL_STATE(2866)] = 90622, + [SMALL_STATE(2867)] = 90682, + [SMALL_STATE(2868)] = 90744, + [SMALL_STATE(2869)] = 90810, + [SMALL_STATE(2870)] = 90870, + [SMALL_STATE(2871)] = 90936, + [SMALL_STATE(2872)] = 90996, + [SMALL_STATE(2873)] = 91056, + [SMALL_STATE(2874)] = 91118, + [SMALL_STATE(2875)] = 91178, + [SMALL_STATE(2876)] = 91240, + [SMALL_STATE(2877)] = 91300, + [SMALL_STATE(2878)] = 91364, + [SMALL_STATE(2879)] = 91424, + [SMALL_STATE(2880)] = 91484, + [SMALL_STATE(2881)] = 91544, + [SMALL_STATE(2882)] = 91604, + [SMALL_STATE(2883)] = 91664, + [SMALL_STATE(2884)] = 91724, + [SMALL_STATE(2885)] = 91784, + [SMALL_STATE(2886)] = 91844, + [SMALL_STATE(2887)] = 91904, + [SMALL_STATE(2888)] = 91964, + [SMALL_STATE(2889)] = 92024, + [SMALL_STATE(2890)] = 92084, + [SMALL_STATE(2891)] = 92144, + [SMALL_STATE(2892)] = 92204, + [SMALL_STATE(2893)] = 92270, + [SMALL_STATE(2894)] = 92336, + [SMALL_STATE(2895)] = 92396, + [SMALL_STATE(2896)] = 92456, + [SMALL_STATE(2897)] = 92516, + [SMALL_STATE(2898)] = 92576, + [SMALL_STATE(2899)] = 92638, + [SMALL_STATE(2900)] = 92698, + [SMALL_STATE(2901)] = 92757, + [SMALL_STATE(2902)] = 92816, + [SMALL_STATE(2903)] = 92875, + [SMALL_STATE(2904)] = 92934, + [SMALL_STATE(2905)] = 92993, + [SMALL_STATE(2906)] = 93052, + [SMALL_STATE(2907)] = 93111, + [SMALL_STATE(2908)] = 93170, + [SMALL_STATE(2909)] = 93229, + [SMALL_STATE(2910)] = 93288, + [SMALL_STATE(2911)] = 93347, + [SMALL_STATE(2912)] = 93406, + [SMALL_STATE(2913)] = 93465, + [SMALL_STATE(2914)] = 93524, + [SMALL_STATE(2915)] = 93585, + [SMALL_STATE(2916)] = 93644, + [SMALL_STATE(2917)] = 93705, + [SMALL_STATE(2918)] = 93766, + [SMALL_STATE(2919)] = 93833, + [SMALL_STATE(2920)] = 93892, + [SMALL_STATE(2921)] = 93951, + [SMALL_STATE(2922)] = 94010, + [SMALL_STATE(2923)] = 94069, + [SMALL_STATE(2924)] = 94128, + [SMALL_STATE(2925)] = 94195, + [SMALL_STATE(2926)] = 94254, + [SMALL_STATE(2927)] = 94313, + [SMALL_STATE(2928)] = 94372, + [SMALL_STATE(2929)] = 94433, + [SMALL_STATE(2930)] = 94492, + [SMALL_STATE(2931)] = 94553, + [SMALL_STATE(2932)] = 94614, + [SMALL_STATE(2933)] = 94677, + [SMALL_STATE(2934)] = 94738, + [SMALL_STATE(2935)] = 94799, + [SMALL_STATE(2936)] = 94858, + [SMALL_STATE(2937)] = 94917, + [SMALL_STATE(2938)] = 94976, + [SMALL_STATE(2939)] = 95035, + [SMALL_STATE(2940)] = 95094, + [SMALL_STATE(2941)] = 95153, + [SMALL_STATE(2942)] = 95212, + [SMALL_STATE(2943)] = 95275, + [SMALL_STATE(2944)] = 95336, + [SMALL_STATE(2945)] = 95399, + [SMALL_STATE(2946)] = 95460, + [SMALL_STATE(2947)] = 95529, + [SMALL_STATE(2948)] = 95588, + [SMALL_STATE(2949)] = 95649, + [SMALL_STATE(2950)] = 95710, + [SMALL_STATE(2951)] = 95769, + [SMALL_STATE(2952)] = 95828, + [SMALL_STATE(2953)] = 95889, + [SMALL_STATE(2954)] = 95948, + [SMALL_STATE(2955)] = 96009, + [SMALL_STATE(2956)] = 96070, + [SMALL_STATE(2957)] = 96131, + [SMALL_STATE(2958)] = 96190, + [SMALL_STATE(2959)] = 96249, + [SMALL_STATE(2960)] = 96308, + [SMALL_STATE(2961)] = 96367, + [SMALL_STATE(2962)] = 96426, + [SMALL_STATE(2963)] = 96485, + [SMALL_STATE(2964)] = 96544, + [SMALL_STATE(2965)] = 96607, + [SMALL_STATE(2966)] = 96666, + [SMALL_STATE(2967)] = 96725, + [SMALL_STATE(2968)] = 96784, + [SMALL_STATE(2969)] = 96843, + [SMALL_STATE(2970)] = 96902, + [SMALL_STATE(2971)] = 96961, + [SMALL_STATE(2972)] = 97020, + [SMALL_STATE(2973)] = 97079, + [SMALL_STATE(2974)] = 97138, + [SMALL_STATE(2975)] = 97197, + [SMALL_STATE(2976)] = 97256, + [SMALL_STATE(2977)] = 97315, + [SMALL_STATE(2978)] = 97374, + [SMALL_STATE(2979)] = 97433, + [SMALL_STATE(2980)] = 97492, + [SMALL_STATE(2981)] = 97551, + [SMALL_STATE(2982)] = 97617, + [SMALL_STATE(2983)] = 97675, + [SMALL_STATE(2984)] = 97741, + [SMALL_STATE(2985)] = 97799, + [SMALL_STATE(2986)] = 97857, + [SMALL_STATE(2987)] = 97923, + [SMALL_STATE(2988)] = 97981, + [SMALL_STATE(2989)] = 98039, + [SMALL_STATE(2990)] = 98097, + [SMALL_STATE(2991)] = 98155, + [SMALL_STATE(2992)] = 98213, + [SMALL_STATE(2993)] = 98271, + [SMALL_STATE(2994)] = 98329, + [SMALL_STATE(2995)] = 98387, + [SMALL_STATE(2996)] = 98445, + [SMALL_STATE(2997)] = 98503, + [SMALL_STATE(2998)] = 98561, + [SMALL_STATE(2999)] = 98619, + [SMALL_STATE(3000)] = 98677, + [SMALL_STATE(3001)] = 98735, + [SMALL_STATE(3002)] = 98793, + [SMALL_STATE(3003)] = 98851, + [SMALL_STATE(3004)] = 98909, + [SMALL_STATE(3005)] = 98967, + [SMALL_STATE(3006)] = 99025, + [SMALL_STATE(3007)] = 99083, + [SMALL_STATE(3008)] = 99141, + [SMALL_STATE(3009)] = 99199, + [SMALL_STATE(3010)] = 99257, + [SMALL_STATE(3011)] = 99325, + [SMALL_STATE(3012)] = 99383, + [SMALL_STATE(3013)] = 99451, + [SMALL_STATE(3014)] = 99509, + [SMALL_STATE(3015)] = 99567, + [SMALL_STATE(3016)] = 99625, + [SMALL_STATE(3017)] = 99687, + [SMALL_STATE(3018)] = 99745, + [SMALL_STATE(3019)] = 99803, + [SMALL_STATE(3020)] = 99861, + [SMALL_STATE(3021)] = 99919, + [SMALL_STATE(3022)] = 99977, + [SMALL_STATE(3023)] = 100035, + [SMALL_STATE(3024)] = 100093, + [SMALL_STATE(3025)] = 100151, + [SMALL_STATE(3026)] = 100209, + [SMALL_STATE(3027)] = 100267, + [SMALL_STATE(3028)] = 100325, + [SMALL_STATE(3029)] = 100383, + [SMALL_STATE(3030)] = 100445, + [SMALL_STATE(3031)] = 100503, + [SMALL_STATE(3032)] = 100561, + [SMALL_STATE(3033)] = 100619, + [SMALL_STATE(3034)] = 100679, + [SMALL_STATE(3035)] = 100737, + [SMALL_STATE(3036)] = 100795, + [SMALL_STATE(3037)] = 100853, + [SMALL_STATE(3038)] = 100911, + [SMALL_STATE(3039)] = 100969, + [SMALL_STATE(3040)] = 101027, + [SMALL_STATE(3041)] = 101085, + [SMALL_STATE(3042)] = 101143, + [SMALL_STATE(3043)] = 101201, + [SMALL_STATE(3044)] = 101259, + [SMALL_STATE(3045)] = 101317, + [SMALL_STATE(3046)] = 101375, + [SMALL_STATE(3047)] = 101433, + [SMALL_STATE(3048)] = 101498, + [SMALL_STATE(3049)] = 101563, + [SMALL_STATE(3050)] = 101628, + [SMALL_STATE(3051)] = 101693, + [SMALL_STATE(3052)] = 101760, + [SMALL_STATE(3053)] = 101825, + [SMALL_STATE(3054)] = 101890, + [SMALL_STATE(3055)] = 101955, + [SMALL_STATE(3056)] = 102020, + [SMALL_STATE(3057)] = 102085, + [SMALL_STATE(3058)] = 102142, + [SMALL_STATE(3059)] = 102207, + [SMALL_STATE(3060)] = 102272, + [SMALL_STATE(3061)] = 102337, + [SMALL_STATE(3062)] = 102398, + [SMALL_STATE(3063)] = 102463, + [SMALL_STATE(3064)] = 102524, + [SMALL_STATE(3065)] = 102583, + [SMALL_STATE(3066)] = 102642, + [SMALL_STATE(3067)] = 102707, + [SMALL_STATE(3068)] = 102783, + [SMALL_STATE(3069)] = 102859, + [SMALL_STATE(3070)] = 102935, + [SMALL_STATE(3071)] = 103011, + [SMALL_STATE(3072)] = 103071, + [SMALL_STATE(3073)] = 103131, + [SMALL_STATE(3074)] = 103187, + [SMALL_STATE(3075)] = 103263, + [SMALL_STATE(3076)] = 103339, + [SMALL_STATE(3077)] = 103399, + [SMALL_STATE(3078)] = 103475, + [SMALL_STATE(3079)] = 103551, + [SMALL_STATE(3080)] = 103607, + [SMALL_STATE(3081)] = 103667, + [SMALL_STATE(3082)] = 103743, + [SMALL_STATE(3083)] = 103803, + [SMALL_STATE(3084)] = 103879, + [SMALL_STATE(3085)] = 103955, + [SMALL_STATE(3086)] = 104031, + [SMALL_STATE(3087)] = 104107, + [SMALL_STATE(3088)] = 104183, + [SMALL_STATE(3089)] = 104259, + [SMALL_STATE(3090)] = 104335, + [SMALL_STATE(3091)] = 104399, + [SMALL_STATE(3092)] = 104457, + [SMALL_STATE(3093)] = 104517, + [SMALL_STATE(3094)] = 104573, + [SMALL_STATE(3095)] = 104631, + [SMALL_STATE(3096)] = 104693, + [SMALL_STATE(3097)] = 104769, + [SMALL_STATE(3098)] = 104845, + [SMALL_STATE(3099)] = 104905, + [SMALL_STATE(3100)] = 104965, + [SMALL_STATE(3101)] = 105041, + [SMALL_STATE(3102)] = 105097, + [SMALL_STATE(3103)] = 105153, + [SMALL_STATE(3104)] = 105213, + [SMALL_STATE(3105)] = 105269, + [SMALL_STATE(3106)] = 105345, + [SMALL_STATE(3107)] = 105401, + [SMALL_STATE(3108)] = 105477, + [SMALL_STATE(3109)] = 105553, + [SMALL_STATE(3110)] = 105613, + [SMALL_STATE(3111)] = 105689, + [SMALL_STATE(3112)] = 105765, + [SMALL_STATE(3113)] = 105824, + [SMALL_STATE(3114)] = 105879, + [SMALL_STATE(3115)] = 105934, + [SMALL_STATE(3116)] = 105993, + [SMALL_STATE(3117)] = 106052, + [SMALL_STATE(3118)] = 106111, + [SMALL_STATE(3119)] = 106166, + [SMALL_STATE(3120)] = 106225, + [SMALL_STATE(3121)] = 106284, + [SMALL_STATE(3122)] = 106343, + [SMALL_STATE(3123)] = 106400, + [SMALL_STATE(3124)] = 106457, + [SMALL_STATE(3125)] = 106516, + [SMALL_STATE(3126)] = 106571, + [SMALL_STATE(3127)] = 106630, + [SMALL_STATE(3128)] = 106689, + [SMALL_STATE(3129)] = 106744, + [SMALL_STATE(3130)] = 106799, + [SMALL_STATE(3131)] = 106854, + [SMALL_STATE(3132)] = 106911, + [SMALL_STATE(3133)] = 106966, + [SMALL_STATE(3134)] = 107021, + [SMALL_STATE(3135)] = 107080, + [SMALL_STATE(3136)] = 107136, + [SMALL_STATE(3137)] = 107202, + [SMALL_STATE(3138)] = 107270, + [SMALL_STATE(3139)] = 107344, + [SMALL_STATE(3140)] = 107420, + [SMALL_STATE(3141)] = 107496, + [SMALL_STATE(3142)] = 107574, + [SMALL_STATE(3143)] = 107652, + [SMALL_STATE(3144)] = 107732, + [SMALL_STATE(3145)] = 107802, + [SMALL_STATE(3146)] = 107866, + [SMALL_STATE(3147)] = 107938, + [SMALL_STATE(3148)] = 107998, + [SMALL_STATE(3149)] = 108080, + [SMALL_STATE(3150)] = 108144, + [SMALL_STATE(3151)] = 108228, + [SMALL_STATE(3152)] = 108314, + [SMALL_STATE(3153)] = 108388, + [SMALL_STATE(3154)] = 108460, + [SMALL_STATE(3155)] = 108520, + [SMALL_STATE(3156)] = 108588, + [SMALL_STATE(3157)] = 108664, + [SMALL_STATE(3158)] = 108742, + [SMALL_STATE(3159)] = 108796, + [SMALL_STATE(3160)] = 108876, + [SMALL_STATE(3161)] = 108930, + [SMALL_STATE(3162)] = 108998, + [SMALL_STATE(3163)] = 109060, + [SMALL_STATE(3164)] = 109130, + [SMALL_STATE(3165)] = 109188, + [SMALL_STATE(3166)] = 109268, + [SMALL_STATE(3167)] = 109350, + [SMALL_STATE(3168)] = 109434, + [SMALL_STATE(3169)] = 109506, + [SMALL_STATE(3170)] = 109572, + [SMALL_STATE(3171)] = 109646, + [SMALL_STATE(3172)] = 109722, + [SMALL_STATE(3173)] = 109800, + [SMALL_STATE(3174)] = 109868, + [SMALL_STATE(3175)] = 109938, + [SMALL_STATE(3176)] = 110000, + [SMALL_STATE(3177)] = 110064, + [SMALL_STATE(3178)] = 110134, + [SMALL_STATE(3179)] = 110206, + [SMALL_STATE(3180)] = 110264, + [SMALL_STATE(3181)] = 110324, + [SMALL_STATE(3182)] = 110404, + [SMALL_STATE(3183)] = 110486, + [SMALL_STATE(3184)] = 110568, + [SMALL_STATE(3185)] = 110652, + [SMALL_STATE(3186)] = 110736, + [SMALL_STATE(3187)] = 110822, + [SMALL_STATE(3188)] = 110894, + [SMALL_STATE(3189)] = 110968, + [SMALL_STATE(3190)] = 111034, + [SMALL_STATE(3191)] = 111102, + [SMALL_STATE(3192)] = 111176, + [SMALL_STATE(3193)] = 111252, + [SMALL_STATE(3194)] = 111328, + [SMALL_STATE(3195)] = 111406, + [SMALL_STATE(3196)] = 111484, + [SMALL_STATE(3197)] = 111564, + [SMALL_STATE(3198)] = 111632, + [SMALL_STATE(3199)] = 111694, + [SMALL_STATE(3200)] = 111768, + [SMALL_STATE(3201)] = 111826, + [SMALL_STATE(3202)] = 111906, + [SMALL_STATE(3203)] = 111988, + [SMALL_STATE(3204)] = 112072, + [SMALL_STATE(3205)] = 112144, + [SMALL_STATE(3206)] = 112210, + [SMALL_STATE(3207)] = 112284, + [SMALL_STATE(3208)] = 112360, + [SMALL_STATE(3209)] = 112438, + [SMALL_STATE(3210)] = 112504, + [SMALL_STATE(3211)] = 112564, + [SMALL_STATE(3212)] = 112632, + [SMALL_STATE(3213)] = 112688, + [SMALL_STATE(3214)] = 112766, + [SMALL_STATE(3215)] = 112846, + [SMALL_STATE(3216)] = 112928, + [SMALL_STATE(3217)] = 112998, + [SMALL_STATE(3218)] = 113062, + [SMALL_STATE(3219)] = 113134, + [SMALL_STATE(3220)] = 113208, + [SMALL_STATE(3221)] = 113284, + [SMALL_STATE(3222)] = 113366, + [SMALL_STATE(3223)] = 113450, + [SMALL_STATE(3224)] = 113504, + [SMALL_STATE(3225)] = 113590, + [SMALL_STATE(3226)] = 113646, + [SMALL_STATE(3227)] = 113716, + [SMALL_STATE(3228)] = 113790, + [SMALL_STATE(3229)] = 113846, + [SMALL_STATE(3230)] = 113914, + [SMALL_STATE(3231)] = 113970, + [SMALL_STATE(3232)] = 114046, + [SMALL_STATE(3233)] = 114124, + [SMALL_STATE(3234)] = 114196, + [SMALL_STATE(3235)] = 114276, + [SMALL_STATE(3236)] = 114330, + [SMALL_STATE(3237)] = 114386, + [SMALL_STATE(3238)] = 114456, + [SMALL_STATE(3239)] = 114512, + [SMALL_STATE(3240)] = 114580, + [SMALL_STATE(3241)] = 114650, + [SMALL_STATE(3242)] = 114712, + [SMALL_STATE(3243)] = 114768, + [SMALL_STATE(3244)] = 114832, + [SMALL_STATE(3245)] = 114902, + [SMALL_STATE(3246)] = 114974, + [SMALL_STATE(3247)] = 115032, + [SMALL_STATE(3248)] = 115092, + [SMALL_STATE(3249)] = 115172, + [SMALL_STATE(3250)] = 115254, + [SMALL_STATE(3251)] = 115336, + [SMALL_STATE(3252)] = 115420, + [SMALL_STATE(3253)] = 115476, + [SMALL_STATE(3254)] = 115560, + [SMALL_STATE(3255)] = 115616, + [SMALL_STATE(3256)] = 115702, + [SMALL_STATE(3257)] = 115758, + [SMALL_STATE(3258)] = 115830, + [SMALL_STATE(3259)] = 115900, + [SMALL_STATE(3260)] = 115953, + [SMALL_STATE(3261)] = 116006, + [SMALL_STATE(3262)] = 116059, + [SMALL_STATE(3263)] = 116112, + [SMALL_STATE(3264)] = 116165, + [SMALL_STATE(3265)] = 116218, + [SMALL_STATE(3266)] = 116271, + [SMALL_STATE(3267)] = 116324, + [SMALL_STATE(3268)] = 116395, + [SMALL_STATE(3269)] = 116448, + [SMALL_STATE(3270)] = 116501, + [SMALL_STATE(3271)] = 116554, + [SMALL_STATE(3272)] = 116619, + [SMALL_STATE(3273)] = 116678, + [SMALL_STATE(3274)] = 116745, + [SMALL_STATE(3275)] = 116800, + [SMALL_STATE(3276)] = 116877, + [SMALL_STATE(3277)] = 116956, + [SMALL_STATE(3278)] = 117037, + [SMALL_STATE(3279)] = 117106, + [SMALL_STATE(3280)] = 117169, + [SMALL_STATE(3281)] = 117240, + [SMALL_STATE(3282)] = 117313, + [SMALL_STATE(3283)] = 117388, + [SMALL_STATE(3284)] = 117441, + [SMALL_STATE(3285)] = 117494, + [SMALL_STATE(3286)] = 117547, + [SMALL_STATE(3287)] = 117600, + [SMALL_STATE(3288)] = 117653, + [SMALL_STATE(3289)] = 117706, + [SMALL_STATE(3290)] = 117759, + [SMALL_STATE(3291)] = 117812, + [SMALL_STATE(3292)] = 117879, + [SMALL_STATE(3293)] = 117932, + [SMALL_STATE(3294)] = 117985, + [SMALL_STATE(3295)] = 118040, + [SMALL_STATE(3296)] = 118093, + [SMALL_STATE(3297)] = 118146, + [SMALL_STATE(3298)] = 118199, + [SMALL_STATE(3299)] = 118252, + [SMALL_STATE(3300)] = 118305, + [SMALL_STATE(3301)] = 118358, + [SMALL_STATE(3302)] = 118411, + [SMALL_STATE(3303)] = 118464, + [SMALL_STATE(3304)] = 118517, + [SMALL_STATE(3305)] = 118570, + [SMALL_STATE(3306)] = 118639, + [SMALL_STATE(3307)] = 118692, + [SMALL_STATE(3308)] = 118745, + [SMALL_STATE(3309)] = 118798, + [SMALL_STATE(3310)] = 118851, + [SMALL_STATE(3311)] = 118904, + [SMALL_STATE(3312)] = 118957, + [SMALL_STATE(3313)] = 119010, + [SMALL_STATE(3314)] = 119063, + [SMALL_STATE(3315)] = 119116, + [SMALL_STATE(3316)] = 119169, + [SMALL_STATE(3317)] = 119222, + [SMALL_STATE(3318)] = 119275, + [SMALL_STATE(3319)] = 119344, + [SMALL_STATE(3320)] = 119397, + [SMALL_STATE(3321)] = 119450, + [SMALL_STATE(3322)] = 119503, + [SMALL_STATE(3323)] = 119556, + [SMALL_STATE(3324)] = 119609, + [SMALL_STATE(3325)] = 119659, + [SMALL_STATE(3326)] = 119709, + [SMALL_STATE(3327)] = 119773, + [SMALL_STATE(3328)] = 119841, + [SMALL_STATE(3329)] = 119909, + [SMALL_STATE(3330)] = 119973, + [SMALL_STATE(3331)] = 120041, + [SMALL_STATE(3332)] = 120097, + [SMALL_STATE(3333)] = 120165, + [SMALL_STATE(3334)] = 120215, + [SMALL_STATE(3335)] = 120265, + [SMALL_STATE(3336)] = 120329, + [SMALL_STATE(3337)] = 120381, + [SMALL_STATE(3338)] = 120431, + [SMALL_STATE(3339)] = 120481, + [SMALL_STATE(3340)] = 120545, + [SMALL_STATE(3341)] = 120601, + [SMALL_STATE(3342)] = 120662, + [SMALL_STATE(3343)] = 120727, + [SMALL_STATE(3344)] = 120780, + [SMALL_STATE(3345)] = 120845, + [SMALL_STATE(3346)] = 120910, + [SMALL_STATE(3347)] = 120975, + [SMALL_STATE(3348)] = 121040, + [SMALL_STATE(3349)] = 121105, + [SMALL_STATE(3350)] = 121166, + [SMALL_STATE(3351)] = 121227, + [SMALL_STATE(3352)] = 121280, + [SMALL_STATE(3353)] = 121339, + [SMALL_STATE(3354)] = 121400, + [SMALL_STATE(3355)] = 121465, + [SMALL_STATE(3356)] = 121526, + [SMALL_STATE(3357)] = 121581, + [SMALL_STATE(3358)] = 121636, + [SMALL_STATE(3359)] = 121697, + [SMALL_STATE(3360)] = 121758, + [SMALL_STATE(3361)] = 121819, + [SMALL_STATE(3362)] = 121880, + [SMALL_STATE(3363)] = 121941, + [SMALL_STATE(3364)] = 122005, + [SMALL_STATE(3365)] = 122057, + [SMALL_STATE(3366)] = 122111, + [SMALL_STATE(3367)] = 122161, + [SMALL_STATE(3368)] = 122213, + [SMALL_STATE(3369)] = 122267, + [SMALL_STATE(3370)] = 122317, + [SMALL_STATE(3371)] = 122367, + [SMALL_STATE(3372)] = 122417, + [SMALL_STATE(3373)] = 122472, + [SMALL_STATE(3374)] = 122521, + [SMALL_STATE(3375)] = 122570, + [SMALL_STATE(3376)] = 122625, + [SMALL_STATE(3377)] = 122674, + [SMALL_STATE(3378)] = 122729, + [SMALL_STATE(3379)] = 122780, + [SMALL_STATE(3380)] = 122835, + [SMALL_STATE(3381)] = 122890, + [SMALL_STATE(3382)] = 122943, + [SMALL_STATE(3383)] = 122992, + [SMALL_STATE(3384)] = 123045, + [SMALL_STATE(3385)] = 123100, + [SMALL_STATE(3386)] = 123155, + [SMALL_STATE(3387)] = 123208, + [SMALL_STATE(3388)] = 123263, + [SMALL_STATE(3389)] = 123318, + [SMALL_STATE(3390)] = 123373, + [SMALL_STATE(3391)] = 123428, + [SMALL_STATE(3392)] = 123483, + [SMALL_STATE(3393)] = 123538, + [SMALL_STATE(3394)] = 123593, + [SMALL_STATE(3395)] = 123648, + [SMALL_STATE(3396)] = 123703, + [SMALL_STATE(3397)] = 123758, + [SMALL_STATE(3398)] = 123813, + [SMALL_STATE(3399)] = 123868, + [SMALL_STATE(3400)] = 123923, + [SMALL_STATE(3401)] = 123978, + [SMALL_STATE(3402)] = 124033, + [SMALL_STATE(3403)] = 124088, + [SMALL_STATE(3404)] = 124143, + [SMALL_STATE(3405)] = 124194, + [SMALL_STATE(3406)] = 124249, + [SMALL_STATE(3407)] = 124304, + [SMALL_STATE(3408)] = 124359, + [SMALL_STATE(3409)] = 124408, + [SMALL_STATE(3410)] = 124463, + [SMALL_STATE(3411)] = 124515, + [SMALL_STATE(3412)] = 124563, + [SMALL_STATE(3413)] = 124619, + [SMALL_STATE(3414)] = 124671, + [SMALL_STATE(3415)] = 124719, + [SMALL_STATE(3416)] = 124775, + [SMALL_STATE(3417)] = 124825, + [SMALL_STATE(3418)] = 124875, + [SMALL_STATE(3419)] = 124927, + [SMALL_STATE(3420)] = 124979, + [SMALL_STATE(3421)] = 125027, + [SMALL_STATE(3422)] = 125075, + [SMALL_STATE(3423)] = 125123, + [SMALL_STATE(3424)] = 125174, + [SMALL_STATE(3425)] = 125221, + [SMALL_STATE(3426)] = 125276, + [SMALL_STATE(3427)] = 125323, + [SMALL_STATE(3428)] = 125378, + [SMALL_STATE(3429)] = 125425, + [SMALL_STATE(3430)] = 125472, + [SMALL_STATE(3431)] = 125523, + [SMALL_STATE(3432)] = 125574, + [SMALL_STATE(3433)] = 125629, + [SMALL_STATE(3434)] = 125680, + [SMALL_STATE(3435)] = 125729, + [SMALL_STATE(3436)] = 125776, + [SMALL_STATE(3437)] = 125826, + [SMALL_STATE(3438)] = 125876, + [SMALL_STATE(3439)] = 125920, + [SMALL_STATE(3440)] = 125968, + [SMALL_STATE(3441)] = 126018, + [SMALL_STATE(3442)] = 126066, + [SMALL_STATE(3443)] = 126114, + [SMALL_STATE(3444)] = 126162, + [SMALL_STATE(3445)] = 126212, + [SMALL_STATE(3446)] = 126257, + [SMALL_STATE(3447)] = 126304, + [SMALL_STATE(3448)] = 126357, + [SMALL_STATE(3449)] = 126406, + [SMALL_STATE(3450)] = 126451, + [SMALL_STATE(3451)] = 126496, + [SMALL_STATE(3452)] = 126545, + [SMALL_STATE(3453)] = 126590, + [SMALL_STATE(3454)] = 126639, + [SMALL_STATE(3455)] = 126688, + [SMALL_STATE(3456)] = 126737, + [SMALL_STATE(3457)] = 126786, + [SMALL_STATE(3458)] = 126835, + [SMALL_STATE(3459)] = 126880, + [SMALL_STATE(3460)] = 126927, + [SMALL_STATE(3461)] = 126976, + [SMALL_STATE(3462)] = 127021, + [SMALL_STATE(3463)] = 127072, + [SMALL_STATE(3464)] = 127121, + [SMALL_STATE(3465)] = 127170, + [SMALL_STATE(3466)] = 127219, + [SMALL_STATE(3467)] = 127268, + [SMALL_STATE(3468)] = 127315, + [SMALL_STATE(3469)] = 127360, + [SMALL_STATE(3470)] = 127407, + [SMALL_STATE(3471)] = 127456, + [SMALL_STATE(3472)] = 127505, + [SMALL_STATE(3473)] = 127554, + [SMALL_STATE(3474)] = 127603, + [SMALL_STATE(3475)] = 127648, + [SMALL_STATE(3476)] = 127693, + [SMALL_STATE(3477)] = 127742, + [SMALL_STATE(3478)] = 127802, + [SMALL_STATE(3479)] = 127864, + [SMALL_STATE(3480)] = 127928, + [SMALL_STATE(3481)] = 127980, + [SMALL_STATE(3482)] = 128032, + [SMALL_STATE(3483)] = 128078, + [SMALL_STATE(3484)] = 128132, + [SMALL_STATE(3485)] = 128188, + [SMALL_STATE(3486)] = 128248, + [SMALL_STATE(3487)] = 128310, + [SMALL_STATE(3488)] = 128358, + [SMALL_STATE(3489)] = 128412, + [SMALL_STATE(3490)] = 128470, + [SMALL_STATE(3491)] = 128520, + [SMALL_STATE(3492)] = 128584, + [SMALL_STATE(3493)] = 128630, + [SMALL_STATE(3494)] = 128676, + [SMALL_STATE(3495)] = 128746, + [SMALL_STATE(3496)] = 128818, + [SMALL_STATE(3497)] = 128880, + [SMALL_STATE(3498)] = 128946, + [SMALL_STATE(3499)] = 129006, + [SMALL_STATE(3500)] = 129078, + [SMALL_STATE(3501)] = 129144, + [SMALL_STATE(3502)] = 129188, + [SMALL_STATE(3503)] = 129248, + [SMALL_STATE(3504)] = 129322, + [SMALL_STATE(3505)] = 129396, + [SMALL_STATE(3506)] = 129472, + [SMALL_STATE(3507)] = 129534, + [SMALL_STATE(3508)] = 129584, + [SMALL_STATE(3509)] = 129648, + [SMALL_STATE(3510)] = 129702, + [SMALL_STATE(3511)] = 129758, + [SMALL_STATE(3512)] = 129816, + [SMALL_STATE(3513)] = 129880, + [SMALL_STATE(3514)] = 129942, + [SMALL_STATE(3515)] = 130008, + [SMALL_STATE(3516)] = 130076, + [SMALL_STATE(3517)] = 130142, + [SMALL_STATE(3518)] = 130210, + [SMALL_STATE(3519)] = 130278, + [SMALL_STATE(3520)] = 130346, + [SMALL_STATE(3521)] = 130416, + [SMALL_STATE(3522)] = 130486, + [SMALL_STATE(3523)] = 130546, + [SMALL_STATE(3524)] = 130596, + [SMALL_STATE(3525)] = 130650, + [SMALL_STATE(3526)] = 130712, + [SMALL_STATE(3527)] = 130762, + [SMALL_STATE(3528)] = 130834, + [SMALL_STATE(3529)] = 130908, + [SMALL_STATE(3530)] = 130958, + [SMALL_STATE(3531)] = 131034, + [SMALL_STATE(3532)] = 131098, + [SMALL_STATE(3533)] = 131142, + [SMALL_STATE(3534)] = 131200, + [SMALL_STATE(3535)] = 131248, + [SMALL_STATE(3536)] = 131314, + [SMALL_STATE(3537)] = 131358, + [SMALL_STATE(3538)] = 131406, + [SMALL_STATE(3539)] = 131478, + [SMALL_STATE(3540)] = 131546, + [SMALL_STATE(3541)] = 131590, + [SMALL_STATE(3542)] = 131638, + [SMALL_STATE(3543)] = 131708, + [SMALL_STATE(3544)] = 131768, + [SMALL_STATE(3545)] = 131844, + [SMALL_STATE(3546)] = 131908, + [SMALL_STATE(3547)] = 131966, + [SMALL_STATE(3548)] = 132014, + [SMALL_STATE(3549)] = 132058, + [SMALL_STATE(3550)] = 132108, + [SMALL_STATE(3551)] = 132152, + [SMALL_STATE(3552)] = 132202, + [SMALL_STATE(3553)] = 132272, + [SMALL_STATE(3554)] = 132322, + [SMALL_STATE(3555)] = 132380, + [SMALL_STATE(3556)] = 132452, + [SMALL_STATE(3557)] = 132518, + [SMALL_STATE(3558)] = 132586, + [SMALL_STATE(3559)] = 132630, + [SMALL_STATE(3560)] = 132674, + [SMALL_STATE(3561)] = 132722, + [SMALL_STATE(3562)] = 132766, + [SMALL_STATE(3563)] = 132836, + [SMALL_STATE(3564)] = 132886, + [SMALL_STATE(3565)] = 132934, + [SMALL_STATE(3566)] = 132992, + [SMALL_STATE(3567)] = 133044, + [SMALL_STATE(3568)] = 133104, + [SMALL_STATE(3569)] = 133152, + [SMALL_STATE(3570)] = 133222, + [SMALL_STATE(3571)] = 133268, + [SMALL_STATE(3572)] = 133340, + [SMALL_STATE(3573)] = 133390, + [SMALL_STATE(3574)] = 133464, + [SMALL_STATE(3575)] = 133538, + [SMALL_STATE(3576)] = 133586, + [SMALL_STATE(3577)] = 133662, + [SMALL_STATE(3578)] = 133734, + [SMALL_STATE(3579)] = 133792, + [SMALL_STATE(3580)] = 133844, + [SMALL_STATE(3581)] = 133894, + [SMALL_STATE(3582)] = 133940, + [SMALL_STATE(3583)] = 134014, + [SMALL_STATE(3584)] = 134076, + [SMALL_STATE(3585)] = 134132, + [SMALL_STATE(3586)] = 134196, + [SMALL_STATE(3587)] = 134264, + [SMALL_STATE(3588)] = 134312, + [SMALL_STATE(3589)] = 134382, + [SMALL_STATE(3590)] = 134454, + [SMALL_STATE(3591)] = 134520, + [SMALL_STATE(3592)] = 134594, + [SMALL_STATE(3593)] = 134656, + [SMALL_STATE(3594)] = 134712, + [SMALL_STATE(3595)] = 134772, + [SMALL_STATE(3596)] = 134840, + [SMALL_STATE(3597)] = 134904, + [SMALL_STATE(3598)] = 134962, + [SMALL_STATE(3599)] = 135028, + [SMALL_STATE(3600)] = 135102, + [SMALL_STATE(3601)] = 135191, + [SMALL_STATE(3602)] = 135234, + [SMALL_STATE(3603)] = 135277, + [SMALL_STATE(3604)] = 135366, + [SMALL_STATE(3605)] = 135441, + [SMALL_STATE(3606)] = 135516, + [SMALL_STATE(3607)] = 135591, + [SMALL_STATE(3608)] = 135636, + [SMALL_STATE(3609)] = 135711, + [SMALL_STATE(3610)] = 135754, + [SMALL_STATE(3611)] = 135829, + [SMALL_STATE(3612)] = 135904, + [SMALL_STATE(3613)] = 135947, + [SMALL_STATE(3614)] = 136017, + [SMALL_STATE(3615)] = 136061, + [SMALL_STATE(3616)] = 136105, + [SMALL_STATE(3617)] = 136159, + [SMALL_STATE(3618)] = 136207, + [SMALL_STATE(3619)] = 136263, + [SMALL_STATE(3620)] = 136307, + [SMALL_STATE(3621)] = 136373, + [SMALL_STATE(3622)] = 136441, + [SMALL_STATE(3623)] = 136511, + [SMALL_STATE(3624)] = 136569, + [SMALL_STATE(3625)] = 136613, + [SMALL_STATE(3626)] = 136657, + [SMALL_STATE(3627)] = 136709, + [SMALL_STATE(3628)] = 136769, + [SMALL_STATE(3629)] = 136831, + [SMALL_STATE(3630)] = 136895, + [SMALL_STATE(3631)] = 136939, + [SMALL_STATE(3632)] = 136993, + [SMALL_STATE(3633)] = 137041, + [SMALL_STATE(3634)] = 137097, + [SMALL_STATE(3635)] = 137141, + [SMALL_STATE(3636)] = 137207, + [SMALL_STATE(3637)] = 137275, + [SMALL_STATE(3638)] = 137333, + [SMALL_STATE(3639)] = 137385, + [SMALL_STATE(3640)] = 137445, + [SMALL_STATE(3641)] = 137507, + [SMALL_STATE(3642)] = 137571, + [SMALL_STATE(3643)] = 137615, + [SMALL_STATE(3644)] = 137659, + [SMALL_STATE(3645)] = 137703, + [SMALL_STATE(3646)] = 137786, + [SMALL_STATE(3647)] = 137869, + [SMALL_STATE(3648)] = 137952, + [SMALL_STATE(3649)] = 138035, + [SMALL_STATE(3650)] = 138118, + [SMALL_STATE(3651)] = 138201, + [SMALL_STATE(3652)] = 138284, + [SMALL_STATE(3653)] = 138367, + [SMALL_STATE(3654)] = 138436, + [SMALL_STATE(3655)] = 138519, + [SMALL_STATE(3656)] = 138602, + [SMALL_STATE(3657)] = 138685, + [SMALL_STATE(3658)] = 138768, + [SMALL_STATE(3659)] = 138851, + [SMALL_STATE(3660)] = 138934, + [SMALL_STATE(3661)] = 139017, + [SMALL_STATE(3662)] = 139100, + [SMALL_STATE(3663)] = 139183, + [SMALL_STATE(3664)] = 139266, + [SMALL_STATE(3665)] = 139349, + [SMALL_STATE(3666)] = 139432, + [SMALL_STATE(3667)] = 139515, + [SMALL_STATE(3668)] = 139598, + [SMALL_STATE(3669)] = 139643, + [SMALL_STATE(3670)] = 139712, + [SMALL_STATE(3671)] = 139759, + [SMALL_STATE(3672)] = 139842, + [SMALL_STATE(3673)] = 139925, + [SMALL_STATE(3674)] = 139994, + [SMALL_STATE(3675)] = 140077, + [SMALL_STATE(3676)] = 140146, + [SMALL_STATE(3677)] = 140229, + [SMALL_STATE(3678)] = 140298, + [SMALL_STATE(3679)] = 140343, + [SMALL_STATE(3680)] = 140412, + [SMALL_STATE(3681)] = 140456, + [SMALL_STATE(3682)] = 140500, + [SMALL_STATE(3683)] = 140544, + [SMALL_STATE(3684)] = 140590, + [SMALL_STATE(3685)] = 140634, + [SMALL_STATE(3686)] = 140711, + [SMALL_STATE(3687)] = 140788, + [SMALL_STATE(3688)] = 140865, + [SMALL_STATE(3689)] = 140942, + [SMALL_STATE(3690)] = 141019, + [SMALL_STATE(3691)] = 141096, + [SMALL_STATE(3692)] = 141173, + [SMALL_STATE(3693)] = 141250, + [SMALL_STATE(3694)] = 141327, + [SMALL_STATE(3695)] = 141404, + [SMALL_STATE(3696)] = 141481, + [SMALL_STATE(3697)] = 141520, + [SMALL_STATE(3698)] = 141597, + [SMALL_STATE(3699)] = 141651, + [SMALL_STATE(3700)] = 141702, + [SMALL_STATE(3701)] = 141753, + [SMALL_STATE(3702)] = 141804, + [SMALL_STATE(3703)] = 141857, + [SMALL_STATE(3704)] = 141893, + [SMALL_STATE(3705)] = 141933, + [SMALL_STATE(3706)] = 141983, + [SMALL_STATE(3707)] = 142039, + [SMALL_STATE(3708)] = 142083, + [SMALL_STATE(3709)] = 142123, + [SMALL_STATE(3710)] = 142173, + [SMALL_STATE(3711)] = 142213, + [SMALL_STATE(3712)] = 142257, + [SMALL_STATE(3713)] = 142305, + [SMALL_STATE(3714)] = 142353, + [SMALL_STATE(3715)] = 142401, + [SMALL_STATE(3716)] = 142443, + [SMALL_STATE(3717)] = 142491, + [SMALL_STATE(3718)] = 142527, + [SMALL_STATE(3719)] = 142577, + [SMALL_STATE(3720)] = 142621, + [SMALL_STATE(3721)] = 142668, + [SMALL_STATE(3722)] = 142705, + [SMALL_STATE(3723)] = 142744, + [SMALL_STATE(3724)] = 142797, + [SMALL_STATE(3725)] = 142852, + [SMALL_STATE(3726)] = 142889, + [SMALL_STATE(3727)] = 142936, + [SMALL_STATE(3728)] = 142983, + [SMALL_STATE(3729)] = 143036, + [SMALL_STATE(3730)] = 143083, + [SMALL_STATE(3731)] = 143130, + [SMALL_STATE(3732)] = 143183, + [SMALL_STATE(3733)] = 143222, + [SMALL_STATE(3734)] = 143260, + [SMALL_STATE(3735)] = 143294, + [SMALL_STATE(3736)] = 143332, + [SMALL_STATE(3737)] = 143378, + [SMALL_STATE(3738)] = 143430, + [SMALL_STATE(3739)] = 143464, + [SMALL_STATE(3740)] = 143498, + [SMALL_STATE(3741)] = 143536, + [SMALL_STATE(3742)] = 143588, + [SMALL_STATE(3743)] = 143640, + [SMALL_STATE(3744)] = 143676, + [SMALL_STATE(3745)] = 143714, + [SMALL_STATE(3746)] = 143764, + [SMALL_STATE(3747)] = 143814, + [SMALL_STATE(3748)] = 143864, + [SMALL_STATE(3749)] = 143914, + [SMALL_STATE(3750)] = 143950, + [SMALL_STATE(3751)] = 143984, + [SMALL_STATE(3752)] = 144021, + [SMALL_STATE(3753)] = 144054, + [SMALL_STATE(3754)] = 144087, + [SMALL_STATE(3755)] = 144122, + [SMALL_STATE(3756)] = 144159, + [SMALL_STATE(3757)] = 144196, + [SMALL_STATE(3758)] = 144231, + [SMALL_STATE(3759)] = 144284, + [SMALL_STATE(3760)] = 144333, + [SMALL_STATE(3761)] = 144382, + [SMALL_STATE(3762)] = 144431, + [SMALL_STATE(3763)] = 144480, + [SMALL_STATE(3764)] = 144515, + [SMALL_STATE(3765)] = 144552, + [SMALL_STATE(3766)] = 144593, + [SMALL_STATE(3767)] = 144628, + [SMALL_STATE(3768)] = 144663, + [SMALL_STATE(3769)] = 144696, + [SMALL_STATE(3770)] = 144729, + [SMALL_STATE(3771)] = 144776, + [SMALL_STATE(3772)] = 144808, + [SMALL_STATE(3773)] = 144842, + [SMALL_STATE(3774)] = 144876, + [SMALL_STATE(3775)] = 144914, + [SMALL_STATE(3776)] = 144954, + [SMALL_STATE(3777)] = 144986, + [SMALL_STATE(3778)] = 145024, + [SMALL_STATE(3779)] = 145062, + [SMALL_STATE(3780)] = 145100, + [SMALL_STATE(3781)] = 145138, + [SMALL_STATE(3782)] = 145176, + [SMALL_STATE(3783)] = 145216, + [SMALL_STATE(3784)] = 145266, + [SMALL_STATE(3785)] = 145304, + [SMALL_STATE(3786)] = 145336, + [SMALL_STATE(3787)] = 145374, + [SMALL_STATE(3788)] = 145408, + [SMALL_STATE(3789)] = 145446, + [SMALL_STATE(3790)] = 145496, + [SMALL_STATE(3791)] = 145534, + [SMALL_STATE(3792)] = 145566, + [SMALL_STATE(3793)] = 145602, + [SMALL_STATE(3794)] = 145640, + [SMALL_STATE(3795)] = 145672, + [SMALL_STATE(3796)] = 145712, + [SMALL_STATE(3797)] = 145750, + [SMALL_STATE(3798)] = 145788, + [SMALL_STATE(3799)] = 145826, + [SMALL_STATE(3800)] = 145858, + [SMALL_STATE(3801)] = 145890, + [SMALL_STATE(3802)] = 145940, + [SMALL_STATE(3803)] = 145972, + [SMALL_STATE(3804)] = 146008, + [SMALL_STATE(3805)] = 146054, + [SMALL_STATE(3806)] = 146090, + [SMALL_STATE(3807)] = 146124, + [SMALL_STATE(3808)] = 146158, + [SMALL_STATE(3809)] = 146196, + [SMALL_STATE(3810)] = 146228, + [SMALL_STATE(3811)] = 146264, + [SMALL_STATE(3812)] = 146298, + [SMALL_STATE(3813)] = 146329, + [SMALL_STATE(3814)] = 146362, + [SMALL_STATE(3815)] = 146393, + [SMALL_STATE(3816)] = 146426, + [SMALL_STATE(3817)] = 146467, + [SMALL_STATE(3818)] = 146500, + [SMALL_STATE(3819)] = 146547, + [SMALL_STATE(3820)] = 146578, + [SMALL_STATE(3821)] = 146613, + [SMALL_STATE(3822)] = 146644, + [SMALL_STATE(3823)] = 146675, + [SMALL_STATE(3824)] = 146712, + [SMALL_STATE(3825)] = 146759, + [SMALL_STATE(3826)] = 146794, + [SMALL_STATE(3827)] = 146829, + [SMALL_STATE(3828)] = 146860, + [SMALL_STATE(3829)] = 146899, + [SMALL_STATE(3830)] = 146930, + [SMALL_STATE(3831)] = 146975, + [SMALL_STATE(3832)] = 147022, + [SMALL_STATE(3833)] = 147061, + [SMALL_STATE(3834)] = 147098, + [SMALL_STATE(3835)] = 147135, + [SMALL_STATE(3836)] = 147166, + [SMALL_STATE(3837)] = 147201, + [SMALL_STATE(3838)] = 147248, + [SMALL_STATE(3839)] = 147281, + [SMALL_STATE(3840)] = 147312, + [SMALL_STATE(3841)] = 147343, + [SMALL_STATE(3842)] = 147378, + [SMALL_STATE(3843)] = 147409, + [SMALL_STATE(3844)] = 147440, + [SMALL_STATE(3845)] = 147479, + [SMALL_STATE(3846)] = 147510, + [SMALL_STATE(3847)] = 147542, + [SMALL_STATE(3848)] = 147574, + [SMALL_STATE(3849)] = 147604, + [SMALL_STATE(3850)] = 147634, + [SMALL_STATE(3851)] = 147672, + [SMALL_STATE(3852)] = 147704, + [SMALL_STATE(3853)] = 147734, + [SMALL_STATE(3854)] = 147764, + [SMALL_STATE(3855)] = 147798, + [SMALL_STATE(3856)] = 147828, + [SMALL_STATE(3857)] = 147858, + [SMALL_STATE(3858)] = 147890, + [SMALL_STATE(3859)] = 147920, + [SMALL_STATE(3860)] = 147954, + [SMALL_STATE(3861)] = 147988, + [SMALL_STATE(3862)] = 148020, + [SMALL_STATE(3863)] = 148052, + [SMALL_STATE(3864)] = 148082, + [SMALL_STATE(3865)] = 148116, + [SMALL_STATE(3866)] = 148146, + [SMALL_STATE(3867)] = 148178, + [SMALL_STATE(3868)] = 148218, + [SMALL_STATE(3869)] = 148258, + [SMALL_STATE(3870)] = 148308, + [SMALL_STATE(3871)] = 148344, + [SMALL_STATE(3872)] = 148374, + [SMALL_STATE(3873)] = 148404, + [SMALL_STATE(3874)] = 148444, + [SMALL_STATE(3875)] = 148482, + [SMALL_STATE(3876)] = 148512, + [SMALL_STATE(3877)] = 148550, + [SMALL_STATE(3878)] = 148588, + [SMALL_STATE(3879)] = 148622, + [SMALL_STATE(3880)] = 148654, + [SMALL_STATE(3881)] = 148686, + [SMALL_STATE(3882)] = 148718, + [SMALL_STATE(3883)] = 148750, + [SMALL_STATE(3884)] = 148782, + [SMALL_STATE(3885)] = 148814, + [SMALL_STATE(3886)] = 148846, + [SMALL_STATE(3887)] = 148884, + [SMALL_STATE(3888)] = 148915, + [SMALL_STATE(3889)] = 148948, + [SMALL_STATE(3890)] = 148979, + [SMALL_STATE(3891)] = 149016, + [SMALL_STATE(3892)] = 149047, + [SMALL_STATE(3893)] = 149076, + [SMALL_STATE(3894)] = 149107, + [SMALL_STATE(3895)] = 149144, + [SMALL_STATE(3896)] = 149175, + [SMALL_STATE(3897)] = 149212, + [SMALL_STATE(3898)] = 149243, + [SMALL_STATE(3899)] = 149276, + [SMALL_STATE(3900)] = 149309, + [SMALL_STATE(3901)] = 149346, + [SMALL_STATE(3902)] = 149377, + [SMALL_STATE(3903)] = 149406, + [SMALL_STATE(3904)] = 149441, + [SMALL_STATE(3905)] = 149472, + [SMALL_STATE(3906)] = 149501, + [SMALL_STATE(3907)] = 149532, + [SMALL_STATE(3908)] = 149561, + [SMALL_STATE(3909)] = 149592, + [SMALL_STATE(3910)] = 149629, + [SMALL_STATE(3911)] = 149660, + [SMALL_STATE(3912)] = 149691, + [SMALL_STATE(3913)] = 149728, + [SMALL_STATE(3914)] = 149765, + [SMALL_STATE(3915)] = 149798, + [SMALL_STATE(3916)] = 149831, + [SMALL_STATE(3917)] = 149868, + [SMALL_STATE(3918)] = 149901, + [SMALL_STATE(3919)] = 149932, + [SMALL_STATE(3920)] = 149969, + [SMALL_STATE(3921)] = 150006, + [SMALL_STATE(3922)] = 150037, + [SMALL_STATE(3923)] = 150066, + [SMALL_STATE(3924)] = 150097, + [SMALL_STATE(3925)] = 150128, + [SMALL_STATE(3926)] = 150157, + [SMALL_STATE(3927)] = 150186, + [SMALL_STATE(3928)] = 150223, + [SMALL_STATE(3929)] = 150252, + [SMALL_STATE(3930)] = 150281, + [SMALL_STATE(3931)] = 150312, + [SMALL_STATE(3932)] = 150341, + [SMALL_STATE(3933)] = 150370, + [SMALL_STATE(3934)] = 150407, + [SMALL_STATE(3935)] = 150436, + [SMALL_STATE(3936)] = 150465, + [SMALL_STATE(3937)] = 150502, + [SMALL_STATE(3938)] = 150539, + [SMALL_STATE(3939)] = 150570, + [SMALL_STATE(3940)] = 150607, + [SMALL_STATE(3941)] = 150636, + [SMALL_STATE(3942)] = 150673, + [SMALL_STATE(3943)] = 150710, + [SMALL_STATE(3944)] = 150747, + [SMALL_STATE(3945)] = 150784, + [SMALL_STATE(3946)] = 150813, + [SMALL_STATE(3947)] = 150850, + [SMALL_STATE(3948)] = 150883, + [SMALL_STATE(3949)] = 150916, + [SMALL_STATE(3950)] = 150953, + [SMALL_STATE(3951)] = 150982, + [SMALL_STATE(3952)] = 151019, + [SMALL_STATE(3953)] = 151048, + [SMALL_STATE(3954)] = 151077, + [SMALL_STATE(3955)] = 151108, + [SMALL_STATE(3956)] = 151145, + [SMALL_STATE(3957)] = 151174, + [SMALL_STATE(3958)] = 151203, + [SMALL_STATE(3959)] = 151234, + [SMALL_STATE(3960)] = 151263, + [SMALL_STATE(3961)] = 151294, + [SMALL_STATE(3962)] = 151323, + [SMALL_STATE(3963)] = 151354, + [SMALL_STATE(3964)] = 151383, + [SMALL_STATE(3965)] = 151419, + [SMALL_STATE(3966)] = 151455, + [SMALL_STATE(3967)] = 151491, + [SMALL_STATE(3968)] = 151527, + [SMALL_STATE(3969)] = 151557, + [SMALL_STATE(3970)] = 151589, + [SMALL_STATE(3971)] = 151619, + [SMALL_STATE(3972)] = 151649, + [SMALL_STATE(3973)] = 151681, + [SMALL_STATE(3974)] = 151711, + [SMALL_STATE(3975)] = 151739, + [SMALL_STATE(3976)] = 151771, + [SMALL_STATE(3977)] = 151799, + [SMALL_STATE(3978)] = 151831, + [SMALL_STATE(3979)] = 151867, + [SMALL_STATE(3980)] = 151895, + [SMALL_STATE(3981)] = 151923, + [SMALL_STATE(3982)] = 151951, + [SMALL_STATE(3983)] = 151979, + [SMALL_STATE(3984)] = 152007, + [SMALL_STATE(3985)] = 152035, + [SMALL_STATE(3986)] = 152063, + [SMALL_STATE(3987)] = 152091, + [SMALL_STATE(3988)] = 152121, + [SMALL_STATE(3989)] = 152157, + [SMALL_STATE(3990)] = 152185, + [SMALL_STATE(3991)] = 152215, + [SMALL_STATE(3992)] = 152243, + [SMALL_STATE(3993)] = 152271, + [SMALL_STATE(3994)] = 152301, + [SMALL_STATE(3995)] = 152329, + [SMALL_STATE(3996)] = 152377, + [SMALL_STATE(3997)] = 152405, + [SMALL_STATE(3998)] = 152435, + [SMALL_STATE(3999)] = 152463, + [SMALL_STATE(4000)] = 152507, + [SMALL_STATE(4001)] = 152537, + [SMALL_STATE(4002)] = 152573, + [SMALL_STATE(4003)] = 152601, + [SMALL_STATE(4004)] = 152637, + [SMALL_STATE(4005)] = 152673, + [SMALL_STATE(4006)] = 152717, + [SMALL_STATE(4007)] = 152761, + [SMALL_STATE(4008)] = 152797, + [SMALL_STATE(4009)] = 152829, + [SMALL_STATE(4010)] = 152857, + [SMALL_STATE(4011)] = 152893, + [SMALL_STATE(4012)] = 152929, + [SMALL_STATE(4013)] = 152957, + [SMALL_STATE(4014)] = 152985, + [SMALL_STATE(4015)] = 153013, + [SMALL_STATE(4016)] = 153049, + [SMALL_STATE(4017)] = 153085, + [SMALL_STATE(4018)] = 153121, + [SMALL_STATE(4019)] = 153169, + [SMALL_STATE(4020)] = 153205, + [SMALL_STATE(4021)] = 153253, + [SMALL_STATE(4022)] = 153281, + [SMALL_STATE(4023)] = 153325, + [SMALL_STATE(4024)] = 153361, + [SMALL_STATE(4025)] = 153397, + [SMALL_STATE(4026)] = 153429, + [SMALL_STATE(4027)] = 153465, + [SMALL_STATE(4028)] = 153497, + [SMALL_STATE(4029)] = 153529, + [SMALL_STATE(4030)] = 153561, + [SMALL_STATE(4031)] = 153593, + [SMALL_STATE(4032)] = 153625, + [SMALL_STATE(4033)] = 153655, + [SMALL_STATE(4034)] = 153703, + [SMALL_STATE(4035)] = 153735, + [SMALL_STATE(4036)] = 153765, + [SMALL_STATE(4037)] = 153801, + [SMALL_STATE(4038)] = 153845, + [SMALL_STATE(4039)] = 153878, + [SMALL_STATE(4040)] = 153911, + [SMALL_STATE(4041)] = 153944, + [SMALL_STATE(4042)] = 153975, + [SMALL_STATE(4043)] = 154002, + [SMALL_STATE(4044)] = 154037, + [SMALL_STATE(4045)] = 154062, + [SMALL_STATE(4046)] = 154091, + [SMALL_STATE(4047)] = 154118, + [SMALL_STATE(4048)] = 154145, + [SMALL_STATE(4049)] = 154172, + [SMALL_STATE(4050)] = 154203, + [SMALL_STATE(4051)] = 154238, + [SMALL_STATE(4052)] = 154265, + [SMALL_STATE(4053)] = 154292, + [SMALL_STATE(4054)] = 154319, + [SMALL_STATE(4055)] = 154346, + [SMALL_STATE(4056)] = 154373, + [SMALL_STATE(4057)] = 154402, + [SMALL_STATE(4058)] = 154431, + [SMALL_STATE(4059)] = 154458, + [SMALL_STATE(4060)] = 154485, + [SMALL_STATE(4061)] = 154514, + [SMALL_STATE(4062)] = 154545, + [SMALL_STATE(4063)] = 154576, + [SMALL_STATE(4064)] = 154603, + [SMALL_STATE(4065)] = 154634, + [SMALL_STATE(4066)] = 154665, + [SMALL_STATE(4067)] = 154696, + [SMALL_STATE(4068)] = 154727, + [SMALL_STATE(4069)] = 154760, + [SMALL_STATE(4070)] = 154793, + [SMALL_STATE(4071)] = 154820, + [SMALL_STATE(4072)] = 154855, + [SMALL_STATE(4073)] = 154882, + [SMALL_STATE(4074)] = 154913, + [SMALL_STATE(4075)] = 154944, + [SMALL_STATE(4076)] = 154971, + [SMALL_STATE(4077)] = 155004, + [SMALL_STATE(4078)] = 155037, + [SMALL_STATE(4079)] = 155066, + [SMALL_STATE(4080)] = 155095, + [SMALL_STATE(4081)] = 155126, + [SMALL_STATE(4082)] = 155155, + [SMALL_STATE(4083)] = 155186, + [SMALL_STATE(4084)] = 155221, + [SMALL_STATE(4085)] = 155252, + [SMALL_STATE(4086)] = 155283, + [SMALL_STATE(4087)] = 155314, + [SMALL_STATE(4088)] = 155345, + [SMALL_STATE(4089)] = 155372, + [SMALL_STATE(4090)] = 155399, + [SMALL_STATE(4091)] = 155426, + [SMALL_STATE(4092)] = 155453, + [SMALL_STATE(4093)] = 155482, + [SMALL_STATE(4094)] = 155511, + [SMALL_STATE(4095)] = 155542, + [SMALL_STATE(4096)] = 155573, + [SMALL_STATE(4097)] = 155604, + [SMALL_STATE(4098)] = 155635, + [SMALL_STATE(4099)] = 155668, + [SMALL_STATE(4100)] = 155693, + [SMALL_STATE(4101)] = 155726, + [SMALL_STATE(4102)] = 155753, + [SMALL_STATE(4103)] = 155780, + [SMALL_STATE(4104)] = 155809, + [SMALL_STATE(4105)] = 155838, + [SMALL_STATE(4106)] = 155869, + [SMALL_STATE(4107)] = 155900, + [SMALL_STATE(4108)] = 155931, + [SMALL_STATE(4109)] = 155962, + [SMALL_STATE(4110)] = 155989, + [SMALL_STATE(4111)] = 156020, + [SMALL_STATE(4112)] = 156053, + [SMALL_STATE(4113)] = 156080, + [SMALL_STATE(4114)] = 156107, + [SMALL_STATE(4115)] = 156134, + [SMALL_STATE(4116)] = 156165, + [SMALL_STATE(4117)] = 156192, + [SMALL_STATE(4118)] = 156221, + [SMALL_STATE(4119)] = 156248, + [SMALL_STATE(4120)] = 156277, + [SMALL_STATE(4121)] = 156306, + [SMALL_STATE(4122)] = 156337, + [SMALL_STATE(4123)] = 156368, + [SMALL_STATE(4124)] = 156399, + [SMALL_STATE(4125)] = 156430, + [SMALL_STATE(4126)] = 156463, + [SMALL_STATE(4127)] = 156496, + [SMALL_STATE(4128)] = 156523, + [SMALL_STATE(4129)] = 156552, + [SMALL_STATE(4130)] = 156579, + [SMALL_STATE(4131)] = 156604, + [SMALL_STATE(4132)] = 156631, + [SMALL_STATE(4133)] = 156658, + [SMALL_STATE(4134)] = 156685, + [SMALL_STATE(4135)] = 156712, + [SMALL_STATE(4136)] = 156743, + [SMALL_STATE(4137)] = 156774, + [SMALL_STATE(4138)] = 156801, + [SMALL_STATE(4139)] = 156832, + [SMALL_STATE(4140)] = 156863, + [SMALL_STATE(4141)] = 156888, + [SMALL_STATE(4142)] = 156919, + [SMALL_STATE(4143)] = 156950, + [SMALL_STATE(4144)] = 156975, + [SMALL_STATE(4145)] = 157008, + [SMALL_STATE(4146)] = 157033, + [SMALL_STATE(4147)] = 157058, + [SMALL_STATE(4148)] = 157087, + [SMALL_STATE(4149)] = 157118, + [SMALL_STATE(4150)] = 157149, + [SMALL_STATE(4151)] = 157182, + [SMALL_STATE(4152)] = 157209, + [SMALL_STATE(4153)] = 157236, + [SMALL_STATE(4154)] = 157263, + [SMALL_STATE(4155)] = 157290, + [SMALL_STATE(4156)] = 157323, + [SMALL_STATE(4157)] = 157356, + [SMALL_STATE(4158)] = 157383, + [SMALL_STATE(4159)] = 157414, + [SMALL_STATE(4160)] = 157441, + [SMALL_STATE(4161)] = 157472, + [SMALL_STATE(4162)] = 157503, + [SMALL_STATE(4163)] = 157534, + [SMALL_STATE(4164)] = 157561, + [SMALL_STATE(4165)] = 157588, + [SMALL_STATE(4166)] = 157615, + [SMALL_STATE(4167)] = 157644, + [SMALL_STATE(4168)] = 157675, + [SMALL_STATE(4169)] = 157702, + [SMALL_STATE(4170)] = 157729, + [SMALL_STATE(4171)] = 157760, + [SMALL_STATE(4172)] = 157787, + [SMALL_STATE(4173)] = 157818, + [SMALL_STATE(4174)] = 157849, + [SMALL_STATE(4175)] = 157884, + [SMALL_STATE(4176)] = 157911, + [SMALL_STATE(4177)] = 157938, + [SMALL_STATE(4178)] = 157965, + [SMALL_STATE(4179)] = 157996, + [SMALL_STATE(4180)] = 158023, + [SMALL_STATE(4181)] = 158054, + [SMALL_STATE(4182)] = 158091, + [SMALL_STATE(4183)] = 158118, + [SMALL_STATE(4184)] = 158143, + [SMALL_STATE(4185)] = 158174, + [SMALL_STATE(4186)] = 158201, + [SMALL_STATE(4187)] = 158234, + [SMALL_STATE(4188)] = 158267, + [SMALL_STATE(4189)] = 158300, + [SMALL_STATE(4190)] = 158325, + [SMALL_STATE(4191)] = 158350, + [SMALL_STATE(4192)] = 158381, + [SMALL_STATE(4193)] = 158412, + [SMALL_STATE(4194)] = 158447, + [SMALL_STATE(4195)] = 158482, + [SMALL_STATE(4196)] = 158517, + [SMALL_STATE(4197)] = 158552, + [SMALL_STATE(4198)] = 158587, + [SMALL_STATE(4199)] = 158622, + [SMALL_STATE(4200)] = 158657, + [SMALL_STATE(4201)] = 158692, + [SMALL_STATE(4202)] = 158727, + [SMALL_STATE(4203)] = 158762, + [SMALL_STATE(4204)] = 158797, + [SMALL_STATE(4205)] = 158832, + [SMALL_STATE(4206)] = 158863, + [SMALL_STATE(4207)] = 158892, + [SMALL_STATE(4208)] = 158927, + [SMALL_STATE(4209)] = 158954, + [SMALL_STATE(4210)] = 158981, + [SMALL_STATE(4211)] = 159012, + [SMALL_STATE(4212)] = 159047, + [SMALL_STATE(4213)] = 159074, + [SMALL_STATE(4214)] = 159107, + [SMALL_STATE(4215)] = 159138, + [SMALL_STATE(4216)] = 159165, + [SMALL_STATE(4217)] = 159192, + [SMALL_STATE(4218)] = 159219, + [SMALL_STATE(4219)] = 159244, + [SMALL_STATE(4220)] = 159271, + [SMALL_STATE(4221)] = 159298, + [SMALL_STATE(4222)] = 159325, + [SMALL_STATE(4223)] = 159352, + [SMALL_STATE(4224)] = 159379, + [SMALL_STATE(4225)] = 159410, + [SMALL_STATE(4226)] = 159437, + [SMALL_STATE(4227)] = 159464, + [SMALL_STATE(4228)] = 159491, + [SMALL_STATE(4229)] = 159518, + [SMALL_STATE(4230)] = 159549, + [SMALL_STATE(4231)] = 159578, + [SMALL_STATE(4232)] = 159607, + [SMALL_STATE(4233)] = 159638, + [SMALL_STATE(4234)] = 159669, + [SMALL_STATE(4235)] = 159696, + [SMALL_STATE(4236)] = 159727, + [SMALL_STATE(4237)] = 159754, + [SMALL_STATE(4238)] = 159783, + [SMALL_STATE(4239)] = 159812, + [SMALL_STATE(4240)] = 159839, + [SMALL_STATE(4241)] = 159869, + [SMALL_STATE(4242)] = 159899, + [SMALL_STATE(4243)] = 159927, + [SMALL_STATE(4244)] = 159957, + [SMALL_STATE(4245)] = 159981, + [SMALL_STATE(4246)] = 160007, + [SMALL_STATE(4247)] = 160035, + [SMALL_STATE(4248)] = 160059, + [SMALL_STATE(4249)] = 160087, + [SMALL_STATE(4250)] = 160113, + [SMALL_STATE(4251)] = 160141, + [SMALL_STATE(4252)] = 160187, + [SMALL_STATE(4253)] = 160215, + [SMALL_STATE(4254)] = 160245, + [SMALL_STATE(4255)] = 160275, + [SMALL_STATE(4256)] = 160301, + [SMALL_STATE(4257)] = 160327, + [SMALL_STATE(4258)] = 160357, + [SMALL_STATE(4259)] = 160385, + [SMALL_STATE(4260)] = 160411, + [SMALL_STATE(4261)] = 160441, + [SMALL_STATE(4262)] = 160469, + [SMALL_STATE(4263)] = 160499, + [SMALL_STATE(4264)] = 160531, + [SMALL_STATE(4265)] = 160583, + [SMALL_STATE(4266)] = 160635, + [SMALL_STATE(4267)] = 160665, + [SMALL_STATE(4268)] = 160695, + [SMALL_STATE(4269)] = 160725, + [SMALL_STATE(4270)] = 160749, + [SMALL_STATE(4271)] = 160777, + [SMALL_STATE(4272)] = 160807, + [SMALL_STATE(4273)] = 160859, + [SMALL_STATE(4274)] = 160889, + [SMALL_STATE(4275)] = 160915, + [SMALL_STATE(4276)] = 160941, + [SMALL_STATE(4277)] = 160965, + [SMALL_STATE(4278)] = 160991, + [SMALL_STATE(4279)] = 161043, + [SMALL_STATE(4280)] = 161095, + [SMALL_STATE(4281)] = 161147, + [SMALL_STATE(4282)] = 161199, + [SMALL_STATE(4283)] = 161231, + [SMALL_STATE(4284)] = 161283, + [SMALL_STATE(4285)] = 161313, + [SMALL_STATE(4286)] = 161341, + [SMALL_STATE(4287)] = 161393, + [SMALL_STATE(4288)] = 161419, + [SMALL_STATE(4289)] = 161449, + [SMALL_STATE(4290)] = 161501, + [SMALL_STATE(4291)] = 161529, + [SMALL_STATE(4292)] = 161553, + [SMALL_STATE(4293)] = 161581, + [SMALL_STATE(4294)] = 161609, + [SMALL_STATE(4295)] = 161635, + [SMALL_STATE(4296)] = 161663, + [SMALL_STATE(4297)] = 161693, + [SMALL_STATE(4298)] = 161719, + [SMALL_STATE(4299)] = 161749, + [SMALL_STATE(4300)] = 161779, + [SMALL_STATE(4301)] = 161803, + [SMALL_STATE(4302)] = 161829, + [SMALL_STATE(4303)] = 161859, + [SMALL_STATE(4304)] = 161883, + [SMALL_STATE(4305)] = 161907, + [SMALL_STATE(4306)] = 161933, + [SMALL_STATE(4307)] = 161959, + [SMALL_STATE(4308)] = 161989, + [SMALL_STATE(4309)] = 162015, + [SMALL_STATE(4310)] = 162045, + [SMALL_STATE(4311)] = 162075, + [SMALL_STATE(4312)] = 162105, + [SMALL_STATE(4313)] = 162135, + [SMALL_STATE(4314)] = 162163, + [SMALL_STATE(4315)] = 162187, + [SMALL_STATE(4316)] = 162213, + [SMALL_STATE(4317)] = 162243, + [SMALL_STATE(4318)] = 162273, + [SMALL_STATE(4319)] = 162297, + [SMALL_STATE(4320)] = 162327, + [SMALL_STATE(4321)] = 162357, + [SMALL_STATE(4322)] = 162387, + [SMALL_STATE(4323)] = 162413, + [SMALL_STATE(4324)] = 162437, + [SMALL_STATE(4325)] = 162461, + [SMALL_STATE(4326)] = 162485, + [SMALL_STATE(4327)] = 162514, + [SMALL_STATE(4328)] = 162543, + [SMALL_STATE(4329)] = 162566, + [SMALL_STATE(4330)] = 162591, + [SMALL_STATE(4331)] = 162616, + [SMALL_STATE(4332)] = 162645, + [SMALL_STATE(4333)] = 162672, + [SMALL_STATE(4334)] = 162701, + [SMALL_STATE(4335)] = 162730, + [SMALL_STATE(4336)] = 162755, + [SMALL_STATE(4337)] = 162780, + [SMALL_STATE(4338)] = 162805, + [SMALL_STATE(4339)] = 162830, + [SMALL_STATE(4340)] = 162855, + [SMALL_STATE(4341)] = 162884, + [SMALL_STATE(4342)] = 162909, + [SMALL_STATE(4343)] = 162938, + [SMALL_STATE(4344)] = 162963, + [SMALL_STATE(4345)] = 162988, + [SMALL_STATE(4346)] = 163013, + [SMALL_STATE(4347)] = 163038, + [SMALL_STATE(4348)] = 163067, + [SMALL_STATE(4349)] = 163096, + [SMALL_STATE(4350)] = 163125, + [SMALL_STATE(4351)] = 163148, + [SMALL_STATE(4352)] = 163173, + [SMALL_STATE(4353)] = 163198, + [SMALL_STATE(4354)] = 163227, + [SMALL_STATE(4355)] = 163256, + [SMALL_STATE(4356)] = 163285, + [SMALL_STATE(4357)] = 163310, + [SMALL_STATE(4358)] = 163339, + [SMALL_STATE(4359)] = 163370, + [SMALL_STATE(4360)] = 163395, + [SMALL_STATE(4361)] = 163420, + [SMALL_STATE(4362)] = 163447, + [SMALL_STATE(4363)] = 163472, + [SMALL_STATE(4364)] = 163497, + [SMALL_STATE(4365)] = 163522, + [SMALL_STATE(4366)] = 163549, + [SMALL_STATE(4367)] = 163576, + [SMALL_STATE(4368)] = 163601, + [SMALL_STATE(4369)] = 163624, + [SMALL_STATE(4370)] = 163647, + [SMALL_STATE(4371)] = 163672, + [SMALL_STATE(4372)] = 163697, + [SMALL_STATE(4373)] = 163724, + [SMALL_STATE(4374)] = 163753, + [SMALL_STATE(4375)] = 163776, + [SMALL_STATE(4376)] = 163801, + [SMALL_STATE(4377)] = 163830, + [SMALL_STATE(4378)] = 163855, + [SMALL_STATE(4379)] = 163880, + [SMALL_STATE(4380)] = 163905, + [SMALL_STATE(4381)] = 163950, + [SMALL_STATE(4382)] = 163975, + [SMALL_STATE(4383)] = 164004, + [SMALL_STATE(4384)] = 164029, + [SMALL_STATE(4385)] = 164054, + [SMALL_STATE(4386)] = 164083, + [SMALL_STATE(4387)] = 164112, + [SMALL_STATE(4388)] = 164141, + [SMALL_STATE(4389)] = 164166, + [SMALL_STATE(4390)] = 164193, + [SMALL_STATE(4391)] = 164218, + [SMALL_STATE(4392)] = 164247, + [SMALL_STATE(4393)] = 164272, + [SMALL_STATE(4394)] = 164297, + [SMALL_STATE(4395)] = 164324, + [SMALL_STATE(4396)] = 164349, + [SMALL_STATE(4397)] = 164378, + [SMALL_STATE(4398)] = 164405, + [SMALL_STATE(4399)] = 164430, + [SMALL_STATE(4400)] = 164455, + [SMALL_STATE(4401)] = 164480, + [SMALL_STATE(4402)] = 164505, + [SMALL_STATE(4403)] = 164550, + [SMALL_STATE(4404)] = 164579, + [SMALL_STATE(4405)] = 164602, + [SMALL_STATE(4406)] = 164627, + [SMALL_STATE(4407)] = 164652, + [SMALL_STATE(4408)] = 164677, + [SMALL_STATE(4409)] = 164706, + [SMALL_STATE(4410)] = 164731, + [SMALL_STATE(4411)] = 164756, + [SMALL_STATE(4412)] = 164781, + [SMALL_STATE(4413)] = 164810, + [SMALL_STATE(4414)] = 164839, + [SMALL_STATE(4415)] = 164864, + [SMALL_STATE(4416)] = 164893, + [SMALL_STATE(4417)] = 164922, + [SMALL_STATE(4418)] = 164947, + [SMALL_STATE(4419)] = 164972, + [SMALL_STATE(4420)] = 165001, + [SMALL_STATE(4421)] = 165030, + [SMALL_STATE(4422)] = 165061, + [SMALL_STATE(4423)] = 165090, + [SMALL_STATE(4424)] = 165115, + [SMALL_STATE(4425)] = 165144, + [SMALL_STATE(4426)] = 165173, + [SMALL_STATE(4427)] = 165196, + [SMALL_STATE(4428)] = 165221, + [SMALL_STATE(4429)] = 165250, + [SMALL_STATE(4430)] = 165275, + [SMALL_STATE(4431)] = 165304, + [SMALL_STATE(4432)] = 165329, + [SMALL_STATE(4433)] = 165354, + [SMALL_STATE(4434)] = 165383, + [SMALL_STATE(4435)] = 165412, + [SMALL_STATE(4436)] = 165437, + [SMALL_STATE(4437)] = 165462, + [SMALL_STATE(4438)] = 165491, + [SMALL_STATE(4439)] = 165520, + [SMALL_STATE(4440)] = 165549, + [SMALL_STATE(4441)] = 165590, + [SMALL_STATE(4442)] = 165615, + [SMALL_STATE(4443)] = 165640, + [SMALL_STATE(4444)] = 165665, + [SMALL_STATE(4445)] = 165690, + [SMALL_STATE(4446)] = 165735, + [SMALL_STATE(4447)] = 165760, + [SMALL_STATE(4448)] = 165789, + [SMALL_STATE(4449)] = 165814, + [SMALL_STATE(4450)] = 165843, + [SMALL_STATE(4451)] = 165868, + [SMALL_STATE(4452)] = 165893, + [SMALL_STATE(4453)] = 165922, + [SMALL_STATE(4454)] = 165947, + [SMALL_STATE(4455)] = 165974, + [SMALL_STATE(4456)] = 166003, + [SMALL_STATE(4457)] = 166028, + [SMALL_STATE(4458)] = 166053, + [SMALL_STATE(4459)] = 166082, + [SMALL_STATE(4460)] = 166107, + [SMALL_STATE(4461)] = 166132, + [SMALL_STATE(4462)] = 166157, + [SMALL_STATE(4463)] = 166186, + [SMALL_STATE(4464)] = 166211, + [SMALL_STATE(4465)] = 166242, + [SMALL_STATE(4466)] = 166267, + [SMALL_STATE(4467)] = 166292, + [SMALL_STATE(4468)] = 166317, + [SMALL_STATE(4469)] = 166342, + [SMALL_STATE(4470)] = 166367, + [SMALL_STATE(4471)] = 166396, + [SMALL_STATE(4472)] = 166425, + [SMALL_STATE(4473)] = 166450, + [SMALL_STATE(4474)] = 166475, + [SMALL_STATE(4475)] = 166500, + [SMALL_STATE(4476)] = 166529, + [SMALL_STATE(4477)] = 166554, + [SMALL_STATE(4478)] = 166579, + [SMALL_STATE(4479)] = 166604, + [SMALL_STATE(4480)] = 166631, + [SMALL_STATE(4481)] = 166656, + [SMALL_STATE(4482)] = 166685, + [SMALL_STATE(4483)] = 166710, + [SMALL_STATE(4484)] = 166741, + [SMALL_STATE(4485)] = 166770, + [SMALL_STATE(4486)] = 166796, + [SMALL_STATE(4487)] = 166842, + [SMALL_STATE(4488)] = 166866, + [SMALL_STATE(4489)] = 166890, + [SMALL_STATE(4490)] = 166914, + [SMALL_STATE(4491)] = 166938, + [SMALL_STATE(4492)] = 166962, + [SMALL_STATE(4493)] = 166986, + [SMALL_STATE(4494)] = 167032, + [SMALL_STATE(4495)] = 167078, + [SMALL_STATE(4496)] = 167102, + [SMALL_STATE(4497)] = 167126, + [SMALL_STATE(4498)] = 167150, + [SMALL_STATE(4499)] = 167174, + [SMALL_STATE(4500)] = 167198, + [SMALL_STATE(4501)] = 167222, + [SMALL_STATE(4502)] = 167246, + [SMALL_STATE(4503)] = 167270, + [SMALL_STATE(4504)] = 167312, + [SMALL_STATE(4505)] = 167336, + [SMALL_STATE(4506)] = 167360, + [SMALL_STATE(4507)] = 167384, + [SMALL_STATE(4508)] = 167408, + [SMALL_STATE(4509)] = 167432, + [SMALL_STATE(4510)] = 167456, + [SMALL_STATE(4511)] = 167480, + [SMALL_STATE(4512)] = 167504, + [SMALL_STATE(4513)] = 167528, + [SMALL_STATE(4514)] = 167552, + [SMALL_STATE(4515)] = 167576, + [SMALL_STATE(4516)] = 167600, + [SMALL_STATE(4517)] = 167624, + [SMALL_STATE(4518)] = 167648, + [SMALL_STATE(4519)] = 167672, + [SMALL_STATE(4520)] = 167696, + [SMALL_STATE(4521)] = 167720, + [SMALL_STATE(4522)] = 167744, + [SMALL_STATE(4523)] = 167768, + [SMALL_STATE(4524)] = 167810, + [SMALL_STATE(4525)] = 167834, + [SMALL_STATE(4526)] = 167858, + [SMALL_STATE(4527)] = 167882, + [SMALL_STATE(4528)] = 167906, + [SMALL_STATE(4529)] = 167930, + [SMALL_STATE(4530)] = 167954, + [SMALL_STATE(4531)] = 167978, + [SMALL_STATE(4532)] = 168002, + [SMALL_STATE(4533)] = 168026, + [SMALL_STATE(4534)] = 168050, + [SMALL_STATE(4535)] = 168074, + [SMALL_STATE(4536)] = 168098, + [SMALL_STATE(4537)] = 168122, + [SMALL_STATE(4538)] = 168146, + [SMALL_STATE(4539)] = 168170, + [SMALL_STATE(4540)] = 168194, + [SMALL_STATE(4541)] = 168218, + [SMALL_STATE(4542)] = 168242, + [SMALL_STATE(4543)] = 168264, + [SMALL_STATE(4544)] = 168286, + [SMALL_STATE(4545)] = 168310, + [SMALL_STATE(4546)] = 168334, + [SMALL_STATE(4547)] = 168358, + [SMALL_STATE(4548)] = 168382, + [SMALL_STATE(4549)] = 168406, + [SMALL_STATE(4550)] = 168430, + [SMALL_STATE(4551)] = 168454, + [SMALL_STATE(4552)] = 168476, + [SMALL_STATE(4553)] = 168498, + [SMALL_STATE(4554)] = 168520, + [SMALL_STATE(4555)] = 168562, + [SMALL_STATE(4556)] = 168586, + [SMALL_STATE(4557)] = 168612, + [SMALL_STATE(4558)] = 168636, + [SMALL_STATE(4559)] = 168662, + [SMALL_STATE(4560)] = 168686, + [SMALL_STATE(4561)] = 168710, + [SMALL_STATE(4562)] = 168734, + [SMALL_STATE(4563)] = 168758, + [SMALL_STATE(4564)] = 168780, + [SMALL_STATE(4565)] = 168804, + [SMALL_STATE(4566)] = 168828, + [SMALL_STATE(4567)] = 168850, + [SMALL_STATE(4568)] = 168872, + [SMALL_STATE(4569)] = 168896, + [SMALL_STATE(4570)] = 168920, + [SMALL_STATE(4571)] = 168962, + [SMALL_STATE(4572)] = 169008, + [SMALL_STATE(4573)] = 169054, + [SMALL_STATE(4574)] = 169078, + [SMALL_STATE(4575)] = 169116, + [SMALL_STATE(4576)] = 169138, + [SMALL_STATE(4577)] = 169182, + [SMALL_STATE(4578)] = 169206, + [SMALL_STATE(4579)] = 169230, + [SMALL_STATE(4580)] = 169254, + [SMALL_STATE(4581)] = 169276, + [SMALL_STATE(4582)] = 169322, + [SMALL_STATE(4583)] = 169368, + [SMALL_STATE(4584)] = 169390, + [SMALL_STATE(4585)] = 169416, + [SMALL_STATE(4586)] = 169440, + [SMALL_STATE(4587)] = 169462, + [SMALL_STATE(4588)] = 169486, + [SMALL_STATE(4589)] = 169510, + [SMALL_STATE(4590)] = 169556, + [SMALL_STATE(4591)] = 169602, + [SMALL_STATE(4592)] = 169626, + [SMALL_STATE(4593)] = 169670, + [SMALL_STATE(4594)] = 169692, + [SMALL_STATE(4595)] = 169716, + [SMALL_STATE(4596)] = 169740, + [SMALL_STATE(4597)] = 169764, + [SMALL_STATE(4598)] = 169786, + [SMALL_STATE(4599)] = 169808, + [SMALL_STATE(4600)] = 169830, + [SMALL_STATE(4601)] = 169868, + [SMALL_STATE(4602)] = 169890, + [SMALL_STATE(4603)] = 169914, + [SMALL_STATE(4604)] = 169936, + [SMALL_STATE(4605)] = 169958, + [SMALL_STATE(4606)] = 169980, + [SMALL_STATE(4607)] = 170002, + [SMALL_STATE(4608)] = 170040, + [SMALL_STATE(4609)] = 170072, + [SMALL_STATE(4610)] = 170104, + [SMALL_STATE(4611)] = 170136, + [SMALL_STATE(4612)] = 170168, + [SMALL_STATE(4613)] = 170200, + [SMALL_STATE(4614)] = 170232, + [SMALL_STATE(4615)] = 170264, + [SMALL_STATE(4616)] = 170296, + [SMALL_STATE(4617)] = 170328, + [SMALL_STATE(4618)] = 170360, + [SMALL_STATE(4619)] = 170392, + [SMALL_STATE(4620)] = 170424, + [SMALL_STATE(4621)] = 170456, + [SMALL_STATE(4622)] = 170478, + [SMALL_STATE(4623)] = 170500, + [SMALL_STATE(4624)] = 170524, + [SMALL_STATE(4625)] = 170558, + [SMALL_STATE(4626)] = 170582, + [SMALL_STATE(4627)] = 170606, + [SMALL_STATE(4628)] = 170630, + [SMALL_STATE(4629)] = 170672, + [SMALL_STATE(4630)] = 170696, + [SMALL_STATE(4631)] = 170720, + [SMALL_STATE(4632)] = 170752, + [SMALL_STATE(4633)] = 170776, + [SMALL_STATE(4634)] = 170800, + [SMALL_STATE(4635)] = 170846, + [SMALL_STATE(4636)] = 170870, + [SMALL_STATE(4637)] = 170894, + [SMALL_STATE(4638)] = 170918, + [SMALL_STATE(4639)] = 170942, + [SMALL_STATE(4640)] = 170966, + [SMALL_STATE(4641)] = 170990, + [SMALL_STATE(4642)] = 171014, + [SMALL_STATE(4643)] = 171038, + [SMALL_STATE(4644)] = 171062, + [SMALL_STATE(4645)] = 171086, + [SMALL_STATE(4646)] = 171110, + [SMALL_STATE(4647)] = 171134, + [SMALL_STATE(4648)] = 171158, + [SMALL_STATE(4649)] = 171182, + [SMALL_STATE(4650)] = 171206, + [SMALL_STATE(4651)] = 171230, + [SMALL_STATE(4652)] = 171254, + [SMALL_STATE(4653)] = 171296, + [SMALL_STATE(4654)] = 171320, + [SMALL_STATE(4655)] = 171344, + [SMALL_STATE(4656)] = 171368, + [SMALL_STATE(4657)] = 171392, + [SMALL_STATE(4658)] = 171416, + [SMALL_STATE(4659)] = 171440, + [SMALL_STATE(4660)] = 171464, + [SMALL_STATE(4661)] = 171488, + [SMALL_STATE(4662)] = 171512, + [SMALL_STATE(4663)] = 171536, + [SMALL_STATE(4664)] = 171560, + [SMALL_STATE(4665)] = 171584, + [SMALL_STATE(4666)] = 171608, + [SMALL_STATE(4667)] = 171632, + [SMALL_STATE(4668)] = 171656, + [SMALL_STATE(4669)] = 171680, + [SMALL_STATE(4670)] = 171704, + [SMALL_STATE(4671)] = 171728, + [SMALL_STATE(4672)] = 171752, + [SMALL_STATE(4673)] = 171776, + [SMALL_STATE(4674)] = 171800, + [SMALL_STATE(4675)] = 171824, + [SMALL_STATE(4676)] = 171848, + [SMALL_STATE(4677)] = 171872, + [SMALL_STATE(4678)] = 171896, + [SMALL_STATE(4679)] = 171920, + [SMALL_STATE(4680)] = 171944, + [SMALL_STATE(4681)] = 171968, + [SMALL_STATE(4682)] = 171992, + [SMALL_STATE(4683)] = 172016, + [SMALL_STATE(4684)] = 172040, + [SMALL_STATE(4685)] = 172064, + [SMALL_STATE(4686)] = 172088, + [SMALL_STATE(4687)] = 172112, + [SMALL_STATE(4688)] = 172136, + [SMALL_STATE(4689)] = 172160, + [SMALL_STATE(4690)] = 172184, + [SMALL_STATE(4691)] = 172208, + [SMALL_STATE(4692)] = 172232, + [SMALL_STATE(4693)] = 172256, + [SMALL_STATE(4694)] = 172278, + [SMALL_STATE(4695)] = 172300, + [SMALL_STATE(4696)] = 172324, + [SMALL_STATE(4697)] = 172352, + [SMALL_STATE(4698)] = 172380, + [SMALL_STATE(4699)] = 172408, + [SMALL_STATE(4700)] = 172436, + [SMALL_STATE(4701)] = 172464, + [SMALL_STATE(4702)] = 172492, + [SMALL_STATE(4703)] = 172520, + [SMALL_STATE(4704)] = 172548, + [SMALL_STATE(4705)] = 172576, + [SMALL_STATE(4706)] = 172604, + [SMALL_STATE(4707)] = 172632, + [SMALL_STATE(4708)] = 172660, + [SMALL_STATE(4709)] = 172700, + [SMALL_STATE(4710)] = 172724, + [SMALL_STATE(4711)] = 172763, + [SMALL_STATE(4712)] = 172804, + [SMALL_STATE(4713)] = 172825, + [SMALL_STATE(4714)] = 172846, + [SMALL_STATE(4715)] = 172885, + [SMALL_STATE(4716)] = 172906, + [SMALL_STATE(4717)] = 172939, + [SMALL_STATE(4718)] = 172960, + [SMALL_STATE(4719)] = 172983, + [SMALL_STATE(4720)] = 173004, + [SMALL_STATE(4721)] = 173025, + [SMALL_STATE(4722)] = 173052, + [SMALL_STATE(4723)] = 173087, + [SMALL_STATE(4724)] = 173122, + [SMALL_STATE(4725)] = 173157, + [SMALL_STATE(4726)] = 173192, + [SMALL_STATE(4727)] = 173219, + [SMALL_STATE(4728)] = 173242, + [SMALL_STATE(4729)] = 173265, + [SMALL_STATE(4730)] = 173288, + [SMALL_STATE(4731)] = 173309, + [SMALL_STATE(4732)] = 173332, + [SMALL_STATE(4733)] = 173353, + [SMALL_STATE(4734)] = 173374, + [SMALL_STATE(4735)] = 173395, + [SMALL_STATE(4736)] = 173416, + [SMALL_STATE(4737)] = 173455, + [SMALL_STATE(4738)] = 173482, + [SMALL_STATE(4739)] = 173523, + [SMALL_STATE(4740)] = 173544, + [SMALL_STATE(4741)] = 173565, + [SMALL_STATE(4742)] = 173604, + [SMALL_STATE(4743)] = 173625, + [SMALL_STATE(4744)] = 173646, + [SMALL_STATE(4745)] = 173685, + [SMALL_STATE(4746)] = 173706, + [SMALL_STATE(4747)] = 173727, + [SMALL_STATE(4748)] = 173766, + [SMALL_STATE(4749)] = 173787, + [SMALL_STATE(4750)] = 173828, + [SMALL_STATE(4751)] = 173867, + [SMALL_STATE(4752)] = 173906, + [SMALL_STATE(4753)] = 173929, + [SMALL_STATE(4754)] = 173952, + [SMALL_STATE(4755)] = 173973, + [SMALL_STATE(4756)] = 173994, + [SMALL_STATE(4757)] = 174015, + [SMALL_STATE(4758)] = 174036, + [SMALL_STATE(4759)] = 174059, + [SMALL_STATE(4760)] = 174082, + [SMALL_STATE(4761)] = 174109, + [SMALL_STATE(4762)] = 174130, + [SMALL_STATE(4763)] = 174153, + [SMALL_STATE(4764)] = 174176, + [SMALL_STATE(4765)] = 174197, + [SMALL_STATE(4766)] = 174218, + [SMALL_STATE(4767)] = 174239, + [SMALL_STATE(4768)] = 174268, + [SMALL_STATE(4769)] = 174295, + [SMALL_STATE(4770)] = 174316, + [SMALL_STATE(4771)] = 174337, + [SMALL_STATE(4772)] = 174360, + [SMALL_STATE(4773)] = 174383, + [SMALL_STATE(4774)] = 174406, + [SMALL_STATE(4775)] = 174427, + [SMALL_STATE(4776)] = 174450, + [SMALL_STATE(4777)] = 174481, + [SMALL_STATE(4778)] = 174504, + [SMALL_STATE(4779)] = 174543, + [SMALL_STATE(4780)] = 174570, + [SMALL_STATE(4781)] = 174611, + [SMALL_STATE(4782)] = 174632, + [SMALL_STATE(4783)] = 174671, + [SMALL_STATE(4784)] = 174692, + [SMALL_STATE(4785)] = 174713, + [SMALL_STATE(4786)] = 174754, + [SMALL_STATE(4787)] = 174775, + [SMALL_STATE(4788)] = 174802, + [SMALL_STATE(4789)] = 174823, + [SMALL_STATE(4790)] = 174844, + [SMALL_STATE(4791)] = 174865, + [SMALL_STATE(4792)] = 174886, + [SMALL_STATE(4793)] = 174907, + [SMALL_STATE(4794)] = 174928, + [SMALL_STATE(4795)] = 174949, + [SMALL_STATE(4796)] = 174982, + [SMALL_STATE(4797)] = 175003, + [SMALL_STATE(4798)] = 175024, + [SMALL_STATE(4799)] = 175045, + [SMALL_STATE(4800)] = 175086, + [SMALL_STATE(4801)] = 175107, + [SMALL_STATE(4802)] = 175128, + [SMALL_STATE(4803)] = 175151, + [SMALL_STATE(4804)] = 175174, + [SMALL_STATE(4805)] = 175197, + [SMALL_STATE(4806)] = 175218, + [SMALL_STATE(4807)] = 175251, + [SMALL_STATE(4808)] = 175272, + [SMALL_STATE(4809)] = 175313, + [SMALL_STATE(4810)] = 175352, + [SMALL_STATE(4811)] = 175375, + [SMALL_STATE(4812)] = 175398, + [SMALL_STATE(4813)] = 175421, + [SMALL_STATE(4814)] = 175444, + [SMALL_STATE(4815)] = 175465, + [SMALL_STATE(4816)] = 175486, + [SMALL_STATE(4817)] = 175507, + [SMALL_STATE(4818)] = 175530, + [SMALL_STATE(4819)] = 175553, + [SMALL_STATE(4820)] = 175576, + [SMALL_STATE(4821)] = 175617, + [SMALL_STATE(4822)] = 175640, + [SMALL_STATE(4823)] = 175663, + [SMALL_STATE(4824)] = 175690, + [SMALL_STATE(4825)] = 175713, + [SMALL_STATE(4826)] = 175736, + [SMALL_STATE(4827)] = 175759, + [SMALL_STATE(4828)] = 175782, + [SMALL_STATE(4829)] = 175805, + [SMALL_STATE(4830)] = 175832, + [SMALL_STATE(4831)] = 175859, + [SMALL_STATE(4832)] = 175886, + [SMALL_STATE(4833)] = 175907, + [SMALL_STATE(4834)] = 175928, + [SMALL_STATE(4835)] = 175955, + [SMALL_STATE(4836)] = 175982, + [SMALL_STATE(4837)] = 176009, + [SMALL_STATE(4838)] = 176036, + [SMALL_STATE(4839)] = 176057, + [SMALL_STATE(4840)] = 176078, + [SMALL_STATE(4841)] = 176105, + [SMALL_STATE(4842)] = 176132, + [SMALL_STATE(4843)] = 176159, + [SMALL_STATE(4844)] = 176180, + [SMALL_STATE(4845)] = 176207, + [SMALL_STATE(4846)] = 176228, + [SMALL_STATE(4847)] = 176261, + [SMALL_STATE(4848)] = 176288, + [SMALL_STATE(4849)] = 176315, + [SMALL_STATE(4850)] = 176348, + [SMALL_STATE(4851)] = 176369, + [SMALL_STATE(4852)] = 176408, + [SMALL_STATE(4853)] = 176431, + [SMALL_STATE(4854)] = 176454, + [SMALL_STATE(4855)] = 176475, + [SMALL_STATE(4856)] = 176496, + [SMALL_STATE(4857)] = 176517, + [SMALL_STATE(4858)] = 176544, + [SMALL_STATE(4859)] = 176565, + [SMALL_STATE(4860)] = 176588, + [SMALL_STATE(4861)] = 176611, + [SMALL_STATE(4862)] = 176632, + [SMALL_STATE(4863)] = 176653, + [SMALL_STATE(4864)] = 176694, + [SMALL_STATE(4865)] = 176715, + [SMALL_STATE(4866)] = 176754, + [SMALL_STATE(4867)] = 176793, + [SMALL_STATE(4868)] = 176832, + [SMALL_STATE(4869)] = 176859, + [SMALL_STATE(4870)] = 176880, + [SMALL_STATE(4871)] = 176921, + [SMALL_STATE(4872)] = 176958, + [SMALL_STATE(4873)] = 176997, + [SMALL_STATE(4874)] = 177018, + [SMALL_STATE(4875)] = 177039, + [SMALL_STATE(4876)] = 177066, + [SMALL_STATE(4877)] = 177087, + [SMALL_STATE(4878)] = 177110, + [SMALL_STATE(4879)] = 177133, + [SMALL_STATE(4880)] = 177154, + [SMALL_STATE(4881)] = 177175, + [SMALL_STATE(4882)] = 177212, + [SMALL_STATE(4883)] = 177235, + [SMALL_STATE(4884)] = 177258, + [SMALL_STATE(4885)] = 177281, + [SMALL_STATE(4886)] = 177302, + [SMALL_STATE(4887)] = 177323, + [SMALL_STATE(4888)] = 177346, + [SMALL_STATE(4889)] = 177367, + [SMALL_STATE(4890)] = 177388, + [SMALL_STATE(4891)] = 177424, + [SMALL_STATE(4892)] = 177456, + [SMALL_STATE(4893)] = 177482, + [SMALL_STATE(4894)] = 177508, + [SMALL_STATE(4895)] = 177534, + [SMALL_STATE(4896)] = 177560, + [SMALL_STATE(4897)] = 177584, + [SMALL_STATE(4898)] = 177616, + [SMALL_STATE(4899)] = 177646, + [SMALL_STATE(4900)] = 177682, + [SMALL_STATE(4901)] = 177714, + [SMALL_STATE(4902)] = 177738, + [SMALL_STATE(4903)] = 177768, + [SMALL_STATE(4904)] = 177798, + [SMALL_STATE(4905)] = 177830, + [SMALL_STATE(4906)] = 177854, + [SMALL_STATE(4907)] = 177878, + [SMALL_STATE(4908)] = 177902, + [SMALL_STATE(4909)] = 177932, + [SMALL_STATE(4910)] = 177962, + [SMALL_STATE(4911)] = 177994, + [SMALL_STATE(4912)] = 178032, + [SMALL_STATE(4913)] = 178062, + [SMALL_STATE(4914)] = 178092, + [SMALL_STATE(4915)] = 178116, + [SMALL_STATE(4916)] = 178148, + [SMALL_STATE(4917)] = 178172, + [SMALL_STATE(4918)] = 178210, + [SMALL_STATE(4919)] = 178236, + [SMALL_STATE(4920)] = 178262, + [SMALL_STATE(4921)] = 178300, + [SMALL_STATE(4922)] = 178326, + [SMALL_STATE(4923)] = 178350, + [SMALL_STATE(4924)] = 178386, + [SMALL_STATE(4925)] = 178416, + [SMALL_STATE(4926)] = 178442, + [SMALL_STATE(4927)] = 178466, + [SMALL_STATE(4928)] = 178504, + [SMALL_STATE(4929)] = 178530, + [SMALL_STATE(4930)] = 178566, + [SMALL_STATE(4931)] = 178590, + [SMALL_STATE(4932)] = 178622, + [SMALL_STATE(4933)] = 178654, + [SMALL_STATE(4934)] = 178686, + [SMALL_STATE(4935)] = 178712, + [SMALL_STATE(4936)] = 178744, + [SMALL_STATE(4937)] = 178780, + [SMALL_STATE(4938)] = 178816, + [SMALL_STATE(4939)] = 178838, + [SMALL_STATE(4940)] = 178874, + [SMALL_STATE(4941)] = 178904, + [SMALL_STATE(4942)] = 178933, + [SMALL_STATE(4943)] = 178958, + [SMALL_STATE(4944)] = 178985, + [SMALL_STATE(4945)] = 179010, + [SMALL_STATE(4946)] = 179031, + [SMALL_STATE(4947)] = 179066, + [SMALL_STATE(4948)] = 179101, + [SMALL_STATE(4949)] = 179130, + [SMALL_STATE(4950)] = 179165, + [SMALL_STATE(4951)] = 179200, + [SMALL_STATE(4952)] = 179229, + [SMALL_STATE(4953)] = 179254, + [SMALL_STATE(4954)] = 179289, + [SMALL_STATE(4955)] = 179324, + [SMALL_STATE(4956)] = 179355, + [SMALL_STATE(4957)] = 179384, + [SMALL_STATE(4958)] = 179405, + [SMALL_STATE(4959)] = 179430, + [SMALL_STATE(4960)] = 179451, + [SMALL_STATE(4961)] = 179486, + [SMALL_STATE(4962)] = 179521, + [SMALL_STATE(4963)] = 179542, + [SMALL_STATE(4964)] = 179577, + [SMALL_STATE(4965)] = 179606, + [SMALL_STATE(4966)] = 179635, + [SMALL_STATE(4967)] = 179664, + [SMALL_STATE(4968)] = 179685, + [SMALL_STATE(4969)] = 179706, + [SMALL_STATE(4970)] = 179735, + [SMALL_STATE(4971)] = 179766, + [SMALL_STATE(4972)] = 179801, + [SMALL_STATE(4973)] = 179822, + [SMALL_STATE(4974)] = 179857, + [SMALL_STATE(4975)] = 179892, + [SMALL_STATE(4976)] = 179927, + [SMALL_STATE(4977)] = 179962, + [SMALL_STATE(4978)] = 179997, + [SMALL_STATE(4979)] = 180032, + [SMALL_STATE(4980)] = 180067, + [SMALL_STATE(4981)] = 180102, + [SMALL_STATE(4982)] = 180137, + [SMALL_STATE(4983)] = 180172, + [SMALL_STATE(4984)] = 180207, + [SMALL_STATE(4985)] = 180230, + [SMALL_STATE(4986)] = 180265, + [SMALL_STATE(4987)] = 180286, + [SMALL_STATE(4988)] = 180321, + [SMALL_STATE(4989)] = 180356, + [SMALL_STATE(4990)] = 180391, + [SMALL_STATE(4991)] = 180426, + [SMALL_STATE(4992)] = 180447, + [SMALL_STATE(4993)] = 180468, + [SMALL_STATE(4994)] = 180503, + [SMALL_STATE(4995)] = 180538, + [SMALL_STATE(4996)] = 180573, + [SMALL_STATE(4997)] = 180602, + [SMALL_STATE(4998)] = 180637, + [SMALL_STATE(4999)] = 180672, + [SMALL_STATE(5000)] = 180701, + [SMALL_STATE(5001)] = 180730, + [SMALL_STATE(5002)] = 180759, + [SMALL_STATE(5003)] = 180794, + [SMALL_STATE(5004)] = 180829, + [SMALL_STATE(5005)] = 180858, + [SMALL_STATE(5006)] = 180887, + [SMALL_STATE(5007)] = 180916, + [SMALL_STATE(5008)] = 180945, + [SMALL_STATE(5009)] = 180978, + [SMALL_STATE(5010)] = 181013, + [SMALL_STATE(5011)] = 181048, + [SMALL_STATE(5012)] = 181069, + [SMALL_STATE(5013)] = 181104, + [SMALL_STATE(5014)] = 181139, + [SMALL_STATE(5015)] = 181174, + [SMALL_STATE(5016)] = 181195, + [SMALL_STATE(5017)] = 181230, + [SMALL_STATE(5018)] = 181265, + [SMALL_STATE(5019)] = 181286, + [SMALL_STATE(5020)] = 181321, + [SMALL_STATE(5021)] = 181356, + [SMALL_STATE(5022)] = 181377, + [SMALL_STATE(5023)] = 181412, + [SMALL_STATE(5024)] = 181439, + [SMALL_STATE(5025)] = 181460, + [SMALL_STATE(5026)] = 181495, + [SMALL_STATE(5027)] = 181528, + [SMALL_STATE(5028)] = 181557, + [SMALL_STATE(5029)] = 181578, + [SMALL_STATE(5030)] = 181611, + [SMALL_STATE(5031)] = 181632, + [SMALL_STATE(5032)] = 181655, + [SMALL_STATE(5033)] = 181680, + [SMALL_STATE(5034)] = 181709, + [SMALL_STATE(5035)] = 181730, + [SMALL_STATE(5036)] = 181765, + [SMALL_STATE(5037)] = 181786, + [SMALL_STATE(5038)] = 181813, + [SMALL_STATE(5039)] = 181838, + [SMALL_STATE(5040)] = 181859, + [SMALL_STATE(5041)] = 181894, + [SMALL_STATE(5042)] = 181915, + [SMALL_STATE(5043)] = 181950, + [SMALL_STATE(5044)] = 181973, + [SMALL_STATE(5045)] = 181994, + [SMALL_STATE(5046)] = 182015, + [SMALL_STATE(5047)] = 182050, + [SMALL_STATE(5048)] = 182073, + [SMALL_STATE(5049)] = 182098, + [SMALL_STATE(5050)] = 182119, + [SMALL_STATE(5051)] = 182140, + [SMALL_STATE(5052)] = 182161, + [SMALL_STATE(5053)] = 182182, + [SMALL_STATE(5054)] = 182213, + [SMALL_STATE(5055)] = 182234, + [SMALL_STATE(5056)] = 182263, + [SMALL_STATE(5057)] = 182284, + [SMALL_STATE(5058)] = 182313, + [SMALL_STATE(5059)] = 182342, + [SMALL_STATE(5060)] = 182371, + [SMALL_STATE(5061)] = 182392, + [SMALL_STATE(5062)] = 182413, + [SMALL_STATE(5063)] = 182448, + [SMALL_STATE(5064)] = 182483, + [SMALL_STATE(5065)] = 182504, + [SMALL_STATE(5066)] = 182525, + [SMALL_STATE(5067)] = 182548, + [SMALL_STATE(5068)] = 182569, + [SMALL_STATE(5069)] = 182602, + [SMALL_STATE(5070)] = 182623, + [SMALL_STATE(5071)] = 182654, + [SMALL_STATE(5072)] = 182679, + [SMALL_STATE(5073)] = 182700, + [SMALL_STATE(5074)] = 182735, + [SMALL_STATE(5075)] = 182765, + [SMALL_STATE(5076)] = 182787, + [SMALL_STATE(5077)] = 182809, + [SMALL_STATE(5078)] = 182833, + [SMALL_STATE(5079)] = 182853, + [SMALL_STATE(5080)] = 182881, + [SMALL_STATE(5081)] = 182905, + [SMALL_STATE(5082)] = 182931, + [SMALL_STATE(5083)] = 182961, + [SMALL_STATE(5084)] = 182991, + [SMALL_STATE(5085)] = 183021, + [SMALL_STATE(5086)] = 183051, + [SMALL_STATE(5087)] = 183081, + [SMALL_STATE(5088)] = 183111, + [SMALL_STATE(5089)] = 183133, + [SMALL_STATE(5090)] = 183163, + [SMALL_STATE(5091)] = 183193, + [SMALL_STATE(5092)] = 183213, + [SMALL_STATE(5093)] = 183243, + [SMALL_STATE(5094)] = 183273, + [SMALL_STATE(5095)] = 183303, + [SMALL_STATE(5096)] = 183325, + [SMALL_STATE(5097)] = 183345, + [SMALL_STATE(5098)] = 183365, + [SMALL_STATE(5099)] = 183395, + [SMALL_STATE(5100)] = 183425, + [SMALL_STATE(5101)] = 183447, + [SMALL_STATE(5102)] = 183469, + [SMALL_STATE(5103)] = 183499, + [SMALL_STATE(5104)] = 183529, + [SMALL_STATE(5105)] = 183553, + [SMALL_STATE(5106)] = 183583, + [SMALL_STATE(5107)] = 183613, + [SMALL_STATE(5108)] = 183643, + [SMALL_STATE(5109)] = 183673, + [SMALL_STATE(5110)] = 183703, + [SMALL_STATE(5111)] = 183733, + [SMALL_STATE(5112)] = 183761, + [SMALL_STATE(5113)] = 183791, + [SMALL_STATE(5114)] = 183821, + [SMALL_STATE(5115)] = 183851, + [SMALL_STATE(5116)] = 183871, + [SMALL_STATE(5117)] = 183901, + [SMALL_STATE(5118)] = 183931, + [SMALL_STATE(5119)] = 183961, + [SMALL_STATE(5120)] = 183991, + [SMALL_STATE(5121)] = 184021, + [SMALL_STATE(5122)] = 184051, + [SMALL_STATE(5123)] = 184081, + [SMALL_STATE(5124)] = 184111, + [SMALL_STATE(5125)] = 184141, + [SMALL_STATE(5126)] = 184171, + [SMALL_STATE(5127)] = 184191, + [SMALL_STATE(5128)] = 184221, + [SMALL_STATE(5129)] = 184251, + [SMALL_STATE(5130)] = 184281, + [SMALL_STATE(5131)] = 184311, + [SMALL_STATE(5132)] = 184341, + [SMALL_STATE(5133)] = 184365, + [SMALL_STATE(5134)] = 184385, + [SMALL_STATE(5135)] = 184409, + [SMALL_STATE(5136)] = 184439, + [SMALL_STATE(5137)] = 184459, + [SMALL_STATE(5138)] = 184489, + [SMALL_STATE(5139)] = 184509, + [SMALL_STATE(5140)] = 184529, + [SMALL_STATE(5141)] = 184553, + [SMALL_STATE(5142)] = 184583, + [SMALL_STATE(5143)] = 184605, + [SMALL_STATE(5144)] = 184625, + [SMALL_STATE(5145)] = 184655, + [SMALL_STATE(5146)] = 184685, + [SMALL_STATE(5147)] = 184713, + [SMALL_STATE(5148)] = 184733, + [SMALL_STATE(5149)] = 184763, + [SMALL_STATE(5150)] = 184783, + [SMALL_STATE(5151)] = 184807, + [SMALL_STATE(5152)] = 184837, + [SMALL_STATE(5153)] = 184867, + [SMALL_STATE(5154)] = 184895, + [SMALL_STATE(5155)] = 184925, + [SMALL_STATE(5156)] = 184955, + [SMALL_STATE(5157)] = 184985, + [SMALL_STATE(5158)] = 185015, + [SMALL_STATE(5159)] = 185045, + [SMALL_STATE(5160)] = 185073, + [SMALL_STATE(5161)] = 185101, + [SMALL_STATE(5162)] = 185131, + [SMALL_STATE(5163)] = 185153, + [SMALL_STATE(5164)] = 185175, + [SMALL_STATE(5165)] = 185205, + [SMALL_STATE(5166)] = 185235, + [SMALL_STATE(5167)] = 185259, + [SMALL_STATE(5168)] = 185289, + [SMALL_STATE(5169)] = 185313, + [SMALL_STATE(5170)] = 185343, + [SMALL_STATE(5171)] = 185373, + [SMALL_STATE(5172)] = 185401, + [SMALL_STATE(5173)] = 185429, + [SMALL_STATE(5174)] = 185455, + [SMALL_STATE(5175)] = 185477, + [SMALL_STATE(5176)] = 185497, + [SMALL_STATE(5177)] = 185527, + [SMALL_STATE(5178)] = 185554, + [SMALL_STATE(5179)] = 185579, + [SMALL_STATE(5180)] = 185606, + [SMALL_STATE(5181)] = 185627, + [SMALL_STATE(5182)] = 185654, + [SMALL_STATE(5183)] = 185679, + [SMALL_STATE(5184)] = 185702, + [SMALL_STATE(5185)] = 185727, + [SMALL_STATE(5186)] = 185752, + [SMALL_STATE(5187)] = 185777, + [SMALL_STATE(5188)] = 185802, + [SMALL_STATE(5189)] = 185827, + [SMALL_STATE(5190)] = 185852, + [SMALL_STATE(5191)] = 185877, + [SMALL_STATE(5192)] = 185902, + [SMALL_STATE(5193)] = 185929, + [SMALL_STATE(5194)] = 185954, + [SMALL_STATE(5195)] = 185981, + [SMALL_STATE(5196)] = 186006, + [SMALL_STATE(5197)] = 186031, + [SMALL_STATE(5198)] = 186056, + [SMALL_STATE(5199)] = 186081, + [SMALL_STATE(5200)] = 186106, + [SMALL_STATE(5201)] = 186133, + [SMALL_STATE(5202)] = 186154, + [SMALL_STATE(5203)] = 186179, + [SMALL_STATE(5204)] = 186204, + [SMALL_STATE(5205)] = 186229, + [SMALL_STATE(5206)] = 186254, + [SMALL_STATE(5207)] = 186279, + [SMALL_STATE(5208)] = 186304, + [SMALL_STATE(5209)] = 186331, + [SMALL_STATE(5210)] = 186356, + [SMALL_STATE(5211)] = 186381, + [SMALL_STATE(5212)] = 186400, + [SMALL_STATE(5213)] = 186425, + [SMALL_STATE(5214)] = 186450, + [SMALL_STATE(5215)] = 186475, + [SMALL_STATE(5216)] = 186502, + [SMALL_STATE(5217)] = 186527, + [SMALL_STATE(5218)] = 186552, + [SMALL_STATE(5219)] = 186577, + [SMALL_STATE(5220)] = 186602, + [SMALL_STATE(5221)] = 186629, + [SMALL_STATE(5222)] = 186654, + [SMALL_STATE(5223)] = 186675, + [SMALL_STATE(5224)] = 186700, + [SMALL_STATE(5225)] = 186725, + [SMALL_STATE(5226)] = 186752, + [SMALL_STATE(5227)] = 186777, + [SMALL_STATE(5228)] = 186802, + [SMALL_STATE(5229)] = 186829, + [SMALL_STATE(5230)] = 186848, + [SMALL_STATE(5231)] = 186875, + [SMALL_STATE(5232)] = 186902, + [SMALL_STATE(5233)] = 186929, + [SMALL_STATE(5234)] = 186956, + [SMALL_STATE(5235)] = 186983, + [SMALL_STATE(5236)] = 187008, + [SMALL_STATE(5237)] = 187027, + [SMALL_STATE(5238)] = 187054, + [SMALL_STATE(5239)] = 187075, + [SMALL_STATE(5240)] = 187100, + [SMALL_STATE(5241)] = 187127, + [SMALL_STATE(5242)] = 187148, + [SMALL_STATE(5243)] = 187175, + [SMALL_STATE(5244)] = 187202, + [SMALL_STATE(5245)] = 187229, + [SMALL_STATE(5246)] = 187256, + [SMALL_STATE(5247)] = 187283, + [SMALL_STATE(5248)] = 187310, + [SMALL_STATE(5249)] = 187337, + [SMALL_STATE(5250)] = 187364, + [SMALL_STATE(5251)] = 187391, + [SMALL_STATE(5252)] = 187418, + [SMALL_STATE(5253)] = 187445, + [SMALL_STATE(5254)] = 187472, + [SMALL_STATE(5255)] = 187499, + [SMALL_STATE(5256)] = 187524, + [SMALL_STATE(5257)] = 187549, + [SMALL_STATE(5258)] = 187574, + [SMALL_STATE(5259)] = 187599, + [SMALL_STATE(5260)] = 187624, + [SMALL_STATE(5261)] = 187651, + [SMALL_STATE(5262)] = 187678, + [SMALL_STATE(5263)] = 187697, + [SMALL_STATE(5264)] = 187722, + [SMALL_STATE(5265)] = 187749, + [SMALL_STATE(5266)] = 187768, + [SMALL_STATE(5267)] = 187793, + [SMALL_STATE(5268)] = 187812, + [SMALL_STATE(5269)] = 187839, + [SMALL_STATE(5270)] = 187860, + [SMALL_STATE(5271)] = 187885, + [SMALL_STATE(5272)] = 187906, + [SMALL_STATE(5273)] = 187931, + [SMALL_STATE(5274)] = 187952, + [SMALL_STATE(5275)] = 187981, + [SMALL_STATE(5276)] = 188000, + [SMALL_STATE(5277)] = 188025, + [SMALL_STATE(5278)] = 188052, + [SMALL_STATE(5279)] = 188073, + [SMALL_STATE(5280)] = 188100, + [SMALL_STATE(5281)] = 188121, + [SMALL_STATE(5282)] = 188146, + [SMALL_STATE(5283)] = 188169, + [SMALL_STATE(5284)] = 188188, + [SMALL_STATE(5285)] = 188207, + [SMALL_STATE(5286)] = 188232, + [SMALL_STATE(5287)] = 188259, + [SMALL_STATE(5288)] = 188280, + [SMALL_STATE(5289)] = 188307, + [SMALL_STATE(5290)] = 188330, + [SMALL_STATE(5291)] = 188355, + [SMALL_STATE(5292)] = 188380, + [SMALL_STATE(5293)] = 188399, + [SMALL_STATE(5294)] = 188426, + [SMALL_STATE(5295)] = 188445, + [SMALL_STATE(5296)] = 188470, + [SMALL_STATE(5297)] = 188495, + [SMALL_STATE(5298)] = 188520, + [SMALL_STATE(5299)] = 188545, + [SMALL_STATE(5300)] = 188572, + [SMALL_STATE(5301)] = 188597, + [SMALL_STATE(5302)] = 188624, + [SMALL_STATE(5303)] = 188649, + [SMALL_STATE(5304)] = 188674, + [SMALL_STATE(5305)] = 188699, + [SMALL_STATE(5306)] = 188724, + [SMALL_STATE(5307)] = 188749, + [SMALL_STATE(5308)] = 188768, + [SMALL_STATE(5309)] = 188793, + [SMALL_STATE(5310)] = 188818, + [SMALL_STATE(5311)] = 188839, + [SMALL_STATE(5312)] = 188858, + [SMALL_STATE(5313)] = 188885, + [SMALL_STATE(5314)] = 188912, + [SMALL_STATE(5315)] = 188933, + [SMALL_STATE(5316)] = 188958, + [SMALL_STATE(5317)] = 188985, + [SMALL_STATE(5318)] = 189010, + [SMALL_STATE(5319)] = 189029, + [SMALL_STATE(5320)] = 189048, + [SMALL_STATE(5321)] = 189069, + [SMALL_STATE(5322)] = 189092, + [SMALL_STATE(5323)] = 189119, + [SMALL_STATE(5324)] = 189138, + [SMALL_STATE(5325)] = 189157, + [SMALL_STATE(5326)] = 189178, + [SMALL_STATE(5327)] = 189203, + [SMALL_STATE(5328)] = 189228, + [SMALL_STATE(5329)] = 189249, + [SMALL_STATE(5330)] = 189274, + [SMALL_STATE(5331)] = 189299, + [SMALL_STATE(5332)] = 189324, + [SMALL_STATE(5333)] = 189349, + [SMALL_STATE(5334)] = 189376, + [SMALL_STATE(5335)] = 189401, + [SMALL_STATE(5336)] = 189428, + [SMALL_STATE(5337)] = 189455, + [SMALL_STATE(5338)] = 189474, + [SMALL_STATE(5339)] = 189499, + [SMALL_STATE(5340)] = 189518, + [SMALL_STATE(5341)] = 189537, + [SMALL_STATE(5342)] = 189556, + [SMALL_STATE(5343)] = 189575, + [SMALL_STATE(5344)] = 189593, + [SMALL_STATE(5345)] = 189619, + [SMALL_STATE(5346)] = 189635, + [SMALL_STATE(5347)] = 189661, + [SMALL_STATE(5348)] = 189687, + [SMALL_STATE(5349)] = 189709, + [SMALL_STATE(5350)] = 189735, + [SMALL_STATE(5351)] = 189753, + [SMALL_STATE(5352)] = 189779, + [SMALL_STATE(5353)] = 189807, + [SMALL_STATE(5354)] = 189833, + [SMALL_STATE(5355)] = 189853, + [SMALL_STATE(5356)] = 189879, + [SMALL_STATE(5357)] = 189897, + [SMALL_STATE(5358)] = 189923, + [SMALL_STATE(5359)] = 189941, + [SMALL_STATE(5360)] = 189961, + [SMALL_STATE(5361)] = 189977, + [SMALL_STATE(5362)] = 189999, + [SMALL_STATE(5363)] = 190017, + [SMALL_STATE(5364)] = 190041, + [SMALL_STATE(5365)] = 190063, + [SMALL_STATE(5366)] = 190085, + [SMALL_STATE(5367)] = 190103, + [SMALL_STATE(5368)] = 190123, + [SMALL_STATE(5369)] = 190145, + [SMALL_STATE(5370)] = 190163, + [SMALL_STATE(5371)] = 190181, + [SMALL_STATE(5372)] = 190207, + [SMALL_STATE(5373)] = 190229, + [SMALL_STATE(5374)] = 190247, + [SMALL_STATE(5375)] = 190269, + [SMALL_STATE(5376)] = 190291, + [SMALL_STATE(5377)] = 190317, + [SMALL_STATE(5378)] = 190335, + [SMALL_STATE(5379)] = 190355, + [SMALL_STATE(5380)] = 190373, + [SMALL_STATE(5381)] = 190399, + [SMALL_STATE(5382)] = 190425, + [SMALL_STATE(5383)] = 190443, + [SMALL_STATE(5384)] = 190471, + [SMALL_STATE(5385)] = 190489, + [SMALL_STATE(5386)] = 190507, + [SMALL_STATE(5387)] = 190525, + [SMALL_STATE(5388)] = 190543, + [SMALL_STATE(5389)] = 190569, + [SMALL_STATE(5390)] = 190593, + [SMALL_STATE(5391)] = 190611, + [SMALL_STATE(5392)] = 190637, + [SMALL_STATE(5393)] = 190655, + [SMALL_STATE(5394)] = 190675, + [SMALL_STATE(5395)] = 190695, + [SMALL_STATE(5396)] = 190719, + [SMALL_STATE(5397)] = 190745, + [SMALL_STATE(5398)] = 190763, + [SMALL_STATE(5399)] = 190789, + [SMALL_STATE(5400)] = 190811, + [SMALL_STATE(5401)] = 190831, + [SMALL_STATE(5402)] = 190857, + [SMALL_STATE(5403)] = 190877, + [SMALL_STATE(5404)] = 190903, + [SMALL_STATE(5405)] = 190923, + [SMALL_STATE(5406)] = 190945, + [SMALL_STATE(5407)] = 190969, + [SMALL_STATE(5408)] = 190991, + [SMALL_STATE(5409)] = 191009, + [SMALL_STATE(5410)] = 191027, + [SMALL_STATE(5411)] = 191047, + [SMALL_STATE(5412)] = 191065, + [SMALL_STATE(5413)] = 191091, + [SMALL_STATE(5414)] = 191115, + [SMALL_STATE(5415)] = 191141, + [SMALL_STATE(5416)] = 191167, + [SMALL_STATE(5417)] = 191185, + [SMALL_STATE(5418)] = 191211, + [SMALL_STATE(5419)] = 191229, + [SMALL_STATE(5420)] = 191247, + [SMALL_STATE(5421)] = 191273, + [SMALL_STATE(5422)] = 191297, + [SMALL_STATE(5423)] = 191323, + [SMALL_STATE(5424)] = 191345, + [SMALL_STATE(5425)] = 191363, + [SMALL_STATE(5426)] = 191381, + [SMALL_STATE(5427)] = 191399, + [SMALL_STATE(5428)] = 191421, + [SMALL_STATE(5429)] = 191447, + [SMALL_STATE(5430)] = 191465, + [SMALL_STATE(5431)] = 191485, + [SMALL_STATE(5432)] = 191503, + [SMALL_STATE(5433)] = 191521, + [SMALL_STATE(5434)] = 191547, + [SMALL_STATE(5435)] = 191565, + [SMALL_STATE(5436)] = 191584, + [SMALL_STATE(5437)] = 191609, + [SMALL_STATE(5438)] = 191634, + [SMALL_STATE(5439)] = 191649, + [SMALL_STATE(5440)] = 191672, + [SMALL_STATE(5441)] = 191697, + [SMALL_STATE(5442)] = 191720, + [SMALL_STATE(5443)] = 191745, + [SMALL_STATE(5444)] = 191770, + [SMALL_STATE(5445)] = 191787, + [SMALL_STATE(5446)] = 191810, + [SMALL_STATE(5447)] = 191835, + [SMALL_STATE(5448)] = 191858, + [SMALL_STATE(5449)] = 191883, + [SMALL_STATE(5450)] = 191908, + [SMALL_STATE(5451)] = 191931, + [SMALL_STATE(5452)] = 191956, + [SMALL_STATE(5453)] = 191981, + [SMALL_STATE(5454)] = 192004, + [SMALL_STATE(5455)] = 192021, + [SMALL_STATE(5456)] = 192038, + [SMALL_STATE(5457)] = 192063, + [SMALL_STATE(5458)] = 192080, + [SMALL_STATE(5459)] = 192105, + [SMALL_STATE(5460)] = 192130, + [SMALL_STATE(5461)] = 192153, + [SMALL_STATE(5462)] = 192172, + [SMALL_STATE(5463)] = 192191, + [SMALL_STATE(5464)] = 192214, + [SMALL_STATE(5465)] = 192235, + [SMALL_STATE(5466)] = 192258, + [SMALL_STATE(5467)] = 192283, + [SMALL_STATE(5468)] = 192308, + [SMALL_STATE(5469)] = 192331, + [SMALL_STATE(5470)] = 192356, + [SMALL_STATE(5471)] = 192375, + [SMALL_STATE(5472)] = 192394, + [SMALL_STATE(5473)] = 192417, + [SMALL_STATE(5474)] = 192434, + [SMALL_STATE(5475)] = 192451, + [SMALL_STATE(5476)] = 192474, + [SMALL_STATE(5477)] = 192491, + [SMALL_STATE(5478)] = 192510, + [SMALL_STATE(5479)] = 192527, + [SMALL_STATE(5480)] = 192544, + [SMALL_STATE(5481)] = 192565, + [SMALL_STATE(5482)] = 192582, + [SMALL_STATE(5483)] = 192599, + [SMALL_STATE(5484)] = 192620, + [SMALL_STATE(5485)] = 192637, + [SMALL_STATE(5486)] = 192658, + [SMALL_STATE(5487)] = 192683, + [SMALL_STATE(5488)] = 192708, + [SMALL_STATE(5489)] = 192733, + [SMALL_STATE(5490)] = 192756, + [SMALL_STATE(5491)] = 192773, + [SMALL_STATE(5492)] = 192790, + [SMALL_STATE(5493)] = 192807, + [SMALL_STATE(5494)] = 192832, + [SMALL_STATE(5495)] = 192849, + [SMALL_STATE(5496)] = 192874, + [SMALL_STATE(5497)] = 192897, + [SMALL_STATE(5498)] = 192914, + [SMALL_STATE(5499)] = 192937, + [SMALL_STATE(5500)] = 192954, + [SMALL_STATE(5501)] = 192971, + [SMALL_STATE(5502)] = 192994, + [SMALL_STATE(5503)] = 193019, + [SMALL_STATE(5504)] = 193038, + [SMALL_STATE(5505)] = 193063, + [SMALL_STATE(5506)] = 193080, + [SMALL_STATE(5507)] = 193097, + [SMALL_STATE(5508)] = 193114, + [SMALL_STATE(5509)] = 193139, + [SMALL_STATE(5510)] = 193156, + [SMALL_STATE(5511)] = 193177, + [SMALL_STATE(5512)] = 193202, + [SMALL_STATE(5513)] = 193227, + [SMALL_STATE(5514)] = 193246, + [SMALL_STATE(5515)] = 193263, + [SMALL_STATE(5516)] = 193280, + [SMALL_STATE(5517)] = 193299, + [SMALL_STATE(5518)] = 193318, + [SMALL_STATE(5519)] = 193337, + [SMALL_STATE(5520)] = 193362, + [SMALL_STATE(5521)] = 193379, + [SMALL_STATE(5522)] = 193396, + [SMALL_STATE(5523)] = 193413, + [SMALL_STATE(5524)] = 193436, + [SMALL_STATE(5525)] = 193461, + [SMALL_STATE(5526)] = 193486, + [SMALL_STATE(5527)] = 193503, + [SMALL_STATE(5528)] = 193526, + [SMALL_STATE(5529)] = 193551, + [SMALL_STATE(5530)] = 193574, + [SMALL_STATE(5531)] = 193591, + [SMALL_STATE(5532)] = 193608, + [SMALL_STATE(5533)] = 193633, + [SMALL_STATE(5534)] = 193658, + [SMALL_STATE(5535)] = 193677, + [SMALL_STATE(5536)] = 193698, + [SMALL_STATE(5537)] = 193715, + [SMALL_STATE(5538)] = 193740, + [SMALL_STATE(5539)] = 193763, + [SMALL_STATE(5540)] = 193786, + [SMALL_STATE(5541)] = 193803, + [SMALL_STATE(5542)] = 193822, + [SMALL_STATE(5543)] = 193839, + [SMALL_STATE(5544)] = 193860, + [SMALL_STATE(5545)] = 193877, + [SMALL_STATE(5546)] = 193898, + [SMALL_STATE(5547)] = 193915, + [SMALL_STATE(5548)] = 193932, + [SMALL_STATE(5549)] = 193951, + [SMALL_STATE(5550)] = 193968, + [SMALL_STATE(5551)] = 193991, + [SMALL_STATE(5552)] = 194016, + [SMALL_STATE(5553)] = 194033, + [SMALL_STATE(5554)] = 194058, + [SMALL_STATE(5555)] = 194075, + [SMALL_STATE(5556)] = 194100, + [SMALL_STATE(5557)] = 194119, + [SMALL_STATE(5558)] = 194138, + [SMALL_STATE(5559)] = 194157, + [SMALL_STATE(5560)] = 194176, + [SMALL_STATE(5561)] = 194195, + [SMALL_STATE(5562)] = 194216, + [SMALL_STATE(5563)] = 194233, + [SMALL_STATE(5564)] = 194258, + [SMALL_STATE(5565)] = 194283, + [SMALL_STATE(5566)] = 194300, + [SMALL_STATE(5567)] = 194325, + [SMALL_STATE(5568)] = 194346, + [SMALL_STATE(5569)] = 194369, + [SMALL_STATE(5570)] = 194390, + [SMALL_STATE(5571)] = 194409, + [SMALL_STATE(5572)] = 194434, + [SMALL_STATE(5573)] = 194455, + [SMALL_STATE(5574)] = 194480, + [SMALL_STATE(5575)] = 194497, + [SMALL_STATE(5576)] = 194518, + [SMALL_STATE(5577)] = 194543, + [SMALL_STATE(5578)] = 194568, + [SMALL_STATE(5579)] = 194593, + [SMALL_STATE(5580)] = 194618, + [SMALL_STATE(5581)] = 194635, + [SMALL_STATE(5582)] = 194656, + [SMALL_STATE(5583)] = 194681, + [SMALL_STATE(5584)] = 194704, + [SMALL_STATE(5585)] = 194729, + [SMALL_STATE(5586)] = 194746, + [SMALL_STATE(5587)] = 194767, + [SMALL_STATE(5588)] = 194790, + [SMALL_STATE(5589)] = 194807, + [SMALL_STATE(5590)] = 194824, + [SMALL_STATE(5591)] = 194845, + [SMALL_STATE(5592)] = 194870, + [SMALL_STATE(5593)] = 194895, + [SMALL_STATE(5594)] = 194920, + [SMALL_STATE(5595)] = 194943, + [SMALL_STATE(5596)] = 194968, + [SMALL_STATE(5597)] = 194993, + [SMALL_STATE(5598)] = 195014, + [SMALL_STATE(5599)] = 195037, + [SMALL_STATE(5600)] = 195062, + [SMALL_STATE(5601)] = 195083, + [SMALL_STATE(5602)] = 195106, + [SMALL_STATE(5603)] = 195131, + [SMALL_STATE(5604)] = 195148, + [SMALL_STATE(5605)] = 195169, + [SMALL_STATE(5606)] = 195186, + [SMALL_STATE(5607)] = 195207, + [SMALL_STATE(5608)] = 195232, + [SMALL_STATE(5609)] = 195249, + [SMALL_STATE(5610)] = 195274, + [SMALL_STATE(5611)] = 195295, + [SMALL_STATE(5612)] = 195318, + [SMALL_STATE(5613)] = 195343, + [SMALL_STATE(5614)] = 195368, + [SMALL_STATE(5615)] = 195389, + [SMALL_STATE(5616)] = 195414, + [SMALL_STATE(5617)] = 195439, + [SMALL_STATE(5618)] = 195456, + [SMALL_STATE(5619)] = 195473, + [SMALL_STATE(5620)] = 195498, + [SMALL_STATE(5621)] = 195523, + [SMALL_STATE(5622)] = 195544, + [SMALL_STATE(5623)] = 195561, + [SMALL_STATE(5624)] = 195584, + [SMALL_STATE(5625)] = 195607, + [SMALL_STATE(5626)] = 195626, + [SMALL_STATE(5627)] = 195647, + [SMALL_STATE(5628)] = 195668, + [SMALL_STATE(5629)] = 195693, + [SMALL_STATE(5630)] = 195718, + [SMALL_STATE(5631)] = 195739, + [SMALL_STATE(5632)] = 195764, + [SMALL_STATE(5633)] = 195785, + [SMALL_STATE(5634)] = 195808, + [SMALL_STATE(5635)] = 195831, + [SMALL_STATE(5636)] = 195856, + [SMALL_STATE(5637)] = 195877, + [SMALL_STATE(5638)] = 195902, + [SMALL_STATE(5639)] = 195923, + [SMALL_STATE(5640)] = 195948, + [SMALL_STATE(5641)] = 195973, + [SMALL_STATE(5642)] = 195998, + [SMALL_STATE(5643)] = 196021, + [SMALL_STATE(5644)] = 196046, + [SMALL_STATE(5645)] = 196071, + [SMALL_STATE(5646)] = 196093, + [SMALL_STATE(5647)] = 196113, + [SMALL_STATE(5648)] = 196135, + [SMALL_STATE(5649)] = 196151, + [SMALL_STATE(5650)] = 196173, + [SMALL_STATE(5651)] = 196195, + [SMALL_STATE(5652)] = 196215, + [SMALL_STATE(5653)] = 196237, + [SMALL_STATE(5654)] = 196259, + [SMALL_STATE(5655)] = 196281, + [SMALL_STATE(5656)] = 196303, + [SMALL_STATE(5657)] = 196323, + [SMALL_STATE(5658)] = 196345, + [SMALL_STATE(5659)] = 196367, + [SMALL_STATE(5660)] = 196383, + [SMALL_STATE(5661)] = 196405, + [SMALL_STATE(5662)] = 196427, + [SMALL_STATE(5663)] = 196449, + [SMALL_STATE(5664)] = 196471, + [SMALL_STATE(5665)] = 196491, + [SMALL_STATE(5666)] = 196513, + [SMALL_STATE(5667)] = 196535, + [SMALL_STATE(5668)] = 196549, + [SMALL_STATE(5669)] = 196563, + [SMALL_STATE(5670)] = 196577, + [SMALL_STATE(5671)] = 196595, + [SMALL_STATE(5672)] = 196617, + [SMALL_STATE(5673)] = 196639, + [SMALL_STATE(5674)] = 196661, + [SMALL_STATE(5675)] = 196683, + [SMALL_STATE(5676)] = 196697, + [SMALL_STATE(5677)] = 196717, + [SMALL_STATE(5678)] = 196737, + [SMALL_STATE(5679)] = 196759, + [SMALL_STATE(5680)] = 196781, + [SMALL_STATE(5681)] = 196799, + [SMALL_STATE(5682)] = 196821, + [SMALL_STATE(5683)] = 196837, + [SMALL_STATE(5684)] = 196855, + [SMALL_STATE(5685)] = 196869, + [SMALL_STATE(5686)] = 196887, + [SMALL_STATE(5687)] = 196905, + [SMALL_STATE(5688)] = 196927, + [SMALL_STATE(5689)] = 196949, + [SMALL_STATE(5690)] = 196969, + [SMALL_STATE(5691)] = 196987, + [SMALL_STATE(5692)] = 197001, + [SMALL_STATE(5693)] = 197015, + [SMALL_STATE(5694)] = 197037, + [SMALL_STATE(5695)] = 197057, + [SMALL_STATE(5696)] = 197071, + [SMALL_STATE(5697)] = 197087, + [SMALL_STATE(5698)] = 197101, + [SMALL_STATE(5699)] = 197121, + [SMALL_STATE(5700)] = 197143, + [SMALL_STATE(5701)] = 197157, + [SMALL_STATE(5702)] = 197171, + [SMALL_STATE(5703)] = 197189, + [SMALL_STATE(5704)] = 197211, + [SMALL_STATE(5705)] = 197229, + [SMALL_STATE(5706)] = 197251, + [SMALL_STATE(5707)] = 197267, + [SMALL_STATE(5708)] = 197281, + [SMALL_STATE(5709)] = 197295, + [SMALL_STATE(5710)] = 197317, + [SMALL_STATE(5711)] = 197339, + [SMALL_STATE(5712)] = 197357, + [SMALL_STATE(5713)] = 197377, + [SMALL_STATE(5714)] = 197393, + [SMALL_STATE(5715)] = 197413, + [SMALL_STATE(5716)] = 197435, + [SMALL_STATE(5717)] = 197457, + [SMALL_STATE(5718)] = 197479, + [SMALL_STATE(5719)] = 197501, + [SMALL_STATE(5720)] = 197517, + [SMALL_STATE(5721)] = 197539, + [SMALL_STATE(5722)] = 197561, + [SMALL_STATE(5723)] = 197579, + [SMALL_STATE(5724)] = 197599, + [SMALL_STATE(5725)] = 197619, + [SMALL_STATE(5726)] = 197639, + [SMALL_STATE(5727)] = 197659, + [SMALL_STATE(5728)] = 197677, + [SMALL_STATE(5729)] = 197693, + [SMALL_STATE(5730)] = 197707, + [SMALL_STATE(5731)] = 197729, + [SMALL_STATE(5732)] = 197745, + [SMALL_STATE(5733)] = 197759, + [SMALL_STATE(5734)] = 197773, + [SMALL_STATE(5735)] = 197795, + [SMALL_STATE(5736)] = 197809, + [SMALL_STATE(5737)] = 197823, + [SMALL_STATE(5738)] = 197845, + [SMALL_STATE(5739)] = 197867, + [SMALL_STATE(5740)] = 197885, + [SMALL_STATE(5741)] = 197907, + [SMALL_STATE(5742)] = 197927, + [SMALL_STATE(5743)] = 197941, + [SMALL_STATE(5744)] = 197963, + [SMALL_STATE(5745)] = 197985, + [SMALL_STATE(5746)] = 198003, + [SMALL_STATE(5747)] = 198023, + [SMALL_STATE(5748)] = 198043, + [SMALL_STATE(5749)] = 198065, + [SMALL_STATE(5750)] = 198087, + [SMALL_STATE(5751)] = 198101, + [SMALL_STATE(5752)] = 198123, + [SMALL_STATE(5753)] = 198145, + [SMALL_STATE(5754)] = 198159, + [SMALL_STATE(5755)] = 198173, + [SMALL_STATE(5756)] = 198193, + [SMALL_STATE(5757)] = 198215, + [SMALL_STATE(5758)] = 198237, + [SMALL_STATE(5759)] = 198251, + [SMALL_STATE(5760)] = 198265, + [SMALL_STATE(5761)] = 198287, + [SMALL_STATE(5762)] = 198309, + [SMALL_STATE(5763)] = 198331, + [SMALL_STATE(5764)] = 198353, + [SMALL_STATE(5765)] = 198375, + [SMALL_STATE(5766)] = 198395, + [SMALL_STATE(5767)] = 198413, + [SMALL_STATE(5768)] = 198435, + [SMALL_STATE(5769)] = 198457, + [SMALL_STATE(5770)] = 198479, + [SMALL_STATE(5771)] = 198501, + [SMALL_STATE(5772)] = 198523, + [SMALL_STATE(5773)] = 198539, + [SMALL_STATE(5774)] = 198557, + [SMALL_STATE(5775)] = 198579, + [SMALL_STATE(5776)] = 198593, + [SMALL_STATE(5777)] = 198615, + [SMALL_STATE(5778)] = 198637, + [SMALL_STATE(5779)] = 198659, + [SMALL_STATE(5780)] = 198673, + [SMALL_STATE(5781)] = 198693, + [SMALL_STATE(5782)] = 198707, + [SMALL_STATE(5783)] = 198729, + [SMALL_STATE(5784)] = 198743, + [SMALL_STATE(5785)] = 198757, + [SMALL_STATE(5786)] = 198779, + [SMALL_STATE(5787)] = 198797, + [SMALL_STATE(5788)] = 198811, + [SMALL_STATE(5789)] = 198829, + [SMALL_STATE(5790)] = 198851, + [SMALL_STATE(5791)] = 198871, + [SMALL_STATE(5792)] = 198893, + [SMALL_STATE(5793)] = 198915, + [SMALL_STATE(5794)] = 198929, + [SMALL_STATE(5795)] = 198943, + [SMALL_STATE(5796)] = 198965, + [SMALL_STATE(5797)] = 198987, + [SMALL_STATE(5798)] = 199001, + [SMALL_STATE(5799)] = 199015, + [SMALL_STATE(5800)] = 199029, + [SMALL_STATE(5801)] = 199051, + [SMALL_STATE(5802)] = 199073, + [SMALL_STATE(5803)] = 199095, + [SMALL_STATE(5804)] = 199109, + [SMALL_STATE(5805)] = 199131, + [SMALL_STATE(5806)] = 199151, + [SMALL_STATE(5807)] = 199165, + [SMALL_STATE(5808)] = 199187, + [SMALL_STATE(5809)] = 199201, + [SMALL_STATE(5810)] = 199223, + [SMALL_STATE(5811)] = 199241, + [SMALL_STATE(5812)] = 199255, + [SMALL_STATE(5813)] = 199277, + [SMALL_STATE(5814)] = 199291, + [SMALL_STATE(5815)] = 199305, + [SMALL_STATE(5816)] = 199327, + [SMALL_STATE(5817)] = 199347, + [SMALL_STATE(5818)] = 199367, + [SMALL_STATE(5819)] = 199387, + [SMALL_STATE(5820)] = 199407, + [SMALL_STATE(5821)] = 199421, + [SMALL_STATE(5822)] = 199435, + [SMALL_STATE(5823)] = 199449, + [SMALL_STATE(5824)] = 199463, + [SMALL_STATE(5825)] = 199477, + [SMALL_STATE(5826)] = 199491, + [SMALL_STATE(5827)] = 199513, + [SMALL_STATE(5828)] = 199527, + [SMALL_STATE(5829)] = 199541, + [SMALL_STATE(5830)] = 199563, + [SMALL_STATE(5831)] = 199585, + [SMALL_STATE(5832)] = 199599, + [SMALL_STATE(5833)] = 199621, + [SMALL_STATE(5834)] = 199643, + [SMALL_STATE(5835)] = 199657, + [SMALL_STATE(5836)] = 199671, + [SMALL_STATE(5837)] = 199689, + [SMALL_STATE(5838)] = 199703, + [SMALL_STATE(5839)] = 199721, + [SMALL_STATE(5840)] = 199739, + [SMALL_STATE(5841)] = 199755, + [SMALL_STATE(5842)] = 199773, + [SMALL_STATE(5843)] = 199791, + [SMALL_STATE(5844)] = 199813, + [SMALL_STATE(5845)] = 199835, + [SMALL_STATE(5846)] = 199853, + [SMALL_STATE(5847)] = 199867, + [SMALL_STATE(5848)] = 199889, + [SMALL_STATE(5849)] = 199911, + [SMALL_STATE(5850)] = 199933, + [SMALL_STATE(5851)] = 199955, + [SMALL_STATE(5852)] = 199977, + [SMALL_STATE(5853)] = 199995, + [SMALL_STATE(5854)] = 200017, + [SMALL_STATE(5855)] = 200039, + [SMALL_STATE(5856)] = 200061, + [SMALL_STATE(5857)] = 200083, + [SMALL_STATE(5858)] = 200097, + [SMALL_STATE(5859)] = 200111, + [SMALL_STATE(5860)] = 200133, + [SMALL_STATE(5861)] = 200153, + [SMALL_STATE(5862)] = 200175, + [SMALL_STATE(5863)] = 200197, + [SMALL_STATE(5864)] = 200211, + [SMALL_STATE(5865)] = 200225, + [SMALL_STATE(5866)] = 200247, + [SMALL_STATE(5867)] = 200269, + [SMALL_STATE(5868)] = 200291, + [SMALL_STATE(5869)] = 200313, + [SMALL_STATE(5870)] = 200335, + [SMALL_STATE(5871)] = 200357, + [SMALL_STATE(5872)] = 200379, + [SMALL_STATE(5873)] = 200401, + [SMALL_STATE(5874)] = 200423, + [SMALL_STATE(5875)] = 200445, + [SMALL_STATE(5876)] = 200467, + [SMALL_STATE(5877)] = 200489, + [SMALL_STATE(5878)] = 200511, + [SMALL_STATE(5879)] = 200533, + [SMALL_STATE(5880)] = 200555, + [SMALL_STATE(5881)] = 200575, + [SMALL_STATE(5882)] = 200597, + [SMALL_STATE(5883)] = 200613, + [SMALL_STATE(5884)] = 200632, + [SMALL_STATE(5885)] = 200651, + [SMALL_STATE(5886)] = 200664, + [SMALL_STATE(5887)] = 200677, + [SMALL_STATE(5888)] = 200690, + [SMALL_STATE(5889)] = 200709, + [SMALL_STATE(5890)] = 200728, + [SMALL_STATE(5891)] = 200743, + [SMALL_STATE(5892)] = 200756, + [SMALL_STATE(5893)] = 200771, + [SMALL_STATE(5894)] = 200788, + [SMALL_STATE(5895)] = 200803, + [SMALL_STATE(5896)] = 200818, + [SMALL_STATE(5897)] = 200833, + [SMALL_STATE(5898)] = 200850, + [SMALL_STATE(5899)] = 200863, + [SMALL_STATE(5900)] = 200876, + [SMALL_STATE(5901)] = 200889, + [SMALL_STATE(5902)] = 200902, + [SMALL_STATE(5903)] = 200915, + [SMALL_STATE(5904)] = 200928, + [SMALL_STATE(5905)] = 200947, + [SMALL_STATE(5906)] = 200962, + [SMALL_STATE(5907)] = 200975, + [SMALL_STATE(5908)] = 200988, + [SMALL_STATE(5909)] = 201005, + [SMALL_STATE(5910)] = 201024, + [SMALL_STATE(5911)] = 201041, + [SMALL_STATE(5912)] = 201054, + [SMALL_STATE(5913)] = 201071, + [SMALL_STATE(5914)] = 201086, + [SMALL_STATE(5915)] = 201101, + [SMALL_STATE(5916)] = 201114, + [SMALL_STATE(5917)] = 201127, + [SMALL_STATE(5918)] = 201144, + [SMALL_STATE(5919)] = 201157, + [SMALL_STATE(5920)] = 201174, + [SMALL_STATE(5921)] = 201189, + [SMALL_STATE(5922)] = 201206, + [SMALL_STATE(5923)] = 201219, + [SMALL_STATE(5924)] = 201234, + [SMALL_STATE(5925)] = 201247, + [SMALL_STATE(5926)] = 201262, + [SMALL_STATE(5927)] = 201281, + [SMALL_STATE(5928)] = 201298, + [SMALL_STATE(5929)] = 201317, + [SMALL_STATE(5930)] = 201336, + [SMALL_STATE(5931)] = 201351, + [SMALL_STATE(5932)] = 201364, + [SMALL_STATE(5933)] = 201381, + [SMALL_STATE(5934)] = 201396, + [SMALL_STATE(5935)] = 201413, + [SMALL_STATE(5936)] = 201428, + [SMALL_STATE(5937)] = 201447, + [SMALL_STATE(5938)] = 201460, + [SMALL_STATE(5939)] = 201475, + [SMALL_STATE(5940)] = 201490, + [SMALL_STATE(5941)] = 201509, + [SMALL_STATE(5942)] = 201524, + [SMALL_STATE(5943)] = 201539, + [SMALL_STATE(5944)] = 201556, + [SMALL_STATE(5945)] = 201573, + [SMALL_STATE(5946)] = 201590, + [SMALL_STATE(5947)] = 201605, + [SMALL_STATE(5948)] = 201622, + [SMALL_STATE(5949)] = 201641, + [SMALL_STATE(5950)] = 201656, + [SMALL_STATE(5951)] = 201675, + [SMALL_STATE(5952)] = 201694, + [SMALL_STATE(5953)] = 201713, + [SMALL_STATE(5954)] = 201732, + [SMALL_STATE(5955)] = 201745, + [SMALL_STATE(5956)] = 201764, + [SMALL_STATE(5957)] = 201781, + [SMALL_STATE(5958)] = 201800, + [SMALL_STATE(5959)] = 201819, + [SMALL_STATE(5960)] = 201838, + [SMALL_STATE(5961)] = 201853, + [SMALL_STATE(5962)] = 201872, + [SMALL_STATE(5963)] = 201891, + [SMALL_STATE(5964)] = 201904, + [SMALL_STATE(5965)] = 201921, + [SMALL_STATE(5966)] = 201936, + [SMALL_STATE(5967)] = 201955, + [SMALL_STATE(5968)] = 201968, + [SMALL_STATE(5969)] = 201981, + [SMALL_STATE(5970)] = 201998, + [SMALL_STATE(5971)] = 202011, + [SMALL_STATE(5972)] = 202030, + [SMALL_STATE(5973)] = 202049, + [SMALL_STATE(5974)] = 202062, + [SMALL_STATE(5975)] = 202077, + [SMALL_STATE(5976)] = 202096, + [SMALL_STATE(5977)] = 202115, + [SMALL_STATE(5978)] = 202134, + [SMALL_STATE(5979)] = 202153, + [SMALL_STATE(5980)] = 202166, + [SMALL_STATE(5981)] = 202181, + [SMALL_STATE(5982)] = 202198, + [SMALL_STATE(5983)] = 202211, + [SMALL_STATE(5984)] = 202226, + [SMALL_STATE(5985)] = 202243, + [SMALL_STATE(5986)] = 202256, + [SMALL_STATE(5987)] = 202273, + [SMALL_STATE(5988)] = 202288, + [SMALL_STATE(5989)] = 202307, + [SMALL_STATE(5990)] = 202326, + [SMALL_STATE(5991)] = 202345, + [SMALL_STATE(5992)] = 202364, + [SMALL_STATE(5993)] = 202383, + [SMALL_STATE(5994)] = 202398, + [SMALL_STATE(5995)] = 202413, + [SMALL_STATE(5996)] = 202426, + [SMALL_STATE(5997)] = 202443, + [SMALL_STATE(5998)] = 202458, + [SMALL_STATE(5999)] = 202473, + [SMALL_STATE(6000)] = 202486, + [SMALL_STATE(6001)] = 202505, + [SMALL_STATE(6002)] = 202522, + [SMALL_STATE(6003)] = 202537, + [SMALL_STATE(6004)] = 202550, + [SMALL_STATE(6005)] = 202569, + [SMALL_STATE(6006)] = 202588, + [SMALL_STATE(6007)] = 202603, + [SMALL_STATE(6008)] = 202622, + [SMALL_STATE(6009)] = 202641, + [SMALL_STATE(6010)] = 202660, + [SMALL_STATE(6011)] = 202679, + [SMALL_STATE(6012)] = 202698, + [SMALL_STATE(6013)] = 202711, + [SMALL_STATE(6014)] = 202730, + [SMALL_STATE(6015)] = 202747, + [SMALL_STATE(6016)] = 202760, + [SMALL_STATE(6017)] = 202777, + [SMALL_STATE(6018)] = 202792, + [SMALL_STATE(6019)] = 202809, + [SMALL_STATE(6020)] = 202824, + [SMALL_STATE(6021)] = 202837, + [SMALL_STATE(6022)] = 202856, + [SMALL_STATE(6023)] = 202871, + [SMALL_STATE(6024)] = 202890, + [SMALL_STATE(6025)] = 202905, + [SMALL_STATE(6026)] = 202924, + [SMALL_STATE(6027)] = 202943, + [SMALL_STATE(6028)] = 202962, + [SMALL_STATE(6029)] = 202979, + [SMALL_STATE(6030)] = 202998, + [SMALL_STATE(6031)] = 203011, + [SMALL_STATE(6032)] = 203024, + [SMALL_STATE(6033)] = 203041, + [SMALL_STATE(6034)] = 203054, + [SMALL_STATE(6035)] = 203073, + [SMALL_STATE(6036)] = 203090, + [SMALL_STATE(6037)] = 203103, + [SMALL_STATE(6038)] = 203118, + [SMALL_STATE(6039)] = 203133, + [SMALL_STATE(6040)] = 203146, + [SMALL_STATE(6041)] = 203161, + [SMALL_STATE(6042)] = 203180, + [SMALL_STATE(6043)] = 203199, + [SMALL_STATE(6044)] = 203218, + [SMALL_STATE(6045)] = 203237, + [SMALL_STATE(6046)] = 203252, + [SMALL_STATE(6047)] = 203265, + [SMALL_STATE(6048)] = 203282, + [SMALL_STATE(6049)] = 203297, + [SMALL_STATE(6050)] = 203310, + [SMALL_STATE(6051)] = 203323, + [SMALL_STATE(6052)] = 203338, + [SMALL_STATE(6053)] = 203353, + [SMALL_STATE(6054)] = 203368, + [SMALL_STATE(6055)] = 203385, + [SMALL_STATE(6056)] = 203400, + [SMALL_STATE(6057)] = 203415, + [SMALL_STATE(6058)] = 203434, + [SMALL_STATE(6059)] = 203447, + [SMALL_STATE(6060)] = 203466, + [SMALL_STATE(6061)] = 203485, + [SMALL_STATE(6062)] = 203504, + [SMALL_STATE(6063)] = 203521, + [SMALL_STATE(6064)] = 203534, + [SMALL_STATE(6065)] = 203551, + [SMALL_STATE(6066)] = 203570, + [SMALL_STATE(6067)] = 203585, + [SMALL_STATE(6068)] = 203602, + [SMALL_STATE(6069)] = 203619, + [SMALL_STATE(6070)] = 203634, + [SMALL_STATE(6071)] = 203651, + [SMALL_STATE(6072)] = 203666, + [SMALL_STATE(6073)] = 203681, + [SMALL_STATE(6074)] = 203698, + [SMALL_STATE(6075)] = 203717, + [SMALL_STATE(6076)] = 203736, + [SMALL_STATE(6077)] = 203755, + [SMALL_STATE(6078)] = 203774, + [SMALL_STATE(6079)] = 203787, + [SMALL_STATE(6080)] = 203804, + [SMALL_STATE(6081)] = 203817, + [SMALL_STATE(6082)] = 203830, + [SMALL_STATE(6083)] = 203847, + [SMALL_STATE(6084)] = 203864, + [SMALL_STATE(6085)] = 203883, + [SMALL_STATE(6086)] = 203896, + [SMALL_STATE(6087)] = 203911, + [SMALL_STATE(6088)] = 203930, + [SMALL_STATE(6089)] = 203949, + [SMALL_STATE(6090)] = 203966, + [SMALL_STATE(6091)] = 203985, + [SMALL_STATE(6092)] = 203998, + [SMALL_STATE(6093)] = 204011, + [SMALL_STATE(6094)] = 204024, + [SMALL_STATE(6095)] = 204037, + [SMALL_STATE(6096)] = 204056, + [SMALL_STATE(6097)] = 204073, + [SMALL_STATE(6098)] = 204088, + [SMALL_STATE(6099)] = 204107, + [SMALL_STATE(6100)] = 204124, + [SMALL_STATE(6101)] = 204139, + [SMALL_STATE(6102)] = 204158, + [SMALL_STATE(6103)] = 204177, + [SMALL_STATE(6104)] = 204196, + [SMALL_STATE(6105)] = 204215, + [SMALL_STATE(6106)] = 204234, + [SMALL_STATE(6107)] = 204253, + [SMALL_STATE(6108)] = 204266, + [SMALL_STATE(6109)] = 204279, + [SMALL_STATE(6110)] = 204292, + [SMALL_STATE(6111)] = 204311, + [SMALL_STATE(6112)] = 204328, + [SMALL_STATE(6113)] = 204343, + [SMALL_STATE(6114)] = 204358, + [SMALL_STATE(6115)] = 204375, + [SMALL_STATE(6116)] = 204390, + [SMALL_STATE(6117)] = 204409, + [SMALL_STATE(6118)] = 204428, + [SMALL_STATE(6119)] = 204447, + [SMALL_STATE(6120)] = 204466, + [SMALL_STATE(6121)] = 204481, + [SMALL_STATE(6122)] = 204496, + [SMALL_STATE(6123)] = 204509, + [SMALL_STATE(6124)] = 204526, + [SMALL_STATE(6125)] = 204541, + [SMALL_STATE(6126)] = 204556, + [SMALL_STATE(6127)] = 204573, + [SMALL_STATE(6128)] = 204588, + [SMALL_STATE(6129)] = 204603, + [SMALL_STATE(6130)] = 204622, + [SMALL_STATE(6131)] = 204641, + [SMALL_STATE(6132)] = 204660, + [SMALL_STATE(6133)] = 204679, + [SMALL_STATE(6134)] = 204694, + [SMALL_STATE(6135)] = 204707, + [SMALL_STATE(6136)] = 204724, + [SMALL_STATE(6137)] = 204739, + [SMALL_STATE(6138)] = 204754, + [SMALL_STATE(6139)] = 204769, + [SMALL_STATE(6140)] = 204786, + [SMALL_STATE(6141)] = 204805, + [SMALL_STATE(6142)] = 204822, + [SMALL_STATE(6143)] = 204841, + [SMALL_STATE(6144)] = 204860, + [SMALL_STATE(6145)] = 204879, + [SMALL_STATE(6146)] = 204898, + [SMALL_STATE(6147)] = 204911, + [SMALL_STATE(6148)] = 204928, + [SMALL_STATE(6149)] = 204947, + [SMALL_STATE(6150)] = 204964, + [SMALL_STATE(6151)] = 204983, + [SMALL_STATE(6152)] = 204996, + [SMALL_STATE(6153)] = 205015, + [SMALL_STATE(6154)] = 205034, + [SMALL_STATE(6155)] = 205047, + [SMALL_STATE(6156)] = 205064, + [SMALL_STATE(6157)] = 205081, + [SMALL_STATE(6158)] = 205100, + [SMALL_STATE(6159)] = 205113, + [SMALL_STATE(6160)] = 205130, + [SMALL_STATE(6161)] = 205147, + [SMALL_STATE(6162)] = 205160, + [SMALL_STATE(6163)] = 205173, + [SMALL_STATE(6164)] = 205186, + [SMALL_STATE(6165)] = 205203, + [SMALL_STATE(6166)] = 205220, + [SMALL_STATE(6167)] = 205233, + [SMALL_STATE(6168)] = 205250, + [SMALL_STATE(6169)] = 205267, + [SMALL_STATE(6170)] = 205284, + [SMALL_STATE(6171)] = 205297, + [SMALL_STATE(6172)] = 205314, + [SMALL_STATE(6173)] = 205331, + [SMALL_STATE(6174)] = 205350, + [SMALL_STATE(6175)] = 205363, + [SMALL_STATE(6176)] = 205380, + [SMALL_STATE(6177)] = 205397, + [SMALL_STATE(6178)] = 205414, + [SMALL_STATE(6179)] = 205427, + [SMALL_STATE(6180)] = 205444, + [SMALL_STATE(6181)] = 205461, + [SMALL_STATE(6182)] = 205474, + [SMALL_STATE(6183)] = 205491, + [SMALL_STATE(6184)] = 205508, + [SMALL_STATE(6185)] = 205525, + [SMALL_STATE(6186)] = 205538, + [SMALL_STATE(6187)] = 205555, + [SMALL_STATE(6188)] = 205572, + [SMALL_STATE(6189)] = 205585, + [SMALL_STATE(6190)] = 205602, + [SMALL_STATE(6191)] = 205619, + [SMALL_STATE(6192)] = 205638, + [SMALL_STATE(6193)] = 205651, + [SMALL_STATE(6194)] = 205668, + [SMALL_STATE(6195)] = 205685, + [SMALL_STATE(6196)] = 205698, + [SMALL_STATE(6197)] = 205715, + [SMALL_STATE(6198)] = 205732, + [SMALL_STATE(6199)] = 205745, + [SMALL_STATE(6200)] = 205762, + [SMALL_STATE(6201)] = 205779, + [SMALL_STATE(6202)] = 205792, + [SMALL_STATE(6203)] = 205809, + [SMALL_STATE(6204)] = 205826, + [SMALL_STATE(6205)] = 205839, + [SMALL_STATE(6206)] = 205856, + [SMALL_STATE(6207)] = 205873, + [SMALL_STATE(6208)] = 205890, + [SMALL_STATE(6209)] = 205907, + [SMALL_STATE(6210)] = 205924, + [SMALL_STATE(6211)] = 205941, + [SMALL_STATE(6212)] = 205958, + [SMALL_STATE(6213)] = 205975, + [SMALL_STATE(6214)] = 205992, + [SMALL_STATE(6215)] = 206009, + [SMALL_STATE(6216)] = 206026, + [SMALL_STATE(6217)] = 206043, + [SMALL_STATE(6218)] = 206060, + [SMALL_STATE(6219)] = 206077, + [SMALL_STATE(6220)] = 206094, + [SMALL_STATE(6221)] = 206111, + [SMALL_STATE(6222)] = 206124, + [SMALL_STATE(6223)] = 206139, + [SMALL_STATE(6224)] = 206158, + [SMALL_STATE(6225)] = 206177, + [SMALL_STATE(6226)] = 206190, + [SMALL_STATE(6227)] = 206209, + [SMALL_STATE(6228)] = 206226, + [SMALL_STATE(6229)] = 206245, + [SMALL_STATE(6230)] = 206260, + [SMALL_STATE(6231)] = 206279, + [SMALL_STATE(6232)] = 206292, + [SMALL_STATE(6233)] = 206311, + [SMALL_STATE(6234)] = 206330, + [SMALL_STATE(6235)] = 206349, + [SMALL_STATE(6236)] = 206368, + [SMALL_STATE(6237)] = 206381, + [SMALL_STATE(6238)] = 206394, + [SMALL_STATE(6239)] = 206413, + [SMALL_STATE(6240)] = 206432, + [SMALL_STATE(6241)] = 206451, + [SMALL_STATE(6242)] = 206470, + [SMALL_STATE(6243)] = 206489, + [SMALL_STATE(6244)] = 206508, + [SMALL_STATE(6245)] = 206527, + [SMALL_STATE(6246)] = 206546, + [SMALL_STATE(6247)] = 206565, + [SMALL_STATE(6248)] = 206584, + [SMALL_STATE(6249)] = 206597, + [SMALL_STATE(6250)] = 206616, + [SMALL_STATE(6251)] = 206635, + [SMALL_STATE(6252)] = 206654, + [SMALL_STATE(6253)] = 206673, + [SMALL_STATE(6254)] = 206688, + [SMALL_STATE(6255)] = 206703, + [SMALL_STATE(6256)] = 206722, + [SMALL_STATE(6257)] = 206741, + [SMALL_STATE(6258)] = 206756, + [SMALL_STATE(6259)] = 206775, + [SMALL_STATE(6260)] = 206794, + [SMALL_STATE(6261)] = 206813, + [SMALL_STATE(6262)] = 206826, + [SMALL_STATE(6263)] = 206845, + [SMALL_STATE(6264)] = 206864, + [SMALL_STATE(6265)] = 206883, + [SMALL_STATE(6266)] = 206896, + [SMALL_STATE(6267)] = 206913, + [SMALL_STATE(6268)] = 206926, + [SMALL_STATE(6269)] = 206941, + [SMALL_STATE(6270)] = 206954, + [SMALL_STATE(6271)] = 206967, + [SMALL_STATE(6272)] = 206980, + [SMALL_STATE(6273)] = 206993, + [SMALL_STATE(6274)] = 207006, + [SMALL_STATE(6275)] = 207019, + [SMALL_STATE(6276)] = 207032, + [SMALL_STATE(6277)] = 207045, + [SMALL_STATE(6278)] = 207064, + [SMALL_STATE(6279)] = 207083, + [SMALL_STATE(6280)] = 207100, + [SMALL_STATE(6281)] = 207119, + [SMALL_STATE(6282)] = 207136, + [SMALL_STATE(6283)] = 207149, + [SMALL_STATE(6284)] = 207162, + [SMALL_STATE(6285)] = 207179, + [SMALL_STATE(6286)] = 207194, + [SMALL_STATE(6287)] = 207213, + [SMALL_STATE(6288)] = 207232, + [SMALL_STATE(6289)] = 207251, + [SMALL_STATE(6290)] = 207270, + [SMALL_STATE(6291)] = 207283, + [SMALL_STATE(6292)] = 207296, + [SMALL_STATE(6293)] = 207313, + [SMALL_STATE(6294)] = 207332, + [SMALL_STATE(6295)] = 207347, + [SMALL_STATE(6296)] = 207366, + [SMALL_STATE(6297)] = 207385, + [SMALL_STATE(6298)] = 207398, + [SMALL_STATE(6299)] = 207411, + [SMALL_STATE(6300)] = 207426, + [SMALL_STATE(6301)] = 207443, + [SMALL_STATE(6302)] = 207458, + [SMALL_STATE(6303)] = 207475, + [SMALL_STATE(6304)] = 207494, + [SMALL_STATE(6305)] = 207509, + [SMALL_STATE(6306)] = 207522, + [SMALL_STATE(6307)] = 207537, + [SMALL_STATE(6308)] = 207552, + [SMALL_STATE(6309)] = 207569, + [SMALL_STATE(6310)] = 207588, + [SMALL_STATE(6311)] = 207607, + [SMALL_STATE(6312)] = 207622, + [SMALL_STATE(6313)] = 207641, + [SMALL_STATE(6314)] = 207660, + [SMALL_STATE(6315)] = 207679, + [SMALL_STATE(6316)] = 207694, + [SMALL_STATE(6317)] = 207713, + [SMALL_STATE(6318)] = 207732, + [SMALL_STATE(6319)] = 207751, + [SMALL_STATE(6320)] = 207764, + [SMALL_STATE(6321)] = 207777, + [SMALL_STATE(6322)] = 207790, + [SMALL_STATE(6323)] = 207805, + [SMALL_STATE(6324)] = 207824, + [SMALL_STATE(6325)] = 207843, + [SMALL_STATE(6326)] = 207856, + [SMALL_STATE(6327)] = 207875, + [SMALL_STATE(6328)] = 207888, + [SMALL_STATE(6329)] = 207901, + [SMALL_STATE(6330)] = 207918, + [SMALL_STATE(6331)] = 207931, + [SMALL_STATE(6332)] = 207946, + [SMALL_STATE(6333)] = 207961, + [SMALL_STATE(6334)] = 207974, + [SMALL_STATE(6335)] = 207993, + [SMALL_STATE(6336)] = 208012, + [SMALL_STATE(6337)] = 208031, + [SMALL_STATE(6338)] = 208050, + [SMALL_STATE(6339)] = 208069, + [SMALL_STATE(6340)] = 208082, + [SMALL_STATE(6341)] = 208095, + [SMALL_STATE(6342)] = 208112, + [SMALL_STATE(6343)] = 208129, + [SMALL_STATE(6344)] = 208148, + [SMALL_STATE(6345)] = 208167, + [SMALL_STATE(6346)] = 208186, + [SMALL_STATE(6347)] = 208205, + [SMALL_STATE(6348)] = 208224, + [SMALL_STATE(6349)] = 208243, + [SMALL_STATE(6350)] = 208260, + [SMALL_STATE(6351)] = 208279, + [SMALL_STATE(6352)] = 208292, + [SMALL_STATE(6353)] = 208305, + [SMALL_STATE(6354)] = 208318, + [SMALL_STATE(6355)] = 208337, + [SMALL_STATE(6356)] = 208350, + [SMALL_STATE(6357)] = 208363, + [SMALL_STATE(6358)] = 208382, + [SMALL_STATE(6359)] = 208401, + [SMALL_STATE(6360)] = 208420, + [SMALL_STATE(6361)] = 208439, + [SMALL_STATE(6362)] = 208452, + [SMALL_STATE(6363)] = 208465, + [SMALL_STATE(6364)] = 208484, + [SMALL_STATE(6365)] = 208503, + [SMALL_STATE(6366)] = 208522, + [SMALL_STATE(6367)] = 208541, + [SMALL_STATE(6368)] = 208557, + [SMALL_STATE(6369)] = 208569, + [SMALL_STATE(6370)] = 208581, + [SMALL_STATE(6371)] = 208593, + [SMALL_STATE(6372)] = 208609, + [SMALL_STATE(6373)] = 208625, + [SMALL_STATE(6374)] = 208641, + [SMALL_STATE(6375)] = 208657, + [SMALL_STATE(6376)] = 208673, + [SMALL_STATE(6377)] = 208689, + [SMALL_STATE(6378)] = 208701, + [SMALL_STATE(6379)] = 208717, + [SMALL_STATE(6380)] = 208733, + [SMALL_STATE(6381)] = 208749, + [SMALL_STATE(6382)] = 208765, + [SMALL_STATE(6383)] = 208781, + [SMALL_STATE(6384)] = 208793, + [SMALL_STATE(6385)] = 208805, + [SMALL_STATE(6386)] = 208821, + [SMALL_STATE(6387)] = 208837, + [SMALL_STATE(6388)] = 208851, + [SMALL_STATE(6389)] = 208865, + [SMALL_STATE(6390)] = 208881, + [SMALL_STATE(6391)] = 208895, + [SMALL_STATE(6392)] = 208907, + [SMALL_STATE(6393)] = 208923, + [SMALL_STATE(6394)] = 208937, + [SMALL_STATE(6395)] = 208951, + [SMALL_STATE(6396)] = 208965, + [SMALL_STATE(6397)] = 208979, + [SMALL_STATE(6398)] = 208993, + [SMALL_STATE(6399)] = 209007, + [SMALL_STATE(6400)] = 209021, + [SMALL_STATE(6401)] = 209035, + [SMALL_STATE(6402)] = 209047, + [SMALL_STATE(6403)] = 209061, + [SMALL_STATE(6404)] = 209075, + [SMALL_STATE(6405)] = 209091, + [SMALL_STATE(6406)] = 209107, + [SMALL_STATE(6407)] = 209121, + [SMALL_STATE(6408)] = 209137, + [SMALL_STATE(6409)] = 209153, + [SMALL_STATE(6410)] = 209169, + [SMALL_STATE(6411)] = 209185, + [SMALL_STATE(6412)] = 209201, + [SMALL_STATE(6413)] = 209215, + [SMALL_STATE(6414)] = 209231, + [SMALL_STATE(6415)] = 209243, + [SMALL_STATE(6416)] = 209255, + [SMALL_STATE(6417)] = 209267, + [SMALL_STATE(6418)] = 209283, + [SMALL_STATE(6419)] = 209295, + [SMALL_STATE(6420)] = 209311, + [SMALL_STATE(6421)] = 209327, + [SMALL_STATE(6422)] = 209343, + [SMALL_STATE(6423)] = 209359, + [SMALL_STATE(6424)] = 209375, + [SMALL_STATE(6425)] = 209387, + [SMALL_STATE(6426)] = 209399, + [SMALL_STATE(6427)] = 209415, + [SMALL_STATE(6428)] = 209431, + [SMALL_STATE(6429)] = 209443, + [SMALL_STATE(6430)] = 209455, + [SMALL_STATE(6431)] = 209471, + [SMALL_STATE(6432)] = 209487, + [SMALL_STATE(6433)] = 209503, + [SMALL_STATE(6434)] = 209519, + [SMALL_STATE(6435)] = 209531, + [SMALL_STATE(6436)] = 209543, + [SMALL_STATE(6437)] = 209559, + [SMALL_STATE(6438)] = 209573, + [SMALL_STATE(6439)] = 209587, + [SMALL_STATE(6440)] = 209603, + [SMALL_STATE(6441)] = 209615, + [SMALL_STATE(6442)] = 209631, + [SMALL_STATE(6443)] = 209643, + [SMALL_STATE(6444)] = 209655, + [SMALL_STATE(6445)] = 209667, + [SMALL_STATE(6446)] = 209683, + [SMALL_STATE(6447)] = 209699, + [SMALL_STATE(6448)] = 209715, + [SMALL_STATE(6449)] = 209727, + [SMALL_STATE(6450)] = 209741, + [SMALL_STATE(6451)] = 209757, + [SMALL_STATE(6452)] = 209773, + [SMALL_STATE(6453)] = 209787, + [SMALL_STATE(6454)] = 209803, + [SMALL_STATE(6455)] = 209819, + [SMALL_STATE(6456)] = 209835, + [SMALL_STATE(6457)] = 209849, + [SMALL_STATE(6458)] = 209865, + [SMALL_STATE(6459)] = 209881, + [SMALL_STATE(6460)] = 209897, + [SMALL_STATE(6461)] = 209913, + [SMALL_STATE(6462)] = 209927, + [SMALL_STATE(6463)] = 209941, + [SMALL_STATE(6464)] = 209953, + [SMALL_STATE(6465)] = 209969, + [SMALL_STATE(6466)] = 209985, + [SMALL_STATE(6467)] = 210001, + [SMALL_STATE(6468)] = 210013, + [SMALL_STATE(6469)] = 210027, + [SMALL_STATE(6470)] = 210043, + [SMALL_STATE(6471)] = 210057, + [SMALL_STATE(6472)] = 210073, + [SMALL_STATE(6473)] = 210089, + [SMALL_STATE(6474)] = 210101, + [SMALL_STATE(6475)] = 210117, + [SMALL_STATE(6476)] = 210133, + [SMALL_STATE(6477)] = 210149, + [SMALL_STATE(6478)] = 210163, + [SMALL_STATE(6479)] = 210179, + [SMALL_STATE(6480)] = 210195, + [SMALL_STATE(6481)] = 210211, + [SMALL_STATE(6482)] = 210227, + [SMALL_STATE(6483)] = 210243, + [SMALL_STATE(6484)] = 210259, + [SMALL_STATE(6485)] = 210275, + [SMALL_STATE(6486)] = 210291, + [SMALL_STATE(6487)] = 210303, + [SMALL_STATE(6488)] = 210319, + [SMALL_STATE(6489)] = 210335, + [SMALL_STATE(6490)] = 210351, + [SMALL_STATE(6491)] = 210365, + [SMALL_STATE(6492)] = 210381, + [SMALL_STATE(6493)] = 210397, + [SMALL_STATE(6494)] = 210411, + [SMALL_STATE(6495)] = 210427, + [SMALL_STATE(6496)] = 210441, + [SMALL_STATE(6497)] = 210455, + [SMALL_STATE(6498)] = 210469, + [SMALL_STATE(6499)] = 210483, + [SMALL_STATE(6500)] = 210495, + [SMALL_STATE(6501)] = 210511, + [SMALL_STATE(6502)] = 210525, + [SMALL_STATE(6503)] = 210541, + [SMALL_STATE(6504)] = 210557, + [SMALL_STATE(6505)] = 210573, + [SMALL_STATE(6506)] = 210589, + [SMALL_STATE(6507)] = 210601, + [SMALL_STATE(6508)] = 210617, + [SMALL_STATE(6509)] = 210633, + [SMALL_STATE(6510)] = 210649, + [SMALL_STATE(6511)] = 210661, + [SMALL_STATE(6512)] = 210673, + [SMALL_STATE(6513)] = 210689, + [SMALL_STATE(6514)] = 210705, + [SMALL_STATE(6515)] = 210721, + [SMALL_STATE(6516)] = 210733, + [SMALL_STATE(6517)] = 210749, + [SMALL_STATE(6518)] = 210765, + [SMALL_STATE(6519)] = 210781, + [SMALL_STATE(6520)] = 210793, + [SMALL_STATE(6521)] = 210809, + [SMALL_STATE(6522)] = 210825, + [SMALL_STATE(6523)] = 210837, + [SMALL_STATE(6524)] = 210853, + [SMALL_STATE(6525)] = 210867, + [SMALL_STATE(6526)] = 210883, + [SMALL_STATE(6527)] = 210899, + [SMALL_STATE(6528)] = 210915, + [SMALL_STATE(6529)] = 210929, + [SMALL_STATE(6530)] = 210945, + [SMALL_STATE(6531)] = 210961, + [SMALL_STATE(6532)] = 210973, + [SMALL_STATE(6533)] = 210989, + [SMALL_STATE(6534)] = 211005, + [SMALL_STATE(6535)] = 211021, + [SMALL_STATE(6536)] = 211033, + [SMALL_STATE(6537)] = 211045, + [SMALL_STATE(6538)] = 211061, + [SMALL_STATE(6539)] = 211075, + [SMALL_STATE(6540)] = 211087, + [SMALL_STATE(6541)] = 211103, + [SMALL_STATE(6542)] = 211119, + [SMALL_STATE(6543)] = 211135, + [SMALL_STATE(6544)] = 211151, + [SMALL_STATE(6545)] = 211167, + [SMALL_STATE(6546)] = 211179, + [SMALL_STATE(6547)] = 211195, + [SMALL_STATE(6548)] = 211207, + [SMALL_STATE(6549)] = 211223, + [SMALL_STATE(6550)] = 211235, + [SMALL_STATE(6551)] = 211251, + [SMALL_STATE(6552)] = 211267, + [SMALL_STATE(6553)] = 211283, + [SMALL_STATE(6554)] = 211299, + [SMALL_STATE(6555)] = 211313, + [SMALL_STATE(6556)] = 211329, + [SMALL_STATE(6557)] = 211345, + [SMALL_STATE(6558)] = 211361, + [SMALL_STATE(6559)] = 211375, + [SMALL_STATE(6560)] = 211391, + [SMALL_STATE(6561)] = 211403, + [SMALL_STATE(6562)] = 211415, + [SMALL_STATE(6563)] = 211429, + [SMALL_STATE(6564)] = 211445, + [SMALL_STATE(6565)] = 211457, + [SMALL_STATE(6566)] = 211473, + [SMALL_STATE(6567)] = 211489, + [SMALL_STATE(6568)] = 211505, + [SMALL_STATE(6569)] = 211521, + [SMALL_STATE(6570)] = 211535, + [SMALL_STATE(6571)] = 211549, + [SMALL_STATE(6572)] = 211563, + [SMALL_STATE(6573)] = 211575, + [SMALL_STATE(6574)] = 211587, + [SMALL_STATE(6575)] = 211603, + [SMALL_STATE(6576)] = 211615, + [SMALL_STATE(6577)] = 211631, + [SMALL_STATE(6578)] = 211647, + [SMALL_STATE(6579)] = 211663, + [SMALL_STATE(6580)] = 211677, + [SMALL_STATE(6581)] = 211691, + [SMALL_STATE(6582)] = 211703, + [SMALL_STATE(6583)] = 211715, + [SMALL_STATE(6584)] = 211727, + [SMALL_STATE(6585)] = 211741, + [SMALL_STATE(6586)] = 211755, + [SMALL_STATE(6587)] = 211767, + [SMALL_STATE(6588)] = 211779, + [SMALL_STATE(6589)] = 211793, + [SMALL_STATE(6590)] = 211809, + [SMALL_STATE(6591)] = 211821, + [SMALL_STATE(6592)] = 211835, + [SMALL_STATE(6593)] = 211849, + [SMALL_STATE(6594)] = 211863, + [SMALL_STATE(6595)] = 211879, + [SMALL_STATE(6596)] = 211895, + [SMALL_STATE(6597)] = 211907, + [SMALL_STATE(6598)] = 211919, + [SMALL_STATE(6599)] = 211933, + [SMALL_STATE(6600)] = 211949, + [SMALL_STATE(6601)] = 211961, + [SMALL_STATE(6602)] = 211975, + [SMALL_STATE(6603)] = 211987, + [SMALL_STATE(6604)] = 212001, + [SMALL_STATE(6605)] = 212015, + [SMALL_STATE(6606)] = 212027, + [SMALL_STATE(6607)] = 212043, + [SMALL_STATE(6608)] = 212059, + [SMALL_STATE(6609)] = 212075, + [SMALL_STATE(6610)] = 212091, + [SMALL_STATE(6611)] = 212105, + [SMALL_STATE(6612)] = 212121, + [SMALL_STATE(6613)] = 212133, + [SMALL_STATE(6614)] = 212147, + [SMALL_STATE(6615)] = 212163, + [SMALL_STATE(6616)] = 212179, + [SMALL_STATE(6617)] = 212193, + [SMALL_STATE(6618)] = 212205, + [SMALL_STATE(6619)] = 212221, + [SMALL_STATE(6620)] = 212233, + [SMALL_STATE(6621)] = 212245, + [SMALL_STATE(6622)] = 212257, + [SMALL_STATE(6623)] = 212273, + [SMALL_STATE(6624)] = 212285, + [SMALL_STATE(6625)] = 212301, + [SMALL_STATE(6626)] = 212313, + [SMALL_STATE(6627)] = 212325, + [SMALL_STATE(6628)] = 212341, + [SMALL_STATE(6629)] = 212355, + [SMALL_STATE(6630)] = 212371, + [SMALL_STATE(6631)] = 212385, + [SMALL_STATE(6632)] = 212401, + [SMALL_STATE(6633)] = 212417, + [SMALL_STATE(6634)] = 212433, + [SMALL_STATE(6635)] = 212449, + [SMALL_STATE(6636)] = 212465, + [SMALL_STATE(6637)] = 212479, + [SMALL_STATE(6638)] = 212495, + [SMALL_STATE(6639)] = 212507, + [SMALL_STATE(6640)] = 212519, + [SMALL_STATE(6641)] = 212535, + [SMALL_STATE(6642)] = 212547, + [SMALL_STATE(6643)] = 212559, + [SMALL_STATE(6644)] = 212573, + [SMALL_STATE(6645)] = 212585, + [SMALL_STATE(6646)] = 212599, + [SMALL_STATE(6647)] = 212613, + [SMALL_STATE(6648)] = 212629, + [SMALL_STATE(6649)] = 212645, + [SMALL_STATE(6650)] = 212661, + [SMALL_STATE(6651)] = 212673, + [SMALL_STATE(6652)] = 212687, + [SMALL_STATE(6653)] = 212703, + [SMALL_STATE(6654)] = 212715, + [SMALL_STATE(6655)] = 212731, + [SMALL_STATE(6656)] = 212747, + [SMALL_STATE(6657)] = 212763, + [SMALL_STATE(6658)] = 212779, + [SMALL_STATE(6659)] = 212795, + [SMALL_STATE(6660)] = 212809, + [SMALL_STATE(6661)] = 212825, + [SMALL_STATE(6662)] = 212841, + [SMALL_STATE(6663)] = 212853, + [SMALL_STATE(6664)] = 212865, + [SMALL_STATE(6665)] = 212877, + [SMALL_STATE(6666)] = 212889, + [SMALL_STATE(6667)] = 212901, + [SMALL_STATE(6668)] = 212913, + [SMALL_STATE(6669)] = 212925, + [SMALL_STATE(6670)] = 212939, + [SMALL_STATE(6671)] = 212951, + [SMALL_STATE(6672)] = 212967, + [SMALL_STATE(6673)] = 212979, + [SMALL_STATE(6674)] = 212993, + [SMALL_STATE(6675)] = 213007, + [SMALL_STATE(6676)] = 213023, + [SMALL_STATE(6677)] = 213035, + [SMALL_STATE(6678)] = 213049, + [SMALL_STATE(6679)] = 213063, + [SMALL_STATE(6680)] = 213077, + [SMALL_STATE(6681)] = 213091, + [SMALL_STATE(6682)] = 213103, + [SMALL_STATE(6683)] = 213119, + [SMALL_STATE(6684)] = 213133, + [SMALL_STATE(6685)] = 213145, + [SMALL_STATE(6686)] = 213161, + [SMALL_STATE(6687)] = 213175, + [SMALL_STATE(6688)] = 213191, + [SMALL_STATE(6689)] = 213207, + [SMALL_STATE(6690)] = 213223, + [SMALL_STATE(6691)] = 213239, + [SMALL_STATE(6692)] = 213255, + [SMALL_STATE(6693)] = 213271, + [SMALL_STATE(6694)] = 213283, + [SMALL_STATE(6695)] = 213299, + [SMALL_STATE(6696)] = 213315, + [SMALL_STATE(6697)] = 213327, + [SMALL_STATE(6698)] = 213343, + [SMALL_STATE(6699)] = 213359, + [SMALL_STATE(6700)] = 213375, + [SMALL_STATE(6701)] = 213387, + [SMALL_STATE(6702)] = 213403, + [SMALL_STATE(6703)] = 213415, + [SMALL_STATE(6704)] = 213431, + [SMALL_STATE(6705)] = 213447, + [SMALL_STATE(6706)] = 213463, + [SMALL_STATE(6707)] = 213479, + [SMALL_STATE(6708)] = 213495, + [SMALL_STATE(6709)] = 213511, + [SMALL_STATE(6710)] = 213523, + [SMALL_STATE(6711)] = 213535, + [SMALL_STATE(6712)] = 213551, + [SMALL_STATE(6713)] = 213567, + [SMALL_STATE(6714)] = 213583, + [SMALL_STATE(6715)] = 213599, + [SMALL_STATE(6716)] = 213615, + [SMALL_STATE(6717)] = 213631, + [SMALL_STATE(6718)] = 213643, + [SMALL_STATE(6719)] = 213659, + [SMALL_STATE(6720)] = 213675, + [SMALL_STATE(6721)] = 213691, + [SMALL_STATE(6722)] = 213707, + [SMALL_STATE(6723)] = 213723, + [SMALL_STATE(6724)] = 213735, + [SMALL_STATE(6725)] = 213747, + [SMALL_STATE(6726)] = 213759, + [SMALL_STATE(6727)] = 213775, + [SMALL_STATE(6728)] = 213787, + [SMALL_STATE(6729)] = 213799, + [SMALL_STATE(6730)] = 213811, + [SMALL_STATE(6731)] = 213827, + [SMALL_STATE(6732)] = 213839, + [SMALL_STATE(6733)] = 213851, + [SMALL_STATE(6734)] = 213867, + [SMALL_STATE(6735)] = 213883, + [SMALL_STATE(6736)] = 213899, + [SMALL_STATE(6737)] = 213915, + [SMALL_STATE(6738)] = 213927, + [SMALL_STATE(6739)] = 213941, + [SMALL_STATE(6740)] = 213957, + [SMALL_STATE(6741)] = 213973, + [SMALL_STATE(6742)] = 213987, + [SMALL_STATE(6743)] = 214003, + [SMALL_STATE(6744)] = 214015, + [SMALL_STATE(6745)] = 214031, + [SMALL_STATE(6746)] = 214047, + [SMALL_STATE(6747)] = 214063, + [SMALL_STATE(6748)] = 214079, + [SMALL_STATE(6749)] = 214095, + [SMALL_STATE(6750)] = 214109, + [SMALL_STATE(6751)] = 214125, + [SMALL_STATE(6752)] = 214141, + [SMALL_STATE(6753)] = 214155, + [SMALL_STATE(6754)] = 214171, + [SMALL_STATE(6755)] = 214187, + [SMALL_STATE(6756)] = 214203, + [SMALL_STATE(6757)] = 214219, + [SMALL_STATE(6758)] = 214235, + [SMALL_STATE(6759)] = 214251, + [SMALL_STATE(6760)] = 214267, + [SMALL_STATE(6761)] = 214283, + [SMALL_STATE(6762)] = 214299, + [SMALL_STATE(6763)] = 214315, + [SMALL_STATE(6764)] = 214329, + [SMALL_STATE(6765)] = 214345, + [SMALL_STATE(6766)] = 214361, + [SMALL_STATE(6767)] = 214377, + [SMALL_STATE(6768)] = 214391, + [SMALL_STATE(6769)] = 214407, + [SMALL_STATE(6770)] = 214419, + [SMALL_STATE(6771)] = 214431, + [SMALL_STATE(6772)] = 214445, + [SMALL_STATE(6773)] = 214461, + [SMALL_STATE(6774)] = 214477, + [SMALL_STATE(6775)] = 214491, + [SMALL_STATE(6776)] = 214507, + [SMALL_STATE(6777)] = 214523, + [SMALL_STATE(6778)] = 214539, + [SMALL_STATE(6779)] = 214555, + [SMALL_STATE(6780)] = 214571, + [SMALL_STATE(6781)] = 214587, + [SMALL_STATE(6782)] = 214603, + [SMALL_STATE(6783)] = 214619, + [SMALL_STATE(6784)] = 214635, + [SMALL_STATE(6785)] = 214651, + [SMALL_STATE(6786)] = 214665, + [SMALL_STATE(6787)] = 214681, + [SMALL_STATE(6788)] = 214697, + [SMALL_STATE(6789)] = 214711, + [SMALL_STATE(6790)] = 214723, + [SMALL_STATE(6791)] = 214739, + [SMALL_STATE(6792)] = 214751, + [SMALL_STATE(6793)] = 214767, + [SMALL_STATE(6794)] = 214779, + [SMALL_STATE(6795)] = 214795, + [SMALL_STATE(6796)] = 214807, + [SMALL_STATE(6797)] = 214823, + [SMALL_STATE(6798)] = 214839, + [SMALL_STATE(6799)] = 214853, + [SMALL_STATE(6800)] = 214869, + [SMALL_STATE(6801)] = 214885, + [SMALL_STATE(6802)] = 214901, + [SMALL_STATE(6803)] = 214913, + [SMALL_STATE(6804)] = 214927, + [SMALL_STATE(6805)] = 214940, + [SMALL_STATE(6806)] = 214953, + [SMALL_STATE(6807)] = 214966, + [SMALL_STATE(6808)] = 214979, + [SMALL_STATE(6809)] = 214992, + [SMALL_STATE(6810)] = 215005, + [SMALL_STATE(6811)] = 215018, + [SMALL_STATE(6812)] = 215031, + [SMALL_STATE(6813)] = 215044, + [SMALL_STATE(6814)] = 215057, + [SMALL_STATE(6815)] = 215070, + [SMALL_STATE(6816)] = 215081, + [SMALL_STATE(6817)] = 215094, + [SMALL_STATE(6818)] = 215105, + [SMALL_STATE(6819)] = 215118, + [SMALL_STATE(6820)] = 215129, + [SMALL_STATE(6821)] = 215142, + [SMALL_STATE(6822)] = 215155, + [SMALL_STATE(6823)] = 215168, + [SMALL_STATE(6824)] = 215181, + [SMALL_STATE(6825)] = 215194, + [SMALL_STATE(6826)] = 215207, + [SMALL_STATE(6827)] = 215220, + [SMALL_STATE(6828)] = 215233, + [SMALL_STATE(6829)] = 215246, + [SMALL_STATE(6830)] = 215259, + [SMALL_STATE(6831)] = 215270, + [SMALL_STATE(6832)] = 215283, + [SMALL_STATE(6833)] = 215296, + [SMALL_STATE(6834)] = 215309, + [SMALL_STATE(6835)] = 215322, + [SMALL_STATE(6836)] = 215335, + [SMALL_STATE(6837)] = 215348, + [SMALL_STATE(6838)] = 215361, + [SMALL_STATE(6839)] = 215374, + [SMALL_STATE(6840)] = 215387, + [SMALL_STATE(6841)] = 215400, + [SMALL_STATE(6842)] = 215413, + [SMALL_STATE(6843)] = 215426, + [SMALL_STATE(6844)] = 215439, + [SMALL_STATE(6845)] = 215452, + [SMALL_STATE(6846)] = 215465, + [SMALL_STATE(6847)] = 215478, + [SMALL_STATE(6848)] = 215491, + [SMALL_STATE(6849)] = 215504, + [SMALL_STATE(6850)] = 215517, + [SMALL_STATE(6851)] = 215530, + [SMALL_STATE(6852)] = 215543, + [SMALL_STATE(6853)] = 215556, + [SMALL_STATE(6854)] = 215569, + [SMALL_STATE(6855)] = 215582, + [SMALL_STATE(6856)] = 215595, + [SMALL_STATE(6857)] = 215608, + [SMALL_STATE(6858)] = 215621, + [SMALL_STATE(6859)] = 215634, + [SMALL_STATE(6860)] = 215647, + [SMALL_STATE(6861)] = 215660, + [SMALL_STATE(6862)] = 215673, + [SMALL_STATE(6863)] = 215686, + [SMALL_STATE(6864)] = 215699, + [SMALL_STATE(6865)] = 215710, + [SMALL_STATE(6866)] = 215723, + [SMALL_STATE(6867)] = 215736, + [SMALL_STATE(6868)] = 215749, + [SMALL_STATE(6869)] = 215762, + [SMALL_STATE(6870)] = 215775, + [SMALL_STATE(6871)] = 215788, + [SMALL_STATE(6872)] = 215801, + [SMALL_STATE(6873)] = 215814, + [SMALL_STATE(6874)] = 215825, + [SMALL_STATE(6875)] = 215838, + [SMALL_STATE(6876)] = 215851, + [SMALL_STATE(6877)] = 215864, + [SMALL_STATE(6878)] = 215877, + [SMALL_STATE(6879)] = 215890, + [SMALL_STATE(6880)] = 215903, + [SMALL_STATE(6881)] = 215916, + [SMALL_STATE(6882)] = 215929, + [SMALL_STATE(6883)] = 215942, + [SMALL_STATE(6884)] = 215955, + [SMALL_STATE(6885)] = 215968, + [SMALL_STATE(6886)] = 215981, + [SMALL_STATE(6887)] = 215994, + [SMALL_STATE(6888)] = 216007, + [SMALL_STATE(6889)] = 216020, + [SMALL_STATE(6890)] = 216033, + [SMALL_STATE(6891)] = 216046, + [SMALL_STATE(6892)] = 216057, + [SMALL_STATE(6893)] = 216070, + [SMALL_STATE(6894)] = 216083, + [SMALL_STATE(6895)] = 216096, + [SMALL_STATE(6896)] = 216109, + [SMALL_STATE(6897)] = 216122, + [SMALL_STATE(6898)] = 216135, + [SMALL_STATE(6899)] = 216148, + [SMALL_STATE(6900)] = 216161, + [SMALL_STATE(6901)] = 216174, + [SMALL_STATE(6902)] = 216187, + [SMALL_STATE(6903)] = 216200, + [SMALL_STATE(6904)] = 216213, + [SMALL_STATE(6905)] = 216226, + [SMALL_STATE(6906)] = 216239, + [SMALL_STATE(6907)] = 216250, + [SMALL_STATE(6908)] = 216263, + [SMALL_STATE(6909)] = 216276, + [SMALL_STATE(6910)] = 216289, + [SMALL_STATE(6911)] = 216302, + [SMALL_STATE(6912)] = 216315, + [SMALL_STATE(6913)] = 216326, + [SMALL_STATE(6914)] = 216339, + [SMALL_STATE(6915)] = 216352, + [SMALL_STATE(6916)] = 216365, + [SMALL_STATE(6917)] = 216378, + [SMALL_STATE(6918)] = 216391, + [SMALL_STATE(6919)] = 216404, + [SMALL_STATE(6920)] = 216417, + [SMALL_STATE(6921)] = 216430, + [SMALL_STATE(6922)] = 216443, + [SMALL_STATE(6923)] = 216456, + [SMALL_STATE(6924)] = 216469, + [SMALL_STATE(6925)] = 216482, + [SMALL_STATE(6926)] = 216495, + [SMALL_STATE(6927)] = 216508, + [SMALL_STATE(6928)] = 216521, + [SMALL_STATE(6929)] = 216534, + [SMALL_STATE(6930)] = 216547, + [SMALL_STATE(6931)] = 216560, + [SMALL_STATE(6932)] = 216573, + [SMALL_STATE(6933)] = 216586, + [SMALL_STATE(6934)] = 216599, + [SMALL_STATE(6935)] = 216612, + [SMALL_STATE(6936)] = 216625, + [SMALL_STATE(6937)] = 216638, + [SMALL_STATE(6938)] = 216651, + [SMALL_STATE(6939)] = 216664, + [SMALL_STATE(6940)] = 216677, + [SMALL_STATE(6941)] = 216690, + [SMALL_STATE(6942)] = 216703, + [SMALL_STATE(6943)] = 216716, + [SMALL_STATE(6944)] = 216729, + [SMALL_STATE(6945)] = 216742, + [SMALL_STATE(6946)] = 216755, + [SMALL_STATE(6947)] = 216768, + [SMALL_STATE(6948)] = 216781, + [SMALL_STATE(6949)] = 216792, + [SMALL_STATE(6950)] = 216805, + [SMALL_STATE(6951)] = 216818, + [SMALL_STATE(6952)] = 216831, + [SMALL_STATE(6953)] = 216844, + [SMALL_STATE(6954)] = 216857, + [SMALL_STATE(6955)] = 216870, + [SMALL_STATE(6956)] = 216883, + [SMALL_STATE(6957)] = 216896, + [SMALL_STATE(6958)] = 216909, + [SMALL_STATE(6959)] = 216922, + [SMALL_STATE(6960)] = 216935, + [SMALL_STATE(6961)] = 216948, + [SMALL_STATE(6962)] = 216961, + [SMALL_STATE(6963)] = 216974, + [SMALL_STATE(6964)] = 216987, + [SMALL_STATE(6965)] = 216998, + [SMALL_STATE(6966)] = 217011, + [SMALL_STATE(6967)] = 217024, + [SMALL_STATE(6968)] = 217037, + [SMALL_STATE(6969)] = 217050, + [SMALL_STATE(6970)] = 217063, + [SMALL_STATE(6971)] = 217076, + [SMALL_STATE(6972)] = 217089, + [SMALL_STATE(6973)] = 217102, + [SMALL_STATE(6974)] = 217115, + [SMALL_STATE(6975)] = 217128, + [SMALL_STATE(6976)] = 217141, + [SMALL_STATE(6977)] = 217154, + [SMALL_STATE(6978)] = 217167, + [SMALL_STATE(6979)] = 217180, + [SMALL_STATE(6980)] = 217193, + [SMALL_STATE(6981)] = 217206, + [SMALL_STATE(6982)] = 217219, + [SMALL_STATE(6983)] = 217229, + [SMALL_STATE(6984)] = 217239, + [SMALL_STATE(6985)] = 217249, + [SMALL_STATE(6986)] = 217259, + [SMALL_STATE(6987)] = 217269, + [SMALL_STATE(6988)] = 217279, + [SMALL_STATE(6989)] = 217289, + [SMALL_STATE(6990)] = 217299, + [SMALL_STATE(6991)] = 217309, + [SMALL_STATE(6992)] = 217319, + [SMALL_STATE(6993)] = 217329, + [SMALL_STATE(6994)] = 217339, + [SMALL_STATE(6995)] = 217349, + [SMALL_STATE(6996)] = 217359, + [SMALL_STATE(6997)] = 217369, + [SMALL_STATE(6998)] = 217379, + [SMALL_STATE(6999)] = 217389, + [SMALL_STATE(7000)] = 217399, + [SMALL_STATE(7001)] = 217409, + [SMALL_STATE(7002)] = 217419, + [SMALL_STATE(7003)] = 217429, + [SMALL_STATE(7004)] = 217439, + [SMALL_STATE(7005)] = 217449, + [SMALL_STATE(7006)] = 217459, + [SMALL_STATE(7007)] = 217469, + [SMALL_STATE(7008)] = 217479, + [SMALL_STATE(7009)] = 217489, + [SMALL_STATE(7010)] = 217499, + [SMALL_STATE(7011)] = 217509, + [SMALL_STATE(7012)] = 217519, + [SMALL_STATE(7013)] = 217529, + [SMALL_STATE(7014)] = 217539, + [SMALL_STATE(7015)] = 217549, + [SMALL_STATE(7016)] = 217559, + [SMALL_STATE(7017)] = 217569, + [SMALL_STATE(7018)] = 217579, + [SMALL_STATE(7019)] = 217589, + [SMALL_STATE(7020)] = 217599, + [SMALL_STATE(7021)] = 217609, + [SMALL_STATE(7022)] = 217619, + [SMALL_STATE(7023)] = 217629, + [SMALL_STATE(7024)] = 217639, + [SMALL_STATE(7025)] = 217649, + [SMALL_STATE(7026)] = 217659, + [SMALL_STATE(7027)] = 217669, + [SMALL_STATE(7028)] = 217679, + [SMALL_STATE(7029)] = 217689, + [SMALL_STATE(7030)] = 217699, + [SMALL_STATE(7031)] = 217709, + [SMALL_STATE(7032)] = 217719, + [SMALL_STATE(7033)] = 217729, + [SMALL_STATE(7034)] = 217739, + [SMALL_STATE(7035)] = 217749, + [SMALL_STATE(7036)] = 217759, + [SMALL_STATE(7037)] = 217769, + [SMALL_STATE(7038)] = 217779, + [SMALL_STATE(7039)] = 217789, + [SMALL_STATE(7040)] = 217799, + [SMALL_STATE(7041)] = 217809, + [SMALL_STATE(7042)] = 217819, + [SMALL_STATE(7043)] = 217829, + [SMALL_STATE(7044)] = 217839, + [SMALL_STATE(7045)] = 217849, + [SMALL_STATE(7046)] = 217859, + [SMALL_STATE(7047)] = 217869, + [SMALL_STATE(7048)] = 217879, + [SMALL_STATE(7049)] = 217889, + [SMALL_STATE(7050)] = 217899, + [SMALL_STATE(7051)] = 217909, + [SMALL_STATE(7052)] = 217919, + [SMALL_STATE(7053)] = 217929, + [SMALL_STATE(7054)] = 217939, + [SMALL_STATE(7055)] = 217949, + [SMALL_STATE(7056)] = 217959, + [SMALL_STATE(7057)] = 217969, + [SMALL_STATE(7058)] = 217979, + [SMALL_STATE(7059)] = 217989, + [SMALL_STATE(7060)] = 217999, + [SMALL_STATE(7061)] = 218009, + [SMALL_STATE(7062)] = 218019, + [SMALL_STATE(7063)] = 218029, + [SMALL_STATE(7064)] = 218039, + [SMALL_STATE(7065)] = 218049, + [SMALL_STATE(7066)] = 218059, + [SMALL_STATE(7067)] = 218069, + [SMALL_STATE(7068)] = 218079, + [SMALL_STATE(7069)] = 218089, + [SMALL_STATE(7070)] = 218099, + [SMALL_STATE(7071)] = 218109, + [SMALL_STATE(7072)] = 218119, + [SMALL_STATE(7073)] = 218129, + [SMALL_STATE(7074)] = 218139, + [SMALL_STATE(7075)] = 218149, + [SMALL_STATE(7076)] = 218159, + [SMALL_STATE(7077)] = 218169, + [SMALL_STATE(7078)] = 218179, + [SMALL_STATE(7079)] = 218189, + [SMALL_STATE(7080)] = 218199, + [SMALL_STATE(7081)] = 218209, + [SMALL_STATE(7082)] = 218219, + [SMALL_STATE(7083)] = 218229, + [SMALL_STATE(7084)] = 218239, + [SMALL_STATE(7085)] = 218249, + [SMALL_STATE(7086)] = 218259, + [SMALL_STATE(7087)] = 218269, + [SMALL_STATE(7088)] = 218279, + [SMALL_STATE(7089)] = 218289, + [SMALL_STATE(7090)] = 218299, + [SMALL_STATE(7091)] = 218309, + [SMALL_STATE(7092)] = 218319, + [SMALL_STATE(7093)] = 218329, + [SMALL_STATE(7094)] = 218339, + [SMALL_STATE(7095)] = 218349, + [SMALL_STATE(7096)] = 218359, + [SMALL_STATE(7097)] = 218369, + [SMALL_STATE(7098)] = 218379, + [SMALL_STATE(7099)] = 218389, + [SMALL_STATE(7100)] = 218399, + [SMALL_STATE(7101)] = 218409, + [SMALL_STATE(7102)] = 218419, + [SMALL_STATE(7103)] = 218429, + [SMALL_STATE(7104)] = 218439, + [SMALL_STATE(7105)] = 218449, + [SMALL_STATE(7106)] = 218459, + [SMALL_STATE(7107)] = 218469, + [SMALL_STATE(7108)] = 218479, + [SMALL_STATE(7109)] = 218489, + [SMALL_STATE(7110)] = 218499, + [SMALL_STATE(7111)] = 218509, + [SMALL_STATE(7112)] = 218519, + [SMALL_STATE(7113)] = 218529, + [SMALL_STATE(7114)] = 218539, + [SMALL_STATE(7115)] = 218549, + [SMALL_STATE(7116)] = 218559, + [SMALL_STATE(7117)] = 218569, + [SMALL_STATE(7118)] = 218579, + [SMALL_STATE(7119)] = 218589, + [SMALL_STATE(7120)] = 218599, + [SMALL_STATE(7121)] = 218609, + [SMALL_STATE(7122)] = 218619, + [SMALL_STATE(7123)] = 218629, + [SMALL_STATE(7124)] = 218639, + [SMALL_STATE(7125)] = 218649, + [SMALL_STATE(7126)] = 218659, + [SMALL_STATE(7127)] = 218669, + [SMALL_STATE(7128)] = 218679, + [SMALL_STATE(7129)] = 218689, + [SMALL_STATE(7130)] = 218699, + [SMALL_STATE(7131)] = 218709, + [SMALL_STATE(7132)] = 218719, + [SMALL_STATE(7133)] = 218729, + [SMALL_STATE(7134)] = 218739, + [SMALL_STATE(7135)] = 218749, + [SMALL_STATE(7136)] = 218759, + [SMALL_STATE(7137)] = 218769, + [SMALL_STATE(7138)] = 218779, + [SMALL_STATE(7139)] = 218789, + [SMALL_STATE(7140)] = 218799, + [SMALL_STATE(7141)] = 218809, + [SMALL_STATE(7142)] = 218819, + [SMALL_STATE(7143)] = 218829, + [SMALL_STATE(7144)] = 218839, + [SMALL_STATE(7145)] = 218849, + [SMALL_STATE(7146)] = 218859, + [SMALL_STATE(7147)] = 218869, + [SMALL_STATE(7148)] = 218879, + [SMALL_STATE(7149)] = 218889, + [SMALL_STATE(7150)] = 218899, + [SMALL_STATE(7151)] = 218909, + [SMALL_STATE(7152)] = 218919, + [SMALL_STATE(7153)] = 218929, + [SMALL_STATE(7154)] = 218939, + [SMALL_STATE(7155)] = 218949, + [SMALL_STATE(7156)] = 218959, + [SMALL_STATE(7157)] = 218969, + [SMALL_STATE(7158)] = 218979, + [SMALL_STATE(7159)] = 218989, + [SMALL_STATE(7160)] = 218999, + [SMALL_STATE(7161)] = 219009, + [SMALL_STATE(7162)] = 219019, + [SMALL_STATE(7163)] = 219029, + [SMALL_STATE(7164)] = 219039, + [SMALL_STATE(7165)] = 219049, + [SMALL_STATE(7166)] = 219059, + [SMALL_STATE(7167)] = 219069, + [SMALL_STATE(7168)] = 219079, + [SMALL_STATE(7169)] = 219089, + [SMALL_STATE(7170)] = 219099, + [SMALL_STATE(7171)] = 219109, + [SMALL_STATE(7172)] = 219119, + [SMALL_STATE(7173)] = 219129, + [SMALL_STATE(7174)] = 219139, + [SMALL_STATE(7175)] = 219149, + [SMALL_STATE(7176)] = 219159, + [SMALL_STATE(7177)] = 219169, + [SMALL_STATE(7178)] = 219179, + [SMALL_STATE(7179)] = 219189, + [SMALL_STATE(7180)] = 219199, + [SMALL_STATE(7181)] = 219209, + [SMALL_STATE(7182)] = 219219, + [SMALL_STATE(7183)] = 219229, + [SMALL_STATE(7184)] = 219239, + [SMALL_STATE(7185)] = 219249, + [SMALL_STATE(7186)] = 219259, + [SMALL_STATE(7187)] = 219269, + [SMALL_STATE(7188)] = 219279, + [SMALL_STATE(7189)] = 219289, + [SMALL_STATE(7190)] = 219299, + [SMALL_STATE(7191)] = 219309, + [SMALL_STATE(7192)] = 219319, + [SMALL_STATE(7193)] = 219329, + [SMALL_STATE(7194)] = 219339, + [SMALL_STATE(7195)] = 219349, + [SMALL_STATE(7196)] = 219359, + [SMALL_STATE(7197)] = 219369, + [SMALL_STATE(7198)] = 219379, + [SMALL_STATE(7199)] = 219389, + [SMALL_STATE(7200)] = 219399, + [SMALL_STATE(7201)] = 219409, + [SMALL_STATE(7202)] = 219419, + [SMALL_STATE(7203)] = 219429, + [SMALL_STATE(7204)] = 219439, + [SMALL_STATE(7205)] = 219449, + [SMALL_STATE(7206)] = 219459, + [SMALL_STATE(7207)] = 219469, + [SMALL_STATE(7208)] = 219479, + [SMALL_STATE(7209)] = 219489, + [SMALL_STATE(7210)] = 219499, + [SMALL_STATE(7211)] = 219509, + [SMALL_STATE(7212)] = 219519, + [SMALL_STATE(7213)] = 219529, + [SMALL_STATE(7214)] = 219539, + [SMALL_STATE(7215)] = 219549, + [SMALL_STATE(7216)] = 219559, + [SMALL_STATE(7217)] = 219569, + [SMALL_STATE(7218)] = 219579, + [SMALL_STATE(7219)] = 219589, + [SMALL_STATE(7220)] = 219599, + [SMALL_STATE(7221)] = 219609, + [SMALL_STATE(7222)] = 219619, + [SMALL_STATE(7223)] = 219629, + [SMALL_STATE(7224)] = 219639, + [SMALL_STATE(7225)] = 219649, + [SMALL_STATE(7226)] = 219659, + [SMALL_STATE(7227)] = 219669, + [SMALL_STATE(7228)] = 219679, + [SMALL_STATE(7229)] = 219689, + [SMALL_STATE(7230)] = 219699, + [SMALL_STATE(7231)] = 219709, + [SMALL_STATE(7232)] = 219719, + [SMALL_STATE(7233)] = 219729, + [SMALL_STATE(7234)] = 219739, + [SMALL_STATE(7235)] = 219749, + [SMALL_STATE(7236)] = 219759, + [SMALL_STATE(7237)] = 219769, + [SMALL_STATE(7238)] = 219779, + [SMALL_STATE(7239)] = 219789, + [SMALL_STATE(7240)] = 219799, + [SMALL_STATE(7241)] = 219809, + [SMALL_STATE(7242)] = 219819, + [SMALL_STATE(7243)] = 219829, + [SMALL_STATE(7244)] = 219839, + [SMALL_STATE(7245)] = 219849, + [SMALL_STATE(7246)] = 219859, + [SMALL_STATE(7247)] = 219869, + [SMALL_STATE(7248)] = 219879, + [SMALL_STATE(7249)] = 219889, + [SMALL_STATE(7250)] = 219899, + [SMALL_STATE(7251)] = 219909, + [SMALL_STATE(7252)] = 219919, + [SMALL_STATE(7253)] = 219929, + [SMALL_STATE(7254)] = 219939, + [SMALL_STATE(7255)] = 219949, + [SMALL_STATE(7256)] = 219959, + [SMALL_STATE(7257)] = 219969, + [SMALL_STATE(7258)] = 219979, + [SMALL_STATE(7259)] = 219989, + [SMALL_STATE(7260)] = 219999, + [SMALL_STATE(7261)] = 220009, + [SMALL_STATE(7262)] = 220019, + [SMALL_STATE(7263)] = 220029, + [SMALL_STATE(7264)] = 220039, + [SMALL_STATE(7265)] = 220049, + [SMALL_STATE(7266)] = 220059, + [SMALL_STATE(7267)] = 220069, + [SMALL_STATE(7268)] = 220079, + [SMALL_STATE(7269)] = 220089, + [SMALL_STATE(7270)] = 220099, + [SMALL_STATE(7271)] = 220109, + [SMALL_STATE(7272)] = 220119, + [SMALL_STATE(7273)] = 220129, + [SMALL_STATE(7274)] = 220139, + [SMALL_STATE(7275)] = 220149, + [SMALL_STATE(7276)] = 220159, + [SMALL_STATE(7277)] = 220169, + [SMALL_STATE(7278)] = 220179, + [SMALL_STATE(7279)] = 220189, + [SMALL_STATE(7280)] = 220199, + [SMALL_STATE(7281)] = 220209, + [SMALL_STATE(7282)] = 220219, + [SMALL_STATE(7283)] = 220229, + [SMALL_STATE(7284)] = 220239, + [SMALL_STATE(7285)] = 220249, + [SMALL_STATE(7286)] = 220259, + [SMALL_STATE(7287)] = 220269, + [SMALL_STATE(7288)] = 220279, + [SMALL_STATE(7289)] = 220289, + [SMALL_STATE(7290)] = 220299, + [SMALL_STATE(7291)] = 220309, + [SMALL_STATE(7292)] = 220319, + [SMALL_STATE(7293)] = 220329, + [SMALL_STATE(7294)] = 220339, + [SMALL_STATE(7295)] = 220349, + [SMALL_STATE(7296)] = 220359, + [SMALL_STATE(7297)] = 220369, + [SMALL_STATE(7298)] = 220379, + [SMALL_STATE(7299)] = 220389, + [SMALL_STATE(7300)] = 220399, + [SMALL_STATE(7301)] = 220409, + [SMALL_STATE(7302)] = 220419, + [SMALL_STATE(7303)] = 220429, + [SMALL_STATE(7304)] = 220439, + [SMALL_STATE(7305)] = 220449, + [SMALL_STATE(7306)] = 220459, + [SMALL_STATE(7307)] = 220469, + [SMALL_STATE(7308)] = 220479, + [SMALL_STATE(7309)] = 220489, + [SMALL_STATE(7310)] = 220499, + [SMALL_STATE(7311)] = 220509, + [SMALL_STATE(7312)] = 220519, + [SMALL_STATE(7313)] = 220529, + [SMALL_STATE(7314)] = 220539, + [SMALL_STATE(7315)] = 220549, + [SMALL_STATE(7316)] = 220559, + [SMALL_STATE(7317)] = 220569, + [SMALL_STATE(7318)] = 220579, + [SMALL_STATE(7319)] = 220589, + [SMALL_STATE(7320)] = 220599, + [SMALL_STATE(7321)] = 220609, + [SMALL_STATE(7322)] = 220619, + [SMALL_STATE(7323)] = 220629, + [SMALL_STATE(7324)] = 220639, + [SMALL_STATE(7325)] = 220649, + [SMALL_STATE(7326)] = 220659, + [SMALL_STATE(7327)] = 220669, + [SMALL_STATE(7328)] = 220679, + [SMALL_STATE(7329)] = 220689, + [SMALL_STATE(7330)] = 220699, + [SMALL_STATE(7331)] = 220709, + [SMALL_STATE(7332)] = 220719, + [SMALL_STATE(7333)] = 220729, + [SMALL_STATE(7334)] = 220739, + [SMALL_STATE(7335)] = 220749, + [SMALL_STATE(7336)] = 220759, + [SMALL_STATE(7337)] = 220769, + [SMALL_STATE(7338)] = 220779, + [SMALL_STATE(7339)] = 220789, + [SMALL_STATE(7340)] = 220799, + [SMALL_STATE(7341)] = 220809, + [SMALL_STATE(7342)] = 220819, + [SMALL_STATE(7343)] = 220829, + [SMALL_STATE(7344)] = 220839, + [SMALL_STATE(7345)] = 220849, + [SMALL_STATE(7346)] = 220859, + [SMALL_STATE(7347)] = 220869, + [SMALL_STATE(7348)] = 220879, + [SMALL_STATE(7349)] = 220889, + [SMALL_STATE(7350)] = 220899, + [SMALL_STATE(7351)] = 220909, + [SMALL_STATE(7352)] = 220919, + [SMALL_STATE(7353)] = 220929, + [SMALL_STATE(7354)] = 220939, + [SMALL_STATE(7355)] = 220949, + [SMALL_STATE(7356)] = 220959, + [SMALL_STATE(7357)] = 220969, + [SMALL_STATE(7358)] = 220979, + [SMALL_STATE(7359)] = 220989, + [SMALL_STATE(7360)] = 220999, + [SMALL_STATE(7361)] = 221009, + [SMALL_STATE(7362)] = 221019, + [SMALL_STATE(7363)] = 221029, + [SMALL_STATE(7364)] = 221039, + [SMALL_STATE(7365)] = 221049, + [SMALL_STATE(7366)] = 221059, + [SMALL_STATE(7367)] = 221069, + [SMALL_STATE(7368)] = 221079, + [SMALL_STATE(7369)] = 221089, + [SMALL_STATE(7370)] = 221099, + [SMALL_STATE(7371)] = 221109, + [SMALL_STATE(7372)] = 221119, + [SMALL_STATE(7373)] = 221129, + [SMALL_STATE(7374)] = 221139, + [SMALL_STATE(7375)] = 221149, + [SMALL_STATE(7376)] = 221159, + [SMALL_STATE(7377)] = 221169, + [SMALL_STATE(7378)] = 221179, + [SMALL_STATE(7379)] = 221189, + [SMALL_STATE(7380)] = 221199, + [SMALL_STATE(7381)] = 221209, + [SMALL_STATE(7382)] = 221219, + [SMALL_STATE(7383)] = 221229, + [SMALL_STATE(7384)] = 221239, + [SMALL_STATE(7385)] = 221249, + [SMALL_STATE(7386)] = 221259, + [SMALL_STATE(7387)] = 221269, + [SMALL_STATE(7388)] = 221279, }; 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(7674), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7311), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6012), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6044), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4804), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7479), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7853), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7546), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5091), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6302), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7464), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7500), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6369), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7693), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6761), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7714), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7579), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5927), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5929), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7112), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6665), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7390), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7540), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4922), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4923), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6092), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7633), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7116), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4924), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5528), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5829), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6950), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6305), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7231), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7234), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6338), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6867), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4736), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6941), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6238), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7051), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7162), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5487), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5488), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6635), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6192), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6874), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6953), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7166), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6637), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7121), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6098), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7776), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7616), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7629), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7674), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5936), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5940), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7212), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6371), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7539), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4909), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6032), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7628), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7196), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4913), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6909), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6149), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6150), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6151), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7465), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7586), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7894), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4761), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6536), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7468), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7471), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5290), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6746), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5975), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4989), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6255), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5340), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7592), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5093), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6640), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4927), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7318), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6982), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5443), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6521), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6951), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7315), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6534), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6565), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4917), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7052), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6804), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6992), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7347), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6364), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6899), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6937), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5013), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5616), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5663), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4956), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6584), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7190), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), + [535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7603), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6136), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6137), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6138), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), - [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), - [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5964), - [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2665), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6161), - [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6162), - [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6163), - [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4579), - [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4579), - [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7792), - [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2544), - [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7465), - [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2656), - [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2625), - [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2799), - [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(848), - [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(55), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6371), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7586), - [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7894), - [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4759), - [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4761), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6536), - [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7468), - [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2328), - [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5119), - [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2365), - [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1242), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), + [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5639), + [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2542), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5853), + [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5854), + [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5855), + [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4410), + [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4410), + [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7038), + [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2418), + [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6804), + [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2531), + [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2545), + [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2643), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(812), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(50), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5963), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6992), + [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7347), + [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4542), + [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4543), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6364), + [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6899), + [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2295), + [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4710), + [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2177), + [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1191), [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5360), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7471), - [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1170), - [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2800), - [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2627), - [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5290), - [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6746), - [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3842), - [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5168), - [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5404), - [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2051), - [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2001), - [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(765), - [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(765), - [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(805), - [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(781), - [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1590), - [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1590), - [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1703), - [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7629), - [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2082), - [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6372), - [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1383), - [745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6108), - [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5818), - [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7714), - [754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1795), - [757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7705), - [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5966), - [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2672), - [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6212), - [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6213), - [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6214), - [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4579), - [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4579), - [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7792), - [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2544), - [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7465), - [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2656), - [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2625), - [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2799), - [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(848), - [802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(55), - [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6371), - [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7586), - [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7894), - [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5131), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4989), - [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6536), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7468), - [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2328), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5994), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2067), - [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1242), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5093), + [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6937), + [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1118), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2644), + [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2546), + [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5013), + [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6013), + [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3645), + [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4891), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5118), + [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2010), + [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1978), + [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(733), + [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(733), + [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(776), + [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(762), + [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1518), + [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1518), + [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1630), + [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6982), + [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1992), + [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5964), + [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1340), + [745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5734), + [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5529), + [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7162), + [754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1872), + [757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7228), + [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5641), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2550), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5877), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5878), + [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5879), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4410), + [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4410), + [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7038), + [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2418), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6804), + [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2531), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2545), + [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2643), + [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(812), + [802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(50), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5963), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6992), + [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7347), + [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4742), + [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4743), + [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6364), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6899), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2295), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5666), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2021), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1191), [838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5360), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6255), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1170), - [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2800), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2627), - [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5290), - [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6746), - [862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3802), - [865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5168), - [868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5404), - [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2051), - [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2001), - [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(765), - [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(765), - [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(805), - [886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(781), - [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1590), - [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1590), - [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1703), - [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7629), - [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2082), - [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6372), - [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1383), - [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6108), - [913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5818), - [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7714), - [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1774), - [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7705), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5093), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5955), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1118), + [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2644), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2546), + [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5013), + [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6013), + [862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3603), + [865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4891), + [868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5118), + [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2010), + [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1978), + [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(733), + [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(733), + [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(776), + [886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(762), + [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1518), + [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1518), + [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1630), + [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6982), + [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1992), + [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5964), + [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1340), + [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5734), + [913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5529), + [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7162), + [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1844), + [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7228), [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 22), [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 22), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), - [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), - [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), - [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), - [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), - [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5482), - [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 98), - [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 98), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 99), - [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 99), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), - [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), - [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), - [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), - [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), + [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), + [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), + [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5250), + [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), + [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), + [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), + [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), + [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), + [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), + [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 100), + [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 100), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 99), + [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 99), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), - [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 145), - [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 145), - [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 144), - [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 144), + [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 148), + [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 148), + [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 149), + [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 149), [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 22), [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 22), [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 20), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 20), [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 20), [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 20), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6423), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6465), - [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4579), - [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4579), - [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(848), - [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(55), - [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6423), - [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7894), - [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4759), - [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4761), - [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5119), - [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2360), - [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1242), - [1063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8), - [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5360), - [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7471), - [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1179), - [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3842), - [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5168), - [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5404), - [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2051), - [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2001), - [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(829), - [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(809), - [1102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1590), - [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1590), - [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1703), - [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7629), - [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2082), - [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6372), - [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1383), - [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6108), - [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5818), - [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7714), - [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1795), - [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7705), - [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4579), - [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4579), - [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(848), - [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(55), - [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6423), - [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7894), - [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5131), - [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4989), - [1162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5994), - [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2136), - [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1242), - [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8), - [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5360), - [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6255), - [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1179), - [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3802), - [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5168), - [1189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5404), - [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2051), - [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2001), - [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(829), - [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(809), - [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1590), - [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1590), - [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1703), - [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7629), - [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2082), - [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6372), - [1228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1383), - [1231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6108), - [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5818), - [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7714), - [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1774), - [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7705), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6592), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7580), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), - [1272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), - [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(200), - [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7657), - [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(4651), - [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(4651), - [1300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(87), - [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6652), - [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7776), - [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), - [1311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(80), - [1314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7730), - [1317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3630), - [1320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3630), - [1323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3669), - [1326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3636), - [1329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1590), - [1332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1590), - [1335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6750), - [1338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3801), - [1341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6108), - [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(5818), - [1347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(194), - [1350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7580), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7657), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6652), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), - [1371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7628), - [1374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(4651), - [1377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(4651), - [1380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(87), - [1383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6592), - [1386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7776), - [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(95), - [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7702), - [1395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3630), - [1398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3630), - [1401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3669), - [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3636), - [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1590), - [1410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1590), - [1413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6750), - [1416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3801), - [1419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6108), - [1422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5818), - [1425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(197), - [1428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7580), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6031), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4410), + [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4410), + [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(812), + [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(50), + [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5995), + [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7347), + [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4742), + [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4743), + [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5666), + [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2019), + [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1191), + [1063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8), + [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5093), + [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5955), + [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1125), + [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3603), + [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4891), + [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5118), + [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2010), + [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1978), + [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(743), + [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(743), + [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(785), + [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(770), + [1102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1518), + [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1518), + [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1630), + [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6982), + [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1992), + [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5964), + [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1340), + [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5734), + [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5529), + [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7162), + [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1844), + [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7228), + [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4410), + [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4410), + [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(812), + [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(50), + [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5995), + [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7347), + [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4542), + [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4543), + [1162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4710), + [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2300), + [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1191), + [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8), + [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5093), + [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6937), + [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1125), + [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3645), + [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4891), + [1189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5118), + [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2010), + [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1978), + [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(743), + [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(743), + [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(785), + [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(770), + [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1518), + [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1518), + [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1630), + [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6982), + [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1992), + [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5964), + [1228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1340), + [1231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5734), + [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5529), + [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7162), + [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1872), + [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7228), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6988), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), + [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [1279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), + [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7022), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6178), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7118), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [1309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(7022), + [1312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(4350), + [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(4350), + [1318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(89), + [1321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(6178), + [1324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(7318), + [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), + [1329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(84), + [1332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(7118), + [1335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(3423), + [1338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(3423), + [1341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(3452), + [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(3443), + [1347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(1518), + [1350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(1518), + [1353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(6016), + [1356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(3602), + [1359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(5734), + [1362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(5529), + [1365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(193), + [1368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 54), SHIFT_REPEAT(6988), + [1371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(7315), + [1374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(4350), + [1377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(4350), + [1380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(89), + [1383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(6134), + [1386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(7318), + [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(88), + [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(7052), + [1395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(3423), + [1398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(3423), + [1401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(3452), + [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(3443), + [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(1518), + [1410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(1518), + [1413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(6016), + [1416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(3602), + [1419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(5734), + [1422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(5529), + [1425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(195), + [1428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 54), SHIFT_REPEAT(6988), [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 38), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6675), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6201), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 38), [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6678), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [1463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(310), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 131), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 131), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 37), - [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 37), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6672), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6198), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6204), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 135), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 135), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), + [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 37), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 37), + [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [1517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(309), [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), - [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 130), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 130), - [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(326), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 129), - [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 129), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(317), - [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [1620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1735), - [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(350), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 128), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 128), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), - [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), - [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5485), - [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5484), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [1765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5485), - [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 84), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 3, 0, 0), - [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 84), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), - [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5484), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 24), - [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 2, 0, 0), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5393), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 24), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 100), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 100), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5483), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 146), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 146), - [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), - [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 209), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 209), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 149), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 149), - [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 146), - [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 146), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 210), - [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 210), - [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 180), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 180), - [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 181), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 181), - [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), - [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 182), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 182), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 180), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 180), - [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 208), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 208), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 209), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 209), - [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 208), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 208), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 22), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 22), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 181), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 181), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 229), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 229), - [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), - [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), - [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 210), - [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 210), - [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 229), - [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 229), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), - [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 182), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 182), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), - [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), - [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), - [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), - [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [1971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5479), - [1974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5483), - [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 111), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 111), - [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 116), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 116), - [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, 0, 161), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, 0, 161), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 81), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 81), - [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 82), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 82), - [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 83), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 83), - [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), - [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 38), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 38), - [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), - [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 120), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 4, 0, 0), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 120), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 171), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 5, 0, 0), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 171), - [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), - [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 101), - [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 101), - [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 101), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 101), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 39), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), - [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 39), - [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [2125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), - [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6545), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), - [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7920), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4704), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7721), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6442), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7136), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7747), - [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), - [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 15), - [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 15), - [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 39), - [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 39), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 20), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6506), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4517), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5331), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7740), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), - [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4850), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7707), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6398), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), - [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6155), - [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), - [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7203), - [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7720), - [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7012), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 209), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 209), - [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 68), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 68), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 22), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 22), - [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), - [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 102), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), - [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 37), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 37), - [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), - [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 117), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 117), - [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 118), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 118), - [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 119), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 119), - [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 51), - [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 164), - [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 164), - [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 165), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 165), - [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 166), - [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 166), - [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 167), - [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 167), - [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 168), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 168), - [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 169), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 169), - [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 170), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 170), - [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), - [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 115), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 115), - [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), - [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), - [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), - [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), - [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 20), - [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 162), - [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 162), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6994), - [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), - [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), - [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 19), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 19), - [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), - [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 125), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 125), - [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 100), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 100), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 149), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 149), - [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 146), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 146), - [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), - [2436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(686), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), - [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 180), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 180), - [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 181), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 181), - [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 182), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 182), - [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 208), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 208), - [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 68), - [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 68), - [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 210), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 210), - [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 10, 0, 229), - [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 10, 0, 229), - [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 6), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 6), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 52), - [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), - [2489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(753), - [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 20), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 20), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7755), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4666), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7781), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7781), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7765), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7765), - [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6659), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7800), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7393), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7393), - [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7877), - [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(1735), - [2671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(827), - [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3, 0, 0), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6639), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7761), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), - [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7423), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), - [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7812), - [2736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(821), - [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), - [2741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(862), - [2744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(47), - [2747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6639), - [2750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1604), - [2753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1607), - [2756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(16), - [2759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5236), - [2762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5241), - [2765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1635), - [2768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1609), - [2771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1254), - [2774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1254), - [2777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1334), - [2780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1266), - [2783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1980), - [2786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1666), - [2789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1708), - [2792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7761), - [2795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1602), - [2798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6546), - [2801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1896), - [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6031), - [2807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5885), - [2810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7423), - [2813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7423), - [2816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1704), - [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7812), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), SHIFT(2929), - [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), - [2835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), SHIFT(2929), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), - [2840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(2929), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), - [2845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(862), - [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(47), - [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6639), - [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1604), - [2857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1607), - [2860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(16), - [2863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5236), - [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5241), - [2869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1635), - [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1609), - [2875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1254), - [2878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1254), - [2881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1334), - [2884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1266), - [2887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1980), - [2890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1666), - [2893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1708), - [2896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7761), - [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1602), - [2902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6546), - [2905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1896), - [2908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6031), - [2911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5885), - [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7423), - [2917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7423), - [2920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1704), - [2923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7812), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4, 0, 0), - [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), SHIFT(2929), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2, 0, 0), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6559), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7687), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), - [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), - [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [3001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(857), - [3004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(56), - [3007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6559), - [3010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1722), - [3013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1718), - [3016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(11), - [3019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5254), - [3022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5337), - [3025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1705), - [3028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1721), - [3031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1289), - [3034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1289), - [3037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1407), - [3040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1359), - [3043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(2002), - [3046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1764), - [3049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1847), - [3052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7687), - [3055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1706), - [3058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6466), - [3061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(2135), - [3064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5991), - [3067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5856), - [3070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1871), - [3073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7760), - [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6154), - [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6033), - [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), - [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), - [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), - [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6145), - [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), - [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), - [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5167), - [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6237), - [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6087), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), - [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7757), - [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4867), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7576), - [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7576), - [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7827), - [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7827), - [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6337), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), - [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7151), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7032), - [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6233), - [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7590), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), - [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6807), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7684), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [3268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(855), - [3271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(48), - [3274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6337), - [3277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6), - [3280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5219), - [3283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(95), - [3286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5326), - [3289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6339), - [3292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6697), - [3295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7702), - [3298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5076), - [3301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5076), - [3304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5248), - [3307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5185), - [3310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7151), - [3313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7032), - [3316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6233), - [3319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7590), - [3322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6403), - [3325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6338), - [3328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5281), - [3331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5976), - [3334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5773), - [3337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(846), - [3340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7393), - [3343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7393), - [3346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6807), - [3349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7684), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5341), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1, 0, 0), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5240), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7500), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6696), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6396), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), - [3594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1189), - [3597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1189), - [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), - [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7167), - [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), - [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), - [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), - [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(7714), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6736), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5339), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), - [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7748), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6579), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), - [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7394), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7394), - [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7835), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [3703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7714), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1206), - [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1203), - [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7836), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), - [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7887), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7826), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), - [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7881), - [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6724), - [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), - [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7290), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7480), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7486), - [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7407), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4993), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7774), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7873), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), - [3904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1223), - [3907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(55), - [3910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6423), - [3913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(206), - [3916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7167), - [3919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5255), - [3922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5278), - [3925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6311), - [3928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6610), - [3931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5195), - [3934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5195), - [3937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5443), - [3940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5334), - [3943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1590), - [3946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6245), - [3949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1703), - [3952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7629), - [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6722), - [3958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6372), - [3961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1383), - [3964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7423), - [3967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7423), - [3970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(3901), - [3973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7705), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), - [3978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5604), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6578), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5510), - [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7553), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7558), - [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6622), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), - [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7735), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), - [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7786), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), - [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6634), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5024), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6644), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), - [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5013), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6561), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), - [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6638), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7825), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), - [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5035), - [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7830), - [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6440), - [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), - [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), - [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), - [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6656), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5857), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7787), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), - [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7874), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), - [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7778), - [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7741), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6608), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), - [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), - [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5646), - [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7813), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7773), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), - [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), - [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [4459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5510), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5469), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [4488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5543), - [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [4511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [4537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(1222), - [4540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), - [4542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(49), - [4545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(6648), - [4548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(204), - [4551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(5310), - [4554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(5306), - [4557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(3135), - [4560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(3138), - [4563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(2597), - [4566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(2597), - [4569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(2703), - [4572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(2676), - [4575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(3215), - [4578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(3062), - [4581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(3134), - [4584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(7774), - [4587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(3126), - [4590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(6635), - [4593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(3208), - [4596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(7393), - [4599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(7393), - [4602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(3155), - [4605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(7873), - [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [4612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5469), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), - [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6811), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5603), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5603), - [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5623), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), - [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5487), - [4818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5623), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), - [4827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), - [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), - [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), - [4875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [4881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), - [4883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), - [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [4917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 30), - [4919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 30), - [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [4925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5487), - [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [4930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 101), - [4934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 101), - [4936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), - [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [4940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [4942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), - [4944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), - [4946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 101), - [4948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 101), - [4950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5491), - [4953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1735), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5375), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [4966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [4968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 16), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), - [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, 0, 28), - [4996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 42), - [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 80), - [5000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 80), - [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7064), - [5010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), - [5012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), - [5014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 183), - [5016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 183), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), - [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [5032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), - [5034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), - [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 30), - [5038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 30), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), - [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [5060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 22), - [5062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 22), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [5078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 22), - [5080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 22), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), - [5092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 80), - [5094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 80), - [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), - [5098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), - [5100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 10, 0), - [5102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 10, 0), - [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), - [5106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 0, 0), - [5108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 153), - [5110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 153), - [5112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [5115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [5122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [5127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [5135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5925), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), - [5143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), - [5145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [5155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [5157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [5163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), - [5165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), - [5167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 93), - [5169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 93), - [5171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 94), - [5173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 94), - [5175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 138), - [5177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 138), - [5179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 139), - [5181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 139), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [5187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 93), - [5189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 93), - [5191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 94), - [5193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 94), - [5195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 138), - [5197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 138), - [5199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 139), - [5201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 139), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [5207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 79), - [5209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 79), - [5211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [5213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), - [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), - [5239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), - [5241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), - [5243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), - [5245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [5249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), - [5251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), - [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 80), - [5255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 80), - [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 153), - [5259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 153), - [5261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 154), - [5263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 154), - [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), - [5267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), - [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 154), - [5271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 154), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7905), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7914), - [5285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 79), - [5287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 79), - [5289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 190), - [5291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 190), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7723), - [5297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 79), - [5299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 79), - [5301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 189), - [5303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 189), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [5307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), - [5309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), - [5311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 152), - [5313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 152), - [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [5349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [5355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 152), SHIFT(1735), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [5376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 154), SHIFT(1735), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [5389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 79), SHIFT(1735), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), - [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [5404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), SHIFT(1735), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [5427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5556), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), - [5433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6628), - [5473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7209), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7209), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6669), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [5517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [5519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), - [5525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [5527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), - [5531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5563), - [5533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5556), - [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), - [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [5572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5563), - [5575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), - [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [5597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), - [5603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), - [5605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), - [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), - [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [5633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 143), SHIFT_REPEAT(7209), - [5636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 143), SHIFT_REPEAT(7209), - [5639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 143), SHIFT_REPEAT(3640), - [5642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 143), SHIFT_REPEAT(3686), - [5645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 143), SHIFT_REPEAT(3642), - [5648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 143), SHIFT_REPEAT(6338), - [5651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 143), SHIFT_REPEAT(5281), - [5654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 143), SHIFT_REPEAT(7684), - [5657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), - [5665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5480), - [5672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), - [5674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), - [5676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 8), - [5678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 8), - [5680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 50), - [5686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 50), - [5688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 50), - [5690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 50), - [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7626), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5466), - [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [5724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [5726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), - [5731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [5737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2805), - [5740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 20), - [5742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [5746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 20), - [5748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 52), - [5750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [5753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [5755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 20), - [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6531), - [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5774), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), - [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5405), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7234), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [5809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 102), - [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [5815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5476), - [5818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5389), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), - [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), - [5824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), - [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [5834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [5836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [5838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5481), - [5843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [5845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2833), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6760), - [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5852), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7591), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), - [5862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [5890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5466), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [5903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5474), - [5905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [5917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 142), - [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7158), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [5923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 142), - [5925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), - [5929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5478), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [5933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6798), - [5935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6802), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [5939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6365), - [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [5953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6408), - [5955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6412), - [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6463), - [5959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [5961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [5963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(2857), - [5966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2919), - [5969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2958), - [5972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), - [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [5992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2929), - [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7233), - [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [6001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5481), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [6006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 192), - [6008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 192), - [6010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [6012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), - [6014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [6018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), - [6020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [6022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [6024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [6027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [6037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [6053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6809), - [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [6085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2971), - [6088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5478), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), - [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [6103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 20), - [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), - [6107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 20), - [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [6115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), - [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4940), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [6121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), - [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4941), - [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4945), - [6127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), - [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5006), - [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [6139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3130), - [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5060), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5053), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [6158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [6160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [6166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3117), - [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), - [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [6175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [6177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4929), - [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4932), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), - [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [6189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [6191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [6197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3190), - [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), - [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [6210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [6212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [6215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [6225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [6228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 192), - [6230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 192), - [6232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 220), - [6234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 220), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [6240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 192), - [6242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 192), - [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), - [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 108), - [6260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 108), - [6262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 109), - [6264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 109), - [6266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 191), - [6268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 191), - [6270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(847), - [6273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), - [6275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), - [6277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(3300), - [6280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(3303), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [6291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [6299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 20), - [6301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 20), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [6317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5463), - [6320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), - [6322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), - [6324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(3300), - [6327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(3303), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [6346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7604), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), - [6442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [6458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 1, 0, 0), - [6460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_overlay_hide_repeat1, 1, 0, 0), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [6500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [6506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), - [6508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), - [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [6526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), - [6528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), - [6530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), - [6534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [6548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 176), SHIFT_REPEAT(6121), - [6551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 176), SHIFT_REPEAT(5760), - [6554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 176), SHIFT_REPEAT(5761), - [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [6599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3607), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [6610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7896), - [6612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 95), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [6618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7925), - [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5365), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), - [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7898), - [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7924), - [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), - [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [6652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3637), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), - [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), - [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7938), - [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7938), - [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), - [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [6763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [6769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [6773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7926), - [6793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7926), - [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7935), - [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7935), - [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), - [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7624), - [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7624), - [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7669), - [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7669), - [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7353), - [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7599), - [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7599), - [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), - [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7810), - [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7851), - [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7851), - [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), - [6943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7798), - [6945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), - [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7769), - [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6782), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [6959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), - [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7911), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7911), - [6965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [6973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 1, 0, 0), - [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [6995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), - [6997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), - [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7927), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7927), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), - [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), - [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [7029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5475), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5475), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [7054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), - [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), - [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), - [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), - [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4730), - [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [7090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [7094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), - [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), - [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [7108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4339), - [7110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [7116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [7120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [7128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [7136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), - [7138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), - [7140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), - [7142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4881), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), - [7148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [7156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6736), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), - [7166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [7186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [7192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3985), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), - [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [7205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), - [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), - [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5011), - [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), - [7249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), - [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5525), - [7273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5583), - [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [7280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), - [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), - [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4825), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [7294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), - [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5424), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [7302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 30), - [7304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 30), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [7308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), - [7310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 62), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7496), - [7320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 62), - [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [7326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 79), - [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [7336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), - [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), - [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), - [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), - [7348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [7350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5525), - [7353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [7361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [7363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [7371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [7381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 30), - [7383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 30), - [7385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [7393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 80), - [7395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5368), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), - [7399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), - [7401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [7405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5565), - [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), - [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), - [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [7414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), - [7416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), - [7418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [7426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), - [7430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [7434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [7438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [7444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [7446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [7448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5106), - [7450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 114), - [7452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 114), - [7454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 62), - [7456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 62), - [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), - [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), - [7464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4869), - [7466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), - [7474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 59), - [7476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 59), - [7478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 59), - [7480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 59), - [7482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 71), - [7484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 71), - [7486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [7498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), - [7506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 114), - [7508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 114), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6839), - [7520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 219), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [7524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 187), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [7530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), - [7532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 123), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [7536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 188), - [7538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 123), - [7540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), SHIFT(1735), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [7551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), - [7553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 219), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [7557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), SHIFT(1735), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [7562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 219), SHIFT(1735), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [7567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 31), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [7571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), - [7573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [7577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 104), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [7585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [7591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 123), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [7595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [7599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [7607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 31), - [7609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), - [7611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), - [7613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 31), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [7617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 77), - [7619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 77), - [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7177), - [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [7625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 4), - [7627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [7629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [7635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), - [7637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 123), SHIFT(1735), - [7640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 104), - [7642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), - [7646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [7648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1200), - [7651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3985), - [7654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3553), - [7657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [7659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [7663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 36), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [7667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4744), - [7670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), - [7672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7837), - [7675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7371), - [7678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7789), - [7681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7805), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), - [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), - [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6323), - [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7837), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), - [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7789), - [7708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7805), - [7710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), - [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [7714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(1735), - [7717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [7731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), - [7733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), - [7737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(1735), - [7740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), - [7742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 221), - [7744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 221), - [7746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [7750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [7756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), - [7758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 160), - [7760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 160), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), - [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [7768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), - [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [7772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 70), - [7774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 78), - [7776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 78), SHIFT_REPEAT(540), - [7779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 195), - [7781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 195), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [7789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 35), - [7791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [7795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [7803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), - [7807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(307), - [7810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 136), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [7814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 136), - [7816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 35), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [7820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 175), - [7822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 175), - [7824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(290), - [7827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), - [7831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [7833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 70), - [7835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 150), SHIFT(1735), - [7838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 150), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [7842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 151), SHIFT(1735), - [7845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 151), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [7851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 184), SHIFT(1735), - [7854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 184), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [7858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5811), - [7861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 127), - [7863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 127), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [7869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), - [7873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), SHIFT(1735), - [7876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [7880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 25), SHIFT(1735), - [7883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 25), - [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), - [7887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 103), SHIFT(1735), - [7890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 103), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), - [7894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 90), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), - [7898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 90), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [7904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(300), - [7907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 184), SHIFT(1735), - [7910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 184), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [7914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 4), - [7916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [7920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 70), - [7922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 4), - [7924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 78), - [7926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 78), SHIFT_REPEAT(567), - [7929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), SHIFT(1735), - [7932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [7936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 151), SHIFT(1735), - [7939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 151), - [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [7943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 78), SHIFT_REPEAT(573), - [7946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 78), SHIFT_REPEAT(573), - [7949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 78), - [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7131), - [7953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6281), - [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), - [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), - [7961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5748), - [7964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 103), SHIFT(1735), - [7967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 103), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), - [7971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(1735), - [7974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), - [7976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(298), - [7979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), - [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [7983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), - [7985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), - [7987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5439), - [7989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), - [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), - [7993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 72), - [7995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 72), - [7997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 25), SHIFT(1735), - [8000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 25), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), - [8004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 35), - [8006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 73), - [8008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 73), - [8010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 36), - [8012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 74), - [8014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 74), - [8016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 75), - [8018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 75), - [8020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 76), - [8022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 76), - [8024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), - [8026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), - [8028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 91), - [8030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 91), - [8032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 30), - [8034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 30), - [8036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(1735), - [8039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), - [8041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 25), - [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), - [8045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 36), - [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [8049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 150), SHIFT(1735), - [8052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 150), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [8056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), - [8062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 241), - [8064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 241), - [8066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 243), - [8068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 243), - [8070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 58), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [8074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 58), - [8076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 223), - [8078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 223), - [8080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 224), - [8082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 224), - [8084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 245), - [8086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 245), - [8088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 246), - [8090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 246), - [8092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 225), - [8094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 225), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [8098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6393), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [8102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), - [8104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5651), - [8106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5546), - [8108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 226), - [8110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 226), - [8112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 1), - [8114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 2), - [8116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7137), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [8124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 157), - [8126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 158), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), - [8130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 256), - [8132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 256), - [8134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 241), - [8136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 241), - [8138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 258), - [8140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 258), - [8142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 107), - [8144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 243), - [8146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 243), - [8148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 121), - [8150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 260), - [8152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 260), - [8154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 261), - [8156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 261), - [8158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 245), - [8160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 245), - [8162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 246), - [8164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 246), - [8166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 262), - [8168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 262), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), - [8172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [8174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [8176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 263), - [8178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 263), - [8180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, 0, 14), - [8182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, 0, 14), - [8184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 107), - [8186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 256), - [8188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 256), - [8190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 258), - [8192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 258), - [8194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 92), - [8196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 92), - [8198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 270), - [8200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 270), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), - [8208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 260), - [8210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 260), - [8212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 110), - [8214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 271), - [8216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 271), - [8218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 261), - [8220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 261), - [8222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 272), - [8224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 272), - [8226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 273), - [8228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 273), - [8230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 32), - [8232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 274), - [8234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 274), - [8236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 262), - [8238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 262), - [8240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 275), - [8242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 275), - [8244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 105), - [8246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 263), - [8248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 263), - [8250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 270), - [8252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 270), - [8254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 271), - [8256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 271), - [8258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 278), - [8260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 278), - [8262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 272), - [8264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 272), - [8266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 5), - [8268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), - [8270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 279), - [8272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 279), - [8274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 273), - [8276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 273), - [8278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 274), - [8280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 274), - [8282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 74), - [8284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 74), - [8286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 275), - [8288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 275), - [8290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 57), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [8294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 226), - [8296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 226), - [8298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 10, 0, 278), - [8300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 10, 0, 278), - [8302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 10, 0, 279), - [8304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 10, 0, 279), - [8306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 227), - [8308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 227), - [8310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 224), - [8312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 224), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), - [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), - [8318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), - [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [8324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6229), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), - [8328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), - [8330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), - [8332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5446), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), - [8338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 32), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), - [8344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [8350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 107), - [8352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 110), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), - [8358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6833), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [8364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2, 0, 0), - [8366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 107), - [8368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 110), - [8370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 32), - [8372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 107), - [8374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 110), - [8376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), - [8378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), - [8380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), - [8382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [8392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(256), - [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [8401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(264), - [8404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(266), - [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [8409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(272), - [8412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 110), - [8414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 105), - [8416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 225), - [8418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 225), - [8420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 198), - [8422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 198), - [8424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 200), - [8426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 200), - [8428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 203), - [8430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 203), - [8432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 204), - [8434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 204), - [8436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 198), - [8438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 198), - [8440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 200), - [8442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 200), - [8444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 223), - [8446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 223), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), - [8450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5998), - [8452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 254), - [8454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 255), - [8456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 237), - [8458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 113), - [8460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 113), - [8462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 22), - [8464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 22), - [8466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 157), - [8468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6357), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), - [8476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [8478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6648), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7847), - [8482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [8484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [8486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 158), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), - [8494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 213), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), - [8498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), - [8500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6239), - [8502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), - [8504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 22), - [8506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 22), - [8508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 214), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), - [8514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7472), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), - [8524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6814), - [8526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), - [8528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), - [8530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 60), - [8532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 60), - [8534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 61), - [8536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 61), - [8538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [8540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [8542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 216), - [8544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 63), - [8546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 63), - [8548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 238), - [8550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5081), - [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), - [8554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 276), - [8556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 277), - [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), - [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), - [8562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 268), - [8564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 121), - [8566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [8568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [8570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [8572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 5), - [8574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, 0, 65), - [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), - [8580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5397), - [8582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), - [8584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 5, 0, 122), - [8586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 135), - [8588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 135), - [8590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(853), - [8593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(5414), - [8596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(5397), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), - [8603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5496), - [8606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 215), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), - [8610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), - [8612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6228), - [8614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), - [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6219), - [8618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6219), - [8620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 4, 0, 65), - [8622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 4, 0, 122), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [8628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 185), - [8630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 247), - [8632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 186), - [8634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 174), - [8636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 174), - [8638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 253), - [8640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), - [8644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [8646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 231), - [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), - [8652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 264), - [8654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 217), - [8656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 269), - [8658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 265), - [8660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 266), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [8670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 267), - [8672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(230), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [8681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 218), - [8683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(238), - [8686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(240), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [8691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 205), - [8693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 205), - [8695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(245), - [8698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 251), - [8700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6904), - [8702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 248), - [8704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7437), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), - [8712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 249), - [8714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 250), - [8716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 239), - [8718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 211), - [8720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 236), - [8722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 112), - [8724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 112), - [8726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 212), - [8728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), - [8730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), - [8734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 21), - [8736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 1), - [8738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), - [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), - [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [8744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 252), - [8746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), - [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [8750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 159), - [8752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 159), - [8754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 54), - [8756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 232), - [8758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 233), - [8760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 234), - [8762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 235), - [8764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 230), - [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), - [8770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5502), - [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), - [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), - [8776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 114), - [8778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 114), - [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), - [8782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, 0, 65), - [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7894), - [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), - [8790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 122), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), - [8798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), - [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), - [8808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [8810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(5266), - [8813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [8815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [8818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(5598), - [8821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(5502), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), - [8830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5746), - [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7416), - [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), - [8842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), - [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), - [8848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), - [8850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [8858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 59), - [8860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 59), - [8862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 62), - [8864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 62), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), - [8868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), - [8880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [8882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [8884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [8886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6900), - [8888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [8890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [8892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [8894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5721), - [8896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), - [8898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), - [8900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [8902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [8904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), - [8906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [8908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [8910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [8912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6422), - [8914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7416), - [8916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7153), - [8918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [8920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [8922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), - [8924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [8926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [8928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [8930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [8932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), - [8934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [8936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), - [8942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), - [8944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), - [8946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), - [8948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [8950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [8952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [8954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [8956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), - [8958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [8960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), - [8962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), - [8964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), - [8966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), - [8968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), - [8970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), - [8972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [8974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [8976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [8978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [8980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [8982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5454), - [8984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5634), - [8986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), - [8988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [8990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [8992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [8994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), - [8996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), - [8998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), - [9000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [9002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [9004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6803), - [9008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), - [9010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5458), - [9013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [9015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), - [9021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [9023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6924), - [9027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), - [9031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), - [9033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6739), - [9035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6173), - [9037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5414), - [9040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5397), - [9043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), - [9045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), - [9047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5681), - [9049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 122), - [9051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6131), - [9053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7125), - [9055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6702), - [9057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), - [9059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), - [9061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6699), - [9063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 163), - [9065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 196), - [9067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6662), - [9069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [9071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), - [9073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7182), - [9075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, 0, 196), - [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), - [9083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), - [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), - [9091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 65), - [9093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5578), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [9100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5271), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), - [9104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5437), - [9107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [9109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [9113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), - [9115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), - [9117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [9119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [9121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [9125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 163), - [9127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), - [9129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), - [9131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4875), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), - [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), - [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), - [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6545), - [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), - [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), - [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), - [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), - [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), - [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), - [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), - [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), - [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6678), - [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [9183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5477), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [9202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5560), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), - [9208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 202), SHIFT_REPEAT(7148), - [9211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 202), SHIFT_REPEAT(6338), - [9214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 202), SHIFT_REPEAT(5281), - [9217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 202), SHIFT_REPEAT(7684), - [9220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), - [9244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), - [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), - [9272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), - [9280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5598), - [9283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5502), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), - [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [9290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), - [9294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 259), - [9296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5969), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), - [9300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 259), - [9302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 199), - [9304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), - [9306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 199), - [9308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 242), - [9310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), - [9312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 242), - [9314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5440), - [9316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 244), - [9318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4796), - [9320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 244), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), - [9324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4803), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [9330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7879), - [9334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 201), - [9336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4805), - [9338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 201), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6663), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [9344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7880), - [9348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6487), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [9354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7882), - [9358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6449), - [9360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), - [9362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6218), - [9364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 257), - [9366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6035), - [9368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 257), - [9370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6827), - [9372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [9378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7883), - [9382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6676), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [9388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7884), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [9396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7885), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [9404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7886), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [9412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7888), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [9420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7889), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [9428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7890), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [9436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7891), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [9444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7892), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [9452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7872), - [9456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6097), - [9458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6488), - [9460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [9462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6493), - [9464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6167), - [9466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6494), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [9472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), - [9474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5933), - [9477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5746), - [9480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), - [9482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [9488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7799), - [9492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6174), - [9494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4815), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), - [9498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6172), - [9500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6196), - [9502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), - [9504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [9508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6651), - [9510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6515), - [9512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6018), - [9514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6518), - [9516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), - [9518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), - [9520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6143), - [9522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), - [9524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), - [9526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), - [9532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5743), - [9535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5819), - [9538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6530), - [9540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6532), - [9542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), - [9544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6655), - [9546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), - [9548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), - [9550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6549), - [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [9556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7875), - [9560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6668), - [9562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [9566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6593), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [9572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7845), - [9576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4839), - [9578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), - [9580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6550), - [9582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), - [9584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6192), - [9586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), - [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [9590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6576), - [9592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5425), - [9594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6580), - [9596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [9598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [9600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), - [9602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5649), - [9604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), - [9606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6695), - [9608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4846), - [9610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6624), - [9612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), - [9616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6222), - [9618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), - [9620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), - [9622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4975), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [9628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4745), - [9630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4746), - [9632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [9638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7876), - [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [9646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), - [9650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6627), - [9652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), - [9654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4849), - [9656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), - [9658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), - [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), - [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6990), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6995), - [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), - [9668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(5686), - [9671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4855), - [9673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6630), - [9675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6632), - [9677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6011), - [9679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), - [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), - [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), - [9685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6140), - [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7854), - [9689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6647), - [9691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6636), - [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), - [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [9697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7878), - [9701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6122), - [9703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6444), - [9705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), - [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), - [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7096), - [9711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7141), - [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [9717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), - [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), - [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), - [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), - [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), - [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), - [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), - [9735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4822), - [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [9739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), - [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), - [9743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5471), - [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), - [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), - [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [9762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), - [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), - [9766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), - [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), - [9770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), - [9774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5754), - [9777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5754), - [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), - [9784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), - [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), - [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7432), - [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7433), - [9792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5953), - [9795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), - [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), - [9799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), - [9801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), - [9803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5650), - [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), - [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), - [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), - [9811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7832), - [9813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), - [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), - [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), - [9821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [9828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 14), - [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [9832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6103), - [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [9836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5421), - [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), - [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [9842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5416), - [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), - [9846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 41), - [9848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 44), - [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), - [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [9854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), - [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), - [9858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4934), - [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), - [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), - [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6753), - [9866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4938), - [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), - [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), - [9874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), - [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7157), - [9880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7545), - [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), - [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), - [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), - [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [9894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), - [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), - [9898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), - [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), - [9902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4987), - [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), - [9906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 85), - [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), - [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6752), - [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7102), - [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [9916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), - [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), - [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), - [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), - [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), - [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), - [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), - [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6263), - [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [9942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6062), - [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [9950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), - [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), - [9954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), - [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), - [9958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), - [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [9962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5620), - [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), - [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), - [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), - [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), - [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [9997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [10003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), - [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), - [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), - [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), - [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), - [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), - [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), - [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), - [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), - [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [10055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), - [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), - [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), - [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), - [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [10079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), - [10089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6120), - [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [10093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5363), - [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), - [10097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), - [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [10101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5138), - [10103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), - [10105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), - [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), - [10109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 69), SHIFT_REPEAT(106), - [10112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 69), SHIFT_REPEAT(6305), - [10115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 69), - [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), - [10121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), - [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), - [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), - [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [10139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), - [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), - [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), - [10149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), - [10151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7792), - [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), - [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), - [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [10168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 193), - [10170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 193), - [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), - [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), - [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), - [10180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 194), - [10182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 194), - [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), - [10186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6129), - [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [10192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6133), - [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), - [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), - [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), - [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6256), - [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [10212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1, 0, 0), - [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), - [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [10226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5754), - [10229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5754), - [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), - [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [10244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6483), - [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [10248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6485), - [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [10252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6519), - [10254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6529), - [10256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), - [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), - [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6543), - [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [10266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6544), - [10268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), - [10270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), - [10272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6595), - [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6612), - [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), - [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [10282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6152), - [10284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), - [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), - [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7128), - [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [10292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6153), - [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [10300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), - [10302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), - [10304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), - [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), - [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [10310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), - [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [10316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 69), SHIFT_REPEAT(97), - [10319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 69), SHIFT_REPEAT(6862), - [10322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 69), - [10324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), - [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [10330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [10332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), - [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), - [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7127), - [10338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), - [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), - [10342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6382), - [10344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6383), - [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), - [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), - [10352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), - [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), - [10356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6058), - [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [10362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6059), - [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), - [10366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6023), - [10368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6025), - [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), - [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6756), - [10376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 147), - [10378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [10380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6851), - [10384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [10386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [10388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), - [10392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [10394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), - [10396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), - [10398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [10400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 79), - [10402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 3), - [10404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), - [10406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 86), - [10408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 87), - [10410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 88), - [10412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 89), - [10414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [10418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), - [10420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 101), - [10422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 101), - [10424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 96), - [10426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1, 0, 0), - [10428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1, 0, 0), - [10430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 97), - [10432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), - [10434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [10436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, 0, 106), - [10438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [10440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6223), - [10442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [10444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6105), - [10446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [10448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6397), - [10450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), - [10452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6401), - [10454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [10456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [10458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [10460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [10462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), - [10464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [10466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6112), - [10468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 10), - [10470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [10472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 10), - [10474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), - [10476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6450), - [10478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [10480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6451), - [10482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), - [10484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6452), - [10486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [10488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6453), - [10490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [10492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [10494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [10496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 10), - [10498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [10500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [10502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 13), - [10504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [10506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [10508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6490), - [10510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [10512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6492), - [10514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [10516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [10518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [10520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 33), - [10522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 33), - [10524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5474), - [10527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [10529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [10531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [10533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 132), - [10535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 133), - [10537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 134), - [10539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 137), - [10541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 13), - [10543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 140), - [10545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 141), - [10547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 156), - [10549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [10551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5322), - [10553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), - [10555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 12), - [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [10559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5262), - [10561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 172), - [10563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), - [10565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), - [10567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), - [10569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), - [10571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), - [10573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), - [10575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), - [10577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), - [10579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 173), - [10581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [10583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), - [10585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [10587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4971), - [10589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [10591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 141), - [10593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 178), - [10595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 179), - [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), - [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), - [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [10611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [10613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [10619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5682), - [10621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), - [10623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [10625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5664), - [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [10629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), - [10631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), - [10633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [10635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [10637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [10639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [10641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [10643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [10645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [10647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [10649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 197), - [10651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), - [10653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), - [10655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 26), - [10657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 27), - [10659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), - [10661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, 0, 29), - [10663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 178), - [10665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2, 0, 0), - [10667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 207), - [10669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 179), - [10671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), - [10673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), - [10675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), - [10677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), - [10679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), - [10681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), - [10683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), - [10685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [10687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), - [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), - [10693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [10695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [10697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), - [10699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), - [10701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [10703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), - [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), - [10707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), - [10709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), - [10711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), - [10713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), - [10715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), - [10717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), - [10719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), - [10721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), - [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), - [10725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [10727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 222), - [10729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), - [10731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), - [10733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [10735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), - [10737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [10739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [10741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [10743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [10745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [10747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [10749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [10751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [10753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 6, 0, 207), - [10755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [10757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [10759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [10761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), - [10763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4777), - [10765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), - [10767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), - [10769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), - [10771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), - [10773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), - [10775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), - [10777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), - [10779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 240), - [10781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), - [10783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), - [10785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), - [10787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), - [10789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), - [10791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [10793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4868), - [10795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [10797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [10799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [10801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [10803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [10805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [10807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [10809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [10811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), - [10813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), - [10815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [10817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4966), - [10819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [10821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4853), - [10823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), - [10825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), - [10827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), - [10829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), - [10831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), - [10833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), - [10835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), - [10837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5539), - [10839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5527), - [10841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5549), - [10843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5580), - [10845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5597), - [10847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [10849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [10851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [10853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), - [10855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [10857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [10859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [10861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), - [10863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [10865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [10867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), - [10869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [10871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [10873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), - [10875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [10877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [10879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [10881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [10883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [10885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), - [10887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), - [10889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [10891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5654), - [10893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 40), - [10895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), - [10897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), - [10899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), - [10901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [10903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), - [10905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5717), - [10907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [10909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [10911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [10913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [10915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [10917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [10919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [10921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [10923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [10925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), - [10927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), - [10929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 45), - [10931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), - [10933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5323), - [10935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), - [10937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), - [10939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), - [10941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), - [10943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), - [10945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), - [10947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), - [10949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), - [10951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [10953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 46), - [10955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [10957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 47), - [10959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 48), - [10961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 49), - [10963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [10965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [10967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [10969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [10971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [10973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [10975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [10977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [10979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), - [10981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6142), - [10983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6156), - [10985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [10987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [10989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [10991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [10993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [10995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [10997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [10999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [11001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [11003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [11005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [11007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), - [11009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [11011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [11013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), - [11015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [11017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [11019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [11021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), - [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [11025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [11027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5602), - [11029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [11031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [11033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [11035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [11037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [11039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [11041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [11043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [11045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [11047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [11049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [11051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [11053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [11055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), - [11057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [11059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [11061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), - [11063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [11065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [11067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [11069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [11071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [11073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [11075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [11077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [11079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [11081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [11083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [11085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), - [11087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [11089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [11091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [11093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [11095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [11097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [11099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [11101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [11103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), - [11105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [11107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [11109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [11111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [11113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [11115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [11117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [11119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [11121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), - [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), - [11127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), - [11129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6040), - [11131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [11133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6181), - [11135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [11137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6188), - [11139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, 0, 55), - [11141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 56), - [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [11145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), - [11147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), SHIFT_REPEAT(6851), - [11150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7103), - [11153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [11155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [11157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [11159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6992), - [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), - [11165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), - [11167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4420), - [11169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4422), - [11171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), - [11173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), - [11175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), - [11177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), - [11179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), - [11181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), - [11183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 101), - [11185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 101), - [11187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 43), - [11189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, 0, 28), - [11191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 3, 0, 64), - [11193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), - [11195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, 0, 66), - [11197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), - [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), - [11201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5279), - [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), - [11205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), - [11207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), - [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), - [11211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), - [11213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 78), SHIFT_REPEAT(834), - [11216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [11218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [11220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [11222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5764), - [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), - [11226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), - [11228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(7177), - [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [11235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), - [11241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), - [11243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), - [11245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), - [11247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), - [11249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), - [11251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), - [11253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), - [11255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), - [11257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), - [11259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), - [11261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), - [11263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 52), - [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [11267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 79), - [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [11271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), - [11273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), - [11275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), - [11277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), - [11279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), - [11281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), - [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), - [11285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), - [11287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), - [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7493), - [11291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), - [11293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), - [11295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), - [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), - [11301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [11303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1377), - [11306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), - [11308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), - [11312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [11314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), - [11316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), - [11318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [11320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [11322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [11324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [11326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [11328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [11330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), - [11332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [11334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [11336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [11338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [11340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 126), - [11342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 126), SHIFT_REPEAT(7159), - [11345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 3), - [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [11349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 33), - [11351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 33), - [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [11355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), - [11357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), - [11359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), - [11361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), - [11363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), - [11365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4782), - [11367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6367), - [11369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4785), - [11371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), - [11373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), - [11375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6511), - [11377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6517), - [11379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), - [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [11385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [11387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [11389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [11391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [11393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [11395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6560), - [11397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [11399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [11401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6577), - [11403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [11405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6621), - [11407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6626), - [11409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), - [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), - [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [11415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6633), - [11417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6643), - [11419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), - [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [11423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), - [11425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5589), - [11427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), - [11429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), - [11431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), - [11433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), - [11435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), - [11437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), - [11439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5575), - [11441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [11443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6054), - [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [11447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), - [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [11451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), - [11453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [11455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [11457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [11459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), - [11461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [11463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [11465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [11467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [11469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [11471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [11473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), - [11475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), - [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), - [11479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [11481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), - [11483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [11485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), - [11487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [11489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [11491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [11493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7418), - [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [11501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [11503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [11505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [11507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [11509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [11511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [11513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [11515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [11519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7932), - [11521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), - [11523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4792), - [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [11527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), - [11529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), - [11531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), - [11533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), - [11535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), - [11537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), - [11539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), - [11541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), - [11543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), - [11545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6094), - [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [11549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [11551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [11553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [11555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [11557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [11559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 52), - [11561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [11563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [11565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [11567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7945), - [11569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [11571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [11573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [11575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [11577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [11581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [11583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [11585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [11587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), - [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [11591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), - [11593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), - [11595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), - [11597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), - [11599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), - [11601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), - [11603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), - [11605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 102), - [11607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [11609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 92), - [11611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 92), - [11613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4820), - [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), - [11617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 40), - [11619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6331), - [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [11623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [11625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6411), - [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7422), - [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [11631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(7509), - [11634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 132), - [11636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648), - [11638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4826), - [11640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), - [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), - [11644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), - [11646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7600), - [11648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), - [11650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), - [11652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), - [11654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4845), - [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [11658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737), - [11660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 137), - [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [11664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), - [11666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 102), - [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), - [11672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), - [11674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [11676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), - [11678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7242), - [11680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 67), - [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7489), - [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [11686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7321), - [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [11690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), - [11692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), - [11694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), - [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), - [11698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5753), - [11700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5684), - [11702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 30), - [11704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [11706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), - [11708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6148), - [11710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), - [11712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [11714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [11716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), - [11718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), - [11720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), - [11722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), - [11724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), - [11726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), - [11728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), - [11730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [11732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [11736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), - [11738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 148), SHIFT_REPEAT(844), - [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [11743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), - [11745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [11747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [11749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 20), - [11751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [11753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6186), - [11755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [11757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [11759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6007), - [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), - [11763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [11765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [11767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [11769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 88), - [11771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 89), - [11773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), - [11775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), - [11777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [11779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [11781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), - [11783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), - [11785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), - [11787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), - [11789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5853), - [11791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), - [11793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), - [11795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), - [11797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), - [11799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5868), - [11801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), - [11803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), - [11805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), - [11807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5881), - [11809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5883), - [11811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6799), - [11813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5887), - [11815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891), - [11817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7145), - [11819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), - [11821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), - [11823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5897), - [11825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5898), - [11827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5905), - [11829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), - [11831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), - [11833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5914), - [11835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), - [11837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5921), - [11839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), - [11841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), - [11843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4795), - [11845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), - [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), - [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7868), - [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), - [11857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7918), - [11859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 193), - [11861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 193), - [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), - [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7930), - [11867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [11869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [11871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 177), - [11873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 177), - [11875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [11877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), - [11879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), - [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), - [11883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [11885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [11887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [11889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [11891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6472), - [11893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 19), - [11895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 19), - [11897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [11899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [11903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [11905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7532), - [11908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), - [11910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6505), - [11912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7461), - [11915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6252), - [11917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6254), - [11919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), - [11921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7784), - [11925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 2, 0, 34), - [11927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 2, 0, 34), - [11929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [11931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [11933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [11935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), - [11937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), - [11939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [11941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [11945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6227), - [11947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), - [11949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), - [11951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 124), - [11953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), - [11955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7805), - [11959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), - [11961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), - [11963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [11965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), - [11967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7420), - [11970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), - [11972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), - [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6925), - [11976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6723), - [11978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [11980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), - [11982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), - [11984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [11986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [11988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6737), - [11990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [11992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 194), - [11994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 194), - [11996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6258), - [11998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [12002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7570), - [12004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), - [12006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), - [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7948), - [12010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), - [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6870), - [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [12046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), - [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [12050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), - [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), - [12060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), - [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), - [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), - [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [12078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 91), - [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), - [12086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), - [12088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 91), - [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), - [12094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), - [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), - [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), - [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), - [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [12124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), - [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [12128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7857), - [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), - [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), - [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), - [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), - [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6314), - [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), - [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [12196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7011), - [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), - [12206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7953), - [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [12212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), - [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), - [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), - [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), - [12232] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), - [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), - [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7709), - [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), - [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7560), - [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), - [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), - [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7445), - [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7815), - [12288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 95), - [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), - [12292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), - [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7899), - [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), - [12314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), - [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7937), - [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), - [12332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), - [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [12336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), - [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7922), - [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [12350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), - [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [12356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6950), - [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), - [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [12374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), - [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6817), - [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7811), - [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7897), - [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), - [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), - [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), - [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [12404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7589), - [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [12412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), - [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [12418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), - [12420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7846), - [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), - [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), - [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), - [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), - [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), - [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), - [12446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), - [12448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), - [12450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), - [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), - [12454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [12456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), - [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), - [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), - [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), - [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), - [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), - [12478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7729), - [12482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), - [12484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [12486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), - [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), - [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7793), - [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7838), - [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), - [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), - [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [12518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [12520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7852), - [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), - [12530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7871), - [12532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7921), - [12534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7942), - [12536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), - [12538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7712), - [12540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7658), - [12542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7583), - [12544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), - [12546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7671), - [12548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), - [12550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), - [12552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7759), - [12554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7796), - [12556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), - [12558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7862), - [12560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7923), - [12562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), - [12564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), - [12566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), - [12568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [12570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 136), - [12572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 6, 0, 228), - [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [12576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [12578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [12580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), - [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [12588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), - [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), - [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [12598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 228), - [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), - [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [12604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [12606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [12610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 91), - [12612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 206), - [12614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [12618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), - [12620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [12624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 136), - [12626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), - [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [12632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), - [12634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), - [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [12640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), - [12644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [12646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 206), - [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7808), - [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), - [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6904), - [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [12662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 134), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 134), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(322), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [1589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1599), + [1592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(341), + [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [1613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(319), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 132), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 132), + [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 133), + [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 133), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), + [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), + [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5253), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 85), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 3, 0, 0), + [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 85), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), + [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5252), + [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 24), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 2, 0, 0), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 24), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 101), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 101), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), + [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 182), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 182), + [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 101), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 101), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), + [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 151), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 151), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 150), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 150), + [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 151), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 151), + [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 150), + [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 150), + [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), + [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 3, 0, 51), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 3, 0, 51), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 182), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 182), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), + [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), + [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), + [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 22), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 22), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5247), + [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, 0, 163), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, 0, 163), + [1942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5251), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 82), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 82), + [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 83), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 83), + [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 84), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 84), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 115), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 115), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 120), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 120), + [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), + [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6094), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), + [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4990), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7299), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7239), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5764), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5539), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6654), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), + [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 39), + [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), + [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 39), + [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), + [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), + [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 15), + [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 15), + [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), + [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 39), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 39), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 38), + [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 38), + [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 124), + [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 4, 0, 0), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 124), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 173), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 5, 0, 0), + [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 173), + [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), + [2162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4988), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4245), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7165), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7230), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), + [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5748), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6658), + [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), + [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6551), + [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 20), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 101), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 101), + [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 150), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 150), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 151), + [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 151), + [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 182), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 182), + [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 6), + [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 6), + [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 69), + [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 69), + [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 69), + [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 69), + [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 37), + [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 37), + [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 121), + [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 121), + [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 122), + [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 122), + [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 123), + [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 123), + [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), + [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), + [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 166), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 166), + [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 167), + [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 167), + [2326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 168), + [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 168), + [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 169), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 169), + [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 170), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 170), + [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 171), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 171), + [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 172), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 172), + [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 52), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 20), + [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 53), + [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 20), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 22), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 22), + [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), + [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), + [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 119), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 119), + [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), + [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), + [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 164), + [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 164), + [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 106), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), + [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), + [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), + [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), + [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), + [2400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(698), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), + [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 19), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 19), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 51), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 51), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 129), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 129), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), + [2433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(716), + [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 20), + [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 20), + [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), + [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6185), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7288), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6871), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6871), + [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7363), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7147), + [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7147), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7285), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(1599), + [2599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(795), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), SHIFT(2767), + [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6166), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4997), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7264), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6921), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), + [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7295), + [2683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(791), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2, 0, 0), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3, 0, 0), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), + [2692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(810), + [2695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(47), + [2698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6166), + [2701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1553), + [2704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1527), + [2707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(16), + [2710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(4997), + [2713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5003), + [2716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1568), + [2719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1564), + [2722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1199), + [2725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1199), + [2728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1282), + [2731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1228), + [2734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1676), + [2737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1666), + [2740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1620), + [2743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7264), + [2746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1539), + [2749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6096), + [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1800), + [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5795), + [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5594), + [2761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6921), + [2764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6921), + [2767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1621), + [2770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7295), + [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4, 0, 0), + [2775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), SHIFT(2767), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), SHIFT(2767), + [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), + [2787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(2767), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), + [2792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(810), + [2795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(47), + [2798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6166), + [2801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1553), + [2804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1527), + [2807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(16), + [2810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(4997), + [2813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5003), + [2816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1568), + [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1564), + [2822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1199), + [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1199), + [2828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1282), + [2831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1228), + [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1676), + [2837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1666), + [2840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1620), + [2843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7264), + [2846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1539), + [2849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6096), + [2852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1800), + [2855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5795), + [2858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5594), + [2861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6921), + [2864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6921), + [2867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1621), + [2870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7295), + [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4985), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7215), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), + [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), + [2933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(819), + [2936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(56), + [2939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6109), + [2942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1657), + [2945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1660), + [2948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(11), + [2951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(4985), + [2954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(4987), + [2957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1635), + [2960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1650), + [2963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1210), + [2966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1210), + [2969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1326), + [2972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1294), + [2975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1979), + [2978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1715), + [2981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1841), + [2984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7215), + [2987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1636), + [2990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6032), + [2993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1907), + [2996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5769), + [2999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5587), + [3002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1857), + [3005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7263), + [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5689), + [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5682), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5011), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4922), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6279), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5931), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6678), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6995), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6767), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7212), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), + [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7193), + [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7250), + [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7250), + [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7114), + [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4989), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [3172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(809), + [3175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(52), + [3178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(5931), + [3181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(6), + [3184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(5040), + [3187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(88), + [3190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(5062), + [3193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(6232), + [3196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(6222), + [3199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(7052), + [3202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(4857), + [3205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(4857), + [3208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(5049), + [3211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(4930), + [3214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(6678), + [3217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(6720), + [3220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(6266), + [3223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(6995), + [3226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(6303), + [3229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(5934), + [3232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(5052), + [3235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(5673), + [3238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(5489), + [3241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(824), + [3244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(6871), + [3247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(6871), + [3250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(6767), + [3253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 54), SHIFT_REPEAT(7212), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5073), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5002), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1, 0, 0), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6937), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5019), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6941), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5016), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6221), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [3526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), + [3538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1132), + [3541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1132), + [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6631), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4963), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), + [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4918), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1151), + [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6290), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [3613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7256), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), + [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6824), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6824), + [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7308), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [3649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1153), + [3652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7162), + [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(7162), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7309), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4953), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7304), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7334), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4799), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7272), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), + [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4928), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6782), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), + [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6785), + [3828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1159), + [3831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(50), + [3834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5995), + [3837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [3840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6631), + [3843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(4963), + [3846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(4971), + [3849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6062), + [3852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5938), + [3855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(4918), + [3858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(4918), + [3861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5147), + [3864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5047), + [3867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1518), + [3870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5913), + [3873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1630), + [3876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6982), + [3879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5921), + [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5964), + [3885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1340), + [3888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6921), + [3891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6921), + [3894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(3717), + [3897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7228), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), + [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4960), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6922), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [3934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5181), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6122), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), + [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), + [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6012), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5277), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7032), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6163), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6170), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), + [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4868), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), + [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6154), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7248), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), + [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4785), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), + [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), + [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7213), + [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6181), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7280), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), + [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5466), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5502), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6146), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4481), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), + [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7271), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), + [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5237), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [4426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 54), SHIFT_REPEAT(1161), + [4429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 54), + [4431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 54), SHIFT_REPEAT(48), + [4434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 54), SHIFT_REPEAT(6174), + [4437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 54), SHIFT_REPEAT(204), + [4440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 54), SHIFT_REPEAT(5035), + [4443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 54), SHIFT_REPEAT(5063), + [4446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 54), SHIFT_REPEAT(2928), + [4449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 54), SHIFT_REPEAT(2935), + [4452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 54), SHIFT_REPEAT(2450), + [4455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 54), SHIFT_REPEAT(2450), + [4458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 54), SHIFT_REPEAT(2594), + [4461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 54), SHIFT_REPEAT(2489), + [4464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 54), SHIFT_REPEAT(3018), + [4467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 54), SHIFT_REPEAT(2934), + [4470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 54), SHIFT_REPEAT(2948), + [4473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 54), SHIFT_REPEAT(7272), + [4476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 54), SHIFT_REPEAT(2949), + [4479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 54), SHIFT_REPEAT(6164), + [4482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 54), SHIFT_REPEAT(2988), + [4485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 54), SHIFT_REPEAT(6871), + [4488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 54), SHIFT_REPEAT(6871), + [4491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 54), SHIFT_REPEAT(2984), + [4494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 54), SHIFT_REPEAT(7326), + [4497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [4553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5177), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [4576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5237), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4958), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6765), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [4637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5220), + [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [4732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [4734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5092), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), + [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [4766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5108), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), + [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), + [4794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5225), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), + [4809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), + [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [4815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), + [4817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [4823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5268), + [4826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [4828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [4830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), + [4832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 30), + [4844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 30), + [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), + [4850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [4854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1599), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [4859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [4861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), + [4865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [4869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5192), + [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [4876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), + [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), + [4900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), + [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5105), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 22), + [4908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 22), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [4912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 30), + [4914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 30), + [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 16), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, 0, 28), + [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 22), + [4940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 22), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [4950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 42), + [4952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [4954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 81), + [4958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 81), + [4960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), + [4966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), + [4968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), + [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 183), + [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 183), + [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), + [4976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [4984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), + [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5121), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5089), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), + [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), + [5038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), + [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), + [5042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), + [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 81), + [5046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 81), + [5048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 142), + [5050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 142), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [5056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 10, 0), + [5058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 10, 0), + [5060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 143), + [5062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 143), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), + [5068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), + [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), + [5078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [5081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [5084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [5089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [5097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), + [5099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 0, 0), + [5101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), + [5103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [5111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 94), + [5113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 94), + [5115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 95), + [5117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 95), + [5119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 142), + [5121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 142), + [5123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 143), + [5125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 143), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [5139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [5141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [5143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 94), + [5145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 94), + [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 95), + [5149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 95), + [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [5155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [5167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [5169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [5171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), + [5173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), + [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [5185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 80), + [5187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 80), + [5189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), + [5191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), + [5193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 190), + [5195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 190), + [5197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 80), + [5199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 80), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7015), + [5213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 81), + [5215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 81), + [5217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), + [5219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), + [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), + [5223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), + [5225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 189), + [5227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 189), + [5229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 154), + [5231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 154), + [5233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), + [5235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), + [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 154), + [5243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 154), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [5247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 80), + [5249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 80), + [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), + [5253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), + [5255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), + [5257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), + [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [5287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 154), SHIFT(1599), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [5338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), SHIFT(1599), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), + [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [5351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 80), SHIFT(1599), + [5354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), SHIFT(1599), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [5405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [5409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), + [5413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6788), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6788), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [5423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6158), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [5433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6195), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), + [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [5453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [5455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [5461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [5465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5208), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [5492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5288), + [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [5507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [5521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [5531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), + [5533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [5537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [5553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [5557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 147), SHIFT_REPEAT(6788), + [5560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 147), SHIFT_REPEAT(6788), + [5563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 147), SHIFT_REPEAT(3437), + [5566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 147), SHIFT_REPEAT(3532), + [5569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 147), SHIFT_REPEAT(3469), + [5572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 147), SHIFT_REPEAT(5934), + [5575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 147), SHIFT_REPEAT(5052), + [5578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 147), SHIFT_REPEAT(7212), + [5581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [5585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [5619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5248), + [5622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 50), + [5632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 50), + [5634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 50), + [5636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 50), + [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [5648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), + [5650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), + [5652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 8), + [5654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 8), + [5656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), + [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5086), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6851), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6969), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), + [5678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [5680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 20), + [5682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 106), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [5686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 20), + [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), + [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5495), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7104), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), + [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [5714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2666), + [5717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 52), + [5719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [5721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), + [5726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [5738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 20), + [5740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5245), + [5743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 53), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [5747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [5750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [5766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [5780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [5782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), + [5787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5982), + [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5553), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7004), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), + [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [5809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2706), + [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [5824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), + [5826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5234), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [5857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [5859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), + [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [5865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), + [5867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [5869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), + [5871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5898), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [5875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), + [5877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), + [5879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), + [5881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5967), + [5883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [5885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [5888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [5890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5249), + [5893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [5897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [5905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6626), + [5907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2754), + [5910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 192), + [5912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 192), + [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5117), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), + [5918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [5922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [5926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2779), + [5929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [5931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6727), + [5933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6769), + [5935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6791), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [5939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [5941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [5943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(2692), + [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), + [5972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2767), + [5975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 20), + [5977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), + [5979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 20), + [5981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), + [5987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [6003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [6007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2814), + [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [6022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [6048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5246), + [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), + [6053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [6057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), + [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4792), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [6063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), + [6065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [6067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4880), + [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), + [6073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [6075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [6095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [6097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), + [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [6109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2940), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), + [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), + [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4858), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), + [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), + [6126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2929), + [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), + [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [6141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3044), + [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5122), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), + [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [6152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [6154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [6157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), + [6181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [6184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [6187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), + [6189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), + [6191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(3116), + [6194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(3124), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [6201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 191), + [6203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 191), + [6205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 192), + [6207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 192), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [6215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 217), + [6217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 217), + [6219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 192), + [6221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 192), + [6223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 112), + [6225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 112), + [6227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 113), + [6229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 113), + [6231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), + [6233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 20), + [6235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 20), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [6261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), + [6263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), + [6265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(3116), + [6268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(3124), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [6273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5231), + [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), + [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [6434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 1, 0, 0), + [6436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_overlay_hide_repeat1, 1, 0, 0), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [6444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), + [6446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [6462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), + [6464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [6468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), + [6470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), + [6472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), + [6474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [6500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 178), SHIFT_REPEAT(5691), + [6503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 178), SHIFT_REPEAT(5520), + [6506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 178), SHIFT_REPEAT(5522), + [6509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [6543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3421), + [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7199), + [6556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 96), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7257), + [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6991), + [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7158), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [6596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [6604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3438), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), + [6641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5120), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), + [6651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [6655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7066), + [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7066), + [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), + [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), + [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7306), + [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), + [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7252), + [6753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), + [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7085), + [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7085), + [6763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [6765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [6769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), + [6775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7223), + [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6497), + [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [6793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7134), + [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7134), + [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6803), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), + [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7378), + [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [6853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7132), + [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7132), + [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7026), + [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7026), + [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), + [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7169), + [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [6903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), + [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7129), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [6911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 1, 0, 0), + [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [6927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [6931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), + [6933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), + [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7302), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), + [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), + [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), + [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [6973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5279), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [6984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), + [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), + [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5279), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [7016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), + [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), + [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), + [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [7054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), + [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), + [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), + [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [7106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), + [7108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), + [7120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3771), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), + [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), + [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), + [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [7203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5215), + [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), + [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), + [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4602), + [7230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), + [7248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), + [7250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5200), + [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), + [7255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), + [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), + [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), + [7261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), + [7263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 80), + [7265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [7273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 30), + [7275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 30), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [7279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [7281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [7285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 63), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6859), + [7295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 63), + [7297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [7313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [7317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [7325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [7329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5233), + [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), + [7334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), + [7336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 81), + [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [7348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [7350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [7352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [7356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [7360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [7364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), + [7366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), + [7368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 30), + [7370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 30), + [7372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), + [7374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [7378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), + [7380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [7388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [7396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), + [7408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 60), + [7410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 60), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), + [7414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 118), + [7416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 118), + [7418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 63), + [7420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 63), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [7426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4719), + [7428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), + [7430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 118), + [7432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 118), + [7434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 72), + [7436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 72), + [7438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [7442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [7446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [7450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5103), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), + [7460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 60), + [7462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 60), + [7464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 108), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [7472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [7482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 31), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [7486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 127), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [7490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 127), + [7492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), + [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [7498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 127), + [7500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 187), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [7504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), SHIFT(1599), + [7507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), + [7509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), + [7511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 78), + [7513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 78), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [7519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), SHIFT(1599), + [7522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6545), + [7524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [7526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 4), + [7528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [7530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 127), SHIFT(1599), + [7533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 188), + [7535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 216), + [7537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 216), SHIFT(1599), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [7544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [7548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 216), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [7556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [7562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), + [7564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 31), + [7566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [7570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), + [7572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), + [7574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [7576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5094), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), + [7580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [7582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1147), + [7585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3771), + [7588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3362), + [7591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [7595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 108), + [7597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 31), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [7611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 35), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [7615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [7621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4485), + [7624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), + [7626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7200), + [7629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(6940), + [7632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7217), + [7635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7261), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [7642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), + [7646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [7654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(1599), + [7657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7200), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6940), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), + [7671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7261), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), + [7675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 218), + [7677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 218), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [7683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), + [7685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 36), + [7687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 162), + [7689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 162), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [7695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 79), + [7697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 79), SHIFT_REPEAT(526), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), + [7708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(1599), + [7711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), + [7723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 71), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [7729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [7733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [7737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [7741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [7745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 195), + [7747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 195), + [7749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [7751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 71), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [7755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 25), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [7761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 58), SHIFT(1599), + [7764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 58), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [7768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 152), SHIFT(1599), + [7771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 152), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [7775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 25), SHIFT(1599), + [7778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 25), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [7782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 107), SHIFT(1599), + [7785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 107), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), + [7789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 131), + [7791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 131), + [7793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [7797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 35), + [7799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(299), + [7802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 36), + [7804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 92), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [7808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 92), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), + [7812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 30), + [7814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 30), + [7816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 91), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [7820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 91), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [7824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 177), + [7826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 177), + [7828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), + [7830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), + [7832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5603), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [7836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [7838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 184), SHIFT(1599), + [7841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 184), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [7845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(291), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), + [7852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), SHIFT(1599), + [7855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [7859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 79), SHIFT_REPEAT(549), + [7862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 79), SHIFT_REPEAT(549), + [7865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 79), + [7867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 75), + [7869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 75), + [7871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 184), SHIFT(1599), + [7874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 184), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [7880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 76), + [7882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 76), + [7884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5524), + [7887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(301), + [7890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 58), SHIFT(1599), + [7893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 58), + [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [7897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 152), SHIFT(1599), + [7900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 152), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [7904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), SHIFT(1599), + [7907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), + [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [7911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5577), + [7914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 4), + [7916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(1599), + [7919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), + [7921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 107), SHIFT(1599), + [7924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 107), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), + [7928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 71), + [7930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 4), + [7932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 73), + [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 73), + [7936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 25), SHIFT(1599), + [7939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 25), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), + [7943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 35), + [7945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6253), + [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [7953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [7957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), + [7959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), + [7961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), + [7963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 36), + [7965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 79), + [7967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 79), SHIFT_REPEAT(539), + [7970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(307), + [7973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 74), + [7975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 74), + [7977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 140), + [7979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 140), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [7983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), + [7985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), + [7987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [7991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 77), + [7993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 77), + [7995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(1599), + [7998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), + [8000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 59), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [8004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 59), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [8014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), + [8016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), + [8018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), + [8020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 1), + [8022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 2), + [8024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 5), + [8026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), + [8028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 109), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [8032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2, 0, 0), + [8034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 32), + [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6387), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [8042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5038), + [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), + [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), + [8048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 58), + [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), + [8058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), + [8060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6101), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [8064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5104), + [8066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), + [8068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), + [8070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 111), + [8072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 114), + [8074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 125), + [8076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, 0, 14), + [8078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, 0, 14), + [8080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 32), + [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), + [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), + [8086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 109), + [8088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5929), + [8090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 75), + [8092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 75), + [8094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 159), + [8096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 160), + [8098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 111), + [8100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 114), + [8102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 111), + [8104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 114), + [8106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 111), + [8108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 114), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [8112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 111), + [8114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 114), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [8120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 32), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [8130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 93), + [8132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 93), + [8134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [8136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [8142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), + [8144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), + [8146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), + [8148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), + [8150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 198), + [8152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 198), + [8154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 200), + [8156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 200), + [8158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 203), + [8160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 203), + [8162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 204), + [8164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 204), + [8166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 198), + [8168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 198), + [8170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 200), + [8172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 200), + [8174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 220), + [8176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 220), + [8178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 221), + [8180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 221), + [8182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 222), + [8184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 222), + [8186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 223), + [8188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 223), + [8190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 224), + [8192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 224), + [8194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 237), + [8196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 237), + [8198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 239), + [8200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 239), + [8202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 220), + [8204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 220), + [8206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 221), + [8208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 221), + [8210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 241), + [8212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 241), + [8214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 242), + [8216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 242), + [8218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 222), + [8220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 222), + [8222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 223), + [8224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 223), + [8226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 252), + [8228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 252), + [8230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 237), + [8232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 237), + [8234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 254), + [8236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 254), + [8238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 239), + [8240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 239), + [8242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 256), + [8244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 256), + [8246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 257), + [8248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 257), + [8250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 241), + [8252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 241), + [8254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 242), + [8256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 242), + [8258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 258), + [8260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 258), + [8262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 259), + [8264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 259), + [8266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 252), + [8268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 252), + [8270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 254), + [8272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 254), + [8274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 266), + [8276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 266), + [8278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 256), + [8280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 256), + [8282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 267), + [8284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 267), + [8286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 257), + [8288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 257), + [8290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 268), + [8292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 268), + [8294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 269), + [8296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 269), + [8298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 270), + [8300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 270), + [8302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 258), + [8304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 258), + [8306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 271), + [8308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 271), + [8310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 259), + [8312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 259), + [8314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 266), + [8316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 266), + [8318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 267), + [8320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 267), + [8322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 274), + [8324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 274), + [8326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 268), + [8328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 268), + [8330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 275), + [8332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 275), + [8334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 269), + [8336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 269), + [8338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 270), + [8340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 270), + [8342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 271), + [8344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 271), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [8348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 10, 0, 274), + [8350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 10, 0, 274), + [8352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 10, 0, 275), + [8354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 10, 0, 275), + [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [8364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(266), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [8373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(274), + [8376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(276), + [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [8381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(282), + [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6562), + [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), + [8392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6174), + [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7036), + [8398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [8400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [8402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 159), + [8404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 160), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), + [8408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5651), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), + [8414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 185), + [8416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 186), + [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), + [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), + [8424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [8426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 226), + [8428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 227), + [8430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 228), + [8432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 229), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), + [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), + [8440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5015), + [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), + [8444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5561), + [8446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6299), + [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5852), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), + [8456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 1), + [8458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), + [8460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6860), + [8462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 55), + [8464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), + [8466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 212), + [8468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5244), + [8471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 125), + [8473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 116), + [8475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 116), + [8477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 117), + [8479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 117), + [8481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 22), + [8483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 22), + [8485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 243), + [8487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 22), + [8489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 22), + [8491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(831), + [8494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(5150), + [8497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(5134), + [8500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [8502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), + [8506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), + [8508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [8512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6915), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), + [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), + [8520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 5), + [8522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), + [8524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6662), + [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), + [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [8530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 244), + [8532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 245), + [8534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 246), + [8536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 247), + [8538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, 0, 66), + [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [8544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), + [8546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 21), + [8548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6486), + [8550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 161), + [8552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 161), + [8554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 214), + [8556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 5, 0, 126), + [8558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 249), + [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [8562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), + [8564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6257), + [8566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5838), + [8568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 250), + [8570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 251), + [8572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 260), + [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [8582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 261), + [8584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 262), + [8586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(239), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [8595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 263), + [8597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 264), + [8599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(247), + [8602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(249), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [8607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 265), + [8609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [8613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 230), + [8615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 4, 0, 66), + [8617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(255), + [8620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), + [8624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 4, 0, 126), + [8626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 272), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [8632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 176), + [8634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 176), + [8636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 273), + [8638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 215), + [8640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 231), + [8642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4875), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), + [8646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [8648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [8650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 232), + [8652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), + [8654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5072), + [8656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 233), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), + [8668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 234), + [8670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 235), + [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), + [8676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 211), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [8680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 205), + [8682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 205), + [8684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 213), + [8686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 61), + [8688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 61), + [8690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 62), + [8692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 62), + [8694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 64), + [8696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 64), + [8698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 208), + [8700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 209), + [8702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 139), + [8704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 139), + [8706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 210), + [8708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 248), + [8710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), + [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), + [8720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 60), + [8722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 60), + [8724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 63), + [8726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 63), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), + [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), + [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), + [8742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 126), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [8746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(828), + [8749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(5282), + [8752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_hide_repeat1, 2, 0, 0), SHIFT_REPEAT(5183), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7234), + [8757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), + [8759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [8761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(5039), + [8764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), + [8776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5597), + [8778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6870), + [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [8794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), + [8800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, 0, 66), + [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [8804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 118), + [8806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 118), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [8816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5260), + [8819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), + [8821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), + [8823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), + [8825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), + [8827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6588), + [8829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), + [8831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [8833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [8835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [8841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [8843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [8845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [8847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [8851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5333), + [8853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4942), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), + [8857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), + [8859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5659), + [8861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), + [8863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6293), + [8865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6870), + [8867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6484), + [8869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), + [8871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5397), + [8873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5287), + [8875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 66), + [8877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5470), + [8879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5471), + [8881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), + [8883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5638), + [8885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), + [8887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [8891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), + [8893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), + [8895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), + [8897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [8903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6403), + [8905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4576), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), + [8913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [8915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [8917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [8919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [8921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [8923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [8925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [8927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), + [8935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6646), + [8937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), + [8939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [8941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [8943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [8945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [8947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [8949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [8951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [8953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [8955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [8957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [8959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [8961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [8963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), + [8965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [8967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), + [8971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [8973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), + [8975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [8977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [8979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [8981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), + [8985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), + [8987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), + [8989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), + [8991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [8993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), + [8995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [8997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [8999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [9001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [9003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [9005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [9007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [9009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [9011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), + [9013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), + [9015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [9017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [9019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [9021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 165), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [9025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5228), + [9028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 126), + [9030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5150), + [9033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5134), + [9036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [9040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5149), + [9043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [9045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [9047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [9049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [9055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 165), + [9057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 196), + [9059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, 0, 196), + [9061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6188), + [9063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [9065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [9077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [9079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [9081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [9133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5080), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), + [9141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), + [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [9175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5333), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [9180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), + [9182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [9206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), + [9218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 202), SHIFT_REPEAT(6465), + [9221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 202), SHIFT_REPEAT(5934), + [9224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 202), SHIFT_REPEAT(5052), + [9227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 202), SHIFT_REPEAT(7212), + [9230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5282), + [9233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5183), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [9238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [9240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 201), + [9242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), + [9246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 201), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [9254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7321), + [9258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 238), + [9260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), + [9262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 238), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [9266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), + [9268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 253), + [9270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), + [9272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 253), + [9274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 255), + [9276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), + [9278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 255), + [9280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5543), + [9283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5627), + [9286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), + [9288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 240), + [9290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), + [9292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 240), + [9294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4679), + [9296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), + [9298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [9304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7325), + [9308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 199), + [9310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), + [9312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 199), + [9314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), + [9316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), + [9318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), + [9320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), + [9322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), + [9324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [9328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), + [9330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), + [9332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), + [9334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), + [9336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), + [9338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6056), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [9344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7328), + [9348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6069), + [9350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), + [9352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), + [9354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6112), + [9356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), + [9358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), + [9360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6120), + [9362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6121), + [9364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5750), + [9366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6125), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [9372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7329), + [9376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6128), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [9380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6133), + [9382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6136), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [9388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), + [9392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6137), + [9394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6138), + [9396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5100), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [9402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7332), + [9406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [9410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [9416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7333), + [9420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [9426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), + [9430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), + [9432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), + [9434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), + [9436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6393), + [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [9442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), + [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [9450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [9458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [9466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [9474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7341), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [9482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [9490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [9498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6219), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [9506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), + [9510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), + [9512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), + [9514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), + [9516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5753), + [9518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5684), + [9520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), + [9522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), + [9524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), + [9526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [9528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(5370), + [9531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), + [9533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), + [9535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), + [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [9541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), + [9545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [9551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5604), + [9554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5597), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), + [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [9561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), + [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [9569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), + [9571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5925), + [9573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4642), + [9575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), + [9577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), + [9579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), + [9581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), + [9583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), + [9585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), + [9587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), + [9589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), + [9591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), + [9593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), + [9595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [9599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), + [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), + [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), + [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), + [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), + [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), + [9611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), + [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [9617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), + [9619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), + [9621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), + [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [9627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), + [9629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5732), + [9631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), + [9633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), + [9635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), + [9637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), + [9639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), + [9641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), + [9643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), + [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), + [9647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [9649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [9651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4666), + [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), + [9655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6471), + [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [9659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), + [9661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5405), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), + [9665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4782), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6896), + [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), + [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), + [9689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), + [9691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5603), + [9694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5603), + [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), + [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), + [9701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [9705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6994), + [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [9709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), + [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), + [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), + [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), + [9719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5240), + [9722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5438), + [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [9727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4820), + [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [9733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [9737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), + [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), + [9741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), + [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), + [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), + [9749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6809), + [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), + [9757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 44), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [9761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [9764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), + [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), + [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), + [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), + [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), + [9818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), + [9822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), + [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), + [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), + [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [9832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), + [9834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [9840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), + [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7093), + [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [9848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 86), + [9850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 41), + [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6593), + [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), + [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), + [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), + [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), + [9892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 14), + [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [9898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [9900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5106), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [9904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), + [9908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), + [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [9912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), + [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), + [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [9922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), + [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), + [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [9928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), + [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [9932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), + [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [9938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), + [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [9944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), + [9946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), + [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), + [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [9960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5836), + [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [9964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), + [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), + [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [9970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), + [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [9974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 70), SHIFT_REPEAT(107), + [9977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 70), SHIFT_REPEAT(6294), + [9980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 70), + [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), + [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), + [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [9994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), + [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), + [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [10002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5313), + [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [10007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5739), + [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [10011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), + [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [10015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4866), + [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), + [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [10025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4867), + [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), + [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), + [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), + [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), + [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), + [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [10047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), + [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [10051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), + [10053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), + [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [10057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), + [10059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), + [10061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), + [10063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), + [10065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), + [10067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), + [10069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5667), + [10071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), + [10073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7038), + [10076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), + [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), + [10080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), + [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), + [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), + [10092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), + [10094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5742), + [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [10104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1, 0, 0), + [10106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), + [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [10110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), + [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [10114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5974), + [10116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), + [10118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 70), SHIFT_REPEAT(104), + [10121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 70), SHIFT_REPEAT(6613), + [10124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 70), + [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), + [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), + [10130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), + [10132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), + [10134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6052), + [10136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), + [10138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), + [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6097), + [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), + [10144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), + [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [10152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [10162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4939), + [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), + [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), + [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), + [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), + [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [10180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), + [10182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), + [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), + [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [10206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6161), + [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), + [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), + [10216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), + [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), + [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [10230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5603), + [10233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5603), + [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), + [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [10260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 193), + [10262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 193), + [10264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 194), + [10266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 194), + [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), + [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), + [10282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6162), + [10284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 102), + [10286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), + [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6976), + [10292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 175), + [10294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 197), + [10296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [10298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), + [10300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [10302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5998), + [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), + [10306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 180), + [10308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2, 0, 0), + [10310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 10), + [10312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 207), + [10314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 181), + [10316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [10318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5692), + [10320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, 0, 28), + [10322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 3, 0, 65), + [10324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), + [10328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [10330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, 0, 67), + [10332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [10334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), + [10336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), SHIFT_REPEAT(6388), + [10339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), + [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), + [10343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 219), + [10345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5725), + [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), + [10349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 174), + [10351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [10353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), + [10355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [10357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [10359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), + [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), + [10363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), + [10365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 79), SHIFT_REPEAT(798), + [10368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), + [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [10374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), + [10376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), + [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), + [10380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), + [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [10384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(6545), + [10387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5029), + [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), + [10391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [10393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [10395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [10397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [10399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [10401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [10403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), + [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [10407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), + [10409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), + [10411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [10413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), + [10415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [10417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [10419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [10421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), + [10423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 6, 0, 207), + [10425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 236), + [10427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [10433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [10435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), + [10437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [10439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [10441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [10443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [10445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [10447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), + [10449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [10451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [10453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 80), + [10455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [10457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), + [10459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [10461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [10463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), + [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [10469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [10471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [10473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [10475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), + [10477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), + [10479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), + [10481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [10483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [10485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [10487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [10489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [10491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), + [10493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [10495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [10497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [10499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [10501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [10503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 87), + [10505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [10507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [10509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [10511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 145), + [10513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 88), + [10515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), + [10517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), + [10519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), + [10521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), + [10523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), + [10525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), + [10527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 89), + [10529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 90), + [10531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), + [10533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [10535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 180), + [10537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [10539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [10541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [10543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [10545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [10547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5243), + [10550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [10552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [10554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5286), + [10556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), + [10558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), + [10560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), + [10562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [10564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [10566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 181), + [10568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [10570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [10572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [10574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [10576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [10578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 97), + [10580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 98), + [10582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [10584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [10586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [10588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [10590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [10592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), + [10594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [10596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), + [10598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), + [10600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [10602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [10604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), + [10606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5390), + [10608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [10610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), + [10612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [10614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [10616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [10618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), + [10620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [10622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), + [10624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5004), + [10626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5006), + [10628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), + [10630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5744), + [10632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [10634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [10636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), + [10638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), + [10640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [10642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [10644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [10646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [10648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4924), + [10650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), + [10652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), + [10654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [10656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, 0, 29), + [10658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [10660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [10662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [10664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [10666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [10668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4912), + [10670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [10672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [10674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), + [10676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [10678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [10680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [10682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [10684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [10686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), + [10688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [10690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [10692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [10694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), + [10696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [10698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [10700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [10702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [10704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [10706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [10708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [10710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [10712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [10714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [10716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [10718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [10720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [10722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [10724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [10726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [10728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [10730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [10732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [10734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [10736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [10738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [10740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [10742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [10744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [10746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [10748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [10750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), + [10752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [10754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [10756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [10758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [10760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [10762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [10764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [10766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [10768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [10770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [10772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [10774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [10776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [10778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [10780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [10782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [10784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [10786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [10788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [10790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, 0, 110), + [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [10794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4937), + [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), + [10798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [10800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), + [10802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 40), + [10804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [10806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), + [10808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 13), + [10810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 158), + [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), + [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [10822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [10824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [10826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [10828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [10830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [10832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 45), + [10834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), + [10836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), + [10838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [10840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5857), + [10842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), + [10844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [10846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5858), + [10848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [10850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 46), + [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), + [10854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 47), + [10856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 48), + [10858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 49), + [10860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 10), + [10862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 10), + [10864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), + [10866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), + [10868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [10870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 13), + [10872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 3), + [10874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 43), + [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [10878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), + [10880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), + [10882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), + [10884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), + [10886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [10888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), + [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), + [10896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [10898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [10900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), + [10902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), + [10904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1, 0, 0), + [10906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1, 0, 0), + [10908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), + [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [10912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 33), + [10914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 33), + [10916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [10918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [10920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6414), + [10923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), + [10925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [10927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), + [10929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [10931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), + [10933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [10935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [10937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [10939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5707), + [10941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [10943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5708), + [10945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [10947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [10949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), + [10951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), + [10953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), + [10955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), + [10957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), + [10959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 26), + [10961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, 0, 56), + [10963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 57), + [10965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 27), + [10967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 136), + [10969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 137), + [10971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 138), + [10973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), + [10975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), + [10977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [10979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), + [10981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [10983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), + [10985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [10987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5942), + [10989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 141), + [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [10993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 12), + [10995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 144), + [10997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 145), + [10999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [11001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 3), + [11003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 3, 0, 105), + [11005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 106), + [11007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), + [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), + [11013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), + [11015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [11017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [11019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [11023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 40), + [11025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [11027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [11029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), + [11031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), + [11033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [11035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 68), + [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6817), + [11039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5808), + [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), + [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), + [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [11047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), + [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [11051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [11053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [11055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [11057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), + [11059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6728), + [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [11063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), + [11065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), + [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [11069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), + [11071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), + [11073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), + [11075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), + [11077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [11081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), + [11083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6737), + [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [11087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 106), + [11089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [11091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 52), + [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [11095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 130), + [11097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 130), SHIFT_REPEAT(6390), + [11100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [11102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [11104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [11106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [11108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 90), + [11110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [11114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), + [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), + [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [11122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [11124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), + [11126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), + [11128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7184), + [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [11134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [11136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [11140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [11142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [11144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 93), + [11146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 93), + [11148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), + [11154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 53), + [11156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), + [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [11160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), + [11162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), + [11164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), + [11166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 136), + [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), + [11172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [11174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 141), + [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [11178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [11180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [11182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), + [11186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(6815), + [11189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [11191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5822), + [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), + [11195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [11197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [11199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [11201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), + [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [11205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), + [11207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [11211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [11213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [11215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [11217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), + [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [11221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), + [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [11225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), + [11227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), + [11229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), + [11231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), + [11233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 80), + [11235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [11237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [11239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [11241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [11243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [11245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [11247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [11249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [11251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), + [11253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6017), + [11255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), + [11257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), + [11259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [11261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), + [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [11265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), + [11267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6100), + [11269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6113), + [11271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [11273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [11275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6124), + [11277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6127), + [11279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6369), + [11281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), + [11283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 52), + [11285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), + [11287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6795), + [11289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), + [11291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6802), + [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6738), + [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [11297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [11299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), + [11301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [11303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 20), + [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [11307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), + [11309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 89), + [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [11313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), + [11315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), + [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), + [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6815), + [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [11323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 33), + [11325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 33), + [11327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 53), + [11329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [11331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 30), + [11333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), + [11335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1343), + [11338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), + [11340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), + [11342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), + [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), + [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6939), + [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [11352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), + [11354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), + [11356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), + [11358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), + [11360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), + [11362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), + [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [11366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [11368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6058), + [11370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6080), + [11372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), + [11374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7258), + [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [11378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7273), + [11380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6770), + [11382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), + [11384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [11386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [11388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), + [11390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), + [11392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7175), + [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), + [11396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), + [11398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), + [11400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [11402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [11404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 103), SHIFT_REPEAT(832), + [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6837), + [11409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), + [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [11413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 2, 0, 4), + [11415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6278), + [11417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), + [11419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [11421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [11423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), + [11425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), + [11427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [11429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 193), + [11431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 193), + [11433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 128), + [11435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(6916), + [11438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 19), + [11440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 19), + [11442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [11444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), + [11446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), + [11448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [11450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), + [11456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [11458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [11460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [11462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [11464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [11466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), + [11470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 194), + [11472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 194), + [11474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4458), + [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [11478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), + [11480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4438), + [11482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), + [11484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6241), + [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), + [11488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [11490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), + [11492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), + [11494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), + [11496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [11498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(6974), + [11501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 179), + [11503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 179), + [11505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6084), + [11507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6235), + [11509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [11511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [11513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), + [11515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), + [11517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [11519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [11521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), + [11523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 2, 0, 34), + [11525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 2, 0, 34), + [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), + [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7367), + [11533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [11535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), + [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [11539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7370), + [11541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), + [11543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), + [11545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [11547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [11549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [11551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [11553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [11555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(6923), + [11558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), + [11560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [11562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6277), + [11564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6318), + [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7383), + [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7030), + [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), + [11584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 6, 0, 225), + [11586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), + [11588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [11598] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), + [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [11606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), + [11608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), + [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [11622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), + [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [11632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), + [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7020), + [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), + [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), + [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), + [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), + [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [11694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473), + [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [11708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 92), + [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), + [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), + [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), + [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), + [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [11728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), + [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), + [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), + [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [11770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), + [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), + [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), + [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [11800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [11804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6643), + [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), + [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), + [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7043), + [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), + [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [11828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), + [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), + [11846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 140), + [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7201), + [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6936), + [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [11862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [11870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), + [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [11874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 225), + [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [11890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 92), + [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [11904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), + [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), + [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), + [11912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 206), + [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), + [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), + [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [11930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), + [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7089), + [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [11952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6604), + [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [11958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), + [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), + [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), + [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), + [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), + [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), + [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [11982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), + [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), + [11996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), + [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [12000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), + [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7307), + [12006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 92), + [12008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 140), + [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [12014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), + [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), + [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), + [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), + [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7001), + [12032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 206), + [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), + [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7091), + [12042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [12050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), + [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), + [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), + [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6802), + [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), + [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [12084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), + [12090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7388), + [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), + [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), + [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6996), + [12098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 96), + [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7056), + [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), + [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), + [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), + [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), + [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), + [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), + [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), + [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), + [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), + [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), + [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), + [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7259), + [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), + [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), + [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), + [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7300), + [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), + [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), + [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), + [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6983), + [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6986), + [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [12170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), + [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [12182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), + [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [12190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), + [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7368), + [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [12196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), + [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [12214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers {